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
.title { text-align: center; margin-top: 40px; margin-bottom: 10px; } .lesson-text { font-size: 1.2rem; font-family: Verdana, Geneva, Tahoma, sans-serif; padding-left: 20px; padding-right: 20px; width: 70%; text-align: left; margin: 5px auto 0; } .questions-container { margin: 20px auto; } .question-container { display: flex; align-items: center; cursor: pointer; font-size: 1.2rem; border: 1px solid #eee; padding: 20px 10px; } .question-container:nth-child(2) { margin-top: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; } .question-container:last-child { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; } .answer { margin-left: 20px; } /* Hide the browser's default radio button */ .question-container input { opacity: 0; cursor: pointer; } /* Custom radio button */ .checkmark { position: relative; min-height: 25px; min-width: 25px; background-color: #eee; border-radius: 50%; margin-right: 15px; } .question-container:hover input ~ .checkmark { background-color: #ccc; } .checkmark:after { content: ""; position: absolute; display: none; } .question-container input:checked ~ .checkmark:after { display: block; } /* The white dot in the middle when checked */ .question-container .checkmark:after { top: 9px; left: 9px; width: 8px; height: 8px; border-radius: 50%; background: white; } .submit-btn-container { background:#ccc; } .submit-btn { width: 100%; height: 100%; background:#ccc; border:0 none; cursor:pointer; font-family: Verdana, Geneva, Tahoma, sans-serif; font-size: 1.2rem; } .lesson-text-container p, .lesson-text-container img { margin-bottom: 20px; } .normal-link:hover { text-decoration: underline; color: #777; } .lesson-navigation { display: flex; width: 100%; height: 120px; } .lesson-navigation div { display: flex; justify-content: center; align-items: center; background: #888; width: 100%; height: 100%; } .lesson-navigation div.disabled { visibility: hidden; } .lesson-navigation div.lesson-index { background: #eee; } .lesson-navigation-icon { color: #fff; font-size: 2rem; } .lesson-index .lesson-navigation-icon { color: #000; } /* Other styles */ .none { display: none; } .block { display: block; } .grey-color { color: #999; } .centered-div { width: 80%; margin: 0 auto; } /* Depending on character, one color or another */ .question-container.slothy input:checked ~ .checkmark { background-color: rgb(50, 172, 2); } .question-container.ardilla input:checked ~ .checkmark { background-color: rgb(114, 51, 20); } .submit-btn-container.slothy:hover, .submit-btn-container.slothy:hover .submit-btn { background:rgb(50, 172, 2); color: #fff; } .submit-btn-container.ardilla:hover, .submit-btn-container.ardilla:hover .submit-btn { background:rgb(114, 51, 20); color: #fff; } .lesson-navigation-icon.slothy:hover { color: rgb(50, 172, 2); } .lesson-navigation-icon.ardilla:hover { color: rgb(114, 51, 20); } .slothy-color { color: rgb(50, 172, 2); } .ardilla-color { color: rgb(114, 51, 20); } /* Media queries */ @media(max-width: 500px) { .lesson-text { width: 100%; } } @media(max-width: 400px) { .lesson-text { padding-left: 5px; padding-right: 5px; } }
css/course.css
.title { text-align: center; margin-top: 40px; margin-bottom: 10px; } .lesson-text { font-size: 1.2rem; font-family: Verdana, Geneva, Tahoma, sans-serif; padding-left: 20px; padding-right: 20px; width: 70%; text-align: left; margin: 5px auto 0; } .questions-container { margin: 20px auto; } .question-container { display: flex; align-items: center; cursor: pointer; font-size: 1.2rem; border: 1px solid #eee; padding: 20px 10px; } .question-container:nth-child(2) { margin-top: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; } .question-container:last-child { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; } .answer { margin-left: 20px; } /* Hide the browser's default radio button */ .question-container input { opacity: 0; cursor: pointer; } /* Custom radio button */ .checkmark { position: relative; min-height: 25px; min-width: 25px; background-color: #eee; border-radius: 50%; margin-right: 15px; } .question-container:hover input ~ .checkmark { background-color: #ccc; } .checkmark:after { content: ""; position: absolute; display: none; } .question-container input:checked ~ .checkmark:after { display: block; } /* The white dot in the middle when checked */ .question-container .checkmark:after { top: 9px; left: 9px; width: 8px; height: 8px; border-radius: 50%; background: white; } .submit-btn-container { background:#ccc; } .submit-btn { width: 100%; height: 100%; background:#ccc; border:0 none; cursor:pointer; font-family: Verdana, Geneva, Tahoma, sans-serif; font-size: 1.2rem; } .lesson-text-container p, .lesson-text-container img { margin-bottom: 20px; } .normal-link:hover { text-decoration: underline; color: #777; } .lesson-navigation { display: flex; width: 100%; height: 120px; } .lesson-navigation div { display: flex; justify-content: center; align-items: center; background: #888; width: 100%; height: 100%; } .lesson-navigation div.disabled { visibility: hidden; } .lesson-navigation div.lesson-index { background: #eee; } .lesson-navigation-icon { color: #fff; font-size: 2rem; } .lesson-index .lesson-navigation-icon { color: #000; } /* Other styles */ .none { display: none; } .block { display: block; } .grey-color { color: #999; } .centered-div { width: 80%; margin: 0 auto; } /* Depending on character, one color or another */ .question-container.slothy input:checked ~ .checkmark { background-color: rgb(50, 172, 2); } .question-container.ardilla input:checked ~ .checkmark { background-color: rgb(114, 51, 20); } .submit-btn-container.slothy:hover, .submit-btn-container.slothy:hover .submit-btn { background:rgb(50, 172, 2); color: #fff; } .submit-btn-container.ardilla:hover, .submit-btn-container.ardilla:hover .submit-btn { background:rgb(114, 51, 20); color: #fff; } .lesson-navigation-icon.slothy:hover { color: rgb(50, 172, 2); } .lesson-navigation-icon.ardilla:hover { color: rgb(114, 51, 20); } .slothy-color { color: rgb(50, 172, 2); } .ardilla-color { color: rgb(114, 51, 20); } /* Media queries */ @media(max-width: 500px) { .lesson-text { width: 100%; } } @media(max-width: 400px) { .lesson-text { padding-left: 5px; padding-right: 5px; } }
0.394784
0.084758
@import url('https://fonts.googleapis.com/css?family=Merriweather:700i&display=swap'); @import url('https://fonts.googleapis.com/css?family=Righteous'); :root { --mainBackgroundColor: var(--darkColor); --textColor: var(--lightColor); --lightColor: #F2F2F2; --darkColor: #191F26; --baseFont: "Montserrat"; /* F2F2F2 */ } body { margin: 0; padding: 0; /* overflow: hidden; */ width: 100%; height: 100%; font-family: "Righteous"; background: var(--mainBackgroundColor); } .decleare { position: absolute; left: 50%; top: 40%; transform: translateX(-50%) translateY(-50%); font-family: "Righteous"; font-size: 3.8vw; text-align: center; width: 100%; color: var(--textColor); line-height: .4; } .container { z-index: 10; position: absolute; left: 50%; top: 70%; height: 250px; transform: translateX(-50%) translateY(-50%); font-family: "Montserrat"; text-align: center; width: 100%; } .container div { position: absolute; bottom: 0; width: 100%; text-align: center; font-weight: 200; font-size: 20px; padding: 0; margin: 0; line-height: 1; color: beige; letter-spacing: 2px; } a:visited { color: null; } .registration_button { background-color: var(--darkColor); border: 2px solid var(--lightColor); /* Green */ color: var(--lightColor); padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 20px; font-weight: 800; -webkit-transition-duration: 0.4s; transition-duration: 0.4s; } .registration_button:hover { background-color: var(--lightColor); color: var(--darkColor); box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); } #particles-js { z-index: -1; position: absolute; width: 100%; height: 100%; /* background-color: #b61924; */ background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; } /* ---- stats.js ---- */ canvas { display: block; vertical-align: bottom; } /* ---- particles.js container ---- */ /* for navigation bar */ ul.navigation { list-style-type: none; /* position: absolute; */ width:100%; margin: 0; padding: 0; overflow: hidden; background-color: transparent; } ul.navigation li { float: right; } ul.navigation li a { display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none; } ul.navigation li a:hover { background-color: #111; } ul.navigation li:nth-of-type(1) a:hover { background-color: transparent; } /* nav bar end */ .footer{ position: absolute; bottom: 10px; padding: 0 30%; color: #F2F2F2; }
css/style.css
@import url('https://fonts.googleapis.com/css?family=Merriweather:700i&display=swap'); @import url('https://fonts.googleapis.com/css?family=Righteous'); :root { --mainBackgroundColor: var(--darkColor); --textColor: var(--lightColor); --lightColor: #F2F2F2; --darkColor: #191F26; --baseFont: "Montserrat"; /* F2F2F2 */ } body { margin: 0; padding: 0; /* overflow: hidden; */ width: 100%; height: 100%; font-family: "Righteous"; background: var(--mainBackgroundColor); } .decleare { position: absolute; left: 50%; top: 40%; transform: translateX(-50%) translateY(-50%); font-family: "Righteous"; font-size: 3.8vw; text-align: center; width: 100%; color: var(--textColor); line-height: .4; } .container { z-index: 10; position: absolute; left: 50%; top: 70%; height: 250px; transform: translateX(-50%) translateY(-50%); font-family: "Montserrat"; text-align: center; width: 100%; } .container div { position: absolute; bottom: 0; width: 100%; text-align: center; font-weight: 200; font-size: 20px; padding: 0; margin: 0; line-height: 1; color: beige; letter-spacing: 2px; } a:visited { color: null; } .registration_button { background-color: var(--darkColor); border: 2px solid var(--lightColor); /* Green */ color: var(--lightColor); padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 20px; font-weight: 800; -webkit-transition-duration: 0.4s; transition-duration: 0.4s; } .registration_button:hover { background-color: var(--lightColor); color: var(--darkColor); box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); } #particles-js { z-index: -1; position: absolute; width: 100%; height: 100%; /* background-color: #b61924; */ background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; } /* ---- stats.js ---- */ canvas { display: block; vertical-align: bottom; } /* ---- particles.js container ---- */ /* for navigation bar */ ul.navigation { list-style-type: none; /* position: absolute; */ width:100%; margin: 0; padding: 0; overflow: hidden; background-color: transparent; } ul.navigation li { float: right; } ul.navigation li a { display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none; } ul.navigation li a:hover { background-color: #111; } ul.navigation li:nth-of-type(1) a:hover { background-color: transparent; } /* nav bar end */ .footer{ position: absolute; bottom: 10px; padding: 0 30%; color: #F2F2F2; }
0.403332
0.091992
*{ margin: 0; padding: 0; box-sizing: border-box; } html{ font-family: 'Ubuntu', sans-serif; } a{ text-decoration: none; color: #000; } #navbar #normal-menu{ list-style-type: none; } #navbar #normal-menu li{ display: inline-block; padding-left: 1.2rem; font-size: 1rem; } #navbar #normal-menu li a{ color: #fff; } #navbar #normal-menu li a:hover{ color: rgb(22, 151, 91); } #navbar #menu-icon{ display: none; color: #fff; font-size: 1.5rem; } #navbar #menu-icon:hover{ cursor: pointer; color: #fff; font-size: 1.5rem; } .menu{ display: flex; justify-content: space-between; border-bottom: 2px solid rgb(104, 101, 101); } .hamburger-menu{ position: fixed; display: flex; flex-direction: column; top: 0; right: 0; background:rgb(22, 151, 91); padding: 1rem; box-shadow: 2px 19px 32px 7px #333; } #navbar .hamburger-menu{ display: none; } #close-menu i{ float: right; font-size: 1rem; font-weight: 100; color: rgb(212, 211, 211); } #menu-items ul{ list-style-type: none; } #menu-items ul li{ display: block; padding: 1rem 0; border-bottom: 1px solid rgb(153, 151, 151); } #menu-items ul li:first-child{ padding-top: 0 } #menu-items ul li:last-child{ border: none; } #menu-items ul li a{ font-size: .8rem; font-weight: 500; color: rgb(212, 211, 211); } .back-image{ position: absolute; top: 0; left: 0; width: 100%; background-image: linear-gradient(to top, rgba(39, 35, 44, 0.76),rgba(39, 35, 44, 0.76)), url("images/imag0.jpeg"); background-size: cover; overflow: hidden; background-repeat: no-repeat; z-index: -1; } .welcome-container{ display: flex; flex-direction: column; justify-content: space-between; align-items: center; } #greetings h2{ color: white; font-weight: 400; } #travel-gallery{ display: flex; } .choose{ padding: .5rem; text-align: center; } .choose:hover{ padding: .5rem; text-align: center; cursor: pointer; background-color: rgba(39, 35, 44, 0.287); border-radius: 1rem; } #travel i, #gallery i{ font-size: 1.5rem; color:rgb(22, 151, 91); margin: .7rem; } #travel p, #gallery p{ color: rgb(167, 165, 165); font-weight: 300; font-size: .7rem; } #travel h5, #gallery h5{ color: rgb(238, 238, 238); font-weight: 400; font-size: 1rem; margin-bottom: .4rem; } #get-started-btn{ text-transform: uppercase; background: none; letter-spacing: .2rem; border: 2px solid rgb(22, 151, 91); padding: .5rem 1.5rem; border-radius: 2rem; color: rgb(22, 151, 91); font-size: .7rem; font-weight: 600; } #get-started-btn:hover{ cursor: pointer; text-transform: uppercase; background: rgba(39, 35, 44, 0.52); letter-spacing: .2rem; border: 2px solid rgb(22, 151, 91); padding: .5rem 1.5rem; border-radius: 2rem; color: rgb(22, 151, 91); font-size: .7rem; font-weight: 600; } .service-container{ display: flex; } .service{ display: flex; justify-content: center; align-items: center; flex-direction: column; padding: 0 2rem; } .service h2{ color:rgb(72, 72, 73); font-size: 1.3rem; text-align: center; letter-spacing: .1rem; margin-bottom: 1.5rem; } .service p{ color:rgb(169, 169, 170); font-size: .9rem; text-align: center; margin-bottom: 1.5rem; font-weight: 500; } .item-picture img{ border-radius: 100%; margin-bottom: .7rem; height: 100px; width: 100px; } .learn-more button{ background: #fff; cursor: pointer; text-transform: uppercase; letter-spacing: .2rem; border: 2px solid rgb(22, 151, 91); padding: .5rem 1rem .5rem 1rem; border-radius: 2rem; color: rgb(22, 151, 91); font-size: .7rem; font-weight: 600; } .learn-more button:hover{ background: rgba(207, 205, 205, 0.589); cursor: pointer; text-transform: uppercase; letter-spacing: .2rem; border: 2px solid rgb(22, 151, 91); padding: .5rem 1rem .5rem 1rem; border-radius: 2rem; color: rgb(22, 151, 91); font-size: .7rem; font-weight: 600; } /* Media Query for responsiveness */ /* Media Query for smartphone (0 - 500) */ @media only screen and (max-width: 500px){ .menu{ margin: 0 1.5rem; padding: 1rem 0; border-bottom: 2px solid rgba(114, 113, 113, 0.787); } .back-image{ height: 25rem; } .welcome-container{ margin-bottom: 5.7rem; } .title h3 a{ font-size: 1rem; font-weight: 600; letter-spacing: .1rem; color: #fff; } #navbar #normal-menu{ display: none; } #navbar #menu-icon{ display: block; } #navbar #menu-icon:hover + .hamburger-menu{ display: block; } .hamburger-menu{ width: 11rem; height: 100%; } #greetings{ margin: 1.8rem 0 .2rem 0; } #travel-gallery{ flex-direction: column; margin: 0 0 2rem 0; } .service-container{ flex-direction: column; justify-content: center; align-items: center; flex-wrap: wrap; } .service{ margin-bottom: 2rem; } } /* Media Query for tablets (501 - 1024) */ @media (min-width: 501px) and (max-width: 1024px){ .menu{ margin: 0 2rem; padding: 1.5rem 0; border-bottom: 2px solid rgba(114, 113, 113, 0.787); } .back-image{ height: 25rem; } .welcome-container{ margin-bottom: 5.7rem; } .title h3 a{ font-size: 1rem; font-weight: 600; letter-spacing: .1rem; color: #fff; } #navbar #normal-menu{ display: none; } #navbar #menu-icon{ display: block; } #navbar #menu-icon:hover + .hamburger-menu{ display: inline-block; } .hamburger-menu{ width: 17rem; height: 100%; } #greetings{ margin: 2.5rem 0 .2rem 0; } #travel-gallery{ flex-direction: row; margin: 1rem 0 4rem 0; } .choose{ margin: 0 .5rem 0 .5rem; } .service-container{ flex-direction: column; justify-content: center; align-items: center; flex-wrap: wrap; } .service{ margin-bottom: 2rem; padding: 0 10rem; } } /* Media Query for larger screens (1025 and above) */ @media (min-width: 1025px){ .menu{ margin: 0 7rem; padding: 2rem 0 2.8rem 0; border-bottom: 2px solid rgba(114, 113, 113, 0.787); } .back-image{ height: 35rem; } .welcome-container{ margin-bottom: 14rem; } .title h3 a{ font-size: 1rem; font-weight: 600; letter-spacing: .1rem; color: #fff; } #navbar #normal-menu{ display: block; } #navbar #menu-icon{ display: none; } .hamburger-menu{ display: none; } #greetings{ margin: 4rem 0 .2rem 0; } #greetings h2{ font-size: 2.5rem; } #travel-gallery{ flex-direction: row; margin: 1rem 0 4rem 0; } .choose{ margin: 0 3.5rem 0 3.5rem; } .service-container{ flex-direction: row; padding: 0 10rem; } .service{ margin: 0 auto 4rem auto; } .item-picture img{ height: 150px; width: 150px; } }
HTML and CSS/Media_Query/style.css
*{ margin: 0; padding: 0; box-sizing: border-box; } html{ font-family: 'Ubuntu', sans-serif; } a{ text-decoration: none; color: #000; } #navbar #normal-menu{ list-style-type: none; } #navbar #normal-menu li{ display: inline-block; padding-left: 1.2rem; font-size: 1rem; } #navbar #normal-menu li a{ color: #fff; } #navbar #normal-menu li a:hover{ color: rgb(22, 151, 91); } #navbar #menu-icon{ display: none; color: #fff; font-size: 1.5rem; } #navbar #menu-icon:hover{ cursor: pointer; color: #fff; font-size: 1.5rem; } .menu{ display: flex; justify-content: space-between; border-bottom: 2px solid rgb(104, 101, 101); } .hamburger-menu{ position: fixed; display: flex; flex-direction: column; top: 0; right: 0; background:rgb(22, 151, 91); padding: 1rem; box-shadow: 2px 19px 32px 7px #333; } #navbar .hamburger-menu{ display: none; } #close-menu i{ float: right; font-size: 1rem; font-weight: 100; color: rgb(212, 211, 211); } #menu-items ul{ list-style-type: none; } #menu-items ul li{ display: block; padding: 1rem 0; border-bottom: 1px solid rgb(153, 151, 151); } #menu-items ul li:first-child{ padding-top: 0 } #menu-items ul li:last-child{ border: none; } #menu-items ul li a{ font-size: .8rem; font-weight: 500; color: rgb(212, 211, 211); } .back-image{ position: absolute; top: 0; left: 0; width: 100%; background-image: linear-gradient(to top, rgba(39, 35, 44, 0.76),rgba(39, 35, 44, 0.76)), url("images/imag0.jpeg"); background-size: cover; overflow: hidden; background-repeat: no-repeat; z-index: -1; } .welcome-container{ display: flex; flex-direction: column; justify-content: space-between; align-items: center; } #greetings h2{ color: white; font-weight: 400; } #travel-gallery{ display: flex; } .choose{ padding: .5rem; text-align: center; } .choose:hover{ padding: .5rem; text-align: center; cursor: pointer; background-color: rgba(39, 35, 44, 0.287); border-radius: 1rem; } #travel i, #gallery i{ font-size: 1.5rem; color:rgb(22, 151, 91); margin: .7rem; } #travel p, #gallery p{ color: rgb(167, 165, 165); font-weight: 300; font-size: .7rem; } #travel h5, #gallery h5{ color: rgb(238, 238, 238); font-weight: 400; font-size: 1rem; margin-bottom: .4rem; } #get-started-btn{ text-transform: uppercase; background: none; letter-spacing: .2rem; border: 2px solid rgb(22, 151, 91); padding: .5rem 1.5rem; border-radius: 2rem; color: rgb(22, 151, 91); font-size: .7rem; font-weight: 600; } #get-started-btn:hover{ cursor: pointer; text-transform: uppercase; background: rgba(39, 35, 44, 0.52); letter-spacing: .2rem; border: 2px solid rgb(22, 151, 91); padding: .5rem 1.5rem; border-radius: 2rem; color: rgb(22, 151, 91); font-size: .7rem; font-weight: 600; } .service-container{ display: flex; } .service{ display: flex; justify-content: center; align-items: center; flex-direction: column; padding: 0 2rem; } .service h2{ color:rgb(72, 72, 73); font-size: 1.3rem; text-align: center; letter-spacing: .1rem; margin-bottom: 1.5rem; } .service p{ color:rgb(169, 169, 170); font-size: .9rem; text-align: center; margin-bottom: 1.5rem; font-weight: 500; } .item-picture img{ border-radius: 100%; margin-bottom: .7rem; height: 100px; width: 100px; } .learn-more button{ background: #fff; cursor: pointer; text-transform: uppercase; letter-spacing: .2rem; border: 2px solid rgb(22, 151, 91); padding: .5rem 1rem .5rem 1rem; border-radius: 2rem; color: rgb(22, 151, 91); font-size: .7rem; font-weight: 600; } .learn-more button:hover{ background: rgba(207, 205, 205, 0.589); cursor: pointer; text-transform: uppercase; letter-spacing: .2rem; border: 2px solid rgb(22, 151, 91); padding: .5rem 1rem .5rem 1rem; border-radius: 2rem; color: rgb(22, 151, 91); font-size: .7rem; font-weight: 600; } /* Media Query for responsiveness */ /* Media Query for smartphone (0 - 500) */ @media only screen and (max-width: 500px){ .menu{ margin: 0 1.5rem; padding: 1rem 0; border-bottom: 2px solid rgba(114, 113, 113, 0.787); } .back-image{ height: 25rem; } .welcome-container{ margin-bottom: 5.7rem; } .title h3 a{ font-size: 1rem; font-weight: 600; letter-spacing: .1rem; color: #fff; } #navbar #normal-menu{ display: none; } #navbar #menu-icon{ display: block; } #navbar #menu-icon:hover + .hamburger-menu{ display: block; } .hamburger-menu{ width: 11rem; height: 100%; } #greetings{ margin: 1.8rem 0 .2rem 0; } #travel-gallery{ flex-direction: column; margin: 0 0 2rem 0; } .service-container{ flex-direction: column; justify-content: center; align-items: center; flex-wrap: wrap; } .service{ margin-bottom: 2rem; } } /* Media Query for tablets (501 - 1024) */ @media (min-width: 501px) and (max-width: 1024px){ .menu{ margin: 0 2rem; padding: 1.5rem 0; border-bottom: 2px solid rgba(114, 113, 113, 0.787); } .back-image{ height: 25rem; } .welcome-container{ margin-bottom: 5.7rem; } .title h3 a{ font-size: 1rem; font-weight: 600; letter-spacing: .1rem; color: #fff; } #navbar #normal-menu{ display: none; } #navbar #menu-icon{ display: block; } #navbar #menu-icon:hover + .hamburger-menu{ display: inline-block; } .hamburger-menu{ width: 17rem; height: 100%; } #greetings{ margin: 2.5rem 0 .2rem 0; } #travel-gallery{ flex-direction: row; margin: 1rem 0 4rem 0; } .choose{ margin: 0 .5rem 0 .5rem; } .service-container{ flex-direction: column; justify-content: center; align-items: center; flex-wrap: wrap; } .service{ margin-bottom: 2rem; padding: 0 10rem; } } /* Media Query for larger screens (1025 and above) */ @media (min-width: 1025px){ .menu{ margin: 0 7rem; padding: 2rem 0 2.8rem 0; border-bottom: 2px solid rgba(114, 113, 113, 0.787); } .back-image{ height: 35rem; } .welcome-container{ margin-bottom: 14rem; } .title h3 a{ font-size: 1rem; font-weight: 600; letter-spacing: .1rem; color: #fff; } #navbar #normal-menu{ display: block; } #navbar #menu-icon{ display: none; } .hamburger-menu{ display: none; } #greetings{ margin: 4rem 0 .2rem 0; } #greetings h2{ font-size: 2.5rem; } #travel-gallery{ flex-direction: row; margin: 1rem 0 4rem 0; } .choose{ margin: 0 3.5rem 0 3.5rem; } .service-container{ flex-direction: row; padding: 0 10rem; } .service{ margin: 0 auto 4rem auto; } .item-picture img{ height: 150px; width: 150px; } }
0.257298
0.042325
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */ /* * What follows is the result of much research on cross-browser styling. * Credit left inline and big thanks to <NAME>, <NAME>, * <NAME>, and the H5BP dev community and team. */ /* ========================================================================== Base styles: opinionated defaults ========================================================================== */ @import url('../fonts/fonts.css'); @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap'); html { color: #222; font-size: 1em; line-height: 1.4; } body { padding: 0; margin: 0; } body, html { -webkit-font-smoothing: antialiased; background-color: #fff; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 300; color: #474747; position: relative; width: 100%; overflow-x: hidden; } @media only screen and (min-width: 768px) { body, html { font-size: 100%; } } @media only screen and (min-width: 992px) { body, html { font-size: 15px; } } @media only screen and (min-width: 1200px) { body, html { font-size: 100%; line-height: 1.5; } } /* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * Vendor-prefixed and regular ::selection selectors cannot be combined: * https://stackoverflow.com/a/16982510/7133471 * * Customize the background color to match your design. */ ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } /* * A better looking default horizontal rule */ hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } /* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */ audio, canvas, iframe, img, svg, video { vertical-align: middle; } /* * Remove default fieldset styles. */ fieldset { border: 0; margin: 0; padding: 0; } /* * Allow only vertical resizing of textareas. */ textarea { resize: vertical; } /* ========================================================================== Author's custom styles ========================================================================== */ /* ========================================================================== Helper classes ========================================================================== */ /* * Hide visually and from screen readers */ .hidden, [hidden] { display: none !important; } /* * Hide only visually, but have it available for screen readers: * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility * * 1. For long content, line feeds are not interpreted as spaces and small width * causes content to wrap 1 word per line: * https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe */ .sr-only { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px; /* 1 */ } /* * Extends the .sr-only class to allow the element * to be focusable when navigated to via the keyboard: * https://www.drupal.org/node/897638 */ .sr-only.focusable:active, .sr-only.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; white-space: inherit; width: auto; } /* * Hide visually and from screen readers, but maintain layout */ .invisible { visibility: hidden; } /* * Clearfix: contain floats * * For modern browsers * 1. The space content is one way to avoid an Opera bug when the * `contenteditable` attribute is included anywhere else in the document. * Otherwise it causes space to appear at the top and bottom of elements * that receive the `clearfix` class. * 2. The use of `table` rather than `block` is only necessary if using * `:before` to contain the top-margins of child elements. */ .clearfix::before, .clearfix::after { content: " "; display: table; } .clearfix::after { clear: both; } /* ========================================================================== EXAMPLE Media Queries for Responsive Design. These examples override the primary ('mobile first') styles. Modify as content requires. ========================================================================== */ @media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition */ } @media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices */ } /* ========================================================================== Print styles. Inlined to avoid the additional HTTP request: https://www.phpied.com/delay-loading-your-print-css/ ========================================================================== */ @media print { *, *::before, *::after { background: #fff !important; color: #000 !important; /* Black prints faster */ box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]::after { content: " (" attr(href) ")"; } abbr[title]::after { content: " (" attr(title) ")"; } /* * Don't show links that are fragment identifiers, * or use the `javascript:` pseudo protocol */ a[href^="#"]::after, a[href^="javascript:"]::after { content: ""; } pre { white-space: pre-wrap !important; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* * Printing Tables: * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables */ thead { display: table-header-group; } tr, img { page-break-inside: avoid; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } .page { position: relative; z-index: 99; } @media only screen and (min-width: 992px) { .page.ecommerce { padding-left: 15vw; } } .page-left-right { position: relative; } .page-left, .page-right { position: relative; overflow: hidden; } @media only screen and (min-width: 992px) { .page-left, .page-right { width: 42vw; min-height: 100vh; } } @media only screen and (min-width: 1200px) { .page-left, .page-right { width: 42.5vw; min-height: 100vh; } } .page-left { background-color: #F1F1F1; height: 100vw; position: relative; top: 0; left: 0; z-index: 2; } @media only screen and (min-width: 992px) { .page-left { top: 0; height: 100vh; position: fixed; } } @media only screen and (min-width: 1200px) { .page-left { top: 0; height: 100vh; position: fixed; } } .page-left__media { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); min-width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: alpha(opacity=0); visibility: hidden; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .page-left__media--img { width: 101%; background-position: center; background-size: cover; } .page-left__media.this-active { opacity: 1; filter: alpha(opacity=100); visibility: visible; } @media only screen and (min-width: 992px) { .page-right { margin-left: 58vw; } } @media only screen and (min-width: 1200px) { .page-right { margin-left: 57.5vw; } } .js-page-left { -webkit-transition: border-width 0.8s ease; -moz-transition: border-width 0.8s ease; -ms-transition: border-width 0.8s ease; -o-transition: border-width 0.8s ease; transition: border-width 0.8s ease; border: solid 0 #fff; } .js-page-left.unstick { position: absolute; bottom: 0; top: auto; border-width: 30px; } @media only screen and (min-width: 1200px) { .js-page-left.unstick { border-width: 40px; } } .page-section { padding: 0 15px 60px; min-height: 90vh; } @media only screen and (min-width: 768px) { .page-section { padding: 0 30px 90px; min-height: 100vh; } } @media only screen and (min-width: 992px) { .page-section { padding: 28vh 30px 18vh; min-height: 75vh; } } @media only screen and (min-width: 1200px) { .page-section { padding: 28vh 40px 18vh; } } @media only screen and (min-width: 992px) { .page-section--last { min-height: 100vh; } } .page-section--pdt { padding: 120px 15px 40px; } @media only screen and (min-width: 768px) { .page-section--pdt { padding: 120px 30px 40px; } } @media only screen and (min-width: 992px) { .page-section--pdt { padding: 22vh 0 10vh; } } .page-section--full { padding: 40px 15px 60px; } @media only screen and (min-width: 768px) { .page-section--full { padding: 60px 30px 90px; } } @media only screen and (min-width: 992px) { .page-section--full { padding: 0 0 10vh; } } @media only screen and (min-width: 992px) { .page-section--full .section-title { margin-top: 22vh; } } .page-section__btn { margin-top: 25px; } @media only screen and (min-width: 768px) { .page-section__btn { margin-top: 50px; } } .section-banner { margin: 0 -15px 40px; overflow: hidden; position: relative; } .section-banner img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } .section-banner:after { content: ''; display: block; } .section-banner img { width: 100%; } .section-banner:after { padding-top: 100%; } @media only screen and (min-width: 768px) { .section-banner { margin: 0 -30px 60px; } } .section-banner__media { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover; } .section-banner__media--img { width: 100%; height: 100%; background-position: center; background-size: cover; } .js-reveal { opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.5s ease, transform 0.5s ease; -moz-transition: opacity 0.5s ease, transform 0.5s ease; -ms-transition: opacity 0.5s ease, transform 0.5s ease; -o-transition: opacity 0.5s ease, transform 0.5s ease; transition: opacity 0.5s ease, transform 0.5s ease; -webkit-transform: translateY(40px); -moz-transform: translateY(40px); -ms-transform: translateY(40px); -o-transform: translateY(40px); transform: translateY(40px); } @media only screen and (min-width: 992px) { .js-reveal { -webkit-transition: opacity 0.8s ease, transform 0.8s ease; -moz-transition: opacity 0.8s ease, transform 0.8s ease; -ms-transition: opacity 0.8s ease, transform 0.8s ease; -o-transition: opacity 0.8s ease, transform 0.8s ease; transition: opacity 0.8s ease, transform 0.8s ease; } } .js-reveal.reveal { opacity: 1; filter: alpha(opacity=100); -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { margin: 0; font-size: initial; font-weight: normal; } @media only screen and (min-width: 768px) { .section-title { margin-bottom: 50px; } } .section-title { font-size: 1.375rem; font-family: 'Didot', sans-serif; font-weight: 400; letter-spacing: .03rem; margin-bottom: 25px; } p { margin: 0; max-width: 800px; line-height: 1.4; letter-spacing: .015rem; } .copy-wrapper p { margin-bottom: 10px; } @media only screen and (min-width: 768px) { .copy-wrapper p { margin-bottom: 20px; } } .copy-wrapper p:last-child { margin-bottom: 0; } .page-section__btn { margin-top: 25px; } @media only screen and (min-width: 768px) { .page-section__btn { margin-top: 50px; } } .btn { outline: none !important; border: none !important; box-shadow: none !important; border-radius: 100px; background-color: #474747; color: #ffffff; padding: 7px 22px 10px; position: relative; overflow: hidden !important; line-height: 1; -webkit-appearance: none !important; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .btn:hover { background-color: #d5c8ad; color: white; } .btn__lbl { position: relative; z-index: 20; font-size: 0.75rem; font-family: 'Montserrat', sans-serif; font-weight: 400; letter-spacing: .1rem; text-transform: uppercase; } .page-date__nav { display: none; right: 10px; z-index: 101; opacity: 0.4; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } @media only screen and (min-width: 768px) { .page-date__nav { display: block; position: fixed; top: 55px } } @media only screen and (min-width: 992px) { .page-date__nav { top: 52px } } @media only screen and (min-width: 1200px) { .page-date__nav { top: 115px } } .page-date__nav:hover { opacity: 1; } .page-date__nav .vertical-line { height: 30px; margin: 0; padding: 0; display:-ms-flexbox; display:flex; -ms-flex-pack:center; justify-content:center } .page-date__nav .vertical-line::before { content: ''; width: 0; height: 100%; border-right: solid 1px #474747; } .page-date__nav .dot { display:-ms-flexbox; display:flex; -ms-flex-pack:center; justify-content:center; position: relative; } .page-date__nav .dot::before { content: ''; width: 5px; height: 5px; border-radius: 100%; background-color: #474747; margin: 0; padding: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .page-date__nav .dot.this-active::before { transform: scale(2); } .page-date__nav .dot .page-date__btn { position: absolute; top: 50%; right: 10px; width: auto; transform: translateY(-50%); white-space: nowrap; background: none; border: none; } .page-date__nav .dot .page-date__btn .btn__lbl { font-size: 0.8rem; opacity: 0.6; transform: scale(1); -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .page-date__nav .dot.this-active .page-date__btn .btn__lbl { transform: scale(1.1); opacity: 1; } .navbar { padding: 7px; overflow: visible; position: fixed; top: 0; width: 100vw; z-index: 100; border-bottom: solid 1px #cccccc; background-color: white; } .navbar .navbar-toggler { color: #cccccc; border-color: #cccccc; } .navbar .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } @media only screen and (min-width: 1200px) { .navbar { padding: 0 60px; height: 115px; } } @media only screen and (max-width: 1200px) { .navbar .navbar-brand { height: 100%; width: 35px; } } @media only screen and (min-width: 1200px) { .navbar .navbar-brand { display: none; width: 175px; background: white; padding: 22px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; -webkit-box-shadow: 0 0 10px 0 #cccccc96; -moz-box-shadow: 0 0 10px 0 #cccccc96; box-shadow: 0 0 10px 0 #cccccc96; } } @media only screen and (min-width: 1200px) { .navbar .navbar-brand { display: block; -ms-flex-item-align: start; align-self: flex-start; } } @media only screen and (min-width: 1200px) { .navbar .navbar-collapse { height: 100%; -ms-flex-direction: column; flex-direction: column; -ms-flex-align: end; align-items: flex-end; } } @media only screen and (min-width: 1200px) { .nav-item { margin: 5px 10px; text-align: right; } .nav-item.text { min-width: 100px; } } a.nav-link { color: #474747; font-weight: 400; transition: all .2s ease; } a.nav-link img { height: 25px; width: 25px; } .nav-item.active a.nav-link { font-weight: 600; } .nav-item:not(.active) a.nav-link:hover { color: #d5c8ad; } .test { height: 100vh; } .nav-item { position: relative; } .dropdown { list-style: none; padding-left: 0; background: white; visibility: hidden; opacity: 0; min-width: 5rem; position: absolute; z-index: 101; transition: all 0.5s ease; margin: 0; left: 0; display: none; border: solid 1px #474747; border-bottom: none; } .nav-item:hover .dropdown, .nav-item .dropdown:hover { visibility: visible; opacity: 1; display: block; } .dropdown li { clear: both; border-bottom: solid 1px #474747; width: 100%; text-align: left; }
css/main.css
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */ /* * What follows is the result of much research on cross-browser styling. * Credit left inline and big thanks to <NAME>, <NAME>, * <NAME>, and the H5BP dev community and team. */ /* ========================================================================== Base styles: opinionated defaults ========================================================================== */ @import url('../fonts/fonts.css'); @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap'); html { color: #222; font-size: 1em; line-height: 1.4; } body { padding: 0; margin: 0; } body, html { -webkit-font-smoothing: antialiased; background-color: #fff; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 300; color: #474747; position: relative; width: 100%; overflow-x: hidden; } @media only screen and (min-width: 768px) { body, html { font-size: 100%; } } @media only screen and (min-width: 992px) { body, html { font-size: 15px; } } @media only screen and (min-width: 1200px) { body, html { font-size: 100%; line-height: 1.5; } } /* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * Vendor-prefixed and regular ::selection selectors cannot be combined: * https://stackoverflow.com/a/16982510/7133471 * * Customize the background color to match your design. */ ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } /* * A better looking default horizontal rule */ hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } /* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */ audio, canvas, iframe, img, svg, video { vertical-align: middle; } /* * Remove default fieldset styles. */ fieldset { border: 0; margin: 0; padding: 0; } /* * Allow only vertical resizing of textareas. */ textarea { resize: vertical; } /* ========================================================================== Author's custom styles ========================================================================== */ /* ========================================================================== Helper classes ========================================================================== */ /* * Hide visually and from screen readers */ .hidden, [hidden] { display: none !important; } /* * Hide only visually, but have it available for screen readers: * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility * * 1. For long content, line feeds are not interpreted as spaces and small width * causes content to wrap 1 word per line: * https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe */ .sr-only { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px; /* 1 */ } /* * Extends the .sr-only class to allow the element * to be focusable when navigated to via the keyboard: * https://www.drupal.org/node/897638 */ .sr-only.focusable:active, .sr-only.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; white-space: inherit; width: auto; } /* * Hide visually and from screen readers, but maintain layout */ .invisible { visibility: hidden; } /* * Clearfix: contain floats * * For modern browsers * 1. The space content is one way to avoid an Opera bug when the * `contenteditable` attribute is included anywhere else in the document. * Otherwise it causes space to appear at the top and bottom of elements * that receive the `clearfix` class. * 2. The use of `table` rather than `block` is only necessary if using * `:before` to contain the top-margins of child elements. */ .clearfix::before, .clearfix::after { content: " "; display: table; } .clearfix::after { clear: both; } /* ========================================================================== EXAMPLE Media Queries for Responsive Design. These examples override the primary ('mobile first') styles. Modify as content requires. ========================================================================== */ @media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition */ } @media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices */ } /* ========================================================================== Print styles. Inlined to avoid the additional HTTP request: https://www.phpied.com/delay-loading-your-print-css/ ========================================================================== */ @media print { *, *::before, *::after { background: #fff !important; color: #000 !important; /* Black prints faster */ box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]::after { content: " (" attr(href) ")"; } abbr[title]::after { content: " (" attr(title) ")"; } /* * Don't show links that are fragment identifiers, * or use the `javascript:` pseudo protocol */ a[href^="#"]::after, a[href^="javascript:"]::after { content: ""; } pre { white-space: pre-wrap !important; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* * Printing Tables: * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables */ thead { display: table-header-group; } tr, img { page-break-inside: avoid; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } .page { position: relative; z-index: 99; } @media only screen and (min-width: 992px) { .page.ecommerce { padding-left: 15vw; } } .page-left-right { position: relative; } .page-left, .page-right { position: relative; overflow: hidden; } @media only screen and (min-width: 992px) { .page-left, .page-right { width: 42vw; min-height: 100vh; } } @media only screen and (min-width: 1200px) { .page-left, .page-right { width: 42.5vw; min-height: 100vh; } } .page-left { background-color: #F1F1F1; height: 100vw; position: relative; top: 0; left: 0; z-index: 2; } @media only screen and (min-width: 992px) { .page-left { top: 0; height: 100vh; position: fixed; } } @media only screen and (min-width: 1200px) { .page-left { top: 0; height: 100vh; position: fixed; } } .page-left__media { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); min-width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: alpha(opacity=0); visibility: hidden; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .page-left__media--img { width: 101%; background-position: center; background-size: cover; } .page-left__media.this-active { opacity: 1; filter: alpha(opacity=100); visibility: visible; } @media only screen and (min-width: 992px) { .page-right { margin-left: 58vw; } } @media only screen and (min-width: 1200px) { .page-right { margin-left: 57.5vw; } } .js-page-left { -webkit-transition: border-width 0.8s ease; -moz-transition: border-width 0.8s ease; -ms-transition: border-width 0.8s ease; -o-transition: border-width 0.8s ease; transition: border-width 0.8s ease; border: solid 0 #fff; } .js-page-left.unstick { position: absolute; bottom: 0; top: auto; border-width: 30px; } @media only screen and (min-width: 1200px) { .js-page-left.unstick { border-width: 40px; } } .page-section { padding: 0 15px 60px; min-height: 90vh; } @media only screen and (min-width: 768px) { .page-section { padding: 0 30px 90px; min-height: 100vh; } } @media only screen and (min-width: 992px) { .page-section { padding: 28vh 30px 18vh; min-height: 75vh; } } @media only screen and (min-width: 1200px) { .page-section { padding: 28vh 40px 18vh; } } @media only screen and (min-width: 992px) { .page-section--last { min-height: 100vh; } } .page-section--pdt { padding: 120px 15px 40px; } @media only screen and (min-width: 768px) { .page-section--pdt { padding: 120px 30px 40px; } } @media only screen and (min-width: 992px) { .page-section--pdt { padding: 22vh 0 10vh; } } .page-section--full { padding: 40px 15px 60px; } @media only screen and (min-width: 768px) { .page-section--full { padding: 60px 30px 90px; } } @media only screen and (min-width: 992px) { .page-section--full { padding: 0 0 10vh; } } @media only screen and (min-width: 992px) { .page-section--full .section-title { margin-top: 22vh; } } .page-section__btn { margin-top: 25px; } @media only screen and (min-width: 768px) { .page-section__btn { margin-top: 50px; } } .section-banner { margin: 0 -15px 40px; overflow: hidden; position: relative; } .section-banner img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } .section-banner:after { content: ''; display: block; } .section-banner img { width: 100%; } .section-banner:after { padding-top: 100%; } @media only screen and (min-width: 768px) { .section-banner { margin: 0 -30px 60px; } } .section-banner__media { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover; } .section-banner__media--img { width: 100%; height: 100%; background-position: center; background-size: cover; } .js-reveal { opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.5s ease, transform 0.5s ease; -moz-transition: opacity 0.5s ease, transform 0.5s ease; -ms-transition: opacity 0.5s ease, transform 0.5s ease; -o-transition: opacity 0.5s ease, transform 0.5s ease; transition: opacity 0.5s ease, transform 0.5s ease; -webkit-transform: translateY(40px); -moz-transform: translateY(40px); -ms-transform: translateY(40px); -o-transform: translateY(40px); transform: translateY(40px); } @media only screen and (min-width: 992px) { .js-reveal { -webkit-transition: opacity 0.8s ease, transform 0.8s ease; -moz-transition: opacity 0.8s ease, transform 0.8s ease; -ms-transition: opacity 0.8s ease, transform 0.8s ease; -o-transition: opacity 0.8s ease, transform 0.8s ease; transition: opacity 0.8s ease, transform 0.8s ease; } } .js-reveal.reveal { opacity: 1; filter: alpha(opacity=100); -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { margin: 0; font-size: initial; font-weight: normal; } @media only screen and (min-width: 768px) { .section-title { margin-bottom: 50px; } } .section-title { font-size: 1.375rem; font-family: 'Didot', sans-serif; font-weight: 400; letter-spacing: .03rem; margin-bottom: 25px; } p { margin: 0; max-width: 800px; line-height: 1.4; letter-spacing: .015rem; } .copy-wrapper p { margin-bottom: 10px; } @media only screen and (min-width: 768px) { .copy-wrapper p { margin-bottom: 20px; } } .copy-wrapper p:last-child { margin-bottom: 0; } .page-section__btn { margin-top: 25px; } @media only screen and (min-width: 768px) { .page-section__btn { margin-top: 50px; } } .btn { outline: none !important; border: none !important; box-shadow: none !important; border-radius: 100px; background-color: #474747; color: #ffffff; padding: 7px 22px 10px; position: relative; overflow: hidden !important; line-height: 1; -webkit-appearance: none !important; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .btn:hover { background-color: #d5c8ad; color: white; } .btn__lbl { position: relative; z-index: 20; font-size: 0.75rem; font-family: 'Montserrat', sans-serif; font-weight: 400; letter-spacing: .1rem; text-transform: uppercase; } .page-date__nav { display: none; right: 10px; z-index: 101; opacity: 0.4; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } @media only screen and (min-width: 768px) { .page-date__nav { display: block; position: fixed; top: 55px } } @media only screen and (min-width: 992px) { .page-date__nav { top: 52px } } @media only screen and (min-width: 1200px) { .page-date__nav { top: 115px } } .page-date__nav:hover { opacity: 1; } .page-date__nav .vertical-line { height: 30px; margin: 0; padding: 0; display:-ms-flexbox; display:flex; -ms-flex-pack:center; justify-content:center } .page-date__nav .vertical-line::before { content: ''; width: 0; height: 100%; border-right: solid 1px #474747; } .page-date__nav .dot { display:-ms-flexbox; display:flex; -ms-flex-pack:center; justify-content:center; position: relative; } .page-date__nav .dot::before { content: ''; width: 5px; height: 5px; border-radius: 100%; background-color: #474747; margin: 0; padding: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .page-date__nav .dot.this-active::before { transform: scale(2); } .page-date__nav .dot .page-date__btn { position: absolute; top: 50%; right: 10px; width: auto; transform: translateY(-50%); white-space: nowrap; background: none; border: none; } .page-date__nav .dot .page-date__btn .btn__lbl { font-size: 0.8rem; opacity: 0.6; transform: scale(1); -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .page-date__nav .dot.this-active .page-date__btn .btn__lbl { transform: scale(1.1); opacity: 1; } .navbar { padding: 7px; overflow: visible; position: fixed; top: 0; width: 100vw; z-index: 100; border-bottom: solid 1px #cccccc; background-color: white; } .navbar .navbar-toggler { color: #cccccc; border-color: #cccccc; } .navbar .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } @media only screen and (min-width: 1200px) { .navbar { padding: 0 60px; height: 115px; } } @media only screen and (max-width: 1200px) { .navbar .navbar-brand { height: 100%; width: 35px; } } @media only screen and (min-width: 1200px) { .navbar .navbar-brand { display: none; width: 175px; background: white; padding: 22px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; -webkit-box-shadow: 0 0 10px 0 #cccccc96; -moz-box-shadow: 0 0 10px 0 #cccccc96; box-shadow: 0 0 10px 0 #cccccc96; } } @media only screen and (min-width: 1200px) { .navbar .navbar-brand { display: block; -ms-flex-item-align: start; align-self: flex-start; } } @media only screen and (min-width: 1200px) { .navbar .navbar-collapse { height: 100%; -ms-flex-direction: column; flex-direction: column; -ms-flex-align: end; align-items: flex-end; } } @media only screen and (min-width: 1200px) { .nav-item { margin: 5px 10px; text-align: right; } .nav-item.text { min-width: 100px; } } a.nav-link { color: #474747; font-weight: 400; transition: all .2s ease; } a.nav-link img { height: 25px; width: 25px; } .nav-item.active a.nav-link { font-weight: 600; } .nav-item:not(.active) a.nav-link:hover { color: #d5c8ad; } .test { height: 100vh; } .nav-item { position: relative; } .dropdown { list-style: none; padding-left: 0; background: white; visibility: hidden; opacity: 0; min-width: 5rem; position: absolute; z-index: 101; transition: all 0.5s ease; margin: 0; left: 0; display: none; border: solid 1px #474747; border-bottom: none; } .nav-item:hover .dropdown, .nav-item .dropdown:hover { visibility: visible; opacity: 1; display: block; } .dropdown li { clear: both; border-bottom: solid 1px #474747; width: 100%; text-align: left; }
0.690768
0.091463
position: absolute; left: 0; right: 0; top: 0; bottom: 0; } /* BEGIN - Common status bar CSS */ .status-bar-component { position: absolute; bottom: 0px; z-index: 100; } .component-mouse-coordinates { left: 0px; } .component-scale-display { right: 320px; } .component-selected-feature-count { right: 570px; } .component-view-size { right: 136px; } .component-pbmg { right: 0px; } /* END - Common status bar CSS */ #toolbar-region { z-index: 2040; position: absolute; left: 1px; width: 40px; margin: 0; padding: 0; } .sidebar { position: absolute; top: 0; bottom: 0; width: 100%; overflow: hidden; z-index: 2000; } .sidebar.collapsed { width: 45px; } @media (min-width: 768px) { .sidebar { top: 6px; bottom: 6px; transition: width 500ms; } #toolbar-region { left: 10px; } } @media (min-width: 768px) and (max-width: 991px) { .sidebar { width: 305px; } } @media (min-width: 992px) and (max-width: 1199px) { .sidebar { width: 390px; } } @media (min-width: 1200px) { .sidebar { width: 460px; } } .sidebar-left { left: 0; } @media (min-width: 768px) { .sidebar-left { left: 6px; } } .sidebar-right { right: 0; } @media (min-width: 768px) { .sidebar-right { right: 6px; } } .sidebar-tabs { top: 0; bottom: 0; height: 100%; background-color: rgba(0, 60, 136, 0.5); } .sidebar-left .sidebar-tabs { left: 0; } .sidebar-right .sidebar-tabs { right: 0; } .sidebar-tabs, .sidebar-tabs > ul { position: absolute; width: 40px; margin: 0; padding: 0; } .sidebar-tabs > li, .sidebar-tabs > ul > li { width: 100%; height: 40px; color: #fff; font-size: 12pt; overflow: hidden; transition: all 80ms; } .sidebar-tabs > li:hover, .sidebar-tabs > ul > li:hover { color: #fff; background-color: rgba(0, 60, 136, 0.6); } .sidebar-tabs > li.active, .sidebar-tabs > ul > li.active { color: #fff; background-color: #0074d9; } .sidebar-tabs > li.disabled, .sidebar-tabs > ul > li.disabled { color: rgba(255, 255, 255, 0.4); } .sidebar-tabs > li.disabled:hover, .sidebar-tabs > ul > li.disabled:hover { background: transparent; } .sidebar-tabs > li.disabled > a, .sidebar-tabs > ul > li.disabled > a { cursor: default; } .sidebar-tabs > li > a, .sidebar-tabs > ul > li > a { display: inline-block; width: 100%; height: 100%; line-height: 40px; color: inherit; text-decoration: none; text-align: center; } .sidebar-tabs > ul + ul { bottom: 0; } .sidebar-content { position: absolute; top: 0; bottom: 0; background-color: rgba(255, 255, 255, 0.95); overflow-x: hidden; overflow-y: auto; } .sidebar-left .sidebar-content { left: 42px; right: 0; } .sidebar-right .sidebar-content { left: 0; right: 42px; } .sidebar.collapsed > .sidebar-content { overflow-y: hidden; } .sidebar-pane { display: none; left: 0; right: 0; box-sizing: border-box; padding: 10px 20px; } .sidebar-pane.active { display: block; } @media (min-width: 768px) and (max-width: 991px) { .sidebar-pane { min-width: 265px; } } @media (min-width: 992px) and (max-width: 1199px) { .sidebar-pane { min-width: 350px; } } @media (min-width: 1200px) { .sidebar-pane { min-width: 420px; } } /* .sidebar-header { margin: -10px -20px 0; height: 40px; padding: 0 20px; line-height: 40px; font-size: 14.4pt; color: #fff; background-color: #0074d9; } */ .sidebar-header { line-height: 40px; font-size: 14.4pt; color: #fff; background-color: #0074d9; } .sidebar-right .sidebar-header { padding-left: 40px; } .sidebar-close { position: absolute; top: 0; width: 40px; height: 40px; text-align: center; cursor: pointer; } .sidebar-left .sidebar-close { right: 0; } .sidebar-right .sidebar-close { left: 0; } .sidebar { background-color: rgba(255, 255, 255, 0.4); } @media (min-width: 768px) { .sidebar { border: 3px solid transparent; border-radius: 4px; } } .sidebar-left { border-right: 3px solid transparent; } .sidebar-right { border-left: 3px solid transparent; } .sidebar-tabs { overflow: hidden; } @media (min-width: 768px) { .sidebar-tabs { border-radius: 2px 0 0 2px; } .collapsed .sidebar-tabs { border-radius: 2px; } } @media (min-width: 768px) { .sidebar-content { border-radius: 0 2px 2px 0; } } .sidebar-left ~ .sidebar-map .ol-zoom { margin-left: 46px; } @media (min-width: 768px) { .sidebar-left ~ .sidebar-map .ol-zoom { transition: margin-left 500ms; } } @media (min-width: 768px) and (max-width: 991px) { .sidebar-left ~ .sidebar-map .ol-zoom { margin-left: 317px; } } @media (min-width: 992px) and (max-width: 1199px) { .sidebar-left ~ .sidebar-map .ol-zoom { margin-left: 402px; } } @media (min-width: 1200px) { .sidebar-left ~ .sidebar-map .ol-zoom { margin-left: 472px; } } @media (min-width: 768px) { .sidebar-left.collapsed ~ .sidebar-map .ol-zoom { margin-left: 52px; } } .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { margin-right: 46px; } @media (min-width: 768px) { .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { transition: margin-right 500ms; } } @media (min-width: 768px) and (max-width: 991px) { .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { margin-right: 317px; } } @media (min-width: 992px) and (max-width: 1199px) { .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { margin-right: 402px; } } @media (min-width: 1200px) { .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { margin-right: 472px; } } @media (min-width: 768px) { .sidebar-right.collapsed ~ .sidebar-map .ol-rotate, .sidebar-right.collapsed ~ .sidebar-map .ol-attribution, .sidebar-right.collapsed ~ .sidebar-map .ol-full-screen { margin-right: 52px; } } html, body, #map { font: 10pt Verdana, sans-serif; } li.sidebar-separator { height: 2px !important; border-bottom: 1px solid white; } .sidebar-toolbar { color: white; } .sidebar-toolbar .toolbar-separator-vertical { border-bottom: 1px solid white; } .sidebar-toolbar .selected-item { color: black; } .sidebar-toolbar .mouse-over { color: black; } .component-navigator { top: 25px; right: 10px; } .component-scale-display { background-color: rgba(0, 60, 136, 0.5); color: white; } .component-selected-feature-count { background-color: rgba(0, 60, 136, 0.5); color: white; } .component-view-size { background-color: rgba(0, 60, 136, 0.5); color: white; } .component-mouse-coordinates { position: absolute; bottom: auto; left: auto; right: 5px; top: 5px; background-color: rgba(0, 60, 136, 0.5); color: white; } div.sidebar-has-selection-badge { background-color: red; border-radius: 4px; width: 10px; height: 10px; position: absolute; right: 3px; bottom: 3px; } @media (max-width: 768px) { .component-mouse-coordinates { display: none; } .component-scale-display { display: none; } .component-view-size { display: none; } .component-selected-feature-count { display: none; } }
viewer/css/sidebar.css
position: absolute; left: 0; right: 0; top: 0; bottom: 0; } /* BEGIN - Common status bar CSS */ .status-bar-component { position: absolute; bottom: 0px; z-index: 100; } .component-mouse-coordinates { left: 0px; } .component-scale-display { right: 320px; } .component-selected-feature-count { right: 570px; } .component-view-size { right: 136px; } .component-pbmg { right: 0px; } /* END - Common status bar CSS */ #toolbar-region { z-index: 2040; position: absolute; left: 1px; width: 40px; margin: 0; padding: 0; } .sidebar { position: absolute; top: 0; bottom: 0; width: 100%; overflow: hidden; z-index: 2000; } .sidebar.collapsed { width: 45px; } @media (min-width: 768px) { .sidebar { top: 6px; bottom: 6px; transition: width 500ms; } #toolbar-region { left: 10px; } } @media (min-width: 768px) and (max-width: 991px) { .sidebar { width: 305px; } } @media (min-width: 992px) and (max-width: 1199px) { .sidebar { width: 390px; } } @media (min-width: 1200px) { .sidebar { width: 460px; } } .sidebar-left { left: 0; } @media (min-width: 768px) { .sidebar-left { left: 6px; } } .sidebar-right { right: 0; } @media (min-width: 768px) { .sidebar-right { right: 6px; } } .sidebar-tabs { top: 0; bottom: 0; height: 100%; background-color: rgba(0, 60, 136, 0.5); } .sidebar-left .sidebar-tabs { left: 0; } .sidebar-right .sidebar-tabs { right: 0; } .sidebar-tabs, .sidebar-tabs > ul { position: absolute; width: 40px; margin: 0; padding: 0; } .sidebar-tabs > li, .sidebar-tabs > ul > li { width: 100%; height: 40px; color: #fff; font-size: 12pt; overflow: hidden; transition: all 80ms; } .sidebar-tabs > li:hover, .sidebar-tabs > ul > li:hover { color: #fff; background-color: rgba(0, 60, 136, 0.6); } .sidebar-tabs > li.active, .sidebar-tabs > ul > li.active { color: #fff; background-color: #0074d9; } .sidebar-tabs > li.disabled, .sidebar-tabs > ul > li.disabled { color: rgba(255, 255, 255, 0.4); } .sidebar-tabs > li.disabled:hover, .sidebar-tabs > ul > li.disabled:hover { background: transparent; } .sidebar-tabs > li.disabled > a, .sidebar-tabs > ul > li.disabled > a { cursor: default; } .sidebar-tabs > li > a, .sidebar-tabs > ul > li > a { display: inline-block; width: 100%; height: 100%; line-height: 40px; color: inherit; text-decoration: none; text-align: center; } .sidebar-tabs > ul + ul { bottom: 0; } .sidebar-content { position: absolute; top: 0; bottom: 0; background-color: rgba(255, 255, 255, 0.95); overflow-x: hidden; overflow-y: auto; } .sidebar-left .sidebar-content { left: 42px; right: 0; } .sidebar-right .sidebar-content { left: 0; right: 42px; } .sidebar.collapsed > .sidebar-content { overflow-y: hidden; } .sidebar-pane { display: none; left: 0; right: 0; box-sizing: border-box; padding: 10px 20px; } .sidebar-pane.active { display: block; } @media (min-width: 768px) and (max-width: 991px) { .sidebar-pane { min-width: 265px; } } @media (min-width: 992px) and (max-width: 1199px) { .sidebar-pane { min-width: 350px; } } @media (min-width: 1200px) { .sidebar-pane { min-width: 420px; } } /* .sidebar-header { margin: -10px -20px 0; height: 40px; padding: 0 20px; line-height: 40px; font-size: 14.4pt; color: #fff; background-color: #0074d9; } */ .sidebar-header { line-height: 40px; font-size: 14.4pt; color: #fff; background-color: #0074d9; } .sidebar-right .sidebar-header { padding-left: 40px; } .sidebar-close { position: absolute; top: 0; width: 40px; height: 40px; text-align: center; cursor: pointer; } .sidebar-left .sidebar-close { right: 0; } .sidebar-right .sidebar-close { left: 0; } .sidebar { background-color: rgba(255, 255, 255, 0.4); } @media (min-width: 768px) { .sidebar { border: 3px solid transparent; border-radius: 4px; } } .sidebar-left { border-right: 3px solid transparent; } .sidebar-right { border-left: 3px solid transparent; } .sidebar-tabs { overflow: hidden; } @media (min-width: 768px) { .sidebar-tabs { border-radius: 2px 0 0 2px; } .collapsed .sidebar-tabs { border-radius: 2px; } } @media (min-width: 768px) { .sidebar-content { border-radius: 0 2px 2px 0; } } .sidebar-left ~ .sidebar-map .ol-zoom { margin-left: 46px; } @media (min-width: 768px) { .sidebar-left ~ .sidebar-map .ol-zoom { transition: margin-left 500ms; } } @media (min-width: 768px) and (max-width: 991px) { .sidebar-left ~ .sidebar-map .ol-zoom { margin-left: 317px; } } @media (min-width: 992px) and (max-width: 1199px) { .sidebar-left ~ .sidebar-map .ol-zoom { margin-left: 402px; } } @media (min-width: 1200px) { .sidebar-left ~ .sidebar-map .ol-zoom { margin-left: 472px; } } @media (min-width: 768px) { .sidebar-left.collapsed ~ .sidebar-map .ol-zoom { margin-left: 52px; } } .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { margin-right: 46px; } @media (min-width: 768px) { .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { transition: margin-right 500ms; } } @media (min-width: 768px) and (max-width: 991px) { .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { margin-right: 317px; } } @media (min-width: 992px) and (max-width: 1199px) { .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { margin-right: 402px; } } @media (min-width: 1200px) { .sidebar-right ~ .sidebar-map .ol-rotate, .sidebar-right ~ .sidebar-map .ol-attribution, .sidebar-right ~ .sidebar-map .ol-full-screen { margin-right: 472px; } } @media (min-width: 768px) { .sidebar-right.collapsed ~ .sidebar-map .ol-rotate, .sidebar-right.collapsed ~ .sidebar-map .ol-attribution, .sidebar-right.collapsed ~ .sidebar-map .ol-full-screen { margin-right: 52px; } } html, body, #map { font: 10pt Verdana, sans-serif; } li.sidebar-separator { height: 2px !important; border-bottom: 1px solid white; } .sidebar-toolbar { color: white; } .sidebar-toolbar .toolbar-separator-vertical { border-bottom: 1px solid white; } .sidebar-toolbar .selected-item { color: black; } .sidebar-toolbar .mouse-over { color: black; } .component-navigator { top: 25px; right: 10px; } .component-scale-display { background-color: rgba(0, 60, 136, 0.5); color: white; } .component-selected-feature-count { background-color: rgba(0, 60, 136, 0.5); color: white; } .component-view-size { background-color: rgba(0, 60, 136, 0.5); color: white; } .component-mouse-coordinates { position: absolute; bottom: auto; left: auto; right: 5px; top: 5px; background-color: rgba(0, 60, 136, 0.5); color: white; } div.sidebar-has-selection-badge { background-color: red; border-radius: 4px; width: 10px; height: 10px; position: absolute; right: 3px; bottom: 3px; } @media (max-width: 768px) { .component-mouse-coordinates { display: none; } .component-scale-display { display: none; } .component-view-size { display: none; } .component-selected-feature-count { display: none; } }
0.634883
0.103635
@import url("https://luckfire.github.io/theme-source/src/css-compile/ThemeSource-Compiled.css"); @import url("https://nyri4.github.io/Discolored/main.css"); @import url("https://discord-custom-covers.github.io/usrbg/dist/usrbg.css"); @import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap"); #app-mount .scrollerBase-289Jih.disableScrollAnchor-3V9UtP::-webkit-scrollbar-thumb, #app-mount .scrollerBase-289Jih.auto-Ge5KZx::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.2); } #app-mount .scrollerBase-289Jih.disableScrollAnchor-3V9UtP::-webkit-scrollbar-track, #app-mount .scrollerBase-289Jih.auto-Ge5KZx::-webkit-scrollbar-track { background-color: var(--background-modifier-accent); } #app-mount .scrollerBase-289Jih.thin-1ybCId::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.2); } #app-mount .rolesList-22qj2L::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.2); } #app-mount .spoilerText-3p6IlD { background-color: rgba(255, 255, 255, 0.15); } /* Colored User Connections */ .connectedAccount-36nQx7 { background-color: transparent; border: none; } .connectedAccount-36nQx7 .connectedAccountNameInner-1phBvE::after { content: ""; position: absolute; border-radius: 2px; border: solid 1px transparent; margin-left: -40px; height: 46px; width: 260px; } .connectedAccount-36nQx7 .connectedAccountVerifiedIcon-3aZz_K .flowerStar-1GeTsn path { fill: rgba(255, 255, 255, 0.25); } .connectedAccount-36nQx7 .connectedAccountVerifiedIcon-3aZz_K .childContainer-1wxZNh { margin-top: 1px; } .connectedAccount-36nQx7 .connectedAccountIcon-3P3V6F, .connectedAccount-36nQx7 .connectedAccountName-f8AEe2, .connectedAccount-36nQx7 .connectedAccountNameInner-1phBvE span, .connectedAccount-36nQx7 .connectedAccountNameInner-1phBvE + .anchor-3Z-8Bb { z-index: 1; } .connectedAccount-36nQx7 .connectedAccountIcon-3P3V6F { margin-left: 2px; } [alt="GitHub Logo"] + .connectedAccountNameInner-1phBvE::after { background: #181b1f; border-color: #d9dadb; } [alt="Twitch Logo"] + .connectedAccountNameInner-1phBvE::after { background: #3A2E5E; border-color: #563194; } [alt="Steam Logo"] + .connectedAccountNameInner-1phBvE::after { background: #171a21; border-color: #2a475e; } [alt="Spotify Logo"] + .connectedAccountNameInner-1phBvE::after { background: #2C523E; border-color: #1ED760; } [alt="Twitter Logo"] + .connectedAccountNameInner-1phBvE::after { background: #266994; border-color: #1DA1F2; } [alt="Reddit Logo"] + .connectedAccountNameInner-1phBvE::after { background: #7D442A; border-color: #FF6314; } [alt="YouTube Logo"] + .connectedAccountNameInner-1phBvE::after { background: #772528; border-color: #EE0F0F; } [alt="Battle.net Logo"] + .connectedAccountNameInner-1phBvE::after { background: #264659; border-color: #009AE4; } [alt="Xbox Live Logo"] + .connectedAccountNameInner-1phBvE::after { background: #394E31; border-color: #5DC21E; } [alt="Facebook Logo"] + .connectedAccountNameInner-1phBvE::after { background: #14223d; border-color: #3A5998; } [alt="League of Legends Logo"] + .connectedAccountNameInner-1phBvE::after { background: #424491; border-color: #676AE6; } [alt="Skype Logo"] + .connectedAccountNameInner-1phBvE::after { background: #106d8f; border-color: #00AAE8; } [alt="GitLab Logo"] + .connectedAccountNameInner-1phBvE::after { background: #6E4330; border-color: #FC6D26; } [alt="Minecraft Logo"] + .connectedAccountNameInner-1phBvE::after { background: #693037; border-color: #EE303D; } [alt="osu! Logo"] + .connectedAccountNameInner-1phBvE::after { background: #5F3E51; border-color: #EE65A2; } [alt="discord.bio Logo"] + .connectedAccountNameInner-1phBvE::after { background: #3d4870; border-color: #7289da; } /* USRBG Support */ .userPopout-3XzG_A .header-2BwW8b { transform: translateZ(0); } .userPopout-3XzG_A .wrapper-3t9DeA::after { content: ""; position: fixed; top: 0 !important; left: 0 !important; width: 100%; height: 100%; z-index: -1; pointer-events: none; opacity: 0.5; background-size: cover; background-repeat: no-repeat; background-position: var(--user-popout-position) center; background-image: var(--user-background); } .root-SR8cQa > div:not(.body-3ND3kc) { transform: translateZ(0); } .root-SR8cQa > div:not(.body-3ND3kc) .header-QKLPzZ .wrapper-3t9DeA::after { content: ""; position: fixed; top: 0 !important; left: 0 !important; width: 100%; height: 100%; opacity: 0.5; z-index: 0 !important; pointer-events: none; background: var(--user-background) center/cover no-repeat; } .root-SR8cQa > div:not(.body-3ND3kc) .header-QKLPzZ .wrapper-3t9DeA svg { z-index: 1; position: relative; } .root-SR8cQa > div:not(.body-3ND3kc) .headerInfo-30uryT, .root-SR8cQa > div:not(.body-3ND3kc) .tabBarItem-1b8RUP, .root-SR8cQa > div:not(.body-3ND3kc) .activity-1ythUs { z-index: 1; position: relative; } /* Color Filled Roles */ #app-mount .role-2irmRk { position: relative; overflow: hidden; border: 0; z-index: 0; padding: 5px; } #app-mount .role-2irmRk .roleCircle-3xAZ1j::after { content: ""; position: absolute; background: inherit; z-index: -1; width: 100%; height: 100%; left: 0; opacity: 0.25; } #app-mount .role-2irmRk.addButton-pcyyf6 { background-color: rgba(125, 125, 125, 0.25); } /* Light Theme Warning */ html.theme-light #app-mount::after { content: "You need to have dark theme enabled for this theme to work properly. To enable it, go into Settings -> Appearance"; background: var(--background-tertiary); /* Container color */ position: fixed; z-index: 5; right: 0; bottom: 0; display: flex; align-items: center; max-width: 225px; line-height: normal; padding: 15px 0 15px 60px; margin-right: 10px; margin-bottom: 10px; border-left: 2px solid #F04747; border-radius: 2px; color: rgba(255, 255, 255, 0.65); /* Text Color */ background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMSAyMWgyMkwxMiAyIDEgMjF6bTEyLTNoLTJ2LTJoMnYyem0wLTRoLTJ2LTRoMnY0eiIvPjwvc3ZnPg=="); background-repeat: no-repeat; background-size: 35px; background-position: 10px center; }
src/support/betterdiscord/compiled.css
@import url("https://luckfire.github.io/theme-source/src/css-compile/ThemeSource-Compiled.css"); @import url("https://nyri4.github.io/Discolored/main.css"); @import url("https://discord-custom-covers.github.io/usrbg/dist/usrbg.css"); @import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap"); #app-mount .scrollerBase-289Jih.disableScrollAnchor-3V9UtP::-webkit-scrollbar-thumb, #app-mount .scrollerBase-289Jih.auto-Ge5KZx::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.2); } #app-mount .scrollerBase-289Jih.disableScrollAnchor-3V9UtP::-webkit-scrollbar-track, #app-mount .scrollerBase-289Jih.auto-Ge5KZx::-webkit-scrollbar-track { background-color: var(--background-modifier-accent); } #app-mount .scrollerBase-289Jih.thin-1ybCId::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.2); } #app-mount .rolesList-22qj2L::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.2); } #app-mount .spoilerText-3p6IlD { background-color: rgba(255, 255, 255, 0.15); } /* Colored User Connections */ .connectedAccount-36nQx7 { background-color: transparent; border: none; } .connectedAccount-36nQx7 .connectedAccountNameInner-1phBvE::after { content: ""; position: absolute; border-radius: 2px; border: solid 1px transparent; margin-left: -40px; height: 46px; width: 260px; } .connectedAccount-36nQx7 .connectedAccountVerifiedIcon-3aZz_K .flowerStar-1GeTsn path { fill: rgba(255, 255, 255, 0.25); } .connectedAccount-36nQx7 .connectedAccountVerifiedIcon-3aZz_K .childContainer-1wxZNh { margin-top: 1px; } .connectedAccount-36nQx7 .connectedAccountIcon-3P3V6F, .connectedAccount-36nQx7 .connectedAccountName-f8AEe2, .connectedAccount-36nQx7 .connectedAccountNameInner-1phBvE span, .connectedAccount-36nQx7 .connectedAccountNameInner-1phBvE + .anchor-3Z-8Bb { z-index: 1; } .connectedAccount-36nQx7 .connectedAccountIcon-3P3V6F { margin-left: 2px; } [alt="GitHub Logo"] + .connectedAccountNameInner-1phBvE::after { background: #181b1f; border-color: #d9dadb; } [alt="Twitch Logo"] + .connectedAccountNameInner-1phBvE::after { background: #3A2E5E; border-color: #563194; } [alt="Steam Logo"] + .connectedAccountNameInner-1phBvE::after { background: #171a21; border-color: #2a475e; } [alt="Spotify Logo"] + .connectedAccountNameInner-1phBvE::after { background: #2C523E; border-color: #1ED760; } [alt="Twitter Logo"] + .connectedAccountNameInner-1phBvE::after { background: #266994; border-color: #1DA1F2; } [alt="Reddit Logo"] + .connectedAccountNameInner-1phBvE::after { background: #7D442A; border-color: #FF6314; } [alt="YouTube Logo"] + .connectedAccountNameInner-1phBvE::after { background: #772528; border-color: #EE0F0F; } [alt="Battle.net Logo"] + .connectedAccountNameInner-1phBvE::after { background: #264659; border-color: #009AE4; } [alt="Xbox Live Logo"] + .connectedAccountNameInner-1phBvE::after { background: #394E31; border-color: #5DC21E; } [alt="Facebook Logo"] + .connectedAccountNameInner-1phBvE::after { background: #14223d; border-color: #3A5998; } [alt="League of Legends Logo"] + .connectedAccountNameInner-1phBvE::after { background: #424491; border-color: #676AE6; } [alt="Skype Logo"] + .connectedAccountNameInner-1phBvE::after { background: #106d8f; border-color: #00AAE8; } [alt="GitLab Logo"] + .connectedAccountNameInner-1phBvE::after { background: #6E4330; border-color: #FC6D26; } [alt="Minecraft Logo"] + .connectedAccountNameInner-1phBvE::after { background: #693037; border-color: #EE303D; } [alt="osu! Logo"] + .connectedAccountNameInner-1phBvE::after { background: #5F3E51; border-color: #EE65A2; } [alt="discord.bio Logo"] + .connectedAccountNameInner-1phBvE::after { background: #3d4870; border-color: #7289da; } /* USRBG Support */ .userPopout-3XzG_A .header-2BwW8b { transform: translateZ(0); } .userPopout-3XzG_A .wrapper-3t9DeA::after { content: ""; position: fixed; top: 0 !important; left: 0 !important; width: 100%; height: 100%; z-index: -1; pointer-events: none; opacity: 0.5; background-size: cover; background-repeat: no-repeat; background-position: var(--user-popout-position) center; background-image: var(--user-background); } .root-SR8cQa > div:not(.body-3ND3kc) { transform: translateZ(0); } .root-SR8cQa > div:not(.body-3ND3kc) .header-QKLPzZ .wrapper-3t9DeA::after { content: ""; position: fixed; top: 0 !important; left: 0 !important; width: 100%; height: 100%; opacity: 0.5; z-index: 0 !important; pointer-events: none; background: var(--user-background) center/cover no-repeat; } .root-SR8cQa > div:not(.body-3ND3kc) .header-QKLPzZ .wrapper-3t9DeA svg { z-index: 1; position: relative; } .root-SR8cQa > div:not(.body-3ND3kc) .headerInfo-30uryT, .root-SR8cQa > div:not(.body-3ND3kc) .tabBarItem-1b8RUP, .root-SR8cQa > div:not(.body-3ND3kc) .activity-1ythUs { z-index: 1; position: relative; } /* Color Filled Roles */ #app-mount .role-2irmRk { position: relative; overflow: hidden; border: 0; z-index: 0; padding: 5px; } #app-mount .role-2irmRk .roleCircle-3xAZ1j::after { content: ""; position: absolute; background: inherit; z-index: -1; width: 100%; height: 100%; left: 0; opacity: 0.25; } #app-mount .role-2irmRk.addButton-pcyyf6 { background-color: rgba(125, 125, 125, 0.25); } /* Light Theme Warning */ html.theme-light #app-mount::after { content: "You need to have dark theme enabled for this theme to work properly. To enable it, go into Settings -> Appearance"; background: var(--background-tertiary); /* Container color */ position: fixed; z-index: 5; right: 0; bottom: 0; display: flex; align-items: center; max-width: 225px; line-height: normal; padding: 15px 0 15px 60px; margin-right: 10px; margin-bottom: 10px; border-left: 2px solid #F04747; border-radius: 2px; color: rgba(255, 255, 255, 0.65); /* Text Color */ background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMSAyMWgyMkwxMiAyIDEgMjF6bTEyLTNoLTJ2LTJoMnYyem0wLTRoLTJ2LTRoMnY0eiIvPjwvc3ZnPg=="); background-repeat: no-repeat; background-size: 35px; background-position: 10px center; }
0.273283
0.064772
background-color: #261f1f; padding: 30px 0; margin-bottom: 60px; } #ResourcesFilter .drop-down-filter .each-down-filter { display: inline-block; width: 49%; vertical-align: middle; } #ResourcesFilter .drop-down-filter .each-down-filter .dropdown-title { display: inline-block; vertical-align: middle; font: 18px/130% "arial", Arial; color: #fff; padding-right: 14px; } #ResourcesFilter .drop-down-filter .each-down-filter .resources-dropdown { cursor: pointer; position: relative; display: inline-block; vertical-align: middle; width: 350px; } #ResourcesFilter .drop-down-filter .each-down-filter .resources-dropdown select { width: 100%; border: 1px solid #6b6b6b; border-radius: 3px; padding: 10px; font: 16px/130% "arial", Arial; color: #0a0a0a; } #ResourcesFilter .drop-down-filter .each-down-filter .resources-dropdown select option { font: 16px/130% "arial", Arial; color: #0a0a0a; } #ResourcesFilter .drop-down-filter .each-down-filter.resources-industries { margin-bottom: 20px; } #ResourcesFilter .resources-filter-content { padding-bottom: 30px; } #ResourcesFilter .resources-filter-content .no-resources-box { font: 20px/130% "arial", Arial; color: #424a55; display: none; padding-bottom: 30px; } #ResourcesFilter .resources-filter-content.noResource .no-resources-box { display: block; } #ResourcesFilter .resources-filter-content .each-content { display: none; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap { margin-bottom: 30px; display: inline-block; position: relative; width: 100%; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:after { background-color: rgba(0, 0, 0, 0.6); position: absolute; left: 0; top: 0; width: 100%; height: 100%; content: ""; transition: all 0.3s; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:hover:after, #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:focus:after { background-color: rgba(137, 4, 5, 0.75); transition: all 0.3s; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:hover .resources-box-text .text-wrap, #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:focus .resources-box-text .text-wrap { transform: translate(0, -50%); bottom: 50%; transition: all 0.3s; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:hover .resources-box-text .hover-cta, #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:focus .resources-box-text .hover-cta { transition: all 0.3s; opacity: 1; transform: translate(0, -110%); top: 110%; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap img { width: 100%; height: auto; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text { position: absolute; left: 0; bottom: 30px; z-index: 9; width: 100%; padding: 0 30px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .text-wrap { padding: 0 30px; position: absolute; left: 0; bottom: 0; right: 0; width: 100%; transform: translate(0, 0); z-index: 9; transition: all 0.3s; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .text-wrap .title { font: 18px/130% "arial", Arial; color: #fff; margin: 0 0 15px; text-transform: uppercase; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .text-wrap h4 { font: 22px/130% "arial", Arial; color: #fff; margin: 0 0 15px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .text-wrap p { font: 16px/130% "arial", Arial; color: #fff; margin: 0 0 25px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta { transition: all 0.3s; overflow: hidden; position: absolute; left: 0; top: 70%; right: 0; transform: translate(0, -70%); opacity: 0; padding: 0px 30px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span { padding: 8px 16px; text-align: center; color: #fff; font: 18px/130% "Conv_FujitsuSansMedium", Arial; text-decoration: none; transition: all 0.3s; border-radius: 10px; display: inline-block; vertical-align: middle; border: 1px solid #fff; padding: 12px 44px; padding: 8px 30px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span:hover, #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span:focus { transition: all 0.3s; background-color: #822630; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span:focus-within { transition: all 0.3s; background-color: #822630; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span:hover { background-color: transparent; } #ResourcesFilter .load-more-cta { text-align: center; } #ResourcesFilter .load-more-cta .load-more { margin-bottom: 60px; background-color: #822630; padding: 8px 16px; text-align: center; color: #fff; font: 18px/130% "Conv_FujitsuSansMedium", Arial; text-decoration: none; transition: all 0.3s; border-radius: 10px; display: inline-block; vertical-align: middle; border: 1px solid #822630; padding: 12px 44px; } #ResourcesFilter .load-more-cta .load-more:hover, #ResourcesFilter .load-more-cta .load-more:focus { transition: all 0.3s; background-color: #822630; } #ResourcesFilter .load-more-cta .load-more:focus-within { transition: all 0.3s; background-color: #822630; } #ResourcesFilter .load-more-cta .load-more.noContent { display: none; }
module-seventyfour/css/style.css
background-color: #261f1f; padding: 30px 0; margin-bottom: 60px; } #ResourcesFilter .drop-down-filter .each-down-filter { display: inline-block; width: 49%; vertical-align: middle; } #ResourcesFilter .drop-down-filter .each-down-filter .dropdown-title { display: inline-block; vertical-align: middle; font: 18px/130% "arial", Arial; color: #fff; padding-right: 14px; } #ResourcesFilter .drop-down-filter .each-down-filter .resources-dropdown { cursor: pointer; position: relative; display: inline-block; vertical-align: middle; width: 350px; } #ResourcesFilter .drop-down-filter .each-down-filter .resources-dropdown select { width: 100%; border: 1px solid #6b6b6b; border-radius: 3px; padding: 10px; font: 16px/130% "arial", Arial; color: #0a0a0a; } #ResourcesFilter .drop-down-filter .each-down-filter .resources-dropdown select option { font: 16px/130% "arial", Arial; color: #0a0a0a; } #ResourcesFilter .drop-down-filter .each-down-filter.resources-industries { margin-bottom: 20px; } #ResourcesFilter .resources-filter-content { padding-bottom: 30px; } #ResourcesFilter .resources-filter-content .no-resources-box { font: 20px/130% "arial", Arial; color: #424a55; display: none; padding-bottom: 30px; } #ResourcesFilter .resources-filter-content.noResource .no-resources-box { display: block; } #ResourcesFilter .resources-filter-content .each-content { display: none; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap { margin-bottom: 30px; display: inline-block; position: relative; width: 100%; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:after { background-color: rgba(0, 0, 0, 0.6); position: absolute; left: 0; top: 0; width: 100%; height: 100%; content: ""; transition: all 0.3s; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:hover:after, #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:focus:after { background-color: rgba(137, 4, 5, 0.75); transition: all 0.3s; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:hover .resources-box-text .text-wrap, #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:focus .resources-box-text .text-wrap { transform: translate(0, -50%); bottom: 50%; transition: all 0.3s; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:hover .resources-box-text .hover-cta, #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap:focus .resources-box-text .hover-cta { transition: all 0.3s; opacity: 1; transform: translate(0, -110%); top: 110%; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap img { width: 100%; height: auto; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text { position: absolute; left: 0; bottom: 30px; z-index: 9; width: 100%; padding: 0 30px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .text-wrap { padding: 0 30px; position: absolute; left: 0; bottom: 0; right: 0; width: 100%; transform: translate(0, 0); z-index: 9; transition: all 0.3s; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .text-wrap .title { font: 18px/130% "arial", Arial; color: #fff; margin: 0 0 15px; text-transform: uppercase; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .text-wrap h4 { font: 22px/130% "arial", Arial; color: #fff; margin: 0 0 15px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .text-wrap p { font: 16px/130% "arial", Arial; color: #fff; margin: 0 0 25px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta { transition: all 0.3s; overflow: hidden; position: absolute; left: 0; top: 70%; right: 0; transform: translate(0, -70%); opacity: 0; padding: 0px 30px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span { padding: 8px 16px; text-align: center; color: #fff; font: 18px/130% "Conv_FujitsuSansMedium", Arial; text-decoration: none; transition: all 0.3s; border-radius: 10px; display: inline-block; vertical-align: middle; border: 1px solid #fff; padding: 12px 44px; padding: 8px 30px; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span:hover, #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span:focus { transition: all 0.3s; background-color: #822630; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span:focus-within { transition: all 0.3s; background-color: #822630; } #ResourcesFilter .resources-filter-content .each-content .resources-box-wrap .resources-box-text .hover-cta span:hover { background-color: transparent; } #ResourcesFilter .load-more-cta { text-align: center; } #ResourcesFilter .load-more-cta .load-more { margin-bottom: 60px; background-color: #822630; padding: 8px 16px; text-align: center; color: #fff; font: 18px/130% "Conv_FujitsuSansMedium", Arial; text-decoration: none; transition: all 0.3s; border-radius: 10px; display: inline-block; vertical-align: middle; border: 1px solid #822630; padding: 12px 44px; } #ResourcesFilter .load-more-cta .load-more:hover, #ResourcesFilter .load-more-cta .load-more:focus { transition: all 0.3s; background-color: #822630; } #ResourcesFilter .load-more-cta .load-more:focus-within { transition: all 0.3s; background-color: #822630; } #ResourcesFilter .load-more-cta .load-more.noContent { display: none; }
0.462716
0.08548
## These elements in particular are known to conflict: body, ul, h#, a ## Note: changed ul to .nav>ul to avoid conflict ## Possible conflicts with tables... but none observed so far table { border-spacing: 0; border-collapse: collapse; background-color: transparent; } .simple-modal-overlay { opacity: 0.4; background-color: #fff; } .table-bordered { border: 1px solid #ddd; } .table { width: 100%; max-width: 100%; margin-bottom: 20px; } .table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th { border-top: 0; } .table-bordered>thead>tr>td, .table-bordered>thead>tr>th { border-bottom-width: 2px; } .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th { border: 1px solid #ddd; } .table>thead>tr>th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .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: 4px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #ddd; font-size: 100%; } .table-hover>tbody>tr:hover { background-color: #f5f5f5; } @font-face { font-family:'Glyphicons Halflings';src:url(http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.eot);src:url(http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.ttf) format('truetype'); } .glyphicon { position: relative; top: -1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: bold; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-search:before { content: "\e003"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; margin-left: 0; } .nav-tabs>li { float: left; margin-bottom: -1px; } .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: 1px solid #ddd; border-bottom-color: transparent; text-decoration: none; } .nav-tabs>li>a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav>li>a { position: relative; display: block; padding: 10px 15px; } .nav>li>a:hover { text-decoration: none; background-color: #eee; } .well-sm { padding: 9px; border-radius: 3px; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); box-shadow: inset 0 1px 1px rgba(0,0,0,.05); } .navbar-default { background-color: #f8f8f8; border-color: #e7e7e7; } @media (min-width: 768px) .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-form { padding: 12px 20px; margin-right: -15px; margin-left: -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-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-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-group { margin-bottom: 15px; } .navbar-form .input-group { display: inline-block; vertical-align: middle; } .input-group { position: relative; display: table; border-collapse: separate; } .form-control { display: block; width: 100%; height: 44px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; } .navbar-form .input-group>.form-control { width: 100%; } .navbar-form .input-group .form-control, .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn { width: auto; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn-group:not(:last-child)>.btn, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .input-group .form-control { position: relative; z-index: 2; width: 100%; margin-bottom: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group .form-control, .input-group-addon, .input-group-btn { } .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group { margin-left: -1px; margin-top: 0px; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child>.btn-group:not(:first-child)>.btn, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .input-group-btn>.btn { position: relative; } button, html input[type=button], input[type=reset], input[type=submit] { -webkit-appearance: button; cursor: pointer; } button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } button, select { text-transform: none; } button { overflow: visible; } .btn { display: inline-block; padding: 7px 8px; margin-bottom: 0; height: 44px; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #4cae4c; } .btn-close { color: #777; background-color: fff; border-color: #ccc; } .btn-default { color: #333; background-color: #fff; border-color: #ccc; } input { line-height: normal; } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } select.input-sm { height: 30px; line-height: 30px; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .navbar-right { float: right!important; margin-right: -8px; } @media (min-width: 768px) .navbar { border-radius: 4px; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } .navbar-left { float: left!important; } .nav>li { position: relative; display: block; } .label-default { background-color: #777; } .label-default>a:hover { text-decoration: none; } .label { display: inline; padding: .4em .6em .3em; font-size: 120%; font-weight: 400; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } :after, :before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .btn-group-vertical>.btn-group:after, .btn-group-vertical>.btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before { display: table; content: " "; } .btn-group-vertical>.btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after { clear: both; }
src/components/stripped-bootstrap.css
## These elements in particular are known to conflict: body, ul, h#, a ## Note: changed ul to .nav>ul to avoid conflict ## Possible conflicts with tables... but none observed so far table { border-spacing: 0; border-collapse: collapse; background-color: transparent; } .simple-modal-overlay { opacity: 0.4; background-color: #fff; } .table-bordered { border: 1px solid #ddd; } .table { width: 100%; max-width: 100%; margin-bottom: 20px; } .table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th { border-top: 0; } .table-bordered>thead>tr>td, .table-bordered>thead>tr>th { border-bottom-width: 2px; } .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th { border: 1px solid #ddd; } .table>thead>tr>th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .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: 4px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #ddd; font-size: 100%; } .table-hover>tbody>tr:hover { background-color: #f5f5f5; } @font-face { font-family:'Glyphicons Halflings';src:url(http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.eot);src:url(http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.ttf) format('truetype'); } .glyphicon { position: relative; top: -1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: bold; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-search:before { content: "\e003"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; margin-left: 0; } .nav-tabs>li { float: left; margin-bottom: -1px; } .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: 1px solid #ddd; border-bottom-color: transparent; text-decoration: none; } .nav-tabs>li>a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav>li>a { position: relative; display: block; padding: 10px 15px; } .nav>li>a:hover { text-decoration: none; background-color: #eee; } .well-sm { padding: 9px; border-radius: 3px; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); box-shadow: inset 0 1px 1px rgba(0,0,0,.05); } .navbar-default { background-color: #f8f8f8; border-color: #e7e7e7; } @media (min-width: 768px) .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-form { padding: 12px 20px; margin-right: -15px; margin-left: -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-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-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-group { margin-bottom: 15px; } .navbar-form .input-group { display: inline-block; vertical-align: middle; } .input-group { position: relative; display: table; border-collapse: separate; } .form-control { display: block; width: 100%; height: 44px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; } .navbar-form .input-group>.form-control { width: 100%; } .navbar-form .input-group .form-control, .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn { width: auto; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn-group:not(:last-child)>.btn, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .input-group .form-control { position: relative; z-index: 2; width: 100%; margin-bottom: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group .form-control, .input-group-addon, .input-group-btn { } .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group { margin-left: -1px; margin-top: 0px; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child>.btn-group:not(:first-child)>.btn, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .input-group-btn>.btn { position: relative; } button, html input[type=button], input[type=reset], input[type=submit] { -webkit-appearance: button; cursor: pointer; } button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } button, select { text-transform: none; } button { overflow: visible; } .btn { display: inline-block; padding: 7px 8px; margin-bottom: 0; height: 44px; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #4cae4c; } .btn-close { color: #777; background-color: fff; border-color: #ccc; } .btn-default { color: #333; background-color: #fff; border-color: #ccc; } input { line-height: normal; } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } select.input-sm { height: 30px; line-height: 30px; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .navbar-right { float: right!important; margin-right: -8px; } @media (min-width: 768px) .navbar { border-radius: 4px; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } .navbar-left { float: left!important; } .nav>li { position: relative; display: block; } .label-default { background-color: #777; } .label-default>a:hover { text-decoration: none; } .label { display: inline; padding: .4em .6em .3em; font-size: 120%; font-weight: 400; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } :after, :before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .btn-group-vertical>.btn-group:after, .btn-group-vertical>.btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before { display: table; content: " "; } .btn-group-vertical>.btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after { clear: both; }
0.355887
0.126569
.seeds-container { display: flex; flex-flow: row; flex-wrap: wrap; /* background: red; */ width: 100%; /* height: 40px; */ } .btn-dice { flex-direction: row; height: 30px; box-shadow: 1px 1px 3px 0px #607D8B; margin:5px; } .roll-button { margin: 15px auto; } .btn button { padding: 10px 50px; color: #ffffcc; background: #AA4F39; border: none; border-radius: 8px; box-shadow: 0 3px #802915; outline: none; transition: .3s; } .btn button:hover, .btn button:active { outline: none; background: #802915; cursor: pointer; padding: 11px 50px 9px 50px; margin-top: 15px; } .dice-board { width: 10%; height: 10%; } /*########## DICE THINGS ###########*/ .container-dice { display: inline-block; margin-top: 10px; width: 30px /*300px*/; margin: 50px auto 0 auto; } .dice { position: relative; width: 20px; height: 20px; transform-style: preserve-3d; transition: transform 1s; } .divot { position: absolute; width: 10px; height: 10px; margin: -20px 0 0 -20px; border-radius: 20px; background: #000; } .dice-one { margin-left: 15px; } .dice-two { margin-left: 15px; } .side { background-color: rgba(255, 255, 204, 0.97); position: absolute; width: 20px; height: 20px; border: 2px solid black; } .side:nth-child(1) { transform: translateZ(10px); } .side:nth-child(6) { transform: rotateY(180deg) translateZ(10px); } .side:nth-child(3) { transform: rotateY(90deg) translateZ(10px); } .side:nth-child(4) { transform: rotateY(-90deg) translateZ(10px); } .side:nth-child(5) { transform: rotateX(90deg) translateZ(10px); } .side:nth-child(2) { transform: rotateX(-90deg) translateZ(10px); } .show-1 { transform: rotateX(720deg) rotateZ(-720deg); } .show-6 { transform: rotateX(-900deg) rotateZ(1080deg); } .show-3 { transform: rotateY(-450deg) rotateZ(-1440deg); } .show-4 { transform: rotateY(810deg) rotateZ(720deg); } .show-5 { transform: rotateX(-810deg) rotateZ(-1080deg); } .show-2 { transform: rotateX(450deg) rotateZ(-720deg); } /* Dice Dots */ .two-1, .three-1, .four-1, .five-1, .six-1 { top: 20%; left: 20%; } .four-3, .five-3, .six-4 { top: 20%; left: 80%; } .one-1, .three-2, .five-5 { top: 50%; left: 50%; } .four-2, .five-2, .six-3 { top: 80%; left: 20%; } .two-2, .three-3, .four-4, .five-4, .six-6 { top: 80%; left: 80%; } .six-2 { top: 50%; left: 20%; } .six-5 { top: 50%; left: 80%; } /* CLEARFIX */ .clearfix:after { content: ""; display: table; clear: both; }
style.css
.seeds-container { display: flex; flex-flow: row; flex-wrap: wrap; /* background: red; */ width: 100%; /* height: 40px; */ } .btn-dice { flex-direction: row; height: 30px; box-shadow: 1px 1px 3px 0px #607D8B; margin:5px; } .roll-button { margin: 15px auto; } .btn button { padding: 10px 50px; color: #ffffcc; background: #AA4F39; border: none; border-radius: 8px; box-shadow: 0 3px #802915; outline: none; transition: .3s; } .btn button:hover, .btn button:active { outline: none; background: #802915; cursor: pointer; padding: 11px 50px 9px 50px; margin-top: 15px; } .dice-board { width: 10%; height: 10%; } /*########## DICE THINGS ###########*/ .container-dice { display: inline-block; margin-top: 10px; width: 30px /*300px*/; margin: 50px auto 0 auto; } .dice { position: relative; width: 20px; height: 20px; transform-style: preserve-3d; transition: transform 1s; } .divot { position: absolute; width: 10px; height: 10px; margin: -20px 0 0 -20px; border-radius: 20px; background: #000; } .dice-one { margin-left: 15px; } .dice-two { margin-left: 15px; } .side { background-color: rgba(255, 255, 204, 0.97); position: absolute; width: 20px; height: 20px; border: 2px solid black; } .side:nth-child(1) { transform: translateZ(10px); } .side:nth-child(6) { transform: rotateY(180deg) translateZ(10px); } .side:nth-child(3) { transform: rotateY(90deg) translateZ(10px); } .side:nth-child(4) { transform: rotateY(-90deg) translateZ(10px); } .side:nth-child(5) { transform: rotateX(90deg) translateZ(10px); } .side:nth-child(2) { transform: rotateX(-90deg) translateZ(10px); } .show-1 { transform: rotateX(720deg) rotateZ(-720deg); } .show-6 { transform: rotateX(-900deg) rotateZ(1080deg); } .show-3 { transform: rotateY(-450deg) rotateZ(-1440deg); } .show-4 { transform: rotateY(810deg) rotateZ(720deg); } .show-5 { transform: rotateX(-810deg) rotateZ(-1080deg); } .show-2 { transform: rotateX(450deg) rotateZ(-720deg); } /* Dice Dots */ .two-1, .three-1, .four-1, .five-1, .six-1 { top: 20%; left: 20%; } .four-3, .five-3, .six-4 { top: 20%; left: 80%; } .one-1, .three-2, .five-5 { top: 50%; left: 50%; } .four-2, .five-2, .six-3 { top: 80%; left: 20%; } .two-2, .three-3, .four-4, .five-4, .six-6 { top: 80%; left: 80%; } .six-2 { top: 50%; left: 20%; } .six-5 { top: 50%; left: 80%; } /* CLEARFIX */ .clearfix:after { content: ""; display: table; clear: both; }
0.358353
0.063482
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"); .theme-light { --foreground-color: rgb(20, 20, 20); --background-color: rgb(250, 235, 215); --accent-1-color: rgb(0, 102, 255); --accent-2-color: rgb(255, 174, 0); } .theme-dark { --foreground-color: rgb(255, 255, 255); --background-color: rgb(36, 36, 36); --accent-1-color: rgb(0, 153, 255); --accent-2-color: rgb(0, 255, 136); } body, html { background-color: var(--background-color); padding: 0; margin: 0; } #root { background-color: var(--background-color); color: var(--foreground-color); font-family: "IBM Plex Sans", Verdana, Geneva, Tahoma, sans-serif; width: 100%; height: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(min(600px, 1vw), 600px) minmax(0, 1fr); grid-template-rows: minmax(50px, 100px) 1fr; min-height: 100vh; } #content { grid-row: 2; grid-column: 2; padding: 1rem; } code[class*="language-"], pre[class*="language-"] { /* display: block; */ font-family: "JetBrains Mono", monospace; border-radius: 10px; } p { font-size: 12pt; line-height: 1.5rem; max-width: 100%; max-height: 100%; } #menubar a, #menubar a:visited { text-decoration: none; color: var(--foreground-color); } /* Blocks */ img { max-width: 100%; height: auto; } Text h1 { font-size: 30pt; } #content a { padding: 3px; border-radius: 5px; color: var(--foreground-color); } #content a:visited { color: rgb(247, 0, 255); } #content a:link { color: rgb(0, 174, 255); } /* #content a:hover { background-color: var(--accent-1-color) } */ .social-footer { grid-column-start: 2; display: flex; flex-direction: row; justify-content: center; align-items: center; padding-bottom: 50px; }
src/components/layout.module.css
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"); .theme-light { --foreground-color: rgb(20, 20, 20); --background-color: rgb(250, 235, 215); --accent-1-color: rgb(0, 102, 255); --accent-2-color: rgb(255, 174, 0); } .theme-dark { --foreground-color: rgb(255, 255, 255); --background-color: rgb(36, 36, 36); --accent-1-color: rgb(0, 153, 255); --accent-2-color: rgb(0, 255, 136); } body, html { background-color: var(--background-color); padding: 0; margin: 0; } #root { background-color: var(--background-color); color: var(--foreground-color); font-family: "IBM Plex Sans", Verdana, Geneva, Tahoma, sans-serif; width: 100%; height: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(min(600px, 1vw), 600px) minmax(0, 1fr); grid-template-rows: minmax(50px, 100px) 1fr; min-height: 100vh; } #content { grid-row: 2; grid-column: 2; padding: 1rem; } code[class*="language-"], pre[class*="language-"] { /* display: block; */ font-family: "JetBrains Mono", monospace; border-radius: 10px; } p { font-size: 12pt; line-height: 1.5rem; max-width: 100%; max-height: 100%; } #menubar a, #menubar a:visited { text-decoration: none; color: var(--foreground-color); } /* Blocks */ img { max-width: 100%; height: auto; } Text h1 { font-size: 30pt; } #content a { padding: 3px; border-radius: 5px; color: var(--foreground-color); } #content a:visited { color: rgb(247, 0, 255); } #content a:link { color: rgb(0, 174, 255); } /* #content a:hover { background-color: var(--accent-1-color) } */ .social-footer { grid-column-start: 2; display: flex; flex-direction: row; justify-content: center; align-items: center; padding-bottom: 50px; }
0.326808
0.087681
@media (max-width: 575.98px) { h1{ font-size: 26px; } h5{ font-size: 18px; margin: 10px 0; } p{ line-height: 18px; } /*header start*/ .logo { width: 120px; } .menu ul li a { text-align: right; padding: 0 0px !important; } /*header end*/ /*Carousel start*/ .text-area { padding: 0px 0 35px 15px; } /*Carousel end*/ /*features start*/ .features{ padding: 40px 0 60px 0; } .m_t_70 { margin-top: 40px; } .f_img { margin-bottom: 20px; } .title h5 { letter-spacing: 0px; word-spacing: 0px; } /*features end*/ /*contact start*/ .contact{ padding: 40px 0 60px 0; } /*contact end*/ } /* Small devices (landscape phones, 576px and up) */ @media (min-width: 576px) and (max-width: 767.98px) { h1{ font-size: 26px; } h5{ font-size: 18px; margin: 10px 0; } p{ line-height: 18px; } /*header start*/ .menu ul li a { text-align: right; padding: 0 0px !important; } /*header end*/ /*Carousel start*/ .text-area { padding: 0px 0 35px 15px; } /*Carousel end*/ /*features start*/ .features{ padding: 40px 0 60px 0; } .m_t_70 { margin-top: 40px; } .f_img { margin-bottom: 20px; } .title h5 { letter-spacing: 0px; word-spacing: 0px; } /*features end*/ /*contact start*/ .contact{ padding: 40px 0 60px 0; } /*contact end*/ } /* Medium devices (tablets, 768px and up) */ @media (min-width: 768px) and (max-width: 991.98px) { h1{ font-size: 26px; } h5{ margin: 20px 0; } /*header start*/ .menu ul li a { text-align: right; padding: 0 0px !important; } /*header end*/ /*Carousel start*/ .text-area { padding: 0px 0 35px 15px; } /*Carousel end*/ /*feature start*/ .features{ padding: 60px 0 80px 0; } .title h5 { letter-spacing: 0px; word-spacing: 0px; } .m_t_70 { margin-top: 40px; } /*featurre end*/ /*contact start*/ .contact{ padding: 60px 0 80px 0; } /*contact end*/ } /* Large devices (desktops, 992px and up) */ @media (min-width: 992px) and (max-width: 1199.98px) { } /* Extra large devices (large desktops, 1200px and up) */ @media (min-width: 1200px) { }
css/media.css
@media (max-width: 575.98px) { h1{ font-size: 26px; } h5{ font-size: 18px; margin: 10px 0; } p{ line-height: 18px; } /*header start*/ .logo { width: 120px; } .menu ul li a { text-align: right; padding: 0 0px !important; } /*header end*/ /*Carousel start*/ .text-area { padding: 0px 0 35px 15px; } /*Carousel end*/ /*features start*/ .features{ padding: 40px 0 60px 0; } .m_t_70 { margin-top: 40px; } .f_img { margin-bottom: 20px; } .title h5 { letter-spacing: 0px; word-spacing: 0px; } /*features end*/ /*contact start*/ .contact{ padding: 40px 0 60px 0; } /*contact end*/ } /* Small devices (landscape phones, 576px and up) */ @media (min-width: 576px) and (max-width: 767.98px) { h1{ font-size: 26px; } h5{ font-size: 18px; margin: 10px 0; } p{ line-height: 18px; } /*header start*/ .menu ul li a { text-align: right; padding: 0 0px !important; } /*header end*/ /*Carousel start*/ .text-area { padding: 0px 0 35px 15px; } /*Carousel end*/ /*features start*/ .features{ padding: 40px 0 60px 0; } .m_t_70 { margin-top: 40px; } .f_img { margin-bottom: 20px; } .title h5 { letter-spacing: 0px; word-spacing: 0px; } /*features end*/ /*contact start*/ .contact{ padding: 40px 0 60px 0; } /*contact end*/ } /* Medium devices (tablets, 768px and up) */ @media (min-width: 768px) and (max-width: 991.98px) { h1{ font-size: 26px; } h5{ margin: 20px 0; } /*header start*/ .menu ul li a { text-align: right; padding: 0 0px !important; } /*header end*/ /*Carousel start*/ .text-area { padding: 0px 0 35px 15px; } /*Carousel end*/ /*feature start*/ .features{ padding: 60px 0 80px 0; } .title h5 { letter-spacing: 0px; word-spacing: 0px; } .m_t_70 { margin-top: 40px; } /*featurre end*/ /*contact start*/ .contact{ padding: 60px 0 80px 0; } /*contact end*/ } /* Large devices (desktops, 992px and up) */ @media (min-width: 992px) and (max-width: 1199.98px) { } /* Extra large devices (large desktops, 1200px and up) */ @media (min-width: 1200px) { }
0.085346
0.048631
@font-face { font-family: alnoaman-medium; src: url("../font/wagbat-Medium.woff"); } @font-face { font-family: "GS_light"; src: url("../font/GE_SS_Text_Light.otf") format("opentype"); font-style: normal; font-weight: normal; } @font-face { font-family: "ss_medium"; src: url("../font/ge_ss_text_medium_2.woff") format("opentype"); font-style: normal; font-weight: normal; } @font-face { font-family: alnoaman-light; src: url("../font/wagbat-light.woff"); } body { font-family: "alnoaman-medium","Droid Arabic Kufi",serif; font-family: "alnoaman-light","Droid Arabic Kufi",serif; direction: rtl !important; font-weight: bold; } body .navigationBar { margin-top: -7px; padding-bottom: 10px; } body .navigationBar .navbar { background-color: #fff; border-color: #fff; position: relative; min-height: 48px; margin-bottom: 0px; border: 1px solid transparent; } .footer { padding: 20px 0px; background-color: #164168; color: #fff; /* ----- End .first_foot class ---*/ /**-- End .second_foot class **/ /* --- End Class FootDiv --*/ /*----------End SubScrib ----------------*/ } .footer h3 { font-size: 16px; } .footer h3::after { content: ""; display: block; margin-left: 4px; width: 50px; padding-top: 20px; border-bottom: 2px solid #e33a61; } .footer span { font-weight: normal !important; display: inline-block; padding: 6px; } .footer .emailSpan { margin-top: 30px; } .footer ul { padding-right: 0px; /*-- End li tag --*/ } .footer ul li { list-style-position: unset; font-size: 12px; font-weight: normal; list-style: none; padding-top: 4px; } .footer ul li a { color: #fff; text-decoration: none; } .footer ul li:hover { color: #949ea5; } .footer ul li:hover .footer ul, .footer ul li:hover a { color: #949ea5; } .footer .first_foot li::before { font-family: FontAwesome; display: inline-block; margin-left: 15px; content: "\F100"; font-size: 20px; } .footer .second_foot li::before { font-family: FontAwesome; display: inline-block; margin-left: 15px; } .footer .second_foot li:nth-child(1):before{ content:"\F015"; font-size:20px } .footer .second_foot li:nth-child(2):before{ content:"\f06a"; font-size:16px } .footer .second_foot li:nth-child(3):before{ content:"\F085"; font-size:16px } .footer .second_foot li:nth-child(4):before{ content:"\f0f7"; font-size:16px } .footer .second_foot li:nth-child(5):before{ content:"\f087"; font-size:16px } .footer .second_foot li:nth-child(6):before{ content:"\f0d6"; font-size:16px } .footer .second_foot li:nth-child(7):before{ content:"\f022"; font-size:16px } .footer .second_foot li:nth-child(8):before{ content:"\F025"; font-size:16px } .footer .second_foot li:nth-child(9):before{ content:"\F022"; font-size:16px } .footer .second_foot li:nth-child(10):before{ content:"\F0CB"; font-size:16px } .footer .second_foot li:nth-child(11):before{ content:"\f029"; font-size:16px } .footer .second_foot li:nth-child(12):before{ content:"\f023"; font-size:16px } .footer .second_foot li:nth-child(13):before{ content:"\f059"; font-size:16px } .footer .second_foot li:nth-child(14):before{ content:"\f041"; font-size:16px } .footer .footDiv { padding-right: 40px; /*--- End .footerSocial class --*/ } .footer .footDiv a { color: #fff; } .footer .footDiv .footerSocial ul li { float: left; padding: 0px 7px; font-size: 23px; margin-right: 3px; border-radius: 4px !important; width: 35px; } .footer .footDiv .footerSocial ul li i { line-height: 1.5; } .footer .footDiv .footerSocial ul li:nth-child(1) { background: #2ed02e; color: #fff; padding: 0px 8px; } .footer .footDiv .footerSocial ul li:nth-child(1):hover { background: #fff; color: #2ed02e !important; padding: 0px 8px; } .footer .footDiv .footerSocial ul li:nth-child(1):hover i { color: #2ed02e !important; } .footer .footDiv .footerSocial ul li:nth-child(2) { background: #848484; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(2):hover { background: #fff; color: #848484; } .footer .footDiv .footerSocial ul li:nth-child(2):hover i { color: #848484; } .footer .footDiv .footerSocial ul li:nth-child(3) { background: #0078D7; color: #fff; padding: 0px 12px; } .footer .footDiv .footerSocial ul li:nth-child(3):hover { color: #0078D7; background: #fff; padding: 0px 12px; } .footer .footDiv .footerSocial ul li:nth-child(3):hover i { color: #0078D7; } .footer .footDiv .footerSocial ul li:nth-child(4) { background: #f00000; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(4):hover { color: #f00000; background: #fff; } .footer .footDiv .footerSocial ul li:nth-child(4):hover i { color: #f00000; } .footer .footDiv .footerSocial ul li:nth-child(5) { background: #4e9bd8; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(5):hover { color: #4e9bd8; background: #fff; } .footer .footDiv .footerSocial ul li:nth-child(5):hover i { color: #4e9bd8; } .footer .footDiv .footerSocial ul li:nth-child(6) { background: #005A87; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(6):hover { color: #005A87; background: #fff; } .footer .footDiv .footerSocial ul li:nth-child(6):hover i { color: #005A87; } .footer .footDiv .footerSocial ul li:nth-child(7) { background: #e33a61; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(7):hover { color: #e33a61; background: #fff; } .footer .footDiv .footerSocial ul li:nth-child(7):hover i { color: #e33a61; } .footer .btn { margin-top: 4px; } .footer .subscrib { /* --- End .nav-bar class ------*/ } .footer .subscrib .navbar-form { padding-right: 0px; /* --- End SubscribTop class ------*/ } .footer .subscrib .navbar-form .SubscribTop { margin-top: 33px; } .footer .subscrib .navbar-form .SubscribTop h4 { margin-bottom: 6px; } .footer .subscrib .navbar-form .SubscribTop .form-control { margin-top: 1px; margin-left: -5px; border-radius: 0; width: 256px; font-size: 12px; height: 36px; color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop .form-control::-webkit-input-placeholder { color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop .form-control::-ms-input-placeholder { color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop .form-control::placeholder { color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop .form-control:focus { color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop span { font-size: 11px; } .footer .subscrib .butTop { margin-top: 6px; margin-top: 6px; width: 103px; margin-left: -6px; } @media screen and (max-width: 785px) { .footer .subscrib .butTop { float: right !important; } } /* ----- End footer -------------*/ .copyright { background: #337ab7; color: #fff; padding-top: 10px; } /*-------------- contactUs Page ----------------------*/ /*------------ recruitment Page ------------------*/ .recruitment img { -webkit-box-shadow: 0px 0px 9px -1px black; box-shadow: 0px 0px 9px -1px black; } .recruitment .mainPic { background: url("../image/recruitment/5.jpg") no-repeat fixed; background-size: cover; position: relative; padding-bottom: 20px; } .recruitment .mainPic p { position: absolute; top: 50%; left: 20%; color: #fff; font-size: 35px; line-height: 1.7; text-align: center; padding-right: 67px; } .recruitment .mainPic img { width: 100%; } .recruitment .mainPic .rightOverlay { position: absolute; top: 0; width: 100%; height: 100%; background: #000; opacity: 0.6; } .recruitment .recInfoBox { padding-top: 20px; padding-bottom: 60px; } .recruitment .carousel-control.left, .recruitment .carousel-control.right { background-image: none; } .recruitment .caro-right { display: none; } .tooltip.right .tooltip-arrow{ top: 50% !important; border-right-color: #fff; } .tooltip-inner { min-width: 200px; padding: 3px 8px; color: #fff; text-align: center; background-color: #000; border-radius: 4px; font-weight: bold; font-size: 17px; } .copyright .alert{ position: fixed; bottom: 50%; left: 36%; z-index:888788; } /* * Job Recruitment stylesheet. * */ .jobDetail{ padding: 30px; } .Jobboxes{ transition: all 0.3s cubic-bezier(.25,.8,.25,1); height: 150px; padding: 4px; line-height:70px; cursor: pointer; transition: all 0.5s ease-in-out; margin-bottom: 30px; z-index: 2; color: #000; } .jobDetail .col-lg-6:nth-child(2){ background:url(../image/jobs.jpg); background-size: cover; } .jobOverlay{ background: #16416894; position: absolute; top: 0; left: 0; width: 100%; z-index: 1; color: #fff; height: 0%; visibility: hidden; transition: all 0.4s ease-in-out; } .jobDetail .col-lg-6:nth-child(2):hover .jobOverlay{ height: 100%; visibility: visible; transition: all 1s ease-in-out; } .jobDetail .col-lg-6:nth-child(2):hover{ box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); } .jobDetail a{ text-decoration: none; color: #000; } .jobDetail p{ margin: 10% auto; } .loginBox{ box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); padding-top: 20px; padding-bottom: 20px; margin-top: 20px; margin-bottom: 20px; border-top: 1px solid #ddd; border-right: 1px solid #ddd; border-left: 1px solid #ddd; } .navbar{ margin-bottom: 0; background-color: #164168; border-color: #164168; border-radius: 0; } .navbar-default .navbar-nav>li>a{ color: #fff; } .navbar-default .navbar-nav>li>a:hover{ color: orangered; } .navbar-brand{ height: 60px; padding: 30px 15px; font-size: 18px; line-height: 20px; background: #fff; margin-right: 6px !important; } .navbar-brand>img{ display: block; width: 165px; margin-top: -17px; height: 52px; } .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand{ margin-left: -16px; background: #fff; } .loginLogout{ margin-left: 30px; margin-top: 32px; } .navbar-default .navbar-nav>li>a{ color: #fff; padding: 0 12px; } .mainNav{ margin-top: 32px; } .home .container .wellcomeing{ background: #164168; margin: 20px 0; padding: 5px; color: #fff; height: 50px; } .cvElements li{ padding: 0 12px; } .cvElements .nav>li>a{ padding: 10px 8px; color: #fff; } .cvElements .nav>li>a:focus, .nav>li>a:hover{ text-decoration: none; background-color: #164168; color: #f5b5a7 !important; } .cvElements .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{ color: #f5b5a7 !important; } .userInfoBox{ margin-top: 10px; } .home{ background:#ddd; } #main{ background: #fff; } .alignRight{ text-align: right !important; } /*------------- Time Line ----------------*/ .timeLine{ padding-bottom: 20px; } .timeLine .row{ padding-top: 40px; } .timeLine h3{ display: inline-block; padding-bottom: 16px; position: relative; text-transform: uppercase; font-weight: bold; color: #f04923; } .timeDiv{ padding-bottom: 10px; } .timeDiv .timeDivOverLay{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; /* background-color: #00000000; */ /* background-color: #fd7e7e; */ background-color: rgba(0,0,0,0.8); padding-top: 26px; transition: all 0.5s ease-in-out; opacity: 0; visibility: hidden; } .timeDiv:hover .timeDivOverLay{ visibility: visible; transition: all 0.5s ease-in-out; opacity: 1; } .timeDiv:hover h3{ color: #fff; } .timeDiv4{ background: url(../image/jobs3.jpg) no-repeat center center; background-size: cover; height: 300px; width: 98%; box-shadow: 1px 1px 7px black; cursor: pointer; position:relative; } .timeDiv5{ background: url(../image/jobs4.jpg) no-repeat center center; background-size: cover; height: 300px; width: 98%; box-shadow: 1px 1px 7px black; cursor: pointer; position:relative; } .timeLine .timeDivOverLay h2{ color: #fff; } .timeLine .timeDivOverLay i{ color: #fff; width: 80px; height: 80px; background: #ffffff4d; display: inline-block; border-radius: 50%; line-height: 2.7; font-size: 30px; } .timeLine .timeDivOverLay p{ font-size: 14px; padding: 20px 10px 0px 10px; margin-top:7px; color: #fff } #userInfo{ background:#000; } .jobDiv{ padding-bottom: 7px; } .jobDiv:hover .jobInnerDiv{ box-shadow: 2px 1px 4px -1.3px black; transition: all 0.2s ease-in-out; } .cvUserInfo{ padding-left: 0; } #progress_menu .icons{ display: inline; left: 14px; position: absolute; top: 12px; font-size: 17px; } .smallDeviceLogin{ padding: 10px 0; padding-bottom: 30px; } .smallDeviceLogin a{ color: #fff; font-weight: bold; text-decoration: none; } #progress_bar{ padding-left: 0; } @media screen and (max-width: 420px) { #progress_bar{ padding-left: 15px; } .needUp{ margin-top: -50px !important; } .recruitment .mainPic p{ position: absolute; top: 50%; left: 20%; color: #fff; font-size: 18px; line-height: 1.7; text-align: center; padding-right: 50px; } .recInfoBox .row{ text-align: center !important; } .navbar-brand{ width: 100%; height: 104px; } .navbar-brand>img{ width: 100%; height: 100px; } .nav>li{ float: right !important; } #main{ padding-top: 4px; padding-bottom: 1px; margin-bottom: 8px; } .home .container .wellcomeing{ height: 71px; font-size: 12px; } .userInfoBox{ text-align: center; } .cvUserInfo{ padding-left: 15px; } .bran{ width: 100% !important; height: 100px !important; } .navbar-brand{ width: 73%; height: 100%; } .mainBox{ padding: 0 0 !important; } .navbar-brand >img{ width: 100%; height: 70px; } } /* End Media */ input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } input[type="number"] { -moz-appearance: textfield; } .jobExplain{ color: #fff; margin-top: 29px; } .equal { display: flex; display: -webkit-flex; flex-wrap: wrap; } .mainBox a{ color: #fff; } .mainBox a:focus, .mainBox a:hover{ text-decoration: none; } .adsEnd:after{ content: 'الإعلان منتهي'; width: 80px; height: 80px; border-radius: 50%; background-color: #164168; color: #fff; position: absolute; top: 0; left: 0; font-weight: bold; border: 6px solid #ed6749; padding: 6px; line-height: 22px; padding-top: 9px; }
public/css/style.css
@font-face { font-family: alnoaman-medium; src: url("../font/wagbat-Medium.woff"); } @font-face { font-family: "GS_light"; src: url("../font/GE_SS_Text_Light.otf") format("opentype"); font-style: normal; font-weight: normal; } @font-face { font-family: "ss_medium"; src: url("../font/ge_ss_text_medium_2.woff") format("opentype"); font-style: normal; font-weight: normal; } @font-face { font-family: alnoaman-light; src: url("../font/wagbat-light.woff"); } body { font-family: "alnoaman-medium","Droid Arabic Kufi",serif; font-family: "alnoaman-light","Droid Arabic Kufi",serif; direction: rtl !important; font-weight: bold; } body .navigationBar { margin-top: -7px; padding-bottom: 10px; } body .navigationBar .navbar { background-color: #fff; border-color: #fff; position: relative; min-height: 48px; margin-bottom: 0px; border: 1px solid transparent; } .footer { padding: 20px 0px; background-color: #164168; color: #fff; /* ----- End .first_foot class ---*/ /**-- End .second_foot class **/ /* --- End Class FootDiv --*/ /*----------End SubScrib ----------------*/ } .footer h3 { font-size: 16px; } .footer h3::after { content: ""; display: block; margin-left: 4px; width: 50px; padding-top: 20px; border-bottom: 2px solid #e33a61; } .footer span { font-weight: normal !important; display: inline-block; padding: 6px; } .footer .emailSpan { margin-top: 30px; } .footer ul { padding-right: 0px; /*-- End li tag --*/ } .footer ul li { list-style-position: unset; font-size: 12px; font-weight: normal; list-style: none; padding-top: 4px; } .footer ul li a { color: #fff; text-decoration: none; } .footer ul li:hover { color: #949ea5; } .footer ul li:hover .footer ul, .footer ul li:hover a { color: #949ea5; } .footer .first_foot li::before { font-family: FontAwesome; display: inline-block; margin-left: 15px; content: "\F100"; font-size: 20px; } .footer .second_foot li::before { font-family: FontAwesome; display: inline-block; margin-left: 15px; } .footer .second_foot li:nth-child(1):before{ content:"\F015"; font-size:20px } .footer .second_foot li:nth-child(2):before{ content:"\f06a"; font-size:16px } .footer .second_foot li:nth-child(3):before{ content:"\F085"; font-size:16px } .footer .second_foot li:nth-child(4):before{ content:"\f0f7"; font-size:16px } .footer .second_foot li:nth-child(5):before{ content:"\f087"; font-size:16px } .footer .second_foot li:nth-child(6):before{ content:"\f0d6"; font-size:16px } .footer .second_foot li:nth-child(7):before{ content:"\f022"; font-size:16px } .footer .second_foot li:nth-child(8):before{ content:"\F025"; font-size:16px } .footer .second_foot li:nth-child(9):before{ content:"\F022"; font-size:16px } .footer .second_foot li:nth-child(10):before{ content:"\F0CB"; font-size:16px } .footer .second_foot li:nth-child(11):before{ content:"\f029"; font-size:16px } .footer .second_foot li:nth-child(12):before{ content:"\f023"; font-size:16px } .footer .second_foot li:nth-child(13):before{ content:"\f059"; font-size:16px } .footer .second_foot li:nth-child(14):before{ content:"\f041"; font-size:16px } .footer .footDiv { padding-right: 40px; /*--- End .footerSocial class --*/ } .footer .footDiv a { color: #fff; } .footer .footDiv .footerSocial ul li { float: left; padding: 0px 7px; font-size: 23px; margin-right: 3px; border-radius: 4px !important; width: 35px; } .footer .footDiv .footerSocial ul li i { line-height: 1.5; } .footer .footDiv .footerSocial ul li:nth-child(1) { background: #2ed02e; color: #fff; padding: 0px 8px; } .footer .footDiv .footerSocial ul li:nth-child(1):hover { background: #fff; color: #2ed02e !important; padding: 0px 8px; } .footer .footDiv .footerSocial ul li:nth-child(1):hover i { color: #2ed02e !important; } .footer .footDiv .footerSocial ul li:nth-child(2) { background: #848484; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(2):hover { background: #fff; color: #848484; } .footer .footDiv .footerSocial ul li:nth-child(2):hover i { color: #848484; } .footer .footDiv .footerSocial ul li:nth-child(3) { background: #0078D7; color: #fff; padding: 0px 12px; } .footer .footDiv .footerSocial ul li:nth-child(3):hover { color: #0078D7; background: #fff; padding: 0px 12px; } .footer .footDiv .footerSocial ul li:nth-child(3):hover i { color: #0078D7; } .footer .footDiv .footerSocial ul li:nth-child(4) { background: #f00000; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(4):hover { color: #f00000; background: #fff; } .footer .footDiv .footerSocial ul li:nth-child(4):hover i { color: #f00000; } .footer .footDiv .footerSocial ul li:nth-child(5) { background: #4e9bd8; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(5):hover { color: #4e9bd8; background: #fff; } .footer .footDiv .footerSocial ul li:nth-child(5):hover i { color: #4e9bd8; } .footer .footDiv .footerSocial ul li:nth-child(6) { background: #005A87; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(6):hover { color: #005A87; background: #fff; } .footer .footDiv .footerSocial ul li:nth-child(6):hover i { color: #005A87; } .footer .footDiv .footerSocial ul li:nth-child(7) { background: #e33a61; color: #fff; } .footer .footDiv .footerSocial ul li:nth-child(7):hover { color: #e33a61; background: #fff; } .footer .footDiv .footerSocial ul li:nth-child(7):hover i { color: #e33a61; } .footer .btn { margin-top: 4px; } .footer .subscrib { /* --- End .nav-bar class ------*/ } .footer .subscrib .navbar-form { padding-right: 0px; /* --- End SubscribTop class ------*/ } .footer .subscrib .navbar-form .SubscribTop { margin-top: 33px; } .footer .subscrib .navbar-form .SubscribTop h4 { margin-bottom: 6px; } .footer .subscrib .navbar-form .SubscribTop .form-control { margin-top: 1px; margin-left: -5px; border-radius: 0; width: 256px; font-size: 12px; height: 36px; color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop .form-control::-webkit-input-placeholder { color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop .form-control::-ms-input-placeholder { color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop .form-control::placeholder { color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop .form-control:focus { color: #337ab7; } .footer .subscrib .navbar-form .SubscribTop span { font-size: 11px; } .footer .subscrib .butTop { margin-top: 6px; margin-top: 6px; width: 103px; margin-left: -6px; } @media screen and (max-width: 785px) { .footer .subscrib .butTop { float: right !important; } } /* ----- End footer -------------*/ .copyright { background: #337ab7; color: #fff; padding-top: 10px; } /*-------------- contactUs Page ----------------------*/ /*------------ recruitment Page ------------------*/ .recruitment img { -webkit-box-shadow: 0px 0px 9px -1px black; box-shadow: 0px 0px 9px -1px black; } .recruitment .mainPic { background: url("../image/recruitment/5.jpg") no-repeat fixed; background-size: cover; position: relative; padding-bottom: 20px; } .recruitment .mainPic p { position: absolute; top: 50%; left: 20%; color: #fff; font-size: 35px; line-height: 1.7; text-align: center; padding-right: 67px; } .recruitment .mainPic img { width: 100%; } .recruitment .mainPic .rightOverlay { position: absolute; top: 0; width: 100%; height: 100%; background: #000; opacity: 0.6; } .recruitment .recInfoBox { padding-top: 20px; padding-bottom: 60px; } .recruitment .carousel-control.left, .recruitment .carousel-control.right { background-image: none; } .recruitment .caro-right { display: none; } .tooltip.right .tooltip-arrow{ top: 50% !important; border-right-color: #fff; } .tooltip-inner { min-width: 200px; padding: 3px 8px; color: #fff; text-align: center; background-color: #000; border-radius: 4px; font-weight: bold; font-size: 17px; } .copyright .alert{ position: fixed; bottom: 50%; left: 36%; z-index:888788; } /* * Job Recruitment stylesheet. * */ .jobDetail{ padding: 30px; } .Jobboxes{ transition: all 0.3s cubic-bezier(.25,.8,.25,1); height: 150px; padding: 4px; line-height:70px; cursor: pointer; transition: all 0.5s ease-in-out; margin-bottom: 30px; z-index: 2; color: #000; } .jobDetail .col-lg-6:nth-child(2){ background:url(../image/jobs.jpg); background-size: cover; } .jobOverlay{ background: #16416894; position: absolute; top: 0; left: 0; width: 100%; z-index: 1; color: #fff; height: 0%; visibility: hidden; transition: all 0.4s ease-in-out; } .jobDetail .col-lg-6:nth-child(2):hover .jobOverlay{ height: 100%; visibility: visible; transition: all 1s ease-in-out; } .jobDetail .col-lg-6:nth-child(2):hover{ box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); } .jobDetail a{ text-decoration: none; color: #000; } .jobDetail p{ margin: 10% auto; } .loginBox{ box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); padding-top: 20px; padding-bottom: 20px; margin-top: 20px; margin-bottom: 20px; border-top: 1px solid #ddd; border-right: 1px solid #ddd; border-left: 1px solid #ddd; } .navbar{ margin-bottom: 0; background-color: #164168; border-color: #164168; border-radius: 0; } .navbar-default .navbar-nav>li>a{ color: #fff; } .navbar-default .navbar-nav>li>a:hover{ color: orangered; } .navbar-brand{ height: 60px; padding: 30px 15px; font-size: 18px; line-height: 20px; background: #fff; margin-right: 6px !important; } .navbar-brand>img{ display: block; width: 165px; margin-top: -17px; height: 52px; } .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand{ margin-left: -16px; background: #fff; } .loginLogout{ margin-left: 30px; margin-top: 32px; } .navbar-default .navbar-nav>li>a{ color: #fff; padding: 0 12px; } .mainNav{ margin-top: 32px; } .home .container .wellcomeing{ background: #164168; margin: 20px 0; padding: 5px; color: #fff; height: 50px; } .cvElements li{ padding: 0 12px; } .cvElements .nav>li>a{ padding: 10px 8px; color: #fff; } .cvElements .nav>li>a:focus, .nav>li>a:hover{ text-decoration: none; background-color: #164168; color: #f5b5a7 !important; } .cvElements .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{ color: #f5b5a7 !important; } .userInfoBox{ margin-top: 10px; } .home{ background:#ddd; } #main{ background: #fff; } .alignRight{ text-align: right !important; } /*------------- Time Line ----------------*/ .timeLine{ padding-bottom: 20px; } .timeLine .row{ padding-top: 40px; } .timeLine h3{ display: inline-block; padding-bottom: 16px; position: relative; text-transform: uppercase; font-weight: bold; color: #f04923; } .timeDiv{ padding-bottom: 10px; } .timeDiv .timeDivOverLay{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; /* background-color: #00000000; */ /* background-color: #fd7e7e; */ background-color: rgba(0,0,0,0.8); padding-top: 26px; transition: all 0.5s ease-in-out; opacity: 0; visibility: hidden; } .timeDiv:hover .timeDivOverLay{ visibility: visible; transition: all 0.5s ease-in-out; opacity: 1; } .timeDiv:hover h3{ color: #fff; } .timeDiv4{ background: url(../image/jobs3.jpg) no-repeat center center; background-size: cover; height: 300px; width: 98%; box-shadow: 1px 1px 7px black; cursor: pointer; position:relative; } .timeDiv5{ background: url(../image/jobs4.jpg) no-repeat center center; background-size: cover; height: 300px; width: 98%; box-shadow: 1px 1px 7px black; cursor: pointer; position:relative; } .timeLine .timeDivOverLay h2{ color: #fff; } .timeLine .timeDivOverLay i{ color: #fff; width: 80px; height: 80px; background: #ffffff4d; display: inline-block; border-radius: 50%; line-height: 2.7; font-size: 30px; } .timeLine .timeDivOverLay p{ font-size: 14px; padding: 20px 10px 0px 10px; margin-top:7px; color: #fff } #userInfo{ background:#000; } .jobDiv{ padding-bottom: 7px; } .jobDiv:hover .jobInnerDiv{ box-shadow: 2px 1px 4px -1.3px black; transition: all 0.2s ease-in-out; } .cvUserInfo{ padding-left: 0; } #progress_menu .icons{ display: inline; left: 14px; position: absolute; top: 12px; font-size: 17px; } .smallDeviceLogin{ padding: 10px 0; padding-bottom: 30px; } .smallDeviceLogin a{ color: #fff; font-weight: bold; text-decoration: none; } #progress_bar{ padding-left: 0; } @media screen and (max-width: 420px) { #progress_bar{ padding-left: 15px; } .needUp{ margin-top: -50px !important; } .recruitment .mainPic p{ position: absolute; top: 50%; left: 20%; color: #fff; font-size: 18px; line-height: 1.7; text-align: center; padding-right: 50px; } .recInfoBox .row{ text-align: center !important; } .navbar-brand{ width: 100%; height: 104px; } .navbar-brand>img{ width: 100%; height: 100px; } .nav>li{ float: right !important; } #main{ padding-top: 4px; padding-bottom: 1px; margin-bottom: 8px; } .home .container .wellcomeing{ height: 71px; font-size: 12px; } .userInfoBox{ text-align: center; } .cvUserInfo{ padding-left: 15px; } .bran{ width: 100% !important; height: 100px !important; } .navbar-brand{ width: 73%; height: 100%; } .mainBox{ padding: 0 0 !important; } .navbar-brand >img{ width: 100%; height: 70px; } } /* End Media */ input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } input[type="number"] { -moz-appearance: textfield; } .jobExplain{ color: #fff; margin-top: 29px; } .equal { display: flex; display: -webkit-flex; flex-wrap: wrap; } .mainBox a{ color: #fff; } .mainBox a:focus, .mainBox a:hover{ text-decoration: none; } .adsEnd:after{ content: 'الإعلان منتهي'; width: 80px; height: 80px; border-radius: 50%; background-color: #164168; color: #fff; position: absolute; top: 0; left: 0; font-weight: bold; border: 6px solid #ed6749; padding: 6px; line-height: 22px; padding-top: 9px; }
0.256646
0.072538
width: 24%; position: relative; top: -44px; right: -660px; } #main .dateDiv { position: absolute; right: 47px; color: #b7afaf; } #main .badge { margin-left: 5px; } #main .mainButtonsSection .square{ background-color: #74d1b6; width: 110px; height: 110px; margin: 0 15px 18px 0; display: inline-block; } #main .mainButtonsSection .square:active{ background-color: #70c3ab; } #main .mainButtonsSection a { width: 110px; height: 110px; display: inline-block; text-align: center; vertical-align: top; color: white; text-decoration: none; padding: 12px; cursor: pointer; } #main .mainButtonsSection .glyphicon, #main .mainButtonsSection .icon { font-size: 34px; color: white; margin-bottom: 13px; } #main input:not([type=checkbox]) { margin-bottom: 10px; margin-left: 10px; width: 60%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); } #main .mainSection, #main .youtubeVideoSection { background: white; margin-top: -20px; padding-top: 20px; /*position: relative;*/ } #main .categoriesOfDishesSection { background: #e0e0e0; padding: 30px 0; } #main .categoriesOfDishesSection .categoryOfDish { height: 50px; background-color: #e0e0e0; line-height: 50px; cursor: pointer; } /*noinspection CssUnknownTarget,CssUnknownTarget*/ #main .categoriesOfDishesSection .categoryImg { width: 50px; height: 50px; float: left; margin-right: 20px; background-image: url("/images/foodicons.jpg"); } #main .categoriesOfDishesSection .allDishes .categoryImg { background-position: 232px 1002px;} #main .categoriesOfDishesSection .allDishes:hover .categoryImg, #main .categoriesOfDishesSection .allDishes:active .categoryImg { background-position: 230px 1785px; } #main .categoriesOfDishesSection .firstDishes .categoryImg { background-position: 172px 956px;} #main .categoriesOfDishesSection .firstDishes:hover .categoryImg, #main .categoriesOfDishesSection .firstDishes:active .categoryImg { background-position: 170px 1739px; } #main .categoriesOfDishesSection .secondDishes .categoryImg { background-position: 288px 1420px;} #main .categoriesOfDishesSection .secondDishes:hover .categoryImg, #main .categoriesOfDishesSection .secondDishes:active .categoryImg { background-position: 286px 2203px; } #main .categoriesOfDishesSection .salads .categoryImg { background-position: 514px 1257px;} #main .categoriesOfDishesSection .salads:hover .categoryImg, #main .categoriesOfDishesSection .salads:active .categoryImg { background-position: 512px 2040px; } #main .categoriesOfDishesSection .snacks .categoryImg { background-position: 572px 1053px;} #main .categoriesOfDishesSection .snacks:hover .categoryImg, #main .categoriesOfDishesSection .snacks:active .categoryImg { background-position: 570px 1836px; } #main .categoriesOfDishesSection .bakeryProducts .categoryImg { background-position: 398px 1310px;} #main .categoriesOfDishesSection .bakeryProducts:hover .categoryImg, #main .categoriesOfDishesSection .bakeryProducts:active .categoryImg { background-position: 396px 2093px; } #main .categoriesOfDishesSection .desserts .categoryImg { background-position: 343px 1365px;} #main .categoriesOfDishesSection .desserts:hover .categoryImg, #main .categoriesOfDishesSection .desserts:active .categoryImg { background-position: 341px 2148px; } #main .categoriesOfDishesSection .drinks .categoryImg { background-position: 230px 1365px;} #main .categoriesOfDishesSection .drinks:hover .categoryImg, #main .categoriesOfDishesSection .drinks:active .categoryImg { background-position: 228px 2148px; } #main .categoriesOfDishesSection .sauces .categoryImg { background-position: 288px 1310px;} #main .categoriesOfDishesSection .sauces:hover .categoryImg, #main .categoriesOfDishesSection .sauces:active .categoryImg { background-position: 286px 2093px; } .miniRecipe { background-color: #ebebeb; min-height: 200px; margin: 10px; position: relative; border: 1px solid #d8d8d8; } .miniRecipe .titleOfRecipe h2{ margin-top: 20px; display: inline-block; border-bottom: 2px solid transparent; } .miniRecipe .titleOfRecipe h2:hover, .miniRecipe .titleOfRecipe h2:active { border-bottom: 2px solid #a2b82c; } .miniRecipe a.titleOfRecipe { text-decoration: none; color: #555; } .miniRecipe .editBtn { position: absolute; top: 15px; right: 15px; color: #0f0f0f; opacity: 0.45; font-size: 20px; } .miniRecipe .editBtn:hover,.miniRecipe .editBtn:active { opacity: 0.65; font-size: 20px; } .miniRecipeRightSide{ padding-top: 15px; background-color: white; } .miniRecipe .photo { max-height: 242px; min-width: 285px; background-color: white; overflow: hidden; margin-left: -15px; } .miniRecipe .photo .glyphicon { position: absolute; } .mainSection .miniRecipe .photo img{ max-width: 100%; max-height: 100%; } .miniRecipe .glyphicon-star-empty, .miniRecipe .glyphicon-star { font-size: 30px; color: orange; position: absolute; top: 8px; right: 8px; text-shadow: -1px 1px #fff; } .miniRecipe h5 { margin-bottom: 20px; } .miniRecipe .showMoreBtn, .miniRecipe .hideMoreBtn { position: absolute; bottom: 5px; left: 5px; padding: 5px 11px; margin-top: 25px; outline: none; background: #e4c6f5; } .miniRecipe .showMoreBtn:hover, .miniRecipe .hideMoreBtn:hover, .miniRecipe .showMoreBtn:active, .miniRecipe .hideMoreBtn:active { background: #cab1d8; } .miniRecipe .hideMoreBtn { bottom: 5px; left: 5px; } .miniRecipe .moreInfoSection { margin-bottom: 60px; } .mainSection .preparationTime, .mainSection .cookingTime, .mainSection .totalTime, .mainSection .personsAmount{ height: 53px; width: 240px; display: inline-block; padding: 5px 10px; margin: 7px 3px 0 0; background-color: #ebebeb; } .mainSection .totalTime, .mainSection .personsAmount { margin-bottom: 20px; } .mainSection .circleIcon { background-color: #a2b82c; font-size: 17px; height: 24px; width: 24px; border-radius: 24px; display: inline-block; color: white; margin-right: 7px; } .mainSection .iconBlock { display: inline-block; vertical-align: middle; } .mainSection .description { background-color: #74d1b6; color: white; padding: 10px; font-style: italic; } .descriptionList ol{ counter-reset: myCounter; padding-left: 15px; padding-bottom: 30px; } .descriptionList li{ position: relative; padding-left: 3em; margin: 0.45em 0; list-style: none; line-height: 1.8em; } .descriptionList li:before { content: counter(myCounter); counter-increment: myCounter; position: absolute; top: 0; left: 0; width: 1.8em; height: 1.8em; line-height: 1.8em; padding: 0; color: #fff; background: #a2b82c; font-weight: bold; text-align: center; border-radius: .9em; z-index: 1; } .descriptionList li:not(:last-child):after { position: absolute; top: 1.7em; left: 0.8em; width: 3px; height: 100%; content: ''; background-color: #a2b82c; z-index: 0; } #main div.videoInList { min-height: 200px; padding: 10px 20px 10px 15px; margin: 5px 0; border: 1px solid lightgrey; } #main div.videoInList:hover { background-color: #f7f7f7; } #main .videoInList h4 { width: 750px; font-size: 19px; } #main .videoInList h4:hover, #main .videoInList h4:active { cursor: pointer; text-decoration: underline; } #main .searchVideoBtn { top: -1px; position: relative; } #main .videoInList img { cursor: pointer; float: left; margin-right: 20px; } #main .videoPlayer { text-align: center; margin: 30px -15px 30px -15px; background-color: #c0c7c5; } /*noinspection CssUnknownTarget,CssUnknownTarget*/ .shoppingList { font-family: 'Lobster', cursive; min-height: 400px; background: url("/images/3.jpg") 16% 0; margin-bottom: 20px; position: relative; text-align: center; } .shoppingList .isDone { text-decoration: line-through; background-color: #e0e0e0; } .shoppingList .ingredientsInListSection input { width: 20px; height: 20px; position: relative; top: 3px; margin-right: 10px; } .shoppingList .ingredientsInListSection button.close { right: 20px; top: 13px; } .shoppingList .newShoppingListSection, .shoppingList .shoppingListForRecipeSection { font-size: 19px; height: 200px; width: 200px; display: inline-block; vertical-align: middle; margin: 100px 70px; position: relative; padding: 20px 30px; background-color: white; box-shadow: 0 0 8px 5px lightgrey; } .shoppingList select { width: 140px; margin: 7px; font-size: 15px; } .createBtn { width: 40px; height: 40px; border-radius: 40px; outline: none; border: none; color: white; font-size: 23px; background-color: orange; position: absolute; bottom: 20px; left: 80px; } .createBtn:hover, .createBtn:active { background-color: #fd9900; } .shoppingList .addIngredientsInListSection, .shoppingList .ingredientsInListSection { min-height: 400px; padding: 30px 30px 15px 30px; overflow: auto; line-height: 1.9; } .shoppingList .listSection { background-color: #fff4f4; } .shoppingList .ingredientsInListSection { background-color: white; font-size: 17px; } .shoppingList .addIngredientsInListSection .createBtn { position: relative; bottom: -3px; left: 7px; line-height: 35px; } .shoppingList .addIngredientsInListSection h4 { font-size: 20px; margin-bottom: 20px; } .shoppingList .addIngredientsInListSection .createNewListBtn { position: relative; bottom: -180px; padding: 3px 11px; margin-top: 25px; outline: none; background: #e4c6f5; border: none; border-radius: 4px; font-size: 19px; } .shoppingList .addIngredientsInListSection .createNewListBtn:hover, .shoppingList .addIngredientsInListSection .createNewListBtn:active { background: #cab1d8; } .list-group-item { padding: 7px 15px; text-align: left; position: relative; }
app/Views/main.css
width: 24%; position: relative; top: -44px; right: -660px; } #main .dateDiv { position: absolute; right: 47px; color: #b7afaf; } #main .badge { margin-left: 5px; } #main .mainButtonsSection .square{ background-color: #74d1b6; width: 110px; height: 110px; margin: 0 15px 18px 0; display: inline-block; } #main .mainButtonsSection .square:active{ background-color: #70c3ab; } #main .mainButtonsSection a { width: 110px; height: 110px; display: inline-block; text-align: center; vertical-align: top; color: white; text-decoration: none; padding: 12px; cursor: pointer; } #main .mainButtonsSection .glyphicon, #main .mainButtonsSection .icon { font-size: 34px; color: white; margin-bottom: 13px; } #main input:not([type=checkbox]) { margin-bottom: 10px; margin-left: 10px; width: 60%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgba(0,0,0,.075); } #main .mainSection, #main .youtubeVideoSection { background: white; margin-top: -20px; padding-top: 20px; /*position: relative;*/ } #main .categoriesOfDishesSection { background: #e0e0e0; padding: 30px 0; } #main .categoriesOfDishesSection .categoryOfDish { height: 50px; background-color: #e0e0e0; line-height: 50px; cursor: pointer; } /*noinspection CssUnknownTarget,CssUnknownTarget*/ #main .categoriesOfDishesSection .categoryImg { width: 50px; height: 50px; float: left; margin-right: 20px; background-image: url("/images/foodicons.jpg"); } #main .categoriesOfDishesSection .allDishes .categoryImg { background-position: 232px 1002px;} #main .categoriesOfDishesSection .allDishes:hover .categoryImg, #main .categoriesOfDishesSection .allDishes:active .categoryImg { background-position: 230px 1785px; } #main .categoriesOfDishesSection .firstDishes .categoryImg { background-position: 172px 956px;} #main .categoriesOfDishesSection .firstDishes:hover .categoryImg, #main .categoriesOfDishesSection .firstDishes:active .categoryImg { background-position: 170px 1739px; } #main .categoriesOfDishesSection .secondDishes .categoryImg { background-position: 288px 1420px;} #main .categoriesOfDishesSection .secondDishes:hover .categoryImg, #main .categoriesOfDishesSection .secondDishes:active .categoryImg { background-position: 286px 2203px; } #main .categoriesOfDishesSection .salads .categoryImg { background-position: 514px 1257px;} #main .categoriesOfDishesSection .salads:hover .categoryImg, #main .categoriesOfDishesSection .salads:active .categoryImg { background-position: 512px 2040px; } #main .categoriesOfDishesSection .snacks .categoryImg { background-position: 572px 1053px;} #main .categoriesOfDishesSection .snacks:hover .categoryImg, #main .categoriesOfDishesSection .snacks:active .categoryImg { background-position: 570px 1836px; } #main .categoriesOfDishesSection .bakeryProducts .categoryImg { background-position: 398px 1310px;} #main .categoriesOfDishesSection .bakeryProducts:hover .categoryImg, #main .categoriesOfDishesSection .bakeryProducts:active .categoryImg { background-position: 396px 2093px; } #main .categoriesOfDishesSection .desserts .categoryImg { background-position: 343px 1365px;} #main .categoriesOfDishesSection .desserts:hover .categoryImg, #main .categoriesOfDishesSection .desserts:active .categoryImg { background-position: 341px 2148px; } #main .categoriesOfDishesSection .drinks .categoryImg { background-position: 230px 1365px;} #main .categoriesOfDishesSection .drinks:hover .categoryImg, #main .categoriesOfDishesSection .drinks:active .categoryImg { background-position: 228px 2148px; } #main .categoriesOfDishesSection .sauces .categoryImg { background-position: 288px 1310px;} #main .categoriesOfDishesSection .sauces:hover .categoryImg, #main .categoriesOfDishesSection .sauces:active .categoryImg { background-position: 286px 2093px; } .miniRecipe { background-color: #ebebeb; min-height: 200px; margin: 10px; position: relative; border: 1px solid #d8d8d8; } .miniRecipe .titleOfRecipe h2{ margin-top: 20px; display: inline-block; border-bottom: 2px solid transparent; } .miniRecipe .titleOfRecipe h2:hover, .miniRecipe .titleOfRecipe h2:active { border-bottom: 2px solid #a2b82c; } .miniRecipe a.titleOfRecipe { text-decoration: none; color: #555; } .miniRecipe .editBtn { position: absolute; top: 15px; right: 15px; color: #0f0f0f; opacity: 0.45; font-size: 20px; } .miniRecipe .editBtn:hover,.miniRecipe .editBtn:active { opacity: 0.65; font-size: 20px; } .miniRecipeRightSide{ padding-top: 15px; background-color: white; } .miniRecipe .photo { max-height: 242px; min-width: 285px; background-color: white; overflow: hidden; margin-left: -15px; } .miniRecipe .photo .glyphicon { position: absolute; } .mainSection .miniRecipe .photo img{ max-width: 100%; max-height: 100%; } .miniRecipe .glyphicon-star-empty, .miniRecipe .glyphicon-star { font-size: 30px; color: orange; position: absolute; top: 8px; right: 8px; text-shadow: -1px 1px #fff; } .miniRecipe h5 { margin-bottom: 20px; } .miniRecipe .showMoreBtn, .miniRecipe .hideMoreBtn { position: absolute; bottom: 5px; left: 5px; padding: 5px 11px; margin-top: 25px; outline: none; background: #e4c6f5; } .miniRecipe .showMoreBtn:hover, .miniRecipe .hideMoreBtn:hover, .miniRecipe .showMoreBtn:active, .miniRecipe .hideMoreBtn:active { background: #cab1d8; } .miniRecipe .hideMoreBtn { bottom: 5px; left: 5px; } .miniRecipe .moreInfoSection { margin-bottom: 60px; } .mainSection .preparationTime, .mainSection .cookingTime, .mainSection .totalTime, .mainSection .personsAmount{ height: 53px; width: 240px; display: inline-block; padding: 5px 10px; margin: 7px 3px 0 0; background-color: #ebebeb; } .mainSection .totalTime, .mainSection .personsAmount { margin-bottom: 20px; } .mainSection .circleIcon { background-color: #a2b82c; font-size: 17px; height: 24px; width: 24px; border-radius: 24px; display: inline-block; color: white; margin-right: 7px; } .mainSection .iconBlock { display: inline-block; vertical-align: middle; } .mainSection .description { background-color: #74d1b6; color: white; padding: 10px; font-style: italic; } .descriptionList ol{ counter-reset: myCounter; padding-left: 15px; padding-bottom: 30px; } .descriptionList li{ position: relative; padding-left: 3em; margin: 0.45em 0; list-style: none; line-height: 1.8em; } .descriptionList li:before { content: counter(myCounter); counter-increment: myCounter; position: absolute; top: 0; left: 0; width: 1.8em; height: 1.8em; line-height: 1.8em; padding: 0; color: #fff; background: #a2b82c; font-weight: bold; text-align: center; border-radius: .9em; z-index: 1; } .descriptionList li:not(:last-child):after { position: absolute; top: 1.7em; left: 0.8em; width: 3px; height: 100%; content: ''; background-color: #a2b82c; z-index: 0; } #main div.videoInList { min-height: 200px; padding: 10px 20px 10px 15px; margin: 5px 0; border: 1px solid lightgrey; } #main div.videoInList:hover { background-color: #f7f7f7; } #main .videoInList h4 { width: 750px; font-size: 19px; } #main .videoInList h4:hover, #main .videoInList h4:active { cursor: pointer; text-decoration: underline; } #main .searchVideoBtn { top: -1px; position: relative; } #main .videoInList img { cursor: pointer; float: left; margin-right: 20px; } #main .videoPlayer { text-align: center; margin: 30px -15px 30px -15px; background-color: #c0c7c5; } /*noinspection CssUnknownTarget,CssUnknownTarget*/ .shoppingList { font-family: 'Lobster', cursive; min-height: 400px; background: url("/images/3.jpg") 16% 0; margin-bottom: 20px; position: relative; text-align: center; } .shoppingList .isDone { text-decoration: line-through; background-color: #e0e0e0; } .shoppingList .ingredientsInListSection input { width: 20px; height: 20px; position: relative; top: 3px; margin-right: 10px; } .shoppingList .ingredientsInListSection button.close { right: 20px; top: 13px; } .shoppingList .newShoppingListSection, .shoppingList .shoppingListForRecipeSection { font-size: 19px; height: 200px; width: 200px; display: inline-block; vertical-align: middle; margin: 100px 70px; position: relative; padding: 20px 30px; background-color: white; box-shadow: 0 0 8px 5px lightgrey; } .shoppingList select { width: 140px; margin: 7px; font-size: 15px; } .createBtn { width: 40px; height: 40px; border-radius: 40px; outline: none; border: none; color: white; font-size: 23px; background-color: orange; position: absolute; bottom: 20px; left: 80px; } .createBtn:hover, .createBtn:active { background-color: #fd9900; } .shoppingList .addIngredientsInListSection, .shoppingList .ingredientsInListSection { min-height: 400px; padding: 30px 30px 15px 30px; overflow: auto; line-height: 1.9; } .shoppingList .listSection { background-color: #fff4f4; } .shoppingList .ingredientsInListSection { background-color: white; font-size: 17px; } .shoppingList .addIngredientsInListSection .createBtn { position: relative; bottom: -3px; left: 7px; line-height: 35px; } .shoppingList .addIngredientsInListSection h4 { font-size: 20px; margin-bottom: 20px; } .shoppingList .addIngredientsInListSection .createNewListBtn { position: relative; bottom: -180px; padding: 3px 11px; margin-top: 25px; outline: none; background: #e4c6f5; border: none; border-radius: 4px; font-size: 19px; } .shoppingList .addIngredientsInListSection .createNewListBtn:hover, .shoppingList .addIngredientsInListSection .createNewListBtn:active { background: #cab1d8; } .list-group-item { padding: 7px 15px; text-align: left; position: relative; }
0.365343
0.060114
html, body { font-family: 'Open Sans', "Hiragino Sans GB", "STXihei", "WenQuanYi Micro Hei", "Microsoft YaHei", "Helvetica", "Arial", sans-serif; width: 100%; height: 100%; background-color: #fbfbfb; } a { color: #ff5371; text-decoration: none !important; } .a-black{ color: #000000; } .video-js { width: 100% !important; height: 100% !important; } .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: #337ab7; text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover { z-index: 3; color: #fff; cursor: default; background-color: #337ab7; border-color: #337ab7; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover { color: #777; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover { z-index: 2; color: #23527c; background-color: #eee; border-color: #ddd; } .main-content { max-width: 1280px; margin: 0 auto; } .shadow-card { border-radius: 2px; overflow: hidden; border: 0; box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2) } .banner { background-image: url('//s-img.niconico.in/large/a15b4afegw1f4dqgd7m6vj218g0iwwkb.jpg'); background-size: cover; background-position: center; } .banner-room { padding-top: 3em; padding-bottom: 3em; } .banner-player { width: 100%; } .player-shadow { width: 68%; margin: 0 auto; box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2) } .inner { padding: 11em 0 9em; } .unslider { position: relative; overflow: hidden; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); } .unslider-nav { position: absolute; width: 100%; bottom: 20px; } .unslider-nav ol { list-style: none; text-align: center; } .unslider-nav ol li { display: inline-block; width: 16px; height: 16px; margin: 0 5px; background: transparent; border-radius: 90%; overflow: hidden; text-indent: -999em; border: 2px solid #fff; cursor: pointer; } .unslider-nav ol li.unslider-active { background: #fff; cursor: default; } .live-nav-top { position: relative; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); background-color: rgba(255, 255, 255, .5); padding: .5rem 2rem; } .all-nav-top { position: fixed; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); background-color: rgba(255, 255, 255, 1); padding: .5rem 2rem; } .live-nav-top a, .all-nav-top a { color: black; } .top-bar { padding-left: 0; padding-right: 0; } .sub-header { padding-top: 25px; padding-bottom: 25px; } .category-header { padding-top: 4em; padding-bottom: 4em; color: white; } .live-card { background-size: cover; background-position: center; min-height: 120px; border-radius: 2px; overflow: hidden; } .live-card-title { position: absolute; bottom: 0; width: 100%; background-color: rgba(24, 24, 24, 0.45); } .live-card-title p { padding: 10px 12px; margin-right: 76px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .live-card-avatar { position: absolute; border-radius: 100%; top: -28px; right: 10px; padding: 3px; background-color: white; } .live-card-avatar img { border-radius: 100%; width: 100%; } .live-sub-title { font-size: .6em; padding-left: 1em; } .content-footer { padding: 35px 0 25px 0; text-align: center; } .directory-card { background-size: cover; background-position: center; min-height: 120px; border-radius: 2px; overflow: hidden; } .directory-card-title { position: absolute; bottom: 0; width: 100%; background-color: rgba(24, 24, 24, 0.45); } .directory-card-title p { padding: 10px 12px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .no-margin-bottom { margin-bottom: 0; } .no-padding-left { padding-left: 0; } .description-text { padding: 6px 5px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .room-title { overflow: hidden; white-space: nowrap; padding: .2em 0; text-overflow: ellipsis; } .danmaku-card-content { position: relative; background-size: cover; background-position: center; overflow: hidden; overflow-y: scroll; padding: 10px 16px; } .danmaku-card-title { width: 100%; } .danmaku-card-title p { font-size: 1.2em; padding: .6em .5em; margin-right: 76px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .live-title-avatar { border-radius: 100%; padding: 2px; border: 2px solid #dadada; margin-right: 15px; } .login-register-content { max-width: 600px; } .user-danmaku-name { color: #4fc1e9 !important; } .user-danmaku { font-size: 16px; padding: 2px; } .user-danmaku span { color: rgba(0, 0, 0, .7) } .image-border { padding: 5px; border-radius: 15px; border: solid #D5D5D5; } .user-center-left { padding-bottom: 1em; } .user-info-right { padding-top: 10px; padding-bottom: 10px; } .user-info-setting { font-size: 14px; margin-left: 1em; } .alipay-card { width: 146px; height: 146px; background-size: 100%; background-image: url('//s-img.niconico.in/large/a15b4afegw1f4ewwerf4cj20nw0nwgmx.jpg'); } .user-info-right-content { line-height: 1.6em; } .input-group-padding-bottom { padding-bottom: .5em; } .input-group-padding-top { padding-top: .5em; } .file-input::after { content: '已选择,点击完成上传'; } .c-indicator { top: 4px; } .background-image { background-size: cover; background-position: center; } .video-card { background-size: cover; background-position: center; min-height: 120px; border-radius: 2px; overflow: hidden; } .video-card-title { position: absolute; bottom: 0; width: 100%; background-color: rgba(24, 24, 24, 0.45); } .video-card-title p { padding: 6px 10px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .video-card-description { font-size: 14px; padding: .5em 0; } .video-card-description li { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } @media (min-width: 1600px) and (max-width: 1900px) { .main-content { max-width: 1440px; margin: 0 auto; } } @media (min-width: 1900px){ .main-content { max-width: 1680px; margin: 0 auto; } }
public/css/style.css
html, body { font-family: 'Open Sans', "Hiragino Sans GB", "STXihei", "WenQuanYi Micro Hei", "Microsoft YaHei", "Helvetica", "Arial", sans-serif; width: 100%; height: 100%; background-color: #fbfbfb; } a { color: #ff5371; text-decoration: none !important; } .a-black{ color: #000000; } .video-js { width: 100% !important; height: 100% !important; } .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: #337ab7; text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover { z-index: 3; color: #fff; cursor: default; background-color: #337ab7; border-color: #337ab7; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover { color: #777; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover { z-index: 2; color: #23527c; background-color: #eee; border-color: #ddd; } .main-content { max-width: 1280px; margin: 0 auto; } .shadow-card { border-radius: 2px; overflow: hidden; border: 0; box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2) } .banner { background-image: url('//s-img.niconico.in/large/a15b4afegw1f4dqgd7m6vj218g0iwwkb.jpg'); background-size: cover; background-position: center; } .banner-room { padding-top: 3em; padding-bottom: 3em; } .banner-player { width: 100%; } .player-shadow { width: 68%; margin: 0 auto; box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2) } .inner { padding: 11em 0 9em; } .unslider { position: relative; overflow: hidden; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); } .unslider-nav { position: absolute; width: 100%; bottom: 20px; } .unslider-nav ol { list-style: none; text-align: center; } .unslider-nav ol li { display: inline-block; width: 16px; height: 16px; margin: 0 5px; background: transparent; border-radius: 90%; overflow: hidden; text-indent: -999em; border: 2px solid #fff; cursor: pointer; } .unslider-nav ol li.unslider-active { background: #fff; cursor: default; } .live-nav-top { position: relative; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); background-color: rgba(255, 255, 255, .5); padding: .5rem 2rem; } .all-nav-top { position: fixed; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); background-color: rgba(255, 255, 255, 1); padding: .5rem 2rem; } .live-nav-top a, .all-nav-top a { color: black; } .top-bar { padding-left: 0; padding-right: 0; } .sub-header { padding-top: 25px; padding-bottom: 25px; } .category-header { padding-top: 4em; padding-bottom: 4em; color: white; } .live-card { background-size: cover; background-position: center; min-height: 120px; border-radius: 2px; overflow: hidden; } .live-card-title { position: absolute; bottom: 0; width: 100%; background-color: rgba(24, 24, 24, 0.45); } .live-card-title p { padding: 10px 12px; margin-right: 76px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .live-card-avatar { position: absolute; border-radius: 100%; top: -28px; right: 10px; padding: 3px; background-color: white; } .live-card-avatar img { border-radius: 100%; width: 100%; } .live-sub-title { font-size: .6em; padding-left: 1em; } .content-footer { padding: 35px 0 25px 0; text-align: center; } .directory-card { background-size: cover; background-position: center; min-height: 120px; border-radius: 2px; overflow: hidden; } .directory-card-title { position: absolute; bottom: 0; width: 100%; background-color: rgba(24, 24, 24, 0.45); } .directory-card-title p { padding: 10px 12px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .no-margin-bottom { margin-bottom: 0; } .no-padding-left { padding-left: 0; } .description-text { padding: 6px 5px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .room-title { overflow: hidden; white-space: nowrap; padding: .2em 0; text-overflow: ellipsis; } .danmaku-card-content { position: relative; background-size: cover; background-position: center; overflow: hidden; overflow-y: scroll; padding: 10px 16px; } .danmaku-card-title { width: 100%; } .danmaku-card-title p { font-size: 1.2em; padding: .6em .5em; margin-right: 76px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .live-title-avatar { border-radius: 100%; padding: 2px; border: 2px solid #dadada; margin-right: 15px; } .login-register-content { max-width: 600px; } .user-danmaku-name { color: #4fc1e9 !important; } .user-danmaku { font-size: 16px; padding: 2px; } .user-danmaku span { color: rgba(0, 0, 0, .7) } .image-border { padding: 5px; border-radius: 15px; border: solid #D5D5D5; } .user-center-left { padding-bottom: 1em; } .user-info-right { padding-top: 10px; padding-bottom: 10px; } .user-info-setting { font-size: 14px; margin-left: 1em; } .alipay-card { width: 146px; height: 146px; background-size: 100%; background-image: url('//s-img.niconico.in/large/a15b4afegw1f4ewwerf4cj20nw0nwgmx.jpg'); } .user-info-right-content { line-height: 1.6em; } .input-group-padding-bottom { padding-bottom: .5em; } .input-group-padding-top { padding-top: .5em; } .file-input::after { content: '已选择,点击完成上传'; } .c-indicator { top: 4px; } .background-image { background-size: cover; background-position: center; } .video-card { background-size: cover; background-position: center; min-height: 120px; border-radius: 2px; overflow: hidden; } .video-card-title { position: absolute; bottom: 0; width: 100%; background-color: rgba(24, 24, 24, 0.45); } .video-card-title p { padding: 6px 10px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .video-card-description { font-size: 14px; padding: .5em 0; } .video-card-description li { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } @media (min-width: 1600px) and (max-width: 1900px) { .main-content { max-width: 1440px; margin: 0 auto; } } @media (min-width: 1900px){ .main-content { max-width: 1680px; margin: 0 auto; } }
0.648021
0.114963
body { background-color: #FFF; font-family: 'Ubuntu', sans-serif; text-align: center; } p { font-size: 16px; } button { background-color: #00d4e1; border: none; border-radius: 10px; color: #fff; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 20px; transition: all .3s; } button:hover { transform: scale(1.05, 1.05); box-shadow: 5px 5px rgba(0,0,0,.3); cursor: pointer; } #varWrapper { border: 2px solid #555; padding: 10px; border-radius: 10px; width: 30%; margin: 10px; margin-left: 35%; position:fixed; background: white; z-index: 5; opacity: 0; top: -1000px; } @keyframes loading { from{opacity: 0;top: -1000px;} to{opacity: 1;top: 20%;} } .loading { animation-name: loading; animation-duration: 1s; animation-fill-mode: forwards; } .loaded { opacity: 1 !important; top: 20% !important; } .unloading { animation-name: loading; animation-duration: .9s; animation-direction: reverse; } #variables { width: 50%; margin-left: 30%; } .link { stroke: #999; stroke-opacity: .6; stroke-width: 1px; } .card { margin: 2rem; min-height: 20rem; } .graphButton { height:90%; width:100%; border:none; background-repeat: no-repeat; background-size: contain; background-position: center; background-color: #caffbf; } .graphButton:disabled { background-color: #ffadad; cursor: not-allowed; } @media screen and (min-width: 300px) { .card { flex: 1 1 calc(90% - 2rem); } } @media screen and (min-width: 600px) { .card { flex: 1 1 calc(40% - 2rem); } } @media screen and (min-width: 900px) { .card { flex: 1 1 calc(23% - 2rem); } } #inputContainer { position:relative; color: white; background-color: #00d4e1; border-radius: 10px; width: 15%; margin-right: auto; margin-left: auto; font-size: 20px; padding-top: 15px; padding-bottom: 15px; transition: all .3s; margin-bottom: 10px; } #inputContainer:hover { transform: scale(1.05, 1.05); box-shadow: 5px 5px rgba(0,0,0,.3); cursor: pointer; } .dropdown { position: relative; display: inline-block; } .hiddenInput { position: absolute; z-index: 100; opacity: 0; cursor: pointer; right: 0; top: 0; height: 100%; font-size: 24px; width: 100%; } /* Customize the label (the container) */ .checkLabel { display: block; position: relative; padding-left: 23px; font-size: 16px; user-select: none; width: 100px; padding-right: 10px; } /* Hide the browser's default checkbox */ .checkLabel input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } /* Create a custom checkbox */ .checkSpan { position: absolute; top: 0; left: 0; height: 18px; width: 18px; background-color: #bbb; } /* On mouse-over, add a grey background color */ .checkLabel:hover input ~ .checkSpan { background-color: #aaa; } /* When the checkbox is checked, add a blue background */ .checkLabel input:checked ~ .checkSpan { background-color: #2196F3; } /* Create the checkmark/indicator (hidden when not checked) */ .checkSpan:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .checkLabel input:checked ~ .checkSpan:after { display: block; } /* Style the checkmark/indicator */ .checkLabel .checkSpan:after { left: 6px; top: 3px; width: 3px; height: 8px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } #legend { width: 200px; float:left; } #graphArea { float: left; } #wrapper { display:flex; justify-content: center; align-items: center; position: fixed; width: 99.9%; height: 99.9%; z-index: 100; top: 0; left: 0; right: 0; padding-top: 5%; background-color: #FFF; visibility: hidden; } #close { position: absolute; top: 0px; left: 0px; background-color: rgba(0,0,0,0); width: 50px; height: 50px; background-image: url("graph_images/close.png"); background-repeat: no-repeat; background-size: contain; padding: 0px; cursor: pointer; } #close:hover { background-image: url("graph_images/close_hover.png"); background-size: contain; } #graphTitle { border: none; position: absolute; top: 5%; font-size: 40px; text-align: center; width: 50%; } #graphTitle:focus { border-bottom: solid 2px black !important; outline: none; } #graphTitle:hover { border-bottom: solid 2px lightgrey; outline:none; } #graphButtons { display:flex; flex-wrap:wrap; } .tooltip { position: fixed; }
style.css
body { background-color: #FFF; font-family: 'Ubuntu', sans-serif; text-align: center; } p { font-size: 16px; } button { background-color: #00d4e1; border: none; border-radius: 10px; color: #fff; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 20px; transition: all .3s; } button:hover { transform: scale(1.05, 1.05); box-shadow: 5px 5px rgba(0,0,0,.3); cursor: pointer; } #varWrapper { border: 2px solid #555; padding: 10px; border-radius: 10px; width: 30%; margin: 10px; margin-left: 35%; position:fixed; background: white; z-index: 5; opacity: 0; top: -1000px; } @keyframes loading { from{opacity: 0;top: -1000px;} to{opacity: 1;top: 20%;} } .loading { animation-name: loading; animation-duration: 1s; animation-fill-mode: forwards; } .loaded { opacity: 1 !important; top: 20% !important; } .unloading { animation-name: loading; animation-duration: .9s; animation-direction: reverse; } #variables { width: 50%; margin-left: 30%; } .link { stroke: #999; stroke-opacity: .6; stroke-width: 1px; } .card { margin: 2rem; min-height: 20rem; } .graphButton { height:90%; width:100%; border:none; background-repeat: no-repeat; background-size: contain; background-position: center; background-color: #caffbf; } .graphButton:disabled { background-color: #ffadad; cursor: not-allowed; } @media screen and (min-width: 300px) { .card { flex: 1 1 calc(90% - 2rem); } } @media screen and (min-width: 600px) { .card { flex: 1 1 calc(40% - 2rem); } } @media screen and (min-width: 900px) { .card { flex: 1 1 calc(23% - 2rem); } } #inputContainer { position:relative; color: white; background-color: #00d4e1; border-radius: 10px; width: 15%; margin-right: auto; margin-left: auto; font-size: 20px; padding-top: 15px; padding-bottom: 15px; transition: all .3s; margin-bottom: 10px; } #inputContainer:hover { transform: scale(1.05, 1.05); box-shadow: 5px 5px rgba(0,0,0,.3); cursor: pointer; } .dropdown { position: relative; display: inline-block; } .hiddenInput { position: absolute; z-index: 100; opacity: 0; cursor: pointer; right: 0; top: 0; height: 100%; font-size: 24px; width: 100%; } /* Customize the label (the container) */ .checkLabel { display: block; position: relative; padding-left: 23px; font-size: 16px; user-select: none; width: 100px; padding-right: 10px; } /* Hide the browser's default checkbox */ .checkLabel input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } /* Create a custom checkbox */ .checkSpan { position: absolute; top: 0; left: 0; height: 18px; width: 18px; background-color: #bbb; } /* On mouse-over, add a grey background color */ .checkLabel:hover input ~ .checkSpan { background-color: #aaa; } /* When the checkbox is checked, add a blue background */ .checkLabel input:checked ~ .checkSpan { background-color: #2196F3; } /* Create the checkmark/indicator (hidden when not checked) */ .checkSpan:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .checkLabel input:checked ~ .checkSpan:after { display: block; } /* Style the checkmark/indicator */ .checkLabel .checkSpan:after { left: 6px; top: 3px; width: 3px; height: 8px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } #legend { width: 200px; float:left; } #graphArea { float: left; } #wrapper { display:flex; justify-content: center; align-items: center; position: fixed; width: 99.9%; height: 99.9%; z-index: 100; top: 0; left: 0; right: 0; padding-top: 5%; background-color: #FFF; visibility: hidden; } #close { position: absolute; top: 0px; left: 0px; background-color: rgba(0,0,0,0); width: 50px; height: 50px; background-image: url("graph_images/close.png"); background-repeat: no-repeat; background-size: contain; padding: 0px; cursor: pointer; } #close:hover { background-image: url("graph_images/close_hover.png"); background-size: contain; } #graphTitle { border: none; position: absolute; top: 5%; font-size: 40px; text-align: center; width: 50%; } #graphTitle:focus { border-bottom: solid 2px black !important; outline: none; } #graphTitle:hover { border-bottom: solid 2px lightgrey; outline:none; } #graphButtons { display:flex; flex-wrap:wrap; } .tooltip { position: fixed; }
0.47244
0.079603
.ticket-header { height: 60px; } .ticket-page-heading { font-family: Lato, Arial, Helvetica, sans-serif; font-size: 1.8rem; text-align: center; margin-top: 40px; } .ticket-page-heading, .input { color: var(--light-black-color); } .step-description { padding: 0.5rem 1rem; display: inline-block; border: 1px solid var(--light-gray); border-radius: 25px; } .circle-icon { color: var(--primary-color); } .ticket-table { height: 250px; max-width: 1000px; background-image: repeating-linear-gradient( 135deg, red, red 1%, white 1%, white 2%, rgb(0, 0, 109) 2%, rgb(0, 0, 109) 3%, white 3%, white 4% ); padding: 7px; position: relative; } .ticket-table, .menu { margin: 0 auto; } .ticket-table::after { content: " "; width: 50%; top: 76%; left: 25%; height: 20%; position: absolute; box-shadow: 3px 14px 25px 3px rgba(0, 0, 0, 0.6); border-radius: 100%; z-index: -1; } .ticket-selection { height: 100%; background-color: var(--body); grid-template-columns: 1fr 2fr 3fr 2fr; z-index: 999; } .ticket-selection, .card, .selected-option, .divider { width: 100%; } .ticket-selection, .column-1, .column-2, .column-3, .column-3 .col3, .col3-left, .col3-right, .column-4, .menu { display: grid; } .column-1, .column-2, .column-4 { grid-template-rows: repeat(2, 1fr) repeat(2, 2fr); } .column-1, .column-2, .column-3, .column-4 { grid-template-columns: 1fr; } .column-3 { grid-template-rows: 1fr 5fr; } .column-1, .column-2, .column-3, .col3-left { border-right: 1px solid lightgrey; } .ticket-selection p { margin-bottom: 0; border-bottom: 1px solid lightgrey; } .input, .ticket-selection p { display: flex; align-items: center; justify-content: center; } .column-3 .col3 { grid-template-columns: repeat(2, 1fr); } .col3-left, .col3-right { grid-template-rows: 1fr repeat(2, 2fr); } .meal-section { background-color: #fefefe; margin-top: 85px; } .page-divider { top: -33px; } .divider { max-width: 65px; } .card { max-width: 1000px; } .menu { width: 90%; grid-template-columns: repeat(6, 1fr); } .input { font-size: 1.2rem; } .selected-option { margin-top: 50px; margin-bottom: 50px; max-width: 400px; padding: 10px 15px; border: none; background-color: var(--primary-color); font-size: 1.3rem; color: var(--white-color); border-radius: 4px; } @media only screen and (max-width: 359px) { .meal-selection-btn, .list-group-item, .ticket-selection p { font-size: 5vw; } .selected-option { font-size: 6vw; } .ticket-page-heading { font-size: 8vw; } .menu { grid-template-columns: 1fr; } .input { align-items: center; justify-content: space-between; } } @media only screen and (max-width: 450px) and (min-width: 360px) { .menu { grid-template-columns: repeat(2, 1fr); } .input { font-size: 5vw; } } @media only screen and (max-width: 524px) { .step-description, .circle-icon { font-size: 4vw; } .ticket-selection p { font-size: 3.2vw; } } @media only screen and (max-width: 1024px) and (min-width: 450px) { .menu { grid-template-columns: repeat(3, 1fr); row-gap: 1rem; } }
styles/ticket.css
.ticket-header { height: 60px; } .ticket-page-heading { font-family: Lato, Arial, Helvetica, sans-serif; font-size: 1.8rem; text-align: center; margin-top: 40px; } .ticket-page-heading, .input { color: var(--light-black-color); } .step-description { padding: 0.5rem 1rem; display: inline-block; border: 1px solid var(--light-gray); border-radius: 25px; } .circle-icon { color: var(--primary-color); } .ticket-table { height: 250px; max-width: 1000px; background-image: repeating-linear-gradient( 135deg, red, red 1%, white 1%, white 2%, rgb(0, 0, 109) 2%, rgb(0, 0, 109) 3%, white 3%, white 4% ); padding: 7px; position: relative; } .ticket-table, .menu { margin: 0 auto; } .ticket-table::after { content: " "; width: 50%; top: 76%; left: 25%; height: 20%; position: absolute; box-shadow: 3px 14px 25px 3px rgba(0, 0, 0, 0.6); border-radius: 100%; z-index: -1; } .ticket-selection { height: 100%; background-color: var(--body); grid-template-columns: 1fr 2fr 3fr 2fr; z-index: 999; } .ticket-selection, .card, .selected-option, .divider { width: 100%; } .ticket-selection, .column-1, .column-2, .column-3, .column-3 .col3, .col3-left, .col3-right, .column-4, .menu { display: grid; } .column-1, .column-2, .column-4 { grid-template-rows: repeat(2, 1fr) repeat(2, 2fr); } .column-1, .column-2, .column-3, .column-4 { grid-template-columns: 1fr; } .column-3 { grid-template-rows: 1fr 5fr; } .column-1, .column-2, .column-3, .col3-left { border-right: 1px solid lightgrey; } .ticket-selection p { margin-bottom: 0; border-bottom: 1px solid lightgrey; } .input, .ticket-selection p { display: flex; align-items: center; justify-content: center; } .column-3 .col3 { grid-template-columns: repeat(2, 1fr); } .col3-left, .col3-right { grid-template-rows: 1fr repeat(2, 2fr); } .meal-section { background-color: #fefefe; margin-top: 85px; } .page-divider { top: -33px; } .divider { max-width: 65px; } .card { max-width: 1000px; } .menu { width: 90%; grid-template-columns: repeat(6, 1fr); } .input { font-size: 1.2rem; } .selected-option { margin-top: 50px; margin-bottom: 50px; max-width: 400px; padding: 10px 15px; border: none; background-color: var(--primary-color); font-size: 1.3rem; color: var(--white-color); border-radius: 4px; } @media only screen and (max-width: 359px) { .meal-selection-btn, .list-group-item, .ticket-selection p { font-size: 5vw; } .selected-option { font-size: 6vw; } .ticket-page-heading { font-size: 8vw; } .menu { grid-template-columns: 1fr; } .input { align-items: center; justify-content: space-between; } } @media only screen and (max-width: 450px) and (min-width: 360px) { .menu { grid-template-columns: repeat(2, 1fr); } .input { font-size: 5vw; } } @media only screen and (max-width: 524px) { .step-description, .circle-icon { font-size: 4vw; } .ticket-selection p { font-size: 3.2vw; } } @media only screen and (max-width: 1024px) and (min-width: 450px) { .menu { grid-template-columns: repeat(3, 1fr); row-gap: 1rem; } }
0.536313
0.141548
* { border: none; margin: 0; padding: 0; outline: none; box-sizing: border-box; font-family: 'Nunito', sans-serif; appearance: none; background-color: transparent; } html, body { font-family: 'Nunito', sans-serif; font-weight: 400; font-size: 16px; background-color: #F4F7FB; color: #000; min-width: 375px; -webkit-font-smoothing: subpixel-antialiased; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } .wrapper { width: 1040px; padding: 0px 20px; margin: 0 auto; } @media(max-width: 1040px) { .wrapper { width: 100% } } main { padding-top: 50px; } a, a:visited { cursor: pointer; color: #4779FF; text-decoration: none; border-bottom: 1px solid transparent; position: relative; top: 1px; } a:active, a:hover { border-bottom: 2px solid #4779FF; } .root { display: flex; flex-direction: column; align-items: center; } .logo { width: 150px; margin-bottom: 50px; } input { background: transparent; } input::placeholder { color: #ACB0B9; } .link-input-wrapper { display: flex; width: 100%; height: 100px; border-radius: 8px; background-color: #fff; border: 1px solid #ECF1FB; margin-bottom: 15px; } .link-input-wrapper input { flex: 1; font-size: 2rem; padding: 0 30px; } .cut-button { position: relative; display: flex; align-items: center; width: 140px; height: 100%; font-weight: 700; font-size: 2rem; padding-left: 30px; border-left: 1px dashed #D8D8D8; background-image: url(/img/cut_gray.svg); background-repeat: no-repeat; background-position: 86px center; background-size: 26px; cursor: pointer; color: #4779FF; user-select: none; } .cut-button:hover { background-image: url(/img/cut_blue.svg); } .cut-button:active { color: #000000; } .cut-button:before, .cut-button:after { position: absolute; content: " "; width: 0px; height: 0px; background-color: transparent; border-top: 30px solid; border-left: 12px solid transparent; border-right: 12px solid transparent; position: absolute; left: -12px; } .cut-button:before { z-index: 1; border-top-color: #ECF1FB; top: 0px; } .cut-button:after { z-index: 2; border-top-color:#F4F7FB; top: -4px; } .cut-button .loader { display: none; font-size: 8px; top: -15px; } .link-input-wrapper:hover, .link-input-wrapper.focused { box-shadow: 0 0 0px 3px #4779FF; } .link-input-wrapper:hover .cut-button:before, .link-input-wrapper.focused .cut-button:before { border-top-color: #4779FF; top: -2px; } .link-input-wrapper:hover .cut-button:after, .link-input-wrapper.focused .cut-button:after { top: -9px; } .link-input-wrapper:hover .cut-button, .link-input-wrapper.focused .cut-button { background-image: url(/img/cut_blue.svg); } .custom-tag-wrapper { display: flex; align-items: center; width: 100%; height: 50px; border-radius: 6px; background-color: #fff; border: 1px solid #ECF1FB; margin-bottom: 55px; padding: 0 30px; } .custom-tag-wrapper strong { color: #4779FF; } .custom-tag-wrapper input { flex: 1; padding-left: 1px; } .results-wrapper { width: 100%; } .results-list { list-style: none; width: 100%; } .result-item { display: flex; justify-content: space-between; align-items: center; padding: 0 20px 0 70px; width: 100%; height: 78px; border: 1px solid #ECF1FB; border-radius: 8px; background-image: url(/img/cut_gray.svg); background-repeat: no-repeat; background-position: 30px center; background-size: 26px; background-color: #fff; margin-bottom: 5px; } .result-item.result-error { color: #FF474E; background-image: none; padding: 0 20px; } .result-item:last-child { margin-bottom: 40px; } .original-url, .copy-button { padding: 0px 20px; height: 38px; line-height: 39px; border-radius: 19px; font-weight: 700; border: 1px solid #F1F3FA; } .original-url { font-size: 16px; color: #000; overflow: hidden; } .copy-button { font-size: 14px; background-color: #4779FF; color: #fff; cursor: pointer; user-select: none; } .copy-button:hover { background-color: #000; } .copy-button.copied { background-color: #58D673; } body.in-progress .cut-button { padding: 0; justify-content: center; background-image: none !important; } body.in-progress .cut-button span { display: none; } body.in-progress .cut-button .loader { display: block; } .about { color: #ACB0B9; text-align: center; margin-bottom: 40px; } .about a { color: #ACB0B9; border: none; text-decoration: underline; } .about a:hover { color: #4779FF; } @media(max-width: 600px) { .link-input-wrapper { height: 150px; flex-direction: column; } .link-input-wrapper input { padding: 0 10px; } .link-input-wrapper input::placeholder { text-align: center; } .link-input-wrapper .cut-button { width: 100%; height: 75px; border: none; border-top: 1px dashed #D8D8D8; justify-content: center; background-position: calc(50% - -35px); padding-left: 0; } .cut-button:before, .cut-button:after { display: none; } .cut-button span { margin-left: -20px; } .result-item { height: 180px; justify-content: space-between; flex-direction: column; padding: 25px 10px; background-image: none; margin-bottom: 10px; } .result-item.result-error { height: auto; padding: 20px 0; } } @media(max-width: 400px) { main { padding-top: 30px; } .logo { margin-bottom: 30px; } } /* Loader */ .loader, .loader:before, .loader:after { border-radius: 50%; width: 2.5em; height: 2.5em; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation: load7 1.8s infinite ease-in-out; animation: load7 1.8s infinite ease-in-out; } .loader { color: #4779FF; font-size: 10px; position: relative; text-indent: -9999em; -webkit-transform: translateZ(0); -ms-transform: translateZ(0); transform: translateZ(0); -webkit-animation-delay: -0.16s; animation-delay: -0.16s; } .loader:before, .loader:after { content: ''; position: absolute; top: 0; } .loader:before { left: -3.5em; -webkit-animation-delay: -0.32s; animation-delay: -0.32s; } .loader:after { left: 3.5em; } @-webkit-keyframes load7 { 0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; } 40% { box-shadow: 0 2.5em 0 0; } } @keyframes load7 { 0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; } 40% { box-shadow: 0 2.5em 0 0; } }
public/css/main.css
* { border: none; margin: 0; padding: 0; outline: none; box-sizing: border-box; font-family: 'Nunito', sans-serif; appearance: none; background-color: transparent; } html, body { font-family: 'Nunito', sans-serif; font-weight: 400; font-size: 16px; background-color: #F4F7FB; color: #000; min-width: 375px; -webkit-font-smoothing: subpixel-antialiased; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } .wrapper { width: 1040px; padding: 0px 20px; margin: 0 auto; } @media(max-width: 1040px) { .wrapper { width: 100% } } main { padding-top: 50px; } a, a:visited { cursor: pointer; color: #4779FF; text-decoration: none; border-bottom: 1px solid transparent; position: relative; top: 1px; } a:active, a:hover { border-bottom: 2px solid #4779FF; } .root { display: flex; flex-direction: column; align-items: center; } .logo { width: 150px; margin-bottom: 50px; } input { background: transparent; } input::placeholder { color: #ACB0B9; } .link-input-wrapper { display: flex; width: 100%; height: 100px; border-radius: 8px; background-color: #fff; border: 1px solid #ECF1FB; margin-bottom: 15px; } .link-input-wrapper input { flex: 1; font-size: 2rem; padding: 0 30px; } .cut-button { position: relative; display: flex; align-items: center; width: 140px; height: 100%; font-weight: 700; font-size: 2rem; padding-left: 30px; border-left: 1px dashed #D8D8D8; background-image: url(/img/cut_gray.svg); background-repeat: no-repeat; background-position: 86px center; background-size: 26px; cursor: pointer; color: #4779FF; user-select: none; } .cut-button:hover { background-image: url(/img/cut_blue.svg); } .cut-button:active { color: #000000; } .cut-button:before, .cut-button:after { position: absolute; content: " "; width: 0px; height: 0px; background-color: transparent; border-top: 30px solid; border-left: 12px solid transparent; border-right: 12px solid transparent; position: absolute; left: -12px; } .cut-button:before { z-index: 1; border-top-color: #ECF1FB; top: 0px; } .cut-button:after { z-index: 2; border-top-color:#F4F7FB; top: -4px; } .cut-button .loader { display: none; font-size: 8px; top: -15px; } .link-input-wrapper:hover, .link-input-wrapper.focused { box-shadow: 0 0 0px 3px #4779FF; } .link-input-wrapper:hover .cut-button:before, .link-input-wrapper.focused .cut-button:before { border-top-color: #4779FF; top: -2px; } .link-input-wrapper:hover .cut-button:after, .link-input-wrapper.focused .cut-button:after { top: -9px; } .link-input-wrapper:hover .cut-button, .link-input-wrapper.focused .cut-button { background-image: url(/img/cut_blue.svg); } .custom-tag-wrapper { display: flex; align-items: center; width: 100%; height: 50px; border-radius: 6px; background-color: #fff; border: 1px solid #ECF1FB; margin-bottom: 55px; padding: 0 30px; } .custom-tag-wrapper strong { color: #4779FF; } .custom-tag-wrapper input { flex: 1; padding-left: 1px; } .results-wrapper { width: 100%; } .results-list { list-style: none; width: 100%; } .result-item { display: flex; justify-content: space-between; align-items: center; padding: 0 20px 0 70px; width: 100%; height: 78px; border: 1px solid #ECF1FB; border-radius: 8px; background-image: url(/img/cut_gray.svg); background-repeat: no-repeat; background-position: 30px center; background-size: 26px; background-color: #fff; margin-bottom: 5px; } .result-item.result-error { color: #FF474E; background-image: none; padding: 0 20px; } .result-item:last-child { margin-bottom: 40px; } .original-url, .copy-button { padding: 0px 20px; height: 38px; line-height: 39px; border-radius: 19px; font-weight: 700; border: 1px solid #F1F3FA; } .original-url { font-size: 16px; color: #000; overflow: hidden; } .copy-button { font-size: 14px; background-color: #4779FF; color: #fff; cursor: pointer; user-select: none; } .copy-button:hover { background-color: #000; } .copy-button.copied { background-color: #58D673; } body.in-progress .cut-button { padding: 0; justify-content: center; background-image: none !important; } body.in-progress .cut-button span { display: none; } body.in-progress .cut-button .loader { display: block; } .about { color: #ACB0B9; text-align: center; margin-bottom: 40px; } .about a { color: #ACB0B9; border: none; text-decoration: underline; } .about a:hover { color: #4779FF; } @media(max-width: 600px) { .link-input-wrapper { height: 150px; flex-direction: column; } .link-input-wrapper input { padding: 0 10px; } .link-input-wrapper input::placeholder { text-align: center; } .link-input-wrapper .cut-button { width: 100%; height: 75px; border: none; border-top: 1px dashed #D8D8D8; justify-content: center; background-position: calc(50% - -35px); padding-left: 0; } .cut-button:before, .cut-button:after { display: none; } .cut-button span { margin-left: -20px; } .result-item { height: 180px; justify-content: space-between; flex-direction: column; padding: 25px 10px; background-image: none; margin-bottom: 10px; } .result-item.result-error { height: auto; padding: 20px 0; } } @media(max-width: 400px) { main { padding-top: 30px; } .logo { margin-bottom: 30px; } } /* Loader */ .loader, .loader:before, .loader:after { border-radius: 50%; width: 2.5em; height: 2.5em; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation: load7 1.8s infinite ease-in-out; animation: load7 1.8s infinite ease-in-out; } .loader { color: #4779FF; font-size: 10px; position: relative; text-indent: -9999em; -webkit-transform: translateZ(0); -ms-transform: translateZ(0); transform: translateZ(0); -webkit-animation-delay: -0.16s; animation-delay: -0.16s; } .loader:before, .loader:after { content: ''; position: absolute; top: 0; } .loader:before { left: -3.5em; -webkit-animation-delay: -0.32s; animation-delay: -0.32s; } .loader:after { left: 3.5em; } @-webkit-keyframes load7 { 0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; } 40% { box-shadow: 0 2.5em 0 0; } } @keyframes load7 { 0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; } 40% { box-shadow: 0 2.5em 0 0; } }
0.413596
0.065306
.cactus-widget-demo, .cactus-widget-demo * { box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } .cactus-widget-demo { background-color: rgba(17, 17, 17, 1.0); padding: 0; position: fixed; left: auto; top: 50%; margin-top: -305px; height: 610px; right: 0; width: 310px; z-index: 9999999999999999; line-height: 1; transform: translate3d(101%, 0, 0); -webkit-transform: translate3d(101%, 0, 0); -ms-transform: translateX(101%); transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .cactus-widget-demo.active { transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); -ms-transform: translateX(0); } .cactus-button-open { position: absolute; right: 100%; top: 50%; margin-top: -120px; background-color: rgba(17, 17, 17, 1.0); width: 60px; height: 60px; border-top-left-radius: 5px; border-bottom-left-radius: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; color: rgba(0, 205, 179, 1.0); text-align: center; padding: 10px 0; cursor: pointer; transition: color 0.2s; -webkit-transition: all 0.2s; } .ct-icon-star-two { margin: 0; height: 25px; width: 25px; fill: #DA251E; display: inline-block; vertical-align: top; margin-bottom: 4px; } .cactus-widget-demo p.desc{padding: 20px; color:#d6d6d6;line-height: 1.5em} .cactus-widget-demo p.desc a{color: #d6d6d6} .cactus-button-open > span { display: block; font-size: 11px; color: rgba(153, 153, 153, 1.0); transition: color 0.2s; -webkit-transition: all 0.2s; } .cactus-button-open:hover, .cactus-button-open:hover > span, .cactus-widget-demo.active .cactus-button-open > span, .cactus-widget-demo.active .cactus-button-open { color: rgba(255, 255, 255, 1.00); } .cactus-buy-button { text-align: center; padding: 20px; } .cactus-info-demo { text-align: center; padding: 15px 20px 5px 20px; margin-bottom: 25px; } .cactus-info-demo { line-height: 1.4; font-size: 24px; color: #999; } .cactus-btn-buy, .cactus-btn-buy:focus { background-color: #DA251E; font-size: 18px; color: rgba(255, 255, 255, 1.00); font-weight: 800; line-height: 1.4; text-decoration: none; text-transform: uppercase; display: block; padding: 9px 20px; text-align: center; transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; } .cactus-btn-buy:hover { background-color: rgba(255, 255, 255, 1.00); color: rgba(117, 169, 70, 1.0); text-decoration: none; } .cactus-content-scroll { position: absolute; top: 84px; bottom: 20px; left: 0; right: 0; overflow: hidden; /* -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; overflow-scrolling: touch; */ } .cactus-title { text-align: center; margin-top: -2px; margin-bottom: 28px; } .cactus-title p { display: inline-block; padding: 10px 20px; background-color: rgba(255,255,255,0.1); font-size: 14px; font-weight: bold; color: #eee; letter-spacing: 1px; text-transform: uppercase; } .cactus-group-demo { padding-left: 10px; padding-right: 10px; } .cactus-group-content { margin-left: -5px; margin-right: -5px; padding-bottom: 11px; font-size: 0; line-height: 0; position: relative; margin-bottom: 20px; } .cactus-group-content:after { content: ''; display: block; position: absolute; height: 1px; bottom: 0; left: -5px; right: -5px; background-color: rgba(255, 255, 255, 0.1); } .cactus-group-demo:last-child .cactus-group-content { padding-bottom: 0; margin-bottom: -20px; } .cactus-group-demo:last-child .cactus-group-content:after { display: none; } .cactus-group-content > * { display: inline-block; vertical-align: top; width: 50%; padding-left: 5px; padding-right: 5px; margin-bottom: 20px; } .cactus-group-content > * img { width: 100%; height: auto; display: block; } .cactus-group-content > * a, .cactus-group-content > * a:focus { display: block; text-transform: uppercase; font-size: 12px; font-weight: bold; text-transform: uppercase; line-height: 1.5; text-align: center; color: rgba(255, 255, 255, 1.00); text-decoration: none; } .cactus-group-content > * a.cactus-item-content > div { padding: 6px 10px 5px 10px; background-color: rgba(68, 68, 68, 1.0); transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out } .cactus-group-content > * a.cactus-item-content:hover > div { background-color: rgba(255, 255, 255, 1.00); color: rgba(17, 17, 17, 1.0); font-size: 12px } .cactus-content-body { padding-top: 20px; padding-bottom: 20px; } .cactus-widget-demo .mCSB_inside > .mCSB_container { margin-right: 0; } .cactus-widget-demo .mCSB_scrollTools { width: 4px; } @media (max-width: 767px) { .cactus-widget-demo { width: 200px } .cactus-group-content > * { width: 100%; } }
public/wp-content/plugins/cactus-buy-button/css/cactus-demo.css
.cactus-widget-demo, .cactus-widget-demo * { box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } .cactus-widget-demo { background-color: rgba(17, 17, 17, 1.0); padding: 0; position: fixed; left: auto; top: 50%; margin-top: -305px; height: 610px; right: 0; width: 310px; z-index: 9999999999999999; line-height: 1; transform: translate3d(101%, 0, 0); -webkit-transform: translate3d(101%, 0, 0); -ms-transform: translateX(101%); transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; } .cactus-widget-demo.active { transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); -ms-transform: translateX(0); } .cactus-button-open { position: absolute; right: 100%; top: 50%; margin-top: -120px; background-color: rgba(17, 17, 17, 1.0); width: 60px; height: 60px; border-top-left-radius: 5px; border-bottom-left-radius: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; color: rgba(0, 205, 179, 1.0); text-align: center; padding: 10px 0; cursor: pointer; transition: color 0.2s; -webkit-transition: all 0.2s; } .ct-icon-star-two { margin: 0; height: 25px; width: 25px; fill: #DA251E; display: inline-block; vertical-align: top; margin-bottom: 4px; } .cactus-widget-demo p.desc{padding: 20px; color:#d6d6d6;line-height: 1.5em} .cactus-widget-demo p.desc a{color: #d6d6d6} .cactus-button-open > span { display: block; font-size: 11px; color: rgba(153, 153, 153, 1.0); transition: color 0.2s; -webkit-transition: all 0.2s; } .cactus-button-open:hover, .cactus-button-open:hover > span, .cactus-widget-demo.active .cactus-button-open > span, .cactus-widget-demo.active .cactus-button-open { color: rgba(255, 255, 255, 1.00); } .cactus-buy-button { text-align: center; padding: 20px; } .cactus-info-demo { text-align: center; padding: 15px 20px 5px 20px; margin-bottom: 25px; } .cactus-info-demo { line-height: 1.4; font-size: 24px; color: #999; } .cactus-btn-buy, .cactus-btn-buy:focus { background-color: #DA251E; font-size: 18px; color: rgba(255, 255, 255, 1.00); font-weight: 800; line-height: 1.4; text-decoration: none; text-transform: uppercase; display: block; padding: 9px 20px; text-align: center; transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; } .cactus-btn-buy:hover { background-color: rgba(255, 255, 255, 1.00); color: rgba(117, 169, 70, 1.0); text-decoration: none; } .cactus-content-scroll { position: absolute; top: 84px; bottom: 20px; left: 0; right: 0; overflow: hidden; /* -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; overflow-scrolling: touch; */ } .cactus-title { text-align: center; margin-top: -2px; margin-bottom: 28px; } .cactus-title p { display: inline-block; padding: 10px 20px; background-color: rgba(255,255,255,0.1); font-size: 14px; font-weight: bold; color: #eee; letter-spacing: 1px; text-transform: uppercase; } .cactus-group-demo { padding-left: 10px; padding-right: 10px; } .cactus-group-content { margin-left: -5px; margin-right: -5px; padding-bottom: 11px; font-size: 0; line-height: 0; position: relative; margin-bottom: 20px; } .cactus-group-content:after { content: ''; display: block; position: absolute; height: 1px; bottom: 0; left: -5px; right: -5px; background-color: rgba(255, 255, 255, 0.1); } .cactus-group-demo:last-child .cactus-group-content { padding-bottom: 0; margin-bottom: -20px; } .cactus-group-demo:last-child .cactus-group-content:after { display: none; } .cactus-group-content > * { display: inline-block; vertical-align: top; width: 50%; padding-left: 5px; padding-right: 5px; margin-bottom: 20px; } .cactus-group-content > * img { width: 100%; height: auto; display: block; } .cactus-group-content > * a, .cactus-group-content > * a:focus { display: block; text-transform: uppercase; font-size: 12px; font-weight: bold; text-transform: uppercase; line-height: 1.5; text-align: center; color: rgba(255, 255, 255, 1.00); text-decoration: none; } .cactus-group-content > * a.cactus-item-content > div { padding: 6px 10px 5px 10px; background-color: rgba(68, 68, 68, 1.0); transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out } .cactus-group-content > * a.cactus-item-content:hover > div { background-color: rgba(255, 255, 255, 1.00); color: rgba(17, 17, 17, 1.0); font-size: 12px } .cactus-content-body { padding-top: 20px; padding-bottom: 20px; } .cactus-widget-demo .mCSB_inside > .mCSB_container { margin-right: 0; } .cactus-widget-demo .mCSB_scrollTools { width: 4px; } @media (max-width: 767px) { .cactus-widget-demo { width: 200px } .cactus-group-content > * { width: 100%; } }
0.308398
0.049727
body{ margin: 0; height: 100vh; font-size: 5em; font-family: Montserrat; font-weight: bold; } section{ height: 100%; } ul{ list-style-type: none; padding: 0; margin: 0; display: inline; justify-content: center; align-items: center; justify-items:center; height: 100vh; } span{ width: 110px; height: 110px; position: absolute; bottom: 0; left: 0; background: black; border-radius: 50%; } a{ color:#a12c05; } .container{ max-width: 100%; margin: 0 auto; font-size: 14pt; font-family:"Segoe UI Light"; padding-top: 25px; } .scrolltext{ max-width:75%; position: relative; padding: 15px; left: 50%; transform: translate(-50%,0); border-radius:15px; background-color: rgba(255, 255, 255, 0.8); } .spacer{ height: 20px; background: #ffffff; position: relative; z-index: 1; } .starttext{ background: #ffffff; position: relative; left: 50%; transform: translate(-50%, 0%); padding: 10px; } .pages{ font-size: 16pt; font-family: "Segoe UI Light"; position:absolute; top: 4%; left: 7%; padding-top: 10px; z-index:2; width: 90%; align-items: left; } .links{ float: left; padding-right: 20px; } .navbar{ padding:10px; padding-top:5px; } .navbar:hover{ background-color: #a12c05; color:white; border-radius:10px } .portraits{ position:absolute; bottom: 35%; left: 10%; z-index:3; animation-name:pop; animation-duration:1s; animation-timing-function:ease-out; background-attachment:fixed; } @keyframes pop{ from{bottom:25%;opacity:0} to{bottom:35%;opacity:1} } .logo{ float:left; padding-right:30px; position:relative; top:-10px } .entry_title{ position:absolute; bottom:30%; left:10%; z-index:3; color:#a12c05; font-style: bold; font-family: "Segoe UI"; animation-name:riseTitle; animation-duration:1s; animation-timing-function:ease-out; } @keyframes riseTitle{ from{bottom:25%;opacity:0} to{bottom:30%;opacity:1} } .tabulated{ padding-bottom:5px; padding-right:30px; font-style:italic; } .vertical{ position:absolute; bottom: 35%; right: 10%; z-index:3; } .image{ position:relative; left:50%; transform:translate(-50%,0); } .image_recital{ position:relative; left:50%; transform:translate(-50%,0); } .perf_title{ color:#a12c05; font-style: bold; font-family: "Segoe UI" } .parallax2{ position:absolute; bottom:-275%; left:0%; z-index:0; } .parallax_recital{ position:absolute; bottom:-150%; left:0%; transform:translate(-50%,0); z-index:0; } .microphone{ position:absolute; bottom:-110%; left:0%; z-index:0; background-attachment:fixed; } .guru{ position:absolute; bottom:-110%; left:25%; z-index:0; background-attachment:fixed; } .starter{ max-width:75%; position: relative; padding: 15px; left: 50%; transform: translate(-50%,0); border-radius:15px; background-color: rgba(255, 255, 255, 0.8); animation-name:fall; animation-duration:1s; animation-timing-function:ease-out; } @keyframes fall{ from{opacity:0} to{opacity:1} } .parallax3{ position:absolute; bottom:-450%; left:0%; z-index:0; } .spacer{ height=0 } .heading{ font-family: "Segoe UI", sans-serif; font-size:20pt; } .endnote{ position:absolute; bottom:0; font-size:12pt; z-index:3 } @media (orientation:portrait){ .navbar{ padding:0px; padding-left:10px; padding-right:10px; } .parallax{ position:absolute; bottom:50%; left:0%; z-index:0; } .microphone{ position:absolute; bottom:-50%; left:0%; z-index:0; } .starter{ max-width:100%; position: relative; padding: 15px; top:0; left: 50%; transform: translate(-50%, 400px); border-radius:15px; background-color: rgba(255, 255, 255, 0.8); } .spacer{ height=1000px; } .scrolltext{ max-width:100%; position: relative; padding: 15px; top:0%; left: 50%; transform: translate(-50%,60vh); border-radius:15px; background-color: rgba(255, 255, 255, 0.8); } .image_recital{ position:relative; left:50%; transform:translate(-50%,60vh); } .guru{ position:absolute; top:110vh%; left:25%; z-index:0; } .parallax2{ position:absolute; bottom:-150%; left:0%; z-index:0; } .parallax3{ position:absolute; bottom:-250%; left:0%; z-index:0; } .container{ max-width: 100%; margin: 0 auto; font-size: 14pt; font-family:"Calibri"; padding: 25px; } }
css/main.css
body{ margin: 0; height: 100vh; font-size: 5em; font-family: Montserrat; font-weight: bold; } section{ height: 100%; } ul{ list-style-type: none; padding: 0; margin: 0; display: inline; justify-content: center; align-items: center; justify-items:center; height: 100vh; } span{ width: 110px; height: 110px; position: absolute; bottom: 0; left: 0; background: black; border-radius: 50%; } a{ color:#a12c05; } .container{ max-width: 100%; margin: 0 auto; font-size: 14pt; font-family:"Segoe UI Light"; padding-top: 25px; } .scrolltext{ max-width:75%; position: relative; padding: 15px; left: 50%; transform: translate(-50%,0); border-radius:15px; background-color: rgba(255, 255, 255, 0.8); } .spacer{ height: 20px; background: #ffffff; position: relative; z-index: 1; } .starttext{ background: #ffffff; position: relative; left: 50%; transform: translate(-50%, 0%); padding: 10px; } .pages{ font-size: 16pt; font-family: "Segoe UI Light"; position:absolute; top: 4%; left: 7%; padding-top: 10px; z-index:2; width: 90%; align-items: left; } .links{ float: left; padding-right: 20px; } .navbar{ padding:10px; padding-top:5px; } .navbar:hover{ background-color: #a12c05; color:white; border-radius:10px } .portraits{ position:absolute; bottom: 35%; left: 10%; z-index:3; animation-name:pop; animation-duration:1s; animation-timing-function:ease-out; background-attachment:fixed; } @keyframes pop{ from{bottom:25%;opacity:0} to{bottom:35%;opacity:1} } .logo{ float:left; padding-right:30px; position:relative; top:-10px } .entry_title{ position:absolute; bottom:30%; left:10%; z-index:3; color:#a12c05; font-style: bold; font-family: "Segoe UI"; animation-name:riseTitle; animation-duration:1s; animation-timing-function:ease-out; } @keyframes riseTitle{ from{bottom:25%;opacity:0} to{bottom:30%;opacity:1} } .tabulated{ padding-bottom:5px; padding-right:30px; font-style:italic; } .vertical{ position:absolute; bottom: 35%; right: 10%; z-index:3; } .image{ position:relative; left:50%; transform:translate(-50%,0); } .image_recital{ position:relative; left:50%; transform:translate(-50%,0); } .perf_title{ color:#a12c05; font-style: bold; font-family: "Segoe UI" } .parallax2{ position:absolute; bottom:-275%; left:0%; z-index:0; } .parallax_recital{ position:absolute; bottom:-150%; left:0%; transform:translate(-50%,0); z-index:0; } .microphone{ position:absolute; bottom:-110%; left:0%; z-index:0; background-attachment:fixed; } .guru{ position:absolute; bottom:-110%; left:25%; z-index:0; background-attachment:fixed; } .starter{ max-width:75%; position: relative; padding: 15px; left: 50%; transform: translate(-50%,0); border-radius:15px; background-color: rgba(255, 255, 255, 0.8); animation-name:fall; animation-duration:1s; animation-timing-function:ease-out; } @keyframes fall{ from{opacity:0} to{opacity:1} } .parallax3{ position:absolute; bottom:-450%; left:0%; z-index:0; } .spacer{ height=0 } .heading{ font-family: "Segoe UI", sans-serif; font-size:20pt; } .endnote{ position:absolute; bottom:0; font-size:12pt; z-index:3 } @media (orientation:portrait){ .navbar{ padding:0px; padding-left:10px; padding-right:10px; } .parallax{ position:absolute; bottom:50%; left:0%; z-index:0; } .microphone{ position:absolute; bottom:-50%; left:0%; z-index:0; } .starter{ max-width:100%; position: relative; padding: 15px; top:0; left: 50%; transform: translate(-50%, 400px); border-radius:15px; background-color: rgba(255, 255, 255, 0.8); } .spacer{ height=1000px; } .scrolltext{ max-width:100%; position: relative; padding: 15px; top:0%; left: 50%; transform: translate(-50%,60vh); border-radius:15px; background-color: rgba(255, 255, 255, 0.8); } .image_recital{ position:relative; left:50%; transform:translate(-50%,60vh); } .guru{ position:absolute; top:110vh%; left:25%; z-index:0; } .parallax2{ position:absolute; bottom:-150%; left:0%; z-index:0; } .parallax3{ position:absolute; bottom:-250%; left:0%; z-index:0; } .container{ max-width: 100%; margin: 0 auto; font-size: 14pt; font-family:"Calibri"; padding: 25px; } }
0.265309
0.046595
@charset "utf-8"; /**Style Reset**/ body, div, span, h1, h2, h3, h4, h5, h6, p, pre, sup, sub, ul, ol, li, dl, dt, dd, form, fieldset, input, button, textarea, select, iframe, img, a, header, footer, section, article, aside, details, figcaption, figure, hgroup, nav, menu, canvas { padding: 0; margin: 0; } body { background-color: #fff; color: #000; font: 12px/20px "Microsoft Yahei", Tahoma, Arial, "Helvetica Neue", "Hiragino Sans GB", Simsun, sans-self; } ul, ol { list-style-type: none; } b, strong { font-weight: normal; } i, em { font-style: normal; } a { text-decoration: none; color: #333; } /*清除浮动*/ .clearfix:after { clear: both; display: block; height: 0; content: ""; } /*主体部分*/ .contains { width: 1000px; margin: 0 auto; } /*面包屑导航*/ .crumbNav { padding: 18px 0; color: #323232; } .crumbNav a { color: #ed7f5a; } .crumbNav a:hover { color: #d95459; } .crumbNav font { padding: 0 2px; font-family: simsun; } /**选择商品分类**/ .wareSort { padding: 15px 8px 15px 7px; border: 1px solid #ddd; background-color: #f6f6f6; } .wareSort ul { float: left; width: 290px; padding: 10px; border: 1px solid #ddd; margin-right: 7px; margin-left: 8px; background-color: #fff; } .wareSort ul li a { display: block; padding-right: 25px; padding-left: 10px; border: 1px solid #fff; line-height: 28px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .wareSort ul li a:hover { color: #52bea6; } .wareSort ul li.active a { border-color: #52bea6; background: #cefff4 url(../img/arrow.png) no-repeat right center; color: #52bea6; } .selectedSort { padding: 10px 15px; border: 1px solid #ed7f5a; margin-top: 10px; margin-bottom: 10px; background-color: #fff4f0; color: #ed7f5a; } .selectedSort b { font-weight: bold; } .selectedSort i font { font-family: simsun; } .wareSortBtn { padding-bottom: 50px; text-align: center; } .wareSortBtn input { width: 200px; height: 36px; border: 1px solid #ed7f5a; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-color: #ed7f5a; color: #fff; } .wareSortBtn input:hover { border-color: #d95459; background-color: #d95459; } .wareSortBtn input:disabled { border-color: #ddd; background-color: #f6f6f6; color: #9a9a9a; cursor: default; }
demo/css/style.css
@charset "utf-8"; /**Style Reset**/ body, div, span, h1, h2, h3, h4, h5, h6, p, pre, sup, sub, ul, ol, li, dl, dt, dd, form, fieldset, input, button, textarea, select, iframe, img, a, header, footer, section, article, aside, details, figcaption, figure, hgroup, nav, menu, canvas { padding: 0; margin: 0; } body { background-color: #fff; color: #000; font: 12px/20px "Microsoft Yahei", Tahoma, Arial, "Helvetica Neue", "Hiragino Sans GB", Simsun, sans-self; } ul, ol { list-style-type: none; } b, strong { font-weight: normal; } i, em { font-style: normal; } a { text-decoration: none; color: #333; } /*清除浮动*/ .clearfix:after { clear: both; display: block; height: 0; content: ""; } /*主体部分*/ .contains { width: 1000px; margin: 0 auto; } /*面包屑导航*/ .crumbNav { padding: 18px 0; color: #323232; } .crumbNav a { color: #ed7f5a; } .crumbNav a:hover { color: #d95459; } .crumbNav font { padding: 0 2px; font-family: simsun; } /**选择商品分类**/ .wareSort { padding: 15px 8px 15px 7px; border: 1px solid #ddd; background-color: #f6f6f6; } .wareSort ul { float: left; width: 290px; padding: 10px; border: 1px solid #ddd; margin-right: 7px; margin-left: 8px; background-color: #fff; } .wareSort ul li a { display: block; padding-right: 25px; padding-left: 10px; border: 1px solid #fff; line-height: 28px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .wareSort ul li a:hover { color: #52bea6; } .wareSort ul li.active a { border-color: #52bea6; background: #cefff4 url(../img/arrow.png) no-repeat right center; color: #52bea6; } .selectedSort { padding: 10px 15px; border: 1px solid #ed7f5a; margin-top: 10px; margin-bottom: 10px; background-color: #fff4f0; color: #ed7f5a; } .selectedSort b { font-weight: bold; } .selectedSort i font { font-family: simsun; } .wareSortBtn { padding-bottom: 50px; text-align: center; } .wareSortBtn input { width: 200px; height: 36px; border: 1px solid #ed7f5a; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-color: #ed7f5a; color: #fff; } .wareSortBtn input:hover { border-color: #d95459; background-color: #d95459; } .wareSortBtn input:disabled { border-color: #ddd; background-color: #f6f6f6; color: #9a9a9a; cursor: default; }
0.377082
0.107297
body { background-color: #090014; } #wrap{ text-align: center; } #settimer h3{ color: white; line-height: 2em; } #frame{ background: white; display: inline-block; padding:5px; border-radius:15%; } .marker { margin: auto; border-radius: 25%; } #timer { margin: 100px 0 60px; } .time_unit { display: inline-block; vertical-align: top; margin: 0 10px; } .colon { display: inline-block; font-size: 140px; text-shadow: 0 0 8px rgba(255,255,255,0.7); } .unit { display: inline-block; font-size: 60px; text-shadow: 0 0 8px rgba(255,255,255,0.7); } .digit { position: relative; display: inline-block; margin: 0 10px; height: 134px; width: 70px; } .hor { position: absolute; width: 38px; height: 14px; left: 16px; background-color: #9db5f4; box-shadow: 0 0 8px rgba(255,255,255,0.7); } .hor.top { top: 3px; } .hor.mid { top: 60px; } .hor.bottom { bottom: 3px; } .ver { position: absolute; height: 42px; width: 14px; background-color: #9db5f4; box-shadow: 0 0 8px rgba(255,255,255,0.8); } .left { left: 0; } .right { right: 0; } .ver.top { top: 18px; } .ver.bottom { bottom: 18px; } .tri_left { position: absolute; left: -7px; width: 0; height: 0; border-top: 7px solid transparent; border-right: 7px solid #9db5f4; border-bottom: 7px solid transparent; } .tri_right { position: absolute; right: -7px; width: 0; height: 0; border-top: 7px solid transparent; border-left: 7px solid #9db5f4; border-bottom: 7px solid transparent; } .tri_bottom { position: absolute; bottom: -7px; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 7px solid #9db5f4; } .tri_top { position: absolute; top: -7px; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #9db5f4; }
day17.css
body { background-color: #090014; } #wrap{ text-align: center; } #settimer h3{ color: white; line-height: 2em; } #frame{ background: white; display: inline-block; padding:5px; border-radius:15%; } .marker { margin: auto; border-radius: 25%; } #timer { margin: 100px 0 60px; } .time_unit { display: inline-block; vertical-align: top; margin: 0 10px; } .colon { display: inline-block; font-size: 140px; text-shadow: 0 0 8px rgba(255,255,255,0.7); } .unit { display: inline-block; font-size: 60px; text-shadow: 0 0 8px rgba(255,255,255,0.7); } .digit { position: relative; display: inline-block; margin: 0 10px; height: 134px; width: 70px; } .hor { position: absolute; width: 38px; height: 14px; left: 16px; background-color: #9db5f4; box-shadow: 0 0 8px rgba(255,255,255,0.7); } .hor.top { top: 3px; } .hor.mid { top: 60px; } .hor.bottom { bottom: 3px; } .ver { position: absolute; height: 42px; width: 14px; background-color: #9db5f4; box-shadow: 0 0 8px rgba(255,255,255,0.8); } .left { left: 0; } .right { right: 0; } .ver.top { top: 18px; } .ver.bottom { bottom: 18px; } .tri_left { position: absolute; left: -7px; width: 0; height: 0; border-top: 7px solid transparent; border-right: 7px solid #9db5f4; border-bottom: 7px solid transparent; } .tri_right { position: absolute; right: -7px; width: 0; height: 0; border-top: 7px solid transparent; border-left: 7px solid #9db5f4; border-bottom: 7px solid transparent; } .tri_bottom { position: absolute; bottom: -7px; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 7px solid #9db5f4; } .tri_top { position: absolute; top: -7px; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #9db5f4; }
0.611614
0.098209
* { box-sizing: border-box; } body { margin: 0; padding: 0 16px; display: flex; flex-direction: column; align-items: center; font-family: 'Roboto', sans-serif; line-height: 1.45rem; color: #202124; color: #000; background: #fff; /* DARK MODE background: #000; color: #fafafa;*/ } img { max-width: 100%; } hr { height: 1px; margin: 32px 0; border: 0; background-color: #ecf0f1; } .light { font-weight: 400; } .logo { max-width: 2rem; margin: 8px 48px 8px 0; } h1 { /*text-align: center;*/ } a { text-decoration: none; color: #1a73e8; } a:hover { text-decoration: underline; } nav { display: flex; flex-direction: row; justify-content: left; align-items: center; /*width: 748px;*/ width: 1228px; max-width: 100%; padding: 16px 8px; overflow: hidden; } nav a { color: #6A6A6A; font-size: 1rem; padding: 8px 24px; } .selected { color: #000; /*font-weight: bold;*/ } nav a:hover, nav a:active { text-decoration: none; color: #000; /*border-bottom: 1px solid black;*/ } #hamburger { display: none; font-size: 1.8rem; } hero { width: 748px; width: 1228px; max-width: 100%; min-height: 200px; /*margin-bottom: 16px;*/ display: flex; flex-direction: column; justify-content: center; align-items: center; } .hero-logo { width: 8rem; margin-right: 24px; } .hero-splash-image { /*width: 500px;*/ max-height: 200px; max-width: 50%; margin-top: 16px; display: none; } .hero-text { font-family: "DejaVu serif", serif; font-size: 2rem; line-height: 1rem; text-align: center; /*margin-top: 8px;*/ } .hero-image { width: 12rem; border-radius: 50%; margin-bottom: 24px; } main { max-width: 748px; margin-top: 16px; } .post-list { max-width: 1228px; display: flex; } .post-list article { margin-bottom: 16px; } article a { color: black; } article a:hover { text-decoration: underline; } article h3 { margin-top: 0; margin-bottom: 0; } article .category { text-transform: lowercase; /*background: rgba(0,0,0, 0.2); color: #fafafa;*/ color: #39833c; font-size: 14px; } .date { opacity: 0.7; font-size: 14px; } article p { margin: 0; } .story-body { font-family: "Dejavu serif", "Bitstream vera serif", serif; } footer { font-style: italic; margin: 1rem 0; } @media only screen and (max-width: 768px) { nav { padding: 4px 2px; justify-content: space-between; } nav > a { display: none; } #hamburger { display: block; } hero { flex-direction: column; } .hero-image { width: 12rem; } .post-list { flex-wrap: wrap; } } /*@media only screen and (max-width: 768px) { nav { flex-direction: column; } nav a { padding: 2px 0; } }*/
assets/css/main.css
* { box-sizing: border-box; } body { margin: 0; padding: 0 16px; display: flex; flex-direction: column; align-items: center; font-family: 'Roboto', sans-serif; line-height: 1.45rem; color: #202124; color: #000; background: #fff; /* DARK MODE background: #000; color: #fafafa;*/ } img { max-width: 100%; } hr { height: 1px; margin: 32px 0; border: 0; background-color: #ecf0f1; } .light { font-weight: 400; } .logo { max-width: 2rem; margin: 8px 48px 8px 0; } h1 { /*text-align: center;*/ } a { text-decoration: none; color: #1a73e8; } a:hover { text-decoration: underline; } nav { display: flex; flex-direction: row; justify-content: left; align-items: center; /*width: 748px;*/ width: 1228px; max-width: 100%; padding: 16px 8px; overflow: hidden; } nav a { color: #6A6A6A; font-size: 1rem; padding: 8px 24px; } .selected { color: #000; /*font-weight: bold;*/ } nav a:hover, nav a:active { text-decoration: none; color: #000; /*border-bottom: 1px solid black;*/ } #hamburger { display: none; font-size: 1.8rem; } hero { width: 748px; width: 1228px; max-width: 100%; min-height: 200px; /*margin-bottom: 16px;*/ display: flex; flex-direction: column; justify-content: center; align-items: center; } .hero-logo { width: 8rem; margin-right: 24px; } .hero-splash-image { /*width: 500px;*/ max-height: 200px; max-width: 50%; margin-top: 16px; display: none; } .hero-text { font-family: "DejaVu serif", serif; font-size: 2rem; line-height: 1rem; text-align: center; /*margin-top: 8px;*/ } .hero-image { width: 12rem; border-radius: 50%; margin-bottom: 24px; } main { max-width: 748px; margin-top: 16px; } .post-list { max-width: 1228px; display: flex; } .post-list article { margin-bottom: 16px; } article a { color: black; } article a:hover { text-decoration: underline; } article h3 { margin-top: 0; margin-bottom: 0; } article .category { text-transform: lowercase; /*background: rgba(0,0,0, 0.2); color: #fafafa;*/ color: #39833c; font-size: 14px; } .date { opacity: 0.7; font-size: 14px; } article p { margin: 0; } .story-body { font-family: "Dejavu serif", "Bitstream vera serif", serif; } footer { font-style: italic; margin: 1rem 0; } @media only screen and (max-width: 768px) { nav { padding: 4px 2px; justify-content: space-between; } nav > a { display: none; } #hamburger { display: block; } hero { flex-direction: column; } .hero-image { width: 12rem; } .post-list { flex-wrap: wrap; } } /*@media only screen and (max-width: 768px) { nav { flex-direction: column; } nav a { padding: 2px 0; } }*/
0.324985
0.089058
* { box-sizing: border-box; } body { margin: 0; padding: 0; font-size: 1.4rem; font-family: 'Special Elite', cursive; background: white; min-width: 350px; } .center { display: block; margin: 0 auto; text-align: center } .player-scroll { width: 70%; height: 100px; overflow: auto; } .team-scroll { width: 85%; height: 100px; overflow: auto; } .schedule-scroll { width: 90%; height: 60px; overflow: auto; } .mobile-heading { font-size: 2.3rem; margin-top: 3%; } .text-center { padding-right: 5%; padding-left: 5%; } img { -webkit-box-shadow: 10px 9px 28px -2px rgba(0,0,0,0.75); -moz-box-shadow: 10px 9px 28px -2px rgba(0,0,0,0.75); box-shadow: 10px 9px 28px -2px rgba(0,0,0,0.75); border-radius: 5px; } hr.style1 { width: 80%; margin-bottom: 1%; height: 10px; border: 0; box-shadow: 0 10px 10px -10px #8C8B8B inset; } .img-scale { width: 100%; margin: 0 15px 17px 0; border-radius: 10px; } .icon-scale { width: 9%; max-width: 100px; margin: 2% 0% 2% 12%; -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0); -moz-box-shadow: 0 0 0 0 rgba(0,0,0,0); box-shadow: 0 0 0 0 rgba(0,0,0,0); border-radius: 5px; } .img-schedule { width: 90%; margin: 0 15px 17px 0; border-radius: 10px; } .img-player { width: 50%; margin: 0 15px 17px 0; border-radius: 10px; } .img-team-initial { width: 65%; margin: 0 15px 17px 0; border-radius: 10px; } .img-jersey { width: 35%; margin: 0 15px 17px 0; border-radius: 10px; } .img-team { width: 70%; margin: 0 15px 17px 0; border-radius: 10px; } ul { padding: 0; margin: 0; } li { list-style-type: none; font-size: 1.3rem; } /*.card-text { color: red; padding: 2px 16px; }*/ /*For Player Scrolliing - Add Later*/ /*table { margin: auto; width: 100%; }*/ /*table tr { border: 1px solid black; width: 100%; text-align: center; }*/ /*Nav New*/ header { width: 100%; height: 56px; /*border-bottom: 1px solid black;*/ } /*override bootstrap and style*/ .navbar-inverse .navbar-nav>li>a:hover { color: black; background-color: white; border-radius: 5px; } nav a { font-family: 'Special Elite', cursive; /*font-size: 1rem;*/ font-size: 1.6rem; /*compensate for bootstrap*/ font-weight: 700; color: white; letter-spacing: 1.6px; padding: 5px; transition:all 0.5s; text-decoration: underline; /*compensate for bootstrap*/ } /*bs padding*/ nav li { padding: 2px; } /* Nav and Nav Bar */ nav { width: 100%; min-width: 350px; text-align: center; opacity: .99; z-index: 1000; /*background-color: red !importan*/t; } /* Center up text in Nav */ nav ul { line-height: 70px; } nav a:visited { color: white; } nav a:hover { color: black; background: white; border-radius: 5px; } /* Required! Menu Show and Hide */ .menu { width: 100%; /*height: 50px;*/ /*toggle for new*/ height: 0px; background: lightgray; position: absolute; } .no-margin-bot { margin-bottom: 0px; } /*place image info at bottom of divs*/ .pic-info { vertical-align: bottom; font-size: 1em; display: block; } /* Media Queries */ @media only screen and (max-width: 600px) { nav a:hover { color: white; background: black; } .img-player { width: 65%; margin: 0 15px 17px 0; border-radius: 10px; } .table-size { width: 95%; } .img-jersey { width: 80%; margin: 0 15px 17px 0; border-radius: 10px; } } @media only screen and (min-width: 767px) { nav a { font-family: 'Special Elite', cursive; font-size: 1.2rem; color: white; letter-spacing: 1.2px; transition:all 0.5s; } /* nav li { padding-right: 10px; }*/ #uniform { width: 70%; } .img-player { width: 50%; margin: 0 15px 17px 0; border-radius: 10px; } .table-size { width: 95%; } .player-scroll { height: 100%; } .team-scroll { height: 100%; } .schedule-scroll { height: 100%; } } @media only screen and (min-width: 1100px) { nav a { font-family: 'Special Elite', cursive; font-size: 1.7rem; color: white; letter-spacing: 1.3px; transition:all 0.5s; } nav li { padding-right: 10px; } .img-player { width: 85%; margin: 0 15px 17px 0; border-radius: 10px; } .player-scroll { height: 100%; } .team-scroll { height: 100%; } .schedule-scroll { height: 100%; } } @media only screen and (min-width: 1210px) { nav a { font-family: 'Special Elite', cursive; font-size: 1.8rem; color: white; letter-spacing: 1.6px; transition:all 0.5s; } nav li { padding-right: 40px; } .img-player { width: 85%; margin: 0 15px 17px 0; border-radius: 10px; } }
client/css/main.css
* { box-sizing: border-box; } body { margin: 0; padding: 0; font-size: 1.4rem; font-family: 'Special Elite', cursive; background: white; min-width: 350px; } .center { display: block; margin: 0 auto; text-align: center } .player-scroll { width: 70%; height: 100px; overflow: auto; } .team-scroll { width: 85%; height: 100px; overflow: auto; } .schedule-scroll { width: 90%; height: 60px; overflow: auto; } .mobile-heading { font-size: 2.3rem; margin-top: 3%; } .text-center { padding-right: 5%; padding-left: 5%; } img { -webkit-box-shadow: 10px 9px 28px -2px rgba(0,0,0,0.75); -moz-box-shadow: 10px 9px 28px -2px rgba(0,0,0,0.75); box-shadow: 10px 9px 28px -2px rgba(0,0,0,0.75); border-radius: 5px; } hr.style1 { width: 80%; margin-bottom: 1%; height: 10px; border: 0; box-shadow: 0 10px 10px -10px #8C8B8B inset; } .img-scale { width: 100%; margin: 0 15px 17px 0; border-radius: 10px; } .icon-scale { width: 9%; max-width: 100px; margin: 2% 0% 2% 12%; -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0); -moz-box-shadow: 0 0 0 0 rgba(0,0,0,0); box-shadow: 0 0 0 0 rgba(0,0,0,0); border-radius: 5px; } .img-schedule { width: 90%; margin: 0 15px 17px 0; border-radius: 10px; } .img-player { width: 50%; margin: 0 15px 17px 0; border-radius: 10px; } .img-team-initial { width: 65%; margin: 0 15px 17px 0; border-radius: 10px; } .img-jersey { width: 35%; margin: 0 15px 17px 0; border-radius: 10px; } .img-team { width: 70%; margin: 0 15px 17px 0; border-radius: 10px; } ul { padding: 0; margin: 0; } li { list-style-type: none; font-size: 1.3rem; } /*.card-text { color: red; padding: 2px 16px; }*/ /*For Player Scrolliing - Add Later*/ /*table { margin: auto; width: 100%; }*/ /*table tr { border: 1px solid black; width: 100%; text-align: center; }*/ /*Nav New*/ header { width: 100%; height: 56px; /*border-bottom: 1px solid black;*/ } /*override bootstrap and style*/ .navbar-inverse .navbar-nav>li>a:hover { color: black; background-color: white; border-radius: 5px; } nav a { font-family: 'Special Elite', cursive; /*font-size: 1rem;*/ font-size: 1.6rem; /*compensate for bootstrap*/ font-weight: 700; color: white; letter-spacing: 1.6px; padding: 5px; transition:all 0.5s; text-decoration: underline; /*compensate for bootstrap*/ } /*bs padding*/ nav li { padding: 2px; } /* Nav and Nav Bar */ nav { width: 100%; min-width: 350px; text-align: center; opacity: .99; z-index: 1000; /*background-color: red !importan*/t; } /* Center up text in Nav */ nav ul { line-height: 70px; } nav a:visited { color: white; } nav a:hover { color: black; background: white; border-radius: 5px; } /* Required! Menu Show and Hide */ .menu { width: 100%; /*height: 50px;*/ /*toggle for new*/ height: 0px; background: lightgray; position: absolute; } .no-margin-bot { margin-bottom: 0px; } /*place image info at bottom of divs*/ .pic-info { vertical-align: bottom; font-size: 1em; display: block; } /* Media Queries */ @media only screen and (max-width: 600px) { nav a:hover { color: white; background: black; } .img-player { width: 65%; margin: 0 15px 17px 0; border-radius: 10px; } .table-size { width: 95%; } .img-jersey { width: 80%; margin: 0 15px 17px 0; border-radius: 10px; } } @media only screen and (min-width: 767px) { nav a { font-family: 'Special Elite', cursive; font-size: 1.2rem; color: white; letter-spacing: 1.2px; transition:all 0.5s; } /* nav li { padding-right: 10px; }*/ #uniform { width: 70%; } .img-player { width: 50%; margin: 0 15px 17px 0; border-radius: 10px; } .table-size { width: 95%; } .player-scroll { height: 100%; } .team-scroll { height: 100%; } .schedule-scroll { height: 100%; } } @media only screen and (min-width: 1100px) { nav a { font-family: 'Special Elite', cursive; font-size: 1.7rem; color: white; letter-spacing: 1.3px; transition:all 0.5s; } nav li { padding-right: 10px; } .img-player { width: 85%; margin: 0 15px 17px 0; border-radius: 10px; } .player-scroll { height: 100%; } .team-scroll { height: 100%; } .schedule-scroll { height: 100%; } } @media only screen and (min-width: 1210px) { nav a { font-family: 'Special Elite', cursive; font-size: 1.8rem; color: white; letter-spacing: 1.6px; transition:all 0.5s; } nav li { padding-right: 40px; } .img-player { width: 85%; margin: 0 15px 17px 0; border-radius: 10px; } }
0.427516
0.104523
.dropdown-style { margin-top: 0.5rem; } .container-style { margin-top: 0.3rem; overflow-x: hidden; height: 30rem; } .subject-label { padding-top: 2rem; padding-bottom: 0.5rem; } .dark-container .subject-label { margin-top: 2rem; font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .high-contrast-container .subject-label { margin-top: 2rem; font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .grade-label { padding-bottom: 0.5rem; } .dark-container .grade-label { font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .high-contrast-container .grade-label { font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .learning-module-label { padding-top: 2rem; padding-bottom: 0.5rem; } .dark-container .learning-module-label { margin-top: 2rem; font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .high-contrast-container .learning-module-label { margin-top: 2rem; font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .add-icon { width: 4.2rem; } .validation-style { margin: 2rem; } .add-module-button-container { margin-left: 47.5rem; } .preference-loader { position: absolute; margin-left: 40%; margin-top: 25%; z-index: 1000; } .container-tab { height: 96vh; padding-left: 3.3rem; padding-top: 1rem; width: 100vw; cursor: pointer; } .create-content-main { max-height: 42.5rem !important; overflow-y: scroll; } .preview-content-main { max-height: 42.5rem !important; overflow-y: scroll; } .create-sub-div { padding-right: 1.2rem !important; } .input-padding { padding-bottom: 1.6rem; padding-top: 0.5rem; } .hover-effect:hover { cursor: pointer; } .add-icon { margin-left: -5rem; padding: 0.8rem; } .auto-suggestion-list-item { width: 100%; height: 3rem; padding-left: 1rem; padding-top: 0.5rem; } .auto-suggestion-list-item:hover { background-color: #6264A7; color: #FFFFFF; cursor: pointer; } .suggestion-loader { height: 4rem; width: 54.3rem; box-shadow: 0px 2px 2px 1px grey; text-align: center; } .dark-container .subject-list-box { background-color: #484644 !important; color: #FFFFFF !important; } .dark-container .learningModule-list-box { background-color: #484644 !important; color: #FFFFFF !important; } .container-style .subject-list-box { width: 100%; max-height: 13rem; box-shadow: #000000 0px 0.8rem 1rem -0.2rem; overflow: scroll; width: 50rem; position: absolute; z-index: 1000; background: #FFFFFF; } .learningModule-list-box { width: 100%; max-height: 13rem; box-shadow: #000000 0px 0.8rem 1rem -0.2rem; overflow: scroll; width: 50rem; position: absolute; z-index: 1000; background: #FFFFFF; } .container-style .subject-input { width: 50rem; } .learningModule-input { width: 50rem; } .dark-container .grade-list-box { background-color: #484644 !important; color: #ffffff !important; } .grade-list-box { width: 100%; max-height: 13rem; box-shadow: #000000 0px 0.8rem 1rem -0.2rem; overflow: scroll; width: 26.5rem; position: absolute; z-index: 1000; background: #FFFFFF; } .grade-input { width: 27rem; } .input-padding-attachment { padding-bottom: 1rem; height: 6rem !important; padding-top: 0rem !important; } .grade-text-padding { padding-left: 0.5rem; } .subtitle-preview-padding { padding-top: 0.5rem; padding-bottom: 0.8rem; } .container-style .no-suggestion-found { width: 100%; max-height: 13rem; box-shadow: #000000 0px 0.8rem 1rem -0.2rem; overflow: scroll; width: 50rem; position: absolute; z-index: 1000; background: #FFFFFF; text-align: center; padding-top: 0.3rem; padding-bottom: 0.5rem; } .footer { position: fixed; bottom: 0; right: 0; width: 100vw; padding-left: 2rem; padding-right: 2rem; padding-bottom: 1.5rem; } .dark-container .config-team-tab { padding-top: 0.5rem; height: 41.2rem; } .high-contrast-container .config-team-tab { padding-top: 0.5rem; height: 41.2rem; }
Source/Microsoft.Teams.Apps.LearnNow/ClientApp/src/styles/configure-tab-preference.css
.dropdown-style { margin-top: 0.5rem; } .container-style { margin-top: 0.3rem; overflow-x: hidden; height: 30rem; } .subject-label { padding-top: 2rem; padding-bottom: 0.5rem; } .dark-container .subject-label { margin-top: 2rem; font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .high-contrast-container .subject-label { margin-top: 2rem; font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .grade-label { padding-bottom: 0.5rem; } .dark-container .grade-label { font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .high-contrast-container .grade-label { font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .learning-module-label { padding-top: 2rem; padding-bottom: 0.5rem; } .dark-container .learning-module-label { margin-top: 2rem; font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .high-contrast-container .learning-module-label { margin-top: 2rem; font-family: SegoeUI; color: #FFF; letter-spacing: 0; line-height: 16px; } .add-icon { width: 4.2rem; } .validation-style { margin: 2rem; } .add-module-button-container { margin-left: 47.5rem; } .preference-loader { position: absolute; margin-left: 40%; margin-top: 25%; z-index: 1000; } .container-tab { height: 96vh; padding-left: 3.3rem; padding-top: 1rem; width: 100vw; cursor: pointer; } .create-content-main { max-height: 42.5rem !important; overflow-y: scroll; } .preview-content-main { max-height: 42.5rem !important; overflow-y: scroll; } .create-sub-div { padding-right: 1.2rem !important; } .input-padding { padding-bottom: 1.6rem; padding-top: 0.5rem; } .hover-effect:hover { cursor: pointer; } .add-icon { margin-left: -5rem; padding: 0.8rem; } .auto-suggestion-list-item { width: 100%; height: 3rem; padding-left: 1rem; padding-top: 0.5rem; } .auto-suggestion-list-item:hover { background-color: #6264A7; color: #FFFFFF; cursor: pointer; } .suggestion-loader { height: 4rem; width: 54.3rem; box-shadow: 0px 2px 2px 1px grey; text-align: center; } .dark-container .subject-list-box { background-color: #484644 !important; color: #FFFFFF !important; } .dark-container .learningModule-list-box { background-color: #484644 !important; color: #FFFFFF !important; } .container-style .subject-list-box { width: 100%; max-height: 13rem; box-shadow: #000000 0px 0.8rem 1rem -0.2rem; overflow: scroll; width: 50rem; position: absolute; z-index: 1000; background: #FFFFFF; } .learningModule-list-box { width: 100%; max-height: 13rem; box-shadow: #000000 0px 0.8rem 1rem -0.2rem; overflow: scroll; width: 50rem; position: absolute; z-index: 1000; background: #FFFFFF; } .container-style .subject-input { width: 50rem; } .learningModule-input { width: 50rem; } .dark-container .grade-list-box { background-color: #484644 !important; color: #ffffff !important; } .grade-list-box { width: 100%; max-height: 13rem; box-shadow: #000000 0px 0.8rem 1rem -0.2rem; overflow: scroll; width: 26.5rem; position: absolute; z-index: 1000; background: #FFFFFF; } .grade-input { width: 27rem; } .input-padding-attachment { padding-bottom: 1rem; height: 6rem !important; padding-top: 0rem !important; } .grade-text-padding { padding-left: 0.5rem; } .subtitle-preview-padding { padding-top: 0.5rem; padding-bottom: 0.8rem; } .container-style .no-suggestion-found { width: 100%; max-height: 13rem; box-shadow: #000000 0px 0.8rem 1rem -0.2rem; overflow: scroll; width: 50rem; position: absolute; z-index: 1000; background: #FFFFFF; text-align: center; padding-top: 0.3rem; padding-bottom: 0.5rem; } .footer { position: fixed; bottom: 0; right: 0; width: 100vw; padding-left: 2rem; padding-right: 2rem; padding-bottom: 1.5rem; } .dark-container .config-team-tab { padding-top: 0.5rem; height: 41.2rem; } .high-contrast-container .config-team-tab { padding-top: 0.5rem; height: 41.2rem; }
0.727298
0.061763
.blue-link { color: #4094c7; } html { line-height: 1.4; font-size: 62.5%; } body, input, textarea, select { font-size: 1.4rem; color: #333; font-family: "lucida grande", "lucida sans unicode", lucida, helvetica, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; } body, h1, h2, h3, h4, p, ul, ol { margin: 0; } ul, ol { padding-left: 0; list-style-type: none; } /*image with no-border*/ img { border: 0; } a { color: #555555; text-decoration: none; } a:link, a:visited { text-decoration: none; } a:hover { text-decoration: none; } a:active { text-decoration: none; } .clearfix:before, .clearfix:after { display: table; content: " "; } .clearfix:after { clear: both; } .mask { background-color: rgba(0, 0, 0, 0.4); display: none; height: 1280px; width: 768px; position: absolute; top: 0; z-index: 99; transition: all 0.6s; } html { background-color: #fff; } body { margin: 0; font-size: 14px; line-height: 20px; color: #555555; background-color: white; } .btn { display: inline-block; margin-bottom: 0; font-size: 14px; text-align: center; vertical-align: middle; cursor: pointer; color: #3f3f3f; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); background-color: whitesmoke; background-image: linear-gradient(to bottom, #fff, #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); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); border: 1px solid #cccccc; border-bottom-color: #b3b3b3; border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn { border-radius: 4px; box-shadow: none; color: #555555; border-color: whitesmoke; background: whitesmoke; border-color: #d5d5d5; text-shadow: none; } .btn-large { font-size: 17.5px; border-radius: 6px; } .btn-success { color: white; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #5bb65b; 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); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-success { color: white; border-color: #49be38; background: #49be38; } .btn-success:hover, .btn-success:focus { color: white; border-color: #6bd95b; background-color: #6bd95b; } .btn-pay { color: white; border-color: #f57e42; background: #f57e42; } .avatar { border-radius: 50%; } .avatar img { width: 100%; height: 100%; border: 2px solid white; border-radius: 50%; box-sizing: border-box; } img { max-width: 100%; width: auto\9; height: auto; vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; } .output .load-more { margin-bottom: 30px; text-align: center; } .fixed-btn { position: fixed; right: 2%; bottom: 2%; width: 40px; border: 1px solid #eeeeee; background-color: white; font-size: 24px; z-index: 1040; -webkit-backface-visibility: hidden; } .fixed-btn a { display: inline-block; width: 40px; height: 40px; text-align: center; } .fixed-btn a i { font-size: 1.8rem; height: 40px; line-height: 40px; vertical-align: middle; } .fixed-btn .go-top { border-bottom: 1px solid #eee; } .fixed-btn .go-top i { font-size: 2.4rem; } .fixed-btn .go-top:hover { color: #000; } .fixed-btn .writer { background-color: #49be38; font-size: 18px; color: white; } .fixed-btn .writer:hover { background-color: #69cf5a; } .row-fluid { width: 100%; } .row-fluid[class*="span"]:first-child { margin-left: 0; } .row-fluid[class*="span"] { display: block; width: 100%; min-height: 30px; box-sizing: border-box; float: left; margin-left: 0%; } .row-fluid .right-content { padding-top: 70px; padding-left: 12px; max-width: 1000px; } .row-fluid .span9 { padding-left: 12px; } .left-aside { position: fixed; top: 0; right: 0; bottom: 0; left: 45px; } .left-aside a, .left-aside a:hover { color: white; } .left-aside .bottom-block { position: absolute; bottom: 0; padding: 30px; color: white; } .left-aside .bottom-block h1, .left-aside .bottom-block h2, .left-aside .bottom-block h3, .left-aside .bottom-block h4, .left-aside .bottom-block h5, .left-aside .bottom-block h6 { text-shadow: -1px 0 0 rgba(0, 0, 0, 0.75); margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 20px; color: inherit; text-rendering: optimizelegibility; } .left-aside .bottom-block h1 { font-size: 38.5px; } .left-aside .bottom-block h3 { font-size: 24.5px; } .left-aside .bottom-block h1, .left-aside .bottom-block h2, .left-aside .bottom-block h3 { line-height: 40px; } .left-aside .bottom-block .btn-success { padding-left: 34px; background-position: -104px -22px; background-image: url('../img/sprite.png'); background-repeat: no-repeat; background-size: 250px; margin-top: 10px; font-size: 16px; } .left-aside .bottom-block .btn-success:hover { margin-top: 10px; font-size: 16px; } .index .container, .post .container { width: 100%; max-width: 100%; }
blog-web/src/css/main.css
.blue-link { color: #4094c7; } html { line-height: 1.4; font-size: 62.5%; } body, input, textarea, select { font-size: 1.4rem; color: #333; font-family: "lucida grande", "lucida sans unicode", lucida, helvetica, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; } body, h1, h2, h3, h4, p, ul, ol { margin: 0; } ul, ol { padding-left: 0; list-style-type: none; } /*image with no-border*/ img { border: 0; } a { color: #555555; text-decoration: none; } a:link, a:visited { text-decoration: none; } a:hover { text-decoration: none; } a:active { text-decoration: none; } .clearfix:before, .clearfix:after { display: table; content: " "; } .clearfix:after { clear: both; } .mask { background-color: rgba(0, 0, 0, 0.4); display: none; height: 1280px; width: 768px; position: absolute; top: 0; z-index: 99; transition: all 0.6s; } html { background-color: #fff; } body { margin: 0; font-size: 14px; line-height: 20px; color: #555555; background-color: white; } .btn { display: inline-block; margin-bottom: 0; font-size: 14px; text-align: center; vertical-align: middle; cursor: pointer; color: #3f3f3f; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); background-color: whitesmoke; background-image: linear-gradient(to bottom, #fff, #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); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); border: 1px solid #cccccc; border-bottom-color: #b3b3b3; border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn { border-radius: 4px; box-shadow: none; color: #555555; border-color: whitesmoke; background: whitesmoke; border-color: #d5d5d5; text-shadow: none; } .btn-large { font-size: 17.5px; border-radius: 6px; } .btn-success { color: white; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); background-color: #5bb65b; 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); filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); } .btn-success { color: white; border-color: #49be38; background: #49be38; } .btn-success:hover, .btn-success:focus { color: white; border-color: #6bd95b; background-color: #6bd95b; } .btn-pay { color: white; border-color: #f57e42; background: #f57e42; } .avatar { border-radius: 50%; } .avatar img { width: 100%; height: 100%; border: 2px solid white; border-radius: 50%; box-sizing: border-box; } img { max-width: 100%; width: auto\9; height: auto; vertical-align: middle; border: 0; -ms-interpolation-mode: bicubic; } .output .load-more { margin-bottom: 30px; text-align: center; } .fixed-btn { position: fixed; right: 2%; bottom: 2%; width: 40px; border: 1px solid #eeeeee; background-color: white; font-size: 24px; z-index: 1040; -webkit-backface-visibility: hidden; } .fixed-btn a { display: inline-block; width: 40px; height: 40px; text-align: center; } .fixed-btn a i { font-size: 1.8rem; height: 40px; line-height: 40px; vertical-align: middle; } .fixed-btn .go-top { border-bottom: 1px solid #eee; } .fixed-btn .go-top i { font-size: 2.4rem; } .fixed-btn .go-top:hover { color: #000; } .fixed-btn .writer { background-color: #49be38; font-size: 18px; color: white; } .fixed-btn .writer:hover { background-color: #69cf5a; } .row-fluid { width: 100%; } .row-fluid[class*="span"]:first-child { margin-left: 0; } .row-fluid[class*="span"] { display: block; width: 100%; min-height: 30px; box-sizing: border-box; float: left; margin-left: 0%; } .row-fluid .right-content { padding-top: 70px; padding-left: 12px; max-width: 1000px; } .row-fluid .span9 { padding-left: 12px; } .left-aside { position: fixed; top: 0; right: 0; bottom: 0; left: 45px; } .left-aside a, .left-aside a:hover { color: white; } .left-aside .bottom-block { position: absolute; bottom: 0; padding: 30px; color: white; } .left-aside .bottom-block h1, .left-aside .bottom-block h2, .left-aside .bottom-block h3, .left-aside .bottom-block h4, .left-aside .bottom-block h5, .left-aside .bottom-block h6 { text-shadow: -1px 0 0 rgba(0, 0, 0, 0.75); margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 20px; color: inherit; text-rendering: optimizelegibility; } .left-aside .bottom-block h1 { font-size: 38.5px; } .left-aside .bottom-block h3 { font-size: 24.5px; } .left-aside .bottom-block h1, .left-aside .bottom-block h2, .left-aside .bottom-block h3 { line-height: 40px; } .left-aside .bottom-block .btn-success { padding-left: 34px; background-position: -104px -22px; background-image: url('../img/sprite.png'); background-repeat: no-repeat; background-size: 250px; margin-top: 10px; font-size: 16px; } .left-aside .bottom-block .btn-success:hover { margin-top: 10px; font-size: 16px; } .index .container, .post .container { width: 100%; max-width: 100%; }
0.482673
0.155623
.site-title { font-size: 1.4rem; font-weight: bolder; line-height: 110%; } .article { margin-bottom: 3rem; } .article-header { margin-bottom: 4rem; } .article-title { font-size: 2.4rem; margin-bottom: 0.6rem; line-height: 140%; } .article .date { display: block; font-size: 0.8rem; } /* markdown content */ .content * { line-height: 180%; } .content p { margin: 0 0 1rem 0; padding: 0; } .content h1 { font-size: 2rem; } .content h2 { font-size: 1.8rem; margin: 1.75rem 0; } .content h3 { font-size: 1.4rem; margin: 1.4rem 0; } .content h4 { font-size: 1.2rem; margin: 1.2rem 0; } .content h5 { font-size: 1rem; margin: 1.2rem 0; } .content h6 { font-size: 0.8rem; margin: 1.2rem 0; } .content blockquote { padding-left: 1.42188rem; margin-bottom: 1.75rem; font-style: italic; font-weight: 100; border-left: 0.3rem solid var(--border-color); } .content strong { font-weight: bold; } .content ul { margin-left: 1rem; margin-bottom: 1.75rem; } .content ol { margin-left: 1.75rem; margin-bottom: 1.75rem; } .content ol * ol, .content ul * ul { margin-left: 1rem; margin-bottom: 0; } .content table { width: 100%; max-width: 100%; margin: 1rem 0; border-collapse: collapse; } .content table th { background: var(--bg-color-2); color: var(--color); } .content table tr, .content table th, .content table td, .content table thead, .content table tbody { border: 1px solid var(--border-color); padding: 0.5rem 1rem; } .content img { max-width: 100%; margin: 0.5rem 0; border-radius: 0.5rem; } /* pre , code */ .content, .content div, .content div pre, .content div pre code { overflow-x: auto; } .content pre { background: var(--gray-10); color: var(--gray-2); padding: 1rem 2rem; margin-bottom: 1.75rem; border-radius: 0.5rem; } .content pre code { background: transparent; color: var(--gray-2); } .content code { padding: 3px 5px; white-space: pre; background: var(--bg-color-2); color: var(--color); } /* lbox */ .content img { cursor: zoom-in; } #lightbox { position: fixed; z-index: 1000; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.8); display: none; } #lightbox.active { display: flex; justify-content: center; align-items: center; } #lightbox img { max-width: 90%; max-height: 80%; padding: 4px; background-color: black; border: 2px solid white; } @media screen and (max-width: 750px) { body { padding: 1.5rem; } }
assets/css/post.css
.site-title { font-size: 1.4rem; font-weight: bolder; line-height: 110%; } .article { margin-bottom: 3rem; } .article-header { margin-bottom: 4rem; } .article-title { font-size: 2.4rem; margin-bottom: 0.6rem; line-height: 140%; } .article .date { display: block; font-size: 0.8rem; } /* markdown content */ .content * { line-height: 180%; } .content p { margin: 0 0 1rem 0; padding: 0; } .content h1 { font-size: 2rem; } .content h2 { font-size: 1.8rem; margin: 1.75rem 0; } .content h3 { font-size: 1.4rem; margin: 1.4rem 0; } .content h4 { font-size: 1.2rem; margin: 1.2rem 0; } .content h5 { font-size: 1rem; margin: 1.2rem 0; } .content h6 { font-size: 0.8rem; margin: 1.2rem 0; } .content blockquote { padding-left: 1.42188rem; margin-bottom: 1.75rem; font-style: italic; font-weight: 100; border-left: 0.3rem solid var(--border-color); } .content strong { font-weight: bold; } .content ul { margin-left: 1rem; margin-bottom: 1.75rem; } .content ol { margin-left: 1.75rem; margin-bottom: 1.75rem; } .content ol * ol, .content ul * ul { margin-left: 1rem; margin-bottom: 0; } .content table { width: 100%; max-width: 100%; margin: 1rem 0; border-collapse: collapse; } .content table th { background: var(--bg-color-2); color: var(--color); } .content table tr, .content table th, .content table td, .content table thead, .content table tbody { border: 1px solid var(--border-color); padding: 0.5rem 1rem; } .content img { max-width: 100%; margin: 0.5rem 0; border-radius: 0.5rem; } /* pre , code */ .content, .content div, .content div pre, .content div pre code { overflow-x: auto; } .content pre { background: var(--gray-10); color: var(--gray-2); padding: 1rem 2rem; margin-bottom: 1.75rem; border-radius: 0.5rem; } .content pre code { background: transparent; color: var(--gray-2); } .content code { padding: 3px 5px; white-space: pre; background: var(--bg-color-2); color: var(--color); } /* lbox */ .content img { cursor: zoom-in; } #lightbox { position: fixed; z-index: 1000; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.8); display: none; } #lightbox.active { display: flex; justify-content: center; align-items: center; } #lightbox img { max-width: 90%; max-height: 80%; padding: 4px; background-color: black; border: 2px solid white; } @media screen and (max-width: 750px) { body { padding: 1.5rem; } }
0.452052
0.164819
@font-face { font-family: 'Noto Sans'; font-weight: 400; font-style: normal; src: url("../fonts/Noto-Sans-regular/Noto-Sans-regular.eot"); src: url("../fonts/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix") format("embedded-opentype"), local("Noto Sans"), local("Noto-Sans-regular"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.woff2") format("woff2"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.woff") format("woff"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.ttf") format("truetype"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans") format("svg"); } @font-face { font-family: 'Noto Sans'; font-weight: 700; font-style: normal; src: url("../fonts/Noto-Sans-700/Noto-Sans-700.eot"); src: url("../fonts/Noto-Sans-700/Noto-Sans-700.eot?#iefix") format("embedded-opentype"), local("Noto Sans Bold"), local("Noto-Sans-700"), url("../fonts/Noto-Sans-700/Noto-Sans-700.woff2") format("woff2"), url("../fonts/Noto-Sans-700/Noto-Sans-700.woff") format("woff"), url("../fonts/Noto-Sans-700/Noto-Sans-700.ttf") format("truetype"), url("../fonts/Noto-Sans-700/Noto-Sans-700.svg#NotoSans") format("svg"); } @font-face { font-family: 'Noto Sans'; font-weight: 400; font-style: italic; src: url("../fonts/Noto-Sans-italic/Noto-Sans-italic.eot"); src: url("../fonts/Noto-Sans-italic/Noto-Sans-italic.eot?#iefix") format("embedded-opentype"), local("Noto Sans Italic"), local("Noto-Sans-italic"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.woff2") format("woff2"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.woff") format("woff"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.ttf") format("truetype"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.svg#NotoSans") format("svg"); } @font-face { font-family: 'Noto Sans'; font-weight: 700; font-style: italic; src: url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot"); src: url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot?#iefix") format("embedded-opentype"), local("Noto Sans Bold Italic"), local("Noto-Sans-700italic"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2") format("woff2"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff") format("woff"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf") format("truetype"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg#NotoSans") format("svg"); } .highlight table td { padding: 3px; } .highlight table pre { margin: 0; } .highlight .cm { color: #999988; font-style: italic; } .highlight .cp { color: #999999; font-weight: bold; } .highlight .c1 { color: #999988; font-style: italic; } .highlight .cs { color: #999999; font-weight: bold; font-style: italic; } .highlight .c, .highlight .cd { color: #999988; font-style: italic; } .highlight .err { color: #a61717; background-color: #e3d2d2; } .highlight .gd { color: #000000; background-color: #ffdddd; } .highlight .ge { color: #000000; font-style: italic; } .highlight .gr { color: #aa0000; } .highlight .gh { color: #999999; } .highlight .gi { color: #000000; background-color: #ddffdd; } .highlight .go { color: #888888; } .highlight .gp { color: #555555; } .highlight .gs { font-weight: bold; } .highlight .gu { color: #aaaaaa; } .highlight .gt { color: #aa0000; } .highlight .kc { color: #000000; font-weight: bold; } .highlight .kd { color: #000000; font-weight: bold; } .highlight .kn { color: #000000; font-weight: bold; } .highlight .kp { color: #000000; font-weight: bold; } .highlight .kr { color: #000000; font-weight: bold; } .highlight .kt { color: #445588; font-weight: bold; } .highlight .k, .highlight .kv { color: #000000; font-weight: bold; } .highlight .mf { color: #009999; } .highlight .mh { color: #009999; } .highlight .il { color: #009999; } .highlight .mi { color: #009999; } .highlight .mo { color: #009999; } .highlight .m, .highlight .mb, .highlight .mx { color: #009999; } .highlight .sb { color: #d14; } .highlight .sc { color: #d14; } .highlight .sd { color: #d14; } .highlight .s2 { color: #d14; } .highlight .se { color: #d14; } .highlight .sh { color: #d14; } .highlight .si { color: #d14; } .highlight .sx { color: #d14; } .highlight .sr { color: #009926; } .highlight .s1 { color: #d14; } .highlight .ss { color: #990073; } .highlight .s { color: #d14; } .highlight .na { color: #008080; } .highlight .bp { color: #999999; } .highlight .nb { color: #0086B3; } .highlight .nc { color: #445588; font-weight: bold; } .highlight .no { color: #008080; } .highlight .nd { color: #3c5d5d; font-weight: bold; } .highlight .ni { color: #800080; } .highlight .ne { color: #990000; font-weight: bold; } .highlight .nf { color: #990000; font-weight: bold; } .highlight .nl { color: #990000; font-weight: bold; } .highlight .nn { color: #555555; } .highlight .nt { color: #000080; } .highlight .vc { color: #008080; } .highlight .vg { color: #008080; } .highlight .vi { color: #008080; } .highlight .nv { color: #008080; } .highlight .ow { color: #000000; font-weight: bold; } .highlight .o { color: #000000; font-weight: bold; } .highlight .w { color: #bbbbbb; } .mbtablestyle { border-collapse: collapse; } .mbtablestyle > table, .mbtablestyle td, .mbtablestyle th { border: 1px solid black; } /** * Reset some basic elements */ body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, figure { margin: 0; padding: 0; } hr { display: block; height: 1px; border: 0; border-top: 1px solid #f9dbd2; margin: 2em 0; padding: 0; } /** * Basic styling */ body { font: 400 16px/1.65 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; color: #111; background-color: #fdfdfd; -webkit-text-size-adjust: 100%; -webkit-font-feature-settings: "kern" 1; -moz-font-feature-settings: "kern" 1; -o-font-feature-settings: "kern" 1; font-feature-settings: "kern" 1; font-kerning: normal; } .share-buttons { display: inline; float: right; } .share-button .fb-like { display: block; float: left; padding: 0 5px; height: 30px; vertical-align: text-bottom !important; } .twitter-share-button { padding-top: 1px; } .table-of-content li { font-size: 96%; color: #e0491f; list-style-type: disc; } .page-navigation { font-size: 90%; display: block; width: 100%; overflow: hidden; } .page-navigation a { display: block; overflow: hidden; width: 50%; float: left; margin: 1em 0; } .page-navigation .next { text-align: right; } /** * Set `margin-bottom` to maintain vertical rhythm */ h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure { margin-bottom: 15px; } /** * Images */ img { max-width: 100%; vertical-align: middle; margin: 10px auto; text-align: center; display: block; margin: 0 auto; } .center { max-width: 100%; display: block; margin: 0 auto; } /** * Figures */ figure > img { display: block; } figcaption { font-size: 14px; color: #424242; padding-bottom: 10px; } /** * Lists */ ul, ol { margin-left: 30px; } li > ul, li > ol { margin-bottom: 0; } /** * Table */ table.info { max-width: 100%; border-top: 2px solid #828282; border-bottom: 2px solid #828282; margin: 20px auto; font-size: 90%; } table.info th, table.info td { padding: 2px 6px; text-align: left; vertical-align: top; } table.info th { text-align: center; border-bottom: 1px solid #e8e8e8; } /** * Headings */ h1, h2, h3, h4, h5, h6 { font-weight: 400; } /** * Links */ a { color: #e0491f; text-decoration: none; } a:visited { color: #e0491f; } a:hover { color: #f9493f; text-decoration: underline; } .social-media-list a:hover { text-decoration: none; } .social-media-list a:hover .username { text-decoration: underline; } /** * Blockquotes */ blockquote { color: #777777; border-left: 4px solid #bbbbbb; padding: 10px; margin: 10px; padding-left: 25px; font-size: 18px; letter-spacing: -1px; background: #f0f0f0; } blockquote > :last-child { margin-bottom: 0; } /** * Code formatting */ pre, code { font-size: 15px; border: 1px solid #e8e8e8; border-radius: 3px; background-color: #f2f2f2; } code { padding: 1px 5px; } pre { padding: 4px 6px; overflow-x: auto; } pre > code { border: 0; padding-right: 0; padding-left: 0; } pre .lineno { font-size: 14.4px; } /** * Wrapper */ .wrapper { max-width: -webkit-calc(800px - (30px * 2)); max-width: calc(800px - (30px * 2)); margin-right: auto; margin-left: auto; padding-right: 30px; padding-left: 30px; } @media screen and (max-width: 800px) { .wrapper { max-width: -webkit-calc(800px - (30px)); max-width: calc(800px - (30px)); padding-right: 15px; padding-left: 15px; } } /** * Clearfix */ .wrapper:after { content: ""; display: table; clear: both; } /** * Icons */ .icon > svg { display: inline-block; vertical-align: middle; } .icon > svg path { fill: #828282; } .social-media-list .icon { padding-right: 5px; } .social-media-list li + li { padding-top: 5px; } /** * Site header */ .site-header { background: #111; opacity: 0.8; min-height: 55.95px; position: relative; /* min-height: $spacing-unit * 1.75; background: #222; opacity: 0.8; position: fixed; top: 0; width: 100%; display: block; transition: top 0.3s; */ } .site-title { font-size: 26px; font-weight: 600; color: #ffffff; line-height: 59.4px; letter-spacing: -1px; margin-bottom: 0; float: left; } .site-title, .site-title:visited { color: #ffffff; } .site-title:hover { color: #f9493f; text-decoration: none; cursor: pointer; } .site-nav { float: right; text-align: right; line-height: 59.4px; padding-right: 10px; } .site-nav .nav-trigger { display: none; } .site-nav .menu-icon { display: none; } .site-nav .page-link { color: #ffffff; line-height: 1.65; } .site-nav .page-link:not(:last-child) { margin-right: 20px; } .site-nav .page-link:hover { color: #f9493f; text-decoration: none; cursor: pointer; } @media screen and (max-width: 600px) { .site-nav { position: absolute; top: 9px; right: 15px; background-color: #fdfdfd; border: 1px solid #e8e8e8; border-radius: 5px; text-align: right; } .site-nav label[for="nav-trigger"] { display: block; float: right; width: 36px; height: 36px; z-index: 2; cursor: pointer; } .site-nav .menu-icon { display: block; float: right; width: 36px; height: 26px; line-height: 0; padding-top: 10px; text-align: center; } .site-nav .menu-icon > svg path { fill: #424242; } .site-nav input ~ .trigger { clear: both; display: none; } .site-nav input:checked ~ .trigger { display: block; padding-bottom: 5px; } .site-nav .page-link { display: block; padding: 5px 10px; margin-left: 20px; } .site-nav .page-link:not(:last-child) { margin-right: 0; } } /** * Site footer */ .site-footer { right: 0; bottom: 0; left: 0; padding: 1rem; text-align: center; font-size: 14px; color: #828282; clear: both; margin-bottom: 30px; } .site-footer a { color: #828282; } .site-footer p { margin: 5px auto; width: 200px; } .site-footer img { width: 26px; height: 26px; margin: 0 4px; display: block; float: left; } /** * Page content */ .page-content { padding: 30px 0; } .page-heading { font-size: 24px; font-weight: 600; } .post-list { margin-left: 0; list-style: none; } .post-list > li { margin-bottom: 60px; } .post-meta { font-size: 14px; color: #828282; } .post-meta a.post-tag { border-radius: 5px; border: 1px solid #828282; color: #828282; padding: 1px 5px; margin-left: 5px; } .post-meta a.post-tag:hover { border: 1px solid #e0491f; text-decoration: none; color: #ffffff; background: #e0491f; } .post-link { display: block; font-size: 25.6px; font-weight: 600; font-color: #000000; } .post-link:hover { color: #f9493f; text-decoration: none; cursor: pointer; } /** * FAQ */ .other-pages { margin-top: 15px; } div.qa { margin: 10px; padding: 10px; } div.qa .question { border-radius: 5px; background: #eeeeee; padding: 5px; padding-left: 20px; } /** * Posts */ .post-header { margin-top: 60px; margin-bottom: 30px; } .post-title { font-size: 35.2px; letter-spacing: -1px; line-height: 1.2; font-weight: 600; width: 680px; max-width: 100%; } @media screen and (max-width: 800px) { .post-title { font-size: 35.2px; } } .post-content { margin-bottom: 30px; } .post-content h2 { font-size: 28.8px; font-weight: 600; margin-top: 46.5px; blockquote-line-height: 1.5; } @media screen and (max-width: 800px) { .post-content h2 { font-size: 28px; } } .post-content h3 { font-size: 20.8px; font-weight: 540; margin-top: 33px; } @media screen and (max-width: 800px) { .post-content h3 { font-size: 22px; } } .post-content h4 { font-size: 18.4px; font-weight: 800; } @media screen and (max-width: 800px) { .post-content h4 { font-size: 18px; } } .post-content a { border-bottom: 1px dotted #bbb; padding-bottom: 1px; } .post-content a:hover { color: #f9493f; border-bottom: 1px solid #f9493f; padding-bottom: 1px; text-decoration: none; } /*# sourceMappingURL=main.css.map */
_site/assets/css/main.css
@font-face { font-family: 'Noto Sans'; font-weight: 400; font-style: normal; src: url("../fonts/Noto-Sans-regular/Noto-Sans-regular.eot"); src: url("../fonts/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix") format("embedded-opentype"), local("Noto Sans"), local("Noto-Sans-regular"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.woff2") format("woff2"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.woff") format("woff"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.ttf") format("truetype"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans") format("svg"); } @font-face { font-family: 'Noto Sans'; font-weight: 700; font-style: normal; src: url("../fonts/Noto-Sans-700/Noto-Sans-700.eot"); src: url("../fonts/Noto-Sans-700/Noto-Sans-700.eot?#iefix") format("embedded-opentype"), local("Noto Sans Bold"), local("Noto-Sans-700"), url("../fonts/Noto-Sans-700/Noto-Sans-700.woff2") format("woff2"), url("../fonts/Noto-Sans-700/Noto-Sans-700.woff") format("woff"), url("../fonts/Noto-Sans-700/Noto-Sans-700.ttf") format("truetype"), url("../fonts/Noto-Sans-700/Noto-Sans-700.svg#NotoSans") format("svg"); } @font-face { font-family: 'Noto Sans'; font-weight: 400; font-style: italic; src: url("../fonts/Noto-Sans-italic/Noto-Sans-italic.eot"); src: url("../fonts/Noto-Sans-italic/Noto-Sans-italic.eot?#iefix") format("embedded-opentype"), local("Noto Sans Italic"), local("Noto-Sans-italic"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.woff2") format("woff2"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.woff") format("woff"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.ttf") format("truetype"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.svg#NotoSans") format("svg"); } @font-face { font-family: 'Noto Sans'; font-weight: 700; font-style: italic; src: url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot"); src: url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot?#iefix") format("embedded-opentype"), local("Noto Sans Bold Italic"), local("Noto-Sans-700italic"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2") format("woff2"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff") format("woff"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf") format("truetype"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg#NotoSans") format("svg"); } .highlight table td { padding: 3px; } .highlight table pre { margin: 0; } .highlight .cm { color: #999988; font-style: italic; } .highlight .cp { color: #999999; font-weight: bold; } .highlight .c1 { color: #999988; font-style: italic; } .highlight .cs { color: #999999; font-weight: bold; font-style: italic; } .highlight .c, .highlight .cd { color: #999988; font-style: italic; } .highlight .err { color: #a61717; background-color: #e3d2d2; } .highlight .gd { color: #000000; background-color: #ffdddd; } .highlight .ge { color: #000000; font-style: italic; } .highlight .gr { color: #aa0000; } .highlight .gh { color: #999999; } .highlight .gi { color: #000000; background-color: #ddffdd; } .highlight .go { color: #888888; } .highlight .gp { color: #555555; } .highlight .gs { font-weight: bold; } .highlight .gu { color: #aaaaaa; } .highlight .gt { color: #aa0000; } .highlight .kc { color: #000000; font-weight: bold; } .highlight .kd { color: #000000; font-weight: bold; } .highlight .kn { color: #000000; font-weight: bold; } .highlight .kp { color: #000000; font-weight: bold; } .highlight .kr { color: #000000; font-weight: bold; } .highlight .kt { color: #445588; font-weight: bold; } .highlight .k, .highlight .kv { color: #000000; font-weight: bold; } .highlight .mf { color: #009999; } .highlight .mh { color: #009999; } .highlight .il { color: #009999; } .highlight .mi { color: #009999; } .highlight .mo { color: #009999; } .highlight .m, .highlight .mb, .highlight .mx { color: #009999; } .highlight .sb { color: #d14; } .highlight .sc { color: #d14; } .highlight .sd { color: #d14; } .highlight .s2 { color: #d14; } .highlight .se { color: #d14; } .highlight .sh { color: #d14; } .highlight .si { color: #d14; } .highlight .sx { color: #d14; } .highlight .sr { color: #009926; } .highlight .s1 { color: #d14; } .highlight .ss { color: #990073; } .highlight .s { color: #d14; } .highlight .na { color: #008080; } .highlight .bp { color: #999999; } .highlight .nb { color: #0086B3; } .highlight .nc { color: #445588; font-weight: bold; } .highlight .no { color: #008080; } .highlight .nd { color: #3c5d5d; font-weight: bold; } .highlight .ni { color: #800080; } .highlight .ne { color: #990000; font-weight: bold; } .highlight .nf { color: #990000; font-weight: bold; } .highlight .nl { color: #990000; font-weight: bold; } .highlight .nn { color: #555555; } .highlight .nt { color: #000080; } .highlight .vc { color: #008080; } .highlight .vg { color: #008080; } .highlight .vi { color: #008080; } .highlight .nv { color: #008080; } .highlight .ow { color: #000000; font-weight: bold; } .highlight .o { color: #000000; font-weight: bold; } .highlight .w { color: #bbbbbb; } .mbtablestyle { border-collapse: collapse; } .mbtablestyle > table, .mbtablestyle td, .mbtablestyle th { border: 1px solid black; } /** * Reset some basic elements */ body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, figure { margin: 0; padding: 0; } hr { display: block; height: 1px; border: 0; border-top: 1px solid #f9dbd2; margin: 2em 0; padding: 0; } /** * Basic styling */ body { font: 400 16px/1.65 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; color: #111; background-color: #fdfdfd; -webkit-text-size-adjust: 100%; -webkit-font-feature-settings: "kern" 1; -moz-font-feature-settings: "kern" 1; -o-font-feature-settings: "kern" 1; font-feature-settings: "kern" 1; font-kerning: normal; } .share-buttons { display: inline; float: right; } .share-button .fb-like { display: block; float: left; padding: 0 5px; height: 30px; vertical-align: text-bottom !important; } .twitter-share-button { padding-top: 1px; } .table-of-content li { font-size: 96%; color: #e0491f; list-style-type: disc; } .page-navigation { font-size: 90%; display: block; width: 100%; overflow: hidden; } .page-navigation a { display: block; overflow: hidden; width: 50%; float: left; margin: 1em 0; } .page-navigation .next { text-align: right; } /** * Set `margin-bottom` to maintain vertical rhythm */ h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure { margin-bottom: 15px; } /** * Images */ img { max-width: 100%; vertical-align: middle; margin: 10px auto; text-align: center; display: block; margin: 0 auto; } .center { max-width: 100%; display: block; margin: 0 auto; } /** * Figures */ figure > img { display: block; } figcaption { font-size: 14px; color: #424242; padding-bottom: 10px; } /** * Lists */ ul, ol { margin-left: 30px; } li > ul, li > ol { margin-bottom: 0; } /** * Table */ table.info { max-width: 100%; border-top: 2px solid #828282; border-bottom: 2px solid #828282; margin: 20px auto; font-size: 90%; } table.info th, table.info td { padding: 2px 6px; text-align: left; vertical-align: top; } table.info th { text-align: center; border-bottom: 1px solid #e8e8e8; } /** * Headings */ h1, h2, h3, h4, h5, h6 { font-weight: 400; } /** * Links */ a { color: #e0491f; text-decoration: none; } a:visited { color: #e0491f; } a:hover { color: #f9493f; text-decoration: underline; } .social-media-list a:hover { text-decoration: none; } .social-media-list a:hover .username { text-decoration: underline; } /** * Blockquotes */ blockquote { color: #777777; border-left: 4px solid #bbbbbb; padding: 10px; margin: 10px; padding-left: 25px; font-size: 18px; letter-spacing: -1px; background: #f0f0f0; } blockquote > :last-child { margin-bottom: 0; } /** * Code formatting */ pre, code { font-size: 15px; border: 1px solid #e8e8e8; border-radius: 3px; background-color: #f2f2f2; } code { padding: 1px 5px; } pre { padding: 4px 6px; overflow-x: auto; } pre > code { border: 0; padding-right: 0; padding-left: 0; } pre .lineno { font-size: 14.4px; } /** * Wrapper */ .wrapper { max-width: -webkit-calc(800px - (30px * 2)); max-width: calc(800px - (30px * 2)); margin-right: auto; margin-left: auto; padding-right: 30px; padding-left: 30px; } @media screen and (max-width: 800px) { .wrapper { max-width: -webkit-calc(800px - (30px)); max-width: calc(800px - (30px)); padding-right: 15px; padding-left: 15px; } } /** * Clearfix */ .wrapper:after { content: ""; display: table; clear: both; } /** * Icons */ .icon > svg { display: inline-block; vertical-align: middle; } .icon > svg path { fill: #828282; } .social-media-list .icon { padding-right: 5px; } .social-media-list li + li { padding-top: 5px; } /** * Site header */ .site-header { background: #111; opacity: 0.8; min-height: 55.95px; position: relative; /* min-height: $spacing-unit * 1.75; background: #222; opacity: 0.8; position: fixed; top: 0; width: 100%; display: block; transition: top 0.3s; */ } .site-title { font-size: 26px; font-weight: 600; color: #ffffff; line-height: 59.4px; letter-spacing: -1px; margin-bottom: 0; float: left; } .site-title, .site-title:visited { color: #ffffff; } .site-title:hover { color: #f9493f; text-decoration: none; cursor: pointer; } .site-nav { float: right; text-align: right; line-height: 59.4px; padding-right: 10px; } .site-nav .nav-trigger { display: none; } .site-nav .menu-icon { display: none; } .site-nav .page-link { color: #ffffff; line-height: 1.65; } .site-nav .page-link:not(:last-child) { margin-right: 20px; } .site-nav .page-link:hover { color: #f9493f; text-decoration: none; cursor: pointer; } @media screen and (max-width: 600px) { .site-nav { position: absolute; top: 9px; right: 15px; background-color: #fdfdfd; border: 1px solid #e8e8e8; border-radius: 5px; text-align: right; } .site-nav label[for="nav-trigger"] { display: block; float: right; width: 36px; height: 36px; z-index: 2; cursor: pointer; } .site-nav .menu-icon { display: block; float: right; width: 36px; height: 26px; line-height: 0; padding-top: 10px; text-align: center; } .site-nav .menu-icon > svg path { fill: #424242; } .site-nav input ~ .trigger { clear: both; display: none; } .site-nav input:checked ~ .trigger { display: block; padding-bottom: 5px; } .site-nav .page-link { display: block; padding: 5px 10px; margin-left: 20px; } .site-nav .page-link:not(:last-child) { margin-right: 0; } } /** * Site footer */ .site-footer { right: 0; bottom: 0; left: 0; padding: 1rem; text-align: center; font-size: 14px; color: #828282; clear: both; margin-bottom: 30px; } .site-footer a { color: #828282; } .site-footer p { margin: 5px auto; width: 200px; } .site-footer img { width: 26px; height: 26px; margin: 0 4px; display: block; float: left; } /** * Page content */ .page-content { padding: 30px 0; } .page-heading { font-size: 24px; font-weight: 600; } .post-list { margin-left: 0; list-style: none; } .post-list > li { margin-bottom: 60px; } .post-meta { font-size: 14px; color: #828282; } .post-meta a.post-tag { border-radius: 5px; border: 1px solid #828282; color: #828282; padding: 1px 5px; margin-left: 5px; } .post-meta a.post-tag:hover { border: 1px solid #e0491f; text-decoration: none; color: #ffffff; background: #e0491f; } .post-link { display: block; font-size: 25.6px; font-weight: 600; font-color: #000000; } .post-link:hover { color: #f9493f; text-decoration: none; cursor: pointer; } /** * FAQ */ .other-pages { margin-top: 15px; } div.qa { margin: 10px; padding: 10px; } div.qa .question { border-radius: 5px; background: #eeeeee; padding: 5px; padding-left: 20px; } /** * Posts */ .post-header { margin-top: 60px; margin-bottom: 30px; } .post-title { font-size: 35.2px; letter-spacing: -1px; line-height: 1.2; font-weight: 600; width: 680px; max-width: 100%; } @media screen and (max-width: 800px) { .post-title { font-size: 35.2px; } } .post-content { margin-bottom: 30px; } .post-content h2 { font-size: 28.8px; font-weight: 600; margin-top: 46.5px; blockquote-line-height: 1.5; } @media screen and (max-width: 800px) { .post-content h2 { font-size: 28px; } } .post-content h3 { font-size: 20.8px; font-weight: 540; margin-top: 33px; } @media screen and (max-width: 800px) { .post-content h3 { font-size: 22px; } } .post-content h4 { font-size: 18.4px; font-weight: 800; } @media screen and (max-width: 800px) { .post-content h4 { font-size: 18px; } } .post-content a { border-bottom: 1px dotted #bbb; padding-bottom: 1px; } .post-content a:hover { color: #f9493f; border-bottom: 1px solid #f9493f; padding-bottom: 1px; text-decoration: none; } /*# sourceMappingURL=main.css.map */
0.330039
0.04778
@-moz-document domain("kissmanga.com") { /* COLORS */ /** DESCRIPTION : set the colors **/ :root { --body-bg: #212121 !important; --card-bg: #374047 !important; --border-color: #333 !important; --link-color: #7C9EB7 !important; --primary-color: #FFF !important; --secondary-color: #EBEBEB !important; --invert: invert(1) !important; } /* GENERAL */ /** DESCRIPTION : set main font and background, plus remove some elements **/ * { font-family: "Roboto", "ぼくたちのゴシック2ボールド" !important; } *::-moz-focus-inner { border: 0; } a { color: #3498DB; } #result_box a span, span[style="font-weight: bold; color: #d5f406"] { color: #3498DB !important; font-weight: normal !important; } html { background: var(--body-bg) !important; } body, body > #containerRoot { background: var(--body-bg) !important; overflow-x: hidden !important; } a, a:hover { transition: all 0.3s ease-in-out 0s !important; } a:hover { opacity: .7 !important; } select { -webkit-appearance: none; -moz-appearance: none; text-indent: 0px; text-overflow: ellipsis; white-space: nowrap; } #formVerify * { /*** VERIFY BOX ***/ font-size: 14pt !important; } #adsIfrme7, div[style="float: left; width: 250px; text-align: left; margin-left: 2px"], div[style="text-align: center;"] > div[style="display: inline-table;"], .divCloseBut, #divFloatLeft, #divFloatRight, #divAds2, iframe, img[src="/Content/images/bookmark1.png"], #navsubbar a[href="/Register/Member"] { display: none !important; } #disqus_thread iframe { display: block !important; } #footer { /*** FOOTER ***/ display: none !important; } :root { --avatar: url("https://vignette.wikia.nocookie.net/nichijou/images/e/e4/Anime-hakase-kawaii-nichijou-Favim.com-218145.jpg/revision/latest?cb=20121221073705") !important; --banner: url("http://stuffpoint.com/anime-and-manga/image/322583-anime-and-manga-one-piece-colorful.jpg") !important; --hot: url("https://s7.postimg.cc/52wxo944r/00_FJbu.png") !important; --link: url("http://icon-park.com/imagefiles/link_icon_blue.png") !important; --logo: url("https://s7.postimg.cc/x1r3fm5wp/v_RRZ6_X.png") !important; --next: url("https://s7.postimg.cc/stwb6i9if/Rk0_Cq3.png") !important; --prev: url("https://s7.postimg.cc/j9cojmrw7/tr_Eva_Q.png") !important; --search: url("https://www.freeiconspng.com/uploads/flat-search-find-icon-13.png") !important; } /* HEADER */ /** DESCRIPTION : change the elements of the header/upper part **/ #head h1 { background: no-repeat var(--banner) center !important; background-size: cover !important; border-top: 10px solid #2980b9 !important; border-bottom: 65px solid #2C3E50 !important; height: 200px !important; width: 100% !important; position: absolute !important; top: -30px !important; left: 0px !important; } #head h1 a.logo { background: var(--logo) no-repeat !important; background-size: auto 135px !important; width: 80% !important; padding-bottom: 10px !important; margin-top: 25px !important; margin-left: 20px !important; z-index: 9999 !important; } #navbar { /*** NAVBAR ***/ background: transparent !important; } #navcontainer { display: none; } #navsubbar { /*** SUB-BAR ***/ background: #2C3E50 !important; padding: 20px 0px !important; position: absolute !important; margin-top: 106px !important; } #navsubbar p { color: transparent !important; } #navsubbar p a { font-size: 15pt !important; font-stretch: condensed !important; font-weight: normal !important; line-height: 18pt !important; margin-top: -7px !important; max-width: 25% !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; } #navsubbar p a:nth-of-type(1) { position: absolute !important; left: 16px !important; } #navsubbar p a:nth-of-type(2) { position: absolute !important; left: 165px !important; } #navsubbar p a:nth-of-type(3) { position: absolute !important; left: 325px !important; } #navsubbar p a:nth-of-type(4) { position: absolute !important; left: 450px !important; } #navsubbar p a:nth-of-type(5) { position: absolute !important; left: 555px !important; } #search { /*** SEARCHBAR ***/ position: absolute !important; top: 216px !important; right: 30px !important; z-index: 999 !important; } #search input.text, #selectSearch { background: #404D63 !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; font-size: 15pt !important; font-stretch: condensed !important; line-height: 30px !important; padding-left: 10px; } #selectSearch { height: 35px; width: 150px !important; text-indent: 2px; margin-left: 5px; } #search img { display: none !important; } div[style="margin: 10px 48px 10px 0"] { width: 0px !important; padding: 0px !important; margin-top: -37px !important; margin-left: 380px !important; } div[style="margin: 10px 48px 10px 0"] a { background: no-repeat var(--search) center !important; background-size: 28px auto !important; color: transparent !important; font-size: 11pt !important; font-weight: bold !important; } #result_box { background-color: var(--body-bg) !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .3) !important; opacity: 1; padding: 10px 20px !important; width: 88.7% !important; margin-top: 16px !important; margin-left: -56px !important; } #result_box a { color: var(--primary-color); font-size: 14pt !important; font-stretch: condensed !important; padding: 10px 0px !important; position: static !important; } #result_box a:hover { background: transparent; } .dIa, .bp, #widget_bounds, #plusone, #___plusone_0, #search input.button { display: none !important; } #topHolderBox { /*** ACCOUNT ***/ background-color: transparent !important; color: transparent !important; position: fixed !important; top: 40px !important; right: -45px !important; text-align: left !important; z-index: 9999 !important; } #topHolderBox span { color: transparent !important; } #topHolderBox img { display: none !important; } #aDropDown { background: no-repeat var(--avatar) center !important; background-color: #181818 !important; background-size: cover !important; border: none !important; border-radius: 50% !important; padding: 40px 0px 0px 40px !important; height: 0px !important; width: 0px !important; } #aDropDown small { display: none !important; } #menu_box { background: #2C3E50 !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; position: absolute !important; top: -25px !important; margin-left: -390px !important; } #menu_box a { border: none !important; font-size: 14pt !important; font-stretch: condensed !important; font-weight: normal !important; padding: 0px 5px 5px 5px !important; } #menu_box a:first-child { padding-top: 10px !important; } #menu_box a:last-child { padding-bottom: 10px !important; } #menu_box a:hover { background: transparent !important; opacity: .7 !important; } /* HOME */ /** DESCRIPTION : change/remove the elements in the front page (aka home) **/ #leftside, #rightside { /*** LEFT/RIGHT SIDE ***/ margin-top: 200px !important; } #leftside { /*** LEFT SIDE ***/ margin-left: -20px !important; } #leftside .banner { /*** RANDOM BOX ***/ background: var(--card-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 10px !important; min-height: 250px !important; max-height: 250px !important; margin-bottom: 15px !important; } #leftside .banner .bigChar { color: var(--primary-color) !important; font-size: 18pt !important; font-stretch: condensed; font-weight: normal !important; letter-spacing: 0px !important; text-shadow: none !important; } .info { color: var(--secondary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; text-transform: lowercase !important; } #leftside .dotUnder { background: #508AA8 !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; color: #FFF !important; font-size: 14pt !important; font-stretch: condensed !important; font-weight: normal !important; line-height: 31pt !important; padding: 5px 10px 6px 10px !important; margin-left: 5px; margin-right: -7px; } #leftside #btnBookmarkManager, #leftside #spanBookmarkAdd, #leftside #spanBookmarkRemove { border-radius: 2px !important; color: #FFF !important; font-size: 14pt !important; font-stretch: condensed; padding: 7px 12px 8px 12px !important; } #leftside #btnBookmarkManager { background: #16A086 !important; } #leftside #spanBookmarkAdd { background: #16A086 !important; } #leftside #spanBookmarkRemove { background: #7E7E7E !important; } #leftside #spanBookmarkAdd #btnAddBookmark, #leftside #spanBookmarkRemove #btnRemoveBookmark { color: #FFF; } .banner p { color: var(--secondary-color); font-size: 14pt !important; font-stretch: condensed; line-height: 18pt !important; } .details a img, div[style="text-align: center"] img, .scrollable .items a img, #subcontent div a img, .tooltip img { border: 1px solid var(--border-color) !important; padding: 0px !important; } #leftside .bigBarContainer { /*** LATEST UPDATE BOX ***/ background: var(--card-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 10px !important; } .barTitle { background: transparent !important; border-radius: 2px !important; padding: 9px 13px 7px 10px !important; margin-bottom: 8px !important; } .barTitle .scrollable_title { color: var(--primary-color); font-size: 18pt !important; font-stretch: condensed !important; font-weight: normal !important; letter-spacing: 0px !important; text-shadow: none !important; } a.prev { background: var(--prev) !important; background-size: 30px auto !important; background-position: center center !important; margin-top: 5px !important; filter: brightness(0) var(--invert) !important; opacity: .5; } a.next { background: var(--next) !important; background-size: 30px auto !important; background-position: center center !important; margin-top: 5px !important; margin-left: -8px !important; filter: brightness(0) var(--invert) !important; opacity: .5; } .navi { font-size: 16pt !important; font-weight: normal !important; text-transform: lowercase; } .arrow-general { display: none !important; } .barContent { background: transparent !important; color: var(--primary-color); font-size: 14pt !important; font-stretch: condensed !important; line-height: 20pt !important; } p[style="text-align: justify;"] { text-align: left !important; } .scrollable { height: 230px !important; } .scrollable .items a { color: #3498DB !important; font-size: 14pt !important; font-stretch: condensed !important; font-weight: normal !important; line-height: 18pt !important; } .scrollable .items a img { margin-bottom: 5px !important; } #tabmenucontainer { /*** MANGALIST BOX ***/ background: #444 !important; width: 100% !important; } #submenu { margin-top: -8px !important; } #tabmenucontainer li a { background: #174C4F !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; font-size: 14pt !important; font-stretch: condensed !important; font-weight: bold !important; padding: 10px 30px 10px 28px !important; text-align: left !important; text-transform: uppercase !important; white-space: nowrap !important; } #tabmenucontainer li a.tabactive { background: var(--card-bg) !important; color: var(--secondary-color); } #leftside #subcontent { background: var(--card-bg) !important; border: none !important; border-radius: 2px; border-top-left-radius: 1px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 10px !important; } #subcontent div div { background: var(--card-bg) !important; } #subcontent div div a, #subcontent div div a span { color: #3498DB; } #subcontent p a { font-size: 14pt !important; font-stretch: condensed !important; } #subcontent span.title { color: var(--primary-color) !important; font-size: 17pt !important; font-stretch: condensed !important; font-weight: normal !important; } img[src*="hot.png"] { background: no-repeat var(--hot) left !important; background-size: cover !important; height: 0px !important; width: 0px !important; padding: 20px 0px 0px 20px !important; margin-bottom: 1px; margin-left: -7px; } img[src*="plus.png"], img[src*="minus.png"], img[src*="Content/images/numbers"] { display: none !important; } div[style="text-align: right; font-size: 16px"] { text-align: center !important; } div[style="text-align: right; font-size: 16px"] a[href="/MangaList/Newest"] { background: #60646D !important; border-radius: 2px !important; color: #FFF !important; font-stretch: condensed !important; font-weight: bold !important; padding: 8px 18px !important; text-transform: uppercase !important; } div[style="text-align: right; font-size: 14px; padding-top: 5px"] a[href="/Status/Ongoing/LatestUpdate"], div[style="text-align: right; font-size: 14px; padding-top: 5px"] a[href="/MangaList/LatestUpdate"] { background: #557780 !important; border-radius: 2px !important; color: #FFF !important; font-stretch: condensed !important; font-style: normal !important; font-weight: bold !important; padding: 8px 18px !important; text-transform: uppercase !important; margin-right: -10px !important; } #rightside .rightBox { /*** RIGHT SIDE BOXES ***/ background: var(--card-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 10px !important; margin-bottom: 12px !important; } #rightside .rightBox .barTitle { color: var(--primary-color); font-size: 18pt !important; font-stretch: condensed !important; font-weight: normal !important; letter-spacing: 0px !important; } div[style="margin-top: -5px; font-weight:bold;"] { font-size: 14pt !important; font-stretch: condensed !important; font-weight: normal !important; line-height: 18pt !important; } #rightside .rightBox:nth-child(7) { display: none; } #rightside .rightBox .barContent a, #rightside .rightBox .barContent a b { color: var(--link-color); font-size: 14pt !important; font-stretch: condensed !important; font-style: italic; font-weight: normal; } img[src*="bullet.png"] { background: no-repeat var(--link) center !important; background-size: cover !important; height: 0px !important; width: 0px !important; padding: 15px 0px 0px 15px !important; filter: brightness(0) var(--invert) !important; margin-top: 5px !important; margin-right: 3px !important; } /* SEARCH ENGINE */ /** DESCRIPTION : change the elements in the search page **/ .listing { margin-top: -40px !important; } #leftside .barTitle { color: var(--primary-color); font-size: 18pt; font-stretch: condensed !important; font-weight: normal !important; letter-spacing: 0px !important; } .listing .head { visibility: hidden !important; } .listing td { background: var(--card-bg) !important; color: var(--primary-color); z-index: 9999 !important; } .listing td a { color: var(--primary-color); font-style: italic; font-weight: normal !important; } .listing td a:hover, .episodeVisited { color: #3498DB !important; } .listing th { color: var(--primary-color); font-stretch: condensed !important; font-weight: normal; } .tooltip { background: var(--body-bg) !important; border-radius: 2px; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; padding: 30px 30px 80px 30px !important; } .tooltip .bigChar { font-size: 18pt !important; font-stretch: condensed !important; font-weight: normal !important; letter-spacing: 0px !important; } .tooltip p { color: var(--secondary-color); font-size: 14pt !important; font-stretch: condensed; line-height: 18pt !important; max-height: 100% !important; overflow: hidden !important; text-overflow: ellipsis !important; } .tooltip div { margin-left: 15px !important; } #formProfile span[style="font-size: 15px; font-weight: bold"], .barContent span[style="font-size: 15px; font-weight: bold"] { font-size: 15pt !important; font-weight: normal !important; } #status, #password, #username, #email, #retypePassword { background: var(--body-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; padding: 5px 6px !important; } .lblAdvanceSearch { color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; } #formAdvanceSearch #genres li { margin-bottom: 10px !important; } #formAdvanceSearch a { background: transparent !important; font-size: 14pt !important; font-stretch: condensed; white-space: nowrap; } #btnReset, #btnSubmit { margin-top: -20px !important; } /* MANGA LIST */ /** DESCRIPTION : change the elements of the manga list page **/ .alphabet { background: transparent !important; color: transparent !important; font-size: 14pt !important; font-stretch: condensed !important; text-align: left !important; margin-top: -10px !important; margin-bottom: 0px !important; } .alphabet a { font-weight: bold; margin-right: -8px !important; } div.pagination ul.pager li { background: transparent !important; border: none !important; color: var(--primary-color) !important; font-weight: bold !important; } div.pagination ul.pager li, div.pagination ul.pager li a { color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed; font-weight: normal; } div.pagination ul.pager li a:hover { border: none !important; background: transparent !important; margin-top: 0px !important; margin-left: 0px !important; } /* MANGA DETAIL */ /** DESCRIPTION : change the elements of the manga details page **/ #leftside .bigChar { color: var(--primary-color) !important; font-size: 17pt !important; font-stretch: condensed; letter-spacing: 0px !important; } .barContent.chapterList { margin-top: 22px !important; } #leftside .bigBarContainer .listing { color: #FFF !important; margin-top: -125px !important; } #leftside div[style="text-align: center"] { position: absolute; margin-top: -138px !important; margin-left: 100px !important; } #leftside div[style="text-align: center"] img { display: none !important; } .listing th { border-bottom: 0px solid #DDD2A4 !important; } div[style="float: left; padding-right: 10px"] { display: none !important; } div[style="display: inline-block; color: #7e7e7e"] { font-size: 14pt !important; font-stretch: condensed !important; margin-top: 15px !important; margin-left: -100px !important; } .line { border-bottom: 1px dotted #7E7E7E !important; } /* READ */ /** DESCRIPTION : tweak the elements in the read page **/ div[style="width: 95%; text-align: center; margin: auto"] { /*** READ CONTAINER ***/ margin-top: 194px !important; } div[style="width: 95%; text-align: center; margin: auto"] div, #containerRoot > div > p { color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; line-height: 22pt !important; } .lbl { visibility: hidden; } #selectChapter, .selectChapter, #selectPage, #selectReadType { background: #3B3F4C !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; font-size: 15pt !important; font-stretch: condensed !important; padding: 10px !important; position: absolute !important; margin-top: -93px !important; } #selectReadType { width: 110px !important; margin-left: 55px; } #selectPage { text-indent: 2px; width: auto !important; margin-left: 30px; } #selectChapter, .selectChapter { width: 20% !important; } .selectChapter { margin-left: 95px; } #selectChapter { margin-left: 150px; } .btnNext, #btnNext { /*** READ NEXT BUTTON ***/ border: 3px solid transparent !important; box-shadow: none !important; filter: brightness(0) var(--invert) !important; height: 22px !important; opacity: .3 !important; padding: 5px !important; position: fixed !important; bottom: 30px !important; right: 30px !important; z-index: 999 !important; visibility: visible !important; } .btnPrevious, #btnPrevious { /*** READ PREVIOUS BUTTON ***/ border: 3px solid transparent !important; box-shadow: none !important; filter: brightness(0) var(--invert) !important; height: 22px !important; opacity: .3 !important; padding: 5px !important; position: fixed !important; bottom: 30px !important; left: 30px !important; z-index: 999 !important; visibility: visible !important; } #btnPrevious:hover, #btnNext:hover { opacity: 1 !important; transition: all .3s ease-in-out !important; } #divImage { /*** READ PICTURES ***/ width: 100% !important; margin-top: -120px !important; margin-bottom: -150px !important; } #imgCurrent, #divImage p img { box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; max-width: 100% !important; } #btnShowComments { /*** READ COMMENT BUTTON ***/ background: #0F595E !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; font-size: 14pt !important; font-stretch: condensed !important; padding: 0px 10px !important; text-shadow: none !important; text-transform: uppercase !important; margin-top: -40px !important; margin-left: 25px !important; } #divComments { margin-top: -20px !important; } #divComments div[style="color: #d5f406; text-align: left"], div[style="color: #d5f406"] { display: block !important; visibility: hidden !important; margin-top: -62px !important; } #divComments div[style="width: 780px; display: inline-block"] { background: var(--card-bg) !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 40px 60px !important; margin-left: -28px !important; } #divComments > div > div { color: var(--secondary-color) !important; font-size: 14pt; font-stretch: condensed; font-weight: bold !important; line-height: 22pt; text-transform: uppercase !important; } div[style="width: 95%; text-align: center; margin: auto"] #divBookmark { /*** READ BOOKMARK BUTTON ***/ display: none; } div[style="text-align: center;"] a[href="#"], div[style="width: 95%; text-align: center; margin: auto"] a[href="#"] { /*** READ BACK TO TOP BUTTON ***/ display: none; } /* BOOKMARK */ /** DESCRIPTION : change the elements in the Bookmark page **/ #divListCategories { font-size: 14pt !important; font-weight: normal !important; margin-bottom: 30px !important; margin-top: -30px !important; } #selectListCategories { background: var(--body-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1); color: var(--primary-color); font-size: 14pt; font-stretch: condensed; padding: 5px 6px !important; } div[style="font-size:11px;position:absolute; right:5px; top: 0px"] { display: none !important; } } @-moz-document url("http://kissmanga.com/Profile") { #leftside, #rightside { margin-top: 0px !important; } #head h1 { border-bottom: 69px solid #2C3E50 !important; } .txtSignUp { background: var(--body-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; padding: 5px 10px !important; } #btnSubmit { background: #1BB568; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 4px !important; text-transform: uppercase !important; } } @-moz-document url("http://kissmanga.com/AdvanceSearch"),regexp("http://kissmanga.com/Search/(AuthorArtist|Manga)") { #head h1 { border-bottom: 69px solid #2C3E50 !important; } .txtSignUp { background: var(--body-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; padding: 5px 10px !important; } } @-moz-document url("http://kissmanga.com/BookmarkList") { #leftside .bigBarContainer .listing { margin-top: -30px !important; } }
data/usercss/158785.user.css
@-moz-document domain("kissmanga.com") { /* COLORS */ /** DESCRIPTION : set the colors **/ :root { --body-bg: #212121 !important; --card-bg: #374047 !important; --border-color: #333 !important; --link-color: #7C9EB7 !important; --primary-color: #FFF !important; --secondary-color: #EBEBEB !important; --invert: invert(1) !important; } /* GENERAL */ /** DESCRIPTION : set main font and background, plus remove some elements **/ * { font-family: "Roboto", "ぼくたちのゴシック2ボールド" !important; } *::-moz-focus-inner { border: 0; } a { color: #3498DB; } #result_box a span, span[style="font-weight: bold; color: #d5f406"] { color: #3498DB !important; font-weight: normal !important; } html { background: var(--body-bg) !important; } body, body > #containerRoot { background: var(--body-bg) !important; overflow-x: hidden !important; } a, a:hover { transition: all 0.3s ease-in-out 0s !important; } a:hover { opacity: .7 !important; } select { -webkit-appearance: none; -moz-appearance: none; text-indent: 0px; text-overflow: ellipsis; white-space: nowrap; } #formVerify * { /*** VERIFY BOX ***/ font-size: 14pt !important; } #adsIfrme7, div[style="float: left; width: 250px; text-align: left; margin-left: 2px"], div[style="text-align: center;"] > div[style="display: inline-table;"], .divCloseBut, #divFloatLeft, #divFloatRight, #divAds2, iframe, img[src="/Content/images/bookmark1.png"], #navsubbar a[href="/Register/Member"] { display: none !important; } #disqus_thread iframe { display: block !important; } #footer { /*** FOOTER ***/ display: none !important; } :root { --avatar: url("https://vignette.wikia.nocookie.net/nichijou/images/e/e4/Anime-hakase-kawaii-nichijou-Favim.com-218145.jpg/revision/latest?cb=20121221073705") !important; --banner: url("http://stuffpoint.com/anime-and-manga/image/322583-anime-and-manga-one-piece-colorful.jpg") !important; --hot: url("https://s7.postimg.cc/52wxo944r/00_FJbu.png") !important; --link: url("http://icon-park.com/imagefiles/link_icon_blue.png") !important; --logo: url("https://s7.postimg.cc/x1r3fm5wp/v_RRZ6_X.png") !important; --next: url("https://s7.postimg.cc/stwb6i9if/Rk0_Cq3.png") !important; --prev: url("https://s7.postimg.cc/j9cojmrw7/tr_Eva_Q.png") !important; --search: url("https://www.freeiconspng.com/uploads/flat-search-find-icon-13.png") !important; } /* HEADER */ /** DESCRIPTION : change the elements of the header/upper part **/ #head h1 { background: no-repeat var(--banner) center !important; background-size: cover !important; border-top: 10px solid #2980b9 !important; border-bottom: 65px solid #2C3E50 !important; height: 200px !important; width: 100% !important; position: absolute !important; top: -30px !important; left: 0px !important; } #head h1 a.logo { background: var(--logo) no-repeat !important; background-size: auto 135px !important; width: 80% !important; padding-bottom: 10px !important; margin-top: 25px !important; margin-left: 20px !important; z-index: 9999 !important; } #navbar { /*** NAVBAR ***/ background: transparent !important; } #navcontainer { display: none; } #navsubbar { /*** SUB-BAR ***/ background: #2C3E50 !important; padding: 20px 0px !important; position: absolute !important; margin-top: 106px !important; } #navsubbar p { color: transparent !important; } #navsubbar p a { font-size: 15pt !important; font-stretch: condensed !important; font-weight: normal !important; line-height: 18pt !important; margin-top: -7px !important; max-width: 25% !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; } #navsubbar p a:nth-of-type(1) { position: absolute !important; left: 16px !important; } #navsubbar p a:nth-of-type(2) { position: absolute !important; left: 165px !important; } #navsubbar p a:nth-of-type(3) { position: absolute !important; left: 325px !important; } #navsubbar p a:nth-of-type(4) { position: absolute !important; left: 450px !important; } #navsubbar p a:nth-of-type(5) { position: absolute !important; left: 555px !important; } #search { /*** SEARCHBAR ***/ position: absolute !important; top: 216px !important; right: 30px !important; z-index: 999 !important; } #search input.text, #selectSearch { background: #404D63 !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; font-size: 15pt !important; font-stretch: condensed !important; line-height: 30px !important; padding-left: 10px; } #selectSearch { height: 35px; width: 150px !important; text-indent: 2px; margin-left: 5px; } #search img { display: none !important; } div[style="margin: 10px 48px 10px 0"] { width: 0px !important; padding: 0px !important; margin-top: -37px !important; margin-left: 380px !important; } div[style="margin: 10px 48px 10px 0"] a { background: no-repeat var(--search) center !important; background-size: 28px auto !important; color: transparent !important; font-size: 11pt !important; font-weight: bold !important; } #result_box { background-color: var(--body-bg) !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .3) !important; opacity: 1; padding: 10px 20px !important; width: 88.7% !important; margin-top: 16px !important; margin-left: -56px !important; } #result_box a { color: var(--primary-color); font-size: 14pt !important; font-stretch: condensed !important; padding: 10px 0px !important; position: static !important; } #result_box a:hover { background: transparent; } .dIa, .bp, #widget_bounds, #plusone, #___plusone_0, #search input.button { display: none !important; } #topHolderBox { /*** ACCOUNT ***/ background-color: transparent !important; color: transparent !important; position: fixed !important; top: 40px !important; right: -45px !important; text-align: left !important; z-index: 9999 !important; } #topHolderBox span { color: transparent !important; } #topHolderBox img { display: none !important; } #aDropDown { background: no-repeat var(--avatar) center !important; background-color: #181818 !important; background-size: cover !important; border: none !important; border-radius: 50% !important; padding: 40px 0px 0px 40px !important; height: 0px !important; width: 0px !important; } #aDropDown small { display: none !important; } #menu_box { background: #2C3E50 !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; position: absolute !important; top: -25px !important; margin-left: -390px !important; } #menu_box a { border: none !important; font-size: 14pt !important; font-stretch: condensed !important; font-weight: normal !important; padding: 0px 5px 5px 5px !important; } #menu_box a:first-child { padding-top: 10px !important; } #menu_box a:last-child { padding-bottom: 10px !important; } #menu_box a:hover { background: transparent !important; opacity: .7 !important; } /* HOME */ /** DESCRIPTION : change/remove the elements in the front page (aka home) **/ #leftside, #rightside { /*** LEFT/RIGHT SIDE ***/ margin-top: 200px !important; } #leftside { /*** LEFT SIDE ***/ margin-left: -20px !important; } #leftside .banner { /*** RANDOM BOX ***/ background: var(--card-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 10px !important; min-height: 250px !important; max-height: 250px !important; margin-bottom: 15px !important; } #leftside .banner .bigChar { color: var(--primary-color) !important; font-size: 18pt !important; font-stretch: condensed; font-weight: normal !important; letter-spacing: 0px !important; text-shadow: none !important; } .info { color: var(--secondary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; text-transform: lowercase !important; } #leftside .dotUnder { background: #508AA8 !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; color: #FFF !important; font-size: 14pt !important; font-stretch: condensed !important; font-weight: normal !important; line-height: 31pt !important; padding: 5px 10px 6px 10px !important; margin-left: 5px; margin-right: -7px; } #leftside #btnBookmarkManager, #leftside #spanBookmarkAdd, #leftside #spanBookmarkRemove { border-radius: 2px !important; color: #FFF !important; font-size: 14pt !important; font-stretch: condensed; padding: 7px 12px 8px 12px !important; } #leftside #btnBookmarkManager { background: #16A086 !important; } #leftside #spanBookmarkAdd { background: #16A086 !important; } #leftside #spanBookmarkRemove { background: #7E7E7E !important; } #leftside #spanBookmarkAdd #btnAddBookmark, #leftside #spanBookmarkRemove #btnRemoveBookmark { color: #FFF; } .banner p { color: var(--secondary-color); font-size: 14pt !important; font-stretch: condensed; line-height: 18pt !important; } .details a img, div[style="text-align: center"] img, .scrollable .items a img, #subcontent div a img, .tooltip img { border: 1px solid var(--border-color) !important; padding: 0px !important; } #leftside .bigBarContainer { /*** LATEST UPDATE BOX ***/ background: var(--card-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 10px !important; } .barTitle { background: transparent !important; border-radius: 2px !important; padding: 9px 13px 7px 10px !important; margin-bottom: 8px !important; } .barTitle .scrollable_title { color: var(--primary-color); font-size: 18pt !important; font-stretch: condensed !important; font-weight: normal !important; letter-spacing: 0px !important; text-shadow: none !important; } a.prev { background: var(--prev) !important; background-size: 30px auto !important; background-position: center center !important; margin-top: 5px !important; filter: brightness(0) var(--invert) !important; opacity: .5; } a.next { background: var(--next) !important; background-size: 30px auto !important; background-position: center center !important; margin-top: 5px !important; margin-left: -8px !important; filter: brightness(0) var(--invert) !important; opacity: .5; } .navi { font-size: 16pt !important; font-weight: normal !important; text-transform: lowercase; } .arrow-general { display: none !important; } .barContent { background: transparent !important; color: var(--primary-color); font-size: 14pt !important; font-stretch: condensed !important; line-height: 20pt !important; } p[style="text-align: justify;"] { text-align: left !important; } .scrollable { height: 230px !important; } .scrollable .items a { color: #3498DB !important; font-size: 14pt !important; font-stretch: condensed !important; font-weight: normal !important; line-height: 18pt !important; } .scrollable .items a img { margin-bottom: 5px !important; } #tabmenucontainer { /*** MANGALIST BOX ***/ background: #444 !important; width: 100% !important; } #submenu { margin-top: -8px !important; } #tabmenucontainer li a { background: #174C4F !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; font-size: 14pt !important; font-stretch: condensed !important; font-weight: bold !important; padding: 10px 30px 10px 28px !important; text-align: left !important; text-transform: uppercase !important; white-space: nowrap !important; } #tabmenucontainer li a.tabactive { background: var(--card-bg) !important; color: var(--secondary-color); } #leftside #subcontent { background: var(--card-bg) !important; border: none !important; border-radius: 2px; border-top-left-radius: 1px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 10px !important; } #subcontent div div { background: var(--card-bg) !important; } #subcontent div div a, #subcontent div div a span { color: #3498DB; } #subcontent p a { font-size: 14pt !important; font-stretch: condensed !important; } #subcontent span.title { color: var(--primary-color) !important; font-size: 17pt !important; font-stretch: condensed !important; font-weight: normal !important; } img[src*="hot.png"] { background: no-repeat var(--hot) left !important; background-size: cover !important; height: 0px !important; width: 0px !important; padding: 20px 0px 0px 20px !important; margin-bottom: 1px; margin-left: -7px; } img[src*="plus.png"], img[src*="minus.png"], img[src*="Content/images/numbers"] { display: none !important; } div[style="text-align: right; font-size: 16px"] { text-align: center !important; } div[style="text-align: right; font-size: 16px"] a[href="/MangaList/Newest"] { background: #60646D !important; border-radius: 2px !important; color: #FFF !important; font-stretch: condensed !important; font-weight: bold !important; padding: 8px 18px !important; text-transform: uppercase !important; } div[style="text-align: right; font-size: 14px; padding-top: 5px"] a[href="/Status/Ongoing/LatestUpdate"], div[style="text-align: right; font-size: 14px; padding-top: 5px"] a[href="/MangaList/LatestUpdate"] { background: #557780 !important; border-radius: 2px !important; color: #FFF !important; font-stretch: condensed !important; font-style: normal !important; font-weight: bold !important; padding: 8px 18px !important; text-transform: uppercase !important; margin-right: -10px !important; } #rightside .rightBox { /*** RIGHT SIDE BOXES ***/ background: var(--card-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 10px !important; margin-bottom: 12px !important; } #rightside .rightBox .barTitle { color: var(--primary-color); font-size: 18pt !important; font-stretch: condensed !important; font-weight: normal !important; letter-spacing: 0px !important; } div[style="margin-top: -5px; font-weight:bold;"] { font-size: 14pt !important; font-stretch: condensed !important; font-weight: normal !important; line-height: 18pt !important; } #rightside .rightBox:nth-child(7) { display: none; } #rightside .rightBox .barContent a, #rightside .rightBox .barContent a b { color: var(--link-color); font-size: 14pt !important; font-stretch: condensed !important; font-style: italic; font-weight: normal; } img[src*="bullet.png"] { background: no-repeat var(--link) center !important; background-size: cover !important; height: 0px !important; width: 0px !important; padding: 15px 0px 0px 15px !important; filter: brightness(0) var(--invert) !important; margin-top: 5px !important; margin-right: 3px !important; } /* SEARCH ENGINE */ /** DESCRIPTION : change the elements in the search page **/ .listing { margin-top: -40px !important; } #leftside .barTitle { color: var(--primary-color); font-size: 18pt; font-stretch: condensed !important; font-weight: normal !important; letter-spacing: 0px !important; } .listing .head { visibility: hidden !important; } .listing td { background: var(--card-bg) !important; color: var(--primary-color); z-index: 9999 !important; } .listing td a { color: var(--primary-color); font-style: italic; font-weight: normal !important; } .listing td a:hover, .episodeVisited { color: #3498DB !important; } .listing th { color: var(--primary-color); font-stretch: condensed !important; font-weight: normal; } .tooltip { background: var(--body-bg) !important; border-radius: 2px; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; padding: 30px 30px 80px 30px !important; } .tooltip .bigChar { font-size: 18pt !important; font-stretch: condensed !important; font-weight: normal !important; letter-spacing: 0px !important; } .tooltip p { color: var(--secondary-color); font-size: 14pt !important; font-stretch: condensed; line-height: 18pt !important; max-height: 100% !important; overflow: hidden !important; text-overflow: ellipsis !important; } .tooltip div { margin-left: 15px !important; } #formProfile span[style="font-size: 15px; font-weight: bold"], .barContent span[style="font-size: 15px; font-weight: bold"] { font-size: 15pt !important; font-weight: normal !important; } #status, #password, #username, #email, #retypePassword { background: var(--body-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; padding: 5px 6px !important; } .lblAdvanceSearch { color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; } #formAdvanceSearch #genres li { margin-bottom: 10px !important; } #formAdvanceSearch a { background: transparent !important; font-size: 14pt !important; font-stretch: condensed; white-space: nowrap; } #btnReset, #btnSubmit { margin-top: -20px !important; } /* MANGA LIST */ /** DESCRIPTION : change the elements of the manga list page **/ .alphabet { background: transparent !important; color: transparent !important; font-size: 14pt !important; font-stretch: condensed !important; text-align: left !important; margin-top: -10px !important; margin-bottom: 0px !important; } .alphabet a { font-weight: bold; margin-right: -8px !important; } div.pagination ul.pager li { background: transparent !important; border: none !important; color: var(--primary-color) !important; font-weight: bold !important; } div.pagination ul.pager li, div.pagination ul.pager li a { color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed; font-weight: normal; } div.pagination ul.pager li a:hover { border: none !important; background: transparent !important; margin-top: 0px !important; margin-left: 0px !important; } /* MANGA DETAIL */ /** DESCRIPTION : change the elements of the manga details page **/ #leftside .bigChar { color: var(--primary-color) !important; font-size: 17pt !important; font-stretch: condensed; letter-spacing: 0px !important; } .barContent.chapterList { margin-top: 22px !important; } #leftside .bigBarContainer .listing { color: #FFF !important; margin-top: -125px !important; } #leftside div[style="text-align: center"] { position: absolute; margin-top: -138px !important; margin-left: 100px !important; } #leftside div[style="text-align: center"] img { display: none !important; } .listing th { border-bottom: 0px solid #DDD2A4 !important; } div[style="float: left; padding-right: 10px"] { display: none !important; } div[style="display: inline-block; color: #7e7e7e"] { font-size: 14pt !important; font-stretch: condensed !important; margin-top: 15px !important; margin-left: -100px !important; } .line { border-bottom: 1px dotted #7E7E7E !important; } /* READ */ /** DESCRIPTION : tweak the elements in the read page **/ div[style="width: 95%; text-align: center; margin: auto"] { /*** READ CONTAINER ***/ margin-top: 194px !important; } div[style="width: 95%; text-align: center; margin: auto"] div, #containerRoot > div > p { color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; line-height: 22pt !important; } .lbl { visibility: hidden; } #selectChapter, .selectChapter, #selectPage, #selectReadType { background: #3B3F4C !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; font-size: 15pt !important; font-stretch: condensed !important; padding: 10px !important; position: absolute !important; margin-top: -93px !important; } #selectReadType { width: 110px !important; margin-left: 55px; } #selectPage { text-indent: 2px; width: auto !important; margin-left: 30px; } #selectChapter, .selectChapter { width: 20% !important; } .selectChapter { margin-left: 95px; } #selectChapter { margin-left: 150px; } .btnNext, #btnNext { /*** READ NEXT BUTTON ***/ border: 3px solid transparent !important; box-shadow: none !important; filter: brightness(0) var(--invert) !important; height: 22px !important; opacity: .3 !important; padding: 5px !important; position: fixed !important; bottom: 30px !important; right: 30px !important; z-index: 999 !important; visibility: visible !important; } .btnPrevious, #btnPrevious { /*** READ PREVIOUS BUTTON ***/ border: 3px solid transparent !important; box-shadow: none !important; filter: brightness(0) var(--invert) !important; height: 22px !important; opacity: .3 !important; padding: 5px !important; position: fixed !important; bottom: 30px !important; left: 30px !important; z-index: 999 !important; visibility: visible !important; } #btnPrevious:hover, #btnNext:hover { opacity: 1 !important; transition: all .3s ease-in-out !important; } #divImage { /*** READ PICTURES ***/ width: 100% !important; margin-top: -120px !important; margin-bottom: -150px !important; } #imgCurrent, #divImage p img { box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; max-width: 100% !important; } #btnShowComments { /*** READ COMMENT BUTTON ***/ background: #0F595E !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; font-size: 14pt !important; font-stretch: condensed !important; padding: 0px 10px !important; text-shadow: none !important; text-transform: uppercase !important; margin-top: -40px !important; margin-left: 25px !important; } #divComments { margin-top: -20px !important; } #divComments div[style="color: #d5f406; text-align: left"], div[style="color: #d5f406"] { display: block !important; visibility: hidden !important; margin-top: -62px !important; } #divComments div[style="width: 780px; display: inline-block"] { background: var(--card-bg) !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 40px 60px !important; margin-left: -28px !important; } #divComments > div > div { color: var(--secondary-color) !important; font-size: 14pt; font-stretch: condensed; font-weight: bold !important; line-height: 22pt; text-transform: uppercase !important; } div[style="width: 95%; text-align: center; margin: auto"] #divBookmark { /*** READ BOOKMARK BUTTON ***/ display: none; } div[style="text-align: center;"] a[href="#"], div[style="width: 95%; text-align: center; margin: auto"] a[href="#"] { /*** READ BACK TO TOP BUTTON ***/ display: none; } /* BOOKMARK */ /** DESCRIPTION : change the elements in the Bookmark page **/ #divListCategories { font-size: 14pt !important; font-weight: normal !important; margin-bottom: 30px !important; margin-top: -30px !important; } #selectListCategories { background: var(--body-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1); color: var(--primary-color); font-size: 14pt; font-stretch: condensed; padding: 5px 6px !important; } div[style="font-size:11px;position:absolute; right:5px; top: 0px"] { display: none !important; } } @-moz-document url("http://kissmanga.com/Profile") { #leftside, #rightside { margin-top: 0px !important; } #head h1 { border-bottom: 69px solid #2C3E50 !important; } .txtSignUp { background: var(--body-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; padding: 5px 10px !important; } #btnSubmit { background: #1BB568; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .2) !important; padding: 4px !important; text-transform: uppercase !important; } } @-moz-document url("http://kissmanga.com/AdvanceSearch"),regexp("http://kissmanga.com/Search/(AuthorArtist|Manga)") { #head h1 { border-bottom: 69px solid #2C3E50 !important; } .txtSignUp { background: var(--body-bg) !important; border: none !important; border-radius: 2px !important; box-shadow: 0px 1px 2px rgba(0, 0, 0, .1) !important; color: var(--primary-color) !important; font-size: 14pt !important; font-stretch: condensed !important; padding: 5px 10px !important; } } @-moz-document url("http://kissmanga.com/BookmarkList") { #leftside .bigBarContainer .listing { margin-top: -30px !important; } }
0.389082
0.060059
* { box-sizing: border-box; margin: 0; padding: 0; } .wrapper-inner { margin: 0 auto; padding-top: 10px; padding-bottom: 100px; } body { background: linear-gradient(180deg, #00988E 0%, #FFFFFF 100%); } a { text-decoration: none; } h1 { margin-bottom: 10px; font-family: "Roboto"; font-style: normal; font-weight: bold; font-size: 48px; color: #FFFFFF; text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); text-align: center; } /* header { margin: 48px 0px 18px 265px } */ button { cursor: pointer; width: 300px; height: 75px; background-color: #F2BD35; border-radius: 50px; font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 24px; text-align: center; color: #000000; /* margin-top: 63px; */ } .subhead { font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 36px; text-align: left; /* color: rgba(0, 0, 0, 0.4); */ } .hidden { display: none; } .show { display: block; } /* === LOGO === */ .logo { display: flex; justify-content: left; align-items: center; width: 121px; height: 121px; } .logo-inner { padding-left: 150px; padding-top: 24px; } .icon { background: rgba(0, 0, 0, 0); } /* === / LOGO === */ /* === Places === */ .places { display: flex; min-height: 923px; width: auto; } .places_choose { padding: 30px 38px 38px 38px; min-width: 100%; min-height: 634px; background-color: #78F398; border-radius: 20px; } .places_choose_board { display: flex; justify-content: center; align-content: center; padding-top: 100px; width: 1376px; } .places_choose_board_cabin { /* width: auto; */ width: 100%; height: 279px; background: #FFFFFF; border: 1px solid #000000; box-sizing: border-box; border-radius: 20px; margin: 0 25px; } .places_choose_board_cabin .places_choose_board_cabin_first { /* width: 1320; */ width: 100%; height: 99px; background: #FFFFFF; border-radius: 20px; } .places_choose_board_cabin .places_choose_board_cabin_second { /* width: 1320; */ width: 100%; height: 99px; margin-top: 81px; background: #FFFFFF; border-radius: 20px; } .places_choose_board_cabin_first_top, .places_choose_board_cabin_first_bottom { display: flex; /* width: 1376px; */ width: 100%; height: 50px; } .place { width: 16%; height: 100%; border: 2px solid #000000; background: #FFFFFF; text-align: center; font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 19px; padding: 7px; } .places_choose_price { /* display: flex; */ justify-content: space-around; align-content: center; margin-top: 53px; font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 36px; line-height: 42px; text-align: center; color: rgba(0, 0, 0, 0.5); } #top_left_radius { border-radius: 20px 0 0 0; } #bottom_left_radius { border-radius: 0 0 0 20px; } #top_right_radius { border-radius: 0 20px 0 0; } #bottom_right_radius { border-radius: 0 0 20px 0; } .place_conditon { display: flex; justify-content: space-around; height: 33px; margin-top: 40px; } .place_conditon_free, .place_conditon_selected, .place_conditon_occupied { display: flex; } .white { background: #FFFFFF; } .red { background: #D83600; } .grey { background: #B5B5B5; } .place_conditon_blk { width: 33px; height: 33px; border-radius: 5px; border-color: black 1px; border-style: solid; } .place_conditon_text { margin-left: 40px; font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 30px; line-height: 35px; color: #FFFFFF; } .hidden_block_condition { display: none; } .hidden_block_free, .hidden_block_selected, .hidden_block_occupied { display: flex; flex-wrap: wrap; } .hidden_block { width: 20px; height: 20px; border-radius: 5px; border-color: black 1px; border-style: solid; } .hidden_block_text { margin: 0 10px; } .places_choose_board:hover .hidden_block_condition { display: flex; justify-content: space-around; align-content: center; position: absolute; margin-top: 125px; width: 50%; z-index: 9999; min-height: 15px; } /* === / Places === */ /* === Contact Information === */ .contact_information { display: flex; min-height: 778px; } .ticket_information { padding: 30px 34px 26px 34px; width: auto; min-height: 248px; background-color: #78F398; border-radius: 20px; } .ticket_information_blk_date-time { display: flex; width: 100%; margin-top: 15px; } .ticket_information_blk_time { width: 46.6%; } .ticket_information_blk_date { width: 46.6%; } .ticket_information_blk_city-duration { display: flex; width: 100%; margin-top: 20px; } .airports { width: 46.6%; display: flex; } .departure, .arrival { font-size: 24px; line-height: 30px; font-weight: 700; } .plane { width: 37%; } .plane_img { position: absolute; margin-top: -18px; margin-left: 69px; } .plane img { width: 12%; } .plane .stick { width: 100%; height: 3px; border-radius: 16px; transform: translateY(-50%); background: #7271728a; margin-top: 15px; } .time_of_flight { width: 27.9%; font-size: 14px; line-height: 28px; } .company { width: 25.7%; } .company img { width: 54%; } .ticket_information_blk_addition { display: flex; } .ticket_information_blk_addition-name { display: flex; width: 27.6%; justify-content: space-between; } .ticket_information_blk_addition-race { width: 57%; display: flex; justify-content: right; } /* .ticket_information_blk_addition_price-place { margin-top: 15px; display: flex; } .num_place { margin-left: 10%; } */ .tariff_information_blk { padding: 30px 34px 26px 34px; width: auto; min-height: 248px; background-color: #78F398; border-radius: 20px; margin-top: 50px; } .tariff_information_blk .subhead + div { font-size: 20px; } .tariff_text { font-size: 20px; color: rgba(0, 0, 0, 0.4); } .tariff_information_blk-price-place { display: flex; /* justify-content: space-around; */ margin-top: 4%; } .num_price, .num_place { font-size: 20px; font-weight: 600px; } .num_price span, .num_place span{ font-size: 30px; font-weight: 600; line-height: 34px; margin-left: 10px; } .num_place { margin-left: 10%; } .contact_information_reg { padding: 30px 34px 26px 34px; width: auto; min-height: 652px; background-color: #78F398; border-radius: 20px; margin-top: 50px; } #form { margin-top: 33px; width: 100%; } .contact_information_reg_fields_row { display: flex; justify-content: space-between; width: 100%; height: 100px; } .field { display: flex; align-items: center; justify-content: center; width: 34%; height: 100%; } .field input { width: 100%; height: 100%; padding: 15px; text-align: center; font-size: x-large; border: 1px solid rgba(0, 0, 0, 0.35); } .contact_information_reg_btn { display: flex; justify-content: center; padding-top: 30px; } .contact_information_reg_fields_two { display: none; } .contact_information_reg_fields_one { display: none; } /* === Contact Information === */ /* === Payment Methods === */ .payment_methods { display: flex; min-height: 207px; /* padding: 176px 0 240px 0 */ margin-top: 200px; margin-bottom: 175px; } .payment_methods_btn { display: flex; justify-content: center; align-content: center; margin-top: 25px; } .payment_methods_choose { position: relative; padding: 21px 61px; width: 1200px; height: 202px; background-color: #78F398; border-radius: 20px; display: flex; justify-content: space-between; } .card, .book, .qr_code { width: 266.45px; height: 157.56px; background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.4); border-radius: 20px; text-align: center; padding-top: 24px; } .text { font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 24px; line-height: 28px; color: rgba(0, 0, 0, 0.4); } .payment_methods_for_card { position: absolute; width: 25%; height: 234px; background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.4); border-radius: 5px; margin-top: 130px; padding: 28px 38px 46px 29px; } .payment_methods_for_card input { background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.4); border-radius: 5px; } .payment_methods_for_card .num_card_input { width: 370px; height: 52px; } .num_card, .year, .cvv { display: flex; justify-content: center; align-content: center; } .payment_methods_for_card .cvv_input, .year_input { width: 109px; height: 49px; } .payment_methods_for_card .year { margin-left: 48px; } .wrapper_for_cvv-year { display: flex; margin-top: 59px; } /* === Payment Methods === */ /* === FORM === */ .contact_info { margin-bottom: 30px; } .form_info_blk{ display: flex; width: 100%; margin: 19px 10px 0 -10px; } .pasengers_data_sex { width: 80%; margin-top: 30px; display: flex; } .pasengers_sex { margin-left: 12px; } .pasengers_data_sex .form_info_blk { width: 100%; } .form_info_blk_data { width: 50%; margin-left: 12px; } .date { width: 10%; } .data_sex { display: block; } .contact label { display: block; margin-bottom: 6px; font-size: 18px; font-weight: 400px; line-height: 18px; color: #333333; margin-bottom: 19px; } .form_input, .low { display: flex; justify-content: space-between; align-items: center; background-color: #FAFBFC; border-radius: 8px; border: 1px solid #DDE3EB; border-style: solid; } .pasengers_data .form_info_blk_data { width: auto; } .low { width: 76px; } .low input { flex-shrink: 1; width: 100%; height: 100%; line-height: normal; border: none; min-height: 38px; font-family: inherit; opacity: 1; padding-left: 11px; padding-right: 11px; font-size: 16px; color: #333333; background-color: transparent; border-radius: 8px } .form_input input { flex-shrink: 1; width: 100%; height: 100%; line-height: normal; border: none; min-height: 38px; font-family: inherit; opacity: 1; padding-left: 11px; padding-right: 11px; font-size: 16px; color: #333333; background-color: transparent; border-radius: 8px; } .radio { display: flex; position: relative; justify-content: stretch; align-items: stretch; overflow: hidden; height: 40px; padding: 4px; border-radius: 8px; box-shadow: inset 0 0 0 1px #dde3eb; background: #FAFBFC; margin-top: 20px; } input[type="radio"]:checked ~ .radio_text { color: #333333; background-color: #FFFFFF; font-weight: 600; box-shadow: 0px 1px 3px rgb(98 112 139 / 20%); } .radio_check input { opacity: 0; position: absolute; z-index: -1; } .radio_text { width: 130px; font-size: 16px; font-weight: 400; line-height: 22px; padding: 9px 14px 9px 14px; cursor: pointer; text-align: center; height: 100%; color: #7D89A1; border-radius: 4px; display: flex; align-items: center; justify-content: center; } .mounth_container { margin: 3px 0 0; width: 19%; padding: 3px 0; box-shadow: 0px 8px 15px rgb(98 112 139 / 15%); border-radius: 4px; overflow: hidden; background: #FFFFFF; position: absolute; } .mounth { display: flex; justify-content: center; align-content: center; padding: 10px 0; } .active { background-color:aquamarine; } .passegers_for_book p { font-size: 20px; font-weight: 600; line-height: 22px; color: rgba(0, 0, 0, 0.4); } .contact_info p { font-size: 20px; font-weight: 600; line-height: 22px; color: rgba(0, 0, 0, 0.4); } .ticket_information p { font-size: 20px; font-weight: 600; line-height: 22px; color: rgba(0, 0, 0, 0.4); } /* === /FORM === */ @media (max-width: 1440px) { .places_choose_board { width: 950px; } } @media (max-width: 1260px) { .payment_methods_choose { width: 1070px; } } @media (max-width: 1130px) { .contact_information { display: block; } .contact_information_reg{ border-radius: 0; } .places_choose_board { width: 900px; } .payment_methods_choose { width: 970px; } .payment_methods_choose { width: 970px; } .card, .book, .qr_code { width: 229.45px; } } @media (max-width: 960px) { .places { display: block; } .places_choose_board { padding-top: 40px; width: 100%; } .payment_methods_choose { width: 700px; } .places_choose { border-radius: 0; } button { width: 200px; } label { font-size: 25px; } .card, .book, .qr_code { width: 150.45px; } .hidden_condition { display: none; } .payment_methods_choose .text, .contact_information_reg_fields_one .field, .sex{ font-size: medium; } } @media (max-width: 832px) { .places_choose_board_cabin { width: 832px; } } @media (max-width: 760px) { .payment_methods_choose { width: 623px; } .hidden_logo { display: none; } .payment_methods { margin-top: 0px; } .places_choose_board_cabin { width: 400px; overflow-x: scroll; overflow-y: hidden; /* white-space: nowrap; */ } .places_choose_price_number { font-size: 27px; } } @media (max-width: 680px) { .places_choose_board_cabin { margin: 0; } .place_conditon_text { font-size: 17px; } label { font-size: 20px; } .payment_methods_choose { flex-direction: column; align-items: center; justify-content: space-around; width: 50%; height: auto; padding: 21px 61px; margin: 0 auto; background-color: #78F398; border-radius: 20px; } .card, .book { margin-bottom: 20px; } } @media (max-width: 600px) { .places_choose_price_number { font-size: 25px; } label { font-size: 17px; } .contact_information_reg_fields_two { display: block; } .contact_information_reg_fields_two .contact_information_reg_fields_row .field, .sex { width: 50%; } .contact_information_reg_fields { display: none; } } @media (max-width: 425px) { .contact_information_reg_fields_one { display: block; } .contact_information_reg_fields_two { display: none; } .contact_information_reg_fields_one .contact_information_reg_fields_row .field,.sex { width: 100%; } .hidden_block_text { font-size: 18px; } h1 { font-size: 26px; } .subhead { font-size: 30px; } .place_conditon_free_green, .place_conditon_free_red, .place_conditon_free_grey { width: 15px; height: 15px; } .places_choose { padding: 38px 7px 38px 7px; } .places_choose_price { display: block; } .card, .book, .qr_code { width: 104.45px; } .payment_methods_choose .text{ font-size: small; } } @media (max-width: 316px) { .hidden_block_green, .hidden_block_red, .hidden_block_grey { width: 15px; height: 15px; } .hidden_block_text { font-size: 12px; } } @media (max-width: 800px) { div.logo, div.logo > img { width: 80px; height: 80px; } header { margin: 30px; } } section.payment_methods { margin-top: 20px; } div.style-title[title]:hover::after { content: attr(title); position: absolute; top: -100%; left: 0; background-color: red; }
src/css/book.css
* { box-sizing: border-box; margin: 0; padding: 0; } .wrapper-inner { margin: 0 auto; padding-top: 10px; padding-bottom: 100px; } body { background: linear-gradient(180deg, #00988E 0%, #FFFFFF 100%); } a { text-decoration: none; } h1 { margin-bottom: 10px; font-family: "Roboto"; font-style: normal; font-weight: bold; font-size: 48px; color: #FFFFFF; text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); text-align: center; } /* header { margin: 48px 0px 18px 265px } */ button { cursor: pointer; width: 300px; height: 75px; background-color: #F2BD35; border-radius: 50px; font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 24px; text-align: center; color: #000000; /* margin-top: 63px; */ } .subhead { font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 36px; text-align: left; /* color: rgba(0, 0, 0, 0.4); */ } .hidden { display: none; } .show { display: block; } /* === LOGO === */ .logo { display: flex; justify-content: left; align-items: center; width: 121px; height: 121px; } .logo-inner { padding-left: 150px; padding-top: 24px; } .icon { background: rgba(0, 0, 0, 0); } /* === / LOGO === */ /* === Places === */ .places { display: flex; min-height: 923px; width: auto; } .places_choose { padding: 30px 38px 38px 38px; min-width: 100%; min-height: 634px; background-color: #78F398; border-radius: 20px; } .places_choose_board { display: flex; justify-content: center; align-content: center; padding-top: 100px; width: 1376px; } .places_choose_board_cabin { /* width: auto; */ width: 100%; height: 279px; background: #FFFFFF; border: 1px solid #000000; box-sizing: border-box; border-radius: 20px; margin: 0 25px; } .places_choose_board_cabin .places_choose_board_cabin_first { /* width: 1320; */ width: 100%; height: 99px; background: #FFFFFF; border-radius: 20px; } .places_choose_board_cabin .places_choose_board_cabin_second { /* width: 1320; */ width: 100%; height: 99px; margin-top: 81px; background: #FFFFFF; border-radius: 20px; } .places_choose_board_cabin_first_top, .places_choose_board_cabin_first_bottom { display: flex; /* width: 1376px; */ width: 100%; height: 50px; } .place { width: 16%; height: 100%; border: 2px solid #000000; background: #FFFFFF; text-align: center; font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 19px; padding: 7px; } .places_choose_price { /* display: flex; */ justify-content: space-around; align-content: center; margin-top: 53px; font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 36px; line-height: 42px; text-align: center; color: rgba(0, 0, 0, 0.5); } #top_left_radius { border-radius: 20px 0 0 0; } #bottom_left_radius { border-radius: 0 0 0 20px; } #top_right_radius { border-radius: 0 20px 0 0; } #bottom_right_radius { border-radius: 0 0 20px 0; } .place_conditon { display: flex; justify-content: space-around; height: 33px; margin-top: 40px; } .place_conditon_free, .place_conditon_selected, .place_conditon_occupied { display: flex; } .white { background: #FFFFFF; } .red { background: #D83600; } .grey { background: #B5B5B5; } .place_conditon_blk { width: 33px; height: 33px; border-radius: 5px; border-color: black 1px; border-style: solid; } .place_conditon_text { margin-left: 40px; font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 30px; line-height: 35px; color: #FFFFFF; } .hidden_block_condition { display: none; } .hidden_block_free, .hidden_block_selected, .hidden_block_occupied { display: flex; flex-wrap: wrap; } .hidden_block { width: 20px; height: 20px; border-radius: 5px; border-color: black 1px; border-style: solid; } .hidden_block_text { margin: 0 10px; } .places_choose_board:hover .hidden_block_condition { display: flex; justify-content: space-around; align-content: center; position: absolute; margin-top: 125px; width: 50%; z-index: 9999; min-height: 15px; } /* === / Places === */ /* === Contact Information === */ .contact_information { display: flex; min-height: 778px; } .ticket_information { padding: 30px 34px 26px 34px; width: auto; min-height: 248px; background-color: #78F398; border-radius: 20px; } .ticket_information_blk_date-time { display: flex; width: 100%; margin-top: 15px; } .ticket_information_blk_time { width: 46.6%; } .ticket_information_blk_date { width: 46.6%; } .ticket_information_blk_city-duration { display: flex; width: 100%; margin-top: 20px; } .airports { width: 46.6%; display: flex; } .departure, .arrival { font-size: 24px; line-height: 30px; font-weight: 700; } .plane { width: 37%; } .plane_img { position: absolute; margin-top: -18px; margin-left: 69px; } .plane img { width: 12%; } .plane .stick { width: 100%; height: 3px; border-radius: 16px; transform: translateY(-50%); background: #7271728a; margin-top: 15px; } .time_of_flight { width: 27.9%; font-size: 14px; line-height: 28px; } .company { width: 25.7%; } .company img { width: 54%; } .ticket_information_blk_addition { display: flex; } .ticket_information_blk_addition-name { display: flex; width: 27.6%; justify-content: space-between; } .ticket_information_blk_addition-race { width: 57%; display: flex; justify-content: right; } /* .ticket_information_blk_addition_price-place { margin-top: 15px; display: flex; } .num_place { margin-left: 10%; } */ .tariff_information_blk { padding: 30px 34px 26px 34px; width: auto; min-height: 248px; background-color: #78F398; border-radius: 20px; margin-top: 50px; } .tariff_information_blk .subhead + div { font-size: 20px; } .tariff_text { font-size: 20px; color: rgba(0, 0, 0, 0.4); } .tariff_information_blk-price-place { display: flex; /* justify-content: space-around; */ margin-top: 4%; } .num_price, .num_place { font-size: 20px; font-weight: 600px; } .num_price span, .num_place span{ font-size: 30px; font-weight: 600; line-height: 34px; margin-left: 10px; } .num_place { margin-left: 10%; } .contact_information_reg { padding: 30px 34px 26px 34px; width: auto; min-height: 652px; background-color: #78F398; border-radius: 20px; margin-top: 50px; } #form { margin-top: 33px; width: 100%; } .contact_information_reg_fields_row { display: flex; justify-content: space-between; width: 100%; height: 100px; } .field { display: flex; align-items: center; justify-content: center; width: 34%; height: 100%; } .field input { width: 100%; height: 100%; padding: 15px; text-align: center; font-size: x-large; border: 1px solid rgba(0, 0, 0, 0.35); } .contact_information_reg_btn { display: flex; justify-content: center; padding-top: 30px; } .contact_information_reg_fields_two { display: none; } .contact_information_reg_fields_one { display: none; } /* === Contact Information === */ /* === Payment Methods === */ .payment_methods { display: flex; min-height: 207px; /* padding: 176px 0 240px 0 */ margin-top: 200px; margin-bottom: 175px; } .payment_methods_btn { display: flex; justify-content: center; align-content: center; margin-top: 25px; } .payment_methods_choose { position: relative; padding: 21px 61px; width: 1200px; height: 202px; background-color: #78F398; border-radius: 20px; display: flex; justify-content: space-between; } .card, .book, .qr_code { width: 266.45px; height: 157.56px; background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.4); border-radius: 20px; text-align: center; padding-top: 24px; } .text { font-family: "Roboto"; font-style: normal; font-weight: normal; font-size: 24px; line-height: 28px; color: rgba(0, 0, 0, 0.4); } .payment_methods_for_card { position: absolute; width: 25%; height: 234px; background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.4); border-radius: 5px; margin-top: 130px; padding: 28px 38px 46px 29px; } .payment_methods_for_card input { background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.4); border-radius: 5px; } .payment_methods_for_card .num_card_input { width: 370px; height: 52px; } .num_card, .year, .cvv { display: flex; justify-content: center; align-content: center; } .payment_methods_for_card .cvv_input, .year_input { width: 109px; height: 49px; } .payment_methods_for_card .year { margin-left: 48px; } .wrapper_for_cvv-year { display: flex; margin-top: 59px; } /* === Payment Methods === */ /* === FORM === */ .contact_info { margin-bottom: 30px; } .form_info_blk{ display: flex; width: 100%; margin: 19px 10px 0 -10px; } .pasengers_data_sex { width: 80%; margin-top: 30px; display: flex; } .pasengers_sex { margin-left: 12px; } .pasengers_data_sex .form_info_blk { width: 100%; } .form_info_blk_data { width: 50%; margin-left: 12px; } .date { width: 10%; } .data_sex { display: block; } .contact label { display: block; margin-bottom: 6px; font-size: 18px; font-weight: 400px; line-height: 18px; color: #333333; margin-bottom: 19px; } .form_input, .low { display: flex; justify-content: space-between; align-items: center; background-color: #FAFBFC; border-radius: 8px; border: 1px solid #DDE3EB; border-style: solid; } .pasengers_data .form_info_blk_data { width: auto; } .low { width: 76px; } .low input { flex-shrink: 1; width: 100%; height: 100%; line-height: normal; border: none; min-height: 38px; font-family: inherit; opacity: 1; padding-left: 11px; padding-right: 11px; font-size: 16px; color: #333333; background-color: transparent; border-radius: 8px } .form_input input { flex-shrink: 1; width: 100%; height: 100%; line-height: normal; border: none; min-height: 38px; font-family: inherit; opacity: 1; padding-left: 11px; padding-right: 11px; font-size: 16px; color: #333333; background-color: transparent; border-radius: 8px; } .radio { display: flex; position: relative; justify-content: stretch; align-items: stretch; overflow: hidden; height: 40px; padding: 4px; border-radius: 8px; box-shadow: inset 0 0 0 1px #dde3eb; background: #FAFBFC; margin-top: 20px; } input[type="radio"]:checked ~ .radio_text { color: #333333; background-color: #FFFFFF; font-weight: 600; box-shadow: 0px 1px 3px rgb(98 112 139 / 20%); } .radio_check input { opacity: 0; position: absolute; z-index: -1; } .radio_text { width: 130px; font-size: 16px; font-weight: 400; line-height: 22px; padding: 9px 14px 9px 14px; cursor: pointer; text-align: center; height: 100%; color: #7D89A1; border-radius: 4px; display: flex; align-items: center; justify-content: center; } .mounth_container { margin: 3px 0 0; width: 19%; padding: 3px 0; box-shadow: 0px 8px 15px rgb(98 112 139 / 15%); border-radius: 4px; overflow: hidden; background: #FFFFFF; position: absolute; } .mounth { display: flex; justify-content: center; align-content: center; padding: 10px 0; } .active { background-color:aquamarine; } .passegers_for_book p { font-size: 20px; font-weight: 600; line-height: 22px; color: rgba(0, 0, 0, 0.4); } .contact_info p { font-size: 20px; font-weight: 600; line-height: 22px; color: rgba(0, 0, 0, 0.4); } .ticket_information p { font-size: 20px; font-weight: 600; line-height: 22px; color: rgba(0, 0, 0, 0.4); } /* === /FORM === */ @media (max-width: 1440px) { .places_choose_board { width: 950px; } } @media (max-width: 1260px) { .payment_methods_choose { width: 1070px; } } @media (max-width: 1130px) { .contact_information { display: block; } .contact_information_reg{ border-radius: 0; } .places_choose_board { width: 900px; } .payment_methods_choose { width: 970px; } .payment_methods_choose { width: 970px; } .card, .book, .qr_code { width: 229.45px; } } @media (max-width: 960px) { .places { display: block; } .places_choose_board { padding-top: 40px; width: 100%; } .payment_methods_choose { width: 700px; } .places_choose { border-radius: 0; } button { width: 200px; } label { font-size: 25px; } .card, .book, .qr_code { width: 150.45px; } .hidden_condition { display: none; } .payment_methods_choose .text, .contact_information_reg_fields_one .field, .sex{ font-size: medium; } } @media (max-width: 832px) { .places_choose_board_cabin { width: 832px; } } @media (max-width: 760px) { .payment_methods_choose { width: 623px; } .hidden_logo { display: none; } .payment_methods { margin-top: 0px; } .places_choose_board_cabin { width: 400px; overflow-x: scroll; overflow-y: hidden; /* white-space: nowrap; */ } .places_choose_price_number { font-size: 27px; } } @media (max-width: 680px) { .places_choose_board_cabin { margin: 0; } .place_conditon_text { font-size: 17px; } label { font-size: 20px; } .payment_methods_choose { flex-direction: column; align-items: center; justify-content: space-around; width: 50%; height: auto; padding: 21px 61px; margin: 0 auto; background-color: #78F398; border-radius: 20px; } .card, .book { margin-bottom: 20px; } } @media (max-width: 600px) { .places_choose_price_number { font-size: 25px; } label { font-size: 17px; } .contact_information_reg_fields_two { display: block; } .contact_information_reg_fields_two .contact_information_reg_fields_row .field, .sex { width: 50%; } .contact_information_reg_fields { display: none; } } @media (max-width: 425px) { .contact_information_reg_fields_one { display: block; } .contact_information_reg_fields_two { display: none; } .contact_information_reg_fields_one .contact_information_reg_fields_row .field,.sex { width: 100%; } .hidden_block_text { font-size: 18px; } h1 { font-size: 26px; } .subhead { font-size: 30px; } .place_conditon_free_green, .place_conditon_free_red, .place_conditon_free_grey { width: 15px; height: 15px; } .places_choose { padding: 38px 7px 38px 7px; } .places_choose_price { display: block; } .card, .book, .qr_code { width: 104.45px; } .payment_methods_choose .text{ font-size: small; } } @media (max-width: 316px) { .hidden_block_green, .hidden_block_red, .hidden_block_grey { width: 15px; height: 15px; } .hidden_block_text { font-size: 12px; } } @media (max-width: 800px) { div.logo, div.logo > img { width: 80px; height: 80px; } header { margin: 30px; } } section.payment_methods { margin-top: 20px; } div.style-title[title]:hover::after { content: attr(title); position: absolute; top: -100%; left: 0; background-color: red; }
0.395835
0.105073
html, body { margin: 0; overflow: hidden; font-family: Arial, 'sans-serif'; } .webapp { display: flex; flex-direction: column; height: 100%; width: 100%; overflow: hidden; } .webapp-upper { /* overflow: hidden; */ flex-wrap: wrap; display: flex; width: 100%; } .webapp-lower { flex: 1; overflow: hidden; display: flex; width: 100%; flex-direction: column; } .webapp-header-bar { width: 100%; padding: 8px 12px; background-color: #eee; font-size: 13px; border-bottom: 1px solid #aaa; box-sizing: border-box; display: flex; position: relative; } .webapp-video-player-pane { flex: 2; max-width: 640px; background-color: #eee; max-height: calc(100vh - 100px); } .webapp-video-player-pane .video-area { position: relative; max-width: 100vw; box-sizing: border-box; overflow: hidden; display: flex; align-items: center; justify-content: center; } .webapp-video-player-pane.video-scale-auto { display: flex; flex-direction: column; } .webapp-video-player-pane.video-scale-auto .video-area { width: 100%; flex: 1; } .webapp-video-player-pane.video-scale-auto .video-area-wrapper { flex: 1; } .webapp-video-player-pane.video-scale-auto .video-wrapper-inner { flex: 1; } .video-wrapper-inner { position: relative; } .webapp-video-player-pane:not(.video-scale-auto) .video-wrapper-inner { } .webapp-video-player-pane:not(.video-scale-auto) .aspect { padding-top: 0 !important; } .webapp-video-player-pane.video-disabled .video-area { display: none !important; } .webapp-video-player-pane .video-area video { width: 100%; height: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; } .webapp-video-player-pane .video-area .subtitle-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; } .subtitle-overlay .subtitle { width: 100%; box-sizing: border-box; } .subtitle-overlay .subtitle-line { position: relative; display: inline-block; } .subtitle-overlay .subtitle-line-text { } .subtitle-overlay .subtitle-line-outline { position: absolute; z-index: -1; opacity: 0; width: 100%; } .subtitle-overlay .subtitle-line-shadow { position: absolute; z-index: -2; opacity: 0; width: 100%; } .video-seek-bar { padding: 10px; background-color: #eee; position: relative; user-select: none; } .video-seek-track { height: 10px; border-radius: 3px; background-color: #aaa; position: relative; } .video-seek-progress { height: 100%; border-radius: 3px; background-color: #c00; position: absolute; } .video-current { position: absolute; width: 6px; height: 18px; top: 50%; margin-left: -3px; margin-top: -9px; background-color: #900; cursor: pointer; } .buttons-bar { background-color: #eee; font-size: 12px; font-family: "Courier New", monospace; display: flex; padding: 0px 7px 7px; align-items: center; flex-wrap: wrap; } .line-deltas, .button-group { display: flex; } .line-deltas > *:not(:last-child), .buttons-bar > *:not(:last-child) { margin-right: 3px; } .line-deltas > *:not(:first-child), .buttons-bar > *:not(:first-child) { margin-left: 3px; } .subtitle-adjustment-bar .button, .buttons-bar .button { display: flex; width: 24px; height: 24px; background-color: #e8e8e8; border: 1px solid #bbb; border-radius: 2px; box-sizing: border-box; justify-content: center; align-items: center; cursor: pointer; user-select: none; } .buttons-bar .button:not(:last-child), .subtitle-adjustment-bar .button:not(:last-child) { margin-right: 5px; } .buttons-bar .button.toggled { /* box-shadow: inset 0 0 3px rgba(0.125); */ /* border-color: #888; */ border-color: #48c; background-color: #def; } html.supports-hover .buttons-bar .button:hover { background-color: #ddd; } html.supports-hover .buttons-bar .button.toggled:hover { background-color: #e0f4ff; } .buttons-bar .spacer { flex: 1; margin: 0; } .video-timestamp { padding: 5px 10px; margin-left: 5px; margin-right: 5px; font-size: 13px; font-weight: bold; } .line-start-delta, .line-end-delta { width: 50px; text-align: center; padding: 5px; background-color: #ddd; } .line-start-delta { background-color: #ebb; } .line-end-delta { background-color: #bdf; } .button-group .separator { border-right: 1px solid #ddd; margin-right: 6px; } .edit-subtitle-timing-and-style-bar { display: flex; align-items: center; margin-bottom: 8px; } .subtitle-timing-bar, .subtitle-styling-bar { display: flex; align-items: center; } .webapp-edit-subtitle-pane { padding: 8px; flex: 1; background-color: #eee; min-width: 456px; box-sizing: border-box; } .dummy-video-popup .temporal-input, .edit-subtitle-timing-and-style-bar input[type=text], .edit-subtitle-timing-and-style-bar input:not([type]) { text-align: center; font-family: "Courier New", monospace; font-size: 12px; padding: 4px 6px; font-weight: bold; color: #333; background-color: white; border: 1px solid #999; height: 25px; } .subtitle-timing-bar > *:not(:last-child), .subtitle-styling-bar > *:not(:last-child), .edit-subtitle-timing-and-style-bar > *:not(:last-child) { margin-right: 6px; } .edit-subtitle-timing-and-style-bar .subtitle-layer { width: 34px; } .edit-subtitle-timing-and-style-bar .subtitle-start, .edit-subtitle-timing-and-style-bar .subtitle-end, .edit-subtitle-timing-and-style-bar .subtitle-duration { width: 90px; } .subtitle-text-editor { position: relative; overflow: hidden; } .subtitle-text-editor textarea { width: 100%; min-width: 100%; max-width: 100%; min-height: 80px; background-color: transparent; border: 1px solid transparent; padding: 4px 6px; font-size: 12px; font-family: "Courier New", monospace; margin: 0; color: transparent; position: relative; z-index: 1; caret-color: #333; } .subtitle-text-editor .pretty-editor { width: 100%; height: 100%; background-color: white; border: 1px solid #999; padding: 4px 6px; pointer-events: none; position: absolute; top: 0; left: 0; box-sizing: border-box; font-size: 12px; font-family: "Courier New", monospace; white-space: pre-wrap; } /* braces denoting blocks in which commands can go */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-brace, .subtitle-text-editor .pretty-editor .highlight-brace { color: #00f; font-weight: bold; } /* backslashes to begin a command, brackets, commas */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-syntax, .subtitle-text-editor .pretty-editor .highlight-syntax { color: #d0d; font-weight: bold; } /* commands (preceded by a backslash) which affect the line */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-command, .subtitle-text-editor .pretty-editor .highlight-command { color: #777; font-weight: bold; } /* parameters for the commands */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-param, .subtitle-text-editor .pretty-editor .highlight-param { color: #084; } /* escapes in the text */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-escape, .subtitle-text-editor .pretty-editor .highlight-escape { color: #aaa; font-weight: bold; } /* random text typed into the block instead of commands, useful as comments */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .block-comment, .subtitle-text-editor .pretty-editor .block-comment { color: #000; font-weight: bold; } .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .syntax-error, .subtitle-text-editor .pretty-editor .syntax-error { color: #c00; text-decoration: underline; text-decoration-line: underline; text-decoration-style: dotted; text-decoration-color: #d00; text-decoration-thickness: 2px; } .numeric-input-wrapper { display: flex; } .webapp-persistent-popup-overlay .popup .numeric-input-wrapper input[type=text], .webapp-persistent-popup-overlay .popup .numeric-input-wrapper input:not([type]), .numeric-input-wrapper input[type=text], .numeric-input-wrapper input:not([type]) { border-right: none; } .numeric-input-adjustment-arrows { display: flex; flex-direction: column; width: 12px; } .numeric-input-adjustment-arrow-separator { border-bottom: 1px solid #999; } .numeric-input-adjustment-arrow-increase, .numeric-input-adjustment-arrow-decrease { flex: 1; border: 1px solid #999; background-color: #e8e8e8; } .numeric-input-adjustment-arrow-increase { border-bottom: none; } .numeric-input-adjustment-arrow-decrease { border-top: none; } html.supports-hover .numeric-input-adjustment-arrow-increase:hover, html.supports-hover .numeric-input-adjustment-arrow-decrease:hover { background-color: #ddd; } .dropdown { position: relative; } .dropdown-handle { user-select: none; cursor: default; } .dropdown-handle-text { display: inline-block; max-width: 100%; white-space: nowrap; overflow-x: hidden; text-overflow: ellipsis; } .dropdown-contents { position: absolute; user-select: none; cursor: default; display: none; z-index: 9; } .dropdown-item { user-select: none; background-color: #fff; width: 100%; padding: 4px 8px; box-sizing: border-box; } html.supports-hover .dropdown-item:hover { background-color: #f4f4f4; } .dropdown-contents { border: 1px solid #999; border-top-style: none; width: 100%; box-sizing: border-box; } .dropdown-item-text { font-size: 12px; color: #333; } .dropdown-open .dropdown-contents { display: block; } .dropdown-handle { font-size: 12px; padding: 4px 24px 4px 8px; color: #333; background-color: white; border: 1px solid #999; height: 25px; box-sizing: border-box; min-width: 100px; position: relative; } .dropdown-handle::before { content: ""; border-left: 1px solid #999; position: absolute; right: 0; top: 0; bottom: 0; width: 15px; background-color: #e8e8e8; } html.supports-hover .dropdown-handle:hover::before { background-color: #ddd; } .webapp-subtitle-list-pane { flex: 1; overflow: hidden; display: flex; flex-direction: column; user-select: none; border-top: 1px solid #aaa; } .subtitle-list-content { overflow-y: scroll; flex: 1; counter-reset: lineno; display: flex; flex-direction: column; } .subtitle-list-element, .subtitle-list-header { border-bottom: 1px solid #aaa; font-family: "Courier New", monospace; display: flex; align-items: stretch; font-size: 12px; } .subtitle-list-element { cursor: pointer; counter-increment: lineno; } html.supports-hover .subtitle-list-element:hover { background-color: #dfc; } .subtitle-list-header { background-color: #bdf; font-weight: bold; } .subtitle-list-data-columns { display: flex; flex: 1; overflow: hidden; } .subtitle-list-column-lineno, .subtitle-list-column-start, .subtitle-list-column-end, .subtitle-list-column-cps, .subtitle-list-column-style, .subtitle-list-column-text { display: flex; } .subtitle-list-column-actor { display: none; } .subtitle-list-column-lineno, .subtitle-list-column-start, .subtitle-list-column-end, .subtitle-list-column-cps, .subtitle-list-column-style, .subtitle-list-column-actor, .subtitle-list-column-text { box-sizing: border-box; padding: 0 6px; align-items: center; justify-content: center; } .subtitle-list-column-start, .subtitle-list-column-end, .subtitle-list-column-cps, .subtitle-list-column-style, .subtitle-list-column-actor, .subtitle-list-column-text { height: 26px; } .subtitle-list-column-lineno, .subtitle-list-column-start, .subtitle-list-column-end, .subtitle-list-column-cps, .subtitle-list-column-actor, .subtitle-list-column-style { border-right: 1px solid #aaa; } .subtitle-list-column-lineno { width: 34px; } html:not(.supports-hover) .subtitle-list-element .subtitle-list-column-lineno, html.supports-hover .subtitle-list-element:not(:hover) .subtitle-list-column-lineno { background-color: #dfd; } .subtitle-list-element .subtitle-list-column-lineno::before { content: counter(lineno); } .subtitle-list-column-cps[data-cps="NaN"] { color: transparent; } .subtitle-list-column-cps[data-cps="16"] { background-color: rgba(238, 0, 0, 0.125); } .subtitle-list-column-cps[data-cps="17"] { background-color: rgba(238, 0, 0, 0.1875); } .subtitle-list-column-cps[data-cps="18"] { background-color: rgba(238, 0, 0, 0.25); } .subtitle-list-column-cps[data-cps="19"] { background-color: rgba(238, 0, 0, 0.3125); } .subtitle-list-column-cps[data-cps="20"] { background-color: rgba(238, 0, 0, 0.375); color: black; } .subtitle-list-column-cps[data-cps="21"] { background-color: rgba(238, 0, 0, 0.4375); color: black; } .subtitle-list-column-cps[data-cps="22"] { background-color: rgba(238, 0, 0, 0.5); color: black; } .subtitle-list-column-cps[data-cps="23"] { background-color: rgba(238, 0, 0, 0.5625); color: black; } .subtitle-list-column-cps[data-cps="24"] { background-color: rgba(238, 0, 0, 0.625); color: black; } .subtitle-list-column-cps[data-cps="25"] { background-color: rgba(238, 0, 0, 0.6875); color: black; } .subtitle-list-column-cps[data-cps="26"] { background-color: rgba(238, 0, 0, 0.75); color: black; } .subtitle-list-column-cps[data-cps="27"] { background-color: rgba(238, 0, 0, 0.8125); color: black; } .subtitle-list-column-cps[data-cps="28+"] { background-color: rgba(238, 0, 0, 0.875); color: black; } .subtitle-list-column-start, .subtitle-list-column-end { width: 100px; } .subtitle-list-column-cps { width: 34px; } .subtitle-list-column-actor { width: 100px; } .subtitle-list-column-style { width: 90px; line-height: 11px; } .subtitle-list-column-text { flex: 1; justify-content: flex-start; padding: 6px 10px; overflow-x: hidden; white-space: nowrap; } .subtitle-list-content .subtitle-list-element.currently-visible:not(.currently-selected) .subtitle-list-data-columns { background-color: #ffd; } .subtitle-list-content .subtitle-list-element.comment:not(.currently-selected) .subtitle-list-data-columns { background-color: #ddf; } html.supports-hover .subtitle-list-content .subtitle-list-element.currently-selected > *, html:not(.supports-hover) .subtitle-list-content .subtitle-list-element.currently-selected > * { background-color: #afb; } .subtitle-list-column-text .hard-linebreak { opacity: 0.4; font-weight: bold; margin-left: 2px; margin-right: 2px; } .subtitle-list-column-text .special { display: inline-block; line-height: 14px; position: relative; top: 1px; } .subtitle-list-element.overlapping { color: #d00; font-weight: bold; } .webapp-video-player-pane:not(.video-scale-auto) ~ .webapp-edit-subtitle-pane { min-width: 0 !important; } @media screen and (max-width: 960px) { .edit-subtitle-timing-and-style-bar { flex-wrap: wrap; align-items: flex-start; } .edit-subtitle-timing-and-style-bar { margin-top: -8px; margin-left: -6px; } .edit-subtitle-timing-and-style-bar > * { margin-top: 8px; margin-left: 6px; margin-right: 0; } .webapp-edit-subtitle-pane { min-width: 298px; } .webapp-video-player-pane { max-width: calc(100% - 298px); } .webapp-video-player-pane .video-area { width: 100vw; max-width: 100%; min-width: 0; min-height: 0; } .buttons-bar { flex-wrap: wrap; margin-top: -6px; } .buttons-bar > * { margin-top: 6px; } .buttons-bar .line-deltas { flex: 1; justify-content: flex-end; } .subtitle-text-editor textarea { min-height: 50px; } } @media screen and (max-width: 520px) { .webapp-upper { flex-direction: column; } .webapp-edit-subtitle-pane { border-top: 1px solid #d8d8d8; } .webapp-video-player-pane .video-area { width: 100vw; max-width: 100%; } .webapp-edit-subtitle-pane { min-width: 0; } .webapp-video-player-pane { max-width: 100%; } .subtitle-list-column-start, .subtitle-list-column-end { width: 90px; } .subtitle-list-column-style { width: 70px; } } @media screen and (max-width: 400px) { .webapp-upper { flex-direction: column; } .webapp-edit-subtitle-pane { min-width: 0; } .subtitle-list-data-columns { flex-wrap: wrap; } .subtitle-list-header .subtitle-list-column-text { display: none; } .subtitle-list-column-style { flex: 1; border-right: none; overflow: hidden; justify-content: flex-start; padding-left: 10px; } .subtitle-list-column-text { border-top: 1px solid #aaa; min-width: 100%; } } .webapp-video-player-pane.fullscreen { width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; max-width: none !important; overflow: hidden; align-items: center; } .webapp-video-player-pane.fullscreen .spacer { flex: 1; background-color: #eee; } .webapp-video-player-pane.fullscreen .video-area-wrapper { flex: unset !important; } .webapp-video-player-pane.fullscreen .video-area { height: calc(100vh - 63px); width: 100vw !important; max-width: none !important; background-color: #111; display: flex; justify-content: center; align-items: center; flex: unset !important; } .webapp-video-player-pane.fullscreen .video-wrapper-inner { display: flex; align-items: center; justify-content: center; overflow: hidden; max-height: 100%; position: relative; flex: unset !important; max-width: 100vw !important; } .webapp-video-player-pane.fullscreen .controls-area { align-self: stretch; } .webapp-video-player-pane.fullscreen ~ .webapp-edit-subtitle-pane { display: none; } .webapp-menu-item { padding: 8px 12px; background-color: #f4f4f4; cursor: pointer; display: flex; user-select: none; } .webapp-menu-separator { border-bottom: 1px solid #ccc; } html.supports-hover .webapp-menu-item:hover { background-color: #ddd; } .webapp-menu { position: absolute; right: 0; z-index: 9; top: calc(100% + 1px); border-left: 1px solid #aaa; border-bottom: 1px solid #aaa; display: none; } .webapp-menu.webapp-menu-open { display: block; } .webapp-sub-menu-item { padding: 8px 12px; cursor: pointer; background-color: #f4f4f4; user-select: none; display: flex; } .webapp-sub-menu { position: absolute; right: 100%; border: 1px solid #aaa; top: -1px; } html.supports-hover .webapp-sub-menu-item:hover { background-color: #ddd; } .webapp-header-bar .spacer { flex: 1; } .webapp-mobile-menu-toggle-button { display: flex; position: absolute; right: 0; top: 0; cursor: pointer; font-size: 19px; flex-direction: column; justify-content: center; align-items: center; height: 100%; padding: 0px 12px; background-color: #eee; user-select: none; } html.supports-hover .webapp-mobile-menu-toggle-button:hover { background-color: #ddd; } .webapp-menu-item-icon:not(:empty) { margin-right: 6px; } .webapp-menu-load-subtitles-file-input, .webapp-menu-load-audio-file-input, .webapp-menu-load-video-file-input { display: none; } .radio-and-label label, .checkbox-and-label label { display: flex; align-items: center; user-select: none; font-size: 12px; font-family: "Courier New", monospace; cursor: pointer; } .radio-and-label input[type=radio], .checkbox-and-label input[type=checkbox] { display: none; } .radio-and-label .pseudo-radio, .checkbox-and-label .pseudo-checkbox { display: inline-block; box-sizing: border-box; width: calc(1em + 2px); height: calc(1em + 2px); border: 1px solid #999; background-color: #fff; position: relative; } .radio-and-label .pseudo-radio { border-radius: 50%; } .radio-and-label input[type=radio]:checked + .pseudo-radio::before, .checkbox-and-label input[type=checkbox]:checked + .pseudo-checkbox::before { content: ""; position: absolute; top: 2px; left: 2px; display: block; width: calc(100% - 4px); height: calc(100% - 4px); background-color: #27b; top: 50%; left: 50%; transform: translate(-50%,-50%); } .radio-and-label input[type=radio]:checked + .pseudo-radio::before { border-radius: 50%; } .webapp-context-menu { position: absolute; user-select: none; border: 1px solid #aaa; z-index: 99999; display: none; } .webapp-context-menu-option { background-color: #e8e8e8; display: flex; align-items: center; } .webapp-context-menu-option.TODO * { color: #999 !important; } html.supports-hover .webapp-context-menu-option:not(.TODO):hover { background-color: #ddd; } .webapp-context-menu-option-text { padding: 6px 8px; } .webapp-context-menu-option-text:first-child { padding-left: 32px; font-size: 13px; } .webapp-context-menu-option-accelerator { font-size: 11px; color: #555; flex: 1; text-align: right; padding-left: 16px; padding-right: 12px; } .webapp-context-menu-separator { border-bottom: 1px solid #ccc; } .webapp-persistent-popup-overlay, .popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; } .webapp-persistent-popup-overlay { z-index: 500; display: none; } .webapp-persistent-popup-overlay.visible { display: block; } .popup-overlay-fade { background-color: rgba(0,0,0,0.25); width: 100%; height: 100%; } .popup-wrapper { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-width: calc(100% - 40px); max-height: calc(100% - 40px); } .popup { border: 1px solid #999; max-width: 480px; } .webapp-complex-popup, .popup-header { padding: 5px 10px; background-color: #ddd; border-bottom: 1px solid #bbb; } .popup-title { font-size: 14px; user-select: none; } .popup-body { padding: 0 0 15px; background-color: #eee; font-size: 14px; } .popup-content { display: flex; flex-direction: column; align-items: center; min-width: 200px; min-height: 30px; flex: 1; overflow-y: auto; max-height: 320px; padding: 15px 15px 0; } .webapp-persistent-popup-overlay .popup-content { align-items: flex-start; justify-content: flex-start; } .webapp-persistent-popup-overlay .checkbox-and-label label { font-family: 'Arial', sans-serif; } .popup-buttons { display: flex; align-items: center; justify-content: center; margin-top: 15px; overflow: hidden; padding-left: 10px; padding-right: 10px; box-sizing: border-box; width: 100%; } .popup-button { padding: 5px 10px; text-align: center; width: 80px; box-sizing: border-box; background-color: #e8e8e8; border: 1px solid #999; font-size: 13px; user-select: none; flex-shrink: 1; } html.supports-hover .popup-button:hover { background-color: #ddd; } .popup-button:not(:last-child) { margin-right: 10px; } .radio-and-label .pseudo-radio + .label, .checkbox-and-label .pseudo-checkbox + .label { margin-left: 5px; padding-top: 1px; } .edit-subtitle-timing-and-style-bar input.actor-textbox { width: 140px; text-align: left; font-family: 'Arial', sans-serif; font-weight: normal; } .edit-subtitle-timing-and-style-bar input.actor-textbox:placeholder-shown { color: #888; } .edit-subtitle-timing-and-style-bar input.actor-textbox:placeholder-shown:focus { color: transparent; caret-color: black; } .webapp-persistent-popup-overlay .popup { max-width: 640px; } .webapp-persistent-popup-overlay .popup-content { align-items: flex-start; justify-content: flex-start; } .webapp-persistent-popup-overlay .popup-content { font-size: 12px; } .webapp-persistent-popup-overlay .row:not(:first-child) { margin-top: 20px; } .webapp-persistent-popup-overlay .label { font-weight: bold; margin-bottom: 2px; } .webapp-persistent-popup-overlay .radio-and-label .label, .webapp-persistent-popup-overlay .checkbox-and-label .label { margin-bottom: 0; } .webapp-persistent-popup-overlay .radio-and-label, .webapp-persistent-popup-overlay .checkbox-and-label { margin-bottom: 3px; } .subtitle-adjustment-bar { display: flex; margin-bottom: 7px; flex-wrap: wrap; margin-top: -5px; } .subtitle-adjustment-bar .button { font-size: 12px; font-weight: bold; margin-top: 5px; } .play-triangle { font-weight: normal; font-size: 0.75em; } html.supports-hover .subtitle-adjustment-bar .button:hover { background-color: #ddd; } .subtitle-adjustment-bar .separator { border-right: 1px solid #ddd; margin-left: 5px; margin-right: 5px; margin-top: 5px; } .webapp-persistent-popup-overlay .popup input[type="text"], .webapp-persistent-popup-overlay .popup .numeric-input { height: 25px; padding: 4px 6px; border: 1px solid #999; background-color: white; font-size: 12px; } .webapp-persistent-popup-overlay .popup .numeric-input { text-align: center; font-family: "Courier New", monospace; font-weight: bold; color: #333; max-width: 75px; } .settings-popup .webapp-settings-language-dropdown { min-width: 130px; } .settings-popup .webapp-settings-leads { display: flex; } .settings-popup .webapp-settings-leads > *:not(:last-child) { margin-right: 25px; } .webapp-settings-visualiser-dropdown { max-width: 200px; margin-bottom: 5px; } .webapp-settings-import-dropdown { max-width: 200px; margin-bottom: 5px; } .webapp-settings-line-comparison-mode-dropdown { max-width: 200px; margin-bottom: 5px; } .webapp-settings-video-res-dropdown { max-width: 250px; margin-bottom: 5px; } .webapp-settings-actor-dropdown, .webapp-settings-video-pane-dropdown { max-width: 150px; margin-bottom: 5px; } .info-popup .popup-body { width: 420px; max-width: 100%; } .info-popup .row { width: 100%; } .info-popup .row-flex-inner, .info-popup .row > label { display: flex; align-items: center; width: 100%; } .info-popup .row:not(:first-child) { margin-top: 10px; } .info-popup .row-flex-inner > .label, .info-popup .row > label .label { margin-right: 10px; width: 100px; } .info-popup .row label input { flex: 1; } .info-popup .resolution-row { display: flex; align-items: center; } .info-popup .resolution-row .numeric-input { width: 50px; } .info-popup .resolution-row > *:not(:last-child) { margin-right: 10px; } .info-popup .after-input { margin-left: 10px; } .info-popup .popup-content { height: 520px; } .style-editor-popup .popup-content { width: 720px; max-width: 100%; box-sizing: border-box; height: 360px; max-height: calc(100vh - 40px - 28px - 15px - 15px - 28px - 15px); } .style-editor-popup .columns { display: flex; width: 100%; box-sizing: border-box; } .style-editor-popup .columns > .left-side { width: calc(50% - 10px); margin-right: 20px; } .style-editor-popup .columns > .right-side { width: calc(50% - 10px); } .style-editor-popup .row > label > .label, .style-editor-popup .row > .label { width: 100%; } .webapp-style-editor-style-name { width: 100%; } .style-editor-popup .font-family-and-size { width: 100%; display: flex; } .webapp-style-editor-font-family { flex: 1; margin-right: 6px; } .webapp-style-editor-font-size { width: 50px; } .style-editor-popup .font-styling-options { width: 100%; display: flex; justify-content: center; margin-top: 6px; flex-wrap: wrap; } .style-editor-popup .font-styling-options .checkbox-and-label:not(:last-child) { margin-right: 10px; } .style-editor-popup .style-colours { width: 100%; display: flex; justify-content: center; margin-top: 4px; } .style-editor-popup .style-colours .style-colour { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 56px; } .style-editor-popup .style-colours .style-colour:not(:last-child) { margin-right: 10px; } .colour-input { width: 50px; height: 23px; box-sizing: border-box; border: 1px solid #999; padding: 1px; } html.supports-hover .colour-input:hover { border-color: #27b; } .colour-input .colour-preview { width: 100%; height: 100%; } .style-editor-popup .style-colour .colour-input { margin-top: 2px; } .style-editor-popup .margins-row { display: flex; flex: 1; justify-content: center; width: 100%; margin-top: 4px; } .style-editor-popup .margin-input { display: flex; flex-direction: column; align-items: center; } .style-editor-popup .margin-input:not(:last-child) { margin-right: 10px; } .style-editor-popup .margin-input .label::after { display: inline-block; width: 8px; content: ""; } .style-editor-popup .margin-input .numeric-input { width: 50px; } .style-editor-popup .popup { max-width: 720px; } .style-editor-popup .margins-and-alignment { display: flex; flex-wrap: wrap; width: 100%; } .style-editor-popup .margins-section { display: flex; flex: 1; margin-right: 10px; margin-bottom: 20px; flex-direction: column; } .style-editor-popup .alignment-section { flex: 1; } .alignment-grid { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 4px; } .alignment-grid-row { display: flex; flex-direction: row; align-items: center; justify-content: center; } .alignment-grid-row:not(:last-child) { margin-bottom: 2px; } .alignment-grid .radio-and-label .pseudo-radio + .label { margin-left: 3px; } .alignment-grid .radio-and-label:not(:last-child) { margin-right: 7px; } .outline-and-shadow { display: flex; justify-content: center; margin-top: 4px; } .webapp-style-editor-outline-shape { flex: 1; min-width: 110px; } .outline-and-shadow .input-and-label:not(:last-child) { margin-right: 10px; } .misc-row { display: flex; align-items: center; margin-bottom: 10px; } .label + .misc-row { margin-top: 4px; } .misc-row .spacer { flex: 1; } .misc-row .input-and-label { display: flex; align-items: center; } .misc-row .input-and-label:not(:last-child) { margin-right: 20px; } .misc-row .input-and-label:last-child .label { min-width: 70px; } .misc-row > .label, .misc-row .input-and-label:first-child .label { min-width: 100px; } .misc-row .input-and-label input { width: 60px; } .misc-row > .label + .dropdown:last-child { flex: 1; } .outline-and-shadow-label { display: none; } .outline-and-shadow { margin-top: 0; justify-content: flex-start; flex-wrap: wrap; } .outline-and-shadow .input-and-label:first-child { flex: 1; } .dropdown-contents { overflow-x: hidden; overflow-y: auto; max-height: 94px; } .style-editor-popup .preview-row { flex: 1; display: flex; flex-direction: column; } .style-editor-popup .preview { margin-top: 4px; width: 100%; min-height: 100px; flex: 1; border: 1px solid #999; box-sizing: border-box; background-image: linear-gradient(45deg, rgba(0,0,0,0.125) 25%, transparent 25%), linear-gradient(135deg, rgba(0,0,0,0.125) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.125) 75%), linear-gradient(135deg, transparent 75%, rgba(0,0,0,0.125) 75%); background-size: 16px 16px; background-position: 0 0, 8px 0, 8px -8px, 0px 8px; position: relative; overflow: hidden; } .style-editor-popup .preview-options-row { margin-top: 6px; width: 100%; display: flex; } .webapp-style-editor-preview-text { flex: 1; } .webapp-style-editor-preview-render { position: absolute; left: 0%; top: 50%; transform: translateY(-50%); width: 100%; text-align: center; user-select: none; } .webapp-style-editor-preview-background-colour { height: 25px; margin-left: 6px; } .style-editor-popup .label { user-select: none; } @media screen and (max-width: 767px) { .style-editor-popup .popup-content .columns { flex-direction: column; } .style-editor-popup .popup-content .columns > .left-side { margin-right: 0; margin-bottom: 10px; } .style-editor-popup .popup-content .columns > .left-side, .style-editor-popup .popup-content .columns > .right-side { width: 100%; } } @media screen and (max-width: 400px) { .outline-and-shadow .input-and-label { margin-bottom: 10px; } .outline-and-shadow .input-and-label:not(:first-child) { margin-right: 0px; } } @media screen and (max-width: 440px) { .style-editor-popup .misc-row { flex-wrap: wrap; } .misc-row .input-and-label:last-child .label { min-width: 100px; } .misc-row .input-and-label { margin-bottom: 12px; } } .styles-popup .popup { max-width: 720px; } .styles-popup .popup-content { width: 720px; max-width: 100%; box-sizing: border-box; } .styles-popup .columns { display: flex; flex-direction: row; width: 100%; box-sizing: border-box; } .styles-popup .columns .left-side { width: calc(50% - 12px); margin-right: 24px; } .styles-popup .columns .right-side { width: calc(50% - 12px); } .styles-popup .catalog-row { display: flex; width: 100%; align-items: center; } .styles-popup .top-side { width: 100%; margin-bottom: 15px; } .webapp-styles-catalog-dropdown { flex: 1; margin-right: 10px; } .webapp-styles-catalog-button-new, .webapp-styles-catalog-button-delete { padding-bottom: 4px; padding-top: 3px; height: 25px; } .webapp-styles-popup-list-box-wrapper { display: flex; width: 100%; height: 142px; } .webapp-styles-popup-list-box { background-color: white; border: 1px solid #999; align-self: stretch; flex: 1; overflow-y: auto; } .webapp-styles-popup-list-ordering-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-left: 3px; } .styles-popup .button-row { display: flex; margin-top: 6px; } .styles-popup .button-row .popup-button { flex: 1; } .styles-popup .button-row .popup-button:not(:last-child) { margin-right: 6px; } .styles-popup .order-button-with-tooltip { position: relative; } .styles-popup .order-button { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background-color: #e8e8e8; border: 1px solid #999; user-select: none; font-size: 20px; font-weight: bold; } .styles-popup .order-button.order-button-sort-alphabetically { font-size: 11px; } .styles-popup .order-button-with-tooltip:not(:last-child) { margin-bottom: 3px; } .styles-popup .order-button-with-tooltip .tooltip { position: absolute; top: 50%; right: 100%; white-space: nowrap; transform: translateY(-50%); display: none; background-color: #f8f8f8; border: 1px solid #999; border-radius: 3px; padding: 6px 10px; margin-right: 2px; color: #333; } html.supports-hover .styles-popup .order-button-with-tooltip:not(.TODO) .order-button:hover { background-color: #ddd; } html.supports-hover .styles-popup .order-button-with-tooltip:not(.TODO) .order-button:hover + .tooltip { display: block; } @media screen and (max-width: 520px) { .styles-popup .columns { flex-direction: column; } .styles-popup .columns .left-side { width: 100%; margin-right: 0; margin-top: 20px; order: 2; } .styles-popup .columns .right-side { width: 100%; order: 1; } } .list-box-item { padding: 4px 8px; border-top: 1px solid white; border-bottom: 1px solid white; user-select: none; cursor: default; } .list-box-item.list-box-item-selected { background-color: #def; border-color: #cdf; } html.supports-hover .list-box-item:not(.list-box-item-selected):hover { background-color: #f0f8ff; border-color: #def; } .video-scale-dropdown .dropdown-contents, .webapp-info-ycbcr-matrix.dropdown-open .dropdown-contents, .webapp-info-wrap-style-dropdown.dropdown-open .dropdown-contents { bottom: 100%; border-bottom-style: none; border-top-style: solid; } .insert-new-line-row { font-family: 'Courier New', monospace; align-items: center; justify-content: center; display: flex; min-height: 27px; height: 27px; border-bottom: 1px solid #ddd; box-sizing: border-box; background-color: #fcfcfc; font-size: 13px; order: 99999; cursor: pointer; user-select: none; color: #333; } html.supports-hover .insert-new-line-row:hover { background-color: #f4f4f4; } .webapp-menu-sub-menu-wrapper { position: relative; } @media screen and (max-width: 380px) { .hide-under-380px { display: none; } } @media screen and (min-width: 381px) { .show-under-380px { display: none; } } .colour-chooser-popup .popup-content { max-height: 380px; } .colour-chooser-popup .inputs { display: flex; border: 1px solid #ccc; border-radius: 2px; padding: 8px; width: 100%; box-sizing: border-box; justify-content: center; } .colour-chooser-popup .input-and-label { display: flex; flex-direction: column; align-items: center; flex-shrink: 1; } .colour-chooser-popup .input-and-label:not(:last-child) { margin-right: 8px; } .colour-chooser-popup .input-and-label .label { padding-right: 8px; box-sizing: border-box; width: 100%; text-align: center; } .colour-chooser-popup .input-and-label .numeric-input { width: 50px; } .colour-chooser-popup .rgb, .colour-chooser-popup .other, .colour-chooser-popup .hsl { margin-bottom: 20px; } .colour-chooser-popup .rgb,, .colour-chooser-popup .hsv { margin-bottom: 10px; } .colour-chooser-other-html { max-width: 70px; } .colour-chooser-other-aegisub { width: 80px; } .colour-chooser-other-html, .colour-chooser-other-aegisub { text-align: center; flex: 1; font-family: 'Courier New', monospace; } .colour-chooser-popup .rgb > .label, .colour-chooser-popup .hsl > .label, .colour-chooser-popup .hsv > .label { margin-left: 6px; margin-bottom: -8px; margin-top: -8px; background-color: #eee; z-index: 1; position: relative; display: inline-block; padding: 0px 2px; } .colour-chooser-popup .other .inputs { border: none; padding: 0; } .colour-chooser-popup .colour-spectrum-and-preview-block { padding-top: 2px; margin-bottom: 15px; width: 100%; } .colour-chooser-popup .colour-preview-row { display: flex; align-items: center; justify-content: center; width: 100%; } .colour-chooser-popup .colour-preview-wrapper { padding: 1px; border: 1px solid #aaa; } .colour-chooser-popup .colour-preview { width: 60px; height: 36px; } .webapp-style-editor-preview-render .subtitle { display: flex; justify-content: center; align-items: center; text-align: center; flex-direction: column; } .webapp-style-editor-preview-render .subtitle .subtitle-line { position: relative; } .webapp-style-editor-preview-render .subtitle .subtitle-line .subtitle-line-shadow, .webapp-style-editor-preview-render .subtitle .subtitle-line .subtitle-line-outline { position: absolute; width: 100%; } .webapp-style-editor-preview-render .subtitle .subtitle-line .subtitle-line-text { position: relative; z-index: 2; } .webapp-style-editor-preview-render .subtitle > br { display: none; } .dummy-video-popup .row { width: 100%; } .dummy-video-resolution-dropdown { max-width: 100%; } .dummy-video-popup .popup-content .dummy-video-checkerboard-pattern-row, .dummy-video-popup .popup-content .dummy-video-custom-resolution-row { display: flex; align-items: center; max-width: 100%; margin-top: 10px; } .dummy-video-custom-resolution-row .numeric-input { width: 50px } .dummy-video-custom-resolution-row > span { margin-left: 10px; margin-right: 10px; } .dummy-video-duration-row { display: flex; align-items: center; } .dummy-video-duration-row .input-and-label:not(:last-child) { margin-right: 10px; } .dummy-video-duration-in-seconds { width: 100px; } .dummy-video-duration-in-frames { width: 65px; } .dummy-video-frame-rate { width: 65px; } .dummy-video-popup .popup-buttons { margin-top: 25px; } .webapp[data-setting-videopane="hide"] .webapp-video-player-pane { display: none; } .webapp[data-setting-showactorcolumn="always"] .subtitle-list-column-actor, .webapp[data-setting-showactorcolumn="if-present"] .actor-present .subtitle-list-column-actor { display: flex; } .webapp[data-setting-syntaxhighlighting="false"] .subtitle-text-editor .pretty-editor { display: none; } .webapp[data-setting-syntaxhighlighting="false"] .subtitle-text-editor textarea { background-color: white; border-color: #999; color: #000; } .webapp-edit-subtitle-pane .original-line { width: 100%; background-color: white; border: 1px solid #999; margin-bottom: 8px; padding: 4px 6px; min-height: 24px; box-sizing: border-box; font-size: 12px; font-family: "Courier New", monospace; } .webapp[data-setting-linecomparison="disabled"] .webapp-edit-subtitle-pane .original-line { display: none; } .video-area.checkerboard { background-image: linear-gradient(45deg, rgba(0,0,0,0.125) 25%, transparent 25%), linear-gradient(135deg, rgba(0,0,0,0.125) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.125) 75%), linear-gradient(135deg, transparent 75%, rgba(0,0,0,0.125) 75%); background-size: 16px 16px; background-position: 0 0, 8px 0, 8px -8px, 0px 8px; } .subtitle-audio-visualiser-wrapper { display: flex; } .webapp[data-setting-audiovisualiser="hidden"] .subtitle-audio-visualiser-wrapper { display: none; } .TODO { border-color: #ddd !important; color: #ccc !important; } .order-button-with-tooltip.TODO .order-button, .dropdown.TODO { opacity: 0.4; } .TODO .list-box-item { background-color: #f4f4f4; border-color: #e8e8e8; color: #bbb; } .subtitle-audio-visualiser { border: 1px solid #999; margin-bottom: 8px; box-sizing: border-box; background-color: #000; flex: 1; } .waveform-gridline-minor { height: 6px; border-right: 1px solid #9cf; box-sizing: border-box; position: absolute; } .waveform-gridline-major { height: 8px; border-right: 2px solid #9cf; box-sizing: border-box; position: absolute; } .waveform-gridline-bottom { position: absolute; bottom: 0px; border-bottom: 2px solid #9cf; width: 100%; } .gridlines { display: flex; align-items: flex-end; position: relative; height: 100%; } .waveform-timestamps { position: absolute; top: 0; width: 100%; height: 100%; display: flex; color: white; font-weight: bold; } .waveform-timestamps-and-grid-lines { position: relative; height: 30px; overflow: hidden; } .waveform-timestamp { font-size: 11px; font-family: 'Courier New', monospace; margin-top: 4px; position: absolute; transform: translateX(-50%); } .waveform-and-lines { position: relative; height: 64px; } .visualiser-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; user-select: none; } .visualiser-current-region { position: absolute; height: 100%; background-color: rgba(255,0,255,0.5); } .visualiser-next-line, .visualiser-previous-line { background-color: rgba(128,128,128,0.3); } .visualiser-current-line { background-color: rgba(128,0,255,0.3); } .visualiser-overlay-line { height: 100%; position: absolute; top: 0; } .visualiser-line-start, .visualiser-line-end { border-bottom: 3px solid #777; border-top: 3px solid #777; height: 100%; width: 5px; position: absolute; box-sizing: border-box; } .visualiser-line-end { right: 0; border-right: 3px solid #777; } .visualiser-line-start { border-left: 3px solid #777; left: 0; } .visualiser-current-line-start { border-color: #c00; cursor: ew-resize; } .visualiser-current-line-end { /* border-color: #48c; */ border-color: #06f; cursor: ew-resize; } .button-play-line { font-weight: bold; } .subtitle-add-lead-in, .subtitle-add-lead-out { color: #333; font-weight: bold; } .line-start-colour { color: #c00; } .line-end-colour { color: #06f; } .waveform > canvas { height: 100%; width: 100%; } .visualiser-location-and-progress { height: 20px; border-top: 2px solid #9cf; position: relative; overflow: hidden; } .visualiser-progress { height: 100%; position: absolute; width: 40px; margin-left: -40px; box-sizing: border-box; background-image: linear-gradient(to right, transparent, #4cf); } .line-editor-audio { display: none; } .subtitle-style-dropdown { max-width: 50%; } @media screen and (max-width: 420px) { .actor-textbox { display: none; } } @media screen and (max-width: 350px) { .subtitle-adjustment-bar .separator { margin-left: 4px; margin-right: 4px; } .subtitle-adjustment-bar .button, .buttons-bar .button { width: 23px; height: 24px; } .buttons-bar .button:not(:last-child), .subtitle-adjustment-bar .button:not(:last-child) { margin-right: 4px; } } @media screen and (max-width: 330px) { .subtitle-adjustment-bar .button, .buttons-bar .button { width: 22px; height: 22px; } } @media screen and (max-width: 320px) { .subtitle-adjustment-bar .button, .buttons-bar .button { width: 21px; height: 22px; } } .visualiser-current-audio-time { position: absolute; height: 100%; border-right: 1px solid #ddd; display: none; } .subtitle-confirm { color: #080; } .visualiser-slider-inner { position: relative; } .visualiser-zoom-controls { border: 1px solid #999; margin-bottom: 8px; margin-left: 6px; display: flex; user-select: none; } .visualiser-slider { margin-left: 4px; position: relative; width: 20px; padding: 10px 6px; box-sizing: border-box; } .visualiser-slider:last-child { margin-right: 4px; } .visualiser-slider-track { background-color: #aaa; width: 8px; height: 100%; box-sizing: border-box; border-radius: 2px; } .visualiser-slider-fill { position: absolute; background-color: #c00; left: 0; bottom: 0; width: 8px; box-sizing: border-box; border-radius: 2px; } .visualiser-slider-handle { position: absolute; left: 50%; transform: translate(-50%,50%); width: 16px; height: 6px; background-color: #900; bottom: 0; } .video-scale-dropdown .dropdown-handle { min-width: 76px; } .webapp-sub-menu:not(.webapp-sub-menu-open) { display: none; } .video-area-wrapper { overflow: hidden; display: flex; justify-content: center; align-items: center; } .webapp-video-player-pane:not(.fullscreen) .video-area-wrapper { max-width: calc(100vw - 200px); max-height: calc(87.5vh - 95px) } .aspect-fullscreen { max-height: calc(100vh - 63px); max-width: 100vw; display: none; } .webapp-video-player-pane.fullscreen .aspect-fullscreen { display: block; } .webapp-video-player-pane.fullscreen .aspect { display: none; }
styles.css
html, body { margin: 0; overflow: hidden; font-family: Arial, 'sans-serif'; } .webapp { display: flex; flex-direction: column; height: 100%; width: 100%; overflow: hidden; } .webapp-upper { /* overflow: hidden; */ flex-wrap: wrap; display: flex; width: 100%; } .webapp-lower { flex: 1; overflow: hidden; display: flex; width: 100%; flex-direction: column; } .webapp-header-bar { width: 100%; padding: 8px 12px; background-color: #eee; font-size: 13px; border-bottom: 1px solid #aaa; box-sizing: border-box; display: flex; position: relative; } .webapp-video-player-pane { flex: 2; max-width: 640px; background-color: #eee; max-height: calc(100vh - 100px); } .webapp-video-player-pane .video-area { position: relative; max-width: 100vw; box-sizing: border-box; overflow: hidden; display: flex; align-items: center; justify-content: center; } .webapp-video-player-pane.video-scale-auto { display: flex; flex-direction: column; } .webapp-video-player-pane.video-scale-auto .video-area { width: 100%; flex: 1; } .webapp-video-player-pane.video-scale-auto .video-area-wrapper { flex: 1; } .webapp-video-player-pane.video-scale-auto .video-wrapper-inner { flex: 1; } .video-wrapper-inner { position: relative; } .webapp-video-player-pane:not(.video-scale-auto) .video-wrapper-inner { } .webapp-video-player-pane:not(.video-scale-auto) .aspect { padding-top: 0 !important; } .webapp-video-player-pane.video-disabled .video-area { display: none !important; } .webapp-video-player-pane .video-area video { width: 100%; height: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; } .webapp-video-player-pane .video-area .subtitle-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; } .subtitle-overlay .subtitle { width: 100%; box-sizing: border-box; } .subtitle-overlay .subtitle-line { position: relative; display: inline-block; } .subtitle-overlay .subtitle-line-text { } .subtitle-overlay .subtitle-line-outline { position: absolute; z-index: -1; opacity: 0; width: 100%; } .subtitle-overlay .subtitle-line-shadow { position: absolute; z-index: -2; opacity: 0; width: 100%; } .video-seek-bar { padding: 10px; background-color: #eee; position: relative; user-select: none; } .video-seek-track { height: 10px; border-radius: 3px; background-color: #aaa; position: relative; } .video-seek-progress { height: 100%; border-radius: 3px; background-color: #c00; position: absolute; } .video-current { position: absolute; width: 6px; height: 18px; top: 50%; margin-left: -3px; margin-top: -9px; background-color: #900; cursor: pointer; } .buttons-bar { background-color: #eee; font-size: 12px; font-family: "Courier New", monospace; display: flex; padding: 0px 7px 7px; align-items: center; flex-wrap: wrap; } .line-deltas, .button-group { display: flex; } .line-deltas > *:not(:last-child), .buttons-bar > *:not(:last-child) { margin-right: 3px; } .line-deltas > *:not(:first-child), .buttons-bar > *:not(:first-child) { margin-left: 3px; } .subtitle-adjustment-bar .button, .buttons-bar .button { display: flex; width: 24px; height: 24px; background-color: #e8e8e8; border: 1px solid #bbb; border-radius: 2px; box-sizing: border-box; justify-content: center; align-items: center; cursor: pointer; user-select: none; } .buttons-bar .button:not(:last-child), .subtitle-adjustment-bar .button:not(:last-child) { margin-right: 5px; } .buttons-bar .button.toggled { /* box-shadow: inset 0 0 3px rgba(0.125); */ /* border-color: #888; */ border-color: #48c; background-color: #def; } html.supports-hover .buttons-bar .button:hover { background-color: #ddd; } html.supports-hover .buttons-bar .button.toggled:hover { background-color: #e0f4ff; } .buttons-bar .spacer { flex: 1; margin: 0; } .video-timestamp { padding: 5px 10px; margin-left: 5px; margin-right: 5px; font-size: 13px; font-weight: bold; } .line-start-delta, .line-end-delta { width: 50px; text-align: center; padding: 5px; background-color: #ddd; } .line-start-delta { background-color: #ebb; } .line-end-delta { background-color: #bdf; } .button-group .separator { border-right: 1px solid #ddd; margin-right: 6px; } .edit-subtitle-timing-and-style-bar { display: flex; align-items: center; margin-bottom: 8px; } .subtitle-timing-bar, .subtitle-styling-bar { display: flex; align-items: center; } .webapp-edit-subtitle-pane { padding: 8px; flex: 1; background-color: #eee; min-width: 456px; box-sizing: border-box; } .dummy-video-popup .temporal-input, .edit-subtitle-timing-and-style-bar input[type=text], .edit-subtitle-timing-and-style-bar input:not([type]) { text-align: center; font-family: "Courier New", monospace; font-size: 12px; padding: 4px 6px; font-weight: bold; color: #333; background-color: white; border: 1px solid #999; height: 25px; } .subtitle-timing-bar > *:not(:last-child), .subtitle-styling-bar > *:not(:last-child), .edit-subtitle-timing-and-style-bar > *:not(:last-child) { margin-right: 6px; } .edit-subtitle-timing-and-style-bar .subtitle-layer { width: 34px; } .edit-subtitle-timing-and-style-bar .subtitle-start, .edit-subtitle-timing-and-style-bar .subtitle-end, .edit-subtitle-timing-and-style-bar .subtitle-duration { width: 90px; } .subtitle-text-editor { position: relative; overflow: hidden; } .subtitle-text-editor textarea { width: 100%; min-width: 100%; max-width: 100%; min-height: 80px; background-color: transparent; border: 1px solid transparent; padding: 4px 6px; font-size: 12px; font-family: "Courier New", monospace; margin: 0; color: transparent; position: relative; z-index: 1; caret-color: #333; } .subtitle-text-editor .pretty-editor { width: 100%; height: 100%; background-color: white; border: 1px solid #999; padding: 4px 6px; pointer-events: none; position: absolute; top: 0; left: 0; box-sizing: border-box; font-size: 12px; font-family: "Courier New", monospace; white-space: pre-wrap; } /* braces denoting blocks in which commands can go */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-brace, .subtitle-text-editor .pretty-editor .highlight-brace { color: #00f; font-weight: bold; } /* backslashes to begin a command, brackets, commas */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-syntax, .subtitle-text-editor .pretty-editor .highlight-syntax { color: #d0d; font-weight: bold; } /* commands (preceded by a backslash) which affect the line */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-command, .subtitle-text-editor .pretty-editor .highlight-command { color: #777; font-weight: bold; } /* parameters for the commands */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-param, .subtitle-text-editor .pretty-editor .highlight-param { color: #084; } /* escapes in the text */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .highlight-escape, .subtitle-text-editor .pretty-editor .highlight-escape { color: #aaa; font-weight: bold; } /* random text typed into the block instead of commands, useful as comments */ .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .block-comment, .subtitle-text-editor .pretty-editor .block-comment { color: #000; font-weight: bold; } .webapp[data-setting-syntaxhighlighting="true"] .webapp-edit-subtitle-pane .original-line .syntax-error, .subtitle-text-editor .pretty-editor .syntax-error { color: #c00; text-decoration: underline; text-decoration-line: underline; text-decoration-style: dotted; text-decoration-color: #d00; text-decoration-thickness: 2px; } .numeric-input-wrapper { display: flex; } .webapp-persistent-popup-overlay .popup .numeric-input-wrapper input[type=text], .webapp-persistent-popup-overlay .popup .numeric-input-wrapper input:not([type]), .numeric-input-wrapper input[type=text], .numeric-input-wrapper input:not([type]) { border-right: none; } .numeric-input-adjustment-arrows { display: flex; flex-direction: column; width: 12px; } .numeric-input-adjustment-arrow-separator { border-bottom: 1px solid #999; } .numeric-input-adjustment-arrow-increase, .numeric-input-adjustment-arrow-decrease { flex: 1; border: 1px solid #999; background-color: #e8e8e8; } .numeric-input-adjustment-arrow-increase { border-bottom: none; } .numeric-input-adjustment-arrow-decrease { border-top: none; } html.supports-hover .numeric-input-adjustment-arrow-increase:hover, html.supports-hover .numeric-input-adjustment-arrow-decrease:hover { background-color: #ddd; } .dropdown { position: relative; } .dropdown-handle { user-select: none; cursor: default; } .dropdown-handle-text { display: inline-block; max-width: 100%; white-space: nowrap; overflow-x: hidden; text-overflow: ellipsis; } .dropdown-contents { position: absolute; user-select: none; cursor: default; display: none; z-index: 9; } .dropdown-item { user-select: none; background-color: #fff; width: 100%; padding: 4px 8px; box-sizing: border-box; } html.supports-hover .dropdown-item:hover { background-color: #f4f4f4; } .dropdown-contents { border: 1px solid #999; border-top-style: none; width: 100%; box-sizing: border-box; } .dropdown-item-text { font-size: 12px; color: #333; } .dropdown-open .dropdown-contents { display: block; } .dropdown-handle { font-size: 12px; padding: 4px 24px 4px 8px; color: #333; background-color: white; border: 1px solid #999; height: 25px; box-sizing: border-box; min-width: 100px; position: relative; } .dropdown-handle::before { content: ""; border-left: 1px solid #999; position: absolute; right: 0; top: 0; bottom: 0; width: 15px; background-color: #e8e8e8; } html.supports-hover .dropdown-handle:hover::before { background-color: #ddd; } .webapp-subtitle-list-pane { flex: 1; overflow: hidden; display: flex; flex-direction: column; user-select: none; border-top: 1px solid #aaa; } .subtitle-list-content { overflow-y: scroll; flex: 1; counter-reset: lineno; display: flex; flex-direction: column; } .subtitle-list-element, .subtitle-list-header { border-bottom: 1px solid #aaa; font-family: "Courier New", monospace; display: flex; align-items: stretch; font-size: 12px; } .subtitle-list-element { cursor: pointer; counter-increment: lineno; } html.supports-hover .subtitle-list-element:hover { background-color: #dfc; } .subtitle-list-header { background-color: #bdf; font-weight: bold; } .subtitle-list-data-columns { display: flex; flex: 1; overflow: hidden; } .subtitle-list-column-lineno, .subtitle-list-column-start, .subtitle-list-column-end, .subtitle-list-column-cps, .subtitle-list-column-style, .subtitle-list-column-text { display: flex; } .subtitle-list-column-actor { display: none; } .subtitle-list-column-lineno, .subtitle-list-column-start, .subtitle-list-column-end, .subtitle-list-column-cps, .subtitle-list-column-style, .subtitle-list-column-actor, .subtitle-list-column-text { box-sizing: border-box; padding: 0 6px; align-items: center; justify-content: center; } .subtitle-list-column-start, .subtitle-list-column-end, .subtitle-list-column-cps, .subtitle-list-column-style, .subtitle-list-column-actor, .subtitle-list-column-text { height: 26px; } .subtitle-list-column-lineno, .subtitle-list-column-start, .subtitle-list-column-end, .subtitle-list-column-cps, .subtitle-list-column-actor, .subtitle-list-column-style { border-right: 1px solid #aaa; } .subtitle-list-column-lineno { width: 34px; } html:not(.supports-hover) .subtitle-list-element .subtitle-list-column-lineno, html.supports-hover .subtitle-list-element:not(:hover) .subtitle-list-column-lineno { background-color: #dfd; } .subtitle-list-element .subtitle-list-column-lineno::before { content: counter(lineno); } .subtitle-list-column-cps[data-cps="NaN"] { color: transparent; } .subtitle-list-column-cps[data-cps="16"] { background-color: rgba(238, 0, 0, 0.125); } .subtitle-list-column-cps[data-cps="17"] { background-color: rgba(238, 0, 0, 0.1875); } .subtitle-list-column-cps[data-cps="18"] { background-color: rgba(238, 0, 0, 0.25); } .subtitle-list-column-cps[data-cps="19"] { background-color: rgba(238, 0, 0, 0.3125); } .subtitle-list-column-cps[data-cps="20"] { background-color: rgba(238, 0, 0, 0.375); color: black; } .subtitle-list-column-cps[data-cps="21"] { background-color: rgba(238, 0, 0, 0.4375); color: black; } .subtitle-list-column-cps[data-cps="22"] { background-color: rgba(238, 0, 0, 0.5); color: black; } .subtitle-list-column-cps[data-cps="23"] { background-color: rgba(238, 0, 0, 0.5625); color: black; } .subtitle-list-column-cps[data-cps="24"] { background-color: rgba(238, 0, 0, 0.625); color: black; } .subtitle-list-column-cps[data-cps="25"] { background-color: rgba(238, 0, 0, 0.6875); color: black; } .subtitle-list-column-cps[data-cps="26"] { background-color: rgba(238, 0, 0, 0.75); color: black; } .subtitle-list-column-cps[data-cps="27"] { background-color: rgba(238, 0, 0, 0.8125); color: black; } .subtitle-list-column-cps[data-cps="28+"] { background-color: rgba(238, 0, 0, 0.875); color: black; } .subtitle-list-column-start, .subtitle-list-column-end { width: 100px; } .subtitle-list-column-cps { width: 34px; } .subtitle-list-column-actor { width: 100px; } .subtitle-list-column-style { width: 90px; line-height: 11px; } .subtitle-list-column-text { flex: 1; justify-content: flex-start; padding: 6px 10px; overflow-x: hidden; white-space: nowrap; } .subtitle-list-content .subtitle-list-element.currently-visible:not(.currently-selected) .subtitle-list-data-columns { background-color: #ffd; } .subtitle-list-content .subtitle-list-element.comment:not(.currently-selected) .subtitle-list-data-columns { background-color: #ddf; } html.supports-hover .subtitle-list-content .subtitle-list-element.currently-selected > *, html:not(.supports-hover) .subtitle-list-content .subtitle-list-element.currently-selected > * { background-color: #afb; } .subtitle-list-column-text .hard-linebreak { opacity: 0.4; font-weight: bold; margin-left: 2px; margin-right: 2px; } .subtitle-list-column-text .special { display: inline-block; line-height: 14px; position: relative; top: 1px; } .subtitle-list-element.overlapping { color: #d00; font-weight: bold; } .webapp-video-player-pane:not(.video-scale-auto) ~ .webapp-edit-subtitle-pane { min-width: 0 !important; } @media screen and (max-width: 960px) { .edit-subtitle-timing-and-style-bar { flex-wrap: wrap; align-items: flex-start; } .edit-subtitle-timing-and-style-bar { margin-top: -8px; margin-left: -6px; } .edit-subtitle-timing-and-style-bar > * { margin-top: 8px; margin-left: 6px; margin-right: 0; } .webapp-edit-subtitle-pane { min-width: 298px; } .webapp-video-player-pane { max-width: calc(100% - 298px); } .webapp-video-player-pane .video-area { width: 100vw; max-width: 100%; min-width: 0; min-height: 0; } .buttons-bar { flex-wrap: wrap; margin-top: -6px; } .buttons-bar > * { margin-top: 6px; } .buttons-bar .line-deltas { flex: 1; justify-content: flex-end; } .subtitle-text-editor textarea { min-height: 50px; } } @media screen and (max-width: 520px) { .webapp-upper { flex-direction: column; } .webapp-edit-subtitle-pane { border-top: 1px solid #d8d8d8; } .webapp-video-player-pane .video-area { width: 100vw; max-width: 100%; } .webapp-edit-subtitle-pane { min-width: 0; } .webapp-video-player-pane { max-width: 100%; } .subtitle-list-column-start, .subtitle-list-column-end { width: 90px; } .subtitle-list-column-style { width: 70px; } } @media screen and (max-width: 400px) { .webapp-upper { flex-direction: column; } .webapp-edit-subtitle-pane { min-width: 0; } .subtitle-list-data-columns { flex-wrap: wrap; } .subtitle-list-header .subtitle-list-column-text { display: none; } .subtitle-list-column-style { flex: 1; border-right: none; overflow: hidden; justify-content: flex-start; padding-left: 10px; } .subtitle-list-column-text { border-top: 1px solid #aaa; min-width: 100%; } } .webapp-video-player-pane.fullscreen { width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; max-width: none !important; overflow: hidden; align-items: center; } .webapp-video-player-pane.fullscreen .spacer { flex: 1; background-color: #eee; } .webapp-video-player-pane.fullscreen .video-area-wrapper { flex: unset !important; } .webapp-video-player-pane.fullscreen .video-area { height: calc(100vh - 63px); width: 100vw !important; max-width: none !important; background-color: #111; display: flex; justify-content: center; align-items: center; flex: unset !important; } .webapp-video-player-pane.fullscreen .video-wrapper-inner { display: flex; align-items: center; justify-content: center; overflow: hidden; max-height: 100%; position: relative; flex: unset !important; max-width: 100vw !important; } .webapp-video-player-pane.fullscreen .controls-area { align-self: stretch; } .webapp-video-player-pane.fullscreen ~ .webapp-edit-subtitle-pane { display: none; } .webapp-menu-item { padding: 8px 12px; background-color: #f4f4f4; cursor: pointer; display: flex; user-select: none; } .webapp-menu-separator { border-bottom: 1px solid #ccc; } html.supports-hover .webapp-menu-item:hover { background-color: #ddd; } .webapp-menu { position: absolute; right: 0; z-index: 9; top: calc(100% + 1px); border-left: 1px solid #aaa; border-bottom: 1px solid #aaa; display: none; } .webapp-menu.webapp-menu-open { display: block; } .webapp-sub-menu-item { padding: 8px 12px; cursor: pointer; background-color: #f4f4f4; user-select: none; display: flex; } .webapp-sub-menu { position: absolute; right: 100%; border: 1px solid #aaa; top: -1px; } html.supports-hover .webapp-sub-menu-item:hover { background-color: #ddd; } .webapp-header-bar .spacer { flex: 1; } .webapp-mobile-menu-toggle-button { display: flex; position: absolute; right: 0; top: 0; cursor: pointer; font-size: 19px; flex-direction: column; justify-content: center; align-items: center; height: 100%; padding: 0px 12px; background-color: #eee; user-select: none; } html.supports-hover .webapp-mobile-menu-toggle-button:hover { background-color: #ddd; } .webapp-menu-item-icon:not(:empty) { margin-right: 6px; } .webapp-menu-load-subtitles-file-input, .webapp-menu-load-audio-file-input, .webapp-menu-load-video-file-input { display: none; } .radio-and-label label, .checkbox-and-label label { display: flex; align-items: center; user-select: none; font-size: 12px; font-family: "Courier New", monospace; cursor: pointer; } .radio-and-label input[type=radio], .checkbox-and-label input[type=checkbox] { display: none; } .radio-and-label .pseudo-radio, .checkbox-and-label .pseudo-checkbox { display: inline-block; box-sizing: border-box; width: calc(1em + 2px); height: calc(1em + 2px); border: 1px solid #999; background-color: #fff; position: relative; } .radio-and-label .pseudo-radio { border-radius: 50%; } .radio-and-label input[type=radio]:checked + .pseudo-radio::before, .checkbox-and-label input[type=checkbox]:checked + .pseudo-checkbox::before { content: ""; position: absolute; top: 2px; left: 2px; display: block; width: calc(100% - 4px); height: calc(100% - 4px); background-color: #27b; top: 50%; left: 50%; transform: translate(-50%,-50%); } .radio-and-label input[type=radio]:checked + .pseudo-radio::before { border-radius: 50%; } .webapp-context-menu { position: absolute; user-select: none; border: 1px solid #aaa; z-index: 99999; display: none; } .webapp-context-menu-option { background-color: #e8e8e8; display: flex; align-items: center; } .webapp-context-menu-option.TODO * { color: #999 !important; } html.supports-hover .webapp-context-menu-option:not(.TODO):hover { background-color: #ddd; } .webapp-context-menu-option-text { padding: 6px 8px; } .webapp-context-menu-option-text:first-child { padding-left: 32px; font-size: 13px; } .webapp-context-menu-option-accelerator { font-size: 11px; color: #555; flex: 1; text-align: right; padding-left: 16px; padding-right: 12px; } .webapp-context-menu-separator { border-bottom: 1px solid #ccc; } .webapp-persistent-popup-overlay, .popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999; } .webapp-persistent-popup-overlay { z-index: 500; display: none; } .webapp-persistent-popup-overlay.visible { display: block; } .popup-overlay-fade { background-color: rgba(0,0,0,0.25); width: 100%; height: 100%; } .popup-wrapper { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-width: calc(100% - 40px); max-height: calc(100% - 40px); } .popup { border: 1px solid #999; max-width: 480px; } .webapp-complex-popup, .popup-header { padding: 5px 10px; background-color: #ddd; border-bottom: 1px solid #bbb; } .popup-title { font-size: 14px; user-select: none; } .popup-body { padding: 0 0 15px; background-color: #eee; font-size: 14px; } .popup-content { display: flex; flex-direction: column; align-items: center; min-width: 200px; min-height: 30px; flex: 1; overflow-y: auto; max-height: 320px; padding: 15px 15px 0; } .webapp-persistent-popup-overlay .popup-content { align-items: flex-start; justify-content: flex-start; } .webapp-persistent-popup-overlay .checkbox-and-label label { font-family: 'Arial', sans-serif; } .popup-buttons { display: flex; align-items: center; justify-content: center; margin-top: 15px; overflow: hidden; padding-left: 10px; padding-right: 10px; box-sizing: border-box; width: 100%; } .popup-button { padding: 5px 10px; text-align: center; width: 80px; box-sizing: border-box; background-color: #e8e8e8; border: 1px solid #999; font-size: 13px; user-select: none; flex-shrink: 1; } html.supports-hover .popup-button:hover { background-color: #ddd; } .popup-button:not(:last-child) { margin-right: 10px; } .radio-and-label .pseudo-radio + .label, .checkbox-and-label .pseudo-checkbox + .label { margin-left: 5px; padding-top: 1px; } .edit-subtitle-timing-and-style-bar input.actor-textbox { width: 140px; text-align: left; font-family: 'Arial', sans-serif; font-weight: normal; } .edit-subtitle-timing-and-style-bar input.actor-textbox:placeholder-shown { color: #888; } .edit-subtitle-timing-and-style-bar input.actor-textbox:placeholder-shown:focus { color: transparent; caret-color: black; } .webapp-persistent-popup-overlay .popup { max-width: 640px; } .webapp-persistent-popup-overlay .popup-content { align-items: flex-start; justify-content: flex-start; } .webapp-persistent-popup-overlay .popup-content { font-size: 12px; } .webapp-persistent-popup-overlay .row:not(:first-child) { margin-top: 20px; } .webapp-persistent-popup-overlay .label { font-weight: bold; margin-bottom: 2px; } .webapp-persistent-popup-overlay .radio-and-label .label, .webapp-persistent-popup-overlay .checkbox-and-label .label { margin-bottom: 0; } .webapp-persistent-popup-overlay .radio-and-label, .webapp-persistent-popup-overlay .checkbox-and-label { margin-bottom: 3px; } .subtitle-adjustment-bar { display: flex; margin-bottom: 7px; flex-wrap: wrap; margin-top: -5px; } .subtitle-adjustment-bar .button { font-size: 12px; font-weight: bold; margin-top: 5px; } .play-triangle { font-weight: normal; font-size: 0.75em; } html.supports-hover .subtitle-adjustment-bar .button:hover { background-color: #ddd; } .subtitle-adjustment-bar .separator { border-right: 1px solid #ddd; margin-left: 5px; margin-right: 5px; margin-top: 5px; } .webapp-persistent-popup-overlay .popup input[type="text"], .webapp-persistent-popup-overlay .popup .numeric-input { height: 25px; padding: 4px 6px; border: 1px solid #999; background-color: white; font-size: 12px; } .webapp-persistent-popup-overlay .popup .numeric-input { text-align: center; font-family: "Courier New", monospace; font-weight: bold; color: #333; max-width: 75px; } .settings-popup .webapp-settings-language-dropdown { min-width: 130px; } .settings-popup .webapp-settings-leads { display: flex; } .settings-popup .webapp-settings-leads > *:not(:last-child) { margin-right: 25px; } .webapp-settings-visualiser-dropdown { max-width: 200px; margin-bottom: 5px; } .webapp-settings-import-dropdown { max-width: 200px; margin-bottom: 5px; } .webapp-settings-line-comparison-mode-dropdown { max-width: 200px; margin-bottom: 5px; } .webapp-settings-video-res-dropdown { max-width: 250px; margin-bottom: 5px; } .webapp-settings-actor-dropdown, .webapp-settings-video-pane-dropdown { max-width: 150px; margin-bottom: 5px; } .info-popup .popup-body { width: 420px; max-width: 100%; } .info-popup .row { width: 100%; } .info-popup .row-flex-inner, .info-popup .row > label { display: flex; align-items: center; width: 100%; } .info-popup .row:not(:first-child) { margin-top: 10px; } .info-popup .row-flex-inner > .label, .info-popup .row > label .label { margin-right: 10px; width: 100px; } .info-popup .row label input { flex: 1; } .info-popup .resolution-row { display: flex; align-items: center; } .info-popup .resolution-row .numeric-input { width: 50px; } .info-popup .resolution-row > *:not(:last-child) { margin-right: 10px; } .info-popup .after-input { margin-left: 10px; } .info-popup .popup-content { height: 520px; } .style-editor-popup .popup-content { width: 720px; max-width: 100%; box-sizing: border-box; height: 360px; max-height: calc(100vh - 40px - 28px - 15px - 15px - 28px - 15px); } .style-editor-popup .columns { display: flex; width: 100%; box-sizing: border-box; } .style-editor-popup .columns > .left-side { width: calc(50% - 10px); margin-right: 20px; } .style-editor-popup .columns > .right-side { width: calc(50% - 10px); } .style-editor-popup .row > label > .label, .style-editor-popup .row > .label { width: 100%; } .webapp-style-editor-style-name { width: 100%; } .style-editor-popup .font-family-and-size { width: 100%; display: flex; } .webapp-style-editor-font-family { flex: 1; margin-right: 6px; } .webapp-style-editor-font-size { width: 50px; } .style-editor-popup .font-styling-options { width: 100%; display: flex; justify-content: center; margin-top: 6px; flex-wrap: wrap; } .style-editor-popup .font-styling-options .checkbox-and-label:not(:last-child) { margin-right: 10px; } .style-editor-popup .style-colours { width: 100%; display: flex; justify-content: center; margin-top: 4px; } .style-editor-popup .style-colours .style-colour { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 56px; } .style-editor-popup .style-colours .style-colour:not(:last-child) { margin-right: 10px; } .colour-input { width: 50px; height: 23px; box-sizing: border-box; border: 1px solid #999; padding: 1px; } html.supports-hover .colour-input:hover { border-color: #27b; } .colour-input .colour-preview { width: 100%; height: 100%; } .style-editor-popup .style-colour .colour-input { margin-top: 2px; } .style-editor-popup .margins-row { display: flex; flex: 1; justify-content: center; width: 100%; margin-top: 4px; } .style-editor-popup .margin-input { display: flex; flex-direction: column; align-items: center; } .style-editor-popup .margin-input:not(:last-child) { margin-right: 10px; } .style-editor-popup .margin-input .label::after { display: inline-block; width: 8px; content: ""; } .style-editor-popup .margin-input .numeric-input { width: 50px; } .style-editor-popup .popup { max-width: 720px; } .style-editor-popup .margins-and-alignment { display: flex; flex-wrap: wrap; width: 100%; } .style-editor-popup .margins-section { display: flex; flex: 1; margin-right: 10px; margin-bottom: 20px; flex-direction: column; } .style-editor-popup .alignment-section { flex: 1; } .alignment-grid { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 4px; } .alignment-grid-row { display: flex; flex-direction: row; align-items: center; justify-content: center; } .alignment-grid-row:not(:last-child) { margin-bottom: 2px; } .alignment-grid .radio-and-label .pseudo-radio + .label { margin-left: 3px; } .alignment-grid .radio-and-label:not(:last-child) { margin-right: 7px; } .outline-and-shadow { display: flex; justify-content: center; margin-top: 4px; } .webapp-style-editor-outline-shape { flex: 1; min-width: 110px; } .outline-and-shadow .input-and-label:not(:last-child) { margin-right: 10px; } .misc-row { display: flex; align-items: center; margin-bottom: 10px; } .label + .misc-row { margin-top: 4px; } .misc-row .spacer { flex: 1; } .misc-row .input-and-label { display: flex; align-items: center; } .misc-row .input-and-label:not(:last-child) { margin-right: 20px; } .misc-row .input-and-label:last-child .label { min-width: 70px; } .misc-row > .label, .misc-row .input-and-label:first-child .label { min-width: 100px; } .misc-row .input-and-label input { width: 60px; } .misc-row > .label + .dropdown:last-child { flex: 1; } .outline-and-shadow-label { display: none; } .outline-and-shadow { margin-top: 0; justify-content: flex-start; flex-wrap: wrap; } .outline-and-shadow .input-and-label:first-child { flex: 1; } .dropdown-contents { overflow-x: hidden; overflow-y: auto; max-height: 94px; } .style-editor-popup .preview-row { flex: 1; display: flex; flex-direction: column; } .style-editor-popup .preview { margin-top: 4px; width: 100%; min-height: 100px; flex: 1; border: 1px solid #999; box-sizing: border-box; background-image: linear-gradient(45deg, rgba(0,0,0,0.125) 25%, transparent 25%), linear-gradient(135deg, rgba(0,0,0,0.125) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.125) 75%), linear-gradient(135deg, transparent 75%, rgba(0,0,0,0.125) 75%); background-size: 16px 16px; background-position: 0 0, 8px 0, 8px -8px, 0px 8px; position: relative; overflow: hidden; } .style-editor-popup .preview-options-row { margin-top: 6px; width: 100%; display: flex; } .webapp-style-editor-preview-text { flex: 1; } .webapp-style-editor-preview-render { position: absolute; left: 0%; top: 50%; transform: translateY(-50%); width: 100%; text-align: center; user-select: none; } .webapp-style-editor-preview-background-colour { height: 25px; margin-left: 6px; } .style-editor-popup .label { user-select: none; } @media screen and (max-width: 767px) { .style-editor-popup .popup-content .columns { flex-direction: column; } .style-editor-popup .popup-content .columns > .left-side { margin-right: 0; margin-bottom: 10px; } .style-editor-popup .popup-content .columns > .left-side, .style-editor-popup .popup-content .columns > .right-side { width: 100%; } } @media screen and (max-width: 400px) { .outline-and-shadow .input-and-label { margin-bottom: 10px; } .outline-and-shadow .input-and-label:not(:first-child) { margin-right: 0px; } } @media screen and (max-width: 440px) { .style-editor-popup .misc-row { flex-wrap: wrap; } .misc-row .input-and-label:last-child .label { min-width: 100px; } .misc-row .input-and-label { margin-bottom: 12px; } } .styles-popup .popup { max-width: 720px; } .styles-popup .popup-content { width: 720px; max-width: 100%; box-sizing: border-box; } .styles-popup .columns { display: flex; flex-direction: row; width: 100%; box-sizing: border-box; } .styles-popup .columns .left-side { width: calc(50% - 12px); margin-right: 24px; } .styles-popup .columns .right-side { width: calc(50% - 12px); } .styles-popup .catalog-row { display: flex; width: 100%; align-items: center; } .styles-popup .top-side { width: 100%; margin-bottom: 15px; } .webapp-styles-catalog-dropdown { flex: 1; margin-right: 10px; } .webapp-styles-catalog-button-new, .webapp-styles-catalog-button-delete { padding-bottom: 4px; padding-top: 3px; height: 25px; } .webapp-styles-popup-list-box-wrapper { display: flex; width: 100%; height: 142px; } .webapp-styles-popup-list-box { background-color: white; border: 1px solid #999; align-self: stretch; flex: 1; overflow-y: auto; } .webapp-styles-popup-list-ordering-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-left: 3px; } .styles-popup .button-row { display: flex; margin-top: 6px; } .styles-popup .button-row .popup-button { flex: 1; } .styles-popup .button-row .popup-button:not(:last-child) { margin-right: 6px; } .styles-popup .order-button-with-tooltip { position: relative; } .styles-popup .order-button { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background-color: #e8e8e8; border: 1px solid #999; user-select: none; font-size: 20px; font-weight: bold; } .styles-popup .order-button.order-button-sort-alphabetically { font-size: 11px; } .styles-popup .order-button-with-tooltip:not(:last-child) { margin-bottom: 3px; } .styles-popup .order-button-with-tooltip .tooltip { position: absolute; top: 50%; right: 100%; white-space: nowrap; transform: translateY(-50%); display: none; background-color: #f8f8f8; border: 1px solid #999; border-radius: 3px; padding: 6px 10px; margin-right: 2px; color: #333; } html.supports-hover .styles-popup .order-button-with-tooltip:not(.TODO) .order-button:hover { background-color: #ddd; } html.supports-hover .styles-popup .order-button-with-tooltip:not(.TODO) .order-button:hover + .tooltip { display: block; } @media screen and (max-width: 520px) { .styles-popup .columns { flex-direction: column; } .styles-popup .columns .left-side { width: 100%; margin-right: 0; margin-top: 20px; order: 2; } .styles-popup .columns .right-side { width: 100%; order: 1; } } .list-box-item { padding: 4px 8px; border-top: 1px solid white; border-bottom: 1px solid white; user-select: none; cursor: default; } .list-box-item.list-box-item-selected { background-color: #def; border-color: #cdf; } html.supports-hover .list-box-item:not(.list-box-item-selected):hover { background-color: #f0f8ff; border-color: #def; } .video-scale-dropdown .dropdown-contents, .webapp-info-ycbcr-matrix.dropdown-open .dropdown-contents, .webapp-info-wrap-style-dropdown.dropdown-open .dropdown-contents { bottom: 100%; border-bottom-style: none; border-top-style: solid; } .insert-new-line-row { font-family: 'Courier New', monospace; align-items: center; justify-content: center; display: flex; min-height: 27px; height: 27px; border-bottom: 1px solid #ddd; box-sizing: border-box; background-color: #fcfcfc; font-size: 13px; order: 99999; cursor: pointer; user-select: none; color: #333; } html.supports-hover .insert-new-line-row:hover { background-color: #f4f4f4; } .webapp-menu-sub-menu-wrapper { position: relative; } @media screen and (max-width: 380px) { .hide-under-380px { display: none; } } @media screen and (min-width: 381px) { .show-under-380px { display: none; } } .colour-chooser-popup .popup-content { max-height: 380px; } .colour-chooser-popup .inputs { display: flex; border: 1px solid #ccc; border-radius: 2px; padding: 8px; width: 100%; box-sizing: border-box; justify-content: center; } .colour-chooser-popup .input-and-label { display: flex; flex-direction: column; align-items: center; flex-shrink: 1; } .colour-chooser-popup .input-and-label:not(:last-child) { margin-right: 8px; } .colour-chooser-popup .input-and-label .label { padding-right: 8px; box-sizing: border-box; width: 100%; text-align: center; } .colour-chooser-popup .input-and-label .numeric-input { width: 50px; } .colour-chooser-popup .rgb, .colour-chooser-popup .other, .colour-chooser-popup .hsl { margin-bottom: 20px; } .colour-chooser-popup .rgb,, .colour-chooser-popup .hsv { margin-bottom: 10px; } .colour-chooser-other-html { max-width: 70px; } .colour-chooser-other-aegisub { width: 80px; } .colour-chooser-other-html, .colour-chooser-other-aegisub { text-align: center; flex: 1; font-family: 'Courier New', monospace; } .colour-chooser-popup .rgb > .label, .colour-chooser-popup .hsl > .label, .colour-chooser-popup .hsv > .label { margin-left: 6px; margin-bottom: -8px; margin-top: -8px; background-color: #eee; z-index: 1; position: relative; display: inline-block; padding: 0px 2px; } .colour-chooser-popup .other .inputs { border: none; padding: 0; } .colour-chooser-popup .colour-spectrum-and-preview-block { padding-top: 2px; margin-bottom: 15px; width: 100%; } .colour-chooser-popup .colour-preview-row { display: flex; align-items: center; justify-content: center; width: 100%; } .colour-chooser-popup .colour-preview-wrapper { padding: 1px; border: 1px solid #aaa; } .colour-chooser-popup .colour-preview { width: 60px; height: 36px; } .webapp-style-editor-preview-render .subtitle { display: flex; justify-content: center; align-items: center; text-align: center; flex-direction: column; } .webapp-style-editor-preview-render .subtitle .subtitle-line { position: relative; } .webapp-style-editor-preview-render .subtitle .subtitle-line .subtitle-line-shadow, .webapp-style-editor-preview-render .subtitle .subtitle-line .subtitle-line-outline { position: absolute; width: 100%; } .webapp-style-editor-preview-render .subtitle .subtitle-line .subtitle-line-text { position: relative; z-index: 2; } .webapp-style-editor-preview-render .subtitle > br { display: none; } .dummy-video-popup .row { width: 100%; } .dummy-video-resolution-dropdown { max-width: 100%; } .dummy-video-popup .popup-content .dummy-video-checkerboard-pattern-row, .dummy-video-popup .popup-content .dummy-video-custom-resolution-row { display: flex; align-items: center; max-width: 100%; margin-top: 10px; } .dummy-video-custom-resolution-row .numeric-input { width: 50px } .dummy-video-custom-resolution-row > span { margin-left: 10px; margin-right: 10px; } .dummy-video-duration-row { display: flex; align-items: center; } .dummy-video-duration-row .input-and-label:not(:last-child) { margin-right: 10px; } .dummy-video-duration-in-seconds { width: 100px; } .dummy-video-duration-in-frames { width: 65px; } .dummy-video-frame-rate { width: 65px; } .dummy-video-popup .popup-buttons { margin-top: 25px; } .webapp[data-setting-videopane="hide"] .webapp-video-player-pane { display: none; } .webapp[data-setting-showactorcolumn="always"] .subtitle-list-column-actor, .webapp[data-setting-showactorcolumn="if-present"] .actor-present .subtitle-list-column-actor { display: flex; } .webapp[data-setting-syntaxhighlighting="false"] .subtitle-text-editor .pretty-editor { display: none; } .webapp[data-setting-syntaxhighlighting="false"] .subtitle-text-editor textarea { background-color: white; border-color: #999; color: #000; } .webapp-edit-subtitle-pane .original-line { width: 100%; background-color: white; border: 1px solid #999; margin-bottom: 8px; padding: 4px 6px; min-height: 24px; box-sizing: border-box; font-size: 12px; font-family: "Courier New", monospace; } .webapp[data-setting-linecomparison="disabled"] .webapp-edit-subtitle-pane .original-line { display: none; } .video-area.checkerboard { background-image: linear-gradient(45deg, rgba(0,0,0,0.125) 25%, transparent 25%), linear-gradient(135deg, rgba(0,0,0,0.125) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.125) 75%), linear-gradient(135deg, transparent 75%, rgba(0,0,0,0.125) 75%); background-size: 16px 16px; background-position: 0 0, 8px 0, 8px -8px, 0px 8px; } .subtitle-audio-visualiser-wrapper { display: flex; } .webapp[data-setting-audiovisualiser="hidden"] .subtitle-audio-visualiser-wrapper { display: none; } .TODO { border-color: #ddd !important; color: #ccc !important; } .order-button-with-tooltip.TODO .order-button, .dropdown.TODO { opacity: 0.4; } .TODO .list-box-item { background-color: #f4f4f4; border-color: #e8e8e8; color: #bbb; } .subtitle-audio-visualiser { border: 1px solid #999; margin-bottom: 8px; box-sizing: border-box; background-color: #000; flex: 1; } .waveform-gridline-minor { height: 6px; border-right: 1px solid #9cf; box-sizing: border-box; position: absolute; } .waveform-gridline-major { height: 8px; border-right: 2px solid #9cf; box-sizing: border-box; position: absolute; } .waveform-gridline-bottom { position: absolute; bottom: 0px; border-bottom: 2px solid #9cf; width: 100%; } .gridlines { display: flex; align-items: flex-end; position: relative; height: 100%; } .waveform-timestamps { position: absolute; top: 0; width: 100%; height: 100%; display: flex; color: white; font-weight: bold; } .waveform-timestamps-and-grid-lines { position: relative; height: 30px; overflow: hidden; } .waveform-timestamp { font-size: 11px; font-family: 'Courier New', monospace; margin-top: 4px; position: absolute; transform: translateX(-50%); } .waveform-and-lines { position: relative; height: 64px; } .visualiser-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; user-select: none; } .visualiser-current-region { position: absolute; height: 100%; background-color: rgba(255,0,255,0.5); } .visualiser-next-line, .visualiser-previous-line { background-color: rgba(128,128,128,0.3); } .visualiser-current-line { background-color: rgba(128,0,255,0.3); } .visualiser-overlay-line { height: 100%; position: absolute; top: 0; } .visualiser-line-start, .visualiser-line-end { border-bottom: 3px solid #777; border-top: 3px solid #777; height: 100%; width: 5px; position: absolute; box-sizing: border-box; } .visualiser-line-end { right: 0; border-right: 3px solid #777; } .visualiser-line-start { border-left: 3px solid #777; left: 0; } .visualiser-current-line-start { border-color: #c00; cursor: ew-resize; } .visualiser-current-line-end { /* border-color: #48c; */ border-color: #06f; cursor: ew-resize; } .button-play-line { font-weight: bold; } .subtitle-add-lead-in, .subtitle-add-lead-out { color: #333; font-weight: bold; } .line-start-colour { color: #c00; } .line-end-colour { color: #06f; } .waveform > canvas { height: 100%; width: 100%; } .visualiser-location-and-progress { height: 20px; border-top: 2px solid #9cf; position: relative; overflow: hidden; } .visualiser-progress { height: 100%; position: absolute; width: 40px; margin-left: -40px; box-sizing: border-box; background-image: linear-gradient(to right, transparent, #4cf); } .line-editor-audio { display: none; } .subtitle-style-dropdown { max-width: 50%; } @media screen and (max-width: 420px) { .actor-textbox { display: none; } } @media screen and (max-width: 350px) { .subtitle-adjustment-bar .separator { margin-left: 4px; margin-right: 4px; } .subtitle-adjustment-bar .button, .buttons-bar .button { width: 23px; height: 24px; } .buttons-bar .button:not(:last-child), .subtitle-adjustment-bar .button:not(:last-child) { margin-right: 4px; } } @media screen and (max-width: 330px) { .subtitle-adjustment-bar .button, .buttons-bar .button { width: 22px; height: 22px; } } @media screen and (max-width: 320px) { .subtitle-adjustment-bar .button, .buttons-bar .button { width: 21px; height: 22px; } } .visualiser-current-audio-time { position: absolute; height: 100%; border-right: 1px solid #ddd; display: none; } .subtitle-confirm { color: #080; } .visualiser-slider-inner { position: relative; } .visualiser-zoom-controls { border: 1px solid #999; margin-bottom: 8px; margin-left: 6px; display: flex; user-select: none; } .visualiser-slider { margin-left: 4px; position: relative; width: 20px; padding: 10px 6px; box-sizing: border-box; } .visualiser-slider:last-child { margin-right: 4px; } .visualiser-slider-track { background-color: #aaa; width: 8px; height: 100%; box-sizing: border-box; border-radius: 2px; } .visualiser-slider-fill { position: absolute; background-color: #c00; left: 0; bottom: 0; width: 8px; box-sizing: border-box; border-radius: 2px; } .visualiser-slider-handle { position: absolute; left: 50%; transform: translate(-50%,50%); width: 16px; height: 6px; background-color: #900; bottom: 0; } .video-scale-dropdown .dropdown-handle { min-width: 76px; } .webapp-sub-menu:not(.webapp-sub-menu-open) { display: none; } .video-area-wrapper { overflow: hidden; display: flex; justify-content: center; align-items: center; } .webapp-video-player-pane:not(.fullscreen) .video-area-wrapper { max-width: calc(100vw - 200px); max-height: calc(87.5vh - 95px) } .aspect-fullscreen { max-height: calc(100vh - 63px); max-width: 100vw; display: none; } .webapp-video-player-pane.fullscreen .aspect-fullscreen { display: block; } .webapp-video-player-pane.fullscreen .aspect { display: none; }
0.446977
0.05163
.labels { display: inline-block !important; } .header-footer { background-color: #E9E581; } .inputToDo { width: 72%; border: none; font-size: 21px; border-bottom: solid 1px #1abc9c; -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); -o-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); background: -webkit-gradient(linear, left top, left bottom, color-stop(96%, rgba(255, 255, 255, 0)), color-stop(4%, #1abc9c)); background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #1abc9c 4%); background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #1abc9c 4%); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #1abc9c 4%); background-position: -200px 0; background-size: 200px 100%; background-repeat: no-repeat; color: #0e6252; } .inputToDo:focus, .inputToDo:valid { -webkit-box-shadow: none; box-shadow: none; outline: none; background-position: 0 0; } .inputToDo:focus::-webkit-input-placeholder, .inputToDo:valid::-webkit-input-placeholder { color: #1abc9c; font-size: 11px; -webkit-transform: translateY(-20px); transform: translateY(-20px); visibility: visible !important; } .label__checkbox { display: none; } .label__check { display: inline-block; border-radius: 50%; border: 5px solid rgba(0, 0, 0, 0.1); background: white; vertical-align: middle; margin-right: 20px; width: 2em; height: 2em; cursor: pointer; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-transition: border .3s ease; -o-transition: border .3s ease; transition: border .3s ease; } .label__check i.icon { opacity: 0.2; font-size: 20px; color: transparent; -webkit-transition: opacity .3s .1s ease; -o-transition: opacity .3s .1s ease; transition: opacity .3s .1s ease; -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5); } .label__check:hover { border: 5px solid rgba(0, 0, 0, 0.2); } .label__checkbox:checked + .label__text .label__check { -webkit-animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards; animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards; } .label__checkbox:checked + .label__text .label__check .icon { opacity: 1; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0); color: white; -webkit-text-stroke: 0; -webkit-animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards; animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards; } .center { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } @-webkit-keyframes icon { from { opacity: 0; -webkit-transform: scale(0.3); transform: scale(0.3); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } @keyframes icon { from { opacity: 0; -webkit-transform: scale(0.3); transform: scale(0.3); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } @-webkit-keyframes check { 0% { width: 1.5em; height: 1.5em; border-width: 5px; } 10% { width: 1.5em; height: 1.5em; opacity: 0.1; background: rgba(0, 0, 0, 0.2); border-width: 15px; } 12% { width: 1.5em; height: 1.5em; opacity: 0.4; background: rgba(0, 0, 0, 0.1); border-width: 0; } 50% { width: 2em; height: 2em; background: #00d478; border: 0; opacity: 0.6; } 100% { width: 2em; height: 2em; background: #00d478; border: 0; opacity: 1; } } @keyframes check { 0% { width: 1.5em; height: 1.5em; border-width: 5px; } 10% { width: 1.5em; height: 1.5em; opacity: 0.1; background: rgba(0, 0, 0, 0.2); border-width: 15px; } 12% { width: 1.5em; height: 1.5em; opacity: 0.4; background: rgba(0, 0, 0, 0.1); border-width: 0; } 50% { width: 2em; height: 2em; background: #00d478; border: 0; opacity: 0.6; } 100% { width: 2em; height: 2em; background: #00d478; border: 0; opacity: 1; } }
assets/css/style.css
.labels { display: inline-block !important; } .header-footer { background-color: #E9E581; } .inputToDo { width: 72%; border: none; font-size: 21px; border-bottom: solid 1px #1abc9c; -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); -o-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); background: -webkit-gradient(linear, left top, left bottom, color-stop(96%, rgba(255, 255, 255, 0)), color-stop(4%, #1abc9c)); background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #1abc9c 4%); background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #1abc9c 4%); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #1abc9c 4%); background-position: -200px 0; background-size: 200px 100%; background-repeat: no-repeat; color: #0e6252; } .inputToDo:focus, .inputToDo:valid { -webkit-box-shadow: none; box-shadow: none; outline: none; background-position: 0 0; } .inputToDo:focus::-webkit-input-placeholder, .inputToDo:valid::-webkit-input-placeholder { color: #1abc9c; font-size: 11px; -webkit-transform: translateY(-20px); transform: translateY(-20px); visibility: visible !important; } .label__checkbox { display: none; } .label__check { display: inline-block; border-radius: 50%; border: 5px solid rgba(0, 0, 0, 0.1); background: white; vertical-align: middle; margin-right: 20px; width: 2em; height: 2em; cursor: pointer; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-transition: border .3s ease; -o-transition: border .3s ease; transition: border .3s ease; } .label__check i.icon { opacity: 0.2; font-size: 20px; color: transparent; -webkit-transition: opacity .3s .1s ease; -o-transition: opacity .3s .1s ease; transition: opacity .3s .1s ease; -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5); } .label__check:hover { border: 5px solid rgba(0, 0, 0, 0.2); } .label__checkbox:checked + .label__text .label__check { -webkit-animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards; animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards; } .label__checkbox:checked + .label__text .label__check .icon { opacity: 1; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0); color: white; -webkit-text-stroke: 0; -webkit-animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards; animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards; } .center { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } @-webkit-keyframes icon { from { opacity: 0; -webkit-transform: scale(0.3); transform: scale(0.3); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } @keyframes icon { from { opacity: 0; -webkit-transform: scale(0.3); transform: scale(0.3); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } @-webkit-keyframes check { 0% { width: 1.5em; height: 1.5em; border-width: 5px; } 10% { width: 1.5em; height: 1.5em; opacity: 0.1; background: rgba(0, 0, 0, 0.2); border-width: 15px; } 12% { width: 1.5em; height: 1.5em; opacity: 0.4; background: rgba(0, 0, 0, 0.1); border-width: 0; } 50% { width: 2em; height: 2em; background: #00d478; border: 0; opacity: 0.6; } 100% { width: 2em; height: 2em; background: #00d478; border: 0; opacity: 1; } } @keyframes check { 0% { width: 1.5em; height: 1.5em; border-width: 5px; } 10% { width: 1.5em; height: 1.5em; opacity: 0.1; background: rgba(0, 0, 0, 0.2); border-width: 15px; } 12% { width: 1.5em; height: 1.5em; opacity: 0.4; background: rgba(0, 0, 0, 0.1); border-width: 0; } 50% { width: 2em; height: 2em; background: #00d478; border: 0; opacity: 0.6; } 100% { width: 2em; height: 2em; background: #00d478; border: 0; opacity: 1; } }
0.486819
0.117876
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap'); @import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css'; html { font-family: 'Gelasio', serif; box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } body { margin: 0; } /* ---------------------------- Header -------------------------------- */ header { background-color: #E6E3DE; display: flex; justify-content: space-between; padding: 5px 20px; align-items: center; color: #5F4B4D; } header ul { display: flex; } header ul li { list-style: none; margin: 0px 10px; } header button { background-color: #5F4B4D; color: white; border: none; padding: 7px 12px; } .btn::after { font-family: 'Font Awesome 5 Free'; font-weight: 600; content: '\f002'; margin: 0px 20px 0px 20px; } /* ------------------------- First Section ---------------------------- */ .first { background: url(./Media/craving.jpg); display: flex; justify-content: center; flex-direction: column; align-items: center; padding: 75px 0 175px 0; background-size: cover; } input[type="text"]::placeholder { font-family: "Font Awesome 5 Free"; font-weight: 900; } .first h1 { color: white; font-size: 30px; } .first input { flex-basis: 33px; width: 21vw; opacity: 0.7; } /* ------------------------- Second Section ---------------------------- */ .second { display: flex; flex-direction: column; align-items: center; background: url(./Media/background.jpg); background-size: cover; } article { display: flex; } .big-article { width: 80em; height: 35em; margin: 50px 0 0 0; } .small-article { width: 15em; height: 18em; flex-direction: column; } .big-article .div-image { width: 70%; height: 100%; } .small-article .div-image { width: 100%; height: 80%; } article img { width: 100%; height: 100%; object-fit: cover; } .div-text { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-color: #E6E3DE; } .div-text h3 { font-size: 27px; } .div-text p { font-size: 22px; } .div-text .btn-view { width: 20%; background-color: #554938; border: none; color: white; padding: 5px 7px; font-size: 10px; } .small-articles { display: flex; justify-content: space-between; width: 78%; } .small-article .div-text { font-style: italic; opacity: 0.7; } .second h2 { background: #DBDCDA; padding: 8px 15px; opacity: 0.7; } .bnt-shop { background: #DA4D34; border: none; margin: 3% auto 2% auto; padding: 3px 30px; color: white; font-size: 10px; } /* ---------------------------- Footer -------------------------------- */ footer { display: flex; justify-content: space-around; background-color: #E0DFDB; opacity: 0.9; width: 100%; } footer ul { display: flex; } footer ul li { list-style: none; margin: 5px 5px; } footer ul li::after { content: ''; width: 1px; height: 13px; background-color: black; display: block; position: relative; top: -17px; left: -5px; } footer ul li:first-child::after { display: none; }
Exams/06.HTML & CSS Retake Exam - 17 December 2019/03. Cooking Blog/styles.css
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap'); @import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css'; html { font-family: 'Gelasio', serif; box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } body { margin: 0; } /* ---------------------------- Header -------------------------------- */ header { background-color: #E6E3DE; display: flex; justify-content: space-between; padding: 5px 20px; align-items: center; color: #5F4B4D; } header ul { display: flex; } header ul li { list-style: none; margin: 0px 10px; } header button { background-color: #5F4B4D; color: white; border: none; padding: 7px 12px; } .btn::after { font-family: 'Font Awesome 5 Free'; font-weight: 600; content: '\f002'; margin: 0px 20px 0px 20px; } /* ------------------------- First Section ---------------------------- */ .first { background: url(./Media/craving.jpg); display: flex; justify-content: center; flex-direction: column; align-items: center; padding: 75px 0 175px 0; background-size: cover; } input[type="text"]::placeholder { font-family: "Font Awesome 5 Free"; font-weight: 900; } .first h1 { color: white; font-size: 30px; } .first input { flex-basis: 33px; width: 21vw; opacity: 0.7; } /* ------------------------- Second Section ---------------------------- */ .second { display: flex; flex-direction: column; align-items: center; background: url(./Media/background.jpg); background-size: cover; } article { display: flex; } .big-article { width: 80em; height: 35em; margin: 50px 0 0 0; } .small-article { width: 15em; height: 18em; flex-direction: column; } .big-article .div-image { width: 70%; height: 100%; } .small-article .div-image { width: 100%; height: 80%; } article img { width: 100%; height: 100%; object-fit: cover; } .div-text { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-color: #E6E3DE; } .div-text h3 { font-size: 27px; } .div-text p { font-size: 22px; } .div-text .btn-view { width: 20%; background-color: #554938; border: none; color: white; padding: 5px 7px; font-size: 10px; } .small-articles { display: flex; justify-content: space-between; width: 78%; } .small-article .div-text { font-style: italic; opacity: 0.7; } .second h2 { background: #DBDCDA; padding: 8px 15px; opacity: 0.7; } .bnt-shop { background: #DA4D34; border: none; margin: 3% auto 2% auto; padding: 3px 30px; color: white; font-size: 10px; } /* ---------------------------- Footer -------------------------------- */ footer { display: flex; justify-content: space-around; background-color: #E0DFDB; opacity: 0.9; width: 100%; } footer ul { display: flex; } footer ul li { list-style: none; margin: 5px 5px; } footer ul li::after { content: ''; width: 1px; height: 13px; background-color: black; display: block; position: relative; top: -17px; left: -5px; } footer ul li:first-child::after { display: none; }
0.359701
0.08152
@import url('https://fonts.googleapis.com/css?family=Yeon+Sung&display=swap'); @import url('https://fonts.googleapis.com/css?family=Nunito:400,600,700,800'); @import url('https://fonts.googleapis.com/css?family=Fira+Code&display=swap'); /* Basic Body Definitions */ body{ background: #92d1b4; transition: background .3s ease-in-out; padding-top: 50px; padding-bottom: 60px; padding-left: 30px; padding-right: 30px; height: 100vh; } @media (max-width: 1024px){ .first-column, .second-column, .third-column{ height: auto !important; } body{ padding-top: 10px; padding-bottom: 30px; } } .container-height{ height: 100%; } .row{ height: 100%; } .name-container{ margin-top:0; margin-bottom: 0; left: 0; right:auto; } #japanese-name{ color: #ffffff; font-family: 'Nunito', sans-serif; font-size: 25px; font-weight: 800; text-shadow: 0 0 12px rgba(0,0,0,.75); } #copy{ color: #ffffff; font-family: 'Fira Code', sans-serif; font-size: 12; font-weight: 800; text-shadow: 0 0 12px rgba(0,0,0,.75); } #copy a{ color: #fff; font-family: 'Fira Code', sans-serif; font-size: 12; text-decoration: underline; font-weight: 800; text-shadow: 0 0 12px rgba(0,0,0,.75); } #copy p{ text-align: right; line-height: 0.5em; } @media (max-width: 600px){ #copy p{ text-align: center; line-height: 1.5em; } } /* Start Of Pokémon Types */ .grass{ background: #49d0b0; color: #373737 } .water{ background: #76befe; color: #373737 } .fire{ background: #fc6c6d; color: #373737 } .electric{ background: #ffd76f; color: #373737 } .bug{ background: #3c9882; color: #373737 } .fairy{ background: rgb(233, 77, 184); color: #373737 } .ghost{ background: #1e1e1e; color: #fff; } .rock{ background: #777777; color: #fff; } .fighting{ background: #fcaf6c; color: rgba(0, 0, 0, 0.022) } .ground{ background: #453624; color: #fff; } /* End Of Pokémon Types */ #pkm-name{ color: #ffffff; font-family: 'Yeon Sung', sans-serif; font-size: 35px; font-weight: 800; text-shadow: 0 0 12px rgba(0,0,0,.25); } @media (max-width: 1024px){ .size-container{ margin-bottom: 5px; margin-top:40px; } .name-container{ margin-top: 0; padding-top: 150px; } } @media (max-width: 1024px){ .name-container{ padding-top: 0%; } } #pokemon-image{ max-width: 400px; height: auto; } .pkm-img-position{ justify-content: center; flex-direction: column; } .pkm-img-container{ position: relative; transition: background .3s ease-in-out; background: transparent !important; } @media (max-width: 1024px) { #pokemon-image{ max-width: 100%; height: auto; margin-bottom: 60px; } .pkm-img-position{ justify-content: flex-end; } .container-characteristics{ margin-top: 40px; } } #dollar-value{ display: block; position: absolute; bottom: auto; top: 5px; right: auto; left: 0; font-family: '<NAME>', sans-serif; font-size: 130px; font-weight: 600; word-break: keep-all; word-wrap: normal; transform: translateX(-45%); opacity: .5; color: rgba(0, 0, 0, 0.67); } @media (max-width: 1140px){ #dollar-value{ font-size: 100px; } } @media (max-width: 1024px){ #dollar-value{ font-size: 80px; } } @media (max-width: 768px){ #dollar-value{ position: static; transform: none; } } @media (max-width: 600px){ #dollar-value{ font-size: 64px; } } @media (max-width: 414px){ #dollar-value{ font-size: 48px; } } .container-stats ul { list-style: none; margin: 0; position: relative; padding-left: 25px; } li.item-stats .item-stats-pill { background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%); padding-top: 6px; padding-bottom: 6px; padding-left: 13px; padding-right: 13px; margin-top: 0; margin-bottom: 14px; margin-right: 10px; color: rgba(0,0,0,.65); font-family: 'Nunito', sans-serif; font-weight: 800; letter-spacing: 1px; border-radius: 8px; display: inline-block; font-size: 12px; text-transform: uppercase; box-shadow: 0 20px 25px -10px rgba(0,0,0,.15) } li.item-stats{ display: inline-block; } .container-stats ul::before { content: ''; display: block; width: 4px; top: 0; right: auto; bottom: 10px; left: 0; background: rgba(255,255,255,.35); position: absolute; border-radius: 2px; } @media (max-width: 768px) { .container-stats ul::before { display: none; } } h3{ color: #ffffff; font-family: 'Nunito', sans-serif; font-size: 40px; font-weight: 800; margin-bottom: 30px; text-shadow: 0 15px 30px rgba(0,0,0,.15) } .container-type img{ width: 64px; height: 64px; padding: 10px; background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%); border-radius: 50%; box-shadow: 0 20px 25px -10px rgba(0,0,0,.15); margin: 0 15px 15px 0; } .sidebar-container-top{ max-width: 80%; flex-wrap: wrap; }
src/style.css
@import url('https://fonts.googleapis.com/css?family=Yeon+Sung&display=swap'); @import url('https://fonts.googleapis.com/css?family=Nunito:400,600,700,800'); @import url('https://fonts.googleapis.com/css?family=Fira+Code&display=swap'); /* Basic Body Definitions */ body{ background: #92d1b4; transition: background .3s ease-in-out; padding-top: 50px; padding-bottom: 60px; padding-left: 30px; padding-right: 30px; height: 100vh; } @media (max-width: 1024px){ .first-column, .second-column, .third-column{ height: auto !important; } body{ padding-top: 10px; padding-bottom: 30px; } } .container-height{ height: 100%; } .row{ height: 100%; } .name-container{ margin-top:0; margin-bottom: 0; left: 0; right:auto; } #japanese-name{ color: #ffffff; font-family: 'Nunito', sans-serif; font-size: 25px; font-weight: 800; text-shadow: 0 0 12px rgba(0,0,0,.75); } #copy{ color: #ffffff; font-family: 'Fira Code', sans-serif; font-size: 12; font-weight: 800; text-shadow: 0 0 12px rgba(0,0,0,.75); } #copy a{ color: #fff; font-family: 'Fira Code', sans-serif; font-size: 12; text-decoration: underline; font-weight: 800; text-shadow: 0 0 12px rgba(0,0,0,.75); } #copy p{ text-align: right; line-height: 0.5em; } @media (max-width: 600px){ #copy p{ text-align: center; line-height: 1.5em; } } /* Start Of Pokémon Types */ .grass{ background: #49d0b0; color: #373737 } .water{ background: #76befe; color: #373737 } .fire{ background: #fc6c6d; color: #373737 } .electric{ background: #ffd76f; color: #373737 } .bug{ background: #3c9882; color: #373737 } .fairy{ background: rgb(233, 77, 184); color: #373737 } .ghost{ background: #1e1e1e; color: #fff; } .rock{ background: #777777; color: #fff; } .fighting{ background: #fcaf6c; color: rgba(0, 0, 0, 0.022) } .ground{ background: #453624; color: #fff; } /* End Of Pokémon Types */ #pkm-name{ color: #ffffff; font-family: 'Yeon Sung', sans-serif; font-size: 35px; font-weight: 800; text-shadow: 0 0 12px rgba(0,0,0,.25); } @media (max-width: 1024px){ .size-container{ margin-bottom: 5px; margin-top:40px; } .name-container{ margin-top: 0; padding-top: 150px; } } @media (max-width: 1024px){ .name-container{ padding-top: 0%; } } #pokemon-image{ max-width: 400px; height: auto; } .pkm-img-position{ justify-content: center; flex-direction: column; } .pkm-img-container{ position: relative; transition: background .3s ease-in-out; background: transparent !important; } @media (max-width: 1024px) { #pokemon-image{ max-width: 100%; height: auto; margin-bottom: 60px; } .pkm-img-position{ justify-content: flex-end; } .container-characteristics{ margin-top: 40px; } } #dollar-value{ display: block; position: absolute; bottom: auto; top: 5px; right: auto; left: 0; font-family: '<NAME>', sans-serif; font-size: 130px; font-weight: 600; word-break: keep-all; word-wrap: normal; transform: translateX(-45%); opacity: .5; color: rgba(0, 0, 0, 0.67); } @media (max-width: 1140px){ #dollar-value{ font-size: 100px; } } @media (max-width: 1024px){ #dollar-value{ font-size: 80px; } } @media (max-width: 768px){ #dollar-value{ position: static; transform: none; } } @media (max-width: 600px){ #dollar-value{ font-size: 64px; } } @media (max-width: 414px){ #dollar-value{ font-size: 48px; } } .container-stats ul { list-style: none; margin: 0; position: relative; padding-left: 25px; } li.item-stats .item-stats-pill { background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%); padding-top: 6px; padding-bottom: 6px; padding-left: 13px; padding-right: 13px; margin-top: 0; margin-bottom: 14px; margin-right: 10px; color: rgba(0,0,0,.65); font-family: 'Nunito', sans-serif; font-weight: 800; letter-spacing: 1px; border-radius: 8px; display: inline-block; font-size: 12px; text-transform: uppercase; box-shadow: 0 20px 25px -10px rgba(0,0,0,.15) } li.item-stats{ display: inline-block; } .container-stats ul::before { content: ''; display: block; width: 4px; top: 0; right: auto; bottom: 10px; left: 0; background: rgba(255,255,255,.35); position: absolute; border-radius: 2px; } @media (max-width: 768px) { .container-stats ul::before { display: none; } } h3{ color: #ffffff; font-family: 'Nunito', sans-serif; font-size: 40px; font-weight: 800; margin-bottom: 30px; text-shadow: 0 15px 30px rgba(0,0,0,.15) } .container-type img{ width: 64px; height: 64px; padding: 10px; background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%); border-radius: 50%; box-shadow: 0 20px 25px -10px rgba(0,0,0,.15); margin: 0 15px 15px 0; } .sidebar-container-top{ max-width: 80%; flex-wrap: wrap; }
0.276495
0.074265
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); #wrapper section .pratos{ display: grid; grid-template-columns: auto auto auto auto; justify-content: center; grid-column-gap: 15px; grid-row-gap: 20px; } #wrapper section{ margin-top: 50px; } #wrapper .pratos .prato{ max-width: 300px; margin-bottom: 20px; } #wrapper .pratos h1{ font-family: 'Pacifico',cursive; color: #2F323A; } #wrapper .pratos h2{ font-family: 'Quicksand',sans-serif; color: #F15156 ; } #wrapper .pratos p{ font-family: 'Quicksand',sans-serif; } #wrapper img{ border-radius: 16px; height: 250px; width: 250px; } #wrapper .prato button{ background-color: #F15156; font-family: 'Quicksand',sans-serif; font-size: 16px; font-weight: bold; height: 45px; width: 200px; color: #FAF9F9; border: none; border-radius: 8px; outline: none; cursor: pointer; transition: 0.4s; } #wrapper .prato button:hover{ color:#2F323A; opacity: 100%; border: 1px solid #2F323A; } #wrapper section{ display: flex; justify-content: center; } #wrapper #cart{ text-align: center; margin-left: 50px; } #wrapper #cart button{ border: none; text-align: center; outline: none; } #wrapper #cart h1{ font-size: 25px; } #wrapper #cart img{ width: 50px; height: 50px; } #wrapper #cart .cartNumber h1{ background-color: #F15156; border-radius: 16px; } #wrapper .clearCart button{ font-family: 'Quicksand',sans-serif; font-weight: bold; color: #FAF9F9; background-color: #2F323A; border-radius: 16px; padding: 5px; } #wrapper #cart .cart-itens{ box-shadow: 0px 0px 5px 3px #B2B2B2; border: 1px solid white; border-radius: 16px; padding: 5px; margin-bottom: 10px; margin-top: 10px; } #wrapper .cart-itens h1{ color: #F15156; } #wrapper #cart .item{ border: none; border-radius: 16px; } #wrapper #cart .details{ margin-bottom: 5px; } #wrapper #cart .details h1 { font-size: 30px; color: #2F323A; } #wrapper #cart .details h2{ font-size: 30px; font-family: 'Quicksand', sans-serif; } #wrapper #cart .details span{ margin-left: 5px; border: 1px solid #2F323A; border-radius: 8px; } #wrapper .upArrow img{ margin-top: 5px; transform: rotate(90deg); transition: 0.6s; } #wrapper .upArrow img:hover{ transform: rotate(-90deg); transition: 0.6s; } #wrapper .downArrow img{ margin-top: 5px; transform: rotate(-90deg); transition: 0.6s; } #wrapper .downArrow img:hover{ transform: rotate(90deg); transition: 0.6s; } #wrapper .finalizar-pedido{ font-family: 'Quicksand',sans-serif; font-weight: bold; background-color: #F15156; border-radius: 16px; padding: 10px; font-size: 24px; } h4{ font-family: 'Quicksand',sans-serif; } @media screen and (max-width: 769px){ #wrapper section .pratos{ display: grid; grid-template-columns: auto auto; grid-column-gap: 60px; grid-row-gap: 30px; margin-left: 600px; } .pratos h1{ font-size: 50px; } .pratos h2{ font-size: 30px; } .pratos p{ font-size: 20px; } #cart{ margin-left: 100px; } #cart .clearCart button{ padding: 20px; font-size: 16px; } #cart .details h1 { font-size: 40px; color: #2F323A; } #cart .details h2{ font-size: 40px; font-family: 'Quicksand', sans-serif; } #cart .details span{ font-size: 20; margin-left: 5px; border: 1px solid #2F323A; border-radius: 8px; } #cart .finalizar-pedido{ font-family: 'Quicksand',sans-serif; font-weight: bold; font-size: 24px; background-color: #F15156; border-radius: 16px; padding: 20px; } }
css/menu.css
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); #wrapper section .pratos{ display: grid; grid-template-columns: auto auto auto auto; justify-content: center; grid-column-gap: 15px; grid-row-gap: 20px; } #wrapper section{ margin-top: 50px; } #wrapper .pratos .prato{ max-width: 300px; margin-bottom: 20px; } #wrapper .pratos h1{ font-family: 'Pacifico',cursive; color: #2F323A; } #wrapper .pratos h2{ font-family: 'Quicksand',sans-serif; color: #F15156 ; } #wrapper .pratos p{ font-family: 'Quicksand',sans-serif; } #wrapper img{ border-radius: 16px; height: 250px; width: 250px; } #wrapper .prato button{ background-color: #F15156; font-family: 'Quicksand',sans-serif; font-size: 16px; font-weight: bold; height: 45px; width: 200px; color: #FAF9F9; border: none; border-radius: 8px; outline: none; cursor: pointer; transition: 0.4s; } #wrapper .prato button:hover{ color:#2F323A; opacity: 100%; border: 1px solid #2F323A; } #wrapper section{ display: flex; justify-content: center; } #wrapper #cart{ text-align: center; margin-left: 50px; } #wrapper #cart button{ border: none; text-align: center; outline: none; } #wrapper #cart h1{ font-size: 25px; } #wrapper #cart img{ width: 50px; height: 50px; } #wrapper #cart .cartNumber h1{ background-color: #F15156; border-radius: 16px; } #wrapper .clearCart button{ font-family: 'Quicksand',sans-serif; font-weight: bold; color: #FAF9F9; background-color: #2F323A; border-radius: 16px; padding: 5px; } #wrapper #cart .cart-itens{ box-shadow: 0px 0px 5px 3px #B2B2B2; border: 1px solid white; border-radius: 16px; padding: 5px; margin-bottom: 10px; margin-top: 10px; } #wrapper .cart-itens h1{ color: #F15156; } #wrapper #cart .item{ border: none; border-radius: 16px; } #wrapper #cart .details{ margin-bottom: 5px; } #wrapper #cart .details h1 { font-size: 30px; color: #2F323A; } #wrapper #cart .details h2{ font-size: 30px; font-family: 'Quicksand', sans-serif; } #wrapper #cart .details span{ margin-left: 5px; border: 1px solid #2F323A; border-radius: 8px; } #wrapper .upArrow img{ margin-top: 5px; transform: rotate(90deg); transition: 0.6s; } #wrapper .upArrow img:hover{ transform: rotate(-90deg); transition: 0.6s; } #wrapper .downArrow img{ margin-top: 5px; transform: rotate(-90deg); transition: 0.6s; } #wrapper .downArrow img:hover{ transform: rotate(90deg); transition: 0.6s; } #wrapper .finalizar-pedido{ font-family: 'Quicksand',sans-serif; font-weight: bold; background-color: #F15156; border-radius: 16px; padding: 10px; font-size: 24px; } h4{ font-family: 'Quicksand',sans-serif; } @media screen and (max-width: 769px){ #wrapper section .pratos{ display: grid; grid-template-columns: auto auto; grid-column-gap: 60px; grid-row-gap: 30px; margin-left: 600px; } .pratos h1{ font-size: 50px; } .pratos h2{ font-size: 30px; } .pratos p{ font-size: 20px; } #cart{ margin-left: 100px; } #cart .clearCart button{ padding: 20px; font-size: 16px; } #cart .details h1 { font-size: 40px; color: #2F323A; } #cart .details h2{ font-size: 40px; font-family: 'Quicksand', sans-serif; } #cart .details span{ font-size: 20; margin-left: 5px; border: 1px solid #2F323A; border-radius: 8px; } #cart .finalizar-pedido{ font-family: 'Quicksand',sans-serif; font-weight: bold; font-size: 24px; background-color: #F15156; border-radius: 16px; padding: 20px; } }
0.286668
0.108661
html, body { width: 100%; height: 100%; margin: 0px; padding: 0px; -webkit-app-region: drag; color: #fff; font-family: "Quicksand", "Open Sans", sans-serif; font-size: 13px; font-weight: normal; line-height: 18px; text-align: center; -webkit-user-select:none; background-color: #444; } a, #dots div { -webkit-app-region: no-drag; } ::-webkit-scrollbar { width: 10px; height: 10px; border: 1px solid #fff; -webkit-app-region: no-drag; } ::-webkit-scrollbar-thumb { background: #eee; -webkit-app-region: no-drag; } .mobile #close { display: none; } .not-mobile #close { background: url('img/x.png') center no-repeat; background-size: 10px 10px; position: absolute; top: 0px; left: 0px; height: 30px; width: 30px; cursor: pointer; -webkit-app-region: no-drag; z-index: 100; visibility: hidden; } body:hover.not-mobile #close { visibility: visible; } #close { display: none; } .button { background-color: #f5f5f5; background-image: linear-gradient(top, #f5f5f5, #f1f1f1); background-image: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1); border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 2px; -webkit-border-radius: 2px; color: #444; cursor: default; display: inline-block; font-size: 11px; font-weight: bold; height: 27px; line-height: 27px; margin-left: 0px; margin-right: 10px; margin-top: 0px; margin-bottom: 10px; min-width: 50px; padding: 0 8px; text-align: center; transition: all 0.218s; -webkit-transition: all 0.218s; white-space: nowrap; -webkit-app-region: no-drag; } .button:hover { background-color: #f8f8f8; background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1); background-image: linear-gradient(top, #f8f8f8, #f1f1f1); border: 1px solid #c6c6Cc; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); color: #222; transition: all 0.0s; -webkit-transition: all 0.0s; } .button:active { background-color: #f6f6f6; background-image: -webkit-linear-gradient(top, #f6f6f6, #f1f1f1); background-image: linear-gradient(top, #f6f6f6, #f1f1f1); border: 1px solid #c6c6c6; box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); color: #333; } .button.blue { background-color: #4d90fe; background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed); background-image: linear-gradient(top, #4d90fe, #4787ed); border: 1px solid #3079ed; color: #fff; } .button.blue:hover { background-color: #5093ff; background-image: -webkit-linear-gradient(top, #5093ff, #4a8af0); background-image: linear-gradient(top, #5093ff, #4a8af0); border: 1px solid #337cf3; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); } input[type=checkbox], input[type=radio] { -webkit-appearance: none; width: 13px; height: 13px; border: 1px solid #c6c6c6; background: #f5f5f5; margin: 0; margin-right: 10px; margin-bottom: -2px; margin-top: 2px; -webkit-border-radius: 1px; border-radius: 1px; -webkit-box-sizing: border-box; box-sizing: border-box; cursor: default; position: relative; -webkit-app-region: no-drag; } input[type=checkbox]:active, input[type=radio]:active { background: #fff; border-color: #666; } input[type=checkbox]:hover, input[type=radio]:hover { border-color: #666; -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1); box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1); } input[type=radio] { border-radius: 50%; width: 15px; height: 15px; } input[type=checkbox].disabled, input[type=radio].disabled { border-color:#f1f1f1; background: #fff; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .disabledtext{ color: #b8b8b8; } input[type=radio]:checked::after { content: ''; display: block; position: relative; top: 3px; left: 3px; width: 7px; height: 7px; background: #666; border-radius: 50%; } input[type=checkbox]:focus { outline: none; border-color: #4d90fe; } input[type=text] { background-color: #fff; border: 1px solid #d9d9d9; border-top: 1px solid #c0c0c0; box-sizing: border-box; -webkit-box-sizing: border-box; border-radius: 1 px; -webkit-border-radius: 1px; color: #333; display: inline-block; font-family: "Quicksand", "Open Sans", sans-serif; font-size: 16px; height: 32px; line-height: 30px; padding-left: 8px; vertical-align: middle; margin-bottom: 15px; width: 270px; -webkit-app-region: no-drag; } input[type=text]:hover { border: 1px solid #b9b9b9; border-top: 1px solid #a0a0a0; box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); } input[type=text]:focus { border: 1px solid #4d90fe; box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3); outline: none; } input[type=text].form-error{ border: 1px solid #ff3f3f; } #error-message { color: #ff3f3f; padding: 0px; margin-top: -5px; margin-bottom: 5px; } #settings { position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; background: #444; text-align: left; padding: 15px; z-index: 1; } #settings #source, #settings #source a { color: #fff; font-size: 11px; margin-bottom: 10px; margin-top: 5px; text-align: center; } #settings #new { margin-bottom: 10px; } #settings #cities-list { margin-top: 10px; overflow: auto; } .not-mobile #settings #cities-list { height: 180px; } .mobile #settings #cities-list { } #settings #cities-list .delete { background: url('img/x.png') center no-repeat; background-size: 12px 12px; display: inline-block; height: 30px; opacity: 0.7; width: 30px; vertical-align: middle; } #settings #cities-list .delete:hover { opacity: 1; } #settingsToggle { background: url('img/settings.png') center no-repeat; background-size: 14px 14px; position: absolute; top: 0px; right: 0px; cursor: pointer; height: 40px; width: 40px; -webkit-app-region: no-drag; z-index: 100; } #loading { height: 100%; width: 100%; position: absolute; white-space: nowrap; overflow: hidden; -webkit-box-sizing: border-box; background-color: pink; z-index: 10000; -webkit-transition: opacity 0.5s ease-in; } #loading > div { position: absolute; width: 100%; top: 50%; margin-top: -100px; text-align: center; } #loading > div > p { font-size: 2em; } #loading > div > img { -webkit-animation-name: spinnerRotate; -webkit-animation-duration: 5s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; } @-webkit-keyframes spinnerRotate { from { -webkit-transform:rotate(0deg); } to { -webkit-transform:rotate(360deg); } } #wrapper { height: 100%; width: 100%; position: absolute; white-space: nowrap; overflow: hidden; -webkit-box-sizing: border-box; } #weather { height: 100%; width: 100%; } #searchterm { margin-top: 10px; } .forecast { display: inline-block; -webkit-box-sizing: border-box; height: 100%; width: 100%; text-align: center; } .forecast.selected { } .city { bottom: 45px; font-size: 12px; position: absolute; text-align: center; width: 100%; } .current { text-align: center; margin-top: 150px; } .current-icon { height: 34px; width: 34px; display: inline-block; margin-bottom: 10px; margin-right: -34px; } .current-temp { display: inline-block; font-size: 72px; font-weight: normal; } .high_low { margin-top: 45px; font-size: 21px; display: block; font-weight: normal; } #dots { width: 200px; text-align: center; white-space: nowrap; position: absolute; bottom: 15px; left: 50%; margin-left: -100px; overflow: auto; } #dots #prev, #dots #next { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; display: inline-block; margin-bottom: 4px; opacity: 0; } #dots #prev { border-right: 8px solid #fff; margin-right: 5px; } #dots #next { border-left: 8px solid #fff; margin-left: 5px; } #dots #prev.disabled, #dots #next.disabled { opacity: 0.4; } #dots #prev.shown, #dots #next.shown { opacity: 1; } #dots .dot { border: 2px solid #fff; border-radius: 8px; height: 10px; margin: 3px; width: 10px; display: none; } #dots .dot.shown { display: inline-block; } #dots .dot.selected { background-color: #fff; } .current-icon.cloudy { background: url('img/cloudy.png') center no-repeat; background-size: 34px 34px; } .current-icon.hail { background: url('img/hail.png') center no-repeat; background-size: 34px 34px; } .current-icon.light-rain { background: url('img/light-rain.png') center no-repeat; background-size: 34px 34px; } .current-icon.light-snow { background: url('img/light-snow.png') center no-repeat; background-size: 34px 34px; } .current-icon.mostly-sunny { background: url('img/mostly-sunny.png') center no-repeat; background-size: 34px 34px; } .current-icon.partly-cloudy { background: url('img/partly-cloudy.png') center no-repeat; background-size: 34px 34px; } .current-icon.rain-snow { background: url('img/rain-snow.png') center no-repeat; background-size: 34px 34px; } .current-icon.rain { background: url('img/rain.png') center no-repeat; background-size: 34px 34px; } .current-icon.scattered-light-rain { background: url('img/scattered-light-rain.png') center no-repeat; background-size: 34px 34px; } .current-icon.scattered-rain { background: url('img/scattered-rain.png') center no-repeat; background-size: 34px 34px; } .current-icon.scattered-snow { background: url('img/scattered-snow.png') center no-repeat; background-size: 34px 34px; } .current-icon.scattered-tstorm { background: url('img/scattered-tstorm.png') center no-repeat; background-size: 34px 34px; } .current-icon.snow { background: url('img/snow.png') center no-repeat; background-size: 34px 34px; } .current-icon.sunny { background: url('img/sunny.png') center no-repeat; background-size: 34px 34px; } .current-icon.tstorm { background: url('img/tstorm.png') center no-repeat; background-size: 34px 34px; } .forecast.cloudy { background-color: #75d6ff; background-image: linear-gradient(top, #75d6ff, #45a6dd); background-image: -webkit-linear-gradient(top, #75d6ff, #45a6dd); } .forecast.hail { background-color: #6f9fba; background-image: linear-gradient(top, #6f9fba, #3f6f8a); background-image: -webkit-linear-gradient(top, #6f9fba, #3f6f8a); } .forecast.light-rain { background-color: #82bddf; background-image: linear-gradient(top, #82bddf, #528daf); background-image: -webkit-linear-gradient(top, #82bddf, #528daf); } .forecast.light-snow { background-color: #c0e5ff; background-image: linear-gradient(top, #c0e5ff, #90b5d7); background-image: -webkit-linear-gradient(top, #c0e5ff, #90b5d7); } .forecast.mostly-sunny { background-color: #a1d0ed; background-image: linear-gradient(top, #a1d0ed, #71a0bd); background-image: -webkit-linear-gradient(top, #a1d0ed, #71a0bd); } .forecast.partly-cloudy { background-color: #f6b955; background-image: linear-gradient(top, #f6b955, #d68925); background-image: -webkit-linear-gradient(top, #f6b955, #d68925); } .forecast.rain-snow { background-color: #6f9fba; background-image: linear-gradient(top, #6f9fba, #3f6f8a); background-image: -webkit-linear-gradient(top, #6f9fba, #3f6f8a); } .forecast.rain { background-color: #78afce; background-image: linear-gradient(top, #78afce, #487f9e); background-image: -webkit-linear-gradient(top, #78afce, #487f9e); } .forecast.scattered-light-rain { background-color: #8fd6fe; background-image: linear-gradient(top, #8fd6fe, #5fa6ce); background-image: -webkit-linear-gradient(top, #8fd6fe, #5fa6ce); } .forecast.scattered-rain { background-color: #84c4e8; background-image: linear-gradient(top, #84c4e8, #5494b8); background-image: -webkit-linear-gradient(top, #84c4e8, #5494b8); } .forecast.scattered-snow { background-color: #8ee5ff; background-image: linear-gradient(top, #8ee5ff, #5eb5d7); background-image: -webkit-linear-gradient(top, #8ee5ff, #5eb5d7); } .forecast.scattered-tstorm { background-color: #3f4d55; background-image: linear-gradient(top, #3f4d55, #0f1d25); background-image: -webkit-linear-gradient(top, #3f4d55, #0f1d25); } .forecast.snow { background-color: #c0e5ff; background-image: linear-gradient(top, #c0e5ff, #90b5d7); background-image: -webkit-linear-gradient(top, #c0e5ff, #90b5d7); } .forecast.sunny { background-color: #ffc33b; background-image: linear-gradient(top, #ffc33b, #ea930b); background-image: -webkit-linear-gradient(top, #ffc33b, #ea930b); } .forecast.tstorm { background-color: #3f4d55; background-image: linear-gradient(top, #3f4d55, #0f1d25); background-image: -webkit-linear-gradient(top, #3f4d55, #0f1d25); } .hidden { /*display: none;*/ visibility: hidden; }
apps/samples/weather/style.css
html, body { width: 100%; height: 100%; margin: 0px; padding: 0px; -webkit-app-region: drag; color: #fff; font-family: "Quicksand", "Open Sans", sans-serif; font-size: 13px; font-weight: normal; line-height: 18px; text-align: center; -webkit-user-select:none; background-color: #444; } a, #dots div { -webkit-app-region: no-drag; } ::-webkit-scrollbar { width: 10px; height: 10px; border: 1px solid #fff; -webkit-app-region: no-drag; } ::-webkit-scrollbar-thumb { background: #eee; -webkit-app-region: no-drag; } .mobile #close { display: none; } .not-mobile #close { background: url('img/x.png') center no-repeat; background-size: 10px 10px; position: absolute; top: 0px; left: 0px; height: 30px; width: 30px; cursor: pointer; -webkit-app-region: no-drag; z-index: 100; visibility: hidden; } body:hover.not-mobile #close { visibility: visible; } #close { display: none; } .button { background-color: #f5f5f5; background-image: linear-gradient(top, #f5f5f5, #f1f1f1); background-image: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1); border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 2px; -webkit-border-radius: 2px; color: #444; cursor: default; display: inline-block; font-size: 11px; font-weight: bold; height: 27px; line-height: 27px; margin-left: 0px; margin-right: 10px; margin-top: 0px; margin-bottom: 10px; min-width: 50px; padding: 0 8px; text-align: center; transition: all 0.218s; -webkit-transition: all 0.218s; white-space: nowrap; -webkit-app-region: no-drag; } .button:hover { background-color: #f8f8f8; background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1); background-image: linear-gradient(top, #f8f8f8, #f1f1f1); border: 1px solid #c6c6Cc; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); color: #222; transition: all 0.0s; -webkit-transition: all 0.0s; } .button:active { background-color: #f6f6f6; background-image: -webkit-linear-gradient(top, #f6f6f6, #f1f1f1); background-image: linear-gradient(top, #f6f6f6, #f1f1f1); border: 1px solid #c6c6c6; box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); color: #333; } .button.blue { background-color: #4d90fe; background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed); background-image: linear-gradient(top, #4d90fe, #4787ed); border: 1px solid #3079ed; color: #fff; } .button.blue:hover { background-color: #5093ff; background-image: -webkit-linear-gradient(top, #5093ff, #4a8af0); background-image: linear-gradient(top, #5093ff, #4a8af0); border: 1px solid #337cf3; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); } input[type=checkbox], input[type=radio] { -webkit-appearance: none; width: 13px; height: 13px; border: 1px solid #c6c6c6; background: #f5f5f5; margin: 0; margin-right: 10px; margin-bottom: -2px; margin-top: 2px; -webkit-border-radius: 1px; border-radius: 1px; -webkit-box-sizing: border-box; box-sizing: border-box; cursor: default; position: relative; -webkit-app-region: no-drag; } input[type=checkbox]:active, input[type=radio]:active { background: #fff; border-color: #666; } input[type=checkbox]:hover, input[type=radio]:hover { border-color: #666; -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1); box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1); } input[type=radio] { border-radius: 50%; width: 15px; height: 15px; } input[type=checkbox].disabled, input[type=radio].disabled { border-color:#f1f1f1; background: #fff; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .disabledtext{ color: #b8b8b8; } input[type=radio]:checked::after { content: ''; display: block; position: relative; top: 3px; left: 3px; width: 7px; height: 7px; background: #666; border-radius: 50%; } input[type=checkbox]:focus { outline: none; border-color: #4d90fe; } input[type=text] { background-color: #fff; border: 1px solid #d9d9d9; border-top: 1px solid #c0c0c0; box-sizing: border-box; -webkit-box-sizing: border-box; border-radius: 1 px; -webkit-border-radius: 1px; color: #333; display: inline-block; font-family: "Quicksand", "Open Sans", sans-serif; font-size: 16px; height: 32px; line-height: 30px; padding-left: 8px; vertical-align: middle; margin-bottom: 15px; width: 270px; -webkit-app-region: no-drag; } input[type=text]:hover { border: 1px solid #b9b9b9; border-top: 1px solid #a0a0a0; box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); } input[type=text]:focus { border: 1px solid #4d90fe; box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3); outline: none; } input[type=text].form-error{ border: 1px solid #ff3f3f; } #error-message { color: #ff3f3f; padding: 0px; margin-top: -5px; margin-bottom: 5px; } #settings { position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; background: #444; text-align: left; padding: 15px; z-index: 1; } #settings #source, #settings #source a { color: #fff; font-size: 11px; margin-bottom: 10px; margin-top: 5px; text-align: center; } #settings #new { margin-bottom: 10px; } #settings #cities-list { margin-top: 10px; overflow: auto; } .not-mobile #settings #cities-list { height: 180px; } .mobile #settings #cities-list { } #settings #cities-list .delete { background: url('img/x.png') center no-repeat; background-size: 12px 12px; display: inline-block; height: 30px; opacity: 0.7; width: 30px; vertical-align: middle; } #settings #cities-list .delete:hover { opacity: 1; } #settingsToggle { background: url('img/settings.png') center no-repeat; background-size: 14px 14px; position: absolute; top: 0px; right: 0px; cursor: pointer; height: 40px; width: 40px; -webkit-app-region: no-drag; z-index: 100; } #loading { height: 100%; width: 100%; position: absolute; white-space: nowrap; overflow: hidden; -webkit-box-sizing: border-box; background-color: pink; z-index: 10000; -webkit-transition: opacity 0.5s ease-in; } #loading > div { position: absolute; width: 100%; top: 50%; margin-top: -100px; text-align: center; } #loading > div > p { font-size: 2em; } #loading > div > img { -webkit-animation-name: spinnerRotate; -webkit-animation-duration: 5s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; } @-webkit-keyframes spinnerRotate { from { -webkit-transform:rotate(0deg); } to { -webkit-transform:rotate(360deg); } } #wrapper { height: 100%; width: 100%; position: absolute; white-space: nowrap; overflow: hidden; -webkit-box-sizing: border-box; } #weather { height: 100%; width: 100%; } #searchterm { margin-top: 10px; } .forecast { display: inline-block; -webkit-box-sizing: border-box; height: 100%; width: 100%; text-align: center; } .forecast.selected { } .city { bottom: 45px; font-size: 12px; position: absolute; text-align: center; width: 100%; } .current { text-align: center; margin-top: 150px; } .current-icon { height: 34px; width: 34px; display: inline-block; margin-bottom: 10px; margin-right: -34px; } .current-temp { display: inline-block; font-size: 72px; font-weight: normal; } .high_low { margin-top: 45px; font-size: 21px; display: block; font-weight: normal; } #dots { width: 200px; text-align: center; white-space: nowrap; position: absolute; bottom: 15px; left: 50%; margin-left: -100px; overflow: auto; } #dots #prev, #dots #next { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; display: inline-block; margin-bottom: 4px; opacity: 0; } #dots #prev { border-right: 8px solid #fff; margin-right: 5px; } #dots #next { border-left: 8px solid #fff; margin-left: 5px; } #dots #prev.disabled, #dots #next.disabled { opacity: 0.4; } #dots #prev.shown, #dots #next.shown { opacity: 1; } #dots .dot { border: 2px solid #fff; border-radius: 8px; height: 10px; margin: 3px; width: 10px; display: none; } #dots .dot.shown { display: inline-block; } #dots .dot.selected { background-color: #fff; } .current-icon.cloudy { background: url('img/cloudy.png') center no-repeat; background-size: 34px 34px; } .current-icon.hail { background: url('img/hail.png') center no-repeat; background-size: 34px 34px; } .current-icon.light-rain { background: url('img/light-rain.png') center no-repeat; background-size: 34px 34px; } .current-icon.light-snow { background: url('img/light-snow.png') center no-repeat; background-size: 34px 34px; } .current-icon.mostly-sunny { background: url('img/mostly-sunny.png') center no-repeat; background-size: 34px 34px; } .current-icon.partly-cloudy { background: url('img/partly-cloudy.png') center no-repeat; background-size: 34px 34px; } .current-icon.rain-snow { background: url('img/rain-snow.png') center no-repeat; background-size: 34px 34px; } .current-icon.rain { background: url('img/rain.png') center no-repeat; background-size: 34px 34px; } .current-icon.scattered-light-rain { background: url('img/scattered-light-rain.png') center no-repeat; background-size: 34px 34px; } .current-icon.scattered-rain { background: url('img/scattered-rain.png') center no-repeat; background-size: 34px 34px; } .current-icon.scattered-snow { background: url('img/scattered-snow.png') center no-repeat; background-size: 34px 34px; } .current-icon.scattered-tstorm { background: url('img/scattered-tstorm.png') center no-repeat; background-size: 34px 34px; } .current-icon.snow { background: url('img/snow.png') center no-repeat; background-size: 34px 34px; } .current-icon.sunny { background: url('img/sunny.png') center no-repeat; background-size: 34px 34px; } .current-icon.tstorm { background: url('img/tstorm.png') center no-repeat; background-size: 34px 34px; } .forecast.cloudy { background-color: #75d6ff; background-image: linear-gradient(top, #75d6ff, #45a6dd); background-image: -webkit-linear-gradient(top, #75d6ff, #45a6dd); } .forecast.hail { background-color: #6f9fba; background-image: linear-gradient(top, #6f9fba, #3f6f8a); background-image: -webkit-linear-gradient(top, #6f9fba, #3f6f8a); } .forecast.light-rain { background-color: #82bddf; background-image: linear-gradient(top, #82bddf, #528daf); background-image: -webkit-linear-gradient(top, #82bddf, #528daf); } .forecast.light-snow { background-color: #c0e5ff; background-image: linear-gradient(top, #c0e5ff, #90b5d7); background-image: -webkit-linear-gradient(top, #c0e5ff, #90b5d7); } .forecast.mostly-sunny { background-color: #a1d0ed; background-image: linear-gradient(top, #a1d0ed, #71a0bd); background-image: -webkit-linear-gradient(top, #a1d0ed, #71a0bd); } .forecast.partly-cloudy { background-color: #f6b955; background-image: linear-gradient(top, #f6b955, #d68925); background-image: -webkit-linear-gradient(top, #f6b955, #d68925); } .forecast.rain-snow { background-color: #6f9fba; background-image: linear-gradient(top, #6f9fba, #3f6f8a); background-image: -webkit-linear-gradient(top, #6f9fba, #3f6f8a); } .forecast.rain { background-color: #78afce; background-image: linear-gradient(top, #78afce, #487f9e); background-image: -webkit-linear-gradient(top, #78afce, #487f9e); } .forecast.scattered-light-rain { background-color: #8fd6fe; background-image: linear-gradient(top, #8fd6fe, #5fa6ce); background-image: -webkit-linear-gradient(top, #8fd6fe, #5fa6ce); } .forecast.scattered-rain { background-color: #84c4e8; background-image: linear-gradient(top, #84c4e8, #5494b8); background-image: -webkit-linear-gradient(top, #84c4e8, #5494b8); } .forecast.scattered-snow { background-color: #8ee5ff; background-image: linear-gradient(top, #8ee5ff, #5eb5d7); background-image: -webkit-linear-gradient(top, #8ee5ff, #5eb5d7); } .forecast.scattered-tstorm { background-color: #3f4d55; background-image: linear-gradient(top, #3f4d55, #0f1d25); background-image: -webkit-linear-gradient(top, #3f4d55, #0f1d25); } .forecast.snow { background-color: #c0e5ff; background-image: linear-gradient(top, #c0e5ff, #90b5d7); background-image: -webkit-linear-gradient(top, #c0e5ff, #90b5d7); } .forecast.sunny { background-color: #ffc33b; background-image: linear-gradient(top, #ffc33b, #ea930b); background-image: -webkit-linear-gradient(top, #ffc33b, #ea930b); } .forecast.tstorm { background-color: #3f4d55; background-image: linear-gradient(top, #3f4d55, #0f1d25); background-image: -webkit-linear-gradient(top, #3f4d55, #0f1d25); } .hidden { /*display: none;*/ visibility: hidden; }
0.339171
0.070656
@font-face { font-family: IRANSans; font-style: normal; font-weight: 900; src: url('../fonts/IRANSans/eot/IRANSansWeb_Black.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_Black.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_Black.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_Black.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_Black.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: bold; src: url('../fonts/IRANSans/eot/IRANSansWeb_Bold.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_Bold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_Bold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_Bold.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 500; src: url('../fonts/IRANSans/eot/IRANSansWeb_Medium.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_Medium.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_Medium.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_Medium.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_Medium.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 300; src: url('../fonts/IRANSans/eot/IRANSansWeb_Light.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_Light.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 200; src: url('../fonts/IRANSans/eot/IRANSansWeb_UltraLight.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_UltraLight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_UltraLight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_UltraLight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_UltraLight.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: normal; src: url('../fonts/IRANSans/eot/IRANSansWeb.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb.ttf') format('truetype'); }
public/assets/css/fontiran.css
@font-face { font-family: IRANSans; font-style: normal; font-weight: 900; src: url('../fonts/IRANSans/eot/IRANSansWeb_Black.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_Black.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_Black.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_Black.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_Black.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: bold; src: url('../fonts/IRANSans/eot/IRANSansWeb_Bold.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_Bold.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_Bold.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_Bold.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 500; src: url('../fonts/IRANSans/eot/IRANSansWeb_Medium.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_Medium.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_Medium.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_Medium.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_Medium.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 300; src: url('../fonts/IRANSans/eot/IRANSansWeb_Light.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_Light.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: 200; src: url('../fonts/IRANSans/eot/IRANSansWeb_UltraLight.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb_UltraLight.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb_UltraLight.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb_UltraLight.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb_UltraLight.ttf') format('truetype'); } @font-face { font-family: IRANSans; font-style: normal; font-weight: normal; src: url('../fonts/IRANSans/eot/IRANSansWeb.eot'); src: url('../fonts/IRANSans/eot/IRANSansWeb.eot?#iefix') format('embedded-opentype'), /* IE6-8 */ url('../fonts/IRANSans/woff2/IRANSansWeb.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/ url('../fonts/IRANSans/woff/IRANSansWeb.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/ url('../fonts/IRANSans/ttf/IRANSansWeb.ttf') format('truetype'); }
0.232571
0.032992
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"); /*! * bootswatch v3.3.5 * Homepage: http://bootswatch.com * Copyright 2012-2015 <NAME> * Licensed under MIT * Based on Bootstrap */ /*! * Bootstrap v3.3.5 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { font-size: 2em; margin: 0.67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.846; color: #666666; background-color: #ffffff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #2196f3; text-decoration: none; } a:hover, a:focus { color: #0a6ebd; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 3px; } .img-thumbnail { padding: 4px; line-height: 1.846; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 3px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; display: inline-block; max-width: 100%; height: auto; } .img-circle { border-radius: 50%; } hr { margin-top: 23px; margin-bottom: 23px; border: 0; border-top: 1px solid #eeeeee; } .sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role="button"] { cursor: pointer; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 400; line-height: 1.1; color: #444444; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #bbbbbb; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 23px; margin-bottom: 11.5px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 11.5px; margin-bottom: 11.5px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 56px; } h2, .h2 { font-size: 45px; } h3, .h3 { font-size: 34px; } h4, .h4 { font-size: 24px; } h5, .h5 { font-size: 20px; } h6, .h6 { font-size: 14px; } p { margin: 0 0 11.5px; } .lead { margin-bottom: 23px; font-size: 14px; font-weight: 300; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 19.5px; } } small, .small { font-size: 92%; } mark, .mark { background-color: #ffe0b2; padding: .2em; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #bbbbbb; } .text-primary { color: #2196f3; } a.text-primary:hover, a.text-primary:focus { color: #0c7cd5; } .text-success { color: #4caf50; } a.text-success:hover, a.text-success:focus { color: #3d8b40; } .text-info { color: #9c27b0; } a.text-info:hover, a.text-info:focus { color: #771e86; } .text-warning { color: #ff9800; } a.text-warning:hover, a.text-warning:focus { color: #cc7a00; } .text-danger { color: #da0078; } a.text-danger:hover, a.text-danger:focus { color: #a7005c; } .bg-primary { color: #fff; background-color: #2196f3; } a.bg-primary:hover, a.bg-primary:focus { background-color: #0c7cd5; } .bg-success { background-color: #dff0d8; } a.bg-success:hover, a.bg-success:focus { background-color: #c1e2b3; } .bg-info { background-color: #e1bee7; } a.bg-info:hover, a.bg-info:focus { background-color: #d099d9; } .bg-warning { background-color: #ffe0b2; } a.bg-warning:hover, a.bg-warning:focus { background-color: #ffcb7f; } .bg-danger { background-color: #f9bdbb; } a.bg-danger:hover, a.bg-danger:focus { background-color: #f5908c; } .page-header { padding-bottom: 10.5px; margin: 46px 0 23px; border-bottom: 1px solid #eeeeee; } ul, ol { margin-top: 0; margin-bottom: 11.5px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; margin-left: -5px; } .list-inline > li { display: inline-block; padding-left: 5px; padding-right: 5px; } dl { margin-top: 0; margin-bottom: 23px; } dt, dd { line-height: 1.846; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .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; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #bbbbbb; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 11.5px 23px; margin: 0 0 23px; font-size: 16.25px; border-left: 5px solid #eeeeee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.846; color: #bbbbbb; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; border-right: 5px solid #eeeeee; border-left: 0; text-align: right; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } address { margin-bottom: 23px; font-style: normal; line-height: 1.846; } .container { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } .row { margin-left: -15px; margin-right: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0%; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0%; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0%; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0%; } } fieldset { padding: 0; margin: 0; border: 0; min-width: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 23px; font-size: 19.5px; line-height: inherit; color: #212121; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 7px; font-size: 13px; line-height: 1.846; color: #666666; } .form-control { display: block; width: 100%; height: 37px; padding: 6px 16px; font-size: 13px; line-height: 1.846; color: #666666; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 3px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); } .form-control::-moz-placeholder { color: #bbbbbb; opacity: 1; } .form-control:-ms-input-placeholder { color: #bbbbbb; } .form-control::-webkit-input-placeholder { color: #bbbbbb; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: transparent; opacity: 1; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 37px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 45px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { min-height: 23px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-left: -20px; margin-top: 4px \9; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; vertical-align: middle; font-weight: normal; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .form-control-static { padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; min-height: 36px; } .form-control-static.input-lg, .form-control-static.input-sm { padding-left: 0; padding-right: 0; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 35px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 3px; } select.input-lg { height: 45px; line-height: 45px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .form-group-lg .form-control { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 3px; } .form-group-lg select.form-control { height: 45px; line-height: 45px; } .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control { height: auto; } .form-group-lg .form-control-static { height: 45px; min-height: 40px; padding: 11px 16px; font-size: 17px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 46.25px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 37px; height: 37px; line-height: 37px; text-align: center; pointer-events: none; } .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback { width: 45px; height: 45px; line-height: 45px; } .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { color: #4caf50; } .has-success .form-control { border-color: #4caf50; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-success .form-control:focus { border-color: #3d8b40; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #92cf94; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #92cf94; } .has-success .input-group-addon { color: #4caf50; border-color: #4caf50; background-color: #dff0d8; } .has-success .form-control-feedback { color: #4caf50; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #ff9800; } .has-warning .form-control { border-color: #ff9800; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-warning .form-control:focus { border-color: #cc7a00; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc166; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc166; } .has-warning .input-group-addon { color: #ff9800; border-color: #ff9800; background-color: #ffe0b2; } .has-warning .form-control-feedback { color: #ff9800; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #da0078; } .has-error .form-control { border-color: #da0078; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-error .form-control:focus { border-color: #a7005c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff41aa; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff41aa; } .has-error .input-group-addon { color: #da0078; border-color: #da0078; background-color: #f9bdbb; } .has-error .form-control-feedback { color: #da0078; } .has-feedback label ~ .form-control-feedback { top: 28px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #a6a6a6; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { margin-top: 0; margin-bottom: 0; padding-top: 7px; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 30px; } .form-horizontal .form-group { margin-left: -15px; margin-right: -15px; } @media (min-width: 768px) { .form-horizontal .control-label { text-align: right; margin-bottom: 0; padding-top: 7px; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 14.333333px; font-size: 17px; } } @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 6px 16px; font-size: 13px; line-height: 1.846; border-radius: 3px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: #444444; text-decoration: none; } .btn:active, .btn.active { outline: 0; background-image: none; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; opacity: 0.65; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #444444; background-color: #ffffff; border-color: transparent; } .btn-default:focus, .btn-default.focus { color: #444444; background-color: #e6e6e6; border-color: rgba(0, 0, 0, 0); } .btn-default:hover { color: #444444; background-color: #e6e6e6; border-color: rgba(0, 0, 0, 0); } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #444444; background-color: #e6e6e6; border-color: rgba(0, 0, 0, 0); } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #444444; background-color: #d4d4d4; border-color: rgba(0, 0, 0, 0); } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #ffffff; border-color: transparent; } .btn-default .badge { color: #ffffff; background-color: #444444; } .btn-primary { color: #ffffff; background-color: #2196f3; border-color: transparent; } .btn-primary:focus, .btn-primary.focus { color: #ffffff; background-color: #0c7cd5; border-color: rgba(0, 0, 0, 0); } .btn-primary:hover { color: #ffffff; background-color: #0c7cd5; border-color: rgba(0, 0, 0, 0); } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #ffffff; background-color: #0c7cd5; border-color: rgba(0, 0, 0, 0); } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #ffffff; background-color: #0a68b4; border-color: rgba(0, 0, 0, 0); } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #2196f3; border-color: transparent; } .btn-primary .badge { color: #2196f3; background-color: #ffffff; } .btn-success { color: #ffffff; background-color: #4caf50; border-color: transparent; } .btn-success:focus, .btn-success.focus { color: #ffffff; background-color: #3d8b40; border-color: rgba(0, 0, 0, 0); } .btn-success:hover { color: #ffffff; background-color: #3d8b40; border-color: rgba(0, 0, 0, 0); } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #ffffff; background-color: #3d8b40; border-color: rgba(0, 0, 0, 0); } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #ffffff; background-color: #327334; border-color: rgba(0, 0, 0, 0); } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #4caf50; border-color: transparent; } .btn-success .badge { color: #4caf50; background-color: #ffffff; } .btn-info { color: #ffffff; background-color: #9c27b0; border-color: transparent; } .btn-info:focus, .btn-info.focus { color: #ffffff; background-color: #771e86; border-color: rgba(0, 0, 0, 0); } .btn-info:hover { color: #ffffff; background-color: #771e86; border-color: rgba(0, 0, 0, 0); } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #ffffff; background-color: #771e86; border-color: rgba(0, 0, 0, 0); } .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { color: #ffffff; background-color: #5d1769; border-color: rgba(0, 0, 0, 0); } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #9c27b0; border-color: transparent; } .btn-info .badge { color: #9c27b0; background-color: #ffffff; } .btn-warning { color: #ffffff; background-color: #ff9800; border-color: transparent; } .btn-warning:focus, .btn-warning.focus { color: #ffffff; background-color: #cc7a00; border-color: rgba(0, 0, 0, 0); } .btn-warning:hover { color: #ffffff; background-color: #cc7a00; border-color: rgba(0, 0, 0, 0); } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #ffffff; background-color: #cc7a00; border-color: rgba(0, 0, 0, 0); } .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color: #ffffff; background-color: #a86400; border-color: rgba(0, 0, 0, 0); } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #ff9800; border-color: transparent; } .btn-warning .badge { color: #ff9800; background-color: #ffffff; } .btn-danger { color: #ffffff; background-color: #da0078; border-color: transparent; } .btn-danger:focus, .btn-danger.focus { color: #ffffff; background-color: #a7005c; border-color: rgba(0, 0, 0, 0); } .btn-danger:hover { color: #ffffff; background-color: #a7005c; border-color: rgba(0, 0, 0, 0); } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #ffffff; background-color: #a7005c; border-color: rgba(0, 0, 0, 0); } .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: #ffffff; background-color: #830048; border-color: rgba(0, 0, 0, 0); } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #da0078; border-color: transparent; } .btn-danger .badge { color: #da0078; background-color: #ffffff; } .btn-link { color: #2196f3; font-weight: normal; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #0a6ebd; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #bbbbbb; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 3px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-property: height, visibility; -o-transition-property: height, visibility; transition-property: height, visibility; -webkit-transition-duration: 0.35s; -o-transition-duration: 0.35s; transition-duration: 0.35s; -webkit-transition-timing-function: ease; -o-transition-timing-function: ease; transition-timing-function: ease; } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-left: 12px; padding-right: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 3px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-bottom-left-radius: 3px; border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { float: none; display: table-cell; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-left: 0; padding-right: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 3px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 45px; line-height: 45px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 16px; font-size: 13px; font-weight: normal; line-height: 1; color: #666666; text-align: center; background-color: transparent; border: 1px solid transparent; border-radius: 3px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 17px; border-radius: 3px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-top-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-bottom-left-radius: 0; border-top-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { z-index: 2; margin-left: -1px; } .nav { margin-bottom: 0; padding-left: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eeeeee; } .nav > li.disabled > a { color: #bbbbbb; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #bbbbbb; text-decoration: none; background-color: transparent; cursor: not-allowed; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eeeeee; border-color: #2196f3; } .nav .nav-divider { height: 1px; margin: 10.5px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid transparent; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.846; border: 1px solid transparent; border-radius: 3px 3px 0 0; } .nav-tabs > li > a:hover { border-color: #eeeeee #eeeeee transparent; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #666666; background-color: transparent; border: 1px solid transparent; border-bottom-color: transparent; cursor: default; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 3px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid transparent; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid transparent; border-radius: 3px 3px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #ffffff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 3px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #ffffff; background-color: #2196f3; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 3px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid transparent; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid transparent; border-radius: 3px 3px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #ffffff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar { position: relative; min-height: 64px; margin-bottom: 23px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-radius: 3px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { overflow-x: visible; padding-right: 15px; padding-left: 15px; border-top: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); -webkit-overflow-scrolling: touch; } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-left: 0; padding-right: 0; } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 340px; } @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; padding: 20.5px 15px; font-size: 17px; line-height: 23px; height: 64px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; margin-right: 15px; padding: 9px 10px; margin-top: 15px; margin-bottom: 15px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 3px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 10.25px -15px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 23px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 23px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 20.5px; padding-bottom: 20.5px; } } .navbar-form { margin-left: -15px; margin-right: -15px; padding: 10px 15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); margin-top: 13.5px; margin-bottom: 13.5px; } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media (min-width: 768px) { .navbar-form { width: auto; border: 0; margin-left: 0; margin-right: 0; padding-top: 0; padding-bottom: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-right-radius: 3px; border-top-left-radius: 3px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 13.5px; margin-bottom: 13.5px; } .navbar-btn.btn-sm { margin-top: 17px; margin-bottom: 17px; } .navbar-btn.btn-xs { margin-top: 21px; margin-bottom: 21px; } .navbar-text { margin-top: 20.5px; margin-bottom: 20.5px; } @media (min-width: 768px) { .navbar-text { float: left; margin-left: 15px; margin-right: 15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; margin-right: -15px; } .navbar-right ~ .navbar-right { margin-right: 0; } } .navbar-default { background-color: #ffffff; border-color: transparent; } .navbar-default .navbar-brand { color: #666666; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #212121; background-color: transparent; } .navbar-default .navbar-text { color: #bbbbbb; } .navbar-default .navbar-nav > li > a { color: #666666; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #212121; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #212121; background-color: #eeeeee; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #cccccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: transparent; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: transparent; } .navbar-default .navbar-toggle .icon-bar { background-color: rgba(0, 0, 0, 0.5); } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: transparent; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #eeeeee; color: #212121; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #666666; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #212121; 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: #212121; background-color: #eeeeee; } .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: #cccccc; background-color: transparent; } } .navbar-default .navbar-link { color: #666666; } .navbar-default .navbar-link:hover { color: #212121; } .navbar-default .btn-link { color: #666666; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: #212121; } .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: #cccccc; } .navbar-inverse { background-color: #2196f3; border-color: transparent; } .navbar-inverse .navbar-brand { color: #b2dbfb; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-text { color: #bbbbbb; } .navbar-inverse .navbar-nav > li > a { color: #b2dbfb; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #ffffff; background-color: #0c7cd5; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #444444; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: transparent; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: transparent; } .navbar-inverse .navbar-toggle .icon-bar { background-color: rgba(0, 0, 0, 0.5); } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #0c84e4; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { background-color: #0c7cd5; color: #ffffff; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #b2dbfb; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #ffffff; background-color: #0c7cd5; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444444; background-color: transparent; } } .navbar-inverse .navbar-link { color: #b2dbfb; } .navbar-inverse .navbar-link:hover { color: #ffffff; } .navbar-inverse .btn-link { color: #b2dbfb; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: #ffffff; } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { color: #444444; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #ffffff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } a.label:hover, a.label:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #bbbbbb; } .label-default[href]:hover, .label-default[href]:focus { background-color: #a2a2a2; } .label-primary { background-color: #2196f3; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #0c7cd5; } .label-success { background-color: #4caf50; } .label-success[href]:hover, .label-success[href]:focus { background-color: #3d8b40; } .label-info { background-color: #9c27b0; } .label-info[href]:hover, .label-info[href]:focus { background-color: #771e86; } .label-warning { background-color: #ff9800; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #cc7a00; } .label-danger { background-color: #da0078; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #a7005c; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: normal; color: #ffffff; line-height: 1; vertical-align: middle; white-space: nowrap; text-align: center; background-color: #bbbbbb; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge, .btn-group-xs > .btn .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #2196f3; background-color: #ffffff; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .list-group { margin-bottom: 20px; padding-left: 0; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #ffffff; border: 1px solid #dddddd; } .list-group-item:first-child { border-top-right-radius: 3px; border-top-left-radius: 3px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } a.list-group-item, button.list-group-item { color: #555555; } a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading { color: #333333; } a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus { text-decoration: none; color: #555555; background-color: #f5f5f5; } button.list-group-item { width: 100%; text-align: left; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { background-color: #eeeeee; color: #bbbbbb; cursor: not-allowed; } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { color: #bbbbbb; } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; color: #ffffff; background-color: #2196f3; border-color: #2196f3; } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { color: #e3f2fd; } .list-group-item-success { color: #4caf50; background-color: #dff0d8; } a.list-group-item-success, button.list-group-item-success { color: #4caf50; } a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus { color: #4caf50; background-color: #d0e9c6; } a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus { color: #fff; background-color: #4caf50; border-color: #4caf50; } .list-group-item-info { color: #9c27b0; background-color: #e1bee7; } a.list-group-item-info, button.list-group-item-info { color: #9c27b0; } a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus { color: #9c27b0; background-color: #d8abe0; } a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus { color: #fff; background-color: #9c27b0; border-color: #9c27b0; } .list-group-item-warning { color: #ff9800; background-color: #ffe0b2; } a.list-group-item-warning, button.list-group-item-warning { color: #ff9800; } a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus { color: #ff9800; background-color: #ffd699; } a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus { color: #fff; background-color: #ff9800; border-color: #ff9800; } .list-group-item-danger { color: #da0078; background-color: #f9bdbb; } a.list-group-item-danger, button.list-group-item-danger { color: #da0078; } a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus { color: #da0078; background-color: #f7a6a4; } a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus { color: #fff; background-color: #da0078; border-color: #da0078; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 23px; background-color: #ffffff; border: 1px solid transparent; border-radius: 3px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-right-radius: 2px; border-top-left-radius: 2px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 15px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #dddddd; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-right-radius: 2px; border-top-left-radius: 2px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-left: 15px; padding-right: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-right-radius: 2px; border-top-left-radius: 2px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 2px; border-top-right-radius: 2px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 2px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 2px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 2px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 2px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #dddddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { border: 0; margin-bottom: 0; } .panel-group { margin-bottom: 23px; } .panel-group .panel { margin-bottom: 0; border-radius: 3px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #dddddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #dddddd; } .panel-default { border-color: #dddddd; } .panel-default > .panel-heading { color: #212121; background-color: #f5f5f5; border-color: #dddddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #dddddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #212121; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #dddddd; } .panel-primary { border-color: #2196f3; } .panel-primary > .panel-heading { color: #ffffff; background-color: #2196f3; border-color: #2196f3; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #2196f3; } .panel-primary > .panel-heading .badge { color: #2196f3; background-color: #ffffff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #2196f3; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #ffffff; background-color: #4caf50; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #4caf50; background-color: #ffffff; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #cba4dd; } .panel-info > .panel-heading { color: #ffffff; background-color: #9c27b0; border-color: #cba4dd; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #cba4dd; } .panel-info > .panel-heading .badge { color: #9c27b0; background-color: #ffffff; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #cba4dd; } .panel-warning { border-color: #ffc599; } .panel-warning > .panel-heading { color: #ffffff; background-color: #ff9800; border-color: #ffc599; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ffc599; } .panel-warning > .panel-heading .badge { color: #ff9800; background-color: #ffffff; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ffc599; } .panel-danger { border-color: #f7a4af; } .panel-danger > .panel-heading { color: #ffffff; background-color: #da0078; border-color: #f7a4af; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #f7a4af; } .panel-danger > .panel-heading .badge { color: #da0078; background-color: #ffffff; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #f7a4af; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; left: 0; bottom: 0; height: 100%; width: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f9f9f9; border: 1px solid transparent; border-radius: 3px; -webkit-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-lg { padding: 24px; border-radius: 3px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 19.5px; font-weight: normal; line-height: 1; color: #000000; text-shadow: none; opacity: 0.2; filter: alpha(opacity=20); } .close:hover, .close:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.5; filter: alpha(opacity=50); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .modal-open { overflow: hidden; } .modal { display: none; overflow: hidden; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); -webkit-transition: -webkit-transform 0.3s ease-out; -o-transition: -o-transform 0.3s ease-out; transition: transform 0.3s ease-out; } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #ffffff; border: 1px solid #999999; border: 1px solid transparent; border-radius: 3px; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); -webkit-background-clip: padding-box; background-clip: padding-box; outline: 0; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000; } .modal-backdrop.fade { opacity: 0; filter: alpha(opacity=0); } .modal-backdrop.in { opacity: 0.5; filter: alpha(opacity=50); } .modal-header { padding: 15px; border-bottom: 1px solid transparent; min-height: 16.846px; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.846; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid transparent; } .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; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; font-style: normal; font-weight: normal; letter-spacing: normal; line-break: auto; line-height: 1.846; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; white-space: normal; word-break: normal; word-spacing: normal; word-wrap: normal; font-size: 12px; opacity: 0; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.9; filter: alpha(opacity=90); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; background-color: #727272; border-radius: 3px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #727272; } .tooltip.top-left .tooltip-arrow { bottom: 0; right: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #727272; } .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #727272; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #727272; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #727272; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #727272; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #727272; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #727272; } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { content: " "; display: table; } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .panel-body:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-left: auto; margin-right: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table !important; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { .visible-xs-block { display: block !important; } } @media (max-width: 767px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table !important; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table !important; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table !important; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table !important; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } } .navbar { border: none; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } .navbar-brand { font-size: 24px; } .navbar-inverse .navbar-form input[type=text], .navbar-inverse .navbar-form input[type=password] { color: #fff; -webkit-box-shadow: inset 0 -1px 0 #b2dbfb; box-shadow: inset 0 -1px 0 #b2dbfb; } .navbar-inverse .navbar-form input[type=text]::-moz-placeholder, .navbar-inverse .navbar-form input[type=password]::-moz-placeholder { color: #b2dbfb; opacity: 1; } .navbar-inverse .navbar-form input[type=text]:-ms-input-placeholder, .navbar-inverse .navbar-form input[type=password]:-ms-input-placeholder { color: #b2dbfb; } .navbar-inverse .navbar-form input[type=text]::-webkit-input-placeholder, .navbar-inverse .navbar-form input[type=password]::-webkit-input-placeholder { color: #b2dbfb; } .navbar-inverse .navbar-form input[type=text]:focus, .navbar-inverse .navbar-form input[type=password]:focus { -webkit-box-shadow: inset 0 -2px 0 #ffffff; box-shadow: inset 0 -2px 0 #ffffff; } .btn-default { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-default:focus { background-color: #ffffff; } .btn-default:hover, .btn-default:active:hover { background-color: #f0f0f0; } .btn-default:active { background-color: #e0e0e0; background-image: -webkit-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: -o-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-primary { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-primary:focus { background-color: #2196f3; } .btn-primary:hover, .btn-primary:active:hover { background-color: #0d87e9; } .btn-primary:active { background-color: #0b76cc; background-image: -webkit-radial-gradient(circle, #0b76cc 10%, #2196f3 11%); background-image: -o-radial-gradient(circle, #0b76cc 10%, #2196f3 11%); background-image: radial-gradient(circle, #0b76cc 10%, #2196f3 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-success { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-success:focus { background-color: #4caf50; } .btn-success:hover, .btn-success:active:hover { background-color: #439a46; } .btn-success:active { background-color: #39843c; background-image: -webkit-radial-gradient(circle, #39843c 10%, #4caf50 11%); background-image: -o-radial-gradient(circle, #39843c 10%, #4caf50 11%); background-image: radial-gradient(circle, #39843c 10%, #4caf50 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-info { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-info:focus { background-color: #9c27b0; } .btn-info:hover, .btn-info:active:hover { background-color: #862197; } .btn-info:active { background-color: #701c7e; background-image: -webkit-radial-gradient(circle, #701c7e 10%, #9c27b0 11%); background-image: -o-radial-gradient(circle, #701c7e 10%, #9c27b0 11%); background-image: radial-gradient(circle, #701c7e 10%, #9c27b0 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-warning { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-warning:focus { background-color: #ff9800; } .btn-warning:hover, .btn-warning:active:hover { background-color: #e08600; } .btn-warning:active { background-color: #c27400; background-image: -webkit-radial-gradient(circle, #c27400 10%, #ff9800 11%); background-image: -o-radial-gradient(circle, #c27400 10%, #ff9800 11%); background-image: radial-gradient(circle, #c27400 10%, #ff9800 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-danger { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-danger:focus { background-color: #da0078; } .btn-danger:hover, .btn-danger:active:hover { background-color: #bb0067; } .btn-danger:active { background-color: #9d0056; background-image: -webkit-radial-gradient(circle, #9d0056 10%, #da0078 11%); background-image: -o-radial-gradient(circle, #9d0056 10%, #da0078 11%); background-image: radial-gradient(circle, #9d0056 10%, #da0078 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-link { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-link:focus { background-color: #ffffff; } .btn-link:hover, .btn-link:active:hover { background-color: #f0f0f0; } .btn-link:active { background-color: #e0e0e0; background-image: -webkit-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: -o-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn { text-transform: uppercase; border: none; -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); -webkit-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s; } .btn-link { border-radius: 3px; -webkit-box-shadow: none; box-shadow: none; color: #444444; } .btn-link:hover, .btn-link:focus { -webkit-box-shadow: none; box-shadow: none; color: #444444; text-decoration: none; } .btn-default.disabled { background-color: rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.4); opacity: 1; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: 0; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: 0; } body { -webkit-font-smoothing: antialiased; letter-spacing: .1px; } p { margin: 0 0 1em; } input, button { -webkit-font-smoothing: antialiased; letter-spacing: .1px; } a { -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } .table-hover > tbody > tr, .table-hover > tbody > tr > th, .table-hover > tbody > tr > td { -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } label { font-weight: normal; } textarea, textarea.form-control, input.form-control, input[type=text], input[type=password], input[type=email], input[type=number], [type=text].form-control, [type=password].form-control, [type=email].form-control, [type=tel].form-control, [contenteditable].form-control { padding: 0; border: none; border-radius: 0; -webkit-appearance: none; -webkit-box-shadow: inset 0 -1px 0 #dddddd; box-shadow: inset 0 -1px 0 #dddddd; font-size: 16px; } textarea:focus, textarea.form-control:focus, input.form-control:focus, input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus, [type=text].form-control:focus, [type=password].form-control:focus, [type=email].form-control:focus, [type=tel].form-control:focus, [contenteditable].form-control:focus { -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; } textarea[disabled], textarea.form-control[disabled], input.form-control[disabled], input[type=text][disabled], input[type=password][disabled], input[type=email][disabled], input[type=number][disabled], [type=text].form-control[disabled], [type=password].form-control[disabled], [type=email].form-control[disabled], [type=tel].form-control[disabled], [contenteditable].form-control[disabled], textarea[readonly], textarea.form-control[readonly], input.form-control[readonly], input[type=text][readonly], input[type=password][readonly], input[type=email][readonly], input[type=number][readonly], [type=text].form-control[readonly], [type=password].form-control[readonly], [type=email].form-control[readonly], [type=tel].form-control[readonly], [contenteditable].form-control[readonly] { -webkit-box-shadow: none; box-shadow: none; border-bottom: 1px dotted #ddd; } textarea.input-sm, textarea.form-control.input-sm, input.form-control.input-sm, input[type=text].input-sm, input[type=password].input-sm, input[type=email].input-sm, input[type=number].input-sm, [type=text].form-control.input-sm, [type=password].form-control.input-sm, [type=email].form-control.input-sm, [type=tel].form-control.input-sm, [contenteditable].form-control.input-sm { font-size: 12px; } textarea.input-lg, textarea.form-control.input-lg, input.form-control.input-lg, input[type=text].input-lg, input[type=password].input-lg, input[type=email].input-lg, input[type=number].input-lg, [type=text].form-control.input-lg, [type=password].form-control.input-lg, [type=email].form-control.input-lg, [type=tel].form-control.input-lg, [contenteditable].form-control.input-lg { font-size: 17px; } select, select.form-control { border: 0; border-radius: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; padding-left: 0; padding-right: 0\9; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEVmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmaP/QSjAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=); -webkit-background-size: 13px 13px; background-size: 13px; background-repeat: no-repeat; background-position: right center; -webkit-box-shadow: inset 0 -1px 0 #dddddd; box-shadow: inset 0 -1px 0 #dddddd; font-size: 16px; line-height: 1.5; } select::-ms-expand, select.form-control::-ms-expand { display: none; } select.input-sm, select.form-control.input-sm { font-size: 12px; } select.input-lg, select.form-control.input-lg { font-size: 17px; } select:focus, select.form-control:focus { -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEUhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISF8S9ewAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=); } select[multiple], select.form-control[multiple] { background: none; } .radio label, .radio-inline label, .checkbox label, .checkbox-inline label { padding-left: 25px; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="radio"], .checkbox-inline input[type="radio"], .radio input[type="checkbox"], .radio-inline input[type="checkbox"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { margin-left: -25px; } input[type="radio"], .radio input[type="radio"], .radio-inline input[type="radio"] { position: relative; margin-top: 6px; margin-right: 4px; vertical-align: top; border: none; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; } input[type="radio"]:focus, .radio input[type="radio"]:focus, .radio-inline input[type="radio"]:focus { outline: none; } input[type="radio"]:before, .radio input[type="radio"]:before, .radio-inline input[type="radio"]:before, input[type="radio"]:after, .radio input[type="radio"]:after, .radio-inline input[type="radio"]:after { content: ""; display: block; width: 18px; height: 18px; border-radius: 50%; -webkit-transition: 240ms; -o-transition: 240ms; transition: 240ms; } input[type="radio"]:before, .radio input[type="radio"]:before, .radio-inline input[type="radio"]:before { position: absolute; left: 0; top: -3px; background-color: #2196f3; -webkit-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); transform: scale(0); } input[type="radio"]:after, .radio input[type="radio"]:after, .radio-inline input[type="radio"]:after { position: relative; top: -3px; border: 2px solid #666666; } input[type="radio"]:checked:before, .radio input[type="radio"]:checked:before, .radio-inline input[type="radio"]:checked:before { -webkit-transform: scale(0.5); -ms-transform: scale(0.5); -o-transform: scale(0.5); transform: scale(0.5); } input[type="radio"]:disabled:checked:before, .radio input[type="radio"]:disabled:checked:before, .radio-inline input[type="radio"]:disabled:checked:before { background-color: #bbbbbb; } input[type="radio"]:checked:after, .radio input[type="radio"]:checked:after, .radio-inline input[type="radio"]:checked:after { border-color: #2196f3; } input[type="radio"]:disabled:after, .radio input[type="radio"]:disabled:after, .radio-inline input[type="radio"]:disabled:after, input[type="radio"]:disabled:checked:after, .radio input[type="radio"]:disabled:checked:after, .radio-inline input[type="radio"]:disabled:checked:after { border-color: #bbbbbb; } input[type="checkbox"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: relative; border: none; margin-bottom: -4px; -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; } input[type="checkbox"]:focus, .checkbox input[type="checkbox"]:focus, .checkbox-inline input[type="checkbox"]:focus { outline: none; } input[type="checkbox"]:focus:after, .checkbox input[type="checkbox"]:focus:after, .checkbox-inline input[type="checkbox"]:focus:after { border-color: #2196f3; } input[type="checkbox"]:after, .checkbox input[type="checkbox"]:after, .checkbox-inline input[type="checkbox"]:after { content: ""; display: block; width: 18px; height: 18px; margin-top: -2px; margin-right: 5px; border: 2px solid #666666; border-radius: 2px; -webkit-transition: 240ms; -o-transition: 240ms; transition: 240ms; } input[type="checkbox"]:checked:before, .checkbox input[type="checkbox"]:checked:before, .checkbox-inline input[type="checkbox"]:checked:before { content: ""; position: absolute; top: 0; left: 6px; display: table; width: 6px; height: 12px; border: 2px solid #fff; border-top-width: 0; border-left-width: 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } input[type="checkbox"]:checked:after, .checkbox input[type="checkbox"]:checked:after, .checkbox-inline input[type="checkbox"]:checked:after { background-color: #2196f3; border-color: #2196f3; } input[type="checkbox"]:disabled:after, .checkbox input[type="checkbox"]:disabled:after, .checkbox-inline input[type="checkbox"]:disabled:after { border-color: #bbbbbb; } input[type="checkbox"]:disabled:checked:after, .checkbox input[type="checkbox"]:disabled:checked:after, .checkbox-inline input[type="checkbox"]:disabled:checked:after { background-color: #bbbbbb; border-color: transparent; } .has-warning input:not([type=checkbox]), .has-warning .form-control, .has-warning input.form-control[readonly], .has-warning input[type=text][readonly], .has-warning [type=text].form-control[readonly], .has-warning input:not([type=checkbox]):focus, .has-warning .form-control:focus { border-bottom: none; -webkit-box-shadow: inset 0 -2px 0 #ff9800; box-shadow: inset 0 -2px 0 #ff9800; } .has-error input:not([type=checkbox]), .has-error .form-control, .has-error input.form-control[readonly], .has-error input[type=text][readonly], .has-error [type=text].form-control[readonly], .has-error input:not([type=checkbox]):focus, .has-error .form-control:focus { border-bottom: none; -webkit-box-shadow: inset 0 -2px 0 #da0078; box-shadow: inset 0 -2px 0 #da0078; } .has-success input:not([type=checkbox]), .has-success .form-control, .has-success input.form-control[readonly], .has-success input[type=text][readonly], .has-success [type=text].form-control[readonly], .has-success input:not([type=checkbox]):focus, .has-success .form-control:focus { border-bottom: none; -webkit-box-shadow: inset 0 -2px 0 #4caf50; box-shadow: inset 0 -2px 0 #4caf50; } .has-warning .input-group-addon, .has-error .input-group-addon, .has-success .input-group-addon { color: #666666; border-color: transparent; background-color: transparent; } .nav-tabs > li > a, .nav-tabs > li > a:focus { margin-right: 0; background-color: transparent; border: none; color: #666666; -webkit-box-shadow: inset 0 -1px 0 #dddddd; box-shadow: inset 0 -1px 0 #dddddd; -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } .nav-tabs > li > a:hover, .nav-tabs > li > a:focus:hover { background-color: transparent; -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; color: #2196f3; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus { border: none; -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; color: #2196f3; } .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus:hover { border: none; color: #2196f3; } .nav-tabs > li.disabled > a { -webkit-box-shadow: inset 0 -1px 0 #dddddd; box-shadow: inset 0 -1px 0 #dddddd; } .nav-tabs.nav-justified > li > a, .nav-tabs.nav-justified > li > a:hover, .nav-tabs.nav-justified > li > a:focus, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: none; } .nav-tabs .dropdown-menu { margin-top: 0; } .dropdown-menu { margin-top: 0; border: none; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); } .alert { border: none; color: #fff; } .alert-success { background-color: #4caf50; } .alert-info { background-color: #9c27b0; } .alert-warning { background-color: #ff9800; } .alert-danger { background-color: #da0078; } .alert a:not(.close), .alert .alert-link { color: #fff; font-weight: bold; } .alert .close { color: #fff; } .badge { padding: 3px 6px 5px; } .progress { position: relative; z-index: 1; height: 6px; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; } .progress-bar { -webkit-box-shadow: none; box-shadow: none; } .progress-bar:last-child { border-radius: 0 3px 3px 0; } .progress-bar:last-child:before { display: block; content: ""; position: absolute; width: 100%; height: 100%; left: 0; right: 0; z-index: -1; background-color: #cae6fc; } .progress-bar-success:last-child.progress-bar:before { background-color: #c7e7c8; } .progress-bar-info:last-child.progress-bar:before { background-color: #edc9f3; } .progress-bar-warning:last-child.progress-bar:before { background-color: #ffe0b3; } .progress-bar-danger:last-child.progress-bar:before { background-color: #ff5bb5; } .close { font-size: 34px; font-weight: 300; line-height: 24px; opacity: 0.6; -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } .close:hover { opacity: 1; } .list-group-item { padding: 15px; } .list-group-item-text { color: #bbbbbb; } .well { border-radius: 0; -webkit-box-shadow: none; box-shadow: none; } .panel { border: none; border-radius: 2px; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); } .panel-heading { border-bottom: none; } .panel-footer { border-top: none; } .popover { border: none; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); } .carousel-caption h1, .carousel-caption h2, .carousel-caption h3, .carousel-caption h4, .carousel-caption h5, .carousel-caption h6 { color: inherit; } @charset "UTF-8"; /*! Animate.css - http://daneden.me/animate Licensed under the MIT license - http://opensource.org/licenses/MIT Copyright (c) 2015 <NAME> */ .animated { -webkit-animation-duration: 1s; -o-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; -o-animation-fill-mode: both; animation-fill-mode: both } .animated.infinite { -webkit-animation-iteration-count: infinite; -o-animation-iteration-count: infinite; animation-iteration-count: infinite } .animated.hinge { -webkit-animation-duration: 2s; -o-animation-duration: 2s; animation-duration: 2s } .animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY { -webkit-animation-duration: .75s; -o-animation-duration: .75s; animation-duration: .75s } @-webkit-keyframes shake { 0%, 100% { -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-48%) translateY(-50%); transform: translateX(-48%) translateY(-50%); } 20%, 40%, 60%, 80% { -webkit-transform: translateX(-52%) translateY(-50%); transform: translateX(-52%) translateY(-50%); } } @-o-keyframes shake { 0%, 100% { -webkit-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-48%) translateY(-50%); -o-transform: translateX(-48%) translateY(-50%); transform: translateX(-48%) translateY(-50%); } 20%, 40%, 60%, 80% { -webkit-transform: translateX(-52%) translateY(-50%); -o-transform: translateX(-52%) translateY(-50%); transform: translateX(-52%) translateY(-50%); } } @keyframes shake { 0%, 100% { -webkit-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-48%) translateY(-50%); -o-transform: translateX(-48%) translateY(-50%); transform: translateX(-48%) translateY(-50%); } 20%, 40%, 60%, 80% { -webkit-transform: translateX(-52%) translateY(-50%); -o-transform: translateX(-52%) translateY(-50%); transform: translateX(-52%) translateY(-50%); } } .shake { -webkit-animation-name: shake; -o-animation-name: shake; animation-name: shake; } @-webkit-keyframes bounceIn { 0%, 100%, 20%, 40%, 60%, 80% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1) } 40% { -webkit-transform: scale3d(.9, .9, .9); transform: scale3d(.9, .9, .9) } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03) } 80% { -webkit-transform: scale3d(.97, .97, .97); transform: scale3d(.97, .97, .97) } 100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1) } } @-o-keyframes bounceIn { 0%, 100%, 20%, 40%, 60%, 80% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); -o-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1) } 40% { -webkit-transform: scale3d(.9, .9, .9); transform: scale3d(.9, .9, .9) } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03) } 80% { -webkit-transform: scale3d(.97, .97, .97); transform: scale3d(.97, .97, .97) } 100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1) } } @keyframes bounceIn { 0%, 100%, 20%, 40%, 60%, 80% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); -o-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1) } 40% { -webkit-transform: scale3d(.9, .9, .9); transform: scale3d(.9, .9, .9) } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03) } 80% { -webkit-transform: scale3d(.97, .97, .97); transform: scale3d(.97, .97, .97) } 100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1) } } .bounceIn { -webkit-animation-name: bounceIn; -o-animation-name: bounceIn; animation-name: bounceIn } @-webkit-keyframes bounceInUp { 0%, 100%, 60%, 75%, 90% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0) } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0) } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0) } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0) } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } @-o-keyframes bounceInUp { 0%, 100%, 60%, 75%, 90% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); -o-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0) } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0) } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0) } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0) } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } @keyframes bounceInUp { 0%, 100%, 60%, 75%, 90% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); -o-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0) } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0) } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0) } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0) } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } .bounceInUp { -webkit-animation-name: bounceInUp; -o-animation-name: bounceInUp; animation-name: bounceInUp } @-webkit-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0) } 100% { opacity: 1; -webkit-transform: none; transform: none } } @-o-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0) } 100% { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none } } @keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0) } 100% { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none } } .fadeInUp { -webkit-animation-name: fadeInUp; -o-animation-name: fadeInUp; animation-name: fadeInUp } .fadeInUp { -webkit-animation-name: fadeInUp; -o-animation-name: fadeInUp; animation-name: fadeInUp } @-webkit-keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0) } 100% { opacity: 1; -webkit-transform: none; transform: none } } @-o-keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0) } 100% { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none } } @keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0) } 100% { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none } } .fadeInUpBig { -webkit-animation-name: fadeInUpBig; -o-animation-name: fadeInUpBig; animation-name: fadeInUpBig } @-webkit-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0 } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1 } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg) } 100% { -webkit-transform: perspective(400px); transform: perspective(400px) } } @-o-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0 } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1 } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg) } 100% { -webkit-transform: perspective(400px); transform: perspective(400px) } } @keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0 } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1 } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg) } 100% { -webkit-transform: perspective(400px); transform: perspective(400px) } } .flipInX { -webkit-backface-visibility: visible!important; backface-visibility: visible!important; -webkit-animation-name: flipInX; -o-animation-name: flipInX; animation-name: flipInX } @-webkit-keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } @-o-keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } @keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } .slideInUp { -webkit-animation-name: slideInUp; -o-animation-name: slideInUp; animation-name: slideInUp } @-webkit-keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 50% { opacity: 1 } } @-o-keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 50% { opacity: 1 } } @keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 50% { opacity: 1 } } .zoomIn { -webkit-animation-name: zoomIn; -o-animation-name: zoomIn; animation-name: zoomIn; -webkit-animation-duration: 0.5s; -o-animation-duration: 0.5s; animation-duration: 0.5s; } /* * Toastr * Copyright 2012-2014 <NAME> and <NAME>. * All Rights Reserved. * Use, reproduction, distribution, and modification of this code is subject to the terms and * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php * * Author: <NAME> and <NAME> * Project: https://github.com/CodeSeven/toastr */ .toast-title { font-weight: bold; } .toast-message { -ms-word-wrap: break-word; word-wrap: break-word; } .toast-message a, .toast-message label { color: #ffffff; } .toast-message a:hover { color: #cccccc; text-decoration: none; } .toast-close-button { position: relative; right: -0.3em; top: -0.3em; float: right; font-size: 20px; font-weight: bold; color: #ffffff; -webkit-text-shadow: 0 1px 0 #ffffff; text-shadow: 0 1px 0 #ffffff; opacity: 0.8; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter: alpha(opacity=80); } .toast-close-button:hover, .toast-close-button:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.4; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40); filter: alpha(opacity=40); } /*Additional properties for button version iOS requires the button element instead of an anchor tag. If you want the anchor version, it requires `href="#"`.*/ button.toast-close-button { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .toast-top-full-width { top: 50px; right: 0; width: 100%; } .toast-bottom-full-width { bottom: 20px; right: 0; width: 100%; } .toast-top-left { top: 12px; left: 12px; } .toast-top-right { top: 12px; right: 12px; } .toast-bottom-right { right: 12px; bottom: 12px; } .toast-bottom-left { bottom: 12px; left: 12px; } #toast-container { position: fixed; z-index: 999999; text-align: center; font-size: 12px; /*overrides*/ } #toast-container * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } #toast-container > div { margin: 0 0 6px; padding: 15px 15px 15px 50px; width: 300px; border-radius: 3px 3px 3px 3px; background-position: 15px center; background-repeat: no-repeat; -webkit-box-shadow: 0 0 12px #999999; box-shadow: 0 0 12px #999999; color: #ffffff; opacity: 0.8; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter: alpha(opacity=80); } #toast-container > :hover { -webkit-box-shadow: 0 0 12px #000000; box-shadow: 0 0 12px #000000; opacity: 1; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); filter: alpha(opacity=100); cursor: pointer; } /* #toast-container > .toast-info { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUV<KEY>=") !important; } #toast-container > .toast-error { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAA<KEY>GFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important; } #toast-container > .toast-success { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important; } #toast-container > .toast-warning { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important; } */ #toast-container.toast-top-full-width > div, #toast-container.toast-bottom-full-width > div { width: 60%; margin: auto; } .toast { background-color: #030303; } /* .toast-success { background-color: #51a351; } .toast-error { background-color: #bd362f; } */ .toast-success, .toast-error { background-color: #000; background: rgba(0,0,0,0.8); } .toast-success{ color:#d3b365 !important; } .toast-error { color:#fff !important; } .toast-info { background-color: #222; } .toast-warning { background-color: #f89406; } /*Responsive Design*/ @media all and (max-width: 240px) { #toast-container > div { padding: 8px 8px 8px 50px; width: 11em; } #toast-container .toast-close-button { right: -0.2em; top: -0.2em; } } @media all and (min-width: 241px) and (max-width: 480px) { #toast-container > div { padding: 8px 8px 8px 8px; width: 18em; } #toast-container .toast-close-button { right: -0.2em; top: -0.2em; } } @media all and (min-width: 481px) and (max-width: 768px) { #toast-container > div { padding: 15px 15px 15px 50px; width: 25em; } } .md-perspective, .md-perspective body { height: 100%; overflow: hidden } .md-perspective body { background: #dedede; -webkit-perspective: 600px; perspective: 600px } .md-modal { position: fixed; top: 50%; left: 50%; width: 50%; max-width: 630px; min-width: 300px; height: auto; z-index: 2000; border-radius: 2px; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%) } .md-show { display: block !important; visibility:visible !important; } .md-overlay { position: fixed; width: 100%; height: 100%; display: none; top: 0; left: 0; z-index: 1000; opacity: 0.8; background: rgba(66, 66, 66, 0.9); } .md-content { color: #464545; background: rgba(255,255,255,.8); position: relative; margin: 0 auto; border-radius: 3px; } .md-content h3 { margin: 0; padding: 20px 0px 20px 0px; text-align: center; font-size: 14px; font-weight: normal; background: transparent; border-top-left-radius: 2px; border-top-right-radius: 2px; } .md-content>div { padding: 5px 15px 5px; margin: 0; font-weight: 300; font-size: 1.0em } .md-content>div p { margin: 0; color: #222; line-height: 1.5em; text-align: left; font-size:14px; padding-bottom:10px; } .md-content>div p small{ line-height: 1.3em; } .md-content>div p a { font-size: 14px; color:#222; } .md-content>.md-content-footer { padding: 15px; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; } .md-content>.md-content-footer>a { cursor: pointer; display: block; width: 50%; float: left; text-align: center; color: #dfba61; font-size: 1.0rem; padding: 8px 0px; background: rgba(50, 50, 50, 0.9); /* -webkit-box-shadow: 1px 0px 0px #888; box-shadow: 1px 0px 0px #888; */ border-right:1px solid #f3f3f3; } .md-content>.md-content-footer>a.md-close-disabled{ /*background:rgba(30,30,42,0.9);*/ } .md-content>.md-content-footer>a.btn-block { width: 100%; float: none; border-radius:2px; } .md-content>.md-content-footer>a:hover, .md-content>.md-content-footer>a:active { background: rgba(40, 40, 40, 0.9) } .md-content>.md-content-footer>a.border-none { -webkit-box-shadow: none; box-shadow: none } /* Effect : fall */ .md-effect-fall.md-modal { -webkit-perspective: 1300px; perspective: 1300px; } .md-effect-fall .md-content { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; -webkit-transform: translateZ(500px) rotateX(20deg); -ms-transform: translateZ(500px) rotateX(20deg); transform: translateZ(500px) rotateX(20deg); -webkit-box-shadow: none; box-shadow: none; opacity: 0; } .md-show.md-effect-fall .md-content { -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; -webkit-transform: translateZ(0px) rotateX(0deg); -ms-transform: translateZ(0px) rotateX(0deg); transform: translateZ(0px) rotateX(0deg); opacity: 1; -webkit-box-shadow: 0px 1px 2px 0px #666; box-shadow: 0px 1px 2px 0px #666; } @font-face {font-family: "iconfont"; src: url('../font/iconfont.eot'); /* IE9*/ src: url('../font/iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../font/iconfont.woff') format('woff'), /* chrome、firefox */ url('../font/iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('../font/iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */ } .iconfont { font-family:"iconfont" !important; font-size:16px; font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0px; -moz-osx-font-smoothing: grayscale; } .icon-close:before { content: "\e607"; } .icon-mobile:before { content: "\e611"; } .icon-help:before { content: "\e60b"; } .icon-arrow-right:before { content: "\e615"; } .icon-close-o:before { content: "\e613"; } .icon-attention:before { content: "\e629"; } .icon-cardid:before { content: "\e621"; } .icon-declare:before { content: "\e61b"; } .icon-telephone:before { content: "\e609"; } body{ background-color: #ececec; font-size: 14px; } /* * 登录页面 ========================================*/ #login-panel{ display: block; margin-top: 50px; width: 100%; } .logo{ text-align: center; margin-bottom: 50px; } .logo > img{ width:100px; height:100px; border-radius: 50%; margin: 0 auto; } #login-panel .input-group-prefix{ position: relative; margin-left: -15px; margin-right: -15px; } #login-panel .input-group-prefix > label{ position: absolute; font-size: 14px; left: 10px; bottom: 6px; } #login-panel .input-group-prefix > input{ padding: 10px 15px 10px 75px; height: auto; border: 1px solid #f2f2f2; background-color: #fff; font-size: 14px; -webkit-box-shadow:none; box-shadow:none; } #login-panel .input-group-prefix > input:focus, #login-panel .input-group-prefix > input:active{ border-bottom :1px solid transparent; -webkit-box-shadow : none; box-shadow : none; } /* * 首页 ========================================*/ .header{ background: #272c2e url('../img/headerbg.jpg') no-repeat top center; -webkit-background-size: 100% auto; background-size: 100% auto; position: relative; padding-bottom:40px; } .header > .userinfo{ text-align: center; padding:40px 0px; } .header > .userinfo > .point{ height: 75px; width: 75px; border-radius: 50%; background-color: #fff; padding:18px 5px 10px; display: inline-block; } .header > .userinfo > .point > p{ color:#222; line-height: 1.2; margin: 5px 0px; } .header > .userinfo > .base{ display: inline-block; margin-left: 10px; text-align: left; } .header > .userinfo > .base > p{ margin:5px 0px 0px; line-height: 1.2; font-size: 16px; color:#fff; } .header > .userinfo > .base > .badge{ border-radius: 3px; background: rgba(20,20,20,0.8); padding:5px; color:#f2f2f2; display: inline-block; } .header > .help{ display: block; position: absolute; top:10px; right:10px; width:24px; height:24px; color:#fff; text-decoration: none; } .header > .help > i{ font-size: 18px; } .header > .navigation{ position: absolute; right: 0; bottom: 0; left: 0; z-index: 9; width: 100%; overflow: hidden; } .header > .navigation > ul{ display: -ms-flexbox; display: -webkit-box; display: -webkit-flex; display: box; display: flexbox; display: flex; width: 100%; padding: 0; margin: 0; list-style: none; } .header > .navigation > ul > li{ padding: 0px; text-align: center; cursor: pointer; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .header > .navigation > ul > li > a { display: block; padding: 10px 0; font-size: 14px; color: #fff; text-decoration: none; background:rgba(20,20,20,0.5); } .header > .navigation > ul > li > a:hover{ background:rgba(20,20,20,0.7); } .btn.btn-bordered{ border:1px solid #666; border-radius: 2px; color:#222; font-size: 14px; -webkit-box-shadow: none; box-shadow: none; padding: 8px 0px; } .btn.btn-bordered:hover{ background: rgba(60,60,60,0.1); } .list-group-item{ border:none; border-radius: 0px; padding:15px 0px; display: block; margin-bottom: 1px; border-bottom:1px solid #f8f8f8; } .list-group-item > .item-pic, .list-group-item > .item-content, .list-group-item > .item-op{ float:left; } .list-group-item > .item-pic, .list-group-item > .item-op{ padding-top: 4px; text-align: center; width:15%; } .list-group-item > .item-pic > img{ width:32px; height:32px; } .list-group-item > .item-content{ width:70%; } .list-group-item > .item-content > .list-group-item-heading{ font-size: 18px; margin-bottom: 0px; } .well.well-title{ padding:10px; margin: 0px; border-bottom:1px solid #f0f0f0; background-color: #f5f5f5; } .nav-tabs{ display: -ms-flexbox; display: -webkit-box; display: -webkit-flex; display: box; display: flexbox; display: flex; background: #fff; } .nav-tabs > li{ display: inline-block; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; text-align: center; } .nav-tabs > li > a:hover, .nav-tabs > li > a:focus:hover, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus:hover, .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus { border: none; -webkit-box-shadow: inset 0 -2px 0 #da0078; box-shadow: inset 0 -2px 0 #da0078; color: #da0078; } .record-list{ } .record-list > .list-group-item{ border-bottom: 1px solid #f0f0f0; -webkit-box-shadow: none; box-shadow: none; margin-bottom: 0px; -webkit-box-shadow: none; box-shadow: none; padding:10px; } .record-list > .list-group-item > h5{ float:left; font-size: 16px; margin:5px 5px 0px; } .record-list > .list-group-item > label{ font-size: 18px; font-weight: 600; margin:5px 10px 0px; float: right; line-height: 1; } .record-list > .list-group-item > span{ display: block; text-align: right; clear: both; padding-right:10px; line-height: 2; color:#888; } .well{ background-color: #fff; } .well-activity{ padding:10px; } .well-activity > h5{ border-bottom:1px solid #f2f2f2; padding-bottom:10px; margin:0px 0px 10px; font-size: 18px; color: #1c1c1c; } .well-activity > p{ color: #1c1c1c; } .well-activity > p img{ width: 100%; max-width: 100%; display: block; border:none; } /* * 等级页面 ========================================*/ .well-level{ padding:5px; margin-bottom: 10px; } .well-level > .well-pic{ width: 20%; float:left; text-align: center; padding-top: 18px; } .well-level > .well-pic > img{ width: 50px; height: 50px; } .well-level > .well-content{ width: 70%; float:left; margin-left: 15px; } .well-level > .well-content > .title{ color:#aa8e49; font-size: 16px; margin-bottom: 8px; font-weight: 600; } .well-level > .well-content > .point{ line-height: 1; margin-bottom: 8px; } .well-level > .well-content > .point > span{ font-size: 16px; } .well-level > .well-content > .descr{ line-height: 1; } .data-empty{ text-align: center; padding:15px; } /* * 活动页面 ========================================*/ .activity-header{ max-height: 320px; overflow: hidden; } .activity-header img{ width: 100%; max-width: 100%; } .activity-item{ background-color: #fff; clear: both; } .activity-item:hover{ background-color: #f5f5f5; } .activity-item .activity-img{ float:left; width:40%; padding:10px; } .activity-item .activity-img > img{ width:100%; max-width: 160px; border:1px solid #f5f5f5; } .activity-item .activity-content{ float:left; padding:5px; width:60%; } .activity-item .activity-content > h5{ font-size: 24px; } .activity-item .activity-content > p{ color:#0c0c0c; line-height: 1.4; margin-bottom: 10px; } .activity-item .activity-content > label{ color:#b0b0b0; line-height: 1.5; } .activity-item .activity-content > span{ display: block; float:right; height:24px; width:24px; margin-right: 10px; background-color: #d60276; color:#fff; text-align: center; } .activity-item .activity-content > span > i{ line-height: 1; }
Public/Home/css/mcmurphy.css
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"); /*! * bootswatch v3.3.5 * Homepage: http://bootswatch.com * Copyright 2012-2015 <NAME> * Licensed under MIT * Based on Bootstrap */ /*! * Bootstrap v3.3.5 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { font-size: 2em; margin: 0.67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 13px; line-height: 1.846; color: #666666; background-color: #ffffff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #2196f3; text-decoration: none; } a:hover, a:focus { color: #0a6ebd; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 3px; } .img-thumbnail { padding: 4px; line-height: 1.846; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 3px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; display: inline-block; max-width: 100%; height: auto; } .img-circle { border-radius: 50%; } hr { margin-top: 23px; margin-bottom: 23px; border: 0; border-top: 1px solid #eeeeee; } .sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role="button"] { cursor: pointer; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 400; line-height: 1.1; color: #444444; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #bbbbbb; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 23px; margin-bottom: 11.5px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 11.5px; margin-bottom: 11.5px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 56px; } h2, .h2 { font-size: 45px; } h3, .h3 { font-size: 34px; } h4, .h4 { font-size: 24px; } h5, .h5 { font-size: 20px; } h6, .h6 { font-size: 14px; } p { margin: 0 0 11.5px; } .lead { margin-bottom: 23px; font-size: 14px; font-weight: 300; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 19.5px; } } small, .small { font-size: 92%; } mark, .mark { background-color: #ffe0b2; padding: .2em; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #bbbbbb; } .text-primary { color: #2196f3; } a.text-primary:hover, a.text-primary:focus { color: #0c7cd5; } .text-success { color: #4caf50; } a.text-success:hover, a.text-success:focus { color: #3d8b40; } .text-info { color: #9c27b0; } a.text-info:hover, a.text-info:focus { color: #771e86; } .text-warning { color: #ff9800; } a.text-warning:hover, a.text-warning:focus { color: #cc7a00; } .text-danger { color: #da0078; } a.text-danger:hover, a.text-danger:focus { color: #a7005c; } .bg-primary { color: #fff; background-color: #2196f3; } a.bg-primary:hover, a.bg-primary:focus { background-color: #0c7cd5; } .bg-success { background-color: #dff0d8; } a.bg-success:hover, a.bg-success:focus { background-color: #c1e2b3; } .bg-info { background-color: #e1bee7; } a.bg-info:hover, a.bg-info:focus { background-color: #d099d9; } .bg-warning { background-color: #ffe0b2; } a.bg-warning:hover, a.bg-warning:focus { background-color: #ffcb7f; } .bg-danger { background-color: #f9bdbb; } a.bg-danger:hover, a.bg-danger:focus { background-color: #f5908c; } .page-header { padding-bottom: 10.5px; margin: 46px 0 23px; border-bottom: 1px solid #eeeeee; } ul, ol { margin-top: 0; margin-bottom: 11.5px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; margin-left: -5px; } .list-inline > li { display: inline-block; padding-left: 5px; padding-right: 5px; } dl { margin-top: 0; margin-bottom: 23px; } dt, dd { line-height: 1.846; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .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; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #bbbbbb; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 11.5px 23px; margin: 0 0 23px; font-size: 16.25px; border-left: 5px solid #eeeeee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.846; color: #bbbbbb; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; border-right: 5px solid #eeeeee; border-left: 0; text-align: right; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } address { margin-bottom: 23px; font-style: normal; line-height: 1.846; } .container { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } .row { margin-left: -15px; margin-right: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0%; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0%; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0%; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0%; } } fieldset { padding: 0; margin: 0; border: 0; min-width: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 23px; font-size: 19.5px; line-height: inherit; color: #212121; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 7px; font-size: 13px; line-height: 1.846; color: #666666; } .form-control { display: block; width: 100%; height: 37px; padding: 6px 16px; font-size: 13px; line-height: 1.846; color: #666666; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 3px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); } .form-control::-moz-placeholder { color: #bbbbbb; opacity: 1; } .form-control:-ms-input-placeholder { color: #bbbbbb; } .form-control::-webkit-input-placeholder { color: #bbbbbb; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: transparent; opacity: 1; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 37px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 45px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { min-height: 23px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-left: -20px; margin-top: 4px \9; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; vertical-align: middle; font-weight: normal; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .form-control-static { padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; min-height: 36px; } .form-control-static.input-lg, .form-control-static.input-sm { padding-left: 0; padding-right: 0; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 35px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 3px; } select.input-lg { height: 45px; line-height: 45px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .form-group-lg .form-control { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 3px; } .form-group-lg select.form-control { height: 45px; line-height: 45px; } .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control { height: auto; } .form-group-lg .form-control-static { height: 45px; min-height: 40px; padding: 11px 16px; font-size: 17px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 46.25px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 37px; height: 37px; line-height: 37px; text-align: center; pointer-events: none; } .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback { width: 45px; height: 45px; line-height: 45px; } .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { color: #4caf50; } .has-success .form-control { border-color: #4caf50; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-success .form-control:focus { border-color: #3d8b40; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #92cf94; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #92cf94; } .has-success .input-group-addon { color: #4caf50; border-color: #4caf50; background-color: #dff0d8; } .has-success .form-control-feedback { color: #4caf50; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #ff9800; } .has-warning .form-control { border-color: #ff9800; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-warning .form-control:focus { border-color: #cc7a00; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc166; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc166; } .has-warning .input-group-addon { color: #ff9800; border-color: #ff9800; background-color: #ffe0b2; } .has-warning .form-control-feedback { color: #ff9800; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #da0078; } .has-error .form-control { border-color: #da0078; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-error .form-control:focus { border-color: #a7005c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff41aa; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff41aa; } .has-error .input-group-addon { color: #da0078; border-color: #da0078; background-color: #f9bdbb; } .has-error .form-control-feedback { color: #da0078; } .has-feedback label ~ .form-control-feedback { top: 28px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #a6a6a6; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { margin-top: 0; margin-bottom: 0; padding-top: 7px; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 30px; } .form-horizontal .form-group { margin-left: -15px; margin-right: -15px; } @media (min-width: 768px) { .form-horizontal .control-label { text-align: right; margin-bottom: 0; padding-top: 7px; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 14.333333px; font-size: 17px; } } @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 6px 16px; font-size: 13px; line-height: 1.846; border-radius: 3px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: #444444; text-decoration: none; } .btn:active, .btn.active { outline: 0; background-image: none; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; opacity: 0.65; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #444444; background-color: #ffffff; border-color: transparent; } .btn-default:focus, .btn-default.focus { color: #444444; background-color: #e6e6e6; border-color: rgba(0, 0, 0, 0); } .btn-default:hover { color: #444444; background-color: #e6e6e6; border-color: rgba(0, 0, 0, 0); } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #444444; background-color: #e6e6e6; border-color: rgba(0, 0, 0, 0); } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #444444; background-color: #d4d4d4; border-color: rgba(0, 0, 0, 0); } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #ffffff; border-color: transparent; } .btn-default .badge { color: #ffffff; background-color: #444444; } .btn-primary { color: #ffffff; background-color: #2196f3; border-color: transparent; } .btn-primary:focus, .btn-primary.focus { color: #ffffff; background-color: #0c7cd5; border-color: rgba(0, 0, 0, 0); } .btn-primary:hover { color: #ffffff; background-color: #0c7cd5; border-color: rgba(0, 0, 0, 0); } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #ffffff; background-color: #0c7cd5; border-color: rgba(0, 0, 0, 0); } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #ffffff; background-color: #0a68b4; border-color: rgba(0, 0, 0, 0); } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #2196f3; border-color: transparent; } .btn-primary .badge { color: #2196f3; background-color: #ffffff; } .btn-success { color: #ffffff; background-color: #4caf50; border-color: transparent; } .btn-success:focus, .btn-success.focus { color: #ffffff; background-color: #3d8b40; border-color: rgba(0, 0, 0, 0); } .btn-success:hover { color: #ffffff; background-color: #3d8b40; border-color: rgba(0, 0, 0, 0); } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #ffffff; background-color: #3d8b40; border-color: rgba(0, 0, 0, 0); } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #ffffff; background-color: #327334; border-color: rgba(0, 0, 0, 0); } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #4caf50; border-color: transparent; } .btn-success .badge { color: #4caf50; background-color: #ffffff; } .btn-info { color: #ffffff; background-color: #9c27b0; border-color: transparent; } .btn-info:focus, .btn-info.focus { color: #ffffff; background-color: #771e86; border-color: rgba(0, 0, 0, 0); } .btn-info:hover { color: #ffffff; background-color: #771e86; border-color: rgba(0, 0, 0, 0); } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #ffffff; background-color: #771e86; border-color: rgba(0, 0, 0, 0); } .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { color: #ffffff; background-color: #5d1769; border-color: rgba(0, 0, 0, 0); } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #9c27b0; border-color: transparent; } .btn-info .badge { color: #9c27b0; background-color: #ffffff; } .btn-warning { color: #ffffff; background-color: #ff9800; border-color: transparent; } .btn-warning:focus, .btn-warning.focus { color: #ffffff; background-color: #cc7a00; border-color: rgba(0, 0, 0, 0); } .btn-warning:hover { color: #ffffff; background-color: #cc7a00; border-color: rgba(0, 0, 0, 0); } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #ffffff; background-color: #cc7a00; border-color: rgba(0, 0, 0, 0); } .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color: #ffffff; background-color: #a86400; border-color: rgba(0, 0, 0, 0); } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #ff9800; border-color: transparent; } .btn-warning .badge { color: #ff9800; background-color: #ffffff; } .btn-danger { color: #ffffff; background-color: #da0078; border-color: transparent; } .btn-danger:focus, .btn-danger.focus { color: #ffffff; background-color: #a7005c; border-color: rgba(0, 0, 0, 0); } .btn-danger:hover { color: #ffffff; background-color: #a7005c; border-color: rgba(0, 0, 0, 0); } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #ffffff; background-color: #a7005c; border-color: rgba(0, 0, 0, 0); } .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: #ffffff; background-color: #830048; border-color: rgba(0, 0, 0, 0); } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #da0078; border-color: transparent; } .btn-danger .badge { color: #da0078; background-color: #ffffff; } .btn-link { color: #2196f3; font-weight: normal; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #0a6ebd; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #bbbbbb; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 3px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-property: height, visibility; -o-transition-property: height, visibility; transition-property: height, visibility; -webkit-transition-duration: 0.35s; -o-transition-duration: 0.35s; transition-duration: 0.35s; -webkit-transition-timing-function: ease; -o-transition-timing-function: ease; transition-timing-function: ease; } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-left: 12px; padding-right: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 3px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-bottom-left-radius: 3px; border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { float: none; display: table-cell; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-left: 0; padding-right: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 45px; padding: 10px 16px; font-size: 17px; line-height: 1.3333333; border-radius: 3px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 45px; line-height: 45px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 16px; font-size: 13px; font-weight: normal; line-height: 1; color: #666666; text-align: center; background-color: transparent; border: 1px solid transparent; border-radius: 3px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 17px; border-radius: 3px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-top-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-bottom-left-radius: 0; border-top-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { z-index: 2; margin-left: -1px; } .nav { margin-bottom: 0; padding-left: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eeeeee; } .nav > li.disabled > a { color: #bbbbbb; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #bbbbbb; text-decoration: none; background-color: transparent; cursor: not-allowed; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eeeeee; border-color: #2196f3; } .nav .nav-divider { height: 1px; margin: 10.5px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid transparent; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.846; border: 1px solid transparent; border-radius: 3px 3px 0 0; } .nav-tabs > li > a:hover { border-color: #eeeeee #eeeeee transparent; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #666666; background-color: transparent; border: 1px solid transparent; border-bottom-color: transparent; cursor: default; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 3px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid transparent; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid transparent; border-radius: 3px 3px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #ffffff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 3px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #ffffff; background-color: #2196f3; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 3px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid transparent; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid transparent; border-radius: 3px 3px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #ffffff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar { position: relative; min-height: 64px; margin-bottom: 23px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-radius: 3px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { overflow-x: visible; padding-right: 15px; padding-left: 15px; border-top: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); -webkit-overflow-scrolling: touch; } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-left: 0; padding-right: 0; } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 340px; } @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; padding: 20.5px 15px; font-size: 17px; line-height: 23px; height: 64px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; margin-right: 15px; padding: 9px 10px; margin-top: 15px; margin-bottom: 15px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 3px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 10.25px -15px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 23px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 23px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 20.5px; padding-bottom: 20.5px; } } .navbar-form { margin-left: -15px; margin-right: -15px; padding: 10px 15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); margin-top: 13.5px; margin-bottom: 13.5px; } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media (min-width: 768px) { .navbar-form { width: auto; border: 0; margin-left: 0; margin-right: 0; padding-top: 0; padding-bottom: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-right-radius: 3px; border-top-left-radius: 3px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 13.5px; margin-bottom: 13.5px; } .navbar-btn.btn-sm { margin-top: 17px; margin-bottom: 17px; } .navbar-btn.btn-xs { margin-top: 21px; margin-bottom: 21px; } .navbar-text { margin-top: 20.5px; margin-bottom: 20.5px; } @media (min-width: 768px) { .navbar-text { float: left; margin-left: 15px; margin-right: 15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; margin-right: -15px; } .navbar-right ~ .navbar-right { margin-right: 0; } } .navbar-default { background-color: #ffffff; border-color: transparent; } .navbar-default .navbar-brand { color: #666666; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #212121; background-color: transparent; } .navbar-default .navbar-text { color: #bbbbbb; } .navbar-default .navbar-nav > li > a { color: #666666; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #212121; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #212121; background-color: #eeeeee; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #cccccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: transparent; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: transparent; } .navbar-default .navbar-toggle .icon-bar { background-color: rgba(0, 0, 0, 0.5); } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: transparent; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #eeeeee; color: #212121; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #666666; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #212121; 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: #212121; background-color: #eeeeee; } .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: #cccccc; background-color: transparent; } } .navbar-default .navbar-link { color: #666666; } .navbar-default .navbar-link:hover { color: #212121; } .navbar-default .btn-link { color: #666666; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: #212121; } .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: #cccccc; } .navbar-inverse { background-color: #2196f3; border-color: transparent; } .navbar-inverse .navbar-brand { color: #b2dbfb; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-text { color: #bbbbbb; } .navbar-inverse .navbar-nav > li > a { color: #b2dbfb; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #ffffff; background-color: #0c7cd5; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #444444; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: transparent; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: transparent; } .navbar-inverse .navbar-toggle .icon-bar { background-color: rgba(0, 0, 0, 0.5); } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #0c84e4; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { background-color: #0c7cd5; color: #ffffff; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #b2dbfb; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #ffffff; background-color: #0c7cd5; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444444; background-color: transparent; } } .navbar-inverse .navbar-link { color: #b2dbfb; } .navbar-inverse .navbar-link:hover { color: #ffffff; } .navbar-inverse .btn-link { color: #b2dbfb; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: #ffffff; } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { color: #444444; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #ffffff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } a.label:hover, a.label:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #bbbbbb; } .label-default[href]:hover, .label-default[href]:focus { background-color: #a2a2a2; } .label-primary { background-color: #2196f3; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #0c7cd5; } .label-success { background-color: #4caf50; } .label-success[href]:hover, .label-success[href]:focus { background-color: #3d8b40; } .label-info { background-color: #9c27b0; } .label-info[href]:hover, .label-info[href]:focus { background-color: #771e86; } .label-warning { background-color: #ff9800; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #cc7a00; } .label-danger { background-color: #da0078; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #a7005c; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: normal; color: #ffffff; line-height: 1; vertical-align: middle; white-space: nowrap; text-align: center; background-color: #bbbbbb; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge, .btn-group-xs > .btn .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #2196f3; background-color: #ffffff; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .list-group { margin-bottom: 20px; padding-left: 0; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #ffffff; border: 1px solid #dddddd; } .list-group-item:first-child { border-top-right-radius: 3px; border-top-left-radius: 3px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } a.list-group-item, button.list-group-item { color: #555555; } a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading { color: #333333; } a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus { text-decoration: none; color: #555555; background-color: #f5f5f5; } button.list-group-item { width: 100%; text-align: left; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { background-color: #eeeeee; color: #bbbbbb; cursor: not-allowed; } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { color: #bbbbbb; } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; color: #ffffff; background-color: #2196f3; border-color: #2196f3; } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { color: #e3f2fd; } .list-group-item-success { color: #4caf50; background-color: #dff0d8; } a.list-group-item-success, button.list-group-item-success { color: #4caf50; } a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus { color: #4caf50; background-color: #d0e9c6; } a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus { color: #fff; background-color: #4caf50; border-color: #4caf50; } .list-group-item-info { color: #9c27b0; background-color: #e1bee7; } a.list-group-item-info, button.list-group-item-info { color: #9c27b0; } a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus { color: #9c27b0; background-color: #d8abe0; } a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus { color: #fff; background-color: #9c27b0; border-color: #9c27b0; } .list-group-item-warning { color: #ff9800; background-color: #ffe0b2; } a.list-group-item-warning, button.list-group-item-warning { color: #ff9800; } a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus { color: #ff9800; background-color: #ffd699; } a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus { color: #fff; background-color: #ff9800; border-color: #ff9800; } .list-group-item-danger { color: #da0078; background-color: #f9bdbb; } a.list-group-item-danger, button.list-group-item-danger { color: #da0078; } a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus { color: #da0078; background-color: #f7a6a4; } a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus { color: #fff; background-color: #da0078; border-color: #da0078; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 23px; background-color: #ffffff; border: 1px solid transparent; border-radius: 3px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-right-radius: 2px; border-top-left-radius: 2px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 15px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #dddddd; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-right-radius: 2px; border-top-left-radius: 2px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-left: 15px; padding-right: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-right-radius: 2px; border-top-left-radius: 2px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 2px; border-top-right-radius: 2px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 2px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 2px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 2px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 2px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #dddddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { border: 0; margin-bottom: 0; } .panel-group { margin-bottom: 23px; } .panel-group .panel { margin-bottom: 0; border-radius: 3px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #dddddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #dddddd; } .panel-default { border-color: #dddddd; } .panel-default > .panel-heading { color: #212121; background-color: #f5f5f5; border-color: #dddddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #dddddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #212121; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #dddddd; } .panel-primary { border-color: #2196f3; } .panel-primary > .panel-heading { color: #ffffff; background-color: #2196f3; border-color: #2196f3; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #2196f3; } .panel-primary > .panel-heading .badge { color: #2196f3; background-color: #ffffff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #2196f3; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #ffffff; background-color: #4caf50; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #4caf50; background-color: #ffffff; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #cba4dd; } .panel-info > .panel-heading { color: #ffffff; background-color: #9c27b0; border-color: #cba4dd; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #cba4dd; } .panel-info > .panel-heading .badge { color: #9c27b0; background-color: #ffffff; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #cba4dd; } .panel-warning { border-color: #ffc599; } .panel-warning > .panel-heading { color: #ffffff; background-color: #ff9800; border-color: #ffc599; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ffc599; } .panel-warning > .panel-heading .badge { color: #ff9800; background-color: #ffffff; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ffc599; } .panel-danger { border-color: #f7a4af; } .panel-danger > .panel-heading { color: #ffffff; background-color: #da0078; border-color: #f7a4af; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #f7a4af; } .panel-danger > .panel-heading .badge { color: #da0078; background-color: #ffffff; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #f7a4af; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; left: 0; bottom: 0; height: 100%; width: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f9f9f9; border: 1px solid transparent; border-radius: 3px; -webkit-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-lg { padding: 24px; border-radius: 3px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 19.5px; font-weight: normal; line-height: 1; color: #000000; text-shadow: none; opacity: 0.2; filter: alpha(opacity=20); } .close:hover, .close:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.5; filter: alpha(opacity=50); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .modal-open { overflow: hidden; } .modal { display: none; overflow: hidden; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); -webkit-transition: -webkit-transform 0.3s ease-out; -o-transition: -o-transform 0.3s ease-out; transition: transform 0.3s ease-out; } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #ffffff; border: 1px solid #999999; border: 1px solid transparent; border-radius: 3px; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); -webkit-background-clip: padding-box; background-clip: padding-box; outline: 0; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000; } .modal-backdrop.fade { opacity: 0; filter: alpha(opacity=0); } .modal-backdrop.in { opacity: 0.5; filter: alpha(opacity=50); } .modal-header { padding: 15px; border-bottom: 1px solid transparent; min-height: 16.846px; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.846; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid transparent; } .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; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; font-style: normal; font-weight: normal; letter-spacing: normal; line-break: auto; line-height: 1.846; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; white-space: normal; word-break: normal; word-spacing: normal; word-wrap: normal; font-size: 12px; opacity: 0; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.9; filter: alpha(opacity=90); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; background-color: #727272; border-radius: 3px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #727272; } .tooltip.top-left .tooltip-arrow { bottom: 0; right: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #727272; } .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #727272; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #727272; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #727272; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #727272; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #727272; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #727272; } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { content: " "; display: table; } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .panel-body:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-left: auto; margin-right: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table !important; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { .visible-xs-block { display: block !important; } } @media (max-width: 767px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table !important; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table !important; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table !important; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table !important; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } } .navbar { border: none; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } .navbar-brand { font-size: 24px; } .navbar-inverse .navbar-form input[type=text], .navbar-inverse .navbar-form input[type=password] { color: #fff; -webkit-box-shadow: inset 0 -1px 0 #b2dbfb; box-shadow: inset 0 -1px 0 #b2dbfb; } .navbar-inverse .navbar-form input[type=text]::-moz-placeholder, .navbar-inverse .navbar-form input[type=password]::-moz-placeholder { color: #b2dbfb; opacity: 1; } .navbar-inverse .navbar-form input[type=text]:-ms-input-placeholder, .navbar-inverse .navbar-form input[type=password]:-ms-input-placeholder { color: #b2dbfb; } .navbar-inverse .navbar-form input[type=text]::-webkit-input-placeholder, .navbar-inverse .navbar-form input[type=password]::-webkit-input-placeholder { color: #b2dbfb; } .navbar-inverse .navbar-form input[type=text]:focus, .navbar-inverse .navbar-form input[type=password]:focus { -webkit-box-shadow: inset 0 -2px 0 #ffffff; box-shadow: inset 0 -2px 0 #ffffff; } .btn-default { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-default:focus { background-color: #ffffff; } .btn-default:hover, .btn-default:active:hover { background-color: #f0f0f0; } .btn-default:active { background-color: #e0e0e0; background-image: -webkit-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: -o-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-primary { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-primary:focus { background-color: #2196f3; } .btn-primary:hover, .btn-primary:active:hover { background-color: #0d87e9; } .btn-primary:active { background-color: #0b76cc; background-image: -webkit-radial-gradient(circle, #0b76cc 10%, #2196f3 11%); background-image: -o-radial-gradient(circle, #0b76cc 10%, #2196f3 11%); background-image: radial-gradient(circle, #0b76cc 10%, #2196f3 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-success { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-success:focus { background-color: #4caf50; } .btn-success:hover, .btn-success:active:hover { background-color: #439a46; } .btn-success:active { background-color: #39843c; background-image: -webkit-radial-gradient(circle, #39843c 10%, #4caf50 11%); background-image: -o-radial-gradient(circle, #39843c 10%, #4caf50 11%); background-image: radial-gradient(circle, #39843c 10%, #4caf50 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-info { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-info:focus { background-color: #9c27b0; } .btn-info:hover, .btn-info:active:hover { background-color: #862197; } .btn-info:active { background-color: #701c7e; background-image: -webkit-radial-gradient(circle, #701c7e 10%, #9c27b0 11%); background-image: -o-radial-gradient(circle, #701c7e 10%, #9c27b0 11%); background-image: radial-gradient(circle, #701c7e 10%, #9c27b0 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-warning { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-warning:focus { background-color: #ff9800; } .btn-warning:hover, .btn-warning:active:hover { background-color: #e08600; } .btn-warning:active { background-color: #c27400; background-image: -webkit-radial-gradient(circle, #c27400 10%, #ff9800 11%); background-image: -o-radial-gradient(circle, #c27400 10%, #ff9800 11%); background-image: radial-gradient(circle, #c27400 10%, #ff9800 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-danger { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-danger:focus { background-color: #da0078; } .btn-danger:hover, .btn-danger:active:hover { background-color: #bb0067; } .btn-danger:active { background-color: #9d0056; background-image: -webkit-radial-gradient(circle, #9d0056 10%, #da0078 11%); background-image: -o-radial-gradient(circle, #9d0056 10%, #da0078 11%); background-image: radial-gradient(circle, #9d0056 10%, #da0078 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn-link { -webkit-background-size: 200% 200%; background-size: 200%; background-position: 50%; } .btn-link:focus { background-color: #ffffff; } .btn-link:hover, .btn-link:active:hover { background-color: #f0f0f0; } .btn-link:active { background-color: #e0e0e0; background-image: -webkit-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: -o-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%); background-repeat: no-repeat; -webkit-background-size: 1000% 1000%; background-size: 1000%; -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); } .btn { text-transform: uppercase; border: none; -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); -webkit-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s; } .btn-link { border-radius: 3px; -webkit-box-shadow: none; box-shadow: none; color: #444444; } .btn-link:hover, .btn-link:focus { -webkit-box-shadow: none; box-shadow: none; color: #444444; text-decoration: none; } .btn-default.disabled { background-color: rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.4); opacity: 1; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: 0; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: 0; } body { -webkit-font-smoothing: antialiased; letter-spacing: .1px; } p { margin: 0 0 1em; } input, button { -webkit-font-smoothing: antialiased; letter-spacing: .1px; } a { -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } .table-hover > tbody > tr, .table-hover > tbody > tr > th, .table-hover > tbody > tr > td { -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } label { font-weight: normal; } textarea, textarea.form-control, input.form-control, input[type=text], input[type=password], input[type=email], input[type=number], [type=text].form-control, [type=password].form-control, [type=email].form-control, [type=tel].form-control, [contenteditable].form-control { padding: 0; border: none; border-radius: 0; -webkit-appearance: none; -webkit-box-shadow: inset 0 -1px 0 #dddddd; box-shadow: inset 0 -1px 0 #dddddd; font-size: 16px; } textarea:focus, textarea.form-control:focus, input.form-control:focus, input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus, [type=text].form-control:focus, [type=password].form-control:focus, [type=email].form-control:focus, [type=tel].form-control:focus, [contenteditable].form-control:focus { -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; } textarea[disabled], textarea.form-control[disabled], input.form-control[disabled], input[type=text][disabled], input[type=password][disabled], input[type=email][disabled], input[type=number][disabled], [type=text].form-control[disabled], [type=password].form-control[disabled], [type=email].form-control[disabled], [type=tel].form-control[disabled], [contenteditable].form-control[disabled], textarea[readonly], textarea.form-control[readonly], input.form-control[readonly], input[type=text][readonly], input[type=password][readonly], input[type=email][readonly], input[type=number][readonly], [type=text].form-control[readonly], [type=password].form-control[readonly], [type=email].form-control[readonly], [type=tel].form-control[readonly], [contenteditable].form-control[readonly] { -webkit-box-shadow: none; box-shadow: none; border-bottom: 1px dotted #ddd; } textarea.input-sm, textarea.form-control.input-sm, input.form-control.input-sm, input[type=text].input-sm, input[type=password].input-sm, input[type=email].input-sm, input[type=number].input-sm, [type=text].form-control.input-sm, [type=password].form-control.input-sm, [type=email].form-control.input-sm, [type=tel].form-control.input-sm, [contenteditable].form-control.input-sm { font-size: 12px; } textarea.input-lg, textarea.form-control.input-lg, input.form-control.input-lg, input[type=text].input-lg, input[type=password].input-lg, input[type=email].input-lg, input[type=number].input-lg, [type=text].form-control.input-lg, [type=password].form-control.input-lg, [type=email].form-control.input-lg, [type=tel].form-control.input-lg, [contenteditable].form-control.input-lg { font-size: 17px; } select, select.form-control { border: 0; border-radius: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; padding-left: 0; padding-right: 0\9; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEVmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmaP/QSjAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=); -webkit-background-size: 13px 13px; background-size: 13px; background-repeat: no-repeat; background-position: right center; -webkit-box-shadow: inset 0 -1px 0 #dddddd; box-shadow: inset 0 -1px 0 #dddddd; font-size: 16px; line-height: 1.5; } select::-ms-expand, select.form-control::-ms-expand { display: none; } select.input-sm, select.form-control.input-sm { font-size: 12px; } select.input-lg, select.form-control.input-lg { font-size: 17px; } select:focus, select.form-control:focus { -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEUhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISF8S9ewAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=); } select[multiple], select.form-control[multiple] { background: none; } .radio label, .radio-inline label, .checkbox label, .checkbox-inline label { padding-left: 25px; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="radio"], .checkbox-inline input[type="radio"], .radio input[type="checkbox"], .radio-inline input[type="checkbox"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { margin-left: -25px; } input[type="radio"], .radio input[type="radio"], .radio-inline input[type="radio"] { position: relative; margin-top: 6px; margin-right: 4px; vertical-align: top; border: none; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; } input[type="radio"]:focus, .radio input[type="radio"]:focus, .radio-inline input[type="radio"]:focus { outline: none; } input[type="radio"]:before, .radio input[type="radio"]:before, .radio-inline input[type="radio"]:before, input[type="radio"]:after, .radio input[type="radio"]:after, .radio-inline input[type="radio"]:after { content: ""; display: block; width: 18px; height: 18px; border-radius: 50%; -webkit-transition: 240ms; -o-transition: 240ms; transition: 240ms; } input[type="radio"]:before, .radio input[type="radio"]:before, .radio-inline input[type="radio"]:before { position: absolute; left: 0; top: -3px; background-color: #2196f3; -webkit-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); transform: scale(0); } input[type="radio"]:after, .radio input[type="radio"]:after, .radio-inline input[type="radio"]:after { position: relative; top: -3px; border: 2px solid #666666; } input[type="radio"]:checked:before, .radio input[type="radio"]:checked:before, .radio-inline input[type="radio"]:checked:before { -webkit-transform: scale(0.5); -ms-transform: scale(0.5); -o-transform: scale(0.5); transform: scale(0.5); } input[type="radio"]:disabled:checked:before, .radio input[type="radio"]:disabled:checked:before, .radio-inline input[type="radio"]:disabled:checked:before { background-color: #bbbbbb; } input[type="radio"]:checked:after, .radio input[type="radio"]:checked:after, .radio-inline input[type="radio"]:checked:after { border-color: #2196f3; } input[type="radio"]:disabled:after, .radio input[type="radio"]:disabled:after, .radio-inline input[type="radio"]:disabled:after, input[type="radio"]:disabled:checked:after, .radio input[type="radio"]:disabled:checked:after, .radio-inline input[type="radio"]:disabled:checked:after { border-color: #bbbbbb; } input[type="checkbox"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: relative; border: none; margin-bottom: -4px; -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; } input[type="checkbox"]:focus, .checkbox input[type="checkbox"]:focus, .checkbox-inline input[type="checkbox"]:focus { outline: none; } input[type="checkbox"]:focus:after, .checkbox input[type="checkbox"]:focus:after, .checkbox-inline input[type="checkbox"]:focus:after { border-color: #2196f3; } input[type="checkbox"]:after, .checkbox input[type="checkbox"]:after, .checkbox-inline input[type="checkbox"]:after { content: ""; display: block; width: 18px; height: 18px; margin-top: -2px; margin-right: 5px; border: 2px solid #666666; border-radius: 2px; -webkit-transition: 240ms; -o-transition: 240ms; transition: 240ms; } input[type="checkbox"]:checked:before, .checkbox input[type="checkbox"]:checked:before, .checkbox-inline input[type="checkbox"]:checked:before { content: ""; position: absolute; top: 0; left: 6px; display: table; width: 6px; height: 12px; border: 2px solid #fff; border-top-width: 0; border-left-width: 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } input[type="checkbox"]:checked:after, .checkbox input[type="checkbox"]:checked:after, .checkbox-inline input[type="checkbox"]:checked:after { background-color: #2196f3; border-color: #2196f3; } input[type="checkbox"]:disabled:after, .checkbox input[type="checkbox"]:disabled:after, .checkbox-inline input[type="checkbox"]:disabled:after { border-color: #bbbbbb; } input[type="checkbox"]:disabled:checked:after, .checkbox input[type="checkbox"]:disabled:checked:after, .checkbox-inline input[type="checkbox"]:disabled:checked:after { background-color: #bbbbbb; border-color: transparent; } .has-warning input:not([type=checkbox]), .has-warning .form-control, .has-warning input.form-control[readonly], .has-warning input[type=text][readonly], .has-warning [type=text].form-control[readonly], .has-warning input:not([type=checkbox]):focus, .has-warning .form-control:focus { border-bottom: none; -webkit-box-shadow: inset 0 -2px 0 #ff9800; box-shadow: inset 0 -2px 0 #ff9800; } .has-error input:not([type=checkbox]), .has-error .form-control, .has-error input.form-control[readonly], .has-error input[type=text][readonly], .has-error [type=text].form-control[readonly], .has-error input:not([type=checkbox]):focus, .has-error .form-control:focus { border-bottom: none; -webkit-box-shadow: inset 0 -2px 0 #da0078; box-shadow: inset 0 -2px 0 #da0078; } .has-success input:not([type=checkbox]), .has-success .form-control, .has-success input.form-control[readonly], .has-success input[type=text][readonly], .has-success [type=text].form-control[readonly], .has-success input:not([type=checkbox]):focus, .has-success .form-control:focus { border-bottom: none; -webkit-box-shadow: inset 0 -2px 0 #4caf50; box-shadow: inset 0 -2px 0 #4caf50; } .has-warning .input-group-addon, .has-error .input-group-addon, .has-success .input-group-addon { color: #666666; border-color: transparent; background-color: transparent; } .nav-tabs > li > a, .nav-tabs > li > a:focus { margin-right: 0; background-color: transparent; border: none; color: #666666; -webkit-box-shadow: inset 0 -1px 0 #dddddd; box-shadow: inset 0 -1px 0 #dddddd; -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } .nav-tabs > li > a:hover, .nav-tabs > li > a:focus:hover { background-color: transparent; -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; color: #2196f3; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus { border: none; -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; color: #2196f3; } .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus:hover { border: none; color: #2196f3; } .nav-tabs > li.disabled > a { -webkit-box-shadow: inset 0 -1px 0 #dddddd; box-shadow: inset 0 -1px 0 #dddddd; } .nav-tabs.nav-justified > li > a, .nav-tabs.nav-justified > li > a:hover, .nav-tabs.nav-justified > li > a:focus, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: none; } .nav-tabs .dropdown-menu { margin-top: 0; } .dropdown-menu { margin-top: 0; border: none; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); } .alert { border: none; color: #fff; } .alert-success { background-color: #4caf50; } .alert-info { background-color: #9c27b0; } .alert-warning { background-color: #ff9800; } .alert-danger { background-color: #da0078; } .alert a:not(.close), .alert .alert-link { color: #fff; font-weight: bold; } .alert .close { color: #fff; } .badge { padding: 3px 6px 5px; } .progress { position: relative; z-index: 1; height: 6px; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; } .progress-bar { -webkit-box-shadow: none; box-shadow: none; } .progress-bar:last-child { border-radius: 0 3px 3px 0; } .progress-bar:last-child:before { display: block; content: ""; position: absolute; width: 100%; height: 100%; left: 0; right: 0; z-index: -1; background-color: #cae6fc; } .progress-bar-success:last-child.progress-bar:before { background-color: #c7e7c8; } .progress-bar-info:last-child.progress-bar:before { background-color: #edc9f3; } .progress-bar-warning:last-child.progress-bar:before { background-color: #ffe0b3; } .progress-bar-danger:last-child.progress-bar:before { background-color: #ff5bb5; } .close { font-size: 34px; font-weight: 300; line-height: 24px; opacity: 0.6; -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; } .close:hover { opacity: 1; } .list-group-item { padding: 15px; } .list-group-item-text { color: #bbbbbb; } .well { border-radius: 0; -webkit-box-shadow: none; box-shadow: none; } .panel { border: none; border-radius: 2px; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); } .panel-heading { border-bottom: none; } .panel-footer { border-top: none; } .popover { border: none; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); } .carousel-caption h1, .carousel-caption h2, .carousel-caption h3, .carousel-caption h4, .carousel-caption h5, .carousel-caption h6 { color: inherit; } @charset "UTF-8"; /*! Animate.css - http://daneden.me/animate Licensed under the MIT license - http://opensource.org/licenses/MIT Copyright (c) 2015 <NAME> */ .animated { -webkit-animation-duration: 1s; -o-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; -o-animation-fill-mode: both; animation-fill-mode: both } .animated.infinite { -webkit-animation-iteration-count: infinite; -o-animation-iteration-count: infinite; animation-iteration-count: infinite } .animated.hinge { -webkit-animation-duration: 2s; -o-animation-duration: 2s; animation-duration: 2s } .animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY { -webkit-animation-duration: .75s; -o-animation-duration: .75s; animation-duration: .75s } @-webkit-keyframes shake { 0%, 100% { -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-48%) translateY(-50%); transform: translateX(-48%) translateY(-50%); } 20%, 40%, 60%, 80% { -webkit-transform: translateX(-52%) translateY(-50%); transform: translateX(-52%) translateY(-50%); } } @-o-keyframes shake { 0%, 100% { -webkit-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-48%) translateY(-50%); -o-transform: translateX(-48%) translateY(-50%); transform: translateX(-48%) translateY(-50%); } 20%, 40%, 60%, 80% { -webkit-transform: translateX(-52%) translateY(-50%); -o-transform: translateX(-52%) translateY(-50%); transform: translateX(-52%) translateY(-50%); } } @keyframes shake { 0%, 100% { -webkit-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-48%) translateY(-50%); -o-transform: translateX(-48%) translateY(-50%); transform: translateX(-48%) translateY(-50%); } 20%, 40%, 60%, 80% { -webkit-transform: translateX(-52%) translateY(-50%); -o-transform: translateX(-52%) translateY(-50%); transform: translateX(-52%) translateY(-50%); } } .shake { -webkit-animation-name: shake; -o-animation-name: shake; animation-name: shake; } @-webkit-keyframes bounceIn { 0%, 100%, 20%, 40%, 60%, 80% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1) } 40% { -webkit-transform: scale3d(.9, .9, .9); transform: scale3d(.9, .9, .9) } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03) } 80% { -webkit-transform: scale3d(.97, .97, .97); transform: scale3d(.97, .97, .97) } 100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1) } } @-o-keyframes bounceIn { 0%, 100%, 20%, 40%, 60%, 80% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); -o-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1) } 40% { -webkit-transform: scale3d(.9, .9, .9); transform: scale3d(.9, .9, .9) } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03) } 80% { -webkit-transform: scale3d(.97, .97, .97); transform: scale3d(.97, .97, .97) } 100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1) } } @keyframes bounceIn { 0%, 100%, 20%, 40%, 60%, 80% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); -o-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 20% { -webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1) } 40% { -webkit-transform: scale3d(.9, .9, .9); transform: scale3d(.9, .9, .9) } 60% { opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03) } 80% { -webkit-transform: scale3d(.97, .97, .97); transform: scale3d(.97, .97, .97) } 100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1) } } .bounceIn { -webkit-animation-name: bounceIn; -o-animation-name: bounceIn; animation-name: bounceIn } @-webkit-keyframes bounceInUp { 0%, 100%, 60%, 75%, 90% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0) } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0) } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0) } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0) } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } @-o-keyframes bounceInUp { 0%, 100%, 60%, 75%, 90% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); -o-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0) } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0) } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0) } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0) } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } @keyframes bounceInUp { 0%, 100%, 60%, 75%, 90% { -webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); -o-animation-timing-function: cubic-bezier(0.215, .61, .355, 1); animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0) } 60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0) } 75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0) } 90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0) } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } .bounceInUp { -webkit-animation-name: bounceInUp; -o-animation-name: bounceInUp; animation-name: bounceInUp } @-webkit-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0) } 100% { opacity: 1; -webkit-transform: none; transform: none } } @-o-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0) } 100% { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none } } @keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0) } 100% { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none } } .fadeInUp { -webkit-animation-name: fadeInUp; -o-animation-name: fadeInUp; animation-name: fadeInUp } .fadeInUp { -webkit-animation-name: fadeInUp; -o-animation-name: fadeInUp; animation-name: fadeInUp } @-webkit-keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0) } 100% { opacity: 1; -webkit-transform: none; transform: none } } @-o-keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0) } 100% { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none } } @keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translate3d(0, 2000px, 0); transform: translate3d(0, 2000px, 0) } 100% { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none } } .fadeInUpBig { -webkit-animation-name: fadeInUpBig; -o-animation-name: fadeInUpBig; animation-name: fadeInUpBig } @-webkit-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0 } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1 } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg) } 100% { -webkit-transform: perspective(400px); transform: perspective(400px) } } @-o-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0 } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1 } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg) } 100% { -webkit-transform: perspective(400px); transform: perspective(400px) } } @keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0 } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1 } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg) } 100% { -webkit-transform: perspective(400px); transform: perspective(400px) } } .flipInX { -webkit-backface-visibility: visible!important; backface-visibility: visible!important; -webkit-animation-name: flipInX; -o-animation-name: flipInX; animation-name: flipInX } @-webkit-keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } @-o-keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } @keyframes slideInUp { 0% { -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); visibility: visible } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) } } .slideInUp { -webkit-animation-name: slideInUp; -o-animation-name: slideInUp; animation-name: slideInUp } @-webkit-keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 50% { opacity: 1 } } @-o-keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 50% { opacity: 1 } } @keyframes zoomIn { 0% { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3) } 50% { opacity: 1 } } .zoomIn { -webkit-animation-name: zoomIn; -o-animation-name: zoomIn; animation-name: zoomIn; -webkit-animation-duration: 0.5s; -o-animation-duration: 0.5s; animation-duration: 0.5s; } /* * Toastr * Copyright 2012-2014 <NAME> and <NAME>. * All Rights Reserved. * Use, reproduction, distribution, and modification of this code is subject to the terms and * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php * * Author: <NAME> and <NAME> * Project: https://github.com/CodeSeven/toastr */ .toast-title { font-weight: bold; } .toast-message { -ms-word-wrap: break-word; word-wrap: break-word; } .toast-message a, .toast-message label { color: #ffffff; } .toast-message a:hover { color: #cccccc; text-decoration: none; } .toast-close-button { position: relative; right: -0.3em; top: -0.3em; float: right; font-size: 20px; font-weight: bold; color: #ffffff; -webkit-text-shadow: 0 1px 0 #ffffff; text-shadow: 0 1px 0 #ffffff; opacity: 0.8; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter: alpha(opacity=80); } .toast-close-button:hover, .toast-close-button:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.4; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40); filter: alpha(opacity=40); } /*Additional properties for button version iOS requires the button element instead of an anchor tag. If you want the anchor version, it requires `href="#"`.*/ button.toast-close-button { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .toast-top-full-width { top: 50px; right: 0; width: 100%; } .toast-bottom-full-width { bottom: 20px; right: 0; width: 100%; } .toast-top-left { top: 12px; left: 12px; } .toast-top-right { top: 12px; right: 12px; } .toast-bottom-right { right: 12px; bottom: 12px; } .toast-bottom-left { bottom: 12px; left: 12px; } #toast-container { position: fixed; z-index: 999999; text-align: center; font-size: 12px; /*overrides*/ } #toast-container * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } #toast-container > div { margin: 0 0 6px; padding: 15px 15px 15px 50px; width: 300px; border-radius: 3px 3px 3px 3px; background-position: 15px center; background-repeat: no-repeat; -webkit-box-shadow: 0 0 12px #999999; box-shadow: 0 0 12px #999999; color: #ffffff; opacity: 0.8; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter: alpha(opacity=80); } #toast-container > :hover { -webkit-box-shadow: 0 0 12px #000000; box-shadow: 0 0 12px #000000; opacity: 1; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); filter: alpha(opacity=100); cursor: pointer; } /* #toast-container > .toast-info { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUV<KEY>=") !important; } #toast-container > .toast-error { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAA<KEY>GFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important; } #toast-container > .toast-success { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important; } #toast-container > .toast-warning { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important; } */ #toast-container.toast-top-full-width > div, #toast-container.toast-bottom-full-width > div { width: 60%; margin: auto; } .toast { background-color: #030303; } /* .toast-success { background-color: #51a351; } .toast-error { background-color: #bd362f; } */ .toast-success, .toast-error { background-color: #000; background: rgba(0,0,0,0.8); } .toast-success{ color:#d3b365 !important; } .toast-error { color:#fff !important; } .toast-info { background-color: #222; } .toast-warning { background-color: #f89406; } /*Responsive Design*/ @media all and (max-width: 240px) { #toast-container > div { padding: 8px 8px 8px 50px; width: 11em; } #toast-container .toast-close-button { right: -0.2em; top: -0.2em; } } @media all and (min-width: 241px) and (max-width: 480px) { #toast-container > div { padding: 8px 8px 8px 8px; width: 18em; } #toast-container .toast-close-button { right: -0.2em; top: -0.2em; } } @media all and (min-width: 481px) and (max-width: 768px) { #toast-container > div { padding: 15px 15px 15px 50px; width: 25em; } } .md-perspective, .md-perspective body { height: 100%; overflow: hidden } .md-perspective body { background: #dedede; -webkit-perspective: 600px; perspective: 600px } .md-modal { position: fixed; top: 50%; left: 50%; width: 50%; max-width: 630px; min-width: 300px; height: auto; z-index: 2000; border-radius: 2px; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%) } .md-show { display: block !important; visibility:visible !important; } .md-overlay { position: fixed; width: 100%; height: 100%; display: none; top: 0; left: 0; z-index: 1000; opacity: 0.8; background: rgba(66, 66, 66, 0.9); } .md-content { color: #464545; background: rgba(255,255,255,.8); position: relative; margin: 0 auto; border-radius: 3px; } .md-content h3 { margin: 0; padding: 20px 0px 20px 0px; text-align: center; font-size: 14px; font-weight: normal; background: transparent; border-top-left-radius: 2px; border-top-right-radius: 2px; } .md-content>div { padding: 5px 15px 5px; margin: 0; font-weight: 300; font-size: 1.0em } .md-content>div p { margin: 0; color: #222; line-height: 1.5em; text-align: left; font-size:14px; padding-bottom:10px; } .md-content>div p small{ line-height: 1.3em; } .md-content>div p a { font-size: 14px; color:#222; } .md-content>.md-content-footer { padding: 15px; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; } .md-content>.md-content-footer>a { cursor: pointer; display: block; width: 50%; float: left; text-align: center; color: #dfba61; font-size: 1.0rem; padding: 8px 0px; background: rgba(50, 50, 50, 0.9); /* -webkit-box-shadow: 1px 0px 0px #888; box-shadow: 1px 0px 0px #888; */ border-right:1px solid #f3f3f3; } .md-content>.md-content-footer>a.md-close-disabled{ /*background:rgba(30,30,42,0.9);*/ } .md-content>.md-content-footer>a.btn-block { width: 100%; float: none; border-radius:2px; } .md-content>.md-content-footer>a:hover, .md-content>.md-content-footer>a:active { background: rgba(40, 40, 40, 0.9) } .md-content>.md-content-footer>a.border-none { -webkit-box-shadow: none; box-shadow: none } /* Effect : fall */ .md-effect-fall.md-modal { -webkit-perspective: 1300px; perspective: 1300px; } .md-effect-fall .md-content { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; -webkit-transform: translateZ(500px) rotateX(20deg); -ms-transform: translateZ(500px) rotateX(20deg); transform: translateZ(500px) rotateX(20deg); -webkit-box-shadow: none; box-shadow: none; opacity: 0; } .md-show.md-effect-fall .md-content { -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; -webkit-transform: translateZ(0px) rotateX(0deg); -ms-transform: translateZ(0px) rotateX(0deg); transform: translateZ(0px) rotateX(0deg); opacity: 1; -webkit-box-shadow: 0px 1px 2px 0px #666; box-shadow: 0px 1px 2px 0px #666; } @font-face {font-family: "iconfont"; src: url('../font/iconfont.eot'); /* IE9*/ src: url('../font/iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../font/iconfont.woff') format('woff'), /* chrome、firefox */ url('../font/iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('../font/iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */ } .iconfont { font-family:"iconfont" !important; font-size:16px; font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0px; -moz-osx-font-smoothing: grayscale; } .icon-close:before { content: "\e607"; } .icon-mobile:before { content: "\e611"; } .icon-help:before { content: "\e60b"; } .icon-arrow-right:before { content: "\e615"; } .icon-close-o:before { content: "\e613"; } .icon-attention:before { content: "\e629"; } .icon-cardid:before { content: "\e621"; } .icon-declare:before { content: "\e61b"; } .icon-telephone:before { content: "\e609"; } body{ background-color: #ececec; font-size: 14px; } /* * 登录页面 ========================================*/ #login-panel{ display: block; margin-top: 50px; width: 100%; } .logo{ text-align: center; margin-bottom: 50px; } .logo > img{ width:100px; height:100px; border-radius: 50%; margin: 0 auto; } #login-panel .input-group-prefix{ position: relative; margin-left: -15px; margin-right: -15px; } #login-panel .input-group-prefix > label{ position: absolute; font-size: 14px; left: 10px; bottom: 6px; } #login-panel .input-group-prefix > input{ padding: 10px 15px 10px 75px; height: auto; border: 1px solid #f2f2f2; background-color: #fff; font-size: 14px; -webkit-box-shadow:none; box-shadow:none; } #login-panel .input-group-prefix > input:focus, #login-panel .input-group-prefix > input:active{ border-bottom :1px solid transparent; -webkit-box-shadow : none; box-shadow : none; } /* * 首页 ========================================*/ .header{ background: #272c2e url('../img/headerbg.jpg') no-repeat top center; -webkit-background-size: 100% auto; background-size: 100% auto; position: relative; padding-bottom:40px; } .header > .userinfo{ text-align: center; padding:40px 0px; } .header > .userinfo > .point{ height: 75px; width: 75px; border-radius: 50%; background-color: #fff; padding:18px 5px 10px; display: inline-block; } .header > .userinfo > .point > p{ color:#222; line-height: 1.2; margin: 5px 0px; } .header > .userinfo > .base{ display: inline-block; margin-left: 10px; text-align: left; } .header > .userinfo > .base > p{ margin:5px 0px 0px; line-height: 1.2; font-size: 16px; color:#fff; } .header > .userinfo > .base > .badge{ border-radius: 3px; background: rgba(20,20,20,0.8); padding:5px; color:#f2f2f2; display: inline-block; } .header > .help{ display: block; position: absolute; top:10px; right:10px; width:24px; height:24px; color:#fff; text-decoration: none; } .header > .help > i{ font-size: 18px; } .header > .navigation{ position: absolute; right: 0; bottom: 0; left: 0; z-index: 9; width: 100%; overflow: hidden; } .header > .navigation > ul{ display: -ms-flexbox; display: -webkit-box; display: -webkit-flex; display: box; display: flexbox; display: flex; width: 100%; padding: 0; margin: 0; list-style: none; } .header > .navigation > ul > li{ padding: 0px; text-align: center; cursor: pointer; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .header > .navigation > ul > li > a { display: block; padding: 10px 0; font-size: 14px; color: #fff; text-decoration: none; background:rgba(20,20,20,0.5); } .header > .navigation > ul > li > a:hover{ background:rgba(20,20,20,0.7); } .btn.btn-bordered{ border:1px solid #666; border-radius: 2px; color:#222; font-size: 14px; -webkit-box-shadow: none; box-shadow: none; padding: 8px 0px; } .btn.btn-bordered:hover{ background: rgba(60,60,60,0.1); } .list-group-item{ border:none; border-radius: 0px; padding:15px 0px; display: block; margin-bottom: 1px; border-bottom:1px solid #f8f8f8; } .list-group-item > .item-pic, .list-group-item > .item-content, .list-group-item > .item-op{ float:left; } .list-group-item > .item-pic, .list-group-item > .item-op{ padding-top: 4px; text-align: center; width:15%; } .list-group-item > .item-pic > img{ width:32px; height:32px; } .list-group-item > .item-content{ width:70%; } .list-group-item > .item-content > .list-group-item-heading{ font-size: 18px; margin-bottom: 0px; } .well.well-title{ padding:10px; margin: 0px; border-bottom:1px solid #f0f0f0; background-color: #f5f5f5; } .nav-tabs{ display: -ms-flexbox; display: -webkit-box; display: -webkit-flex; display: box; display: flexbox; display: flex; background: #fff; } .nav-tabs > li{ display: inline-block; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; text-align: center; } .nav-tabs > li > a:hover, .nav-tabs > li > a:focus:hover, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus:hover, .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus { border: none; -webkit-box-shadow: inset 0 -2px 0 #da0078; box-shadow: inset 0 -2px 0 #da0078; color: #da0078; } .record-list{ } .record-list > .list-group-item{ border-bottom: 1px solid #f0f0f0; -webkit-box-shadow: none; box-shadow: none; margin-bottom: 0px; -webkit-box-shadow: none; box-shadow: none; padding:10px; } .record-list > .list-group-item > h5{ float:left; font-size: 16px; margin:5px 5px 0px; } .record-list > .list-group-item > label{ font-size: 18px; font-weight: 600; margin:5px 10px 0px; float: right; line-height: 1; } .record-list > .list-group-item > span{ display: block; text-align: right; clear: both; padding-right:10px; line-height: 2; color:#888; } .well{ background-color: #fff; } .well-activity{ padding:10px; } .well-activity > h5{ border-bottom:1px solid #f2f2f2; padding-bottom:10px; margin:0px 0px 10px; font-size: 18px; color: #1c1c1c; } .well-activity > p{ color: #1c1c1c; } .well-activity > p img{ width: 100%; max-width: 100%; display: block; border:none; } /* * 等级页面 ========================================*/ .well-level{ padding:5px; margin-bottom: 10px; } .well-level > .well-pic{ width: 20%; float:left; text-align: center; padding-top: 18px; } .well-level > .well-pic > img{ width: 50px; height: 50px; } .well-level > .well-content{ width: 70%; float:left; margin-left: 15px; } .well-level > .well-content > .title{ color:#aa8e49; font-size: 16px; margin-bottom: 8px; font-weight: 600; } .well-level > .well-content > .point{ line-height: 1; margin-bottom: 8px; } .well-level > .well-content > .point > span{ font-size: 16px; } .well-level > .well-content > .descr{ line-height: 1; } .data-empty{ text-align: center; padding:15px; } /* * 活动页面 ========================================*/ .activity-header{ max-height: 320px; overflow: hidden; } .activity-header img{ width: 100%; max-width: 100%; } .activity-item{ background-color: #fff; clear: both; } .activity-item:hover{ background-color: #f5f5f5; } .activity-item .activity-img{ float:left; width:40%; padding:10px; } .activity-item .activity-img > img{ width:100%; max-width: 160px; border:1px solid #f5f5f5; } .activity-item .activity-content{ float:left; padding:5px; width:60%; } .activity-item .activity-content > h5{ font-size: 24px; } .activity-item .activity-content > p{ color:#0c0c0c; line-height: 1.4; margin-bottom: 10px; } .activity-item .activity-content > label{ color:#b0b0b0; line-height: 1.5; } .activity-item .activity-content > span{ display: block; float:right; height:24px; width:24px; margin-right: 10px; background-color: #d60276; color:#fff; text-align: center; } .activity-item .activity-content > span > i{ line-height: 1; }
0.619817
0.072276
body { font-family: "Yantramanav", sans-serif; background-color: #fff2e6; } a { line-height: 1em; display: inline-block; text-decoration: none; padding: 10px; margin: 10px; font-size: 16px; float: right; } .container { position: relative; text-align: center; background-size: cover; /*mage-rendering: pixalated;*/ /*-webkit-optimize-contrast;*/ /*color: white;*/ } .bottom-left { position: absolute; bottom: 8px; left: 16px; color: black; font-weight: bold; /*border: 1px solid black;*/ padding: 5px 5px; } h1 { /*text-shadow: 3px 3px 0 #bbbbbb; */ font-size: 20px; padding: 25px 0px 25px 15px; border-top: 2px solid black; border-bottom: 2px solid black; /*background-color: #fff2e6;*/ background-color: white; } .img-parent { /*background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSf5xITRhpp9ltPTJbbykZzhKkGWSBk0olJvQ&usqp=CAU");*/ border: 2px solid black; display: flex; height: 400px; width: 1300px; /*background-position: center;*/ /*display: flex;*/ } .img-child { width: 100%; justify-content: stretch; /*display: flex;*/ background-repeat: no-repeat; background-size: cover; } .some-words { position: absolute; text-align: center; color: black; } .bigbox { background-color: #fff2e6; width: 1500px; height: 500px; } .boxtop { background-color: LimeGreen; height: 150px; width: 150px; position: relative; top: 30px; left: 40px; } .boxbottom { text-align: center; background-color: pink; position: relative; height: 150px; width: 150px; top: 40px; left: 40px; } .another-bigbox { text-align: center; background-color: yellow; height: 400px; width: 1500px; } .these-boxes { /*position: relative;*/ border: 1px solid #466995; margin: 20px; display: inline-block; top: 30px; width: 100px; height: 100px; position: relative; } ul, footer ul { /*font-family: Papyrus;*/ padding: 0px; list-style: none; font-weight: bold; } footer { border-top: 1px solid #d5d5d5; font-size: .8em; }
css/main.css
body { font-family: "Yantramanav", sans-serif; background-color: #fff2e6; } a { line-height: 1em; display: inline-block; text-decoration: none; padding: 10px; margin: 10px; font-size: 16px; float: right; } .container { position: relative; text-align: center; background-size: cover; /*mage-rendering: pixalated;*/ /*-webkit-optimize-contrast;*/ /*color: white;*/ } .bottom-left { position: absolute; bottom: 8px; left: 16px; color: black; font-weight: bold; /*border: 1px solid black;*/ padding: 5px 5px; } h1 { /*text-shadow: 3px 3px 0 #bbbbbb; */ font-size: 20px; padding: 25px 0px 25px 15px; border-top: 2px solid black; border-bottom: 2px solid black; /*background-color: #fff2e6;*/ background-color: white; } .img-parent { /*background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSf5xITRhpp9ltPTJbbykZzhKkGWSBk0olJvQ&usqp=CAU");*/ border: 2px solid black; display: flex; height: 400px; width: 1300px; /*background-position: center;*/ /*display: flex;*/ } .img-child { width: 100%; justify-content: stretch; /*display: flex;*/ background-repeat: no-repeat; background-size: cover; } .some-words { position: absolute; text-align: center; color: black; } .bigbox { background-color: #fff2e6; width: 1500px; height: 500px; } .boxtop { background-color: LimeGreen; height: 150px; width: 150px; position: relative; top: 30px; left: 40px; } .boxbottom { text-align: center; background-color: pink; position: relative; height: 150px; width: 150px; top: 40px; left: 40px; } .another-bigbox { text-align: center; background-color: yellow; height: 400px; width: 1500px; } .these-boxes { /*position: relative;*/ border: 1px solid #466995; margin: 20px; display: inline-block; top: 30px; width: 100px; height: 100px; position: relative; } ul, footer ul { /*font-family: Papyrus;*/ padding: 0px; list-style: none; font-weight: bold; } footer { border-top: 1px solid #d5d5d5; font-size: .8em; }
0.365683
0.085175
.all-songs { display: flex; flex-direction: column; } #ul{ height: 100%; overflow-y: scroll; } @media only screen and (max-width: 1000px) { .songtitle__info__container{ grid-template-rows: repeat(3, 20px)!important; grid-template-columns: repeat(2, 1fr)!important; } .songtile__icon{ width: 60px!important; height: 60px!important; padding: 5px; margin-left: 7px; } } @media only screen and (max-width: 500px) { .songtitle__info__container{ grid-template-rows: repeat(6, 20px)!important; grid-template-columns: repeat(1, 1fr)!important; } } .songtile { text-decoration: none; background-color: rgb(24, 24, 24); margin: 5px; border-radius: 10px; display: flex; transition: 500ms; -webkit-animation: animation 1000ms linear both; animation: animation 1000ms linear both; } .songtile:hover{ background-color: rgb(35, 35, 35); } .songtile__icon{ width: 80px; height: 80px; border-radius: 50%; margin-left: 10px; align-self: center; } .songtile__name__container { width: 90%; height: 70%; margin: 10px; align-self: center; } .songtitle__info__container{ display: grid; grid-template-rows: repeat(2, 20px); grid-template-columns: repeat(3, 1fr); } .songtitle__info__text{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-left: 20px; } .songtitle{ margin-left: 20px; color: white; } .animation-target { -webkit-animation: animation 1000ms linear both; animation: animation 1000ms linear both; } /* Generated with Bounce.js. Edit at http://bouncejs.com#%7Bs%3A%5B%7BT%3A%22t%22%2Ce%3A%22b%22%2Cd%3A1000%2CD%3A0%2Cf%3A%7Bx%3A0%2Cy%3A100000%7D%2Ct%3A%7Bx%3A0%2Cy%3A0%7D%2Cs%3A3%2Cb%3A4%7D%5D%7D */ .animation-target { -webkit-animation: animation 100ms linear both; animation: animation 100ms linear both; } .animation-target { -webkit-animation: animation 100ms linear both; animation: animation 100ms linear both; } /* Generated with Bounce.js. Edit at http://bouncejs.com#%7Bs%3A%5B%7BT%3A%22t%22%2Ce%3A%22b%22%2Cd%3A100%2CD%3A0%2Cf%3A%7Bx%3A0%2Cy%3A100%7D%2Ct%3A%7Bx%3A0%2Cy%3A0%7D%2Cs%3A3%2Cb%3A4%7D%5D%7D */ @-webkit-keyframes animation { 0% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 100, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 100, 0, 1); } 4.3% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 48.573, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 48.573, 0, 1); } 8.61% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 12.141, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 12.141, 0, 1); } 12.91% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.228, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.228, 0, 1); } 17.22% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.333, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.333, 0, 1); } 28.33% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.063, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.063, 0, 1); } 39.44% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.623, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.623, 0, 1); } 61.66% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.042, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.042, 0, 1); } 83.98% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.003, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.003, 0, 1); } 100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } } @keyframes animation { 0% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 100, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 100, 0, 1); } 4.3% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 48.573, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 48.573, 0, 1); } 8.61% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 12.141, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 12.141, 0, 1); } 12.91% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.228, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.228, 0, 1); } 17.22% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.333, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.333, 0, 1); } 28.33% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.063, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.063, 0, 1); } 39.44% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.623, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.623, 0, 1); } 61.66% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.042, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.042, 0, 1); } 83.98% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.003, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.003, 0, 1); } 100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
src/views/AllSongs/AllSongs.css
.all-songs { display: flex; flex-direction: column; } #ul{ height: 100%; overflow-y: scroll; } @media only screen and (max-width: 1000px) { .songtitle__info__container{ grid-template-rows: repeat(3, 20px)!important; grid-template-columns: repeat(2, 1fr)!important; } .songtile__icon{ width: 60px!important; height: 60px!important; padding: 5px; margin-left: 7px; } } @media only screen and (max-width: 500px) { .songtitle__info__container{ grid-template-rows: repeat(6, 20px)!important; grid-template-columns: repeat(1, 1fr)!important; } } .songtile { text-decoration: none; background-color: rgb(24, 24, 24); margin: 5px; border-radius: 10px; display: flex; transition: 500ms; -webkit-animation: animation 1000ms linear both; animation: animation 1000ms linear both; } .songtile:hover{ background-color: rgb(35, 35, 35); } .songtile__icon{ width: 80px; height: 80px; border-radius: 50%; margin-left: 10px; align-self: center; } .songtile__name__container { width: 90%; height: 70%; margin: 10px; align-self: center; } .songtitle__info__container{ display: grid; grid-template-rows: repeat(2, 20px); grid-template-columns: repeat(3, 1fr); } .songtitle__info__text{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-left: 20px; } .songtitle{ margin-left: 20px; color: white; } .animation-target { -webkit-animation: animation 1000ms linear both; animation: animation 1000ms linear both; } /* Generated with Bounce.js. Edit at http://bouncejs.com#%7Bs%3A%5B%7BT%3A%22t%22%2Ce%3A%22b%22%2Cd%3A1000%2CD%3A0%2Cf%3A%7Bx%3A0%2Cy%3A100000%7D%2Ct%3A%7Bx%3A0%2Cy%3A0%7D%2Cs%3A3%2Cb%3A4%7D%5D%7D */ .animation-target { -webkit-animation: animation 100ms linear both; animation: animation 100ms linear both; } .animation-target { -webkit-animation: animation 100ms linear both; animation: animation 100ms linear both; } /* Generated with Bounce.js. Edit at http://bouncejs.com#%7Bs%3A%5B%7BT%3A%22t%22%2Ce%3A%22b%22%2Cd%3A100%2CD%3A0%2Cf%3A%7Bx%3A0%2Cy%3A100%7D%2Ct%3A%7Bx%3A0%2Cy%3A0%7D%2Cs%3A3%2Cb%3A4%7D%5D%7D */ @-webkit-keyframes animation { 0% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 100, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 100, 0, 1); } 4.3% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 48.573, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 48.573, 0, 1); } 8.61% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 12.141, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 12.141, 0, 1); } 12.91% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.228, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.228, 0, 1); } 17.22% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.333, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.333, 0, 1); } 28.33% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.063, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.063, 0, 1); } 39.44% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.623, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.623, 0, 1); } 61.66% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.042, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.042, 0, 1); } 83.98% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.003, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.003, 0, 1); } 100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } } @keyframes animation { 0% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 100, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 100, 0, 1); } 4.3% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 48.573, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 48.573, 0, 1); } 8.61% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 12.141, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 12.141, 0, 1); } 12.91% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.228, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.228, 0, 1); } 17.22% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.333, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -9.333, 0, 1); } 28.33% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.063, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.063, 0, 1); } 39.44% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.623, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.623, 0, 1); } 61.66% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.042, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.042, 0, 1); } 83.98% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.003, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.003, 0, 1); } 100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }
0.364664
0.308281
* TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ .dse-width-none { width: 0rem; } .dse-height-none { height: 0rem; } .dse-width-xxxs { width: 0.25rem; } .dse-height-xxxs { height: 0.25rem; } .dse-width-xxs { width: 0.5rem; } .dse-height-xxs { height: 0.5rem; } .dse-width-xs { width: 0.75rem; } .dse-height-xs { height: 0.75rem; } .dse-width-sm { width: 1rem; } .dse-height-sm { height: 1rem; } .dse-width-md { width: 1.5rem; } .dse-height-md { height: 1.5rem; } .dse-width-lg { width: 2rem; } .dse-height-lg { height: 2rem; } .dse-width-xl { width: 3rem; } .dse-height-xl { height: 3rem; } .dse-width-xxl { width: 4.5rem; } .dse-height-xxl { height: 4.5rem; } .dse-width-xxxl { width: 6rem; } .dse-height-xxxl { height: 6rem; } /*============================================= #Variables =============================================*/ /** * TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ .dse-text { margin: 0; } .dse-text-xs { font-size: 0.75rem; } .dse-text-sm { font-size: 0.875rem; } .dse-text-base { font-size: 1rem; } .dse-text-lg { font-size: 1.125rem; } .dse-text-xl { font-size: 1.5rem; } /*============================================= #Variables =============================================*/ /** * TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ .dse-margin-none { margin: 0rem; } .dse-margin-left-none { margin-left: 0rem; } .dse-margin-right-none { margin-right: 0rem; } .dse-margin-top-none { margin-top: 0rem; } .dse-margin-bottom-none { margin-bottom: 0rem; } .dse-margin-xxxs { margin: 0.25rem; } .dse-margin-left-xxxs { margin-left: 0.25rem; } .dse-margin-right-xxxs { margin-right: 0.25rem; } .dse-margin-top-xxxs { margin-top: 0.25rem; } .dse-margin-bottom-xxxs { margin-bottom: 0.25rem; } .dse-margin-xxs { margin: 0.5rem; } .dse-margin-left-xxs { margin-left: 0.5rem; } .dse-margin-right-xxs { margin-right: 0.5rem; } .dse-margin-top-xxs { margin-top: 0.5rem; } .dse-margin-bottom-xxs { margin-bottom: 0.5rem; } .dse-margin-xs { margin: 0.75rem; } .dse-margin-left-xs { margin-left: 0.75rem; } .dse-margin-right-xs { margin-right: 0.75rem; } .dse-margin-top-xs { margin-top: 0.75rem; } .dse-margin-bottom-xs { margin-bottom: 0.75rem; } .dse-margin-sm { margin: 1rem; } .dse-margin-left-sm { margin-left: 1rem; } .dse-margin-right-sm { margin-right: 1rem; } .dse-margin-top-sm { margin-top: 1rem; } .dse-margin-bottom-sm { margin-bottom: 1rem; } .dse-margin-md { margin: 1.5rem; } .dse-margin-left-md { margin-left: 1.5rem; } .dse-margin-right-md { margin-right: 1.5rem; } .dse-margin-top-md { margin-top: 1.5rem; } .dse-margin-bottom-md { margin-bottom: 1.5rem; } .dse-margin-lg { margin: 2rem; } .dse-margin-left-lg { margin-left: 2rem; } .dse-margin-right-lg { margin-right: 2rem; } .dse-margin-top-lg { margin-top: 2rem; } .dse-margin-bottom-lg { margin-bottom: 2rem; } .dse-margin-xl { margin: 3rem; } .dse-margin-left-xl { margin-left: 3rem; } .dse-margin-right-xl { margin-right: 3rem; } .dse-margin-top-xl { margin-top: 3rem; } .dse-margin-bottom-xl { margin-bottom: 3rem; } .dse-margin-xxl { margin: 4.5rem; } .dse-margin-left-xxl { margin-left: 4.5rem; } .dse-margin-right-xxl { margin-right: 4.5rem; } .dse-margin-top-xxl { margin-top: 4.5rem; } .dse-margin-bottom-xxl { margin-bottom: 4.5rem; } .dse-margin-xxxl { margin: 6rem; } .dse-margin-left-xxxl { margin-left: 6rem; } .dse-margin-right-xxxl { margin-right: 6rem; } .dse-margin-top-xxxl { margin-top: 6rem; } .dse-margin-bottom-xxxl { margin-bottom: 6rem; } /*============================================= #Variables =============================================*/ /** * TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ .dse-select { display: flex; flex-direction: column; position: relative; } .dse-select__label { display: flex; align-items: center; justify-content: space-between; color: green; padding: 0.75rem; border: 1px solid var(--dse-form-border-color, #f1f2f3); background: var(--dse-form-bg-color, #fff); font-family: var(--dse-body-font-family, "Playfair Display", serif); cursor: pointer; } .dse-select__caret { transition: all 250ms ease; } .dse-select__caret--open { transform: rotate(180deg); } .dse-select__caret--closed { transform: rotate(0deg); } .dse-select__overlay { padding: 0rem; margin: 0rem; border: 1px solid var(--dse-form-border-color, #f1f2f3); background-color: var(--dse-form-bg-color, #fff); z-index: 99; display: none; list-style-type: none; box-shadow: 0px 4px 11px rgba(157, 157, 157, 0.21); position: absolute; width: 100%; } .dse-select__option { display: flex; align-items: center; justify-content: space-between; width: 100%; cursor: pointer; padding: 0.75rem; box-sizing: border-box; } .dse-select__option:hover { background-color: var(--dse-form-bg-color-hover, #f1f2f3); } .dse-select__option--highlighted { background-color: var(--dse-form-bg-color-hover, #f1f2f3); } .dse-select__option--selected { background-color: var(--dse-form-bg-option-selected, #5ece7b); color: var(--dse-form-color-option-selected, #fff); } .dse-select__overlay--open { display: block; } /*------------------------------------*\ TABLE OF CONTENTS \*------------------------------------*/ /** * * FOUNDATIONS................................................ * BASE....................................................... */ /*============================================= = Foundations = =============================================*/ /*============================================= #Variables =============================================*/ /** * TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ /*============================================== = Base = =============================================*/ /*============================================= = CSS RESETS = =============================================*/ /** * * The normalize.css npm package improves browser rendering consistency. * https://necolas.github.io/normalize.css/ */ /*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in * IE on Windows Phone and in iOS. */ html { line-height: 1.15; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers (opinionated). */ body { margin: 0; } /** * Add the correct display in IE 9-. */ article, aside, footer, header, nav, section { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * Add the correct display in IE 9-. */ figcaption, figure { display: block; } /** * Add the correct margin in IE 8. */ figure { margin: 1em 40px; } /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * Add the correct display in IE. */ main { display: block; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Links ========================================================================== */ /** * 1. Remove the gray background on active links in IE 10. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */ a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * 1. Remove the bottom border in Chrome 57- and Firefox 39-. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Prevent the duplicate application of `bolder` by the next rule in Safari 6. */ b, strong { font-weight: inherit; } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font style in Android 4.3-. */ dfn { font-style: italic; } /** * Add the correct background and color in IE 9-. */ mark { background-color: #ff0; color: #000; } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Add the correct display in IE 9-. */ audio, video { display: inline-block; } /** * Add the correct display in iOS 4-7. */ audio:not([controls]) { display: none; height: 0; } /** * Remove the border on images inside links in IE 10-. */ img { border-style: none; } /** * Hide the overflow in IE. */ svg:not(:root) { overflow: hidden; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers (opinionated). * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: sans-serif; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. */ button { overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` * controls in Android 4. * 2. Correct the inability to style clickable types in iOS and Safari. */ button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ } button, [type="button"], [type="reset"], [type="submit"] { /** * Remove the inner border and padding in Firefox. */ /** * Restore the focus styles unset by the previous rule. */ } button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Show the overflow in Edge. */ input { overflow: visible; } /** * 1. Add the correct box sizing in IE 10-. * 2. Remove the padding in IE 10-. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ /** * Remove the inner padding and cancel buttons in Chrome and Safari on macOS. */ } [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ color: inherit; /* 2 */ white-space: normal; /* 1 */ } /** * 1. Add the correct display in IE 9-. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ } /** * Remove the default vertical scrollbar in IE. */ textarea { overflow: auto; } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* * Add the correct display in IE 9-. */ menu { display: block; } /* Scripting ========================================================================== */ /** * Add the correct display in IE 9-. */ canvas { display: inline-block; } /** * Add the correct display in IE. */ template { display: none; } /* Hidden ========================================================================== */ /** * Add the correct display in IE 10-. */ [hidden] { display: none; } :root { --dse-body-text-color: #1d1f22; --dse-body-bg-color: #fff; --dse-btn-primary-color: #fff; --dse-btn-primary-bg: #5ece7b; --dse-btn-primary-bg-hover: #9ee2b0; --dse-btn-secondary-color: #fff; --dse-btn-secondary-bg: #1d1f22; --dse-form-color: #1d1f22; --dse-form-bg: #fff; --dse-form-error-color: #d12727; --dse-form-error-border: #d12727; --dse-form-border-focus-color: #5ece7b; --dse-body-font-size: 1rem; --dse-body-font-weight: 400; --dse-h1-font-size: 1.375rem; --dse-h2-font-size: 1.375rem; --dse-h3-font-size: 1rem; --dse-h4-font-size: 1.125rem; --dse-h5-font-size: 0.75rem; --dse-h6-font-size: 0.75rem; --dse-h1-font-weight: 500; --dse-h2-font-weight: 500; --dse-h3-font-weight: 500; --dse-h4-font-weight: 400; --dse-h5-font-weight: 400; --dse-h6-font-weight: 300; } body { font-family: var(--dse-body-font-family, "Playfair Display", serif); font-size: var(--dse-body-font-size, 0.875rem); font-weight: var(--dse-body-font-weight, 400); } /*# sourceMappingURL=/src.f69400ca.css.map */
playgrounds/react/dist/src.f69400ca.css
* TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ .dse-width-none { width: 0rem; } .dse-height-none { height: 0rem; } .dse-width-xxxs { width: 0.25rem; } .dse-height-xxxs { height: 0.25rem; } .dse-width-xxs { width: 0.5rem; } .dse-height-xxs { height: 0.5rem; } .dse-width-xs { width: 0.75rem; } .dse-height-xs { height: 0.75rem; } .dse-width-sm { width: 1rem; } .dse-height-sm { height: 1rem; } .dse-width-md { width: 1.5rem; } .dse-height-md { height: 1.5rem; } .dse-width-lg { width: 2rem; } .dse-height-lg { height: 2rem; } .dse-width-xl { width: 3rem; } .dse-height-xl { height: 3rem; } .dse-width-xxl { width: 4.5rem; } .dse-height-xxl { height: 4.5rem; } .dse-width-xxxl { width: 6rem; } .dse-height-xxxl { height: 6rem; } /*============================================= #Variables =============================================*/ /** * TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ .dse-text { margin: 0; } .dse-text-xs { font-size: 0.75rem; } .dse-text-sm { font-size: 0.875rem; } .dse-text-base { font-size: 1rem; } .dse-text-lg { font-size: 1.125rem; } .dse-text-xl { font-size: 1.5rem; } /*============================================= #Variables =============================================*/ /** * TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ .dse-margin-none { margin: 0rem; } .dse-margin-left-none { margin-left: 0rem; } .dse-margin-right-none { margin-right: 0rem; } .dse-margin-top-none { margin-top: 0rem; } .dse-margin-bottom-none { margin-bottom: 0rem; } .dse-margin-xxxs { margin: 0.25rem; } .dse-margin-left-xxxs { margin-left: 0.25rem; } .dse-margin-right-xxxs { margin-right: 0.25rem; } .dse-margin-top-xxxs { margin-top: 0.25rem; } .dse-margin-bottom-xxxs { margin-bottom: 0.25rem; } .dse-margin-xxs { margin: 0.5rem; } .dse-margin-left-xxs { margin-left: 0.5rem; } .dse-margin-right-xxs { margin-right: 0.5rem; } .dse-margin-top-xxs { margin-top: 0.5rem; } .dse-margin-bottom-xxs { margin-bottom: 0.5rem; } .dse-margin-xs { margin: 0.75rem; } .dse-margin-left-xs { margin-left: 0.75rem; } .dse-margin-right-xs { margin-right: 0.75rem; } .dse-margin-top-xs { margin-top: 0.75rem; } .dse-margin-bottom-xs { margin-bottom: 0.75rem; } .dse-margin-sm { margin: 1rem; } .dse-margin-left-sm { margin-left: 1rem; } .dse-margin-right-sm { margin-right: 1rem; } .dse-margin-top-sm { margin-top: 1rem; } .dse-margin-bottom-sm { margin-bottom: 1rem; } .dse-margin-md { margin: 1.5rem; } .dse-margin-left-md { margin-left: 1.5rem; } .dse-margin-right-md { margin-right: 1.5rem; } .dse-margin-top-md { margin-top: 1.5rem; } .dse-margin-bottom-md { margin-bottom: 1.5rem; } .dse-margin-lg { margin: 2rem; } .dse-margin-left-lg { margin-left: 2rem; } .dse-margin-right-lg { margin-right: 2rem; } .dse-margin-top-lg { margin-top: 2rem; } .dse-margin-bottom-lg { margin-bottom: 2rem; } .dse-margin-xl { margin: 3rem; } .dse-margin-left-xl { margin-left: 3rem; } .dse-margin-right-xl { margin-right: 3rem; } .dse-margin-top-xl { margin-top: 3rem; } .dse-margin-bottom-xl { margin-bottom: 3rem; } .dse-margin-xxl { margin: 4.5rem; } .dse-margin-left-xxl { margin-left: 4.5rem; } .dse-margin-right-xxl { margin-right: 4.5rem; } .dse-margin-top-xxl { margin-top: 4.5rem; } .dse-margin-bottom-xxl { margin-bottom: 4.5rem; } .dse-margin-xxxl { margin: 6rem; } .dse-margin-left-xxxl { margin-left: 6rem; } .dse-margin-right-xxxl { margin-right: 6rem; } .dse-margin-top-xxxl { margin-top: 6rem; } .dse-margin-bottom-xxxl { margin-bottom: 6rem; } /*============================================= #Variables =============================================*/ /** * TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ .dse-select { display: flex; flex-direction: column; position: relative; } .dse-select__label { display: flex; align-items: center; justify-content: space-between; color: green; padding: 0.75rem; border: 1px solid var(--dse-form-border-color, #f1f2f3); background: var(--dse-form-bg-color, #fff); font-family: var(--dse-body-font-family, "Playfair Display", serif); cursor: pointer; } .dse-select__caret { transition: all 250ms ease; } .dse-select__caret--open { transform: rotate(180deg); } .dse-select__caret--closed { transform: rotate(0deg); } .dse-select__overlay { padding: 0rem; margin: 0rem; border: 1px solid var(--dse-form-border-color, #f1f2f3); background-color: var(--dse-form-bg-color, #fff); z-index: 99; display: none; list-style-type: none; box-shadow: 0px 4px 11px rgba(157, 157, 157, 0.21); position: absolute; width: 100%; } .dse-select__option { display: flex; align-items: center; justify-content: space-between; width: 100%; cursor: pointer; padding: 0.75rem; box-sizing: border-box; } .dse-select__option:hover { background-color: var(--dse-form-bg-color-hover, #f1f2f3); } .dse-select__option--highlighted { background-color: var(--dse-form-bg-color-hover, #f1f2f3); } .dse-select__option--selected { background-color: var(--dse-form-bg-option-selected, #5ece7b); color: var(--dse-form-color-option-selected, #fff); } .dse-select__overlay--open { display: block; } /*------------------------------------*\ TABLE OF CONTENTS \*------------------------------------*/ /** * * FOUNDATIONS................................................ * BASE....................................................... */ /*============================================= = Foundations = =============================================*/ /*============================================= #Variables =============================================*/ /** * TABLE OF CONTENTS * * COLORS * Brand colors...................These are the main brand colors. They will be used the most * Neutral colors.................White and black, gray scale, secondary colors. * Utility colors.................Other colors to represent states: info, warning, success, etc. * * TYPOGRAPHY * Font families..................The fonts used in the design system. * Font weights...................Font weights * Sizes..........................Font sizing for body text, paragraphs, inputs * Heading sizes..................Font sizing for page headings * * BREAKPOINTS * Breakpoints....................Global responsive breakpoints definitions. * * SPACING * Spacing........................Global fixed set of spacing variables */ /*============================================= = Colors = =============================================*/ /* Brand Colors */ /* Neutral Colors */ /* Utility colors */ /*===== End of Colors ======*/ /*============================================= = Typography = =============================================*/ /** * * 1) The playfair font. We'll use this for headings mostly. * https://fonts.google.com/specimen/Playfair+Display * * 2) The raleway font. We'll use this for the body text. * https://fonts.google.com/specimen/Raleway */ /* Font families */ /* 1 */ /* 2 */ /* Font sizes */ /* Heading font sizes */ /* Font weights */ /*===== End of Typography ======*/ /*============================================= = Breakpoints = =============================================*/ /*===== End of Breakpoints ======*/ /*============================================= = Spacing = =============================================*/ /*===== End of Spacing ======*/ /*============================================= = Foundation - colors = =============================================*/ /** * This file defines the actual colors that will be used for styling. They will default to the palette * we defined in the _variable.scss file. This is our default palette, and devs can override this * with their own variables. */ /*============================================= = Global text colors = =============================================*/ /*============================================= = Buttons = =============================================*/ /*============================================= = Forms = =============================================*/ /*============================================= = Foundation - Typography = =============================================*/ /** * This file defines the default font sizes to be used on headings and texts. The defaults come * from the palette defined in _variables.scss. */ /*============================================= = Body font family = =============================================*/ /*============================================= = Body font sizes = =============================================*/ /*============================================= = Heading font sizes = =============================================*/ /*============================================= = Head font weights = =============================================*/ /*============================================= = Mixins = =============================================*/ /** * * Helpful reusable function-like things that will be used to implement * styles for components. * */ /*============================================== = Base = =============================================*/ /*============================================= = CSS RESETS = =============================================*/ /** * * The normalize.css npm package improves browser rendering consistency. * https://necolas.github.io/normalize.css/ */ /*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in * IE on Windows Phone and in iOS. */ html { line-height: 1.15; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers (opinionated). */ body { margin: 0; } /** * Add the correct display in IE 9-. */ article, aside, footer, header, nav, section { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * Add the correct display in IE 9-. */ figcaption, figure { display: block; } /** * Add the correct margin in IE 8. */ figure { margin: 1em 40px; } /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * Add the correct display in IE. */ main { display: block; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Links ========================================================================== */ /** * 1. Remove the gray background on active links in IE 10. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */ a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * 1. Remove the bottom border in Chrome 57- and Firefox 39-. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Prevent the duplicate application of `bolder` by the next rule in Safari 6. */ b, strong { font-weight: inherit; } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font style in Android 4.3-. */ dfn { font-style: italic; } /** * Add the correct background and color in IE 9-. */ mark { background-color: #ff0; color: #000; } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Add the correct display in IE 9-. */ audio, video { display: inline-block; } /** * Add the correct display in iOS 4-7. */ audio:not([controls]) { display: none; height: 0; } /** * Remove the border on images inside links in IE 10-. */ img { border-style: none; } /** * Hide the overflow in IE. */ svg:not(:root) { overflow: hidden; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers (opinionated). * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: sans-serif; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. */ button { overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` * controls in Android 4. * 2. Correct the inability to style clickable types in iOS and Safari. */ button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ } button, [type="button"], [type="reset"], [type="submit"] { /** * Remove the inner border and padding in Firefox. */ /** * Restore the focus styles unset by the previous rule. */ } button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Show the overflow in Edge. */ input { overflow: visible; } /** * 1. Add the correct box sizing in IE 10-. * 2. Remove the padding in IE 10-. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ /** * Remove the inner padding and cancel buttons in Chrome and Safari on macOS. */ } [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ color: inherit; /* 2 */ white-space: normal; /* 1 */ } /** * 1. Add the correct display in IE 9-. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ } /** * Remove the default vertical scrollbar in IE. */ textarea { overflow: auto; } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* * Add the correct display in IE 9-. */ menu { display: block; } /* Scripting ========================================================================== */ /** * Add the correct display in IE 9-. */ canvas { display: inline-block; } /** * Add the correct display in IE. */ template { display: none; } /* Hidden ========================================================================== */ /** * Add the correct display in IE 10-. */ [hidden] { display: none; } :root { --dse-body-text-color: #1d1f22; --dse-body-bg-color: #fff; --dse-btn-primary-color: #fff; --dse-btn-primary-bg: #5ece7b; --dse-btn-primary-bg-hover: #9ee2b0; --dse-btn-secondary-color: #fff; --dse-btn-secondary-bg: #1d1f22; --dse-form-color: #1d1f22; --dse-form-bg: #fff; --dse-form-error-color: #d12727; --dse-form-error-border: #d12727; --dse-form-border-focus-color: #5ece7b; --dse-body-font-size: 1rem; --dse-body-font-weight: 400; --dse-h1-font-size: 1.375rem; --dse-h2-font-size: 1.375rem; --dse-h3-font-size: 1rem; --dse-h4-font-size: 1.125rem; --dse-h5-font-size: 0.75rem; --dse-h6-font-size: 0.75rem; --dse-h1-font-weight: 500; --dse-h2-font-weight: 500; --dse-h3-font-weight: 500; --dse-h4-font-weight: 400; --dse-h5-font-weight: 400; --dse-h6-font-weight: 300; } body { font-family: var(--dse-body-font-family, "Playfair Display", serif); font-size: var(--dse-body-font-size, 0.875rem); font-weight: var(--dse-body-font-weight, 400); } /*# sourceMappingURL=/src.f69400ca.css.map */
0.76145
0.051774
html, body{ height: 100%; margin: 0; font-family: AP-R; } .login{ height: 100%; } .login .img-login{ height: 100vh; width: 100%; background-image: url(../img/login.png); background-position: center; background-repeat: no-repeat; background-size: cover; } .login .img-login img{ width: 30vw; position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); } .login .content-login{ height: 100vh; padding: 0; } .login .form-login{ height: 100vh; } .login .form-login .caption-welcome{ text-align: center; padding-bottom: 50px; } .login .form-login .caption-welcome h2{ color: #E03268; font-family: AP-M; font-size: 28px; } .login .form-login .caption-welcome p{ color: #BCBCBC; font-size: 14px; } .login form{ position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); } .login form table{ } .login form table .text-sign-in{ font-size: 20px; color: #E03268; font-family: AP-M; padding-bottom: 30px; } .login .form-login table td{ padding-bottom: 20px; } .login .form-login table td .id-pass{ border: none; border-bottom: 1px solid #E03268; background: transparent; } .login .form-login table td a{ color: #E03268; font-size: 14px; } .login .form-login table td .btn-masuk{ background: #E03268; border: none; border-radius: 50px; padding: 8px 30px; color: #fff; float: right; } .login .form-login table .daftar{ padding-top: 100px; text-align: center; color: #BCBCBC; } .login .form-login table .daftar button{ color: #E03268; font-size: 14px; border: none; background: transparent; } .modal-header{ border-bottom: none; } .modal-footer{ border-top: none; } .modal-body{ text-align: center; } @media (max-width: 991px){ .login .img-login{ height: 50vh; } .login .content-login{ height: 50vh; } }
public/assets/css/index.css
html, body{ height: 100%; margin: 0; font-family: AP-R; } .login{ height: 100%; } .login .img-login{ height: 100vh; width: 100%; background-image: url(../img/login.png); background-position: center; background-repeat: no-repeat; background-size: cover; } .login .img-login img{ width: 30vw; position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); } .login .content-login{ height: 100vh; padding: 0; } .login .form-login{ height: 100vh; } .login .form-login .caption-welcome{ text-align: center; padding-bottom: 50px; } .login .form-login .caption-welcome h2{ color: #E03268; font-family: AP-M; font-size: 28px; } .login .form-login .caption-welcome p{ color: #BCBCBC; font-size: 14px; } .login form{ position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); } .login form table{ } .login form table .text-sign-in{ font-size: 20px; color: #E03268; font-family: AP-M; padding-bottom: 30px; } .login .form-login table td{ padding-bottom: 20px; } .login .form-login table td .id-pass{ border: none; border-bottom: 1px solid #E03268; background: transparent; } .login .form-login table td a{ color: #E03268; font-size: 14px; } .login .form-login table td .btn-masuk{ background: #E03268; border: none; border-radius: 50px; padding: 8px 30px; color: #fff; float: right; } .login .form-login table .daftar{ padding-top: 100px; text-align: center; color: #BCBCBC; } .login .form-login table .daftar button{ color: #E03268; font-size: 14px; border: none; background: transparent; } .modal-header{ border-bottom: none; } .modal-footer{ border-top: none; } .modal-body{ text-align: center; } @media (max-width: 991px){ .login .img-login{ height: 50vh; } .login .content-login{ height: 50vh; } }
0.407451
0.050588
h4, h5, h6, h1, h2, h3 {margin-top: 0;} ul, ol {margin: 0;} p {margin: 0;} html, body{ font-family: '微软雅黑','Roboto', sans-serif; font-size: 100%; background:#FFF; overflow-x: hidden; margin: 0px; } body a{ transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } .clear{ clear: both; } .wrapper{ width:1024px; margin: 0 auto; } .top_bar{width: 100%; margin: 0 auto; height: 40px; background: #FCFFE7; padding-left: 30px} .top_bar_index{width: 1024px;} .top_bar_center{width: 1024px; margin: 0 auto; height: 40px; line-height: 40px; font-family:MicrosoftYaHei; font-size:12px; color: #222222} .top_bar span.top_icon{ width: 40px; height: 40px; background: url("../images/error/CompatibilityIcon.png") center} .top_bar span.close_icon{ width: 40px; height: 40px; float: right; background: url("../images/error/CompatibilityCloseH.png") center} .top_bar span{ float: left} .top_bar span a{ text-decoration: none; } .main_top{ width: 100%; padding-top: 40px; margin: 0 auto; text-align: center} .main_top_button{ width: 110px; height: 30px; margin: 0 auto; line-height: 30px; background: #F9F9F9; border: 1px solid #ECECEC;} .main_top_button a{ text-decoration: none; font-family: PingFangSC-Regular; font-size: 12px; color: #929292;} .main_center{ width: 1024px; margin: 0 auto} .top_title{width:100%; height:40px; line-height:40px; font-family: PingFangSC-Semibold; font-size: 24px; color: #222222; padding-top: 40px; padding-left: 30px} .top_notice{width:100%; height:20px; line-height:20px; font-family: PingFangSC-Regular; font-size: 12px; color: #222222; padding-top: 10px; padding-left: 30px} .main_icon{width: 100%; margin: 0 auto; padding-left: 30px; padding-top: 40px} .per_icon{width: 200px; height: 50px; float: left} .icon_left{width: 50px; height: 50px; float: left} .icon_left img{border: 0px} .icon_right{width: 140px; height: 50px; float: left; text-align: left; padding-left: 10px} .icon_right span{font-family: PingFangSC-Regular; font-size: 12px; color: #222222; height: 25px; line-height: 25px} .icon_right span a{text-decoration: none; color: #222222; height: 25px; line-height: 25px} .icon_right span a:hover{text-decoration: #222222; color: #929292}
public/css/error.css
h4, h5, h6, h1, h2, h3 {margin-top: 0;} ul, ol {margin: 0;} p {margin: 0;} html, body{ font-family: '微软雅黑','Roboto', sans-serif; font-size: 100%; background:#FFF; overflow-x: hidden; margin: 0px; } body a{ transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } .clear{ clear: both; } .wrapper{ width:1024px; margin: 0 auto; } .top_bar{width: 100%; margin: 0 auto; height: 40px; background: #FCFFE7; padding-left: 30px} .top_bar_index{width: 1024px;} .top_bar_center{width: 1024px; margin: 0 auto; height: 40px; line-height: 40px; font-family:MicrosoftYaHei; font-size:12px; color: #222222} .top_bar span.top_icon{ width: 40px; height: 40px; background: url("../images/error/CompatibilityIcon.png") center} .top_bar span.close_icon{ width: 40px; height: 40px; float: right; background: url("../images/error/CompatibilityCloseH.png") center} .top_bar span{ float: left} .top_bar span a{ text-decoration: none; } .main_top{ width: 100%; padding-top: 40px; margin: 0 auto; text-align: center} .main_top_button{ width: 110px; height: 30px; margin: 0 auto; line-height: 30px; background: #F9F9F9; border: 1px solid #ECECEC;} .main_top_button a{ text-decoration: none; font-family: PingFangSC-Regular; font-size: 12px; color: #929292;} .main_center{ width: 1024px; margin: 0 auto} .top_title{width:100%; height:40px; line-height:40px; font-family: PingFangSC-Semibold; font-size: 24px; color: #222222; padding-top: 40px; padding-left: 30px} .top_notice{width:100%; height:20px; line-height:20px; font-family: PingFangSC-Regular; font-size: 12px; color: #222222; padding-top: 10px; padding-left: 30px} .main_icon{width: 100%; margin: 0 auto; padding-left: 30px; padding-top: 40px} .per_icon{width: 200px; height: 50px; float: left} .icon_left{width: 50px; height: 50px; float: left} .icon_left img{border: 0px} .icon_right{width: 140px; height: 50px; float: left; text-align: left; padding-left: 10px} .icon_right span{font-family: PingFangSC-Regular; font-size: 12px; color: #222222; height: 25px; line-height: 25px} .icon_right span a{text-decoration: none; color: #222222; height: 25px; line-height: 25px} .icon_right span a:hover{text-decoration: #222222; color: #929292}
0.392919
0.092647
@-moz-document url-prefix("https://www.bungie.net/en/Forum/"), url-prefix("http://www.bungie.net/en/Forum/") { /*Your Background*/ body { background: #000000 url("http://PASTE YOUR IMAGE'S URL HERE") 50% 0 no-repeat fixed ! important; -webkit-background-size: cover ! important; } /*Transparency*/ .PublicForum .column.main { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3) ! important; } /*Font Color*/ .forumPost article .post_body, .forumPost article .post_urlLinkOrImage { color: #E5E5E5 ! important; } /*Side Nav Transparency*/ .PublicForum .column.main:before { background: none repeat scroll 0 0 rgba(221, 225, 228, 0) ! important; } /*Poster Name Colour*/ .forumPost article h1 a { color: #E7E7E7 ! important; } /*Post Dividers*/ .forumPost .post { border-top: 1px solid rgba(168, 168, 168, 0.5) ! important; } /*OP Background Colour*/ #post > .post { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.25) ! important; box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0) ! important; } /*OP Name Colour*/ .forumPost article h1 a { color: #E7E7E7; } /*OP Title Background*/ .header_post { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.25) ! important; clear: both; } /*OP Title Colour*/ .forumPost .post_title { color: #E7E7E7! important; text-shadow: 0 1px 0 rgba(238, 238, 238, 0) ! important; } /*Tags Colour-Main Forum*/ .topics .tags, .topics .tags a { color: #C8C8C8 ! important; } /*Thread Title-Main Forum*/ .topics .title { color: #E7E7E7 ! important; } /*New Topic*/ .btn_openCreateNewTopic { background: url(http://null) ! important; border: 0px solid #c9cbce ! important; color: #E7E7E7 ! important; } /*Current Tag*/ .searchedTag { border: 0px solid #c9cbce ! important; color: #E7E7E7 ! important; } /*Forum Sort*/ .container_sort .sort a { color: #E7E7E7 ! important; } .container_sort .sort h2 { color: #E7E7E7 ! important; } /*Spoilers*/ .forumPost .spoiler { border-width: 0px ! important; color: #E7E7E7 ! important; background-color: rgba(0, 0, 0, 0.35) ! important; } /*Quotes*/ .forumPost blockquote { border-style: none ! important; border-width: 0px ! important; color: #E7E7E7 ! important; background-color: rgba(0, 0, 0, 0.35) ! important; } /*Tag Nav*/ .nav_side > li { background: rgba(0, 0, 0, 0.35) ! important; border-top: 0px solid #479ce4 ! important; } .nav_side a { color: #E7E7E7 ! important; } #nav_tags h4 { color: #E7E7E7 ! important; } .nav_side .btn_codeOfConduct { background: url("http://null") no-repeat scroll 12px center rgba(0, 0, 0, 0) ! important; padding-left: 55px ! important; } #nav_tags .container_textbox { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.55) ! important; } /*Avatar Fix*/ .forumPost article .avatar { border: 0 solid #000000; box-shadow: 0 3px 3px -1px transparent inset, 0 0px 0 #FFFFFF ! important; } /*Thread Title*/ .forumPost .post_title a:link, .forumPost .post_title a:hover, .forumPost .post_title a:visited { color: #E7E7E7 ! important; } } @-moz-document url-prefix("https://www.bungie.net"), url-prefix("http://www.bungie.net") { /*Toolbar*/ header { background: #090909 ! important; font-family: 'OpenSansRegular', sans-serif ! important; border-bottom: 1px solid #090909 ! important; } /*Toolbar Logo*/ .nav_logo .logo { background: url("http://s28.postimg.org/4273pul2l/header_nav_bungie_logo_left.png") no-repeat scroll 0 0 transparent ! important; height: 54px ! important; vertical-align: middle ! important; width: 224px ! important; display: block ! important; } /*Left Nav*/ #leftNav .column1 { background: #090909 ! important; } /*Left Nav Active*/ #leftNav a.current:after { background: #3C3C3C ! important; } #leftNav a:hover, #leftNav a.current { background: #090909 ! important; } #leftNav .moreColumn { background: #090909 ! important; } }
data/usercss/110377.user.css
@-moz-document url-prefix("https://www.bungie.net/en/Forum/"), url-prefix("http://www.bungie.net/en/Forum/") { /*Your Background*/ body { background: #000000 url("http://PASTE YOUR IMAGE'S URL HERE") 50% 0 no-repeat fixed ! important; -webkit-background-size: cover ! important; } /*Transparency*/ .PublicForum .column.main { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3) ! important; } /*Font Color*/ .forumPost article .post_body, .forumPost article .post_urlLinkOrImage { color: #E5E5E5 ! important; } /*Side Nav Transparency*/ .PublicForum .column.main:before { background: none repeat scroll 0 0 rgba(221, 225, 228, 0) ! important; } /*Poster Name Colour*/ .forumPost article h1 a { color: #E7E7E7 ! important; } /*Post Dividers*/ .forumPost .post { border-top: 1px solid rgba(168, 168, 168, 0.5) ! important; } /*OP Background Colour*/ #post > .post { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.25) ! important; box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0) ! important; } /*OP Name Colour*/ .forumPost article h1 a { color: #E7E7E7; } /*OP Title Background*/ .header_post { background: none repeat scroll 0 0 rgba(0, 0, 0, 0.25) ! important; clear: both; } /*OP Title Colour*/ .forumPost .post_title { color: #E7E7E7! important; text-shadow: 0 1px 0 rgba(238, 238, 238, 0) ! important; } /*Tags Colour-Main Forum*/ .topics .tags, .topics .tags a { color: #C8C8C8 ! important; } /*Thread Title-Main Forum*/ .topics .title { color: #E7E7E7 ! important; } /*New Topic*/ .btn_openCreateNewTopic { background: url(http://null) ! important; border: 0px solid #c9cbce ! important; color: #E7E7E7 ! important; } /*Current Tag*/ .searchedTag { border: 0px solid #c9cbce ! important; color: #E7E7E7 ! important; } /*Forum Sort*/ .container_sort .sort a { color: #E7E7E7 ! important; } .container_sort .sort h2 { color: #E7E7E7 ! important; } /*Spoilers*/ .forumPost .spoiler { border-width: 0px ! important; color: #E7E7E7 ! important; background-color: rgba(0, 0, 0, 0.35) ! important; } /*Quotes*/ .forumPost blockquote { border-style: none ! important; border-width: 0px ! important; color: #E7E7E7 ! important; background-color: rgba(0, 0, 0, 0.35) ! important; } /*Tag Nav*/ .nav_side > li { background: rgba(0, 0, 0, 0.35) ! important; border-top: 0px solid #479ce4 ! important; } .nav_side a { color: #E7E7E7 ! important; } #nav_tags h4 { color: #E7E7E7 ! important; } .nav_side .btn_codeOfConduct { background: url("http://null") no-repeat scroll 12px center rgba(0, 0, 0, 0) ! important; padding-left: 55px ! important; } #nav_tags .container_textbox { background: none repeat scroll 0 0 rgba(255, 255, 255, 0.55) ! important; } /*Avatar Fix*/ .forumPost article .avatar { border: 0 solid #000000; box-shadow: 0 3px 3px -1px transparent inset, 0 0px 0 #FFFFFF ! important; } /*Thread Title*/ .forumPost .post_title a:link, .forumPost .post_title a:hover, .forumPost .post_title a:visited { color: #E7E7E7 ! important; } } @-moz-document url-prefix("https://www.bungie.net"), url-prefix("http://www.bungie.net") { /*Toolbar*/ header { background: #090909 ! important; font-family: 'OpenSansRegular', sans-serif ! important; border-bottom: 1px solid #090909 ! important; } /*Toolbar Logo*/ .nav_logo .logo { background: url("http://s28.postimg.org/4273pul2l/header_nav_bungie_logo_left.png") no-repeat scroll 0 0 transparent ! important; height: 54px ! important; vertical-align: middle ! important; width: 224px ! important; display: block ! important; } /*Left Nav*/ #leftNav .column1 { background: #090909 ! important; } /*Left Nav Active*/ #leftNav a.current:after { background: #3C3C3C ! important; } #leftNav a:hover, #leftNav a.current { background: #090909 ! important; } #leftNav .moreColumn { background: #090909 ! important; } }
0.218253
0.131006
body { font-family:Arial, Tahoma, verdana,Helvetica,sans-serif; font-size:12px; margin:4em 2em 4em 2em; } table { font-size:12px; } #divContents { width:630px; } #tblAddressInfo td { width:50%; text-align:left; vertical-align:top; } #tblOrderInfo { border:solid 1px black; /*font-size:small;*/ width:100%; } #tblOrderInfo td { text-align:left; vertical-align:top; /*border:solid 1px black;*/ } #tblOrderInfo .tdOrderInfoLabel { font-weight:bold; width:15% } #tblOrderInfo .tdOrderInfoValue { width:35% } #tblLineItems { text-align:left; /*font-size:small;*/ width:100%; } #tblLineItems td { /*line-height:20px;*/ vertical-align:top; } #tblLineItems .tdLineItemHeader { color: White; background-color: #003366; font-weight: bold; border:solid 1px #777777; text-align:center; } #tblLineItems .tdLineItem { } #tblOrderHeader { font-weight:bold; font-size:15px; } .tdOrderHeaderLabel { text-align:right; vertical-align:top; } .tdOrderHeaderValue { padding-left:1em; text-align:left; vertical-align:top; } #lblOrderNumber { /*font-size:large;*/ font-weight:bolder; } #colSKU { font-weight:bold; padding-left:1em; text-align:left; } #colProductName { padding-left:1em; } #colQuantity { font-weight:bold; text-align:center; } #colPrice { font-weight:bold; text-align:right; padding-right:1em; } #colDiscount { font-weight:bold; text-align:right; padding-right:1em; } #colExtPrice { font-weight:bold; text-align:right; padding-right:1em; } .colTextOrNotes { padding-left:1em; } #lblProductName { font-weight:bold; } .pnlTextOption { font-size:smaller; } .textOptionPrompt { font-weight:bold; } .textOption { } .vatLabel { font-weight:normal; } .discountLabel { font-weight:normal; } .shipToAddressLabel { font-weight:bold; } .shipToAddress { /*font-style:italic;*/ } .shipToAddressShippingMethodLabel { font-weight:bold; } .shipToAddressShippingMethod { } #lblBillTo { font-weight:bold; } /* .kitItems { text-indent:2em; } */ #tblSummary { width:100%; border-top:solid 1px black; } #tdSummaryNotes { text-align:left; vertical-align:top; width:50%; } #tdOrderSummary { text-align:left; vertical-align:top; width:50%; } #tblOrderSummary { width:100%; } .tdOrderSummaryLabel { text-align:right; vertical-align:top; width:40%; font-weight:bold; } .tdOrderSummaryValue { text-align:right; vertical-align:top; width:40%; } .tdOrderSummaryMisc { padding-left:1em; text-align:left; vertical-align:top; width:30%; } .pnlKitDetail { font-size:smaller; } .pnlKitItemImage { padding-left:1em; } .pnlGiftCardSerialNumber { font-size:smaller; } .pnlNoShippingRequired { font-size:smaller; } #tblLineItems ul { font-size:smaller; list-style:circle none outside; margin:0; padding-left:2em; } .spacerBorder { border-top: solid 1px #CCC; } #tblMultiShipAddress { outline-color:Gray; } .lblMultiShipAddress { background:#f0ffff; }
Css/receipt.css
body { font-family:Arial, Tahoma, verdana,Helvetica,sans-serif; font-size:12px; margin:4em 2em 4em 2em; } table { font-size:12px; } #divContents { width:630px; } #tblAddressInfo td { width:50%; text-align:left; vertical-align:top; } #tblOrderInfo { border:solid 1px black; /*font-size:small;*/ width:100%; } #tblOrderInfo td { text-align:left; vertical-align:top; /*border:solid 1px black;*/ } #tblOrderInfo .tdOrderInfoLabel { font-weight:bold; width:15% } #tblOrderInfo .tdOrderInfoValue { width:35% } #tblLineItems { text-align:left; /*font-size:small;*/ width:100%; } #tblLineItems td { /*line-height:20px;*/ vertical-align:top; } #tblLineItems .tdLineItemHeader { color: White; background-color: #003366; font-weight: bold; border:solid 1px #777777; text-align:center; } #tblLineItems .tdLineItem { } #tblOrderHeader { font-weight:bold; font-size:15px; } .tdOrderHeaderLabel { text-align:right; vertical-align:top; } .tdOrderHeaderValue { padding-left:1em; text-align:left; vertical-align:top; } #lblOrderNumber { /*font-size:large;*/ font-weight:bolder; } #colSKU { font-weight:bold; padding-left:1em; text-align:left; } #colProductName { padding-left:1em; } #colQuantity { font-weight:bold; text-align:center; } #colPrice { font-weight:bold; text-align:right; padding-right:1em; } #colDiscount { font-weight:bold; text-align:right; padding-right:1em; } #colExtPrice { font-weight:bold; text-align:right; padding-right:1em; } .colTextOrNotes { padding-left:1em; } #lblProductName { font-weight:bold; } .pnlTextOption { font-size:smaller; } .textOptionPrompt { font-weight:bold; } .textOption { } .vatLabel { font-weight:normal; } .discountLabel { font-weight:normal; } .shipToAddressLabel { font-weight:bold; } .shipToAddress { /*font-style:italic;*/ } .shipToAddressShippingMethodLabel { font-weight:bold; } .shipToAddressShippingMethod { } #lblBillTo { font-weight:bold; } /* .kitItems { text-indent:2em; } */ #tblSummary { width:100%; border-top:solid 1px black; } #tdSummaryNotes { text-align:left; vertical-align:top; width:50%; } #tdOrderSummary { text-align:left; vertical-align:top; width:50%; } #tblOrderSummary { width:100%; } .tdOrderSummaryLabel { text-align:right; vertical-align:top; width:40%; font-weight:bold; } .tdOrderSummaryValue { text-align:right; vertical-align:top; width:40%; } .tdOrderSummaryMisc { padding-left:1em; text-align:left; vertical-align:top; width:30%; } .pnlKitDetail { font-size:smaller; } .pnlKitItemImage { padding-left:1em; } .pnlGiftCardSerialNumber { font-size:smaller; } .pnlNoShippingRequired { font-size:smaller; } #tblLineItems ul { font-size:smaller; list-style:circle none outside; margin:0; padding-left:2em; } .spacerBorder { border-top: solid 1px #CCC; } #tblMultiShipAddress { outline-color:Gray; } .lblMultiShipAddress { background:#f0ffff; }
0.312895
0.056705
html { position: relative; } body { margin-bottom: 120px; background-color: #f5f6fa; } .topbar { min-height: 44px; } .topbar p { color: #1cc88a !important; margin-top: 16px; font-weight: 500; } /* Font Awesome Icons */ .social-icon { margin: 0; padding: 0; list-style: none; } .social-icon a { display: inline-block; width: 40px; height: 40px; line-height: 40px; font-size: 20px; text-align: center; color: #1cc88a; } .social-icon li { display: inline-block; margin: auto; margin-left: 5px; padding: 0; line-height: normal; } /* Header & Logo */ #header a { color: #1cc88a; font-size: xx-large; } #header a:hover { text-decoration: none; color: #1cc88a; font-size: xx-large; } /* Navbar */ .bg-secondary { background-color: #009051 !important; } nav a { color: #FFF !important; font-weight: 500; } nav a:hover { color: #dae2e2 !important; font-weight: 500; } /* visi misi */ #visi-misi ul li { list-style: none; } /* Content */ .wrapper { min-height: 100%; margin-bottom: -100px; } .wrapper::after { content: ""; display: block; } /* Footer */ .wrapper::after { height: 300px; } #blank-zone { margin-top: 400px; } #footer { height: 310px; background-color: #333; position: absolute; color: #FFFFFF; min-height: 100px; padding-top: 30px; bottom: 0; width: 100%; } #footer #content #berita-footer { padding-left: 0.8rem; list-style-type: georgian; } #footer #content #alamat-footer { padding: 0; list-style-type: none; } #footer #content p, #footer #content li { font-size: 0.8rem; } #footer #content hr { text-align: left; margin-left: 0; width: 15%; border: 1px solid; border-color: #999; background-color: #999; color: #999; } #footer hr { border-color: #FFFFFF; background-color: #FFFFFF; color: #FFFFFF; } #footer #copyright p { font-size: 0.8rem; } #footer #copyright a { color: #FFFFFF; font-weight: 500; text-decoration: none; cursor: default; } /*========== Mobile First Method ==========*/ /* Custom, iPhone Retina */ @media only screen and (min-width : 320px) {} /* Extra Small Devices, Phones */ @media only screen and (min-width : 480px) {} /* Small Devices, Tablets */ @media only screen and (min-width : 768px) {} /* Medium Devices, Desktops */ @media only screen and (min-width : 992px) {} /* Large Devices, Wide Screens */ @media only screen and (min-width : 1200px) {} /*========== Non-Mobile First Method ==========*/ /* Large Devices, Wide Screens */ @media only screen and (max-width : 1200px) {} /* Medium Devices, Desktops */ @media only screen and (max-width : 992px) {} /* Small Devices, Tablets */ @media only screen and (max-width : 768px) { #header a { display: flex; align-items: center; justify-content: center; } #header a#header-text { display: none; } marquee { display: none; } .wrapper::after { height: 100px; } #blank-zone { margin-top: 400px; } #footer { height: 150px; background-color: #333; position: absolute; color: #FFFFFF; min-height: 100px; padding-top: 30px; bottom: 0; width: 100%; text-align: center; } } /* Extra Small Devices, Phones */ @media only screen and (max-width : 480px) {} /* Custom, iPhone Retina */ @media only screen and (max-width : 320px) {}
assets/css/style.css
html { position: relative; } body { margin-bottom: 120px; background-color: #f5f6fa; } .topbar { min-height: 44px; } .topbar p { color: #1cc88a !important; margin-top: 16px; font-weight: 500; } /* Font Awesome Icons */ .social-icon { margin: 0; padding: 0; list-style: none; } .social-icon a { display: inline-block; width: 40px; height: 40px; line-height: 40px; font-size: 20px; text-align: center; color: #1cc88a; } .social-icon li { display: inline-block; margin: auto; margin-left: 5px; padding: 0; line-height: normal; } /* Header & Logo */ #header a { color: #1cc88a; font-size: xx-large; } #header a:hover { text-decoration: none; color: #1cc88a; font-size: xx-large; } /* Navbar */ .bg-secondary { background-color: #009051 !important; } nav a { color: #FFF !important; font-weight: 500; } nav a:hover { color: #dae2e2 !important; font-weight: 500; } /* visi misi */ #visi-misi ul li { list-style: none; } /* Content */ .wrapper { min-height: 100%; margin-bottom: -100px; } .wrapper::after { content: ""; display: block; } /* Footer */ .wrapper::after { height: 300px; } #blank-zone { margin-top: 400px; } #footer { height: 310px; background-color: #333; position: absolute; color: #FFFFFF; min-height: 100px; padding-top: 30px; bottom: 0; width: 100%; } #footer #content #berita-footer { padding-left: 0.8rem; list-style-type: georgian; } #footer #content #alamat-footer { padding: 0; list-style-type: none; } #footer #content p, #footer #content li { font-size: 0.8rem; } #footer #content hr { text-align: left; margin-left: 0; width: 15%; border: 1px solid; border-color: #999; background-color: #999; color: #999; } #footer hr { border-color: #FFFFFF; background-color: #FFFFFF; color: #FFFFFF; } #footer #copyright p { font-size: 0.8rem; } #footer #copyright a { color: #FFFFFF; font-weight: 500; text-decoration: none; cursor: default; } /*========== Mobile First Method ==========*/ /* Custom, iPhone Retina */ @media only screen and (min-width : 320px) {} /* Extra Small Devices, Phones */ @media only screen and (min-width : 480px) {} /* Small Devices, Tablets */ @media only screen and (min-width : 768px) {} /* Medium Devices, Desktops */ @media only screen and (min-width : 992px) {} /* Large Devices, Wide Screens */ @media only screen and (min-width : 1200px) {} /*========== Non-Mobile First Method ==========*/ /* Large Devices, Wide Screens */ @media only screen and (max-width : 1200px) {} /* Medium Devices, Desktops */ @media only screen and (max-width : 992px) {} /* Small Devices, Tablets */ @media only screen and (max-width : 768px) { #header a { display: flex; align-items: center; justify-content: center; } #header a#header-text { display: none; } marquee { display: none; } .wrapper::after { height: 100px; } #blank-zone { margin-top: 400px; } #footer { height: 150px; background-color: #333; position: absolute; color: #FFFFFF; min-height: 100px; padding-top: 30px; bottom: 0; width: 100%; text-align: center; } } /* Extra Small Devices, Phones */ @media only screen and (max-width : 480px) {} /* Custom, iPhone Retina */ @media only screen and (max-width : 320px) {}
0.347094
0.05375
body { padding: 0; margin: 0; letter-spacing: 1px; font-family: 'Open Sans', sans-serif; } body a { outline: none; transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; text-decoration: none; } body a:hover { text-decoration: none; } body a:focus, a:hover { text-decoration: none; } input[type="button"], input[type="submit"] { transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; letter-spacing: 1px; font-family: 'Open Sans', sans-serif; } select, input[type="email"], input[type="text"], input[type=password], input[type="button"], input[type="submit"], textarea { font-family: 'Open Sans', sans-serif; transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; letter-spacing: 1px; } h1, h6, h3, h4, h5, h6 { margin: 0; padding: 0; letter-spacing: 1px; } p { margin: 0; padding: 0; letter-spacing: 1px; font-size: 18px; color: #6f6b6b; line-height: 1.8em; font-family: 'Open Sans', sans-serif; } ul { margin: 0; padding: 0; list-style-type: none; } /*-- //Reset-Code --*/ #toTop { display: none; text-decoration: none; position: fixed; bottom: 20px; right: 2%; overflow: hidden; z-index: 999; width: 32px; height: 32px; border: none; text-indent: 100%; background: url(../images/arrow.png) no-repeat 0px 0px; } #toTopHover { width: 32px; height: 32px; display: block; overflow: hidden; float: right; opacity: 0; -moz-opacity: 0; filter: alpha(opacity=0); } .h3-head.text-center { margin-bottom: 20px; } h3.title-1 { font-size: 45px; color: #3fa46a; text-transform: uppercase; font-family: 'PT Serif', serif; } h3.title-2 { font-size: 45px; color: #3fa46a; text-transform: uppercase; font-family: 'PT Serif', serif; } /*-- nav --*/ .navbar-light .navbar-brand { color: #ffffff; font-size: 35px; } header { background-color: #727975; } span.brand-d { background-color: white; color: #3fa46a; margin: 5px; padding: 2px; } .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link { color: #000000; } .navbar-light .navbar-nav .nav-link { color: #fff; font-size: 14px; margin: 0px 5px; text-align: center; } /*-- //nav --*/ /*-- banner --*/ #slider2, #slider3 { box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; margin: 0 auto; } .rslides_tabs li:first-child { margin-left: 0; } .rslides_tabs .rslides_here a { background: rgba(255, 255, 255, .1); color: #fff; font-weight: bold; } .events { list-style: none; } .callbacks_container { position: relative; float: left; width: 100%; } .callbacks { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; margin: 0; } .callbacks li { position: absolute; width: 100%; } .callbacks img { position: relative; z-index: 1; height: auto; border: 0; } .callbacks .caption { display: block; position: absolute; z-index: 2; font-size: 20px; text-shadow: none; color: #fff; left: 0; right: 0; padding: 10px 20px; margin: 0; max-width: none; top: 10%; text-align: center; } .callbacks_nav { position: absolute; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); bottom: -35%; left: 0; z-index: 3; text-indent: -9999px; overflow: hidden; text-decoration: none; width: 32px; height: 32px; } .callbacks_nav:hover { opacity: 0.5; } .callbacks_nav.next { left: auto; left: 51%; } .callbacks_nav.prev { right: auto; background-position: left top; left: 46%; } #slider3-pager a { display: inline-block; } #slider3-pager span { float: left; } #slider3-pager span { width: 100px; height: 15px; background: #fff; display: inline-block; border-radius: 30em; opacity: 0.6; } #slider3-pager .rslides_here a { background: #FFF; border-radius: 30em; opacity: 1; } #slider3-pager a { padding: 0; } #slider3-pager li { display: inline-block; } p.banner-text-p { color: #fff; font-size: 20px; line-height: 1.8em; } .rslides { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; } .rslides li { -webkit-backface-visibility: hidden; position: absolute; display: none; width: 100%; left: 0; top: 0; } .rslides li { position: relative; display: block; float: left; } .rslides img { height: auto; border: 0; } .callbacks_tabs { list-style: none; position: absolute; bottom: 0; left: 0; padding: 0; margin: 0; z-index: 990; display: block; text-align: right; } .slider-top span { font-weight: 600; } .callbacks_tabs li { display: inline-block; } h3.banner-text-h3 { color: #efb14f; text-transform: uppercase; font-size: 45px; letter-spacing: .05em; } h3.banner-text-h { color: #efb14f; text-transform: uppercase; font-size: 34px; letter-spacing: .05em; } .rslides { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; margin: 0; } .rslides li { -webkit-backface-visibility: hidden; position: absolute; display: none; width: 100%; left: 0; top: 0; } .rslides li:first-child { position: relative; display: block; float: left; } .rslides img { display: block; float: left; width: 100%; height: 100%; border: 0; } ul.callbacks_tabs { position: absolute; z-index: 9; bottom: 380px; right: 50px; } ul.callbacks_tabs li { display: block; } .callbacks_tabs a { visibility: hidden; } .callbacks_tabs a:after { content: "\f111"; font-size: 0; visibility: visible; display: inline-block; height: 10px; width: 10px; background: #3fa46a; -webkit-transform: rotate(45deg); transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); } .callbacks_here a:after { background: #fff; height: 10px; width: 10px; } .layer { min-height: 750px; } .banner-bottom-content { position: absolute; right: 0; bottom: 0; } .banner-text1 { background: #000; padding: 2em 1em; width: 410px; margin-right: 5px; } .banner-text2 { background: #000; padding: 2em 1em; width: 410px; margin-right: 5px } .banner-text3 { background: #000; padding: 2em 1em; width: 410px; margin-right: 5px } .banner-text-top { position: relative; top: 250px; width: 80%; margin: 0 auto; } .banner-top { background: url(../images/b1.jpg) no-repeat 0px 0px; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; -moz-background-size: cover; min-height: 750px; background-position: 50% 50%; } .banner-top1 { background: url(../images/b2.jpg) no-repeat 0px 0px; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; -moz-background-size: cover; min-height: 750px; background-position: 50% 50%; } .banner-top2 { background: url(../images/b3.jpg) no-repeat 0px 0px; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; -moz-background-size: cover; min-height: 750px; background-position: 50% 50%; } /*-- //banner --*/ /*-- about --*/ .col-6.about-content { box-sizing: border-box; padding: 1em; } h6.about-text-h6h { color: #efb14f; font-size: 30px; margin: 20px 0; text-align: center; } p.about-text-p.text-center { color: #6f6b6b; font-size: 20px; line-height: 1.8em; } .about-img img { width: 100%; } /*-- //about --*/ /*-- clients--*/ .clients { background: url(../images/cbg.jpg) no-repeat 0px 0px; background-size: cover; text-align: center; background-attachment: fixed; padding: 1em 0; } .clients h4 { font-size: 20px; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 35px; } .flex-active-slide p { line-height: 30px; text-align: center; color: #fff; font-style: italic; width: 70%; margin: 30px auto; letter-spacing: 2px; font-size: 18px; } .client h5 { font-size: 25px; color: #efb14f; } i.fas.fa-quote-right { color: #efb14f; font-size: 30px; } /*-- //clients--*/ /*-- news --*/ button.btn.btn-primary.newsmodel1 { margin: 0; width: 100%; background-color: #efb14f; border: none; } button.btn.btn-primary.newsmodel2 { margin: 0; width: 100%; background-color: #efb14f; border: none; } button.btn.btn-primary.newsmodel3 { margin: 0; width: 100%; background-color: #efb14f; border: none; } button.btn.btn-primary.newsmodel4 { margin: 0; width: 100%; background-color: #efb14f; border: none; } h6.news-mcontent-h6 { font-size: 20px; color: red; margin: 10px 0; } .media.response-info { padding: 2em 1.1em 1em; border: 1px solid #e4e4e4; } .media-left.response-text-left a img { width: 100%; } .media-left.response-text-left { width: 43%; } .response.section { padding: 5em 0; } .media-body.response-text-right { float: right; width: 55%; padding: 0 1em; } .media-body.response-text-right ul { margin-top: 10px; } .media-body.response-text-right ul li { list-style: none; display: inline-block; color: #000; font-size: 0.9em; letter-spacing: 1px; margin-bottom: 1em; } .media-body.response-text-right ul li:nth-child(2), .media-body.response-text-right ul li:nth-child(3), .media-body.response-text-right ul li:nth-child(4) { margin-left: 1em; } a.view-btn { margin: 1em 0; display: inline-block; background: #357f2a; padding: 0.5em 1em; color: #fff; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; } a.view-btn:hover { background: #000; color: #357f2a; } /* //news */ /*-- gallery --*/ div#gallery { background: #fff; } .gallery_grids { margin-top: 3.2em; } .gallery_grid1 { margin: 3em 0 0; } .column .gallery_effect { position: relative; } .gallery-img-grid.hover14 { padding: 1em 0; } a.sb { display: block; } .hover14 figure { overflow: hidden; position: relative; } .hover14 figure::before { position: absolute; top: 0; left: -75%; z-index: 2; display: block; content: ''; width: 50%; height: 100%; background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); -webkit-transform: skewX(-17deg); -moz-transform: skewX(-17deg); -o-transform: skewX(-17deg); -ms-transform: skewX(-17deg); transform: skewX(-17deg); } .hover14 figure:hover::before { -webkit-animation: shine .95s; -moz-animation: shine .95s; animation: shine .95s; } @-webkit-keyframes shine { 100% { left: 125%; } } @keyframes shine { 100% { left: 125%; } } /*-- //gallery --*/ /*-- video section --*/ .video-w3l { background: rgba(0, 0, 0, 0.28); min-height: 475px; text-align: center; padding: 5em; } .video-w3l h2 { color: #fff; font-size: 45px; letter-spacing: 2px; text-align: center; width: 70%; line-height: 1.5; margin: 0 auto; padding-top: 60px; text-shadow: 6px 4px 2px rgba(10, 10, 10, 0.78); } .video-w3l i { color: #fff; font-size: 50px; text-align: center; margin-top: 60px; } /*-- //video section --*/ /*-- team --*/ .w3-team { background-color: #efb14f; } .w3-team-head h3 { color: #fff; } .w3layouts_team_grid { overflow: hidden; position: relative; } .w3layouts_team_grid_pos { opacity: 0; position: absolute; top: 0; left: 0; bottom: 0; background: rgba(246, 204, 76, 0.66); right: 0; -webkit-transition: all 400ms ease; -moz-transition: all 400ms ease; transition: all 400ms ease; background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(244, 67, 54, 1) 100%); background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(244, 67, 54, 1) 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.44) 100%); } .w3layouts_team_grid_pos { -webkit-transform: scale3d(0, 0, 1); -moz-transform: scale3d(0, 0, 1); -ms-transform: scale3d(0, 0, 1); transform: scale3d(0, 0, 1); } .w3_agile_team_grid:hover .w3layouts_team_grid_pos, .w3layouts_gallery_grid:hover .w3layouts_team_grid_pos, .w3_agile_class_grid:hover .w3layouts_team_grid_pos { opacity: 1; -webkit-transform: scale3d(1, 1, 1); -moz-transform: scale3d(1, 1, 1); -ms-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } .w3_agile_team_grid:hover .wthree_text, .w3layouts_gallery_grid:hover .wthree_text, .w3_agile_class_grid:hover .wthree_text { opacity: 1; -webkit-transform: translateY(0) scale3d(1, 1, 1); -moz-transform: translateY(0) scale3d(1, 1, 1); -ms-transform: translateY(0) scale3d(1, 1, 1); transform: translateY(0) scale3d(1, 1, 1); -webkit-transition: transform 400ms ease 380ms; -moz-transition: transform 400ms ease 380ms; transition: transform 400ms ease 380ms; } .wthree_text { text-align: center; position: absolute; width: 100%; top: 50%; opacity: 0; -webkit-transform: translateY(0) scale3d(0, 0, 1); -moz-transform: translateY(0) scale3d(0, 0, 1); -ms-transform: translateY(0) scale3d(0, 0, 1); transform: translateY(0) scale3d(0, 0, 1); -webkit-transition: transform 400ms ease 280ms; -moz-transition: transform 400ms ease 280ms; transition: transform 400ms ease 280ms; } .agileits_social_list li { display: inline-block; } .agileits_social_list li:nth-child(2) { margin: 0 1.5em; } .agileits_social_list li a { color: #fff; text-align: center; display: inline-block; font-size: 1em; width: 35px; height: 35px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); -ms-transform: rotate(-45deg); } .agileits_social_list li a i { transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); -ms-transform: rotate(45deg); line-height: 2.5em; } .agileits_social_list li a:hover { background: #fff; } a.w3_agile_facebook, .w3_facebook { background: #3b5998; } a.w3_agile_facebook:hover { color: #3b5998; } a.agile_twitter, .w3ls_twitter { background: #1da1f2; } a.w3_agile_dribble, .w3l_dribbble { background: #ea4c89; } a.w3_agile_vimeo { background: #1ab7ea; } a.agile_twitter:hover { color: #1da1f2; } a.w3_agile_dribble:hover { color: #ea4c89; } a.w3_agile_vimeo:hover { color: #1ab7ea; } .agile_social_icons_banner { float: right; margin: 1.6em 2em 0 0; } button.btn.btn-primary1 { width: 20%; margin-left: 70%; background-color: #3fa46a; border-color: #3fa46a; color: #fff; } .btn-primary1:hover { color: #fff; background-color: #3fa46a; border-color: #3fa46a; } .btn.focus, .btn:focus { outline: 0; box-shadow: 0 0 0 0; } .w3_agile_team_grid h4 { font-size: 1.5em; color: #000; margin: 1.5em 0 .2em; text-transform: capitalize; } .w3_agile_team_grid p { color: #fff; text-transform: capitalize; } /*-- //team --*/ /*-- blog --*/ h6.text-h6h { color: #efb14f; font-size: 30px; } .modal-title { color: #efb14f; padding: 0px 15px; font-size: 22px; } /*-- model --*/ button.btn.btn-primary.user-color { margin: 0; width: 120px; } .model-image img { width: 100%; } .model-content { padding: 0 15px; letter-spacing: 1px; margin: 20px 0; } h5.model-content-h5 { font-size: 25px; color: red; margin: 15px 0; } .blog-img img { width: 100%; } /*-- //model --*/ /*-- //blog --*/ /*-- mail --*/ .contact { padding: 5em 0 0; } .mail-contact { background-color: black; } .agileits_w3layouts_socila_mail { margin: 55px 0; } .agileits_mail_grid_left ul li { list-style-type: none; color: #fff; margin-bottom: 1em; letter-spacing: 1px; font-size: 15px; } .agileits_mail_grid_left ul li label { color: #212121; width: 43px; height: 30px; vertical-align: middle; text-align: center; margin-right: 1em; } .agileits_mail_grid_left ul li label i { line-height: 38px; color: #fff; font-size: 18px; background: #2d2d2d; width: 38px; height: 38px; } .agileits_mail_grid_left ul li a { color: #fff; text-decoration: none; } .agileits_mail_grid_left ul li a:hover { color: #212121; } .w3layouts_mail_grid_left h3, .wthree_mail_pos h3 { font-size: 1.4em; color: #fff; text-transform: uppercase; padding-bottom: .5em; position: relative; letter-spacing: 2px; margin-bottom: 1em; } .agileits_w3layouts_socila_mail ul li { width: 40%; display: inline-block; float: left; margin-right: 1%; } .agileits_w3layouts_socila_mail ul { width: 100%; } .agileits_w3layouts_socila_mail i.fa { width: 16%; } .agileits_w3layouts_socila_mail ul li a { padding: .7em 0; display: block; font-size: 15px; letter-spacing: 1px; color: #fff; padding-left: 30px; margin-bottom: 4px; text-transform: capitalize; font-family: 'Montserrat', sans-serif; } .agileits_w3layouts_socila_mail ul li a:hover { opacity: 0.7; } .agileits_pinterest { background: #bd081c; } .w3_facebook { background: #3b5998; } .w3l_google-plus { background: #dd4b39; } .agileits_linkedin { background: #0077b5; } .w3ls_twitter { background: #1da1f2; } .w3ls_vimeo { background: #162221; } .w3ls_pinterest { background: #bd081c; } .w3_agileits_map iframe { width: 100%; min-height: 400px; margin-bottom: -6px; border: none; margin-top: 2em; } .w3_agileits_map { position: relative; } .wthree_mail_pos h3:after { background: #212121; } .wthree_mail_pos input[type="text"], .wthree_mail_pos input[type="email"], .wthree_mail_pos textarea { outline: none; padding: 12px 0; background: none; color: #fff; font-size: 15px; width: 100%; border: none; border-bottom: 1px solid #ffffff; } .wthree_mail_pos input[type="text"]::-webkit-input-placeholder, .wthree_mail_pos textarea::-webkit-input-placeholder, .wthree_mail_pos input[type="email"]::-webkit-input-placeholder { color: #666 !important; } .wthree_mail_pos input[type="email"] { margin: 1em 0; } .wthree_mail_pos textarea { min-height: 125px; resize: none; margin-top: 1em; } .wthree_mail_pos input[type="submit"] { outline: none; padding: 10px 0; background-color: #3fa46a; width: 25%; border: none; border-radius: 5px; color: #fff; cursor: pointer; } .wthree_mail_pos input[type="submit"]:hover { background-color: #ffffff; color: #3fa46a; } .w3_agileits_contact_right { margin-top: 15px; } button.btn.btn-primaryuser { color: white; background-color: #007bff; } .w3_agile_copyright { padding: 3em 0; background: #212121; } .w3_agile_copyright p { color: #fff; line-height: 2em; text-align: center; } .w3_agile_copyright p a { color: #fddd22; text-decoration: underline; } .w3_agile_copyright p a:hover { color: #fff; } /*-- //mail --*/ /*-- map --*/ .map-main { padding: 0; } iframe { width: 100%; padding: 0; margin: 0; border: none; height: 350px; } /*-- //map --*/ /*--footer--*/ p.copyright-agileinfo { font-size: 15px; letter-spacing: 2px; color: #fff; font-weight: 300; } footer p a { display: inline-block; color: #fff; text-decoration: underline; } footer p a:hover { color: #fff; text-decoration: none; -webkit-transition: 0.5s all; -o-transition: 0.5s all; -moz-transition: 0.5s all; -ms-transition: 0.5s all; transition: 0.5s all; } footer { padding: 2em 0; text-align: center; background-color: rgba(6, 6, 6, 0.6); } /*--//footer--*/ /*-- /responsive design --*/ @media(max-width:1080px) { .w3layouts_team_grid img { width: 100%; } .banner-text-top { width: 83%; } .banner-text1,.banner-text2 { width: 380px; } h3.banner-text-h { font-size: 26px; } ul.callbacks_tabs { bottom: 380px; right: 30px; } .media-body.response-text-right { float: right; width: 55%; padding: 8px; } p.text-right-p { font-size: 15px; } .agileits_social_list li a { width: 33px; height: 36px; } p { font-size: 15px; } } @media(max-width:1024px) { p.banner-text-p { font-size: 18px; } h6.about-text-h6h { font-size: 25px; margin: 12px 0; } .video-w3l { min-height: 355px; padding: 4em; } } @media(max-width:991px) { .navbar-light .navbar-toggler { color: rgb(0, 0, 0); border-color: rgba(255, 255, 255, 0.1); background-color: white; } .dropdown-item { text-align: center; } p.about-text-p.text-center { font-size: 15px; } .banner-top,.banner-top1,.banner-top2,.layer{ min-height: 620px; } ul.callbacks_tabs.callbacks1_tabs { bottom: 285px; } .banner-text1,.banner-text2{ width: 360px; } .flex-active-slide p { font-size: 17px; } .w3_agile_team_grid { margin: 15px 0px; } .media-body.response-text-right ul li { font-size: 10px; } p { font-size: 15px; } .agileits_mail_grid_left ul li label { margin-right: 4px; } .agileits_mail_grid_left ul li { font-size: 12px; } .agileits_w3layouts_socila_mail ul li { width: 45%; } .agileits_w3layouts_socila_mail ul li a { padding-left: 20px; } } @media(max-width:800px) { .banner-text-top { width: 92%; } p.banner-text-p { font-size: 16px; } h3.banner-text-h3 { font-size: 40px; } .banner-text1,.banner-text2{ width: 305px; } ul.callbacks_tabs.callbacks1_tabs { bottom: 185px; } h3.banner-text-h { font-size: 24px; } .clients h4 { margin-bottom: 20px; } .video-w3l h2 { font-size: 40px; } } @media(max-width:768px) { .banner-top, .banner-top1, .banner-top2, .layer { min-height: 485px; } .banner-text-top { top: 150px; } ul.callbacks_tabs.callbacks1_tabs { bottom: 140px; } p.banner-text-p { font-size: 15px; } h3.banner-text-h3 { font-size: 35px; } } @media(max-width:736px) { ul.callbacks_tabs { bottom: 100px; left: 91%; } .banner-text-top { top: 160px; } .banner-text1, .banner-text2 { width: 295px; } h3.banner-text-h { font-size: 23px; } .flex-active-slide p { font-size: 18px; } .gallery_grids { margin-top: 0em; } .gallery-img-grid.gallery_grid1.hover14.column { margin: 0; } .gallery-img-grid.hover14 { padding: 0em 0; } figure { margin: 0 0 1rem; text-align: center; } .video-w3l h5 { font-size: 34px; } .blog-img { margin-bottom: 15px; } .blog-content { margin-bottom: 50px; } .agileits_mail_grid_left ul li label { margin-right: 10px; } .w3layouts_mail_grid_left h3, .wthree_mail_pos h3 { font-size: 1.5em; } .agileits_mail_grid_left ul li label i { font-size: 20px; } .agileits_w3layouts_socila_mail ul li { width: 40%; } .agileits_w3layouts_socila_mail ul li a { padding-left: 45px; } .w3layouts_mail_grid_left { margin-bottom: 4em; } } @media(max-width:667px) { .banner-top, .banner-top1, .banner-top2, .layer { min-height: 500px; } .banner-text-top { top: 175px; } h3.banner-text-h3 { font-size: 33px; } h3.banner-text-h { font-size: 20px; } .banner-text1, .banner-text2 { width: 260px; } .video-w3l h5 { font-size: 30px; } } @media(max-width:640px) { h3.title-1 { font-size: 43px; } p.banner-text-h { font-size: 22px; } .video-w3l h5 { font-size: 28px; } .about-img { margin: 0 0 20px 0; } } @media(max-width:600px) { .banner-top, .banner-top1, .banner-top2, .layer { min-height: 480px; } .banner-text1, .banner-text2 { width: 250px; } h3.banner-text-h { font-size: 19px; } .gallery_grid1 { margin: 0em 0 0; } .video-w3l h2 { padding-top:0px; } .blog-content { margin-bottom: 20px; } .about-img img { width: 70%; margin: 0 15%; } .banner-text-top { top: 150px; } } @media(max-width:568px) { .banner-text-top { top: 140px; } .video-w3l h2 { font-size: 35px; } .wthree_text { width: 100%; } p.copyright-agileinfo { font-size: 14px; } .w3layouts_team_grid { width: 60%; margin: 0 auto; } .w3_agile_team_grid { text-align: center; } } @media(max-width:480px) { .navbar-light .navbar-brand { font-size: 30px; } .banner-top, .banner-top1, .banner-top2, .layer { min-height: 417px; } h3.banner-text-h3 { font-size: 30px; } .banner-text-top { top: 85px; } .banner-text1, .banner-text2 { width: 220px; } h3.banner-text-h { font-size: 16px; } .media-left.response-text-left { width: 100%; } .media-body.response-text-right { width: 100%; padding: 0; margin: 10px 0 0 0; } .media { display: grid; } h3.title-1,.title-2 { font-size: 35px; } .video-w3l h2 { font-size: 30px; } } @media(max-width:414px) { .banner-text1, .banner-text2 { width: 185px; } h3.banner-text-h { font-size: 13px; } h6.about-text-h6h { font-size: 23px; } .flex-active-slide p { font-size: 16px; margin: 10px auto; } h3.title-2 { font-size: 37px; } .agileits_w3layouts_socila_mail ul li a { padding-left: 20px; } .wthree_mail_pos input[type="submit"] { padding: 8px 0; } .video-w3l h2 { font-size: 23px; } .sb-caption { bottom: 0; } } @media(max-width:384px) { .navbar-light .navbar-brand { font-size: 28px; } .banner-text1,.banner-text2 { width: 175px; } h3.banner-text-h3 { font-size: 29px; } h3.title-1, .title-2 { font-size: 35px; } h3.banner-text-h { font-size: 12px; } h6.about-text-h6h { font-size: 21px; } .flex-active-slide p { font-size: 16px; } .video-w3l h2 { font-size: 20px; } .video-w3l i { font-size: 45px; } .agileits_w3layouts_socila_mail ul li { width: 43%; } .media-body.response-text-right ul li { font-size: 10px; } .agileits_mail_grid_left ul li { font-size: 13px; } .w3layouts_mail_grid_left h3, .wthree_mail_pos h3 { font-size: 22px; } ul.callbacks_tabs { left: 88%; } } @media(max-width:375px) { h6.about-text-h6h { font-size: 21px; } h3.title-1,.mtitle-1 { font-size: 36px; } .banner-top, .banner-top1, .banner-top2, .layer { min-height: 390px; } .banner-text-top { top: 55px; } h3.banner-text-h3 { font-size: 19px; } .video-w3l h2 { font-size: 19px; } .agileits_mail_grid_left ul li label i { font-size: 17px; } .agileits_mail_grid_left ul li label { margin-right: 3px; } .agileits_w3layouts_socila_mail ul li { width: 45%; } } @media(max-width:320px) { .navbar-light .navbar-brand { font-size: 22px; } .banner-top, .banner-top1, .banner-top2, .layer { min-height: 370px; } h3.banner-text-h3 { font-size: 24px; } .banner-text-top { top: 50px; } p.banner-text-p { font-size: 13px; } .banner-text1, .banner-text2 { width: 145px; } h3.banner-text-h { font-size: 10px; } h6.about-text-h6h { font-size: 17px; } p.about-text-p.text-center { font-size: 13px; } h3.title-1 { font-size: 30px; } h3.title-2 { font-size: 30px; } .clients h4 { font-size: 17px; } .flex-active-slide p { line-height: 25px; width: 94%; font-size: 14px; } .media-body.response-text-right ul li { font-size: 8px; } .video-w3l { padding: 5em 5px; } .agileits_social_list li a { font-size: 14px; width: 31px; height: 33px; } button.btn.btn-primary { width: 24%; margin-left: 65%; } .agileits_mail_grid_left ul li { font-size: 10px; } .agileits_w3layouts_socila_mail ul li a { font-size: 13px; padding-left: 14px; } p.copyright-agileinfo { font-size: 13px; } } /*-- /responsive design --*/
css/style.css
body { padding: 0; margin: 0; letter-spacing: 1px; font-family: 'Open Sans', sans-serif; } body a { outline: none; transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; text-decoration: none; } body a:hover { text-decoration: none; } body a:focus, a:hover { text-decoration: none; } input[type="button"], input[type="submit"] { transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; letter-spacing: 1px; font-family: 'Open Sans', sans-serif; } select, input[type="email"], input[type="text"], input[type=password], input[type="button"], input[type="submit"], textarea { font-family: 'Open Sans', sans-serif; transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; letter-spacing: 1px; } h1, h6, h3, h4, h5, h6 { margin: 0; padding: 0; letter-spacing: 1px; } p { margin: 0; padding: 0; letter-spacing: 1px; font-size: 18px; color: #6f6b6b; line-height: 1.8em; font-family: 'Open Sans', sans-serif; } ul { margin: 0; padding: 0; list-style-type: none; } /*-- //Reset-Code --*/ #toTop { display: none; text-decoration: none; position: fixed; bottom: 20px; right: 2%; overflow: hidden; z-index: 999; width: 32px; height: 32px; border: none; text-indent: 100%; background: url(../images/arrow.png) no-repeat 0px 0px; } #toTopHover { width: 32px; height: 32px; display: block; overflow: hidden; float: right; opacity: 0; -moz-opacity: 0; filter: alpha(opacity=0); } .h3-head.text-center { margin-bottom: 20px; } h3.title-1 { font-size: 45px; color: #3fa46a; text-transform: uppercase; font-family: 'PT Serif', serif; } h3.title-2 { font-size: 45px; color: #3fa46a; text-transform: uppercase; font-family: 'PT Serif', serif; } /*-- nav --*/ .navbar-light .navbar-brand { color: #ffffff; font-size: 35px; } header { background-color: #727975; } span.brand-d { background-color: white; color: #3fa46a; margin: 5px; padding: 2px; } .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link { color: #000000; } .navbar-light .navbar-nav .nav-link { color: #fff; font-size: 14px; margin: 0px 5px; text-align: center; } /*-- //nav --*/ /*-- banner --*/ #slider2, #slider3 { box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; margin: 0 auto; } .rslides_tabs li:first-child { margin-left: 0; } .rslides_tabs .rslides_here a { background: rgba(255, 255, 255, .1); color: #fff; font-weight: bold; } .events { list-style: none; } .callbacks_container { position: relative; float: left; width: 100%; } .callbacks { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; margin: 0; } .callbacks li { position: absolute; width: 100%; } .callbacks img { position: relative; z-index: 1; height: auto; border: 0; } .callbacks .caption { display: block; position: absolute; z-index: 2; font-size: 20px; text-shadow: none; color: #fff; left: 0; right: 0; padding: 10px 20px; margin: 0; max-width: none; top: 10%; text-align: center; } .callbacks_nav { position: absolute; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); bottom: -35%; left: 0; z-index: 3; text-indent: -9999px; overflow: hidden; text-decoration: none; width: 32px; height: 32px; } .callbacks_nav:hover { opacity: 0.5; } .callbacks_nav.next { left: auto; left: 51%; } .callbacks_nav.prev { right: auto; background-position: left top; left: 46%; } #slider3-pager a { display: inline-block; } #slider3-pager span { float: left; } #slider3-pager span { width: 100px; height: 15px; background: #fff; display: inline-block; border-radius: 30em; opacity: 0.6; } #slider3-pager .rslides_here a { background: #FFF; border-radius: 30em; opacity: 1; } #slider3-pager a { padding: 0; } #slider3-pager li { display: inline-block; } p.banner-text-p { color: #fff; font-size: 20px; line-height: 1.8em; } .rslides { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; } .rslides li { -webkit-backface-visibility: hidden; position: absolute; display: none; width: 100%; left: 0; top: 0; } .rslides li { position: relative; display: block; float: left; } .rslides img { height: auto; border: 0; } .callbacks_tabs { list-style: none; position: absolute; bottom: 0; left: 0; padding: 0; margin: 0; z-index: 990; display: block; text-align: right; } .slider-top span { font-weight: 600; } .callbacks_tabs li { display: inline-block; } h3.banner-text-h3 { color: #efb14f; text-transform: uppercase; font-size: 45px; letter-spacing: .05em; } h3.banner-text-h { color: #efb14f; text-transform: uppercase; font-size: 34px; letter-spacing: .05em; } .rslides { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; margin: 0; } .rslides li { -webkit-backface-visibility: hidden; position: absolute; display: none; width: 100%; left: 0; top: 0; } .rslides li:first-child { position: relative; display: block; float: left; } .rslides img { display: block; float: left; width: 100%; height: 100%; border: 0; } ul.callbacks_tabs { position: absolute; z-index: 9; bottom: 380px; right: 50px; } ul.callbacks_tabs li { display: block; } .callbacks_tabs a { visibility: hidden; } .callbacks_tabs a:after { content: "\f111"; font-size: 0; visibility: visible; display: inline-block; height: 10px; width: 10px; background: #3fa46a; -webkit-transform: rotate(45deg); transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); } .callbacks_here a:after { background: #fff; height: 10px; width: 10px; } .layer { min-height: 750px; } .banner-bottom-content { position: absolute; right: 0; bottom: 0; } .banner-text1 { background: #000; padding: 2em 1em; width: 410px; margin-right: 5px; } .banner-text2 { background: #000; padding: 2em 1em; width: 410px; margin-right: 5px } .banner-text3 { background: #000; padding: 2em 1em; width: 410px; margin-right: 5px } .banner-text-top { position: relative; top: 250px; width: 80%; margin: 0 auto; } .banner-top { background: url(../images/b1.jpg) no-repeat 0px 0px; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; -moz-background-size: cover; min-height: 750px; background-position: 50% 50%; } .banner-top1 { background: url(../images/b2.jpg) no-repeat 0px 0px; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; -moz-background-size: cover; min-height: 750px; background-position: 50% 50%; } .banner-top2 { background: url(../images/b3.jpg) no-repeat 0px 0px; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; -moz-background-size: cover; min-height: 750px; background-position: 50% 50%; } /*-- //banner --*/ /*-- about --*/ .col-6.about-content { box-sizing: border-box; padding: 1em; } h6.about-text-h6h { color: #efb14f; font-size: 30px; margin: 20px 0; text-align: center; } p.about-text-p.text-center { color: #6f6b6b; font-size: 20px; line-height: 1.8em; } .about-img img { width: 100%; } /*-- //about --*/ /*-- clients--*/ .clients { background: url(../images/cbg.jpg) no-repeat 0px 0px; background-size: cover; text-align: center; background-attachment: fixed; padding: 1em 0; } .clients h4 { font-size: 20px; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 35px; } .flex-active-slide p { line-height: 30px; text-align: center; color: #fff; font-style: italic; width: 70%; margin: 30px auto; letter-spacing: 2px; font-size: 18px; } .client h5 { font-size: 25px; color: #efb14f; } i.fas.fa-quote-right { color: #efb14f; font-size: 30px; } /*-- //clients--*/ /*-- news --*/ button.btn.btn-primary.newsmodel1 { margin: 0; width: 100%; background-color: #efb14f; border: none; } button.btn.btn-primary.newsmodel2 { margin: 0; width: 100%; background-color: #efb14f; border: none; } button.btn.btn-primary.newsmodel3 { margin: 0; width: 100%; background-color: #efb14f; border: none; } button.btn.btn-primary.newsmodel4 { margin: 0; width: 100%; background-color: #efb14f; border: none; } h6.news-mcontent-h6 { font-size: 20px; color: red; margin: 10px 0; } .media.response-info { padding: 2em 1.1em 1em; border: 1px solid #e4e4e4; } .media-left.response-text-left a img { width: 100%; } .media-left.response-text-left { width: 43%; } .response.section { padding: 5em 0; } .media-body.response-text-right { float: right; width: 55%; padding: 0 1em; } .media-body.response-text-right ul { margin-top: 10px; } .media-body.response-text-right ul li { list-style: none; display: inline-block; color: #000; font-size: 0.9em; letter-spacing: 1px; margin-bottom: 1em; } .media-body.response-text-right ul li:nth-child(2), .media-body.response-text-right ul li:nth-child(3), .media-body.response-text-right ul li:nth-child(4) { margin-left: 1em; } a.view-btn { margin: 1em 0; display: inline-block; background: #357f2a; padding: 0.5em 1em; color: #fff; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; } a.view-btn:hover { background: #000; color: #357f2a; } /* //news */ /*-- gallery --*/ div#gallery { background: #fff; } .gallery_grids { margin-top: 3.2em; } .gallery_grid1 { margin: 3em 0 0; } .column .gallery_effect { position: relative; } .gallery-img-grid.hover14 { padding: 1em 0; } a.sb { display: block; } .hover14 figure { overflow: hidden; position: relative; } .hover14 figure::before { position: absolute; top: 0; left: -75%; z-index: 2; display: block; content: ''; width: 50%; height: 100%; background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); -webkit-transform: skewX(-17deg); -moz-transform: skewX(-17deg); -o-transform: skewX(-17deg); -ms-transform: skewX(-17deg); transform: skewX(-17deg); } .hover14 figure:hover::before { -webkit-animation: shine .95s; -moz-animation: shine .95s; animation: shine .95s; } @-webkit-keyframes shine { 100% { left: 125%; } } @keyframes shine { 100% { left: 125%; } } /*-- //gallery --*/ /*-- video section --*/ .video-w3l { background: rgba(0, 0, 0, 0.28); min-height: 475px; text-align: center; padding: 5em; } .video-w3l h2 { color: #fff; font-size: 45px; letter-spacing: 2px; text-align: center; width: 70%; line-height: 1.5; margin: 0 auto; padding-top: 60px; text-shadow: 6px 4px 2px rgba(10, 10, 10, 0.78); } .video-w3l i { color: #fff; font-size: 50px; text-align: center; margin-top: 60px; } /*-- //video section --*/ /*-- team --*/ .w3-team { background-color: #efb14f; } .w3-team-head h3 { color: #fff; } .w3layouts_team_grid { overflow: hidden; position: relative; } .w3layouts_team_grid_pos { opacity: 0; position: absolute; top: 0; left: 0; bottom: 0; background: rgba(246, 204, 76, 0.66); right: 0; -webkit-transition: all 400ms ease; -moz-transition: all 400ms ease; transition: all 400ms ease; background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(244, 67, 54, 1) 100%); background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(244, 67, 54, 1) 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.44) 100%); } .w3layouts_team_grid_pos { -webkit-transform: scale3d(0, 0, 1); -moz-transform: scale3d(0, 0, 1); -ms-transform: scale3d(0, 0, 1); transform: scale3d(0, 0, 1); } .w3_agile_team_grid:hover .w3layouts_team_grid_pos, .w3layouts_gallery_grid:hover .w3layouts_team_grid_pos, .w3_agile_class_grid:hover .w3layouts_team_grid_pos { opacity: 1; -webkit-transform: scale3d(1, 1, 1); -moz-transform: scale3d(1, 1, 1); -ms-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); } .w3_agile_team_grid:hover .wthree_text, .w3layouts_gallery_grid:hover .wthree_text, .w3_agile_class_grid:hover .wthree_text { opacity: 1; -webkit-transform: translateY(0) scale3d(1, 1, 1); -moz-transform: translateY(0) scale3d(1, 1, 1); -ms-transform: translateY(0) scale3d(1, 1, 1); transform: translateY(0) scale3d(1, 1, 1); -webkit-transition: transform 400ms ease 380ms; -moz-transition: transform 400ms ease 380ms; transition: transform 400ms ease 380ms; } .wthree_text { text-align: center; position: absolute; width: 100%; top: 50%; opacity: 0; -webkit-transform: translateY(0) scale3d(0, 0, 1); -moz-transform: translateY(0) scale3d(0, 0, 1); -ms-transform: translateY(0) scale3d(0, 0, 1); transform: translateY(0) scale3d(0, 0, 1); -webkit-transition: transform 400ms ease 280ms; -moz-transition: transform 400ms ease 280ms; transition: transform 400ms ease 280ms; } .agileits_social_list li { display: inline-block; } .agileits_social_list li:nth-child(2) { margin: 0 1.5em; } .agileits_social_list li a { color: #fff; text-align: center; display: inline-block; font-size: 1em; width: 35px; height: 35px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); -ms-transform: rotate(-45deg); } .agileits_social_list li a i { transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); -ms-transform: rotate(45deg); line-height: 2.5em; } .agileits_social_list li a:hover { background: #fff; } a.w3_agile_facebook, .w3_facebook { background: #3b5998; } a.w3_agile_facebook:hover { color: #3b5998; } a.agile_twitter, .w3ls_twitter { background: #1da1f2; } a.w3_agile_dribble, .w3l_dribbble { background: #ea4c89; } a.w3_agile_vimeo { background: #1ab7ea; } a.agile_twitter:hover { color: #1da1f2; } a.w3_agile_dribble:hover { color: #ea4c89; } a.w3_agile_vimeo:hover { color: #1ab7ea; } .agile_social_icons_banner { float: right; margin: 1.6em 2em 0 0; } button.btn.btn-primary1 { width: 20%; margin-left: 70%; background-color: #3fa46a; border-color: #3fa46a; color: #fff; } .btn-primary1:hover { color: #fff; background-color: #3fa46a; border-color: #3fa46a; } .btn.focus, .btn:focus { outline: 0; box-shadow: 0 0 0 0; } .w3_agile_team_grid h4 { font-size: 1.5em; color: #000; margin: 1.5em 0 .2em; text-transform: capitalize; } .w3_agile_team_grid p { color: #fff; text-transform: capitalize; } /*-- //team --*/ /*-- blog --*/ h6.text-h6h { color: #efb14f; font-size: 30px; } .modal-title { color: #efb14f; padding: 0px 15px; font-size: 22px; } /*-- model --*/ button.btn.btn-primary.user-color { margin: 0; width: 120px; } .model-image img { width: 100%; } .model-content { padding: 0 15px; letter-spacing: 1px; margin: 20px 0; } h5.model-content-h5 { font-size: 25px; color: red; margin: 15px 0; } .blog-img img { width: 100%; } /*-- //model --*/ /*-- //blog --*/ /*-- mail --*/ .contact { padding: 5em 0 0; } .mail-contact { background-color: black; } .agileits_w3layouts_socila_mail { margin: 55px 0; } .agileits_mail_grid_left ul li { list-style-type: none; color: #fff; margin-bottom: 1em; letter-spacing: 1px; font-size: 15px; } .agileits_mail_grid_left ul li label { color: #212121; width: 43px; height: 30px; vertical-align: middle; text-align: center; margin-right: 1em; } .agileits_mail_grid_left ul li label i { line-height: 38px; color: #fff; font-size: 18px; background: #2d2d2d; width: 38px; height: 38px; } .agileits_mail_grid_left ul li a { color: #fff; text-decoration: none; } .agileits_mail_grid_left ul li a:hover { color: #212121; } .w3layouts_mail_grid_left h3, .wthree_mail_pos h3 { font-size: 1.4em; color: #fff; text-transform: uppercase; padding-bottom: .5em; position: relative; letter-spacing: 2px; margin-bottom: 1em; } .agileits_w3layouts_socila_mail ul li { width: 40%; display: inline-block; float: left; margin-right: 1%; } .agileits_w3layouts_socila_mail ul { width: 100%; } .agileits_w3layouts_socila_mail i.fa { width: 16%; } .agileits_w3layouts_socila_mail ul li a { padding: .7em 0; display: block; font-size: 15px; letter-spacing: 1px; color: #fff; padding-left: 30px; margin-bottom: 4px; text-transform: capitalize; font-family: 'Montserrat', sans-serif; } .agileits_w3layouts_socila_mail ul li a:hover { opacity: 0.7; } .agileits_pinterest { background: #bd081c; } .w3_facebook { background: #3b5998; } .w3l_google-plus { background: #dd4b39; } .agileits_linkedin { background: #0077b5; } .w3ls_twitter { background: #1da1f2; } .w3ls_vimeo { background: #162221; } .w3ls_pinterest { background: #bd081c; } .w3_agileits_map iframe { width: 100%; min-height: 400px; margin-bottom: -6px; border: none; margin-top: 2em; } .w3_agileits_map { position: relative; } .wthree_mail_pos h3:after { background: #212121; } .wthree_mail_pos input[type="text"], .wthree_mail_pos input[type="email"], .wthree_mail_pos textarea { outline: none; padding: 12px 0; background: none; color: #fff; font-size: 15px; width: 100%; border: none; border-bottom: 1px solid #ffffff; } .wthree_mail_pos input[type="text"]::-webkit-input-placeholder, .wthree_mail_pos textarea::-webkit-input-placeholder, .wthree_mail_pos input[type="email"]::-webkit-input-placeholder { color: #666 !important; } .wthree_mail_pos input[type="email"] { margin: 1em 0; } .wthree_mail_pos textarea { min-height: 125px; resize: none; margin-top: 1em; } .wthree_mail_pos input[type="submit"] { outline: none; padding: 10px 0; background-color: #3fa46a; width: 25%; border: none; border-radius: 5px; color: #fff; cursor: pointer; } .wthree_mail_pos input[type="submit"]:hover { background-color: #ffffff; color: #3fa46a; } .w3_agileits_contact_right { margin-top: 15px; } button.btn.btn-primaryuser { color: white; background-color: #007bff; } .w3_agile_copyright { padding: 3em 0; background: #212121; } .w3_agile_copyright p { color: #fff; line-height: 2em; text-align: center; } .w3_agile_copyright p a { color: #fddd22; text-decoration: underline; } .w3_agile_copyright p a:hover { color: #fff; } /*-- //mail --*/ /*-- map --*/ .map-main { padding: 0; } iframe { width: 100%; padding: 0; margin: 0; border: none; height: 350px; } /*-- //map --*/ /*--footer--*/ p.copyright-agileinfo { font-size: 15px; letter-spacing: 2px; color: #fff; font-weight: 300; } footer p a { display: inline-block; color: #fff; text-decoration: underline; } footer p a:hover { color: #fff; text-decoration: none; -webkit-transition: 0.5s all; -o-transition: 0.5s all; -moz-transition: 0.5s all; -ms-transition: 0.5s all; transition: 0.5s all; } footer { padding: 2em 0; text-align: center; background-color: rgba(6, 6, 6, 0.6); } /*--//footer--*/ /*-- /responsive design --*/ @media(max-width:1080px) { .w3layouts_team_grid img { width: 100%; } .banner-text-top { width: 83%; } .banner-text1,.banner-text2 { width: 380px; } h3.banner-text-h { font-size: 26px; } ul.callbacks_tabs { bottom: 380px; right: 30px; } .media-body.response-text-right { float: right; width: 55%; padding: 8px; } p.text-right-p { font-size: 15px; } .agileits_social_list li a { width: 33px; height: 36px; } p { font-size: 15px; } } @media(max-width:1024px) { p.banner-text-p { font-size: 18px; } h6.about-text-h6h { font-size: 25px; margin: 12px 0; } .video-w3l { min-height: 355px; padding: 4em; } } @media(max-width:991px) { .navbar-light .navbar-toggler { color: rgb(0, 0, 0); border-color: rgba(255, 255, 255, 0.1); background-color: white; } .dropdown-item { text-align: center; } p.about-text-p.text-center { font-size: 15px; } .banner-top,.banner-top1,.banner-top2,.layer{ min-height: 620px; } ul.callbacks_tabs.callbacks1_tabs { bottom: 285px; } .banner-text1,.banner-text2{ width: 360px; } .flex-active-slide p { font-size: 17px; } .w3_agile_team_grid { margin: 15px 0px; } .media-body.response-text-right ul li { font-size: 10px; } p { font-size: 15px; } .agileits_mail_grid_left ul li label { margin-right: 4px; } .agileits_mail_grid_left ul li { font-size: 12px; } .agileits_w3layouts_socila_mail ul li { width: 45%; } .agileits_w3layouts_socila_mail ul li a { padding-left: 20px; } } @media(max-width:800px) { .banner-text-top { width: 92%; } p.banner-text-p { font-size: 16px; } h3.banner-text-h3 { font-size: 40px; } .banner-text1,.banner-text2{ width: 305px; } ul.callbacks_tabs.callbacks1_tabs { bottom: 185px; } h3.banner-text-h { font-size: 24px; } .clients h4 { margin-bottom: 20px; } .video-w3l h2 { font-size: 40px; } } @media(max-width:768px) { .banner-top, .banner-top1, .banner-top2, .layer { min-height: 485px; } .banner-text-top { top: 150px; } ul.callbacks_tabs.callbacks1_tabs { bottom: 140px; } p.banner-text-p { font-size: 15px; } h3.banner-text-h3 { font-size: 35px; } } @media(max-width:736px) { ul.callbacks_tabs { bottom: 100px; left: 91%; } .banner-text-top { top: 160px; } .banner-text1, .banner-text2 { width: 295px; } h3.banner-text-h { font-size: 23px; } .flex-active-slide p { font-size: 18px; } .gallery_grids { margin-top: 0em; } .gallery-img-grid.gallery_grid1.hover14.column { margin: 0; } .gallery-img-grid.hover14 { padding: 0em 0; } figure { margin: 0 0 1rem; text-align: center; } .video-w3l h5 { font-size: 34px; } .blog-img { margin-bottom: 15px; } .blog-content { margin-bottom: 50px; } .agileits_mail_grid_left ul li label { margin-right: 10px; } .w3layouts_mail_grid_left h3, .wthree_mail_pos h3 { font-size: 1.5em; } .agileits_mail_grid_left ul li label i { font-size: 20px; } .agileits_w3layouts_socila_mail ul li { width: 40%; } .agileits_w3layouts_socila_mail ul li a { padding-left: 45px; } .w3layouts_mail_grid_left { margin-bottom: 4em; } } @media(max-width:667px) { .banner-top, .banner-top1, .banner-top2, .layer { min-height: 500px; } .banner-text-top { top: 175px; } h3.banner-text-h3 { font-size: 33px; } h3.banner-text-h { font-size: 20px; } .banner-text1, .banner-text2 { width: 260px; } .video-w3l h5 { font-size: 30px; } } @media(max-width:640px) { h3.title-1 { font-size: 43px; } p.banner-text-h { font-size: 22px; } .video-w3l h5 { font-size: 28px; } .about-img { margin: 0 0 20px 0; } } @media(max-width:600px) { .banner-top, .banner-top1, .banner-top2, .layer { min-height: 480px; } .banner-text1, .banner-text2 { width: 250px; } h3.banner-text-h { font-size: 19px; } .gallery_grid1 { margin: 0em 0 0; } .video-w3l h2 { padding-top:0px; } .blog-content { margin-bottom: 20px; } .about-img img { width: 70%; margin: 0 15%; } .banner-text-top { top: 150px; } } @media(max-width:568px) { .banner-text-top { top: 140px; } .video-w3l h2 { font-size: 35px; } .wthree_text { width: 100%; } p.copyright-agileinfo { font-size: 14px; } .w3layouts_team_grid { width: 60%; margin: 0 auto; } .w3_agile_team_grid { text-align: center; } } @media(max-width:480px) { .navbar-light .navbar-brand { font-size: 30px; } .banner-top, .banner-top1, .banner-top2, .layer { min-height: 417px; } h3.banner-text-h3 { font-size: 30px; } .banner-text-top { top: 85px; } .banner-text1, .banner-text2 { width: 220px; } h3.banner-text-h { font-size: 16px; } .media-left.response-text-left { width: 100%; } .media-body.response-text-right { width: 100%; padding: 0; margin: 10px 0 0 0; } .media { display: grid; } h3.title-1,.title-2 { font-size: 35px; } .video-w3l h2 { font-size: 30px; } } @media(max-width:414px) { .banner-text1, .banner-text2 { width: 185px; } h3.banner-text-h { font-size: 13px; } h6.about-text-h6h { font-size: 23px; } .flex-active-slide p { font-size: 16px; margin: 10px auto; } h3.title-2 { font-size: 37px; } .agileits_w3layouts_socila_mail ul li a { padding-left: 20px; } .wthree_mail_pos input[type="submit"] { padding: 8px 0; } .video-w3l h2 { font-size: 23px; } .sb-caption { bottom: 0; } } @media(max-width:384px) { .navbar-light .navbar-brand { font-size: 28px; } .banner-text1,.banner-text2 { width: 175px; } h3.banner-text-h3 { font-size: 29px; } h3.title-1, .title-2 { font-size: 35px; } h3.banner-text-h { font-size: 12px; } h6.about-text-h6h { font-size: 21px; } .flex-active-slide p { font-size: 16px; } .video-w3l h2 { font-size: 20px; } .video-w3l i { font-size: 45px; } .agileits_w3layouts_socila_mail ul li { width: 43%; } .media-body.response-text-right ul li { font-size: 10px; } .agileits_mail_grid_left ul li { font-size: 13px; } .w3layouts_mail_grid_left h3, .wthree_mail_pos h3 { font-size: 22px; } ul.callbacks_tabs { left: 88%; } } @media(max-width:375px) { h6.about-text-h6h { font-size: 21px; } h3.title-1,.mtitle-1 { font-size: 36px; } .banner-top, .banner-top1, .banner-top2, .layer { min-height: 390px; } .banner-text-top { top: 55px; } h3.banner-text-h3 { font-size: 19px; } .video-w3l h2 { font-size: 19px; } .agileits_mail_grid_left ul li label i { font-size: 17px; } .agileits_mail_grid_left ul li label { margin-right: 3px; } .agileits_w3layouts_socila_mail ul li { width: 45%; } } @media(max-width:320px) { .navbar-light .navbar-brand { font-size: 22px; } .banner-top, .banner-top1, .banner-top2, .layer { min-height: 370px; } h3.banner-text-h3 { font-size: 24px; } .banner-text-top { top: 50px; } p.banner-text-p { font-size: 13px; } .banner-text1, .banner-text2 { width: 145px; } h3.banner-text-h { font-size: 10px; } h6.about-text-h6h { font-size: 17px; } p.about-text-p.text-center { font-size: 13px; } h3.title-1 { font-size: 30px; } h3.title-2 { font-size: 30px; } .clients h4 { font-size: 17px; } .flex-active-slide p { line-height: 25px; width: 94%; font-size: 14px; } .media-body.response-text-right ul li { font-size: 8px; } .video-w3l { padding: 5em 5px; } .agileits_social_list li a { font-size: 14px; width: 31px; height: 33px; } button.btn.btn-primary { width: 24%; margin-left: 65%; } .agileits_mail_grid_left ul li { font-size: 10px; } .agileits_w3layouts_socila_mail ul li a { font-size: 13px; padding-left: 14px; } p.copyright-agileinfo { font-size: 13px; } } /*-- /responsive design --*/
0.3492
0.042107
.ext-catalog-category-blocks .item{float:left;width:200px;padding:5px;margin-right:20px;margin-bottom:20px;text-align:center;background-color:#DDD;background-color:rgba(0,0,0,0.15)} .ext-catalog-category-blocks .item:nth-child(3n){margin-right:0px;} .ext-catalog-category-blocks .item:nth-child(3n+1){clear:left} .ext-catalog-category-blocks .item a.img{display:block;width:200px;height:150px;overflow:hidden;background-color:#FFF} .ext-catalog-category-blocks .item a.img img{max-width:200px;max-height:150px} .ext-catalog-category-blocks .item span{display:block;padding-top:3px} .ext-catalog-category-blocks .item span a{color:#000;text-decoration:none} .module-catalogmenu ul{margin:0px;padding:0px;list-style-type:none} .module-catalogmenu ul li{margin:5px 0px} .module-catalogmenu ul ul{margin:0px 0px 0px 20px} *{outline:none} html{height:100%;overflow:auto;overflow-y:scroll} body{position:relative;height:100%;margin:0px;color:#000;font-family:Arial;font-size:14px;line-height:1.4} form{margin:0px} img{border:0px} table{border-collapse:collapse} a{color:#DD0000} a:hover{text-decoration:none} a.js{border-bottom:1px dotted;text-decoration: none !important} h1, h2, h3{margin:15px 0px;font-size:24px;font-weight:normal} h1:first-child, h2:first-child, h3:first-child{margin-top:0px} .body{width:950px;margin:0px auto} body.wrapped{background-image:url("/theme/default/img/bg/021.png")} body.wrapped #wrapper{width:1000px;margin:20px auto;padding-top:20px;box-shadow:0px 0px 12px rgba(0,0,0,0.3);background:url("/theme/default/img/body_bg_light.png") #fff272 50% 0% no-repeat} #head table{width:100%} #head .head-right{text-align:right} #content{float:right;width:700px} #column{float:left;width:250px;} .module-base{margin-bottom:15px} #foot{margin-top:20px;font-size:12px;color:#FFF;background-color:rgba(0,0,0, 0.8);box-shadow:inset 0px 10px 10px -10px rgba(0,0,0,0.5);} #foot .module-base{margin-top:12px} #foot .module-base:first-child{margin-top:0px} #foot a{color:#FFF;color:rgba(255,255,255,0.7)} #foot a:hover{color:#FFF} #foot .body{padding:20px 0px} #foot table{width:100%;} #foot table td{padding:0px;text-align:right;vertical-align:top} #foot table td img{margin-left:5px} #foot table td img:first-child{margin-left:0px} #foot table td:first-child{text-align:left} #foot hr{display:none} #foot .module-menu ul{padding:0px;margin:0px;list-style-type:none} #foot .module-menu ul li{display:inline-block;margin-left:10px;} #foot .module-menu ul li:first-child{margin-left:0px} #foot .module-base:last-child p:last-child{margin-bottom:0px} .clear{clear:both} #head .phone{display:inline-block;padding-left:25px;font-size:23px;color:#222;background:url(/theme/default/img/phone.png) 0% 8px no-repeat} #head .phone span{color:#ff4800} #slider{border:5px solid #99956f;border-color:rgba(0,0,0,0.3);margin-bottom:20px} #mainmenu {height:40px;line-height:40px;margin:25px 0px;border-radius:4px;font-size:14px; background: #494949; background: linear-gradient(to bottom, #494949 0%,#353535 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#494949', endColorstr='#353535',GradientType=0 );} #mainmenu li:first-child a{border-radius:4px 0px 0px 4px} #mainmenu a{display:block;padding:0px 18px;color:#FFF} #mainmenu a.has-children{padding-right:24px;background:url("/theme/default/img/down.png") 100% 50% no-repeat} #mainmenu a.active, #mainmenu a:hover{background-color: #57595a;} #mainmenu ul{margin:0px;padding:0px;list-style-type:none;background-color:#666;} #mainmenu ul li{float:left} #mainmenu ul ul{display:none} #mainmenu ul ul{position:absolute} #mainmenu ul ul li{float:none} .date{font-size:12px;color:#999;color:rgba(0,0,0,0.6)} .ext-content-list p{margin:3px 0px} #column .ext-content-list {margin-bottom:15px} .module-breadcrumbs{font-size:85%} .module-breadcrumbs a{color:#555;color:rgba(0,0,0,0.7)} .module-breadcrumbs span{color:#888;color:rgba(0,0,0,0.45)}
cache/css/bf7592e4cd1f977b79f65d5fc2e8def7.css
.ext-catalog-category-blocks .item{float:left;width:200px;padding:5px;margin-right:20px;margin-bottom:20px;text-align:center;background-color:#DDD;background-color:rgba(0,0,0,0.15)} .ext-catalog-category-blocks .item:nth-child(3n){margin-right:0px;} .ext-catalog-category-blocks .item:nth-child(3n+1){clear:left} .ext-catalog-category-blocks .item a.img{display:block;width:200px;height:150px;overflow:hidden;background-color:#FFF} .ext-catalog-category-blocks .item a.img img{max-width:200px;max-height:150px} .ext-catalog-category-blocks .item span{display:block;padding-top:3px} .ext-catalog-category-blocks .item span a{color:#000;text-decoration:none} .module-catalogmenu ul{margin:0px;padding:0px;list-style-type:none} .module-catalogmenu ul li{margin:5px 0px} .module-catalogmenu ul ul{margin:0px 0px 0px 20px} *{outline:none} html{height:100%;overflow:auto;overflow-y:scroll} body{position:relative;height:100%;margin:0px;color:#000;font-family:Arial;font-size:14px;line-height:1.4} form{margin:0px} img{border:0px} table{border-collapse:collapse} a{color:#DD0000} a:hover{text-decoration:none} a.js{border-bottom:1px dotted;text-decoration: none !important} h1, h2, h3{margin:15px 0px;font-size:24px;font-weight:normal} h1:first-child, h2:first-child, h3:first-child{margin-top:0px} .body{width:950px;margin:0px auto} body.wrapped{background-image:url("/theme/default/img/bg/021.png")} body.wrapped #wrapper{width:1000px;margin:20px auto;padding-top:20px;box-shadow:0px 0px 12px rgba(0,0,0,0.3);background:url("/theme/default/img/body_bg_light.png") #fff272 50% 0% no-repeat} #head table{width:100%} #head .head-right{text-align:right} #content{float:right;width:700px} #column{float:left;width:250px;} .module-base{margin-bottom:15px} #foot{margin-top:20px;font-size:12px;color:#FFF;background-color:rgba(0,0,0, 0.8);box-shadow:inset 0px 10px 10px -10px rgba(0,0,0,0.5);} #foot .module-base{margin-top:12px} #foot .module-base:first-child{margin-top:0px} #foot a{color:#FFF;color:rgba(255,255,255,0.7)} #foot a:hover{color:#FFF} #foot .body{padding:20px 0px} #foot table{width:100%;} #foot table td{padding:0px;text-align:right;vertical-align:top} #foot table td img{margin-left:5px} #foot table td img:first-child{margin-left:0px} #foot table td:first-child{text-align:left} #foot hr{display:none} #foot .module-menu ul{padding:0px;margin:0px;list-style-type:none} #foot .module-menu ul li{display:inline-block;margin-left:10px;} #foot .module-menu ul li:first-child{margin-left:0px} #foot .module-base:last-child p:last-child{margin-bottom:0px} .clear{clear:both} #head .phone{display:inline-block;padding-left:25px;font-size:23px;color:#222;background:url(/theme/default/img/phone.png) 0% 8px no-repeat} #head .phone span{color:#ff4800} #slider{border:5px solid #99956f;border-color:rgba(0,0,0,0.3);margin-bottom:20px} #mainmenu {height:40px;line-height:40px;margin:25px 0px;border-radius:4px;font-size:14px; background: #494949; background: linear-gradient(to bottom, #494949 0%,#353535 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#494949', endColorstr='#353535',GradientType=0 );} #mainmenu li:first-child a{border-radius:4px 0px 0px 4px} #mainmenu a{display:block;padding:0px 18px;color:#FFF} #mainmenu a.has-children{padding-right:24px;background:url("/theme/default/img/down.png") 100% 50% no-repeat} #mainmenu a.active, #mainmenu a:hover{background-color: #57595a;} #mainmenu ul{margin:0px;padding:0px;list-style-type:none;background-color:#666;} #mainmenu ul li{float:left} #mainmenu ul ul{display:none} #mainmenu ul ul{position:absolute} #mainmenu ul ul li{float:none} .date{font-size:12px;color:#999;color:rgba(0,0,0,0.6)} .ext-content-list p{margin:3px 0px} #column .ext-content-list {margin-bottom:15px} .module-breadcrumbs{font-size:85%} .module-breadcrumbs a{color:#555;color:rgba(0,0,0,0.7)} .module-breadcrumbs span{color:#888;color:rgba(0,0,0,0.45)}
0.26341
0.065755
.navbar{ background-color: #223843; color: #f1f7ee; } .navbar ul li { display: inline !important; float: none; } .navbar ul li a { display: inline-block !important; } /* PaginaInicial */ #home, #products, .footer{ background-color: #b0bea9; padding-top: 45px; padding-bottom: 30px; } .box-title .title{ font-size: 1.8em; color: #f1f7ee; font-style: italic; } .box-title .p{ text-align: center; } .box-title .featured{ display: block; font-size: 3.5em; font-weight: 900; color: #223843; margin-top: -15px !important; } #products .box-title .title{ color: #223843; } #products .box-title .featured{ color: #f1f7ee; } #news .box-title .title{ color: #b0bea9; } .box-title p{ width: 350px; font-size: .8em; margin-left: auto; margin-right: auto; } .box-title{ display: block; margin-top: 10px; margin-bottom: 30px; text-align: center; } #home .box-title:before{ content: ''; display: block; width: 250px; height: 30px; margin: 0 auto; background-image: url(../images/detalhe_1.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .box-title::after{ content: ''; display: block; width: 250px; height: 30px; margin: 0 auto; background-image: url(../images/detalhe_1.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .card-text{ background-color: #223843; text-align: center; padding: 15px 10px; } .title-text{ color: #f1f7ee; font-size: 1.6rem; font-weight: 900; } .description{ max-width: 450px; margin-left: auto; margin-right: auto; color: #b0bea9; font-size: .9rem; text-align: center; } .title-text::after{ content: ''; display: block; width: 15%; height: 5px; margin: 0 auto; margin-top: 4%; border-bottom: 3px solid #b2bd7e; } .banner{ padding: 60px 0; text-align: center; background-image: url(../images/bg_01.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .contacts{ padding: 60px 0; text-align: center; background-image: url(../images/bg_02.png); background-size: cover; background-position: center; background-repeat: no-repeat; } h2.title-text{ font-size: 3em; } .button{ display: inline-block; padding: 15px 60px; margin-top: 60px; background-color: #b2bd7e; border: none; border-radius: 25px; color: #223843; font-weight: 900; text-transform: uppercase; } .card-item{ background-color: #ffffff; text-align: center; padding: 25px 10px; } .card-item img{ display: block; width: 90%; margin: 0 auto 10px; } .card-item .title-item{ color: #b2bd7e; font-size: 1.4em; } .card-item .more:hover{ background-color: #b2bd7e; color: #ffffff; } .card-item .more, .card-item .more:active { width: 60%; margin-top: 10px; padding: 15px 10px; background-color: #ffffff; border: 1px solid #b2bd7e; font-size: .6em; color: #b2bd7e; } #news{ padding-top: 50px; padding-bottom: 30px; } .box-news *{ color: #223843; } .box-news .title-news{ font-size: 1.4em; font-weight: 700; } #contacts .container{ max-width: 500px; } #icon{ display: inline-block; width: 40px; height: 40px; } .facebook{ background-image: url(../images/facebook-logo-button.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .instagram{ background-image: url(../images/instagram-logo.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .twitter{ background-image: url(../images/twitter-logo-button.png); background-size: cover; background-position: center; background-repeat: no-repeat; } input[type=text], input[type=email], textarea{ background-color: #ffffff !important; border: none !important; padding-left: 15px !important; padding-right: 15px !important; } input{ width: calc(100% - 30px) !important; } textarea{ height: 120px !important; } label{ font-weight: 850; text-transform: uppercase; color: #223843 !important; left: 1.8rem !important; } label.active{ display: none; } button{ cursor: pointer; }
programacao-web/atividades/t01-trabalho-1/edson-yuity/assets/css/style.css
.navbar{ background-color: #223843; color: #f1f7ee; } .navbar ul li { display: inline !important; float: none; } .navbar ul li a { display: inline-block !important; } /* PaginaInicial */ #home, #products, .footer{ background-color: #b0bea9; padding-top: 45px; padding-bottom: 30px; } .box-title .title{ font-size: 1.8em; color: #f1f7ee; font-style: italic; } .box-title .p{ text-align: center; } .box-title .featured{ display: block; font-size: 3.5em; font-weight: 900; color: #223843; margin-top: -15px !important; } #products .box-title .title{ color: #223843; } #products .box-title .featured{ color: #f1f7ee; } #news .box-title .title{ color: #b0bea9; } .box-title p{ width: 350px; font-size: .8em; margin-left: auto; margin-right: auto; } .box-title{ display: block; margin-top: 10px; margin-bottom: 30px; text-align: center; } #home .box-title:before{ content: ''; display: block; width: 250px; height: 30px; margin: 0 auto; background-image: url(../images/detalhe_1.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .box-title::after{ content: ''; display: block; width: 250px; height: 30px; margin: 0 auto; background-image: url(../images/detalhe_1.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .card-text{ background-color: #223843; text-align: center; padding: 15px 10px; } .title-text{ color: #f1f7ee; font-size: 1.6rem; font-weight: 900; } .description{ max-width: 450px; margin-left: auto; margin-right: auto; color: #b0bea9; font-size: .9rem; text-align: center; } .title-text::after{ content: ''; display: block; width: 15%; height: 5px; margin: 0 auto; margin-top: 4%; border-bottom: 3px solid #b2bd7e; } .banner{ padding: 60px 0; text-align: center; background-image: url(../images/bg_01.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .contacts{ padding: 60px 0; text-align: center; background-image: url(../images/bg_02.png); background-size: cover; background-position: center; background-repeat: no-repeat; } h2.title-text{ font-size: 3em; } .button{ display: inline-block; padding: 15px 60px; margin-top: 60px; background-color: #b2bd7e; border: none; border-radius: 25px; color: #223843; font-weight: 900; text-transform: uppercase; } .card-item{ background-color: #ffffff; text-align: center; padding: 25px 10px; } .card-item img{ display: block; width: 90%; margin: 0 auto 10px; } .card-item .title-item{ color: #b2bd7e; font-size: 1.4em; } .card-item .more:hover{ background-color: #b2bd7e; color: #ffffff; } .card-item .more, .card-item .more:active { width: 60%; margin-top: 10px; padding: 15px 10px; background-color: #ffffff; border: 1px solid #b2bd7e; font-size: .6em; color: #b2bd7e; } #news{ padding-top: 50px; padding-bottom: 30px; } .box-news *{ color: #223843; } .box-news .title-news{ font-size: 1.4em; font-weight: 700; } #contacts .container{ max-width: 500px; } #icon{ display: inline-block; width: 40px; height: 40px; } .facebook{ background-image: url(../images/facebook-logo-button.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .instagram{ background-image: url(../images/instagram-logo.png); background-size: cover; background-position: center; background-repeat: no-repeat; } .twitter{ background-image: url(../images/twitter-logo-button.png); background-size: cover; background-position: center; background-repeat: no-repeat; } input[type=text], input[type=email], textarea{ background-color: #ffffff !important; border: none !important; padding-left: 15px !important; padding-right: 15px !important; } input{ width: calc(100% - 30px) !important; } textarea{ height: 120px !important; } label{ font-weight: 850; text-transform: uppercase; color: #223843 !important; left: 1.8rem !important; } label.active{ display: none; } button{ cursor: pointer; }
0.241937
0.083666
.contenedor::-webkit-scrollbar { width: 11px; background-color: #f1eeee; } .contenedor::-webkit-scrollbar-thumb { background-color: #B6C4DB; border-radius: 5px; } /*Pre-carga de la landing page*/ *, *:before, *:after { --higru:#3F70BD; } .loading1{ clip-path: circle(100% at 50% 50%); transition: clip-path 1.5s ease-in-out; } .loading2{ clip-path: circle(0% at 50% 50%); } .ci1 { fill: var(--higru); animation: toBig 3s infinite -1.5s; transform-box: fill-box; transform-origin:50% 50%; } .ciw { transform-box: fill-box; transform-origin:50% 50%; animation: breath 3s infinite; } .ci2 { fill: var(--higru); animation: toBig2 3s infinite; transform-box: fill-box; transform-origin:50% 50%; } .points { animation: rot 3s infinite; transform-box: fill-box; transform-origin:50% 50%; } @keyframes rot { 0% { transform: rotate(0deg);} 30% { transform: rotate(360deg);} 50% { transform: rotate(360deg);} 80% { transform: rotate(0deg);} 100% { transform: rotate(0deg);} } @keyframes toBig { 0% { transform: scale(1) translateX(0px);} 30% { transform: scale(1) translateX(0px);} 50% { transform: scale(10) translateX(-4.5px);} 80% { transform: scale(10) translateX(-4.5px);} 100% { transform: scale(1) translateX(0px);} } @keyframes toBig2 { 0% { transform: scale(1) translateX(0px);} 30% { transform: scale(1) translateX(0px);} 50% { transform: scale(10) translateX(4.5px);} 80% { transform: scale(10) translateX(4.5px);} 100% { transform: scale(1) translateX(0px);} } @keyframes breath { 15% { transform: scale(1) ;} 40% { transform: scale(1.1) ;} 65% { transform: scale(1) ;} 90% { transform: scale(1.1) ;} } /*Titulo y Descripcion - Espaciado y ...*/ .titulo{ overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } .description{ overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } /*Menu navbar mobil*/ .wrapper-menu { width: 30px; height: 30px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; transition: transform 330ms ease-out; } .wrapper-menu.open { transform: rotate(-45deg); } .line-menu { background-color: #2A4A7E; border-radius: 5px; width: 100%; height: 6px; } .line-menu.half { width: 50%; } .line-menu.start { transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57); transform-origin: right; } .open .line-menu.start { transform: rotate(-90deg) translateX(3px); } .line-menu.end { align-self: flex-end; transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57); transform-origin: left; } .open .line-menu.end { transform: rotate(-90deg) translateX(-3px); } /*Pre-carga de datos establecido*/ .loader-dots div { animation-timing-function: cubic-bezier(0, 1, 1, 0); } .loader-dots div:nth-child(1) { left: 8px; animation: loader-dots1 0.6s infinite; } .loader-dots div:nth-child(2) { left: 8px; animation: loader-dots2 0.6s infinite; } .loader-dots div:nth-child(3) { left: 32px; animation: loader-dots2 0.6s infinite; } .loader-dots div:nth-child(4) { left: 56px; animation: loader-dots3 0.6s infinite; } @keyframes loader-dots1 { 0% { transform: scale(0); } 100% { transform: scale(1); } } @keyframes loader-dots3 { 0% { transform: scale(1); } 100% { transform: scale(0); } } @keyframes loader-dots2 { 0% { transform: translate(0, 0); } 100% { transform: translate(24px, 0); } } /*----------------------------------------LANDING PAGE----------------------------------------------*/ /*--------------------------------------------------------------------------------------------------*/ .contenedores { padding: 30px 0; width: 95%; max-width: 1000px; margin: auto; overflow: hidden; } .titulos { color: #3F70BD; font-size: 40px; text-align: center; margin-bottom: 40px; } /* Header */ header { width: 100%; height: 800px; background: #40b9c9; /* fallback for old browsers */ background: -webkit-linear-gradient(to right, hsla(340, 78%, 95%, 0.459), hsla(219, 100%, 77%, 0.664)), url(../images/portada3.jpg); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to right, hsla(340, 78%, 95%, 0.459), hsla(219, 100%, 77%, 0.664)), url(../images/portada3.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ background-size: cover; background-attachment: fixed; position: relative; } header .textos-header{ display: flex; height: 430px; width: 100%; align-items: center; justify-content: center; flex-direction: column; text-align: center; } .textos-header h1{ font-size: 50px; color:#fff; } .textos-header h2{ font-size: 30px; font-weight: 300; color:#fff; } .wave{ position: absolute; bottom: 0; width: 100%; } /* About us */ main .sobre-nosotros{ padding: 30px 0 60px 0; } .contenedor-sobre-nosotros{ display: flex; justify-content: space-evenly; } .imagen-about-us{ width: 48%; } .sobre-nosotros .contenido-textos{ width: 48%; } .contenido-textos h3{ margin-bottom: 15px; } .contenido-textos h3 span{ background: #3F70BD; color: #fff; border-radius: 50%; display: inline-block; text-align: center; width: 30px; height: 30px; padding: 2px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5); margin-right: 5px; } .contenido-textos p{ padding: 0px 0px 30px 15px; font-weight: 300; text-align: justify; } /* Galeria */ .portafolio{ background: #fff; } .galeria-port{ display: flex; justify-content: space-evenly; flex-wrap: wrap; } .imagen-port{ width: 24%; margin-bottom: 10px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5); } .imagen-port > img{ width: 100%; height: 100%; object-fit: cover; display: block; } .hover-galeria{ position: absolute; width: 100%; height: 100%; top: 0; transform: scale(0); background: rgba(63, 112, 189, 0.7); transition: transform .5s; display: flex; justify-content: center; align-items: center; flex-direction: column; } .hover-galeria img{ width: 50px; } .hover-galeria p{ color: #fff; } .imagen-port:hover .hover-galeria{ transform: scale(1); } /*responsive*/ @media screen and (max-width:900px){ header{ background-position: center; } .contenedor-sobre-nosotros{ flex-direction: column; justify-content: center; align-items: center; } .sobre-nosotros .contenido-textos{ width: 90%; } .imagen-about-us{ width: 90%; } /* Galeria */ .imagen-port{ width: 44%; } } @media screen and (max-width:500px){ .textos-header h1{ font-size: 35px; } .textos-header h2{ font-size: 20px; } /* ABOUT US */ .imagen-about-us{ margin-bottom: 60px; width: 99%; } .sobre-nosotros .contenido-textos{ width: 95%; } /* Galeria */ .imagen-port{ width: 95%; } }
public/css/custom_app.css
.contenedor::-webkit-scrollbar { width: 11px; background-color: #f1eeee; } .contenedor::-webkit-scrollbar-thumb { background-color: #B6C4DB; border-radius: 5px; } /*Pre-carga de la landing page*/ *, *:before, *:after { --higru:#3F70BD; } .loading1{ clip-path: circle(100% at 50% 50%); transition: clip-path 1.5s ease-in-out; } .loading2{ clip-path: circle(0% at 50% 50%); } .ci1 { fill: var(--higru); animation: toBig 3s infinite -1.5s; transform-box: fill-box; transform-origin:50% 50%; } .ciw { transform-box: fill-box; transform-origin:50% 50%; animation: breath 3s infinite; } .ci2 { fill: var(--higru); animation: toBig2 3s infinite; transform-box: fill-box; transform-origin:50% 50%; } .points { animation: rot 3s infinite; transform-box: fill-box; transform-origin:50% 50%; } @keyframes rot { 0% { transform: rotate(0deg);} 30% { transform: rotate(360deg);} 50% { transform: rotate(360deg);} 80% { transform: rotate(0deg);} 100% { transform: rotate(0deg);} } @keyframes toBig { 0% { transform: scale(1) translateX(0px);} 30% { transform: scale(1) translateX(0px);} 50% { transform: scale(10) translateX(-4.5px);} 80% { transform: scale(10) translateX(-4.5px);} 100% { transform: scale(1) translateX(0px);} } @keyframes toBig2 { 0% { transform: scale(1) translateX(0px);} 30% { transform: scale(1) translateX(0px);} 50% { transform: scale(10) translateX(4.5px);} 80% { transform: scale(10) translateX(4.5px);} 100% { transform: scale(1) translateX(0px);} } @keyframes breath { 15% { transform: scale(1) ;} 40% { transform: scale(1.1) ;} 65% { transform: scale(1) ;} 90% { transform: scale(1.1) ;} } /*Titulo y Descripcion - Espaciado y ...*/ .titulo{ overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; } .description{ overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } /*Menu navbar mobil*/ .wrapper-menu { width: 30px; height: 30px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; transition: transform 330ms ease-out; } .wrapper-menu.open { transform: rotate(-45deg); } .line-menu { background-color: #2A4A7E; border-radius: 5px; width: 100%; height: 6px; } .line-menu.half { width: 50%; } .line-menu.start { transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57); transform-origin: right; } .open .line-menu.start { transform: rotate(-90deg) translateX(3px); } .line-menu.end { align-self: flex-end; transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57); transform-origin: left; } .open .line-menu.end { transform: rotate(-90deg) translateX(-3px); } /*Pre-carga de datos establecido*/ .loader-dots div { animation-timing-function: cubic-bezier(0, 1, 1, 0); } .loader-dots div:nth-child(1) { left: 8px; animation: loader-dots1 0.6s infinite; } .loader-dots div:nth-child(2) { left: 8px; animation: loader-dots2 0.6s infinite; } .loader-dots div:nth-child(3) { left: 32px; animation: loader-dots2 0.6s infinite; } .loader-dots div:nth-child(4) { left: 56px; animation: loader-dots3 0.6s infinite; } @keyframes loader-dots1 { 0% { transform: scale(0); } 100% { transform: scale(1); } } @keyframes loader-dots3 { 0% { transform: scale(1); } 100% { transform: scale(0); } } @keyframes loader-dots2 { 0% { transform: translate(0, 0); } 100% { transform: translate(24px, 0); } } /*----------------------------------------LANDING PAGE----------------------------------------------*/ /*--------------------------------------------------------------------------------------------------*/ .contenedores { padding: 30px 0; width: 95%; max-width: 1000px; margin: auto; overflow: hidden; } .titulos { color: #3F70BD; font-size: 40px; text-align: center; margin-bottom: 40px; } /* Header */ header { width: 100%; height: 800px; background: #40b9c9; /* fallback for old browsers */ background: -webkit-linear-gradient(to right, hsla(340, 78%, 95%, 0.459), hsla(219, 100%, 77%, 0.664)), url(../images/portada3.jpg); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to right, hsla(340, 78%, 95%, 0.459), hsla(219, 100%, 77%, 0.664)), url(../images/portada3.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ background-size: cover; background-attachment: fixed; position: relative; } header .textos-header{ display: flex; height: 430px; width: 100%; align-items: center; justify-content: center; flex-direction: column; text-align: center; } .textos-header h1{ font-size: 50px; color:#fff; } .textos-header h2{ font-size: 30px; font-weight: 300; color:#fff; } .wave{ position: absolute; bottom: 0; width: 100%; } /* About us */ main .sobre-nosotros{ padding: 30px 0 60px 0; } .contenedor-sobre-nosotros{ display: flex; justify-content: space-evenly; } .imagen-about-us{ width: 48%; } .sobre-nosotros .contenido-textos{ width: 48%; } .contenido-textos h3{ margin-bottom: 15px; } .contenido-textos h3 span{ background: #3F70BD; color: #fff; border-radius: 50%; display: inline-block; text-align: center; width: 30px; height: 30px; padding: 2px; box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5); margin-right: 5px; } .contenido-textos p{ padding: 0px 0px 30px 15px; font-weight: 300; text-align: justify; } /* Galeria */ .portafolio{ background: #fff; } .galeria-port{ display: flex; justify-content: space-evenly; flex-wrap: wrap; } .imagen-port{ width: 24%; margin-bottom: 10px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5); } .imagen-port > img{ width: 100%; height: 100%; object-fit: cover; display: block; } .hover-galeria{ position: absolute; width: 100%; height: 100%; top: 0; transform: scale(0); background: rgba(63, 112, 189, 0.7); transition: transform .5s; display: flex; justify-content: center; align-items: center; flex-direction: column; } .hover-galeria img{ width: 50px; } .hover-galeria p{ color: #fff; } .imagen-port:hover .hover-galeria{ transform: scale(1); } /*responsive*/ @media screen and (max-width:900px){ header{ background-position: center; } .contenedor-sobre-nosotros{ flex-direction: column; justify-content: center; align-items: center; } .sobre-nosotros .contenido-textos{ width: 90%; } .imagen-about-us{ width: 90%; } /* Galeria */ .imagen-port{ width: 44%; } } @media screen and (max-width:500px){ .textos-header h1{ font-size: 35px; } .textos-header h2{ font-size: 20px; } /* ABOUT US */ .imagen-about-us{ margin-bottom: 60px; width: 99%; } .sobre-nosotros .contenido-textos{ width: 95%; } /* Galeria */ .imagen-port{ width: 95%; } }
0.415373
0.160167
body { font-family: 'Roboto', sans-serif; background-color: #f8f8f8; color: rgb(53, 52, 52); } html { height: auto; } #page-container { position: relative; min-height: 100vh; } #content-wrap { margin-top: 5em; padding-bottom: 10em; min-height: 65vh; } @font-face { font-family: 'DawningofaNewDay'; src: url(/fonts/DawningofaNewDay.ttf); } #navPins, #navStickers, #navAdmin { font-family: 'DawningofaNewDay'; font-size: 25px; margin: 0em 0.5em; } .nav-bar-container h1 { font-family: 'DawningofaNewDay'; font-size: 40px; } #title { font-family: 'DawningofaNewDay'; } a { text-decoration: none; color: black; margin: 0; } a:visited { color: black; } img { height: 25px; width: 25px; } label { display: block; } nav a { display: inline-block; margin: 0em 1em; } form div { margin: 1em; display: inline-block; } form { padding: 40px; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); } .fade { animation: fadeIn ease 1s; } .auth-container { display: flex; flex-direction: column; height: 100%; margin: 5%; } .auth-form { display: flex; flex-direction: column; margin: 5px; width: 210px; } /*** Cart ***/ #cart-container { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 4em; min-height: 65vh; } #inner-cart-container { margin-right: 4em; } #cartItem-img { height: 100px; width: 100px; } #cartItem-div { width: 40em; box-shadow: 3px 3px 10px darkgray; margin-bottom: 1em; } #cartItem-name { margin: 0 0 0 1em; width: 11em; } .cartItem-price { margin: 0 15px 0 0; font-weight: normal; } .cart-times { margin: 0 12px 0 0; font-weight: normal; padding-bottom: 1px; } .cart-qty-num { margin: 0 1px 1px 1px; font-weight: normal; } .cart-info-container { display: flex; align-items: flex-end; padding: 1em; } .remove-add-button-container { width: fit-content; padding: 0; margin: 0; box-shadow: 0 0; } .remove-add-button { background-color: #468faf; color: white; border: 1px solid #5796b1; border-radius: 12px; width: 23px; height: 23px; margin: 0 5px 0 5px; text-align: center; } .remove-add-button:active { background-color: #5796b1; } #remove { width: fit-content; padding: 1px; margin: 0 0 0 1.5em; box-shadow: 0 0; } #cart-summary { width: 8em; } #empty-cart { text-align: center; margin-top: 8em; color: lightgrey; min-height: 65vh; } #big-cart-icon { height: 8em; width: 8em; } button { font-family: 'Roboto', sans-serif; padding: 2px; } button:hover { cursor: pointer; } button:focus { outline: 0; } .center { justify-content: center; align-items: center; } .checkout-container { display: flex; margin: auto; min-width: 35em; max-width: 70em; } .error-msg { text-align: center; color: red; } .form-input { margin-top: 5px; margin-bottom: 5px; background-color: #e8e8e8; border-top: 0; border-left: 0; border-right: 0; height: 30px; padding-left: 10px; transition: background-color 0.35s; } .form-btn { display: flex; cursor: pointer; justify-content: center; align-items: center; color: white; background-color: black; margin-top: 5px; height: 30px; width: 210; transition: background-color 0.75s, color 0.75s, border 0.75s; } .form-btn:hover { background-color: white; color: black; border: 1px solid black; } .form-input.title { text-align: center; background-color: #f8f8f8; } .form-input.input { width: 98%; } .form-input.small { width: 30%; } .form-input:focus { background-color: #f8f8f8; outline: none; } .main-container { position: sticky; background-color: #f8f8f8; top: 0; z-index: 10; } .nav-bar-container { display: flex; justify-content: space-between; padding: 1em 1.5em 0em 1.5em; background-color: #f8f8f8; } #main-title { margin: 0.5em 0; } .nav-bar-routes { margin: 0 12.5px; } .nav-bar-routes:hover { border-bottom: 2px solid black; transition: border-bottom 0.15s; margin: 0 12.5px; } .nav-bar-routes-container { display: flex; } hr { margin: 0em 1em; } .oauth-container { display: flex; height: 30px; margin: 5px; width: 100%; justify-content: center; align-items: center; color: white; } .oauth-img { height: 20px; width: 20px; } .oauth-signup-msg { margin: 0; margin-top: 5px; text-align: center; padding-left: 10px; } .oauth-signup-container { margin: 0; } .open-checkout-forms { display: flex; justify-content: space-between; border: 1px solid black; border-radius: 10px; align-items: center; padding: 0 10px; margin: 10px 0 10px 0; } .order-form { flex: 4; margin: 15px; } .order-summary { flex: 1; margin: 15px; padding: 15px; text-align: right; height: min-content; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); } .small-input { display: flex; justify-content: space-between; } .signup-container { text-align: center; } /*** Single Product View ***/ .single-product-container { display: flex; justify-content: center; min-height: 65vh; flex-wrap: wrap; opacity: 0; position: relative; top: 10px; } .single-product-container.loaded { top: 0; opacity: 1; transition: all 1s; } .image-loader { height: 20em; width: 20em; } .single-product-img { height: 25em; width: 25em; display: flex; justify-content: center; align-items: center; } .single-product-info-container { padding-left: 50px; padding-right: 50px; height: 40em; width: 22em; } .single-product-name { color: black; font-size: 3em; /* font-weight: 50; */ margin: 0; height: 2em; } .single-product-description { margin: 4em 0 2em 0; height: 3.5em; } .single-product-stock { display: flex; align-items: flex-end; height: 3em; color: #468faf; padding-bottom: 1.5em; border-bottom: 1px solid black; } .single-product-price { height: 1em; padding-left: 0.2em; } /*** Rating Stars ***/ label .star { float: left; } .hidden-radio { display: none; } .star { cursor: pointer; transition: color 200ms; height: 2em; width: 2em; } /***All Products***/ .allproducts-container { display: flex; justify-content: center; min-height: 65vh; } .flex-container { display: flex; flex-wrap: wrap; min-width: 35em; max-width: 70em; justify-content: center; } /***Product Card***/ .allImg { height: 150px; width: 150px; border-radius: 3px; } .indSticker { width: 150px; padding: 20px 30px 0px 30px; margin: 1em 20px 1em 20px; background-color: white; box-shadow: 3px 3px 10px darkgray; border-radius: 3px; opacity: 0; position: relative; top: 0px; } .indSticker.loaded { opacity: 1; transition: background-color 0.8s, opacity 1s; } .indSticker.loaded:hover { background-color: #f5f3f3; transition: background-color 0.8s; } .indSticker:active { color: #468faf; } #name { padding-left: 5px; padding-top: 10px; margin-top: 10px; margin-bottom: 0px; border-top: 2px solid rgb(228, 228, 228); } #price { margin-top: 10px; padding-left: 5px; } /***UserHome***/ #userWelcome { text-align: center; margin-top: 0; } #loggedInAs { text-align: center; } #userProfileNavBar { border: 1px solid #ccc; border-width: 1px 0; list-style: none; margin: 0; padding: 0; text-align: right; } #userProfileNavBar li { display: inline; } #userProfileNavBar a { display: inline; } #mailingInfoDiv { display: flex; flex-direction: column; margin: auto; padding-top: 20px; padding-bottom: 20px; padding-left: 50px; padding-right: 50px; width: 50%; border: 5px solid #000000; } #mailingInfoDiv label { padding-bottom: 10px; } #mailingInfoDiv button { margin-top: 30px; margin-bottom: 30px; margin-left: 37.5%; width: 25%; align-items: center; } #currentInfoDiv { display: flex; flex-direction: column; margin-top: 40px; margin-left: 103px; align-self: flex-start; width: 40%; height: 265px; border: 5px solid #000000; } #user-page-container { margin: auto; min-width: 35em; max-width: 70em; } .flex-container-User { display: flex; flex-direction: row; justify-content: center; min-width: 35em; max-width: 70em; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); } .flex-left { width: 40%; height: 100vh; } .flex-right { width: 60%; } .no-shadow { padding: 40px 0; box-shadow: 0px 0px 0px 0px white; } #currentInfoTitle { text-align: center; } .confirmation-container { width: 50vw; padding: 15px; border-radius: 10px; margin: 15px 0 0 15px; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } .confirmation-header { display: flex; align-items: center; height: 35px; } #footer { display: flex; justify-content: center; align-items: center; background-color: rgb(53, 52, 52); bottom: 0; height: 4em; padding: 0.8em 0em; width: 100%; } #github-icon { height: 2em; width: 2em; color: #468faf; transition: height 0.3s, width 0.3s; } #github-icon:hover { height: 2.2em; width: 2.2em; transition: height 0.3s, width 0.3s; } .parallax { height: auto; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; } .bgimg-1 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; opacity: 0.65; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url('/img1.jpg'); min-height: 1000px; } .caption { font: 400 15px/1.8 'Lato', sans-serif; position: absolute; left: 0; top: 50%; width: 100%; text-align: center; color: #000; } .border { font: 400 15px/1.8 'Lato', sans-serif; text-align: center; background-color: #111; color: #fff; padding: 18px; font-size: 25px; letter-spacing: 10px; } #div1 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; padding: 50px 80px; text-align: justify; z-index: -1; } #h3-1 { letter-spacing: 5px; text-transform: uppercase; font: 20px 'Lato', sans-serif; color: #111; text-align: center; } .bgimg-2 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; opacity: 0.65; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url('/img2.png'); min-height: 400px; } #span1 { font: 400 15px/1.8 'Lato', sans-serif; text-align: center; padding: 18px; letter-spacing: 10px; background-color: transparent; font-size: 25px; color: #000000; } #div2 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; } #div3 { font: 400 15px/1.8 'Lato', sans-serif; color: #ddd; background-color: #282e34; padding: 50px 80px; text-align: justify; } .bgimg-3 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; opacity: 0.65; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url('/img3.png'); min-height: 400px; } #span2 { font: 400 15px/1.8 'Lato', sans-serif; text-align: center; padding: 18px; letter-spacing: 10px; background-color: transparent; font-size: 25px; color: #000000; } #div4 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; } #div5 { font: 400 15px/1.8 'Lato', sans-serif; color: #ddd; background-color: #282e34; padding: 50px 80px; text-align: justify; } .strikethrough { text-decoration: line-through; } .sticky { position: fixed; top: 0; z-index: 1; width: 100%; background-color: #f8f8f8; } .content { margin-top: 8em; } .admins-nav { display: flex; justify-content: space-between; margin-right: 2%; } .admins-filter > p { width: 8vw; margin-left: 15px; cursor: pointer; transition: border-bottom 0.15s; } .admins-filter > p:hover { border-bottom: 2px solid black; } .user-card { margin: 15px; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); padding: 15px; width: 100%; } .user-card > p { margin-top: 5px; } .user-radio { display: flex; align-items: center; } .user-radio > label { margin-left: 10px; } .admin-product-container { display: flex; flex-direction: column; } .admin-product-container > div { display: flex; } .admin-product-card { display: flex; border: 1px solid black; margin: 10px 0 15px 15px; padding: 0 10px 0 10px; align-items: center; } .admin-product-card:hover { box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); transition: all ease 0.5s; } .admin-product-card > img { height: 50px; width: 50px; } .admin-product-card > div { display: flex; margin: 0 10px 0 10px; width: 50vw; } .admin-product-card > div > p { padding: 0 10px 0 10px; } .delete-product { background-color: red; margin-top: 15px; height: 30px; } .delete-product:hover { background-color: #ffa8a8; transition: all ease 0.75s; } .product-update { display: flex; flex-direction: column; width: 100%; margin: 10px 0 5px 15px; } #inner-orders-container { border: 2px solid black; width: 100%; } /**Order History**/ #orders-container { align-items: center; margin-left: 20%; margin-right: 20%; } #orderHistoryTitle { text-align: center; } #confOrder { text-align: center; } #confOrder a { font-weight: bold; text-decoration: underline; } .purchasedItems { display: flex; flex-direction: row; text-align: center; margin: 15px; } .purchasedItems img { width: 50px; height: 50px; margin-right: 20px; } .purchasedItems a { text-decoration: underline; } .row { display: flex; flex-direction: row; flex-wrap: wrap; width: 100%; } .column { display: flex; flex-direction: row; flex-basis: 100%; flex: 3; } .subColumn1 { margin-right: 28%; } .subColumn2 { position: relative; } .subColumn3 { margin-left: 33%; position: relative; }
public/style.css
body { font-family: 'Roboto', sans-serif; background-color: #f8f8f8; color: rgb(53, 52, 52); } html { height: auto; } #page-container { position: relative; min-height: 100vh; } #content-wrap { margin-top: 5em; padding-bottom: 10em; min-height: 65vh; } @font-face { font-family: 'DawningofaNewDay'; src: url(/fonts/DawningofaNewDay.ttf); } #navPins, #navStickers, #navAdmin { font-family: 'DawningofaNewDay'; font-size: 25px; margin: 0em 0.5em; } .nav-bar-container h1 { font-family: 'DawningofaNewDay'; font-size: 40px; } #title { font-family: 'DawningofaNewDay'; } a { text-decoration: none; color: black; margin: 0; } a:visited { color: black; } img { height: 25px; width: 25px; } label { display: block; } nav a { display: inline-block; margin: 0em 1em; } form div { margin: 1em; display: inline-block; } form { padding: 40px; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); } .fade { animation: fadeIn ease 1s; } .auth-container { display: flex; flex-direction: column; height: 100%; margin: 5%; } .auth-form { display: flex; flex-direction: column; margin: 5px; width: 210px; } /*** Cart ***/ #cart-container { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 4em; min-height: 65vh; } #inner-cart-container { margin-right: 4em; } #cartItem-img { height: 100px; width: 100px; } #cartItem-div { width: 40em; box-shadow: 3px 3px 10px darkgray; margin-bottom: 1em; } #cartItem-name { margin: 0 0 0 1em; width: 11em; } .cartItem-price { margin: 0 15px 0 0; font-weight: normal; } .cart-times { margin: 0 12px 0 0; font-weight: normal; padding-bottom: 1px; } .cart-qty-num { margin: 0 1px 1px 1px; font-weight: normal; } .cart-info-container { display: flex; align-items: flex-end; padding: 1em; } .remove-add-button-container { width: fit-content; padding: 0; margin: 0; box-shadow: 0 0; } .remove-add-button { background-color: #468faf; color: white; border: 1px solid #5796b1; border-radius: 12px; width: 23px; height: 23px; margin: 0 5px 0 5px; text-align: center; } .remove-add-button:active { background-color: #5796b1; } #remove { width: fit-content; padding: 1px; margin: 0 0 0 1.5em; box-shadow: 0 0; } #cart-summary { width: 8em; } #empty-cart { text-align: center; margin-top: 8em; color: lightgrey; min-height: 65vh; } #big-cart-icon { height: 8em; width: 8em; } button { font-family: 'Roboto', sans-serif; padding: 2px; } button:hover { cursor: pointer; } button:focus { outline: 0; } .center { justify-content: center; align-items: center; } .checkout-container { display: flex; margin: auto; min-width: 35em; max-width: 70em; } .error-msg { text-align: center; color: red; } .form-input { margin-top: 5px; margin-bottom: 5px; background-color: #e8e8e8; border-top: 0; border-left: 0; border-right: 0; height: 30px; padding-left: 10px; transition: background-color 0.35s; } .form-btn { display: flex; cursor: pointer; justify-content: center; align-items: center; color: white; background-color: black; margin-top: 5px; height: 30px; width: 210; transition: background-color 0.75s, color 0.75s, border 0.75s; } .form-btn:hover { background-color: white; color: black; border: 1px solid black; } .form-input.title { text-align: center; background-color: #f8f8f8; } .form-input.input { width: 98%; } .form-input.small { width: 30%; } .form-input:focus { background-color: #f8f8f8; outline: none; } .main-container { position: sticky; background-color: #f8f8f8; top: 0; z-index: 10; } .nav-bar-container { display: flex; justify-content: space-between; padding: 1em 1.5em 0em 1.5em; background-color: #f8f8f8; } #main-title { margin: 0.5em 0; } .nav-bar-routes { margin: 0 12.5px; } .nav-bar-routes:hover { border-bottom: 2px solid black; transition: border-bottom 0.15s; margin: 0 12.5px; } .nav-bar-routes-container { display: flex; } hr { margin: 0em 1em; } .oauth-container { display: flex; height: 30px; margin: 5px; width: 100%; justify-content: center; align-items: center; color: white; } .oauth-img { height: 20px; width: 20px; } .oauth-signup-msg { margin: 0; margin-top: 5px; text-align: center; padding-left: 10px; } .oauth-signup-container { margin: 0; } .open-checkout-forms { display: flex; justify-content: space-between; border: 1px solid black; border-radius: 10px; align-items: center; padding: 0 10px; margin: 10px 0 10px 0; } .order-form { flex: 4; margin: 15px; } .order-summary { flex: 1; margin: 15px; padding: 15px; text-align: right; height: min-content; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); } .small-input { display: flex; justify-content: space-between; } .signup-container { text-align: center; } /*** Single Product View ***/ .single-product-container { display: flex; justify-content: center; min-height: 65vh; flex-wrap: wrap; opacity: 0; position: relative; top: 10px; } .single-product-container.loaded { top: 0; opacity: 1; transition: all 1s; } .image-loader { height: 20em; width: 20em; } .single-product-img { height: 25em; width: 25em; display: flex; justify-content: center; align-items: center; } .single-product-info-container { padding-left: 50px; padding-right: 50px; height: 40em; width: 22em; } .single-product-name { color: black; font-size: 3em; /* font-weight: 50; */ margin: 0; height: 2em; } .single-product-description { margin: 4em 0 2em 0; height: 3.5em; } .single-product-stock { display: flex; align-items: flex-end; height: 3em; color: #468faf; padding-bottom: 1.5em; border-bottom: 1px solid black; } .single-product-price { height: 1em; padding-left: 0.2em; } /*** Rating Stars ***/ label .star { float: left; } .hidden-radio { display: none; } .star { cursor: pointer; transition: color 200ms; height: 2em; width: 2em; } /***All Products***/ .allproducts-container { display: flex; justify-content: center; min-height: 65vh; } .flex-container { display: flex; flex-wrap: wrap; min-width: 35em; max-width: 70em; justify-content: center; } /***Product Card***/ .allImg { height: 150px; width: 150px; border-radius: 3px; } .indSticker { width: 150px; padding: 20px 30px 0px 30px; margin: 1em 20px 1em 20px; background-color: white; box-shadow: 3px 3px 10px darkgray; border-radius: 3px; opacity: 0; position: relative; top: 0px; } .indSticker.loaded { opacity: 1; transition: background-color 0.8s, opacity 1s; } .indSticker.loaded:hover { background-color: #f5f3f3; transition: background-color 0.8s; } .indSticker:active { color: #468faf; } #name { padding-left: 5px; padding-top: 10px; margin-top: 10px; margin-bottom: 0px; border-top: 2px solid rgb(228, 228, 228); } #price { margin-top: 10px; padding-left: 5px; } /***UserHome***/ #userWelcome { text-align: center; margin-top: 0; } #loggedInAs { text-align: center; } #userProfileNavBar { border: 1px solid #ccc; border-width: 1px 0; list-style: none; margin: 0; padding: 0; text-align: right; } #userProfileNavBar li { display: inline; } #userProfileNavBar a { display: inline; } #mailingInfoDiv { display: flex; flex-direction: column; margin: auto; padding-top: 20px; padding-bottom: 20px; padding-left: 50px; padding-right: 50px; width: 50%; border: 5px solid #000000; } #mailingInfoDiv label { padding-bottom: 10px; } #mailingInfoDiv button { margin-top: 30px; margin-bottom: 30px; margin-left: 37.5%; width: 25%; align-items: center; } #currentInfoDiv { display: flex; flex-direction: column; margin-top: 40px; margin-left: 103px; align-self: flex-start; width: 40%; height: 265px; border: 5px solid #000000; } #user-page-container { margin: auto; min-width: 35em; max-width: 70em; } .flex-container-User { display: flex; flex-direction: row; justify-content: center; min-width: 35em; max-width: 70em; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); } .flex-left { width: 40%; height: 100vh; } .flex-right { width: 60%; } .no-shadow { padding: 40px 0; box-shadow: 0px 0px 0px 0px white; } #currentInfoTitle { text-align: center; } .confirmation-container { width: 50vw; padding: 15px; border-radius: 10px; margin: 15px 0 0 15px; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } .confirmation-header { display: flex; align-items: center; height: 35px; } #footer { display: flex; justify-content: center; align-items: center; background-color: rgb(53, 52, 52); bottom: 0; height: 4em; padding: 0.8em 0em; width: 100%; } #github-icon { height: 2em; width: 2em; color: #468faf; transition: height 0.3s, width 0.3s; } #github-icon:hover { height: 2.2em; width: 2.2em; transition: height 0.3s, width 0.3s; } .parallax { height: auto; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; } .bgimg-1 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; opacity: 0.65; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url('/img1.jpg'); min-height: 1000px; } .caption { font: 400 15px/1.8 'Lato', sans-serif; position: absolute; left: 0; top: 50%; width: 100%; text-align: center; color: #000; } .border { font: 400 15px/1.8 'Lato', sans-serif; text-align: center; background-color: #111; color: #fff; padding: 18px; font-size: 25px; letter-spacing: 10px; } #div1 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; padding: 50px 80px; text-align: justify; z-index: -1; } #h3-1 { letter-spacing: 5px; text-transform: uppercase; font: 20px 'Lato', sans-serif; color: #111; text-align: center; } .bgimg-2 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; opacity: 0.65; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url('/img2.png'); min-height: 400px; } #span1 { font: 400 15px/1.8 'Lato', sans-serif; text-align: center; padding: 18px; letter-spacing: 10px; background-color: transparent; font-size: 25px; color: #000000; } #div2 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; } #div3 { font: 400 15px/1.8 'Lato', sans-serif; color: #ddd; background-color: #282e34; padding: 50px 80px; text-align: justify; } .bgimg-3 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; opacity: 0.65; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url('/img3.png'); min-height: 400px; } #span2 { font: 400 15px/1.8 'Lato', sans-serif; text-align: center; padding: 18px; letter-spacing: 10px; background-color: transparent; font-size: 25px; color: #000000; } #div4 { font: 400 15px/1.8 'Lato', sans-serif; color: #777; position: relative; } #div5 { font: 400 15px/1.8 'Lato', sans-serif; color: #ddd; background-color: #282e34; padding: 50px 80px; text-align: justify; } .strikethrough { text-decoration: line-through; } .sticky { position: fixed; top: 0; z-index: 1; width: 100%; background-color: #f8f8f8; } .content { margin-top: 8em; } .admins-nav { display: flex; justify-content: space-between; margin-right: 2%; } .admins-filter > p { width: 8vw; margin-left: 15px; cursor: pointer; transition: border-bottom 0.15s; } .admins-filter > p:hover { border-bottom: 2px solid black; } .user-card { margin: 15px; box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); padding: 15px; width: 100%; } .user-card > p { margin-top: 5px; } .user-radio { display: flex; align-items: center; } .user-radio > label { margin-left: 10px; } .admin-product-container { display: flex; flex-direction: column; } .admin-product-container > div { display: flex; } .admin-product-card { display: flex; border: 1px solid black; margin: 10px 0 15px 15px; padding: 0 10px 0 10px; align-items: center; } .admin-product-card:hover { box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.35); transition: all ease 0.5s; } .admin-product-card > img { height: 50px; width: 50px; } .admin-product-card > div { display: flex; margin: 0 10px 0 10px; width: 50vw; } .admin-product-card > div > p { padding: 0 10px 0 10px; } .delete-product { background-color: red; margin-top: 15px; height: 30px; } .delete-product:hover { background-color: #ffa8a8; transition: all ease 0.75s; } .product-update { display: flex; flex-direction: column; width: 100%; margin: 10px 0 5px 15px; } #inner-orders-container { border: 2px solid black; width: 100%; } /**Order History**/ #orders-container { align-items: center; margin-left: 20%; margin-right: 20%; } #orderHistoryTitle { text-align: center; } #confOrder { text-align: center; } #confOrder a { font-weight: bold; text-decoration: underline; } .purchasedItems { display: flex; flex-direction: row; text-align: center; margin: 15px; } .purchasedItems img { width: 50px; height: 50px; margin-right: 20px; } .purchasedItems a { text-decoration: underline; } .row { display: flex; flex-direction: row; flex-wrap: wrap; width: 100%; } .column { display: flex; flex-direction: row; flex-basis: 100%; flex: 3; } .subColumn1 { margin-right: 28%; } .subColumn2 { position: relative; } .subColumn3 { margin-left: 33%; position: relative; }
0.433022
0.078926
header { max-width: 1800px; background:red; max-height: 100px; } .dropbtn { width: 105px; font-family: Changa One; font-size: 18px; margin-top: 25px; background-color: #CE1900; color: white; padding: 16px; border: none; text-align: center; display: block; } .dropdown-content{ padding: 12px 16px; text-decoration: none; display: none; color:white; background-color: #CE1900; } .dropdown { position: relative; display: inline-block; } .dropdown-content a { color: white; padding: 27px 27px; border: none; text-decoration: none; display: block; } .dropdown:hover .dropdown-content { display: block; } .menu { display: inline-flex; float: left; color: white; } .menu p{ margin-left: auto; font-size: 18px; margin-right: 80px; } @media only screen and (min-width: 200px) { .col-1 {width: 8.33%;} .col-2 {width: 16.66%;} .col-3 {width: 25%;} .col-4 {width: 33.33%;} .col-5 {width: 41.66%;} .col-6 {width: 50%;} .col-7 {width: 58.33%;} .col-8 {width: 66.66%;} .col-9 {width: 75%;} .col-10 {width: 83.33%;} .col-11 {width: 91.66%;} .col-12 {width: 100%;} } .logo{ margin-top: 30px; max-width: 300px; max-height: 300px; } section{ display: table; clear: both; } article{ float: right; padding: 5px; background-color:#FFFFFF; } table{ display:inline-table; border-color: #FF0000; width: auto; height: auto; border: 1px solid #FF0000; border-spacing: 0px; } th{ border-bottom: #FF0000; border: 1px solid #FF0000; } body{ position: relative; width: 1440px; height: 1566px; background: linear-gradient(180deg, #FFC700 0%, #FF3D00 100%); font-family: "Changa One"; font-size: 18px; } .image{ max-width: 100px; max-height: 100px; margin-left: 55px; } .sorteio{ background-color: #FFFFFF; border-radius: 30px; border: 2px; border-color:red ; max-width: 500px; max-height: 200px; } .button{ border: 1ch; border-radius: 20px; background-color: #FFC700; border-color: #FFC700; margin: auto; padding: 10px; width: 150px; text-align: center; transition: transform 1s; align-self: center; font-family: "Changa One"; } .button:hover { transform: rotate(360deg); } .info{ border-style: solid; border-width: 1px; border-color: #FF0000; border-radius: 20px; max-width: 300px; } .nomes{ background-color: #FFFFFF; border-radius: 30px ; width: 40%; height: 10%; border: none; text-align: center; } .participa{ max-width: 350px; max-height: 1000px; border-radius: 20px; }
public/css/salaparticipante.css
header { max-width: 1800px; background:red; max-height: 100px; } .dropbtn { width: 105px; font-family: Changa One; font-size: 18px; margin-top: 25px; background-color: #CE1900; color: white; padding: 16px; border: none; text-align: center; display: block; } .dropdown-content{ padding: 12px 16px; text-decoration: none; display: none; color:white; background-color: #CE1900; } .dropdown { position: relative; display: inline-block; } .dropdown-content a { color: white; padding: 27px 27px; border: none; text-decoration: none; display: block; } .dropdown:hover .dropdown-content { display: block; } .menu { display: inline-flex; float: left; color: white; } .menu p{ margin-left: auto; font-size: 18px; margin-right: 80px; } @media only screen and (min-width: 200px) { .col-1 {width: 8.33%;} .col-2 {width: 16.66%;} .col-3 {width: 25%;} .col-4 {width: 33.33%;} .col-5 {width: 41.66%;} .col-6 {width: 50%;} .col-7 {width: 58.33%;} .col-8 {width: 66.66%;} .col-9 {width: 75%;} .col-10 {width: 83.33%;} .col-11 {width: 91.66%;} .col-12 {width: 100%;} } .logo{ margin-top: 30px; max-width: 300px; max-height: 300px; } section{ display: table; clear: both; } article{ float: right; padding: 5px; background-color:#FFFFFF; } table{ display:inline-table; border-color: #FF0000; width: auto; height: auto; border: 1px solid #FF0000; border-spacing: 0px; } th{ border-bottom: #FF0000; border: 1px solid #FF0000; } body{ position: relative; width: 1440px; height: 1566px; background: linear-gradient(180deg, #FFC700 0%, #FF3D00 100%); font-family: "Changa One"; font-size: 18px; } .image{ max-width: 100px; max-height: 100px; margin-left: 55px; } .sorteio{ background-color: #FFFFFF; border-radius: 30px; border: 2px; border-color:red ; max-width: 500px; max-height: 200px; } .button{ border: 1ch; border-radius: 20px; background-color: #FFC700; border-color: #FFC700; margin: auto; padding: 10px; width: 150px; text-align: center; transition: transform 1s; align-self: center; font-family: "Changa One"; } .button:hover { transform: rotate(360deg); } .info{ border-style: solid; border-width: 1px; border-color: #FF0000; border-radius: 20px; max-width: 300px; } .nomes{ background-color: #FFFFFF; border-radius: 30px ; width: 40%; height: 10%; border: none; text-align: center; } .participa{ max-width: 350px; max-height: 1000px; border-radius: 20px; }
0.371137
0.069415
.overlay { position: fixed; width: 100%; height: 100%; top: 0; left: 0; background: rgba(255, 255, 255, 1); z-index: 9999; } /* Effects */ .overlay-slidedown { visibility: hidden; -webkit-transform: translateY(-100%); transform: translateY(-100%); -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s; transition: transform 0.4s ease-in-out, visibility 0s 0.4s; } .overlay-slidedown.open { visibility: visible; -webkit-transform: translateY(0%); transform: translateY(0%); -webkit-transition: -webkit-transform 0.4s ease-in-out; transition: transform 0.4s ease-in-out; } /* Legal Content */ .legal-container { width: 100%; height: 80%; margin: 20px 20px 0 20px; padding: 0; } .legal-point { width: 30%; height: 90%; float: left; margin-right: 30px; overflow-y: scroll; } .legal-wrapper { width: 65%; height: 90%; float: left; overflow-y: scroll; } .clear { clear: both; } /* legal point */ .legal-point a { text-decoration: none; } /* button container */ .legal-button { text-align: center; } .legal-button button { width: 80px; height: 40px; margin: 0 20px 0 20px; background-color: #A1C820; border: none; text-transform: uppercase; color: #fff; border-radius: 5px; font-family: 'Roboto', Arial, sans-serif; font-weight: 500; } .legal-button button:hover { background-color: #ececec; color: #424242; } #legal-decline { background-color: #bdbdbd; } #legal-accept:disabled { background-color: #bdbdbd; } #legal-close:disabled { background-color: #bdbdbd; } /* tool tip if the plugin use outside the form */ [data-tips] { position: relative; text-decoration: none; } [data-tips]:after, [data-tips]:before { position: absolute; z-index: 100; opacity: 0; } [data-tips]:after { content: attr(data-tips); height: 25px; line-height: 25px; padding: 0 10px; font-size: 12px; text-align: center; color: #fff; background: #222; border-radius: 5px; text-shadow: 0 0 5px #000; -moz-box-shadow: 0 0 5px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3); box-shadow: 0 0 5px rgba(0,0,0,0.3); white-space: nowrap; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } [data-tips]:before { content: ""; width: 0; height: 0; border-width: 6px; border-style: solid; } [data-tips]:hover:after, [data-tips]:hover:before { opacity: 1; } /* Top tips */ [data-tips].legal-top-tip:after, [data-tips].legal-top-tip:before { -webkit-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; -moz-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; bottom: 90%; left: -9999px; margin-bottom: 12px; } [data-tips].legal-top-tip:before { border-color: #222 transparent transparent transparent; margin-bottom: 0; } [data-tips].legal-top-tip:hover:after, [data-tips].legal-top-tip:hover:before { bottom: 100%; left: 0; } [data-tips].legal-top-tip:hover:before { left: 15px; } /* LEGAL WRAPPER */ .legal-wrapper h1 { font-size: 32px; } .legal-wrapper h2 { font-size: 28px; } .legal-wrapper h3 { font-size: 24px; } .legal-wrapper h4 { font-size: 20px; } .legal-wrapper h5 { font-size: 16px; } .legal-wrapper h6 { font-size: 12px; } /* LEGAL POINTS */ .legal-point li { list-style: none; padding: 5px 0 5px 0; } .legal-point li > a {color: #90b310;} .legal-point li > a:hover {color: #660066;} .legal-point li > a:active {color: #660066;} /* .legal-point a:hover {color: #660066;} .legal-point a:active {color: #90b310;} .legal-point a:visited {color: #660066;}
css/legal-reader.css
.overlay { position: fixed; width: 100%; height: 100%; top: 0; left: 0; background: rgba(255, 255, 255, 1); z-index: 9999; } /* Effects */ .overlay-slidedown { visibility: hidden; -webkit-transform: translateY(-100%); transform: translateY(-100%); -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s; transition: transform 0.4s ease-in-out, visibility 0s 0.4s; } .overlay-slidedown.open { visibility: visible; -webkit-transform: translateY(0%); transform: translateY(0%); -webkit-transition: -webkit-transform 0.4s ease-in-out; transition: transform 0.4s ease-in-out; } /* Legal Content */ .legal-container { width: 100%; height: 80%; margin: 20px 20px 0 20px; padding: 0; } .legal-point { width: 30%; height: 90%; float: left; margin-right: 30px; overflow-y: scroll; } .legal-wrapper { width: 65%; height: 90%; float: left; overflow-y: scroll; } .clear { clear: both; } /* legal point */ .legal-point a { text-decoration: none; } /* button container */ .legal-button { text-align: center; } .legal-button button { width: 80px; height: 40px; margin: 0 20px 0 20px; background-color: #A1C820; border: none; text-transform: uppercase; color: #fff; border-radius: 5px; font-family: 'Roboto', Arial, sans-serif; font-weight: 500; } .legal-button button:hover { background-color: #ececec; color: #424242; } #legal-decline { background-color: #bdbdbd; } #legal-accept:disabled { background-color: #bdbdbd; } #legal-close:disabled { background-color: #bdbdbd; } /* tool tip if the plugin use outside the form */ [data-tips] { position: relative; text-decoration: none; } [data-tips]:after, [data-tips]:before { position: absolute; z-index: 100; opacity: 0; } [data-tips]:after { content: attr(data-tips); height: 25px; line-height: 25px; padding: 0 10px; font-size: 12px; text-align: center; color: #fff; background: #222; border-radius: 5px; text-shadow: 0 0 5px #000; -moz-box-shadow: 0 0 5px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3); box-shadow: 0 0 5px rgba(0,0,0,0.3); white-space: nowrap; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } [data-tips]:before { content: ""; width: 0; height: 0; border-width: 6px; border-style: solid; } [data-tips]:hover:after, [data-tips]:hover:before { opacity: 1; } /* Top tips */ [data-tips].legal-top-tip:after, [data-tips].legal-top-tip:before { -webkit-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; -moz-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; bottom: 90%; left: -9999px; margin-bottom: 12px; } [data-tips].legal-top-tip:before { border-color: #222 transparent transparent transparent; margin-bottom: 0; } [data-tips].legal-top-tip:hover:after, [data-tips].legal-top-tip:hover:before { bottom: 100%; left: 0; } [data-tips].legal-top-tip:hover:before { left: 15px; } /* LEGAL WRAPPER */ .legal-wrapper h1 { font-size: 32px; } .legal-wrapper h2 { font-size: 28px; } .legal-wrapper h3 { font-size: 24px; } .legal-wrapper h4 { font-size: 20px; } .legal-wrapper h5 { font-size: 16px; } .legal-wrapper h6 { font-size: 12px; } /* LEGAL POINTS */ .legal-point li { list-style: none; padding: 5px 0 5px 0; } .legal-point li > a {color: #90b310;} .legal-point li > a:hover {color: #660066;} .legal-point li > a:active {color: #660066;} /* .legal-point a:hover {color: #660066;} .legal-point a:active {color: #90b310;} .legal-point a:visited {color: #660066;}
0.340595
0.069479
.container { padding: 30px; padding-top: 0px; } #is_title { padding-left: 15px; padding-top: 10px; } #is_desc { padding-left: 20px; } .button-align { align-items: flex-end; padding-left: 10px; } .button-padding { padding: 0.46rem 0.75rem; } .button-margin { margin-left: 10px; } .edit-mode-button { margin-bottom: 10px; margin-left: 40px; } .num-width { margin-left: auto; width: 50%; } .num-label-align { width: 100%; max-width: 50%; text-align: right; } .cal-label { font-weight: bold; } .g-align { width: 78%; } #g-col { padding-left: 30px; } input:focus::placeholder { color: transparent; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* Location of the box */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: black; /* Fallback color */ background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */ } /* Modal Content */ .modal-content { position: relative; background-color: #fefefe; margin: auto; padding: 0; border: 1px solid #888; width: 80%; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); -webkit-animation-name: animatetop; -webkit-animation-duration: 0.4s; animation-name: animatetop; animation-duration: 0.4s; } /* Add Animation */ @-webkit-keyframes animatetop { from { top: -300px; opacity: 0; } to { top: 0; opacity: 1; } } @keyframes animatetop { from { top: -300px; opacity: 0; } to { top: 0; opacity: 1; } } /* The Close Button */ .close { color: white; float: right; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } .modal-header { padding: 2px 16px; background-color: #81c784; color: white; align-items: flex-start; display: block; } .modal-header h2 { padding-top: 12px; } .modal-body { padding: 2px 16px; } .modal-body .form-row { padding-top: 10px; padding-bottom: 30px; } .modal-body .table-scroll { border-style: solid; border-color: lightgray; border-width: thin; } .modal-body table tbody tr:hover { cursor: pointer; } .modal-body table tbody .selected { background: #ddedff; } .modal-footer { padding: 2px 16px; background-color: inherit; color: white; } .modal-footer button { margin: 5px; } .table-scroll { overflow-y: auto; max-height: 220px; } .is-entered { margin-top: 30px; } .convert-label { text-transform: capitalize; } #convert-0 { margin-left: 8px; } .dist-num-row { border-bottom: black; border-bottom-style: solid; border-bottom-width: thin; margin-top: 10px; } .dist-res-row { margin-top: 10px; } .invalid-input { border: red; border-width: 1px; border-style: solid; } .invalid-input :focus { border: red !important; border-width: 1px !important; border-style: solid !important; } .invalid-input:focus { border: red !important; border-width: 1px; border-style: solid; } /*# sourceMappingURL=styles.css.map */
static/styles.css
.container { padding: 30px; padding-top: 0px; } #is_title { padding-left: 15px; padding-top: 10px; } #is_desc { padding-left: 20px; } .button-align { align-items: flex-end; padding-left: 10px; } .button-padding { padding: 0.46rem 0.75rem; } .button-margin { margin-left: 10px; } .edit-mode-button { margin-bottom: 10px; margin-left: 40px; } .num-width { margin-left: auto; width: 50%; } .num-label-align { width: 100%; max-width: 50%; text-align: right; } .cal-label { font-weight: bold; } .g-align { width: 78%; } #g-col { padding-left: 30px; } input:focus::placeholder { color: transparent; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* Location of the box */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: black; /* Fallback color */ background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */ } /* Modal Content */ .modal-content { position: relative; background-color: #fefefe; margin: auto; padding: 0; border: 1px solid #888; width: 80%; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); -webkit-animation-name: animatetop; -webkit-animation-duration: 0.4s; animation-name: animatetop; animation-duration: 0.4s; } /* Add Animation */ @-webkit-keyframes animatetop { from { top: -300px; opacity: 0; } to { top: 0; opacity: 1; } } @keyframes animatetop { from { top: -300px; opacity: 0; } to { top: 0; opacity: 1; } } /* The Close Button */ .close { color: white; float: right; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } .modal-header { padding: 2px 16px; background-color: #81c784; color: white; align-items: flex-start; display: block; } .modal-header h2 { padding-top: 12px; } .modal-body { padding: 2px 16px; } .modal-body .form-row { padding-top: 10px; padding-bottom: 30px; } .modal-body .table-scroll { border-style: solid; border-color: lightgray; border-width: thin; } .modal-body table tbody tr:hover { cursor: pointer; } .modal-body table tbody .selected { background: #ddedff; } .modal-footer { padding: 2px 16px; background-color: inherit; color: white; } .modal-footer button { margin: 5px; } .table-scroll { overflow-y: auto; max-height: 220px; } .is-entered { margin-top: 30px; } .convert-label { text-transform: capitalize; } #convert-0 { margin-left: 8px; } .dist-num-row { border-bottom: black; border-bottom-style: solid; border-bottom-width: thin; margin-top: 10px; } .dist-res-row { margin-top: 10px; } .invalid-input { border: red; border-width: 1px; border-style: solid; } .invalid-input :focus { border: red !important; border-width: 1px !important; border-style: solid !important; } .invalid-input:focus { border: red !important; border-width: 1px; border-style: solid; } /*# sourceMappingURL=styles.css.map */
0.40392
0.064506
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Teko', sans-serif; } /* general */ ul { list-style: none; } a { text-decoration: none; } /* header */ header { display: flex; flex-direction: column; align-items: center; justify-content: space-between; width: 100%; height: 200px; margin-bottom: 10px; } .main_menu { display: flex; align-items: center; justify-content: center; width: 100%; } .main_menu nav { text-align: center; width: 85%; } .main_menu ul li { display: inline-block; padding: 10px; cursor: pointer; } .main_menu ul li.active, .main_menu ul li:hover { background-color: #B3E5FC; } .main_menu ul li.active > a, .main_menu ul li:hover > a { color: #444444; } .main_menu a, #search { font-size: 24px; color: #001942; cursor: pointer; } /* home */ .banner { width: 100vw; height: auto; display: flex; } .banner img { width: 100%; height: 100%; } .articles_container { width: 100vw; display: flex; cursor: pointer; } .articles_container .panel { width: 50%; position: relative; } .panel img { width: 100%; height: 100%; } .panel.articles_flex { display: flex; flex-wrap: wrap; } .panel .panel_articles_4 { width: 50%; height: 50%; position: relative; } .article_layover { position: absolute; top: 0; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; width: 100%; height: 100%; padding: 0 30px; background-color: #001942; color: #fff; opacity: 0; transition: .35s ease-in-out; text-align: center; } .article_layover svg { width: 60px; height: 60px; fill: #fff; } .article_layover h3 { font-size: 35px; font-family: 'serif'; } .panel:hover > .article_layover , .panel_articles_4:hover > .article_layover{ opacity: 0.8; } /* prodotti */ .card_container { display: flex; flex-wrap: wrap; width: 100vw; background-color: #DAEDF3; } .card { width: calc(100% / 3); position: relative; overflow: hidden; } .card:hover > img { transform: scale(1.15); } .card:hover > .layover { opacity: .8; } .card img { width: 100%; height: 100%; transition: all .35s ease-in-out; } .card .layover{ position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 90; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; color: #444444; background-color: #fff; transition: opacity 0.25s ease-in-out; opacity: 0; } .layover h3::after { display: block; content: ""; position: relative; left: 0; bottom: 10px; height: 1px; width: 15px; border-bottom: 3px solid black; margin: 0 auto; padding: 4px 0px; } .layover a { width: 100%; height: 100%; } .card .mk-svg-icon { fill: #444444; } /* news */ .news_title { width: 100vw; height: 90px; color: #fff; text-align: center; line-height: 90px; background-image: linear-gradient(to bottom right,#000149 0%, #23556d 100%); } .news_title h2 { letter-spacing: 2px; } #news .card img { filter: brightness(.4); } #news .card:hover > img { transform: scale(1); filter: brightness(0.6); } .news_overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; text-align: center; } .news_overlay .date { font-size: 24px; } .news_overlay p { margin: 60px 0; font-size: 28px; } .news_overlay .btn { padding: 5px 20px; border: 2px solid #fff; } /* footer */ footer { height: 100vh; width: 100%; display: flex; align-items: center; background-image: url('https://www.lamolisana.it/wp-content/uploads/2020/06/footer-montagne-bottom.jpg'); background-position: center bottom; background-repeat: no-repeat; } .footer_container { display: flex; width: 60%; margin: 0 auto; } .footer_container section { width: calc(100% / 4); padding: 20px; } .footer_container a, .footer_container p { color: grey; } .footer_container li a, .footer_container p { font-family: 'Open Sans', sans-serif; } .footer_container h2, .footer_container h2:hover > a, .contact_paragraph a:hover { color: #001942; } .footer_container p { font-size: 12px; } .footer_container ul.chevron_right li::before{ content: '\00BB'; color: grey; margin-right: 5px; }
public/css/app.css
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Teko', sans-serif; } /* general */ ul { list-style: none; } a { text-decoration: none; } /* header */ header { display: flex; flex-direction: column; align-items: center; justify-content: space-between; width: 100%; height: 200px; margin-bottom: 10px; } .main_menu { display: flex; align-items: center; justify-content: center; width: 100%; } .main_menu nav { text-align: center; width: 85%; } .main_menu ul li { display: inline-block; padding: 10px; cursor: pointer; } .main_menu ul li.active, .main_menu ul li:hover { background-color: #B3E5FC; } .main_menu ul li.active > a, .main_menu ul li:hover > a { color: #444444; } .main_menu a, #search { font-size: 24px; color: #001942; cursor: pointer; } /* home */ .banner { width: 100vw; height: auto; display: flex; } .banner img { width: 100%; height: 100%; } .articles_container { width: 100vw; display: flex; cursor: pointer; } .articles_container .panel { width: 50%; position: relative; } .panel img { width: 100%; height: 100%; } .panel.articles_flex { display: flex; flex-wrap: wrap; } .panel .panel_articles_4 { width: 50%; height: 50%; position: relative; } .article_layover { position: absolute; top: 0; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; width: 100%; height: 100%; padding: 0 30px; background-color: #001942; color: #fff; opacity: 0; transition: .35s ease-in-out; text-align: center; } .article_layover svg { width: 60px; height: 60px; fill: #fff; } .article_layover h3 { font-size: 35px; font-family: 'serif'; } .panel:hover > .article_layover , .panel_articles_4:hover > .article_layover{ opacity: 0.8; } /* prodotti */ .card_container { display: flex; flex-wrap: wrap; width: 100vw; background-color: #DAEDF3; } .card { width: calc(100% / 3); position: relative; overflow: hidden; } .card:hover > img { transform: scale(1.15); } .card:hover > .layover { opacity: .8; } .card img { width: 100%; height: 100%; transition: all .35s ease-in-out; } .card .layover{ position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 90; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; color: #444444; background-color: #fff; transition: opacity 0.25s ease-in-out; opacity: 0; } .layover h3::after { display: block; content: ""; position: relative; left: 0; bottom: 10px; height: 1px; width: 15px; border-bottom: 3px solid black; margin: 0 auto; padding: 4px 0px; } .layover a { width: 100%; height: 100%; } .card .mk-svg-icon { fill: #444444; } /* news */ .news_title { width: 100vw; height: 90px; color: #fff; text-align: center; line-height: 90px; background-image: linear-gradient(to bottom right,#000149 0%, #23556d 100%); } .news_title h2 { letter-spacing: 2px; } #news .card img { filter: brightness(.4); } #news .card:hover > img { transform: scale(1); filter: brightness(0.6); } .news_overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; text-align: center; } .news_overlay .date { font-size: 24px; } .news_overlay p { margin: 60px 0; font-size: 28px; } .news_overlay .btn { padding: 5px 20px; border: 2px solid #fff; } /* footer */ footer { height: 100vh; width: 100%; display: flex; align-items: center; background-image: url('https://www.lamolisana.it/wp-content/uploads/2020/06/footer-montagne-bottom.jpg'); background-position: center bottom; background-repeat: no-repeat; } .footer_container { display: flex; width: 60%; margin: 0 auto; } .footer_container section { width: calc(100% / 4); padding: 20px; } .footer_container a, .footer_container p { color: grey; } .footer_container li a, .footer_container p { font-family: 'Open Sans', sans-serif; } .footer_container h2, .footer_container h2:hover > a, .contact_paragraph a:hover { color: #001942; } .footer_container p { font-size: 12px; } .footer_container ul.chevron_right li::before{ content: '\00BB'; color: grey; margin-right: 5px; }
0.444083
0.075109
.slick-slider{position: relative;display: block;box-sizing: border-box;-webkit-user-select: none;-moz-user-select: none;-webkit-touch-callout: none;} .slick-list{position: relative;display: block;overflow: hidden;margin: 0;padding: 0;} .slick-list:focus{outline: none;} .slick-list.dragging{cursor: pointer;} .slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0);-o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);} .slick-track{position: relative;top: 0;left: 0;display: block;} .slick-track:before,.slick-track:after{display: table;content: '';} .slick-track:after{clear: both;} .slick-loading .slick-track{visibility: hidden;} .slick-slide{display: none;float: left;height: 100%;min-height: 1px;}[dir='rtl'] .slick-slide{float: right;} .slick-slide img{display: block;} .slick-slide.slick-loading img{display: none;} .slick-initialized .slick-slide{display: block;} .slick-loading .slick-slide{visibility: hidden;} .slick-vertical .slick-slide{display: block;height: auto;border: 1px solid transparent;} .slick-arrow.slick-hidden {display: none;} .slick-prev,.slick-next{font-size: 0;line-height: 0;position: absolute;z-index: 1;top: 50%;display: block;width: 25px;height: 56px;padding: 0;/* -webkit-transform: translate(0, -50%);-ms-transform: translate(0, -50%) */;transform: translate(0, -50%);cursor: pointer;color: transparent;border: none;outline: none;background: transparent;} .slick-prev:hover{background: url(../img/bg/btn-prev-rg-hover.png) no-repeat} .slick-next:hover{background: url(../img/bg/btn-next-rg-hover.png) no-repeat} .slick-prev{left: -35px;background: url(../img/bg/btn-prev-rg.png) no-repeat;transition:all 0.3s ease;} .slick-next{right: -35px;background: url(../img/bg/btn-next-rg.png) no-repeat;transition:all 0.3s ease;} .slick-dots{position: absolute;bottom: -20px;display: block;width: 100%;padding: 0;margin: 0;list-style: none;text-align: center;} .slick-dots{position: absolute;bottom: 10px;display: block;width: 100%;padding: 0;margin: 0;list-style: none;text-align: center;} .slick-dots li{position: relative;display: inline-block;width: 20px;height: 20px;margin: 0 5px;padding: 0;cursor: pointer;} .slick-dots li button{font-size: 0;line-height: 0;display: block;width: 20px;height: 20px;padding: 5px;cursor: pointer;color: transparent;border: 0;outline: none;background: transparent;} .slick-dots li button:hover,.slick-dots li button:focus{outline: none;} .slick-dots li button:hover:before,.slick-dots li button:focus:before{color:#2196F3;} .slick-dots li button:before{content: "\f111";font-family: FontAwesome;font-size: 11px;line-height: 20px;position: absolute;top: 0;left: 0;width: 20px;height: 20px;text-align: center;color:#9E9E9E;} .slick-dots .slick-active button:before{color:#2196F3;} /* ar-bx */ .arr_bx .slick-prev,.arr_bx .slick-next{font-size: 0;line-height: 0;position: absolute;z-index: 1;top: 50%;display: block;width: 26px;height: 46px;padding: 0;transform: translate(0, -50%);cursor: pointer;color: transparent;border: none;outline: none;background: transparent;} .arr_bx .slick-prev:hover:before{color:#0077d2;transition:color 0.3s;} .arr_bx .slick-next:hover:before{color:#0077d2;transition:color 0.3s;} .arr_bx .slick-prev:before{content:"\f104";font-family:FontAwesome;color:#95cbf5;font-size: 60px;display: block;transition:color 0.3s;} .arr_bx .slick-next:before{content:"\f105";font-family:FontAwesome;color:#95cbf5;font-size: 60px;display: block;transition:color 0.3s;} .arr_bx .slick-prev{left: -26px;transition:left 0.3s ease;} .arr_bx:hover .slick-prev{left: 0px;transition:left 0.3s ease;} .arr_bx .slick-next{right: -26px;transition:right 0.3s ease;} .arr_bx:hover .slick-next{right: 0px;transition:right 0.3s ease;}
public/css/slick.css
.slick-slider{position: relative;display: block;box-sizing: border-box;-webkit-user-select: none;-moz-user-select: none;-webkit-touch-callout: none;} .slick-list{position: relative;display: block;overflow: hidden;margin: 0;padding: 0;} .slick-list:focus{outline: none;} .slick-list.dragging{cursor: pointer;} .slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0);-o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);} .slick-track{position: relative;top: 0;left: 0;display: block;} .slick-track:before,.slick-track:after{display: table;content: '';} .slick-track:after{clear: both;} .slick-loading .slick-track{visibility: hidden;} .slick-slide{display: none;float: left;height: 100%;min-height: 1px;}[dir='rtl'] .slick-slide{float: right;} .slick-slide img{display: block;} .slick-slide.slick-loading img{display: none;} .slick-initialized .slick-slide{display: block;} .slick-loading .slick-slide{visibility: hidden;} .slick-vertical .slick-slide{display: block;height: auto;border: 1px solid transparent;} .slick-arrow.slick-hidden {display: none;} .slick-prev,.slick-next{font-size: 0;line-height: 0;position: absolute;z-index: 1;top: 50%;display: block;width: 25px;height: 56px;padding: 0;/* -webkit-transform: translate(0, -50%);-ms-transform: translate(0, -50%) */;transform: translate(0, -50%);cursor: pointer;color: transparent;border: none;outline: none;background: transparent;} .slick-prev:hover{background: url(../img/bg/btn-prev-rg-hover.png) no-repeat} .slick-next:hover{background: url(../img/bg/btn-next-rg-hover.png) no-repeat} .slick-prev{left: -35px;background: url(../img/bg/btn-prev-rg.png) no-repeat;transition:all 0.3s ease;} .slick-next{right: -35px;background: url(../img/bg/btn-next-rg.png) no-repeat;transition:all 0.3s ease;} .slick-dots{position: absolute;bottom: -20px;display: block;width: 100%;padding: 0;margin: 0;list-style: none;text-align: center;} .slick-dots{position: absolute;bottom: 10px;display: block;width: 100%;padding: 0;margin: 0;list-style: none;text-align: center;} .slick-dots li{position: relative;display: inline-block;width: 20px;height: 20px;margin: 0 5px;padding: 0;cursor: pointer;} .slick-dots li button{font-size: 0;line-height: 0;display: block;width: 20px;height: 20px;padding: 5px;cursor: pointer;color: transparent;border: 0;outline: none;background: transparent;} .slick-dots li button:hover,.slick-dots li button:focus{outline: none;} .slick-dots li button:hover:before,.slick-dots li button:focus:before{color:#2196F3;} .slick-dots li button:before{content: "\f111";font-family: FontAwesome;font-size: 11px;line-height: 20px;position: absolute;top: 0;left: 0;width: 20px;height: 20px;text-align: center;color:#9E9E9E;} .slick-dots .slick-active button:before{color:#2196F3;} /* ar-bx */ .arr_bx .slick-prev,.arr_bx .slick-next{font-size: 0;line-height: 0;position: absolute;z-index: 1;top: 50%;display: block;width: 26px;height: 46px;padding: 0;transform: translate(0, -50%);cursor: pointer;color: transparent;border: none;outline: none;background: transparent;} .arr_bx .slick-prev:hover:before{color:#0077d2;transition:color 0.3s;} .arr_bx .slick-next:hover:before{color:#0077d2;transition:color 0.3s;} .arr_bx .slick-prev:before{content:"\f104";font-family:FontAwesome;color:#95cbf5;font-size: 60px;display: block;transition:color 0.3s;} .arr_bx .slick-next:before{content:"\f105";font-family:FontAwesome;color:#95cbf5;font-size: 60px;display: block;transition:color 0.3s;} .arr_bx .slick-prev{left: -26px;transition:left 0.3s ease;} .arr_bx:hover .slick-prev{left: 0px;transition:left 0.3s ease;} .arr_bx .slick-next{right: -26px;transition:right 0.3s ease;} .arr_bx:hover .slick-next{right: 0px;transition:right 0.3s ease;}
0.272702
0.039232
body{ margin:0; padding:0; } .container{ width:1000px; height:auto; margin:0 auto; background-color:#ffffff; } /* .header{ width:100%; height:100px; background-color:#ef67da; }*/ .wrapper{ margin:0 auto; width:1000px; } .contactHeader{ width:100%; height:30px; background-color:#000000; position:relative; } .icon-bar { width: 70%; float: left; padding: 0 0; transition: all 0.3s ease; color: white; font-size: 20px; vertical-align: middle; } #social-media-icons{ width:30%; position:relative; float:right; display:inline; } .logo{ width:10%; height:100px; background-color:#ffffff; position:relative; float:left; } .logoImage{ max-height:100%; max-width:100%; } .title{ width:80%; height:100px; background-color:#ffffff; position:relative; float:left; } .textTitle{ word-spacing: 10px; text-shadow: 3px 2px red; font-family: "Comic Sans MS", cursive, sans-serif; padding-left:50px; font-size:40px; } .swachBharat{ width:10%; height:100%; position:relative; float:left; } .swachBharatImage{ max-width:100%; min-height:100px; } .loginRegister{ width:100%; height:50px; font-size:20px; background-color:#ffffff; margin-top:20px; margin-bottom:20px; position:relative; } .login { width: 46%; float: right; } .textRegisterColor{ color:#004ccb; } .menu{ width:1000px; height:100px; margin-top:60px; margin-bottom:10px; background-color:#ffffff; } .menuTable{ position:relative; color:#fa48ac; font-family: "Comic Sans MS", cursive, sans-serif; text-shadow: 1px 1px black; font-size:20px; height:100px; width:1000px; float:left; border:2px black; } .menuTableAnchor{ text-decoration:none; color:#fa48ac; font-family: "Comic Sans MS", cursive, sans-serif; text-shadow: 1px 1px black; font-size:20px; } /* .fUnordered{ margin:0px; padding:0px; } .fUnorderedItems{ background-color:orange; border:1px solid red; width:12%; text-align:center; height:50px; line-height:50px; position:relative; float:left; color:#fa48ac; font-family: "Comic Sans MS", cursive, sans-serif; text-shadow: 1px 1px black; list-style:none; } .fUnorderedItemsAnchor{ text-decoration:none; color:white; display:block; } .fUnorderedItemsAnchor:hover{ background-color:green; } */ .footer{ width:1000px; height:auto; background-color:#444242; position:relative; float:left; } .footetTable{ border:1px solid red; width:1000px; height:50px; text-align:center; text-decoration:bold; text-decoration:underline; font-size:25px; font-family:font-family: "Comic Sans MS", cursive, sans-serif; text-shadow: 3px 1px #2ed7f6; color:#dc0d0d; position:relative; float:left; } .footerUnorderedList{ text-decoration:none; display:block; text-align:center; list-style:none; text-decoration:none; font-size:20px; font-family:font-family: "Comic Sans MS", cursive, sans-serif; color:#ffffff; background-color:#444242; } .aboutPrivacyCondition{ width:1000px; height:auto; background-color:#adbbbe; position:relative; float:left; } .tableAboutPrivacyCondition{ text-align:center; width:1000px; } .aboutPrivacyConditionAnchor{ color:#0411b3; text-decoration:bold; } .icon-bar { width: 70%; float: left; padding: 0 0; transition: all 0.3s ease; color: white; font-size: 20px; vertical-align: middle; } #social-media-icons{ width:30%; position:relative; float:right; display:inline; } .socialImage{ max-height:25px; max-width:30px; background-color:white; padding:1px; } .logoImage{ max-height:100px; max-width:100%; }
css/mystyle.css
body{ margin:0; padding:0; } .container{ width:1000px; height:auto; margin:0 auto; background-color:#ffffff; } /* .header{ width:100%; height:100px; background-color:#ef67da; }*/ .wrapper{ margin:0 auto; width:1000px; } .contactHeader{ width:100%; height:30px; background-color:#000000; position:relative; } .icon-bar { width: 70%; float: left; padding: 0 0; transition: all 0.3s ease; color: white; font-size: 20px; vertical-align: middle; } #social-media-icons{ width:30%; position:relative; float:right; display:inline; } .logo{ width:10%; height:100px; background-color:#ffffff; position:relative; float:left; } .logoImage{ max-height:100%; max-width:100%; } .title{ width:80%; height:100px; background-color:#ffffff; position:relative; float:left; } .textTitle{ word-spacing: 10px; text-shadow: 3px 2px red; font-family: "Comic Sans MS", cursive, sans-serif; padding-left:50px; font-size:40px; } .swachBharat{ width:10%; height:100%; position:relative; float:left; } .swachBharatImage{ max-width:100%; min-height:100px; } .loginRegister{ width:100%; height:50px; font-size:20px; background-color:#ffffff; margin-top:20px; margin-bottom:20px; position:relative; } .login { width: 46%; float: right; } .textRegisterColor{ color:#004ccb; } .menu{ width:1000px; height:100px; margin-top:60px; margin-bottom:10px; background-color:#ffffff; } .menuTable{ position:relative; color:#fa48ac; font-family: "Comic Sans MS", cursive, sans-serif; text-shadow: 1px 1px black; font-size:20px; height:100px; width:1000px; float:left; border:2px black; } .menuTableAnchor{ text-decoration:none; color:#fa48ac; font-family: "Comic Sans MS", cursive, sans-serif; text-shadow: 1px 1px black; font-size:20px; } /* .fUnordered{ margin:0px; padding:0px; } .fUnorderedItems{ background-color:orange; border:1px solid red; width:12%; text-align:center; height:50px; line-height:50px; position:relative; float:left; color:#fa48ac; font-family: "Comic Sans MS", cursive, sans-serif; text-shadow: 1px 1px black; list-style:none; } .fUnorderedItemsAnchor{ text-decoration:none; color:white; display:block; } .fUnorderedItemsAnchor:hover{ background-color:green; } */ .footer{ width:1000px; height:auto; background-color:#444242; position:relative; float:left; } .footetTable{ border:1px solid red; width:1000px; height:50px; text-align:center; text-decoration:bold; text-decoration:underline; font-size:25px; font-family:font-family: "Comic Sans MS", cursive, sans-serif; text-shadow: 3px 1px #2ed7f6; color:#dc0d0d; position:relative; float:left; } .footerUnorderedList{ text-decoration:none; display:block; text-align:center; list-style:none; text-decoration:none; font-size:20px; font-family:font-family: "Comic Sans MS", cursive, sans-serif; color:#ffffff; background-color:#444242; } .aboutPrivacyCondition{ width:1000px; height:auto; background-color:#adbbbe; position:relative; float:left; } .tableAboutPrivacyCondition{ text-align:center; width:1000px; } .aboutPrivacyConditionAnchor{ color:#0411b3; text-decoration:bold; } .icon-bar { width: 70%; float: left; padding: 0 0; transition: all 0.3s ease; color: white; font-size: 20px; vertical-align: middle; } #social-media-icons{ width:30%; position:relative; float:right; display:inline; } .socialImage{ max-height:25px; max-width:30px; background-color:white; padding:1px; } .logoImage{ max-height:100px; max-width:100%; }
0.302494
0.058292
html, body { font-family: PingFangSC, STHeiTi, 'Microsoft Yahei', 'Segoe UI Emoji', 'NotoColorEmoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols', sans-serif } .ctn { padding: 50px 40px 40px 40px; } .inner { width: 500px; margin: 100px auto; } .logo { margin-bottom: 30px; } .img { display: flex; justify-content: center; align-items: center; margin-bottom: 10px; } .blue { color: #2779ff; } h2 { text-align: center; } .logo-en { text-align: center; color: #444; } footer { text-align: center; color: #999; } .note { font-size: 15px; } .average { color: #f62a49; font-size: 18px; } .save { color: #f62a49; font-size: 20px; } .mask { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: rgba(0, 0, 0, 0.8); z-index: 9; } #load { position: absolute; width: 600px; height: 36px; left: 50%; top: 40%; margin-left: -300px; overflow: visible; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: default; z-index: 10; } #load div { position: absolute; width: 20px; height: 36px; opacity: 0; font-family: Helvetica, Arial, sans-serif; animation: move 2s linear infinite; -o-animation: move 2s linear infinite; -moz-animation: move 2s linear infinite; -webkit-animation: move 2s linear infinite; transform: rotate(180deg); -o-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); color: #fff; font-size: 20px; } #load div:nth-child(2) { animation-delay: 0.2s; -o-animation-delay: 0.2s; -moz-animation-delay: 0.2s; -webkit-animation-delay: 0.2s; } #load div:nth-child(3) { animation-delay: 0.4s; -o-animation-delay: 0.4s; -webkit-animation-delay: 0.4s; -webkit-animation-delay: 0.4s; } #load div:nth-child(4) { animation-delay: 0.6s; -o-animation-delay: 0.6s; -moz-animation-delay: 0.6s; -webkit-animation-delay: 0.6s; } #load div:nth-child(5) { animation-delay: 0.8s; -o-animation-delay: 0.8s; -moz-animation-delay: 0.8s; -webkit-animation-delay: 0.8s; } #load div:nth-child(6) { animation-delay: 1s; -o-animation-delay: 1s; -moz-animation-delay: 1s; -webkit-animation-delay: 1s; } #load div:nth-child(7) { animation-delay: 1.2s; -o-animation-delay: 1.2s; -moz-animation-delay: 1.2s; -webkit-animation-delay: 1.2s; } @keyframes move { 0% { left: 0; opacity: 0; } 35% { left: 41%; -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 65% { left: 59%; -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 100% { left: 100%; -moz-transform: rotate(-180deg); -webkit-transform: rotate(-180deg); -o-transform: rotate(-180deg); transform: rotate(-180deg); opacity: 0; } } @-moz-keyframes move { 0% { left: 0; opacity: 0; } 35% { left: 41%; -moz-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 65% { left: 59%; -moz-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 100% { left: 100%; -moz-transform: rotate(-180deg); transform: rotate(-180deg); opacity: 0; } } @-webkit-keyframes move { 0% { left: 0; opacity: 0; } 35% { left: 41%; -webkit-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 65% { left: 59%; -webkit-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 100% { left: 100%; -webkit-transform: rotate(-180deg); transform: rotate(-180deg); opacity: 0; } } @-o-keyframes move { 0% { left: 0; opacity: 0; } 35% { left: 41%; -o-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 65% { left: 59%; -o-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 100% { left: 100%; -o-transform: rotate(-180deg); transform: rotate(-180deg); opacity: 0; } }
public/stylesheets/style.css
html, body { font-family: PingFangSC, STHeiTi, 'Microsoft Yahei', 'Segoe UI Emoji', 'NotoColorEmoji', 'Segoe UI Symbol', 'Android Emoji', 'EmojiSymbols', sans-serif } .ctn { padding: 50px 40px 40px 40px; } .inner { width: 500px; margin: 100px auto; } .logo { margin-bottom: 30px; } .img { display: flex; justify-content: center; align-items: center; margin-bottom: 10px; } .blue { color: #2779ff; } h2 { text-align: center; } .logo-en { text-align: center; color: #444; } footer { text-align: center; color: #999; } .note { font-size: 15px; } .average { color: #f62a49; font-size: 18px; } .save { color: #f62a49; font-size: 20px; } .mask { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: rgba(0, 0, 0, 0.8); z-index: 9; } #load { position: absolute; width: 600px; height: 36px; left: 50%; top: 40%; margin-left: -300px; overflow: visible; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: default; z-index: 10; } #load div { position: absolute; width: 20px; height: 36px; opacity: 0; font-family: Helvetica, Arial, sans-serif; animation: move 2s linear infinite; -o-animation: move 2s linear infinite; -moz-animation: move 2s linear infinite; -webkit-animation: move 2s linear infinite; transform: rotate(180deg); -o-transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); color: #fff; font-size: 20px; } #load div:nth-child(2) { animation-delay: 0.2s; -o-animation-delay: 0.2s; -moz-animation-delay: 0.2s; -webkit-animation-delay: 0.2s; } #load div:nth-child(3) { animation-delay: 0.4s; -o-animation-delay: 0.4s; -webkit-animation-delay: 0.4s; -webkit-animation-delay: 0.4s; } #load div:nth-child(4) { animation-delay: 0.6s; -o-animation-delay: 0.6s; -moz-animation-delay: 0.6s; -webkit-animation-delay: 0.6s; } #load div:nth-child(5) { animation-delay: 0.8s; -o-animation-delay: 0.8s; -moz-animation-delay: 0.8s; -webkit-animation-delay: 0.8s; } #load div:nth-child(6) { animation-delay: 1s; -o-animation-delay: 1s; -moz-animation-delay: 1s; -webkit-animation-delay: 1s; } #load div:nth-child(7) { animation-delay: 1.2s; -o-animation-delay: 1.2s; -moz-animation-delay: 1.2s; -webkit-animation-delay: 1.2s; } @keyframes move { 0% { left: 0; opacity: 0; } 35% { left: 41%; -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 65% { left: 59%; -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 100% { left: 100%; -moz-transform: rotate(-180deg); -webkit-transform: rotate(-180deg); -o-transform: rotate(-180deg); transform: rotate(-180deg); opacity: 0; } } @-moz-keyframes move { 0% { left: 0; opacity: 0; } 35% { left: 41%; -moz-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 65% { left: 59%; -moz-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 100% { left: 100%; -moz-transform: rotate(-180deg); transform: rotate(-180deg); opacity: 0; } } @-webkit-keyframes move { 0% { left: 0; opacity: 0; } 35% { left: 41%; -webkit-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 65% { left: 59%; -webkit-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 100% { left: 100%; -webkit-transform: rotate(-180deg); transform: rotate(-180deg); opacity: 0; } } @-o-keyframes move { 0% { left: 0; opacity: 0; } 35% { left: 41%; -o-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 65% { left: 59%; -o-transform: rotate(0deg); transform: rotate(0deg); opacity: 1; } 100% { left: 100%; -o-transform: rotate(-180deg); transform: rotate(-180deg); opacity: 0; } }
0.519034
0.084455
*{ box-sizing:border-box; } .header{ background-color:#cccccc; } .header a{ float:right; color:black; text-align: center; text-decoration: none; font-size: 18px; line-height:25px; border-radius: 4px; } .header-right{ float:right; } body{ margin:0 auto; display: flex; flex-direction:column; background-image: url("assets/images/full-bloom.png") } .bio { float: right; color: black; text-align: left; text-decoration: none; font-size: 18px; } .content{ padding:30px; margin:0 auto; width:960px; line-height:36px; border:#dddddd; background-color:#ffffff; } h1{ position: absolute; padding:20px; float:left; margin-left: 90px; margin-top: 0; color:#ffffff; background-color:#4aaaa5; font-family: 'Quicksand', sans-serif; text-align: center; box-sizing: border-box; width:15%; border: 2px solid #cccc; overflow: auto; } h2{ text-align: center; font-family:Georgia, 'Times New Roman', Times, serif; color:#4aaaa5; } h3{ text-align:center; position: absolute; top: 200px; left: 0; width: 100%; background-color: teal; } ul{ width: auto; float:right; margin-top: 8px; margin-right: 90px; } li{ display:inline-block; padding:10px; } a{ text-align: center; color: black; text-decoration: none; font-family: 'PT Sans', sans-serif; font-size:1.2vw; } a:hover{ color:teal; } .form{ text-align: left; } /* Container holding the image and the text */ .container { position: relative; text-align:center; color:BLACK; } .centered{ position: absolute; width:100%; top:50%; left:50%; transform: translate(-50%, -50%); background-color:teal; } /*Bottom right text*/ .text-block{ position:absolute; bottom: 20px; right: 20px; background-color: black; color:white; padding-left:20px; padding-right:20px; } /* Three image containers (use 25% for four, and 50% for two, etc) */ .column { flex:33.33%; padding: 5px; } .grid{ display:flex; } .image{ position: relative; width:100%; } .row{ margin:8px -16px; } .row, .row > .column{ padding: 8px; } /*create four euqal columns that floats next to each other */ .column { float:left; width:25%; } /* clear floats after image containers */ .row::after{ content: ""; clear: both; display: table; } input[type=text],textarea{ width:100%; padding:12px; border:1px solid #ccc; border-radius:4px; box-sizing:border-box; resize:vertical; } label{ padding: 12px 12px 12px 0; display:inline-block; } input[type=submit] { background-color:silver; padding:12px 20px; border:none; border-radius:4px; float:right; } input[type=submit]:hover { background-color: peachpuff; } .footer { flex-shrink:0; left:0; bottom:0; width:100%; background-size:100%; border-top: 8px solid #4aaaa5; background-color: #6666; text-align:center; } /*************************** Media Queries ****************************/ @media (max-width: 640px) { .header { width: 640px; } .header-right { border-bottom: none; } a{ text-align: center; width: 640px; } nav { background-color: #fff; width: 640px; border-bottom: 2px solid #ddd; } nav ul li { line-height: 60px; } nav ul li a { margin-left: 40px; padding-left: 70px; } .snake { margin-left: 150px; } p { word-wrap: break-word; margin-top: 20px; display: inline-block; } .header { width: 560px; margin-left: 40px; margin-bottom: 30px; } .image { margin-left: 100px; } } @media (min-width: 768px) and (max-width: 979px) { .header { width: 768px; } .header { margin-left: 20px; } nav ul { padding-right: 20px; } .content { width: 730px; margin-left: 20px; margin-bottom: 30px; } nav ul li { font-size: 16px; } } @media (min-width: 980px) { .header { width: 980px; } .header-right { margin-left: 80px; } nav ul { padding-right: 80px; } .snake { margin-left: 100px; } p { word-wrap: break-word; margin-top: 20px; display: inline-block; } .content { width: 470px; margin-left: 80px; margin-bottom: 30px; }
Responsiveness-Portfolio/assets/style/style.css
*{ box-sizing:border-box; } .header{ background-color:#cccccc; } .header a{ float:right; color:black; text-align: center; text-decoration: none; font-size: 18px; line-height:25px; border-radius: 4px; } .header-right{ float:right; } body{ margin:0 auto; display: flex; flex-direction:column; background-image: url("assets/images/full-bloom.png") } .bio { float: right; color: black; text-align: left; text-decoration: none; font-size: 18px; } .content{ padding:30px; margin:0 auto; width:960px; line-height:36px; border:#dddddd; background-color:#ffffff; } h1{ position: absolute; padding:20px; float:left; margin-left: 90px; margin-top: 0; color:#ffffff; background-color:#4aaaa5; font-family: 'Quicksand', sans-serif; text-align: center; box-sizing: border-box; width:15%; border: 2px solid #cccc; overflow: auto; } h2{ text-align: center; font-family:Georgia, 'Times New Roman', Times, serif; color:#4aaaa5; } h3{ text-align:center; position: absolute; top: 200px; left: 0; width: 100%; background-color: teal; } ul{ width: auto; float:right; margin-top: 8px; margin-right: 90px; } li{ display:inline-block; padding:10px; } a{ text-align: center; color: black; text-decoration: none; font-family: 'PT Sans', sans-serif; font-size:1.2vw; } a:hover{ color:teal; } .form{ text-align: left; } /* Container holding the image and the text */ .container { position: relative; text-align:center; color:BLACK; } .centered{ position: absolute; width:100%; top:50%; left:50%; transform: translate(-50%, -50%); background-color:teal; } /*Bottom right text*/ .text-block{ position:absolute; bottom: 20px; right: 20px; background-color: black; color:white; padding-left:20px; padding-right:20px; } /* Three image containers (use 25% for four, and 50% for two, etc) */ .column { flex:33.33%; padding: 5px; } .grid{ display:flex; } .image{ position: relative; width:100%; } .row{ margin:8px -16px; } .row, .row > .column{ padding: 8px; } /*create four euqal columns that floats next to each other */ .column { float:left; width:25%; } /* clear floats after image containers */ .row::after{ content: ""; clear: both; display: table; } input[type=text],textarea{ width:100%; padding:12px; border:1px solid #ccc; border-radius:4px; box-sizing:border-box; resize:vertical; } label{ padding: 12px 12px 12px 0; display:inline-block; } input[type=submit] { background-color:silver; padding:12px 20px; border:none; border-radius:4px; float:right; } input[type=submit]:hover { background-color: peachpuff; } .footer { flex-shrink:0; left:0; bottom:0; width:100%; background-size:100%; border-top: 8px solid #4aaaa5; background-color: #6666; text-align:center; } /*************************** Media Queries ****************************/ @media (max-width: 640px) { .header { width: 640px; } .header-right { border-bottom: none; } a{ text-align: center; width: 640px; } nav { background-color: #fff; width: 640px; border-bottom: 2px solid #ddd; } nav ul li { line-height: 60px; } nav ul li a { margin-left: 40px; padding-left: 70px; } .snake { margin-left: 150px; } p { word-wrap: break-word; margin-top: 20px; display: inline-block; } .header { width: 560px; margin-left: 40px; margin-bottom: 30px; } .image { margin-left: 100px; } } @media (min-width: 768px) and (max-width: 979px) { .header { width: 768px; } .header { margin-left: 20px; } nav ul { padding-right: 20px; } .content { width: 730px; margin-left: 20px; margin-bottom: 30px; } nav ul li { font-size: 16px; } } @media (min-width: 980px) { .header { width: 980px; } .header-right { margin-left: 80px; } nav ul { padding-right: 80px; } .snake { margin-left: 100px; } p { word-wrap: break-word; margin-top: 20px; display: inline-block; } .content { width: 470px; margin-left: 80px; margin-bottom: 30px; }
0.420719
0.081119
.modal-con { width: 460px; height: 400px; margin-left: -230px; margin-top: -200px; } .readModal{ width: 1100px; height: 600px; margin-left: -550px; margin-top: -300px; overflow-y: scroll; } .modal-detail-right{ margin:0 10px; width:46%; float:right; } .modal-detail-left{ margin:0 10px; margin-left:0; width:46%; float:left; } .modal-detail-title{ font-size:18px; color:#009be8; padding:6px 0; margin:6px 0; border-bottom: 4px solid #009be8; } .modal-btn-group{ overflow: hidden; clear:both; } .modal-detail-li{ font-size: 16px; list-style-type: none; vertical-align: middle; height:80px; /* line-height: 50px; */ margin: 10px 0; } .modal-detail-li-title{ font-size: 16px; list-style-type: none; vertical-align: middle; /* line-height: 50px; */ margin: 10px 0; } .imgList{ display:inline-block; width:80px; } .item_content img{ width:100%; height:80px; } .modal-detail-li .item_content,.modal-detail-li-title .item_content{ display: inline-block; width:20%; overflow: hidden; white-space: nowrap; text-overflow:ellipsis; margin:0 6px; text-align: center; } .modal-detail-li .item_li_text{ height:80px; line-height: 80px; } .manager-table{ /*overflow-y: hidden; */ overflow-x: scroll; margin:0; } .manager-table th{ white-space:nowrap; } .manager-table td{ white-space:nowrap; } .order-list{ width: 1000px; height: 400px; margin-left: -500px; margin-top: -200px; overflow-y: scroll; } .modal-input-groups{ position: relative; color: #818181; font-size: 0; padding-bottom: 20px; clear:both; } .modal-input-groups .modal-input-group{ width:36%; display: inline-block; margin-right:10px; } .modal-input-groups label { display: inline-block; width: 24%; font-size: 16px; line-height: 26px; vertical-align: top; } .modal-input-groups input { /* float: right; */ display: inline-block; width: 60%; font-size: 16px; line-height: 24px; padding: 0 12px; border: 1px solid #b6b6b6; border-radius: 13px; } .modal-input-groups button{ background: #fff; border:none; color:#009be8; border: 1px solid #009be8; padding:4px; font-size: 12px; border-radius: 20px; cursor: pointer; position: absolute; right: 10%; } .modal-detail-item table{ width:100%; border:1px solid #ddd; } .modal-detail-item table th{ border:1px solid #ddd; } .modal-detail-item table td{ text-align: center; border:1px solid #ddd; }
src/app/admin/store/order-list/order-list.component.css
.modal-con { width: 460px; height: 400px; margin-left: -230px; margin-top: -200px; } .readModal{ width: 1100px; height: 600px; margin-left: -550px; margin-top: -300px; overflow-y: scroll; } .modal-detail-right{ margin:0 10px; width:46%; float:right; } .modal-detail-left{ margin:0 10px; margin-left:0; width:46%; float:left; } .modal-detail-title{ font-size:18px; color:#009be8; padding:6px 0; margin:6px 0; border-bottom: 4px solid #009be8; } .modal-btn-group{ overflow: hidden; clear:both; } .modal-detail-li{ font-size: 16px; list-style-type: none; vertical-align: middle; height:80px; /* line-height: 50px; */ margin: 10px 0; } .modal-detail-li-title{ font-size: 16px; list-style-type: none; vertical-align: middle; /* line-height: 50px; */ margin: 10px 0; } .imgList{ display:inline-block; width:80px; } .item_content img{ width:100%; height:80px; } .modal-detail-li .item_content,.modal-detail-li-title .item_content{ display: inline-block; width:20%; overflow: hidden; white-space: nowrap; text-overflow:ellipsis; margin:0 6px; text-align: center; } .modal-detail-li .item_li_text{ height:80px; line-height: 80px; } .manager-table{ /*overflow-y: hidden; */ overflow-x: scroll; margin:0; } .manager-table th{ white-space:nowrap; } .manager-table td{ white-space:nowrap; } .order-list{ width: 1000px; height: 400px; margin-left: -500px; margin-top: -200px; overflow-y: scroll; } .modal-input-groups{ position: relative; color: #818181; font-size: 0; padding-bottom: 20px; clear:both; } .modal-input-groups .modal-input-group{ width:36%; display: inline-block; margin-right:10px; } .modal-input-groups label { display: inline-block; width: 24%; font-size: 16px; line-height: 26px; vertical-align: top; } .modal-input-groups input { /* float: right; */ display: inline-block; width: 60%; font-size: 16px; line-height: 24px; padding: 0 12px; border: 1px solid #b6b6b6; border-radius: 13px; } .modal-input-groups button{ background: #fff; border:none; color:#009be8; border: 1px solid #009be8; padding:4px; font-size: 12px; border-radius: 20px; cursor: pointer; position: absolute; right: 10%; } .modal-detail-item table{ width:100%; border:1px solid #ddd; } .modal-detail-item table th{ border:1px solid #ddd; } .modal-detail-item table td{ text-align: center; border:1px solid #ddd; }
0.347648
0.05498
*{ margin:0; padding: 0; } body{ font-family: Arial, Helvetica, sans-serif; } header{ background-color: #4D4D4D; padding: 25px; box-shadow: rgba(0, 0, 0, 0.37) 0px 2px 7px; } main{ position: relative; height: 81vh; background: #CCCCCC url('../fundo.jpg') no-repeat center center fixed; background-size: cover; padding: 1px; } #login{ text-align: right; padding-right: 50px; color: white; font-weight: 400; } #login > div{ display: inline-block; } #login input[type="email"],input[type="password"]{ border-radius: 5px; margin-right: 10px; margin-left: 5px; line-height: 20px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } #login input[type="button"]{ border:none; border-radius: 5px; margin-top: 10px; margin-right: 10px; margin-left: 5px; line-height: 20px; padding: 2px 10px; } input[type="button"]:hover{ background-color:rgb(169, 169, 169); box-shadow: inset rgba(0, 0, 0, 0.308) 0px 3px 10px; } #cadastro{ position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: black; background-color: #cccccc; border-radius: 8px; width: 300px; padding: 30px; margin: auto; box-shadow: rgba(0, 0, 0, 0.377) 5px 5px 10px 1px; } #cadastro h1{ border-radius: 8px 8px 0px 0px; text-align: center; background-color: #4D4D4D; color: white; margin: -30px; padding: 30px; margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } #cadastro p{ text-align: center; margin-top: 10px; } #cadastro input{ text-align: center; width: 220px; display: block; border:none; margin: auto; margin-top: 15px; border-radius: 5px; line-height: 30px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } #cadastro input[type="button"]{ display: block; background-color: #7a06d3; border-radius: 5px; line-height: 20px; padding: 6px; border:none; margin: auto; margin-top: 30px; width: 100px; } #cadastro input[type="button"]:hover{ background-color:#5C059E; } footer{ background-color: black; color: white; padding: 21.5px; text-align: center; } @media(max-width:700px) and (min-height:620px) { #login > div{ display: block; } #cadastro{ position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: black; background-color: #cccccc; border-radius: 8px; width: 300px; height: 400px; padding: 20px; margin: auto; box-shadow: rgba(0, 0, 0, 0.377) 5px 5px 10px 1px; } #cadastro h1{ border-radius: 8px 8px 0px 0px; text-align: center; background-color: #4D4D4D; color: white; margin: -20px; padding: 20px; margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } #cadastro input{ text-align: center; width: 220px; display: block; border:none; margin: auto; margin-top: 6px; border-radius: 5px; line-height: 30px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } }
logins/login01/estilos/style.css
*{ margin:0; padding: 0; } body{ font-family: Arial, Helvetica, sans-serif; } header{ background-color: #4D4D4D; padding: 25px; box-shadow: rgba(0, 0, 0, 0.37) 0px 2px 7px; } main{ position: relative; height: 81vh; background: #CCCCCC url('../fundo.jpg') no-repeat center center fixed; background-size: cover; padding: 1px; } #login{ text-align: right; padding-right: 50px; color: white; font-weight: 400; } #login > div{ display: inline-block; } #login input[type="email"],input[type="password"]{ border-radius: 5px; margin-right: 10px; margin-left: 5px; line-height: 20px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } #login input[type="button"]{ border:none; border-radius: 5px; margin-top: 10px; margin-right: 10px; margin-left: 5px; line-height: 20px; padding: 2px 10px; } input[type="button"]:hover{ background-color:rgb(169, 169, 169); box-shadow: inset rgba(0, 0, 0, 0.308) 0px 3px 10px; } #cadastro{ position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: black; background-color: #cccccc; border-radius: 8px; width: 300px; padding: 30px; margin: auto; box-shadow: rgba(0, 0, 0, 0.377) 5px 5px 10px 1px; } #cadastro h1{ border-radius: 8px 8px 0px 0px; text-align: center; background-color: #4D4D4D; color: white; margin: -30px; padding: 30px; margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } #cadastro p{ text-align: center; margin-top: 10px; } #cadastro input{ text-align: center; width: 220px; display: block; border:none; margin: auto; margin-top: 15px; border-radius: 5px; line-height: 30px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } #cadastro input[type="button"]{ display: block; background-color: #7a06d3; border-radius: 5px; line-height: 20px; padding: 6px; border:none; margin: auto; margin-top: 30px; width: 100px; } #cadastro input[type="button"]:hover{ background-color:#5C059E; } footer{ background-color: black; color: white; padding: 21.5px; text-align: center; } @media(max-width:700px) and (min-height:620px) { #login > div{ display: block; } #cadastro{ position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: black; background-color: #cccccc; border-radius: 8px; width: 300px; height: 400px; padding: 20px; margin: auto; box-shadow: rgba(0, 0, 0, 0.377) 5px 5px 10px 1px; } #cadastro h1{ border-radius: 8px 8px 0px 0px; text-align: center; background-color: #4D4D4D; color: white; margin: -20px; padding: 20px; margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } #cadastro input{ text-align: center; width: 220px; display: block; border:none; margin: auto; margin-top: 6px; border-radius: 5px; line-height: 30px; box-shadow: rgba(0, 0, 0, 0.199) 0px 2px 7px; } }
0.393968
0.124559
.slick-header.ui-state-default, .slick-headerrow.ui-state-default { width: 100%; overflow: hidden; border-left: 0px; } .slick-header-columns, .slick-headerrow-columns { position: relative; white-space: nowrap; cursor: default; overflow: hidden; } .slick-header-column.ui-state-default { position: relative; display: inline-block; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; height: 26px; line-height: 16px; margin: 0; padding: 4px; border-right: 1px solid silver; border-left: 0px; border-top: 0px; border-bottom: 0px; float: left; } .slick-headerrow-column.ui-state-default { padding: 4px; } .slick-header-column-sorted { font-style: italic; } .slick-sort-indicator { display: inline-block; width: 8px; height: 5px; margin-left: 4px; margin-top: 6px; float: left; } .slick-sort-indicator-desc { background: url(../../img/sort-desc.gif); } .slick-sort-indicator-asc { background: url(../../img/sort-asc.gif); } .slick-resizable-handle { position: absolute; font-size: 0.1px; display: block; cursor: col-resize; width: 4px; right: 0px; top: 0; height: 100%; } .slick-sortable-placeholder { background: silver; } .grid-canvas { position: relative; outline: 0; } .slick-row.ui-widget-content, .slick-row.ui-state-active { position: absolute; border: 0px; width: 100%; } .slick-cell, .slick-headerrow-column { position: absolute; border: 1px solid transparent; border-right: 1px dotted silver; border-bottom-color: silver; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; vertical-align: middle; z-index: 1; padding: 1px 2px 2px 1px; margin: 0; white-space: nowrap; cursor: default; } .slick-group { } .slick-group-toggle { display: inline-block; } .slick-cell.highlighted { background: lightskyblue; background: rgba(0, 0, 255, 0.2); -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; } .slick-cell.flashing { border: 1px solid red !important; } .slick-cell.editable { z-index: 11; overflow: visible; background: white; border-color: black; border-style: solid; } .slick-cell:focus { outline: none; } .slick-reorder-proxy { display: inline-block; background: blue; opacity: 0.15; filter: alpha(opacity = 15); cursor: move; } .slick-reorder-guide { display: inline-block; height: 2px; background: blue; opacity: 0.7; filter: alpha(opacity = 70); } .slick-selection { z-index: 10; position: absolute; border: 2px dashed black; } #myGrid { background: white; outline: 0; border: 1px solid gray; } .grid-header { border: 1px solid gray; border-bottom: 0; border-top: 0; background: url('../images/header-bg.gif') repeat-x center top; color: black; height: 24px; line-height: 24px; } .grid-header label { display: inline-block; font-weight: bold; margin: auto auto auto 6px; } .grid-header .ui-icon { margin: 4px 4px auto 6px; background-color: transparent; border-color: transparent; } .grid-header .ui-icon.ui-state-hover { background-color: white; } .grid-header #txtSearch { margin: 0 4px 0 4px; padding: 2px 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border: 1px solid silver; } .options-panel { -moz-border-radius: 6px; -webkit-border-radius: 6px; border: 1px solid silver; background: #f0f0f0; padding: 4px; margin-bottom: 20px; width: 320px; position: absolute; top: 0px; left: 650px; } /* Individual cell styles */ .slick-cell.task-name { font-weight: bold; text-align: right; } .slick-cell.task-percent { text-align: right; } .slick-cell.cell-move-handle { font-weight: bold; text-align: right; border-right: solid gray; background: #efefef; cursor: move; } .cell-move-handle:hover { background: #b6b9bd; } .slick-row.selected .cell-move-handle { background: #D5DC8D; } .slick-row .cell-actions { text-align: left; } .slick-row.complete { background-color: #DFD; color: #555; } .percent-complete-bar { display: inline-block; height: 6px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } /* Slick.Editors.Text, Slick.Editors.Date */ input.editor-text { width: 100%; height: 100%; border: 0; margin: 0; background: transparent; outline: 0; padding: 0; } .ui-datepicker-trigger { margin-top: 2px; padding: 0; vertical-align: top; } /* Slick.Editors.PercentComplete */ input.editor-percentcomplete { width: 100%; height: 100%; border: 0; margin: 0; background: transparent; outline: 0; padding: 0; float: left; } .editor-percentcomplete-picker { position: relative; display: inline-block; width: 16px; height: 100%; background: url("../images/pencil.gif") no-repeat center center; overflow: visible; z-index: 1000; float: right; } .editor-percentcomplete-helper { border: 0 solid gray; position: absolute; top: -2px; left: -9px; background: url("../images/editor-helper-bg.gif") no-repeat top left; padding-left: 9px; width: 120px; height: 140px; display: none; overflow: visible; } .editor-percentcomplete-wrapper { background: beige; padding: 20px 8px; width: 100%; height: 98px; border: 1px solid gray; border-left: 0; } .editor-percentcomplete-buttons { float: right; } .editor-percentcomplete-buttons button { width: 80px; } .editor-percentcomplete-slider { float: left; } .editor-percentcomplete-picker:hover .editor-percentcomplete-helper { display: block; } .editor-percentcomplete-helper:hover { display: block; } /* Slick.Editors.YesNoSelect */ select.editor-yesno { width: 100%; margin: 0; vertical-align: middle; } /* Slick.Editors.Checkbox */ input.editor-checkbox { margin: 0; height: 100%; padding: 0; border: 0; }
public/css/plugins/slickgrid/slick.grid.css
.slick-header.ui-state-default, .slick-headerrow.ui-state-default { width: 100%; overflow: hidden; border-left: 0px; } .slick-header-columns, .slick-headerrow-columns { position: relative; white-space: nowrap; cursor: default; overflow: hidden; } .slick-header-column.ui-state-default { position: relative; display: inline-block; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; height: 26px; line-height: 16px; margin: 0; padding: 4px; border-right: 1px solid silver; border-left: 0px; border-top: 0px; border-bottom: 0px; float: left; } .slick-headerrow-column.ui-state-default { padding: 4px; } .slick-header-column-sorted { font-style: italic; } .slick-sort-indicator { display: inline-block; width: 8px; height: 5px; margin-left: 4px; margin-top: 6px; float: left; } .slick-sort-indicator-desc { background: url(../../img/sort-desc.gif); } .slick-sort-indicator-asc { background: url(../../img/sort-asc.gif); } .slick-resizable-handle { position: absolute; font-size: 0.1px; display: block; cursor: col-resize; width: 4px; right: 0px; top: 0; height: 100%; } .slick-sortable-placeholder { background: silver; } .grid-canvas { position: relative; outline: 0; } .slick-row.ui-widget-content, .slick-row.ui-state-active { position: absolute; border: 0px; width: 100%; } .slick-cell, .slick-headerrow-column { position: absolute; border: 1px solid transparent; border-right: 1px dotted silver; border-bottom-color: silver; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; vertical-align: middle; z-index: 1; padding: 1px 2px 2px 1px; margin: 0; white-space: nowrap; cursor: default; } .slick-group { } .slick-group-toggle { display: inline-block; } .slick-cell.highlighted { background: lightskyblue; background: rgba(0, 0, 255, 0.2); -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; } .slick-cell.flashing { border: 1px solid red !important; } .slick-cell.editable { z-index: 11; overflow: visible; background: white; border-color: black; border-style: solid; } .slick-cell:focus { outline: none; } .slick-reorder-proxy { display: inline-block; background: blue; opacity: 0.15; filter: alpha(opacity = 15); cursor: move; } .slick-reorder-guide { display: inline-block; height: 2px; background: blue; opacity: 0.7; filter: alpha(opacity = 70); } .slick-selection { z-index: 10; position: absolute; border: 2px dashed black; } #myGrid { background: white; outline: 0; border: 1px solid gray; } .grid-header { border: 1px solid gray; border-bottom: 0; border-top: 0; background: url('../images/header-bg.gif') repeat-x center top; color: black; height: 24px; line-height: 24px; } .grid-header label { display: inline-block; font-weight: bold; margin: auto auto auto 6px; } .grid-header .ui-icon { margin: 4px 4px auto 6px; background-color: transparent; border-color: transparent; } .grid-header .ui-icon.ui-state-hover { background-color: white; } .grid-header #txtSearch { margin: 0 4px 0 4px; padding: 2px 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border: 1px solid silver; } .options-panel { -moz-border-radius: 6px; -webkit-border-radius: 6px; border: 1px solid silver; background: #f0f0f0; padding: 4px; margin-bottom: 20px; width: 320px; position: absolute; top: 0px; left: 650px; } /* Individual cell styles */ .slick-cell.task-name { font-weight: bold; text-align: right; } .slick-cell.task-percent { text-align: right; } .slick-cell.cell-move-handle { font-weight: bold; text-align: right; border-right: solid gray; background: #efefef; cursor: move; } .cell-move-handle:hover { background: #b6b9bd; } .slick-row.selected .cell-move-handle { background: #D5DC8D; } .slick-row .cell-actions { text-align: left; } .slick-row.complete { background-color: #DFD; color: #555; } .percent-complete-bar { display: inline-block; height: 6px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } /* Slick.Editors.Text, Slick.Editors.Date */ input.editor-text { width: 100%; height: 100%; border: 0; margin: 0; background: transparent; outline: 0; padding: 0; } .ui-datepicker-trigger { margin-top: 2px; padding: 0; vertical-align: top; } /* Slick.Editors.PercentComplete */ input.editor-percentcomplete { width: 100%; height: 100%; border: 0; margin: 0; background: transparent; outline: 0; padding: 0; float: left; } .editor-percentcomplete-picker { position: relative; display: inline-block; width: 16px; height: 100%; background: url("../images/pencil.gif") no-repeat center center; overflow: visible; z-index: 1000; float: right; } .editor-percentcomplete-helper { border: 0 solid gray; position: absolute; top: -2px; left: -9px; background: url("../images/editor-helper-bg.gif") no-repeat top left; padding-left: 9px; width: 120px; height: 140px; display: none; overflow: visible; } .editor-percentcomplete-wrapper { background: beige; padding: 20px 8px; width: 100%; height: 98px; border: 1px solid gray; border-left: 0; } .editor-percentcomplete-buttons { float: right; } .editor-percentcomplete-buttons button { width: 80px; } .editor-percentcomplete-slider { float: left; } .editor-percentcomplete-picker:hover .editor-percentcomplete-helper { display: block; } .editor-percentcomplete-helper:hover { display: block; } /* Slick.Editors.YesNoSelect */ select.editor-yesno { width: 100%; margin: 0; vertical-align: middle; } /* Slick.Editors.Checkbox */ input.editor-checkbox { margin: 0; height: 100%; padding: 0; border: 0; }
0.42477
0.079496
@font-face { font-family: 'GothamRound'; src: url("https://cdn.releasepage.co/fonts/gothic-rounded/GothamRoundedLight_21020.ttf") format("truetype"); } @font-face { font-family: 'GothamRound-Book'; src: url("https://cdn.releasepage.co/fonts/gothic-rounded/GothamRoundedMedium_21022.ttf") format("truetype"); } body { font-family: 'GothamRound'; line-height: 1.25; } p { margin: 1rem 0; } .section-lead { text-align: center; padding: 0 2rem; width: 900px; max-width: 100%; font-size: 20px; line-height: 1.4; opacity: 0.75; } h2 { font-family: 'GothamRound-Book'; margin: 1rem 0; font-size: 50px; display: block; } .row { display: flex; flex-direction: column; align-items: center; padding: 2rem 0 0 0; } .row--light { color: #50514F; } .row--dark { color: white; } .row:after { display: table; content: ""; clear: both; } .customise-feature__content { display: flex; width: 100%; } .customise-feature__helptext { flex: 1; padding: 2rem; position: relative; } .helptext { z-index: 9; position: absolute; text-align: center; left: 0; right: 0; top: 150px; } .helptext:before { height: 4px; border-radius: 2px; } .helptext:after { height: 16px; width: 16px; border-radius: 50%; } .helptext:after, .helptext:before { position: absolute; background: #70C1B3; } .helptext h3 { font-size: 20px; margin: 1rem auto; max-width: 300px; } .helptext p { font-size: 16px; max-width: 300px; line-height: 1.4; margin: 0 auto; } .helptext--branding { top: 200px; } .helptext--branding .colorboxes { position: relative; top: -20px; left: 50%; width: 120px; transform: translateX(-50%); } .helptext--branding .colorbox { border: 1px solid rgba(0, 0, 0, 0.25); width: 20px; height: 20px; float: left; margin-left: 5px; border-radius: 5px; } .helptext--branding .colorbox--red { background: #F25F5C; } .helptext--branding .colorbox--green { background: #70C1B3; } .helptext--branding .colorbox--yellow { background: #FFE066; } .helptext--branding .colorbox--blue { background: #247BA0; } .helptext--describe { top: 600px; width: 300px; margin: 0 auto; } .helptext--describe:before { content: ""; width: 300px; left: 340px; top: 85px; } .helptext--describe:after { content: ""; left: 630px; top: 78px; } .helptext--power { top: 950px; width: 300px; margin: 0 auto; } .helptext--contents { top: 1950px; } .helptext--groups { top: 1420px; width: 400px; margin: 0 auto; } .helptext--groups:after { content: ""; left: 790px; top: 74px; } .helptext--groups:before { content: ""; width: 420px; top: 80px; left: 380px; } .customise-feature__image { position: relative; flex: 1; background: white; border-top-left-radius: 10px; border-top-right-radius: 10px; margin-top: 3rem; } .browser-container { border: 2px solid #ececec; background: white; width: 100%; max-width: 745px; min-width: 330px; border-radius: 12px 12px 0 0; min-height: 200px; box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25); } .browser-container--shadowed { box-shadow: rgba(0, 0, 0, 0.57) 0px 0px 8px; } .browser-container--screenshot { height: 300px; max-width: 400px; } .browser-container--screenshot .browser-container__content { overflow: hidden; } .browser-container__header { background: #ececec; height: 2.5rem; width: 100%; border-radius: 10px 10px 0px 0; } .browser-container__header-dot { border-radius: 50%; height: .75rem; width: .75rem; margin-top: .85rem; margin-left: .55rem; float: left; } .browser-container__header-dot--red { background: #fc625d; } .browser-container__header-dot--green { background: #34c84a; } .browser-container__header-dot--yellow { background: #fdbe41; } .browser-container__content { height: calc(100% - 2rem); } .browser__image { width: 100%; } .browser__image--background { opacity: 0.6; } .browser-container__address { position: relative; top: 0.35rem; margin-left: 5rem; background-color: white; border-radius: 10px; padding: 5px 20px; font-size: 16px; width: 50%; } .releasepage-image { width: 750px; }
layout-master/layout114/stylesheets/style.css
@font-face { font-family: 'GothamRound'; src: url("https://cdn.releasepage.co/fonts/gothic-rounded/GothamRoundedLight_21020.ttf") format("truetype"); } @font-face { font-family: 'GothamRound-Book'; src: url("https://cdn.releasepage.co/fonts/gothic-rounded/GothamRoundedMedium_21022.ttf") format("truetype"); } body { font-family: 'GothamRound'; line-height: 1.25; } p { margin: 1rem 0; } .section-lead { text-align: center; padding: 0 2rem; width: 900px; max-width: 100%; font-size: 20px; line-height: 1.4; opacity: 0.75; } h2 { font-family: 'GothamRound-Book'; margin: 1rem 0; font-size: 50px; display: block; } .row { display: flex; flex-direction: column; align-items: center; padding: 2rem 0 0 0; } .row--light { color: #50514F; } .row--dark { color: white; } .row:after { display: table; content: ""; clear: both; } .customise-feature__content { display: flex; width: 100%; } .customise-feature__helptext { flex: 1; padding: 2rem; position: relative; } .helptext { z-index: 9; position: absolute; text-align: center; left: 0; right: 0; top: 150px; } .helptext:before { height: 4px; border-radius: 2px; } .helptext:after { height: 16px; width: 16px; border-radius: 50%; } .helptext:after, .helptext:before { position: absolute; background: #70C1B3; } .helptext h3 { font-size: 20px; margin: 1rem auto; max-width: 300px; } .helptext p { font-size: 16px; max-width: 300px; line-height: 1.4; margin: 0 auto; } .helptext--branding { top: 200px; } .helptext--branding .colorboxes { position: relative; top: -20px; left: 50%; width: 120px; transform: translateX(-50%); } .helptext--branding .colorbox { border: 1px solid rgba(0, 0, 0, 0.25); width: 20px; height: 20px; float: left; margin-left: 5px; border-radius: 5px; } .helptext--branding .colorbox--red { background: #F25F5C; } .helptext--branding .colorbox--green { background: #70C1B3; } .helptext--branding .colorbox--yellow { background: #FFE066; } .helptext--branding .colorbox--blue { background: #247BA0; } .helptext--describe { top: 600px; width: 300px; margin: 0 auto; } .helptext--describe:before { content: ""; width: 300px; left: 340px; top: 85px; } .helptext--describe:after { content: ""; left: 630px; top: 78px; } .helptext--power { top: 950px; width: 300px; margin: 0 auto; } .helptext--contents { top: 1950px; } .helptext--groups { top: 1420px; width: 400px; margin: 0 auto; } .helptext--groups:after { content: ""; left: 790px; top: 74px; } .helptext--groups:before { content: ""; width: 420px; top: 80px; left: 380px; } .customise-feature__image { position: relative; flex: 1; background: white; border-top-left-radius: 10px; border-top-right-radius: 10px; margin-top: 3rem; } .browser-container { border: 2px solid #ececec; background: white; width: 100%; max-width: 745px; min-width: 330px; border-radius: 12px 12px 0 0; min-height: 200px; box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25); } .browser-container--shadowed { box-shadow: rgba(0, 0, 0, 0.57) 0px 0px 8px; } .browser-container--screenshot { height: 300px; max-width: 400px; } .browser-container--screenshot .browser-container__content { overflow: hidden; } .browser-container__header { background: #ececec; height: 2.5rem; width: 100%; border-radius: 10px 10px 0px 0; } .browser-container__header-dot { border-radius: 50%; height: .75rem; width: .75rem; margin-top: .85rem; margin-left: .55rem; float: left; } .browser-container__header-dot--red { background: #fc625d; } .browser-container__header-dot--green { background: #34c84a; } .browser-container__header-dot--yellow { background: #fdbe41; } .browser-container__content { height: calc(100% - 2rem); } .browser__image { width: 100%; } .browser__image--background { opacity: 0.6; } .browser-container__address { position: relative; top: 0.35rem; margin-left: 5rem; background-color: white; border-radius: 10px; padding: 5px 20px; font-size: 16px; width: 50%; } .releasepage-image { width: 750px; }
0.525612
0.141252
html { height: 100%; font-size: 13px; font-family: arial; color: #404040; background: #e6e6e6; } body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td { margin: 0; padding: 0; } table { border-collapse: collapse; border-spacing: 0; } fieldset, img { border: 0; } address, caption, cite, code, dfn, em, strong, th, var { font-style: normal; font-weight: normal; } li { list-style: none; } caption, th { text-align: left; } h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; } q:before, q:after { content: ''; } abbr, acronym { border: 0; font-variant: normal; } sup { vertical-align: text-top; } sub { vertical-align: text-bottom; } input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; } input, textarea, select { *font-size: 100%; } legend { color: #000; } .label { padding: 1px 3px 2px; font-size: 0.75em; font-weight: bold; color: #fff; text-transform: uppercase; white-space: nowrap; background-color: #ccc; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .label.important { background-color: #c43c35; } .label.warning { background-color: #f89406; } .label.success { background-color: #46a546; } .label.notice { background-color: #62cffc; } .clear { clear: both; } .relative { position: relative; } .centered { margin: 0 auto; } .floatLeft { float: left; } .floatRight { float: right; } .clearfix { zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; zoom: 1; } .clearfix:after { clear: both; } .tabs { text-align: center; list-style: none; padding: 0 10px; line-height: 24px; height: 26px; overflow: hidden; font-size: 12px; font-family: verdana; position: absolute; bottom: 0; } .tabs li { border: 1px solid #aaa; background: #d1d1d1; display: block; float: left; position: relative; z-index: 0; text-shadow: 0 1px #fff; margin: 0 -3px; padding: 0; cursor: pointer; -moz-border-radius: 6px 6px 0 0; -webkit-border-radius: 6px; border-radius: 6px 6px 0 0; -moz-box-shadow: "0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #ffffff"; -webkit-box-shadow: "0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #ffffff"; box-shadow: "0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #ffffff"; -moz-transition: linear 0.05s all; -o-transition: linear 0.05s all; -webkit-transition: linear 0.05s all; transition: linear 0.05s all; background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, #ececec), color-stop(100%, #d1d1d1)); background: -moz-linear-gradient(#ececec 50%, #d1d1d1 100%); background: -webkit-linear-gradient(#ececec 50%, #d1d1d1 100%); background: linear-gradient(#ececec 50%, #d1d1d1 100%); } .tabs li:hover { background: #dadada; background-position: 0 -15px; background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, #efefef), color-stop(100%, #dadada)); background: -moz-linear-gradient(#efefef 50%, #dadada 100%); background: -webkit-linear-gradient(#efefef 50%, #dadada 100%); background: linear-gradient(#efefef 50%, #dadada 100%); } .tabs li:hover:before { -moz-box-shadow: 2px 2px 0 #dadada; -webkit-box-shadow: 2px 2px 0 #dadada; box-shadow: 2px 2px 0 #dadada; } .tabs li:hover:after { -moz-box-shadow: -2px 2px 0 #dadada; -webkit-box-shadow: -2px 2px 0 #dadada; box-shadow: -2px 2px 0 #dadada; } .tabs li.selected { background: #fff; color: #333; z-index: 2; border-bottom-color: #fff; } .tabs li.selected:before { -moz-box-shadow: 2px 2px 0 #ffffff; -webkit-box-shadow: 2px 2px 0 #ffffff; box-shadow: 2px 2px 0 #ffffff; } .tabs li.selected:after { -moz-box-shadow: -2px 2px 0 #ffffff; -webkit-box-shadow: -2px 2px 0 #ffffff; box-shadow: -2px 2px 0 #ffffff; } .tabs li.selected:hover { background: #fff; } .tabs li:before, .tabs li:after { border: 1px solid #aaa; position: absolute; bottom: -1px; width: 5px; height: 5px; content: " "; border-width: 0 0 1px 1px; } .tabs li:before { left: -6px; border-width: 0 1px 1px 0; -moz-border-radius: 0 0 6px 0; -webkit-border-radius: 0; border-radius: 0 0 6px 0; -moz-box-shadow: 2px 2px 0 #d1d1d1; -webkit-box-shadow: 2px 2px 0 #d1d1d1; box-shadow: 2px 2px 0 #d1d1d1; } .tabs li:after { right: -6px; -moz-border-radius: 0 0 0 6px; -webkit-border-radius: 0; border-radius: 0 0 0 6px; -moz-box-shadow: -2px 2px 0 #d1d1d1; -webkit-box-shadow: -2px 2px 0 #d1d1d1; box-shadow: -2px 2px 0 #d1d1d1; } .tabs a { color: #555; text-decoration: none; display: block; margin: 0 20px; } .tabs a:hover { text-decoration: none; } .tabs:before { position: absolute; content: " "; width: 100%; bottom: 0; left: 0; border-bottom: 1px solid #aaa; z-index: 1; } .btn.danger, .btn.danger:hover, .btn.error, .btn.error:hover, .btn.success, .btn.success:hover, .btn.info, .btn.info:hover, .alert-message.danger, .alert-message.danger:hover, .alert-message.error, .alert-message.error:hover, .alert-message.success, .alert-message.success:hover, .alert-message.info, .alert-message.info:hover { color: #fff; } .btn.danger, .btn.error, .alert-message.danger, .alert-message.error { background-color: #c43c35; } .btn.success, .alert-message.success { background-color: #57a957; } .btn.info, .alert-message.info { background-color: #339bb9; } .btn .close, .alert-message .close { font-family: Arial, sans-serif; line-height: 18px; } .btn { cursor: pointer; display: inline-block; padding: 5px 14px 6px; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); color: #333; font-size: 13px; line-height: normal; border: 1px solid #ccc; border-bottom-color: #bbb; text-decoration: none; background-color: #e6e6e6; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: "inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)"; -webkit-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)"; -moz-transition: linear 0.1s all; -o-transition: linear 0.1s all; -webkit-transition: linear 0.1s all; transition: linear 0.1s all; } .btn.active, .btn:active { -moz-box-shadow: "inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05)"; -webkit-box-shadow: "inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05)"; box-shadow: "inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05)"; } .btn.disabled, .btn[disabled] { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } .btn:hover { background-position: 0 -15px; color: #333; text-decoration: none; } .btn:focus { outline: 1px dotted #666; } .btn.primary { color: #fff; background-color: #0064CD; } .btn.disabled { cursor: default; background-image: none; opacity: 0.65; } .btn[disabled] { cursor: default; background-image: none; opacity: 0.65; } .btn.large { font-size: 15px; line-height: normal; padding: 9px 14px 9px; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; } .btn.small { padding: 7px 9px 7px; font-size: 11px; } .cssgradients .btn { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPS<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #ffffff), color-stop(100%, #e6e6e6)); background: -moz-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); } .cssgradients .btn.primary { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #049cdb), color-stop(100%, #0064cd)); background: -moz-linear-gradient(#049cdb, #0064cd); background: -webkit-linear-gradient(#049cdb, #0064cd); background: linear-gradient(#049cdb, #0064cd); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #0064CD #0064CD #003f81; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); } .cssgradients .btn.danger, .cssgradients .btn.error, .cssgradients .alert-message.danger, .cssgradients .alert-message.error { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35)); background: -moz-linear-gradient(#ee5f5b, #c43c35); background: -webkit-linear-gradient(#ee5f5b, #c43c35); background: linear-gradient(#ee5f5b, #c43c35); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #c43c35 #c43c35 #882a25; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); } .cssgradients .btn.success, .cssgradients .alert-message.success { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #62c462), color-stop(100%, #57a957)); background: -moz-linear-gradient(#62c462, #57a957); background: -webkit-linear-gradient(#62c462, #57a957); background: linear-gradient(#62c462, #57a957); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #57a957 #57a957 #3d773d; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); } .cssgradients .btn.info, .cssgradients .alert-message.info { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5bc0de), color-stop(100%, #339bb9)); background: -moz-linear-gradient(#5bc0de, #339bb9); background: -webkit-linear-gradient(#5bc0de, #339bb9); background: linear-gradient(#5bc0de, #339bb9); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #339bb9 #339bb9 #22697d; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); } :root .alert-message, :root .btn { border-radius: 0 \0; } button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { padding: 0; border: 0; } .column { float: left; overflow: hidden; } .column.last { float: none; } .size1of2 { width: 50%; } .size1of4 { width: 25%; } .size3of4 { width: 75%; } .size1of3 { width: 33.30%; } .size2of3 { width: 66.70%; } code, pre { padding: 0 3px 2px; font-family: Monaco, Andale Mono, Courier New, monospace; font-size: 12px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } code { background-color: #fee9cc; color: rgba(0, 0, 0, 0.75); padding: 1px 3px; } pre { background-color: #fcfcfc; display: block; padding: 8.5px; margin: 0 0 18px; line-height: 18px; font-size: 12px; border-color: rgba(0, 0, 0, 0.15); white-space: pre; white-space: pre-wrap; word-wrap: break-word; } .com { color: #93a1a1; } .lit { color: #195f91; } .pun, .opn, .clo { color: #93a1a1; } .fun { color: #dc322f; } .str, .atv { color: #D14; } .kwd, .prettyprint .tag { color: #1e347b; } .typ, .atn, .dec, .var { color: teal; } .pln { color: #48484c; } .prettyprint { padding: 8px; background-color: #fcfcfc; border: 1px solid #ddd; } .prettyprint.linenums { -moz-box-shadow: "inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0"; -webkit-box-shadow: "inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0"; box-shadow: "inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0"; } /* Specify class=linenums on a pre to get line numbering */ ol.linenums { margin: 0 0 0 33px; /* IE indents via margin-left */ } ol.linenums li { list-style-type: decimal; padding-left: 12px; color: #bebec5; line-height: 20px; text-shadow: 0 1px 0 #fff; } label, input, button, select, textarea { font: 13px normal 18px; } input, button, select, textarea { font-family: arial; } label { display: block; } label.inline { display: inline; } select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input { display: inline-block; padding: 4px 6px; margin-bottom: 9px; font-size: 13px; line-height: 18px; color: gray; border: 1px solid #eee; -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset; -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset; box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } /* Base class */ .bs-docs-example { position: relative; margin: 15px 0; padding: 39px 19px 14px; *padding-top: 19px; background-color: #fff; border: 1px solid #ddd; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } /* Echo out a label for the example */ .bs-docs-example:after { content: "Example"; position: absolute; top: -1px; left: -1px; padding: 3px 7px; font-size: 12px; font-weight: bold; background-color: #f5f5f5; border: 1px solid #ddd; color: #9da0a4; -moz-border-radius: 4px 0 4px 0; -webkit-border-radius: 4px; border-radius: 4px 0 4px 0; } /* Remove spacing between an example and it's code */ .bs-docs-example + .prettyprint { margin-top: -20px; padding-top: 15px; } .nav { margin: 0 0 18px; list-style: none; padding: 0; } .nav li { list-style: none; } .nav li a { display: block; } .nav li a:hover { text-decoration: none; background-color: #e6e6e6; } .nav.noHover a:hover { background-color: transparent; text-decoration: underline; } .nav-pills { padding-left: 14px; overflow: hidden; *zoom: 1; } .nav-pills li { float: left; list-style: none; } .nav-pills li a { text-shadow: 0 1px 1px #e6e6e6; padding: 8px 12px; margin: 2px; line-height: 14px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } .nav-pills li.active a, .nav-pills li.active a:hover { text-shadow: 0 1px 1px gray; color: #fff; background-color: #0069d6; -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); } .nav-pills li a:hover { background-color: #e6e6e6; } .nav-pills .spacer { padding: 6px 0 0; margin: 2px 0; color: #ccc; display: block; } /* Demo css */ html { background: #222 url("../images/bg.png"); } body { height: 100%; font-family: arial; font-size: 1em; line-height: 1.3em; padding: 30px 0; } a { color: #0d3a8b; text-decoration: none; } a:hover { text-decoration: underline; } hr { width: 50%; height: 1px; background: #eee; border: 0; margin: 40px 25%; } p { margin: 0.6em 0; line-height: 1.2em; } h1, h2, h3, h4, h5, h6 { margin: 0.3em 0 0.8em; line-height: 1.1em; font-weight: bold; } h1 { font-size: 2em; } h2 { font-size: 1.8em; } h3 { font-size: 1.6em; } h4 { font-size: 1.4em; } h5 { font-size: 1.2em; } ul { padding-left: 20px; } ul li { margin: 0.6em 0; list-style-type: disc; } .collapsible { display: none; } img.inline { margin: 10px; } .box-shadow.rgba img.inline { -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); } .hasBorder { border: 4px solid #fff; } .hasShadow { -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); } .page, .pageHeader { margin: 0 auto; width: 920px; background: #fafafa; padding: 30px; position: relative; } .pageHeader { background: #267be4; color: #fafafa; background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #337edc), color-stop(100%, #0a5abf)); background: -moz-linear-gradient(#337edc, #0a5abf); background: -webkit-linear-gradient(#337edc, #0a5abf); background: linear-gradient(#337edc, #0a5abf); -moz-border-radius: 8px 8px 0 0; -webkit-border-radius: 8px; border-radius: 8px 8px 0 0; } .pageHeader p a { color: #fff; } .options th { background: #222; border: 1px solid #111; padding: 6px 10px; color: #eee; vertical-align: middle; } .options tr:nth-child(even) { background: #eee; } .options tr:nth-child(odd) { background: #fff; } .options td { border: 1px solid #ddd; padding: 6px 10px; vertical-align: middle; } .options td pre { background: transparent; border: 0; } .textbox { color: #444; width: 400px; background-color: #f5f5f5; padding: 20px; border: 1px solid #eee; } .textbox .smallipopBlue { font-weight: bold; color: #44f; } .sampleElement { border: 1px solid #fed980; line-height: 1em; margin: 0 3px 3px 0; display: inline-block; padding: 3px 5px; background-color: #ffe199; font-size: 1.1em; text-shadow: 0 1px 1px #fff24d; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; -moz-box-shadow: 0 1px 4px rgba(255, 162, 0, 0.3); -webkit-box-shadow: 0 1px 4px rgba(255, 162, 0, 0.3); box-shadow: 0 1px 4px rgba(255, 162, 0, 0.3); } .sampleElement.white, .sampleElement.black, .sampleElement.blue, .sampleElement.green, .sampleElement.default { -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); } .sampleElement.big { font-size: 1.4em; } .sampleElement, .sampleElement a { text-decoration: none; cursor: pointer; } .sampleElement:hover { background-color: #fff4d9; border-color: #ffd777; text-decoration: none; } .sampleElement.white { background-color: #fff; border-color: #ddd; text-shadow: none; } .sampleElement.green { background-color: #2ea41e; border-color: #239714; color: #fafafa; text-shadow: 0 1px 1px #196d0e; } .sampleElement.black { background-color: #333; color: #eee; border-color: #000; text-shadow: none; } .sampleElement.blue { background-color: #0064b4; color: #eee; border-color: #0064b4; text-shadow: none; } .sampleElement.orange { background-color: #fbb913; color: #714900; } .sampleElement.default { background-color: #586d82; color: #eee; border-color: #314b64; text-shadow: none; } .cssgradients .sampleElement { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZjI<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fff24d), color-stop(100%, #f9aa18)); background: -moz-linear-gradient(#fff24d, #f9aa18); background: -webkit-linear-gradient(#fff24d, #f9aa18); background: linear-gradient(#fff24d, #f9aa18); } .cssgradients .sampleElement:hover { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fff24d), color-stop(100%, #fdc661)); background: -moz-linear-gradient(#fff24d, #fdc661); background: -webkit-linear-gradient(#fff24d, #fdc661); background: linear-gradient(#fff24d, #fdc661); } .cssgradients .sampleElement.white { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #fafafa)); background: -moz-linear-gradient(#ffffff, #fafafa); background: -webkit-linear-gradient(#ffffff, #fafafa); background: linear-gradient(#ffffff, #fafafa); } .cssgradients .sampleElement.green { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #35b125), color-stop(100%, #29a219)); background: -moz-linear-gradient(#35b125, #29a219); background: -webkit-linear-gradient(#35b125, #29a219); background: linear-gradient(#35b125, #29a219); } .cssgradients .sampleElement.green:hover { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #40bb30), color-stop(100%, #31aa21)); background: -moz-linear-gradient(#40bb30, #31aa21); background: -webkit-linear-gradient(#40bb30, #31aa21); background: linear-gradient(#40bb30, #31aa21); } .cssgradients .sampleElement.black { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #444444), color-stop(100%, #111111)); background: -moz-linear-gradient(#444444, #111111); background: -webkit-linear-gradient(#444444, #111111); background: linear-gradient(#444444, #111111); } .cssgradients .sampleElement.blue { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1279cb), color-stop(100%, #0064b4)); background: -moz-linear-gradient(#1279cb, #0064b4); background: -webkit-linear-gradient(#1279cb, #0064b4); background: linear-gradient(#1279cb, #0064b4); color: #eee; } .cssgradients .sampleElement.default { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRmNmM4OCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzMxNGI2NCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4f6c88), color-stop(100%, #314b64)); background: -moz-linear-gradient(#4f6c88, #314b64); background: -webkit-linear-gradient(#4f6c88, #314b64); background: linear-gradient(#4f6c88, #314b64); } /* Sidemenu */ .side-menu { position: fixed; top: 168px; left: 50%; margin-left: -650px; padding-top: 30px; text-align: right; width: 140px; font-size: 14px; z-index: 9999; } .side-menu h2 { color: #267BE4; font-size: 16px; } .side-menu li { list-style-type: none; } .side-menu li a { color: #aaa; } .side-menu li a:hover { color: #ccc; text-decoration: underline; } .side-menu li a.current { color: #eee; } /* indicator */ .indicator { position: relative; display: block; width: 21px; height: 21px; font-size: 26px; font-weight: bold; line-height: 21px; text-align: center; color: #6fc048; background-color: #fff; opacity: 0.95; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; } .indicator .indicatorPlus { width: 14px; margin: 0 3px; overflow: hidden; } .cssgradients .indicator { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #fafafa)); background: -moz-linear-gradient(#ffffff, #fafafa); background: -webkit-linear-gradient(#ffffff, #fafafa); background: linear-gradient(#ffffff, #fafafa); } .smallipopArrow { width: 25px; height: 42px; } /* wobbler */ .wobble { -webkit-animation: wobble 1s linear; -webkit-animation-iteration-count: 1; -webkit-transform-origin: bottom center; -moz-animation: wobble 1s linear; -moz-animation-iteration-count: 1; -moz-transform-origin: bottom center; } @-webkit-keyframes wobble { 0% { -webkit-transform: rotate(0deg); } 5% { -webkit-transform: rotate(10deg); } 10% { -webkit-transform: rotate(7.4deg); } 15% { -webkit-transform: rotate(-1.1deg); } 20% { -webkit-transform: rotate(-5.2deg); } 25% { -webkit-transform: rotate(-3deg); } 30% { -webkit-transform: rotate(1deg); } 35% { -webkit-transform: rotate(2.6deg); } 40% { -webkit-transform: rotate(1.2deg); } 45% { -webkit-transform: rotate(-0.72deg); } 50% { -webkit-transform: rotate(-1.2deg); } 55% { -webkit-transform: rotate(-0.44deg); } 60% { -webkit-transform: rotate(0.44deg); } 65% { -webkit-transform: rotate(0.57deg); } 70% { -webkit-transform: rotate(0.14deg); } 75% { -webkit-transform: rotate(-0.25deg); } 80% { -webkit-transform: rotate(-0.26deg); } 85% { -webkit-transform: rotate(-0.033deg); } 90% { -webkit-transform: rotate(0.13deg); } 95% { -webkit-transform: rotate(0.12deg); } 100% { -webkit-transform: rotate(0deg); } } @-moz-keyframes wobble { 0% { -moz-transform: rotate(0deg); } 5% { -moz-transform: rotate(10deg); } 10% { -moz-transform: rotate(7.4deg); } 15% { -moz-transform: rotate(-1.1deg); } 20% { -moz-transform: rotate(-5.2deg); } 25% { -moz-transform: rotate(-3deg); } 30% { -moz-transform: rotate(1deg); } 35% { -moz-transform: rotate(2.6deg); } 40% { -moz-transform: rotate(1.2deg); } 45% { -moz-transform: rotate(-0.72deg); } 50% { -moz-transform: rotate(-1.2deg); } 55% { -moz-transform: rotate(-0.44deg); } 60% { -moz-transform: rotate(0.44deg); } 65% { -moz-transform: rotate(0.57deg); } 70% { -moz-transform: rotate(0.14deg); } 75% { -moz-transform: rotate(-0.25deg); } 80% { -moz-transform: rotate(-0.26deg); } 85% { -moz-transform: rotate(-0.033deg); } 90% { -moz-transform: rotate(0.13deg); } 95% { -moz-transform: rotate(0.12deg); } 100% { -moz-transform: rotate(0deg); } } /* pulser */ .pulser { height: 12px; width: 12px; position: absolute; } .pulser, .pulser .outer, .pulser .inner { -moz-border-radius: 30px; -webkit-border-radius: 30px; border-radius: 30px; } .pulser .inner { height: 16px; width: 16px; position: absolute; left: 0px; top: 0px; background: #fcfcfc; color: #1ec016; text-shadow: 0 -1px 1px #ccc; font-size: 16px; line-height: 16px; font-weight: bold; text-align: center; } .cssgradients .pulser .inner { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fafafa), color-stop(100%, #dddddd)); background: -moz-linear-gradient(#fafafa, #dddddd); background: -webkit-linear-gradient(#fafafa, #dddddd); background: linear-gradient(#fafafa, #dddddd); } .cssanimations .pulser .outer { height: 12px; width: 12px; position: absolute; left: 0; top: 0; border: 2px solid #50b6f4; -webkit-animation: pulsate 1.2s ease-out; -webkit-animation-iteration-count: infinite; -moz-animation: pulsate 1.2s ease-out; -moz-animation-iteration-count: infinite; opacity: 0.0; } @-webkit-keyframes pulsate { 0% { -webkit-transform: scale(1, 1); opacity: 0.0; } 50% { opacity: 1.0; } 100% { -webkit-transform: scale(2, 2); opacity: 0.0; } } @-moz-keyframes pulsate { 0% { -moz-transform: scale(1, 1); opacity: 0.0; } 50% { opacity: 1.0; } 100% { -moz-transform: scale(2, 2); opacity: 0.0; } } /* Tabs */ .pageHeader .tabs { margin: 0 -30px; width: 933px; padding: 0 10px 0 37px; } /* Example css */ .borderContainer { border: 1px solid #ccc; padding: 10px; background: #fafafa; -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2); box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2); } .bgWhite { background-color: #fafafa; } /*# sourceMappingURL=screen.css.map */
css/screen.css
html { height: 100%; font-size: 13px; font-family: arial; color: #404040; background: #e6e6e6; } body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td { margin: 0; padding: 0; } table { border-collapse: collapse; border-spacing: 0; } fieldset, img { border: 0; } address, caption, cite, code, dfn, em, strong, th, var { font-style: normal; font-weight: normal; } li { list-style: none; } caption, th { text-align: left; } h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; } q:before, q:after { content: ''; } abbr, acronym { border: 0; font-variant: normal; } sup { vertical-align: text-top; } sub { vertical-align: text-bottom; } input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; } input, textarea, select { *font-size: 100%; } legend { color: #000; } .label { padding: 1px 3px 2px; font-size: 0.75em; font-weight: bold; color: #fff; text-transform: uppercase; white-space: nowrap; background-color: #ccc; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .label.important { background-color: #c43c35; } .label.warning { background-color: #f89406; } .label.success { background-color: #46a546; } .label.notice { background-color: #62cffc; } .clear { clear: both; } .relative { position: relative; } .centered { margin: 0 auto; } .floatLeft { float: left; } .floatRight { float: right; } .clearfix { zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; zoom: 1; } .clearfix:after { clear: both; } .tabs { text-align: center; list-style: none; padding: 0 10px; line-height: 24px; height: 26px; overflow: hidden; font-size: 12px; font-family: verdana; position: absolute; bottom: 0; } .tabs li { border: 1px solid #aaa; background: #d1d1d1; display: block; float: left; position: relative; z-index: 0; text-shadow: 0 1px #fff; margin: 0 -3px; padding: 0; cursor: pointer; -moz-border-radius: 6px 6px 0 0; -webkit-border-radius: 6px; border-radius: 6px 6px 0 0; -moz-box-shadow: "0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #ffffff"; -webkit-box-shadow: "0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #ffffff"; box-shadow: "0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #ffffff"; -moz-transition: linear 0.05s all; -o-transition: linear 0.05s all; -webkit-transition: linear 0.05s all; transition: linear 0.05s all; background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, #ececec), color-stop(100%, #d1d1d1)); background: -moz-linear-gradient(#ececec 50%, #d1d1d1 100%); background: -webkit-linear-gradient(#ececec 50%, #d1d1d1 100%); background: linear-gradient(#ececec 50%, #d1d1d1 100%); } .tabs li:hover { background: #dadada; background-position: 0 -15px; background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, #efefef), color-stop(100%, #dadada)); background: -moz-linear-gradient(#efefef 50%, #dadada 100%); background: -webkit-linear-gradient(#efefef 50%, #dadada 100%); background: linear-gradient(#efefef 50%, #dadada 100%); } .tabs li:hover:before { -moz-box-shadow: 2px 2px 0 #dadada; -webkit-box-shadow: 2px 2px 0 #dadada; box-shadow: 2px 2px 0 #dadada; } .tabs li:hover:after { -moz-box-shadow: -2px 2px 0 #dadada; -webkit-box-shadow: -2px 2px 0 #dadada; box-shadow: -2px 2px 0 #dadada; } .tabs li.selected { background: #fff; color: #333; z-index: 2; border-bottom-color: #fff; } .tabs li.selected:before { -moz-box-shadow: 2px 2px 0 #ffffff; -webkit-box-shadow: 2px 2px 0 #ffffff; box-shadow: 2px 2px 0 #ffffff; } .tabs li.selected:after { -moz-box-shadow: -2px 2px 0 #ffffff; -webkit-box-shadow: -2px 2px 0 #ffffff; box-shadow: -2px 2px 0 #ffffff; } .tabs li.selected:hover { background: #fff; } .tabs li:before, .tabs li:after { border: 1px solid #aaa; position: absolute; bottom: -1px; width: 5px; height: 5px; content: " "; border-width: 0 0 1px 1px; } .tabs li:before { left: -6px; border-width: 0 1px 1px 0; -moz-border-radius: 0 0 6px 0; -webkit-border-radius: 0; border-radius: 0 0 6px 0; -moz-box-shadow: 2px 2px 0 #d1d1d1; -webkit-box-shadow: 2px 2px 0 #d1d1d1; box-shadow: 2px 2px 0 #d1d1d1; } .tabs li:after { right: -6px; -moz-border-radius: 0 0 0 6px; -webkit-border-radius: 0; border-radius: 0 0 0 6px; -moz-box-shadow: -2px 2px 0 #d1d1d1; -webkit-box-shadow: -2px 2px 0 #d1d1d1; box-shadow: -2px 2px 0 #d1d1d1; } .tabs a { color: #555; text-decoration: none; display: block; margin: 0 20px; } .tabs a:hover { text-decoration: none; } .tabs:before { position: absolute; content: " "; width: 100%; bottom: 0; left: 0; border-bottom: 1px solid #aaa; z-index: 1; } .btn.danger, .btn.danger:hover, .btn.error, .btn.error:hover, .btn.success, .btn.success:hover, .btn.info, .btn.info:hover, .alert-message.danger, .alert-message.danger:hover, .alert-message.error, .alert-message.error:hover, .alert-message.success, .alert-message.success:hover, .alert-message.info, .alert-message.info:hover { color: #fff; } .btn.danger, .btn.error, .alert-message.danger, .alert-message.error { background-color: #c43c35; } .btn.success, .alert-message.success { background-color: #57a957; } .btn.info, .alert-message.info { background-color: #339bb9; } .btn .close, .alert-message .close { font-family: Arial, sans-serif; line-height: 18px; } .btn { cursor: pointer; display: inline-block; padding: 5px 14px 6px; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); color: #333; font-size: 13px; line-height: normal; border: 1px solid #ccc; border-bottom-color: #bbb; text-decoration: none; background-color: #e6e6e6; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: "inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)"; -webkit-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)"; -moz-transition: linear 0.1s all; -o-transition: linear 0.1s all; -webkit-transition: linear 0.1s all; transition: linear 0.1s all; } .btn.active, .btn:active { -moz-box-shadow: "inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05)"; -webkit-box-shadow: "inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05)"; box-shadow: "inset 0 2px 4px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.05)"; } .btn.disabled, .btn[disabled] { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } .btn:hover { background-position: 0 -15px; color: #333; text-decoration: none; } .btn:focus { outline: 1px dotted #666; } .btn.primary { color: #fff; background-color: #0064CD; } .btn.disabled { cursor: default; background-image: none; opacity: 0.65; } .btn[disabled] { cursor: default; background-image: none; opacity: 0.65; } .btn.large { font-size: 15px; line-height: normal; padding: 9px 14px 9px; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; } .btn.small { padding: 7px 9px 7px; font-size: 11px; } .cssgradients .btn { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPS<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #ffffff), color-stop(100%, #e6e6e6)); background: -moz-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); } .cssgradients .btn.primary { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #049cdb), color-stop(100%, #0064cd)); background: -moz-linear-gradient(#049cdb, #0064cd); background: -webkit-linear-gradient(#049cdb, #0064cd); background: linear-gradient(#049cdb, #0064cd); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #0064CD #0064CD #003f81; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); } .cssgradients .btn.danger, .cssgradients .btn.error, .cssgradients .alert-message.danger, .cssgradients .alert-message.error { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35)); background: -moz-linear-gradient(#ee5f5b, #c43c35); background: -webkit-linear-gradient(#ee5f5b, #c43c35); background: linear-gradient(#ee5f5b, #c43c35); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #c43c35 #c43c35 #882a25; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); } .cssgradients .btn.success, .cssgradients .alert-message.success { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #62c462), color-stop(100%, #57a957)); background: -moz-linear-gradient(#62c462, #57a957); background: -webkit-linear-gradient(#62c462, #57a957); background: linear-gradient(#62c462, #57a957); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #57a957 #57a957 #3d773d; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); } .cssgradients .btn.info, .cssgradients .alert-message.info { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5bc0de), color-stop(100%, #339bb9)); background: -moz-linear-gradient(#5bc0de, #339bb9); background: -webkit-linear-gradient(#5bc0de, #339bb9); background: linear-gradient(#5bc0de, #339bb9); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #339bb9 #339bb9 #22697d; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); } :root .alert-message, :root .btn { border-radius: 0 \0; } button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { padding: 0; border: 0; } .column { float: left; overflow: hidden; } .column.last { float: none; } .size1of2 { width: 50%; } .size1of4 { width: 25%; } .size3of4 { width: 75%; } .size1of3 { width: 33.30%; } .size2of3 { width: 66.70%; } code, pre { padding: 0 3px 2px; font-family: Monaco, Andale Mono, Courier New, monospace; font-size: 12px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } code { background-color: #fee9cc; color: rgba(0, 0, 0, 0.75); padding: 1px 3px; } pre { background-color: #fcfcfc; display: block; padding: 8.5px; margin: 0 0 18px; line-height: 18px; font-size: 12px; border-color: rgba(0, 0, 0, 0.15); white-space: pre; white-space: pre-wrap; word-wrap: break-word; } .com { color: #93a1a1; } .lit { color: #195f91; } .pun, .opn, .clo { color: #93a1a1; } .fun { color: #dc322f; } .str, .atv { color: #D14; } .kwd, .prettyprint .tag { color: #1e347b; } .typ, .atn, .dec, .var { color: teal; } .pln { color: #48484c; } .prettyprint { padding: 8px; background-color: #fcfcfc; border: 1px solid #ddd; } .prettyprint.linenums { -moz-box-shadow: "inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0"; -webkit-box-shadow: "inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0"; box-shadow: "inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0"; } /* Specify class=linenums on a pre to get line numbering */ ol.linenums { margin: 0 0 0 33px; /* IE indents via margin-left */ } ol.linenums li { list-style-type: decimal; padding-left: 12px; color: #bebec5; line-height: 20px; text-shadow: 0 1px 0 #fff; } label, input, button, select, textarea { font: 13px normal 18px; } input, button, select, textarea { font-family: arial; } label { display: block; } label.inline { display: inline; } select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input { display: inline-block; padding: 4px 6px; margin-bottom: 9px; font-size: 13px; line-height: 18px; color: gray; border: 1px solid #eee; -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset; -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset; box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } /* Base class */ .bs-docs-example { position: relative; margin: 15px 0; padding: 39px 19px 14px; *padding-top: 19px; background-color: #fff; border: 1px solid #ddd; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } /* Echo out a label for the example */ .bs-docs-example:after { content: "Example"; position: absolute; top: -1px; left: -1px; padding: 3px 7px; font-size: 12px; font-weight: bold; background-color: #f5f5f5; border: 1px solid #ddd; color: #9da0a4; -moz-border-radius: 4px 0 4px 0; -webkit-border-radius: 4px; border-radius: 4px 0 4px 0; } /* Remove spacing between an example and it's code */ .bs-docs-example + .prettyprint { margin-top: -20px; padding-top: 15px; } .nav { margin: 0 0 18px; list-style: none; padding: 0; } .nav li { list-style: none; } .nav li a { display: block; } .nav li a:hover { text-decoration: none; background-color: #e6e6e6; } .nav.noHover a:hover { background-color: transparent; text-decoration: underline; } .nav-pills { padding-left: 14px; overflow: hidden; *zoom: 1; } .nav-pills li { float: left; list-style: none; } .nav-pills li a { text-shadow: 0 1px 1px #e6e6e6; padding: 8px 12px; margin: 2px; line-height: 14px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } .nav-pills li.active a, .nav-pills li.active a:hover { text-shadow: 0 1px 1px gray; color: #fff; background-color: #0069d6; -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); } .nav-pills li a:hover { background-color: #e6e6e6; } .nav-pills .spacer { padding: 6px 0 0; margin: 2px 0; color: #ccc; display: block; } /* Demo css */ html { background: #222 url("../images/bg.png"); } body { height: 100%; font-family: arial; font-size: 1em; line-height: 1.3em; padding: 30px 0; } a { color: #0d3a8b; text-decoration: none; } a:hover { text-decoration: underline; } hr { width: 50%; height: 1px; background: #eee; border: 0; margin: 40px 25%; } p { margin: 0.6em 0; line-height: 1.2em; } h1, h2, h3, h4, h5, h6 { margin: 0.3em 0 0.8em; line-height: 1.1em; font-weight: bold; } h1 { font-size: 2em; } h2 { font-size: 1.8em; } h3 { font-size: 1.6em; } h4 { font-size: 1.4em; } h5 { font-size: 1.2em; } ul { padding-left: 20px; } ul li { margin: 0.6em 0; list-style-type: disc; } .collapsible { display: none; } img.inline { margin: 10px; } .box-shadow.rgba img.inline { -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); } .hasBorder { border: 4px solid #fff; } .hasShadow { -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); } .page, .pageHeader { margin: 0 auto; width: 920px; background: #fafafa; padding: 30px; position: relative; } .pageHeader { background: #267be4; color: #fafafa; background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #337edc), color-stop(100%, #0a5abf)); background: -moz-linear-gradient(#337edc, #0a5abf); background: -webkit-linear-gradient(#337edc, #0a5abf); background: linear-gradient(#337edc, #0a5abf); -moz-border-radius: 8px 8px 0 0; -webkit-border-radius: 8px; border-radius: 8px 8px 0 0; } .pageHeader p a { color: #fff; } .options th { background: #222; border: 1px solid #111; padding: 6px 10px; color: #eee; vertical-align: middle; } .options tr:nth-child(even) { background: #eee; } .options tr:nth-child(odd) { background: #fff; } .options td { border: 1px solid #ddd; padding: 6px 10px; vertical-align: middle; } .options td pre { background: transparent; border: 0; } .textbox { color: #444; width: 400px; background-color: #f5f5f5; padding: 20px; border: 1px solid #eee; } .textbox .smallipopBlue { font-weight: bold; color: #44f; } .sampleElement { border: 1px solid #fed980; line-height: 1em; margin: 0 3px 3px 0; display: inline-block; padding: 3px 5px; background-color: #ffe199; font-size: 1.1em; text-shadow: 0 1px 1px #fff24d; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; -moz-box-shadow: 0 1px 4px rgba(255, 162, 0, 0.3); -webkit-box-shadow: 0 1px 4px rgba(255, 162, 0, 0.3); box-shadow: 0 1px 4px rgba(255, 162, 0, 0.3); } .sampleElement.white, .sampleElement.black, .sampleElement.blue, .sampleElement.green, .sampleElement.default { -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); } .sampleElement.big { font-size: 1.4em; } .sampleElement, .sampleElement a { text-decoration: none; cursor: pointer; } .sampleElement:hover { background-color: #fff4d9; border-color: #ffd777; text-decoration: none; } .sampleElement.white { background-color: #fff; border-color: #ddd; text-shadow: none; } .sampleElement.green { background-color: #2ea41e; border-color: #239714; color: #fafafa; text-shadow: 0 1px 1px #196d0e; } .sampleElement.black { background-color: #333; color: #eee; border-color: #000; text-shadow: none; } .sampleElement.blue { background-color: #0064b4; color: #eee; border-color: #0064b4; text-shadow: none; } .sampleElement.orange { background-color: #fbb913; color: #714900; } .sampleElement.default { background-color: #586d82; color: #eee; border-color: #314b64; text-shadow: none; } .cssgradients .sampleElement { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZjI<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fff24d), color-stop(100%, #f9aa18)); background: -moz-linear-gradient(#fff24d, #f9aa18); background: -webkit-linear-gradient(#fff24d, #f9aa18); background: linear-gradient(#fff24d, #f9aa18); } .cssgradients .sampleElement:hover { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fff24d), color-stop(100%, #fdc661)); background: -moz-linear-gradient(#fff24d, #fdc661); background: -webkit-linear-gradient(#fff24d, #fdc661); background: linear-gradient(#fff24d, #fdc661); } .cssgradients .sampleElement.white { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #fafafa)); background: -moz-linear-gradient(#ffffff, #fafafa); background: -webkit-linear-gradient(#ffffff, #fafafa); background: linear-gradient(#ffffff, #fafafa); } .cssgradients .sampleElement.green { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #35b125), color-stop(100%, #29a219)); background: -moz-linear-gradient(#35b125, #29a219); background: -webkit-linear-gradient(#35b125, #29a219); background: linear-gradient(#35b125, #29a219); } .cssgradients .sampleElement.green:hover { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #40bb30), color-stop(100%, #31aa21)); background: -moz-linear-gradient(#40bb30, #31aa21); background: -webkit-linear-gradient(#40bb30, #31aa21); background: linear-gradient(#40bb30, #31aa21); } .cssgradients .sampleElement.black { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #444444), color-stop(100%, #111111)); background: -moz-linear-gradient(#444444, #111111); background: -webkit-linear-gradient(#444444, #111111); background: linear-gradient(#444444, #111111); } .cssgradients .sampleElement.blue { background: url('data:image/svg+xml;base64,<KEY>'); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1279cb), color-stop(100%, #0064b4)); background: -moz-linear-gradient(#1279cb, #0064b4); background: -webkit-linear-gradient(#1279cb, #0064b4); background: linear-gradient(#1279cb, #0064b4); color: #eee; } .cssgradients .sampleElement.default { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRmNmM4OCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzMxNGI2NCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4f6c88), color-stop(100%, #314b64)); background: -moz-linear-gradient(#4f6c88, #314b64); background: -webkit-linear-gradient(#4f6c88, #314b64); background: linear-gradient(#4f6c88, #314b64); } /* Sidemenu */ .side-menu { position: fixed; top: 168px; left: 50%; margin-left: -650px; padding-top: 30px; text-align: right; width: 140px; font-size: 14px; z-index: 9999; } .side-menu h2 { color: #267BE4; font-size: 16px; } .side-menu li { list-style-type: none; } .side-menu li a { color: #aaa; } .side-menu li a:hover { color: #ccc; text-decoration: underline; } .side-menu li a.current { color: #eee; } /* indicator */ .indicator { position: relative; display: block; width: 21px; height: 21px; font-size: 26px; font-weight: bold; line-height: 21px; text-align: center; color: #6fc048; background-color: #fff; opacity: 0.95; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; } .indicator .indicatorPlus { width: 14px; margin: 0 3px; overflow: hidden; } .cssgradients .indicator { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #fafafa)); background: -moz-linear-gradient(#ffffff, #fafafa); background: -webkit-linear-gradient(#ffffff, #fafafa); background: linear-gradient(#ffffff, #fafafa); } .smallipopArrow { width: 25px; height: 42px; } /* wobbler */ .wobble { -webkit-animation: wobble 1s linear; -webkit-animation-iteration-count: 1; -webkit-transform-origin: bottom center; -moz-animation: wobble 1s linear; -moz-animation-iteration-count: 1; -moz-transform-origin: bottom center; } @-webkit-keyframes wobble { 0% { -webkit-transform: rotate(0deg); } 5% { -webkit-transform: rotate(10deg); } 10% { -webkit-transform: rotate(7.4deg); } 15% { -webkit-transform: rotate(-1.1deg); } 20% { -webkit-transform: rotate(-5.2deg); } 25% { -webkit-transform: rotate(-3deg); } 30% { -webkit-transform: rotate(1deg); } 35% { -webkit-transform: rotate(2.6deg); } 40% { -webkit-transform: rotate(1.2deg); } 45% { -webkit-transform: rotate(-0.72deg); } 50% { -webkit-transform: rotate(-1.2deg); } 55% { -webkit-transform: rotate(-0.44deg); } 60% { -webkit-transform: rotate(0.44deg); } 65% { -webkit-transform: rotate(0.57deg); } 70% { -webkit-transform: rotate(0.14deg); } 75% { -webkit-transform: rotate(-0.25deg); } 80% { -webkit-transform: rotate(-0.26deg); } 85% { -webkit-transform: rotate(-0.033deg); } 90% { -webkit-transform: rotate(0.13deg); } 95% { -webkit-transform: rotate(0.12deg); } 100% { -webkit-transform: rotate(0deg); } } @-moz-keyframes wobble { 0% { -moz-transform: rotate(0deg); } 5% { -moz-transform: rotate(10deg); } 10% { -moz-transform: rotate(7.4deg); } 15% { -moz-transform: rotate(-1.1deg); } 20% { -moz-transform: rotate(-5.2deg); } 25% { -moz-transform: rotate(-3deg); } 30% { -moz-transform: rotate(1deg); } 35% { -moz-transform: rotate(2.6deg); } 40% { -moz-transform: rotate(1.2deg); } 45% { -moz-transform: rotate(-0.72deg); } 50% { -moz-transform: rotate(-1.2deg); } 55% { -moz-transform: rotate(-0.44deg); } 60% { -moz-transform: rotate(0.44deg); } 65% { -moz-transform: rotate(0.57deg); } 70% { -moz-transform: rotate(0.14deg); } 75% { -moz-transform: rotate(-0.25deg); } 80% { -moz-transform: rotate(-0.26deg); } 85% { -moz-transform: rotate(-0.033deg); } 90% { -moz-transform: rotate(0.13deg); } 95% { -moz-transform: rotate(0.12deg); } 100% { -moz-transform: rotate(0deg); } } /* pulser */ .pulser { height: 12px; width: 12px; position: absolute; } .pulser, .pulser .outer, .pulser .inner { -moz-border-radius: 30px; -webkit-border-radius: 30px; border-radius: 30px; } .pulser .inner { height: 16px; width: 16px; position: absolute; left: 0px; top: 0px; background: #fcfcfc; color: #1ec016; text-shadow: 0 -1px 1px #ccc; font-size: 16px; line-height: 16px; font-weight: bold; text-align: center; } .cssgradients .pulser .inner { background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fafafa), color-stop(100%, #dddddd)); background: -moz-linear-gradient(#fafafa, #dddddd); background: -webkit-linear-gradient(#fafafa, #dddddd); background: linear-gradient(#fafafa, #dddddd); } .cssanimations .pulser .outer { height: 12px; width: 12px; position: absolute; left: 0; top: 0; border: 2px solid #50b6f4; -webkit-animation: pulsate 1.2s ease-out; -webkit-animation-iteration-count: infinite; -moz-animation: pulsate 1.2s ease-out; -moz-animation-iteration-count: infinite; opacity: 0.0; } @-webkit-keyframes pulsate { 0% { -webkit-transform: scale(1, 1); opacity: 0.0; } 50% { opacity: 1.0; } 100% { -webkit-transform: scale(2, 2); opacity: 0.0; } } @-moz-keyframes pulsate { 0% { -moz-transform: scale(1, 1); opacity: 0.0; } 50% { opacity: 1.0; } 100% { -moz-transform: scale(2, 2); opacity: 0.0; } } /* Tabs */ .pageHeader .tabs { margin: 0 -30px; width: 933px; padding: 0 10px 0 37px; } /* Example css */ .borderContainer { border: 1px solid #ccc; padding: 10px; background: #fafafa; -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2); box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.2); } .bgWhite { background-color: #fafafa; } /*# sourceMappingURL=screen.css.map */
0.373647
0.145661
*{ box-sizing: border-box; } body{ align-items: center; justify-content: center; text-align: center; margin: 0%; text-align: center; font-family: 'Merriweather', serif; font-size: rem; } .bg{ background: url(../img/background.png) no-repeat center center/cover; position: absolute; top: -30px; left: -30px; width: calc(100vw + 60px); height: calc(100vw + 60px); z-index: -1; filter: blur(0px); height: 145vh; } .loading.text{ font-size: 50px; color: #fff; } h1{ margin: auto; font-size: 3.625rem; color: #06566e; font-family: 'Reggae One', cursive;; } p{ font-size: 1.5rem; } h2{ color: coral; } h3{ color: coral; } h4{ color: rgb(71, 247, 2); font-family: 'Montserrat', sans-serif; } hr{ border: dotted #eaf6f6 6px; border-bottom: none; width: 10%; margin: 50px auto; } .Name{ position: relative; margin-top: 10PX; text-decoration: underline; font-weight: bolder; } .Bubble1{ width: 120px; position: absolute; top: 30%; left: 80%; } .Bubble2{ width: 110px; position: absolute; top: 50%; left: 60%; } .Bubble3{ width: 90px; position: absolute; top: 75%; right: 60%; } .Bubble4{ width: 70px; position: absolute; top: 95%; right: 80%; } menu ul li a{ display: inline; width: 5px; position: absolute; top: 10%; right: 20%; padding: 10px; } .photos{ margin-top: 5%; position: absolute; left: 5%; width: 60%; } .profile{ width: 40%; margin: auto; } .hobby-travel{ width: 16%; margin: auto; } .hobby-photo{ width: 16%; margin: auto; } .travel-text{ width: 35%; margin: 50px auto; color: rgb(71, 247, 2); } .home-text{ width: 35%; margin: 50px auto; color: rgb(71, 247, 2); } .copyright{ color:#eaf6f6; font-size: 1rem; padding: 20px 0px; } .bottom-container{ color: coral; background-color: #c5aac2; margin: 15px auto 0px ; padding: 50px 0px h0px; } .footer-link{ color:#000; margin: 10px 10px; text-decoration: none; } .footer-link:hover{ background: #30e3cb; background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); text-decoration: none; } .btn1 { background: #11cdd4; background-image: -webkit-linear-gradient(top, #11cdd4, #11999e); background-image: -moz-linear-gradient(top, #11cdd4, #11999e); background-image: -ms-linear-gradient(top, #11cdd4, #11999e); background-image: -o-linear-gradient(top, #11cdd4, #11999e); background-image: linear-gradient(to bottom, #11cdd4, #11999e); -webkit-border-radius: 20; -moz-border-radius: 20; border-radius: 20px; font-family: 'Merriweather', serif; color: #ffffff; font-size: 20px; padding: 10px 20px 10px 20px; text-decoration: none; margin: 50px auto 10px ; width: 10%; } .btn1:hover { background: #30e3cb; background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); text-decoration: none; } .btn { background: #11cdd4; background-image: -webkit-linear-gradient(top, #11cdd4, #11999e); background-image: -moz-linear-gradient(top, #11cdd4, #11999e); background-image: -ms-linear-gradient(top, #11cdd4, #11999e); background-image: -o-linear-gradient(top, #11cdd4, #11999e); background-image: linear-gradient(to bottom, #11cdd4, #11999e); -webkit-border-radius: 20; -moz-border-radius: 20; border-radius: 20px; font-family: 'Merriweather', serif; color: #ffffff; font-size: 20px; padding: 10px 20px 10px 20px; text-decoration: none; margin: 50px auto 50px; } .btn:hover { background: #30e3cb; background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); text-decoration: none; } .btn2{ background: #11cdd4; background-image: -webkit-linear-gradient(top, #11cdd4, #11999e); background-image: -moz-linear-gradient(top, #11cdd4, #11999e); background-image: -ms-linear-gradient(top, #11cdd4, #11999e); background-image: -o-linear-gradient(top, #11cdd4, #11999e); background-image: linear-gradient(to bottom, #11cdd4, #11999e); -webkit-border-radius: 20; -moz-border-radius: 20; border-radius: 20px; font-family: 'Merriweather', serif; color: #ffffff; font-size: 20px; padding: 10px 20px 10px 20px; text-decoration: none; margin: 50px auto 50px; width: 20%; } .btn2:hover{ background: #30e3cb; background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); text-decoration: none; } .unicode{ margin: 90px auto auto auto }
css/style.css
*{ box-sizing: border-box; } body{ align-items: center; justify-content: center; text-align: center; margin: 0%; text-align: center; font-family: 'Merriweather', serif; font-size: rem; } .bg{ background: url(../img/background.png) no-repeat center center/cover; position: absolute; top: -30px; left: -30px; width: calc(100vw + 60px); height: calc(100vw + 60px); z-index: -1; filter: blur(0px); height: 145vh; } .loading.text{ font-size: 50px; color: #fff; } h1{ margin: auto; font-size: 3.625rem; color: #06566e; font-family: 'Reggae One', cursive;; } p{ font-size: 1.5rem; } h2{ color: coral; } h3{ color: coral; } h4{ color: rgb(71, 247, 2); font-family: 'Montserrat', sans-serif; } hr{ border: dotted #eaf6f6 6px; border-bottom: none; width: 10%; margin: 50px auto; } .Name{ position: relative; margin-top: 10PX; text-decoration: underline; font-weight: bolder; } .Bubble1{ width: 120px; position: absolute; top: 30%; left: 80%; } .Bubble2{ width: 110px; position: absolute; top: 50%; left: 60%; } .Bubble3{ width: 90px; position: absolute; top: 75%; right: 60%; } .Bubble4{ width: 70px; position: absolute; top: 95%; right: 80%; } menu ul li a{ display: inline; width: 5px; position: absolute; top: 10%; right: 20%; padding: 10px; } .photos{ margin-top: 5%; position: absolute; left: 5%; width: 60%; } .profile{ width: 40%; margin: auto; } .hobby-travel{ width: 16%; margin: auto; } .hobby-photo{ width: 16%; margin: auto; } .travel-text{ width: 35%; margin: 50px auto; color: rgb(71, 247, 2); } .home-text{ width: 35%; margin: 50px auto; color: rgb(71, 247, 2); } .copyright{ color:#eaf6f6; font-size: 1rem; padding: 20px 0px; } .bottom-container{ color: coral; background-color: #c5aac2; margin: 15px auto 0px ; padding: 50px 0px h0px; } .footer-link{ color:#000; margin: 10px 10px; text-decoration: none; } .footer-link:hover{ background: #30e3cb; background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); text-decoration: none; } .btn1 { background: #11cdd4; background-image: -webkit-linear-gradient(top, #11cdd4, #11999e); background-image: -moz-linear-gradient(top, #11cdd4, #11999e); background-image: -ms-linear-gradient(top, #11cdd4, #11999e); background-image: -o-linear-gradient(top, #11cdd4, #11999e); background-image: linear-gradient(to bottom, #11cdd4, #11999e); -webkit-border-radius: 20; -moz-border-radius: 20; border-radius: 20px; font-family: 'Merriweather', serif; color: #ffffff; font-size: 20px; padding: 10px 20px 10px 20px; text-decoration: none; margin: 50px auto 10px ; width: 10%; } .btn1:hover { background: #30e3cb; background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); text-decoration: none; } .btn { background: #11cdd4; background-image: -webkit-linear-gradient(top, #11cdd4, #11999e); background-image: -moz-linear-gradient(top, #11cdd4, #11999e); background-image: -ms-linear-gradient(top, #11cdd4, #11999e); background-image: -o-linear-gradient(top, #11cdd4, #11999e); background-image: linear-gradient(to bottom, #11cdd4, #11999e); -webkit-border-radius: 20; -moz-border-radius: 20; border-radius: 20px; font-family: 'Merriweather', serif; color: #ffffff; font-size: 20px; padding: 10px 20px 10px 20px; text-decoration: none; margin: 50px auto 50px; } .btn:hover { background: #30e3cb; background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); text-decoration: none; } .btn2{ background: #11cdd4; background-image: -webkit-linear-gradient(top, #11cdd4, #11999e); background-image: -moz-linear-gradient(top, #11cdd4, #11999e); background-image: -ms-linear-gradient(top, #11cdd4, #11999e); background-image: -o-linear-gradient(top, #11cdd4, #11999e); background-image: linear-gradient(to bottom, #11cdd4, #11999e); -webkit-border-radius: 20; -moz-border-radius: 20; border-radius: 20px; font-family: 'Merriweather', serif; color: #ffffff; font-size: 20px; padding: 10px 20px 10px 20px; text-decoration: none; margin: 50px auto 50px; width: 20%; } .btn2:hover{ background: #30e3cb; background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad); background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad); background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad); text-decoration: none; } .unicode{ margin: 90px auto auto auto }
0.341802
0.084493
body { font-family : "Trebuchet MS", Arial, Helvetica, sans-serif; background: #fff url(../_img/bg.png) no-repeat fixed 5px 5px; margin: 0; padding: 0; } #wrapper { width: 766px; margin-left: 100px; margin-top: 30px; } #top { background: #fff url(../_img/bg_top.png) no-repeat; } #logo_dnscheck { margin: 0; height: 80px; width: 500px; float: left; } #logo_se { margin: 0; height: 80px; width: 200px; float: right; } #logo_dnscheck a { display: block; height: 80px; width: 500px; text-indent: -5000px; } #logo_se a { display: block; text-indent: -5000px; height: 80px; width: 200px; } #searchbox { display: inline; float: left; clear: both; width: 385px; padding: 20px 20px 0 20px; margin-left: 170px; background: url(../_img/bg_bottom_searchbox.png) no-repeat left bottom; } #menu { float: right; width: 150px; } #menu ul { margin: 0; padding: 0; list-style: none; } #menu ul li { background: url(../_img/bg_menu.png) no-repeat left; font-size: 0.7em; line-height: 26px; height: 26px; margin-bottom: 2px; padding-left: 7px; } #menu ul li a { background: url(../_img/bg_linkarrow.png) no-repeat left; padding-left: 10px; } .testtabs { clear: both; border-bottom: 1px solid #009fc5; height: 28px; } .testtabs ul { margin: 0; list-style-type: none; padding: 0; } .testtabs ul li { float: left; height: 29px; background: url(../_img/bg_testtab_body_off.png) top right; margin-right: 2px; } .testtabs ul li a { float: left; height: 29px; display: block; color: #666; font-size: 0.9em; line-height: 27px; } .testtabs ul li a:before { vertical-align: text-top; content: url(../_img/bg_testtab_left_off.png); } .testtabs ul li a:after { vertical-align: text-top; content: url(../_img/bg_testtab_right_off.png); } .testtabs ul li.testtabson { height: 29px; background: url(../_img/bg_testtab_body_on.png) top right; } .testtabs ul li.testtabson a { height: 29px; color: #fff; font-weight: bold; line-height: 29px; } .testtabs ul li.testtabson a:before { vertical-align: text-top; content: url(../_img/bg_testtab_left_on.png); } .testtabs ul li.testtabson a:after { vertical-align: text-top; content: url(../_img/bg_testtab_right_on.png); } #searchhead { margin: 15px 0; color: #ff6b00; clear: both; } p#testtext { clear: both; margin: 0 0 15px 0; color: #666; font-size: 0.8em; } #testinput { margin: 15px 0; } #testinput label { height: 36px; width: 123px; background: #fff url(../_img/bg_label_testinput.png) no-repeat top; font-size: 0.9em; font-weight: bold; text-align: center; color: #fff; line-height: 36px; float: left; } #domaininput { height: 26px; width: 242px; border: none; padding: 5px 10px; background: #fff url(../_img/bg_testinput.png) no-repeat top; font-size: 1.1em; color: #666; line-height: 36px; float: right; } a.button:link, a.button:visited { display: block; background: #333 url(../_img/bg_testbutton.png) no-repeat; height: 38px; width: 123px; color: #fff; text-decoration: none; font-size: 1em; line-height: 38px; font-weight: bold; text-align: center; margin: 0 auto 20px auto; } #testbutton { text-align: center; clear: both; } h4.tabhead { width: 150px; height: 32px; margin: 0 2px 0 0; } h4.tabhead span { display: block; float: left; height: 32px; background: url(../_img/bg_testtab_body_off.png) top right; display: block; color: #66c4db; font-size: 0.8em; line-height: 26px; text-align: center; } h4.tabhead span:before { vertical-align: text-top; content: url(../_img/bg_testtab_left_off.png); } h4.tabhead span:after { vertical-align: text-top; content: url(../_img/bg_testtab_right_off.png); } .nameserver { clear: both; background: #cceaf2; border-bottom: 1px solid #99d9e8; border-top: 1px solid #fff; padding: 2px; height: 20px; } .nameserver label { float: left; font-size: 0.7em; color: #009fc5; font-weight: bold; margin: 0 5px; } .nameserver input { float: left; font-size: 0.7em; color: #666; background: #fff; border: 1px solid #fff; height: 16px; width: 130px; } .addnameserver { float: right; margin: 10px 0 5px 0; font-size: 0.7em; } #addnameserver { display: block; background: url(../_img/butt_addnameserver_right.png) no-repeat center right; height: 19px; padding-right: 7px; } #addnameserver span { display: block; background: url(../_img/butt_addnameserver_left.png) no-repeat center left; height: 19px; padding-left: 15px; line-height: 19px; } .removenameserver { float: right; display: none; } #undelegateddomain_info { clear: both; margin: 0 0 25px 0; width: 425px; margin-left: 170px; } #undelegateddomain_info p { margin: 0; font-size: 0.8em; color: #ff6b00; text-align: center; } form { margin: 0; padding: 0; } #result_status { clear: both; margin: 25px 0; background: #000 url(../_img/bg_status1.png) no-repeat top; width: 425px; margin-left: 170px; } #status_bottom { clear: both; background: #000 url(../_img/bg_status2.png) no-repeat top; font-size: 1px; height: 6px; } #status_light { float: left; } .mainok { height: 58px; width: 74px; background: url(../_img/status_ok.png) no-repeat 10px 0; } .mainwarn { height: 58px; width: 74px; background: url(../_img/status_warn.png) no-repeat 10px 0; } .mainerror { height: 58px; width: 74px; background: url(../_img/status_error.png) no-repeat 10px 0; } .loaderror { height: 58px; width: 74px; background: url(../_img/status_loaderror.png) no-repeat 10px 0; } .mainload { background: url(../_img/status_loading.gif) no-repeat 21px 15px; height: 58px; width: 74px; } #result_status h3, #result_status p { width: 350px; float: left; color: #fff; margin : 0; padding: 0; } #result_status h3 { margin: 10px 0 0 0; } #result_status p { font-size: 0.8em; } #resultwrapper { } #result { width: 550px; float: left; margin-bottom: 25px; } .widetop { background: #009fc5 url(../_img/bg_topwide.png) no-repeat; height: 41px; /*margin-bottom: 1px;*/ } #result ul.tabs { margin: 0; padding: 12px 0 0 10px; list-style-type: none; } #result ul.tabs li { float: left; height: 27px; background: url(../_img/bg_tab_body_off.png) top right; margin-right: 2px; /*padding-right: 10px;*/ } #result ul.tabs li a { float: left; height: 27px; display: block; color: #cceaf2; font-size: 0.9em; line-height: 27px; } #result ul.tabs li a:before { vertical-align: text-top; content: url(../_img/bg_tab_left_off.png); } #result ul.tabs li a:after { vertical-align: text-top; content: url(../_img/bg_tab_right_off.png); } #result ul.tabs li.tab_on { height: 29px; background: url(../_img/bg_tab_body_on.png) top; } #result ul.tabs li.tab_on a { height: 29px; color: #666; font-weight: bold; line-height: 29px; } #result ul.tabs li.tab_on a:before { vertical-align: text-top; content: url(../_img/bg_tab_left_on.png); } #result ul.tabs li.tab_on a:after { vertical-align: text-top; content: url(../_img/bg_tab_right_on.png); } .maintest { background: #cceaf2 url(../_img/bg_mainresult.png) no-repeat; height: 40px; width: 550px; margin-top: 1px; } .maintest h4 { height: 40px; margin: 0 0 0 15px; color: #00a0c6; line-height: 40px; } .maintest h4.ok { background: url(../_img/status_ok_14.gif) no-repeat 0 13px; padding-left: 20px; } .maintest h4.warn { background: url(../_img/status_warn_14.gif) no-repeat 0 13px; padding-left: 20px; } .maintest h4.error { background: url(../_img/status_error_14.gif) no-repeat 0 13px; padding-left: 20px; } .maintest h4.off { background: url(../_img/status_off_14.gif) no-repeat 0 13px; padding-left: 20px; color: #66c5dc; } .maintest h4 a { background: url(../_img/arrow_closed.gif) no-repeat center right; display: block; margin-right: 15px; } .maintest h4 a.open { background: url(../_img/arrow_open.gif) no-repeat center right; } ul.subtests { margin: 0; padding: 0; list-style-type: none; } ul.subtests li { background: #f5f5f5; margin-top: 1px; padding: 3px 15px; } ul.subtests li.subtestcat { background: #f5f5f5 url(../_img/bg_subcat.png) repeat-x bottom; margin-top: 1px; padding: 3px 15px; color: #009fc5; } ul.subtests li.lev2 { padding: 3px 15px 3px 30px; } ul.subtests li.subtestcat p { font-weight: bold; } ul.subtests p { margin: 0; font-weight: normal; font-size: 0.9em; color: #999; padding-left: 20px; } ul.subtests p.ok { background: url(../_img/status_ok_5.png) no-repeat 5px center; padding-left: 20px; color: #666; } ul.subtests p.warn { background: url(../_img/status_warn_5.png) no-repeat 5px center; padding-left: 20px; color: #666; } ul.subtests p.error { background: url(../_img/status_error_5.png) no-repeat 5px center; padding-left: 20px; color: #666; } ul.subtests p.notice { font-weight: bold; color: #666; } ul.subtests a { color: #666; background: url(../_img/arrow_closed.gif) no-repeat center right; display: block; } ul.subtests a.open { background: url(../_img/arrow_open.gif) no-repeat center right; } ul.subtests li.testinfo { background: #f5f5f5 url(../_img/img_info.gif) no-repeat 485px 15px; padding: 5px 80px 15px 15px; margin-top: 0; } ul.subtests li.testinfo2 { background: #f5f5f5 url(../_img/img_info.gif) no-repeat 485px 15px; padding: 5px 80px 15px 30px; margin-top: 0; } #result_error { border: 1px solid #cceaf2; background: #ecf6f9; padding: 15px; } #result_error p { color: #666; font-size: 0.8em; margin: 0 0 15px 0; } #history_loader { float: right; margin-top: 10px; margin-right: 15px; } #result_loader { float: right; margin-top: 12px; margin-right: 15px; } #history { width: 200px; float: right; margin-bottom: 25px; } .smalltop { margin: 0; height: 36px; background: #009fc5 url(../_img/bg_topsmall.png) no-repeat; color: #fff; line-height: 36px; padding-left: 15px; } .topmargin { margin: 15px 0 0 0; } .smallbox { border: 1px solid #cceaf2; background: #ecf6f9; padding: 15px; } .smallbox p { color: #666; font-size: 0.8em; margin: 0 0 15px 0; } .smallbox p.testok { background: url(../_img/status_ok_14.gif) no-repeat left 2px; padding-left: 20px; margin: 0 0 5px 0; } .smallbox p.testwarn { background: url(../_img/status_warn_14.gif) no-repeat left 2px; padding-left: 20px; margin: 0 0 5px 0; } .smallbox p.testerror { background: url(../_img/status_error_14.gif) no-repeat left 2px; padding-left: 20px; margin: 0 0 5px 0; } .smallbox p.testoff { background: url(../_img/status_off_14.gif) no-repeat left 2px; padding-left: 20px; margin: 0 0 5px 0; } .smallbox ul { margin: 0; padding: 0; list-style-type: none; } .smallbox ul li { font-size: 0.8em; margin-bottom: 3px; } #history .ok { background: url(../_img/status_ok_5.png) no-repeat left center; padding-left: 10px; } #history .warn { background: url(../_img/status_warn_5.png) no-repeat left center; padding-left: 10px; } #history .error { background: url(../_img/status_error_5.png) no-repeat left center; padding-left: 10px; } .pager { border-left: 1px solid #cceaf2; border-right: 1px solid #cceaf2; background: #cceaf2 url(../_img/bg_pager.png) repeat-x top; padding: 15px; } .pager img { float: left; border: none; } #pagerback, #pagerforward { margin: 0 3px; } .pager p { float: left; margin: 0; color: #666; font-size: 0.8em; text-align: center; width: 90px; } a:link, a:visited { color: #009fc5; text-decoration: none; } a:hover { text-decoration: underline; } #startwrapper { width: 425px; margin: 25px 0 25px 170px; } #startwrapper h3 { margin: 0; height: 36px; background: #009fc5 url(../_img/bg_starttop.png) no-repeat; color: #fff; line-height: 36px; padding-left: 15px; } .right { float: right; margin: 0 0 15px 15px; } .startbox { border: 1px solid #cceaf2; background: #ecf6f9; padding: 15px; } .startbox p { font-size: 0.8em; color: #666; margin: 0 0 15px; } .startbox h5 { font-size: 0.9em; color: #666; margin: 0; } .startbox ol { color: #666; font-size: 0.8em; } .divider { border-top: 1px solid #999; margin-bottom: 15px; } #footer { clear: both; border-top: 1px solid #cceaf2; padding-top: 10px; padding-bottom: 25px; } #footer p { font-size: 0.8em; margin: 0; color: #666; } #f_info { float: left; } #f_links { float: right; text-align: right; } .lang_en { background: url(../_img/flag_en.png) no-repeat 0 3px; padding-left: 25px; } .lang_se { background: url(../_img/flag_se.png) no-repeat 0 3px; padding-left: 25px; } .clear { clear: both; } #permalink { font-size: 0.8em; color: #999; }
webui/public_html/_css/dnscheck.css
body { font-family : "Trebuchet MS", Arial, Helvetica, sans-serif; background: #fff url(../_img/bg.png) no-repeat fixed 5px 5px; margin: 0; padding: 0; } #wrapper { width: 766px; margin-left: 100px; margin-top: 30px; } #top { background: #fff url(../_img/bg_top.png) no-repeat; } #logo_dnscheck { margin: 0; height: 80px; width: 500px; float: left; } #logo_se { margin: 0; height: 80px; width: 200px; float: right; } #logo_dnscheck a { display: block; height: 80px; width: 500px; text-indent: -5000px; } #logo_se a { display: block; text-indent: -5000px; height: 80px; width: 200px; } #searchbox { display: inline; float: left; clear: both; width: 385px; padding: 20px 20px 0 20px; margin-left: 170px; background: url(../_img/bg_bottom_searchbox.png) no-repeat left bottom; } #menu { float: right; width: 150px; } #menu ul { margin: 0; padding: 0; list-style: none; } #menu ul li { background: url(../_img/bg_menu.png) no-repeat left; font-size: 0.7em; line-height: 26px; height: 26px; margin-bottom: 2px; padding-left: 7px; } #menu ul li a { background: url(../_img/bg_linkarrow.png) no-repeat left; padding-left: 10px; } .testtabs { clear: both; border-bottom: 1px solid #009fc5; height: 28px; } .testtabs ul { margin: 0; list-style-type: none; padding: 0; } .testtabs ul li { float: left; height: 29px; background: url(../_img/bg_testtab_body_off.png) top right; margin-right: 2px; } .testtabs ul li a { float: left; height: 29px; display: block; color: #666; font-size: 0.9em; line-height: 27px; } .testtabs ul li a:before { vertical-align: text-top; content: url(../_img/bg_testtab_left_off.png); } .testtabs ul li a:after { vertical-align: text-top; content: url(../_img/bg_testtab_right_off.png); } .testtabs ul li.testtabson { height: 29px; background: url(../_img/bg_testtab_body_on.png) top right; } .testtabs ul li.testtabson a { height: 29px; color: #fff; font-weight: bold; line-height: 29px; } .testtabs ul li.testtabson a:before { vertical-align: text-top; content: url(../_img/bg_testtab_left_on.png); } .testtabs ul li.testtabson a:after { vertical-align: text-top; content: url(../_img/bg_testtab_right_on.png); } #searchhead { margin: 15px 0; color: #ff6b00; clear: both; } p#testtext { clear: both; margin: 0 0 15px 0; color: #666; font-size: 0.8em; } #testinput { margin: 15px 0; } #testinput label { height: 36px; width: 123px; background: #fff url(../_img/bg_label_testinput.png) no-repeat top; font-size: 0.9em; font-weight: bold; text-align: center; color: #fff; line-height: 36px; float: left; } #domaininput { height: 26px; width: 242px; border: none; padding: 5px 10px; background: #fff url(../_img/bg_testinput.png) no-repeat top; font-size: 1.1em; color: #666; line-height: 36px; float: right; } a.button:link, a.button:visited { display: block; background: #333 url(../_img/bg_testbutton.png) no-repeat; height: 38px; width: 123px; color: #fff; text-decoration: none; font-size: 1em; line-height: 38px; font-weight: bold; text-align: center; margin: 0 auto 20px auto; } #testbutton { text-align: center; clear: both; } h4.tabhead { width: 150px; height: 32px; margin: 0 2px 0 0; } h4.tabhead span { display: block; float: left; height: 32px; background: url(../_img/bg_testtab_body_off.png) top right; display: block; color: #66c4db; font-size: 0.8em; line-height: 26px; text-align: center; } h4.tabhead span:before { vertical-align: text-top; content: url(../_img/bg_testtab_left_off.png); } h4.tabhead span:after { vertical-align: text-top; content: url(../_img/bg_testtab_right_off.png); } .nameserver { clear: both; background: #cceaf2; border-bottom: 1px solid #99d9e8; border-top: 1px solid #fff; padding: 2px; height: 20px; } .nameserver label { float: left; font-size: 0.7em; color: #009fc5; font-weight: bold; margin: 0 5px; } .nameserver input { float: left; font-size: 0.7em; color: #666; background: #fff; border: 1px solid #fff; height: 16px; width: 130px; } .addnameserver { float: right; margin: 10px 0 5px 0; font-size: 0.7em; } #addnameserver { display: block; background: url(../_img/butt_addnameserver_right.png) no-repeat center right; height: 19px; padding-right: 7px; } #addnameserver span { display: block; background: url(../_img/butt_addnameserver_left.png) no-repeat center left; height: 19px; padding-left: 15px; line-height: 19px; } .removenameserver { float: right; display: none; } #undelegateddomain_info { clear: both; margin: 0 0 25px 0; width: 425px; margin-left: 170px; } #undelegateddomain_info p { margin: 0; font-size: 0.8em; color: #ff6b00; text-align: center; } form { margin: 0; padding: 0; } #result_status { clear: both; margin: 25px 0; background: #000 url(../_img/bg_status1.png) no-repeat top; width: 425px; margin-left: 170px; } #status_bottom { clear: both; background: #000 url(../_img/bg_status2.png) no-repeat top; font-size: 1px; height: 6px; } #status_light { float: left; } .mainok { height: 58px; width: 74px; background: url(../_img/status_ok.png) no-repeat 10px 0; } .mainwarn { height: 58px; width: 74px; background: url(../_img/status_warn.png) no-repeat 10px 0; } .mainerror { height: 58px; width: 74px; background: url(../_img/status_error.png) no-repeat 10px 0; } .loaderror { height: 58px; width: 74px; background: url(../_img/status_loaderror.png) no-repeat 10px 0; } .mainload { background: url(../_img/status_loading.gif) no-repeat 21px 15px; height: 58px; width: 74px; } #result_status h3, #result_status p { width: 350px; float: left; color: #fff; margin : 0; padding: 0; } #result_status h3 { margin: 10px 0 0 0; } #result_status p { font-size: 0.8em; } #resultwrapper { } #result { width: 550px; float: left; margin-bottom: 25px; } .widetop { background: #009fc5 url(../_img/bg_topwide.png) no-repeat; height: 41px; /*margin-bottom: 1px;*/ } #result ul.tabs { margin: 0; padding: 12px 0 0 10px; list-style-type: none; } #result ul.tabs li { float: left; height: 27px; background: url(../_img/bg_tab_body_off.png) top right; margin-right: 2px; /*padding-right: 10px;*/ } #result ul.tabs li a { float: left; height: 27px; display: block; color: #cceaf2; font-size: 0.9em; line-height: 27px; } #result ul.tabs li a:before { vertical-align: text-top; content: url(../_img/bg_tab_left_off.png); } #result ul.tabs li a:after { vertical-align: text-top; content: url(../_img/bg_tab_right_off.png); } #result ul.tabs li.tab_on { height: 29px; background: url(../_img/bg_tab_body_on.png) top; } #result ul.tabs li.tab_on a { height: 29px; color: #666; font-weight: bold; line-height: 29px; } #result ul.tabs li.tab_on a:before { vertical-align: text-top; content: url(../_img/bg_tab_left_on.png); } #result ul.tabs li.tab_on a:after { vertical-align: text-top; content: url(../_img/bg_tab_right_on.png); } .maintest { background: #cceaf2 url(../_img/bg_mainresult.png) no-repeat; height: 40px; width: 550px; margin-top: 1px; } .maintest h4 { height: 40px; margin: 0 0 0 15px; color: #00a0c6; line-height: 40px; } .maintest h4.ok { background: url(../_img/status_ok_14.gif) no-repeat 0 13px; padding-left: 20px; } .maintest h4.warn { background: url(../_img/status_warn_14.gif) no-repeat 0 13px; padding-left: 20px; } .maintest h4.error { background: url(../_img/status_error_14.gif) no-repeat 0 13px; padding-left: 20px; } .maintest h4.off { background: url(../_img/status_off_14.gif) no-repeat 0 13px; padding-left: 20px; color: #66c5dc; } .maintest h4 a { background: url(../_img/arrow_closed.gif) no-repeat center right; display: block; margin-right: 15px; } .maintest h4 a.open { background: url(../_img/arrow_open.gif) no-repeat center right; } ul.subtests { margin: 0; padding: 0; list-style-type: none; } ul.subtests li { background: #f5f5f5; margin-top: 1px; padding: 3px 15px; } ul.subtests li.subtestcat { background: #f5f5f5 url(../_img/bg_subcat.png) repeat-x bottom; margin-top: 1px; padding: 3px 15px; color: #009fc5; } ul.subtests li.lev2 { padding: 3px 15px 3px 30px; } ul.subtests li.subtestcat p { font-weight: bold; } ul.subtests p { margin: 0; font-weight: normal; font-size: 0.9em; color: #999; padding-left: 20px; } ul.subtests p.ok { background: url(../_img/status_ok_5.png) no-repeat 5px center; padding-left: 20px; color: #666; } ul.subtests p.warn { background: url(../_img/status_warn_5.png) no-repeat 5px center; padding-left: 20px; color: #666; } ul.subtests p.error { background: url(../_img/status_error_5.png) no-repeat 5px center; padding-left: 20px; color: #666; } ul.subtests p.notice { font-weight: bold; color: #666; } ul.subtests a { color: #666; background: url(../_img/arrow_closed.gif) no-repeat center right; display: block; } ul.subtests a.open { background: url(../_img/arrow_open.gif) no-repeat center right; } ul.subtests li.testinfo { background: #f5f5f5 url(../_img/img_info.gif) no-repeat 485px 15px; padding: 5px 80px 15px 15px; margin-top: 0; } ul.subtests li.testinfo2 { background: #f5f5f5 url(../_img/img_info.gif) no-repeat 485px 15px; padding: 5px 80px 15px 30px; margin-top: 0; } #result_error { border: 1px solid #cceaf2; background: #ecf6f9; padding: 15px; } #result_error p { color: #666; font-size: 0.8em; margin: 0 0 15px 0; } #history_loader { float: right; margin-top: 10px; margin-right: 15px; } #result_loader { float: right; margin-top: 12px; margin-right: 15px; } #history { width: 200px; float: right; margin-bottom: 25px; } .smalltop { margin: 0; height: 36px; background: #009fc5 url(../_img/bg_topsmall.png) no-repeat; color: #fff; line-height: 36px; padding-left: 15px; } .topmargin { margin: 15px 0 0 0; } .smallbox { border: 1px solid #cceaf2; background: #ecf6f9; padding: 15px; } .smallbox p { color: #666; font-size: 0.8em; margin: 0 0 15px 0; } .smallbox p.testok { background: url(../_img/status_ok_14.gif) no-repeat left 2px; padding-left: 20px; margin: 0 0 5px 0; } .smallbox p.testwarn { background: url(../_img/status_warn_14.gif) no-repeat left 2px; padding-left: 20px; margin: 0 0 5px 0; } .smallbox p.testerror { background: url(../_img/status_error_14.gif) no-repeat left 2px; padding-left: 20px; margin: 0 0 5px 0; } .smallbox p.testoff { background: url(../_img/status_off_14.gif) no-repeat left 2px; padding-left: 20px; margin: 0 0 5px 0; } .smallbox ul { margin: 0; padding: 0; list-style-type: none; } .smallbox ul li { font-size: 0.8em; margin-bottom: 3px; } #history .ok { background: url(../_img/status_ok_5.png) no-repeat left center; padding-left: 10px; } #history .warn { background: url(../_img/status_warn_5.png) no-repeat left center; padding-left: 10px; } #history .error { background: url(../_img/status_error_5.png) no-repeat left center; padding-left: 10px; } .pager { border-left: 1px solid #cceaf2; border-right: 1px solid #cceaf2; background: #cceaf2 url(../_img/bg_pager.png) repeat-x top; padding: 15px; } .pager img { float: left; border: none; } #pagerback, #pagerforward { margin: 0 3px; } .pager p { float: left; margin: 0; color: #666; font-size: 0.8em; text-align: center; width: 90px; } a:link, a:visited { color: #009fc5; text-decoration: none; } a:hover { text-decoration: underline; } #startwrapper { width: 425px; margin: 25px 0 25px 170px; } #startwrapper h3 { margin: 0; height: 36px; background: #009fc5 url(../_img/bg_starttop.png) no-repeat; color: #fff; line-height: 36px; padding-left: 15px; } .right { float: right; margin: 0 0 15px 15px; } .startbox { border: 1px solid #cceaf2; background: #ecf6f9; padding: 15px; } .startbox p { font-size: 0.8em; color: #666; margin: 0 0 15px; } .startbox h5 { font-size: 0.9em; color: #666; margin: 0; } .startbox ol { color: #666; font-size: 0.8em; } .divider { border-top: 1px solid #999; margin-bottom: 15px; } #footer { clear: both; border-top: 1px solid #cceaf2; padding-top: 10px; padding-bottom: 25px; } #footer p { font-size: 0.8em; margin: 0; color: #666; } #f_info { float: left; } #f_links { float: right; text-align: right; } .lang_en { background: url(../_img/flag_en.png) no-repeat 0 3px; padding-left: 25px; } .lang_se { background: url(../_img/flag_se.png) no-repeat 0 3px; padding-left: 25px; } .clear { clear: both; } #permalink { font-size: 0.8em; color: #999; }
0.242206
0.064683
body { background: #111 url('res/images/cube.png') no-repeat fixed left bottom; margin:5px; } a.topMenu { color:#FFF; text-decoration: none; font-size: 15px; background-color:#777; padding:2px; font-family:Arial,Helvetica,sans-serif; } .info { color:#EEE; text-decoration: none; font-size: 20px; font-family:Arial,Helvetica,sans-serif; } .info:hover { color:#FFF; } .score { color:#EEE; text-decoration: none; font-size: 50px; font-family:Arial,Helvetica,sans-serif; } .score:hover { color:#FFF; } a.clicked { color:#FFF; text-decoration: none; font-size: 20px; background-color:#393; padding:3px; font-family:Arial,Helvetica,sans-serif; } a.topMenu:hover { background-color:#999; } td.h { font-size: 35px; color: #EEE; font-family:Arial,Helvetica,sans-serif; } a.madeby { font-size: 10px; color: #DDE; font-family:Arial,Helvetica,sans-serif; text-decoration:none; } a.madeby:hover { color:#EEF; } td.beta { font-size: 10px; color: #EE2; font-family:Arial,Helvetica,sans-serif; } td.beta:hover { color: #EE4; } td.h:hover { font-size: 35px; color: #FFF; font-family:Arial,Helvetica,sans-serif; } #inp { font-family: Arial,Helvetica,sans-serif; color: White; font-size:20px; } #inpa { font-size: 34px; font-family: Arial,Helvetica,sans-serif; text-decoration:none; padding-top: 5px; padding-bottom: 5px; padding-left: 45px; padding-right: 45px; background-color:grey; color: Orange; } #inpa:hover { background-color:#999; } .end { font-family: Arial,Helvetica,sans-serif; color: #EEE; font-size:20px; text-align: center; } .end:hover { color:#FFF; } .small { font-family: Arial,Helvetica,sans-serif; font-size:10px; color: #DDD; text-align: center; } body { background: #111 url('res/images/cube.png') no-repeat fixed left bottom; margin:5px; } .social { border: 2px solid #111; } a.topMenu { color:#FFF; text-decoration: none; font-size: 15px; background-color:#777; padding:2px; font-family:Arial,Helvetica,sans-serif; } .info { color:#EEE; text-decoration: none; font-size: 20px; font-family:Arial,Helvetica,sans-serif; } .info:hover { color:#FFF; } .score { color:#EEE; text-decoration: none; font-size: 50px; font-family:Arial,Helvetica,sans-serif; } .score:hover { color:#FFF; } a.clicked { color:#FFF; text-decoration: none; font-size: 20px; background-color:#393; padding:3px; font-family:Arial,Helvetica,sans-serif; } a.topMenu:hover { background-color:#999; } td.h { font-size: 35px; color: #EEE; font-family:Arial,Helvetica,sans-serif; } td.beta { font-size: 10px; color: #EE2; font-family:Arial,Helvetica,sans-serif; } td.beta:hover { color: #EE4; } td.h:hover { font-size: 35px; color: #FFF; font-family:Arial,Helvetica,sans-serif; } #inp { font-family: Arial,Helvetica,sans-serif; color: White; font-size:20px; } #inpa { font-size: 34px; font-family: Arial,Helvetica,sans-serif; text-decoration:none; padding-top: 5px; padding-bottom: 5px; padding-left: 45px; padding-right: 45px; background-color:grey; color: Orange; } #inpa:hover { background-color:#999; } .end { font-family: Arial,Helvetica,sans-serif; color: #EEE; font-size:20px; text-align: center; } .end:hover { color:#FFF; } .small { font-family: Arial,Helvetica,sans-serif; font-size:10px; color: #DDD; text-align: center; }
style.css
body { background: #111 url('res/images/cube.png') no-repeat fixed left bottom; margin:5px; } a.topMenu { color:#FFF; text-decoration: none; font-size: 15px; background-color:#777; padding:2px; font-family:Arial,Helvetica,sans-serif; } .info { color:#EEE; text-decoration: none; font-size: 20px; font-family:Arial,Helvetica,sans-serif; } .info:hover { color:#FFF; } .score { color:#EEE; text-decoration: none; font-size: 50px; font-family:Arial,Helvetica,sans-serif; } .score:hover { color:#FFF; } a.clicked { color:#FFF; text-decoration: none; font-size: 20px; background-color:#393; padding:3px; font-family:Arial,Helvetica,sans-serif; } a.topMenu:hover { background-color:#999; } td.h { font-size: 35px; color: #EEE; font-family:Arial,Helvetica,sans-serif; } a.madeby { font-size: 10px; color: #DDE; font-family:Arial,Helvetica,sans-serif; text-decoration:none; } a.madeby:hover { color:#EEF; } td.beta { font-size: 10px; color: #EE2; font-family:Arial,Helvetica,sans-serif; } td.beta:hover { color: #EE4; } td.h:hover { font-size: 35px; color: #FFF; font-family:Arial,Helvetica,sans-serif; } #inp { font-family: Arial,Helvetica,sans-serif; color: White; font-size:20px; } #inpa { font-size: 34px; font-family: Arial,Helvetica,sans-serif; text-decoration:none; padding-top: 5px; padding-bottom: 5px; padding-left: 45px; padding-right: 45px; background-color:grey; color: Orange; } #inpa:hover { background-color:#999; } .end { font-family: Arial,Helvetica,sans-serif; color: #EEE; font-size:20px; text-align: center; } .end:hover { color:#FFF; } .small { font-family: Arial,Helvetica,sans-serif; font-size:10px; color: #DDD; text-align: center; } body { background: #111 url('res/images/cube.png') no-repeat fixed left bottom; margin:5px; } .social { border: 2px solid #111; } a.topMenu { color:#FFF; text-decoration: none; font-size: 15px; background-color:#777; padding:2px; font-family:Arial,Helvetica,sans-serif; } .info { color:#EEE; text-decoration: none; font-size: 20px; font-family:Arial,Helvetica,sans-serif; } .info:hover { color:#FFF; } .score { color:#EEE; text-decoration: none; font-size: 50px; font-family:Arial,Helvetica,sans-serif; } .score:hover { color:#FFF; } a.clicked { color:#FFF; text-decoration: none; font-size: 20px; background-color:#393; padding:3px; font-family:Arial,Helvetica,sans-serif; } a.topMenu:hover { background-color:#999; } td.h { font-size: 35px; color: #EEE; font-family:Arial,Helvetica,sans-serif; } td.beta { font-size: 10px; color: #EE2; font-family:Arial,Helvetica,sans-serif; } td.beta:hover { color: #EE4; } td.h:hover { font-size: 35px; color: #FFF; font-family:Arial,Helvetica,sans-serif; } #inp { font-family: Arial,Helvetica,sans-serif; color: White; font-size:20px; } #inpa { font-size: 34px; font-family: Arial,Helvetica,sans-serif; text-decoration:none; padding-top: 5px; padding-bottom: 5px; padding-left: 45px; padding-right: 45px; background-color:grey; color: Orange; } #inpa:hover { background-color:#999; } .end { font-family: Arial,Helvetica,sans-serif; color: #EEE; font-size:20px; text-align: center; } .end:hover { color:#FFF; } .small { font-family: Arial,Helvetica,sans-serif; font-size:10px; color: #DDD; text-align: center; }
0.179567
0.042048
@media (min-width: 768px) { }@media (min-width: 768px) { }@media (max-width: 767px) { }@media (min-width: 768px) { }@media (min-width: 768px) { }@media (min-width: 768px) { }@media (max-width: 767px) { }@media (max-width: 767px) { }@media (max-width: 649px) { }@media (min-width: 650px) { }.font-size12 { font-size: 12px; } .SetAndCategory { margin-right: 10px; } .correctness-prohability { margin-left: 10px; } .question-details { color: #555555; font-size: 12px; } .question-details .show-tooltip { margin-right: 5px; } .question-details .category-set { display: flex; } .question-details .category-set .label-category { margin-right: 10px; } .question-details .category-set .label-set { margin-right: 10px; } .question-details .category-set #Category { font-size: 12px; } .question-details .category-set .fa-chevron-right { margin-top: 4px; } .question-details .second-row { padding-left: 0px; display: flex; } .question-details .second-row .fa-eye { padding-right: 3px; } .question-details .second-row .media-below-lg { padding-left: 10px; padding-top: 10px; } .question-details .second-row .questionDetailsStatistic { padding-left: 10px; padding-right: 10px; } .question-details .second-row .questionDetailsStatistic .question-details-row { min-height: 24px; display: flex; line-height: 18px; padding: 4px 0; } .question-details .second-row .questionDetailsStatistic .question-details-row span, .question-details .second-row .questionDetailsStatistic .question-details-row .question-details-label-double { padding-top: 2px; max-width: 300px; } .question-details .second-row .questionDetailsStatistic .question-details-row .question-details-label-double { padding-top: 4px; } .question-details .second-row .questionDetailsStatistic .question-details-row .question-details-label-double span { padding-top: 0; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container { min-width: 56px; width: 56px; display: flex; justify-content: center; text-align: center; font-weight: bold; font-size: 18px; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container .show-tooltip { margin: unset; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div { margin: auto; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span { top: 2px; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAdded, .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAddedNot, .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAddSpinner { font-size: 18px; padding: 0; line-height: 18px; height: unset; border: 0; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAdded i, .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAddedNot i, .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAddSpinner i { font-size: 18px; height: unset; line-height: unset; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container.pie-chart { font-size: 13px; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container i { padding: unset; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container i.fa-heart { color: #B13A48; } .question-details .seen { padding-right: 10px; margin-left: 25px; } .question-details .learning-status { margin-right: 25px; } .text-sponsor { text-align: center; } .model-categories { padding-top: 0.375em; } #ChipHeader, #StatsHeader { padding-top: 5px; padding-bottom: 5px; font-size: 14px; } @media (min-width: 1200px) { #StatsHeader { display: none; } } #QuestionDetailsApp .separationBorderTop { min-height: 20px; } #QuestionDetailsApp #questionDetailsContainer { padding-left: 15px; padding-right: 12px; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer { display: flex; flex-wrap: wrap; flex-flow: column-reverse; } } #QuestionDetailsApp #questionDetailsContainer .sectionLabel { text-transform: uppercase; font-family: 'Open Sans'; font-size: 12px; font-weight: 600; } #QuestionDetailsApp #questionDetailsContainer #categoryList { padding-bottom: 10px; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #categoryList.isLandingPage { display: none; } } #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListChips { max-height: 308px; overflow: hidden; } @media (max-width: 479px) { #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListChips { display: none; } } #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListLinks { padding: 10px 0; font-size: 12px; } #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListLinks a { line-height: 20px; padding-right: 5px; } @media (min-width: 480px) { #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListLinks { display: none; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody { display: flex; flex-wrap: wrap; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody { padding-bottom: 20px; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf { display: flex; justify-content: center; padding-top: 30px; } @media (max-width: 595px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf { padding-top: 20px; padding-left: 20px; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf .counterLabel { max-width: 160px; width: 100%; padding: 0 0 0 20px; } @media (max-width: 595px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf .counterLabel { max-width: 180px; padding: 0 20px; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf .counterLabel a:hover { cursor: pointer; } @media (min-width: 596px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics { display: flex; justify-content: space-around; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer { min-width: 220px; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection { display: flex; } } @media (max-width: 595px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection { padding-bottom: 10px; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer { display: flex; justify-content: center; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer { justify-content: normal; } } @media (min-width: 350px) and (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg { width: 196px; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g { transform: translate(86px, 80px); } } @media (max-width: 349px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg { width: 140px; transition: 0.2s; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g { transform: translate(66px, 50px); transition: 0.2s; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g path.baseArc, #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g path.personalArc, #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g path.avgArc, #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g text.avgProbabilityLabel { display: none; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer.isInWishknowledge svg { width: 100px; transition: 0.8s ease-in; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer.isInWishknowledge svg g { transform: translate(50px, 50px); transition: 0.8s ease-in; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #probabilityText { display: flex; justify-content: center; padding-bottom: 20px; text-align: center; font-size: 12px; max-width: 300px; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #probabilityText { padding-top: 25px; text-align: left; } } #QuestionDetailsFooter { display: flex; justify-content: space-between; color: #767676; } #QuestionDetailsFooter .questionDetailsFooterPartialLeft { width: 60%; display: flex; flex-wrap: wrap; padding-left: 15px; } #QuestionDetailsFooter .questionDetailsFooterPartialLeft #LicenseQuestion { padding-right: 10px; } #QuestionDetailsFooter .questionDetailsFooterPartialLeft #LicenseQuestion a.TextLinkWithIcon { flex-direction: unset !important; } #QuestionDetailsFooter .questionDetailsFooterPartialLeft #LicenseQuestion a.TextLinkWithIcon img { margin: 0 8px 0 0 !important; } #QuestionDetailsFooter .questionDetailsFooterPartialRight { width: 40%; display: flex; justify-content: flex-end; padding-right: 4px; } #QuestionDetailsFooter .questionDetailsFooterPartialRight .wishknowledgeCount, #QuestionDetailsFooter .questionDetailsFooterPartialRight .viewCount, #QuestionDetailsFooter .questionDetailsFooterPartialRight .commentCount { padding: 0 8px; } #QuestionDetailsFooter .questionDetailsFooterPartialRight .wishknowledgeCount i, #QuestionDetailsFooter .questionDetailsFooterPartialRight .viewCount i, #QuestionDetailsFooter .questionDetailsFooterPartialRight .commentCount i { padding-right: 4px; } #QuestionDetailsFooter .questionDetailsFooterPartialRight .wishknowledgeCount a, #QuestionDetailsFooter .questionDetailsFooterPartialRight .viewCount a, #QuestionDetailsFooter .questionDetailsFooterPartialRight .commentCount a { color: #767676; } #QuestionDetailsFooter .questionDetailsFooterPartialRight .wishknowledgeCount a:hover, #QuestionDetailsFooter .questionDetailsFooterPartialRight .viewCount a:hover, #QuestionDetailsFooter .questionDetailsFooterPartialRight .commentCount a:hover { text-decoration: none; color: #003264; }
src/TrueOrFalse.Frontend.Web/Views/Questions/Answer/AnswerQuestionDetails.css
@media (min-width: 768px) { }@media (min-width: 768px) { }@media (max-width: 767px) { }@media (min-width: 768px) { }@media (min-width: 768px) { }@media (min-width: 768px) { }@media (max-width: 767px) { }@media (max-width: 767px) { }@media (max-width: 649px) { }@media (min-width: 650px) { }.font-size12 { font-size: 12px; } .SetAndCategory { margin-right: 10px; } .correctness-prohability { margin-left: 10px; } .question-details { color: #555555; font-size: 12px; } .question-details .show-tooltip { margin-right: 5px; } .question-details .category-set { display: flex; } .question-details .category-set .label-category { margin-right: 10px; } .question-details .category-set .label-set { margin-right: 10px; } .question-details .category-set #Category { font-size: 12px; } .question-details .category-set .fa-chevron-right { margin-top: 4px; } .question-details .second-row { padding-left: 0px; display: flex; } .question-details .second-row .fa-eye { padding-right: 3px; } .question-details .second-row .media-below-lg { padding-left: 10px; padding-top: 10px; } .question-details .second-row .questionDetailsStatistic { padding-left: 10px; padding-right: 10px; } .question-details .second-row .questionDetailsStatistic .question-details-row { min-height: 24px; display: flex; line-height: 18px; padding: 4px 0; } .question-details .second-row .questionDetailsStatistic .question-details-row span, .question-details .second-row .questionDetailsStatistic .question-details-row .question-details-label-double { padding-top: 2px; max-width: 300px; } .question-details .second-row .questionDetailsStatistic .question-details-row .question-details-label-double { padding-top: 4px; } .question-details .second-row .questionDetailsStatistic .question-details-row .question-details-label-double span { padding-top: 0; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container { min-width: 56px; width: 56px; display: flex; justify-content: center; text-align: center; font-weight: bold; font-size: 18px; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container .show-tooltip { margin: unset; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div { margin: auto; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span { top: 2px; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAdded, .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAddedNot, .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAddSpinner { font-size: 18px; padding: 0; line-height: 18px; height: unset; border: 0; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAdded i, .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAddedNot i, .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container div span.Pin .iAddSpinner i { font-size: 18px; height: unset; line-height: unset; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container.pie-chart { font-size: 13px; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container i { padding: unset; } .question-details .second-row .questionDetailsStatistic .question-details-row .detail-icon-container i.fa-heart { color: #B13A48; } .question-details .seen { padding-right: 10px; margin-left: 25px; } .question-details .learning-status { margin-right: 25px; } .text-sponsor { text-align: center; } .model-categories { padding-top: 0.375em; } #ChipHeader, #StatsHeader { padding-top: 5px; padding-bottom: 5px; font-size: 14px; } @media (min-width: 1200px) { #StatsHeader { display: none; } } #QuestionDetailsApp .separationBorderTop { min-height: 20px; } #QuestionDetailsApp #questionDetailsContainer { padding-left: 15px; padding-right: 12px; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer { display: flex; flex-wrap: wrap; flex-flow: column-reverse; } } #QuestionDetailsApp #questionDetailsContainer .sectionLabel { text-transform: uppercase; font-family: 'Open Sans'; font-size: 12px; font-weight: 600; } #QuestionDetailsApp #questionDetailsContainer #categoryList { padding-bottom: 10px; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #categoryList.isLandingPage { display: none; } } #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListChips { max-height: 308px; overflow: hidden; } @media (max-width: 479px) { #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListChips { display: none; } } #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListLinks { padding: 10px 0; font-size: 12px; } #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListLinks a { line-height: 20px; padding-right: 5px; } @media (min-width: 480px) { #QuestionDetailsApp #questionDetailsContainer #categoryList .categoryListLinks { display: none; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody { display: flex; flex-wrap: wrap; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody { padding-bottom: 20px; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf { display: flex; justify-content: center; padding-top: 30px; } @media (max-width: 595px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf { padding-top: 20px; padding-left: 20px; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf .counterLabel { max-width: 160px; width: 100%; padding: 0 0 0 20px; } @media (max-width: 595px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf .counterLabel { max-width: 180px; padding: 0 20px; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #counterContainer .counterBody .counterHalf .counterLabel a:hover { cursor: pointer; } @media (min-width: 596px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics { display: flex; justify-content: space-around; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer { min-width: 220px; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection { display: flex; } } @media (max-width: 595px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection { padding-bottom: 10px; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer { display: flex; justify-content: center; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer { justify-content: normal; } } @media (min-width: 350px) and (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg { width: 196px; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g { transform: translate(86px, 80px); } } @media (max-width: 349px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg { width: 140px; transition: 0.2s; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g { transform: translate(66px, 50px); transition: 0.2s; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g path.baseArc, #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g path.personalArc, #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g path.avgArc, #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer svg g text.avgProbabilityLabel { display: none; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer.isInWishknowledge svg { width: 100px; transition: 0.8s ease-in; } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #semiPieChart .semiPieSvgContainer.isInWishknowledge svg g { transform: translate(50px, 50px); transition: 0.8s ease-in; } } #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #probabilityText { display: flex; justify-content: center; padding-bottom: 20px; text-align: center; font-size: 12px; max-width: 300px; } @media (max-width: 767px) { #QuestionDetailsApp #questionDetailsContainer #questionStatistics #probabilityContainer #semiPieSection #probabilityText { padding-top: 25px; text-align: left; } } #QuestionDetailsFooter { display: flex; justify-content: space-between; color: #767676; } #QuestionDetailsFooter .questionDetailsFooterPartialLeft { width: 60%; display: flex; flex-wrap: wrap; padding-left: 15px; } #QuestionDetailsFooter .questionDetailsFooterPartialLeft #LicenseQuestion { padding-right: 10px; } #QuestionDetailsFooter .questionDetailsFooterPartialLeft #LicenseQuestion a.TextLinkWithIcon { flex-direction: unset !important; } #QuestionDetailsFooter .questionDetailsFooterPartialLeft #LicenseQuestion a.TextLinkWithIcon img { margin: 0 8px 0 0 !important; } #QuestionDetailsFooter .questionDetailsFooterPartialRight { width: 40%; display: flex; justify-content: flex-end; padding-right: 4px; } #QuestionDetailsFooter .questionDetailsFooterPartialRight .wishknowledgeCount, #QuestionDetailsFooter .questionDetailsFooterPartialRight .viewCount, #QuestionDetailsFooter .questionDetailsFooterPartialRight .commentCount { padding: 0 8px; } #QuestionDetailsFooter .questionDetailsFooterPartialRight .wishknowledgeCount i, #QuestionDetailsFooter .questionDetailsFooterPartialRight .viewCount i, #QuestionDetailsFooter .questionDetailsFooterPartialRight .commentCount i { padding-right: 4px; } #QuestionDetailsFooter .questionDetailsFooterPartialRight .wishknowledgeCount a, #QuestionDetailsFooter .questionDetailsFooterPartialRight .viewCount a, #QuestionDetailsFooter .questionDetailsFooterPartialRight .commentCount a { color: #767676; } #QuestionDetailsFooter .questionDetailsFooterPartialRight .wishknowledgeCount a:hover, #QuestionDetailsFooter .questionDetailsFooterPartialRight .viewCount a:hover, #QuestionDetailsFooter .questionDetailsFooterPartialRight .commentCount a:hover { text-decoration: none; color: #003264; }
0.338624
0.056914
* { box-sizing: border-box; } body { font-family: 'Roboto', serif; } .wrapper { width: 100%; max-width: 1000px; margin: 1em auto; padding: 1em; } .center { align-content: center; text-align: center; } .is-striped { background-color: rgba(233, 200, 147, 0.2); } /* Table column sizing ================================== */ .date-cell { width: 25%; } .topic-cell { width: 36%; } .access-link-cell { width: 13%; } .replay-link-cell { width: 13%; } .pdf-cell { width: 13%; } /* Apply styles ================================== */ .Rtable { display: flex; flex-wrap: wrap; margin: 0 0 3em 0; padding: 0; box-shadow: 0 0 40px rgba(0, 0, 0, 0.2); } .Rtable .Rtable-row { width: 100%; display: flex; } .Rtable .Rtable-row .Rtable-cell { box-sizing: border-box; flex-grow: 1; padding: 0.8em 1.2em; overflow: hidden; list-style: none; } .Rtable .Rtable-row .Rtable-cell.column-heading { background-color: #43BAC0; color: white; padding: 1em; } .Rtable .Rtable-row .Rtable-cell .Rtable-cell--heading { display: none; } .Rtable .Rtable-row .Rtable-cell .Rtable-cell--content a { font-size: 2em; color: #333; } .Rtable .Rtable-row .Rtable-cell .Rtable-cell--content .webinar-name { font-weight: 700; } /* Responsive ==================================== */ @media all and (max-width: 750px) { .is-striped { background-color: white; } .Rtable--collapse { display: block; width: 100%; padding: 1em; box-shadow: none; } .Rtable--collapse .Rtable-row { box-sizing: border-box; width: 100%; display: flex; flex-wrap: wrap; margin-bottom: 2em; box-shadow: 0 0 40px rgba(0, 0, 0, 0.2); } .Rtable--collapse .Rtable-row .Rtable-cell { width: 100% !important; display: flex; align-items: center; } .Rtable--collapse .Rtable-row .Rtable-cell .Rtable-cell--heading { display: inline-block; flex: 1; max-width: 120px; min-width: 120px; color: #43BAC0; font-weight: 700; border-right: 1px solid #ccc; margin-right: 1em; } .Rtable--collapse .Rtable-row .Rtable-cell .Rtable-cell--content { flex: 2; padding-left: 1em; } .Rtable--collapse .topic-cell { background-color: #43BAC0; color: white; font-weight: 700; order: -1; } .Rtable--collapse .topic-cell .Rtable-cell--content { padding-left: 0 !important; } .Rtable--collapse .Rtable-row--head { display: none; } } .no-flexbox .Rtable { display: block; } .no-flexbox .Rtable.Rtable-cell { width: 100%; }
public/style.css
* { box-sizing: border-box; } body { font-family: 'Roboto', serif; } .wrapper { width: 100%; max-width: 1000px; margin: 1em auto; padding: 1em; } .center { align-content: center; text-align: center; } .is-striped { background-color: rgba(233, 200, 147, 0.2); } /* Table column sizing ================================== */ .date-cell { width: 25%; } .topic-cell { width: 36%; } .access-link-cell { width: 13%; } .replay-link-cell { width: 13%; } .pdf-cell { width: 13%; } /* Apply styles ================================== */ .Rtable { display: flex; flex-wrap: wrap; margin: 0 0 3em 0; padding: 0; box-shadow: 0 0 40px rgba(0, 0, 0, 0.2); } .Rtable .Rtable-row { width: 100%; display: flex; } .Rtable .Rtable-row .Rtable-cell { box-sizing: border-box; flex-grow: 1; padding: 0.8em 1.2em; overflow: hidden; list-style: none; } .Rtable .Rtable-row .Rtable-cell.column-heading { background-color: #43BAC0; color: white; padding: 1em; } .Rtable .Rtable-row .Rtable-cell .Rtable-cell--heading { display: none; } .Rtable .Rtable-row .Rtable-cell .Rtable-cell--content a { font-size: 2em; color: #333; } .Rtable .Rtable-row .Rtable-cell .Rtable-cell--content .webinar-name { font-weight: 700; } /* Responsive ==================================== */ @media all and (max-width: 750px) { .is-striped { background-color: white; } .Rtable--collapse { display: block; width: 100%; padding: 1em; box-shadow: none; } .Rtable--collapse .Rtable-row { box-sizing: border-box; width: 100%; display: flex; flex-wrap: wrap; margin-bottom: 2em; box-shadow: 0 0 40px rgba(0, 0, 0, 0.2); } .Rtable--collapse .Rtable-row .Rtable-cell { width: 100% !important; display: flex; align-items: center; } .Rtable--collapse .Rtable-row .Rtable-cell .Rtable-cell--heading { display: inline-block; flex: 1; max-width: 120px; min-width: 120px; color: #43BAC0; font-weight: 700; border-right: 1px solid #ccc; margin-right: 1em; } .Rtable--collapse .Rtable-row .Rtable-cell .Rtable-cell--content { flex: 2; padding-left: 1em; } .Rtable--collapse .topic-cell { background-color: #43BAC0; color: white; font-weight: 700; order: -1; } .Rtable--collapse .topic-cell .Rtable-cell--content { padding-left: 0 !important; } .Rtable--collapse .Rtable-row--head { display: none; } } .no-flexbox .Rtable { display: block; } .no-flexbox .Rtable.Rtable-cell { width: 100%; }
0.556882
0.128689
.btnContainer .primary { padding: 12px 16px; background-image: linear-gradient(315deg, #7652CC 2.04%, #B05CE6 100%) !important; border-radius: 8px; background-size: 150% 100%; background-position: 100% 100%; box-shadow: 0px 5px 5px rgba(36, 36, 56, 0.15); transition: all 0.13s ease-in, background-position 0.25s ease-in; } .btnContainer .primary:hover { box-shadow: 0px 10px 10px rgba(36, 36, 56, 0.2) !important; transform: scale3d(1.04, 1.04, 1.04) !important; background-position: 0% 100%; } .btnContainer .primary:active { transform: scale3d(1, 1, 1) !important; background: linear-gradient(180deg, rgba(58, 0, 116, 0.3) 0%, rgba(58, 0, 116, 0) 100%), linear-gradient(315deg, #7652CC 2.04%, #B05CE6 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; } .btnContainer .primaryText { font-family: var(--font-family); font-weight: var(--font-bold); font-size: var(--font-m); text-transform: uppercase; color: var(--static-white); } /* Primary Alt */ .btnContainer .primaryAlt { padding: 12px 16px; background: #696D88; box-shadow: 0px 5px 5px rgba(36, 36, 56, 0.15); border-radius: 8px; } .btnContainer .primaryAlt:hover { background: #777C96 !important; box-shadow: 0px 10px 10px rgba(36, 36, 56, 0.2) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .primaryAlt:active { background: #5A5E78 !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .primaryAltText { } /* RED */ .btnContainer .red { padding: 12px 16px; background: linear-gradient(180deg, #F15064 0%, #C03A4B 100%);; box-shadow: 0px 5px 5px rgba(36, 36, 56, 0.15); border-radius: 8px; } .btnContainer .red svg { height: 32px !important; width: 32px !important; } .btnContainer .red svg path { fill: var(--static-white) !important; } .btnContainer .red:hover { background: linear-gradient(181.01deg, #F15064 0.87%, #C03A4B 156.23%) !important; box-shadow: 0px 10px 10px rgba(36, 36, 56, 0.2) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .red:active { background: linear-gradient(180deg, #C03A4B 0%, #F15064 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .red.isDepressed { background: linear-gradient(180deg, #C03A4B 0%, #F15064 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; opacity: 0.6; cursor: default; } .btnContainer .redText { color: var(--static-white) !important; } /* GREEN */ .btnContainer .green { padding: 12px 16px; background: linear-gradient(0deg, #4CA446 0%, #6BCF63 100%); box-shadow: 0px 5px 5px rgba(36, 36, 56, 0.15); border-radius: 8px; } .btnContainer .green svg { height: 32px !important; width: 32px !important; } .btnContainer .green svg path { fill: var(--static-white) !important; } .btnContainer .green:hover { background: linear-gradient(0deg, #4CA446 -108.93%, #6BCF63 100%) !important; box-shadow: 0px 10px 10px rgba(36, 36, 56, 0.2) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .green:active { background: linear-gradient(0deg, #6BCF63 0%, #4CA446 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .green.isDepressed { background: linear-gradient(0deg, #6BCF63 0%, #4CA446 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; opacity: 0.6; cursor: default; } .btnContainer .greenText { color: var(--static-white) !important; } /* Disabled */ .btnContainer .isDisabled { cursor: default; } .btnContainer .isTextDisabled, .btnContainer .isDisabled svg { opacity: .5; } .btnContainer .isDisabled, .btnContainer .isDisabled:hover, .btnContainer .isDisabled:active { cursor: default; transform: scale3d(1, 1, 1) !important; } .btnContainer .isDisabled, .btnContainer .isDisabled:hover, .btnContainer .isDisabled:active { background: #696D88 !important; } .btnContainer .isDisabled .isTextDisabled { color: var(--static-white); }
src/components/Button/Button.module.css
.btnContainer .primary { padding: 12px 16px; background-image: linear-gradient(315deg, #7652CC 2.04%, #B05CE6 100%) !important; border-radius: 8px; background-size: 150% 100%; background-position: 100% 100%; box-shadow: 0px 5px 5px rgba(36, 36, 56, 0.15); transition: all 0.13s ease-in, background-position 0.25s ease-in; } .btnContainer .primary:hover { box-shadow: 0px 10px 10px rgba(36, 36, 56, 0.2) !important; transform: scale3d(1.04, 1.04, 1.04) !important; background-position: 0% 100%; } .btnContainer .primary:active { transform: scale3d(1, 1, 1) !important; background: linear-gradient(180deg, rgba(58, 0, 116, 0.3) 0%, rgba(58, 0, 116, 0) 100%), linear-gradient(315deg, #7652CC 2.04%, #B05CE6 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; } .btnContainer .primaryText { font-family: var(--font-family); font-weight: var(--font-bold); font-size: var(--font-m); text-transform: uppercase; color: var(--static-white); } /* Primary Alt */ .btnContainer .primaryAlt { padding: 12px 16px; background: #696D88; box-shadow: 0px 5px 5px rgba(36, 36, 56, 0.15); border-radius: 8px; } .btnContainer .primaryAlt:hover { background: #777C96 !important; box-shadow: 0px 10px 10px rgba(36, 36, 56, 0.2) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .primaryAlt:active { background: #5A5E78 !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .primaryAltText { } /* RED */ .btnContainer .red { padding: 12px 16px; background: linear-gradient(180deg, #F15064 0%, #C03A4B 100%);; box-shadow: 0px 5px 5px rgba(36, 36, 56, 0.15); border-radius: 8px; } .btnContainer .red svg { height: 32px !important; width: 32px !important; } .btnContainer .red svg path { fill: var(--static-white) !important; } .btnContainer .red:hover { background: linear-gradient(181.01deg, #F15064 0.87%, #C03A4B 156.23%) !important; box-shadow: 0px 10px 10px rgba(36, 36, 56, 0.2) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .red:active { background: linear-gradient(180deg, #C03A4B 0%, #F15064 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .red.isDepressed { background: linear-gradient(180deg, #C03A4B 0%, #F15064 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; opacity: 0.6; cursor: default; } .btnContainer .redText { color: var(--static-white) !important; } /* GREEN */ .btnContainer .green { padding: 12px 16px; background: linear-gradient(0deg, #4CA446 0%, #6BCF63 100%); box-shadow: 0px 5px 5px rgba(36, 36, 56, 0.15); border-radius: 8px; } .btnContainer .green svg { height: 32px !important; width: 32px !important; } .btnContainer .green svg path { fill: var(--static-white) !important; } .btnContainer .green:hover { background: linear-gradient(0deg, #4CA446 -108.93%, #6BCF63 100%) !important; box-shadow: 0px 10px 10px rgba(36, 36, 56, 0.2) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .green:active { background: linear-gradient(0deg, #6BCF63 0%, #4CA446 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; } .btnContainer .green.isDepressed { background: linear-gradient(0deg, #6BCF63 0%, #4CA446 100%) !important; box-shadow: 0px 3px 3px rgba(36, 36, 56, 0.1) !important; transform: scale3d(1, 1, 1) !important; opacity: 0.6; cursor: default; } .btnContainer .greenText { color: var(--static-white) !important; } /* Disabled */ .btnContainer .isDisabled { cursor: default; } .btnContainer .isTextDisabled, .btnContainer .isDisabled svg { opacity: .5; } .btnContainer .isDisabled, .btnContainer .isDisabled:hover, .btnContainer .isDisabled:active { cursor: default; transform: scale3d(1, 1, 1) !important; } .btnContainer .isDisabled, .btnContainer .isDisabled:hover, .btnContainer .isDisabled:active { background: #696D88 !important; } .btnContainer .isDisabled .isTextDisabled { color: var(--static-white); }
0.357568
0.10325
position: relative; width: 100%; min-height: auto; text-align: center; color: #fff; background-image: url(../images/header.jpg); background-position: center; background-color: #2da286; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; } #intro .header-content { position: relative; width: 100%; padding: 100px 15px; text-align: center; z-index: 201; } #intro .header-content .header-content-inner .logo { margin-top: 0; text-transform: uppercase; font-weight: 700; } #intro .header-content .header-content-inner p { margin-bottom: 50px; font-size: 20px; font-weight: 400; color: white; text-transform: uppercase; } #intro .header-content .header-content-inner p.nm { margin-bottom: 10px } #intro .header-content .header-content-inner p a { color: white; } #intro .header-content .header-content-inner .clogos { float: none; margin-left: auto; margin-right: auto; } #intro .header-content .header-content-inner .clogos_cs { width: 42px; background: url(../images/sc-logo-front.png) no-repeat -42px 0; } #intro .header-content .header-content-inner .clogos_cs:hover { background-position: 0 0; } #intro { position: absolute; top: 0; } #intro .logo span { display: none; } #search-box input { border-right: none; -webkit-border-top-right-radius: 100px; -webkit-border-bottom-right-radius: 100px; -moz-border-radius-topright: 100px; -moz-border-radius-bottomright: 100px; border-top-right-radius: 100px; border-bottom-right-radius: 100px; border-right: #ccc 1px solid; } #search-box span.input-group-btn { /*background:#fff; border:#ccc 1px solid; border-left:none;*/ right: 40px; z-index: 9; } .fixed-header #intro { height: 160px; position: fixed; top: 0; width: 100%; z-index: 99; min-height: 0 !important; border-bottom: #fff 20px solid; } .fixed-header #intro p { display: none; } .fixed-header #intro .logo { margin-bottom: 0; float: left; text-align: left; margin: 0; padding: 0; font-size: 14px; } .fixed-header #intro .logo img { width: 132px; height: auto; } .fixed-header #search-box { float: right; left: 40px; } .logo img { max-width: 100%; height: auto; } .typeahead.dropdown-menu { z-index: 1000; }
garnahata_site/catalog/static/css/header.css
position: relative; width: 100%; min-height: auto; text-align: center; color: #fff; background-image: url(../images/header.jpg); background-position: center; background-color: #2da286; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; } #intro .header-content { position: relative; width: 100%; padding: 100px 15px; text-align: center; z-index: 201; } #intro .header-content .header-content-inner .logo { margin-top: 0; text-transform: uppercase; font-weight: 700; } #intro .header-content .header-content-inner p { margin-bottom: 50px; font-size: 20px; font-weight: 400; color: white; text-transform: uppercase; } #intro .header-content .header-content-inner p.nm { margin-bottom: 10px } #intro .header-content .header-content-inner p a { color: white; } #intro .header-content .header-content-inner .clogos { float: none; margin-left: auto; margin-right: auto; } #intro .header-content .header-content-inner .clogos_cs { width: 42px; background: url(../images/sc-logo-front.png) no-repeat -42px 0; } #intro .header-content .header-content-inner .clogos_cs:hover { background-position: 0 0; } #intro { position: absolute; top: 0; } #intro .logo span { display: none; } #search-box input { border-right: none; -webkit-border-top-right-radius: 100px; -webkit-border-bottom-right-radius: 100px; -moz-border-radius-topright: 100px; -moz-border-radius-bottomright: 100px; border-top-right-radius: 100px; border-bottom-right-radius: 100px; border-right: #ccc 1px solid; } #search-box span.input-group-btn { /*background:#fff; border:#ccc 1px solid; border-left:none;*/ right: 40px; z-index: 9; } .fixed-header #intro { height: 160px; position: fixed; top: 0; width: 100%; z-index: 99; min-height: 0 !important; border-bottom: #fff 20px solid; } .fixed-header #intro p { display: none; } .fixed-header #intro .logo { margin-bottom: 0; float: left; text-align: left; margin: 0; padding: 0; font-size: 14px; } .fixed-header #intro .logo img { width: 132px; height: auto; } .fixed-header #search-box { float: right; left: 40px; } .logo img { max-width: 100%; height: auto; } .typeahead.dropdown-menu { z-index: 1000; }
0.4856
0.073297
@-moz-document domain("g2a.com") { #body_clicker { display: none !important; } body { background-attachment: fixed; background-position: center 0; background-size: cover; } .banner-shield, .mp-head-giftcard, .banner-shield-small, #supportHubToolTip { display: none; } img[src="https://www.g2a.com/skin/frontend/gate/default/images/socializer.jpg"] { display: none; } #container2 { padding-bottom: 125px !important; } .partners-wrapper, #foot-bottom { display: none; } #footer-wrap #footer { height: inherit; } #content-landing { background: RGBA(0, 0, 0, 0.2); margin: -1px auto 0px; position: relative; padding: 15px 14px 10px 15px; width: 969px; min-width: 969px; z-index: 1; } #footer-wrap { min-width: 998px; background: RGBA(0, 0, 0, 0.2); position: relative; zoom: 1; } #footer .footer-top-separator { background: rgba(0, 0, 0, 0); height: 5px; position: relative; margin-bottom: 40px; } .banner-fixed-footer { display: none; } .payment-method-icons li { display: none; height: 140px; border: 1px solid #000; } #footer-wrap #footer { border-bottom: RGBA(87, 87, 88, 0) 1px solid; margin: 0px; padding: 0 12px; width: 976px; position: relative; } .payment-method li.active { border-top: 1px solid #000; border-left: 1px solid #000; border-right: 1px solid #000; background-color: RGBA(0, 0, 0, 0.5); color: #fff; } .payment-method li { float: left; cursor: pointer; border-bottom: none; background-color: rgba(0, 0, 0, 0.14); height: 40px; line-height: 40px; width: 127px; text-align: center; font-weight: bold; font-size: 14px; color: #717274; } #footer-wrap #footer .foo-right .select_r2b .select_r { background: url(http://i.imgur.com/A9KcTMY.png); background-position: -342px -2px; border: none; color: #fff; height: 36px; font-size: 13px; width: 100px; position: relative; border-radius: 5px; } #footer-wrap #footer .foo-right .select_r2a .select_r { background: url(http://i.imgur.com/A9KcTMY.png); background-position: -263px -2px; border: none; color: #ffffff; height: 36px; font-size: 13px; width: 180px; position: relative; border-radius: 5px; margin-right: 10px; } #jq_filterloadmore { display: none; clear: both; background: #000; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjNGY1NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzYTNiM2YiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); background: -moz-linear-gradient(top, #000 0%, #000 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c4f54), color-stop(100%, #3a3b3f)); background: -webkit-linear-gradient(top, #4c4f54 0%, #3a3b3f 100%); background: -o-linear-gradient(top, #4c4f54 0%, #3a3b3f 100%); background: -ms-linear-gradient(top, #4c4f54 0%, #3a3b3f 100%); background: linear-gradient(to bottom, RGBA(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); margin: 0 auto 8px; padding: 0px 5px; line-height: 60px; height: 58px; width: 955px; color: #fff; font-size: 18px; font-weight: bold; text-align: center; border: solid 1px #1A1C1F; border-radius: 0px; box-shadow: none; } .mp-front-menu > li { float: left; min-height: 66px; cursor: pointer; width: 321px; display: inline-block; position: relative; font-size: 16px; color: #fff; border: 1px solid #000; background: #000; background: -moz-linear-gradient(top, RGBA(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.21) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c4f54), color-stop(100%, #383b3e)); background: -webkit-linear-gradient(top, #4c4f54 0%, #383b3e 100%); background: -o-linear-gradient(top, #4c4f54 0%, #383b3e 100%); background: -ms-linear-gradient(top, #4c4f54 0%, #383b3e 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); z-index: 10; } .mp-front { background-color: RGBA(0, 0, 0, 0); } .mp-front-range { display: block; width: 100%; background-color: RGBA(0, 0, 0, 0.2); height: 50px; } .mp-comunity, .mp-freegames { float: right; margin-right: 10px; cursor: pointer; margin-top: 11px; height: 28px; background: #c09340; background: -moz-linear-gradient(top, rgba(255, 166, 0, 0.5) 0%, rgba(203, 134, 4, 0.5) 100%); background: -webkit-linear-gradient(top, #feb938 0%, #cb8604 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%); display: none; padding-right: 10px; border-radius: 0px; color: #ffffff; line-height: 29px; font-weight: bold; font-size: 12px; } .mp-range-max input { width: 83px; height: 36px; font-size: 14px; font-weight: bold; padding-left: 5px; padding-right: 5px; color: #30fbed; border: none; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; background: #18191b; background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18191b), color-stop(100%, #18191b)); background: -webkit-linear-gradient(top, #18191b 0%, #18191b 100%); background: -o-linear-gradient(top, #18191b 0%, #18191b 100%); background: -ms-linear-gradient(top, #18191b 0%, #18191b 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); } .mp-range-min input { width: 83px; height: 36px; border: none; background: #18191b; background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18191b), color-stop(100%, #18191b)); background: -webkit-linear-gradient(top, #18191b 0%, #18191b 100%); background: -o-linear-gradient(top, #18191b 0%, #18191b 100%); background: -ms-linear-gradient(top, #18191b 0%, #18191b 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-weight: bold; font-size: 14px; color: #30fbed; padding-left: 5px; padding-right: 5px; } #content { background: none; background: rgb(255, 255, 255); background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(239, 239, 239, 1))); background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%); background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%); background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%); background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); } #content .prod_name h1 { font-weight: normal; color: #fff; font-size: 31px; } .prod_associated_content { clear: both; background-color: RGBA(0, 0, 0, 0); overflow: auto; padding: 30px 13px; } .mp-item-bn { height: 56px; font-size: 24px; line-height: 56px; background: rgb(112, 179, 1); background: -moz-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(89, 161, 1, 1) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(112, 179, 1, 1)), color-stop(100%, rgba(89, 161, 1, 1))); background: -webkit-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(89, 161, 1, 1) 100%); background: -o-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(89, 161, 1, 1) 100%); background: -ms-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(89, 161, 1, 1) 100%); background: linear-gradient(to bottom, rgba(112, 179, 1, 1) 1%, rgba(112, 179, 1, 1) 100%); background: #7dbc00; background: -moz-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(112, 179, 1, 1) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #7dbc00), color-stop(100%, #4a9400)); background: -webkit-linear-gradient(top, #7dbc00 1%, #4a9400 100%); background: -o-linear-gradient(top, #7dbc00 1%, #4a9400 100%); background: -ms-linear-gradient(top, #7dbc00 1%, #4a9400 100%); background: linear-gradient(to bottom, rgba(112, 179, 1, 1) 1%, rgba(112, 179, 1, 1) 100%); width: 100%; height: 53px; -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.28); -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.28); box-shadow: 0px 1px 2px rgba(0, 0, 0, 0); border: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 0px; font-weight: bold; margin-top: 7px; cursor: pointer; font-size: 20px; text-shadow: 0px 2px 2px rgba(0, 0, 0, 0); color: #fff; } #content .product_f .games-price button.btn-marketplace-items { height: 38px; width: 100%; display: block; font-size: 14px; line-height: normal; -webkit-border-radius: 0px; -moz-border-radius: 4px; border-radius: 0px; background: rgb(255, 119, 51); background: -moz-linear-gradient(top, rgba(255, 119, 51, 1) 2%, rgba(255, 119, 51, 1) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, rgba(255, 119, 51, 1)), color-stop(100%, rgba(255, 106, 50, 1))); background: -webkit-linear-gradient(top, rgba(255, 119, 51, 1) 2%, rgba(255, 106, 50, 1) 100%); background: -o-linear-gradient(top, rgba(255, 119, 51, 1) 2%, rgba(255, 106, 50, 1) 100%); background: -ms-linear-gradient(top, rgba(255, 119, 51, 1) 2%, rgba(255, 106, 50, 1) 100%); background: linear-gradient(to bottom, rgba(255, 119, 51, 1) 2%, rgba(255, 119, 51, 1) 100%); } /* Removing the body clicker */ body { background-color: rgb(30, 31, 32) !important; } #body_clicker { display: none !important; } #container2 { padding: 3% !important; } /* Header annoyances */ .mp-head-goldmine, .mp-head-stc, .mp-head-giftcard-center { display: none !important; } .mp-head-giftcard.active { height: 0px !important; } /* We don't need the footer */ #footer-wrap #footer3, #footer-wrap, #content-tabs > img { display: none !important; } .widget-tp-reviews { display: none !important; } /* Annoying and misleading */ .product_f-right { display: none !important; } .product_f-left { margin-left: 135px; margin-right: 150px; } .product_f { background: rgb(243, 243, 243); } /* More self-promotion annoyances */ .banner-shield, .banner-shield-small, #supportHubToolTip { display: none !important; } }
data/usercss/126137.user.css
@-moz-document domain("g2a.com") { #body_clicker { display: none !important; } body { background-attachment: fixed; background-position: center 0; background-size: cover; } .banner-shield, .mp-head-giftcard, .banner-shield-small, #supportHubToolTip { display: none; } img[src="https://www.g2a.com/skin/frontend/gate/default/images/socializer.jpg"] { display: none; } #container2 { padding-bottom: 125px !important; } .partners-wrapper, #foot-bottom { display: none; } #footer-wrap #footer { height: inherit; } #content-landing { background: RGBA(0, 0, 0, 0.2); margin: -1px auto 0px; position: relative; padding: 15px 14px 10px 15px; width: 969px; min-width: 969px; z-index: 1; } #footer-wrap { min-width: 998px; background: RGBA(0, 0, 0, 0.2); position: relative; zoom: 1; } #footer .footer-top-separator { background: rgba(0, 0, 0, 0); height: 5px; position: relative; margin-bottom: 40px; } .banner-fixed-footer { display: none; } .payment-method-icons li { display: none; height: 140px; border: 1px solid #000; } #footer-wrap #footer { border-bottom: RGBA(87, 87, 88, 0) 1px solid; margin: 0px; padding: 0 12px; width: 976px; position: relative; } .payment-method li.active { border-top: 1px solid #000; border-left: 1px solid #000; border-right: 1px solid #000; background-color: RGBA(0, 0, 0, 0.5); color: #fff; } .payment-method li { float: left; cursor: pointer; border-bottom: none; background-color: rgba(0, 0, 0, 0.14); height: 40px; line-height: 40px; width: 127px; text-align: center; font-weight: bold; font-size: 14px; color: #717274; } #footer-wrap #footer .foo-right .select_r2b .select_r { background: url(http://i.imgur.com/A9KcTMY.png); background-position: -342px -2px; border: none; color: #fff; height: 36px; font-size: 13px; width: 100px; position: relative; border-radius: 5px; } #footer-wrap #footer .foo-right .select_r2a .select_r { background: url(http://i.imgur.com/A9KcTMY.png); background-position: -263px -2px; border: none; color: #ffffff; height: 36px; font-size: 13px; width: 180px; position: relative; border-radius: 5px; margin-right: 10px; } #jq_filterloadmore { display: none; clear: both; background: #000; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjNGY1NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzYTNiM2YiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); background: -moz-linear-gradient(top, #000 0%, #000 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c4f54), color-stop(100%, #3a3b3f)); background: -webkit-linear-gradient(top, #4c4f54 0%, #3a3b3f 100%); background: -o-linear-gradient(top, #4c4f54 0%, #3a3b3f 100%); background: -ms-linear-gradient(top, #4c4f54 0%, #3a3b3f 100%); background: linear-gradient(to bottom, RGBA(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); margin: 0 auto 8px; padding: 0px 5px; line-height: 60px; height: 58px; width: 955px; color: #fff; font-size: 18px; font-weight: bold; text-align: center; border: solid 1px #1A1C1F; border-radius: 0px; box-shadow: none; } .mp-front-menu > li { float: left; min-height: 66px; cursor: pointer; width: 321px; display: inline-block; position: relative; font-size: 16px; color: #fff; border: 1px solid #000; background: #000; background: -moz-linear-gradient(top, RGBA(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.21) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c4f54), color-stop(100%, #383b3e)); background: -webkit-linear-gradient(top, #4c4f54 0%, #383b3e 100%); background: -o-linear-gradient(top, #4c4f54 0%, #383b3e 100%); background: -ms-linear-gradient(top, #4c4f54 0%, #383b3e 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); z-index: 10; } .mp-front { background-color: RGBA(0, 0, 0, 0); } .mp-front-range { display: block; width: 100%; background-color: RGBA(0, 0, 0, 0.2); height: 50px; } .mp-comunity, .mp-freegames { float: right; margin-right: 10px; cursor: pointer; margin-top: 11px; height: 28px; background: #c09340; background: -moz-linear-gradient(top, rgba(255, 166, 0, 0.5) 0%, rgba(203, 134, 4, 0.5) 100%); background: -webkit-linear-gradient(top, #feb938 0%, #cb8604 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%); display: none; padding-right: 10px; border-radius: 0px; color: #ffffff; line-height: 29px; font-weight: bold; font-size: 12px; } .mp-range-max input { width: 83px; height: 36px; font-size: 14px; font-weight: bold; padding-left: 5px; padding-right: 5px; color: #30fbed; border: none; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; background: #18191b; background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18191b), color-stop(100%, #18191b)); background: -webkit-linear-gradient(top, #18191b 0%, #18191b 100%); background: -o-linear-gradient(top, #18191b 0%, #18191b 100%); background: -ms-linear-gradient(top, #18191b 0%, #18191b 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); } .mp-range-min input { width: 83px; height: 36px; border: none; background: #18191b; background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18191b), color-stop(100%, #18191b)); background: -webkit-linear-gradient(top, #18191b 0%, #18191b 100%); background: -o-linear-gradient(top, #18191b 0%, #18191b 100%); background: -ms-linear-gradient(top, #18191b 0%, #18191b 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-weight: bold; font-size: 14px; color: #30fbed; padding-left: 5px; padding-right: 5px; } #content { background: none; background: rgb(255, 255, 255); background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(239, 239, 239, 1))); background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%); background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%); background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%); background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); } #content .prod_name h1 { font-weight: normal; color: #fff; font-size: 31px; } .prod_associated_content { clear: both; background-color: RGBA(0, 0, 0, 0); overflow: auto; padding: 30px 13px; } .mp-item-bn { height: 56px; font-size: 24px; line-height: 56px; background: rgb(112, 179, 1); background: -moz-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(89, 161, 1, 1) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(112, 179, 1, 1)), color-stop(100%, rgba(89, 161, 1, 1))); background: -webkit-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(89, 161, 1, 1) 100%); background: -o-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(89, 161, 1, 1) 100%); background: -ms-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(89, 161, 1, 1) 100%); background: linear-gradient(to bottom, rgba(112, 179, 1, 1) 1%, rgba(112, 179, 1, 1) 100%); background: #7dbc00; background: -moz-linear-gradient(top, rgba(112, 179, 1, 1) 1%, rgba(112, 179, 1, 1) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #7dbc00), color-stop(100%, #4a9400)); background: -webkit-linear-gradient(top, #7dbc00 1%, #4a9400 100%); background: -o-linear-gradient(top, #7dbc00 1%, #4a9400 100%); background: -ms-linear-gradient(top, #7dbc00 1%, #4a9400 100%); background: linear-gradient(to bottom, rgba(112, 179, 1, 1) 1%, rgba(112, 179, 1, 1) 100%); width: 100%; height: 53px; -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.28); -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.28); box-shadow: 0px 1px 2px rgba(0, 0, 0, 0); border: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 0px; font-weight: bold; margin-top: 7px; cursor: pointer; font-size: 20px; text-shadow: 0px 2px 2px rgba(0, 0, 0, 0); color: #fff; } #content .product_f .games-price button.btn-marketplace-items { height: 38px; width: 100%; display: block; font-size: 14px; line-height: normal; -webkit-border-radius: 0px; -moz-border-radius: 4px; border-radius: 0px; background: rgb(255, 119, 51); background: -moz-linear-gradient(top, rgba(255, 119, 51, 1) 2%, rgba(255, 119, 51, 1) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, rgba(255, 119, 51, 1)), color-stop(100%, rgba(255, 106, 50, 1))); background: -webkit-linear-gradient(top, rgba(255, 119, 51, 1) 2%, rgba(255, 106, 50, 1) 100%); background: -o-linear-gradient(top, rgba(255, 119, 51, 1) 2%, rgba(255, 106, 50, 1) 100%); background: -ms-linear-gradient(top, rgba(255, 119, 51, 1) 2%, rgba(255, 106, 50, 1) 100%); background: linear-gradient(to bottom, rgba(255, 119, 51, 1) 2%, rgba(255, 119, 51, 1) 100%); } /* Removing the body clicker */ body { background-color: rgb(30, 31, 32) !important; } #body_clicker { display: none !important; } #container2 { padding: 3% !important; } /* Header annoyances */ .mp-head-goldmine, .mp-head-stc, .mp-head-giftcard-center { display: none !important; } .mp-head-giftcard.active { height: 0px !important; } /* We don't need the footer */ #footer-wrap #footer3, #footer-wrap, #content-tabs > img { display: none !important; } .widget-tp-reviews { display: none !important; } /* Annoying and misleading */ .product_f-right { display: none !important; } .product_f-left { margin-left: 135px; margin-right: 150px; } .product_f { background: rgb(243, 243, 243); } /* More self-promotion annoyances */ .banner-shield, .banner-shield-small, #supportHubToolTip { display: none !important; } }
0.242834
0.078855
position: absolute; margin-top: 24px; top: 230px; left: 730px; } #h1 { font-size: 60px; font-family: Georgia, 'Times New Roman', Times, serif; text-align: center; color: whitesmoke; position: absolute; width: auto; top: 410px; left: 500px; } #p { color: whitesmoke; position: absolute; top: 550px; font-family: Verdana, Geneva, Tahoma, sans-serif; font-size: 20px; left: 390px; } #clck { position: absolute; top: 820px; left:740px; } .container1 { text-align: center; color: black; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; font-weight: bold; } #serv { width: fit-content; position: absolute; color: white; text-align: center; left: 300px; top: 1160px; } #us { position: absolute; top: 2500px; color: white; right: 730px; } #name { position: absolute; top: 2580px; width: 420px; left: 300px; } #email { position: absolute; top: 2580px; width: 420px; left: 800px; } #message { position: absolute; top: 2700px; right: 322px; height: 200px; } #button { position: absolute; top: 2950px; left: 700px; border: none; } #design { display: none; } #development { display: none; } #product { display: none; } .image { display: block; width: 100%; height: auto; } .overlay { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%; width: 100%; opacity: 0; transition: .5s ease; background-color: #008CBA; } .work6 :hover .overlay { opacity: 1; } .text { color: white; font-size: 20px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); text-align: center; } img:hover { filter: brightness(50%); } h4 { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: white; }
index.css
position: absolute; margin-top: 24px; top: 230px; left: 730px; } #h1 { font-size: 60px; font-family: Georgia, 'Times New Roman', Times, serif; text-align: center; color: whitesmoke; position: absolute; width: auto; top: 410px; left: 500px; } #p { color: whitesmoke; position: absolute; top: 550px; font-family: Verdana, Geneva, Tahoma, sans-serif; font-size: 20px; left: 390px; } #clck { position: absolute; top: 820px; left:740px; } .container1 { text-align: center; color: black; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; font-weight: bold; } #serv { width: fit-content; position: absolute; color: white; text-align: center; left: 300px; top: 1160px; } #us { position: absolute; top: 2500px; color: white; right: 730px; } #name { position: absolute; top: 2580px; width: 420px; left: 300px; } #email { position: absolute; top: 2580px; width: 420px; left: 800px; } #message { position: absolute; top: 2700px; right: 322px; height: 200px; } #button { position: absolute; top: 2950px; left: 700px; border: none; } #design { display: none; } #development { display: none; } #product { display: none; } .image { display: block; width: 100%; height: auto; } .overlay { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%; width: 100%; opacity: 0; transition: .5s ease; background-color: #008CBA; } .work6 :hover .overlay { opacity: 1; } .text { color: white; font-size: 20px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); text-align: center; } img:hover { filter: brightness(50%); } h4 { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: white; }
0.559771
0.083703
.cardStackContainer { display: flex; justify-content: center; width: 100%; align-items: center; } .card { display: flex; flex-wrap: wrap; justify-content: center; width: 600px; position: absolute; border-radius: .3rem; padding: 3rem 1rem; border: 1px solid #747474; font-size: 1.5rem; background-image: radial-gradient(circle 588px at 31.7% 40.2%, rgba(225, 200, 239, 1) 21.4%, rgba(163, 225, 233, 1) 57.1%); } .moodRatingButtonsContainer { display: flex; justify-content: center; max-width: 400px; width: 100%; padding-top: 1.5rem; } .lastAttemptsTitle { font-size: 1rem; padding-bottom: .5rem; } .resultBtn { display: flex; justify-content: center; align-items: center; padding: 1rem 0; border: 1px solid transparent; cursor: pointer; transition: .3s ease; font-size: 1rem; max-width: 300px; margin: auto; } .resultBtn:hover { border: 1px solid gray; } .resultIcon { width: 2rem; } .resultBtnText { padding-left: 1rem; } .moodIcon { padding-left: 1rem; max-width: 50px; opacity: .5; transition: .2s ease; } .moodIcon:first-child { padding-left: 0; } .moodIcon:hover { opacity: 1; cursor: pointer; } .lastAttemptsContainer { display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 1rem; } .lastAttempts, .startQuizButton { background: #ffffff42; border-radius: .3rem; padding: .5rem 1rem; display: flex; flex-wrap: wrap; border: 1px solid #747474; } .startQuizButton { display: flex; justify-content: center; height: 100vh; width: 100%; align-items: center; max-width: 300px; max-height: 300px; background: #3e3e3e99; cursor: pointer; border: 1px solid transparent; transition: .9s ease; } .startQuizText { width: 100%; text-align: center; color: white; } .playQuizIcon { max-width: 50%; } .startQuizButton:hover { background-image: linear-gradient( 225deg, #ff63bc 1%, #573875 53%, #2B86C5 100%); border: 1px solid #b4b4b4; } .attempt { width: 100%; text-align: center; font-size: 1rem; margin-bottom: 0.3rem; } .loader { padding-left: 1rem; }
src/components/CardStack/CardStack.module.css
.cardStackContainer { display: flex; justify-content: center; width: 100%; align-items: center; } .card { display: flex; flex-wrap: wrap; justify-content: center; width: 600px; position: absolute; border-radius: .3rem; padding: 3rem 1rem; border: 1px solid #747474; font-size: 1.5rem; background-image: radial-gradient(circle 588px at 31.7% 40.2%, rgba(225, 200, 239, 1) 21.4%, rgba(163, 225, 233, 1) 57.1%); } .moodRatingButtonsContainer { display: flex; justify-content: center; max-width: 400px; width: 100%; padding-top: 1.5rem; } .lastAttemptsTitle { font-size: 1rem; padding-bottom: .5rem; } .resultBtn { display: flex; justify-content: center; align-items: center; padding: 1rem 0; border: 1px solid transparent; cursor: pointer; transition: .3s ease; font-size: 1rem; max-width: 300px; margin: auto; } .resultBtn:hover { border: 1px solid gray; } .resultIcon { width: 2rem; } .resultBtnText { padding-left: 1rem; } .moodIcon { padding-left: 1rem; max-width: 50px; opacity: .5; transition: .2s ease; } .moodIcon:first-child { padding-left: 0; } .moodIcon:hover { opacity: 1; cursor: pointer; } .lastAttemptsContainer { display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 1rem; } .lastAttempts, .startQuizButton { background: #ffffff42; border-radius: .3rem; padding: .5rem 1rem; display: flex; flex-wrap: wrap; border: 1px solid #747474; } .startQuizButton { display: flex; justify-content: center; height: 100vh; width: 100%; align-items: center; max-width: 300px; max-height: 300px; background: #3e3e3e99; cursor: pointer; border: 1px solid transparent; transition: .9s ease; } .startQuizText { width: 100%; text-align: center; color: white; } .playQuizIcon { max-width: 50%; } .startQuizButton:hover { background-image: linear-gradient( 225deg, #ff63bc 1%, #573875 53%, #2B86C5 100%); border: 1px solid #b4b4b4; } .attempt { width: 100%; text-align: center; font-size: 1rem; margin-bottom: 0.3rem; } .loader { padding-left: 1rem; }
0.55254
0.080321
* Font Colors */ /** * Background Colors */ .ui_tips[data-title] { position: relative; overflow: visible; } .ui_tips[data-title]::before, .ui_tips[data-title]::after { position: absolute; left: 50%; pointer-events: none; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); visibility: hidden; } .ui_tips[data-title]::before { content: attr(data-title); top: -42px; padding: 6px 10px; line-height: 18px; border-radius: 3px; background-color: #1e2330; text-align: left; color: #fff; font-size: 12px; font-style: normal; font-family: 'microsoft yahei'; white-space: nowrap; } .ui_tips[data-title]::after { content: ''; width: 0; height: 0; overflow: hidden; border: 6px solid transparent; border-top-color: #1e2330; top: -13px; } .ui_tips_multi[data-title]::before { top: -60px; width: 386px; white-space: normal; } .ui_tips[data-title]:hover::before, .ui_tips[data-title]:hover::after { -webkit-transition: visibility .1s .1s; transition: visibility .1s .1s; visibility: visible; } /* 下面是 IE7 IE8 玩耍的代码 */ .ui_tips .ui_tips_before, .ui_tips .ui_tips_after { display: none; position: absolute; left: 50%; white-space: nowrap; } .ui_tips_before { top: -42px; max-width: 250px; padding: 6px 10px; line-height: 18px; border-radius: 3px; background-color: #1e2330; color: #fff; font-size: 12px; font-style: normal; text-align: left; font-family: 'microsoft yahei'; } .ui_tips_after { width: 0; height: 0; overflow: hidden; border: 6px solid transparent; border-top-color: #1e2330; top: -13px; } .ui_tips:hover .ui_tips_before, .ui_tips:hover .ui_tips_after { display: block; } .icon-wpa, .icon-add, .icon-ckbox, .icon-clear, .icon-code, .icon-del, .icon-edit, .icon-gp, .icon-group-highlight, .icon-group, .icon-kfext-highlight, .icon-kfext, .icon-no-data, .icon-phone, .icon-pub-highlight, .icon-pub, .icon-qq-highlight, .icon-qq, .icon-refresh, .icon-suc, .icon-tel-corp, .icon-tel-group, .icon-tel-highlight, .icon-tel-single, .icon-tel, .icon-upload-highlight, .icon-upload { display: inline-block; font: 0/0 a; color: transparent; overflow: hidden; background: url("images/icons.png?201662") no-repeat; background-size: 100px auto; } .icon-add:hover, a:hover .icon-add { background-position: 0px 0px; } .icon-add { width: 16px; height: 16px; background-position: 0px -26px; } .icon-ckbox { width: 18px; height: 18px; background-position: 0px -248px; } .icon-clear:hover, a:hover .icon-clear { background-position: 0px -477px; } .icon-clear { width: 21px; height: 21px; background-position: 0px -446px; } .icon-code:hover, a:hover .icon-code { background-position: 0px -108px; } .icon-code { width: 18px; height: 18px; background-position: 0px -136px; } .icon-del:hover, a:hover .icon-del { background-position: 0px -164px; } .icon-del { width: 18px; height: 18px; background-position: 0px -192px; } .icon-edit:hover, a:hover .icon-edit { background-position: 0px -220px; } .icon-edit { width: 18px; height: 18px; background-position: 0px -52px; } .icon-gp { width: 18px; height: 18px; background-position: 0px -276px; } .icon-group-highlight { width: 50px; height: 50px; } .highlight .icon-group, a:hover .icon-group, a:hover .icon-group-highlight, .highlight:hover .icon-group, .icon-group-highlight:hover, .icon-group-highlight { background-position: 0px -1416px; } .icon-group:hover, a:hover .icon-group { background-position: 0px -1296px; } .icon-group { width: 50px; height: 50px; background-position: 0px -1116px; } .icon-kfext-highlight { width: 50px; height: 50px; } .highlight .icon-kfext, a:hover .icon-kfext, a:hover .icon-kfext-highlight, .highlight:hover .icon-kfext, .icon-kfext-highlight:hover, .icon-kfext-highlight { background-position: 0px -1056px; } .icon-kfext:hover, a:hover .icon-kfext { background-position: 0px -936px; } .icon-kfext { width: 50px; height: 50px; background-position: 0px -876px; } .icon-no-data { width: 100px; height: 100px; background-position: 0px -1546px; } .icon-phone { width: 20px; height: 20px; background-position: 0px -416px; } .icon-pub-highlight { width: 50px; height: 50px; } .highlight .icon-pub, a:hover .icon-pub, a:hover .icon-pub-highlight, .highlight:hover .icon-pub, .icon-pub-highlight:hover, .icon-pub-highlight { background-position: 0px -636px; } .icon-pub:hover, a:hover .icon-pub { background-position: 0px -576px; } .icon-pub { width: 50px; height: 50px; background-position: 0px -996px; } .icon-qq-highlight { width: 50px; height: 50px; } .highlight .icon-qq, a:hover .icon-qq, a:hover .icon-qq-highlight, .highlight:hover .icon-qq, .icon-qq-highlight:hover, .icon-qq-highlight { background-position: 0px -696px; } .icon-qq:hover, a:hover .icon-qq { background-position: 0px -756px; } .icon-qq { width: 50px; height: 50px; background-position: 0px -816px; } .icon-refresh:hover, a:hover .icon-refresh { background-position: 0px -80px; } .icon-refresh { width: 18px; height: 18px; background-position: 0px -388px; } .icon-suc { width: 60px; height: 60px; background-position: 0px -1476px; } .icon-tel-corp { width: 18px; height: 18px; background-position: 0px -360px; } .icon-tel-group { width: 18px; height: 18px; background-position: 0px -332px; } .icon-tel-highlight { width: 50px; height: 50px; } .highlight .icon-tel, a:hover .icon-tel, a:hover .icon-tel-highlight, .highlight:hover .icon-tel, .icon-tel-highlight:hover, .icon-tel-highlight { background-position: 0px -1176px; } .icon-tel:hover, a:hover .icon-tel { background-position: 0px -1236px; } .icon-tel-single { width: 18px; height: 18px; background-position: 0px -304px; } .icon-tel { width: 50px; height: 50px; background-position: 0px -1356px; } .icon-upload-highlight { width: 25px; height: 24px; } .highlight .icon-upload, a:hover .icon-upload, a:hover .icon-upload-highlight, .highlight:hover .icon-upload, .icon-upload-highlight:hover, .icon-upload-highlight { background-position: 0px -508px; } .icon-upload { width: 25px; height: 24px; background-position: 0px -542px; } .lbf-button .icon-add { vertical-align: -2px; margin-right: 5px; } .lbf-combobox { width: 148px; } .table { table-layout: auto; } .table th { white-space: nowrap; } .table tr:hover td { background-color: #fff; } .table .tb-view { width: 330px; } .table .tb-view .view { width: 280px; height: 120px; background-color: #f2f2f2; text-align: center; position: relative; } .table .tb-view .view .vline { width: 1px; height: 120px; display: inline-block; overflow: hidden; margin-right: -1px; vertical-align: middle; } .table .tb-view .view .mark { position: absolute; left: 0; top: 0; right: 0; bottom: 0; text-align: center; line-height: 120px; background-color: #000; opacity: 0; filter: alpha(opacity=0); transition: opacity .36s; } .table .tb-view .view .mark a { color: #f2f2f2; border: 1px solid #f2f2f2; display: inline-block; border-radius: 2px; line-height: 38px; padding: 0 25px; } .table .tb-view .view:hover .mark { opacity: .8; filter: alpha(opacity=80); } .table .tb-view img { max-width: 90%; max-height: 80%; vertical-align: middle; } .table .tb-name { width: 310px; line-height: 26px; word-break: break-all; word-wrap: break-word; } .table .tb-name span { color: #ff4222; margin-left: 4px; } .table .tb-name .lbf-popup { background-color: #fff; border: 1px solid #dadee7; box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); } .table .tb-name .lbf-popup .lbf-tip-content { color: #1e2330; } .table .tb-name .lbf-popup .lbf-tip-arrow-before { border-color: #dadee7 transparent; } .table .tb-name .lbf-popup .lbf-tip-arrow-after { border-color: #fff transparent; } .table .tb-scene { width: 150px; } .table .tb-time { line-height: 22px; word-break: break-all; word-wrap: break-word; } .table .tb-action { width: 150px; text-align: right; padding-right: 30px; } .table .tb-action a { margin-left: 6px; display: inline-block; width: 20px; height: 20px; } .table p { color: #a8abb3; } .table-null h2 { font-size: 24px; margin-top: 18px; } body .wpa-preview-panel .previewer { height: 320px; background: #ebebeb; text-align: center; } body .wpa-preview-panel .previewer .vertical { display: inline-block; *display: inline; *zoom: 1; vertical-align: middle; line-height: 320px; width: 1px; height: 320px; } body .wpa-preview-panel .previewer #wpa-viewer { min-width: 360px; display: inline-block; *display: inline; *zoom: 1; vertical-align: middle; } body .wpa-preview-panel .intro { font-size: 14px; color: #a2a9b6; margin-top: 10px; } body .wpa-preview-panel .wpa-tip { display: inline-block; *display: inline; *zoom: 1; background: #fff; line-height: 36px; padding: 0 15px; border-radius: 3px; color: #555; } body .wpa-preview-panel .wpa-tip i { font-style: normal; margin: 0 3px; } body .wpa-preview-panel .lbf-panel-head { text-align: center; font-size: 24px; font-weight: normal; line-height: 30px; padding: 25px 0; } body .wpa-preview-panel .lbf-panel-body { padding: 0 25px 30px; } body .wpa-preview-panel .lbf-panel-foot { display: none; } .code-view-panel .lbf-panel-head { text-align: center; font-size: 24px; font-weight: normal; padding: 25px 0; } .code-view-panel .lbf-panel-body { padding: 0 25px 30px; } .code-view-panel .textarea { height: 160px; } .code-view-panel .textarea textarea { padding: 15px; width: 518px; height: 130px; border-color: #dadee7; color: #1e2331; } .code-view-panel h4 { color: #999; } .code-view-panel ul { color: #a8abb3; } .code-view-panel ul li { padding-bottom: 3px; }
src/themes/blue/srv/wpa/list.css
* Font Colors */ /** * Background Colors */ .ui_tips[data-title] { position: relative; overflow: visible; } .ui_tips[data-title]::before, .ui_tips[data-title]::after { position: absolute; left: 50%; pointer-events: none; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); visibility: hidden; } .ui_tips[data-title]::before { content: attr(data-title); top: -42px; padding: 6px 10px; line-height: 18px; border-radius: 3px; background-color: #1e2330; text-align: left; color: #fff; font-size: 12px; font-style: normal; font-family: 'microsoft yahei'; white-space: nowrap; } .ui_tips[data-title]::after { content: ''; width: 0; height: 0; overflow: hidden; border: 6px solid transparent; border-top-color: #1e2330; top: -13px; } .ui_tips_multi[data-title]::before { top: -60px; width: 386px; white-space: normal; } .ui_tips[data-title]:hover::before, .ui_tips[data-title]:hover::after { -webkit-transition: visibility .1s .1s; transition: visibility .1s .1s; visibility: visible; } /* 下面是 IE7 IE8 玩耍的代码 */ .ui_tips .ui_tips_before, .ui_tips .ui_tips_after { display: none; position: absolute; left: 50%; white-space: nowrap; } .ui_tips_before { top: -42px; max-width: 250px; padding: 6px 10px; line-height: 18px; border-radius: 3px; background-color: #1e2330; color: #fff; font-size: 12px; font-style: normal; text-align: left; font-family: 'microsoft yahei'; } .ui_tips_after { width: 0; height: 0; overflow: hidden; border: 6px solid transparent; border-top-color: #1e2330; top: -13px; } .ui_tips:hover .ui_tips_before, .ui_tips:hover .ui_tips_after { display: block; } .icon-wpa, .icon-add, .icon-ckbox, .icon-clear, .icon-code, .icon-del, .icon-edit, .icon-gp, .icon-group-highlight, .icon-group, .icon-kfext-highlight, .icon-kfext, .icon-no-data, .icon-phone, .icon-pub-highlight, .icon-pub, .icon-qq-highlight, .icon-qq, .icon-refresh, .icon-suc, .icon-tel-corp, .icon-tel-group, .icon-tel-highlight, .icon-tel-single, .icon-tel, .icon-upload-highlight, .icon-upload { display: inline-block; font: 0/0 a; color: transparent; overflow: hidden; background: url("images/icons.png?201662") no-repeat; background-size: 100px auto; } .icon-add:hover, a:hover .icon-add { background-position: 0px 0px; } .icon-add { width: 16px; height: 16px; background-position: 0px -26px; } .icon-ckbox { width: 18px; height: 18px; background-position: 0px -248px; } .icon-clear:hover, a:hover .icon-clear { background-position: 0px -477px; } .icon-clear { width: 21px; height: 21px; background-position: 0px -446px; } .icon-code:hover, a:hover .icon-code { background-position: 0px -108px; } .icon-code { width: 18px; height: 18px; background-position: 0px -136px; } .icon-del:hover, a:hover .icon-del { background-position: 0px -164px; } .icon-del { width: 18px; height: 18px; background-position: 0px -192px; } .icon-edit:hover, a:hover .icon-edit { background-position: 0px -220px; } .icon-edit { width: 18px; height: 18px; background-position: 0px -52px; } .icon-gp { width: 18px; height: 18px; background-position: 0px -276px; } .icon-group-highlight { width: 50px; height: 50px; } .highlight .icon-group, a:hover .icon-group, a:hover .icon-group-highlight, .highlight:hover .icon-group, .icon-group-highlight:hover, .icon-group-highlight { background-position: 0px -1416px; } .icon-group:hover, a:hover .icon-group { background-position: 0px -1296px; } .icon-group { width: 50px; height: 50px; background-position: 0px -1116px; } .icon-kfext-highlight { width: 50px; height: 50px; } .highlight .icon-kfext, a:hover .icon-kfext, a:hover .icon-kfext-highlight, .highlight:hover .icon-kfext, .icon-kfext-highlight:hover, .icon-kfext-highlight { background-position: 0px -1056px; } .icon-kfext:hover, a:hover .icon-kfext { background-position: 0px -936px; } .icon-kfext { width: 50px; height: 50px; background-position: 0px -876px; } .icon-no-data { width: 100px; height: 100px; background-position: 0px -1546px; } .icon-phone { width: 20px; height: 20px; background-position: 0px -416px; } .icon-pub-highlight { width: 50px; height: 50px; } .highlight .icon-pub, a:hover .icon-pub, a:hover .icon-pub-highlight, .highlight:hover .icon-pub, .icon-pub-highlight:hover, .icon-pub-highlight { background-position: 0px -636px; } .icon-pub:hover, a:hover .icon-pub { background-position: 0px -576px; } .icon-pub { width: 50px; height: 50px; background-position: 0px -996px; } .icon-qq-highlight { width: 50px; height: 50px; } .highlight .icon-qq, a:hover .icon-qq, a:hover .icon-qq-highlight, .highlight:hover .icon-qq, .icon-qq-highlight:hover, .icon-qq-highlight { background-position: 0px -696px; } .icon-qq:hover, a:hover .icon-qq { background-position: 0px -756px; } .icon-qq { width: 50px; height: 50px; background-position: 0px -816px; } .icon-refresh:hover, a:hover .icon-refresh { background-position: 0px -80px; } .icon-refresh { width: 18px; height: 18px; background-position: 0px -388px; } .icon-suc { width: 60px; height: 60px; background-position: 0px -1476px; } .icon-tel-corp { width: 18px; height: 18px; background-position: 0px -360px; } .icon-tel-group { width: 18px; height: 18px; background-position: 0px -332px; } .icon-tel-highlight { width: 50px; height: 50px; } .highlight .icon-tel, a:hover .icon-tel, a:hover .icon-tel-highlight, .highlight:hover .icon-tel, .icon-tel-highlight:hover, .icon-tel-highlight { background-position: 0px -1176px; } .icon-tel:hover, a:hover .icon-tel { background-position: 0px -1236px; } .icon-tel-single { width: 18px; height: 18px; background-position: 0px -304px; } .icon-tel { width: 50px; height: 50px; background-position: 0px -1356px; } .icon-upload-highlight { width: 25px; height: 24px; } .highlight .icon-upload, a:hover .icon-upload, a:hover .icon-upload-highlight, .highlight:hover .icon-upload, .icon-upload-highlight:hover, .icon-upload-highlight { background-position: 0px -508px; } .icon-upload { width: 25px; height: 24px; background-position: 0px -542px; } .lbf-button .icon-add { vertical-align: -2px; margin-right: 5px; } .lbf-combobox { width: 148px; } .table { table-layout: auto; } .table th { white-space: nowrap; } .table tr:hover td { background-color: #fff; } .table .tb-view { width: 330px; } .table .tb-view .view { width: 280px; height: 120px; background-color: #f2f2f2; text-align: center; position: relative; } .table .tb-view .view .vline { width: 1px; height: 120px; display: inline-block; overflow: hidden; margin-right: -1px; vertical-align: middle; } .table .tb-view .view .mark { position: absolute; left: 0; top: 0; right: 0; bottom: 0; text-align: center; line-height: 120px; background-color: #000; opacity: 0; filter: alpha(opacity=0); transition: opacity .36s; } .table .tb-view .view .mark a { color: #f2f2f2; border: 1px solid #f2f2f2; display: inline-block; border-radius: 2px; line-height: 38px; padding: 0 25px; } .table .tb-view .view:hover .mark { opacity: .8; filter: alpha(opacity=80); } .table .tb-view img { max-width: 90%; max-height: 80%; vertical-align: middle; } .table .tb-name { width: 310px; line-height: 26px; word-break: break-all; word-wrap: break-word; } .table .tb-name span { color: #ff4222; margin-left: 4px; } .table .tb-name .lbf-popup { background-color: #fff; border: 1px solid #dadee7; box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); } .table .tb-name .lbf-popup .lbf-tip-content { color: #1e2330; } .table .tb-name .lbf-popup .lbf-tip-arrow-before { border-color: #dadee7 transparent; } .table .tb-name .lbf-popup .lbf-tip-arrow-after { border-color: #fff transparent; } .table .tb-scene { width: 150px; } .table .tb-time { line-height: 22px; word-break: break-all; word-wrap: break-word; } .table .tb-action { width: 150px; text-align: right; padding-right: 30px; } .table .tb-action a { margin-left: 6px; display: inline-block; width: 20px; height: 20px; } .table p { color: #a8abb3; } .table-null h2 { font-size: 24px; margin-top: 18px; } body .wpa-preview-panel .previewer { height: 320px; background: #ebebeb; text-align: center; } body .wpa-preview-panel .previewer .vertical { display: inline-block; *display: inline; *zoom: 1; vertical-align: middle; line-height: 320px; width: 1px; height: 320px; } body .wpa-preview-panel .previewer #wpa-viewer { min-width: 360px; display: inline-block; *display: inline; *zoom: 1; vertical-align: middle; } body .wpa-preview-panel .intro { font-size: 14px; color: #a2a9b6; margin-top: 10px; } body .wpa-preview-panel .wpa-tip { display: inline-block; *display: inline; *zoom: 1; background: #fff; line-height: 36px; padding: 0 15px; border-radius: 3px; color: #555; } body .wpa-preview-panel .wpa-tip i { font-style: normal; margin: 0 3px; } body .wpa-preview-panel .lbf-panel-head { text-align: center; font-size: 24px; font-weight: normal; line-height: 30px; padding: 25px 0; } body .wpa-preview-panel .lbf-panel-body { padding: 0 25px 30px; } body .wpa-preview-panel .lbf-panel-foot { display: none; } .code-view-panel .lbf-panel-head { text-align: center; font-size: 24px; font-weight: normal; padding: 25px 0; } .code-view-panel .lbf-panel-body { padding: 0 25px 30px; } .code-view-panel .textarea { height: 160px; } .code-view-panel .textarea textarea { padding: 15px; width: 518px; height: 130px; border-color: #dadee7; color: #1e2331; } .code-view-panel h4 { color: #999; } .code-view-panel ul { color: #a8abb3; } .code-view-panel ul li { padding-bottom: 3px; }
0.447219
0.056966
margin: 8dip; font-family: Rubik; } #form-rows { flow: vertical; border-spacing: *; } .form-row { flow: horizontal; border-spacing: *; vertical-align: middle; height: 32dip; } #form-pair { flow: horizontal; border-spacing: *; width: calc(100% - 16dip); } .apply-quit { style-set: std-button-base; height: 26dip; width: 45%; margin-top: 15dip; vertical-align: middle; line-height: 26dip; cursor: pointer; background-color: #80BBB2; border-color: #80BBB2; border-width: 1dip; border-style: solid; font-family: Arial; color: white; transition: background-color quad-in-out 0.3s, color quad-in-out 0.3s, outline-color quad-in-out 0.1s, border-radius quad-in-out 0.1s; } .apply-quit:hover { background-color: white; color: #80BBB2; } .apply-quit:focus, .apply-quit:active { outline-color: rgba(247, 191, 78, 0.589); outline-width: 2dip; outline-offset: -1dip; outline-style: solid; border-radius: 3dip; } #quit { border-color: rgb(204, 204, 204); background-color: white; color: black; } #quit:hover { background-color: rgb(204, 204, 204); color: white; } .label, #help, .row-label { color: #999; } .label, #help { font-size: 12dip; text-align: left; margin-bottom: 5dip; } #help { font-size: 10dip; } #help>a { color: black; text-decoration: none; margin-top: 5dip; } input[type=text] { width: calc(100% - 16dip); padding-bottom: 2dip; margin: 0; border-color: #999; border-top-width: 0dip; border-left-width: 0dip; border-right-width: 0dip; border-radius: 0dip; border-bottom-width: 1dip; text-align: left; font-size: 16dip; outline: 1px solid white; outline-offset: -1dip; border-bottom: 2px solid #999; } #city, #lang { width: calc(50% - 16dip); } .space { margin-bottom: -3dip; } button[type=radio]:not(.time-format) { font-family: 'Rubik'; font-size: 17dip; } .time-format { font-weight: normal; font-size: 12dip; } black { color: black; } #autostart, #trayicon-weather { behavior: clickable; }
app/form.css
margin: 8dip; font-family: Rubik; } #form-rows { flow: vertical; border-spacing: *; } .form-row { flow: horizontal; border-spacing: *; vertical-align: middle; height: 32dip; } #form-pair { flow: horizontal; border-spacing: *; width: calc(100% - 16dip); } .apply-quit { style-set: std-button-base; height: 26dip; width: 45%; margin-top: 15dip; vertical-align: middle; line-height: 26dip; cursor: pointer; background-color: #80BBB2; border-color: #80BBB2; border-width: 1dip; border-style: solid; font-family: Arial; color: white; transition: background-color quad-in-out 0.3s, color quad-in-out 0.3s, outline-color quad-in-out 0.1s, border-radius quad-in-out 0.1s; } .apply-quit:hover { background-color: white; color: #80BBB2; } .apply-quit:focus, .apply-quit:active { outline-color: rgba(247, 191, 78, 0.589); outline-width: 2dip; outline-offset: -1dip; outline-style: solid; border-radius: 3dip; } #quit { border-color: rgb(204, 204, 204); background-color: white; color: black; } #quit:hover { background-color: rgb(204, 204, 204); color: white; } .label, #help, .row-label { color: #999; } .label, #help { font-size: 12dip; text-align: left; margin-bottom: 5dip; } #help { font-size: 10dip; } #help>a { color: black; text-decoration: none; margin-top: 5dip; } input[type=text] { width: calc(100% - 16dip); padding-bottom: 2dip; margin: 0; border-color: #999; border-top-width: 0dip; border-left-width: 0dip; border-right-width: 0dip; border-radius: 0dip; border-bottom-width: 1dip; text-align: left; font-size: 16dip; outline: 1px solid white; outline-offset: -1dip; border-bottom: 2px solid #999; } #city, #lang { width: calc(50% - 16dip); } .space { margin-bottom: -3dip; } button[type=radio]:not(.time-format) { font-family: 'Rubik'; font-size: 17dip; } .time-format { font-weight: normal; font-size: 12dip; } black { color: black; } #autostart, #trayicon-weather { behavior: clickable; }
0.461988
0.099077
.draftJsEmojiPlugin__emojiSelect__34S1B { display: inline-block; } .draftJsEmojiPlugin__emojiSelectButton__3sPol, .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu { margin: 0; padding: 0; width: 2.5em; height: 1.5em; box-sizing: border-box; line-height: 1.2em; font-size: 1.5em; color: #888; background: #fff; border: 1px solid #ddd; border-radius: 1.5em; cursor: pointer; } .draftJsEmojiPlugin__emojiSelectButton__3sPol:focus, .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu:focus { outline: 0; /* reset for :focus */ } .draftJsEmojiPlugin__emojiSelectButton__3sPol:hover, .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu:hover { background: #f3f3f3; } .draftJsEmojiPlugin__emojiSelectButton__3sPol:active, .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu:active { background: #e6e6e6; } .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu { background: #ededed; } .draftJsEmojiPlugin__emojiSelectPopover__1J1s0 { margin-top: 10px; padding: 0 .3em; position: absolute; z-index: 1000; box-sizing: content-box; background: #fff; border: 1px solid #e0e0e0; box-shadow: 0 4px 30px 0 gainsboro; } .draftJsEmojiPlugin__emojiSelectPopoverClosed__3Kxxq { display: none; } .draftJsEmojiPlugin__emojiSelectPopoverTitle__3tpXz { margin: 0 0 .3em; padding-left: 1em; height: 2.5em; line-height: 2.5em; font-weight: normal; font-size: 1em; color: #9e9e9e; } .draftJsEmojiPlugin__emojiSelectPopoverGroups__35t9m { margin: 0 0 .3em; position: relative; z-index: 0; width: 21em; height: 20em; } .draftJsEmojiPlugin__emojiSelectPopoverGroup__3zwcE { padding: 0 .5em; } .draftJsEmojiPlugin__emojiSelectPopoverGroup__3zwcE:first-child .draftJsEmojiPlugin__emojiSelectPopoverGroupTitle__2pC51 { display: none; } .draftJsEmojiPlugin__emojiSelectPopoverGroupTitle__2pC51 { margin: 1em 0; padding-left: .5em; font-weight: normal; font-size: 1em; color: #9e9e9e; } .draftJsEmojiPlugin__emojiSelectPopoverGroupList__HQ8_y { margin: 0; padding: 0; display: -webkit-box; display: flex; list-style: none; flex-wrap: wrap; } .draftJsEmojiPlugin__emojiSelectPopoverGroupItem__2pFOS { width: 2.5em; height: 2.5em; } .draftJsEmojiPlugin__emojiSelectPopoverToneSelect__28bny { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 2; } .draftJsEmojiPlugin__emojiSelectPopoverToneSelectList__haFSJ { margin: .3em; padding: .3em; position: absolute; display: -webkit-box; display: flex; list-style: none; border: 1px solid #e0e0e0; border-radius: .5em; background: #fff; box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.1); } .draftJsEmojiPlugin__emojiSelectPopoverToneSelectItem__2SgvL { width: 2.5em; height: 2.5em; } .draftJsEmojiPlugin__emojiSelectPopoverToneSelectItem__2SgvL:first-child { border-right: 1px solid #e0e0e0; } .draftJsEmojiPlugin__emojiSelectPopoverEntry__1ErDJ, .draftJsEmojiPlugin__emojiSelectPopoverEntryFocused__M28XS { padding: 0; width: 100%; height: 100%; background: none; border: none; outline: none; transition: background-color 0.4s cubic-bezier(0.27, 1.27, 0.48, 0.56); } .draftJsEmojiPlugin__emojiSelectPopoverEntryFocused__M28XS { background-color: #efefef; } .draftJsEmojiPlugin__emojiSelectPopoverEntryIcon__1yNaC { width: 1.5em; height: 1.5em; vertical-align: middle; } .draftJsEmojiPlugin__emojiSelectPopoverNav__1Nzd7 { margin: 0; padding: 0 .5em; display: -webkit-box; display: flex; width: 20em; list-style: none; } .draftJsEmojiPlugin__emojiSelectPopoverNavItem__qydCX { width: 2.5em; height: 2.5em; } .draftJsEmojiPlugin__emojiSelectPopoverNavEntry__1OiGB, .draftJsEmojiPlugin__emojiSelectPopoverNavEntryActive__2j-Vk { padding: 0; width: 100%; height: 100%; font-size: 1.2em; color: #bdbdbd; background: none; border: none; outline: none; } .draftJsEmojiPlugin__emojiSelectPopoverNavEntryActive__2j-Vk { color: #42a5f5; } .draftJsEmojiPlugin__emojiSelectPopoverScrollbar__1Xjc6 { position: absolute; right: 0; top: .3em; bottom: .3em; width: .25em; background-color: #e0e0e0; border-radius: .125em; opacity: .1; transition: opacity .4s; } .draftJsEmojiPlugin__emojiSelectPopoverScrollbarThumb__jGYdG { background-color: #000; border-radius: .125em; cursor: pointer; } .draftJsEmojiPlugin__emojiSelectPopoverGroups__35t9m:hover .draftJsEmojiPlugin__emojiSelectPopoverScrollbar__1Xjc6 { opacity: .3; } .draftJsEmojiPlugin__emojiSelectPopoverGroups__35t9m .draftJsEmojiPlugin__emojiSelectPopoverScrollbar__1Xjc6:hover, .draftJsEmojiPlugin__emojiSelectPopoverGroups__35t9m .draftJsEmojiPlugin__emojiSelectPopoverScrollbar__1Xjc6:active { opacity: .6; }
draft-js-emoji-plugin/lib-css/emojiSelectStyles.css
.draftJsEmojiPlugin__emojiSelect__34S1B { display: inline-block; } .draftJsEmojiPlugin__emojiSelectButton__3sPol, .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu { margin: 0; padding: 0; width: 2.5em; height: 1.5em; box-sizing: border-box; line-height: 1.2em; font-size: 1.5em; color: #888; background: #fff; border: 1px solid #ddd; border-radius: 1.5em; cursor: pointer; } .draftJsEmojiPlugin__emojiSelectButton__3sPol:focus, .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu:focus { outline: 0; /* reset for :focus */ } .draftJsEmojiPlugin__emojiSelectButton__3sPol:hover, .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu:hover { background: #f3f3f3; } .draftJsEmojiPlugin__emojiSelectButton__3sPol:active, .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu:active { background: #e6e6e6; } .draftJsEmojiPlugin__emojiSelectButtonPressed__2Tezu { background: #ededed; } .draftJsEmojiPlugin__emojiSelectPopover__1J1s0 { margin-top: 10px; padding: 0 .3em; position: absolute; z-index: 1000; box-sizing: content-box; background: #fff; border: 1px solid #e0e0e0; box-shadow: 0 4px 30px 0 gainsboro; } .draftJsEmojiPlugin__emojiSelectPopoverClosed__3Kxxq { display: none; } .draftJsEmojiPlugin__emojiSelectPopoverTitle__3tpXz { margin: 0 0 .3em; padding-left: 1em; height: 2.5em; line-height: 2.5em; font-weight: normal; font-size: 1em; color: #9e9e9e; } .draftJsEmojiPlugin__emojiSelectPopoverGroups__35t9m { margin: 0 0 .3em; position: relative; z-index: 0; width: 21em; height: 20em; } .draftJsEmojiPlugin__emojiSelectPopoverGroup__3zwcE { padding: 0 .5em; } .draftJsEmojiPlugin__emojiSelectPopoverGroup__3zwcE:first-child .draftJsEmojiPlugin__emojiSelectPopoverGroupTitle__2pC51 { display: none; } .draftJsEmojiPlugin__emojiSelectPopoverGroupTitle__2pC51 { margin: 1em 0; padding-left: .5em; font-weight: normal; font-size: 1em; color: #9e9e9e; } .draftJsEmojiPlugin__emojiSelectPopoverGroupList__HQ8_y { margin: 0; padding: 0; display: -webkit-box; display: flex; list-style: none; flex-wrap: wrap; } .draftJsEmojiPlugin__emojiSelectPopoverGroupItem__2pFOS { width: 2.5em; height: 2.5em; } .draftJsEmojiPlugin__emojiSelectPopoverToneSelect__28bny { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 2; } .draftJsEmojiPlugin__emojiSelectPopoverToneSelectList__haFSJ { margin: .3em; padding: .3em; position: absolute; display: -webkit-box; display: flex; list-style: none; border: 1px solid #e0e0e0; border-radius: .5em; background: #fff; box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.1); } .draftJsEmojiPlugin__emojiSelectPopoverToneSelectItem__2SgvL { width: 2.5em; height: 2.5em; } .draftJsEmojiPlugin__emojiSelectPopoverToneSelectItem__2SgvL:first-child { border-right: 1px solid #e0e0e0; } .draftJsEmojiPlugin__emojiSelectPopoverEntry__1ErDJ, .draftJsEmojiPlugin__emojiSelectPopoverEntryFocused__M28XS { padding: 0; width: 100%; height: 100%; background: none; border: none; outline: none; transition: background-color 0.4s cubic-bezier(0.27, 1.27, 0.48, 0.56); } .draftJsEmojiPlugin__emojiSelectPopoverEntryFocused__M28XS { background-color: #efefef; } .draftJsEmojiPlugin__emojiSelectPopoverEntryIcon__1yNaC { width: 1.5em; height: 1.5em; vertical-align: middle; } .draftJsEmojiPlugin__emojiSelectPopoverNav__1Nzd7 { margin: 0; padding: 0 .5em; display: -webkit-box; display: flex; width: 20em; list-style: none; } .draftJsEmojiPlugin__emojiSelectPopoverNavItem__qydCX { width: 2.5em; height: 2.5em; } .draftJsEmojiPlugin__emojiSelectPopoverNavEntry__1OiGB, .draftJsEmojiPlugin__emojiSelectPopoverNavEntryActive__2j-Vk { padding: 0; width: 100%; height: 100%; font-size: 1.2em; color: #bdbdbd; background: none; border: none; outline: none; } .draftJsEmojiPlugin__emojiSelectPopoverNavEntryActive__2j-Vk { color: #42a5f5; } .draftJsEmojiPlugin__emojiSelectPopoverScrollbar__1Xjc6 { position: absolute; right: 0; top: .3em; bottom: .3em; width: .25em; background-color: #e0e0e0; border-radius: .125em; opacity: .1; transition: opacity .4s; } .draftJsEmojiPlugin__emojiSelectPopoverScrollbarThumb__jGYdG { background-color: #000; border-radius: .125em; cursor: pointer; } .draftJsEmojiPlugin__emojiSelectPopoverGroups__35t9m:hover .draftJsEmojiPlugin__emojiSelectPopoverScrollbar__1Xjc6 { opacity: .3; } .draftJsEmojiPlugin__emojiSelectPopoverGroups__35t9m .draftJsEmojiPlugin__emojiSelectPopoverScrollbar__1Xjc6:hover, .draftJsEmojiPlugin__emojiSelectPopoverGroups__35t9m .draftJsEmojiPlugin__emojiSelectPopoverScrollbar__1Xjc6:active { opacity: .6; }
0.447943
0.049543
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("tweakers.net") { body, div#searchbar, .notificationsContainer { background: #414141 !important } #search, #mainColumn, #secondColumn, #fp_tabs_container, #contentArea, #top:not(:first-child) { background: #4e4e4e !important } .fpaItem { margin-bottom: 10px !important; max-height: 165px !important } .fpItem { background: #FFF !important; box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.33) inset; } table.highlights tr:last-of-type td { border-bottom: 0 !important; padding-bottom: 5px !important } #contentArea { padding-top: 0 !important } div.top > a { color: rgb(200,203,203) } #bottom > DIV.hr { height: 1px !important; background: #414141 !important } #top a, #top a:visited, #bottom a { color: rgb(200, 203, 203) !important } .trackerPopup .trackeritem li .caption { color: rgb(183, 180, 178) !important } #top { border-bottom: none !important } #fp_tabs { border-bottom: 1px solid #414141 !important } a, a:visited, #notifications p, #notifications a { color: #000 !important } h2 { font-family: "century gothic",futura,arial,helvetica,"liberation sans","dejavu sans condensed",sans-serif; padding-left: 20px !important; padding-top: 5px !important } div#cookieBar, .b_ad, .advertorial, #tracker-sponsored { display: none !important } #fp_tabs_container { margin-bottom: 0px !important } .reacties { margin-left: 20px !important } #search { background: #4e4e4e !important; padding-bottom: 10px !important } #news h2 { padding-top: 5px !important; padding-left: 20px !important } table.highlights td { padding: 4px 0 !important } table.highlights td.type { padding-left: 5px !important } table.highlights td.replies { padding-right: 10px !important } .relevancyColumn { box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.33) inset !important } #header, .articleColumn, .relevancyColumn, .article, p.author, .sidebar, #reacties, .nextPrevious, .popularEditorialReviewsBlock, .popularUserReviewsBlock, P.readMore, #listingContainer, .popularProductListing, .secondColumn, .vaPortalColumnLeft, .vaPortalColumnRight, .channelHeader H2, #forumheading > #title > H1, #jobContent, .meukTable, .content { background: #FFF } .relevancyColumn, #header, .article p, .sidebar, #reacties, .nextPrevious, .popularEditorialReviewsBlock, .popularUserReviewsBlock, .readMore, #listingContainer, .popularProductListing, .vaUserAds, .addUserAd, .content { padding-left: 20px !important; padding-right: 20px !important } #header { margin-bottom: 0px !important } .nextPrevLinks { padding-left: 20px !important } p.author { padding-left: 20px !important; margin-bottom: 0px !important } .sidebar { padding-right: 20px !important } #filterContainer { margin-right: 0 !important } #menu .dropdown span, #menu .dropdown li a { color: #000 !important } .meukTable { padding-left: 20px; padding-right: 18px !important } #contentArea, .pageTabsContainer { background-color: #fff !important } #contentArea, #search { width: 90% !important; min-width: 980px } #tweakbase, .pageTabsContainer { margin: 0 11% !important; background: #fff !important; /* background-color: #4e4e4e !important*/ } #fpaItems { float: right; width: 490px !important; padding-right: 25px; text-align: center !important; } .fpaItem div.textContainer { max-height: 60px !important; line-height: 100% !important; padding: 10px 0 !important } .articleColumn { float: left; min-width: 620px; width: 800px !important; line-height: 1.6; margin-top: -5px } }
data/usercss/76814.user.css
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("tweakers.net") { body, div#searchbar, .notificationsContainer { background: #414141 !important } #search, #mainColumn, #secondColumn, #fp_tabs_container, #contentArea, #top:not(:first-child) { background: #4e4e4e !important } .fpaItem { margin-bottom: 10px !important; max-height: 165px !important } .fpItem { background: #FFF !important; box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.33) inset; } table.highlights tr:last-of-type td { border-bottom: 0 !important; padding-bottom: 5px !important } #contentArea { padding-top: 0 !important } div.top > a { color: rgb(200,203,203) } #bottom > DIV.hr { height: 1px !important; background: #414141 !important } #top a, #top a:visited, #bottom a { color: rgb(200, 203, 203) !important } .trackerPopup .trackeritem li .caption { color: rgb(183, 180, 178) !important } #top { border-bottom: none !important } #fp_tabs { border-bottom: 1px solid #414141 !important } a, a:visited, #notifications p, #notifications a { color: #000 !important } h2 { font-family: "century gothic",futura,arial,helvetica,"liberation sans","dejavu sans condensed",sans-serif; padding-left: 20px !important; padding-top: 5px !important } div#cookieBar, .b_ad, .advertorial, #tracker-sponsored { display: none !important } #fp_tabs_container { margin-bottom: 0px !important } .reacties { margin-left: 20px !important } #search { background: #4e4e4e !important; padding-bottom: 10px !important } #news h2 { padding-top: 5px !important; padding-left: 20px !important } table.highlights td { padding: 4px 0 !important } table.highlights td.type { padding-left: 5px !important } table.highlights td.replies { padding-right: 10px !important } .relevancyColumn { box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.33) inset !important } #header, .articleColumn, .relevancyColumn, .article, p.author, .sidebar, #reacties, .nextPrevious, .popularEditorialReviewsBlock, .popularUserReviewsBlock, P.readMore, #listingContainer, .popularProductListing, .secondColumn, .vaPortalColumnLeft, .vaPortalColumnRight, .channelHeader H2, #forumheading > #title > H1, #jobContent, .meukTable, .content { background: #FFF } .relevancyColumn, #header, .article p, .sidebar, #reacties, .nextPrevious, .popularEditorialReviewsBlock, .popularUserReviewsBlock, .readMore, #listingContainer, .popularProductListing, .vaUserAds, .addUserAd, .content { padding-left: 20px !important; padding-right: 20px !important } #header { margin-bottom: 0px !important } .nextPrevLinks { padding-left: 20px !important } p.author { padding-left: 20px !important; margin-bottom: 0px !important } .sidebar { padding-right: 20px !important } #filterContainer { margin-right: 0 !important } #menu .dropdown span, #menu .dropdown li a { color: #000 !important } .meukTable { padding-left: 20px; padding-right: 18px !important } #contentArea, .pageTabsContainer { background-color: #fff !important } #contentArea, #search { width: 90% !important; min-width: 980px } #tweakbase, .pageTabsContainer { margin: 0 11% !important; background: #fff !important; /* background-color: #4e4e4e !important*/ } #fpaItems { float: right; width: 490px !important; padding-right: 25px; text-align: center !important; } .fpaItem div.textContainer { max-height: 60px !important; line-height: 100% !important; padding: 10px 0 !important } .articleColumn { float: left; min-width: 620px; width: 800px !important; line-height: 1.6; margin-top: -5px } }
0.192577
0.105533
.dhtmlx_message_area { position:fixed; right:5px; width:250px; z-index:1000 } .dhtmlx-info { min-width:120px; font-family:Tahoma; z-index:10000; overflow:hidden; margin:5px 5px 10px; -webkit-transition:all .5s ease; -moz-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease } .dhtmlx-info.hidden { height:0; padding:0; border-width:0; margin:0; overflow:hidden } .dhtmlx_modal_box { overflow:hidden; display:inline-block; min-width:300px; text-align:center; position:fixed; box-shadow:0 0 14px #888; font-family:Tahoma; z-index:20000; border-radius:6px; border:1px solid #fff } .dhtmlx_popup_title { border-top-left-radius:5px; border-top-right-radius:5px; border-width:0; background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAoCAMAAAAIaGBFAAAAhFBMVEVwcHBubm5sbGxqampoaGhmZmZlZWVjY2NhYWFfX19dXV1bW1taWlpYWFhWVlZUVFRSUlJRUVFPT09NTU1LS0tJSUlHR0dGRkZERERCQkJAQEA+Pj49PT09PT0+Pj5AQEBBQUFDQ0NERERGRkZHR0dJSUlKSkpMTExMTEw5OTk5OTk5OTkny8YEAAAAQklEQVQImQXBCRJCAAAAwKVSQqdyjSPXNP7/QLsIhA6OTiJnF7GrRCpzc/fw9PKW+/gqlCq1RqvTG/yMJrPF6m/bAVEhAxxnHG0oAAAAAElFTkSuQmCC); background:-webkit-linear-gradient(top,#707070 1%,#3d3d3d 70%,#4c4c4c 97%,#393939 97%); background:-moz-linear-gradient(top,#707070 1%,#3d3d3d 70%,#4c4c4c 97%,#393939 97%) } .dhtmlx-info,.dhtmlx_button,.dhtmlx_popup_button { user-select:none; -webkit-user-select:none; -moz-user-select:-moz-none; cursor:pointer } .dhtmlx_popup_text { overflow:hidden } .dhtmlx_popup_controls { border-radius:6px; padding:5px } .dhtmlx_button,.dhtmlx_popup_button { height:30px; line-height:30px; display:inline-block; margin:0 5px; border-radius:6px; color:#FFF } .dhtmlx_popup_button { min-width:120px } div.dhx_modal_cover { background-color:#000; cursor:default; filter:alpha(opacity=20); opacity:.2; position:fixed; z-index:19999; left:0; top:0; width:100%; height:100%; border:none; zoom:1 } .dhtmlx-info img,.dhtmlx_modal_box img { float:left; margin-right:20px } .dhtmlx-alert-error .dhtmlx_popup_title,.dhtmlx-confirm-error .dhtmlx_popup_title { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAsCAIAAAArRUU2AAAATklEQVR4nIWLuw2AMBBDjVuQiBT2oWbRDATrnB0KQOJoqPzRe3BrHI6dcBASYREKovtK6/6DsDOX+stN+3H1YX9ciRgnYq5EWYhS2dftBIuLT4JyIrPCAAAAAElFTkSuQmCC) } .dhtmlx-alert-error,.dhtmlx-confirm-error { border:1px solid red } .dhtmlx_button,.dhtmlx_popup_button { box-shadow:0 0 4px #888; border:1px solid #838383 } .dhtmlx_button input,.dhtmlx_popup_button div { /*border:1px solid #FFF;*/ background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAMAAADaS4T1AAAAYFBMVEVwcHBtbW1ra2toaGhmZmZjY2NhYWFeXl5cXFxaWlpXV1dVVVVSUlJQUFBNTU1LS0tJSUlGRkZERERBQUE/Pz88PDw9PT0+Pj5AQEBCQkJDQ0NFRUVHR0dISEhKSkpMTEzqthaMAAAAMklEQVQImQXBhQ2AMAAAsOIMlwWH/8+kRSKVyRVKlVrQaHV6g9FktlhFm93hdLk9Xt8PIfgBvdUqyskAAAAASUVORK5CYII=); background:-webkit-linear-gradient(top,#707070 1%,#3d3d3d 70%,#4c4c4c 99%); background:-moz-linear-gradient(top,#707070 1%,#3d3d3d 70%,#4c4c4c 99%); border-radius:6px; font-size:15px; font-weight:400; -moz-box-sizing:content-box; box-sizing:content-box; color:#fff; padding:0; margin:0; vertical-align:top; height:28px; line-height:28px } .dhtmlx_button input:active,.dhtmlx_button input:focus,.dhtmlx_popup_button div:active,.dhtmlx_popup_button div:focus { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAMAAADaS4T1AAAAXVBMVEVwcHBubm5tbW1sbGxra2tpaWloaGhnZ2dmZmZlZWVjY2NiYmJhYWFgYGBfX19dXV1cXFxbW1taWlpZWVlXV1dWVlZVVVVUVFRTU1NRUVFQUFBPT09OTk5NTU1LS0tT9SY0AAAAMUlEQVQImQXBhQGAMAAAIGxnx2z9/00BiVQmVyhVakGj1ekNRpPZYhVtdofT5fZ4fT8hpwG05JjexgAAAABJRU5ErkJggg==); background:-webkit-linear-gradient(top,#707070 1%,#4c4c4c 99%); background:-moz-linear-gradient(top,#707070 1%,#4c4c4c 99%) } .dhtmlx_popup_title { color:#fff; text-shadow:1px 1px #000; height:40px; line-height:40px; font-size:20px } .dhtmlx_popup_text { margin:15px 15px 5px; font-size:14px; color:#000; min-height:30px; border-radius:6px } .dhtmlx-error,.dhtmlx-info { font-size:14px; color:#000; box-shadow:0 0 10px #888; padding:0; background-color:#FFF; border-radius:3px; border:1px solid #fff } .dhtmlx-info div { padding:5px 10px; background-color:#fff; border-radius:3px; border:1px solid #B8B8B8 } .dhtmlx-error { background-color:#d81b1b; border:1px solid #ff3c3c; box-shadow:0 0 10px #000 } .dhtmlx-error div { background-color:#d81b1b; border:1px solid #940000; color:#FFF } .dhx_cal_event .dhx_body,.dhx_cal_event .dhx_footer,.dhx_cal_event .dhx_header,.dhx_cal_event .dhx_title { border:1px solid #B7A543; overflow:hidden; width:100%; font-family:Tahoma; font-size:8pt } .dhx_move_denied .dhx_cal_event .dhx_header,.dhx_move_denied .dhx_cal_event .dhx_title { cursor:default } .dhx_cal_event .dhx_header { height:1px; margin-left:1px; border-width:1px 1px 0; cursor:pointer } .dhx_cal_event .dhx_title { height:12px; border-bottom-style:dotted; text-align:center; background-position:right; background-repeat:no-repeat; cursor:pointer } .dhx_cal_event .dhx_body,.dhx_cal_event.dhx_cal_select_menu .dhx_body { border-width:0 1px 1px; padding:5px } .dhx_resize_denied,.dhx_resize_denied .dhx_event_resize { cursor:default!important } .dhx_cal_event .dhx_event_resize { cursor:s-resize } .dhx_cal_event .dhx_footer,.dhx_cal_event .dhx_select_menu_footer { height:1px; margin-left:2px; border-width:0 1px 1px; position:relative } .dhx_cal_event_line { padding-left:10px; cursor:pointer; overflow:hidden } .dhx_cal_event_clear { font-family:Tahoma; font-size:8pt; height:13px; padding-left:2px; white-space:nowrap; overflow:hidden; cursor:pointer } .dhx_in_move { background-color:#FFFF80 } .dhx_cal_event.dhx_cal_editor { z-index:999; position:absolute; overflow:hidden } textarea.dhx_cal_editor { width:100%; height:100%; border:0 solid #000; margin:0; padding:0; overflow:auto } div.dhx_menu_head { background-position:0 -43px; width:10px; height:10px; margin-left:5px; margin-top:1px; border:none; cursor:default } div.dhx_menu_icon { width:20px; height:20px; margin-left:-5px; margin-top:0; border:none; cursor:pointer } div.icon_details { background-position:0 0 } div.icon_edit { background-position:-22px 0 } div.icon_save { background-position:-84px -1px } div.icon_cancel { background-position:-62px 0 } div.icon_delete { background-position:-42px 0 } .dhx_month_link { position:absolute; box-sizing:border-box; -moz-box-sizing:border-box; text-align:right; cursor:pointer; padding-right:10px } .dhx_month_link a { color:#00f } .dhx_month_link a:hover { text-decoration:underline } .dhx_global_tip { font-family:Tahoma,Helvetica; text-align:center; font-size:20px; position:fixed; top:60px; right:20px; background-color:rgba(255,255,255,.7); color:#000; z-index:10000; padding:20px 30px; width:190px } .dhx_global_tip div { font-size:30px } @media (-moz-touch-enabled) { .dhx_cal_container { user-select:none; -moz-user-select:none } }.dhx_unselectable,.dhx_unselectable div { -webkit-user-select:none; -moz-user-select:none; -moz-user-select:-moz-none } .dhx_cal_light { -webkit-tap-highlight-color:transparent; border-radius:5px; font-family:Tahoma; font-size:8pt; position:absolute; z-index:10001; width:580px; height:300px; box-shadow:5px 5px 5px #888 } .dhx_mark { position:relative; top:3px; background-image:url(imgs/controls.gif); background-position:0 -43px; padding-left:10px } .dhx_ie6 .dhx_mark { background-position:6px -41px } .dhx_cal_light select { font-family:Tahoma; font-size:8pt; padding:2px; margin:0 } .dhx_cal_ltitle { padding:2px 0 2px 5px; overflow:hidden; white-space:nowrap } .dhx_cal_ltitle span { white-space:nowrap } .dhx_cal_lsection { font-weight:700; padding:5px 0 3px 10px } .dhx_section_time { white-space:nowrap } .dhx_cal_lsection .dhx_fullday { float:right; margin-right:5px; font-size:12px; font-weight:400; line-height:20px; vertical-align:top; cursor:pointer } .dhx_cal_lsection { font-size:18px; font-family:Arial } .dhx_cal_ltext { padding:2px 0 2px 10px; overflow:hidden } .dhx_cal_ltext textarea { overflow:auto; height:100%; width:100%; outline:0!important; resize:none } .dhx_time { font-weight:700 } .dhx_cal_larea { overflow:hidden; width:572px; height:1px } .dhx_btn_set { float:left } .dhx_btn_set div { float:left; vertical-align:middle; cursor:pointer } .dhx_save_btn { background-image:url(imgs/controls.gif); background-position:-84px 0; width:21px } .dhx_cancel_btn { background-image:url(imgs/controls.gif); background-position:-63px 0; width:20px } .dhx_delete_btn { background-image:url(imgs/controls.gif); background-position:-42px 0; width:20px } .dhx_cal_cover { width:100%; height:100%; position:absolute; z-index:10000; top:0; left:0; background-color:#000; opacity:.1; filter:alpha(opacity=10) } .dhx_custom_button { padding:0 3px; font-family:Tahoma; font-size:8pt; font-weight:400; margin-right:5px; margin-top:0; cursor:pointer } .dhx_custom_button div { cursor:pointer; float:left; height:21px; line-height:21px; vertical-align:middle } .dhx_cal_light_wide .dhx_cal_larea { border-top-width:0 } .dhx_cal_light_wide .dhx_cal_lsection { border:0; float:left; text-align:right; width:100px; height:20px; padding:5px 0 0 10px } .dhx_cal_light_wide .dhx_wrap_section { position:relative; overflow:hidden } .dhx_cal_light_wide .dhx_section_time { padding-top:2px!important; height:20px!important } .dhx_section_time { text-align:center } .dhx_cal_light_wide .dhx_cal_larea { width:730px } .dhx_cal_light_wide { width:738px } .dhx_cal_light_wide .dhx_section_time { background:0 0 } .dhx_cal_light_wide .dhx_cal_checkbox label { padding-left:0 } .dhx_cal_wide_checkbox input { margin-top:8px; margin-left:14px } .dhx_cal_light input { font-family:Tahoma; font-size:8pt } .dhx_cal_light_wide .dhx_cal_lsection .dhx_fullday { float:none; margin-right:0; font-weight:700; font-family:Arial; cursor:pointer } .dhx_custom_button { float:right; height:21px } .dhx_cal_light_wide .dhx_custom_button { position:absolute; top:0; right:0 } .dhx_cal_light_wide .dhx_repeat_right { margin-right:55px } .dhx_minical_popup { position:absolute; z-index:10100; width:251px; height:175px } .dhx_scale_bar_header { position:absolute; border-bottom:1px dotted #8894A3; width:100% } .dhx_expand_icon { position:absolute; right:0; background-image:url(imgs/collapse_expand_icon.gif); width:18px; height:18px; cursor:pointer; background-position:0 18px; z-index:16 } .dhx_scheduler_agenda .dhx_cal_data { background-image:url(imgs/databg.png) } .dhx_agenda_area { width:100%; overflow-y:auto; background-image:url(imgs/databg.png) } .dhx_agenda_line { height:21px; clear:both; overflow:hidden } .dhx_agenda_line div { float:left; width:188px; text-align:center; line-height:21px; overflow:hidden } .dhx_agenda_area .dhx_agenda_line div { border-right:0 dotted #8894A3 } .dhx_v_border { position:absolute; left:187px; top:0; width:1px; height:100% } .dhx_agenda_line .dhx_event_icon { width:20px; border-width:0; background:url(imgs/icon.png) 5px 4px no-repeat; cursor:pointer } .dhx_agenda_line span { padding-left:5px; line-height:21px } .dhx_year_week { position:relative } .dhx_year_month { height:18px; padding-top:3px; text-align:center; vertical-align:middle } .dhx_year_body .dhx_after .dhx_month_head,.dhx_year_body .dhx_after .dhx_month_head a,.dhx_year_body .dhx_before .dhx_month_head,.dhx_year_body .dhx_before .dhx_month_head a { color:#E2E3E6!important } .dhx_year_body .dhx_month_body { height:0; overflow:hidden } .dhx_month_head.dhx_year_event { background-color:#FFE763 } .dhx_year_body .dhx_after .dhx_month_head,.dhx_year_body .dhx_before .dhx_month_head { cursor:default } .dhx_year_tooltip { border:1px solid #BBB; background-image:url(imgs/databg.png); position:absolute; z-index:9998; width:300px; height:auto; font-family:Tahoma; font-size:8pt; overflow:hidden } .dhx_tooltip_line { line-height:20px; height:20px; overflow:hidden } .dhx_tooltip_line .dhx_event_icon { width:20px; height:20px; padding-right:10px; float:left; border-width:0; position:relative; background:url(imgs/icon.png) 5px 4px no-repeat; cursor:pointer } .dhx_tooltip_date { float:left; width:auto; padding-left:5px; text-align:center } .dhx_text_disabled { font-family:Tahoma; font-size:8pt } .dhx_mini_calendar { -moz-box-shadow:5px 5px 5px #888; -khtml-box-shadow:5px 5px 5px #888; -moz-user-select:-moz-none; -webkit-user-select:none; -user-select:none } .dhx_mini_calendar .dhx_month_head { cursor:pointer } .dhx_mini_calendar .dhx_calendar_click { background-color:#C2D5FC } .dhx_cal_navline div.dhx_minical_icon { cursor:pointer; background-image:url(imgs/calendar.gif) } .dhx_matrix_scell { height:100% } .dhx_matrix_cell,.dhx_matrix_scell { overflow:hidden; text-align:center; vertical-align:middle } .dhx_matrix_cell { background-color:#fff } .dhx_matrix_line { overflow:hidden } .dhx_matrix_cell div,.dhx_matrix_scell div { overflow:hidden; text-align:center; height:auto } .dhx_cal_lsection .dhx_readonly { font-size:9pt; font-size:8pt; padding:2px; color:#887A2E } .dhx_cal_event_line .dhx_event_resize { cursor:w-resize; position:absolute; top:0; width:4px; height:100% } .dhx_event_resize_start { left:0 } .dhx_event_resize_end { right:0 } .dhx_data_table.folder .dhx_matrix_cell,.dhx_matrix_scell.folder { background-color:#969394; cursor:pointer } .dhx_matrix_scell .dhx_scell_level0 { padding-left:5px } .dhx_matrix_scell .dhx_scell_level1 { padding-left:20px } .dhx_matrix_scell .dhx_scell_level2 { padding-left:35px } .dhx_matrix_scell .dhx_scell_level3 { padding-left:50px } .dhx_matrix_scell .dhx_scell_level4 { padding-left:65px } .dhx_matrix_scell.folder { font-weight:700; text-align:left } .dhx_matrix_scell.folder .dhx_scell_expand { float:left; width:10px; padding-right:3px } .dhx_matrix_scell.folder .dhx_scell_name { float:left; width:auto } .dhx_matrix_scell.item .dhx_scell_name { padding-left:15px; text-align:left } .dhx_data_table.folder .dhx_matrix_cell { border-right:0 } .dhx_section_timeline { overflow:hidden; padding:4px 0 2px 10px } .dhx_section_timeline select { width:552px } .dhx_map_area { width:100%; height:100%; overflow-y:auto; overflow-x:hidden; background-image:url(imgs/databg.png) } .dhx_map_line .dhx_event_icon { width:20px; border-width:0; background:url(imgs/icon.png) 5px 4px no-repeat; cursor:pointer } .dhx_map_line { height:21px; clear:both; overflow:hidden } .dhx_map { position:absolute } .dhx_map_line .headline_description,.dhx_map_line div { float:left; border-right:1px dotted #8894A3; text-align:center; line-height:21px; overflow:hidden } .dhx_map_line .dhx_map_description { float:left; border-right:0 dotted #8894A3; text-align:center; line-height:21px; overflow:hidden } .dhx_map_line .line_description { float:left; border-right:1px dotted #8894A3; text-align:left; padding-left:5px; line-height:21px; overflow:hidden } .dhx_map_line.highlight { background-color:#C4C5CC } .dhx_map_area .dhx_map_line div { border-right:0 dotted #8894A3 } .dhtmlXTooltip.tooltip { -moz-box-shadow:3px 3px 3px #888; -webkit-box-shadow:3px 3px 3px #888; -o-box-shadow:3px 3px 3px #888; box-shadow:3px 3px 3px #888; filter:progid:DXImageTransform.Microsoft.Shadow(color='#888888',Direction=135,Strength=5); background-color:#fff; cursor:default; padding:10px; position:absolute; z-index:500; font-family:Tahoma; opacity:1 } .dhx_cal_checkbox label { padding-left:5px } .dhx_cal_light .radio { padding:2px 0 2px 10px } .dhx_cal_light .radio input,.dhx_cal_light .radio label { line-height:15px } .dhx_cal_light .radio input { vertical-align:middle; margin:0; padding:0 } .dhx_cal_light .radio label { vertical-align:middle; padding-right:10px } .dhx_cal_light .combo { padding:4px } .dhx_cal_light_wide .dhx_combo_box { width:608px!important; left:10px } .dhx_wa_column { float:left } .dhx_wa_scale_bar { font-family:Tahoma; padding-left:10px; font-size:11px } .dhx_wa_day_data { background-color:#FCFEFC; overflow-y:auto } .dhx_wa_ev_body { font-size:12px; padding:5px 0 5px 7px } .dhx_wa_dnd { font-family:Tahoma; position:absolute; padding-right:7px; color:#887AE2!important; background-color:#FFE763!important } .dhx_cal_event_selected { background-color:#9cc1db; color:#fff } .dhx_second_scale_bar { padding-top:2px } .dhx_grid_area { width:100%; height:100%; overflow-y:auto; background-color:#FCFEFC } .dhx_grid_area table { border-collapse:collapse; border-spacing:0; width:100%; table-layout:fixed } .dhx_grid_area td { table-layout:fixed; text-align:center } .dhx_grid_line { height:21px; clear:both; overflow:hidden } .dhx_grid_line div { float:left; cursor:default; padding-top:0; padding-bottom:0; text-align:center; line-height:21px; overflow:hidden } .dhx_grid_area td,.dhx_grid_line div { padding-left:8px; padding-right:8px } .dhx_grid_area tr.dhx_grid_event { height:21px; overflow:hidden; margin:0 0 1px } .dhx_grid_area tr.dhx_grid_event td { border-bottom:1px solid #ECEEF4 } .dhx_grid_area tr.dhx_grid_event:nth-child(2n) td,.dhx_grid_area tr.dhx_grid_event:nth-child(2n+1) td { border-bottom-width:0; border-bottom-style:none } .dhx_grid_area tr.dhx_grid_event:nth-child(2n) { background-color:#ECEEF4 } .dhx_grid_area .dhx_grid_dummy { table-layout:auto; margin:0!important; padding:0!important } .dhx_grid_v_border { position:absolute; border-right:1px solid #A4BED4; width:1px; height:100% } .dhx_grid_event_selected { background-color:#9cc1db!important; color:#fff!important } .dhx_grid_sort_desc .dhx_grid_view_sort { background-position:0 -55px } .dhx_grid_sort_asc .dhx_grid_view_sort { background-position:0 -66px } .dhx_grid_view_sort { width:10px; height:10px; position:absolute; border:none!important; top:5px; background-repeat:no-repeat; background-image:url(imgs/images.png) } .dhx_marked_timespan { position:absolute; width:100%; margin-left:0 } .dhx_time_block { position:absolute; width:100%; background:silver; opacity:.4; filter:alpha(opacity=40); z-index:1 } .dhx_time_block_reset { opacity:1; filter:alpha(opacity=100) } .dhx_mini_calendar .dhx_marked_timespan,.dhx_scheduler_month .dhx_marked_timespan { display:none } .dhx_now_time { width:100%; border-bottom:2px solid red; z-index:1 } .dhx_scheduler_month .dhx_now_time { border-bottom:0; border-left:2px solid red } .dhx_matrix_now_time { border-left:2px solid red; z-index:1 } .dhx_matrix_now_time,.dhx_now_time { opacity:.5 } .dhx_cal_quick_info { border:2px solid #888; border-radius:5px; position:absolute; z-index:300; background-color:#8e99ae; background-color:rgba(98,107,127,.5); padding-left:7px; width:300px; transition:left .5s ease,right .5s; -moz-transition:left .5s ease,right .5s; -webkit-transition:left .5s ease,right .5s; -o-transition:left .5s ease,right .5s } .dhx_no_animate { transition:none; -moz-transition:none; -webkit-transition:none; -o-transition:none } .dhx_cal_quick_info.dhx_qi_left .dhx_qi_big_icon { float:right } .dhx_cal_qi_title { padding:5px 0 10px 5px; color:#FFF; letter-spacing:1px } .dhx_cal_qi_tdate { font-size:14px } .dhx_cal_qi_tcontent { font-size:18px; font-weight:700 } .dhx_cal_qi_content { border:1px solid #888; background-color:#fefefe; padding:16px 8px; font-size:14px; color:#444; width:275px; overflow:hidden } .dhx_qi_big_icon { border-radius:3px; margin:5px 9px 5px 0; min-width:60px; line-height:20px; vertical-align:middle; padding:5px 10px 5px 5px; cursor:pointer; background-color:#fefefe; border-bottom:1px solid #666; border-right:1px solid #666; float:left } .dhx_cal_qi_controls div { float:left; height:20px; text-align:center; line-height:20px } .dhx_qi_big_icon .dhx_menu_icon { margin:0 8px 0 0 } .dhx_drag_marker { width:100%; filter:alpha(Opacity=50); opacity:.5; background-color:#FFE763; position:absolute; box-sizing:border-box!important; border-top:1px solid #B6B6B6; border-bottom:1px solid #b6b6b6 } .dhx_no_select { -webkit-touch-callout:none; -webkit-user-select:none; -khtml-user-select:none; -moz-user-select:-moz-none; -ms-user-select:none; user-select:none } .dhx_drag_placeholder { z-index:10; opacity:.8 } .dhx_drag_placeholder .dhx_cal_select_menu { display:none } .dhx_cal_data,.dhx_cal_data div,.dhx_cal_data table *,.dhx_cal_header,.dhx_cal_header div,.dhx_cal_navline div,.dhx_cal_quick_info,.dhx_cal_quick_info div,.dhx_multi_day,.dhx_multi_day div,.dhx_tooltip_line div { -webkit-box-sizing:content-box; -moz-box-sizing:content-box; box-sizing:content-box } .dhx_cal_data table { border-collapse:separate } .dhx_cal_light .dhx_cal_radio label { margin-bottom:0 } .dhx_cal_event div { line-height:normal } .dhx_cal_container { font-family:Tahoma; font-size:8pt; position:relative; overflow:hidden } .dhx_cal_container div { -moz-user-select:none; -moz-user-select:-moz-none } .dhx_cal_navline { height:20px; position:absolute; z-index:3; width:750px; color:#2F3A48 } .dhx_cal_navline div { position:absolute; white-space:nowrap } .dhx_cal_navline .dhx_cal_date { padding-top:1px } .dhx_cal_button .dhx_left_bg { width:1px; overflow:hidden; height:17px; z-index:20; top:0 } .dhx_cal_prev_button { background-image:url(imgs/buttons.png); background-position:0 0; cursor:pointer } .dhx_cal_next_button { background-image:url(imgs/buttons.png); background-position:-30px 0; cursor:pointer } .dhx_cal_today_button { background-image:url(imgs/buttons.png); background-position:-60px 0; cursor:pointer; text-align:center } .dhx_cal_tab { text-align:center; cursor:pointer; background-color:#D8E1EA; -webkit-border-top-left-radius:4px; -webkit-border-top-right-radius:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px; border-top-left-radius:4px; border-top-right-radius:4px } .dhx_cal_tab.active { text-decoration:none; cursor:default; font-weight:700 } .dhx_cal_header { position:absolute; left:10px; top:23px; width:750px; z-index:2; overflow:hidden; color:#2F3A48 } .dhx_cal_data { -webkit-tap-highlight-color:transparent; position:absolute; top:44px; width:600px; overflow-y:auto; overflow-x:hidden; -webkit-overflow-scrolling:touch; -ms-touch-action:pan-y } .dhx_cal_event,.dhx_cal_event_clear,.dhx_cal_event_line { -ms-touch-action:none } .dhx_scale_bar { position:absolute; text-align:center } .dhx_scale_holder,.dhx_scale_holder_now { position:absolute } .dhx_scale_hour { height:41px; width:50px; text-align:center; line-height:40px; overflow:hidden } .dhx_month_head { padding-right:5px; text-align:right } .dhx_month_body { background-color:#FFF } .dhx_scale_ignore { display:none } .dhx_cal_drag { position:absolute; z-index:9999; background-color:#FFE763; border:1px solid #B7A543; opacity:.5; filter:alpha(opacity=50) } .dhx_loading { position:absolute; width:128px; height:15px; background-image:url(imgs/loading.gif); z-index:9999 } .dhx_multi_day,.dhx_multi_day_icon { background-color:#E1E6FF; background-repeat:no-repeat; border-right:1px dotted #8894A3 } .dhx_multi_day { position:absolute } .dhx_multi_day_icon,.dhx_multi_day_icon_small { background-position:center center; background-repeat:no-repeat } .dhtmlxLayoutPolyContainer_dhx_skyblue .dhx_cal_container { background-color:#d0e5ff } .dhx_form_repeat,.dhx_form_repeat input { padding:0 0 0 5px; margin:0; font-family:Tahoma,Verdana; font-size:11px; line-height:24px } .dhx_form_repeat { overflow:hidden; background-color:#FFF4B5 } .dhx_cal_light_wide .dhx_form_repeat { background-color:transparent } .dhx_repeat_center,.dhx_repeat_divider,.dhx_repeat_left,.dhx_repeat_right { height:115px; -moz-box-sizing:border-box; box-sizing:border-box } .dhx_repeat_center,.dhx_repeat_left { padding:10px 0 0 10px; float:left } .dhx_repeat_left { width:105px } .dhx_repeat_center { width:345px; padding-top:22px } .dhx_repeat_divider { float:left; width:1px } .dhx_repeat_right { float:right; width:173px; padding:17px 3px 0 10px } input.dhx_repeat_text { height:16px; width:27px; margin:0 4px; line-height:18px; padding:0 0 0 2px } .dhx_form_repeat select { height:20px; width:87px; padding:0 0 0 2px; margin:0 4px } input.dhx_repeat_date { height:18px; width:80px; padding:0 0 0 2px; margin:0 4px; background-repeat:no-repeat; background-position:64px 0; border:1px solid #7f9db9; line-height:18px } input.dhx_repeat_radio { margin-right:4px } input.dhx_repeat_checkbox { margin:4px 4px 0 0 } .dhx_repeat_days td { padding-right:5px } .dhx_repeat_days label { font-size:10px } .dhx_custom_button { width:90px; -webkit-border-radius:4px; -moz-border-radius:4px; -ms-border-radius:4px; -o-border-radius:4px; border-radius:4px } .dhx_custom_button_recurring { background-position:-5px 20px; width:20px; margin-right:10px } .dhx_cal_light_rec { width:640px } .dhx_cal_light_rec .dhx_cal_larea { width:632px } .dhx_cal_light_rec.dhx_cal_light_wide { width:816px } .dhx_cal_light_rec.dhx_cal_light_wide .dhx_cal_larea { width:808px } .dhx_cal_event .dhx_title { border-width:1px 1px 0; padding-top:1px; -webkit-border-top-left-radius:4px; -webkit-border-top-right-radius:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px; border-top-left-radius:4px; border-top-right-radius:4px; font-family:arial; font-weight:700; font-size:12px; line-height:12px } .dhx_cal_event .dhx_body,.dhx_cal_event.dhx_cal_select_menu .dhx_body { padding-bottom:8px; -webkit-border-bottom-right-radius:4px; -webkit-border-bottom-left-radius:4px; -moz-border-radius-bottomright:4px; -moz-border-radius-bottomleft:4px; border-bottom-right-radius:4px; border-bottom-left-radius:4px } .dhx_cal_event .dhx_header,.dhx_cal_event.dhx_cal_select_menu .dhx_footer { display:none } .dhx_cal_event.dhx_cal_select_menu { -webkit-box-shadow:0 0 1px #FFF; -moz-box-shadow:0 0 1px #FFF; box-shadow:0 0 1px #FFF } .dhx_cal_event .dhx_footer { height:5px; border:0; margin-top:-6px; background:url(imgs_dhx_terrace/resizing.png) center center no-repeat } .dhx_cal_event .dhx_body,.dhx_cal_event .dhx_footer,.dhx_cal_event .dhx_header,.dhx_cal_event .dhx_title { background-color:#1796b0; border-color:transparent; color:#fff } .dhx_cal_event.dhx_cal_editor { border:1px solid transparent } .dhx_cal_editor { font-size:12px; font-family:Arial,sans-serif } div.dhx_menu_head,div.dhx_menu_icon { background-image:url(imgs_dhx_terrace/controls.png) } .dhx_cal_event_line { border:1px solid transparent; background-color:#1796b0; color:#fff; height:17px; line-height:17px; -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px } .dhx_cal_event_line_start { -webkit-border-top-left-radius:9px; -webkit-border-bottom-left-radius:9px; -moz-border-radius-topleft:9px; -moz-border-radius-bottomleft:9px; border-top-left-radius:9px; border-bottom-left-radius:9px } .dhx_cal_event_line_end { -webkit-border-top-right-radius:9px; -webkit-border-bottom-right-radius:9px; -moz-border-radius-topright:9px; -moz-border-radius-bottomright:9px; border-top-right-radius:9px; border-bottom-right-radius:9px } .dhx_cal_event .dhx_body,.dhx_cal_event_line { font-size:12px; font-family:Arial,sans-serif } .dhx_cal_container { background-color:#fff } .dhx_cal_data { border-top:1px solid #CECECE } .dhx_scale_holder { background-image:url(imgs_dhx_terrace/databg.png); border-right:1px solid #CECECE } .dhx_scale_holder_now { background-image:url(imgs_dhx_terrace/databg_now.png); border-right:1px solid #CECECE } .dhx_scale_hour { border-bottom:1px solid #CECECE; background-color:#fff; font:11px/44px Arial; color:#767676 } .dhx_cal_header { border:1px solid #CECECE; border-left:0; border-bottom:0 } .dhx_scale_bar { border-left:1px solid #CECECE; font:11px/16px Arial; color:#767676; padding-top:2px; background-color:#fff } .dhx_cal_navline div { top:14px } .dhx_cal_date,.dhx_cal_next_button,.dhx_cal_prev_button,.dhx_cal_tab,.dhx_cal_today_button { color:#454544; height:30px; line-height:30px; background:0 0; border:1px solid #CECECE } .dhx_cal_navline .dhx_cal_date { border:0; font-size:18px; font-weight:400; font-family:arial; width:100%; top:14px; text-align:center; position:absolute; left:0; z-index:-1 } .dhx_cal_today_button { color:#747473; left:auto; right:123px; background:0 0; text-decoration:none; width:80px; font-size:12px; font-weight:700; font-family:arial; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px } .dhx_cal_next_button,.dhx_cal_prev_button { left:auto; width:46px } .dhx_cal_prev_button { right:61px; background:url(imgs_dhx_terrace/arrow_left.png) center center no-repeat; -webkit-border-top-left-radius:5px; -webkit-border-bottom-left-radius:5px; -moz-border-radius-topleft:5px; -moz-border-radius-bottomleft:5px; border-top-left-radius:5px; border-bottom-left-radius:5px } .dhx_cal_next_button { right:14px; background:url(imgs_dhx_terrace/arrow_right.png) center center no-repeat; -webkit-border-top-right-radius:5px; -webkit-border-bottom-right-radius:5px; -moz-border-radius-topright:5px; -moz-border-radius-bottomright:5px; border-top-right-radius:5px; border-bottom-right-radius:5px } .dhx_cal_tab { color:#747473; width:60px; padding-top:0; text-decoration:none; -webkit-border-radius:0; -moz-border-radius:0; border-radius:0; font-weight:700; font-family:arial; font-size:12px } .dhx_cal_tab.active { background-color:#F0EDE7; color:#454544; border:1px solid #CECECE; text-shadow:0 1px 0 #fff } .dhx_cal_tab_first { -webkit-border-top-left-radius:5px; -webkit-border-bottom-left-radius:5px; -moz-border-radius-topleft:5px; -moz-border-radius-bottomleft:5px; border-top-left-radius:5px; border-bottom-left-radius:5px } .dhx_cal_tab_last { -webkit-border-top-right-radius:5px; -webkit-border-bottom-right-radius:5px; -moz-border-radius-topright:5px; -moz-border-radius-bottomright:5px; border-top-right-radius:5px; border-bottom-right-radius:5px } .dhx_cal_tab_standalone { -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; padding:0 5px } .dhx_multi_day,.dhx_multi_day_icon,.dhx_multi_day_icon_small { background-color:#fff } .dhx_multi_day { border-top:1px solid #CECECE } .dhx_multi_day_icon,.dhx_multi_day_icon_small { border-bottom:1px solid #CECECE; border-right:1px solid #CECECE } .dhx_multi_day_icon_small { background-image:url(imgs_dhx_terrace/clock_small.gif) } .dhx_multi_day_icon { background-image:url(imgs_dhx_terrace/clock_big.gif) } .dhx_after .dhx_month_body,.dhx_after .dhx_month_head,.dhx_before .dhx_month_body,.dhx_before .dhx_month_head,.dhx_month_head { background-color:#fff } .dhx_month_head { height:21px; padding-top:0; font:12px/21px Arial; color:#362d26; border-right:1px solid #CECECE } .dhx_after .dhx_month_head,.dhx_before .dhx_month_head { color:#bbb } .dhx_month_body { border-right:1px solid #CECECE; border-bottom:1px solid #CECECE } .dhx_now .dhx_month_body,.dhx_now .dhx_month_head { background-color:#FFF3A1; font-weight:400 } .dhx_cal_event_clear { color:#0E64A0 } .dhx_cal_larea { margin-left:0 } .dhx_cal_light_wide .dhx_cal_larea { margin-left:3px } .dhx_cal_light_wide .dhx_wrap_section { padding:5px 0 } .dhx_cal_larea,.dhx_cal_light,.dhx_cal_light_wide .dhx_wrap_section,.dhx_cal_lsection,.dhx_cal_ltext textarea,.dhx_wrap_section { background-color:#fff } .dhx_cal_light input,.dhx_cal_light_wide .dhx_cal_lsection .dhx_fullday,.dhx_cal_lsection,.dhx_cal_lsection .dhx_fullday { color:#747473 } .dhx_cal_light_wide .dhx_wrap_section { border-top:0; border-bottom:1px solid #CECECE } .dhx_cal_larea { border:1px solid transparent } .dhx_cal_light,.dhx_cal_light select,.dhx_cal_ltext textarea { color:#2E2E2E } .dhx_cal_light { border:1px solid #CECECE } .dhx_cal_light_wide .dhx_cal_lsection,.dhx_cal_light_wide .dhx_cal_lsection .dhx_fullday { font-size:13px } .dhx_section_time { background-color:transparent } .dhx_btn_set div:first-child,.dhx_cancel_btn,.dhx_delete_btn,.dhx_save_btn { display:none } .dhx_btn_set,.dhx_btn_set div { height:30px; padding:0 20px; line-height:30px } .dhx_btn_set { margin:12px 0 0; padding:0; font-size:12px; color:#454544; font-weight:700; -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px } .dhx_left_btn_set { margin-left:20px } .dhx_right_btn_set { margin-right:20px } .dhx_save_btn_set { border:1px solid #22A1BC; color:#fff; text-shadow:0 -1px 0 #6f6f6f; background-color:#22A1BC } .dhx_btn_set,.dhx_cancel_btn_set { border:1px solid #CECECE } .dhx_delete_btn_set { border:1px solid #FF8831; background-color:#FF8831; color:#fff; text-shadow:0 -1px 0 #93755f } .dhx_cal_ltitle { height:30px; line-height:30px; border-bottom:1px solid #CECECE } .dhx_cal_ltitle span { float:left } .dhx_cal_light .dhx_title { padding-left:13px } .dhx_mark { display:none } .dhx_time { padding-left:10px } .dhx_close_icon { float:right; width:9px; height:9px; background:url(imgs_dhx_terrace/close_icon.png) center center no-repeat; padding:10px; margin-top:1px } .dhx_cal_light_wide .dhx_cal_ltext.dhx_cal_template { line-height:22px } .dhx_cal_ltext textarea { line-height:20px; box-sizing:border-box; -moz-box-sizing:border-box; border:1px solid #CECECE; background-color:#F9F9F9 } .dhtmlx_modal_box { background:#fff; width:330px } .dhtmlx_popup_controls { padding-bottom:9px } .dhtmlx_popup_button,.dhtmlx_popup_button div,.dhtmlx_popup_button div:active,.dhtmlx_popup_button:active { color:#444; background:#fff; box-shadow:none } .dhtmlx_popup_button.dhtmlx_ok_button { border:1px solid #22A1BC; background-color:#22A1BC } .dhtmlx_popup_button.dhtmlx_ok_button div { background:#22A1BC; border:1px solid #22A1BC; color:#fff; text-shadow:0 -1px 0 #6f6f6f } .dhx_cal_container.dhx_mini_calendar { box-sizing:border-box; border:1px solid #CECECE; box-shadow:2px 2px 5px #CCC; border-radius:3px } .dhx_mini_calendar .dhx_year_month { border:1px solid #CECECE; font-family:Arial } .dhx_mini_calendar .dhx_month_body,.dhx_mini_calendar .dhx_month_head,.dhx_mini_calendar .dhx_scale_bar,.dhx_mini_calendar .dhx_year_body,.dhx_mini_calendar .dhx_year_month { border-color:transparent } .dhx_mini_calendar .dhx_year_body { padding-top:1px } .dhx_mini_calendar .dhx_scale_bar { border-width:0 } .dhx_mini_calendar .dhx_year_week { border-bottom:1px solid #CECECE; padding-top:1px } .dhx_mini_calendar .dhx_month_head { padding-right:0; text-align:center } .dhx_mini_calendar .dhx_cal_next_button,.dhx_mini_calendar .dhx_cal_prev_button { border:0; height:20px } .dhx_cal_navline div.dhx_minical_icon { left:210px; top:14px; width:30px; height:30px; background:url(imgs_dhx_terrace/calendar.gif) 3px 5px no-repeat } .dhx_cal_event_line .dhx_event_resize { background:url(imgs_dhx_terrace/resize_dots.png) repeat-y } .dhx_matrix_cell,.dhx_matrix_scell { border-bottom:1px solid #CECECE; border-right:1px solid #CECECE } .dhx_cal_header div div { border-left:1px solid #CECECE } .dhx_matrix_scell.folder { border-right:0 } .dhx_second_scale_bar { border-bottom:1px solid #CECECE } .dhx_repeat_divider { border-left:1px solid #CECECE } .dhx_custom_button { background-color:#fff; border:1px solid #CECECE; color:#747473 } .dhx_cal_light_wide .dhx_custom_button { margin-top:6px } .dhx_custom_button_recurring { background-image:url(imgs_dhx_terrace/but_repeat.gif) } .dhx_agenda_line div,.dhx_v_border { border-right:1px solid #CECECE } .dhx_year_month { border:1px solid #CECECE } .dhx_scale_bar_last { border-right:1px solid #CECECE } .dhx_year_body { border-left:1px solid #CECECE } .dhx_expand_icon { top:-3px } .dhx_scale_bar .dhx_cal_next_button,.dhx_scale_bar .dhx_cal_prev_button { width:20px; height:20px; top:0!important; border:0 } .dhx_scale_bar .dhx_cal_next_button { right:1px!important; border-left:1px solid #CECECE } .dhx_scale_bar .dhx_cal_prev_button { left:1px!important; border-right:1px solid #CECECE } .dhx_map_line .headline_date,.dhx_map_line .headline_description { border:0 } .dhx_map_line .headline_date { border-right:1px solid #CECECE } .dhtmlXTooltip.tooltip { border-left:1px solid #CECECE; border-top:1px solid #CECECE; color:#747473; font-size:12px; line-height:16px } .dhx_wa_scale_bar { border-top:1px solid #CECECE; border-bottom:1px solid #CECECE } .dhx_wa_column_last .dhx_wa_day_cont { border-left:1px solid #CECECE } .dhx_wa_ev_body { border-bottom:1px solid #CECECE } .dhx_wa_scale_bar { background-color:#f0ede7 } .dhx_wa_ev_body.dhx_cal_event_selected { background-color:#fff3a1; color:#362d26 } .dhx_wa_dnd { background-color:#fddb93!important; color:#747473!important; border:1px solid #ccb177 } .dhx_text_disabled { color:#2E2E2E } .dhx_cal_ltext .dhx_text_disabled { line-height:22px } .dhx_grid_v_border { border-right-color:#CECECE } .dhx_month_body_border,.dhx_month_head_border,.dhx_scale_bar_border,.dhx_scale_hour_border { border-left:1px solid #CECECE } .dhx_cal_quick_info { background:rgba(50,50,50,.5) } .dhx_qi_big_icon { background:#1796b0; color:#fff } .dhx_cal_navline .dhx_cal_export { width:32px; height:32px; margin:2px; cursor:pointer; top:12px } .dhx_cal_navline .dhx_cal_export.pdf { left:auto; right:249px; background-image:url(imgs_dhx_terrace/export_pdf.png) } .dhx_cal_navline .dhx_cal_export.ical { left:auto; right:210px; background-image:url(imgs_dhx_terrace/export_ical.png) } .dhx_mini_calendar { padding:5px } .dhx_mini_calendar .dhx_calendar_click,.dhx_mini_calendar .dhx_year_event { border-radius:7px } .dhx_mini_calendar .dhx_month_head { margin:2px } .dhx_mini_calendar .dhx_year_month { line-height:20px; height:25px; font-size:14px } .dhx_mini_calendar .dhx_cal_next_button,.dhx_mini_calendar .dhx_cal_prev_button { top:8px!important }
brms/static/dhtmlxscheduler/dhtmlxscheduler.css
.dhtmlx_message_area { position:fixed; right:5px; width:250px; z-index:1000 } .dhtmlx-info { min-width:120px; font-family:Tahoma; z-index:10000; overflow:hidden; margin:5px 5px 10px; -webkit-transition:all .5s ease; -moz-transition:all .5s ease; -o-transition:all .5s ease; transition:all .5s ease } .dhtmlx-info.hidden { height:0; padding:0; border-width:0; margin:0; overflow:hidden } .dhtmlx_modal_box { overflow:hidden; display:inline-block; min-width:300px; text-align:center; position:fixed; box-shadow:0 0 14px #888; font-family:Tahoma; z-index:20000; border-radius:6px; border:1px solid #fff } .dhtmlx_popup_title { border-top-left-radius:5px; border-top-right-radius:5px; border-width:0; background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAoCAMAAAAIaGBFAAAAhFBMVEVwcHBubm5sbGxqampoaGhmZmZlZWVjY2NhYWFfX19dXV1bW1taWlpYWFhWVlZUVFRSUlJRUVFPT09NTU1LS0tJSUlHR0dGRkZERERCQkJAQEA+Pj49PT09PT0+Pj5AQEBBQUFDQ0NERERGRkZHR0dJSUlKSkpMTExMTEw5OTk5OTk5OTkny8YEAAAAQklEQVQImQXBCRJCAAAAwKVSQqdyjSPXNP7/QLsIhA6OTiJnF7GrRCpzc/fw9PKW+/gqlCq1RqvTG/yMJrPF6m/bAVEhAxxnHG0oAAAAAElFTkSuQmCC); background:-webkit-linear-gradient(top,#707070 1%,#3d3d3d 70%,#4c4c4c 97%,#393939 97%); background:-moz-linear-gradient(top,#707070 1%,#3d3d3d 70%,#4c4c4c 97%,#393939 97%) } .dhtmlx-info,.dhtmlx_button,.dhtmlx_popup_button { user-select:none; -webkit-user-select:none; -moz-user-select:-moz-none; cursor:pointer } .dhtmlx_popup_text { overflow:hidden } .dhtmlx_popup_controls { border-radius:6px; padding:5px } .dhtmlx_button,.dhtmlx_popup_button { height:30px; line-height:30px; display:inline-block; margin:0 5px; border-radius:6px; color:#FFF } .dhtmlx_popup_button { min-width:120px } div.dhx_modal_cover { background-color:#000; cursor:default; filter:alpha(opacity=20); opacity:.2; position:fixed; z-index:19999; left:0; top:0; width:100%; height:100%; border:none; zoom:1 } .dhtmlx-info img,.dhtmlx_modal_box img { float:left; margin-right:20px } .dhtmlx-alert-error .dhtmlx_popup_title,.dhtmlx-confirm-error .dhtmlx_popup_title { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAsCAIAAAArRUU2AAAATklEQVR4nIWLuw2AMBBDjVuQiBT2oWbRDATrnB0KQOJoqPzRe3BrHI6dcBASYREKovtK6/6DsDOX+stN+3H1YX9ciRgnYq5EWYhS2dftBIuLT4JyIrPCAAAAAElFTkSuQmCC) } .dhtmlx-alert-error,.dhtmlx-confirm-error { border:1px solid red } .dhtmlx_button,.dhtmlx_popup_button { box-shadow:0 0 4px #888; border:1px solid #838383 } .dhtmlx_button input,.dhtmlx_popup_button div { /*border:1px solid #FFF;*/ background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAMAAADaS4T1AAAAYFBMVEVwcHBtbW1ra2toaGhmZmZjY2NhYWFeXl5cXFxaWlpXV1dVVVVSUlJQUFBNTU1LS0tJSUlGRkZERERBQUE/Pz88PDw9PT0+Pj5AQEBCQkJDQ0NFRUVHR0dISEhKSkpMTEzqthaMAAAAMklEQVQImQXBhQ2AMAAAsOIMlwWH/8+kRSKVyRVKlVrQaHV6g9FktlhFm93hdLk9Xt8PIfgBvdUqyskAAAAASUVORK5CYII=); background:-webkit-linear-gradient(top,#707070 1%,#3d3d3d 70%,#4c4c4c 99%); background:-moz-linear-gradient(top,#707070 1%,#3d3d3d 70%,#4c4c4c 99%); border-radius:6px; font-size:15px; font-weight:400; -moz-box-sizing:content-box; box-sizing:content-box; color:#fff; padding:0; margin:0; vertical-align:top; height:28px; line-height:28px } .dhtmlx_button input:active,.dhtmlx_button input:focus,.dhtmlx_popup_button div:active,.dhtmlx_popup_button div:focus { background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAMAAADaS4T1AAAAXVBMVEVwcHBubm5tbW1sbGxra2tpaWloaGhnZ2dmZmZlZWVjY2NiYmJhYWFgYGBfX19dXV1cXFxbW1taWlpZWVlXV1dWVlZVVVVUVFRTU1NRUVFQUFBPT09OTk5NTU1LS0tT9SY0AAAAMUlEQVQImQXBhQGAMAAAIGxnx2z9/00BiVQmVyhVakGj1ekNRpPZYhVtdofT5fZ4fT8hpwG05JjexgAAAABJRU5ErkJggg==); background:-webkit-linear-gradient(top,#707070 1%,#4c4c4c 99%); background:-moz-linear-gradient(top,#707070 1%,#4c4c4c 99%) } .dhtmlx_popup_title { color:#fff; text-shadow:1px 1px #000; height:40px; line-height:40px; font-size:20px } .dhtmlx_popup_text { margin:15px 15px 5px; font-size:14px; color:#000; min-height:30px; border-radius:6px } .dhtmlx-error,.dhtmlx-info { font-size:14px; color:#000; box-shadow:0 0 10px #888; padding:0; background-color:#FFF; border-radius:3px; border:1px solid #fff } .dhtmlx-info div { padding:5px 10px; background-color:#fff; border-radius:3px; border:1px solid #B8B8B8 } .dhtmlx-error { background-color:#d81b1b; border:1px solid #ff3c3c; box-shadow:0 0 10px #000 } .dhtmlx-error div { background-color:#d81b1b; border:1px solid #940000; color:#FFF } .dhx_cal_event .dhx_body,.dhx_cal_event .dhx_footer,.dhx_cal_event .dhx_header,.dhx_cal_event .dhx_title { border:1px solid #B7A543; overflow:hidden; width:100%; font-family:Tahoma; font-size:8pt } .dhx_move_denied .dhx_cal_event .dhx_header,.dhx_move_denied .dhx_cal_event .dhx_title { cursor:default } .dhx_cal_event .dhx_header { height:1px; margin-left:1px; border-width:1px 1px 0; cursor:pointer } .dhx_cal_event .dhx_title { height:12px; border-bottom-style:dotted; text-align:center; background-position:right; background-repeat:no-repeat; cursor:pointer } .dhx_cal_event .dhx_body,.dhx_cal_event.dhx_cal_select_menu .dhx_body { border-width:0 1px 1px; padding:5px } .dhx_resize_denied,.dhx_resize_denied .dhx_event_resize { cursor:default!important } .dhx_cal_event .dhx_event_resize { cursor:s-resize } .dhx_cal_event .dhx_footer,.dhx_cal_event .dhx_select_menu_footer { height:1px; margin-left:2px; border-width:0 1px 1px; position:relative } .dhx_cal_event_line { padding-left:10px; cursor:pointer; overflow:hidden } .dhx_cal_event_clear { font-family:Tahoma; font-size:8pt; height:13px; padding-left:2px; white-space:nowrap; overflow:hidden; cursor:pointer } .dhx_in_move { background-color:#FFFF80 } .dhx_cal_event.dhx_cal_editor { z-index:999; position:absolute; overflow:hidden } textarea.dhx_cal_editor { width:100%; height:100%; border:0 solid #000; margin:0; padding:0; overflow:auto } div.dhx_menu_head { background-position:0 -43px; width:10px; height:10px; margin-left:5px; margin-top:1px; border:none; cursor:default } div.dhx_menu_icon { width:20px; height:20px; margin-left:-5px; margin-top:0; border:none; cursor:pointer } div.icon_details { background-position:0 0 } div.icon_edit { background-position:-22px 0 } div.icon_save { background-position:-84px -1px } div.icon_cancel { background-position:-62px 0 } div.icon_delete { background-position:-42px 0 } .dhx_month_link { position:absolute; box-sizing:border-box; -moz-box-sizing:border-box; text-align:right; cursor:pointer; padding-right:10px } .dhx_month_link a { color:#00f } .dhx_month_link a:hover { text-decoration:underline } .dhx_global_tip { font-family:Tahoma,Helvetica; text-align:center; font-size:20px; position:fixed; top:60px; right:20px; background-color:rgba(255,255,255,.7); color:#000; z-index:10000; padding:20px 30px; width:190px } .dhx_global_tip div { font-size:30px } @media (-moz-touch-enabled) { .dhx_cal_container { user-select:none; -moz-user-select:none } }.dhx_unselectable,.dhx_unselectable div { -webkit-user-select:none; -moz-user-select:none; -moz-user-select:-moz-none } .dhx_cal_light { -webkit-tap-highlight-color:transparent; border-radius:5px; font-family:Tahoma; font-size:8pt; position:absolute; z-index:10001; width:580px; height:300px; box-shadow:5px 5px 5px #888 } .dhx_mark { position:relative; top:3px; background-image:url(imgs/controls.gif); background-position:0 -43px; padding-left:10px } .dhx_ie6 .dhx_mark { background-position:6px -41px } .dhx_cal_light select { font-family:Tahoma; font-size:8pt; padding:2px; margin:0 } .dhx_cal_ltitle { padding:2px 0 2px 5px; overflow:hidden; white-space:nowrap } .dhx_cal_ltitle span { white-space:nowrap } .dhx_cal_lsection { font-weight:700; padding:5px 0 3px 10px } .dhx_section_time { white-space:nowrap } .dhx_cal_lsection .dhx_fullday { float:right; margin-right:5px; font-size:12px; font-weight:400; line-height:20px; vertical-align:top; cursor:pointer } .dhx_cal_lsection { font-size:18px; font-family:Arial } .dhx_cal_ltext { padding:2px 0 2px 10px; overflow:hidden } .dhx_cal_ltext textarea { overflow:auto; height:100%; width:100%; outline:0!important; resize:none } .dhx_time { font-weight:700 } .dhx_cal_larea { overflow:hidden; width:572px; height:1px } .dhx_btn_set { float:left } .dhx_btn_set div { float:left; vertical-align:middle; cursor:pointer } .dhx_save_btn { background-image:url(imgs/controls.gif); background-position:-84px 0; width:21px } .dhx_cancel_btn { background-image:url(imgs/controls.gif); background-position:-63px 0; width:20px } .dhx_delete_btn { background-image:url(imgs/controls.gif); background-position:-42px 0; width:20px } .dhx_cal_cover { width:100%; height:100%; position:absolute; z-index:10000; top:0; left:0; background-color:#000; opacity:.1; filter:alpha(opacity=10) } .dhx_custom_button { padding:0 3px; font-family:Tahoma; font-size:8pt; font-weight:400; margin-right:5px; margin-top:0; cursor:pointer } .dhx_custom_button div { cursor:pointer; float:left; height:21px; line-height:21px; vertical-align:middle } .dhx_cal_light_wide .dhx_cal_larea { border-top-width:0 } .dhx_cal_light_wide .dhx_cal_lsection { border:0; float:left; text-align:right; width:100px; height:20px; padding:5px 0 0 10px } .dhx_cal_light_wide .dhx_wrap_section { position:relative; overflow:hidden } .dhx_cal_light_wide .dhx_section_time { padding-top:2px!important; height:20px!important } .dhx_section_time { text-align:center } .dhx_cal_light_wide .dhx_cal_larea { width:730px } .dhx_cal_light_wide { width:738px } .dhx_cal_light_wide .dhx_section_time { background:0 0 } .dhx_cal_light_wide .dhx_cal_checkbox label { padding-left:0 } .dhx_cal_wide_checkbox input { margin-top:8px; margin-left:14px } .dhx_cal_light input { font-family:Tahoma; font-size:8pt } .dhx_cal_light_wide .dhx_cal_lsection .dhx_fullday { float:none; margin-right:0; font-weight:700; font-family:Arial; cursor:pointer } .dhx_custom_button { float:right; height:21px } .dhx_cal_light_wide .dhx_custom_button { position:absolute; top:0; right:0 } .dhx_cal_light_wide .dhx_repeat_right { margin-right:55px } .dhx_minical_popup { position:absolute; z-index:10100; width:251px; height:175px } .dhx_scale_bar_header { position:absolute; border-bottom:1px dotted #8894A3; width:100% } .dhx_expand_icon { position:absolute; right:0; background-image:url(imgs/collapse_expand_icon.gif); width:18px; height:18px; cursor:pointer; background-position:0 18px; z-index:16 } .dhx_scheduler_agenda .dhx_cal_data { background-image:url(imgs/databg.png) } .dhx_agenda_area { width:100%; overflow-y:auto; background-image:url(imgs/databg.png) } .dhx_agenda_line { height:21px; clear:both; overflow:hidden } .dhx_agenda_line div { float:left; width:188px; text-align:center; line-height:21px; overflow:hidden } .dhx_agenda_area .dhx_agenda_line div { border-right:0 dotted #8894A3 } .dhx_v_border { position:absolute; left:187px; top:0; width:1px; height:100% } .dhx_agenda_line .dhx_event_icon { width:20px; border-width:0; background:url(imgs/icon.png) 5px 4px no-repeat; cursor:pointer } .dhx_agenda_line span { padding-left:5px; line-height:21px } .dhx_year_week { position:relative } .dhx_year_month { height:18px; padding-top:3px; text-align:center; vertical-align:middle } .dhx_year_body .dhx_after .dhx_month_head,.dhx_year_body .dhx_after .dhx_month_head a,.dhx_year_body .dhx_before .dhx_month_head,.dhx_year_body .dhx_before .dhx_month_head a { color:#E2E3E6!important } .dhx_year_body .dhx_month_body { height:0; overflow:hidden } .dhx_month_head.dhx_year_event { background-color:#FFE763 } .dhx_year_body .dhx_after .dhx_month_head,.dhx_year_body .dhx_before .dhx_month_head { cursor:default } .dhx_year_tooltip { border:1px solid #BBB; background-image:url(imgs/databg.png); position:absolute; z-index:9998; width:300px; height:auto; font-family:Tahoma; font-size:8pt; overflow:hidden } .dhx_tooltip_line { line-height:20px; height:20px; overflow:hidden } .dhx_tooltip_line .dhx_event_icon { width:20px; height:20px; padding-right:10px; float:left; border-width:0; position:relative; background:url(imgs/icon.png) 5px 4px no-repeat; cursor:pointer } .dhx_tooltip_date { float:left; width:auto; padding-left:5px; text-align:center } .dhx_text_disabled { font-family:Tahoma; font-size:8pt } .dhx_mini_calendar { -moz-box-shadow:5px 5px 5px #888; -khtml-box-shadow:5px 5px 5px #888; -moz-user-select:-moz-none; -webkit-user-select:none; -user-select:none } .dhx_mini_calendar .dhx_month_head { cursor:pointer } .dhx_mini_calendar .dhx_calendar_click { background-color:#C2D5FC } .dhx_cal_navline div.dhx_minical_icon { cursor:pointer; background-image:url(imgs/calendar.gif) } .dhx_matrix_scell { height:100% } .dhx_matrix_cell,.dhx_matrix_scell { overflow:hidden; text-align:center; vertical-align:middle } .dhx_matrix_cell { background-color:#fff } .dhx_matrix_line { overflow:hidden } .dhx_matrix_cell div,.dhx_matrix_scell div { overflow:hidden; text-align:center; height:auto } .dhx_cal_lsection .dhx_readonly { font-size:9pt; font-size:8pt; padding:2px; color:#887A2E } .dhx_cal_event_line .dhx_event_resize { cursor:w-resize; position:absolute; top:0; width:4px; height:100% } .dhx_event_resize_start { left:0 } .dhx_event_resize_end { right:0 } .dhx_data_table.folder .dhx_matrix_cell,.dhx_matrix_scell.folder { background-color:#969394; cursor:pointer } .dhx_matrix_scell .dhx_scell_level0 { padding-left:5px } .dhx_matrix_scell .dhx_scell_level1 { padding-left:20px } .dhx_matrix_scell .dhx_scell_level2 { padding-left:35px } .dhx_matrix_scell .dhx_scell_level3 { padding-left:50px } .dhx_matrix_scell .dhx_scell_level4 { padding-left:65px } .dhx_matrix_scell.folder { font-weight:700; text-align:left } .dhx_matrix_scell.folder .dhx_scell_expand { float:left; width:10px; padding-right:3px } .dhx_matrix_scell.folder .dhx_scell_name { float:left; width:auto } .dhx_matrix_scell.item .dhx_scell_name { padding-left:15px; text-align:left } .dhx_data_table.folder .dhx_matrix_cell { border-right:0 } .dhx_section_timeline { overflow:hidden; padding:4px 0 2px 10px } .dhx_section_timeline select { width:552px } .dhx_map_area { width:100%; height:100%; overflow-y:auto; overflow-x:hidden; background-image:url(imgs/databg.png) } .dhx_map_line .dhx_event_icon { width:20px; border-width:0; background:url(imgs/icon.png) 5px 4px no-repeat; cursor:pointer } .dhx_map_line { height:21px; clear:both; overflow:hidden } .dhx_map { position:absolute } .dhx_map_line .headline_description,.dhx_map_line div { float:left; border-right:1px dotted #8894A3; text-align:center; line-height:21px; overflow:hidden } .dhx_map_line .dhx_map_description { float:left; border-right:0 dotted #8894A3; text-align:center; line-height:21px; overflow:hidden } .dhx_map_line .line_description { float:left; border-right:1px dotted #8894A3; text-align:left; padding-left:5px; line-height:21px; overflow:hidden } .dhx_map_line.highlight { background-color:#C4C5CC } .dhx_map_area .dhx_map_line div { border-right:0 dotted #8894A3 } .dhtmlXTooltip.tooltip { -moz-box-shadow:3px 3px 3px #888; -webkit-box-shadow:3px 3px 3px #888; -o-box-shadow:3px 3px 3px #888; box-shadow:3px 3px 3px #888; filter:progid:DXImageTransform.Microsoft.Shadow(color='#888888',Direction=135,Strength=5); background-color:#fff; cursor:default; padding:10px; position:absolute; z-index:500; font-family:Tahoma; opacity:1 } .dhx_cal_checkbox label { padding-left:5px } .dhx_cal_light .radio { padding:2px 0 2px 10px } .dhx_cal_light .radio input,.dhx_cal_light .radio label { line-height:15px } .dhx_cal_light .radio input { vertical-align:middle; margin:0; padding:0 } .dhx_cal_light .radio label { vertical-align:middle; padding-right:10px } .dhx_cal_light .combo { padding:4px } .dhx_cal_light_wide .dhx_combo_box { width:608px!important; left:10px } .dhx_wa_column { float:left } .dhx_wa_scale_bar { font-family:Tahoma; padding-left:10px; font-size:11px } .dhx_wa_day_data { background-color:#FCFEFC; overflow-y:auto } .dhx_wa_ev_body { font-size:12px; padding:5px 0 5px 7px } .dhx_wa_dnd { font-family:Tahoma; position:absolute; padding-right:7px; color:#887AE2!important; background-color:#FFE763!important } .dhx_cal_event_selected { background-color:#9cc1db; color:#fff } .dhx_second_scale_bar { padding-top:2px } .dhx_grid_area { width:100%; height:100%; overflow-y:auto; background-color:#FCFEFC } .dhx_grid_area table { border-collapse:collapse; border-spacing:0; width:100%; table-layout:fixed } .dhx_grid_area td { table-layout:fixed; text-align:center } .dhx_grid_line { height:21px; clear:both; overflow:hidden } .dhx_grid_line div { float:left; cursor:default; padding-top:0; padding-bottom:0; text-align:center; line-height:21px; overflow:hidden } .dhx_grid_area td,.dhx_grid_line div { padding-left:8px; padding-right:8px } .dhx_grid_area tr.dhx_grid_event { height:21px; overflow:hidden; margin:0 0 1px } .dhx_grid_area tr.dhx_grid_event td { border-bottom:1px solid #ECEEF4 } .dhx_grid_area tr.dhx_grid_event:nth-child(2n) td,.dhx_grid_area tr.dhx_grid_event:nth-child(2n+1) td { border-bottom-width:0; border-bottom-style:none } .dhx_grid_area tr.dhx_grid_event:nth-child(2n) { background-color:#ECEEF4 } .dhx_grid_area .dhx_grid_dummy { table-layout:auto; margin:0!important; padding:0!important } .dhx_grid_v_border { position:absolute; border-right:1px solid #A4BED4; width:1px; height:100% } .dhx_grid_event_selected { background-color:#9cc1db!important; color:#fff!important } .dhx_grid_sort_desc .dhx_grid_view_sort { background-position:0 -55px } .dhx_grid_sort_asc .dhx_grid_view_sort { background-position:0 -66px } .dhx_grid_view_sort { width:10px; height:10px; position:absolute; border:none!important; top:5px; background-repeat:no-repeat; background-image:url(imgs/images.png) } .dhx_marked_timespan { position:absolute; width:100%; margin-left:0 } .dhx_time_block { position:absolute; width:100%; background:silver; opacity:.4; filter:alpha(opacity=40); z-index:1 } .dhx_time_block_reset { opacity:1; filter:alpha(opacity=100) } .dhx_mini_calendar .dhx_marked_timespan,.dhx_scheduler_month .dhx_marked_timespan { display:none } .dhx_now_time { width:100%; border-bottom:2px solid red; z-index:1 } .dhx_scheduler_month .dhx_now_time { border-bottom:0; border-left:2px solid red } .dhx_matrix_now_time { border-left:2px solid red; z-index:1 } .dhx_matrix_now_time,.dhx_now_time { opacity:.5 } .dhx_cal_quick_info { border:2px solid #888; border-radius:5px; position:absolute; z-index:300; background-color:#8e99ae; background-color:rgba(98,107,127,.5); padding-left:7px; width:300px; transition:left .5s ease,right .5s; -moz-transition:left .5s ease,right .5s; -webkit-transition:left .5s ease,right .5s; -o-transition:left .5s ease,right .5s } .dhx_no_animate { transition:none; -moz-transition:none; -webkit-transition:none; -o-transition:none } .dhx_cal_quick_info.dhx_qi_left .dhx_qi_big_icon { float:right } .dhx_cal_qi_title { padding:5px 0 10px 5px; color:#FFF; letter-spacing:1px } .dhx_cal_qi_tdate { font-size:14px } .dhx_cal_qi_tcontent { font-size:18px; font-weight:700 } .dhx_cal_qi_content { border:1px solid #888; background-color:#fefefe; padding:16px 8px; font-size:14px; color:#444; width:275px; overflow:hidden } .dhx_qi_big_icon { border-radius:3px; margin:5px 9px 5px 0; min-width:60px; line-height:20px; vertical-align:middle; padding:5px 10px 5px 5px; cursor:pointer; background-color:#fefefe; border-bottom:1px solid #666; border-right:1px solid #666; float:left } .dhx_cal_qi_controls div { float:left; height:20px; text-align:center; line-height:20px } .dhx_qi_big_icon .dhx_menu_icon { margin:0 8px 0 0 } .dhx_drag_marker { width:100%; filter:alpha(Opacity=50); opacity:.5; background-color:#FFE763; position:absolute; box-sizing:border-box!important; border-top:1px solid #B6B6B6; border-bottom:1px solid #b6b6b6 } .dhx_no_select { -webkit-touch-callout:none; -webkit-user-select:none; -khtml-user-select:none; -moz-user-select:-moz-none; -ms-user-select:none; user-select:none } .dhx_drag_placeholder { z-index:10; opacity:.8 } .dhx_drag_placeholder .dhx_cal_select_menu { display:none } .dhx_cal_data,.dhx_cal_data div,.dhx_cal_data table *,.dhx_cal_header,.dhx_cal_header div,.dhx_cal_navline div,.dhx_cal_quick_info,.dhx_cal_quick_info div,.dhx_multi_day,.dhx_multi_day div,.dhx_tooltip_line div { -webkit-box-sizing:content-box; -moz-box-sizing:content-box; box-sizing:content-box } .dhx_cal_data table { border-collapse:separate } .dhx_cal_light .dhx_cal_radio label { margin-bottom:0 } .dhx_cal_event div { line-height:normal } .dhx_cal_container { font-family:Tahoma; font-size:8pt; position:relative; overflow:hidden } .dhx_cal_container div { -moz-user-select:none; -moz-user-select:-moz-none } .dhx_cal_navline { height:20px; position:absolute; z-index:3; width:750px; color:#2F3A48 } .dhx_cal_navline div { position:absolute; white-space:nowrap } .dhx_cal_navline .dhx_cal_date { padding-top:1px } .dhx_cal_button .dhx_left_bg { width:1px; overflow:hidden; height:17px; z-index:20; top:0 } .dhx_cal_prev_button { background-image:url(imgs/buttons.png); background-position:0 0; cursor:pointer } .dhx_cal_next_button { background-image:url(imgs/buttons.png); background-position:-30px 0; cursor:pointer } .dhx_cal_today_button { background-image:url(imgs/buttons.png); background-position:-60px 0; cursor:pointer; text-align:center } .dhx_cal_tab { text-align:center; cursor:pointer; background-color:#D8E1EA; -webkit-border-top-left-radius:4px; -webkit-border-top-right-radius:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px; border-top-left-radius:4px; border-top-right-radius:4px } .dhx_cal_tab.active { text-decoration:none; cursor:default; font-weight:700 } .dhx_cal_header { position:absolute; left:10px; top:23px; width:750px; z-index:2; overflow:hidden; color:#2F3A48 } .dhx_cal_data { -webkit-tap-highlight-color:transparent; position:absolute; top:44px; width:600px; overflow-y:auto; overflow-x:hidden; -webkit-overflow-scrolling:touch; -ms-touch-action:pan-y } .dhx_cal_event,.dhx_cal_event_clear,.dhx_cal_event_line { -ms-touch-action:none } .dhx_scale_bar { position:absolute; text-align:center } .dhx_scale_holder,.dhx_scale_holder_now { position:absolute } .dhx_scale_hour { height:41px; width:50px; text-align:center; line-height:40px; overflow:hidden } .dhx_month_head { padding-right:5px; text-align:right } .dhx_month_body { background-color:#FFF } .dhx_scale_ignore { display:none } .dhx_cal_drag { position:absolute; z-index:9999; background-color:#FFE763; border:1px solid #B7A543; opacity:.5; filter:alpha(opacity=50) } .dhx_loading { position:absolute; width:128px; height:15px; background-image:url(imgs/loading.gif); z-index:9999 } .dhx_multi_day,.dhx_multi_day_icon { background-color:#E1E6FF; background-repeat:no-repeat; border-right:1px dotted #8894A3 } .dhx_multi_day { position:absolute } .dhx_multi_day_icon,.dhx_multi_day_icon_small { background-position:center center; background-repeat:no-repeat } .dhtmlxLayoutPolyContainer_dhx_skyblue .dhx_cal_container { background-color:#d0e5ff } .dhx_form_repeat,.dhx_form_repeat input { padding:0 0 0 5px; margin:0; font-family:Tahoma,Verdana; font-size:11px; line-height:24px } .dhx_form_repeat { overflow:hidden; background-color:#FFF4B5 } .dhx_cal_light_wide .dhx_form_repeat { background-color:transparent } .dhx_repeat_center,.dhx_repeat_divider,.dhx_repeat_left,.dhx_repeat_right { height:115px; -moz-box-sizing:border-box; box-sizing:border-box } .dhx_repeat_center,.dhx_repeat_left { padding:10px 0 0 10px; float:left } .dhx_repeat_left { width:105px } .dhx_repeat_center { width:345px; padding-top:22px } .dhx_repeat_divider { float:left; width:1px } .dhx_repeat_right { float:right; width:173px; padding:17px 3px 0 10px } input.dhx_repeat_text { height:16px; width:27px; margin:0 4px; line-height:18px; padding:0 0 0 2px } .dhx_form_repeat select { height:20px; width:87px; padding:0 0 0 2px; margin:0 4px } input.dhx_repeat_date { height:18px; width:80px; padding:0 0 0 2px; margin:0 4px; background-repeat:no-repeat; background-position:64px 0; border:1px solid #7f9db9; line-height:18px } input.dhx_repeat_radio { margin-right:4px } input.dhx_repeat_checkbox { margin:4px 4px 0 0 } .dhx_repeat_days td { padding-right:5px } .dhx_repeat_days label { font-size:10px } .dhx_custom_button { width:90px; -webkit-border-radius:4px; -moz-border-radius:4px; -ms-border-radius:4px; -o-border-radius:4px; border-radius:4px } .dhx_custom_button_recurring { background-position:-5px 20px; width:20px; margin-right:10px } .dhx_cal_light_rec { width:640px } .dhx_cal_light_rec .dhx_cal_larea { width:632px } .dhx_cal_light_rec.dhx_cal_light_wide { width:816px } .dhx_cal_light_rec.dhx_cal_light_wide .dhx_cal_larea { width:808px } .dhx_cal_event .dhx_title { border-width:1px 1px 0; padding-top:1px; -webkit-border-top-left-radius:4px; -webkit-border-top-right-radius:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px; border-top-left-radius:4px; border-top-right-radius:4px; font-family:arial; font-weight:700; font-size:12px; line-height:12px } .dhx_cal_event .dhx_body,.dhx_cal_event.dhx_cal_select_menu .dhx_body { padding-bottom:8px; -webkit-border-bottom-right-radius:4px; -webkit-border-bottom-left-radius:4px; -moz-border-radius-bottomright:4px; -moz-border-radius-bottomleft:4px; border-bottom-right-radius:4px; border-bottom-left-radius:4px } .dhx_cal_event .dhx_header,.dhx_cal_event.dhx_cal_select_menu .dhx_footer { display:none } .dhx_cal_event.dhx_cal_select_menu { -webkit-box-shadow:0 0 1px #FFF; -moz-box-shadow:0 0 1px #FFF; box-shadow:0 0 1px #FFF } .dhx_cal_event .dhx_footer { height:5px; border:0; margin-top:-6px; background:url(imgs_dhx_terrace/resizing.png) center center no-repeat } .dhx_cal_event .dhx_body,.dhx_cal_event .dhx_footer,.dhx_cal_event .dhx_header,.dhx_cal_event .dhx_title { background-color:#1796b0; border-color:transparent; color:#fff } .dhx_cal_event.dhx_cal_editor { border:1px solid transparent } .dhx_cal_editor { font-size:12px; font-family:Arial,sans-serif } div.dhx_menu_head,div.dhx_menu_icon { background-image:url(imgs_dhx_terrace/controls.png) } .dhx_cal_event_line { border:1px solid transparent; background-color:#1796b0; color:#fff; height:17px; line-height:17px; -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px } .dhx_cal_event_line_start { -webkit-border-top-left-radius:9px; -webkit-border-bottom-left-radius:9px; -moz-border-radius-topleft:9px; -moz-border-radius-bottomleft:9px; border-top-left-radius:9px; border-bottom-left-radius:9px } .dhx_cal_event_line_end { -webkit-border-top-right-radius:9px; -webkit-border-bottom-right-radius:9px; -moz-border-radius-topright:9px; -moz-border-radius-bottomright:9px; border-top-right-radius:9px; border-bottom-right-radius:9px } .dhx_cal_event .dhx_body,.dhx_cal_event_line { font-size:12px; font-family:Arial,sans-serif } .dhx_cal_container { background-color:#fff } .dhx_cal_data { border-top:1px solid #CECECE } .dhx_scale_holder { background-image:url(imgs_dhx_terrace/databg.png); border-right:1px solid #CECECE } .dhx_scale_holder_now { background-image:url(imgs_dhx_terrace/databg_now.png); border-right:1px solid #CECECE } .dhx_scale_hour { border-bottom:1px solid #CECECE; background-color:#fff; font:11px/44px Arial; color:#767676 } .dhx_cal_header { border:1px solid #CECECE; border-left:0; border-bottom:0 } .dhx_scale_bar { border-left:1px solid #CECECE; font:11px/16px Arial; color:#767676; padding-top:2px; background-color:#fff } .dhx_cal_navline div { top:14px } .dhx_cal_date,.dhx_cal_next_button,.dhx_cal_prev_button,.dhx_cal_tab,.dhx_cal_today_button { color:#454544; height:30px; line-height:30px; background:0 0; border:1px solid #CECECE } .dhx_cal_navline .dhx_cal_date { border:0; font-size:18px; font-weight:400; font-family:arial; width:100%; top:14px; text-align:center; position:absolute; left:0; z-index:-1 } .dhx_cal_today_button { color:#747473; left:auto; right:123px; background:0 0; text-decoration:none; width:80px; font-size:12px; font-weight:700; font-family:arial; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px } .dhx_cal_next_button,.dhx_cal_prev_button { left:auto; width:46px } .dhx_cal_prev_button { right:61px; background:url(imgs_dhx_terrace/arrow_left.png) center center no-repeat; -webkit-border-top-left-radius:5px; -webkit-border-bottom-left-radius:5px; -moz-border-radius-topleft:5px; -moz-border-radius-bottomleft:5px; border-top-left-radius:5px; border-bottom-left-radius:5px } .dhx_cal_next_button { right:14px; background:url(imgs_dhx_terrace/arrow_right.png) center center no-repeat; -webkit-border-top-right-radius:5px; -webkit-border-bottom-right-radius:5px; -moz-border-radius-topright:5px; -moz-border-radius-bottomright:5px; border-top-right-radius:5px; border-bottom-right-radius:5px } .dhx_cal_tab { color:#747473; width:60px; padding-top:0; text-decoration:none; -webkit-border-radius:0; -moz-border-radius:0; border-radius:0; font-weight:700; font-family:arial; font-size:12px } .dhx_cal_tab.active { background-color:#F0EDE7; color:#454544; border:1px solid #CECECE; text-shadow:0 1px 0 #fff } .dhx_cal_tab_first { -webkit-border-top-left-radius:5px; -webkit-border-bottom-left-radius:5px; -moz-border-radius-topleft:5px; -moz-border-radius-bottomleft:5px; border-top-left-radius:5px; border-bottom-left-radius:5px } .dhx_cal_tab_last { -webkit-border-top-right-radius:5px; -webkit-border-bottom-right-radius:5px; -moz-border-radius-topright:5px; -moz-border-radius-bottomright:5px; border-top-right-radius:5px; border-bottom-right-radius:5px } .dhx_cal_tab_standalone { -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; padding:0 5px } .dhx_multi_day,.dhx_multi_day_icon,.dhx_multi_day_icon_small { background-color:#fff } .dhx_multi_day { border-top:1px solid #CECECE } .dhx_multi_day_icon,.dhx_multi_day_icon_small { border-bottom:1px solid #CECECE; border-right:1px solid #CECECE } .dhx_multi_day_icon_small { background-image:url(imgs_dhx_terrace/clock_small.gif) } .dhx_multi_day_icon { background-image:url(imgs_dhx_terrace/clock_big.gif) } .dhx_after .dhx_month_body,.dhx_after .dhx_month_head,.dhx_before .dhx_month_body,.dhx_before .dhx_month_head,.dhx_month_head { background-color:#fff } .dhx_month_head { height:21px; padding-top:0; font:12px/21px Arial; color:#362d26; border-right:1px solid #CECECE } .dhx_after .dhx_month_head,.dhx_before .dhx_month_head { color:#bbb } .dhx_month_body { border-right:1px solid #CECECE; border-bottom:1px solid #CECECE } .dhx_now .dhx_month_body,.dhx_now .dhx_month_head { background-color:#FFF3A1; font-weight:400 } .dhx_cal_event_clear { color:#0E64A0 } .dhx_cal_larea { margin-left:0 } .dhx_cal_light_wide .dhx_cal_larea { margin-left:3px } .dhx_cal_light_wide .dhx_wrap_section { padding:5px 0 } .dhx_cal_larea,.dhx_cal_light,.dhx_cal_light_wide .dhx_wrap_section,.dhx_cal_lsection,.dhx_cal_ltext textarea,.dhx_wrap_section { background-color:#fff } .dhx_cal_light input,.dhx_cal_light_wide .dhx_cal_lsection .dhx_fullday,.dhx_cal_lsection,.dhx_cal_lsection .dhx_fullday { color:#747473 } .dhx_cal_light_wide .dhx_wrap_section { border-top:0; border-bottom:1px solid #CECECE } .dhx_cal_larea { border:1px solid transparent } .dhx_cal_light,.dhx_cal_light select,.dhx_cal_ltext textarea { color:#2E2E2E } .dhx_cal_light { border:1px solid #CECECE } .dhx_cal_light_wide .dhx_cal_lsection,.dhx_cal_light_wide .dhx_cal_lsection .dhx_fullday { font-size:13px } .dhx_section_time { background-color:transparent } .dhx_btn_set div:first-child,.dhx_cancel_btn,.dhx_delete_btn,.dhx_save_btn { display:none } .dhx_btn_set,.dhx_btn_set div { height:30px; padding:0 20px; line-height:30px } .dhx_btn_set { margin:12px 0 0; padding:0; font-size:12px; color:#454544; font-weight:700; -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px } .dhx_left_btn_set { margin-left:20px } .dhx_right_btn_set { margin-right:20px } .dhx_save_btn_set { border:1px solid #22A1BC; color:#fff; text-shadow:0 -1px 0 #6f6f6f; background-color:#22A1BC } .dhx_btn_set,.dhx_cancel_btn_set { border:1px solid #CECECE } .dhx_delete_btn_set { border:1px solid #FF8831; background-color:#FF8831; color:#fff; text-shadow:0 -1px 0 #93755f } .dhx_cal_ltitle { height:30px; line-height:30px; border-bottom:1px solid #CECECE } .dhx_cal_ltitle span { float:left } .dhx_cal_light .dhx_title { padding-left:13px } .dhx_mark { display:none } .dhx_time { padding-left:10px } .dhx_close_icon { float:right; width:9px; height:9px; background:url(imgs_dhx_terrace/close_icon.png) center center no-repeat; padding:10px; margin-top:1px } .dhx_cal_light_wide .dhx_cal_ltext.dhx_cal_template { line-height:22px } .dhx_cal_ltext textarea { line-height:20px; box-sizing:border-box; -moz-box-sizing:border-box; border:1px solid #CECECE; background-color:#F9F9F9 } .dhtmlx_modal_box { background:#fff; width:330px } .dhtmlx_popup_controls { padding-bottom:9px } .dhtmlx_popup_button,.dhtmlx_popup_button div,.dhtmlx_popup_button div:active,.dhtmlx_popup_button:active { color:#444; background:#fff; box-shadow:none } .dhtmlx_popup_button.dhtmlx_ok_button { border:1px solid #22A1BC; background-color:#22A1BC } .dhtmlx_popup_button.dhtmlx_ok_button div { background:#22A1BC; border:1px solid #22A1BC; color:#fff; text-shadow:0 -1px 0 #6f6f6f } .dhx_cal_container.dhx_mini_calendar { box-sizing:border-box; border:1px solid #CECECE; box-shadow:2px 2px 5px #CCC; border-radius:3px } .dhx_mini_calendar .dhx_year_month { border:1px solid #CECECE; font-family:Arial } .dhx_mini_calendar .dhx_month_body,.dhx_mini_calendar .dhx_month_head,.dhx_mini_calendar .dhx_scale_bar,.dhx_mini_calendar .dhx_year_body,.dhx_mini_calendar .dhx_year_month { border-color:transparent } .dhx_mini_calendar .dhx_year_body { padding-top:1px } .dhx_mini_calendar .dhx_scale_bar { border-width:0 } .dhx_mini_calendar .dhx_year_week { border-bottom:1px solid #CECECE; padding-top:1px } .dhx_mini_calendar .dhx_month_head { padding-right:0; text-align:center } .dhx_mini_calendar .dhx_cal_next_button,.dhx_mini_calendar .dhx_cal_prev_button { border:0; height:20px } .dhx_cal_navline div.dhx_minical_icon { left:210px; top:14px; width:30px; height:30px; background:url(imgs_dhx_terrace/calendar.gif) 3px 5px no-repeat } .dhx_cal_event_line .dhx_event_resize { background:url(imgs_dhx_terrace/resize_dots.png) repeat-y } .dhx_matrix_cell,.dhx_matrix_scell { border-bottom:1px solid #CECECE; border-right:1px solid #CECECE } .dhx_cal_header div div { border-left:1px solid #CECECE } .dhx_matrix_scell.folder { border-right:0 } .dhx_second_scale_bar { border-bottom:1px solid #CECECE } .dhx_repeat_divider { border-left:1px solid #CECECE } .dhx_custom_button { background-color:#fff; border:1px solid #CECECE; color:#747473 } .dhx_cal_light_wide .dhx_custom_button { margin-top:6px } .dhx_custom_button_recurring { background-image:url(imgs_dhx_terrace/but_repeat.gif) } .dhx_agenda_line div,.dhx_v_border { border-right:1px solid #CECECE } .dhx_year_month { border:1px solid #CECECE } .dhx_scale_bar_last { border-right:1px solid #CECECE } .dhx_year_body { border-left:1px solid #CECECE } .dhx_expand_icon { top:-3px } .dhx_scale_bar .dhx_cal_next_button,.dhx_scale_bar .dhx_cal_prev_button { width:20px; height:20px; top:0!important; border:0 } .dhx_scale_bar .dhx_cal_next_button { right:1px!important; border-left:1px solid #CECECE } .dhx_scale_bar .dhx_cal_prev_button { left:1px!important; border-right:1px solid #CECECE } .dhx_map_line .headline_date,.dhx_map_line .headline_description { border:0 } .dhx_map_line .headline_date { border-right:1px solid #CECECE } .dhtmlXTooltip.tooltip { border-left:1px solid #CECECE; border-top:1px solid #CECECE; color:#747473; font-size:12px; line-height:16px } .dhx_wa_scale_bar { border-top:1px solid #CECECE; border-bottom:1px solid #CECECE } .dhx_wa_column_last .dhx_wa_day_cont { border-left:1px solid #CECECE } .dhx_wa_ev_body { border-bottom:1px solid #CECECE } .dhx_wa_scale_bar { background-color:#f0ede7 } .dhx_wa_ev_body.dhx_cal_event_selected { background-color:#fff3a1; color:#362d26 } .dhx_wa_dnd { background-color:#fddb93!important; color:#747473!important; border:1px solid #ccb177 } .dhx_text_disabled { color:#2E2E2E } .dhx_cal_ltext .dhx_text_disabled { line-height:22px } .dhx_grid_v_border { border-right-color:#CECECE } .dhx_month_body_border,.dhx_month_head_border,.dhx_scale_bar_border,.dhx_scale_hour_border { border-left:1px solid #CECECE } .dhx_cal_quick_info { background:rgba(50,50,50,.5) } .dhx_qi_big_icon { background:#1796b0; color:#fff } .dhx_cal_navline .dhx_cal_export { width:32px; height:32px; margin:2px; cursor:pointer; top:12px } .dhx_cal_navline .dhx_cal_export.pdf { left:auto; right:249px; background-image:url(imgs_dhx_terrace/export_pdf.png) } .dhx_cal_navline .dhx_cal_export.ical { left:auto; right:210px; background-image:url(imgs_dhx_terrace/export_ical.png) } .dhx_mini_calendar { padding:5px } .dhx_mini_calendar .dhx_calendar_click,.dhx_mini_calendar .dhx_year_event { border-radius:7px } .dhx_mini_calendar .dhx_month_head { margin:2px } .dhx_mini_calendar .dhx_year_month { line-height:20px; height:25px; font-size:14px } .dhx_mini_calendar .dhx_cal_next_button,.dhx_mini_calendar .dhx_cal_prev_button { top:8px!important }
0.167729
0.071721
.loading-screen { background-color: #ff8c00; bottom: 0; color: #333333; font-family: 'raleway', sans-serif; font-size: 14px; left: 0; line-height: 1.4287143; right: 0; top: 0; opacity: 1; position: fixed; z-index: 1000000; } .loading-screen .loading-inner { height: 100%; margin: 0; padding: 0; position: static; width: 100%; } .loading-screen .loading-center-outer { display: table !important; height: 100%; left: 0; margin: 0; padding: 0; position: absolute; top: 0; width: 100%; } .loading-screen .loading-center-middle { display: table-cell !important; margin: 0; padding: 0; text-align: center; vertical-align: middle; } .loading-screen .loading-header { color: #ffffff; font-size: 72px; font-weight: 500; line-height: 1.1; margin: 20px 0 10px; opacity: 1; text-align: center; width: 100%; } .loading-screen .loading-html { width: 100%; margin-top: 30px; opacity: 1; } .loading-screen .loading-html .loading-message { color: #ffffff; font-family: 'raleway', sans-serif; font-size: 20px; font-weight: 300; margin: 0 0 100px; } .sk-wave { font-size: 10px; height: 60px; margin: 40px auto; text-align: center; width: 50px; } .sk-wave .sk-rect { background-color: #ffffff; display: inline-block; height: 100%; width: 6px; -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out; animation: sk-waveStretchDelay 1.2s infinite ease-in-out; } .sk-wave .sk-rect1 { -webkit-animation-delay: -1.2s; animation-delay: -1.2s; } .sk-wave .sk-rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .sk-wave .sk-rect3 { -webkit-animation-delay: -1s; animation-delay: -1s; } .sk-wave .sk-rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } .sk-wave .sk-rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; } @-webkit-keyframes sk-waveStretchDelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4); transform: scaleY(0.4); } 20% { -webkit-transform: scaleY(1); transform: scaleY(1); } } @keyframes sk-waveStretchDelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4); transform: scaleY(0.4); } 20% { -webkit-transform: scaleY(1); transform: scaleY(1); } }
src/assets/styles/loadingScreen.css
.loading-screen { background-color: #ff8c00; bottom: 0; color: #333333; font-family: 'raleway', sans-serif; font-size: 14px; left: 0; line-height: 1.4287143; right: 0; top: 0; opacity: 1; position: fixed; z-index: 1000000; } .loading-screen .loading-inner { height: 100%; margin: 0; padding: 0; position: static; width: 100%; } .loading-screen .loading-center-outer { display: table !important; height: 100%; left: 0; margin: 0; padding: 0; position: absolute; top: 0; width: 100%; } .loading-screen .loading-center-middle { display: table-cell !important; margin: 0; padding: 0; text-align: center; vertical-align: middle; } .loading-screen .loading-header { color: #ffffff; font-size: 72px; font-weight: 500; line-height: 1.1; margin: 20px 0 10px; opacity: 1; text-align: center; width: 100%; } .loading-screen .loading-html { width: 100%; margin-top: 30px; opacity: 1; } .loading-screen .loading-html .loading-message { color: #ffffff; font-family: 'raleway', sans-serif; font-size: 20px; font-weight: 300; margin: 0 0 100px; } .sk-wave { font-size: 10px; height: 60px; margin: 40px auto; text-align: center; width: 50px; } .sk-wave .sk-rect { background-color: #ffffff; display: inline-block; height: 100%; width: 6px; -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out; animation: sk-waveStretchDelay 1.2s infinite ease-in-out; } .sk-wave .sk-rect1 { -webkit-animation-delay: -1.2s; animation-delay: -1.2s; } .sk-wave .sk-rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .sk-wave .sk-rect3 { -webkit-animation-delay: -1s; animation-delay: -1s; } .sk-wave .sk-rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } .sk-wave .sk-rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; } @-webkit-keyframes sk-waveStretchDelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4); transform: scaleY(0.4); } 20% { -webkit-transform: scaleY(1); transform: scaleY(1); } } @keyframes sk-waveStretchDelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4); transform: scaleY(0.4); } 20% { -webkit-transform: scaleY(1); transform: scaleY(1); } }
0.510008
0.064329
body { background-color: Silver; } .slickr { width: 700px; height: 300px; position: relative; overflow: hidden; border: 1px solid #000; } body > h1:first-of-type { margin-left: 13%; } #search-panel { margin-left: 24%; } .indicator { float: left; } .border { text-align: center; } .title-desc h1 { font-size: 110%; margin-top: -5px; } #search-box { border-radius: 10px; background-color: gray; font-size: 15px; padding: 5px; color: white; } #search-button { width: 80px; height: 30px; border-radius: 10px; padding: 0; margin: 0; background-color: #2c2f38; border-color: #c1d72a; color: #c1d72a; } #share-button { width: 80px; height: 30px; } #share-button img { width: 70px; padding: 0; margin: 0; vertical-align: middle; } .video { cursor: pointer; } #video-player { border: 10px solid gray; width: 640px; height: 360px; border-radius: 5px; margin-left: 23%; } .slickr .slide-panel { position: absolute; clear: both; height: 400px; } .slickr .slide-padder { width: 700px; height: 400px; float: left; } .slickr .slide-valigner { width: 700px; height: 300px; text-align: center; vertical-align: middle; display: table-cell; } .slickr .nav-left { position: absolute; left: 25px; top: 50%; } .slickr .nav-right { position: absolute; right: 25px; top: 50%; } .slickr .title-desc { position: absolute; left: 0; top: 0; } .black { border: 15px solid #2c2f38; border-radius: 20px; width: 702px; margin-top: 30px; margin-left: 20%; } .black .border { border: 1px solid #c1d72a; } #gallery-data li img { width: 150px; height: 100px; } .black .slickr { border: 10px solid #2c2f38; width: 680px; } .black .slickr .slide-padder { width: 680px; } .black .slickr .desc { bottom: 0; left: 0; position: absolute; text-align: center; width: 680px; font-family: Georgia, serif; font-size: 11px; } .black .slickr .title-desc { left: 10px; top: 10px; font-family: Verdana, Verdana, Geneva, sans-serif; } .black .slickr .title-desc .indicator { color: #000; } .black .slickr .title-desc .indicator .currentNumber, .black .slickr .title-desc .indicator .totalNumber { color: #000; font-weight: bold; }
JavaScript Applications/Team Project/cherry-team-slickr/Slickr/styles/slickr.css
body { background-color: Silver; } .slickr { width: 700px; height: 300px; position: relative; overflow: hidden; border: 1px solid #000; } body > h1:first-of-type { margin-left: 13%; } #search-panel { margin-left: 24%; } .indicator { float: left; } .border { text-align: center; } .title-desc h1 { font-size: 110%; margin-top: -5px; } #search-box { border-radius: 10px; background-color: gray; font-size: 15px; padding: 5px; color: white; } #search-button { width: 80px; height: 30px; border-radius: 10px; padding: 0; margin: 0; background-color: #2c2f38; border-color: #c1d72a; color: #c1d72a; } #share-button { width: 80px; height: 30px; } #share-button img { width: 70px; padding: 0; margin: 0; vertical-align: middle; } .video { cursor: pointer; } #video-player { border: 10px solid gray; width: 640px; height: 360px; border-radius: 5px; margin-left: 23%; } .slickr .slide-panel { position: absolute; clear: both; height: 400px; } .slickr .slide-padder { width: 700px; height: 400px; float: left; } .slickr .slide-valigner { width: 700px; height: 300px; text-align: center; vertical-align: middle; display: table-cell; } .slickr .nav-left { position: absolute; left: 25px; top: 50%; } .slickr .nav-right { position: absolute; right: 25px; top: 50%; } .slickr .title-desc { position: absolute; left: 0; top: 0; } .black { border: 15px solid #2c2f38; border-radius: 20px; width: 702px; margin-top: 30px; margin-left: 20%; } .black .border { border: 1px solid #c1d72a; } #gallery-data li img { width: 150px; height: 100px; } .black .slickr { border: 10px solid #2c2f38; width: 680px; } .black .slickr .slide-padder { width: 680px; } .black .slickr .desc { bottom: 0; left: 0; position: absolute; text-align: center; width: 680px; font-family: Georgia, serif; font-size: 11px; } .black .slickr .title-desc { left: 10px; top: 10px; font-family: Verdana, Verdana, Geneva, sans-serif; } .black .slickr .title-desc .indicator { color: #000; } .black .slickr .title-desc .indicator .currentNumber, .black .slickr .title-desc .indicator .totalNumber { color: #000; font-weight: bold; }
0.625438
0.116337
.WebshareSetup input[type=text], .TVSetup input[type=text], .KodiSetup input[type=text], .WebshareSetup input[type=password], .KodiSetup input[type=password] { line-height: 1.8em; } .WebshareSetup input[type=submit], .TVSetup input[type=submit], .KodiSetup input[type=submit] { background-image: var(--image-play); background-position: center; background-repeat: no-repeat; background-size: 100%; width: 30px; height: 30px; border: none; background-color: transparent; text-indent: -9999px; overflow: hidden; vertical-align: top; cursor: pointer; padding: 0; } .WebshareSetup.loading input[type=submit], .KodiSetupForm.loading input[type=submit] { background-image: var(--image-spinner) !important; } .WebshareSetup .error, .KodiSetup .error { color: var(--color1); margin: 5px 0 0 0; display: block; } .WebshareSetup .error::before, .KodiSetup .error::before { content: "Error: "; font-weight: bold; } .WebshareSetup p, .TVSetup p, .KodiSetup p { color: #999; margin: 10px 0 0 0; } .WebshareSetup p strong, .TVSetup p strong, .KodiSetup p strong { white-space: nowrap; } .WebshareSetup, .TVSetup { margin: 0 0 30px 0; } .WebshareSetup input[type=text], .WebshareSetup input[type=password] { width: calc(50% - 25px); margin-right: 10px; } .WebshareSetup input.token { width: calc(100% - 40px); color: #ffffff80; } .webshare-ok .WebshareSetup input[type=submit], .kodi-ok .KodiSetupForm.position1 input[type=submit], .kodi2-ok .KodiSetupForm.position2 input[type=submit] { background-image: var(--image-ok); } .WebshareSetup .clear { text-indent: -9999px; width: 20px; height: 20px; overflow: hidden; background-size: 100%; cursor: pointer; background-image: var(--image-clear); opacity: .5; margin: 0 15px 0 -35px; line-height: 2.2em; } .TVSetup input[type=text], .KodiSetup input[type=text] { width: calc(100% - 40px); margin-right: 10px; } .TVSetup.disabled input, .TVSetup.disabled p { display: none; } .TVSetup.disabled::after { color: #999; content: "Available after Webshare authentication."; } .DiscoveryHeader { position: fixed; left: 0; top: 0; right: 0; padding: 20px 20px 0 20px; } .DiscoveryHeader, .DiscoveryHeader .menu .container { backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); background: rgba(0, 0, 0, .7); } .DiscoveryHeader input { width: calc(100% - 40px); } .DiscoveryHeader .home { position: absolute; right: 60px; top: 20px; text-indent: -9999px; width: 30px; height: 30px; overflow: hidden; background-size: 20px; background-position: center; background-repeat: no-repeat; cursor: pointer; background-image: var(--image-clear); opacity: .5; } .DiscoveryHeader .menu { position: absolute; right: 20px; top: 20px; } .DiscoveryHeader .menu .menuButton { text-indent: -9999px; width: 30px; height: 30px; overflow: hidden; background-size: 100%; cursor: pointer; background-image: var(--image-menu); } .DiscoveryHeader .menu .container { position: absolute; right: -10px; top: 38px; padding: 10px; transition: opacity .3s ease-in-out; border-top: 1px dashed #666; } .DiscoveryHeader .menu .container button { text-indent: -9999px; width: 30px; height: 30px; overflow: hidden; background-size: 100%; cursor: pointer; display: block; } .DiscoveryHeader .menu .setup { background-image: var(--image-configure); margin: 0 0 15px; } .DiscoveryHeader .menu .about { background-image: var(--image-about); } .DiscoveryHeader .menu:not(.expanded) .container { opacity: 0; pointer-events: none; } .SearchForm input { font-size: 2em; padding-right: 30px; } .Catalogue { display: grid; grid-gap: 10px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); padding-top: 50px; transition: opacity .3s ease-in-out; } .DiscoveryView.type-webshare .Catalogue { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } .loading .Catalogue { opacity: 0; } .Catalogue.empty, .Catalogue.error { color: var(--color1); display: block; } .CatalogueItem { padding-bottom: 150%; float: left; position: relative; background: #222; overflow: hidden; cursor: pointer; } .DiscoveryView.type-home .CatalogueItem { padding-bottom: 80%; } .DiscoveryView.type-webshare .CatalogueItem { padding-bottom: 56%; } .CatalogueItem:not(.loaded) img { opacity: 0; } .CatalogueItem.loaded img { animation: fadein .5s; } .CatalogueItem img { position: absolute; width: 100%; } .CatalogueItem img.error, .CatalogueItem img.missing { width: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); } .DiscoveryView.type-webshare .CatalogueItem img.error, .DiscoveryView.type-webshare .CatalogueItem img.missing { width: 40%; } .CatalogueItem .name { font-weight: bold; overflow-wrap: break-word; } .CatalogueItem .name::after { content: " "; } .CatalogueItem .title { position: absolute; bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); left: 0; right: 0; padding: 100px 5px 5px 5px; text-shadow: 2px 2px #000; } .DiscoveryView.type-home .CatalogueItem .title { padding-top: 45px; } .CatalogueItem .subtitle::before { content: " ("; } .CatalogueItem .subtitle::after { content: ") "; } .CatalogueItem .year, .CatalogueItem .language, .CatalogueItem .size { background: #666; text-shadow: none; color: black; border-radius: 3px; margin-right: 4px; padding: 0px 3px; font-size: .8em; font-weight: bold; display: inline-block; } .CatalogueItem .rating { position: absolute; color: black; top: 5px; right: 5px; height: 30px; width: 30px; line-height: 34px; font-weight: bold; text-align: center; text-shadow: 2px 0 0 var(--color1), -2px 0 0 var(--color1), 0 2px 0 var(--color1), 0 -2px 0 var(--color1), 1px 1px var(--color1), -1px -1px 0 var(--color1), 1px -1px 0 var(--color1), -1px 1px 0 var(--color1); background-size: 100%; background-image: var(--image-star); } .CatalogueMedia.playable::after, .CatalogueMedia.watched::after { content: ""; background-size: 100%; position: absolute; width: 20px; height: 20px; left: 10px; top: 10px; filter: drop-shadow(1px 1px 1px #00000080); background-repeat: no-repeat; } .CatalogueMedia.playable::after { background-image: var(--image-play); } .CatalogueMedia.watched::after { background-image: var(--image-watched); } .CatalogueMedia.playable.watched::after { background-image: var(--image-play), var(--image-watched); background-position: 0 0, 0 25px; background-size: 20px, 20px; height: 45px; } .CatalogueItemCustom { background-size: 50%; background-repeat: no-repeat; background-position: center; } .DiscoveryView.type-home .CatalogueItem { background-position: center 33%; } .DiscoveryView.type-webshare .CatalogueItemCustom { background-size: 30%; } .CatalogueItemCustom.folder { background-image: var(--image-folder); } .CatalogueItemCustom.movie { background-image: var(--image-movie); } .CatalogueItemCustom.series { background-image: var(--image-series); } .CatalogueItemCustom.concert { background-image: var(--image-concert); } .CatalogueItemCustom.fairyTale { background-image: var(--image-fairyTale); } .CatalogueItemCustom.popular { background-image: var(--image-popular); } .CatalogueItemCustom.animated { background-image: var(--image-animated); } .CatalogueItemCustom.watched { background-image: var(--image-watched); } .Dialogue { position: fixed; left: 0px; right: 0px; top: 0px; bottom: 0px; opacity: 1; transition: opacity .3s ease-in-out; } .Dialogue:not(.visible) { opacity: 0; pointer-events: none; } .Dialogue:not(.visible):not(.transition) { height: 0; overflow: hidden; } .Dialogue .close { position: fixed; overflow: hidden; text-indent: -9999px; width: 30px; height: 30px; background-size: 100%; cursor: pointer; right: 10px; top: 10px; background-image: var(--image-close); filter: drop-shadow(0px 0px 5px black); } .Dialogue .content { padding: 20px; position: relative; transition: transform .3s ease-in-out, opacity .3s ease-in-out; } .Dialogue::before { position: fixed; content: " "; background: rgba(0, 0, 0, .7); top: 0; left: 0; right: 0; bottom: -100px; /* fix scroll rendering glitch on android/chrome */ backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); } .Dialogue.scrollable { position: absolute; } .DetailView h1 { overflow-wrap: break-word; } .DetailView .metadata { margin: 0 0 10px 0; } .DetailView .metadata .label { font-weight: bold; } .DetailView .metadata .label::after { content: ": "; } .DetailView .WebshareSetup h1 { font-size: 1.4em; margin-top: 20px; } body:not(.webshare-na) .DetailView .WebshareSetup { display: none; } .webshare-na .DetailView .StreamsView .StreamItem { opacity: .3; pointer-events: none; } .NotificationView .content { background: var(--color1); color: black; transition: transform .3s ease-in-out; } .NotificationView:not(.visible) .content { transform: translateY(-100%); } .NotificationView p { margin-bottom: 40px; } .NotificationView .close { background-image: var(--image-close-notification); right: 20px; bottom: 20px; filter: none; top: auto; position: absolute; } .DetailView .metadata a { margin: 0 5px 0 0; } .StreamsView.loading { background-image: var(--image-spinner); min-height: 50px; background-size: 50px; background-repeat: no-repeat; background-position: center; } .StreamOption { border-bottom: 1px dashed #666; } .StreamOption.loading { opacity: .5; pointer-events: none; } .StreamOption .info { display: flex; align-items: center; cursor: pointer; flex-wrap: wrap; padding: 5px 40px 5px 0; background-size: 30px; background-repeat: no-repeat; background-position: right 4px; background-image: var(--image-play); min-height: 40px; } .StreamOption.loading .info { background-image: var(--image-spinner); } .StreamOption .info :last-child { padding: 0; } .StreamOption .info .language { background: var(--image-audio) no-repeat 0 / 12px; padding-left: 16px; } .StreamOption .info .subtitles { background: var(--image-subtitles) no-repeat 0 / 12px; padding-left: 16px; text-overflow: ellipsis; overflow: hidden; } .StreamOption .info span { padding: 0 10px 0 0; } .StreamOption .info .duration { flex-grow: 1; text-align: right; } .StreamOption .info .domain { opacity: .5; text-transform: uppercase; } .StreamOption .options { text-align: center; } .StreamOption .options textarea { border: none; background: #333; color: #999; font-family: inherit; margin: 0; height: 50px; width: 100%; } .StreamOption .options .download, .StreamOption .options .android, .StreamOption .options .play, .StreamOption .options .cast, .StreamOption .options .kodi, .StreamOption .options .kodi2, .StreamOption .options .potplayer, .StreamOption .options .vlc { overflow: hidden; text-indent: -9999px; width: 30px; height: 30px; background-size: 100%; cursor: pointer; display: inline-block; line-height: 50px; margin: 10px 15px 20px 15px; vertical-align: middle; } .StreamOption .options .download { background-image: var(--image-download); } .StreamOption .options .android { background-image: var(--image-android); } .StreamOption .options .play { background-image: var(--image-play2); } .StreamOption .options .cast { display: none; background-image: var(--image-cast); } .StreamOption .options .kodi, .StreamOption .options .kodi2 { display: none; background-image: var(--image-kodi); } .StreamOption .options .vlc { background-image: var(--image-vlc); } .StreamOption .options .potplayer { background-image: var(--image-potplayer); } .StreamOption .options .kodi, .StreamOption .options .kodi2, .StreamOption .options .android.fix { position: relative; } .StreamOption .options .kodi::before, .StreamOption .options .kodi2::before, .StreamOption .options .android.fix::before { position: absolute; right: 0; bottom: 0; text-indent: 0; background: var(--color1); padding: 0 1px; color: black; line-height: initial; border-radius: 2px; font-size: 11px; font-weight: bold; } .StreamOption .options .kodi::before { content: "1"; } .StreamOption .options .kodi2::before { content: "2"; } .StreamOption .options .android.fix::before { content: "mkv"; } .cast-ok .StreamOption .options .cast, .kodi-defined .StreamOption .options .kodi, .kodi2-defined .StreamOption .options .kodi2, .kodi-ok .StreamOption .options .kodi, .kodi2-ok .StreamOption .options .kodi2 { display: inline-block; } .StreamNA .info { opacity: .5; pointer-events: none; } .AboutView h2 { margin: 15px 0 5px; } .AboutView li.kodi, .AboutView li.cast, .AboutView li.android, .AboutView li.browser, .AboutView li.vlc, .AboutView li.potplayer { list-style: none; background-repeat: no-repeat; background-size: 1.2em; background-position: left top; margin-left: 1em; padding: 0 0 .3em 1.5em; } .AboutView li.kodi { background-image: var(--image-kodi); } .AboutView li.vlc { background-image: var(--image-vlc); } .AboutView li.potplayer { background-image: var(--image-potplayer); } .AboutView li.cast { background-image: var(--image-cast); } .AboutView li.android { background-image: var(--image-android); } .AboutView li.browser { background-image: var(--image-play2); } .AboutView li.android.fix { position: relative; } .AboutView li.android.fix::after { content: "mkv"; position: absolute; top: 9px; left: 4px; text-indent: 0; background: var(--color1); padding: 0 1px; color: black; line-height: initial; border-radius: 2px; font-size: 8px; font-weight: bold; }
client/static/css/web/components.css
.WebshareSetup input[type=text], .TVSetup input[type=text], .KodiSetup input[type=text], .WebshareSetup input[type=password], .KodiSetup input[type=password] { line-height: 1.8em; } .WebshareSetup input[type=submit], .TVSetup input[type=submit], .KodiSetup input[type=submit] { background-image: var(--image-play); background-position: center; background-repeat: no-repeat; background-size: 100%; width: 30px; height: 30px; border: none; background-color: transparent; text-indent: -9999px; overflow: hidden; vertical-align: top; cursor: pointer; padding: 0; } .WebshareSetup.loading input[type=submit], .KodiSetupForm.loading input[type=submit] { background-image: var(--image-spinner) !important; } .WebshareSetup .error, .KodiSetup .error { color: var(--color1); margin: 5px 0 0 0; display: block; } .WebshareSetup .error::before, .KodiSetup .error::before { content: "Error: "; font-weight: bold; } .WebshareSetup p, .TVSetup p, .KodiSetup p { color: #999; margin: 10px 0 0 0; } .WebshareSetup p strong, .TVSetup p strong, .KodiSetup p strong { white-space: nowrap; } .WebshareSetup, .TVSetup { margin: 0 0 30px 0; } .WebshareSetup input[type=text], .WebshareSetup input[type=password] { width: calc(50% - 25px); margin-right: 10px; } .WebshareSetup input.token { width: calc(100% - 40px); color: #ffffff80; } .webshare-ok .WebshareSetup input[type=submit], .kodi-ok .KodiSetupForm.position1 input[type=submit], .kodi2-ok .KodiSetupForm.position2 input[type=submit] { background-image: var(--image-ok); } .WebshareSetup .clear { text-indent: -9999px; width: 20px; height: 20px; overflow: hidden; background-size: 100%; cursor: pointer; background-image: var(--image-clear); opacity: .5; margin: 0 15px 0 -35px; line-height: 2.2em; } .TVSetup input[type=text], .KodiSetup input[type=text] { width: calc(100% - 40px); margin-right: 10px; } .TVSetup.disabled input, .TVSetup.disabled p { display: none; } .TVSetup.disabled::after { color: #999; content: "Available after Webshare authentication."; } .DiscoveryHeader { position: fixed; left: 0; top: 0; right: 0; padding: 20px 20px 0 20px; } .DiscoveryHeader, .DiscoveryHeader .menu .container { backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); background: rgba(0, 0, 0, .7); } .DiscoveryHeader input { width: calc(100% - 40px); } .DiscoveryHeader .home { position: absolute; right: 60px; top: 20px; text-indent: -9999px; width: 30px; height: 30px; overflow: hidden; background-size: 20px; background-position: center; background-repeat: no-repeat; cursor: pointer; background-image: var(--image-clear); opacity: .5; } .DiscoveryHeader .menu { position: absolute; right: 20px; top: 20px; } .DiscoveryHeader .menu .menuButton { text-indent: -9999px; width: 30px; height: 30px; overflow: hidden; background-size: 100%; cursor: pointer; background-image: var(--image-menu); } .DiscoveryHeader .menu .container { position: absolute; right: -10px; top: 38px; padding: 10px; transition: opacity .3s ease-in-out; border-top: 1px dashed #666; } .DiscoveryHeader .menu .container button { text-indent: -9999px; width: 30px; height: 30px; overflow: hidden; background-size: 100%; cursor: pointer; display: block; } .DiscoveryHeader .menu .setup { background-image: var(--image-configure); margin: 0 0 15px; } .DiscoveryHeader .menu .about { background-image: var(--image-about); } .DiscoveryHeader .menu:not(.expanded) .container { opacity: 0; pointer-events: none; } .SearchForm input { font-size: 2em; padding-right: 30px; } .Catalogue { display: grid; grid-gap: 10px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); padding-top: 50px; transition: opacity .3s ease-in-out; } .DiscoveryView.type-webshare .Catalogue { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } .loading .Catalogue { opacity: 0; } .Catalogue.empty, .Catalogue.error { color: var(--color1); display: block; } .CatalogueItem { padding-bottom: 150%; float: left; position: relative; background: #222; overflow: hidden; cursor: pointer; } .DiscoveryView.type-home .CatalogueItem { padding-bottom: 80%; } .DiscoveryView.type-webshare .CatalogueItem { padding-bottom: 56%; } .CatalogueItem:not(.loaded) img { opacity: 0; } .CatalogueItem.loaded img { animation: fadein .5s; } .CatalogueItem img { position: absolute; width: 100%; } .CatalogueItem img.error, .CatalogueItem img.missing { width: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); } .DiscoveryView.type-webshare .CatalogueItem img.error, .DiscoveryView.type-webshare .CatalogueItem img.missing { width: 40%; } .CatalogueItem .name { font-weight: bold; overflow-wrap: break-word; } .CatalogueItem .name::after { content: " "; } .CatalogueItem .title { position: absolute; bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); left: 0; right: 0; padding: 100px 5px 5px 5px; text-shadow: 2px 2px #000; } .DiscoveryView.type-home .CatalogueItem .title { padding-top: 45px; } .CatalogueItem .subtitle::before { content: " ("; } .CatalogueItem .subtitle::after { content: ") "; } .CatalogueItem .year, .CatalogueItem .language, .CatalogueItem .size { background: #666; text-shadow: none; color: black; border-radius: 3px; margin-right: 4px; padding: 0px 3px; font-size: .8em; font-weight: bold; display: inline-block; } .CatalogueItem .rating { position: absolute; color: black; top: 5px; right: 5px; height: 30px; width: 30px; line-height: 34px; font-weight: bold; text-align: center; text-shadow: 2px 0 0 var(--color1), -2px 0 0 var(--color1), 0 2px 0 var(--color1), 0 -2px 0 var(--color1), 1px 1px var(--color1), -1px -1px 0 var(--color1), 1px -1px 0 var(--color1), -1px 1px 0 var(--color1); background-size: 100%; background-image: var(--image-star); } .CatalogueMedia.playable::after, .CatalogueMedia.watched::after { content: ""; background-size: 100%; position: absolute; width: 20px; height: 20px; left: 10px; top: 10px; filter: drop-shadow(1px 1px 1px #00000080); background-repeat: no-repeat; } .CatalogueMedia.playable::after { background-image: var(--image-play); } .CatalogueMedia.watched::after { background-image: var(--image-watched); } .CatalogueMedia.playable.watched::after { background-image: var(--image-play), var(--image-watched); background-position: 0 0, 0 25px; background-size: 20px, 20px; height: 45px; } .CatalogueItemCustom { background-size: 50%; background-repeat: no-repeat; background-position: center; } .DiscoveryView.type-home .CatalogueItem { background-position: center 33%; } .DiscoveryView.type-webshare .CatalogueItemCustom { background-size: 30%; } .CatalogueItemCustom.folder { background-image: var(--image-folder); } .CatalogueItemCustom.movie { background-image: var(--image-movie); } .CatalogueItemCustom.series { background-image: var(--image-series); } .CatalogueItemCustom.concert { background-image: var(--image-concert); } .CatalogueItemCustom.fairyTale { background-image: var(--image-fairyTale); } .CatalogueItemCustom.popular { background-image: var(--image-popular); } .CatalogueItemCustom.animated { background-image: var(--image-animated); } .CatalogueItemCustom.watched { background-image: var(--image-watched); } .Dialogue { position: fixed; left: 0px; right: 0px; top: 0px; bottom: 0px; opacity: 1; transition: opacity .3s ease-in-out; } .Dialogue:not(.visible) { opacity: 0; pointer-events: none; } .Dialogue:not(.visible):not(.transition) { height: 0; overflow: hidden; } .Dialogue .close { position: fixed; overflow: hidden; text-indent: -9999px; width: 30px; height: 30px; background-size: 100%; cursor: pointer; right: 10px; top: 10px; background-image: var(--image-close); filter: drop-shadow(0px 0px 5px black); } .Dialogue .content { padding: 20px; position: relative; transition: transform .3s ease-in-out, opacity .3s ease-in-out; } .Dialogue::before { position: fixed; content: " "; background: rgba(0, 0, 0, .7); top: 0; left: 0; right: 0; bottom: -100px; /* fix scroll rendering glitch on android/chrome */ backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); } .Dialogue.scrollable { position: absolute; } .DetailView h1 { overflow-wrap: break-word; } .DetailView .metadata { margin: 0 0 10px 0; } .DetailView .metadata .label { font-weight: bold; } .DetailView .metadata .label::after { content: ": "; } .DetailView .WebshareSetup h1 { font-size: 1.4em; margin-top: 20px; } body:not(.webshare-na) .DetailView .WebshareSetup { display: none; } .webshare-na .DetailView .StreamsView .StreamItem { opacity: .3; pointer-events: none; } .NotificationView .content { background: var(--color1); color: black; transition: transform .3s ease-in-out; } .NotificationView:not(.visible) .content { transform: translateY(-100%); } .NotificationView p { margin-bottom: 40px; } .NotificationView .close { background-image: var(--image-close-notification); right: 20px; bottom: 20px; filter: none; top: auto; position: absolute; } .DetailView .metadata a { margin: 0 5px 0 0; } .StreamsView.loading { background-image: var(--image-spinner); min-height: 50px; background-size: 50px; background-repeat: no-repeat; background-position: center; } .StreamOption { border-bottom: 1px dashed #666; } .StreamOption.loading { opacity: .5; pointer-events: none; } .StreamOption .info { display: flex; align-items: center; cursor: pointer; flex-wrap: wrap; padding: 5px 40px 5px 0; background-size: 30px; background-repeat: no-repeat; background-position: right 4px; background-image: var(--image-play); min-height: 40px; } .StreamOption.loading .info { background-image: var(--image-spinner); } .StreamOption .info :last-child { padding: 0; } .StreamOption .info .language { background: var(--image-audio) no-repeat 0 / 12px; padding-left: 16px; } .StreamOption .info .subtitles { background: var(--image-subtitles) no-repeat 0 / 12px; padding-left: 16px; text-overflow: ellipsis; overflow: hidden; } .StreamOption .info span { padding: 0 10px 0 0; } .StreamOption .info .duration { flex-grow: 1; text-align: right; } .StreamOption .info .domain { opacity: .5; text-transform: uppercase; } .StreamOption .options { text-align: center; } .StreamOption .options textarea { border: none; background: #333; color: #999; font-family: inherit; margin: 0; height: 50px; width: 100%; } .StreamOption .options .download, .StreamOption .options .android, .StreamOption .options .play, .StreamOption .options .cast, .StreamOption .options .kodi, .StreamOption .options .kodi2, .StreamOption .options .potplayer, .StreamOption .options .vlc { overflow: hidden; text-indent: -9999px; width: 30px; height: 30px; background-size: 100%; cursor: pointer; display: inline-block; line-height: 50px; margin: 10px 15px 20px 15px; vertical-align: middle; } .StreamOption .options .download { background-image: var(--image-download); } .StreamOption .options .android { background-image: var(--image-android); } .StreamOption .options .play { background-image: var(--image-play2); } .StreamOption .options .cast { display: none; background-image: var(--image-cast); } .StreamOption .options .kodi, .StreamOption .options .kodi2 { display: none; background-image: var(--image-kodi); } .StreamOption .options .vlc { background-image: var(--image-vlc); } .StreamOption .options .potplayer { background-image: var(--image-potplayer); } .StreamOption .options .kodi, .StreamOption .options .kodi2, .StreamOption .options .android.fix { position: relative; } .StreamOption .options .kodi::before, .StreamOption .options .kodi2::before, .StreamOption .options .android.fix::before { position: absolute; right: 0; bottom: 0; text-indent: 0; background: var(--color1); padding: 0 1px; color: black; line-height: initial; border-radius: 2px; font-size: 11px; font-weight: bold; } .StreamOption .options .kodi::before { content: "1"; } .StreamOption .options .kodi2::before { content: "2"; } .StreamOption .options .android.fix::before { content: "mkv"; } .cast-ok .StreamOption .options .cast, .kodi-defined .StreamOption .options .kodi, .kodi2-defined .StreamOption .options .kodi2, .kodi-ok .StreamOption .options .kodi, .kodi2-ok .StreamOption .options .kodi2 { display: inline-block; } .StreamNA .info { opacity: .5; pointer-events: none; } .AboutView h2 { margin: 15px 0 5px; } .AboutView li.kodi, .AboutView li.cast, .AboutView li.android, .AboutView li.browser, .AboutView li.vlc, .AboutView li.potplayer { list-style: none; background-repeat: no-repeat; background-size: 1.2em; background-position: left top; margin-left: 1em; padding: 0 0 .3em 1.5em; } .AboutView li.kodi { background-image: var(--image-kodi); } .AboutView li.vlc { background-image: var(--image-vlc); } .AboutView li.potplayer { background-image: var(--image-potplayer); } .AboutView li.cast { background-image: var(--image-cast); } .AboutView li.android { background-image: var(--image-android); } .AboutView li.browser { background-image: var(--image-play2); } .AboutView li.android.fix { position: relative; } .AboutView li.android.fix::after { content: "mkv"; position: absolute; top: 9px; left: 4px; text-indent: 0; background: var(--color1); padding: 0 1px; color: black; line-height: initial; border-radius: 2px; font-size: 8px; font-weight: bold; }
0.350533
0.061368
height: 5pc; display: flex; align-items: center; justify-content: center; } #snapshot { margin: auto; max-width: 42%; } #chartContainer { height: 38pc; } #chart_div { position: relative; text-align: center; height: 32pc; background-image: url('dice.jpg'); background-repeat: no-repeat; background-position: center; background-color: #000000; background-size: cover; box-shadow: inset 15px 0 15px 0px #000000; display: flex; justify-content: center; } #zufall { color: white; text-align: center; margin-top: 2em; font-size: 2em; } #zufall2 { bottom: 0; color: white; text-align: center; margin-bottom: 2em; font-size: 2em; display: inline-block; } #button_div { margin-top: 2px; height: 6pc; display: flex; align-items: center; justify-content: center; } #iw-container { max-width: 300px; } .iw-title { display: flex; align-items: center; justify-content: center; } #times { margin-top: 15px; } #priceInfo { } .iw { } #iw-container td { padding: 2px 1em 2px 1em; } #snapshotTextContainer { visibility: hidden; height: 1pc; display: flex; align-items: center; justify-content: center; } #snapshotText { margin: auto; text-align: center; } #gap { height: 3pc; } body { padding-top: 70px; } .navbar-inverse { background: #2c3e50; } .navbar-inverse .navbar-nav>li>a { color: white; } .navbar-inverse .navbar-brand { color: white; } .wow { position:relative; } .wow img { position:relative; top:0; left:0; z-index:1 } .overlay { position:absolute; width:100%; height:100%; top:0; left: 0; z-index:2; opacity:0; color: white; font-size: 16px; font-size: 1.5vw; } .wow .overlay { opacity:1; width:100%; height:100%; padding:5px; display:block; } .infotext { margin: 2em; padding: 1em; display: none; } .infotext2 { margin: 2em; padding: 1em; } #radius { height: 4pc; display: flex; align-items: flex-start; justify-content: center; } #radiusChoice { max-width: 20em; } #suchradiusTextContainer { height: 4pc; display: flex; align-items: flex-end; justify-content: center; } #billigst { height: 4pc; display: flex; align-items: flex-start; justify-content: center; } #billigstChoice { max-width: 20em; } #billigstTextContainer { height: 4pc; display: flex; align-items: flex-end; justify-content: center; } #suchradiusText { text-align: center; } #billigstText { text-align: center; } .wow2 { position:relative; } .wow2 img { position:relative; top:0; left:0; z-index:1 } .overlay2 { color: black; position:absolute; width:100%; height:100%; top:0; left: 0; z-index:2; opacity:0; font-size: 16px; font-size: 1.5vw; } .wow2 > .overlay2 { opacity:1; width:100%; height:100%; padding:5px; display:block; background:rgba(255, 255, 255, 0.4) } #credit { font-size: 0.8em; bottom: 0; }
src/main/webapp/style.css
height: 5pc; display: flex; align-items: center; justify-content: center; } #snapshot { margin: auto; max-width: 42%; } #chartContainer { height: 38pc; } #chart_div { position: relative; text-align: center; height: 32pc; background-image: url('dice.jpg'); background-repeat: no-repeat; background-position: center; background-color: #000000; background-size: cover; box-shadow: inset 15px 0 15px 0px #000000; display: flex; justify-content: center; } #zufall { color: white; text-align: center; margin-top: 2em; font-size: 2em; } #zufall2 { bottom: 0; color: white; text-align: center; margin-bottom: 2em; font-size: 2em; display: inline-block; } #button_div { margin-top: 2px; height: 6pc; display: flex; align-items: center; justify-content: center; } #iw-container { max-width: 300px; } .iw-title { display: flex; align-items: center; justify-content: center; } #times { margin-top: 15px; } #priceInfo { } .iw { } #iw-container td { padding: 2px 1em 2px 1em; } #snapshotTextContainer { visibility: hidden; height: 1pc; display: flex; align-items: center; justify-content: center; } #snapshotText { margin: auto; text-align: center; } #gap { height: 3pc; } body { padding-top: 70px; } .navbar-inverse { background: #2c3e50; } .navbar-inverse .navbar-nav>li>a { color: white; } .navbar-inverse .navbar-brand { color: white; } .wow { position:relative; } .wow img { position:relative; top:0; left:0; z-index:1 } .overlay { position:absolute; width:100%; height:100%; top:0; left: 0; z-index:2; opacity:0; color: white; font-size: 16px; font-size: 1.5vw; } .wow .overlay { opacity:1; width:100%; height:100%; padding:5px; display:block; } .infotext { margin: 2em; padding: 1em; display: none; } .infotext2 { margin: 2em; padding: 1em; } #radius { height: 4pc; display: flex; align-items: flex-start; justify-content: center; } #radiusChoice { max-width: 20em; } #suchradiusTextContainer { height: 4pc; display: flex; align-items: flex-end; justify-content: center; } #billigst { height: 4pc; display: flex; align-items: flex-start; justify-content: center; } #billigstChoice { max-width: 20em; } #billigstTextContainer { height: 4pc; display: flex; align-items: flex-end; justify-content: center; } #suchradiusText { text-align: center; } #billigstText { text-align: center; } .wow2 { position:relative; } .wow2 img { position:relative; top:0; left:0; z-index:1 } .overlay2 { color: black; position:absolute; width:100%; height:100%; top:0; left: 0; z-index:2; opacity:0; font-size: 16px; font-size: 1.5vw; } .wow2 > .overlay2 { opacity:1; width:100%; height:100%; padding:5px; display:block; background:rgba(255, 255, 255, 0.4) } #credit { font-size: 0.8em; bottom: 0; }
0.532182
0.095771
-fx-font-family: "Andale Mono, monospace"; -fx-font-size: 30px; -fx-alignment: center; } #info-label{ -fx-font-weight: bold; -fx-font-size: 20.0; } #workspace-button { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, #e22929), linear-gradient(white 0%, #f3f3f3 50%, #ececec 40%, #f2f2f2 80%); -fx-background-insets: 0 0 0 0, 0, 1; -fx-background-radius: 5, 5, 4; -fx-padding: 3 15 3 15; -fx-text-fill: #000000; -fx-font-weight: bold; -fx-font-size: 16px; } #workspace-button:hover { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, black), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); } #workspace-button:pressed { -fx-background-color: lightgrey; } #login-button { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, #0c9ee2), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); -fx-background-insets: 0 0 -1 0, 0, 1; -fx-background-radius: 5, 5, 4; -fx-padding: 3 30 3 30; -fx-text-fill: #000000; -fx-font-weight: normal; -fx-font-size: 15px; } #login-button:hover { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, black), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); } #login-button:pressed { -fx-background-color: lightgrey; } #dashboard-button { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, #e20c3e), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); -fx-background-insets: 0 0 -1 0, 0, 1; -fx-background-radius: 5, 5, 4; -fx-padding: 3 30 3 30; -fx-text-fill: #000000; -fx-font-weight: normal; -fx-font-size: 15px; } #tableview-button { -fx-background-color: rgba(0, 0, 0, 0.03), linear-gradient(#9a9a9a, #261010), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); -fx-background-insets: 0 0 -1 0, 0, 1; -fx-background-radius: 5, 5, 4; -fx-padding: 2 13 2 13; -fx-text-fill: #000000; -fx-font-weight: normal; -fx-font-size: 14px; } #dashboard-button:hover { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, black), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); } #dashboard-button:pressed { -fx-background-color: lightgrey; } #scene-bg { -fx-background-color: linear-gradient(to right top, #fff1eb 0%, #ace0f9 100%); } #text-field { -fx-background-color: #a9a9a9, white, white; -fx-background-insets: 0 -1 -1 -1, 0 0 0 0, 0 -1 3 -1; } #second-scene-bg { -fx-background-color: linear-gradient(to right top, #fff1eb 0%, #caeef6 100%); } #third-scene-bg { -fx-background-color: linear-gradient(to right top, #fff1eb 0%, #caeef6 100%); -fx-spacing: 15.0; -fx-padding: 15.0; } #modal { -fx-pref-width: 500.0; -fx-pref-height: 350.0; -fx-spacing: 12.0; -fx-padding:20.0; -fx-alignment: top-center; -fx-background-color: linear-gradient(to right top, #d9f5ff 0%, rgba(245, 250, 247, 0.15) 100%); } #status-label { -fx-text-fill: #1bc11b; -fx-font-size: 18.0; -fx-font-weight: bold; } #password-label { -fx-opacity: 0.3; } #vbox-organized{ -fx-spacing: 15.0; -fx-padding: 15.0; } /*styling main tableview*/ .table-view{ -fx-background-color: transparent; } .table-view:focused{ -fx-background-color: transparent; } .table-view .table-cell{ -fx-alignment: CENTER; } .table-view .column-header-background{ -fx-background-color: linear-gradient(#c0e7f5 15%, #ffffff 100%); } .table-view .column-header-background .label{ -fx-background-color: transparent; -fx-text-fill: #474444; -fx-font-weight: bold; } .table-view .column-header { -fx-background-color: rgba(0, 0, 0, 0); } .table-view .table-cell{ -fx-text-fill: #343131; } .table-row-cell{ -fx-background-color: -fx-table-cell-border-color, #ffffff; -fx-background-insets: 0, 0 0 1 0; -fx-padding: 0.1em; }
target/classes/styles.css
-fx-font-family: "Andale Mono, monospace"; -fx-font-size: 30px; -fx-alignment: center; } #info-label{ -fx-font-weight: bold; -fx-font-size: 20.0; } #workspace-button { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, #e22929), linear-gradient(white 0%, #f3f3f3 50%, #ececec 40%, #f2f2f2 80%); -fx-background-insets: 0 0 0 0, 0, 1; -fx-background-radius: 5, 5, 4; -fx-padding: 3 15 3 15; -fx-text-fill: #000000; -fx-font-weight: bold; -fx-font-size: 16px; } #workspace-button:hover { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, black), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); } #workspace-button:pressed { -fx-background-color: lightgrey; } #login-button { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, #0c9ee2), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); -fx-background-insets: 0 0 -1 0, 0, 1; -fx-background-radius: 5, 5, 4; -fx-padding: 3 30 3 30; -fx-text-fill: #000000; -fx-font-weight: normal; -fx-font-size: 15px; } #login-button:hover { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, black), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); } #login-button:pressed { -fx-background-color: lightgrey; } #dashboard-button { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, #e20c3e), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); -fx-background-insets: 0 0 -1 0, 0, 1; -fx-background-radius: 5, 5, 4; -fx-padding: 3 30 3 30; -fx-text-fill: #000000; -fx-font-weight: normal; -fx-font-size: 15px; } #tableview-button { -fx-background-color: rgba(0, 0, 0, 0.03), linear-gradient(#9a9a9a, #261010), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); -fx-background-insets: 0 0 -1 0, 0, 1; -fx-background-radius: 5, 5, 4; -fx-padding: 2 13 2 13; -fx-text-fill: #000000; -fx-font-weight: normal; -fx-font-size: 14px; } #dashboard-button:hover { -fx-background-color: rgba(0, 0, 0, 0.08), linear-gradient(#9a9a9a, black), linear-gradient(white 0%, #f3f3f3 50%, #ececec 50%, #f2f2f2 100%); } #dashboard-button:pressed { -fx-background-color: lightgrey; } #scene-bg { -fx-background-color: linear-gradient(to right top, #fff1eb 0%, #ace0f9 100%); } #text-field { -fx-background-color: #a9a9a9, white, white; -fx-background-insets: 0 -1 -1 -1, 0 0 0 0, 0 -1 3 -1; } #second-scene-bg { -fx-background-color: linear-gradient(to right top, #fff1eb 0%, #caeef6 100%); } #third-scene-bg { -fx-background-color: linear-gradient(to right top, #fff1eb 0%, #caeef6 100%); -fx-spacing: 15.0; -fx-padding: 15.0; } #modal { -fx-pref-width: 500.0; -fx-pref-height: 350.0; -fx-spacing: 12.0; -fx-padding:20.0; -fx-alignment: top-center; -fx-background-color: linear-gradient(to right top, #d9f5ff 0%, rgba(245, 250, 247, 0.15) 100%); } #status-label { -fx-text-fill: #1bc11b; -fx-font-size: 18.0; -fx-font-weight: bold; } #password-label { -fx-opacity: 0.3; } #vbox-organized{ -fx-spacing: 15.0; -fx-padding: 15.0; } /*styling main tableview*/ .table-view{ -fx-background-color: transparent; } .table-view:focused{ -fx-background-color: transparent; } .table-view .table-cell{ -fx-alignment: CENTER; } .table-view .column-header-background{ -fx-background-color: linear-gradient(#c0e7f5 15%, #ffffff 100%); } .table-view .column-header-background .label{ -fx-background-color: transparent; -fx-text-fill: #474444; -fx-font-weight: bold; } .table-view .column-header { -fx-background-color: rgba(0, 0, 0, 0); } .table-view .table-cell{ -fx-text-fill: #343131; } .table-row-cell{ -fx-background-color: -fx-table-cell-border-color, #ffffff; -fx-background-insets: 0, 0 0 1 0; -fx-padding: 0.1em; }
0.335242
0.119923
body { margin: 0; padding: 0; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/Lato-Reg-webfont.eot'); src: url('../fonts/lato/Lato-Reg-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/Lato-Reg-webfont.woff') format('woff'), url('../fonts/lato/Lato-Reg-webfont.ttf') format('truetype'), url('../fonts/lato/Lato-Reg-webfont.svg#LatoRegular') format('svg'); font-weight: 400; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/Lato-Bol-webfont.eot'); src: url('../fonts/lato/Lato-Bol-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/Lato-Bol-webfont.woff') format('woff'), url('../fonts/lato/Lato-Bol-webfont.ttf') format('truetype'), url('../fonts/lato/Lato-Bol-webfont.svg#LatoBold') format('svg'); font-weight: 700; font-style: normal; } * { margin: 0; padding: 0; border: 0; background: none; background-repeat: no-repeat; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { font-family: 'Lato', 'Roboto', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.4em; } /* Dialog */ .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 80; background: rgba(0,0,0,0.15); } .disableExtendedTracking { margin: 0.5em; } .dialog { background: #fff; border-radius: 4px; min-width: 240px; width: 80%; max-width: 600px; max-height: 90%; box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12); position: relative; margin: 0 auto; top: 50%; -webkit-transform: translateY(-50%); overflow: scroll; } .dialog_content { padding: 20px; overflow: hidden; } .dialog_content .title { font-size: 1.4em; line-height: 1.2em; font-weight: 700; margin-bottom: 0.8em; } .dialog_content .message { margin: 1em 0; } .dialog_content .buttons { text-align: right; margin-top: 1em; } .dialog_content .buttons .button { display: inline-block; background: #303030; border-radius: 4px; color: #fff; padding: 9px 20px 11px; text-align: center; margin: 4px; } .closeButton { display: inline-block; background: #303030; border-radius: 4px; color: #fff; padding: 9px 20px 11px; text-align: center; margin: 4px; } .dialog .button:hover { background: #707070; cursor: pointer; } /* Loading */ .loadingDiv, .loadingDivAug { width: 100%; height: 100%; position: absolute; margin: 0; padding: 0; text-align: center; } .indicatorDiv, .indicatorDivAug { display: inline-block; position: relative; top: 50%; transform: translateY(-50%); padding: 8px; width: 80px; height: 80px; color: #fff; text-shadow: 0 0 3px rgba(0,0,0,.8); } .indicatorDivAug { height: 120px; } .loadingDiv > .indicatorDiv > .spinner { width: 40px; height: 40px; margin: 0 auto 10px; } .loadingDiv > .indicatorDiv > .spinner > div { background-color: #ffbf2d; height: 100%; width: 6px; float: left; margin: 1px; box-shadow: 0 0 3px rgba(0,0,0,.8); -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; animation: sk-stretchdelay 1.2s infinite ease-in-out; } .loadingDiv > .indicatorDiv > .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .loadingDiv > .indicatorDiv > .spinner .rect3 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; } .loadingDiv > .indicatorDiv > .spinner .rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } .loadingDiv > .indicatorDiv > .spinner .rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; } @-webkit-keyframes sk-stretchdelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4) } 20% { -webkit-transform: scaleY(1.0) } } @keyframes sk-stretchdelay { 0%, 40%, 100% { transform: scaleY(0.4); -webkit-transform: scaleY(0.4); } 20% { transform: scaleY(1.0); -webkit-transform: scaleY(1.0); } } .loadingDivProgress { margin-top: 1em; } .loadingDivAug > .indicatorDivAug > .spinner { margin: 0 auto; width: 66px; height: 66px; position: relative; } .loadingDivAug > .indicatorDivAug > .spinner > .cube1, .cube2 { background-color: #ffbf2d; border-radius: 2px; width: 16px; height: 16px; position: absolute; top: 0; left: 0; box-shadow: 0 0 3px rgba(0,0,0,.8); -webkit-animation: sk-cubemove 1.8s infinite ease-in-out; animation: sk-cubemove 1.8s infinite ease-in-out; } .loadingDivAug > .indicatorDivAug > .spinner > .cube2 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } @-webkit-keyframes sk-cubemove { 25% { -webkit-transform: translateX(50px) rotate(-90deg) scale(0.5) } 50% { -webkit-transform: translateX(50px) translateY(50px) rotate(-180deg) } 75% { -webkit-transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5) } 100% { -webkit-transform: rotate(-360deg) } } @keyframes sk-cubemove { 25% { transform: translateX(50px) rotate(-90deg) scale(0.5); -webkit-transform: translateX(50px) rotate(-90deg) scale(0.5); } 50% { transform: translateX(50px) translateY(50px) rotate(-179deg); -webkit-transform: translateX(50px) translateY(50px) rotate(-179deg); } 50.1% { transform: translateX(50px) translateY(50px) rotate(-180deg); -webkit-transform: translateX(50px) translateY(50px) rotate(-180deg); } 75% { transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5); -webkit-transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5); } 100% { transform: rotate(-360deg); -webkit-transform: rotate(-360deg); } }
www/experience/styles/main.css
body { margin: 0; padding: 0; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/Lato-Reg-webfont.eot'); src: url('../fonts/lato/Lato-Reg-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/Lato-Reg-webfont.woff') format('woff'), url('../fonts/lato/Lato-Reg-webfont.ttf') format('truetype'), url('../fonts/lato/Lato-Reg-webfont.svg#LatoRegular') format('svg'); font-weight: 400; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/Lato-Bol-webfont.eot'); src: url('../fonts/lato/Lato-Bol-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/Lato-Bol-webfont.woff') format('woff'), url('../fonts/lato/Lato-Bol-webfont.ttf') format('truetype'), url('../fonts/lato/Lato-Bol-webfont.svg#LatoBold') format('svg'); font-weight: 700; font-style: normal; } * { margin: 0; padding: 0; border: 0; background: none; background-repeat: no-repeat; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { font-family: 'Lato', 'Roboto', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.4em; } /* Dialog */ .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 80; background: rgba(0,0,0,0.15); } .disableExtendedTracking { margin: 0.5em; } .dialog { background: #fff; border-radius: 4px; min-width: 240px; width: 80%; max-width: 600px; max-height: 90%; box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12); position: relative; margin: 0 auto; top: 50%; -webkit-transform: translateY(-50%); overflow: scroll; } .dialog_content { padding: 20px; overflow: hidden; } .dialog_content .title { font-size: 1.4em; line-height: 1.2em; font-weight: 700; margin-bottom: 0.8em; } .dialog_content .message { margin: 1em 0; } .dialog_content .buttons { text-align: right; margin-top: 1em; } .dialog_content .buttons .button { display: inline-block; background: #303030; border-radius: 4px; color: #fff; padding: 9px 20px 11px; text-align: center; margin: 4px; } .closeButton { display: inline-block; background: #303030; border-radius: 4px; color: #fff; padding: 9px 20px 11px; text-align: center; margin: 4px; } .dialog .button:hover { background: #707070; cursor: pointer; } /* Loading */ .loadingDiv, .loadingDivAug { width: 100%; height: 100%; position: absolute; margin: 0; padding: 0; text-align: center; } .indicatorDiv, .indicatorDivAug { display: inline-block; position: relative; top: 50%; transform: translateY(-50%); padding: 8px; width: 80px; height: 80px; color: #fff; text-shadow: 0 0 3px rgba(0,0,0,.8); } .indicatorDivAug { height: 120px; } .loadingDiv > .indicatorDiv > .spinner { width: 40px; height: 40px; margin: 0 auto 10px; } .loadingDiv > .indicatorDiv > .spinner > div { background-color: #ffbf2d; height: 100%; width: 6px; float: left; margin: 1px; box-shadow: 0 0 3px rgba(0,0,0,.8); -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; animation: sk-stretchdelay 1.2s infinite ease-in-out; } .loadingDiv > .indicatorDiv > .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .loadingDiv > .indicatorDiv > .spinner .rect3 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; } .loadingDiv > .indicatorDiv > .spinner .rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } .loadingDiv > .indicatorDiv > .spinner .rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; } @-webkit-keyframes sk-stretchdelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4) } 20% { -webkit-transform: scaleY(1.0) } } @keyframes sk-stretchdelay { 0%, 40%, 100% { transform: scaleY(0.4); -webkit-transform: scaleY(0.4); } 20% { transform: scaleY(1.0); -webkit-transform: scaleY(1.0); } } .loadingDivProgress { margin-top: 1em; } .loadingDivAug > .indicatorDivAug > .spinner { margin: 0 auto; width: 66px; height: 66px; position: relative; } .loadingDivAug > .indicatorDivAug > .spinner > .cube1, .cube2 { background-color: #ffbf2d; border-radius: 2px; width: 16px; height: 16px; position: absolute; top: 0; left: 0; box-shadow: 0 0 3px rgba(0,0,0,.8); -webkit-animation: sk-cubemove 1.8s infinite ease-in-out; animation: sk-cubemove 1.8s infinite ease-in-out; } .loadingDivAug > .indicatorDivAug > .spinner > .cube2 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } @-webkit-keyframes sk-cubemove { 25% { -webkit-transform: translateX(50px) rotate(-90deg) scale(0.5) } 50% { -webkit-transform: translateX(50px) translateY(50px) rotate(-180deg) } 75% { -webkit-transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5) } 100% { -webkit-transform: rotate(-360deg) } } @keyframes sk-cubemove { 25% { transform: translateX(50px) rotate(-90deg) scale(0.5); -webkit-transform: translateX(50px) rotate(-90deg) scale(0.5); } 50% { transform: translateX(50px) translateY(50px) rotate(-179deg); -webkit-transform: translateX(50px) translateY(50px) rotate(-179deg); } 50.1% { transform: translateX(50px) translateY(50px) rotate(-180deg); -webkit-transform: translateX(50px) translateY(50px) rotate(-180deg); } 75% { transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5); -webkit-transform: translateX(0px) translateY(50px) rotate(-270deg) scale(0.5); } 100% { transform: rotate(-360deg); -webkit-transform: rotate(-360deg); } }
0.387806
0.051774
---------------------------- FontAwesome Icons - Uses Unicode, see Cheatsheet here: http://fortawesome.github.io/Font-Awesome/cheatsheet/ ---------------------------- */ .fa { font-family:"FontAwesome"; display:inline-block; font-style:normal; font-weight:normal; -webkit-font-smoothing: antialiased; } /*---------------------------- 1 General Styling Includes: links, lists, buttons and all consistant elements ---------------------------- */ a {text-decoration:none;} a:hover { color:#6b7275; text-decoration:none; } li {list-style:none;} p { line-height:23px; } a, input, button { -ms-touch-action: none !important; } /*---------------------------- Buttons ---------------------------- */ .w_btn { background:white; font-family:"Montserrat", sans-serif; padding:12px 21px; font-size:13px; color:#121415; border-radius:4px; display:inline-block; text-transform:uppercase; } .w_btn:hover { background:#dde2e5; color:#121415; transition:.1s all ease-in-out; -webkit-transition:.1s all ease-in-out; -moz-transition:.1s all ease-in-out; -o-transition:.1s all ease-in-out; } .b_btn { background:#0e0f10; font-family:"Montserrat", sans-serif; padding:12px 21px; font-size:13px; color:#fff; border-radius:4px; display:inline-block; text-transform:uppercase; } .b_btn:hover { background:#3b3e41; color:#fff; transition:.1s all ease-in-out; -webkit-transition:.1s all ease-in-out; -moz-transition:.1s all ease-in-out; -o-transition:.1s all ease-in-out; } /*---------------------------- Banner Header Elements ---------------------------- */ header { width:100%; background:#151a1d; /*background:url(../img/main_top_bg.jpg) no-repeat center top;*/ background-size:cover; } .top_interface { padding:84px 0; } .header_tag { text-align:center; } .header_tag h1 { font-family:"Roboto", sans-serif; font-weight:100; color:white; font-size:45px; margin-top:0; } .header_tag h2 { font-family:"Montserrat", sans-serif; font-size:13px; font-weight:400; color:white; text-transform:uppercase; letter-spacing:2px; line-height:24px; } .header_tag a { margin:30px 8px 0; } /*---------------------------- Text Logo ---------------------------- */ .logo > .text-logo { font-family:"Montserrat", sans-serif; font-size:23px; color:white; font-weight:400; text-transform:uppercase; display:inline-block; } .logo > .text-logo b { font-weight:700; /* Bold part of your text */ } /*---------------------------- Navigation Menu ---------------------------- */ nav.main_navigation { float:right; margin-top:4px; } nav.main_navigation ul li { float:left; list-style:none; } nav.main_navigation ul li a{ color:white; font-family:"Montserrat", sans-serif; margin-left:40px; font-size:12px; text-transform:uppercase; text-decoration:none; } nav.main_navigation ul i { color:white; font-size:18px; display:none; margin-top:14px; margin-bottom:10px; } /*---------------------------- Phone Navigation Menu ---------------------------- */ .phone-menu { font-size:30px; color:white; float:right; margin-right:20px; } .phone-menu:hover { cursor:pointer; } /*---------------------------- Phone in Header - With Text Elements ---------------------------- */ .phone_preview { margin-top:70px; } .banner_phone { text-align:center; background:url(../img/banner_device.png) top center no-repeat; height:400px; } .phone_preview .regular_text_left h3, .phone_preview .regular_text_right h3 { font-size:25px; font-family:"Roboto", sans-serif; color:white; font-weight:100; margin-top:70px; } .phone_preview .regular_text_left p, .phone_preview .regular_text_right p { color:white; font-family:"Roboto", sans-serif; font-size:14px; font-weight:300; } .phone_preview .regular_text_left { text-align:right; } /*---------------------------- General Styling - Section ---------------------------- */ /*section { background:#fff; padding:84px 0; }*/ section h1 { font-family: -webkit-body; font-size: 24px; /*font:24px "Open Sans", sans-serif;*/ /*font:24px "Montserrat",sans-serif;*/ color:#0e0f10; text-transform:uppercase; margin-top:0; } section h2 { font-family: -webkit-body; /*font-size: */ /*font:25px "Open Sans", sans-serif;*/ font-size:25px; color:#0e0f10; font-weight:200; margin-top:0; /*display:inline-block;*/ } section h2 b { font-weight:400; } section p { color:#a4a7ab; font-size:13px; } section .title h2 { display:block; } section .title { text-align:center; padding:0 20px 30px; } section .title p { max-width:430px; display:inline-block; } /*---------------------------- App Overview Section ---------------------------- */ section.app_overview { overflow:hidden; } section.app_overview i.fa { font-size:33px; color:#464e54; position:relative; top:-6px; } section.app_overview h2 { margin-left:10px; } section.app_overview h2 small { display:block; font:11px "Montserrat", sans-serif; text-transform:uppercase; color:#0e0f10; } section.app_overview .list-items div { margin-top:40px; } section.app_overview .title { margin-bottom:-40px; } /*---------------------------- How does it Work Section ---------------------------- */ section.work { background:#f5f5f5; padding-bottom:0; padding-top: 84px; } section.work .center_phone { height:595px; background:url(../img/center_phone.png) top center no-repeat; margin:0 auto; padding-top:82px; position:relative; width: 730px; left: 50%; margin-left: -365px; } .phone_previews { overflow:hidden; padding-top:70px; } /*---------------------------- Get the App - Bar ---------------------------- */ .promotion_bar { background:url(../img/grey_shader.png); width:100%; padding:50px 0; position:relative; margin-top:-126px; text-align:center; } .promotion_bar a { display:inline-block; margin-left:25px; } .promotion_bar h4 { display:inline-block; text-transform:uppercase; font-size:17px; font-family:"Montserrat", sans-serif; } /*---------------------------- Features ---------------------------- */ section.features { padding-bottom:0; } .feature-phone { background:url(../img/feature-phone.png) center no-repeat; height:600px; } section.features .container { padding:0; } section.features .title { text-align:left; margin-top:90px; padding:0; } ul.feature-list { margin:0; padding:5px 0 25px; } ul.feature-list li { text-transform: uppercase; padding: 7px 0; float: left; width: 50%; font-size: 12px; font-family: "Montserrat", sans-serif; } ul.feature-list li i { margin-right:10px; } .underline-p { display:inline-block; text-decoration:underline; font:11px "Montserrat", sans-serif; text-transform:uppercase; color:#464e54; margin-left:20px; } /*---------------------------- Close Up ---------------------------- */ section.close-up { border-top:1px solid #e2e2e2; padding-bottom:0; overflow:hidden; } section.close-up .landscape-phone { width:830px; margin:0 auto 10px; position: relative; left: 50%; margin-left: -415px; } .magni_con { position: relative; width: 830px !important; height: auto; } .magni_con img { width:100%; box-shadow:none !important; } #mlens_wrapper_0 { width:100% !important; } .ls-phone { width:100%; display:none; } .ls-phone img { width:100%; } /*---------------------------- Gallery ---------------------------- */ section.gallery { border-top:1px solid #e2e2e2; overflow:hidden; padding-bottom: 86px; } #gallery-images .owl-item { text-align:center; padding-bottom:4px; } #gallery-images > div img { width:95%; box-shadow:0 2px 4px rgba(0,0,0,0.4); } div.dark_rounded .pp_content { background:0; } a.pp_close { text-indent:0; color:white; font-size:30px; background:0 !important; z-index:9999; text-shadow:0px 2px 5px black; right:-50px; } /* Slider Button Styling // Gallery */ .owl-controls { text-align:center; height:35px; } section.gallery .owl-buttons { font-family:"FontAwesome"; display:inline-block; font-style:normal; font-weight:normal; -webkit-font-smoothing: antialiased; font-size:33px; bottom:15px; z-index:9000; margin: 0 auto; text-align:center; width: 300px; position: absolute; left: 50%; margin-left: -150px; } section.gallery .owl-buttons div { color:#a3a8ac; transition:.3s all ease-in-out; -webkit-transition:.3s all ease-in-out; -moz-transition:.3s all ease-in-out; text-align:center; } section.gallery .owl-buttons div.owl-prev { display:inline-block; left:20px; position:absolute; } section.gallery .owl-buttons div.owl-next { display:inline-block; right:20px; position:absolute; } section.gallery .owl-buttons div:hover { color:#464e54; } /* Pagination Styling // Gallery */ #gallery-images .owl-pagination div { border-radius:10px; width:10px; height:10px; background:#cfcfcf; float:left; margin:0 5px; } #gallery-images .owl-pagination { position: relative; margin:0 auto; display:inline-block; padding:0; bottom:-35px; } #gallery-images .owl-pagination div.active { background:transparent; border:2px solid #464e54; height:12px; width:12px; border-radius:20px; margin-top:-1px; } /*---------------------------- Newsletter ---------------------------- */ section.newsletter { background:url(../img/newsletter-bg.jpg) top center no-repeat; background-size:cover; } section.newsletter .title { padding-bottom:0; } section.newsletter form { margin-top:13px; } section.newsletter h1, section.newsletter h2 { color:white; text-align:left; } section.newsletter h2 { font-size:22px; } section.newsletter input { background:rgba(217,222,226,0.5); border-radius:5px; padding:12px 16px; font-size:12px; text-transform:uppercase; border:0; color:#fff; width:160px; margin-right:8px; font:12px "Montserrat", sans-serif; } section.newsletter button { border:none; } /* Placeholder Styling */ ::-webkit-input-placeholder { color:#e2e3e4; } :-moz-placeholder { color:#e2e3e4; } ::-moz-placeholder { color:#e2e3e4; } :-ms-input-placeholder { color:#e2e3e4; } /*---------------------------- Footer ---------------------------- */ /*footer { padding:69px 0 59px; text-align:center; background:#0e0f10; } footer .text-logo { margin-right:20px; position:relative; bottom:-3px; } footer .social_media { padding:40px 0 26px; color:white; } footer .social_media i { margin:0 19px; font-size:30px; } footer p { color:#a4a7ab; } */ /*section { overflow:hidden; }
app/webroot/css/stylesheet.css
---------------------------- FontAwesome Icons - Uses Unicode, see Cheatsheet here: http://fortawesome.github.io/Font-Awesome/cheatsheet/ ---------------------------- */ .fa { font-family:"FontAwesome"; display:inline-block; font-style:normal; font-weight:normal; -webkit-font-smoothing: antialiased; } /*---------------------------- 1 General Styling Includes: links, lists, buttons and all consistant elements ---------------------------- */ a {text-decoration:none;} a:hover { color:#6b7275; text-decoration:none; } li {list-style:none;} p { line-height:23px; } a, input, button { -ms-touch-action: none !important; } /*---------------------------- Buttons ---------------------------- */ .w_btn { background:white; font-family:"Montserrat", sans-serif; padding:12px 21px; font-size:13px; color:#121415; border-radius:4px; display:inline-block; text-transform:uppercase; } .w_btn:hover { background:#dde2e5; color:#121415; transition:.1s all ease-in-out; -webkit-transition:.1s all ease-in-out; -moz-transition:.1s all ease-in-out; -o-transition:.1s all ease-in-out; } .b_btn { background:#0e0f10; font-family:"Montserrat", sans-serif; padding:12px 21px; font-size:13px; color:#fff; border-radius:4px; display:inline-block; text-transform:uppercase; } .b_btn:hover { background:#3b3e41; color:#fff; transition:.1s all ease-in-out; -webkit-transition:.1s all ease-in-out; -moz-transition:.1s all ease-in-out; -o-transition:.1s all ease-in-out; } /*---------------------------- Banner Header Elements ---------------------------- */ header { width:100%; background:#151a1d; /*background:url(../img/main_top_bg.jpg) no-repeat center top;*/ background-size:cover; } .top_interface { padding:84px 0; } .header_tag { text-align:center; } .header_tag h1 { font-family:"Roboto", sans-serif; font-weight:100; color:white; font-size:45px; margin-top:0; } .header_tag h2 { font-family:"Montserrat", sans-serif; font-size:13px; font-weight:400; color:white; text-transform:uppercase; letter-spacing:2px; line-height:24px; } .header_tag a { margin:30px 8px 0; } /*---------------------------- Text Logo ---------------------------- */ .logo > .text-logo { font-family:"Montserrat", sans-serif; font-size:23px; color:white; font-weight:400; text-transform:uppercase; display:inline-block; } .logo > .text-logo b { font-weight:700; /* Bold part of your text */ } /*---------------------------- Navigation Menu ---------------------------- */ nav.main_navigation { float:right; margin-top:4px; } nav.main_navigation ul li { float:left; list-style:none; } nav.main_navigation ul li a{ color:white; font-family:"Montserrat", sans-serif; margin-left:40px; font-size:12px; text-transform:uppercase; text-decoration:none; } nav.main_navigation ul i { color:white; font-size:18px; display:none; margin-top:14px; margin-bottom:10px; } /*---------------------------- Phone Navigation Menu ---------------------------- */ .phone-menu { font-size:30px; color:white; float:right; margin-right:20px; } .phone-menu:hover { cursor:pointer; } /*---------------------------- Phone in Header - With Text Elements ---------------------------- */ .phone_preview { margin-top:70px; } .banner_phone { text-align:center; background:url(../img/banner_device.png) top center no-repeat; height:400px; } .phone_preview .regular_text_left h3, .phone_preview .regular_text_right h3 { font-size:25px; font-family:"Roboto", sans-serif; color:white; font-weight:100; margin-top:70px; } .phone_preview .regular_text_left p, .phone_preview .regular_text_right p { color:white; font-family:"Roboto", sans-serif; font-size:14px; font-weight:300; } .phone_preview .regular_text_left { text-align:right; } /*---------------------------- General Styling - Section ---------------------------- */ /*section { background:#fff; padding:84px 0; }*/ section h1 { font-family: -webkit-body; font-size: 24px; /*font:24px "Open Sans", sans-serif;*/ /*font:24px "Montserrat",sans-serif;*/ color:#0e0f10; text-transform:uppercase; margin-top:0; } section h2 { font-family: -webkit-body; /*font-size: */ /*font:25px "Open Sans", sans-serif;*/ font-size:25px; color:#0e0f10; font-weight:200; margin-top:0; /*display:inline-block;*/ } section h2 b { font-weight:400; } section p { color:#a4a7ab; font-size:13px; } section .title h2 { display:block; } section .title { text-align:center; padding:0 20px 30px; } section .title p { max-width:430px; display:inline-block; } /*---------------------------- App Overview Section ---------------------------- */ section.app_overview { overflow:hidden; } section.app_overview i.fa { font-size:33px; color:#464e54; position:relative; top:-6px; } section.app_overview h2 { margin-left:10px; } section.app_overview h2 small { display:block; font:11px "Montserrat", sans-serif; text-transform:uppercase; color:#0e0f10; } section.app_overview .list-items div { margin-top:40px; } section.app_overview .title { margin-bottom:-40px; } /*---------------------------- How does it Work Section ---------------------------- */ section.work { background:#f5f5f5; padding-bottom:0; padding-top: 84px; } section.work .center_phone { height:595px; background:url(../img/center_phone.png) top center no-repeat; margin:0 auto; padding-top:82px; position:relative; width: 730px; left: 50%; margin-left: -365px; } .phone_previews { overflow:hidden; padding-top:70px; } /*---------------------------- Get the App - Bar ---------------------------- */ .promotion_bar { background:url(../img/grey_shader.png); width:100%; padding:50px 0; position:relative; margin-top:-126px; text-align:center; } .promotion_bar a { display:inline-block; margin-left:25px; } .promotion_bar h4 { display:inline-block; text-transform:uppercase; font-size:17px; font-family:"Montserrat", sans-serif; } /*---------------------------- Features ---------------------------- */ section.features { padding-bottom:0; } .feature-phone { background:url(../img/feature-phone.png) center no-repeat; height:600px; } section.features .container { padding:0; } section.features .title { text-align:left; margin-top:90px; padding:0; } ul.feature-list { margin:0; padding:5px 0 25px; } ul.feature-list li { text-transform: uppercase; padding: 7px 0; float: left; width: 50%; font-size: 12px; font-family: "Montserrat", sans-serif; } ul.feature-list li i { margin-right:10px; } .underline-p { display:inline-block; text-decoration:underline; font:11px "Montserrat", sans-serif; text-transform:uppercase; color:#464e54; margin-left:20px; } /*---------------------------- Close Up ---------------------------- */ section.close-up { border-top:1px solid #e2e2e2; padding-bottom:0; overflow:hidden; } section.close-up .landscape-phone { width:830px; margin:0 auto 10px; position: relative; left: 50%; margin-left: -415px; } .magni_con { position: relative; width: 830px !important; height: auto; } .magni_con img { width:100%; box-shadow:none !important; } #mlens_wrapper_0 { width:100% !important; } .ls-phone { width:100%; display:none; } .ls-phone img { width:100%; } /*---------------------------- Gallery ---------------------------- */ section.gallery { border-top:1px solid #e2e2e2; overflow:hidden; padding-bottom: 86px; } #gallery-images .owl-item { text-align:center; padding-bottom:4px; } #gallery-images > div img { width:95%; box-shadow:0 2px 4px rgba(0,0,0,0.4); } div.dark_rounded .pp_content { background:0; } a.pp_close { text-indent:0; color:white; font-size:30px; background:0 !important; z-index:9999; text-shadow:0px 2px 5px black; right:-50px; } /* Slider Button Styling // Gallery */ .owl-controls { text-align:center; height:35px; } section.gallery .owl-buttons { font-family:"FontAwesome"; display:inline-block; font-style:normal; font-weight:normal; -webkit-font-smoothing: antialiased; font-size:33px; bottom:15px; z-index:9000; margin: 0 auto; text-align:center; width: 300px; position: absolute; left: 50%; margin-left: -150px; } section.gallery .owl-buttons div { color:#a3a8ac; transition:.3s all ease-in-out; -webkit-transition:.3s all ease-in-out; -moz-transition:.3s all ease-in-out; text-align:center; } section.gallery .owl-buttons div.owl-prev { display:inline-block; left:20px; position:absolute; } section.gallery .owl-buttons div.owl-next { display:inline-block; right:20px; position:absolute; } section.gallery .owl-buttons div:hover { color:#464e54; } /* Pagination Styling // Gallery */ #gallery-images .owl-pagination div { border-radius:10px; width:10px; height:10px; background:#cfcfcf; float:left; margin:0 5px; } #gallery-images .owl-pagination { position: relative; margin:0 auto; display:inline-block; padding:0; bottom:-35px; } #gallery-images .owl-pagination div.active { background:transparent; border:2px solid #464e54; height:12px; width:12px; border-radius:20px; margin-top:-1px; } /*---------------------------- Newsletter ---------------------------- */ section.newsletter { background:url(../img/newsletter-bg.jpg) top center no-repeat; background-size:cover; } section.newsletter .title { padding-bottom:0; } section.newsletter form { margin-top:13px; } section.newsletter h1, section.newsletter h2 { color:white; text-align:left; } section.newsletter h2 { font-size:22px; } section.newsletter input { background:rgba(217,222,226,0.5); border-radius:5px; padding:12px 16px; font-size:12px; text-transform:uppercase; border:0; color:#fff; width:160px; margin-right:8px; font:12px "Montserrat", sans-serif; } section.newsletter button { border:none; } /* Placeholder Styling */ ::-webkit-input-placeholder { color:#e2e3e4; } :-moz-placeholder { color:#e2e3e4; } ::-moz-placeholder { color:#e2e3e4; } :-ms-input-placeholder { color:#e2e3e4; } /*---------------------------- Footer ---------------------------- */ /*footer { padding:69px 0 59px; text-align:center; background:#0e0f10; } footer .text-logo { margin-right:20px; position:relative; bottom:-3px; } footer .social_media { padding:40px 0 26px; color:white; } footer .social_media i { margin:0 19px; font-size:30px; } footer p { color:#a4a7ab; } */ /*section { overflow:hidden; }
0.349866
0.053552
.container { height: 0px; } .list-body { background-color: #77ACF1; margin-top: 120px; margin-right: 25%; margin-bottom: 190px; border-color: #e0f2ff; border-width: 5px; border-radius: 8px; border-style: solid; padding: 25px; box-shadow: 0 8px 10px grey; } .list-body .pencil-icon { font-size: 32px; color: #e0f2ff; margin-left: 46%; } .list-body h1 { color: white; font-weight: bold; margin-left: 43.5%; } .task-body { background-color: #adcdff; margin-top: 20px; border-color: #e0f2ff; border-width: 5px; border-radius: 8px; border-style: solid; padding: 25px; padding-top: 0px; box-shadow: 0 0px 0px grey; } .task-body:hover { box-shadow: 0 2px 10px grey; animation-name: project_body_animation; animation-duration: 0.5s; } @keyframes project_body_animation { from {box-shadow: 0 0 0px grey;} to {box-shadow: 0 2px 10px grey;} } .task-body h2 { color: #1d2ee0; font-weight: bold; } .task-body .task-description p { color: #606cdb; font-size: 24px; margin-left: 20px; } .task-doer { color: #214994; font-size: 16px; } .task-project { color: #2019a6; font-size: 16px; } .date-submit { color: #2d929c; font-size: 16px; width: 50%; display: inline-block; } .task-delete { width: 14%; display: inline-block; float: none; } .task-delete .btn { font-size: 20px; } .task-is-done { width: 14%; display: inline-block; } .task-is-done .btn { font-size: 20px; } .no-task h2 { color: white; margin-left: 41%; } .no-task a { color: white; padding: 12px; background-color: #3579b5; border-radius: 10px; margin-left: 42%; font-size: 24px; } .no-task a:hover { color: white; background-color: #0061b5; box-shadow: 0 0.5px 10px grey; } .no-task a:visited { color: white; } @media only screen and (max-width: 1200px) { .list-body { margin-left: 20%; } .list-body h1 { margin-left: 39%; } .list-body .pencil-icon { margin-left: 44%; } .task-delete { float: right; margin-right: 20%; } .no-task h2 { margin-left: 33%; } .no-task a { margin-left: 36%; } } @media only screen and (max-width: 550px) { .list-body { width: 100%; margin-left: 0%; } .list-body h1 { margin-left: 39%; font-size: 28px; } .list-body .pencil-icon { margin-left: 42%; } .no-task h2 { margin-left: 29%; } .no-task a { margin-left: 32%; } .task-delete { margin-right: 30%; } .task-delete .btn { font-size: 14px; } .task-is-done .btn { font-size: 14px; } .date-submit { width: 100%; font-size: 14px; } }
todo/static/todo/task_list.css
.container { height: 0px; } .list-body { background-color: #77ACF1; margin-top: 120px; margin-right: 25%; margin-bottom: 190px; border-color: #e0f2ff; border-width: 5px; border-radius: 8px; border-style: solid; padding: 25px; box-shadow: 0 8px 10px grey; } .list-body .pencil-icon { font-size: 32px; color: #e0f2ff; margin-left: 46%; } .list-body h1 { color: white; font-weight: bold; margin-left: 43.5%; } .task-body { background-color: #adcdff; margin-top: 20px; border-color: #e0f2ff; border-width: 5px; border-radius: 8px; border-style: solid; padding: 25px; padding-top: 0px; box-shadow: 0 0px 0px grey; } .task-body:hover { box-shadow: 0 2px 10px grey; animation-name: project_body_animation; animation-duration: 0.5s; } @keyframes project_body_animation { from {box-shadow: 0 0 0px grey;} to {box-shadow: 0 2px 10px grey;} } .task-body h2 { color: #1d2ee0; font-weight: bold; } .task-body .task-description p { color: #606cdb; font-size: 24px; margin-left: 20px; } .task-doer { color: #214994; font-size: 16px; } .task-project { color: #2019a6; font-size: 16px; } .date-submit { color: #2d929c; font-size: 16px; width: 50%; display: inline-block; } .task-delete { width: 14%; display: inline-block; float: none; } .task-delete .btn { font-size: 20px; } .task-is-done { width: 14%; display: inline-block; } .task-is-done .btn { font-size: 20px; } .no-task h2 { color: white; margin-left: 41%; } .no-task a { color: white; padding: 12px; background-color: #3579b5; border-radius: 10px; margin-left: 42%; font-size: 24px; } .no-task a:hover { color: white; background-color: #0061b5; box-shadow: 0 0.5px 10px grey; } .no-task a:visited { color: white; } @media only screen and (max-width: 1200px) { .list-body { margin-left: 20%; } .list-body h1 { margin-left: 39%; } .list-body .pencil-icon { margin-left: 44%; } .task-delete { float: right; margin-right: 20%; } .no-task h2 { margin-left: 33%; } .no-task a { margin-left: 36%; } } @media only screen and (max-width: 550px) { .list-body { width: 100%; margin-left: 0%; } .list-body h1 { margin-left: 39%; font-size: 28px; } .list-body .pencil-icon { margin-left: 42%; } .no-task h2 { margin-left: 29%; } .no-task a { margin-left: 32%; } .task-delete { margin-right: 30%; } .task-delete .btn { font-size: 14px; } .task-is-done .btn { font-size: 14px; } .date-submit { width: 100%; font-size: 14px; } }
0.408749
0.099121
body { background:#ebeef0; font-size:1.3em; } .panel { box-shadow: 0 2px 0 rgba(0,0,0,0.075); border-radius: 0; border: 0; margin-bottom: 0px; } .panel .panel-heading, .panel>:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .panel-heading { position: relative; height: 50px; padding: 0; border-bottom:1px solid #eee; } .panel-control { height: 100%; position: relative; float: right; padding: 0 15px; } .panel-title { font-weight: normal; padding: 0 20px 0 20px; font-size: 1.416em; line-height: 50px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .panel-control>.btn:last-child, .panel-control>.btn-group:last-child>.btn:first-child { border-bottom-right-radius: 0; } .panel-control .btn, .panel-control .dropdown-toggle.btn { border: 0; } .panel-footer { padding-bottom:10px; } .nano { position: relative; width: 100%; height: 100%; overflow: hidden; } .nano>.nano-content { position: absolute; overflow: scroll; overflow-x: hidden; top: 0; right: 0; bottom: 0; left: 0; } .pad-all { padding: 15px; } .mar-btm { margin-bottom: 15px; } .media-block .media-left { display: block; float: left; } .media-block .media-body { display: block; overflow: hidden; width: auto; } .pad-hor { padding-left: 15px; padding-right: 15px; } .media-block .media-right { float: right; } .btn-primary, .btn-primary:focus, .btn-hover-primary:hover, .btn-hover-primary:active, .btn-hover-primary.active, .btn.btn-active-primary:active, .btn.btn-active-primary.active, .dropdown.open>.btn.btn-active-primary, .btn-group.open .dropdown-toggle.btn.btn-active-primary { background-color: #579ddb; border-color: #5fa2dd; color: #fff !important; } .btn { cursor: pointer; color: inherit; padding: 6px 12px; border-radius: 0; border: 1px solid 0; font-size: 11px; line-height: 1.42857; vertical-align: middle; -webkit-transition: all .25s; transition: all .25s; } .form-control { font-size: 11px; height: 100%; border-radius: 0; box-shadow: none; border: 1px solid #e9e9e9; transition-duration: .5s; } .nano>.nano-pane { background-color: rgba(0,0,0,0.1); position: absolute; width: 5px; right: 0; top: 0; bottom: 0; opacity: 0; -webkit-transition: all .7s; transition: all .7s; } #content-outter { width:100% !important; padding-right:0px !important; padding-left:0px !important; } .box { float:none !important; margin:0 auto !important; } .via-popover li a { padding-top:2px !important; padding-bottom:2px !important; } #copyright { color:#888; margin:0 auto; font-size:1.0em; max-width:600px; } #copyright div { white-space:nowrap; text-overflow:ellipsis; overflow:hidden; } #copyright a { } /* media queries */ @media (max-width: 490px) { #content-outter { padding-right:0px !important; padding-left:0px !important; } #content-box, .panel-footer .row > div { padding-right:0px !important; padding-left:0px !important; } .col-md-12 { padding-right:0px !important; padding-left:0px !important; } }
public/css/always.css
body { background:#ebeef0; font-size:1.3em; } .panel { box-shadow: 0 2px 0 rgba(0,0,0,0.075); border-radius: 0; border: 0; margin-bottom: 0px; } .panel .panel-heading, .panel>:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .panel-heading { position: relative; height: 50px; padding: 0; border-bottom:1px solid #eee; } .panel-control { height: 100%; position: relative; float: right; padding: 0 15px; } .panel-title { font-weight: normal; padding: 0 20px 0 20px; font-size: 1.416em; line-height: 50px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .panel-control>.btn:last-child, .panel-control>.btn-group:last-child>.btn:first-child { border-bottom-right-radius: 0; } .panel-control .btn, .panel-control .dropdown-toggle.btn { border: 0; } .panel-footer { padding-bottom:10px; } .nano { position: relative; width: 100%; height: 100%; overflow: hidden; } .nano>.nano-content { position: absolute; overflow: scroll; overflow-x: hidden; top: 0; right: 0; bottom: 0; left: 0; } .pad-all { padding: 15px; } .mar-btm { margin-bottom: 15px; } .media-block .media-left { display: block; float: left; } .media-block .media-body { display: block; overflow: hidden; width: auto; } .pad-hor { padding-left: 15px; padding-right: 15px; } .media-block .media-right { float: right; } .btn-primary, .btn-primary:focus, .btn-hover-primary:hover, .btn-hover-primary:active, .btn-hover-primary.active, .btn.btn-active-primary:active, .btn.btn-active-primary.active, .dropdown.open>.btn.btn-active-primary, .btn-group.open .dropdown-toggle.btn.btn-active-primary { background-color: #579ddb; border-color: #5fa2dd; color: #fff !important; } .btn { cursor: pointer; color: inherit; padding: 6px 12px; border-radius: 0; border: 1px solid 0; font-size: 11px; line-height: 1.42857; vertical-align: middle; -webkit-transition: all .25s; transition: all .25s; } .form-control { font-size: 11px; height: 100%; border-radius: 0; box-shadow: none; border: 1px solid #e9e9e9; transition-duration: .5s; } .nano>.nano-pane { background-color: rgba(0,0,0,0.1); position: absolute; width: 5px; right: 0; top: 0; bottom: 0; opacity: 0; -webkit-transition: all .7s; transition: all .7s; } #content-outter { width:100% !important; padding-right:0px !important; padding-left:0px !important; } .box { float:none !important; margin:0 auto !important; } .via-popover li a { padding-top:2px !important; padding-bottom:2px !important; } #copyright { color:#888; margin:0 auto; font-size:1.0em; max-width:600px; } #copyright div { white-space:nowrap; text-overflow:ellipsis; overflow:hidden; } #copyright a { } /* media queries */ @media (max-width: 490px) { #content-outter { padding-right:0px !important; padding-left:0px !important; } #content-box, .panel-footer .row > div { padding-right:0px !important; padding-left:0px !important; } .col-md-12 { padding-right:0px !important; padding-left:0px !important; } }
0.480722
0.099689
@import url('https://fonts.googleapis.com/css?family=Abril+Fatface'); @import url('https://fonts.googleapis.com/css?family=Crimson+Text'); /* Colours for the whole theme are set here and called from these variables */ :root { --main-bg-colour: #858386; --secondary-bg-colour: #d6d4d2 ; --main-fg-colour: black; --secondary-fg-colour: #333333; --text-bg-colour: #FDF8F3; --text-mainfg-colour: #262728; --text-secondaryfg-colour: #333333; --accent-colour: #181828; } /* set a default text style if not otherwise styled sets page background colour */ body { font-family: "Crimson Text", serif; color: var(--text-mainfg-colour); background-color: var(--main-bg-colour); } /* sets links not to have underlines except when cursor hovering over*/ a { text-decoration: none; color: var(--text-secondaryfg-colour); } a:hover { text-decoration: underline; } /* set styles for the homepage */ .homepage-row, .homepage-row-pages { background-color: var(--secondary-bg-colour); padding: 0px; margin: 3em; } .homepage-row p { margin: 2em; margin-top: 0.5em; } .homepage-row h3 { text-align: center; padding: 0%; margin-bottom: 0%; color: var(--text-secondaryfg-colour); } .homepage-row h2 { font-family: "Abril Fatface"; font-size: 2.5em; padding: 0%; margin: 0%; text-align: center; color: var(--text-secondaryfg-colour); } .homepage-row-pages h3 { text-align: center; padding: 0%; margin-bottom: 0%; } .homepage-row-pages h2 { font-family: "Abril Fatface"; font-size: 2.5em; padding: 0%; margin: 0%; text-align: center; color: var(--text-secondaryfg-colour); } .homepage-set-left, .homepage-set-right, .homepage-set-full { background-color: var(--text-bg-colour); word-break: keep-all; overflow: hidden; text-overflow: ellipsis; } .navigation { background-color: var(--secondary-bg-colour); font-family: "Abril Fatface", serif; } /* set styles for the header */ .header { background-color: var(--secondary-bg-colour); background-image: url("/img/featured/header-background.jpg"); background-size: cover; } .header h1 { font-family: "Abril Fatface", serif; font-size: 5em; text-align: center; color: var(--accent-colour); } /* set styles for the footer */ .footer { background-color: var(--secondary-bg-colour); font-family: "Crimson Sans", serif; font-style: italic; } /* set styles for single pages */ .single-page-title { font-family: "Abril Fatface", serif; color: var(--text-secondaryfg-colour); background-color: var(--secondary-bg-colour); text-align: center; } .single-page-title h3 { font-size: 1.2em; padding-top: .4em; padding-bottom: 0%; margin-bottom: 0%; } .single-page-title h1 { font-size: 3em; padding-top: 0%; margin-top: 0%; } .single-page-content { background-color: var(--text-bg-colour); padding: 1em; }
static/css/styling.css
@import url('https://fonts.googleapis.com/css?family=Abril+Fatface'); @import url('https://fonts.googleapis.com/css?family=Crimson+Text'); /* Colours for the whole theme are set here and called from these variables */ :root { --main-bg-colour: #858386; --secondary-bg-colour: #d6d4d2 ; --main-fg-colour: black; --secondary-fg-colour: #333333; --text-bg-colour: #FDF8F3; --text-mainfg-colour: #262728; --text-secondaryfg-colour: #333333; --accent-colour: #181828; } /* set a default text style if not otherwise styled sets page background colour */ body { font-family: "Crimson Text", serif; color: var(--text-mainfg-colour); background-color: var(--main-bg-colour); } /* sets links not to have underlines except when cursor hovering over*/ a { text-decoration: none; color: var(--text-secondaryfg-colour); } a:hover { text-decoration: underline; } /* set styles for the homepage */ .homepage-row, .homepage-row-pages { background-color: var(--secondary-bg-colour); padding: 0px; margin: 3em; } .homepage-row p { margin: 2em; margin-top: 0.5em; } .homepage-row h3 { text-align: center; padding: 0%; margin-bottom: 0%; color: var(--text-secondaryfg-colour); } .homepage-row h2 { font-family: "Abril Fatface"; font-size: 2.5em; padding: 0%; margin: 0%; text-align: center; color: var(--text-secondaryfg-colour); } .homepage-row-pages h3 { text-align: center; padding: 0%; margin-bottom: 0%; } .homepage-row-pages h2 { font-family: "Abril Fatface"; font-size: 2.5em; padding: 0%; margin: 0%; text-align: center; color: var(--text-secondaryfg-colour); } .homepage-set-left, .homepage-set-right, .homepage-set-full { background-color: var(--text-bg-colour); word-break: keep-all; overflow: hidden; text-overflow: ellipsis; } .navigation { background-color: var(--secondary-bg-colour); font-family: "Abril Fatface", serif; } /* set styles for the header */ .header { background-color: var(--secondary-bg-colour); background-image: url("/img/featured/header-background.jpg"); background-size: cover; } .header h1 { font-family: "Abril Fatface", serif; font-size: 5em; text-align: center; color: var(--accent-colour); } /* set styles for the footer */ .footer { background-color: var(--secondary-bg-colour); font-family: "Crimson Sans", serif; font-style: italic; } /* set styles for single pages */ .single-page-title { font-family: "Abril Fatface", serif; color: var(--text-secondaryfg-colour); background-color: var(--secondary-bg-colour); text-align: center; } .single-page-title h3 { font-size: 1.2em; padding-top: .4em; padding-bottom: 0%; margin-bottom: 0%; } .single-page-title h1 { font-size: 3em; padding-top: 0%; margin-top: 0%; } .single-page-content { background-color: var(--text-bg-colour); padding: 1em; }
0.332635
0.074198
.outer-wrap{background:#edecec;} .home{height:calc( 100vh - 82px);display:flex;align-items:center;justify-content:center;} .cart{cursor:pointer;} .logo{font-size:22px;font-weight:300;} .logo span{text-transform:uppercase;font-weight:700;padding-right:4px;letter-spacing:2px;} footer{background:#24242b;} footer *{color:rgba(255,255,255,0.8);} footer a{color:rgba(255,255,255,0.8);} footer a:hover,footer a:active,footer a:focus{color:white;} .copyright{text-transform:uppercase;font-size:12px;} .copyright span{letter-spacing:2px;} @media (min-width:576px){.modal-dialog{max-width:100%;width:800px;}} .bl-desc{margin:auto;} .bl-desc *{color:#24242b;font-size:14px;} .bl-desc--option{font-size:13px;} .bl-desc__title{font-size:36px;} .bl-desc__size span{border:1px solid #24242b;border-radius:2px;margin:0 2px;width:24px;height:24px;cursor:pointer;transition:all .3s ease-in-out;} .bl-desc__size span:hover{color:white;background:rgba(36,36,43,0.7);} .bl-desc__size span[selected="selected"]{color:white;background:rgba(36,36,43,0.7);} .bl-desc__btn{border-radius:0px;border:0;display:inline-block;width:auto;text-decoration:none;vertical-align:middle;white-space:nowrap;padding:13px 20px;border:solid 1px #24242b;text-transform:uppercase;color:#24242b;letter-spacing:.075em;font-size:0.9375em;font-weight:400;transition:all 0.3s cubic-bezier(0.215,0.61,0.355,1);background:transparent;line-height:1.4;transition:all .3s ease-in-out;} .bl-desc__btn:hover{color:white;background:rgba(36,36,43,0.7);} .bl-desc__quantity{display:flex;align-items:center;} .bl-desc .qty-input{height:24px;position:relative;width:80px;display:flex;align-items:center;justify-content:space-around;left:0.5rem;} .bl-desc .qty-input span{cursor:pointer;font-family:serif;box-shadow:0 0 0 1px black;border-radius:2px;height:30px;float:left;line-height:30px;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:all 150ms ease-out;width:24px;height:24px;min-width:24px;display:flex;align-items:center;justify-content:space-around;transition:all .3s ease-in-out;} .bl-desc .qty-input span:hover{color:white;background:rgba(36,36,43,0.7);} .bl-desc .qty-input span:active{color:#F1F1F1;transition:none;} .bl-desc .qty-input input{border:0px solid;float:left;font-size:24px;height:24px;text-align:center;outline:none;width:44px;background:rgba(237,236,236,0);font-size:13px;} i{transition:all .2s;} [class*=icono-] *{box-sizing:border-box;} [class*=icono-]{display:inline-block;vertical-align:middle;position:relative;font-style:normal;color:currentColor;text-align:left;text-indent:-9999px;direction:ltr;} [class*=icono-]:after,[class*=icono-]:before{content:'';pointer-events:none;} .icono-cart{width:22px;height:0;border-width:14px 6px 0 2px;border-style:solid;border-right-color:transparent;border-left-color:transparent;margin:9px 3px 11px 9px;} .icono-cart:before{position:absolute;width:4px;height:4px;border-radius:50%;box-shadow:inset 0 0 0 32px,13px 0,-4px -20px 0 1px;top:2px;left:-3px;} .cart-count{font-size:14px;} a{transition:all .3s ease-in-out;} button,button:hover,button:active,button:focus,a,a:hover,a:active,a:focus{outline:none !important;} /* mB v6.08.2 on 2019-08-07T07:23:30.051Z */
more_examples/intuShopNship/www/assets/css/style.css
.outer-wrap{background:#edecec;} .home{height:calc( 100vh - 82px);display:flex;align-items:center;justify-content:center;} .cart{cursor:pointer;} .logo{font-size:22px;font-weight:300;} .logo span{text-transform:uppercase;font-weight:700;padding-right:4px;letter-spacing:2px;} footer{background:#24242b;} footer *{color:rgba(255,255,255,0.8);} footer a{color:rgba(255,255,255,0.8);} footer a:hover,footer a:active,footer a:focus{color:white;} .copyright{text-transform:uppercase;font-size:12px;} .copyright span{letter-spacing:2px;} @media (min-width:576px){.modal-dialog{max-width:100%;width:800px;}} .bl-desc{margin:auto;} .bl-desc *{color:#24242b;font-size:14px;} .bl-desc--option{font-size:13px;} .bl-desc__title{font-size:36px;} .bl-desc__size span{border:1px solid #24242b;border-radius:2px;margin:0 2px;width:24px;height:24px;cursor:pointer;transition:all .3s ease-in-out;} .bl-desc__size span:hover{color:white;background:rgba(36,36,43,0.7);} .bl-desc__size span[selected="selected"]{color:white;background:rgba(36,36,43,0.7);} .bl-desc__btn{border-radius:0px;border:0;display:inline-block;width:auto;text-decoration:none;vertical-align:middle;white-space:nowrap;padding:13px 20px;border:solid 1px #24242b;text-transform:uppercase;color:#24242b;letter-spacing:.075em;font-size:0.9375em;font-weight:400;transition:all 0.3s cubic-bezier(0.215,0.61,0.355,1);background:transparent;line-height:1.4;transition:all .3s ease-in-out;} .bl-desc__btn:hover{color:white;background:rgba(36,36,43,0.7);} .bl-desc__quantity{display:flex;align-items:center;} .bl-desc .qty-input{height:24px;position:relative;width:80px;display:flex;align-items:center;justify-content:space-around;left:0.5rem;} .bl-desc .qty-input span{cursor:pointer;font-family:serif;box-shadow:0 0 0 1px black;border-radius:2px;height:30px;float:left;line-height:30px;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:all 150ms ease-out;width:24px;height:24px;min-width:24px;display:flex;align-items:center;justify-content:space-around;transition:all .3s ease-in-out;} .bl-desc .qty-input span:hover{color:white;background:rgba(36,36,43,0.7);} .bl-desc .qty-input span:active{color:#F1F1F1;transition:none;} .bl-desc .qty-input input{border:0px solid;float:left;font-size:24px;height:24px;text-align:center;outline:none;width:44px;background:rgba(237,236,236,0);font-size:13px;} i{transition:all .2s;} [class*=icono-] *{box-sizing:border-box;} [class*=icono-]{display:inline-block;vertical-align:middle;position:relative;font-style:normal;color:currentColor;text-align:left;text-indent:-9999px;direction:ltr;} [class*=icono-]:after,[class*=icono-]:before{content:'';pointer-events:none;} .icono-cart{width:22px;height:0;border-width:14px 6px 0 2px;border-style:solid;border-right-color:transparent;border-left-color:transparent;margin:9px 3px 11px 9px;} .icono-cart:before{position:absolute;width:4px;height:4px;border-radius:50%;box-shadow:inset 0 0 0 32px,13px 0,-4px -20px 0 1px;top:2px;left:-3px;} .cart-count{font-size:14px;} a{transition:all .3s ease-in-out;} button,button:hover,button:active,button:focus,a,a:hover,a:active,a:focus{outline:none !important;} /* mB v6.08.2 on 2019-08-07T07:23:30.051Z */
0.187839
0.063686
.header { margin-top: -26px; margin-bottom: 5px; height: 30px; line-height: 30px; text-align: right; box-shadow: 0 0 4px #d4d4d4 inset } .wxeditor{ margin:0px auto;width:1040px;z-index:1;margin-top:20px;margin-left:165px; } .wxeditor .left { position: relative; float: left; width: 436px; height: 100%; background: #FFF } .wxeditor .left .tabbox { float: left; width: 70px } .wxeditor .left .tplcontent { float: left; width: 366px } .wxeditor .right { float: left; margin-left: 10px; width: 500px; position: relative } #second { padding: 20px 20px; width: 440px; height: 260px; border: 1px solid #ccc; background: 0 0; overflow-y: scroll } #bdeditor { width: 100%; margin: 0 auto } .wxeditor a:hover { color: #fff } .tabs { background-color: #999; height: 100% } .tabs li a { display: block; text-decoration: none; background-color: #999; padding: 16px 8px; border-right: 1px solid #ccc; color: #fff; text-align: center; font-size: 16px; font-family: "microsoft yahei" } .tabs li a:hover { text-decoration: none; background-color: #00BDEC!important } .tabs li.editorlogo a { display: block; padding: 24px 8px; border-right: 1px solid #ccc; color: #fff; text-align: center; font-size: 20px; border-bottom: 1px solid #ccc } .tabs li a.current,.tabs li:hover a { background-color: #db512d; color: #fff } .stylequ { padding: 20px 0; border: 1px solid #ccc; border-left: 0 } .tab_con { padding: 0; border: 1px solid #ccc; border-left: 0 } .content { height: 100%; overflow-y: scroll } .tab_con .content li { margin: 20px auto; cursor: pointer; border-bottom: 1px solid #ddd; padding-bottom: 5px } .tab_con .content li .itembox { width: 330px; margin: 0 auto } .goto { position: absolute; right: -48px; top: 50%; font-size: 45px; font-weight: 700; color: red } #clear-editora,#clear-editorc,#kefu,#phone,#savebox,.clear-editor,.copy-editor-html { position: absolute; right: 90px; font-family: "Helvetica Neue",Helvetica,"Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif!important; top: 150px; background-color: #db512d; color: #fff; width: 60px; height: 30px; line-height: 30px; font-size: 14px; text-align: center; cursor: pointer } #clear-editora { top: 350px } #clear-editorc { top: 450px } .listuser { position: absolute; right: 20px; top: 10px; background-color: #fff; color: #000; width: 100px; height: 20px; line-height: 20px; font-size: 12px; text-align: center } .update { padding: 8px; position: absolute; right: 12px; top: 0; color: #000; width: 15%; font-size: 12px; font-weight: 400; border: 1px solid #ccc } #savebox { top: 450px } .copy-editor-html { top: 200px } .clear-editor { top: 250px } #phone { top: 300px } .colorbox { position: absolute; right: -38px; top: 30%; font-size: 35px; font-weight: 700; width: 28px; height: 28px; background-color: red; z-index: 9999 } #colorpickerbox { padding: 10px 0; border: 1px solid #ccc; border-bottom: 0; border-left: 0; background: rgba(245,245,245,.6) none repeat scroll 0 0 } #colorpickerbox .colorpicker { background-image: url(../images/colorpicker/custom_background.png); position: absolute; bottom: 0; left: 0 } #colorpickerbox .colorpicker_hue div { background-image: url(../images/colorpicker/custom_indic.gif) } #colorpickerbox .colorpicker_hex { background-image: url(../images/colorpicker/custom_hex.png) } #colorpickerbox .colorpicker_rgb_r { background-image: url(../images/colorpicker/custom_rgb_g.png) } #colorpickerbox .colorpicker_rgb_g { background-image: url(../images/colorpicker/custom_rgb_g.png) } #colorpickerbox .colorpicker_rgb_b { background-image: url(../images/colorpicker/custom_rgb_b.png) } #colorpickerbox .colorpicker_hsb_s { background-image: url(../images/colorpicker/custom_hsb_s.png) } #colorpickerbox .colorpicker_hsb_h { background-image: url(../images/colorpicker/custom_hsb_h.png) } #colorpickerbox .colorpicker_hsb_b { background-image: url(../images/colorpicker/custom_rgb_b.png) } #colorpickerbox .colorpicker_submit { background-image: url(../images/colorpicker/custom_submit.png) } #colorpickerbox .colorpicker input { color: #778398 } #customWidget { position: relative; height: 36px; } #previewbox { z-index: 99999; display: none; position: fixed; left: -11%; top: 0; width: 320px; height: 600px; background: url(../images/colorpicker/jizzyoujizz_com.png) no-repeat; margin: 0 650px; background-size: contain; padding: 120px 25px 116px 36px } .fenxiang { position: absolute; left: 502px; top: 2px; width: 100px } #share_box { width: 100px } #share_box .bds { display: inline-block } #TB_window { top: 0; left: 0; position: fixed; background: #fff; z-index: 102; color: #000; display: none; border: 5px solid #666; z-index: 2000 } #TB_caption { height: 25px; padding: 10px 30px 10px 25px } #TB_closeWindow { height: 25px; padding: 10px 25px 10px 0; float: right } #TB_closeAjaxWindow { padding: 5px 10px 7px 0; margin-bottom: 1px; text-align: right; background-color: #e8e8e8 } #TB_ajaxContent { padding: 2px 15px 15px 15px; overflow: auto } #TB_load { text-align: center; position: absolute; top: 50%; left: 0; width: 100%; overflow: visible; visibility: visible; display: block; z-index: 101 } #TB_loadContent { margin-left: -125px; position: absolute; top: -50px; left: 50%; width: 250px; height: 100px; visibility: visible } .fl { margin-top: 5px; color: #FFF; font-size: 12px; float: right; padding-left: 5px; position: static } .fr { float: right; margin-top: 10px; color: red; font-size: 14px; padding-right: 10px } .fr em { text-decoration: none; padding-left: 10px; text-align: center; color: #f60 } .fr a { text-decoration: none; padding-left: 10px; text-align: center } .headShadow { height: 27px; position: fixed; bottom: 0; left: 0; width: 100%; background-image: linear-gradient(to bottom,rgba(88,88,79,.26),rgba(218,218,218,.82)); progid: DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1',endColorstr='#f1f1f1') opacity: .88; z-index: 999999 } .editorslide { position: absolute; bottom: 30%; right: 65px } .editorslide .btn-default { width: 32px; height: 32px; color: #FFF; background: rgba(0,0,0,.3); font-size: 20px; border: 0 none; box-shadow: 0 0 0 1px rgba(188,176,167,.8); margin-top: 2px } .editorslide .btn:hover { background: #ccc; color: #333 } .editorslide li { width: 32px; height: 32px; margin-bottom: 3px } #bg-choose .chooser,#bg-choose .default { width: 20px; height: 20px; margin: 5px; cursor: pointer; border-radius: 2px } img { max-width: 100%; overflow: hidden } div#success>div { position: fixed; bottom: 50%; left: 60%; color: red; height: auto; font-size: 20px; width: auto; padding: 30px 60px; border-radius: 4px; background-color: #fff; box-shadow: 0 0 8px #333; opacity: .9; z-index: 9999991 } .otf-poptools { width: 200px } .otf-poptools span { margin: 0 5px; cursor: pointer } #successMessage { position: fixed; top: 35%; width: 30%; left: 35%; z-index: 9999; font-size: 16px } .alert { padding: 15px; border: 1px solid transparent; border-radius: 4px; box-shadow: 0 0 0 1px rgba(188,176,167,.8) } .alert-success { background-color: #dff0d8; border-color: #d6e9c6; color: #468847 } .edui-default .edui-editor-bottomContainer { display: none } .v3editnow { border: 1px dotted #da6247; padding: 2px } .ysall a:visited{text-decoration: none;} .ysall a:hover{text-decoration: none;color: #f00;}
project/demo/tools/css/editor-min.css
.header { margin-top: -26px; margin-bottom: 5px; height: 30px; line-height: 30px; text-align: right; box-shadow: 0 0 4px #d4d4d4 inset } .wxeditor{ margin:0px auto;width:1040px;z-index:1;margin-top:20px;margin-left:165px; } .wxeditor .left { position: relative; float: left; width: 436px; height: 100%; background: #FFF } .wxeditor .left .tabbox { float: left; width: 70px } .wxeditor .left .tplcontent { float: left; width: 366px } .wxeditor .right { float: left; margin-left: 10px; width: 500px; position: relative } #second { padding: 20px 20px; width: 440px; height: 260px; border: 1px solid #ccc; background: 0 0; overflow-y: scroll } #bdeditor { width: 100%; margin: 0 auto } .wxeditor a:hover { color: #fff } .tabs { background-color: #999; height: 100% } .tabs li a { display: block; text-decoration: none; background-color: #999; padding: 16px 8px; border-right: 1px solid #ccc; color: #fff; text-align: center; font-size: 16px; font-family: "microsoft yahei" } .tabs li a:hover { text-decoration: none; background-color: #00BDEC!important } .tabs li.editorlogo a { display: block; padding: 24px 8px; border-right: 1px solid #ccc; color: #fff; text-align: center; font-size: 20px; border-bottom: 1px solid #ccc } .tabs li a.current,.tabs li:hover a { background-color: #db512d; color: #fff } .stylequ { padding: 20px 0; border: 1px solid #ccc; border-left: 0 } .tab_con { padding: 0; border: 1px solid #ccc; border-left: 0 } .content { height: 100%; overflow-y: scroll } .tab_con .content li { margin: 20px auto; cursor: pointer; border-bottom: 1px solid #ddd; padding-bottom: 5px } .tab_con .content li .itembox { width: 330px; margin: 0 auto } .goto { position: absolute; right: -48px; top: 50%; font-size: 45px; font-weight: 700; color: red } #clear-editora,#clear-editorc,#kefu,#phone,#savebox,.clear-editor,.copy-editor-html { position: absolute; right: 90px; font-family: "Helvetica Neue",Helvetica,"Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif!important; top: 150px; background-color: #db512d; color: #fff; width: 60px; height: 30px; line-height: 30px; font-size: 14px; text-align: center; cursor: pointer } #clear-editora { top: 350px } #clear-editorc { top: 450px } .listuser { position: absolute; right: 20px; top: 10px; background-color: #fff; color: #000; width: 100px; height: 20px; line-height: 20px; font-size: 12px; text-align: center } .update { padding: 8px; position: absolute; right: 12px; top: 0; color: #000; width: 15%; font-size: 12px; font-weight: 400; border: 1px solid #ccc } #savebox { top: 450px } .copy-editor-html { top: 200px } .clear-editor { top: 250px } #phone { top: 300px } .colorbox { position: absolute; right: -38px; top: 30%; font-size: 35px; font-weight: 700; width: 28px; height: 28px; background-color: red; z-index: 9999 } #colorpickerbox { padding: 10px 0; border: 1px solid #ccc; border-bottom: 0; border-left: 0; background: rgba(245,245,245,.6) none repeat scroll 0 0 } #colorpickerbox .colorpicker { background-image: url(../images/colorpicker/custom_background.png); position: absolute; bottom: 0; left: 0 } #colorpickerbox .colorpicker_hue div { background-image: url(../images/colorpicker/custom_indic.gif) } #colorpickerbox .colorpicker_hex { background-image: url(../images/colorpicker/custom_hex.png) } #colorpickerbox .colorpicker_rgb_r { background-image: url(../images/colorpicker/custom_rgb_g.png) } #colorpickerbox .colorpicker_rgb_g { background-image: url(../images/colorpicker/custom_rgb_g.png) } #colorpickerbox .colorpicker_rgb_b { background-image: url(../images/colorpicker/custom_rgb_b.png) } #colorpickerbox .colorpicker_hsb_s { background-image: url(../images/colorpicker/custom_hsb_s.png) } #colorpickerbox .colorpicker_hsb_h { background-image: url(../images/colorpicker/custom_hsb_h.png) } #colorpickerbox .colorpicker_hsb_b { background-image: url(../images/colorpicker/custom_rgb_b.png) } #colorpickerbox .colorpicker_submit { background-image: url(../images/colorpicker/custom_submit.png) } #colorpickerbox .colorpicker input { color: #778398 } #customWidget { position: relative; height: 36px; } #previewbox { z-index: 99999; display: none; position: fixed; left: -11%; top: 0; width: 320px; height: 600px; background: url(../images/colorpicker/jizzyoujizz_com.png) no-repeat; margin: 0 650px; background-size: contain; padding: 120px 25px 116px 36px } .fenxiang { position: absolute; left: 502px; top: 2px; width: 100px } #share_box { width: 100px } #share_box .bds { display: inline-block } #TB_window { top: 0; left: 0; position: fixed; background: #fff; z-index: 102; color: #000; display: none; border: 5px solid #666; z-index: 2000 } #TB_caption { height: 25px; padding: 10px 30px 10px 25px } #TB_closeWindow { height: 25px; padding: 10px 25px 10px 0; float: right } #TB_closeAjaxWindow { padding: 5px 10px 7px 0; margin-bottom: 1px; text-align: right; background-color: #e8e8e8 } #TB_ajaxContent { padding: 2px 15px 15px 15px; overflow: auto } #TB_load { text-align: center; position: absolute; top: 50%; left: 0; width: 100%; overflow: visible; visibility: visible; display: block; z-index: 101 } #TB_loadContent { margin-left: -125px; position: absolute; top: -50px; left: 50%; width: 250px; height: 100px; visibility: visible } .fl { margin-top: 5px; color: #FFF; font-size: 12px; float: right; padding-left: 5px; position: static } .fr { float: right; margin-top: 10px; color: red; font-size: 14px; padding-right: 10px } .fr em { text-decoration: none; padding-left: 10px; text-align: center; color: #f60 } .fr a { text-decoration: none; padding-left: 10px; text-align: center } .headShadow { height: 27px; position: fixed; bottom: 0; left: 0; width: 100%; background-image: linear-gradient(to bottom,rgba(88,88,79,.26),rgba(218,218,218,.82)); progid: DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1',endColorstr='#f1f1f1') opacity: .88; z-index: 999999 } .editorslide { position: absolute; bottom: 30%; right: 65px } .editorslide .btn-default { width: 32px; height: 32px; color: #FFF; background: rgba(0,0,0,.3); font-size: 20px; border: 0 none; box-shadow: 0 0 0 1px rgba(188,176,167,.8); margin-top: 2px } .editorslide .btn:hover { background: #ccc; color: #333 } .editorslide li { width: 32px; height: 32px; margin-bottom: 3px } #bg-choose .chooser,#bg-choose .default { width: 20px; height: 20px; margin: 5px; cursor: pointer; border-radius: 2px } img { max-width: 100%; overflow: hidden } div#success>div { position: fixed; bottom: 50%; left: 60%; color: red; height: auto; font-size: 20px; width: auto; padding: 30px 60px; border-radius: 4px; background-color: #fff; box-shadow: 0 0 8px #333; opacity: .9; z-index: 9999991 } .otf-poptools { width: 200px } .otf-poptools span { margin: 0 5px; cursor: pointer } #successMessage { position: fixed; top: 35%; width: 30%; left: 35%; z-index: 9999; font-size: 16px } .alert { padding: 15px; border: 1px solid transparent; border-radius: 4px; box-shadow: 0 0 0 1px rgba(188,176,167,.8) } .alert-success { background-color: #dff0d8; border-color: #d6e9c6; color: #468847 } .edui-default .edui-editor-bottomContainer { display: none } .v3editnow { border: 1px dotted #da6247; padding: 2px } .ysall a:visited{text-decoration: none;} .ysall a:hover{text-decoration: none;color: #f00;}
0.316475
0.075756
/* Containers */ $basic-nav-mobile-background: white; /* Items */ $basic-nav-item-padding: 1rem; /* The space between each top level item */ /* Links */ $basic-nav-link-color: var(--black); $basic-nav-link-font-family: $global-font-family; $basic-nav-link-font-size: 1rem; $basic-nav-link-text-transform: none; $basic-nav-link-font-weight: normal; $basic-nav-link-text-decoration: none; $basic-nav-link-font-style: normal; /* Links: Hover */ $basic-nav-link-color--hover: $link-color--hover; /* Dropdown Indicator */ $basic-nav-dropdown-indicator-size: 5px; $basic-nav-dropdown-indicator-color: var(--highlight); $basic-nav-dropdown-indicator-spacing: 0.5rem; /* Expander */ $basic-nav-expander-padding: 1rem; $basic-nav-expander-color: white; $basic-nav-expander-background: gray; $basic-nav-expander-stroke-size: 3px; /* Variables: Sublevels ===================================================== */ /* Containers */ $basic-nav-submenu-padding: 0; $basic-nav-submenu-background: white; $basic-nav-submenu-border-width: 2px; $basic-nav-submenu-border: $basic-nav-submenu-border-width solid var(--black); /* Items */ $basic-nav-submenu-item-padding: 0.5rem; $basic-nav-submenu-item-border: $basic-nav-submenu-border; /* Links */ $basic-nav-submenu-link-color: var(--black); $basic-nav-submenu-link-font-family: $global-font-family; $basic-nav-submenu-link-font-size: 0.85rem; $basic-nav-submenu-link-text-transform: none; $basic-nav-submenu-link-font-weight: normal; $basic-nav-submenu-link-text-decoration: none; $basic-nav-submenu-link-font-style: normal; /* Links: Hover */ $basic-nav-submenu-link-background--hover: $button-background--hover; $basic-nav-submenu-link-color--hover: white; /* Variables: Mobile Trigger ================================================ */ $basic-nav-mobile-trigger-background: var(--black); $basic-nav-mobile-trigger-color: white; $basic-nav-mobile-trigger-padding: 1rem; $basic-nav-mobile-trigger-font-family: $heading-font-family; $basic-nav-mobile-trigger-font-size: $paragraph-font-size; $basic-nav-mobile-trigger-text-transform: none; $basic-nav-mobile-trigger-font-weight: bold; $basic-nav-mobile-trigger-text-decoration: none; $basic-nav-mobile-trigger-font-style: normal; /* Container ================================================================ */ .main-nav { background: $basic-nav-mobile-background; list-style: none; padding: 0; margin: 0; position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: none; &.show { display: block; } @media $menu-media-query { position: static; display: block; width: auto; height: auto; background: transparent; margin-right: -$basic-nav-item-padding; } } /* Top Level: Items ========================================================= */ .main-nav__item { display: block; position: relative; @media $menu-media-query { display: inline-block; } } /* Top Level: Links ========================================================= */ .main-nav__item-link { padding: $basic-nav-item-padding; color: $basic-nav-link-color; font-family: $basic-nav-link-font-family; font-size: $basic-nav-link-font-size; font-weight: $basic-nav-link-font-weight; font-style: $basic-nav-link-font-style; text-decoration: $basic-nav-link-text-decoration; text-transform: $basic-nav-link-text-transform; display: block; position: relative; } /* Hovers: Top Level */ .no-touchevents { .main-nav__item-link:hover { color: $basic-nav-link-color--hover; } } /* Sublevels ================================================================ */ [class*="main-nav__submenu--"] { background: $basic-nav-submenu-background; list-style: none; margin: 0; padding: 0 0 0 1rem; display: none; &.open { display: block; } @media $menu-media-query { position: absolute; min-width: 200px; display: none; padding: $basic-nav-submenu-padding; border: $basic-nav-submenu-border; } } .main-nav__submenu-item { @media $menu-media-query { border: $basic-nav-submenu-item-border; border-width: 0 0 $basic-nav-submenu-border-width; } &:last-child { border: 0; } } /* Sublevels: Links ========================================================= */ .main-nav__submenu-item-link { padding: $basic-nav-submenu-item-padding; color: $basic-nav-submenu-link-color; font-family: $basic-nav-submenu-link-font-family; font-size: $basic-nav-submenu-link-font-size; text-transform: $basic-nav-submenu-link-text-transform; font-weight: $basic-nav-submenu-link-font-weight; text-decoration: $basic-nav-submenu-link-text-decoration; font-style: $basic-nav-submenu-link-font-style; display: block; position: relative; } /* Has Submenus */ .has-submenu { position: relative; /* Dropdown Indicator */ .main-nav__item-link:after { @media $menu-media-query { content: ""; display: inline-block; vertical-align: middle; width: 0; height: 0; border: $basic-nav-dropdown-indicator-size solid transparent; border-color: $basic-nav-dropdown-indicator-color transparent transparent transparent; margin: 0 0 0 $basic-nav-dropdown-indicator-spacing; } } } @media $menu-media-query { /* Hovers: Sublevels */ .no-touchevents { .main-nav__submenu-item-link:hover { background: $basic-nav-submenu-link-background--hover; color: $basic-nav-submenu-link-color--hover; } } /* Hovers: Hide/Show Submenus */ .no-touchevents { .has-submenu:hover { > [class*="main-nav__submenu--"] { display: block; } } } } /* Sublevel: Dropdown ======================================================= */ .main-nav__submenu--dropdown { top: 100%; left: 0; } /* Sublevel: Flyout ========================================================= */ .main-nav__submenu--flyout { right: 100%; top: -$basic-nav-submenu-border-width; } /* Mobile Trigger =========================================================== */ .nav-toggle { background: $basic-nav-mobile-trigger-background; font-family: $basic-nav-mobile-trigger-font-family; font-size: $basic-nav-mobile-trigger-font-size; text-transform: $basic-nav-mobile-trigger-text-transform; font-weight: $basic-nav-mobile-trigger-font-weight; text-decoration: $basic-nav-mobile-trigger-text-decoration; font-style: $basic-nav-mobile-trigger-font-style; color: $basic-nav-mobile-trigger-color; padding: $basic-nav-mobile-trigger-padding; position: fixed; bottom: 4rem; right: 0; display: block; @media $menu-media-query { display: none; } } /* Submenu Expanders ======================================================== */ .main-nav__submenu-expand { padding: $basic-nav-expander-padding; color: $basic-nav-expander-color; background: $basic-nav-expander-background; display: inline-block; position: absolute; right: 1rem; top: 50%; transform: translate(0,-50%); &:before, &:after { width: $basic-nav-expander-stroke-size; background: $basic-nav-expander-color; content: ""; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); height: 50%; } &:after { transform: translate(-50%,-50%) rotate(90deg); } @media $menu-media-query { display: none; } } .main-nav [class*="item-link"].active .main-nav__submenu-expand { &:before { display: none; } }
assets/post/components/navigation/navigation-basic.css
/* Containers */ $basic-nav-mobile-background: white; /* Items */ $basic-nav-item-padding: 1rem; /* The space between each top level item */ /* Links */ $basic-nav-link-color: var(--black); $basic-nav-link-font-family: $global-font-family; $basic-nav-link-font-size: 1rem; $basic-nav-link-text-transform: none; $basic-nav-link-font-weight: normal; $basic-nav-link-text-decoration: none; $basic-nav-link-font-style: normal; /* Links: Hover */ $basic-nav-link-color--hover: $link-color--hover; /* Dropdown Indicator */ $basic-nav-dropdown-indicator-size: 5px; $basic-nav-dropdown-indicator-color: var(--highlight); $basic-nav-dropdown-indicator-spacing: 0.5rem; /* Expander */ $basic-nav-expander-padding: 1rem; $basic-nav-expander-color: white; $basic-nav-expander-background: gray; $basic-nav-expander-stroke-size: 3px; /* Variables: Sublevels ===================================================== */ /* Containers */ $basic-nav-submenu-padding: 0; $basic-nav-submenu-background: white; $basic-nav-submenu-border-width: 2px; $basic-nav-submenu-border: $basic-nav-submenu-border-width solid var(--black); /* Items */ $basic-nav-submenu-item-padding: 0.5rem; $basic-nav-submenu-item-border: $basic-nav-submenu-border; /* Links */ $basic-nav-submenu-link-color: var(--black); $basic-nav-submenu-link-font-family: $global-font-family; $basic-nav-submenu-link-font-size: 0.85rem; $basic-nav-submenu-link-text-transform: none; $basic-nav-submenu-link-font-weight: normal; $basic-nav-submenu-link-text-decoration: none; $basic-nav-submenu-link-font-style: normal; /* Links: Hover */ $basic-nav-submenu-link-background--hover: $button-background--hover; $basic-nav-submenu-link-color--hover: white; /* Variables: Mobile Trigger ================================================ */ $basic-nav-mobile-trigger-background: var(--black); $basic-nav-mobile-trigger-color: white; $basic-nav-mobile-trigger-padding: 1rem; $basic-nav-mobile-trigger-font-family: $heading-font-family; $basic-nav-mobile-trigger-font-size: $paragraph-font-size; $basic-nav-mobile-trigger-text-transform: none; $basic-nav-mobile-trigger-font-weight: bold; $basic-nav-mobile-trigger-text-decoration: none; $basic-nav-mobile-trigger-font-style: normal; /* Container ================================================================ */ .main-nav { background: $basic-nav-mobile-background; list-style: none; padding: 0; margin: 0; position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: none; &.show { display: block; } @media $menu-media-query { position: static; display: block; width: auto; height: auto; background: transparent; margin-right: -$basic-nav-item-padding; } } /* Top Level: Items ========================================================= */ .main-nav__item { display: block; position: relative; @media $menu-media-query { display: inline-block; } } /* Top Level: Links ========================================================= */ .main-nav__item-link { padding: $basic-nav-item-padding; color: $basic-nav-link-color; font-family: $basic-nav-link-font-family; font-size: $basic-nav-link-font-size; font-weight: $basic-nav-link-font-weight; font-style: $basic-nav-link-font-style; text-decoration: $basic-nav-link-text-decoration; text-transform: $basic-nav-link-text-transform; display: block; position: relative; } /* Hovers: Top Level */ .no-touchevents { .main-nav__item-link:hover { color: $basic-nav-link-color--hover; } } /* Sublevels ================================================================ */ [class*="main-nav__submenu--"] { background: $basic-nav-submenu-background; list-style: none; margin: 0; padding: 0 0 0 1rem; display: none; &.open { display: block; } @media $menu-media-query { position: absolute; min-width: 200px; display: none; padding: $basic-nav-submenu-padding; border: $basic-nav-submenu-border; } } .main-nav__submenu-item { @media $menu-media-query { border: $basic-nav-submenu-item-border; border-width: 0 0 $basic-nav-submenu-border-width; } &:last-child { border: 0; } } /* Sublevels: Links ========================================================= */ .main-nav__submenu-item-link { padding: $basic-nav-submenu-item-padding; color: $basic-nav-submenu-link-color; font-family: $basic-nav-submenu-link-font-family; font-size: $basic-nav-submenu-link-font-size; text-transform: $basic-nav-submenu-link-text-transform; font-weight: $basic-nav-submenu-link-font-weight; text-decoration: $basic-nav-submenu-link-text-decoration; font-style: $basic-nav-submenu-link-font-style; display: block; position: relative; } /* Has Submenus */ .has-submenu { position: relative; /* Dropdown Indicator */ .main-nav__item-link:after { @media $menu-media-query { content: ""; display: inline-block; vertical-align: middle; width: 0; height: 0; border: $basic-nav-dropdown-indicator-size solid transparent; border-color: $basic-nav-dropdown-indicator-color transparent transparent transparent; margin: 0 0 0 $basic-nav-dropdown-indicator-spacing; } } } @media $menu-media-query { /* Hovers: Sublevels */ .no-touchevents { .main-nav__submenu-item-link:hover { background: $basic-nav-submenu-link-background--hover; color: $basic-nav-submenu-link-color--hover; } } /* Hovers: Hide/Show Submenus */ .no-touchevents { .has-submenu:hover { > [class*="main-nav__submenu--"] { display: block; } } } } /* Sublevel: Dropdown ======================================================= */ .main-nav__submenu--dropdown { top: 100%; left: 0; } /* Sublevel: Flyout ========================================================= */ .main-nav__submenu--flyout { right: 100%; top: -$basic-nav-submenu-border-width; } /* Mobile Trigger =========================================================== */ .nav-toggle { background: $basic-nav-mobile-trigger-background; font-family: $basic-nav-mobile-trigger-font-family; font-size: $basic-nav-mobile-trigger-font-size; text-transform: $basic-nav-mobile-trigger-text-transform; font-weight: $basic-nav-mobile-trigger-font-weight; text-decoration: $basic-nav-mobile-trigger-text-decoration; font-style: $basic-nav-mobile-trigger-font-style; color: $basic-nav-mobile-trigger-color; padding: $basic-nav-mobile-trigger-padding; position: fixed; bottom: 4rem; right: 0; display: block; @media $menu-media-query { display: none; } } /* Submenu Expanders ======================================================== */ .main-nav__submenu-expand { padding: $basic-nav-expander-padding; color: $basic-nav-expander-color; background: $basic-nav-expander-background; display: inline-block; position: absolute; right: 1rem; top: 50%; transform: translate(0,-50%); &:before, &:after { width: $basic-nav-expander-stroke-size; background: $basic-nav-expander-color; content: ""; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); height: 50%; } &:after { transform: translate(-50%,-50%) rotate(90deg); } @media $menu-media-query { display: none; } } .main-nav [class*="item-link"].active .main-nav__submenu-expand { &:before { display: none; } }
0.352982
0.034391
strong { font-weight:bold!important; } .sidebarlist { padding:0; } .sidebarlist li a { color:black; } .sidebarlist li { list-style:none; padding:10px 0 0 0; } .sidebarlist li a img { margin:0 10px 0 0px; } .header-text-top { margin-top: 15px; color: white; font-weight: bold; font-size: 20px; } .profile { background-color: #F3F2F1; padding-left: 10px; padding-right: 10px; padding-bottom: 10px; padding-top: 10px; } .card { margin-top:20px; display:block; width:100%; margin-bottom:20px; } .btn-info { color:white!important; } .hidden { display: none; } #show-modal { background: url(../img/pencil-edit-button.png); border: none; background-repeat: no-repeat; width: 20px; height: 20px; font-size: 0; background-size: 20px; margin-right: 20px; } .create_button { color: white!important; } .modal-header { padding-bottom:0; margin-bottom:0; } .modal-footer div { width:100%; } .delete { color: white; background-color: maroon; border: 1px maroon; float:left; } .cancel { color: black; background-color: white; border: 1px white; float:right; } .update { color: white; background-color: darkblue; border: 1px darkblue; float:right; } .card-header:first-child { border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; border: none; font-size: 35px; font-weight: bold; background: none; padding-left: 0; margin-top: 50px; margin-bottom: 50px; } .btn-info { background-color:#556080!important; border-color:#556080!important;} .profile h4 { border-bottom: 3px solid black!important; max-width: 90%; padding-bottom: 10px; margin-bottom: 20px; } .profile h4 a { color: #636b6f; text-decoration:none!important } .sidebarlist li { border: .25px solid #ccc; list-style: none; background-color: #F3F3F3; margin-bottom: 5px; padding: 10px; } .sidebarlist li a { font-weight:bold; text-decoration:none!important; } .expense-total td , .expense-total th { padding:10px; } h5.breadcrumps { text-align:right; display: block; margin-top:90px; } .table thead th { background-color: #FAFAFA!important; border-bottom: 2px solid #F7F7F7!important; } .table th, .table td { border-top: 1px solid #F7F7F7!important; } .navbar { background: #556080!important; } .navbar-light .navbar-nav .nav-link { color: white!important; font-size: 12px; } @media (min-width: 768px) { .navbar-expand-md .navbar-nav .dropdown-menu { margin-top: 21px; } } .navbar-expand-md .navbar-nav .dropdown-menu { margin-top: 21px; background-color:#556080!important; } .dropdown-item { color: white!important; } .dropdown-item { background-color:#556080!important; } .modal-header h3 { color: #556080!important; font-weight:bold; } .modal-header { padding-left:0!important; } .modal-body , .modal-footer { margin: 20px 0; padding-left: 0!important; padding-right: 0!important; } #additems .modal-body , #additems .modal-footer { padding-left: 20px!important; padding-right: 20px!important; border:none; } #additems .modal-footer button { background-color: maroon; color: white; margin-left: -1px!important;} #additems .modal-footer { margin-top: -39px;} #additems .modal-footer { display: block; } #additems h3 { font-weight:bold; color:#556080!important; } #additems button#name { background-color: #556080!important; border: 1px solid #556080!important;}
public/css/styles.css
strong { font-weight:bold!important; } .sidebarlist { padding:0; } .sidebarlist li a { color:black; } .sidebarlist li { list-style:none; padding:10px 0 0 0; } .sidebarlist li a img { margin:0 10px 0 0px; } .header-text-top { margin-top: 15px; color: white; font-weight: bold; font-size: 20px; } .profile { background-color: #F3F2F1; padding-left: 10px; padding-right: 10px; padding-bottom: 10px; padding-top: 10px; } .card { margin-top:20px; display:block; width:100%; margin-bottom:20px; } .btn-info { color:white!important; } .hidden { display: none; } #show-modal { background: url(../img/pencil-edit-button.png); border: none; background-repeat: no-repeat; width: 20px; height: 20px; font-size: 0; background-size: 20px; margin-right: 20px; } .create_button { color: white!important; } .modal-header { padding-bottom:0; margin-bottom:0; } .modal-footer div { width:100%; } .delete { color: white; background-color: maroon; border: 1px maroon; float:left; } .cancel { color: black; background-color: white; border: 1px white; float:right; } .update { color: white; background-color: darkblue; border: 1px darkblue; float:right; } .card-header:first-child { border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; border: none; font-size: 35px; font-weight: bold; background: none; padding-left: 0; margin-top: 50px; margin-bottom: 50px; } .btn-info { background-color:#556080!important; border-color:#556080!important;} .profile h4 { border-bottom: 3px solid black!important; max-width: 90%; padding-bottom: 10px; margin-bottom: 20px; } .profile h4 a { color: #636b6f; text-decoration:none!important } .sidebarlist li { border: .25px solid #ccc; list-style: none; background-color: #F3F3F3; margin-bottom: 5px; padding: 10px; } .sidebarlist li a { font-weight:bold; text-decoration:none!important; } .expense-total td , .expense-total th { padding:10px; } h5.breadcrumps { text-align:right; display: block; margin-top:90px; } .table thead th { background-color: #FAFAFA!important; border-bottom: 2px solid #F7F7F7!important; } .table th, .table td { border-top: 1px solid #F7F7F7!important; } .navbar { background: #556080!important; } .navbar-light .navbar-nav .nav-link { color: white!important; font-size: 12px; } @media (min-width: 768px) { .navbar-expand-md .navbar-nav .dropdown-menu { margin-top: 21px; } } .navbar-expand-md .navbar-nav .dropdown-menu { margin-top: 21px; background-color:#556080!important; } .dropdown-item { color: white!important; } .dropdown-item { background-color:#556080!important; } .modal-header h3 { color: #556080!important; font-weight:bold; } .modal-header { padding-left:0!important; } .modal-body , .modal-footer { margin: 20px 0; padding-left: 0!important; padding-right: 0!important; } #additems .modal-body , #additems .modal-footer { padding-left: 20px!important; padding-right: 20px!important; border:none; } #additems .modal-footer button { background-color: maroon; color: white; margin-left: -1px!important;} #additems .modal-footer { margin-top: -39px;} #additems .modal-footer { display: block; } #additems h3 { font-weight:bold; color:#556080!important; } #additems button#name { background-color: #556080!important; border: 1px solid #556080!important;}
0.389314
0.164282
@charset "UTF-8"; :root { --blackHalf: rgba(0, 0, 0, 0.5); --mintCream: #EFF9F0; --champagnePink:#DDC8C4; --mossGreen: #828C51; /*2E933C, 2B9720, 828C51, 297373, 1F0322, 00120B*/ --darkRed: #8C1C13; --pacificBlue: #2AB7CA; --charcoal: #353A47; } body { background-color: var(--mintCream); } .container { max-width: 960px; } /* * Custom translucent site header */ .site-header { background-color: rgba(0, 0, 0, .85); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); } .site-header a { color: var(--champagnePink); transition: color .15s ease-in-out; } .site-header a:hover { color: var(--mintCream); text-decoration: none; } /* * Dummy devices (replace them with your own or something else entirely!) */ .product-device { position: absolute; right: 10%; bottom: -30%; width: 300px; height: 540px; background-color: #333; border-radius: 21px; transform: rotate(30deg); } .product-device::before { position: absolute; top: 10%; right: 10px; bottom: 10%; left: 10px; content: ""; border-radius: 5px; } .product-device-2 { top: -25%; right: auto; bottom: 0; left: 5%; background-color: #e5e5e5; } /* * Extra utilities */ .flex-equal > * { flex: 1; } @media (min-width: 768px) { .flex-md-equal > * { flex: 1; } } nav > a { text-decoration: none; } #device1, #device2 { background-image: url("imagens/livros.jpeg"); background-color: var(--champagnePink); } @media only screen and (max-width: 1035px) { #device1, #device2 { display: none !important; } } #Romeu_e_Julieta { background-image: url("imagens/Romeu_e_Julieta.jpg"); min-height: 90%; } #O_Pequeno_Príncipe { background-image: url("imagens/O_Pequeno_Príncipe.jpg"); min-height: 130%; } #O_Mundo_de_Sofia { background-image: url("imagens/O_Mundo_de_Sofia.jpg"); min-height: 93%; } #A_Arte_da_Guerra { background-image: url("imagens/A_Arte_da_Guerra.jpeg"); min-height: 105%; } #O_Chamado_de_Cthulhu { background-image: url("imagens/O_Chamado_de_Cthulhu.jpg"); } #A_Metamorfose { background-image: url("imagens/A_Metamorfose.jpg"); } #O_Código_Da_Vinci { background-image: url("imagens/O_Código_Da_Vinci.jpg"); } #Os_Miseráveis { background-image: url("imagens/Os_Miseráveis.jpg"); } #O_Alquimista { background-image: url("imagens/O_Alquimista.jpg"); } #A_República { background-image: url("imagens/A_República.jpg"); } .responsivo { background-position: center; background-repeat: no-repeat; background-size: cover; } .parallax { background-size: 100% auto !important; background-attachment: fixed; } footer { text-align: center; } footer a, h1 > a { color: var(--darkRed); text-decoration: none; } footer a:hover, h1 > a:hover { color: var(--darkRed); text-decoration: underline; } .btn:hover { color: black !important; } body { min-height: 100vh; display: flex; flex-direction: column; } footer { text-align: center; height: auto; margin-top: auto; } .form-signin { width: 100%; max-width: 330px; padding: 15px; margin: auto; } .form-signin .checkbox { font-weight: 400; } .form-signin .form-floating:focus-within { z-index: 2; } .form-signin input[type="email"] { margin-bottom: -1px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .form-signin input[type="password"] { margin-bottom: 10px; border-top-left-radius: 0; border-top-right-radius: 0; } .btn-primary { margin-top: .5em !important; width: 45% !important; color: var(--mintCream); background-color: var(--charcoal); border-color: var(--charcoal) !important; } .btn-primary:hover { color: var(--mintCream) !important; background-color: var(--darkRed); border-color: var(--darkRed) !important; } .form-control:focus { color: #212529; background-color: #fff; border-color: rgb(13 110 253 / 25%); outline: 0; box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%); } .form-floating { width: 60% !important; margin: 8px auto 8px auto; } th, td { font-size: 1.3em; } .tituloPessoas, .tituloCarrinho { font-size: 3em !important; } table { border-collapse: collapse; border-radius: 0.5em; overflow: hidden; } @media only screen and (max-width: 992px) { .divsDaTabela { width: 90% !important; } .tituloPessoas { font-size: 2em !important; } .tituloCarrinho { margin-bottom: 1em !important; } footer { margin-top: 0 !important; } } #flash { margin: 0.5em 0.8em 0 0.8em; background-color: var(--darkRed); color: var(--mintCream); font-size: 1.2em; padding: 0.5em 0; } /* main ul { columns: 2; list-style-position: inside; list-style-type: none; margin: auto 0 auto 0 !important; } */ .btn-secondary { color: var(--mintCream); background-color: #00120B; border-color: #00120B; } .btn-secondary:hover { color: var(--mintCream) !important; background-color: var(--darkRed) !important; border-color: var(--darkRed) !important; } input[type=checkbox]:checked + label { color: var(--mintCream) !important; background-color: var(--mossGreen) !important; border-color: var(--mossGreen) !important; } #divInputLivro, #irCarrinho, #irComprar { width: 20% !important; } @media only screen and (max-width: 830px) { .btn-secondary { width: 50% !important; } #divInputLivro, #irCarrinho, #irComprar { width: 40% !important; } } .botaoRemover:hover { color: var(--mintCream) !important; background-color: black !important; } .btn-check:focus+.btn-primary, .btn-primary:focus { color: #fff !important; box-shadow: 0 0 0 0.25rem rgb(53, 58, 71, .5) !important; } .form-control:focus { color: #212529; background-color: #fff; border-color: rgb(53, 58, 71, .3); outline: 0; box-shadow: 0 0 0 0.25rem rgb(9, 129, 74, 0.3); } @media only screen and (max-width: 500px) { .numerador { display: none !important; } } @media only screen and (max-width: 400px) { .table_nome { display: none !important; } #divInputLivro { width: 50% !important; } } @media only screen and (max-width: 376px) { .tabelaCarrinho td { font-size: 1.1em; } #irComprar { width: 50% !important; } }
static/styles.css
@charset "UTF-8"; :root { --blackHalf: rgba(0, 0, 0, 0.5); --mintCream: #EFF9F0; --champagnePink:#DDC8C4; --mossGreen: #828C51; /*2E933C, 2B9720, 828C51, 297373, 1F0322, 00120B*/ --darkRed: #8C1C13; --pacificBlue: #2AB7CA; --charcoal: #353A47; } body { background-color: var(--mintCream); } .container { max-width: 960px; } /* * Custom translucent site header */ .site-header { background-color: rgba(0, 0, 0, .85); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); } .site-header a { color: var(--champagnePink); transition: color .15s ease-in-out; } .site-header a:hover { color: var(--mintCream); text-decoration: none; } /* * Dummy devices (replace them with your own or something else entirely!) */ .product-device { position: absolute; right: 10%; bottom: -30%; width: 300px; height: 540px; background-color: #333; border-radius: 21px; transform: rotate(30deg); } .product-device::before { position: absolute; top: 10%; right: 10px; bottom: 10%; left: 10px; content: ""; border-radius: 5px; } .product-device-2 { top: -25%; right: auto; bottom: 0; left: 5%; background-color: #e5e5e5; } /* * Extra utilities */ .flex-equal > * { flex: 1; } @media (min-width: 768px) { .flex-md-equal > * { flex: 1; } } nav > a { text-decoration: none; } #device1, #device2 { background-image: url("imagens/livros.jpeg"); background-color: var(--champagnePink); } @media only screen and (max-width: 1035px) { #device1, #device2 { display: none !important; } } #Romeu_e_Julieta { background-image: url("imagens/Romeu_e_Julieta.jpg"); min-height: 90%; } #O_Pequeno_Príncipe { background-image: url("imagens/O_Pequeno_Príncipe.jpg"); min-height: 130%; } #O_Mundo_de_Sofia { background-image: url("imagens/O_Mundo_de_Sofia.jpg"); min-height: 93%; } #A_Arte_da_Guerra { background-image: url("imagens/A_Arte_da_Guerra.jpeg"); min-height: 105%; } #O_Chamado_de_Cthulhu { background-image: url("imagens/O_Chamado_de_Cthulhu.jpg"); } #A_Metamorfose { background-image: url("imagens/A_Metamorfose.jpg"); } #O_Código_Da_Vinci { background-image: url("imagens/O_Código_Da_Vinci.jpg"); } #Os_Miseráveis { background-image: url("imagens/Os_Miseráveis.jpg"); } #O_Alquimista { background-image: url("imagens/O_Alquimista.jpg"); } #A_República { background-image: url("imagens/A_República.jpg"); } .responsivo { background-position: center; background-repeat: no-repeat; background-size: cover; } .parallax { background-size: 100% auto !important; background-attachment: fixed; } footer { text-align: center; } footer a, h1 > a { color: var(--darkRed); text-decoration: none; } footer a:hover, h1 > a:hover { color: var(--darkRed); text-decoration: underline; } .btn:hover { color: black !important; } body { min-height: 100vh; display: flex; flex-direction: column; } footer { text-align: center; height: auto; margin-top: auto; } .form-signin { width: 100%; max-width: 330px; padding: 15px; margin: auto; } .form-signin .checkbox { font-weight: 400; } .form-signin .form-floating:focus-within { z-index: 2; } .form-signin input[type="email"] { margin-bottom: -1px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .form-signin input[type="password"] { margin-bottom: 10px; border-top-left-radius: 0; border-top-right-radius: 0; } .btn-primary { margin-top: .5em !important; width: 45% !important; color: var(--mintCream); background-color: var(--charcoal); border-color: var(--charcoal) !important; } .btn-primary:hover { color: var(--mintCream) !important; background-color: var(--darkRed); border-color: var(--darkRed) !important; } .form-control:focus { color: #212529; background-color: #fff; border-color: rgb(13 110 253 / 25%); outline: 0; box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%); } .form-floating { width: 60% !important; margin: 8px auto 8px auto; } th, td { font-size: 1.3em; } .tituloPessoas, .tituloCarrinho { font-size: 3em !important; } table { border-collapse: collapse; border-radius: 0.5em; overflow: hidden; } @media only screen and (max-width: 992px) { .divsDaTabela { width: 90% !important; } .tituloPessoas { font-size: 2em !important; } .tituloCarrinho { margin-bottom: 1em !important; } footer { margin-top: 0 !important; } } #flash { margin: 0.5em 0.8em 0 0.8em; background-color: var(--darkRed); color: var(--mintCream); font-size: 1.2em; padding: 0.5em 0; } /* main ul { columns: 2; list-style-position: inside; list-style-type: none; margin: auto 0 auto 0 !important; } */ .btn-secondary { color: var(--mintCream); background-color: #00120B; border-color: #00120B; } .btn-secondary:hover { color: var(--mintCream) !important; background-color: var(--darkRed) !important; border-color: var(--darkRed) !important; } input[type=checkbox]:checked + label { color: var(--mintCream) !important; background-color: var(--mossGreen) !important; border-color: var(--mossGreen) !important; } #divInputLivro, #irCarrinho, #irComprar { width: 20% !important; } @media only screen and (max-width: 830px) { .btn-secondary { width: 50% !important; } #divInputLivro, #irCarrinho, #irComprar { width: 40% !important; } } .botaoRemover:hover { color: var(--mintCream) !important; background-color: black !important; } .btn-check:focus+.btn-primary, .btn-primary:focus { color: #fff !important; box-shadow: 0 0 0 0.25rem rgb(53, 58, 71, .5) !important; } .form-control:focus { color: #212529; background-color: #fff; border-color: rgb(53, 58, 71, .3); outline: 0; box-shadow: 0 0 0 0.25rem rgb(9, 129, 74, 0.3); } @media only screen and (max-width: 500px) { .numerador { display: none !important; } } @media only screen and (max-width: 400px) { .table_nome { display: none !important; } #divInputLivro { width: 50% !important; } } @media only screen and (max-width: 376px) { .tabelaCarrinho td { font-size: 1.1em; } #irComprar { width: 50% !important; } }
0.357455
0.077065
@media screen and (max-width: 960px) { .layout-wrapper.layout-news-active .layout-content { padding-top: 180px; } .layout-wrapper.layout-news-active .layout-sidebar { top: 0; height: 100%; } .layout-wrapper.layout-news-active .layout-news-button { opacity: 0; position: absolute; z-index: 1; width: 100%; height: 100%; margin: 0; top: 0; left: 0; } .layout-topbar { height: 110px; flex-wrap: wrap; justify-content: space-between; padding: 0; } .layout-topbar .menu-button { display: block; } .layout-topbar .logo img { width: 150px; } .layout-topbar .app-theme { margin-left: 0; margin-right: 23px; } .layout-topbar .topbar-menu { background-color: var(--surface-a); width: 100%; height: 40px; margin: 0; border-top: 1px solid var(--surface-d); } .layout-topbar .topbar-menu > li { height: 40px; line-height: 40px; width: 25%; } .layout-topbar .topbar-menu > li > a, .layout-topbar .topbar-menu > li > .p-link { padding-bottom: 0; height: 40px; line-height: 38px; width: 100%; font-size: 14px; min-width: auto; } .layout-topbar .topbar-menu > li.topbar-submenu > ul { top: 40px; } .layout-sidebar { top: 0; z-index: 999; height: 100%; transform: translateX(-100%); } .layout-sidebar.active { transform: translateX(0); } .layout-content { margin-left: 0; padding-top: 110px; } .layout-content .content-section.introduction { flex-direction: column; } .layout-content .content-section.introduction .app-inputstyleswitch { margin-top: 1.5rem; } .layout-mask { background-color: rgba(0, 0, 0, 0.1); } .layout-mask.layout-mask-active { z-index: 998; width: 100%; height: 100%; position: fixed; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.4); transition: background-color 0.5s; } .home .introduction > div { width: 100%; } .home .features > div { width: 100%; } .home .whouses > div { width: 100%; } .home .prosupport > div { width: 100%; } .layout-config .layout-config-button { left: auto; right: -52px; } .layout-config.layout-config-active { width: 100%; } .blocked-scroll { overflow: hidden; } } @media screen and (max-width: 640px) { .layout-wrapper.layout-news-active .topbar-menu > li.topbar-submenu > ul { top: 180px; } .layout-topbar .topbar-menu > li.topbar-submenu { position: static; } .layout-topbar .topbar-menu > li.topbar-submenu > ul { top: 110px; position: fixed; right: auto; left: 0; width: 100vw; } } @media screen and (max-width: 576px) { .layout-news .layout-news-container img.layouts-news-mockup-image { width: 95%; } }
demo/src/main/resources/assets/app/_responsive.css
@media screen and (max-width: 960px) { .layout-wrapper.layout-news-active .layout-content { padding-top: 180px; } .layout-wrapper.layout-news-active .layout-sidebar { top: 0; height: 100%; } .layout-wrapper.layout-news-active .layout-news-button { opacity: 0; position: absolute; z-index: 1; width: 100%; height: 100%; margin: 0; top: 0; left: 0; } .layout-topbar { height: 110px; flex-wrap: wrap; justify-content: space-between; padding: 0; } .layout-topbar .menu-button { display: block; } .layout-topbar .logo img { width: 150px; } .layout-topbar .app-theme { margin-left: 0; margin-right: 23px; } .layout-topbar .topbar-menu { background-color: var(--surface-a); width: 100%; height: 40px; margin: 0; border-top: 1px solid var(--surface-d); } .layout-topbar .topbar-menu > li { height: 40px; line-height: 40px; width: 25%; } .layout-topbar .topbar-menu > li > a, .layout-topbar .topbar-menu > li > .p-link { padding-bottom: 0; height: 40px; line-height: 38px; width: 100%; font-size: 14px; min-width: auto; } .layout-topbar .topbar-menu > li.topbar-submenu > ul { top: 40px; } .layout-sidebar { top: 0; z-index: 999; height: 100%; transform: translateX(-100%); } .layout-sidebar.active { transform: translateX(0); } .layout-content { margin-left: 0; padding-top: 110px; } .layout-content .content-section.introduction { flex-direction: column; } .layout-content .content-section.introduction .app-inputstyleswitch { margin-top: 1.5rem; } .layout-mask { background-color: rgba(0, 0, 0, 0.1); } .layout-mask.layout-mask-active { z-index: 998; width: 100%; height: 100%; position: fixed; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.4); transition: background-color 0.5s; } .home .introduction > div { width: 100%; } .home .features > div { width: 100%; } .home .whouses > div { width: 100%; } .home .prosupport > div { width: 100%; } .layout-config .layout-config-button { left: auto; right: -52px; } .layout-config.layout-config-active { width: 100%; } .blocked-scroll { overflow: hidden; } } @media screen and (max-width: 640px) { .layout-wrapper.layout-news-active .topbar-menu > li.topbar-submenu > ul { top: 180px; } .layout-topbar .topbar-menu > li.topbar-submenu { position: static; } .layout-topbar .topbar-menu > li.topbar-submenu > ul { top: 110px; position: fixed; right: auto; left: 0; width: 100vw; } } @media screen and (max-width: 576px) { .layout-news .layout-news-container img.layouts-news-mockup-image { width: 95%; } }
0.451568
0.058993
body { -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } @media only screen and (min-device-width: 1100px) { body { overflow: hidden; } } .top-navbar { max-width: 100vw; font-size: 18px; width: 100%; min-height: 75px; height: auto; background-color: rgb(54,58,64); } .top-container { height: auto; } .title { white-space: nowrap; color: white; text-decoration: none; font-size: 28px; margin-left: 80px; margin-right: 80px; width: auto; } .button { border: 0; padding: 10px; background: none; box-shadow: none; border-radius: 6px; outline-style: none; margin: 0 10px 0 10px; } .drop-down { position: relative; display: inline-block; margin: 0 10px 0 10px; } @media only screen and (max-width: 1100px) { .title { margin-left: 20px; margin-right: 20px; } .button { margin: 10px; } .drop-down{ margin: 10px; } } @media only screen and (max-device-width: 468px) { .top-navbar { font-size: 14px; padding: 10px; height: 200px; } .button { margin: 5px; } .drop-down{ margin: 5px; } .title { font-size: 24px; white-space: nowrap; } } .title:hover { color: white; cursor: pointer; } .drop-down-text { display: inline-block; width: 105px; margin-right: 5px; } .drop-down-button { display: inline-block; color: black; background-color: white; border-radius: 6px; padding: 10px 10px 10px 15px; width: 155px; } .drop-down-content { display: none; position: absolute; background-color: white; min-width: 200px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); z-index: 8; padding: 5px 0 5px; border-radius: 3px; } .drop-down-content div { color: black; padding: 2px 20px 2px; text-decoration: none; display: block; } .drop-down-content div:hover { background-color: rgb(240,240,240); cursor: pointer; } .drop-down-content div:active { background-color: rgb(225,225,225); cursor: pointer; } .drop-down-button:hover { cursor: pointer; background-color: rgb(225,225,225); } .drop-down-button:active { cursor: pointer; background-color: rgb(210,210,210); } #alg-drop-down { width: 155px; } #clr-drop-down-text { display: inline-block; width: 95px; } #clr-drop-down-content { min-width: 180px; } #clr-drop-down-button { width: 145px; background-color: rgb(227,62,69); color: white; } #clr-down-button:hover { cursor: pointer; background-color: rgb(247,82,89); } #clr-down-button:active { cursor: pointer; background-color: rgb(217,52,59); } .arrowUp { border: solid black; border-width: 0 3px 3px 0; display: inline-block; padding: 3px; transition-duration: 0.5s; transform: rotate(-135deg); -webkit-transform: rotate(-135deg); -webkit-animation-duration: 500ms; } .arrowDown { border: solid black; border-width: 0 3px 3px 0; display: inline-block; padding: 3px; transition-duration: 0.5s; transform: rotate(45deg); -webkit-transform: rotate(45deg); -webkit-animation-duration: 500ms; } .arrowUpW { border: solid white; border-width: 0 3px 3px 0; display: inline-block; padding: 3px; transition-duration: 0.5s; transform: rotate(-135deg); -webkit-transform: rotate(-135deg); -webkit-animation-duration: 500ms; } .arrowDownW { border: solid white; border-width: 0 3px 3px 0; display: inline-block; padding: 3px; transition-duration: 0.5s; transform: rotate(45deg); -webkit-transform: rotate(45deg); -webkit-animation-duration: 500ms; } .green-button { background-color: rgb(112,182,92); color: white; } .green-button:hover{ background-color: rgb(131,213,104); } .green-button:active { background-color: rgb(102,172,82); } .green-button:focus { outline:none; } .red-button { background-color: rgb(227,62,69); color: white; } .red-button:hover { cursor: pointer; background-color: rgb(247,82,89); } .red-button:active { cursor: pointer; background-color: rgb(217,52,59); } #settings-button { background-color: rgb(72,120,188); color: white; } #settings-button:hover{ background-color: rgb(82,130,198); } #settings-button:active { background-color: rgb(62,110,178); } #settings-button:focus { outline:none; } #maze-button { background-color: rgb(223,159,37); color: white; } #maze-button:hover { cursor: pointer; background-color: rgb(233,169,47); } #maze-button:active { cursor: pointer; background-color: rgb(213,149,27); } #maze-button:focus{ outline: none; } @media only screen and (max-device-width: 550px) { #settings-button { display: none; } } #draggable-container { position: absolute; height: auto; width: auto; top: 20%; left: 35%; } @media only screen and (max-device-width: 900px) { #draggable-container { top: 10%; left: 20%; } } @media only screen and (max-device-width: 468px) { #draggable-container { font-size: 12px; top: 0; left: 0; } } #draggable-title { color: white; height: auto; margin-left: 60px; display: inline-block; } #draggable { position: absolute; cursor: move; display: none; background-color: rgb(54,58,64); min-width: 350px; min-height: 35px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); z-index: 5; padding: 5px 0 5px; border-radius: 3px; } #draggable-content { position: absolute; display: none; padding: 40px 40px 0 20px; background-color: rgba(255,255,255,0.9); border-radius: 3px; min-width: 350px; z-index: 4; min-height: 420px; } #x-button { color: white; display: inline-block; float: right; padding-right: 20px; cursor: pointer; } .draggable-content-title { margin: 10px 0 10px 0; } .box { margin-left: 10px; } .slider-text { display: inline-block; margin-right: 15px; } .slider-container { display:flex; flex-direction:row; align-items:center; margin-top: 10px; margin-left: 10px; } .slider { width: 50%; } #speed-text { display: inline-block; width: 50px; color: black; } #width-text { display: inline-block; width: 20px; color: black; } #bg { z-index: 0; position: absolute; margin: 0 20px 0 20px; padding: 0; height: calc(100vh - 75px - 30px); } #grid { z-index: 1; position: absolute; margin: 0 20px 0 20px; padding: 0; height: calc(100vh - 75px - 30px); } #svg { z-index: 2; position: absolute; margin: 0 0 0 20px; padding: 0; height: calc(100vh - 75px - 30px); } .line { position: absolute; z-index: 3; } .tile { border-color: rgb(142,184,208); border-top-width: 1px; border-bottom-width: 0; border-left-width: 1px; border-right-width: 0; border-style: solid; margin: 0; padding: 0; position: absolute; display: block; white-space: nowrap; overflow: hidden; } .buffer { margin: 0; padding: 0; color: transparent; } .info-margin { height: auto; min-height: 30px; width: auto; padding-left: 25px; margin-bottom: 3px; } .info-text { font-size: small; display: inline-block; margin-right: 15px; } #settings-general { display: block; }
index.css
body { -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } @media only screen and (min-device-width: 1100px) { body { overflow: hidden; } } .top-navbar { max-width: 100vw; font-size: 18px; width: 100%; min-height: 75px; height: auto; background-color: rgb(54,58,64); } .top-container { height: auto; } .title { white-space: nowrap; color: white; text-decoration: none; font-size: 28px; margin-left: 80px; margin-right: 80px; width: auto; } .button { border: 0; padding: 10px; background: none; box-shadow: none; border-radius: 6px; outline-style: none; margin: 0 10px 0 10px; } .drop-down { position: relative; display: inline-block; margin: 0 10px 0 10px; } @media only screen and (max-width: 1100px) { .title { margin-left: 20px; margin-right: 20px; } .button { margin: 10px; } .drop-down{ margin: 10px; } } @media only screen and (max-device-width: 468px) { .top-navbar { font-size: 14px; padding: 10px; height: 200px; } .button { margin: 5px; } .drop-down{ margin: 5px; } .title { font-size: 24px; white-space: nowrap; } } .title:hover { color: white; cursor: pointer; } .drop-down-text { display: inline-block; width: 105px; margin-right: 5px; } .drop-down-button { display: inline-block; color: black; background-color: white; border-radius: 6px; padding: 10px 10px 10px 15px; width: 155px; } .drop-down-content { display: none; position: absolute; background-color: white; min-width: 200px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); z-index: 8; padding: 5px 0 5px; border-radius: 3px; } .drop-down-content div { color: black; padding: 2px 20px 2px; text-decoration: none; display: block; } .drop-down-content div:hover { background-color: rgb(240,240,240); cursor: pointer; } .drop-down-content div:active { background-color: rgb(225,225,225); cursor: pointer; } .drop-down-button:hover { cursor: pointer; background-color: rgb(225,225,225); } .drop-down-button:active { cursor: pointer; background-color: rgb(210,210,210); } #alg-drop-down { width: 155px; } #clr-drop-down-text { display: inline-block; width: 95px; } #clr-drop-down-content { min-width: 180px; } #clr-drop-down-button { width: 145px; background-color: rgb(227,62,69); color: white; } #clr-down-button:hover { cursor: pointer; background-color: rgb(247,82,89); } #clr-down-button:active { cursor: pointer; background-color: rgb(217,52,59); } .arrowUp { border: solid black; border-width: 0 3px 3px 0; display: inline-block; padding: 3px; transition-duration: 0.5s; transform: rotate(-135deg); -webkit-transform: rotate(-135deg); -webkit-animation-duration: 500ms; } .arrowDown { border: solid black; border-width: 0 3px 3px 0; display: inline-block; padding: 3px; transition-duration: 0.5s; transform: rotate(45deg); -webkit-transform: rotate(45deg); -webkit-animation-duration: 500ms; } .arrowUpW { border: solid white; border-width: 0 3px 3px 0; display: inline-block; padding: 3px; transition-duration: 0.5s; transform: rotate(-135deg); -webkit-transform: rotate(-135deg); -webkit-animation-duration: 500ms; } .arrowDownW { border: solid white; border-width: 0 3px 3px 0; display: inline-block; padding: 3px; transition-duration: 0.5s; transform: rotate(45deg); -webkit-transform: rotate(45deg); -webkit-animation-duration: 500ms; } .green-button { background-color: rgb(112,182,92); color: white; } .green-button:hover{ background-color: rgb(131,213,104); } .green-button:active { background-color: rgb(102,172,82); } .green-button:focus { outline:none; } .red-button { background-color: rgb(227,62,69); color: white; } .red-button:hover { cursor: pointer; background-color: rgb(247,82,89); } .red-button:active { cursor: pointer; background-color: rgb(217,52,59); } #settings-button { background-color: rgb(72,120,188); color: white; } #settings-button:hover{ background-color: rgb(82,130,198); } #settings-button:active { background-color: rgb(62,110,178); } #settings-button:focus { outline:none; } #maze-button { background-color: rgb(223,159,37); color: white; } #maze-button:hover { cursor: pointer; background-color: rgb(233,169,47); } #maze-button:active { cursor: pointer; background-color: rgb(213,149,27); } #maze-button:focus{ outline: none; } @media only screen and (max-device-width: 550px) { #settings-button { display: none; } } #draggable-container { position: absolute; height: auto; width: auto; top: 20%; left: 35%; } @media only screen and (max-device-width: 900px) { #draggable-container { top: 10%; left: 20%; } } @media only screen and (max-device-width: 468px) { #draggable-container { font-size: 12px; top: 0; left: 0; } } #draggable-title { color: white; height: auto; margin-left: 60px; display: inline-block; } #draggable { position: absolute; cursor: move; display: none; background-color: rgb(54,58,64); min-width: 350px; min-height: 35px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); z-index: 5; padding: 5px 0 5px; border-radius: 3px; } #draggable-content { position: absolute; display: none; padding: 40px 40px 0 20px; background-color: rgba(255,255,255,0.9); border-radius: 3px; min-width: 350px; z-index: 4; min-height: 420px; } #x-button { color: white; display: inline-block; float: right; padding-right: 20px; cursor: pointer; } .draggable-content-title { margin: 10px 0 10px 0; } .box { margin-left: 10px; } .slider-text { display: inline-block; margin-right: 15px; } .slider-container { display:flex; flex-direction:row; align-items:center; margin-top: 10px; margin-left: 10px; } .slider { width: 50%; } #speed-text { display: inline-block; width: 50px; color: black; } #width-text { display: inline-block; width: 20px; color: black; } #bg { z-index: 0; position: absolute; margin: 0 20px 0 20px; padding: 0; height: calc(100vh - 75px - 30px); } #grid { z-index: 1; position: absolute; margin: 0 20px 0 20px; padding: 0; height: calc(100vh - 75px - 30px); } #svg { z-index: 2; position: absolute; margin: 0 0 0 20px; padding: 0; height: calc(100vh - 75px - 30px); } .line { position: absolute; z-index: 3; } .tile { border-color: rgb(142,184,208); border-top-width: 1px; border-bottom-width: 0; border-left-width: 1px; border-right-width: 0; border-style: solid; margin: 0; padding: 0; position: absolute; display: block; white-space: nowrap; overflow: hidden; } .buffer { margin: 0; padding: 0; color: transparent; } .info-margin { height: auto; min-height: 30px; width: auto; padding-left: 25px; margin-bottom: 3px; } .info-text { font-size: small; display: inline-block; margin-right: 15px; } #settings-general { display: block; }
0.480966
0.072538
/* Change the --multirow-n-rows to change maximum number of rows before the rows will start to scroll */ /* Scrollbar can't be clicked but the rows can be scrolled with mouse */ /* This maximum visible rows won't work before Fx66 */ /* So this setting does nothing on Fx65 and all tab rows will be shown */ :root{ --multirow-n-rows: 3; --multirow-tab-min-width: 100px; --multirow-tab-dynamic-width: 1; /* Change to 0 for fixed-width tabs using the above width. */ } #tabbrowser-tabs{ min-height: unset !important; padding-inline-start: 0px !important; } /* Test for Firefox > 66 */ @supports (inset-block:auto){ #tabbrowser-tabs > .tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox{ display: flex; flex-wrap: wrap; overflow-y: auto; max-height: calc(var(--tab-min-height) * var(--multirow-n-rows)); scrollbar-color: var(--toolbar-bgcolor) var(--lwt-accent-color); scrollbar-width: thin; } #tabbrowser-tabs > .tabbrowser-arrowscrollbox { overflow: -moz-hidden-unscrollable; display: block; } } /* Test for Firefox < 66 */ @supports not (inset-block:auto){ #tabbrowser-tabs > .tabbrowser-arrowscrollbox{ min-height: unset !important; } #tabbrowser-tabs .scrollbox-innerbox{ display: flex; flex-wrap: wrap; } #tabbrowser-tabs .arrowscrollbox-scrollbox { overflow: -moz-hidden-unscrollable; display: block; } } .tabbrowser-tab{ height: var(--tab-min-height); } #tabbrowser-tabs .tabbrowser-tab[pinned]{ position: static !important; margin-inline-start: 0px !important; } .tabbrowser-tab[fadein]:not([pinned]){ min-width: var(--multirow-tab-min-width) !important; flex-grow: var(--multirow-tab-dynamic-width); /* Uncomment to enable full-width tabs, also makes tab dragging a tiny bit more sensible Don't set to none or you'll see errors in console when closing tabs */ /*max-width: 100vw !important;*/ } .tabbrowser-tab > stack{ width: 100%; height: 100% } #tabbrowser-tabs .scrollbutton-up, #tabbrowser-tabs .scrollbutton-down, #alltabs-button, :root:not([customizing]) #TabsToolbar #new-tab-button, #tabbrowser-tabs spacer, .tabbrowser-tab::after{ display: none !important } /** Cole's Tab Fix **/ .titlebar-spacer { width: 20px !important; } .arrowscrollbox-scrollbox, .titlebar-buttonbox-container { overflow: hidden !important; } .titlebar-buttonbox { max-height: 41px; }
win32/multi-row-tabs.css
/* Change the --multirow-n-rows to change maximum number of rows before the rows will start to scroll */ /* Scrollbar can't be clicked but the rows can be scrolled with mouse */ /* This maximum visible rows won't work before Fx66 */ /* So this setting does nothing on Fx65 and all tab rows will be shown */ :root{ --multirow-n-rows: 3; --multirow-tab-min-width: 100px; --multirow-tab-dynamic-width: 1; /* Change to 0 for fixed-width tabs using the above width. */ } #tabbrowser-tabs{ min-height: unset !important; padding-inline-start: 0px !important; } /* Test for Firefox > 66 */ @supports (inset-block:auto){ #tabbrowser-tabs > .tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox{ display: flex; flex-wrap: wrap; overflow-y: auto; max-height: calc(var(--tab-min-height) * var(--multirow-n-rows)); scrollbar-color: var(--toolbar-bgcolor) var(--lwt-accent-color); scrollbar-width: thin; } #tabbrowser-tabs > .tabbrowser-arrowscrollbox { overflow: -moz-hidden-unscrollable; display: block; } } /* Test for Firefox < 66 */ @supports not (inset-block:auto){ #tabbrowser-tabs > .tabbrowser-arrowscrollbox{ min-height: unset !important; } #tabbrowser-tabs .scrollbox-innerbox{ display: flex; flex-wrap: wrap; } #tabbrowser-tabs .arrowscrollbox-scrollbox { overflow: -moz-hidden-unscrollable; display: block; } } .tabbrowser-tab{ height: var(--tab-min-height); } #tabbrowser-tabs .tabbrowser-tab[pinned]{ position: static !important; margin-inline-start: 0px !important; } .tabbrowser-tab[fadein]:not([pinned]){ min-width: var(--multirow-tab-min-width) !important; flex-grow: var(--multirow-tab-dynamic-width); /* Uncomment to enable full-width tabs, also makes tab dragging a tiny bit more sensible Don't set to none or you'll see errors in console when closing tabs */ /*max-width: 100vw !important;*/ } .tabbrowser-tab > stack{ width: 100%; height: 100% } #tabbrowser-tabs .scrollbutton-up, #tabbrowser-tabs .scrollbutton-down, #alltabs-button, :root:not([customizing]) #TabsToolbar #new-tab-button, #tabbrowser-tabs spacer, .tabbrowser-tab::after{ display: none !important } /** Cole's Tab Fix **/ .titlebar-spacer { width: 20px !important; } .arrowscrollbox-scrollbox, .titlebar-buttonbox-container { overflow: hidden !important; } .titlebar-buttonbox { max-height: 41px; }
0.266262
0.096919
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { background-color: #000; margin: 0px; padding: 0px; color: #fff; font-size: 16px; line-height: 1.6; max-width: 100vw; overflow: hidden; font-family: 'Futura PT', sans-serif; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } @media only screen and (min-width: 400px) and (max-width: 1050px) { body { font-size: 14px; } } @media only screen and (max-width: 400px) { body { font-size: 12px; } } h2 { font-weight: bold; font-size: 3em; } h4 { font-weight: normal; font-size: 1.4em; } a, a:visited, a:active { color: #fff; -webkit-transition: opacity 0.2s ease-in-out; -moz-transition: opacity 0.2s ease-in-out; -o-transition: opacity 0.2s ease-in-out; -ms-transition: opacity 0.2s ease-in-out; transition: opacity 0.2s ease-in-out; } a:hover, a:visited:hover, a:active:hover { opacity: 0.8; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter: alpha(opacity=80); } p { font-size: 1.4em; margin-bottom: 1.2rem; } svg { font-weight: bold; max-width: 500px; } .viewer { position: relative; z-index: 1; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -webkit-animation: fade-in 1s ease-in-out forwards 7.75s; -moz-animation: fade-in 1s ease-in-out forwards 7.75s; -o-animation: fade-in 1s ease-in-out forwards 7.75s; -ms-animation: fade-in 1s ease-in-out forwards 7.75s; animation: fade-in 1s ease-in-out forwards 7.75s; } .fade-out { opacity: 1; -ms-filter: none; filter: none; -webkit-animation: fade-opacity 0.3s ease-in-out forwards !important; -moz-animation: fade-opacity 0.3s ease-in-out forwards !important; -o-animation: fade-opacity 0.3s ease-in-out forwards !important; -ms-animation: fade-opacity 0.3s ease-in-out forwards !important; animation: fade-opacity 0.3s ease-in-out forwards !important; } .ui-container { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: -webkit-linear-gradient(top, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -moz-linear-gradient(top, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -o-linear-gradient(top, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -ms-linear-gradient(top, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: linear-gradient(to bottom, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; -webkit-animation: fade-out 1s ease-in-out forwards 7.75s; -moz-animation: fade-out 1s ease-in-out forwards 7.75s; -o-animation: fade-out 1s ease-in-out forwards 7.75s; -ms-animation: fade-out 1s ease-in-out forwards 7.75s; animation: fade-out 1s ease-in-out forwards 7.75s; } .welcome-screen { padding: 2em; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: -webkit-linear-gradient(top, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -moz-linear-gradient(top, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -o-linear-gradient(top, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -ms-linear-gradient(top, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: linear-gradient(to bottom, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; z-index: 4; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -webkit-animation: fade-in 1s ease-in-out forwards; -moz-animation: fade-in 1s ease-in-out forwards; -o-animation: fade-in 1s ease-in-out forwards; -ms-animation: fade-in 1s ease-in-out forwards; animation: fade-in 1s ease-in-out forwards; -webkit-animation-delay: 8.75s; -moz-animation-delay: 8.75s; -o-animation-delay: 8.75s; -ms-animation-delay: 8.75s; animation-delay: 8.75s; text-align: center; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } .welcome-screen.closing-screen { -webkit-animation-delay: 0s !important; -moz-animation-delay: 0s !important; -o-animation-delay: 0s !important; -ms-animation-delay: 0s !important; animation-delay: 0s !important; background: -webkit-linear-gradient(top, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; background: -moz-linear-gradient(top, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; background: -o-linear-gradient(top, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; background: -ms-linear-gradient(top, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; background: linear-gradient(to bottom, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; } .welcome-screen.closing-screen .message-wrapper h2 { margin-bottom: 0; } .welcome-screen.closing-screen .message-wrapper h4 { margin-top: 0; } .welcome-screen.closing-screen .message-wrapper .welcome-text { display: none; } .welcome-screen.closing-screen .message-wrapper .closing-text { display: block; } .welcome-screen.closing-screen .message-wrapper .start-button { display: none; } .welcome-screen.closing-screen .message-wrapper .share-buttons { display: inline-block; width: 100%; } .welcome-screen.closing-screen .message-wrapper .share-buttons .callout { display: inline-block; } .welcome-screen.closing-screen .message-wrapper .share-buttons .callout.replay { margin-right: 4em; } .welcome-screen.closing-screen .message-wrapper .share-buttons .callout .callout-title { font-size: 1.5em; } .welcome-screen .share-buttons { display: none; } .welcome-screen .message-wrapper { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 30%; right: 30%; max-width: 550px; margin: 0 auto; } @media only screen and (max-width: 1050px) { .welcome-screen .message-wrapper { left: 15%; right: 15%; } } @media only screen and (max-width: 748px) { .welcome-screen .message-wrapper { left: 0.5em; right: 0.5em; } } .welcome-screen .message-wrapper .welcome-text { display: block; } .welcome-screen .message-wrapper .closing-text { display: none; } .welcome-screen .message-wrapper h2 { margin-top: 0; line-height: 1.2; margin-bottom: 1rem; } .welcome-screen .message-wrapper .start-button { padding: 0.75em 0; background: #fff; -webkit-border-radius: 0.5em; border-radius: 0.5em; color: #3e5490; display: inline-block; font-weight: bold; cursor: pointer; width: 45%; margin: 0 auto; } .welcome-screen .message-wrapper .start-button .fa { margin-left: 0.25em; font-size: 1em; line-height: 2em; } .welcome-screen .message-wrapper .start-button .text { line-height: 2em; } .happy-holidays { position: absolute; top: 5em; left: 5em; right: 5em; bottom: 7em; max-width: 500px; margin: 0 auto; overflow: hidden; -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); -webkit-animation: enter-bottom 4s ease-in-out forwards 3.75s; -moz-animation: enter-bottom 4s ease-in-out forwards 3.75s; -o-animation: enter-bottom 4s ease-in-out forwards 3.75s; -ms-animation: enter-bottom 4s ease-in-out forwards 3.75s; animation: enter-bottom 4s ease-in-out forwards 3.75s; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; background-position: center; background-image: url("../assets/img/happy-holidays.svg"); background-repeat: no-repeat; } .cat-controls { position: absolute; left: 0; right: 0; text-align: center; z-index: 3; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -webkit-animation: fade-in 1s ease-in-out forwards 8.75s; -moz-animation: fade-in 1s ease-in-out forwards 8.75s; -o-animation: fade-in 1s ease-in-out forwards 8.75s; -ms-animation: fade-in 1s ease-in-out forwards 8.75s; animation: fade-in 1s ease-in-out forwards 8.75s; bottom: calc(4em + 50px); } @media only screen and (max-width: 1050px) { .cat-controls { bottom: calc(6em + 50px); } } @media only screen and (max-width: 748px) { .cat-controls { bottom: 1em; } } .cat-controls .key { width: 3em; height: 3em; -webkit-border-radius: 100%; border-radius: 100%; position: relative; display: inline-block; cursor: pointer; } .cat-controls .key.slider { width: 12em; vertical-align: top; position: relative; height: 3em; margin: 0 1em; background-image: url("../assets/img/slider.svg"); background-position: center; background-repeat: no-repeat; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } .cat-controls .key.slider input[type=range] { -webkit-appearance: none; width: 61%; position: absolute; left: 10%; top: calc(50% + 0.2em); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); height: 3em; z-index: 3; background: transparent; } .cat-controls .key.slider input[type=range]:focus { outline: none; } .cat-controls .key.slider input[type=range]::-ms-track { width: 100%; cursor: pointer; background: transparent; border-color: transparent; color: transparent; } .cat-controls .key.slider input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 1em; width: 1em; -webkit-border-radius: 100%; border-radius: 100%; background: #fff; -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.5); box-shadow: 0 0 3px rgba(0,0,0,0.5); cursor: pointer; position: relative; } @media only screen and (max-width: 748px) { .cat-controls .key.slider input[type=range]::-webkit-slider-thumb { width: 3em; height: 3em; } .cat-controls .key.slider input[type=range]::-webkit-slider-thumb:before { content: ''; position: absolute; top: -3px; right: -3px; left: -3px; bottom: -3px; border: 1px solid #fff; -webkit-border-radius: 100%; border-radius: 100%; } } .cat-controls .key.slider input[type=range]::-moz-range-thumb { height: 1em; width: 1em; -webkit-border-radius: 100%; border-radius: 100%; background: #ccc; cursor: pointer; -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.5); box-shadow: 0 0 3px rgba(0,0,0,0.5); position: relative; } @media only screen and (max-width: 748px) { .cat-controls .key.slider input[type=range]::-moz-range-thumb { width: 3em; height: 3em; } .cat-controls .key.slider input[type=range]::-moz-range-thumb:before { content: ''; position: absolute; top: -3px; right: -3px; left: -3px; bottom: -3px; border: 1px solid #fff; -webkit-border-radius: 100%; border-radius: 100%; } } .cat-controls .key.slider input[type=range]::-ms-thumb { height: 1em; width: 1em; -webkit-border-radius: 100%; border-radius: 100%; background: #ccc; cursor: pointer; -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.5); box-shadow: 0 0 3px rgba(0,0,0,0.5); position: relative; } @media only screen and (max-width: 748px) { .cat-controls .key.slider input[type=range]::-ms-thumb { width: 3em; height: 3em; } .cat-controls .key.slider input[type=range]::-ms-thumb:before { content: ''; position: absolute; top: -3px; right: -3px; left: -3px; bottom: -3px; border: 1px solid #fff; -webkit-border-radius: 100%; border-radius: 100%; } } .cat-controls #paw { margin-left: 1em; background-image: url("../assets/img/paw.svg"); } .cat-controls #mountains { background-image: url("../assets/img/mountain.svg"); } .cat-controls #volume { margin-right: 1em; background-image: url("../assets/img/volume.svg"); } .cat-controls #volume.vol-off { background-image: url("../assets/img/vol-off.svg"); } .loading-message { color: #fff; position: absolute; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 30%; left: 30%; text-align: center; -webkit-animation: clear-right 0.75s ease-in-out forwards 4s; -moz-animation: clear-right 0.75s ease-in-out forwards 4s; -o-animation: clear-right 0.75s ease-in-out forwards 4s; -ms-animation: clear-right 0.75s ease-in-out forwards 4s; animation: clear-right 0.75s ease-in-out forwards 4s; } @media only screen and (max-width: 748px) { .loading-message { left: 1em; right: 1em; } } .loading-message span { text-transform: uppercase; font-size: 1.5em; font-weight: bold; margin-bottom: 0.75em; position: relative; width: 100%; display: none; } .loading-message span:after { content: ''; position: absolute; left: 15%; right: 15%; bottom: -0.25em; height: 0.15em; background-color: #fff; display: inline-block; } .loading-message span:before { background-image: url("../assets/img/loading-asset.svg"); -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; background-repeat: no-repeat; content: ''; position: absolute; left: 15%; right: 15%; bottom: -0.25em; height: 1em; } .loading-message .loading-progress { text-align: center; position: absolute; top: 50%; left: 0; right: 0; max-width: 500px; margin: 0 auto; } .loading-message .loading-progress .progress-bar { display: inline-block; margin-left: 12%; width: 30%; height: 1em; background: #3f91b4; position: relative; } .loading-message .loading-progress .progress-bar:after { position: absolute; content: ''; left: 0; width: 0; top: 0; bottom: 0; background-color: #31abba; -webkit-animation: grow-width 3s ease-in-out forwards 1s; -moz-animation: grow-width 3s ease-in-out forwards 1s; -o-animation: grow-width 3s ease-in-out forwards 1s; -ms-animation: grow-width 3s ease-in-out forwards 1s; animation: grow-width 3s ease-in-out forwards 1s; } .loading-message .loading-progress .progress-text { color: #31abba; text-transform: uppercase; font-size: 0.75em; font-weight: bold; margin-left: 10%; } .border-animation { position: absolute; top: 2em; left: 2em; right: 2em; bottom: 2em; overflow: hidden; } @media only screen and (max-width: 748px) { .border-animation { display: none; } } .border-animation .border-top { height: 0.15em; background: #fff; position: relative; left: 30px; right: 2em; top: 0; max-width: calc(100% - 2em - 30px); width: 0; z-index: 3; -webkit-animation: grow-width 1s ease-in forwards 1.5s; -moz-animation: grow-width 1s ease-in forwards 1.5s; -o-animation: grow-width 1s ease-in forwards 1.5s; -ms-animation: grow-width 1s ease-in forwards 1.5s; animation: grow-width 1s ease-in forwards 1.5s; } .border-animation .border-right { position: absolute; top: 0; bottom: 0; right: 0; z-index: 3; height: 100%; width: 100px; } .border-animation .border-right:after { content: ''; height: 0px; width: 0.15em; background: #fff; position: absolute; right: 2em; top: 0; max-height: calc(100% - 50px); overflow: hidden; z-index: 3; -webkit-animation: grow-height 1s ease-in forwards 1.5s; -moz-animation: grow-height 1s ease-in forwards 1.5s; -o-animation: grow-height 1s ease-in forwards 1.5s; -ms-animation: grow-height 1s ease-in forwards 1.5s; animation: grow-height 1s ease-in forwards 1.5s; } @media only screen and (min-width: 400px) and (max-width: 1050px) { .border-animation .border-right:after { max-height: calc(100% - 40px); } } .border-animation .border-right .marquee-wrap { position: absolute; left: 0; right: 0; top: 70%; bottom: 20%; z-index: 4; background-image: url("../assets/img/marquee1.svg"); background-repeat: no-repeat; background-position: right; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; } .border-animation .border-bottom { position: absolute; z-index: 3; bottom: 0; right: 0; left: 0; height: 0.15em; } .border-animation .border-bottom .social-wrap { position: absolute; top: -1.75em; left: 1em; } .border-animation .border-bottom .logo-wrap { position: absolute; right: 10%; left: 79%; top: -105px; bottom: 0; background-image: url("../assets/img/BU_logo.svg"); background-repeat: no-repeat; width: 174px; max-width: 174px; padding-top: 81px; height: 0; } @media only screen and (min-width: 400px) and (max-width: 1050px) { .border-animation .border-bottom .logo-wrap { left: 64%; top: -95px; } } .border-animation .border-bottom:before { position: absolute; content: ''; bottom: 0; top: -50px; left: 79%; right: 2em; height: 0.15em; max-width: calc(21% - 2em); width: 0; background: #fff; -webkit-animation: grow-width 0.5s ease-in forwards 1.5s; -moz-animation: grow-width 0.5s ease-in forwards 1.5s; -o-animation: grow-width 0.5s ease-in forwards 1.5s; -ms-animation: grow-width 0.5s ease-in forwards 1.5s; animation: grow-width 0.5s ease-in forwards 1.5s; } @media only screen and (min-width: 400px) and (max-width: 1050px) { .border-animation .border-bottom:before { max-width: calc(36% - 2em); left: 64%; top: -40px; } } .border-animation .border-left { position: absolute; top: 0; bottom: 0; left: 0; z-index: 3; height: 100%; width: 100px; } .border-animation .border-left .marquee-wrap { position: absolute; left: 0; right: 0; top: 20%; bottom: 20%; background-image: url("../assets/img/marquee2.svg"); background-repeat: no-repeat; } .border-animation .border-left:before { position: absolute; max-height: 15%; content: ''; bottom: 85%; top: 0; left: 30px; width: 0.15em; height: 0; background: #fff; -webkit-animation: grow-height 0.5s ease-in forwards 1.5s; -moz-animation: grow-height 0.5s ease-in forwards 1.5s; -o-animation: grow-height 0.5s ease-in forwards 1.5s; -ms-animation: grow-height 0.5s ease-in forwards 1.5s; animation: grow-height 0.5s ease-in forwards 1.5s; } .social-wrap { padding: 0 0.25em; font-size: 3em; } .social-wrap a { text-decoration: none; } .social-wrap span { position: relative; width: 1em; height: 1em; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; background-position: center center; background-repeat: no-repeat; display: inline-block; } .social-wrap span.email { background-image: url("../assets/img/email.svg"); } .social-wrap span.facebook { background-image: url("../assets/img/facebook.svg"); } .social-wrap span.twitter { background-image: url("../assets/img/twitter.svg"); } .social-wrap span.github { background-image: url("../assets/img/github.svg"); } .social-wrap span.repeat { background-image: url("../assets/img/replay.svg"); } .social-wrap span:not(:last-child) { margin-right: 0.25em; } @-moz-keyframes grow-width { from { width: 0; } to { width: 100%; } } @-webkit-keyframes grow-width { from { width: 0; } to { width: 100%; } } @-o-keyframes grow-width { from { width: 0; } to { width: 100%; } } @keyframes grow-width { from { width: 0; } to { width: 100%; } } @-moz-keyframes grow-bottom { from { width: 0; left: 200%; } to { width: 100%; left: 2em; } } @-webkit-keyframes grow-bottom { from { width: 0; left: 200%; } to { width: 100%; left: 2em; } } @-o-keyframes grow-bottom { from { width: 0; left: 200%; } to { width: 100%; left: 2em; } } @keyframes grow-bottom { from { width: 0; left: 200%; } to { width: 100%; left: 2em; } } @-moz-keyframes grow-left { from { top: 100%; } to { top: 85%; } } @-webkit-keyframes grow-left { from { top: 100%; } to { top: 85%; } } @-o-keyframes grow-left { from { top: 100%; } to { top: 85%; } } @keyframes grow-left { from { top: 100%; } to { top: 85%; } } @-moz-keyframes grow-height { from { height: 0; } to { height: 100%; } } @-webkit-keyframes grow-height { from { height: 0; } to { height: 100%; } } @-o-keyframes grow-height { from { height: 0; } to { height: 100%; } } @keyframes grow-height { from { height: 0; } to { height: 100%; } } @-moz-keyframes clear-right { to { left: 1000%; } } @-webkit-keyframes clear-right { to { left: 1000%; } } @-o-keyframes clear-right { to { left: 1000%; } } @keyframes clear-right { to { left: 1000%; } } @-moz-keyframes enter-bottom { 0% { -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); } 60% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 80% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-200%); -moz-transform: translateY(-200%); -o-transform: translateY(-200%); -ms-transform: translateY(-200%); transform: translateY(-200%); } } @-webkit-keyframes enter-bottom { 0% { -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); } 60% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 80% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-200%); -moz-transform: translateY(-200%); -o-transform: translateY(-200%); -ms-transform: translateY(-200%); transform: translateY(-200%); } } @-o-keyframes enter-bottom { 0% { -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); } 60% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 80% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-200%); -moz-transform: translateY(-200%); -o-transform: translateY(-200%); -ms-transform: translateY(-200%); transform: translateY(-200%); } } @keyframes enter-bottom { 0% { -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); } 60% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 80% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-200%); -moz-transform: translateY(-200%); -o-transform: translateY(-200%); -ms-transform: translateY(-200%); transform: translateY(-200%); } } @-moz-keyframes fade-out { to { background: transparent; } } @-webkit-keyframes fade-out { to { background: transparent; } } @-o-keyframes fade-out { to { background: transparent; } } @keyframes fade-out { to { background: transparent; } } @-moz-keyframes fade-in { from { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } to { opacity: 1; -ms-filter: none; filter: none; } } @-webkit-keyframes fade-in { from { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } to { opacity: 1; -ms-filter: none; filter: none; } } @-o-keyframes fade-in { from { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } to { opacity: 1; -ms-filter: none; filter: none; } } @keyframes fade-in { from { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } to { opacity: 1; -ms-filter: none; filter: none; } } @-moz-keyframes fade-opacity { from { opacity: 1; -ms-filter: none; filter: none; } to { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } } @-webkit-keyframes fade-opacity { from { opacity: 1; -ms-filter: none; filter: none; } to { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } } @-o-keyframes fade-opacity { from { opacity: 1; -ms-filter: none; filter: none; } to { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } } @keyframes fade-opacity { from { opacity: 1; -ms-filter: none; filter: none; } to { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } } /*# sourceMappingURL=index.css.map */
new-years-2016/build/index.css
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { background-color: #000; margin: 0px; padding: 0px; color: #fff; font-size: 16px; line-height: 1.6; max-width: 100vw; overflow: hidden; font-family: 'Futura PT', sans-serif; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } @media only screen and (min-width: 400px) and (max-width: 1050px) { body { font-size: 14px; } } @media only screen and (max-width: 400px) { body { font-size: 12px; } } h2 { font-weight: bold; font-size: 3em; } h4 { font-weight: normal; font-size: 1.4em; } a, a:visited, a:active { color: #fff; -webkit-transition: opacity 0.2s ease-in-out; -moz-transition: opacity 0.2s ease-in-out; -o-transition: opacity 0.2s ease-in-out; -ms-transition: opacity 0.2s ease-in-out; transition: opacity 0.2s ease-in-out; } a:hover, a:visited:hover, a:active:hover { opacity: 0.8; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter: alpha(opacity=80); } p { font-size: 1.4em; margin-bottom: 1.2rem; } svg { font-weight: bold; max-width: 500px; } .viewer { position: relative; z-index: 1; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -webkit-animation: fade-in 1s ease-in-out forwards 7.75s; -moz-animation: fade-in 1s ease-in-out forwards 7.75s; -o-animation: fade-in 1s ease-in-out forwards 7.75s; -ms-animation: fade-in 1s ease-in-out forwards 7.75s; animation: fade-in 1s ease-in-out forwards 7.75s; } .fade-out { opacity: 1; -ms-filter: none; filter: none; -webkit-animation: fade-opacity 0.3s ease-in-out forwards !important; -moz-animation: fade-opacity 0.3s ease-in-out forwards !important; -o-animation: fade-opacity 0.3s ease-in-out forwards !important; -ms-animation: fade-opacity 0.3s ease-in-out forwards !important; animation: fade-opacity 0.3s ease-in-out forwards !important; } .ui-container { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: -webkit-linear-gradient(top, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -moz-linear-gradient(top, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -o-linear-gradient(top, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -ms-linear-gradient(top, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: linear-gradient(to bottom, #6db0e0 0%, #2989d8 32%, #3e5490 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; -webkit-animation: fade-out 1s ease-in-out forwards 7.75s; -moz-animation: fade-out 1s ease-in-out forwards 7.75s; -o-animation: fade-out 1s ease-in-out forwards 7.75s; -ms-animation: fade-out 1s ease-in-out forwards 7.75s; animation: fade-out 1s ease-in-out forwards 7.75s; } .welcome-screen { padding: 2em; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: -webkit-linear-gradient(top, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -moz-linear-gradient(top, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -o-linear-gradient(top, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: -ms-linear-gradient(top, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; background: linear-gradient(to bottom, rgba(109,176,224,0.8) 0%, rgba(41,137,216,0.8) 32%, rgba(62,84,144,0.8) 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; z-index: 4; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -webkit-animation: fade-in 1s ease-in-out forwards; -moz-animation: fade-in 1s ease-in-out forwards; -o-animation: fade-in 1s ease-in-out forwards; -ms-animation: fade-in 1s ease-in-out forwards; animation: fade-in 1s ease-in-out forwards; -webkit-animation-delay: 8.75s; -moz-animation-delay: 8.75s; -o-animation-delay: 8.75s; -ms-animation-delay: 8.75s; animation-delay: 8.75s; text-align: center; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } .welcome-screen.closing-screen { -webkit-animation-delay: 0s !important; -moz-animation-delay: 0s !important; -o-animation-delay: 0s !important; -ms-animation-delay: 0s !important; animation-delay: 0s !important; background: -webkit-linear-gradient(top, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; background: -moz-linear-gradient(top, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; background: -o-linear-gradient(top, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; background: -ms-linear-gradient(top, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; background: linear-gradient(to bottom, rgba(109,176,224,0.96) 0%, rgba(41,137,216,0.96) 32%, rgba(62,84,144,0.96) 100%) !important; } .welcome-screen.closing-screen .message-wrapper h2 { margin-bottom: 0; } .welcome-screen.closing-screen .message-wrapper h4 { margin-top: 0; } .welcome-screen.closing-screen .message-wrapper .welcome-text { display: none; } .welcome-screen.closing-screen .message-wrapper .closing-text { display: block; } .welcome-screen.closing-screen .message-wrapper .start-button { display: none; } .welcome-screen.closing-screen .message-wrapper .share-buttons { display: inline-block; width: 100%; } .welcome-screen.closing-screen .message-wrapper .share-buttons .callout { display: inline-block; } .welcome-screen.closing-screen .message-wrapper .share-buttons .callout.replay { margin-right: 4em; } .welcome-screen.closing-screen .message-wrapper .share-buttons .callout .callout-title { font-size: 1.5em; } .welcome-screen .share-buttons { display: none; } .welcome-screen .message-wrapper { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 30%; right: 30%; max-width: 550px; margin: 0 auto; } @media only screen and (max-width: 1050px) { .welcome-screen .message-wrapper { left: 15%; right: 15%; } } @media only screen and (max-width: 748px) { .welcome-screen .message-wrapper { left: 0.5em; right: 0.5em; } } .welcome-screen .message-wrapper .welcome-text { display: block; } .welcome-screen .message-wrapper .closing-text { display: none; } .welcome-screen .message-wrapper h2 { margin-top: 0; line-height: 1.2; margin-bottom: 1rem; } .welcome-screen .message-wrapper .start-button { padding: 0.75em 0; background: #fff; -webkit-border-radius: 0.5em; border-radius: 0.5em; color: #3e5490; display: inline-block; font-weight: bold; cursor: pointer; width: 45%; margin: 0 auto; } .welcome-screen .message-wrapper .start-button .fa { margin-left: 0.25em; font-size: 1em; line-height: 2em; } .welcome-screen .message-wrapper .start-button .text { line-height: 2em; } .happy-holidays { position: absolute; top: 5em; left: 5em; right: 5em; bottom: 7em; max-width: 500px; margin: 0 auto; overflow: hidden; -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); -webkit-animation: enter-bottom 4s ease-in-out forwards 3.75s; -moz-animation: enter-bottom 4s ease-in-out forwards 3.75s; -o-animation: enter-bottom 4s ease-in-out forwards 3.75s; -ms-animation: enter-bottom 4s ease-in-out forwards 3.75s; animation: enter-bottom 4s ease-in-out forwards 3.75s; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; background-position: center; background-image: url("../assets/img/happy-holidays.svg"); background-repeat: no-repeat; } .cat-controls { position: absolute; left: 0; right: 0; text-align: center; z-index: 3; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -webkit-animation: fade-in 1s ease-in-out forwards 8.75s; -moz-animation: fade-in 1s ease-in-out forwards 8.75s; -o-animation: fade-in 1s ease-in-out forwards 8.75s; -ms-animation: fade-in 1s ease-in-out forwards 8.75s; animation: fade-in 1s ease-in-out forwards 8.75s; bottom: calc(4em + 50px); } @media only screen and (max-width: 1050px) { .cat-controls { bottom: calc(6em + 50px); } } @media only screen and (max-width: 748px) { .cat-controls { bottom: 1em; } } .cat-controls .key { width: 3em; height: 3em; -webkit-border-radius: 100%; border-radius: 100%; position: relative; display: inline-block; cursor: pointer; } .cat-controls .key.slider { width: 12em; vertical-align: top; position: relative; height: 3em; margin: 0 1em; background-image: url("../assets/img/slider.svg"); background-position: center; background-repeat: no-repeat; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; -o-transform-style: preserve-3d; -ms-transform-style: preserve-3d; transform-style: preserve-3d; } .cat-controls .key.slider input[type=range] { -webkit-appearance: none; width: 61%; position: absolute; left: 10%; top: calc(50% + 0.2em); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); height: 3em; z-index: 3; background: transparent; } .cat-controls .key.slider input[type=range]:focus { outline: none; } .cat-controls .key.slider input[type=range]::-ms-track { width: 100%; cursor: pointer; background: transparent; border-color: transparent; color: transparent; } .cat-controls .key.slider input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 1em; width: 1em; -webkit-border-radius: 100%; border-radius: 100%; background: #fff; -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.5); box-shadow: 0 0 3px rgba(0,0,0,0.5); cursor: pointer; position: relative; } @media only screen and (max-width: 748px) { .cat-controls .key.slider input[type=range]::-webkit-slider-thumb { width: 3em; height: 3em; } .cat-controls .key.slider input[type=range]::-webkit-slider-thumb:before { content: ''; position: absolute; top: -3px; right: -3px; left: -3px; bottom: -3px; border: 1px solid #fff; -webkit-border-radius: 100%; border-radius: 100%; } } .cat-controls .key.slider input[type=range]::-moz-range-thumb { height: 1em; width: 1em; -webkit-border-radius: 100%; border-radius: 100%; background: #ccc; cursor: pointer; -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.5); box-shadow: 0 0 3px rgba(0,0,0,0.5); position: relative; } @media only screen and (max-width: 748px) { .cat-controls .key.slider input[type=range]::-moz-range-thumb { width: 3em; height: 3em; } .cat-controls .key.slider input[type=range]::-moz-range-thumb:before { content: ''; position: absolute; top: -3px; right: -3px; left: -3px; bottom: -3px; border: 1px solid #fff; -webkit-border-radius: 100%; border-radius: 100%; } } .cat-controls .key.slider input[type=range]::-ms-thumb { height: 1em; width: 1em; -webkit-border-radius: 100%; border-radius: 100%; background: #ccc; cursor: pointer; -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.5); box-shadow: 0 0 3px rgba(0,0,0,0.5); position: relative; } @media only screen and (max-width: 748px) { .cat-controls .key.slider input[type=range]::-ms-thumb { width: 3em; height: 3em; } .cat-controls .key.slider input[type=range]::-ms-thumb:before { content: ''; position: absolute; top: -3px; right: -3px; left: -3px; bottom: -3px; border: 1px solid #fff; -webkit-border-radius: 100%; border-radius: 100%; } } .cat-controls #paw { margin-left: 1em; background-image: url("../assets/img/paw.svg"); } .cat-controls #mountains { background-image: url("../assets/img/mountain.svg"); } .cat-controls #volume { margin-right: 1em; background-image: url("../assets/img/volume.svg"); } .cat-controls #volume.vol-off { background-image: url("../assets/img/vol-off.svg"); } .loading-message { color: #fff; position: absolute; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 30%; left: 30%; text-align: center; -webkit-animation: clear-right 0.75s ease-in-out forwards 4s; -moz-animation: clear-right 0.75s ease-in-out forwards 4s; -o-animation: clear-right 0.75s ease-in-out forwards 4s; -ms-animation: clear-right 0.75s ease-in-out forwards 4s; animation: clear-right 0.75s ease-in-out forwards 4s; } @media only screen and (max-width: 748px) { .loading-message { left: 1em; right: 1em; } } .loading-message span { text-transform: uppercase; font-size: 1.5em; font-weight: bold; margin-bottom: 0.75em; position: relative; width: 100%; display: none; } .loading-message span:after { content: ''; position: absolute; left: 15%; right: 15%; bottom: -0.25em; height: 0.15em; background-color: #fff; display: inline-block; } .loading-message span:before { background-image: url("../assets/img/loading-asset.svg"); -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; background-repeat: no-repeat; content: ''; position: absolute; left: 15%; right: 15%; bottom: -0.25em; height: 1em; } .loading-message .loading-progress { text-align: center; position: absolute; top: 50%; left: 0; right: 0; max-width: 500px; margin: 0 auto; } .loading-message .loading-progress .progress-bar { display: inline-block; margin-left: 12%; width: 30%; height: 1em; background: #3f91b4; position: relative; } .loading-message .loading-progress .progress-bar:after { position: absolute; content: ''; left: 0; width: 0; top: 0; bottom: 0; background-color: #31abba; -webkit-animation: grow-width 3s ease-in-out forwards 1s; -moz-animation: grow-width 3s ease-in-out forwards 1s; -o-animation: grow-width 3s ease-in-out forwards 1s; -ms-animation: grow-width 3s ease-in-out forwards 1s; animation: grow-width 3s ease-in-out forwards 1s; } .loading-message .loading-progress .progress-text { color: #31abba; text-transform: uppercase; font-size: 0.75em; font-weight: bold; margin-left: 10%; } .border-animation { position: absolute; top: 2em; left: 2em; right: 2em; bottom: 2em; overflow: hidden; } @media only screen and (max-width: 748px) { .border-animation { display: none; } } .border-animation .border-top { height: 0.15em; background: #fff; position: relative; left: 30px; right: 2em; top: 0; max-width: calc(100% - 2em - 30px); width: 0; z-index: 3; -webkit-animation: grow-width 1s ease-in forwards 1.5s; -moz-animation: grow-width 1s ease-in forwards 1.5s; -o-animation: grow-width 1s ease-in forwards 1.5s; -ms-animation: grow-width 1s ease-in forwards 1.5s; animation: grow-width 1s ease-in forwards 1.5s; } .border-animation .border-right { position: absolute; top: 0; bottom: 0; right: 0; z-index: 3; height: 100%; width: 100px; } .border-animation .border-right:after { content: ''; height: 0px; width: 0.15em; background: #fff; position: absolute; right: 2em; top: 0; max-height: calc(100% - 50px); overflow: hidden; z-index: 3; -webkit-animation: grow-height 1s ease-in forwards 1.5s; -moz-animation: grow-height 1s ease-in forwards 1.5s; -o-animation: grow-height 1s ease-in forwards 1.5s; -ms-animation: grow-height 1s ease-in forwards 1.5s; animation: grow-height 1s ease-in forwards 1.5s; } @media only screen and (min-width: 400px) and (max-width: 1050px) { .border-animation .border-right:after { max-height: calc(100% - 40px); } } .border-animation .border-right .marquee-wrap { position: absolute; left: 0; right: 0; top: 70%; bottom: 20%; z-index: 4; background-image: url("../assets/img/marquee1.svg"); background-repeat: no-repeat; background-position: right; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; } .border-animation .border-bottom { position: absolute; z-index: 3; bottom: 0; right: 0; left: 0; height: 0.15em; } .border-animation .border-bottom .social-wrap { position: absolute; top: -1.75em; left: 1em; } .border-animation .border-bottom .logo-wrap { position: absolute; right: 10%; left: 79%; top: -105px; bottom: 0; background-image: url("../assets/img/BU_logo.svg"); background-repeat: no-repeat; width: 174px; max-width: 174px; padding-top: 81px; height: 0; } @media only screen and (min-width: 400px) and (max-width: 1050px) { .border-animation .border-bottom .logo-wrap { left: 64%; top: -95px; } } .border-animation .border-bottom:before { position: absolute; content: ''; bottom: 0; top: -50px; left: 79%; right: 2em; height: 0.15em; max-width: calc(21% - 2em); width: 0; background: #fff; -webkit-animation: grow-width 0.5s ease-in forwards 1.5s; -moz-animation: grow-width 0.5s ease-in forwards 1.5s; -o-animation: grow-width 0.5s ease-in forwards 1.5s; -ms-animation: grow-width 0.5s ease-in forwards 1.5s; animation: grow-width 0.5s ease-in forwards 1.5s; } @media only screen and (min-width: 400px) and (max-width: 1050px) { .border-animation .border-bottom:before { max-width: calc(36% - 2em); left: 64%; top: -40px; } } .border-animation .border-left { position: absolute; top: 0; bottom: 0; left: 0; z-index: 3; height: 100%; width: 100px; } .border-animation .border-left .marquee-wrap { position: absolute; left: 0; right: 0; top: 20%; bottom: 20%; background-image: url("../assets/img/marquee2.svg"); background-repeat: no-repeat; } .border-animation .border-left:before { position: absolute; max-height: 15%; content: ''; bottom: 85%; top: 0; left: 30px; width: 0.15em; height: 0; background: #fff; -webkit-animation: grow-height 0.5s ease-in forwards 1.5s; -moz-animation: grow-height 0.5s ease-in forwards 1.5s; -o-animation: grow-height 0.5s ease-in forwards 1.5s; -ms-animation: grow-height 0.5s ease-in forwards 1.5s; animation: grow-height 0.5s ease-in forwards 1.5s; } .social-wrap { padding: 0 0.25em; font-size: 3em; } .social-wrap a { text-decoration: none; } .social-wrap span { position: relative; width: 1em; height: 1em; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; background-position: center center; background-repeat: no-repeat; display: inline-block; } .social-wrap span.email { background-image: url("../assets/img/email.svg"); } .social-wrap span.facebook { background-image: url("../assets/img/facebook.svg"); } .social-wrap span.twitter { background-image: url("../assets/img/twitter.svg"); } .social-wrap span.github { background-image: url("../assets/img/github.svg"); } .social-wrap span.repeat { background-image: url("../assets/img/replay.svg"); } .social-wrap span:not(:last-child) { margin-right: 0.25em; } @-moz-keyframes grow-width { from { width: 0; } to { width: 100%; } } @-webkit-keyframes grow-width { from { width: 0; } to { width: 100%; } } @-o-keyframes grow-width { from { width: 0; } to { width: 100%; } } @keyframes grow-width { from { width: 0; } to { width: 100%; } } @-moz-keyframes grow-bottom { from { width: 0; left: 200%; } to { width: 100%; left: 2em; } } @-webkit-keyframes grow-bottom { from { width: 0; left: 200%; } to { width: 100%; left: 2em; } } @-o-keyframes grow-bottom { from { width: 0; left: 200%; } to { width: 100%; left: 2em; } } @keyframes grow-bottom { from { width: 0; left: 200%; } to { width: 100%; left: 2em; } } @-moz-keyframes grow-left { from { top: 100%; } to { top: 85%; } } @-webkit-keyframes grow-left { from { top: 100%; } to { top: 85%; } } @-o-keyframes grow-left { from { top: 100%; } to { top: 85%; } } @keyframes grow-left { from { top: 100%; } to { top: 85%; } } @-moz-keyframes grow-height { from { height: 0; } to { height: 100%; } } @-webkit-keyframes grow-height { from { height: 0; } to { height: 100%; } } @-o-keyframes grow-height { from { height: 0; } to { height: 100%; } } @keyframes grow-height { from { height: 0; } to { height: 100%; } } @-moz-keyframes clear-right { to { left: 1000%; } } @-webkit-keyframes clear-right { to { left: 1000%; } } @-o-keyframes clear-right { to { left: 1000%; } } @keyframes clear-right { to { left: 1000%; } } @-moz-keyframes enter-bottom { 0% { -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); } 60% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 80% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-200%); -moz-transform: translateY(-200%); -o-transform: translateY(-200%); -ms-transform: translateY(-200%); transform: translateY(-200%); } } @-webkit-keyframes enter-bottom { 0% { -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); } 60% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 80% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-200%); -moz-transform: translateY(-200%); -o-transform: translateY(-200%); -ms-transform: translateY(-200%); transform: translateY(-200%); } } @-o-keyframes enter-bottom { 0% { -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); } 60% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 80% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-200%); -moz-transform: translateY(-200%); -o-transform: translateY(-200%); -ms-transform: translateY(-200%); transform: translateY(-200%); } } @keyframes enter-bottom { 0% { -webkit-transform: translateY(200%); -moz-transform: translateY(200%); -o-transform: translateY(200%); -ms-transform: translateY(200%); transform: translateY(200%); } 60% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 80% { -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-200%); -moz-transform: translateY(-200%); -o-transform: translateY(-200%); -ms-transform: translateY(-200%); transform: translateY(-200%); } } @-moz-keyframes fade-out { to { background: transparent; } } @-webkit-keyframes fade-out { to { background: transparent; } } @-o-keyframes fade-out { to { background: transparent; } } @keyframes fade-out { to { background: transparent; } } @-moz-keyframes fade-in { from { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } to { opacity: 1; -ms-filter: none; filter: none; } } @-webkit-keyframes fade-in { from { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } to { opacity: 1; -ms-filter: none; filter: none; } } @-o-keyframes fade-in { from { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } to { opacity: 1; -ms-filter: none; filter: none; } } @keyframes fade-in { from { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } to { opacity: 1; -ms-filter: none; filter: none; } } @-moz-keyframes fade-opacity { from { opacity: 1; -ms-filter: none; filter: none; } to { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } } @-webkit-keyframes fade-opacity { from { opacity: 1; -ms-filter: none; filter: none; } to { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } } @-o-keyframes fade-opacity { from { opacity: 1; -ms-filter: none; filter: none; } to { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } } @keyframes fade-opacity { from { opacity: 1; -ms-filter: none; filter: none; } to { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); } } /*# sourceMappingURL=index.css.map */
0.42477
0.063744
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document regexp('https://www\\.eldarya\\.(com|fr|de|es|hu|it|pl|ru|com.br)/mall/clothes.*') { /*Boutique de vêtements*/ /*Yeux*/ img[src="/static/img/player/eyes/icon/1c8d011d46ba1fbc161a5f2e962185c6~1431442305.png"], img[src="/static/img/player/eyes/icon/db1b39e90695a57351824cd17d2e0cc5~1426086652.png"], /*Peaux*/ img[src="/static/img/player/skin/icon/2eaacfa886c672ec8867830661d0c828.png"], img[src="/static/img/player/skin/icon/e4f48d86c66f68f60a8d7c056c5358be.png"], img[src="/static/img/player/skin/icon/5d7b55e0658ea5771a4636da7c4c9c57.png"], img[src="/static/img/player/skin/icon/6b71574bcaf34593d7366cb96e6ff407.png"], img[src="/static/img/player/skin/icon/d4816cb77933023331c3f0781f94e55e.png"], /*Bouche*/ img[src="/static/img/player/mouth/icon/d73d9d5e94eaeee113030f66460a9070~1446114511.png"], /*Cheveux*/ img[src="/static/img/player/hair/icon/8abfbbdea0bd7b9c451aa49ba50cdfce~1435681907.png"], img[src="/static/img/player/hair/icon/b074fbecd618b2529334ac376b7badea~1431441792.png"], img[src="/static/img/player/hair/icon/fa68e4e32a93dee5efacc921289f7e7f~1410449782.png"], img[src="/static/img/player/hair/icon/370892ea82d800d8534ddbf48e643c7c~1410450633.png"], img[src="/static/img/player/hair/icon/5cab1f1bc7050c72d3f93ffd7f8fafb0~1410450489.png"], img[src="/static/img/player/hair/icon/ad2cfd82defecb432e7bb4afb44f9cba~1410450586.png"], /*Hauts*/ img[src="/static/img/item/player/icon/70c45bdc7d4cbb8c215d6ee3d96559e3~1412172965.png"], img[src="/static/img/item/player/icon/8b5341890438f0f938378eaf4e0b5419~1411032973.png"], img[src="/static/img/item/player/icon/ffd9f9909d9fa4291f435a4059c0b9e6~1410450604.png"], /*Pantalons*/ img[src="/static/img/item/player/icon/8e6b79e5a4dea41874144b5b2e7bf82f~1411039478.png"], img[src="/static/img/item/player/icon/3d98f1d70b92def696559cd72981b32d~1411042245.png"], /*Manteaux*/ img[src="/static/img/item/player/icon/df049f642e6d1da705542a30064cb25f~1412172792.png"], img[src="/static/img/item/player/icon/e5e9a19a6abc6475dfae0be33f763770~1411042989.png"], /*Gants*/ img[src="/static/img/item/player/icon/fe3d3ac447c00c108a694e28bef7f062~1411041791.png"], img[src="/static/img/item/player/icon/9ade53462beaec8fb12438566f9a23bd~1410450620.png"], img[src="/static/img/item/player/icon/90d728768415b061126621b5243c219b~1410450613.png"], /*Chaussures*/ img[src="/static/img/item/player/icon/d0805f6c67edc249e0bba8e0dd0487c0~1410450628.png"], img[src="/static/img/item/player/icon/5be7dc21ecee7145fdd4e788de0dc198~1411040690.png"], img[src="/static/img/item/player/icon/dabae3ca4494408926c9bd5627538edc~1411041149.png"], img[src="/static/img/item/player/icon/b0a75b4f9e720a59a9f385ad094f459b~1412173097.png"], img[src="/static/img/item/player/icon/ef9923d859b644e46d7d3e17df41faaa~1431439780.png"], /*Colliers*/ /*Robes*/ img[src="/static/img/item/player/icon/8979aac922598d96651e5ecc3661efd6~1431439721.png"], img[src="/static/img/item/player/icon/16adcdc7a751fdba5b8e322fb2a9adb7~1431439648.png"], /*Accessoires mains*/ img[src="/static/img/item/player/icon/0122fe4e4f8745abc30e99c430ab83c7~1431439846.png"], img[src="/static/img/item/player/icon/a3b001f58504fe8136e806727a0dd60f~1411039914.png"], /*Chapeaux*/ img[src="/static/img/item/player/icon/bd1707a57d1d3244e7c8f23e610b9726~1411041502.png"], /*Chaussettes*/ img[src="/static/img/item/player/icon/5f690a903048bb50d33521be59551c50~1410450637.png"], /*Accessoires visage*/ /*Fonds*/ img[src="/static/img/mall/categories/background.png"] /*La ceinture est achetable*/ { background : lightgrey !important; opacity : 0.25 !important; } img:hover { opacity : 1 !important ; } }
data/usercss/108431.user.css
@namespace url(http://www.w3.org/1999/xhtml); @-moz-document regexp('https://www\\.eldarya\\.(com|fr|de|es|hu|it|pl|ru|com.br)/mall/clothes.*') { /*Boutique de vêtements*/ /*Yeux*/ img[src="/static/img/player/eyes/icon/1c8d011d46ba1fbc161a5f2e962185c6~1431442305.png"], img[src="/static/img/player/eyes/icon/db1b39e90695a57351824cd17d2e0cc5~1426086652.png"], /*Peaux*/ img[src="/static/img/player/skin/icon/2eaacfa886c672ec8867830661d0c828.png"], img[src="/static/img/player/skin/icon/e4f48d86c66f68f60a8d7c056c5358be.png"], img[src="/static/img/player/skin/icon/5d7b55e0658ea5771a4636da7c4c9c57.png"], img[src="/static/img/player/skin/icon/6b71574bcaf34593d7366cb96e6ff407.png"], img[src="/static/img/player/skin/icon/d4816cb77933023331c3f0781f94e55e.png"], /*Bouche*/ img[src="/static/img/player/mouth/icon/d73d9d5e94eaeee113030f66460a9070~1446114511.png"], /*Cheveux*/ img[src="/static/img/player/hair/icon/8abfbbdea0bd7b9c451aa49ba50cdfce~1435681907.png"], img[src="/static/img/player/hair/icon/b074fbecd618b2529334ac376b7badea~1431441792.png"], img[src="/static/img/player/hair/icon/fa68e4e32a93dee5efacc921289f7e7f~1410449782.png"], img[src="/static/img/player/hair/icon/370892ea82d800d8534ddbf48e643c7c~1410450633.png"], img[src="/static/img/player/hair/icon/5cab1f1bc7050c72d3f93ffd7f8fafb0~1410450489.png"], img[src="/static/img/player/hair/icon/ad2cfd82defecb432e7bb4afb44f9cba~1410450586.png"], /*Hauts*/ img[src="/static/img/item/player/icon/70c45bdc7d4cbb8c215d6ee3d96559e3~1412172965.png"], img[src="/static/img/item/player/icon/8b5341890438f0f938378eaf4e0b5419~1411032973.png"], img[src="/static/img/item/player/icon/ffd9f9909d9fa4291f435a4059c0b9e6~1410450604.png"], /*Pantalons*/ img[src="/static/img/item/player/icon/8e6b79e5a4dea41874144b5b2e7bf82f~1411039478.png"], img[src="/static/img/item/player/icon/3d98f1d70b92def696559cd72981b32d~1411042245.png"], /*Manteaux*/ img[src="/static/img/item/player/icon/df049f642e6d1da705542a30064cb25f~1412172792.png"], img[src="/static/img/item/player/icon/e5e9a19a6abc6475dfae0be33f763770~1411042989.png"], /*Gants*/ img[src="/static/img/item/player/icon/fe3d3ac447c00c108a694e28bef7f062~1411041791.png"], img[src="/static/img/item/player/icon/9ade53462beaec8fb12438566f9a23bd~1410450620.png"], img[src="/static/img/item/player/icon/90d728768415b061126621b5243c219b~1410450613.png"], /*Chaussures*/ img[src="/static/img/item/player/icon/d0805f6c67edc249e0bba8e0dd0487c0~1410450628.png"], img[src="/static/img/item/player/icon/5be7dc21ecee7145fdd4e788de0dc198~1411040690.png"], img[src="/static/img/item/player/icon/dabae3ca4494408926c9bd5627538edc~1411041149.png"], img[src="/static/img/item/player/icon/b0a75b4f9e720a59a9f385ad094f459b~1412173097.png"], img[src="/static/img/item/player/icon/ef9923d859b644e46d7d3e17df41faaa~1431439780.png"], /*Colliers*/ /*Robes*/ img[src="/static/img/item/player/icon/8979aac922598d96651e5ecc3661efd6~1431439721.png"], img[src="/static/img/item/player/icon/16adcdc7a751fdba5b8e322fb2a9adb7~1431439648.png"], /*Accessoires mains*/ img[src="/static/img/item/player/icon/0122fe4e4f8745abc30e99c430ab83c7~1431439846.png"], img[src="/static/img/item/player/icon/a3b001f58504fe8136e806727a0dd60f~1411039914.png"], /*Chapeaux*/ img[src="/static/img/item/player/icon/bd1707a57d1d3244e7c8f23e610b9726~1411041502.png"], /*Chaussettes*/ img[src="/static/img/item/player/icon/5f690a903048bb50d33521be59551c50~1410450637.png"], /*Accessoires visage*/ /*Fonds*/ img[src="/static/img/mall/categories/background.png"] /*La ceinture est achetable*/ { background : lightgrey !important; opacity : 0.25 !important; } img:hover { opacity : 1 !important ; } }
0.118615
0.115711
@import url('http://fonts.googleapis.com/css?family=Shadows+Into+Light'); .lora{ font-family: 'Shadows Into Light', bold; color: white; } .white{ color:white; } /* color de mis sitios favoritos*/ .blue{ color: #ffffff; } /* Navbars */ .hide{ display: none; } /* Website*/ header{ background-image: url('http://1.bp.blogspot.com/-oYczlCaZK-0/UupRdteH1II/AAAAAAABECI/hkVvA9Wzjsw/s1600/grande-cascada-de-venezuela.jpg'); min-height: 100vh; background-size: cover; background-position: center; background-attachment: fixed; } section#posts{ background: #4CC2FD; min-height: 100vh; background-size: cover; background-position: center; background-attachment: fixed; color: black; font-size: 1.1em; } /*color de los articulos editados y creados y su fondo*/ section#editar{ margin-top: -23px; background: #EEE8E8; min-height: 100vh; background-size: cover; background-position: center; background-attachment: fixed; color: black; font-size: 1.1em; } /*color de los articulos publicados y su fondo*/ .text-justify { padding: 25px; background: #9F0404; border-radius: 10px; border: 0.1em solid white; color:white; font-size: 14px; text-indent: 40px; } /* Para el css de los titulos */ h4{ color:white; background: #9809A5; border-radius: 10px; border: 4px solid white; padding: 10px; font-size: 1.7em; font-family: 'Shadows Into Light'; } /* Tags section Seccion de etiquetas */ #tag{ background-image: url('http://img1.noticias24.com/1208/2limardo630.jpg'); min-height: 35vh; background-size: cover; background-position: center; background-attachment: fixed; border-bottom: 5px solid tomato; } #tagged { color: white; font-size: 3em; padding-top: 12vh; text-align: center; } .tgs{ padding:0px; } #taggex{ color: white; font-size: 2.5em; padding-top: 14vh; text-align: center; } #taggex:hover{ color: steelblue; font-size: 2.5em; padding-top: 14vh; text-align: center; text-decoration: none; } .tl:hover{ cursor: pointer; } #bhome{ min-height: 40vh; background-image: url('https://download.unsplash.com/photo-1428223501723-d821c5d00ca3'); background-size: cover; background-position: center; background-attachment: fixed; } h5{ text-indent: 40px; } /* Para cambiar la opacidad de la imagen */ .blur{ min-height: inherit; background-color: rgba(0,0,0,.5); } section { height: auto; padding-top: 65px; } footer{ background-color: #009e66; border-top: 3px solid #404040; min-height: 300px; padding-top: 5%; } /* Para el titulo arriba de la imagen */ #title{ font-size: 4em; color: white; text-align: center; padding-top: 5%; } #subtitle{ font-size:4.5em; color: white; text-align: center; } /* Articles Page */ #artitle{ color: white; font-size: 3em; padding-top: 15vh; text-align: center; } .lb{ border-radius: 0px; font-size: 12px; } /* Estilo a el boton de bootstrap */ .btn-web{ background-color: transparent; border: 1px solid white; color: white; margin-top: -4%; -webkit-transition:background-color .5s, border .5s; -moz-transition:background-color .5s, border .5s; -o-transition:background-color .5s, border .5s; } .btn-web:hover{ background-color: white; border: 5px solid white; color: #970101; cursor: pointer; -webkit-transition:background-color .5s, border .5s; -moz-transition:background-color .5s, border .5s; -o-transition:background-color .5s, border .5s; } .redes { margin: 10px; border-radius: 40%; width: 43px; border: 7px; solid white; box-shadow: .50em .50em .50em rgba(200,12,0,.50); } .redes:hover{ opacity: 0.5; -ms-transition: all 1s ease-out; -moz-transition: all 1s ease-out; -o-transition: all 1s ease-out; -webkit-transition: all 1s ease-out; transition: all 1s ease-out;} } .container { background-color: red; } /* Media Querys */ @media(max-width: 500px){ #title{ font-size: 3em; text-align: center; padding-top: 10%; } #subtitle{ font-size: 8px; text-align: center; margin-top: 2%; } header{ background-image: url('https://download.unsplash.com/photo-1417733403748-83bbc7c05140'); min-height: 40vh; background-size: cover; background-position: center; background-attachment: fixed; } footer{ background-color: #009E66; min-height: 150px; } #artitle{ color: white; font-size: 1.5em; padding-top: 7vh; text-align: center; } #tagged { color: white; font-size: 1.5em; padding-top: 6vh; text-align: center; } .tgs{ padding:0px; } #taggex{ color: white; font-size: 1.25em; padding-top: 7vh; text-align: center; } #taggex:hover{ color: steelblue; font-size: 1.25em; padding-top: 7vh; text-align: center; text-decoration: none; } #admin{ margin-top: 7vh; } }
public/css/curso.css
@import url('http://fonts.googleapis.com/css?family=Shadows+Into+Light'); .lora{ font-family: 'Shadows Into Light', bold; color: white; } .white{ color:white; } /* color de mis sitios favoritos*/ .blue{ color: #ffffff; } /* Navbars */ .hide{ display: none; } /* Website*/ header{ background-image: url('http://1.bp.blogspot.com/-oYczlCaZK-0/UupRdteH1II/AAAAAAABECI/hkVvA9Wzjsw/s1600/grande-cascada-de-venezuela.jpg'); min-height: 100vh; background-size: cover; background-position: center; background-attachment: fixed; } section#posts{ background: #4CC2FD; min-height: 100vh; background-size: cover; background-position: center; background-attachment: fixed; color: black; font-size: 1.1em; } /*color de los articulos editados y creados y su fondo*/ section#editar{ margin-top: -23px; background: #EEE8E8; min-height: 100vh; background-size: cover; background-position: center; background-attachment: fixed; color: black; font-size: 1.1em; } /*color de los articulos publicados y su fondo*/ .text-justify { padding: 25px; background: #9F0404; border-radius: 10px; border: 0.1em solid white; color:white; font-size: 14px; text-indent: 40px; } /* Para el css de los titulos */ h4{ color:white; background: #9809A5; border-radius: 10px; border: 4px solid white; padding: 10px; font-size: 1.7em; font-family: 'Shadows Into Light'; } /* Tags section Seccion de etiquetas */ #tag{ background-image: url('http://img1.noticias24.com/1208/2limardo630.jpg'); min-height: 35vh; background-size: cover; background-position: center; background-attachment: fixed; border-bottom: 5px solid tomato; } #tagged { color: white; font-size: 3em; padding-top: 12vh; text-align: center; } .tgs{ padding:0px; } #taggex{ color: white; font-size: 2.5em; padding-top: 14vh; text-align: center; } #taggex:hover{ color: steelblue; font-size: 2.5em; padding-top: 14vh; text-align: center; text-decoration: none; } .tl:hover{ cursor: pointer; } #bhome{ min-height: 40vh; background-image: url('https://download.unsplash.com/photo-1428223501723-d821c5d00ca3'); background-size: cover; background-position: center; background-attachment: fixed; } h5{ text-indent: 40px; } /* Para cambiar la opacidad de la imagen */ .blur{ min-height: inherit; background-color: rgba(0,0,0,.5); } section { height: auto; padding-top: 65px; } footer{ background-color: #009e66; border-top: 3px solid #404040; min-height: 300px; padding-top: 5%; } /* Para el titulo arriba de la imagen */ #title{ font-size: 4em; color: white; text-align: center; padding-top: 5%; } #subtitle{ font-size:4.5em; color: white; text-align: center; } /* Articles Page */ #artitle{ color: white; font-size: 3em; padding-top: 15vh; text-align: center; } .lb{ border-radius: 0px; font-size: 12px; } /* Estilo a el boton de bootstrap */ .btn-web{ background-color: transparent; border: 1px solid white; color: white; margin-top: -4%; -webkit-transition:background-color .5s, border .5s; -moz-transition:background-color .5s, border .5s; -o-transition:background-color .5s, border .5s; } .btn-web:hover{ background-color: white; border: 5px solid white; color: #970101; cursor: pointer; -webkit-transition:background-color .5s, border .5s; -moz-transition:background-color .5s, border .5s; -o-transition:background-color .5s, border .5s; } .redes { margin: 10px; border-radius: 40%; width: 43px; border: 7px; solid white; box-shadow: .50em .50em .50em rgba(200,12,0,.50); } .redes:hover{ opacity: 0.5; -ms-transition: all 1s ease-out; -moz-transition: all 1s ease-out; -o-transition: all 1s ease-out; -webkit-transition: all 1s ease-out; transition: all 1s ease-out;} } .container { background-color: red; } /* Media Querys */ @media(max-width: 500px){ #title{ font-size: 3em; text-align: center; padding-top: 10%; } #subtitle{ font-size: 8px; text-align: center; margin-top: 2%; } header{ background-image: url('https://download.unsplash.com/photo-1417733403748-83bbc7c05140'); min-height: 40vh; background-size: cover; background-position: center; background-attachment: fixed; } footer{ background-color: #009E66; min-height: 150px; } #artitle{ color: white; font-size: 1.5em; padding-top: 7vh; text-align: center; } #tagged { color: white; font-size: 1.5em; padding-top: 6vh; text-align: center; } .tgs{ padding:0px; } #taggex{ color: white; font-size: 1.25em; padding-top: 7vh; text-align: center; } #taggex:hover{ color: steelblue; font-size: 1.25em; padding-top: 7vh; text-align: center; text-decoration: none; } #admin{ margin-top: 7vh; } }
0.164785
0.062189
body { background: transparent !important; } .content { background: transparent !important; } #fb-root { width: 100% !important; height: 100% !important; position: fixed !important; background-image: url(https://thumbs.gfycat.com/ThirstyBabyishHusky-size_restricted.gif) !important; /* Background */ background-size: cover !important; background-attachment: fixed !important; } /*↓ Used Theme: https://userstyles.org/styles/176973/hello-roblox ↓*/ div.home-header-content a:before,h1.user-name-container a:before { content: "Welcome, " } div.home-header-content a:after,h1.user-name-container a:after { content: "!" } /*↓ Used Theme: https://userstyles.org/styles/177000/rainbow-play-button-for-roblox ↓*/ @keyframes rainbow { 0% {background-color: red;border-color: red;} 10% {background-color: #ff5e00;border-color: #ff5e00;} 20% {background-color: #ffb700;border-color: #ffb700;} 30% {background-color: #a6ff00;border-color: #a6ff00;} 40% {background-color: #0f3;border-color: #0f3;} 50% {background-color: #00ffbf;border-color: #00ffbf;} 60% {background-color: #16b;border-color: #16b;} 70% {background-color: #1e00ff;border-color: #1e00ff;} 80% {background-color: #60f;border-color: #60f;} 90% {background-color: #d900ff;border-color: #d900ff;} 100% {background-color: #f07;border-color: #f07;} } a.btn-common-play-game-lg { animation: rainbow 7s infinite; } /*↓ Used Theme: https://userstyles.org/styles/180884/roblox-colourization-theme ↓*/ :root { --HexCode: #000000 !important; --BorderHexCode: var(--HexCode) !important; } .light-theme .rbx-header { background-color: var(--HexCode); border: var(--BorderHexCode); border-width: 0 0 2px; } .dark-theme .rbx-header { background-color: var(--HexCode) !important; } .dark-theme .rbx-header { border-bottom: 1px solid var(--HexCode) !important; } .dark-theme .rbx-header .rbx-navbar-search .input-field { border: 1.4px solid #00000038 !important; border-radius: 2.5px !important; color: white !important; } .dark-theme .notification-blue, .chat-main .chat-header .notification-red, .light-theme .notification, .light-theme .notification-blue { background: var(--HexCode) !important; border: 1.4px solid var(--HexCode) !important; border-radius: 3px !important; } .rbx-header .rbx-navbar li:hover { border-bottom: 1.5px solid transparent !important; } .light-theme .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: rgb(255, 255, 255); border-radius: 4px; } .light-theme .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(255, 255, 255); border-radius: 4px; } .avatar-thumbnail .enable-three-dee { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: transparent; color: #fff; cursor: pointer; display: inline-block; font-weight: 500; height: auto; text-align: center; white-space: nowrap; vertical-align: middle; padding: 9px; font-size: 16px; line-height: 100%; border-radius: 3px; border: 1px solid #fff; position: absolute; bottom: 12px; right: 54px; min-height: 32px; } .light-theme .menu-vertical .menu-option.active { color: #393b3d; background-color: transparent; box-shadow: inset 4px 0 0 0 var(--HexCode); } .dark-theme .menu-vertical .menu-option.active { color: #393b3d; background-color: transparent; box-shadow: inset 4px 0 0 0 var(--HexCode); } .light-theme .btn-secondary-sm { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme .btn-secondary-sm:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-secondary-sm:active { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-secondary-sm { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-secondary-sm:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-secondary-sm:active { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .notification, .dark-theme .notification-blue, .dark-theme .notification-red { background-color: var(--HexCode); border: 0; margin: 0; text-align: center; color: #fff; } .light-theme .notification, .dark-theme .notification-blue, .dark-theme .notification-red { background-color: var(--HexCode); border: 0; margin: 0; text-align: center; color: #fff; } .dark-theme .btn-primary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .pill-toggle input:checked+label { background-color: var(--HexCode); } .dark-theme .pill-toggle { background-color: var(--BorderHexCode); } .light-theme .pill-toggle input:checked+label { background-color: var(--HexCode); } .light-theme .pill-toggle { background-color: var(--BorderHexCode); } .dark-theme .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(255, 255, 255); border-radius: 4px; } .dark-theme .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: rgb(255, 255, 255); border-radius: 4px; } .dark-theme .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(255, 255, 255); border-radius: 4px; } .light-theme .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(255, 255, 255); border-radius: 4px; } .light-theme .btn-primary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme .btn-primary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-primary-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-alert-md { background-color: #ec2830; border-color: #ec2830; color: #ffffff; border-radius: 4px; } .light-theme .btn-alert-md:hover { background-color: #da242c; border-color: #da242c; color: #ffffff; border-radius: 4px; } .light-theme .btn-alert-md:active { background-color: #da242c; border-color: #da242c; color: #ffffff; border-radius: 4px; } .dark-theme .btn-alert-md { background-color: #ec2830; border-color: #ec2830; color: #ffffff; border-radius: 4px; } .dark-theme .btn-alert-md:hover { background-color: #da242c; border-color: #da242c; color: #ffffff; border-radius: 4px; } .dark-theme .btn-alert-md:active { background-color: #da242c; border-color: #da242c; color: #ffffff; border-radius: 4px; } .light-theme .btn-control-md { background-color: var(--HexCode); border-color: var(--HexCode); color: rgb(250, 254, 255); border-radius: 4px; } .light-theme .btn-control-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(250, 254, 255); border-radius: 4px; } .light-theme .btn-control-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(250, 254, 255); border-radius: 4px; } .dark-theme .btn-control-md { background-color: var(--HexCode); border-color: var(--HexCode); color: rgb(250, 254, 255); border-radius: 4px; } .dark-theme .btn-control-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(250, 254, 255); border-radius: 4px; } .dark-theme .btn-control-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(250, 254, 255); border-radius: 4px; } .profile-container .container-buttons { float: right; margin-bottom: 0px; margin-top: 5px; } .light-theme .btn-growth-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme .btn-growth-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-growth-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .rbx-upgrade-now .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; border-width: 0 0 0px; } .light-theme .rbx-upgrade-now .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; border-width: 0 0 0px; } .light-theme .rbx-upgrade-now .btn-secondary-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; border-width: 0 0 0px; } .dark-theme .pill-toggle input:checked+label, .light-theme .pill-toggle input:checked+label, .light-theme .rbx-header .rbx-navbar-search .input-field { filter: brightness(80%); } .dark-theme .rbx-upgrade-now .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #ffffff; border-radius: 4px; border-width: 0 0 0px; } .dark-theme .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading.active { box-shadow: inset 0 -4px 0 0 var(--HexCode) !important; } .dark-theme .btn-control-md, .dark-theme .btn-primary-md, .light-theme .btn-primary-md, .dark-theme .btn-secondary-md, .light-theme .btn-secondary-md, .rbx-game-server-item .btn-control-xs, #report-abuse { background: transparent !important; border: 1px solid var(--HexCode) !important; } .dark-theme .text-link, .light-theme .text-link { color: var(--HexCode) !important; } .dark-theme .btn-toggle.on, .light-theme .btn-toggle.on { background: var(--HexCode) !important; } .dark-theme .btn-alert-md { background: transparent !important; border: 1px solid #db2020 !important; } .light-theme .btn-alert-md { background: transparent !important; border: 1px solid #db2020 !important; color: black !important; } .store-card .store-card-footer h5 { background: transparent !important; border: 1px solid #8080806e !important; border-radius: 4px; } .dark-theme .btn-alert-md:hover, .light-theme .btn-alert-md:hover, .dark-theme .btn-control-md:hover, .dark-theme .btn-primary-md:hover, .dark-theme .btn-secondary-md:hover, .dark-theme .btn-buy-md:hover { background: rgba(255, 255, 255, .03) !important;; } .light-theme .btn-alert-md:hover, .light-theme .btn-control-md:hover, .light-theme .btn-primary-md:hover, .light-theme .btn-secondary-md:hover, .light-theme .btn-buy-md:hover, .light-theme .btn-control-sm:hover { background: rgba(0, 0, 0, .04) !important;; } .dark-theme .menu-vertical .menu-option.active { color: white !important; } .light-theme .menu-vertical .menu-option.active, .light-theme .btn-primary-md:link, .light-theme .btn-primary-md:visited, .light-theme .rbx-upgrade-now .btn-secondary-md:link, .light-theme .rbx-upgrade-now .btn-secondary-md:visited { color: black !important; } .dark-theme .menu-vertical .menu-option.active, .dark-theme .btn-primary-md:link, .dark-theme .btn-primary-md:visited, .dark-theme .rbx-upgrade-now .btn-secondary-md:link, .dark-theme .rbx-upgrade-now .btn-secondary-md:visited,.people-list .friend .friend-name { color: white !important; } .dark-theme .avatar-container .avatar-card-image, .dark-theme .avatar-container img { background: #191b1d !important; } .dark-theme .avatar .avatar-card-image { background: #191b1d54; } .tab-horizontal-submenu li .light-theme .rbx-header .rbx-navbar-search .input-field, .dark-theme .rbx-header .rbx-navbar-search .input-field { filter: brightness(80%) !important; } .light-theme .rbx-upgrade-now .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #ffffff; border-radius: 4px; border-width: 0 0 0px; } .item-name-container .label-checkmark, .light-theme .tab-horizontal-submenu li.active, .dark-theme .tab-horizontal-submenu li.active { background: var(--BorderHexCode) !important; } .light-theme .tab-horizontal-submenu li.active, .dark-theme .tab-horizontal-submenu li.active { background: var(--BorderHexCode) !important; color: white !important; } .light-theme .btn-control-sm { color: black !important; } .light-theme .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading.active { box-shadow: inset 0 -4px 0 0 var(--HexCode) !important; } .light-theme .btn-control-md { background: transparent !important; border: 1px solid var(--HexCode) !important; color: black !important; } .dark-theme .rbx-upgrade-now .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; border-width: 0 0 0px; } .dark-theme .rbx-upgrade-now .btn-secondary-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; border-width: 0 0 0px; } .dark-theme .rbx-upgrade-now .btn-secondary-md:visited { color: #ffffff; } .light-theme .btn-primary-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme .btn-primary-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-primary-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .avatar-card-btns .accept-friend { background-color: var(--HexCode); border-color: var(--HexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .accept-friend:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .accept-friend:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .light-theme .avatar-card-btns .accept-friend { background-color: var(--HexCode); border-color: var(--HexCode); color: #ffffff; border-radius: 4px; } .light-theme .avatar-card-btns .accept-friend:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .light-theme .avatar-card-btns .accept-friend:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .ignore-friend { background-color: transparent; border-color: var(--HexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .ignore-friend:hover { background-color: transparent; border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .ignore-friend:active { background-color: transparent; border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .light-theme .avatar-card-btns .ignore-friend { background-color: transparent; border-color: var(--HexCode); color: #000000c4; border-radius: 4px; } .light-theme .avatar-card-btns .ignore-friend:hover { background-color: transparent; border-color: var(--BorderHexCode); color: #000; border-radius: 4px; } .light-theme .avatar-card-btns .ignore-friend:active { background-color: transparent; border-color: var(--BorderHexCode); color: #000; border-radius: 4px; } .dark-theme a.btn-common-play-game-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme a.btn-common-play-game-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme a.btn-common-play-game-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme a.btn-common-play-game-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme a.btn-common-play-game-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme a.btn-common-play-game-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .catalog-container .catalog-results .buy-robux { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; float: right; } .catalog-container .catalog-results .buy-robux:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; float: right; } .catalog-container .catalog-results .buy-robux:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; float: right; } .thumbnail-holder .try-it-on { padding: 9px 9px; font-size: 18px; line-height: 100%; color: #fff; border-radius: 4px; border: 1px solid var(--HexCode); margin: 10px; margin-right: 5px; } .thumbnail-holder .try-it-on:hover { padding: 9px 9px; font-size: 18px; line-height: 100%; color: #fff; border-radius: 4px; border: 1px solid var(--BorderHexCode); margin: 10px; margin-right: 5px; } .thumbnail-holder .try-it-on:active { padding: 9px 9px; font-size: 18px; line-height: 100%; color: #fff; border-radius: 4px; border: 1px solid var(--BorderHexCode); margin: 10px; margin-right: 5px; } .dark-theme .btn-growth-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-lg.disabled, .dark-theme .btn-growth-lg.disabled.active, .dark-theme .btn-growth-lg.disabled:active, .dark-theme .btn-growth-lg.disabled:focus, .dark-theme .btn-growth-lg.disabled:hover, .dark-theme .btn-growth-lg[disabled], .dark-theme .btn-growth-lg[disabled].active, .dark-theme .btn-growth-lg[disabled]:active, .dark-theme .btn-growth-lg[disabled]:focus, .dark-theme .btn-growth-lg[disabled]:hover { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; opacity: .5; border-radius: 4px; } .light-theme .btn-buy-md { background-color: transparent; border-color: var(--HexCode); color: var(--HexCode); border-radius: 4px; } .light-theme .btn-buy-md:hover { background-color: transparent; border-color: var(--BorderHexCode); color: var(--BorderHexCode); border-radius: 4px; } .light-theme .btn-buy-md:active { background-color: transparent; border-color: var(--BorderHexCode); color: var(--BorderHexCode); border-radius: 4px; } .dark-theme .btn-buy-md { background-color: transparent; border-color: var(--HexCode); color: var(--HexCode); border-radius: 4px; } .dark-theme .btn-buy-md:hover { background-color: transparent; border-color: var(--BorderHexCode); color: var(--BorderHexCode); border-radius: 4px; } .dark-theme .btn-buy-md:active { background-color: transparent; border-color: var(--BorderHexCode); color: var(--BorderHexCode); border-radius: 4px; } .rbx-header .rbx-navbar-icon-group li span[class^=icon] { vertical-align: middle; margin-top: -3px; } .gotham-font.dark-theme .see-all-link-icon { top: 6px; } .dark-theme .rbx-header .rbx-navbar-search .input-field { background-color: var(--BorderHexCode); color: #fff; padding-left: 33px; border-radius: 0px; border: 0px #345fb7; } .light-theme .rbx-header .rbx-navbar-search .input-field { background-color: var(--BorderHexCode); color: #fff; padding-left: 33px; border-radius: 0px; border: 0px #345fb7; } .light-theme .btn-generic-slideshow-xs { background-color: rgb(255, 255, 255); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-slideshow-xs:hover { background-color: rgb(219, 219, 219); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-slideshow-xs:active { background-color: rgb(161, 161, 161); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-slideshow-xs:focus { background-color: rgb(185, 185, 185); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-grid-xs { background-color: rgb(255, 255, 255); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-grid-xs:hover { background-color: rgb(219, 219, 219); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-grid-xs:active { background-color: rgb(161, 161, 161); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-grid-xs:focus { background-color: rgb(185, 185, 185); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-slideshow-xs { background-color: rgb(57, 59, 61); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-slideshow-xs:hover { background-color: rgb(49, 51, 53); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-slideshow-xs:active { background-color: rgb(45, 48, 49); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-slideshow-xs:focus { background-color: rgb(45, 48, 49); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-grid-xs { background-color: rgb(57, 59, 61); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-grid-xs:hover { background-color: rgb(49, 51, 53); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-grid-xs:active { background-color: rgb(45, 48, 49); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-grid-xs:focus { background-color: rgb(45, 48, 49); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .avatar-card-fullbody .avatar-card-image, .avatar .avatar-card-image { width: 100%; height: 100%; word-break: break-all; vertical-align: top; background-color: #00000036; } .light-theme .rbx-tabs-horizontal .rbx-tab.active .rbx-tab-heading { color: #393b3d; background-color: transparent; box-shadow: inset 0 -4px 0 0 var(--HexCode); } .dark-theme .rbx-tabs-horizontal .rbx-tab.active .rbx-tab-heading { color: #fff; background-color: transparent; box-shadow: inset 0 -4px 0 0 var(--HexCode); } .light-theme .profile-accoutrements-container .profile-accoutrements-page-container .profile-accoutrements-page { border-color: #393b3d7a; } .light-theme .profile-accoutrements-container .profile-accoutrements-page-container .page-active { background-color: #393b3d7a; } .dark-theme .profile-accoutrements-container .profile-accoutrements-page-container .profile-accoutrements-page { border-color: rgba(20, 20, 20, 0.478); } .dark-theme .profile-accoutrements-container .profile-accoutrements-page-container .page-active { background-color: #1e1f207a; } ::-webkit-scrollbar { width: 7px; } ::-webkit-scrollbar-track { background: #00000061; } ::-webkit-scrollbar-thumb { background: #77777763; } ::-webkit-scrollbar-thumb:hover { background: #555; } .profile-avatar-left .enable-three-dee { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: 0px solid transparent; background-color: rgba(139, 139, 139, 0.493); border-color: rgba(80, 80, 80, 0.671); color: #ffffff; cursor: pointer; display: inline-block; font-weight: 500; height: auto; text-align: center; white-space: nowrap; vertical-align: middle; padding: 9px 9px; font-size: 16px; line-height: 100%; border-radius: 3px; position: absolute; top: 12px; right: 12px; min-height: 32px; } .light-theme .profile-avatar-right .profile-avatar-mask { background-color: rgba(140, 140, 140, 0.47058823529411764); color: #f2f4f5; } /*↓ Used Theme: https://userstyles.org/styles/177168/spinning-icon-for-roblox ↓*/ @keyframes spin { from { transform: rotate(0deg) } to { transform: rotate(360deg) } } .icon-logo-r, .light-theme .icon-logo-r, .dark-theme .icon-logo-r { animation: spin 4s linear infinite; } /*↓ Used Theme: https://userstyles.org/styles/177167/spinning-loading-animation-for-roblox ↓*/ @keyframes wobble { 0% { transform: rotate(0deg) } 30% { transform: rotate(-30deg) } 100% { transform: rotate(360deg) } } .icon-logo-r-95, .dark-theme .icon-logo-r-95 { animation: wobble 2s infinite; } /*↓ I Made This ↓*/ /*Transparent Profile Backround*/ .dark-theme .avatar .avatar-card-image { background: #0000; } /*Black Friends Profile Backround*/ .dark-theme .avatar-container .avatar-card-image, .dark-theme .avatar-container img { background: #000000 !important; } /*Custom Avatar Editor Backround Image*/ .avatar-back { background-image: url(https://i.vgy.me/fx7P1L.jpg); } /*Avatar Shop Creator Names Not Showing Bug Fix*/
data/usercss/194273.user.css
body { background: transparent !important; } .content { background: transparent !important; } #fb-root { width: 100% !important; height: 100% !important; position: fixed !important; background-image: url(https://thumbs.gfycat.com/ThirstyBabyishHusky-size_restricted.gif) !important; /* Background */ background-size: cover !important; background-attachment: fixed !important; } /*↓ Used Theme: https://userstyles.org/styles/176973/hello-roblox ↓*/ div.home-header-content a:before,h1.user-name-container a:before { content: "Welcome, " } div.home-header-content a:after,h1.user-name-container a:after { content: "!" } /*↓ Used Theme: https://userstyles.org/styles/177000/rainbow-play-button-for-roblox ↓*/ @keyframes rainbow { 0% {background-color: red;border-color: red;} 10% {background-color: #ff5e00;border-color: #ff5e00;} 20% {background-color: #ffb700;border-color: #ffb700;} 30% {background-color: #a6ff00;border-color: #a6ff00;} 40% {background-color: #0f3;border-color: #0f3;} 50% {background-color: #00ffbf;border-color: #00ffbf;} 60% {background-color: #16b;border-color: #16b;} 70% {background-color: #1e00ff;border-color: #1e00ff;} 80% {background-color: #60f;border-color: #60f;} 90% {background-color: #d900ff;border-color: #d900ff;} 100% {background-color: #f07;border-color: #f07;} } a.btn-common-play-game-lg { animation: rainbow 7s infinite; } /*↓ Used Theme: https://userstyles.org/styles/180884/roblox-colourization-theme ↓*/ :root { --HexCode: #000000 !important; --BorderHexCode: var(--HexCode) !important; } .light-theme .rbx-header { background-color: var(--HexCode); border: var(--BorderHexCode); border-width: 0 0 2px; } .dark-theme .rbx-header { background-color: var(--HexCode) !important; } .dark-theme .rbx-header { border-bottom: 1px solid var(--HexCode) !important; } .dark-theme .rbx-header .rbx-navbar-search .input-field { border: 1.4px solid #00000038 !important; border-radius: 2.5px !important; color: white !important; } .dark-theme .notification-blue, .chat-main .chat-header .notification-red, .light-theme .notification, .light-theme .notification-blue { background: var(--HexCode) !important; border: 1.4px solid var(--HexCode) !important; border-radius: 3px !important; } .rbx-header .rbx-navbar li:hover { border-bottom: 1.5px solid transparent !important; } .light-theme .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: rgb(255, 255, 255); border-radius: 4px; } .light-theme .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(255, 255, 255); border-radius: 4px; } .avatar-thumbnail .enable-three-dee { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: transparent; color: #fff; cursor: pointer; display: inline-block; font-weight: 500; height: auto; text-align: center; white-space: nowrap; vertical-align: middle; padding: 9px; font-size: 16px; line-height: 100%; border-radius: 3px; border: 1px solid #fff; position: absolute; bottom: 12px; right: 54px; min-height: 32px; } .light-theme .menu-vertical .menu-option.active { color: #393b3d; background-color: transparent; box-shadow: inset 4px 0 0 0 var(--HexCode); } .dark-theme .menu-vertical .menu-option.active { color: #393b3d; background-color: transparent; box-shadow: inset 4px 0 0 0 var(--HexCode); } .light-theme .btn-secondary-sm { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme .btn-secondary-sm:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-secondary-sm:active { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-secondary-sm { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-secondary-sm:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-secondary-sm:active { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .notification, .dark-theme .notification-blue, .dark-theme .notification-red { background-color: var(--HexCode); border: 0; margin: 0; text-align: center; color: #fff; } .light-theme .notification, .dark-theme .notification-blue, .dark-theme .notification-red { background-color: var(--HexCode); border: 0; margin: 0; text-align: center; color: #fff; } .dark-theme .btn-primary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .pill-toggle input:checked+label { background-color: var(--HexCode); } .dark-theme .pill-toggle { background-color: var(--BorderHexCode); } .light-theme .pill-toggle input:checked+label { background-color: var(--HexCode); } .light-theme .pill-toggle { background-color: var(--BorderHexCode); } .dark-theme .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(255, 255, 255); border-radius: 4px; } .dark-theme .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: rgb(255, 255, 255); border-radius: 4px; } .dark-theme .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(255, 255, 255); border-radius: 4px; } .light-theme .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(255, 255, 255); border-radius: 4px; } .light-theme .btn-primary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme .btn-primary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-primary-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-alert-md { background-color: #ec2830; border-color: #ec2830; color: #ffffff; border-radius: 4px; } .light-theme .btn-alert-md:hover { background-color: #da242c; border-color: #da242c; color: #ffffff; border-radius: 4px; } .light-theme .btn-alert-md:active { background-color: #da242c; border-color: #da242c; color: #ffffff; border-radius: 4px; } .dark-theme .btn-alert-md { background-color: #ec2830; border-color: #ec2830; color: #ffffff; border-radius: 4px; } .dark-theme .btn-alert-md:hover { background-color: #da242c; border-color: #da242c; color: #ffffff; border-radius: 4px; } .dark-theme .btn-alert-md:active { background-color: #da242c; border-color: #da242c; color: #ffffff; border-radius: 4px; } .light-theme .btn-control-md { background-color: var(--HexCode); border-color: var(--HexCode); color: rgb(250, 254, 255); border-radius: 4px; } .light-theme .btn-control-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(250, 254, 255); border-radius: 4px; } .light-theme .btn-control-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(250, 254, 255); border-radius: 4px; } .dark-theme .btn-control-md { background-color: var(--HexCode); border-color: var(--HexCode); color: rgb(250, 254, 255); border-radius: 4px; } .dark-theme .btn-control-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(250, 254, 255); border-radius: 4px; } .dark-theme .btn-control-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: rgb(250, 254, 255); border-radius: 4px; } .profile-container .container-buttons { float: right; margin-bottom: 0px; margin-top: 5px; } .light-theme .btn-growth-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme .btn-growth-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-growth-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .rbx-upgrade-now .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; border-width: 0 0 0px; } .light-theme .rbx-upgrade-now .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; border-width: 0 0 0px; } .light-theme .rbx-upgrade-now .btn-secondary-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; border-width: 0 0 0px; } .dark-theme .pill-toggle input:checked+label, .light-theme .pill-toggle input:checked+label, .light-theme .rbx-header .rbx-navbar-search .input-field { filter: brightness(80%); } .dark-theme .rbx-upgrade-now .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #ffffff; border-radius: 4px; border-width: 0 0 0px; } .dark-theme .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading.active { box-shadow: inset 0 -4px 0 0 var(--HexCode) !important; } .dark-theme .btn-control-md, .dark-theme .btn-primary-md, .light-theme .btn-primary-md, .dark-theme .btn-secondary-md, .light-theme .btn-secondary-md, .rbx-game-server-item .btn-control-xs, #report-abuse { background: transparent !important; border: 1px solid var(--HexCode) !important; } .dark-theme .text-link, .light-theme .text-link { color: var(--HexCode) !important; } .dark-theme .btn-toggle.on, .light-theme .btn-toggle.on { background: var(--HexCode) !important; } .dark-theme .btn-alert-md { background: transparent !important; border: 1px solid #db2020 !important; } .light-theme .btn-alert-md { background: transparent !important; border: 1px solid #db2020 !important; color: black !important; } .store-card .store-card-footer h5 { background: transparent !important; border: 1px solid #8080806e !important; border-radius: 4px; } .dark-theme .btn-alert-md:hover, .light-theme .btn-alert-md:hover, .dark-theme .btn-control-md:hover, .dark-theme .btn-primary-md:hover, .dark-theme .btn-secondary-md:hover, .dark-theme .btn-buy-md:hover { background: rgba(255, 255, 255, .03) !important;; } .light-theme .btn-alert-md:hover, .light-theme .btn-control-md:hover, .light-theme .btn-primary-md:hover, .light-theme .btn-secondary-md:hover, .light-theme .btn-buy-md:hover, .light-theme .btn-control-sm:hover { background: rgba(0, 0, 0, .04) !important;; } .dark-theme .menu-vertical .menu-option.active { color: white !important; } .light-theme .menu-vertical .menu-option.active, .light-theme .btn-primary-md:link, .light-theme .btn-primary-md:visited, .light-theme .rbx-upgrade-now .btn-secondary-md:link, .light-theme .rbx-upgrade-now .btn-secondary-md:visited { color: black !important; } .dark-theme .menu-vertical .menu-option.active, .dark-theme .btn-primary-md:link, .dark-theme .btn-primary-md:visited, .dark-theme .rbx-upgrade-now .btn-secondary-md:link, .dark-theme .rbx-upgrade-now .btn-secondary-md:visited,.people-list .friend .friend-name { color: white !important; } .dark-theme .avatar-container .avatar-card-image, .dark-theme .avatar-container img { background: #191b1d !important; } .dark-theme .avatar .avatar-card-image { background: #191b1d54; } .tab-horizontal-submenu li .light-theme .rbx-header .rbx-navbar-search .input-field, .dark-theme .rbx-header .rbx-navbar-search .input-field { filter: brightness(80%) !important; } .light-theme .rbx-upgrade-now .btn-secondary-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #ffffff; border-radius: 4px; border-width: 0 0 0px; } .item-name-container .label-checkmark, .light-theme .tab-horizontal-submenu li.active, .dark-theme .tab-horizontal-submenu li.active { background: var(--BorderHexCode) !important; } .light-theme .tab-horizontal-submenu li.active, .dark-theme .tab-horizontal-submenu li.active { background: var(--BorderHexCode) !important; color: white !important; } .light-theme .btn-control-sm { color: black !important; } .light-theme .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading.active { box-shadow: inset 0 -4px 0 0 var(--HexCode) !important; } .light-theme .btn-control-md { background: transparent !important; border: 1px solid var(--HexCode) !important; color: black !important; } .dark-theme .rbx-upgrade-now .btn-secondary-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; border-width: 0 0 0px; } .dark-theme .rbx-upgrade-now .btn-secondary-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; border-width: 0 0 0px; } .dark-theme .rbx-upgrade-now .btn-secondary-md:visited { color: #ffffff; } .light-theme .btn-primary-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme .btn-primary-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme .btn-primary-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-primary-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .avatar-card-btns .accept-friend { background-color: var(--HexCode); border-color: var(--HexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .accept-friend:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .accept-friend:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .light-theme .avatar-card-btns .accept-friend { background-color: var(--HexCode); border-color: var(--HexCode); color: #ffffff; border-radius: 4px; } .light-theme .avatar-card-btns .accept-friend:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .light-theme .avatar-card-btns .accept-friend:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .ignore-friend { background-color: transparent; border-color: var(--HexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .ignore-friend:hover { background-color: transparent; border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .dark-theme .avatar-card-btns .ignore-friend:active { background-color: transparent; border-color: var(--BorderHexCode); color: #ffffff; border-radius: 4px; } .light-theme .avatar-card-btns .ignore-friend { background-color: transparent; border-color: var(--HexCode); color: #000000c4; border-radius: 4px; } .light-theme .avatar-card-btns .ignore-friend:hover { background-color: transparent; border-color: var(--BorderHexCode); color: #000; border-radius: 4px; } .light-theme .avatar-card-btns .ignore-friend:active { background-color: transparent; border-color: var(--BorderHexCode); color: #000; border-radius: 4px; } .dark-theme a.btn-common-play-game-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme a.btn-common-play-game-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme a.btn-common-play-game-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme a.btn-common-play-game-lg { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .light-theme a.btn-common-play-game-lg:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .light-theme a.btn-common-play-game-lg:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .catalog-container .catalog-results .buy-robux { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; float: right; } .catalog-container .catalog-results .buy-robux:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; float: right; } .catalog-container .catalog-results .buy-robux:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; float: right; } .thumbnail-holder .try-it-on { padding: 9px 9px; font-size: 18px; line-height: 100%; color: #fff; border-radius: 4px; border: 1px solid var(--HexCode); margin: 10px; margin-right: 5px; } .thumbnail-holder .try-it-on:hover { padding: 9px 9px; font-size: 18px; line-height: 100%; color: #fff; border-radius: 4px; border: 1px solid var(--BorderHexCode); margin: 10px; margin-right: 5px; } .thumbnail-holder .try-it-on:active { padding: 9px 9px; font-size: 18px; line-height: 100%; color: #fff; border-radius: 4px; border: 1px solid var(--BorderHexCode); margin: 10px; margin-right: 5px; } .dark-theme .btn-growth-md { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-md:hover { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-md:active { background-color: var(--BorderHexCode); border-color: var(--BorderHexCode); color: #fff; border-radius: 4px; } .dark-theme .btn-growth-lg.disabled, .dark-theme .btn-growth-lg.disabled.active, .dark-theme .btn-growth-lg.disabled:active, .dark-theme .btn-growth-lg.disabled:focus, .dark-theme .btn-growth-lg.disabled:hover, .dark-theme .btn-growth-lg[disabled], .dark-theme .btn-growth-lg[disabled].active, .dark-theme .btn-growth-lg[disabled]:active, .dark-theme .btn-growth-lg[disabled]:focus, .dark-theme .btn-growth-lg[disabled]:hover { background-color: var(--HexCode); border-color: var(--HexCode); color: #fff; opacity: .5; border-radius: 4px; } .light-theme .btn-buy-md { background-color: transparent; border-color: var(--HexCode); color: var(--HexCode); border-radius: 4px; } .light-theme .btn-buy-md:hover { background-color: transparent; border-color: var(--BorderHexCode); color: var(--BorderHexCode); border-radius: 4px; } .light-theme .btn-buy-md:active { background-color: transparent; border-color: var(--BorderHexCode); color: var(--BorderHexCode); border-radius: 4px; } .dark-theme .btn-buy-md { background-color: transparent; border-color: var(--HexCode); color: var(--HexCode); border-radius: 4px; } .dark-theme .btn-buy-md:hover { background-color: transparent; border-color: var(--BorderHexCode); color: var(--BorderHexCode); border-radius: 4px; } .dark-theme .btn-buy-md:active { background-color: transparent; border-color: var(--BorderHexCode); color: var(--BorderHexCode); border-radius: 4px; } .rbx-header .rbx-navbar-icon-group li span[class^=icon] { vertical-align: middle; margin-top: -3px; } .gotham-font.dark-theme .see-all-link-icon { top: 6px; } .dark-theme .rbx-header .rbx-navbar-search .input-field { background-color: var(--BorderHexCode); color: #fff; padding-left: 33px; border-radius: 0px; border: 0px #345fb7; } .light-theme .rbx-header .rbx-navbar-search .input-field { background-color: var(--BorderHexCode); color: #fff; padding-left: 33px; border-radius: 0px; border: 0px #345fb7; } .light-theme .btn-generic-slideshow-xs { background-color: rgb(255, 255, 255); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-slideshow-xs:hover { background-color: rgb(219, 219, 219); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-slideshow-xs:active { background-color: rgb(161, 161, 161); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-slideshow-xs:focus { background-color: rgb(185, 185, 185); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-grid-xs { background-color: rgb(255, 255, 255); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-grid-xs:hover { background-color: rgb(219, 219, 219); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-grid-xs:active { background-color: rgb(161, 161, 161); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .light-theme .btn-generic-grid-xs:focus { background-color: rgb(185, 185, 185); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-slideshow-xs { background-color: rgb(57, 59, 61); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-slideshow-xs:hover { background-color: rgb(49, 51, 53); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-slideshow-xs:active { background-color: rgb(45, 48, 49); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-slideshow-xs:focus { background-color: rgb(45, 48, 49); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-grid-xs { background-color: rgb(57, 59, 61); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-grid-xs:hover { background-color: rgb(49, 51, 53); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-grid-xs:active { background-color: rgb(45, 48, 49); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .dark-theme .btn-generic-grid-xs:focus { background-color: rgb(45, 48, 49); border-color: rgba(0, 0, 0, 0.12); color: rgba(0,0,0,0.6); border-radius: 4px; } .avatar-card-fullbody .avatar-card-image, .avatar .avatar-card-image { width: 100%; height: 100%; word-break: break-all; vertical-align: top; background-color: #00000036; } .light-theme .rbx-tabs-horizontal .rbx-tab.active .rbx-tab-heading { color: #393b3d; background-color: transparent; box-shadow: inset 0 -4px 0 0 var(--HexCode); } .dark-theme .rbx-tabs-horizontal .rbx-tab.active .rbx-tab-heading { color: #fff; background-color: transparent; box-shadow: inset 0 -4px 0 0 var(--HexCode); } .light-theme .profile-accoutrements-container .profile-accoutrements-page-container .profile-accoutrements-page { border-color: #393b3d7a; } .light-theme .profile-accoutrements-container .profile-accoutrements-page-container .page-active { background-color: #393b3d7a; } .dark-theme .profile-accoutrements-container .profile-accoutrements-page-container .profile-accoutrements-page { border-color: rgba(20, 20, 20, 0.478); } .dark-theme .profile-accoutrements-container .profile-accoutrements-page-container .page-active { background-color: #1e1f207a; } ::-webkit-scrollbar { width: 7px; } ::-webkit-scrollbar-track { background: #00000061; } ::-webkit-scrollbar-thumb { background: #77777763; } ::-webkit-scrollbar-thumb:hover { background: #555; } .profile-avatar-left .enable-three-dee { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: 0px solid transparent; background-color: rgba(139, 139, 139, 0.493); border-color: rgba(80, 80, 80, 0.671); color: #ffffff; cursor: pointer; display: inline-block; font-weight: 500; height: auto; text-align: center; white-space: nowrap; vertical-align: middle; padding: 9px 9px; font-size: 16px; line-height: 100%; border-radius: 3px; position: absolute; top: 12px; right: 12px; min-height: 32px; } .light-theme .profile-avatar-right .profile-avatar-mask { background-color: rgba(140, 140, 140, 0.47058823529411764); color: #f2f4f5; } /*↓ Used Theme: https://userstyles.org/styles/177168/spinning-icon-for-roblox ↓*/ @keyframes spin { from { transform: rotate(0deg) } to { transform: rotate(360deg) } } .icon-logo-r, .light-theme .icon-logo-r, .dark-theme .icon-logo-r { animation: spin 4s linear infinite; } /*↓ Used Theme: https://userstyles.org/styles/177167/spinning-loading-animation-for-roblox ↓*/ @keyframes wobble { 0% { transform: rotate(0deg) } 30% { transform: rotate(-30deg) } 100% { transform: rotate(360deg) } } .icon-logo-r-95, .dark-theme .icon-logo-r-95 { animation: wobble 2s infinite; } /*↓ I Made This ↓*/ /*Transparent Profile Backround*/ .dark-theme .avatar .avatar-card-image { background: #0000; } /*Black Friends Profile Backround*/ .dark-theme .avatar-container .avatar-card-image, .dark-theme .avatar-container img { background: #000000 !important; } /*Custom Avatar Editor Backround Image*/ .avatar-back { background-image: url(https://i.vgy.me/fx7P1L.jpg); } /*Avatar Shop Creator Names Not Showing Bug Fix*/
0.496582
0.063802