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 |
|---|---|---|---|---|
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
ul, ol {
list-style: none;
margin: 0;
padding: 0;
}
.header {
background-color: #41952c;
color: #FFFFFF;
}
.title {
text-align: center;
padding: 10px 0;
margin: 0;
}
.navigation {
position: sticky;
top: 0;
}
.navigation > ul {
display: flex;
justify-content: space-around;
}
.navigation-item {
flex: 1;
}
.navigation-item > a {
background-color: #41952c;
color: #FFFFFF;
text-decoration: none;
padding: 12px;
font-size: 16px;
display: block;
width: 100%;
text-align: center;
}
.navigation-item > a:hover {
background-color: #29611b;
}
.navigation-item > a:active {
background-color: #337722;
}
.blog {
display: flex;
padding: 10px 20px;
max-width: 1200px;
margin: auto;
}
.sidebar {
flex: 1 0 25%;
}
.blog-posts {
border-right: 2px solid #d3d3d3a2;
margin-right: 20px;
display: flex;
flex-wrap: wrap;
}
.blog-title {
flex: 1 0 100%;
}
.blog-post {
border: 2px solid #bdbdbd;
border-radius: 30px;
padding: 10px;
margin: 20px 10px;
flex: 1 0 250px;
transition: box-shadow .5s linear;
}
.blog-post:hover {
box-shadow: 4px 4px 6px #d3d3d3;
}
.footer {
box-shadow: 1px -5px 6px #d3d3d3;
margin: 10px 0;
}
.footer > h2 {
text-align: center;
padding: 10px 0;
}
.go-to-top {
color: #FFFFFF;
text-decoration: none;
background-color: #29611b6b;
padding: 16px 0;
height: 50px;
width: 50px;
position: fixed;
bottom: 20px;
right: 20px;
border-radius: 50%;
text-transform: uppercase;
text-align: center;
}
.menu-item {
display: none;
}
@media all and (max-width: 765px) {
.blog {
flex-wrap: wrap;
}
.blog-posts {
border-right: none;
margin-right: 0;
border-bottom: 2px solid #d3d3d3a2;
}
.navigation-item > a {
white-space: nowrap;
}
.menu-item {
display: block;
text-align: center;
background-color: #41952c;
color: #FFFFFF;
text-decoration: none;
font-size: 16px;
padding: 12px;
}
.navigation > ul {
display: none;
flex-wrap: wrap;
}
.navigation:hover > ul {
display: flex;
}
}
@media all and (max-width: 576px) {
h1 {
font-size: 26px;
}
h2 {
font-size: 20px;
margin: 5px 0;
}
.blog {
padding: 5px 10px;
}
.blog-posts {
margin: 10px 0;
}
} | g7/code/class11/css/style.css | * {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
ul, ol {
list-style: none;
margin: 0;
padding: 0;
}
.header {
background-color: #41952c;
color: #FFFFFF;
}
.title {
text-align: center;
padding: 10px 0;
margin: 0;
}
.navigation {
position: sticky;
top: 0;
}
.navigation > ul {
display: flex;
justify-content: space-around;
}
.navigation-item {
flex: 1;
}
.navigation-item > a {
background-color: #41952c;
color: #FFFFFF;
text-decoration: none;
padding: 12px;
font-size: 16px;
display: block;
width: 100%;
text-align: center;
}
.navigation-item > a:hover {
background-color: #29611b;
}
.navigation-item > a:active {
background-color: #337722;
}
.blog {
display: flex;
padding: 10px 20px;
max-width: 1200px;
margin: auto;
}
.sidebar {
flex: 1 0 25%;
}
.blog-posts {
border-right: 2px solid #d3d3d3a2;
margin-right: 20px;
display: flex;
flex-wrap: wrap;
}
.blog-title {
flex: 1 0 100%;
}
.blog-post {
border: 2px solid #bdbdbd;
border-radius: 30px;
padding: 10px;
margin: 20px 10px;
flex: 1 0 250px;
transition: box-shadow .5s linear;
}
.blog-post:hover {
box-shadow: 4px 4px 6px #d3d3d3;
}
.footer {
box-shadow: 1px -5px 6px #d3d3d3;
margin: 10px 0;
}
.footer > h2 {
text-align: center;
padding: 10px 0;
}
.go-to-top {
color: #FFFFFF;
text-decoration: none;
background-color: #29611b6b;
padding: 16px 0;
height: 50px;
width: 50px;
position: fixed;
bottom: 20px;
right: 20px;
border-radius: 50%;
text-transform: uppercase;
text-align: center;
}
.menu-item {
display: none;
}
@media all and (max-width: 765px) {
.blog {
flex-wrap: wrap;
}
.blog-posts {
border-right: none;
margin-right: 0;
border-bottom: 2px solid #d3d3d3a2;
}
.navigation-item > a {
white-space: nowrap;
}
.menu-item {
display: block;
text-align: center;
background-color: #41952c;
color: #FFFFFF;
text-decoration: none;
font-size: 16px;
padding: 12px;
}
.navigation > ul {
display: none;
flex-wrap: wrap;
}
.navigation:hover > ul {
display: flex;
}
}
@media all and (max-width: 576px) {
h1 {
font-size: 26px;
}
h2 {
font-size: 20px;
margin: 5px 0;
}
.blog {
padding: 5px 10px;
}
.blog-posts {
margin: 10px 0;
}
} | 0.472927 | 0.165526 |
body{background: #f4f4f4 url(../images/blog_bg.jpg) no-repeat 0 60px; padding-top:60px; font-family: Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;}
.blog-map{width:1216px; margin: 20px auto 0; font-size: 14px; color:#999;}
.blog-map a{color: #999;}
.blog-map span{font-family: "宋体"; color: #999; margin: 0 10px;}
.blog-content{width:1216px; padding: 20px 0; margin: 0 auto;}
/*博客左边*/
.blog-left{width: 800px;}
/*博客搜索*/
.blog-search{margin-bottom:15px;}
.blog-search input.search-key{width: 670px; height:45px; line-height: 45px; vertical-align: top; border-radius: 3px 0 0 3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); text-indent: 10px;}
.blog-search input.search-btn{width: 128px; height:47px; vertical-align: top; line-height: 47px; background-color: #186AF2; border: 1px solid #186AF2; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); border-radius: 0 3px 3px 0; color:#fff; font-size: 16px; cursor: pointer;}
.blog-search input.search-btn:hover{background-color: #2680EB; border: 1px solid #2680EB;}
.blog-keywords{width:100%; margin:15px 0; color:#999;}
.blog-keywords a{margin-right: 15px; color:#999}
.blog-keywords a:hover{color:#D69D00}
/*右边搜索*/
.blog-min-search{width:370px; padding:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-min-search input.search-key{width: 300px; height:37px; line-height: 37px; vertical-align: top; border-radius: 3px 0 0 3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); text-indent: 10px;}
.blog-min-search input.search-btn{width: 66px; height:39px; vertical-align: top; line-height: 39px; background-color: #186AF2; border: 1px solid #186AF2; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); border-radius: 0 3px 3px 0; color:#fff; font-size: 14px; cursor: pointer;}
.blog-min-search input.search-btn:hover{background-color: #2680EB; border: 1px solid #2680EB;}
/*轮播图*/
.blog-banner{border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-banner-box{padding: 5px;}
.swiper-container{width: 788px; height:236px;}
.swiper-slide div{width:100%;height:auto;min-height:100%;
transition:.2s linear 1s;
transform:scale(1.1,1.1);
}
.swiper-slide-active div,.swiper-slide-duplicate-active div{
transition:.4s linear;
transform:scale(1,1);
}
.blog-banner .pagination {position: absolute; left: 0; text-align: center; bottom: 10px; width: 100%;z-index:999;}
.blog-banner .swiper-pagination-bullet {display: inline-block;width: 8px;height: 8px;opacity:1;border-radius: 8px;background: #fff; margin: 0 3px;cursor: pointer;transition: width 0.3s ease-in-out;}
.blog-banner .swiper-pagination-bullet-active{background: #EB4336;width:24px;}
.blog-banner img{border-radius:4px;}
.blog-banner-tags{padding: 16px 0 16px 16px; border-top: 1px solid #eee;}
.blog-banner-tags h3{font-size: 16px; height:36px}
.blog-banner-tags a{font-size: 14px; margin-right: 16px; line-height: 27px; display: inline-block;}
.color-tags a:nth-child(8n){color: #6044bf;}
.color-tags a:nth-child(8n+1) {color: #249d66;}
.color-tags a:nth-child(8n+2) {color: #186AF2;}
.color-tags a:nth-child(8n+3){color: #c6194b;}
.color-tags a:nth-child(8n+4){color: #FBBC05;}
.color-tags a:nth-child(8n+5){color: #dccff2;}
.color-tags a:nth-child(8n+6){color: #EA4335;}
.color-tags a:nth-child(8n+7){color: #3d9037;}
.color-tags a:hover{opacity:0.72;}
/*博客知识库*/
.blog-book h3{font-size: 22px; font-weight: 400; line-height:27px; padding:5px 8px 8px;}
.blog-book{margin:15px 0; padding:15px 8px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-book li{width:33.3%; float:left; padding:8px; box-sizing: border-box;}
.blog-book li img{width:100%; border-radius:4px;}
/*博客文章*/
.blog-list{padding:18px 16px 8px; margin-top:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-list h3{font-size: 22px; font-weight: 400; line-height:27px;}
.cate-list{padding:2px 20px 8px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.atr-list dl{padding:20px 0 20px; border-bottom:1px dashed #e2e2e2; position: relative;}
.atr-list dl.noneimg dt{display:none;}
.atr-list dl.noneimg dd{margin-left:0;}
.atr-list dl:last-child{border-bottom:none;}
.atr-list dt{width:240px; height:136px; overflow:hidden; float:left;}
.atr-list dt img{width:240px; height:136px; border-radius:3px; transition: all 0.6s;}
.atr-list dl:hover img{transform: scale(1.2);}
.atr-list dd{margin-left:258px;}
.atr-list-title{font-size:18px; line-height:23px; min-height: 23px;}
.atr-list-info{padding:12px 0; color:#666; line-height:23px;font-size:14px;word-wrap: break-word;}
.atr-list-info a{color:#666;}
.atr-list-tags {color:#999; font-size: 12px;}
.atr-list-tags span{margin-right: 12px!important;}
.atr-list-tags a{margin-right: 6px!important;}
/*博客软件*/
.blog-soft{padding:18px 16px 0; margin-top:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); display:none;}
.blog-soft h3{font-size: 22px; font-weight: 400; line-height:27px;}
/*博客右边*/
.blog-right{width: 400px;}
.blog-title{font-size: 18px; height:40px;}
.blog-title a{float: right; color:#186AF2; font-family: '宋体';font-size: 12px; padding-top: 8px; padding-right: 5px;}
/*关于博客*/
.blog-about{width:400px; padding-bottom:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-about-bg {border-radius: 4px 4px 0 0; overflow: hidden; }
.blog-about-bg img {width: 100%; height: 120px; object-fit: cover; vertical-align: middle; }
.blog-about-info {position: relative; margin-bottom: 15px; }
.blog-about-info .avatar {width: 96px; height: 96px; margin: -50px auto 15px; }
.blog-about-info .avatar img {border-radius: 50%; width: 90px; height: 90px; padding: 3px; background-color: rgba(255,255,255,0.8); transition: -webkit-transform 0.75s; transition: transform 0.75s; transition: transform 0.75s, -webkit-transform 0.75s; }
.blog-about-info .avatar:hover img{ -webkit-transform: rotate(360deg);transform: rotate(360deg)}
.blog-about-title {text-align: center; font-size:18px;}
.blog-about-num {display: flex; flex-wrap: wrap; color:#999; padding: 5px; white-space: nowrap; }
.blog-about-num li {flex-basis: 0; flex-grow: 1; font-size:14px; line-height:24px; text-align: center; border-right: 1px solid #eee;}
.blog-about-num li span {color: #186AF2; font-size:18px}
.blog-about-num li:last-child {border-right: 0;}
/* 分类 */
.blog-cate{width:370px; margin-top:16px; padding:15px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-cate li{line-height: 20px; padding:6px 0; font-size: 16px; text-indent: 15px; background: url(../images/dot.png) no-repeat 0 14px;}
.blog-cate li span{display: block; float: right; padding: 0 10px; border-radius:4px; text-indent: 0; line-height:24px; font-size: 12px; background-color:#eee;}
.blog-cate li:hover{background-position:0 -41px}
/*开源下载*/
.blog-ad{width:398px; margin-top:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); position: relative;}
.blog-ad img{width:100%; border-radius:4px;}
.gitee-ops{text-align: center; width: 100%; position: absolute; bottom:0;left: 0; color: #fff;}
.gitee-download{height: 68px;}
.gitee-download a{width: 200px; line-height: 48px; font-size: 16px; display: inline-block; background-color: #EB4336; color: #fff; border-radius: 4px;}
.gitee-download a:hover{opacity: .9;}
.gitee-version{padding: 12px 0; font-size: 14px; background-color: rgba(0,0,0,0.6); border-radius:0 0 4px 4px;}
.gitee-version a{color:#fff; margin: 0 10px;}
.gitee-tips{height: 39px; font-size: 14px; color: #fff;}
.gitee-tips a{border: 1px solid #FBBC05; color: #fff; background-color: #FBBC05; padding: 2px 8px 3px; margin-left: 10px; border-radius: 3px;}
.gitee-tips a:hover{color: #fff; border-color: #186AF2; background-color:#186AF2;}
/*动态*/
.blog-action{width:370px; margin-top:16px; padding:15px 15px 0; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-timeline{ position: relative; padding-left: 32px; padding-bottom:15px;}
.blog-timeline:after {content: ""; position: absolute; top: 5px; left: 8px; width: 1px; height: 100%; background: #e3e9ed;}
.blog-timeline dl{padding-bottom: 8px; position: relative;}
.blog-timeline dt{font-size: 12px; line-height: 2; color: #999;}
.blog-timeline dd{font-size: 14px; line-height: 1.6;}
.blog-timeline .date-second-point{width: 10px; height: 10px; display: block; border-radius: 50%; border: 2px solid #FBBC05; background: #fff; position: absolute; z-index: 99; left:-30px; top:5px}
/* 标签云 */
.blog-tags{width:370px; margin-top:16px; padding:15px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-tags a {margin: 0 6px 5px 0 !important; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: inline-block; height: 25px; line-height: 25px; padding: 0 10px; font-size: 12px; border-radius: 3px; }
.blog-tags a:nth-child(8n){color: #6044bf; border: 1px solid #6044bf;}
.blog-tags a:nth-child(8n+1) {color: #249d66; border: 1px solid #249d66;}
.blog-tags a:nth-child(8n+2) {color: #186AF2; border: 1px solid #186AF2;}
.blog-tags a:nth-child(8n+3){color: #c6194b; border: 1px solid #c6194b;}
.blog-tags a:nth-child(8n+4){color: #FBBC05; border: 1px solid #FBBC05;}
.blog-tags a:nth-child(8n+5){color: #dccff2; border: 1px solid #dccff2;}
.blog-tags a:nth-child(8n+6){color: #EA4335; border: 1px solid #EA4335;}
.blog-tags a:nth-child(8n+7){color: #3d9037; border: 1px solid #3d9037;}
.blog-tags a:hover{opacity:0.72;}
/* 热门&推荐文章 */
.blog-hot{width:370px; margin-top:16px; padding:15px; border-radius:3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-hot li{line-height: 23px; padding:3px 0; font-size:14px;}
.blog-hot li span{width:20px; display:inline-block; color:#999; font-style:italic;}
.blog-hot ul li:nth-child(1) span{color:#EA4335}
.blog-hot ul li:nth-child(2) span{color:#F60}
.blog-hot ul li:nth-child(3) span{color:#FBBC05}
.blog-hot li:hover{background-position:0 -42px}
.blog-random{width:370px; margin-top:16px; padding:15px; border-radius:3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-random li{line-height: 23px; padding:3px 0; font-size:14px; text-indent:15px; background: url(../images/dot.png) no-repeat 0 13px;}
.blog-random li:hover{background-position:0 -42px}
/* 友情链接 */
.blog-links{width:370px; margin-top:16px; padding:15px; border-radius:3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-links-li li{width:121px; line-height: 20px; padding:3px 0; display:inline-block; font-size:14px; text-indent:15px; background: url(../images/dot.png) no-repeat 0 10px;}
.blog-links-li li:hover{background-position:0 -45px}
/*博客文章详情*/
.blog-detail{padding:16px 20px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-detail-title{font-size: 24px; color: #333; font-weight: 400; word-break: break-all;}
.blog-detial-ops{line-height: 30px; color:#999; font-size: 12px; padding: 12px 0;}
.blog-detial-ops span{margin-right: 20px;}
.blog-detial-ops a{margin-right:10px;}
.blog-detial-content{padding: 16px 0; color:#333; border-top:1px solid #f2f2f2;font-size: 16px!important; line-height: 1.72!important;}
.blog-detial-content p{padding: 8px 0;}
.blog-detial-content img{max-width:98%!important; margin:0 auto; display:block; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); border-radius: 4px;}
.blog-detial-content .gougu-video{width: 640px!important; height: 410px!important; margin:10px auto!important; border: 12px solid #F7F7F7; border-radius: 6px;}
.blog-detial-content h1,.blog-detial-content h2,.blog-detial-content h3,.blog-detial-content h4,.blog-detial-content h5{margin-top:10px;}
.blog-detial-content a{color:#186AF2; font-style:italic;}
.blog-detial-content a:hover{text-decoration:underline;}
.blog-detial-content p code,.blog-detial-content pre{margin:0 3px;font-size: 14px; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; background: #f6f6f6; padding: 10px; border-radius: 2px;}
.blog-detial-content p code{border: 1px solid #eee;padding: 2px 4px;}
.blog-detial-content table {border-collapse: collapse; border-spacing: 0; display: block; width: 100%; overflow: auto; word-break: normal;word-break: keep-all; margin-top: 0;margin-bottom: 16px;}
.blog-detial-content table tr {background-color: #fff;border-top: 1px solid #ccc;}
.blog-detial-content table tr:nth-child(2n) {background-color: #f8f8f8;}
.blog-detial-content table td, .blog-detial-content table th { padding: 6px 12px;border: 1px solid #ddd; font-size:14px; }
.blog-detial-content table th {font-weight: 800;}
.blog-detial-content li {list-style: initial;margin-left: 20px;}
/*博客动态*/
.blog-action-top{border-radius:0 0 4px 4px; background-color: #fff; border: 1px solid #e6e6e6; border-top: none; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-action-bg{width: 798px;}
.blog-action-bg img{border-radius: 4px 4px 0 0; width: 100%;}
.blog-action-content{position: relative; padding: 16px; padding-left: 146px;}
.blog-action-content .avatar{width: 106px; height:106px; position:absolute; left:20px; top:-36px;}
.blog-action-content .avatar img{width: 100px; height:100px; border-radius: 100%; border: 3px solid #fff;}
.blog-action-name{font-size: 18px;}
.blog-action-desc{font-size: 14px; color: #666; padding: 8px 0 3px;}
.blog-action-list{padding:18px 16px 8px; margin-top: 16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-action-list h3{font-size: 22px; font-weight: 400; height:36px; line-height: 27px;}
.blog-action-list dl{width: 100%; padding:16px 0; border-bottom:1px dashed #e2e2e2; position: relative;}
.blog-action-list dl:last-child{border-bottom: none;}
.blog-action-list dt{width: 50px; float: left;}
.blog-action-list dt img{width: 50px; height:50px; border-radius: 50%;}
.blog-action-list dd{margin-left: 66px;font-size: 14px;}
.blog-action-list dd.action-dd-name{padding: 5px 0; font-weight: 600;}
.blog-action-list dd.action-dd-time{color: #999; font-size: 12px;}
.blog-action-list dd.action-dd-info{line-height: 1.6; padding-top: 8px;}
/*博客文章归档*/
.blog-calendar{padding:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-analysis{padding: 16px; text-align: center; font-size: 16px;}
.blog-analysis span{margin-left: 20px; margin-right: 3px; font-size: 20px; color: #EA4335;}
.blog-archives{padding-bottom: 16px; margin-top:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-archives-year {border-bottom: 1px solid #ebebeb; margin-top: 16px;}
.blog-archives-year h3{font-size: 16px;padding: 6px 12px; border-left: 5px solid #186AF2;}
.blog-archives-month{padding:15px 16px 5px; font-size: 14px;}
.blog-archives-month .mon-num{color:#999;}
.blog-archives-ul{padding:0 50px; font-size: 14px; line-height: 25px; color: #999;}
/*知识库*/
.doc-list li { width: 392px; height: 425px; margin: 0 20px 30px 0; float: left; overflow: hidden; background-color: white;border-radius: 10px;box-shadow:0 0 0 #fff; -webkit-transition:all .3s ease; transition:all .3s ease; opacity:1}
.doc-list li:nth-child(3n) { margin-right: 0; }
.doc-list li:hover{-webkit-box-shadow:0 15px 30px rgba(0,0,0,.2);box-shadow:0 15px 30px rgba(0,0,0,.2);}
.doc-title { width: 100%; max-height: 60px; display: block; padding: 0 15px;box-sizing: border-box;}
.doc-title-text { width: 100%; }
.doc-title-text h3 {font-size: 16px; height:36px; line-height:36px; overflow:hidden;}
.doc-title-text p {color: #999; font-size: 14px; }
.doc-title-text p time { color: #666; margin-right:12px;}
.doc-img { display: block; margin-bottom: 8px; }
.doc-img img { width: 100%; height: 222px; }
.doc-desc{ color: #2c3e50; font-size: 14px; height:56px; overflow:hidden; margin-top: 10px; text-align: left; padding: 0 15px;box-sizing: border-box;}
.doc-view{text-align:center; padding:15px 0}
.doc-view a {width: 136px;line-height: 39px;font-size: 16px; display: inline-block; background-color: #186AF2; color: #fff;border-radius: 3px;}
.doc-view a:hover{opacity:0.8;}
.content{display:flex; background-color:#fff}
.content-text{padding-left:350px;background-color:#fff}
.content-text-div{min-height:900px; padding-right:200px;}
.content-catalog{width:200px; height:200px; position:fixed; top:60px; right:0; border-left:1px solid #ddd; display:none}
.article-content{padding:20px; margin:0 auto; font-size:16px; line-height:1.8em;}
.article-content-title{line-height:2em;padding:10px 20px}
.article-content-title h1{font-size:24px;}
.content-chapter{width: 330px; padding:20px 10px; position: fixed;z-index: 10; margin: 0; top: 60px; left: 0; bottom: 0; box-sizing: border-box; border-right: 1px solid #eaecef; overflow-y: auto;}
.content-chapter h3{font-size:20px; line-height:2; padding:6px;}
.sidebar-links{padding:3px 0; margin:5px 0;line-height:1.68;font-size:14px;font-weight:400;display:inline-block;color:#2c3e50;transition:color .15s ease;width:100%;box-sizing:border-box}
.sidebar-a{width:100%;color:#2c3e50;cursor:pointer;padding:5px 0;}
.sidebar-link{border-left:4px solid transparent; padding:3px 0; display:inline-block; box-sizing:border-box}
.sidebar-a .sidebar-link{padding-left:24px;font-size:16px; font-weight:800;}
.sidebar-b .sidebar-link{padding-left:36px;font-size:15px; font-weight:400;}
.sidebar-c .sidebar-link{padding-left:48px;font-size:14px; font-weight:400;}
.sidebar-d .sidebar-link{padding-left:60px;font-size:13px; font-weight:400;}
a.sidebar-link:hover,a.sidebar-link.active{color:#3eaf7c;}
.sidebar-b .sidebar-link.active{border-left:4px solid #3eaf7c;}
.sidebar-c .sidebar-link.active{border-left:4px solid transparent;}
.sidebar-d .sidebar-link.active{border-left:4px solid transparent;} | public/static/home/css/blog.css | body{background: #f4f4f4 url(../images/blog_bg.jpg) no-repeat 0 60px; padding-top:60px; font-family: Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;}
.blog-map{width:1216px; margin: 20px auto 0; font-size: 14px; color:#999;}
.blog-map a{color: #999;}
.blog-map span{font-family: "宋体"; color: #999; margin: 0 10px;}
.blog-content{width:1216px; padding: 20px 0; margin: 0 auto;}
/*博客左边*/
.blog-left{width: 800px;}
/*博客搜索*/
.blog-search{margin-bottom:15px;}
.blog-search input.search-key{width: 670px; height:45px; line-height: 45px; vertical-align: top; border-radius: 3px 0 0 3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); text-indent: 10px;}
.blog-search input.search-btn{width: 128px; height:47px; vertical-align: top; line-height: 47px; background-color: #186AF2; border: 1px solid #186AF2; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); border-radius: 0 3px 3px 0; color:#fff; font-size: 16px; cursor: pointer;}
.blog-search input.search-btn:hover{background-color: #2680EB; border: 1px solid #2680EB;}
.blog-keywords{width:100%; margin:15px 0; color:#999;}
.blog-keywords a{margin-right: 15px; color:#999}
.blog-keywords a:hover{color:#D69D00}
/*右边搜索*/
.blog-min-search{width:370px; padding:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-min-search input.search-key{width: 300px; height:37px; line-height: 37px; vertical-align: top; border-radius: 3px 0 0 3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); text-indent: 10px;}
.blog-min-search input.search-btn{width: 66px; height:39px; vertical-align: top; line-height: 39px; background-color: #186AF2; border: 1px solid #186AF2; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); border-radius: 0 3px 3px 0; color:#fff; font-size: 14px; cursor: pointer;}
.blog-min-search input.search-btn:hover{background-color: #2680EB; border: 1px solid #2680EB;}
/*轮播图*/
.blog-banner{border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-banner-box{padding: 5px;}
.swiper-container{width: 788px; height:236px;}
.swiper-slide div{width:100%;height:auto;min-height:100%;
transition:.2s linear 1s;
transform:scale(1.1,1.1);
}
.swiper-slide-active div,.swiper-slide-duplicate-active div{
transition:.4s linear;
transform:scale(1,1);
}
.blog-banner .pagination {position: absolute; left: 0; text-align: center; bottom: 10px; width: 100%;z-index:999;}
.blog-banner .swiper-pagination-bullet {display: inline-block;width: 8px;height: 8px;opacity:1;border-radius: 8px;background: #fff; margin: 0 3px;cursor: pointer;transition: width 0.3s ease-in-out;}
.blog-banner .swiper-pagination-bullet-active{background: #EB4336;width:24px;}
.blog-banner img{border-radius:4px;}
.blog-banner-tags{padding: 16px 0 16px 16px; border-top: 1px solid #eee;}
.blog-banner-tags h3{font-size: 16px; height:36px}
.blog-banner-tags a{font-size: 14px; margin-right: 16px; line-height: 27px; display: inline-block;}
.color-tags a:nth-child(8n){color: #6044bf;}
.color-tags a:nth-child(8n+1) {color: #249d66;}
.color-tags a:nth-child(8n+2) {color: #186AF2;}
.color-tags a:nth-child(8n+3){color: #c6194b;}
.color-tags a:nth-child(8n+4){color: #FBBC05;}
.color-tags a:nth-child(8n+5){color: #dccff2;}
.color-tags a:nth-child(8n+6){color: #EA4335;}
.color-tags a:nth-child(8n+7){color: #3d9037;}
.color-tags a:hover{opacity:0.72;}
/*博客知识库*/
.blog-book h3{font-size: 22px; font-weight: 400; line-height:27px; padding:5px 8px 8px;}
.blog-book{margin:15px 0; padding:15px 8px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-book li{width:33.3%; float:left; padding:8px; box-sizing: border-box;}
.blog-book li img{width:100%; border-radius:4px;}
/*博客文章*/
.blog-list{padding:18px 16px 8px; margin-top:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-list h3{font-size: 22px; font-weight: 400; line-height:27px;}
.cate-list{padding:2px 20px 8px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.atr-list dl{padding:20px 0 20px; border-bottom:1px dashed #e2e2e2; position: relative;}
.atr-list dl.noneimg dt{display:none;}
.atr-list dl.noneimg dd{margin-left:0;}
.atr-list dl:last-child{border-bottom:none;}
.atr-list dt{width:240px; height:136px; overflow:hidden; float:left;}
.atr-list dt img{width:240px; height:136px; border-radius:3px; transition: all 0.6s;}
.atr-list dl:hover img{transform: scale(1.2);}
.atr-list dd{margin-left:258px;}
.atr-list-title{font-size:18px; line-height:23px; min-height: 23px;}
.atr-list-info{padding:12px 0; color:#666; line-height:23px;font-size:14px;word-wrap: break-word;}
.atr-list-info a{color:#666;}
.atr-list-tags {color:#999; font-size: 12px;}
.atr-list-tags span{margin-right: 12px!important;}
.atr-list-tags a{margin-right: 6px!important;}
/*博客软件*/
.blog-soft{padding:18px 16px 0; margin-top:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); display:none;}
.blog-soft h3{font-size: 22px; font-weight: 400; line-height:27px;}
/*博客右边*/
.blog-right{width: 400px;}
.blog-title{font-size: 18px; height:40px;}
.blog-title a{float: right; color:#186AF2; font-family: '宋体';font-size: 12px; padding-top: 8px; padding-right: 5px;}
/*关于博客*/
.blog-about{width:400px; padding-bottom:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-about-bg {border-radius: 4px 4px 0 0; overflow: hidden; }
.blog-about-bg img {width: 100%; height: 120px; object-fit: cover; vertical-align: middle; }
.blog-about-info {position: relative; margin-bottom: 15px; }
.blog-about-info .avatar {width: 96px; height: 96px; margin: -50px auto 15px; }
.blog-about-info .avatar img {border-radius: 50%; width: 90px; height: 90px; padding: 3px; background-color: rgba(255,255,255,0.8); transition: -webkit-transform 0.75s; transition: transform 0.75s; transition: transform 0.75s, -webkit-transform 0.75s; }
.blog-about-info .avatar:hover img{ -webkit-transform: rotate(360deg);transform: rotate(360deg)}
.blog-about-title {text-align: center; font-size:18px;}
.blog-about-num {display: flex; flex-wrap: wrap; color:#999; padding: 5px; white-space: nowrap; }
.blog-about-num li {flex-basis: 0; flex-grow: 1; font-size:14px; line-height:24px; text-align: center; border-right: 1px solid #eee;}
.blog-about-num li span {color: #186AF2; font-size:18px}
.blog-about-num li:last-child {border-right: 0;}
/* 分类 */
.blog-cate{width:370px; margin-top:16px; padding:15px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-cate li{line-height: 20px; padding:6px 0; font-size: 16px; text-indent: 15px; background: url(../images/dot.png) no-repeat 0 14px;}
.blog-cate li span{display: block; float: right; padding: 0 10px; border-radius:4px; text-indent: 0; line-height:24px; font-size: 12px; background-color:#eee;}
.blog-cate li:hover{background-position:0 -41px}
/*开源下载*/
.blog-ad{width:398px; margin-top:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); position: relative;}
.blog-ad img{width:100%; border-radius:4px;}
.gitee-ops{text-align: center; width: 100%; position: absolute; bottom:0;left: 0; color: #fff;}
.gitee-download{height: 68px;}
.gitee-download a{width: 200px; line-height: 48px; font-size: 16px; display: inline-block; background-color: #EB4336; color: #fff; border-radius: 4px;}
.gitee-download a:hover{opacity: .9;}
.gitee-version{padding: 12px 0; font-size: 14px; background-color: rgba(0,0,0,0.6); border-radius:0 0 4px 4px;}
.gitee-version a{color:#fff; margin: 0 10px;}
.gitee-tips{height: 39px; font-size: 14px; color: #fff;}
.gitee-tips a{border: 1px solid #FBBC05; color: #fff; background-color: #FBBC05; padding: 2px 8px 3px; margin-left: 10px; border-radius: 3px;}
.gitee-tips a:hover{color: #fff; border-color: #186AF2; background-color:#186AF2;}
/*动态*/
.blog-action{width:370px; margin-top:16px; padding:15px 15px 0; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-timeline{ position: relative; padding-left: 32px; padding-bottom:15px;}
.blog-timeline:after {content: ""; position: absolute; top: 5px; left: 8px; width: 1px; height: 100%; background: #e3e9ed;}
.blog-timeline dl{padding-bottom: 8px; position: relative;}
.blog-timeline dt{font-size: 12px; line-height: 2; color: #999;}
.blog-timeline dd{font-size: 14px; line-height: 1.6;}
.blog-timeline .date-second-point{width: 10px; height: 10px; display: block; border-radius: 50%; border: 2px solid #FBBC05; background: #fff; position: absolute; z-index: 99; left:-30px; top:5px}
/* 标签云 */
.blog-tags{width:370px; margin-top:16px; padding:15px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-tags a {margin: 0 6px 5px 0 !important; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: inline-block; height: 25px; line-height: 25px; padding: 0 10px; font-size: 12px; border-radius: 3px; }
.blog-tags a:nth-child(8n){color: #6044bf; border: 1px solid #6044bf;}
.blog-tags a:nth-child(8n+1) {color: #249d66; border: 1px solid #249d66;}
.blog-tags a:nth-child(8n+2) {color: #186AF2; border: 1px solid #186AF2;}
.blog-tags a:nth-child(8n+3){color: #c6194b; border: 1px solid #c6194b;}
.blog-tags a:nth-child(8n+4){color: #FBBC05; border: 1px solid #FBBC05;}
.blog-tags a:nth-child(8n+5){color: #dccff2; border: 1px solid #dccff2;}
.blog-tags a:nth-child(8n+6){color: #EA4335; border: 1px solid #EA4335;}
.blog-tags a:nth-child(8n+7){color: #3d9037; border: 1px solid #3d9037;}
.blog-tags a:hover{opacity:0.72;}
/* 热门&推荐文章 */
.blog-hot{width:370px; margin-top:16px; padding:15px; border-radius:3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-hot li{line-height: 23px; padding:3px 0; font-size:14px;}
.blog-hot li span{width:20px; display:inline-block; color:#999; font-style:italic;}
.blog-hot ul li:nth-child(1) span{color:#EA4335}
.blog-hot ul li:nth-child(2) span{color:#F60}
.blog-hot ul li:nth-child(3) span{color:#FBBC05}
.blog-hot li:hover{background-position:0 -42px}
.blog-random{width:370px; margin-top:16px; padding:15px; border-radius:3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-random li{line-height: 23px; padding:3px 0; font-size:14px; text-indent:15px; background: url(../images/dot.png) no-repeat 0 13px;}
.blog-random li:hover{background-position:0 -42px}
/* 友情链接 */
.blog-links{width:370px; margin-top:16px; padding:15px; border-radius:3px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-links-li li{width:121px; line-height: 20px; padding:3px 0; display:inline-block; font-size:14px; text-indent:15px; background: url(../images/dot.png) no-repeat 0 10px;}
.blog-links-li li:hover{background-position:0 -45px}
/*博客文章详情*/
.blog-detail{padding:16px 20px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-detail-title{font-size: 24px; color: #333; font-weight: 400; word-break: break-all;}
.blog-detial-ops{line-height: 30px; color:#999; font-size: 12px; padding: 12px 0;}
.blog-detial-ops span{margin-right: 20px;}
.blog-detial-ops a{margin-right:10px;}
.blog-detial-content{padding: 16px 0; color:#333; border-top:1px solid #f2f2f2;font-size: 16px!important; line-height: 1.72!important;}
.blog-detial-content p{padding: 8px 0;}
.blog-detial-content img{max-width:98%!important; margin:0 auto; display:block; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08); border-radius: 4px;}
.blog-detial-content .gougu-video{width: 640px!important; height: 410px!important; margin:10px auto!important; border: 12px solid #F7F7F7; border-radius: 6px;}
.blog-detial-content h1,.blog-detial-content h2,.blog-detial-content h3,.blog-detial-content h4,.blog-detial-content h5{margin-top:10px;}
.blog-detial-content a{color:#186AF2; font-style:italic;}
.blog-detial-content a:hover{text-decoration:underline;}
.blog-detial-content p code,.blog-detial-content pre{margin:0 3px;font-size: 14px; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; background: #f6f6f6; padding: 10px; border-radius: 2px;}
.blog-detial-content p code{border: 1px solid #eee;padding: 2px 4px;}
.blog-detial-content table {border-collapse: collapse; border-spacing: 0; display: block; width: 100%; overflow: auto; word-break: normal;word-break: keep-all; margin-top: 0;margin-bottom: 16px;}
.blog-detial-content table tr {background-color: #fff;border-top: 1px solid #ccc;}
.blog-detial-content table tr:nth-child(2n) {background-color: #f8f8f8;}
.blog-detial-content table td, .blog-detial-content table th { padding: 6px 12px;border: 1px solid #ddd; font-size:14px; }
.blog-detial-content table th {font-weight: 800;}
.blog-detial-content li {list-style: initial;margin-left: 20px;}
/*博客动态*/
.blog-action-top{border-radius:0 0 4px 4px; background-color: #fff; border: 1px solid #e6e6e6; border-top: none; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-action-bg{width: 798px;}
.blog-action-bg img{border-radius: 4px 4px 0 0; width: 100%;}
.blog-action-content{position: relative; padding: 16px; padding-left: 146px;}
.blog-action-content .avatar{width: 106px; height:106px; position:absolute; left:20px; top:-36px;}
.blog-action-content .avatar img{width: 100px; height:100px; border-radius: 100%; border: 3px solid #fff;}
.blog-action-name{font-size: 18px;}
.blog-action-desc{font-size: 14px; color: #666; padding: 8px 0 3px;}
.blog-action-list{padding:18px 16px 8px; margin-top: 16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-action-list h3{font-size: 22px; font-weight: 400; height:36px; line-height: 27px;}
.blog-action-list dl{width: 100%; padding:16px 0; border-bottom:1px dashed #e2e2e2; position: relative;}
.blog-action-list dl:last-child{border-bottom: none;}
.blog-action-list dt{width: 50px; float: left;}
.blog-action-list dt img{width: 50px; height:50px; border-radius: 50%;}
.blog-action-list dd{margin-left: 66px;font-size: 14px;}
.blog-action-list dd.action-dd-name{padding: 5px 0; font-weight: 600;}
.blog-action-list dd.action-dd-time{color: #999; font-size: 12px;}
.blog-action-list dd.action-dd-info{line-height: 1.6; padding-top: 8px;}
/*博客文章归档*/
.blog-calendar{padding:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-analysis{padding: 16px; text-align: center; font-size: 16px;}
.blog-analysis span{margin-left: 20px; margin-right: 3px; font-size: 20px; color: #EA4335;}
.blog-archives{padding-bottom: 16px; margin-top:16px; border-radius:4px; background-color: #fff; border: 1px solid #e6e6e6; -webkit-box-shadow: 0 2px 6px rgba(26,26,26,.08); box-shadow: 0 2px 6px rgba(26,26,26,.08);}
.blog-archives-year {border-bottom: 1px solid #ebebeb; margin-top: 16px;}
.blog-archives-year h3{font-size: 16px;padding: 6px 12px; border-left: 5px solid #186AF2;}
.blog-archives-month{padding:15px 16px 5px; font-size: 14px;}
.blog-archives-month .mon-num{color:#999;}
.blog-archives-ul{padding:0 50px; font-size: 14px; line-height: 25px; color: #999;}
/*知识库*/
.doc-list li { width: 392px; height: 425px; margin: 0 20px 30px 0; float: left; overflow: hidden; background-color: white;border-radius: 10px;box-shadow:0 0 0 #fff; -webkit-transition:all .3s ease; transition:all .3s ease; opacity:1}
.doc-list li:nth-child(3n) { margin-right: 0; }
.doc-list li:hover{-webkit-box-shadow:0 15px 30px rgba(0,0,0,.2);box-shadow:0 15px 30px rgba(0,0,0,.2);}
.doc-title { width: 100%; max-height: 60px; display: block; padding: 0 15px;box-sizing: border-box;}
.doc-title-text { width: 100%; }
.doc-title-text h3 {font-size: 16px; height:36px; line-height:36px; overflow:hidden;}
.doc-title-text p {color: #999; font-size: 14px; }
.doc-title-text p time { color: #666; margin-right:12px;}
.doc-img { display: block; margin-bottom: 8px; }
.doc-img img { width: 100%; height: 222px; }
.doc-desc{ color: #2c3e50; font-size: 14px; height:56px; overflow:hidden; margin-top: 10px; text-align: left; padding: 0 15px;box-sizing: border-box;}
.doc-view{text-align:center; padding:15px 0}
.doc-view a {width: 136px;line-height: 39px;font-size: 16px; display: inline-block; background-color: #186AF2; color: #fff;border-radius: 3px;}
.doc-view a:hover{opacity:0.8;}
.content{display:flex; background-color:#fff}
.content-text{padding-left:350px;background-color:#fff}
.content-text-div{min-height:900px; padding-right:200px;}
.content-catalog{width:200px; height:200px; position:fixed; top:60px; right:0; border-left:1px solid #ddd; display:none}
.article-content{padding:20px; margin:0 auto; font-size:16px; line-height:1.8em;}
.article-content-title{line-height:2em;padding:10px 20px}
.article-content-title h1{font-size:24px;}
.content-chapter{width: 330px; padding:20px 10px; position: fixed;z-index: 10; margin: 0; top: 60px; left: 0; bottom: 0; box-sizing: border-box; border-right: 1px solid #eaecef; overflow-y: auto;}
.content-chapter h3{font-size:20px; line-height:2; padding:6px;}
.sidebar-links{padding:3px 0; margin:5px 0;line-height:1.68;font-size:14px;font-weight:400;display:inline-block;color:#2c3e50;transition:color .15s ease;width:100%;box-sizing:border-box}
.sidebar-a{width:100%;color:#2c3e50;cursor:pointer;padding:5px 0;}
.sidebar-link{border-left:4px solid transparent; padding:3px 0; display:inline-block; box-sizing:border-box}
.sidebar-a .sidebar-link{padding-left:24px;font-size:16px; font-weight:800;}
.sidebar-b .sidebar-link{padding-left:36px;font-size:15px; font-weight:400;}
.sidebar-c .sidebar-link{padding-left:48px;font-size:14px; font-weight:400;}
.sidebar-d .sidebar-link{padding-left:60px;font-size:13px; font-weight:400;}
a.sidebar-link:hover,a.sidebar-link.active{color:#3eaf7c;}
.sidebar-b .sidebar-link.active{border-left:4px solid #3eaf7c;}
.sidebar-c .sidebar-link.active{border-left:4px solid transparent;}
.sidebar-d .sidebar-link.active{border-left:4px solid transparent;} | 0.173393 | 0.122602 |
* 1. Change the default font family in all browsers (opinionated).
* 2. Correct the line height in all browsers.
* 3. Prevent adjustments of font size after orientation changes in IE and iOS.
*/
/* Document
========================================================================== */
html {
font-family: sans-serif;
/* 1 */
line-height: 1.15;
/* 2 */
-ms-text-size-adjust: 100%;
/* 3 */
-webkit-text-size-adjust: 100%;
/* 3 */ }
/* 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-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
/* 1 */
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 */ }
/**
* 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 */ }
/* Text-level semantics
========================================================================== */
/**
* 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 */ }
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0; }
/**
* 1. Remove the bottom border in 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.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
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 */ }
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0; }
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText; }
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 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 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
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; }
/**
* 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 OS X.
*/
[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 */ }
/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
display: block; }
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item; }
/* 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; }
/* additional customizations to normalize.scss for dat project */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
box-sizing: border-box; }
*, *:before, *:after {
box-sizing: inherit; }
body {
margin: 0;
padding: 0;
font-size: 100%;
line-height: 1.5; }
h1, h2, h3, h4, h5, h6, p {
margin: 0;
padding: 0; }
p, ul, ol, dl {
margin-bottom: 1rem; }
a {
text-decoration: none; }
a:hover,
a:focus {
outline: none;
text-decoration: none; }
body, input, textarea, select, button {
font-family: 'Source Sans Pro', 'Helvetica Neue', 'Lucida Grande', Arial, sans-serif; }
body {
line-height: 1.5; }
.hd-xl, h1 {
font-size: 2.5rem;
line-height: 3rem;
margin-bottom: 1rem; }
.hd-l, h2 {
font-size: 2.25rem;
line-height: 2.75rem;
margin-bottom: 1rem; }
.hd-m, h3 {
font-size: 1.75rem;
line-height: 2.25rem;
margin-bottom: 1rem; }
.hd-s, h4 {
font-size: 1.5rem;
line-height: 2rem; }
.hd-xs, h5 {
font-size: 1.25rem;
line-height: 1.75rem; }
.hd-xxs, h6 {
font-size: .875rem;
line-height: 1.375rem;
text-transform: uppercase;
letter-spacing: .025em; }
.lead {
font-size: 1.5rem;
line-height: 1.333;
margin-bottom: 1.5rem; }
.blockquote {
margin-left: 0;
padding-left: 1rem;
border-left: 4px solid #D3D7DB; }
.blockquote blockquote {
margin: 0; }
.blockquote figcaption {
font-size: .875rem;
color: #7C8792; }
a {
color: #2ACA4B; }
a:hover,
a:focus {
color: #24943A; }
.link--green {
color: #2980B9; }
.link--green:hover, .link--green:focus {
color: #1B679A; }
.link--yellow {
color: #F0C30E; }
.link--yellow:hover, .link--yellow:focus {
color: #C9A001; }
.link--red {
color: #D8524E; }
.link--red:hover, .link--red:focus {
color: #B33C38; }
a[disabled],
.link--disabled {
color: #A7AFB6; }
a[disabled]:hover, a[disabled]:focus,
.link--disabled:hover,
.link--disabled:focus {
color: #A7AFB6; }
.btn {
display: inline-block;
padding: .4rem .75rem;
border-radius: 3px;
border-width: 0;
border-style: solid;
border-color: currentColor;
background-color: #919BA4;
color: #FFFFFF;
text-decoration: none;
cursor: pointer;
text-align: center;
line-height: 1.5;
vertical-align: middle;
letter-spacing: .02em; }
.btn:hover, .btn:focus {
background-color: #7C8792;
color: #FFFFFF;
text-decoration: none;
cursor: pointer;
outline: 0; }
.btn--green {
background-color: #2ACA4B; }
.btn--green:hover, .btn--green:focus {
color: #FFFFFF;
background-color: #24943A; }
.btn--blue {
background-color: #2980B9; }
.btn--blue:hover, .btn--blue:focus {
color: #FFFFFF;
background-color: #1B679A; }
.btn--yellow {
background-color: #F0C30E; }
.btn--yellow:hover, .btn--yellow:focus {
color: #FFFFFF;
background-color: #C9A001; }
.btn--red {
background-color: #D8524E; }
.btn--red:hover, .btn--red:focus {
color: #FFFFFF;
background-color: #B33C38; }
.btn[disabled],
.btn--disabled {
background-color: #E9EBEC;
color: #A7AFB6;
cursor: default; }
.btn[disabled]:hover, .btn[disabled]:focus,
.btn--disabled:hover,
.btn--disabled:focus {
background-color: #E9EBEC;
color: #A7AFB6;
cursor: default; }
.btn--small {
font-size: .75rem;
padding: .3rem .5rem; }
.btn--large {
font-size: 1.125rem;
padding: .5rem .75rem; }
.btn--cta {
font-size: 1.25rem;
padding: .75rem 1.5rem; }
.loader-text img {
vertical-align: sub;
width: 1.25em;
height: 1.25em;
margin-right: .25em; }
.progress {
overflow: hidden;
padding-top: .5rem;
padding-bottom: .5rem; }
.progress__bar {
height: 0.5rem;
width: calc(100% - 3rem);
float: left;
overflow: hidden;
background-color: #D3D7DB;
border-radius: 2px; }
.progress__line {
width: 0%;
height: 0.5rem;
background-color: #2980B9;
border-radius: 2px; }
.progress__line--loading {
overflow: hidden;
position: relative;
height: 0.5rem; }
@keyframes move-bg {
0% {
background-position: 28px 0; }
100% {
background-position: 0 0; } }
.progress__line--loading:before {
content: '';
width: 100%;
height: 0.5rem;
position: absolute;
top: 0;
left: 0;
background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 10px);
background-size: 28px 0.5rem;
animation: move-bg .75s linear infinite; }
.progress__line--complete {
background-color: #2ACA4B; }
.progress__line--paused {
background-color: #7C8792; }
.progress__counter {
float: right;
min-width: 3rem;
margin-top: -.4rem;
text-align: right;
font-size: .875rem;
color: #7C8792; }
.dat-input {
position: relative;
overflow: hidden; }
.dat-input__icon {
position: absolute;
top: calc(1.5rem - (1.5rem / 2));
left: 1rem;
pointer-events: none;
display: block;
width: 1.5rem;
height: 1.5rem;
fill: #A7AFB6; }
.dat-input__input {
height: 3rem;
padding-right: 1rem;
padding-left: 3rem;
border-radius: 2px;
border: 1px solid #24943A;
color: #7C8792;
text-transform: uppercase; }
.dat-input__input:hover, .dat-input__input:focus, .dat-input__input:active {
outline: none;
color: #293648; }
ul.list-plain, ol.list-plain {
padding: 0;
margin: 0;
list-style-type: none; }
/* Breakpoint definitions: */
/**
* Responsive Mixins ----------------------------
* https://medium.com/developing-with-sass/creating-a-dead-simple-sass-mixin-to-handle-responsive-breakpoints-889927b37740
*
* Sample mixin usage in your .scss files
* (assumes you've @import'ed this file):
*
* .foo {
* background-color: red;
* @include breakpoint (max-md1) { // up until a width of 640px
* background-color: beige;
* }
* @include breakpoint (md2) { // starting from a width 768px
* background-color: green;
* }
* @include breakpoint (vmd2) { // starting from a height of 768px
* background-color: blue;
* }
* }
*
*/
/*! Basscss | http://basscss.com | MIT License */
.h1 {
font-size: 2rem; }
.h2 {
font-size: 1.5rem; }
.h3 {
font-size: 1.25rem; }
.h4 {
font-size: 1rem; }
.h5 {
font-size: .875rem; }
.h6 {
font-size: .75rem; }
.font-family-inherit {
font-family: inherit; }
.font-size-inherit {
font-size: inherit; }
.text-decoration-none {
text-decoration: none; }
.bold {
font-weight: bold;
font-weight: bold; }
.regular {
font-weight: normal; }
.italic {
font-style: italic; }
.caps {
text-transform: uppercase;
letter-spacing: .2em; }
.left-align {
text-align: left; }
.center {
text-align: center; }
.right-align {
text-align: right; }
.justify {
text-align: justify; }
.nowrap {
white-space: nowrap; }
.break-word {
word-wrap: break-word; }
.line-height-1 {
line-height: 1; }
.line-height-2 {
line-height: 1.125; }
.line-height-3 {
line-height: 1.25; }
.line-height-4 {
line-height: 1.5; }
.list-style-none {
list-style: none; }
.underline {
text-decoration: underline; }
.truncate {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.list-reset {
list-style: none;
padding-left: 0; }
.inline {
display: inline; }
.block {
display: block; }
.inline-block {
display: inline-block; }
.table {
display: table; }
.table-cell {
display: table-cell; }
.overflow-hidden {
overflow: hidden; }
.overflow-scroll {
overflow: scroll; }
.overflow-auto {
overflow: auto; }
.clearfix:before,
.clearfix:after {
content: " ";
display: table; }
.clearfix:after {
clear: both; }
.left {
float: left; }
.right {
float: right; }
.fit {
max-width: 100%; }
.max-width-1 {
max-width: 24rem; }
.max-width-2 {
max-width: 32rem; }
.max-width-3 {
max-width: 48rem; }
.max-width-4 {
max-width: 64rem; }
.border-box {
box-sizing: border-box; }
.align-baseline {
vertical-align: baseline; }
.align-top {
vertical-align: top; }
.align-middle {
vertical-align: middle; }
.align-bottom {
vertical-align: bottom; }
.m0 {
margin: 0; }
.mt0 {
margin-top: 0; }
.mr0 {
margin-right: 0; }
.mb0 {
margin-bottom: 0; }
.ml0 {
margin-left: 0; }
.mx0 {
margin-left: 0;
margin-right: 0; }
.my0 {
margin-top: 0;
margin-bottom: 0; }
.m1 {
margin: .5rem; }
.mt1 {
margin-top: .5rem; }
.mr1 {
margin-right: .5rem; }
.mb1 {
margin-bottom: .5rem; }
.ml1 {
margin-left: .5rem; }
.mx1 {
margin-left: .5rem;
margin-right: .5rem; }
.my1 {
margin-top: .5rem;
margin-bottom: .5rem; }
.m2 {
margin: 1rem; }
.mt2 {
margin-top: 1rem; }
.mr2 {
margin-right: 1rem; }
.mb2 {
margin-bottom: 1rem; }
.ml2 {
margin-left: 1rem; }
.mx2 {
margin-left: 1rem;
margin-right: 1rem; }
.my2 {
margin-top: 1rem;
margin-bottom: 1rem; }
.m3 {
margin: 2rem; }
.mt3 {
margin-top: 2rem; }
.mr3 {
margin-right: 2rem; }
.mb3 {
margin-bottom: 2rem; }
.ml3 {
margin-left: 2rem; }
.mx3 {
margin-left: 2rem;
margin-right: 2rem; }
.my3 {
margin-top: 2rem;
margin-bottom: 2rem; }
.m4 {
margin: 4rem; }
.mt4 {
margin-top: 4rem; }
.mr4 {
margin-right: 4rem; }
.mb4 {
margin-bottom: 4rem; }
.ml4 {
margin-left: 4rem; }
.mx4 {
margin-left: 4rem;
margin-right: 4rem; }
.my4 {
margin-top: 4rem;
margin-bottom: 4rem; }
.mxn1 {
margin-left: -.5rem;
margin-right: -.5rem; }
.mxn2 {
margin-left: -1rem;
margin-right: -1rem; }
.mxn3 {
margin-left: -2rem;
margin-right: -2rem; }
.mxn4 {
margin-left: -4rem;
margin-right: -4rem; }
.ml-auto {
margin-left: auto; }
.mr-auto {
margin-right: auto; }
.mx-auto {
margin-left: auto;
margin-right: auto; }
.p0 {
padding: 0; }
.pt0 {
padding-top: 0; }
.pr0 {
padding-right: 0; }
.pb0 {
padding-bottom: 0; }
.pl0 {
padding-left: 0; }
.px0 {
padding-left: 0;
padding-right: 0; }
.py0 {
padding-top: 0;
padding-bottom: 0; }
.p1 {
padding: .5rem; }
.pt1 {
padding-top: .5rem; }
.pr1 {
padding-right: .5rem; }
.pb1 {
padding-bottom: .5rem; }
.pl1 {
padding-left: .5rem; }
.py1 {
padding-top: .5rem;
padding-bottom: .5rem; }
.px1 {
padding-left: .5rem;
padding-right: .5rem; }
.p2 {
padding: 1rem; }
.pt2 {
padding-top: 1rem; }
.pr2 {
padding-right: 1rem; }
.pb2 {
padding-bottom: 1rem; }
.pl2 {
padding-left: 1rem; }
.py2 {
padding-top: 1rem;
padding-bottom: 1rem; }
.px2 {
padding-left: 1rem;
padding-right: 1rem; }
.p3 {
padding: 2rem; }
.pt3 {
padding-top: 2rem; }
.pr3 {
padding-right: 2rem; }
.pb3 {
padding-bottom: 2rem; }
.pl3 {
padding-left: 2rem; }
.py3 {
padding-top: 2rem;
padding-bottom: 2rem; }
.px3 {
padding-left: 2rem;
padding-right: 2rem; }
.p4 {
padding: 4rem; }
.pt4 {
padding-top: 4rem; }
.pr4 {
padding-right: 4rem; }
.pb4 {
padding-bottom: 4rem; }
.pl4 {
padding-left: 4rem; }
.py4 {
padding-top: 4rem;
padding-bottom: 4rem; }
.px4 {
padding-left: 4rem;
padding-right: 4rem; }
.col {
float: left;
box-sizing: border-box; }
.col-right {
float: right;
box-sizing: border-box; }
.col-1 {
width: 8.33333%; }
.col-2 {
width: 16.66667%; }
.col-3 {
width: 25%; }
.col-4 {
width: 33.33333%; }
.col-5 {
width: 41.66667%; }
.col-6 {
width: 50%; }
.col-7 {
width: 58.33333%; }
.col-8 {
width: 66.66667%; }
.col-9 {
width: 75%; }
.col-10 {
width: 83.33333%; }
.col-11 {
width: 91.66667%; }
.col-12 {
width: 100%; }
@media (min-width: 40em) {
.sm-col {
float: left;
box-sizing: border-box; }
.sm-col-right {
float: right;
box-sizing: border-box; }
.sm-col-1 {
width: 8.33333%; }
.sm-col-2 {
width: 16.66667%; }
.sm-col-3 {
width: 25%; }
.sm-col-4 {
width: 33.33333%; }
.sm-col-5 {
width: 41.66667%; }
.sm-col-6 {
width: 50%; }
.sm-col-7 {
width: 58.33333%; }
.sm-col-8 {
width: 66.66667%; }
.sm-col-9 {
width: 75%; }
.sm-col-10 {
width: 83.33333%; }
.sm-col-11 {
width: 91.66667%; }
.sm-col-12 {
width: 100%; } }
@media (min-width: 52em) {
.md-col {
float: left;
box-sizing: border-box; }
.md-col-right {
float: right;
box-sizing: border-box; }
.md-col-1 {
width: 8.33333%; }
.md-col-2 {
width: 16.66667%; }
.md-col-3 {
width: 25%; }
.md-col-4 {
width: 33.33333%; }
.md-col-5 {
width: 41.66667%; }
.md-col-6 {
width: 50%; }
.md-col-7 {
width: 58.33333%; }
.md-col-8 {
width: 66.66667%; }
.md-col-9 {
width: 75%; }
.md-col-10 {
width: 83.33333%; }
.md-col-11 {
width: 91.66667%; }
.md-col-12 {
width: 100%; } }
@media (min-width: 64em) {
.lg-col {
float: left;
box-sizing: border-box; }
.lg-col-right {
float: right;
box-sizing: border-box; }
.lg-col-1 {
width: 8.33333%; }
.lg-col-2 {
width: 16.66667%; }
.lg-col-3 {
width: 25%; }
.lg-col-4 {
width: 33.33333%; }
.lg-col-5 {
width: 41.66667%; }
.lg-col-6 {
width: 50%; }
.lg-col-7 {
width: 58.33333%; }
.lg-col-8 {
width: 66.66667%; }
.lg-col-9 {
width: 75%; }
.lg-col-10 {
width: 83.33333%; }
.lg-col-11 {
width: 91.66667%; }
.lg-col-12 {
width: 100%; } }
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
@media (min-width: 40em) {
.sm-flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
@media (min-width: 52em) {
.md-flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
@media (min-width: 64em) {
.lg-flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
.flex-column {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
.flex-wrap {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.items-start {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
-ms-grid-row-align: flex-start;
align-items: flex-start; }
.items-end {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-ms-flex-align: end;
-ms-grid-row-align: flex-end;
align-items: flex-end; }
.items-center {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center; }
.items-baseline {
-webkit-box-align: baseline;
-webkit-align-items: baseline;
-ms-flex-align: baseline;
-ms-grid-row-align: baseline;
align-items: baseline; }
.items-stretch {
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
-ms-grid-row-align: stretch;
align-items: stretch; }
.self-start {
-webkit-align-self: flex-start;
-ms-flex-item-align: start;
align-self: flex-start; }
.self-end {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end; }
.self-center {
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center; }
.self-baseline {
-webkit-align-self: baseline;
-ms-flex-item-align: baseline;
align-self: baseline; }
.self-stretch {
-webkit-align-self: stretch;
-ms-flex-item-align: stretch;
align-self: stretch; }
.justify-start {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start; }
.justify-end {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end; }
.justify-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.justify-between {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between; }
.justify-around {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around; }
.content-start {
-webkit-align-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start; }
.content-end {
-webkit-align-content: flex-end;
-ms-flex-line-pack: end;
align-content: flex-end; }
.content-center {
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center; }
.content-between {
-webkit-align-content: space-between;
-ms-flex-line-pack: justify;
align-content: space-between; }
.content-around {
-webkit-align-content: space-around;
-ms-flex-line-pack: distribute;
align-content: space-around; }
.content-stretch {
-webkit-align-content: stretch;
-ms-flex-line-pack: stretch;
align-content: stretch; }
.flex-auto {
-webkit-box-flex: 1;
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
min-width: 0;
min-height: 0; }
.flex-none {
-webkit-box-flex: 0;
-webkit-flex: none;
-ms-flex: none;
flex: none; }
.order-0 {
-webkit-box-ordinal-group: 1;
-webkit-order: 0;
-ms-flex-order: 0;
order: 0; }
.order-1 {
-webkit-box-ordinal-group: 2;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1; }
.order-2 {
-webkit-box-ordinal-group: 3;
-webkit-order: 2;
-ms-flex-order: 2;
order: 2; }
.order-3 {
-webkit-box-ordinal-group: 4;
-webkit-order: 3;
-ms-flex-order: 3;
order: 3; }
.order-last {
-webkit-box-ordinal-group: 100000;
-webkit-order: 99999;
-ms-flex-order: 99999;
order: 99999; }
.relative {
position: relative; }
.absolute {
position: absolute; }
.fixed {
position: fixed; }
.top-0 {
top: 0; }
.right-0 {
right: 0; }
.bottom-0 {
bottom: 0; }
.left-0 {
left: 0; }
.z1 {
z-index: 1; }
.z2 {
z-index: 2; }
.z3 {
z-index: 3; }
.z4 {
z-index: 4; }
.border {
border-style: solid;
border-width: 1px; }
.border-top {
border-top-style: solid;
border-top-width: 1px; }
.border-right {
border-right-style: solid;
border-right-width: 1px; }
.border-bottom {
border-bottom-style: solid;
border-bottom-width: 1px; }
.border-left {
border-left-style: solid;
border-left-width: 1px; }
.border-none {
border: 0; }
.rounded {
border-radius: 3px; }
.circle {
border-radius: 50%; }
.rounded-top {
border-radius: 3px 3px 0 0; }
.rounded-right {
border-radius: 0 3px 3px 0; }
.rounded-bottom {
border-radius: 0 0 3px 3px; }
.rounded-left {
border-radius: 3px 0 0 3px; }
.not-rounded {
border-radius: 0; }
.hide {
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px); }
@media (max-width: 40em) {
.xs-hide {
display: none !important; } }
@media (min-width: 40em) and (max-width: 52em) {
.sm-hide {
display: none !important; } }
@media (min-width: 52em) and (max-width: 64em) {
.md-hide {
display: none !important; } }
@media (min-width: 64em) {
.lg-hide {
display: none !important; } }
.display-none {
display: none !important; }
body {
color: #293648; }
a,
button,
input,
select,
textarea {
transition-property: background-color, color;
transition-duration: 0.05s;
transition-timing-function: ease-out; }
/* styleguide layout */
.sg-header {
background-color: #F6F7F8;
border-bottom: 1px solid #E9EBEC;
height: 60px; }
.sg-header h1 {
margin: 0;
line-height: 58px; }
.sg-header h1 span {
color: #7C8792; }
.sg-header .sg-container {
padding-top: 0; }
.sg-header img {
display: inline-block;
vertical-align: -5px; }
.sg-main {
padding-top: 1.5rem; }
.sg-container {
margin: 0 auto;
padding: .75rem 2rem;
max-width: 1170px; }
.sg-section {
max-width: 800px;
padding-top: 2rem;
padding-bottom: 2rem;
clear: both; }
.sg-meta {
font-size: .875rem;
color: #919BA4; }
.sg-example {
margin-bottom: 1rem;
padding: 1.5rem 1rem;
border: 1px solid #C3C9CD;
border-radius: 4px;
overflow: hidden; }
.sg-label {
font-size: .875rem;
color: #7C8792;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: .025em; }
@media (min-width: 640px) {
.sg-label {
width: 20%;
float: left; } }
@media (min-width: 640px) {
.sg-subsection {
width: 80%;
float: left; } }
.sg-subsection__img {
max-width: 120px;
height: auto;
float: left;
margin-right: 2rem;
margin-bottom: 1rem; }
.color-blocks {
display: flex;
justify-content: flex-start;
flex-direction: column; }
@media (min-width: 800px) {
.color-blocks {
flex-direction: row; } }
.color-block--neutral {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #293648;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral:hover {
background-color: black; }
.color-block--neutral::before {
content: "#293648";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--90 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #394B5B;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--90:hover {
background-color: black; }
.color-block--neutral--90::before {
content: "#394B5B";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--70 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #65737F;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--70:hover {
background-color: #21262a; }
.color-block--neutral--70::before {
content: "#65737F";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--50 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #919BA4;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--50:hover {
background-color: #474e55; }
.color-block--neutral--50::before {
content: "#919BA4";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--30 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #C3C9CD;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--30:hover {
background-color: #707e87; }
.color-block--neutral--30::before {
content: "#C3C9CD";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--10 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #E9EBEC;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--10:hover {
background-color: #97a0a5; }
.color-block--neutral--10::before {
content: "#E9EBEC";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--50 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #919BA4;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--50:hover {
background-color: #474e55; }
.color-block--neutral--50::before {
content: "#919BA4";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--green {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #2ACA4B;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--green:hover {
background-color: #123e1b; }
.color-block--green::before {
content: "#2ACA4B";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--blue {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #2980B9;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--blue:hover {
background-color: #0d293c; }
.color-block--blue::before {
content: "#2980B9";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--red {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #D8524E;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--red:hover {
background-color: #741c19; }
.color-block--red::before {
content: "#D8524E";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--yellow {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #F0C30E;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--yellow:hover {
background-color: #5f4e06; }
.color-block--yellow::before {
content: "#F0C30E";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.sg-color-list {
list-style: none;
padding: 0; }
.sg-color-list li {
padding: .25rem 0; }
.sg-color-circle {
width: 1rem;
height: 1rem;
display: inline-block;
vertical-align: middle;
margin-right: .5rem; }
.sg-code {
font-size: 1rem;
font-family: monospace;
color: #505F6D;
background-color: #F6F7F8;
padding: 1px; }
.sg-pre {
font-size: 1rem;
font-family: monospace;
color: #505F6D;
background-color: #F6F7F8;
padding: 1rem;
overflow-x: auto; }
.sg-icon-list {
display: flex;
flex-wrap: wrap; }
.sg-icon-block {
flex: 0 1 20%;
text-align: center;
margin: 0;
padding: .5rem; }
.sg-icon-block .daticon {
display: block;
max-width: 60px;
max-height: 60px;
margin: 0 auto;
padding: .5rem;
fill: currentColor; }
.sg-icon-block figcaption {
font-size: .75rem;
color: #7C8792; } | docs/css/styleguide.css | * 1. Change the default font family in all browsers (opinionated).
* 2. Correct the line height in all browsers.
* 3. Prevent adjustments of font size after orientation changes in IE and iOS.
*/
/* Document
========================================================================== */
html {
font-family: sans-serif;
/* 1 */
line-height: 1.15;
/* 2 */
-ms-text-size-adjust: 100%;
/* 3 */
-webkit-text-size-adjust: 100%;
/* 3 */ }
/* 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-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
/* 1 */
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 */ }
/**
* 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 */ }
/* Text-level semantics
========================================================================== */
/**
* 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 */ }
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0; }
/**
* 1. Remove the bottom border in 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.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
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 */ }
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0; }
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText; }
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 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 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
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; }
/**
* 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 OS X.
*/
[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 */ }
/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
display: block; }
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item; }
/* 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; }
/* additional customizations to normalize.scss for dat project */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
box-sizing: border-box; }
*, *:before, *:after {
box-sizing: inherit; }
body {
margin: 0;
padding: 0;
font-size: 100%;
line-height: 1.5; }
h1, h2, h3, h4, h5, h6, p {
margin: 0;
padding: 0; }
p, ul, ol, dl {
margin-bottom: 1rem; }
a {
text-decoration: none; }
a:hover,
a:focus {
outline: none;
text-decoration: none; }
body, input, textarea, select, button {
font-family: 'Source Sans Pro', 'Helvetica Neue', 'Lucida Grande', Arial, sans-serif; }
body {
line-height: 1.5; }
.hd-xl, h1 {
font-size: 2.5rem;
line-height: 3rem;
margin-bottom: 1rem; }
.hd-l, h2 {
font-size: 2.25rem;
line-height: 2.75rem;
margin-bottom: 1rem; }
.hd-m, h3 {
font-size: 1.75rem;
line-height: 2.25rem;
margin-bottom: 1rem; }
.hd-s, h4 {
font-size: 1.5rem;
line-height: 2rem; }
.hd-xs, h5 {
font-size: 1.25rem;
line-height: 1.75rem; }
.hd-xxs, h6 {
font-size: .875rem;
line-height: 1.375rem;
text-transform: uppercase;
letter-spacing: .025em; }
.lead {
font-size: 1.5rem;
line-height: 1.333;
margin-bottom: 1.5rem; }
.blockquote {
margin-left: 0;
padding-left: 1rem;
border-left: 4px solid #D3D7DB; }
.blockquote blockquote {
margin: 0; }
.blockquote figcaption {
font-size: .875rem;
color: #7C8792; }
a {
color: #2ACA4B; }
a:hover,
a:focus {
color: #24943A; }
.link--green {
color: #2980B9; }
.link--green:hover, .link--green:focus {
color: #1B679A; }
.link--yellow {
color: #F0C30E; }
.link--yellow:hover, .link--yellow:focus {
color: #C9A001; }
.link--red {
color: #D8524E; }
.link--red:hover, .link--red:focus {
color: #B33C38; }
a[disabled],
.link--disabled {
color: #A7AFB6; }
a[disabled]:hover, a[disabled]:focus,
.link--disabled:hover,
.link--disabled:focus {
color: #A7AFB6; }
.btn {
display: inline-block;
padding: .4rem .75rem;
border-radius: 3px;
border-width: 0;
border-style: solid;
border-color: currentColor;
background-color: #919BA4;
color: #FFFFFF;
text-decoration: none;
cursor: pointer;
text-align: center;
line-height: 1.5;
vertical-align: middle;
letter-spacing: .02em; }
.btn:hover, .btn:focus {
background-color: #7C8792;
color: #FFFFFF;
text-decoration: none;
cursor: pointer;
outline: 0; }
.btn--green {
background-color: #2ACA4B; }
.btn--green:hover, .btn--green:focus {
color: #FFFFFF;
background-color: #24943A; }
.btn--blue {
background-color: #2980B9; }
.btn--blue:hover, .btn--blue:focus {
color: #FFFFFF;
background-color: #1B679A; }
.btn--yellow {
background-color: #F0C30E; }
.btn--yellow:hover, .btn--yellow:focus {
color: #FFFFFF;
background-color: #C9A001; }
.btn--red {
background-color: #D8524E; }
.btn--red:hover, .btn--red:focus {
color: #FFFFFF;
background-color: #B33C38; }
.btn[disabled],
.btn--disabled {
background-color: #E9EBEC;
color: #A7AFB6;
cursor: default; }
.btn[disabled]:hover, .btn[disabled]:focus,
.btn--disabled:hover,
.btn--disabled:focus {
background-color: #E9EBEC;
color: #A7AFB6;
cursor: default; }
.btn--small {
font-size: .75rem;
padding: .3rem .5rem; }
.btn--large {
font-size: 1.125rem;
padding: .5rem .75rem; }
.btn--cta {
font-size: 1.25rem;
padding: .75rem 1.5rem; }
.loader-text img {
vertical-align: sub;
width: 1.25em;
height: 1.25em;
margin-right: .25em; }
.progress {
overflow: hidden;
padding-top: .5rem;
padding-bottom: .5rem; }
.progress__bar {
height: 0.5rem;
width: calc(100% - 3rem);
float: left;
overflow: hidden;
background-color: #D3D7DB;
border-radius: 2px; }
.progress__line {
width: 0%;
height: 0.5rem;
background-color: #2980B9;
border-radius: 2px; }
.progress__line--loading {
overflow: hidden;
position: relative;
height: 0.5rem; }
@keyframes move-bg {
0% {
background-position: 28px 0; }
100% {
background-position: 0 0; } }
.progress__line--loading:before {
content: '';
width: 100%;
height: 0.5rem;
position: absolute;
top: 0;
left: 0;
background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 10px);
background-size: 28px 0.5rem;
animation: move-bg .75s linear infinite; }
.progress__line--complete {
background-color: #2ACA4B; }
.progress__line--paused {
background-color: #7C8792; }
.progress__counter {
float: right;
min-width: 3rem;
margin-top: -.4rem;
text-align: right;
font-size: .875rem;
color: #7C8792; }
.dat-input {
position: relative;
overflow: hidden; }
.dat-input__icon {
position: absolute;
top: calc(1.5rem - (1.5rem / 2));
left: 1rem;
pointer-events: none;
display: block;
width: 1.5rem;
height: 1.5rem;
fill: #A7AFB6; }
.dat-input__input {
height: 3rem;
padding-right: 1rem;
padding-left: 3rem;
border-radius: 2px;
border: 1px solid #24943A;
color: #7C8792;
text-transform: uppercase; }
.dat-input__input:hover, .dat-input__input:focus, .dat-input__input:active {
outline: none;
color: #293648; }
ul.list-plain, ol.list-plain {
padding: 0;
margin: 0;
list-style-type: none; }
/* Breakpoint definitions: */
/**
* Responsive Mixins ----------------------------
* https://medium.com/developing-with-sass/creating-a-dead-simple-sass-mixin-to-handle-responsive-breakpoints-889927b37740
*
* Sample mixin usage in your .scss files
* (assumes you've @import'ed this file):
*
* .foo {
* background-color: red;
* @include breakpoint (max-md1) { // up until a width of 640px
* background-color: beige;
* }
* @include breakpoint (md2) { // starting from a width 768px
* background-color: green;
* }
* @include breakpoint (vmd2) { // starting from a height of 768px
* background-color: blue;
* }
* }
*
*/
/*! Basscss | http://basscss.com | MIT License */
.h1 {
font-size: 2rem; }
.h2 {
font-size: 1.5rem; }
.h3 {
font-size: 1.25rem; }
.h4 {
font-size: 1rem; }
.h5 {
font-size: .875rem; }
.h6 {
font-size: .75rem; }
.font-family-inherit {
font-family: inherit; }
.font-size-inherit {
font-size: inherit; }
.text-decoration-none {
text-decoration: none; }
.bold {
font-weight: bold;
font-weight: bold; }
.regular {
font-weight: normal; }
.italic {
font-style: italic; }
.caps {
text-transform: uppercase;
letter-spacing: .2em; }
.left-align {
text-align: left; }
.center {
text-align: center; }
.right-align {
text-align: right; }
.justify {
text-align: justify; }
.nowrap {
white-space: nowrap; }
.break-word {
word-wrap: break-word; }
.line-height-1 {
line-height: 1; }
.line-height-2 {
line-height: 1.125; }
.line-height-3 {
line-height: 1.25; }
.line-height-4 {
line-height: 1.5; }
.list-style-none {
list-style: none; }
.underline {
text-decoration: underline; }
.truncate {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.list-reset {
list-style: none;
padding-left: 0; }
.inline {
display: inline; }
.block {
display: block; }
.inline-block {
display: inline-block; }
.table {
display: table; }
.table-cell {
display: table-cell; }
.overflow-hidden {
overflow: hidden; }
.overflow-scroll {
overflow: scroll; }
.overflow-auto {
overflow: auto; }
.clearfix:before,
.clearfix:after {
content: " ";
display: table; }
.clearfix:after {
clear: both; }
.left {
float: left; }
.right {
float: right; }
.fit {
max-width: 100%; }
.max-width-1 {
max-width: 24rem; }
.max-width-2 {
max-width: 32rem; }
.max-width-3 {
max-width: 48rem; }
.max-width-4 {
max-width: 64rem; }
.border-box {
box-sizing: border-box; }
.align-baseline {
vertical-align: baseline; }
.align-top {
vertical-align: top; }
.align-middle {
vertical-align: middle; }
.align-bottom {
vertical-align: bottom; }
.m0 {
margin: 0; }
.mt0 {
margin-top: 0; }
.mr0 {
margin-right: 0; }
.mb0 {
margin-bottom: 0; }
.ml0 {
margin-left: 0; }
.mx0 {
margin-left: 0;
margin-right: 0; }
.my0 {
margin-top: 0;
margin-bottom: 0; }
.m1 {
margin: .5rem; }
.mt1 {
margin-top: .5rem; }
.mr1 {
margin-right: .5rem; }
.mb1 {
margin-bottom: .5rem; }
.ml1 {
margin-left: .5rem; }
.mx1 {
margin-left: .5rem;
margin-right: .5rem; }
.my1 {
margin-top: .5rem;
margin-bottom: .5rem; }
.m2 {
margin: 1rem; }
.mt2 {
margin-top: 1rem; }
.mr2 {
margin-right: 1rem; }
.mb2 {
margin-bottom: 1rem; }
.ml2 {
margin-left: 1rem; }
.mx2 {
margin-left: 1rem;
margin-right: 1rem; }
.my2 {
margin-top: 1rem;
margin-bottom: 1rem; }
.m3 {
margin: 2rem; }
.mt3 {
margin-top: 2rem; }
.mr3 {
margin-right: 2rem; }
.mb3 {
margin-bottom: 2rem; }
.ml3 {
margin-left: 2rem; }
.mx3 {
margin-left: 2rem;
margin-right: 2rem; }
.my3 {
margin-top: 2rem;
margin-bottom: 2rem; }
.m4 {
margin: 4rem; }
.mt4 {
margin-top: 4rem; }
.mr4 {
margin-right: 4rem; }
.mb4 {
margin-bottom: 4rem; }
.ml4 {
margin-left: 4rem; }
.mx4 {
margin-left: 4rem;
margin-right: 4rem; }
.my4 {
margin-top: 4rem;
margin-bottom: 4rem; }
.mxn1 {
margin-left: -.5rem;
margin-right: -.5rem; }
.mxn2 {
margin-left: -1rem;
margin-right: -1rem; }
.mxn3 {
margin-left: -2rem;
margin-right: -2rem; }
.mxn4 {
margin-left: -4rem;
margin-right: -4rem; }
.ml-auto {
margin-left: auto; }
.mr-auto {
margin-right: auto; }
.mx-auto {
margin-left: auto;
margin-right: auto; }
.p0 {
padding: 0; }
.pt0 {
padding-top: 0; }
.pr0 {
padding-right: 0; }
.pb0 {
padding-bottom: 0; }
.pl0 {
padding-left: 0; }
.px0 {
padding-left: 0;
padding-right: 0; }
.py0 {
padding-top: 0;
padding-bottom: 0; }
.p1 {
padding: .5rem; }
.pt1 {
padding-top: .5rem; }
.pr1 {
padding-right: .5rem; }
.pb1 {
padding-bottom: .5rem; }
.pl1 {
padding-left: .5rem; }
.py1 {
padding-top: .5rem;
padding-bottom: .5rem; }
.px1 {
padding-left: .5rem;
padding-right: .5rem; }
.p2 {
padding: 1rem; }
.pt2 {
padding-top: 1rem; }
.pr2 {
padding-right: 1rem; }
.pb2 {
padding-bottom: 1rem; }
.pl2 {
padding-left: 1rem; }
.py2 {
padding-top: 1rem;
padding-bottom: 1rem; }
.px2 {
padding-left: 1rem;
padding-right: 1rem; }
.p3 {
padding: 2rem; }
.pt3 {
padding-top: 2rem; }
.pr3 {
padding-right: 2rem; }
.pb3 {
padding-bottom: 2rem; }
.pl3 {
padding-left: 2rem; }
.py3 {
padding-top: 2rem;
padding-bottom: 2rem; }
.px3 {
padding-left: 2rem;
padding-right: 2rem; }
.p4 {
padding: 4rem; }
.pt4 {
padding-top: 4rem; }
.pr4 {
padding-right: 4rem; }
.pb4 {
padding-bottom: 4rem; }
.pl4 {
padding-left: 4rem; }
.py4 {
padding-top: 4rem;
padding-bottom: 4rem; }
.px4 {
padding-left: 4rem;
padding-right: 4rem; }
.col {
float: left;
box-sizing: border-box; }
.col-right {
float: right;
box-sizing: border-box; }
.col-1 {
width: 8.33333%; }
.col-2 {
width: 16.66667%; }
.col-3 {
width: 25%; }
.col-4 {
width: 33.33333%; }
.col-5 {
width: 41.66667%; }
.col-6 {
width: 50%; }
.col-7 {
width: 58.33333%; }
.col-8 {
width: 66.66667%; }
.col-9 {
width: 75%; }
.col-10 {
width: 83.33333%; }
.col-11 {
width: 91.66667%; }
.col-12 {
width: 100%; }
@media (min-width: 40em) {
.sm-col {
float: left;
box-sizing: border-box; }
.sm-col-right {
float: right;
box-sizing: border-box; }
.sm-col-1 {
width: 8.33333%; }
.sm-col-2 {
width: 16.66667%; }
.sm-col-3 {
width: 25%; }
.sm-col-4 {
width: 33.33333%; }
.sm-col-5 {
width: 41.66667%; }
.sm-col-6 {
width: 50%; }
.sm-col-7 {
width: 58.33333%; }
.sm-col-8 {
width: 66.66667%; }
.sm-col-9 {
width: 75%; }
.sm-col-10 {
width: 83.33333%; }
.sm-col-11 {
width: 91.66667%; }
.sm-col-12 {
width: 100%; } }
@media (min-width: 52em) {
.md-col {
float: left;
box-sizing: border-box; }
.md-col-right {
float: right;
box-sizing: border-box; }
.md-col-1 {
width: 8.33333%; }
.md-col-2 {
width: 16.66667%; }
.md-col-3 {
width: 25%; }
.md-col-4 {
width: 33.33333%; }
.md-col-5 {
width: 41.66667%; }
.md-col-6 {
width: 50%; }
.md-col-7 {
width: 58.33333%; }
.md-col-8 {
width: 66.66667%; }
.md-col-9 {
width: 75%; }
.md-col-10 {
width: 83.33333%; }
.md-col-11 {
width: 91.66667%; }
.md-col-12 {
width: 100%; } }
@media (min-width: 64em) {
.lg-col {
float: left;
box-sizing: border-box; }
.lg-col-right {
float: right;
box-sizing: border-box; }
.lg-col-1 {
width: 8.33333%; }
.lg-col-2 {
width: 16.66667%; }
.lg-col-3 {
width: 25%; }
.lg-col-4 {
width: 33.33333%; }
.lg-col-5 {
width: 41.66667%; }
.lg-col-6 {
width: 50%; }
.lg-col-7 {
width: 58.33333%; }
.lg-col-8 {
width: 66.66667%; }
.lg-col-9 {
width: 75%; }
.lg-col-10 {
width: 83.33333%; }
.lg-col-11 {
width: 91.66667%; }
.lg-col-12 {
width: 100%; } }
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
@media (min-width: 40em) {
.sm-flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
@media (min-width: 52em) {
.md-flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
@media (min-width: 64em) {
.lg-flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
.flex-column {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
.flex-wrap {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.items-start {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
-ms-grid-row-align: flex-start;
align-items: flex-start; }
.items-end {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-ms-flex-align: end;
-ms-grid-row-align: flex-end;
align-items: flex-end; }
.items-center {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center; }
.items-baseline {
-webkit-box-align: baseline;
-webkit-align-items: baseline;
-ms-flex-align: baseline;
-ms-grid-row-align: baseline;
align-items: baseline; }
.items-stretch {
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
-ms-grid-row-align: stretch;
align-items: stretch; }
.self-start {
-webkit-align-self: flex-start;
-ms-flex-item-align: start;
align-self: flex-start; }
.self-end {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end; }
.self-center {
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center; }
.self-baseline {
-webkit-align-self: baseline;
-ms-flex-item-align: baseline;
align-self: baseline; }
.self-stretch {
-webkit-align-self: stretch;
-ms-flex-item-align: stretch;
align-self: stretch; }
.justify-start {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start; }
.justify-end {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end; }
.justify-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.justify-between {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between; }
.justify-around {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around; }
.content-start {
-webkit-align-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start; }
.content-end {
-webkit-align-content: flex-end;
-ms-flex-line-pack: end;
align-content: flex-end; }
.content-center {
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center; }
.content-between {
-webkit-align-content: space-between;
-ms-flex-line-pack: justify;
align-content: space-between; }
.content-around {
-webkit-align-content: space-around;
-ms-flex-line-pack: distribute;
align-content: space-around; }
.content-stretch {
-webkit-align-content: stretch;
-ms-flex-line-pack: stretch;
align-content: stretch; }
.flex-auto {
-webkit-box-flex: 1;
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
min-width: 0;
min-height: 0; }
.flex-none {
-webkit-box-flex: 0;
-webkit-flex: none;
-ms-flex: none;
flex: none; }
.order-0 {
-webkit-box-ordinal-group: 1;
-webkit-order: 0;
-ms-flex-order: 0;
order: 0; }
.order-1 {
-webkit-box-ordinal-group: 2;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1; }
.order-2 {
-webkit-box-ordinal-group: 3;
-webkit-order: 2;
-ms-flex-order: 2;
order: 2; }
.order-3 {
-webkit-box-ordinal-group: 4;
-webkit-order: 3;
-ms-flex-order: 3;
order: 3; }
.order-last {
-webkit-box-ordinal-group: 100000;
-webkit-order: 99999;
-ms-flex-order: 99999;
order: 99999; }
.relative {
position: relative; }
.absolute {
position: absolute; }
.fixed {
position: fixed; }
.top-0 {
top: 0; }
.right-0 {
right: 0; }
.bottom-0 {
bottom: 0; }
.left-0 {
left: 0; }
.z1 {
z-index: 1; }
.z2 {
z-index: 2; }
.z3 {
z-index: 3; }
.z4 {
z-index: 4; }
.border {
border-style: solid;
border-width: 1px; }
.border-top {
border-top-style: solid;
border-top-width: 1px; }
.border-right {
border-right-style: solid;
border-right-width: 1px; }
.border-bottom {
border-bottom-style: solid;
border-bottom-width: 1px; }
.border-left {
border-left-style: solid;
border-left-width: 1px; }
.border-none {
border: 0; }
.rounded {
border-radius: 3px; }
.circle {
border-radius: 50%; }
.rounded-top {
border-radius: 3px 3px 0 0; }
.rounded-right {
border-radius: 0 3px 3px 0; }
.rounded-bottom {
border-radius: 0 0 3px 3px; }
.rounded-left {
border-radius: 3px 0 0 3px; }
.not-rounded {
border-radius: 0; }
.hide {
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px); }
@media (max-width: 40em) {
.xs-hide {
display: none !important; } }
@media (min-width: 40em) and (max-width: 52em) {
.sm-hide {
display: none !important; } }
@media (min-width: 52em) and (max-width: 64em) {
.md-hide {
display: none !important; } }
@media (min-width: 64em) {
.lg-hide {
display: none !important; } }
.display-none {
display: none !important; }
body {
color: #293648; }
a,
button,
input,
select,
textarea {
transition-property: background-color, color;
transition-duration: 0.05s;
transition-timing-function: ease-out; }
/* styleguide layout */
.sg-header {
background-color: #F6F7F8;
border-bottom: 1px solid #E9EBEC;
height: 60px; }
.sg-header h1 {
margin: 0;
line-height: 58px; }
.sg-header h1 span {
color: #7C8792; }
.sg-header .sg-container {
padding-top: 0; }
.sg-header img {
display: inline-block;
vertical-align: -5px; }
.sg-main {
padding-top: 1.5rem; }
.sg-container {
margin: 0 auto;
padding: .75rem 2rem;
max-width: 1170px; }
.sg-section {
max-width: 800px;
padding-top: 2rem;
padding-bottom: 2rem;
clear: both; }
.sg-meta {
font-size: .875rem;
color: #919BA4; }
.sg-example {
margin-bottom: 1rem;
padding: 1.5rem 1rem;
border: 1px solid #C3C9CD;
border-radius: 4px;
overflow: hidden; }
.sg-label {
font-size: .875rem;
color: #7C8792;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: .025em; }
@media (min-width: 640px) {
.sg-label {
width: 20%;
float: left; } }
@media (min-width: 640px) {
.sg-subsection {
width: 80%;
float: left; } }
.sg-subsection__img {
max-width: 120px;
height: auto;
float: left;
margin-right: 2rem;
margin-bottom: 1rem; }
.color-blocks {
display: flex;
justify-content: flex-start;
flex-direction: column; }
@media (min-width: 800px) {
.color-blocks {
flex-direction: row; } }
.color-block--neutral {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #293648;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral:hover {
background-color: black; }
.color-block--neutral::before {
content: "#293648";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--90 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #394B5B;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--90:hover {
background-color: black; }
.color-block--neutral--90::before {
content: "#394B5B";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--70 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #65737F;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--70:hover {
background-color: #21262a; }
.color-block--neutral--70::before {
content: "#65737F";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--50 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #919BA4;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--50:hover {
background-color: #474e55; }
.color-block--neutral--50::before {
content: "#919BA4";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--30 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #C3C9CD;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--30:hover {
background-color: #707e87; }
.color-block--neutral--30::before {
content: "#C3C9CD";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--10 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #E9EBEC;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--10:hover {
background-color: #97a0a5; }
.color-block--neutral--10::before {
content: "#E9EBEC";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--neutral--50 {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #919BA4;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--neutral--50:hover {
background-color: #474e55; }
.color-block--neutral--50::before {
content: "#919BA4";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--green {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #2ACA4B;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--green:hover {
background-color: #123e1b; }
.color-block--green::before {
content: "#2ACA4B";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--blue {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #2980B9;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--blue:hover {
background-color: #0d293c; }
.color-block--blue::before {
content: "#2980B9";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--red {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #D8524E;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--red:hover {
background-color: #741c19; }
.color-block--red::before {
content: "#D8524E";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.color-block--yellow {
flex: 0 1 0;
margin-right: 1rem;
margin-bottom: 1rem;
background-color: #F0C30E;
color: #FFFFFF;
text-align: center;
font-weight: bold;
font-size: 18px;
border-radius: 6px; }
.color-block--yellow:hover {
background-color: #5f4e06; }
.color-block--yellow::before {
content: "#F0C30E";
display: block;
width: 100%;
height: 72px;
padding: 22px 10px; }
.sg-color-list {
list-style: none;
padding: 0; }
.sg-color-list li {
padding: .25rem 0; }
.sg-color-circle {
width: 1rem;
height: 1rem;
display: inline-block;
vertical-align: middle;
margin-right: .5rem; }
.sg-code {
font-size: 1rem;
font-family: monospace;
color: #505F6D;
background-color: #F6F7F8;
padding: 1px; }
.sg-pre {
font-size: 1rem;
font-family: monospace;
color: #505F6D;
background-color: #F6F7F8;
padding: 1rem;
overflow-x: auto; }
.sg-icon-list {
display: flex;
flex-wrap: wrap; }
.sg-icon-block {
flex: 0 1 20%;
text-align: center;
margin: 0;
padding: .5rem; }
.sg-icon-block .daticon {
display: block;
max-width: 60px;
max-height: 60px;
margin: 0 auto;
padding: .5rem;
fill: currentColor; }
.sg-icon-block figcaption {
font-size: .75rem;
color: #7C8792; } | 0.612657 | 0.135546 |
html {
height: 100%;
}
body{
height: 100%;
margin: 0;
padding: 0;
font-family: Verdana;
}
#content{
width: 100%;
height: 100%;
}
/* ================================ */
/* Style Map */
/* ================================ */
#map-canvas{
height: 100%;
width: 100%;
}
/* ================================ */
/* Style Menu*/
/* ================================ */
@import url(http://fonts.googleapis.com/css?family=Capriola);
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
margin: 0;
padding: 0;
border: 0;
list-style: none;
line-height: 1;
display: block;
position: relative;
font-family: Capriola, Helvetica, sans-serif;
}
#cssmenu {
width: auto;
height: 59px;
padding-bottom: 4px;
z-index: 1;
}
#cssmenu.align-right {
float: right;
}
#cssmenu.align-right ul li {
float: right;
margin-right: 0;
margin-left: 4px;
}
#cssmenu.align-right ul li:first-child,
#cssmenu.align-right ul li:first-child > a {
border-bottom-right-radius: 3px;
}
#cssmenu #bg-one,
#cssmenu #bg-two,
#cssmenu #bg-three,
#cssmenu #bg-four {
position: absolute;
bottom: 0;
width: 100%;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
#cssmenu #bg-one {
height: 10px;
background: #0f71ba;
}
#cssmenu #bg-two {
height: 59px;
z-index: 2;
}
#cssmenu #bg-three {
bottom: 4px;
height: 55px;
z-index: 3;
background: #222222;
background: -moz-linear-gradient(top, #555555 0%, #222222 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555555), color-stop(100%, #222222));
background: -webkit-linear-gradient(top, #555555 0%, #222222 100%);
background: -o-linear-gradient(top, #555555 0%, #222222 100%);
background: -ms-linear-gradient(top, #555555 0%, #222222 100%);
background: linear-gradient(to bottom, #555555 0%, #222222 100%);
}
#cssmenu #bg-four {
bottom: 4px;
height: 55px;
z-index: 4;
}
#cssmenu ul {
height: 59px;
}
#cssmenu ul li {
float: left;
margin-right: 4px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
z-index: 5;
}
#cssmenu ul li a {
padding: 24px 30px 20px 30px;
margin-bottom: 4px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
color: #eeeeee;
font-size: 15px;
text-decoration: none;
}
#cssmenu ul li:first-child,
#cssmenu ul li:first-child > a {
border-bottom-left-radius: 3px;
}
#cssmenu ul li:hover,
#cssmenu ul li.active {
background: #0f71ba;
background: -moz-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3fa4f0), color-stop(100%, #0f71ba));
background: -webkit-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
background: -o-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
background: -ms-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
background: linear-gradient(to bottom, #3fa4f0 0%, #0f71ba 100%);
}
#cssmenu ul li a:hover,
#cssmenu ul li.active > a {
color: #ffffff;
}
.control{
position: absolute;
z-index: 1000;
margin: 30px;
}
/* ================================ */
/* Style Loading Page*/
/* ================================ */
.btn {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
background:-moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0);
background-color:#ffffff;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #dcdcdc;
display: block;
cursor:pointer;
color:#666666;
font-family:Verdana;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
}
.btn:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
background:-moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
background-color:#f6f6f6;
}
#dataType, #mapType, #analysis{
font-size:20px;
width: 360px;
height: 40px;
}
/* ================================ */
/* Style Menu Panels */
/* ================================ */
.panel{
width: 360px;
background-color: #ffffff;
display: block;
}
.inner-panel{
margin-left: 20px;
margin-top: 20px;
position: absolute;
}
.inner-panel span{
font-size: 17px;
display: block;
padding: 2px;
}
#dataTypeDiv{
height: 80px;
}
#mapTypeDiv{
height: 590px;
}
#mapType-inner div{
margin-top: 12px;
}
#mapType, #analysis{
visibility: hidden;
}
/* ================================ */
/* Map Menu */
/* ================================ */
#panel-type input{
display: none;
}
#panel-type label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
.selected{
background-color: #dcdcdc;
}
/* ================================ */
/* Map Style */
/* ================================ */
#panel-mapStyle input{
display: none;
}
#panel-mapStyle label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
/* ================================ */
/* Map Gradient */
/* ================================ */
#panel-gradient input{
display: none;
}
#panel-gradient label{
padding: 4px;
display: inline-block;
cursor: pointer;
width: 40px;
height: 23px;
}
#grad1{
background-image: linear-gradient(to bottom, #00f541, #fa0303);
}
#grad2{
background-image: linear-gradient(to bottom, #00f5f5, #fa0303);
}
#grad3{
background-image: linear-gradient(to bottom, #FEF8AF, #712006);
}
.selectedColor {
border: #FF530F 2px solid;
}
/* Map Radius */
#panel-radius input{
display: none;
}
#panel-radius label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
/* ================================ */
/* Map Opacity */
/* ================================ */
#panel-opacity input{
display: none;
}
#panel-opacity label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
/* ================================ */
/* Choose File Style */
/* ================================ */
.btn-fileChoose {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
background:-moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0);
background-color:#ffffff;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #dcdcdc;
display: inline;
cursor:pointer;
color:#666666;
font-family:Verdana;
text-align: center;
font-size:15px;
width: 110px;
position:relative;
float: left;
overflow: hidden;
height: 30px;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
}
.btn-fileChoose:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
background:-moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
background-color:#f6f6f6;
}
.btn-fileChoose input{
position: absolute;
top: 0;
right: 0;
margin: 0;
opacity: 0;
-ms-filter:'alpha(opacity=0)';
font-size: 200px;
direction: ltr;
cursor: pointer;
}
#file-Choose-div{
display: block;
height: 40px;
}
/* ================================ */
/* Marker Style */
/* ================================ */
#panel-marker-color input{
display:none
}
#panel-marker-color label{
padding: 4px;
display: inline-block;
cursor: pointer;
width: 40px;
height: 23px;
}
#col1{
background-color: #ff0000;
}
#col2{
background-color: #00cc00;
}
#col3{
background-color: #cc00cc;
}
#col4{
background-color: #0000cc;
}
#col5{
background-color: #a0a0a0;
}
#col6{
background-color: #000000;
}
/* ================================ */
/* Time Variation */
/* ================================ */
#time-variation input{
display: none;
}
#time-variation label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
/* ================================ */
/* Layers Clock and Scale */
/* ================================ */
#layer-clk input{
display: none;
}
#layer-clk label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
#layer-scale input{
display: none;
}
#layer-scale label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
#slider{
position: absolute;
bottom: 7%;
left: 35%;
width: 500px;
z-index: 1000;
border: 4px solid #0f71ba;
}
.sliderStyle.ui-corner-all,
.sliderStyle .ui-corner-all {
border-radius: 0;
}
.ui-slider .ui-slider-handle{
border: none;
cursor: pointer;
border-radius: 50%;
}
#btn-hide{
top: 10%;
right: 2%;
position: fixed;
z-index: 1000;
border: 5px solid #0f71ba;
border-radius: 5px;
padding: 4px;
color: white;
background: #222222;
background: -moz-linear-gradient(top, #555555 0%, #222222 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555555), color-stop(100%, #222222));
background: -webkit-linear-gradient(top, #555555 0%, #222222 100%);
background: -o-linear-gradient(top, #555555 0%, #222222 100%);
background: -ms-linear-gradient(top, #555555 0%, #222222 100%);
background: linear-gradient(to bottom, #555555 0%, #222222 100%);
}
#loading {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: rgba(255, 255, 255, .8)
url("../images/loading2.gif")
center no-repeat;
}
/* ================================ */
/* Styling for Analysis Field */
/* ================================ */
#analysisDiv{
height: 600px;
overflow-y: scroll;
width: 360px;
position: relative;
}
#analysisDiv input[type="text"]{
border: none;
border-bottom: solid 2px #c9c9c9;
background-color: white;
transition: border 0.3s;
}
#analysis_panel div{
padding-top: 5px;
padding-bottom: 5px;
}
#analysis_panel input{
text-align: center;
font-size: 16px;
}
#analysis_panel label{
width: 130px;
display: inline-block;
text-align: center;
margin-left: -10px;
}
/* ================================ */
/* Styling for Time Layer */
/* ================================ */
#timeLayer{
background: white;
width: 250px;
height: 70px;
bottom: 5%;
right: 10%;
position: absolute;
z-index: 1000;
border-radius: 25px;
border: 2px solid #3fa4f0;
cursor: none;
text-align: center;
font-size: 50px;
}
/* ================================ */
/* Styling for Player Button */
/* ================================ */
.btn-player{
position: absolute;
bottom: 5.5%;
left: 31%;
z-index: 1000;
cursor: pointer;
}
/* ================================ */
/* Styling for Input File Button */
/* ================================ */
#name-file{
margin: 10px;
}
#check_label{
float: right;
width: 16px;
height: 16px;
background: url("../images/check_icon.png") center no-repeat;
}
/* ================================ */
/* Styling for Generation Map Button*/
/* ================================ */
#gen_map{
width: 150px;
height: 40px;
font-size: 16px;
margin-left: 90px;
margin-top: 10px;
visibility: hidden;
}
/* ================================ */
/* Styling for Tutorial Page */
/* ================================ */
#content_tutorial{
margin-left: 25%;
margin-right: 25%;
}
p{
color: #363637;
font-family: 'Lucida Sans', Arial, sans-serif;
font-size: 16px;
line-height: 26px;
text-indent: 30px;
margin: 0;
}
h1{
color: #3fa4f0;
font-family: 'Rouge Script', cursive;
font-size: 80px;
font-weight: normal;
line-height: 48px;
margin: 30px 0 50px;
text-align: center;
text-shadow: 1px 1px 2px #082b34;
}
h3{
color: #3fa4f0;
font-family: 'Rouge Script', cursive;
font-size: 40px;
font-weight: normal;
line-height: 48px;
margin: 30px 0 50px;
height: 60px;
text-align: left;
text-shadow: 1px 1px 2px #082b34;
}
#tutorial{
background-color: #fafafa;
}
#tab{
border: solid #555555;
width: 100%;
}
#tab th, tr, td{
text-align: center;
padding: 8px;
}
#tab tr:nth-child(even){background-color: #f2f2f2}
strong {
font-weight: bold;
font-size: 19px;
color: #3fa4f0;
}
.equation{
font-style: italic;
text-align: center;
margin: 10px;
font-size: 18px;
}
.formulas{
margin: 4px;
border: solid #555555 .4px;
text-align: center;
margin-left: 10px;
margin-right: 10px;
}
.formulas table{
text-align: center;
}
td.upper_line{ border-top:solid 1px #555555; }
/* ================================ */
/* Styling for Examples Page */
/* ================================ */
#content_examples{
margin-left: 25%;
margin-right: 25%;
}
#examples{
background-color: #fafafa;
}
/* ================================ */
/* Styling for Contacts Page */
/* ================================ */
#content_contact{
margin-left: 25%;
margin-right: 25%;
}
#contact{
background-color: #fafafa;
} | styles/styles.css |
html {
height: 100%;
}
body{
height: 100%;
margin: 0;
padding: 0;
font-family: Verdana;
}
#content{
width: 100%;
height: 100%;
}
/* ================================ */
/* Style Map */
/* ================================ */
#map-canvas{
height: 100%;
width: 100%;
}
/* ================================ */
/* Style Menu*/
/* ================================ */
@import url(http://fonts.googleapis.com/css?family=Capriola);
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
margin: 0;
padding: 0;
border: 0;
list-style: none;
line-height: 1;
display: block;
position: relative;
font-family: Capriola, Helvetica, sans-serif;
}
#cssmenu {
width: auto;
height: 59px;
padding-bottom: 4px;
z-index: 1;
}
#cssmenu.align-right {
float: right;
}
#cssmenu.align-right ul li {
float: right;
margin-right: 0;
margin-left: 4px;
}
#cssmenu.align-right ul li:first-child,
#cssmenu.align-right ul li:first-child > a {
border-bottom-right-radius: 3px;
}
#cssmenu #bg-one,
#cssmenu #bg-two,
#cssmenu #bg-three,
#cssmenu #bg-four {
position: absolute;
bottom: 0;
width: 100%;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
#cssmenu #bg-one {
height: 10px;
background: #0f71ba;
}
#cssmenu #bg-two {
height: 59px;
z-index: 2;
}
#cssmenu #bg-three {
bottom: 4px;
height: 55px;
z-index: 3;
background: #222222;
background: -moz-linear-gradient(top, #555555 0%, #222222 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555555), color-stop(100%, #222222));
background: -webkit-linear-gradient(top, #555555 0%, #222222 100%);
background: -o-linear-gradient(top, #555555 0%, #222222 100%);
background: -ms-linear-gradient(top, #555555 0%, #222222 100%);
background: linear-gradient(to bottom, #555555 0%, #222222 100%);
}
#cssmenu #bg-four {
bottom: 4px;
height: 55px;
z-index: 4;
}
#cssmenu ul {
height: 59px;
}
#cssmenu ul li {
float: left;
margin-right: 4px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
z-index: 5;
}
#cssmenu ul li a {
padding: 24px 30px 20px 30px;
margin-bottom: 4px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
color: #eeeeee;
font-size: 15px;
text-decoration: none;
}
#cssmenu ul li:first-child,
#cssmenu ul li:first-child > a {
border-bottom-left-radius: 3px;
}
#cssmenu ul li:hover,
#cssmenu ul li.active {
background: #0f71ba;
background: -moz-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3fa4f0), color-stop(100%, #0f71ba));
background: -webkit-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
background: -o-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
background: -ms-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
background: linear-gradient(to bottom, #3fa4f0 0%, #0f71ba 100%);
}
#cssmenu ul li a:hover,
#cssmenu ul li.active > a {
color: #ffffff;
}
.control{
position: absolute;
z-index: 1000;
margin: 30px;
}
/* ================================ */
/* Style Loading Page*/
/* ================================ */
.btn {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
background:-moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0);
background-color:#ffffff;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #dcdcdc;
display: block;
cursor:pointer;
color:#666666;
font-family:Verdana;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
}
.btn:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
background:-moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
background-color:#f6f6f6;
}
#dataType, #mapType, #analysis{
font-size:20px;
width: 360px;
height: 40px;
}
/* ================================ */
/* Style Menu Panels */
/* ================================ */
.panel{
width: 360px;
background-color: #ffffff;
display: block;
}
.inner-panel{
margin-left: 20px;
margin-top: 20px;
position: absolute;
}
.inner-panel span{
font-size: 17px;
display: block;
padding: 2px;
}
#dataTypeDiv{
height: 80px;
}
#mapTypeDiv{
height: 590px;
}
#mapType-inner div{
margin-top: 12px;
}
#mapType, #analysis{
visibility: hidden;
}
/* ================================ */
/* Map Menu */
/* ================================ */
#panel-type input{
display: none;
}
#panel-type label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
.selected{
background-color: #dcdcdc;
}
/* ================================ */
/* Map Style */
/* ================================ */
#panel-mapStyle input{
display: none;
}
#panel-mapStyle label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
/* ================================ */
/* Map Gradient */
/* ================================ */
#panel-gradient input{
display: none;
}
#panel-gradient label{
padding: 4px;
display: inline-block;
cursor: pointer;
width: 40px;
height: 23px;
}
#grad1{
background-image: linear-gradient(to bottom, #00f541, #fa0303);
}
#grad2{
background-image: linear-gradient(to bottom, #00f5f5, #fa0303);
}
#grad3{
background-image: linear-gradient(to bottom, #FEF8AF, #712006);
}
.selectedColor {
border: #FF530F 2px solid;
}
/* Map Radius */
#panel-radius input{
display: none;
}
#panel-radius label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
/* ================================ */
/* Map Opacity */
/* ================================ */
#panel-opacity input{
display: none;
}
#panel-opacity label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
/* ================================ */
/* Choose File Style */
/* ================================ */
.btn-fileChoose {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
background:-moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:-ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0);
background-color:#ffffff;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #dcdcdc;
display: inline;
cursor:pointer;
color:#666666;
font-family:Verdana;
text-align: center;
font-size:15px;
width: 110px;
position:relative;
float: left;
overflow: hidden;
height: 30px;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
}
.btn-fileChoose:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
background:-moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:-ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
background-color:#f6f6f6;
}
.btn-fileChoose input{
position: absolute;
top: 0;
right: 0;
margin: 0;
opacity: 0;
-ms-filter:'alpha(opacity=0)';
font-size: 200px;
direction: ltr;
cursor: pointer;
}
#file-Choose-div{
display: block;
height: 40px;
}
/* ================================ */
/* Marker Style */
/* ================================ */
#panel-marker-color input{
display:none
}
#panel-marker-color label{
padding: 4px;
display: inline-block;
cursor: pointer;
width: 40px;
height: 23px;
}
#col1{
background-color: #ff0000;
}
#col2{
background-color: #00cc00;
}
#col3{
background-color: #cc00cc;
}
#col4{
background-color: #0000cc;
}
#col5{
background-color: #a0a0a0;
}
#col6{
background-color: #000000;
}
/* ================================ */
/* Time Variation */
/* ================================ */
#time-variation input{
display: none;
}
#time-variation label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
/* ================================ */
/* Layers Clock and Scale */
/* ================================ */
#layer-clk input{
display: none;
}
#layer-clk label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
#layer-scale input{
display: none;
}
#layer-scale label{
padding: 4px;
border: 1px solid #dcdcdc;
display: inline-block;
cursor: pointer;
}
#slider{
position: absolute;
bottom: 7%;
left: 35%;
width: 500px;
z-index: 1000;
border: 4px solid #0f71ba;
}
.sliderStyle.ui-corner-all,
.sliderStyle .ui-corner-all {
border-radius: 0;
}
.ui-slider .ui-slider-handle{
border: none;
cursor: pointer;
border-radius: 50%;
}
#btn-hide{
top: 10%;
right: 2%;
position: fixed;
z-index: 1000;
border: 5px solid #0f71ba;
border-radius: 5px;
padding: 4px;
color: white;
background: #222222;
background: -moz-linear-gradient(top, #555555 0%, #222222 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555555), color-stop(100%, #222222));
background: -webkit-linear-gradient(top, #555555 0%, #222222 100%);
background: -o-linear-gradient(top, #555555 0%, #222222 100%);
background: -ms-linear-gradient(top, #555555 0%, #222222 100%);
background: linear-gradient(to bottom, #555555 0%, #222222 100%);
}
#loading {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: rgba(255, 255, 255, .8)
url("../images/loading2.gif")
center no-repeat;
}
/* ================================ */
/* Styling for Analysis Field */
/* ================================ */
#analysisDiv{
height: 600px;
overflow-y: scroll;
width: 360px;
position: relative;
}
#analysisDiv input[type="text"]{
border: none;
border-bottom: solid 2px #c9c9c9;
background-color: white;
transition: border 0.3s;
}
#analysis_panel div{
padding-top: 5px;
padding-bottom: 5px;
}
#analysis_panel input{
text-align: center;
font-size: 16px;
}
#analysis_panel label{
width: 130px;
display: inline-block;
text-align: center;
margin-left: -10px;
}
/* ================================ */
/* Styling for Time Layer */
/* ================================ */
#timeLayer{
background: white;
width: 250px;
height: 70px;
bottom: 5%;
right: 10%;
position: absolute;
z-index: 1000;
border-radius: 25px;
border: 2px solid #3fa4f0;
cursor: none;
text-align: center;
font-size: 50px;
}
/* ================================ */
/* Styling for Player Button */
/* ================================ */
.btn-player{
position: absolute;
bottom: 5.5%;
left: 31%;
z-index: 1000;
cursor: pointer;
}
/* ================================ */
/* Styling for Input File Button */
/* ================================ */
#name-file{
margin: 10px;
}
#check_label{
float: right;
width: 16px;
height: 16px;
background: url("../images/check_icon.png") center no-repeat;
}
/* ================================ */
/* Styling for Generation Map Button*/
/* ================================ */
#gen_map{
width: 150px;
height: 40px;
font-size: 16px;
margin-left: 90px;
margin-top: 10px;
visibility: hidden;
}
/* ================================ */
/* Styling for Tutorial Page */
/* ================================ */
#content_tutorial{
margin-left: 25%;
margin-right: 25%;
}
p{
color: #363637;
font-family: 'Lucida Sans', Arial, sans-serif;
font-size: 16px;
line-height: 26px;
text-indent: 30px;
margin: 0;
}
h1{
color: #3fa4f0;
font-family: 'Rouge Script', cursive;
font-size: 80px;
font-weight: normal;
line-height: 48px;
margin: 30px 0 50px;
text-align: center;
text-shadow: 1px 1px 2px #082b34;
}
h3{
color: #3fa4f0;
font-family: 'Rouge Script', cursive;
font-size: 40px;
font-weight: normal;
line-height: 48px;
margin: 30px 0 50px;
height: 60px;
text-align: left;
text-shadow: 1px 1px 2px #082b34;
}
#tutorial{
background-color: #fafafa;
}
#tab{
border: solid #555555;
width: 100%;
}
#tab th, tr, td{
text-align: center;
padding: 8px;
}
#tab tr:nth-child(even){background-color: #f2f2f2}
strong {
font-weight: bold;
font-size: 19px;
color: #3fa4f0;
}
.equation{
font-style: italic;
text-align: center;
margin: 10px;
font-size: 18px;
}
.formulas{
margin: 4px;
border: solid #555555 .4px;
text-align: center;
margin-left: 10px;
margin-right: 10px;
}
.formulas table{
text-align: center;
}
td.upper_line{ border-top:solid 1px #555555; }
/* ================================ */
/* Styling for Examples Page */
/* ================================ */
#content_examples{
margin-left: 25%;
margin-right: 25%;
}
#examples{
background-color: #fafafa;
}
/* ================================ */
/* Styling for Contacts Page */
/* ================================ */
#content_contact{
margin-left: 25%;
margin-right: 25%;
}
#contact{
background-color: #fafafa;
} | 0.270095 | 0.047492 |
:root {
--color-neutral-light: #f0ecec;
--color-neutral-medium: #999;
--color-neutral-dark: #191919;
--color-neutral-theme-primary :#885d90; /*dark-purple*/
--color-neutral-theme-secondary:#caaaca; /*light-purple*/
--color-neutral-theme-accent-light:#f5edee; /*off-white*/
--color-neutral-theme-accent-medium:#e1b4c5; /*beige*/
--color-neutral-theme-accent-dark:#d99cb8; /*pink*/
}
/*fontstyle*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
body {
font-family: "Josefin Sans", sans-serif;
font-style: normal;
line-height: 2em;
font-weight: 100;
background-color: #f9f9f9;
}
.position-body{
padding: 0 0 0 0;
}
.stickyhead{
background-color: var(--color-neutral-theme-primary);
color: white;
}
.stickyhead p{
margin: 0;
padding-left: 1em;
}
.social-icons img{
padding: 0 0.5em;
}
.social-icons{
align-items: center;
}
/*color theme */
.square {
height: 100px;
width: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Libre Baskerville";
font-style: italic;
line-height: 1em;
font-weight: 100;
}
/*list*/
li{
font-family: Karla;
font-style: normal;
font-weight: 400;
font-variant-caps: small-caps;
}
.main_navbar{
background: var(--color-neutral-theme-accent-medium);
color:var(--color-neutral-theme-primary);
padding: 0.5em;
font-family: Karla;
font-weight: 400;
}
.navbar {
background: var(--color-neutral-theme-accent-medium);
color:var(--color-neutral-theme-primary);
padding: 0.5em;
font-family: Karla;
font-style: normal;
font-weight: 400;
font-variant-caps: small-caps;
}
/*.navbar h1 {
font-size:1.5em;
font-family:'Libre Baskerville';
font-style: italic;
font-weight: 100;
margin:0;
}*/
.textblock {
/* position: absolute;
top: 50%;
left: 30%;
transform: translate(-50%,-50%);
color:var(--color-neutral-theme-primary);
font-size: 1.5em;*/
color: var(--color-neutral-theme-primary);
padding: 10em 15em;
}
.textblock h2{
line-height: 2em;
}
/*buttons*/
.btn{
font-family: Karla;
font-style: normal;
font-weight: 400;
font-size: 1em;
font-variant-caps: small-caps;
transition-duration: 0.4s;
}
.cta_primary{
background-color:var(--color-neutral-theme-primary);
color:var(--color-neutral-light);
}
.btn.borderbutton{
background-color:var(--color-white);
border:2px solid var(--color-neutral-theme-primary);
}
/* Product List Design */
.product-item {
margin: 0;
background-color:white;
box-shadow:1px 1px 4px rgba(0,0,0,0.1);
padding:1em;
transition:all 0.3s;
display: block;
height: 100%;
}
.product-item figure{
margin: 0;
}
.product-item:hover {
box-shadow:1px 1px 10px rgba(0,0,0,0.4);
}
.product-item a: hover{
text-decoration: none;
}
.product-image{
position: relative;
height:0;
overflow: hidden;
padding-bottom: 80%;
}
/*.image-main img{
position: relative;
height: 0;
overflow: hidden;
}*/
.image-main img{
width:100%;
object-fit: cover;
height: 100%;
top: 0;
left: 0;
}
.product-image img {
position: absolute;
width:100%;
object-fit: cover;
height: 100%;
top: 0;
left: 0;
}
.image-thumbs img{
width: 120px;
height: 120px;
object-fit:cover;
}
.card :first-child,
.card-section :first-child{
margin-top: 0;
}
.product-price{
}
.product-title {
font-family: "Libre Baskerville";
font-style: italic;
}
.product-price {
font-size: 0.9em;
padding: 0.2em 0.4em;
}
.product-title {
font-size: 1.2em;
}
.product-desc{
font-size:1em;
font-weight: 100;
}
.product-image {
position: relative;
height: 0;
overflow: hidden;
padding-bottom: 80%;
}
/*//footer*/
.footer{
background-color: var(--color-neutral-theme-secondary);
margin-top: 2em;
color: #fff;
margin-bottom: 0px;
}
.footerbottom{
background-color: var(--color-neutral-theme-primary);
text-align: center;
bottom: 0px;
color: white;
}
.footerbottom p{
margin:0;
}
.footer_context{
padding: 0 1em 0 1em;
}
.suggestions{
color: var(--color-neutral-theme-primary);
outline:0;
border: none;
background-color: transparent;
font-family: karla;
}
.suggestions:hover{
text-decoration: underline;
cursor: pointer;
}
span.badge:not(:empty)::after {
content:')';
}
span.badge:not(:empty)::before {
content:'(';
}
@media (max-width:600px) {
h2 {
font-size:1em;
}
.textblock{
padding: 15em 2em;
}
} | fernandes.shiny/css/storetheme.css | :root {
--color-neutral-light: #f0ecec;
--color-neutral-medium: #999;
--color-neutral-dark: #191919;
--color-neutral-theme-primary :#885d90; /*dark-purple*/
--color-neutral-theme-secondary:#caaaca; /*light-purple*/
--color-neutral-theme-accent-light:#f5edee; /*off-white*/
--color-neutral-theme-accent-medium:#e1b4c5; /*beige*/
--color-neutral-theme-accent-dark:#d99cb8; /*pink*/
}
/*fontstyle*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
body {
font-family: "Josefin Sans", sans-serif;
font-style: normal;
line-height: 2em;
font-weight: 100;
background-color: #f9f9f9;
}
.position-body{
padding: 0 0 0 0;
}
.stickyhead{
background-color: var(--color-neutral-theme-primary);
color: white;
}
.stickyhead p{
margin: 0;
padding-left: 1em;
}
.social-icons img{
padding: 0 0.5em;
}
.social-icons{
align-items: center;
}
/*color theme */
.square {
height: 100px;
width: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Libre Baskerville";
font-style: italic;
line-height: 1em;
font-weight: 100;
}
/*list*/
li{
font-family: Karla;
font-style: normal;
font-weight: 400;
font-variant-caps: small-caps;
}
.main_navbar{
background: var(--color-neutral-theme-accent-medium);
color:var(--color-neutral-theme-primary);
padding: 0.5em;
font-family: Karla;
font-weight: 400;
}
.navbar {
background: var(--color-neutral-theme-accent-medium);
color:var(--color-neutral-theme-primary);
padding: 0.5em;
font-family: Karla;
font-style: normal;
font-weight: 400;
font-variant-caps: small-caps;
}
/*.navbar h1 {
font-size:1.5em;
font-family:'Libre Baskerville';
font-style: italic;
font-weight: 100;
margin:0;
}*/
.textblock {
/* position: absolute;
top: 50%;
left: 30%;
transform: translate(-50%,-50%);
color:var(--color-neutral-theme-primary);
font-size: 1.5em;*/
color: var(--color-neutral-theme-primary);
padding: 10em 15em;
}
.textblock h2{
line-height: 2em;
}
/*buttons*/
.btn{
font-family: Karla;
font-style: normal;
font-weight: 400;
font-size: 1em;
font-variant-caps: small-caps;
transition-duration: 0.4s;
}
.cta_primary{
background-color:var(--color-neutral-theme-primary);
color:var(--color-neutral-light);
}
.btn.borderbutton{
background-color:var(--color-white);
border:2px solid var(--color-neutral-theme-primary);
}
/* Product List Design */
.product-item {
margin: 0;
background-color:white;
box-shadow:1px 1px 4px rgba(0,0,0,0.1);
padding:1em;
transition:all 0.3s;
display: block;
height: 100%;
}
.product-item figure{
margin: 0;
}
.product-item:hover {
box-shadow:1px 1px 10px rgba(0,0,0,0.4);
}
.product-item a: hover{
text-decoration: none;
}
.product-image{
position: relative;
height:0;
overflow: hidden;
padding-bottom: 80%;
}
/*.image-main img{
position: relative;
height: 0;
overflow: hidden;
}*/
.image-main img{
width:100%;
object-fit: cover;
height: 100%;
top: 0;
left: 0;
}
.product-image img {
position: absolute;
width:100%;
object-fit: cover;
height: 100%;
top: 0;
left: 0;
}
.image-thumbs img{
width: 120px;
height: 120px;
object-fit:cover;
}
.card :first-child,
.card-section :first-child{
margin-top: 0;
}
.product-price{
}
.product-title {
font-family: "Libre Baskerville";
font-style: italic;
}
.product-price {
font-size: 0.9em;
padding: 0.2em 0.4em;
}
.product-title {
font-size: 1.2em;
}
.product-desc{
font-size:1em;
font-weight: 100;
}
.product-image {
position: relative;
height: 0;
overflow: hidden;
padding-bottom: 80%;
}
/*//footer*/
.footer{
background-color: var(--color-neutral-theme-secondary);
margin-top: 2em;
color: #fff;
margin-bottom: 0px;
}
.footerbottom{
background-color: var(--color-neutral-theme-primary);
text-align: center;
bottom: 0px;
color: white;
}
.footerbottom p{
margin:0;
}
.footer_context{
padding: 0 1em 0 1em;
}
.suggestions{
color: var(--color-neutral-theme-primary);
outline:0;
border: none;
background-color: transparent;
font-family: karla;
}
.suggestions:hover{
text-decoration: underline;
cursor: pointer;
}
span.badge:not(:empty)::after {
content:')';
}
span.badge:not(:empty)::before {
content:'(';
}
@media (max-width:600px) {
h2 {
font-size:1em;
}
.textblock{
padding: 15em 2em;
}
} | 0.425367 | 0.095349 |
.nav-container {
width: 1080px;
height: 60px;
margin: 10px auto;
margin-bottom: 10px;
background-color: white;
border-radius: 10px;
}
.nav-container ul {
list-style-type: none;
}
.nav-container .link {
text-decoration: none;
font-size: 18px;
color: black;
text-transform: uppercase;
font-family: "Roboto", sans-serif;
letter-spacing: 0.1rem;
}
.nav-container .mobile-nav {
display: none;
}
.nav-container .nav-row {
display: flex;
flex-direction: row;
}
.nav-container .nav-col {
flex-basis: 100%;
}
.nav-container .nav-item {
height: 60px;
width: auto;
}
.nav-container .left-nav {
padding-top: 20px;
display: flex;
justify-content: space-evenly;
}
.nav-container .right-nav {
padding-top: 20px;
display: flex;
justify-content: space-evenly;
}
.nav-container .nav-link {
text-decoration: none;
}
.nav-container .logo-image {
width: 100px;
height: 100px;
margin: 0 auto;
}
.nav-container .logo {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100px;
width: 100px;
background-color: white;
margin: 0 auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: 90px;
z-index: 2;
margin-top: 15px;
-webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75);
box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 768px) {
.nav-container {
height: 80px;
width: 95%;
}
.nav-container .mobile-nav {
display: block;
margin: 0 auto;
}
.nav-container .link {
display: none;
}
.nav-container .right-nav {
display: none;
}
.nav-container .fa {
padding: 5px;
font-size: 30px;
width: 30px;
text-align: center;
text-decoration: none;
border-radius: 50%;
margin-left: 10px;
color: black;
}
.sub-menu {
width: 95%;
height: 200px;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: absolute;
top: 100px;
right: 0;
bottom: 0;
left: 10px;
-webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 1);
-moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 1);
box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 1);
border-radius: 10px;
z-index: 1;
}
.mobile-nav {
list-style-type: none;
text-align: center;
}
.mobile-link {
text-decoration: none;
color: black;
font-size: 32px;
letter-spacing: 0.1rem;
}
} | src/Navbar/navbar.css | .nav-container {
width: 1080px;
height: 60px;
margin: 10px auto;
margin-bottom: 10px;
background-color: white;
border-radius: 10px;
}
.nav-container ul {
list-style-type: none;
}
.nav-container .link {
text-decoration: none;
font-size: 18px;
color: black;
text-transform: uppercase;
font-family: "Roboto", sans-serif;
letter-spacing: 0.1rem;
}
.nav-container .mobile-nav {
display: none;
}
.nav-container .nav-row {
display: flex;
flex-direction: row;
}
.nav-container .nav-col {
flex-basis: 100%;
}
.nav-container .nav-item {
height: 60px;
width: auto;
}
.nav-container .left-nav {
padding-top: 20px;
display: flex;
justify-content: space-evenly;
}
.nav-container .right-nav {
padding-top: 20px;
display: flex;
justify-content: space-evenly;
}
.nav-container .nav-link {
text-decoration: none;
}
.nav-container .logo-image {
width: 100px;
height: 100px;
margin: 0 auto;
}
.nav-container .logo {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100px;
width: 100px;
background-color: white;
margin: 0 auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: 90px;
z-index: 2;
margin-top: 15px;
-webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75);
box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 768px) {
.nav-container {
height: 80px;
width: 95%;
}
.nav-container .mobile-nav {
display: block;
margin: 0 auto;
}
.nav-container .link {
display: none;
}
.nav-container .right-nav {
display: none;
}
.nav-container .fa {
padding: 5px;
font-size: 30px;
width: 30px;
text-align: center;
text-decoration: none;
border-radius: 50%;
margin-left: 10px;
color: black;
}
.sub-menu {
width: 95%;
height: 200px;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: absolute;
top: 100px;
right: 0;
bottom: 0;
left: 10px;
-webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 1);
-moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 1);
box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 1);
border-radius: 10px;
z-index: 1;
}
.mobile-nav {
list-style-type: none;
text-align: center;
}
.mobile-link {
text-decoration: none;
color: black;
font-size: 32px;
letter-spacing: 0.1rem;
}
} | 0.437343 | 0.064036 |
html , body{
background: #3f6aaf;
}
.label{
color: #7c7c7c;
}
#form {
alignment: center;
background: #eaebed;
width: 450px;
height: 650px;
margin: auto;
border-radius: 10px;
box-shadow: 0px 5px 10px #4f5051;
}
#form_footer {
border-radius: 0px 0px 10px 10px;
margin-top: 50px;
padding-top: 25px;
text-align: center;
width: 100%;
height: 10%;
background: #cccccc;
color: #222222;
font-size: 20px;
font-family: Shabnam;
}
#form_footer a {
font-family: Shabnam;
}
#form_footer a:link {
color: #3a82a3;
}
#title {
text-align: center;
color: #444444;
display: block;
font-size: 25px;
font-weight: bold;
margin-top: 10px;
margin-bottom: 60px;
font-family: Shabnam;
}
#form_body {
direction: rtl;
}
#form_body i {
color: #737373;
alignment-baseline: bottom;
float: right;
}
.field-box{
padding: 0px 0px 0px 20px;
}
.field {
height: 40px;
align-content: center;
padding: 5px;
border-top: 0px;
border-right: 0px;
border-left: 0px;
font-size: 20px;
border-bottom: 2px solid #918f8f;
background: #eaebed;
font-family: Shabnam;
}
.field:focus {
outline: 0px;
border-bottom: 4px solid #c6134f;
}
#row1 input:focus div i {
color: #c6134f;
}
#row2 input:focus ~ i {
color: #c6134f;
}
#row3 input:focus ~ i {
color: #c6134f;
}
#submit_button {
height: 55px;
width: 100%;
align-content: center;
align-self: center;
padding: 10px;
background: #0087ff;
border-radius: 4px;
color: white;
font-size: 20px;
font-family: Shabnam;
}
#submit_button:hover {
box-shadow: 0px 2px 25px #a6a7a8;
background: rgba(0, 135, 255, 0.82);
cursor: auto;
}
#text_plain {
margin: 10px;
text-align: center;
font-family: Shabnam;
}
#text_plain a:link {
color: #8c8888;
}
#form_content {
padding-top: 15px;
}
/*#box{*/
/*width: 36px;*/
/*height: 36px;*/
/*margin: 10px 10px 0px 10px;*/
/*border-radius: 2px;*/
/*background-image: url(../assets/ic_check_box_outline_blank_black_24dp_2x.png);*/
/*}*/
input[type="checkbox"] {
display: none;
width: 36px;
margin: 10px 10px 0px 10px;
height: 36px;
}
label {
cursor: pointer;
}
input[type="checkbox"] + label:before {
border: 1px solid #d8ced5;
border-radius: 5px;
content: "\00a0";
display: inline-block;
font: 36px/1em sans-serif;
height: 36px;
margin: 0 .25em 0 0;
padding: 0;
vertical-align: center;
width: 36px;
}
input[type="checkbox"]:checked + label:before {
border: 1px solid #d8ced5;
border-radius: 7px;
background: #c6134f;
color: #ffffff;
content: "\2713";
text-align: center;
}
input[type="checkbox"]:checked + label:after {
font-weight: bold;
}
/*#checkbox{*/
/*float: right;*/
/*width: 48px;*/
/*height: 48px;*/
/*background:url(../assets/ic_check_box_outline_blank_black_24dp_2x.png) left top no-repeat;*/
/*}*/
/*#checkbox::selection{*/
/*background:url(../assets/ic_check_box_black_24dp_2x.png) left top no-repeat;*/
/*}*/
#accept {
font-family: Shabnam;
margin-bottom: 10px;
font-size: 22px;
color: #737373;
align-content: center;
padding: 5px;
}
#accept a {
margin-right: 10px;
}
#accept a:link {
color: #3a82a3;
} | public/css/register.css | html , body{
background: #3f6aaf;
}
.label{
color: #7c7c7c;
}
#form {
alignment: center;
background: #eaebed;
width: 450px;
height: 650px;
margin: auto;
border-radius: 10px;
box-shadow: 0px 5px 10px #4f5051;
}
#form_footer {
border-radius: 0px 0px 10px 10px;
margin-top: 50px;
padding-top: 25px;
text-align: center;
width: 100%;
height: 10%;
background: #cccccc;
color: #222222;
font-size: 20px;
font-family: Shabnam;
}
#form_footer a {
font-family: Shabnam;
}
#form_footer a:link {
color: #3a82a3;
}
#title {
text-align: center;
color: #444444;
display: block;
font-size: 25px;
font-weight: bold;
margin-top: 10px;
margin-bottom: 60px;
font-family: Shabnam;
}
#form_body {
direction: rtl;
}
#form_body i {
color: #737373;
alignment-baseline: bottom;
float: right;
}
.field-box{
padding: 0px 0px 0px 20px;
}
.field {
height: 40px;
align-content: center;
padding: 5px;
border-top: 0px;
border-right: 0px;
border-left: 0px;
font-size: 20px;
border-bottom: 2px solid #918f8f;
background: #eaebed;
font-family: Shabnam;
}
.field:focus {
outline: 0px;
border-bottom: 4px solid #c6134f;
}
#row1 input:focus div i {
color: #c6134f;
}
#row2 input:focus ~ i {
color: #c6134f;
}
#row3 input:focus ~ i {
color: #c6134f;
}
#submit_button {
height: 55px;
width: 100%;
align-content: center;
align-self: center;
padding: 10px;
background: #0087ff;
border-radius: 4px;
color: white;
font-size: 20px;
font-family: Shabnam;
}
#submit_button:hover {
box-shadow: 0px 2px 25px #a6a7a8;
background: rgba(0, 135, 255, 0.82);
cursor: auto;
}
#text_plain {
margin: 10px;
text-align: center;
font-family: Shabnam;
}
#text_plain a:link {
color: #8c8888;
}
#form_content {
padding-top: 15px;
}
/*#box{*/
/*width: 36px;*/
/*height: 36px;*/
/*margin: 10px 10px 0px 10px;*/
/*border-radius: 2px;*/
/*background-image: url(../assets/ic_check_box_outline_blank_black_24dp_2x.png);*/
/*}*/
input[type="checkbox"] {
display: none;
width: 36px;
margin: 10px 10px 0px 10px;
height: 36px;
}
label {
cursor: pointer;
}
input[type="checkbox"] + label:before {
border: 1px solid #d8ced5;
border-radius: 5px;
content: "\00a0";
display: inline-block;
font: 36px/1em sans-serif;
height: 36px;
margin: 0 .25em 0 0;
padding: 0;
vertical-align: center;
width: 36px;
}
input[type="checkbox"]:checked + label:before {
border: 1px solid #d8ced5;
border-radius: 7px;
background: #c6134f;
color: #ffffff;
content: "\2713";
text-align: center;
}
input[type="checkbox"]:checked + label:after {
font-weight: bold;
}
/*#checkbox{*/
/*float: right;*/
/*width: 48px;*/
/*height: 48px;*/
/*background:url(../assets/ic_check_box_outline_blank_black_24dp_2x.png) left top no-repeat;*/
/*}*/
/*#checkbox::selection{*/
/*background:url(../assets/ic_check_box_black_24dp_2x.png) left top no-repeat;*/
/*}*/
#accept {
font-family: Shabnam;
margin-bottom: 10px;
font-size: 22px;
color: #737373;
align-content: center;
padding: 5px;
}
#accept a {
margin-right: 10px;
}
#accept a:link {
color: #3a82a3;
} | 0.296145 | 0.093182 |
@font-face {
font-family: myFirstFont;
src: url('fonts/ostrich-regular.ttf') format('TrueType');
font-family: mySecondFont;
src: url('fonts/CooperHewitt-Light.otf');
}
body{
font-family: myFirstFont;
margin: 0;
padding: 0;
/* background-image: url("../img/diagonal-noise.png");*/
overflow: hidden;
}
div#logoDIV{
display: inline-block;
width: 80%;
height: 100vh;
position: relative;
background-color: #0B0C10;
}
div#logoDIV logo{
display: block;
position: absolute;
}
div #logo{
width: 100%;
height: 100%;
}
div#logoDIV img{
height: auto;
width: 45%;
transform: translate(-50%,-50%);
position: relative;
top: 50%;
left: 50%;
}
.slogan{
width: 100%;
height: 100vh;
position: absolute;
display: inline-block;
top: 0%;
left: 0%;
}
.slogan #parrafo1{
font-family: mySecondFont;
position: relative;
top: 35%;
left: 50px;
font-style: italic;
font-size: 30px;
color: #45A29E;
}
.slogan #parrafo2{
font-family: mySecondFont;
position: absolute;
text-align: center;
bottom: 50%;
right: 50px;
font-style: italic;
font-size: 30px;
color: #45A29E;
}
div#sideBarDIV{
display: inline-block;
position: absolute;
top: 0px;
right: 0px;
margin: 0px;
height: 100vh;
width:20%;
/* background: linear-gradient(360deg, turquoise, lightgreen);*/
background-color: #1F2833;
overflow-x: hidden;
}
div #formDIV{
/* transform: translate(-50%,-50%);*/
position: relative;
top: 0%;
right: 0%;
width: 100%;
}
.form-grouprow{
position: relative;
display: block;
left: 14%;
}
.form-grouprow div input{
border-radius: 10px;
width: 200px;
height: 22px;
margin-bottom: 15px;
padding: 1px;
}
#btn-primary{
display: inline-block;
padding: 15px 25px;
font-size: 24px;
transform: translate(50%,50%);
top: 50%;
left: 50%;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #9444fb;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
#btn-primary:hover {
background-color: #66FCF1;
color:#22145f;
}
#btn-primary2{
display: inline-block;
padding: 15px 25px;
font-size: 24px;
transform: translate(50%,50%);
top: 50%;
left: 50%;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #9444fb;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
#btn-primary2:hover {
background-color: #66FCF1;
color:#22145f;
}
.card-header{
font-family: mySecondFont;
margin-bottom: 10px;
margin-top: 30px;
position: relative;
display: block;
left: 15%;
color: #66FCF1;
}
form .INPtext{
position: relative;
width: 250px;
height: 30px;
background-color: white;
color: gray;
margin-bottom: 25px;
border-radius: 9px;
left: 9px;
padding-left: 5px;
}
h6{
position: relative;
font-style: oblique;
font-size: 20px;
color: #9444fb;
transform: translate(50px,0px);
margin-bottom: 50px;
}
p{
font-family: mySecondFont;
position: relative;
color:white;
margin-top:90px;
left: 30%;
}
a{
position: relative;
display: block;
left: 42%;
}
#hidden{
} | public/css/index.css | @font-face {
font-family: myFirstFont;
src: url('fonts/ostrich-regular.ttf') format('TrueType');
font-family: mySecondFont;
src: url('fonts/CooperHewitt-Light.otf');
}
body{
font-family: myFirstFont;
margin: 0;
padding: 0;
/* background-image: url("../img/diagonal-noise.png");*/
overflow: hidden;
}
div#logoDIV{
display: inline-block;
width: 80%;
height: 100vh;
position: relative;
background-color: #0B0C10;
}
div#logoDIV logo{
display: block;
position: absolute;
}
div #logo{
width: 100%;
height: 100%;
}
div#logoDIV img{
height: auto;
width: 45%;
transform: translate(-50%,-50%);
position: relative;
top: 50%;
left: 50%;
}
.slogan{
width: 100%;
height: 100vh;
position: absolute;
display: inline-block;
top: 0%;
left: 0%;
}
.slogan #parrafo1{
font-family: mySecondFont;
position: relative;
top: 35%;
left: 50px;
font-style: italic;
font-size: 30px;
color: #45A29E;
}
.slogan #parrafo2{
font-family: mySecondFont;
position: absolute;
text-align: center;
bottom: 50%;
right: 50px;
font-style: italic;
font-size: 30px;
color: #45A29E;
}
div#sideBarDIV{
display: inline-block;
position: absolute;
top: 0px;
right: 0px;
margin: 0px;
height: 100vh;
width:20%;
/* background: linear-gradient(360deg, turquoise, lightgreen);*/
background-color: #1F2833;
overflow-x: hidden;
}
div #formDIV{
/* transform: translate(-50%,-50%);*/
position: relative;
top: 0%;
right: 0%;
width: 100%;
}
.form-grouprow{
position: relative;
display: block;
left: 14%;
}
.form-grouprow div input{
border-radius: 10px;
width: 200px;
height: 22px;
margin-bottom: 15px;
padding: 1px;
}
#btn-primary{
display: inline-block;
padding: 15px 25px;
font-size: 24px;
transform: translate(50%,50%);
top: 50%;
left: 50%;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #9444fb;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
#btn-primary:hover {
background-color: #66FCF1;
color:#22145f;
}
#btn-primary2{
display: inline-block;
padding: 15px 25px;
font-size: 24px;
transform: translate(50%,50%);
top: 50%;
left: 50%;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #9444fb;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
#btn-primary2:hover {
background-color: #66FCF1;
color:#22145f;
}
.card-header{
font-family: mySecondFont;
margin-bottom: 10px;
margin-top: 30px;
position: relative;
display: block;
left: 15%;
color: #66FCF1;
}
form .INPtext{
position: relative;
width: 250px;
height: 30px;
background-color: white;
color: gray;
margin-bottom: 25px;
border-radius: 9px;
left: 9px;
padding-left: 5px;
}
h6{
position: relative;
font-style: oblique;
font-size: 20px;
color: #9444fb;
transform: translate(50px,0px);
margin-bottom: 50px;
}
p{
font-family: mySecondFont;
position: relative;
color:white;
margin-top:90px;
left: 30%;
}
a{
position: relative;
display: block;
left: 42%;
}
#hidden{
} | 0.355104 | 0.074534 |
body {
background: url('../img/body-content-bg.jpg') repeat-y scroll 50% 0px transparent;
padding: 9px 0px;
position: relative;
font: 13px/1.5 Arial,sans-serif;
padding: 0px;
border: 0px none;
outline: 0px none;
}
#tournament-div *, #tournament-div *:before, #tournament-div *:after {
box-sizing: initial;
font:14px Arial;
}
#tournament-div .empty {background-color: #FCC;}
#tournament-div .invalid {background-color: #FC6;}
.table-history tr td{
padding-top: 0px;
padding-bottom: 0px;
}
.users-table tbody tr:hover{
background-color: #F1DEB3;
}
.history-gametype{
text-align: center;
padding-bottom: 30px;
font-weight: bold;
}
.form-error{
color: #f00;
}
.user-pseudo{
color: #FCD144;
text-shadow: 0px 0px 10px #000, 0px 0px 10px #000;
font-size: 20px;
font-family: "Bliz Quadrata",Times New Roman,Serif;
}a .user-pseudo:hover{
color: #fff;
}
header .rank-and-stars, header .rank-and-stars:hover{
font-size: 15px;
color: #FCD144;
cursor: default;
}
.user-stars{
/*couleur des étoiles dans lea topbar*/
color:#FF0;
}
/* user/all */
.user-all-battletag{
color:#004E8A;
}
.user-all-number{
color:#9BACBD;
font-style: italic;
font-size: 10px;
}
.user-all-pseudo{
color: #FCD144;
text-shadow: 0px 0px 2px #000, 0px 0px 2px #000;
font-size: 16px;
}
.user-all-rank{
color: #fff;
text-shadow: 0px 0px 5px #000, 0px 0px 5px #000;
font-size: 14px;
}
.user-all-date{
font-size: 12px;
}
header{
background: url('../img/logo.png') no-repeat scroll center top transparent;
margin: 0px auto;
padding-top: 180px;
width: 1035px;
text-align: center;
position: relative;
}
header h2 {
/*color: #EEDFBC;*/
color:#FFF;
font: 18px/60px "Open Sans Semibold",Arial;
text-shadow: 0px 0px 15px #000, 0px 0px 15px #000;
}
.navigation {
background: url('../img/nav-bg.png') no-repeat scroll center top transparent;
margin-left: -580px;
width: 1160px;
height: 98px;
position: absolute;
bottom: 35px;
left: 50%;
}
.menu {
margin: 32px 98px 0px;
background: url('../img/nav-button-bg.jpg') no-repeat scroll 37px top transparent;
height: 65px;
overflow: auto;
width: 965px;
z-index: 3;
position: relative;
}
header ol,header ul {
list-style-type: none;
}
.tips{
padding-top: 10px;
font: 13px/1.5 Arial,sans-serif;
}
.tips li{
list-style-image: url('../img/bullet.png');
}
.navigation ul {padding-left:40px; }
.menu li a:hover { color: #ffeba5; }
.menu li a:active { color: #ffffff; }
.menu li.menu-1 a:hover { background-position: -3px -66px; }
.menu li.menu-2 a:hover { background-position: -163px -66px; }
.menu li.menu-3 a:hover { background-position: -323px -66px; }
.menu li.menu-4 a:hover { background-position: -483px -66px; }
.menu li.menu-5 a:hover { background-position: -643px -66px; }
.menu li.menu-1 a.menu-active { background-position: 0 -132px; }
.menu li.menu-2 a.menu-active { background-position: -163px -132px; }
.menu li.menu-3 a.menu-active { background-position: -323px -132px; }
.menu li.menu-4 a.menu-active { background-position: -483px -132px; }
.menu li.menu-5 a.menu-active { background-position: -643px -132px; }
.menu a.menu-disabled { color:#4C160A; }
.menu li a:hover, .menu li a.menu-active {
background: url('../img/nav-button-bg.jpg') repeat scroll 0% 0% transparent;
color: #FFF;
text-decoration: none;
}
.menu li a {
color: #FCD144;
text-shadow: 0px 0px 10px #000, 0px 0px 10px #000;
display: block;
line-height: 60px;
font-weight: bold;
font-size: 20px;
font-family: "Bliz Quadrata",Times New Roman,Serif;
}
a {
color: #E22C14;
outline: 0px none;
text-decoration: none;
}
a:hover{
color: #000;
}
.menu li {
text-align: center;
width: 160px;
float: left;
}
.menu li a:hover, .menu li a.menu-active {
background: url('../img/nav-button-bg.jpg') repeat scroll 0% 0% transparent;
color: #FFF;
text-decoration: none;
}
.body{
/*background-color: #FFF;*/
/* border: 1px solid #261308;*/
margin-left: auto;
margin-right: auto;
width: 1050px;
font: bold 24px/36px "Palatino Linotype","Times",serif;
position: relative;
font-size: 16px;
font-family: "Open Sans Semibold",sans-serif;
font-weight: 600;
}
.body h3 {
background: none repeat scroll 0% 0% rgba(217, 189, 143, 0.7);
box-sizing: border-box;
color: #000;
font-family: "Bliz Quadrata","Times New Roman",Times,serif;
font-size: 27px;
line-height: 1.2;
margin: 15px 0px 0px;
padding-left: 30px;
}
h4 {
background: none repeat scroll 0% 0% #E8CFA2;
box-sizing: border-box;
color: #000;
font-family: "Bliz Quadrata","Times New Roman",Times,serif;
font-size: 22px;
line-height: 1.2;
margin: 15px 0px 10px;
padding-left: 15px;
}
.rating {
unicode-bidi: bidi-override;
direction: rtl;
}
.rating > span {
display: inline-block;
position: relative;
width: 1.1em;
}
.rating > span:hover:before,
.rating > span:hover ~ span:before {
content: "\2605";
position: absolute;
}
.foot {
background: url('../img/footer-bg-modif.jpg') no-repeat scroll 50% 0px transparent;
min-height: 277px;
position: relative;
}
.foot-text{
margin: 0px auto;
/*width: 1160px;*/
position: relative;
top: 79px;
font: 10px "Lucida Sans Unicode",Arial,Helvetica,sans-serif;
color: #4A3C2C;
/*border-top: 1px solid #261308;*/
text-align: center;
clear: both;
padding: 10px 0px;
}
.foot-text p{font-size: 10px;}
.maarti-footer{
color : #FFF;
text-transform: uppercase;
margin-top: 10px;
margin-bottom: 10px;
} | assets/css/style.css | body {
background: url('../img/body-content-bg.jpg') repeat-y scroll 50% 0px transparent;
padding: 9px 0px;
position: relative;
font: 13px/1.5 Arial,sans-serif;
padding: 0px;
border: 0px none;
outline: 0px none;
}
#tournament-div *, #tournament-div *:before, #tournament-div *:after {
box-sizing: initial;
font:14px Arial;
}
#tournament-div .empty {background-color: #FCC;}
#tournament-div .invalid {background-color: #FC6;}
.table-history tr td{
padding-top: 0px;
padding-bottom: 0px;
}
.users-table tbody tr:hover{
background-color: #F1DEB3;
}
.history-gametype{
text-align: center;
padding-bottom: 30px;
font-weight: bold;
}
.form-error{
color: #f00;
}
.user-pseudo{
color: #FCD144;
text-shadow: 0px 0px 10px #000, 0px 0px 10px #000;
font-size: 20px;
font-family: "Bliz Quadrata",Times New Roman,Serif;
}a .user-pseudo:hover{
color: #fff;
}
header .rank-and-stars, header .rank-and-stars:hover{
font-size: 15px;
color: #FCD144;
cursor: default;
}
.user-stars{
/*couleur des étoiles dans lea topbar*/
color:#FF0;
}
/* user/all */
.user-all-battletag{
color:#004E8A;
}
.user-all-number{
color:#9BACBD;
font-style: italic;
font-size: 10px;
}
.user-all-pseudo{
color: #FCD144;
text-shadow: 0px 0px 2px #000, 0px 0px 2px #000;
font-size: 16px;
}
.user-all-rank{
color: #fff;
text-shadow: 0px 0px 5px #000, 0px 0px 5px #000;
font-size: 14px;
}
.user-all-date{
font-size: 12px;
}
header{
background: url('../img/logo.png') no-repeat scroll center top transparent;
margin: 0px auto;
padding-top: 180px;
width: 1035px;
text-align: center;
position: relative;
}
header h2 {
/*color: #EEDFBC;*/
color:#FFF;
font: 18px/60px "Open Sans Semibold",Arial;
text-shadow: 0px 0px 15px #000, 0px 0px 15px #000;
}
.navigation {
background: url('../img/nav-bg.png') no-repeat scroll center top transparent;
margin-left: -580px;
width: 1160px;
height: 98px;
position: absolute;
bottom: 35px;
left: 50%;
}
.menu {
margin: 32px 98px 0px;
background: url('../img/nav-button-bg.jpg') no-repeat scroll 37px top transparent;
height: 65px;
overflow: auto;
width: 965px;
z-index: 3;
position: relative;
}
header ol,header ul {
list-style-type: none;
}
.tips{
padding-top: 10px;
font: 13px/1.5 Arial,sans-serif;
}
.tips li{
list-style-image: url('../img/bullet.png');
}
.navigation ul {padding-left:40px; }
.menu li a:hover { color: #ffeba5; }
.menu li a:active { color: #ffffff; }
.menu li.menu-1 a:hover { background-position: -3px -66px; }
.menu li.menu-2 a:hover { background-position: -163px -66px; }
.menu li.menu-3 a:hover { background-position: -323px -66px; }
.menu li.menu-4 a:hover { background-position: -483px -66px; }
.menu li.menu-5 a:hover { background-position: -643px -66px; }
.menu li.menu-1 a.menu-active { background-position: 0 -132px; }
.menu li.menu-2 a.menu-active { background-position: -163px -132px; }
.menu li.menu-3 a.menu-active { background-position: -323px -132px; }
.menu li.menu-4 a.menu-active { background-position: -483px -132px; }
.menu li.menu-5 a.menu-active { background-position: -643px -132px; }
.menu a.menu-disabled { color:#4C160A; }
.menu li a:hover, .menu li a.menu-active {
background: url('../img/nav-button-bg.jpg') repeat scroll 0% 0% transparent;
color: #FFF;
text-decoration: none;
}
.menu li a {
color: #FCD144;
text-shadow: 0px 0px 10px #000, 0px 0px 10px #000;
display: block;
line-height: 60px;
font-weight: bold;
font-size: 20px;
font-family: "Bliz Quadrata",Times New Roman,Serif;
}
a {
color: #E22C14;
outline: 0px none;
text-decoration: none;
}
a:hover{
color: #000;
}
.menu li {
text-align: center;
width: 160px;
float: left;
}
.menu li a:hover, .menu li a.menu-active {
background: url('../img/nav-button-bg.jpg') repeat scroll 0% 0% transparent;
color: #FFF;
text-decoration: none;
}
.body{
/*background-color: #FFF;*/
/* border: 1px solid #261308;*/
margin-left: auto;
margin-right: auto;
width: 1050px;
font: bold 24px/36px "Palatino Linotype","Times",serif;
position: relative;
font-size: 16px;
font-family: "Open Sans Semibold",sans-serif;
font-weight: 600;
}
.body h3 {
background: none repeat scroll 0% 0% rgba(217, 189, 143, 0.7);
box-sizing: border-box;
color: #000;
font-family: "Bliz Quadrata","Times New Roman",Times,serif;
font-size: 27px;
line-height: 1.2;
margin: 15px 0px 0px;
padding-left: 30px;
}
h4 {
background: none repeat scroll 0% 0% #E8CFA2;
box-sizing: border-box;
color: #000;
font-family: "Bliz Quadrata","Times New Roman",Times,serif;
font-size: 22px;
line-height: 1.2;
margin: 15px 0px 10px;
padding-left: 15px;
}
.rating {
unicode-bidi: bidi-override;
direction: rtl;
}
.rating > span {
display: inline-block;
position: relative;
width: 1.1em;
}
.rating > span:hover:before,
.rating > span:hover ~ span:before {
content: "\2605";
position: absolute;
}
.foot {
background: url('../img/footer-bg-modif.jpg') no-repeat scroll 50% 0px transparent;
min-height: 277px;
position: relative;
}
.foot-text{
margin: 0px auto;
/*width: 1160px;*/
position: relative;
top: 79px;
font: 10px "Lucida Sans Unicode",Arial,Helvetica,sans-serif;
color: #4A3C2C;
/*border-top: 1px solid #261308;*/
text-align: center;
clear: both;
padding: 10px 0px;
}
.foot-text p{font-size: 10px;}
.maarti-footer{
color : #FFF;
text-transform: uppercase;
margin-top: 10px;
margin-bottom: 10px;
} | 0.329392 | 0.082846 |
#user-manage-table {
width: 1020px;
min-width: 1020px;
}
#user-manage-table th:nth-child(1),
#user-manage-table td:nth-child(1),
#user-manage-table th:nth-child(8),
#user-manage-table td:nth-child(8),
#user-manage-table th:nth-child(9),
#user-manage-table td:nth-child(9),
#user-manage-table th:nth-child(11),
#user-manage-table td:nth-child(11) {
width: 50px;
min-width: 50px;
}
#user-manage-table th:nth-child(2),
#user-manage-table td:nth-child(2) {
width: 80px;
min-width: 80px;
}
#user-manage-table th:nth-child(3),
#user-manage-table td:nth-child(3),
#user-manage-table th:nth-child(4),
#user-manage-table td:nth-child(4),
#user-manage-table th:nth-child(5),
#user-manage-table td:nth-child(5) {
width: 100px;
min-width: 100px;
}
#user-manage-table th:nth-child(6),
#user-manage-table td:nth-child(6) {
width: 120px;
min-width: 120px;
}
#user-manage-table th:nth-child(7),
#user-manage-table td:nth-child(7) {
width: 200px;
min-width: 200px;
}
#user-manage-table th:nth-child(10),
#user-manage-table td:nth-child(10) {
width: 100px;
min-width: 100px;
}
/* #################### 组别表尺寸 #################### */
#role-manage-table {
width: 1110px;
min-width: 1110px;
}
#role-manage-table th,
#role-manage-table td {
width: 150px;
min-width: 150px;
}
#role-manage-table th:nth-child(1),
#role-manage-table td:nth-child(1),
#role-manage-table th:nth-child(6),
#role-manage-table td:nth-child(6),
#role-manage-table th:nth-child(7),
#role-manage-table td:nth-child(7) {
width: 80px;
min-width: 80px;
}
#role-manage-table th:nth-child(3),
#role-manage-table td:nth-child(3) {
width: 400px;
min-width: 400px;
}
tr td:nth-child(1) input {
width: 50px;
}
tr td:nth-child(3) input {
width: 380px;
}
/* #################### 权限表尺寸 #################### */
#permission-manage-table {
width: 1120px;
min-width: 1120px;
}
#permission-manage-table th:nth-child(1),
#permission-manage-table td:nth-child(1) {
width: 50px;
min-width: 50px;
}
#permission-manage-table th:nth-child(2),
#permission-manage-table td:nth-child(2) {
width: 80px;
min-width: 80px;
}
#permission-manage-table th:nth-child(3),
#permission-manage-table td:nth-child(3),
#permission-manage-table th:nth-child(4),
#permission-manage-table td:nth-child(4),
#permission-manage-table th:nth-child(5),
#permission-manage-table td:nth-child(5),
#permission-manage-table th:nth-child(6),
#permission-manage-table td:nth-child(6) {
width: 100px;
min-width: 100px;
}
#permission-manage-table th:nth-child(7),
#permission-manage-table td:nth-child(7) {
width: 120px;
min-width: 120px;
}
#permission-manage-table th:nth-child(8),
#permission-manage-table td:nth-child(8),
#permission-manage-table th:nth-child(9),
#permission-manage-table td:nth-child(9),
#permission-manage-table th:nth-child(10),
#permission-manage-table td:nth-child(10) {
width: 150px;
min-width: 150px;
}
/* #################### 项目表尺寸 #################### */
#project-manage-table {
width: 1110px;
min-width: 1110px;
}
#project-manage-table th,
#project-manage-table td {
width: 150px;
min-width: 150px;
}
#project-manage-table th:nth-child(1),
#project-manage-table td:nth-child(1) {
width: 50px;
min-width: 50px;
display: none;
}
#project-manage-table th:nth-child(2),
#project-manage-table td:nth-child(2),
#project-manage-table th:nth-child(3),
#project-manage-table td:nth-child(3) {
width: 200px;
min-width: 200px;
}
#project-manage-table th:nth-child(5),
#project-manage-table td:nth-child(5),
#project-manage-table th:nth-child(7),
#project-manage-table td:nth-child(7) {
width: 60px;
min-width: 60px;
}
#project-manage-table th:nth-child(4),
#project-manage-table td:nth-child(4) {
width: 450px;
min-width: 450px;
}
#project-manage-table th:nth-child(6),
#project-manage-table td:nth-child(6) {
width: 120px;
min-width: 120px;
}
#project-manage-table input {
width: 100px;
} | app/static/css/admin/admin_table_size.css |
#user-manage-table {
width: 1020px;
min-width: 1020px;
}
#user-manage-table th:nth-child(1),
#user-manage-table td:nth-child(1),
#user-manage-table th:nth-child(8),
#user-manage-table td:nth-child(8),
#user-manage-table th:nth-child(9),
#user-manage-table td:nth-child(9),
#user-manage-table th:nth-child(11),
#user-manage-table td:nth-child(11) {
width: 50px;
min-width: 50px;
}
#user-manage-table th:nth-child(2),
#user-manage-table td:nth-child(2) {
width: 80px;
min-width: 80px;
}
#user-manage-table th:nth-child(3),
#user-manage-table td:nth-child(3),
#user-manage-table th:nth-child(4),
#user-manage-table td:nth-child(4),
#user-manage-table th:nth-child(5),
#user-manage-table td:nth-child(5) {
width: 100px;
min-width: 100px;
}
#user-manage-table th:nth-child(6),
#user-manage-table td:nth-child(6) {
width: 120px;
min-width: 120px;
}
#user-manage-table th:nth-child(7),
#user-manage-table td:nth-child(7) {
width: 200px;
min-width: 200px;
}
#user-manage-table th:nth-child(10),
#user-manage-table td:nth-child(10) {
width: 100px;
min-width: 100px;
}
/* #################### 组别表尺寸 #################### */
#role-manage-table {
width: 1110px;
min-width: 1110px;
}
#role-manage-table th,
#role-manage-table td {
width: 150px;
min-width: 150px;
}
#role-manage-table th:nth-child(1),
#role-manage-table td:nth-child(1),
#role-manage-table th:nth-child(6),
#role-manage-table td:nth-child(6),
#role-manage-table th:nth-child(7),
#role-manage-table td:nth-child(7) {
width: 80px;
min-width: 80px;
}
#role-manage-table th:nth-child(3),
#role-manage-table td:nth-child(3) {
width: 400px;
min-width: 400px;
}
tr td:nth-child(1) input {
width: 50px;
}
tr td:nth-child(3) input {
width: 380px;
}
/* #################### 权限表尺寸 #################### */
#permission-manage-table {
width: 1120px;
min-width: 1120px;
}
#permission-manage-table th:nth-child(1),
#permission-manage-table td:nth-child(1) {
width: 50px;
min-width: 50px;
}
#permission-manage-table th:nth-child(2),
#permission-manage-table td:nth-child(2) {
width: 80px;
min-width: 80px;
}
#permission-manage-table th:nth-child(3),
#permission-manage-table td:nth-child(3),
#permission-manage-table th:nth-child(4),
#permission-manage-table td:nth-child(4),
#permission-manage-table th:nth-child(5),
#permission-manage-table td:nth-child(5),
#permission-manage-table th:nth-child(6),
#permission-manage-table td:nth-child(6) {
width: 100px;
min-width: 100px;
}
#permission-manage-table th:nth-child(7),
#permission-manage-table td:nth-child(7) {
width: 120px;
min-width: 120px;
}
#permission-manage-table th:nth-child(8),
#permission-manage-table td:nth-child(8),
#permission-manage-table th:nth-child(9),
#permission-manage-table td:nth-child(9),
#permission-manage-table th:nth-child(10),
#permission-manage-table td:nth-child(10) {
width: 150px;
min-width: 150px;
}
/* #################### 项目表尺寸 #################### */
#project-manage-table {
width: 1110px;
min-width: 1110px;
}
#project-manage-table th,
#project-manage-table td {
width: 150px;
min-width: 150px;
}
#project-manage-table th:nth-child(1),
#project-manage-table td:nth-child(1) {
width: 50px;
min-width: 50px;
display: none;
}
#project-manage-table th:nth-child(2),
#project-manage-table td:nth-child(2),
#project-manage-table th:nth-child(3),
#project-manage-table td:nth-child(3) {
width: 200px;
min-width: 200px;
}
#project-manage-table th:nth-child(5),
#project-manage-table td:nth-child(5),
#project-manage-table th:nth-child(7),
#project-manage-table td:nth-child(7) {
width: 60px;
min-width: 60px;
}
#project-manage-table th:nth-child(4),
#project-manage-table td:nth-child(4) {
width: 450px;
min-width: 450px;
}
#project-manage-table th:nth-child(6),
#project-manage-table td:nth-child(6) {
width: 120px;
min-width: 120px;
}
#project-manage-table input {
width: 100px;
} | 0.166167 | 0.065038 |
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
#user-top-bar a i.mdi-navigation-arrow-drop-down{
line-height: inherit;
}
main{
background-image:url('../img/lightpaperfibers_@2X.png');
}
.play .light-blue.lighten-1 {
height: 45px;
line-height: 45px;
transition: all 2s;
}
.play footer.page-footer .footer-copyright {
height: 32px;
line-height: 32px;
transition: all 2s;
}
.play #circle image{
height: 35px;
transition: height 2s;
}
.greeting{
-webkit-filter: blur(0px);
transition: -webkit-filter 2s;
}
.play .greeting{
-webkit-filter: blur(150px);
}
.new{
z-index:10;
}
.flip {
-webkit-perspective: 800;
height: 50px;
position: relative;
margin: 5px;
}
.flip .cardx.flipped {
-webkit-transform: rotatex(-180deg);
}
.flip .cardx {
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
-webkit-transition: 1s;
overflow:visible;
}
.flip .cardx .face {
width: 100%;
height: 100%;
position: absolute;
-webkit-backface-visibility: hidden;
z-index: 2;
}
.flip .cardx .front {
font-size: 2em;
text-align: center;
position: absolute;
z-index: 1;
background: black;
color: white;
cursor: pointer;
}
.flip .cardx .back {
-webkit-transform: rotatex(-180deg);
background: white;
color: black;
cursor: pointer;
box-shadow: 0 0 2px black;
}
@media only screen and (min-width : 601px) {
.play nav, .play nav .nav-wrapper i, .play nav a.button-collapse, .play nav a.button-collapse i {
line-height: 46px;
}
}
/* spin */
#stage {
width: 100%;
height: 400px;
-webkit-perspective: 800;
-webkit-transform-style: preserve-3d;
}
.ring {
width: 100%;
-webkit-transform-style: preserve-3d;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
.poster {
position: absolute;
width: 198px;
height: 50px;
}
#ring-1 {
margin-top:200px;
-webkit-animation-name: x-spin;
-webkit-animation-duration: 20s;
}
@-webkit-keyframes x-spin {
0% { -webkit-transform: rotateX(0deg); }
50% { -webkit-transform: rotateX(180deg); }
100% { -webkit-transform: rotateX(360deg); }
}
#rotate {
margin: 50px;
height: 400px;
-webkit-transform-style: preserve-3d;
}
.over{
cursor:move;
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
z-index:2;
}
.infoLayer{
position: fixed;
background-color: rgba(202, 214, 196, 0.8);
z-index: 100;
right: 0;
} | css/main.css | body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
#user-top-bar a i.mdi-navigation-arrow-drop-down{
line-height: inherit;
}
main{
background-image:url('../img/lightpaperfibers_@2X.png');
}
.play .light-blue.lighten-1 {
height: 45px;
line-height: 45px;
transition: all 2s;
}
.play footer.page-footer .footer-copyright {
height: 32px;
line-height: 32px;
transition: all 2s;
}
.play #circle image{
height: 35px;
transition: height 2s;
}
.greeting{
-webkit-filter: blur(0px);
transition: -webkit-filter 2s;
}
.play .greeting{
-webkit-filter: blur(150px);
}
.new{
z-index:10;
}
.flip {
-webkit-perspective: 800;
height: 50px;
position: relative;
margin: 5px;
}
.flip .cardx.flipped {
-webkit-transform: rotatex(-180deg);
}
.flip .cardx {
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
-webkit-transition: 1s;
overflow:visible;
}
.flip .cardx .face {
width: 100%;
height: 100%;
position: absolute;
-webkit-backface-visibility: hidden;
z-index: 2;
}
.flip .cardx .front {
font-size: 2em;
text-align: center;
position: absolute;
z-index: 1;
background: black;
color: white;
cursor: pointer;
}
.flip .cardx .back {
-webkit-transform: rotatex(-180deg);
background: white;
color: black;
cursor: pointer;
box-shadow: 0 0 2px black;
}
@media only screen and (min-width : 601px) {
.play nav, .play nav .nav-wrapper i, .play nav a.button-collapse, .play nav a.button-collapse i {
line-height: 46px;
}
}
/* spin */
#stage {
width: 100%;
height: 400px;
-webkit-perspective: 800;
-webkit-transform-style: preserve-3d;
}
.ring {
width: 100%;
-webkit-transform-style: preserve-3d;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
.poster {
position: absolute;
width: 198px;
height: 50px;
}
#ring-1 {
margin-top:200px;
-webkit-animation-name: x-spin;
-webkit-animation-duration: 20s;
}
@-webkit-keyframes x-spin {
0% { -webkit-transform: rotateX(0deg); }
50% { -webkit-transform: rotateX(180deg); }
100% { -webkit-transform: rotateX(360deg); }
}
#rotate {
margin: 50px;
height: 400px;
-webkit-transform-style: preserve-3d;
}
.over{
cursor:move;
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
z-index:2;
}
.infoLayer{
position: fixed;
background-color: rgba(202, 214, 196, 0.8);
z-index: 100;
right: 0;
} | 0.415373 | 0.060696 |
.SkillCard-main{
position: relative;
background-color: rgb(255, 255, 255);
/* width: 25vmin;
height: 30vmin; */
font-size: 1.7vmin;
}
.SkillCard-top{
position: absolute;
background-color: rgb(156, 155, 155);
height: 100%;
width: 100%;
clip-path: polygon(0 0, 100% 0, 100% 5%, 60% 5%, 48% 10%, 0 10%);
font-weight: bold;
padding-left: 1%;
box-sizing: border-box;
}
.SkillCard-pic{
margin-top: 5%;
width: 100%;
height: 70%;
object-fit: cover;
}
.SkillCard-bottom{
position: absolute;
bottom:0;
width: 100%;
height:40%
}
.SkillCard-bottom-tag{
clip-path: polygon(63% 0, 100% 0, 100% 100%, 50% 100%);
left: 0;
background-color: rgba(255, 255, 255, 0.7);
height: 16%;
text-align: end;
}
.SkillCard-bottom-description{
background-color: rgba(255, 255, 255, 0.7);
height: 44%;
padding-left: 1%;
padding-right: 1%;
box-sizing: border-box;
font-size: 85%;
}
.SkillCard-bottom-progression{
background-color: rgba(255, 255, 255, 0.7);
height: 20%;
}
.SkillCard-bottom-footer{
background-color: rgb(156, 155, 155);
height: 20%;
font-size: 70%;
font-style: italic;
}
.SkillCard{
margin: auto;
transition: 1s;
width: 30vmin;
height: 40vmin;
background-color: transparent;
perspective: 1000px; /* Remove this if you don't want the 3D effect */
}
.SkillCard-wrap{
margin: 1vmin;
position:relative;
transition: 1s;
width: 30vmin;
height: 40vmin;
user-select: none;
opacity: 0;
}
.SkillCard-show{
opacity: 1;
/* animation-name: SkillCard-show-anime;
animation-duration: 0.7s;
animation-fill-mode: backwards; */
}
/* @keyframes SkillCard-show-anime {
from {top:-30vh;transform: rotate(0deg);pointer-events: none;}
to {top:0vh;transform: rotate(360deg);pointer-events: none;}
} */
.SkillCard-inner {
/* position: relative; */
width: 100%;
height: 100%;
/* text-align: center; */
transition: transform 0.8s;
transform-style: preserve-3d;
box-shadow: 0px 0px 0.6vmin white;
}
.SkillCard:hover .SkillCard-inner {
transform: rotateY(360deg);
cursor: pointer;
}
.SkillCard-main, .SkillCard-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
}
.SkillCard-back {
background-color: rgba(30, 143, 255, 0.281);
background: url(cardback.png);
background-size: 100% 100%;
color: white;
transform: rotateY(180deg);
}
.SkillCard-projects{
z-index: 1;
position:fixed;
top:0;
background-color: rgba(30, 143, 255,0.7);
height: 100vh;
width: 100vw;
display: none;
}.SkillCard-projects-show{
display:block;
}
.SkillCard-projects-card{
z-index: 2;
position: fixed;
top:3vmin;
right:0;
left:0;
top:100;
transition: 1s;
animation-name: SkillCard-projects-card;
animation-duration: 0.7s;
animation-fill-mode: backwards;
}
@keyframes SkillCard-projects-card {
from {width: 0vmin;height: 0vmin; opacity: 0;pointer-events: none;}
to {width: 30vmin;height: 40vmin; opacity: 1; pointer-events: none;}
}
.SkillCard-projects-wrapper{
background-color: rgba(255, 255, 240, 0.637);
border-radius: 3vmin;
width: 100vmin;
height: 45%;
margin:auto;
overflow:auto;
overflow-x:hidden;
padding: 1vmin;
animation-name: SkillCard-projects-wrapper;
animation-duration: 0.5s;
animation-fill-mode: backwards;
}
@keyframes SkillCard-projects-wrapper {
from {width: 0vmin; opacity: 0;pointer-events: none;}
to {width: 100vmin; opacity: 1; pointer-events: none;}
} | src/assets/skillcard/SkillCard.css | .SkillCard-main{
position: relative;
background-color: rgb(255, 255, 255);
/* width: 25vmin;
height: 30vmin; */
font-size: 1.7vmin;
}
.SkillCard-top{
position: absolute;
background-color: rgb(156, 155, 155);
height: 100%;
width: 100%;
clip-path: polygon(0 0, 100% 0, 100% 5%, 60% 5%, 48% 10%, 0 10%);
font-weight: bold;
padding-left: 1%;
box-sizing: border-box;
}
.SkillCard-pic{
margin-top: 5%;
width: 100%;
height: 70%;
object-fit: cover;
}
.SkillCard-bottom{
position: absolute;
bottom:0;
width: 100%;
height:40%
}
.SkillCard-bottom-tag{
clip-path: polygon(63% 0, 100% 0, 100% 100%, 50% 100%);
left: 0;
background-color: rgba(255, 255, 255, 0.7);
height: 16%;
text-align: end;
}
.SkillCard-bottom-description{
background-color: rgba(255, 255, 255, 0.7);
height: 44%;
padding-left: 1%;
padding-right: 1%;
box-sizing: border-box;
font-size: 85%;
}
.SkillCard-bottom-progression{
background-color: rgba(255, 255, 255, 0.7);
height: 20%;
}
.SkillCard-bottom-footer{
background-color: rgb(156, 155, 155);
height: 20%;
font-size: 70%;
font-style: italic;
}
.SkillCard{
margin: auto;
transition: 1s;
width: 30vmin;
height: 40vmin;
background-color: transparent;
perspective: 1000px; /* Remove this if you don't want the 3D effect */
}
.SkillCard-wrap{
margin: 1vmin;
position:relative;
transition: 1s;
width: 30vmin;
height: 40vmin;
user-select: none;
opacity: 0;
}
.SkillCard-show{
opacity: 1;
/* animation-name: SkillCard-show-anime;
animation-duration: 0.7s;
animation-fill-mode: backwards; */
}
/* @keyframes SkillCard-show-anime {
from {top:-30vh;transform: rotate(0deg);pointer-events: none;}
to {top:0vh;transform: rotate(360deg);pointer-events: none;}
} */
.SkillCard-inner {
/* position: relative; */
width: 100%;
height: 100%;
/* text-align: center; */
transition: transform 0.8s;
transform-style: preserve-3d;
box-shadow: 0px 0px 0.6vmin white;
}
.SkillCard:hover .SkillCard-inner {
transform: rotateY(360deg);
cursor: pointer;
}
.SkillCard-main, .SkillCard-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
}
.SkillCard-back {
background-color: rgba(30, 143, 255, 0.281);
background: url(cardback.png);
background-size: 100% 100%;
color: white;
transform: rotateY(180deg);
}
.SkillCard-projects{
z-index: 1;
position:fixed;
top:0;
background-color: rgba(30, 143, 255,0.7);
height: 100vh;
width: 100vw;
display: none;
}.SkillCard-projects-show{
display:block;
}
.SkillCard-projects-card{
z-index: 2;
position: fixed;
top:3vmin;
right:0;
left:0;
top:100;
transition: 1s;
animation-name: SkillCard-projects-card;
animation-duration: 0.7s;
animation-fill-mode: backwards;
}
@keyframes SkillCard-projects-card {
from {width: 0vmin;height: 0vmin; opacity: 0;pointer-events: none;}
to {width: 30vmin;height: 40vmin; opacity: 1; pointer-events: none;}
}
.SkillCard-projects-wrapper{
background-color: rgba(255, 255, 240, 0.637);
border-radius: 3vmin;
width: 100vmin;
height: 45%;
margin:auto;
overflow:auto;
overflow-x:hidden;
padding: 1vmin;
animation-name: SkillCard-projects-wrapper;
animation-duration: 0.5s;
animation-fill-mode: backwards;
}
@keyframes SkillCard-projects-wrapper {
from {width: 0vmin; opacity: 0;pointer-events: none;}
to {width: 100vmin; opacity: 1; pointer-events: none;}
} | 0.650134 | 0.078997 |
.dropdown-toggle:after,
.dropdown-toggle.toggled-on:after,
.main-navigation .menu-item-has-children > a:after {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-family: "Genericons";
font-size: 95%;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
speak: none;
text-align: center;
text-decoration: inherit;
text-transform: none;
vertical-align: top;
}
.site-header-menu.toggled-on,
.no-js .site-header-menu {
display: block;
margin-top: 1.5em;
}
.main-navigation {
font-family: inherit;
}
.site-footer .main-navigation {
margin-bottom: 1.75em;
}
.main-navigation ul {
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation li {
position: relative;
}
.main-navigation a {
color: #1a1a1a;
display: block;
line-height: 1.3125;
outline-offset: -1px;
padding: 0.84375em 0;
}
.main-navigation a,
.main-navigation a:hover {
text-decoration: none;
}
.main-navigation a:hover,
.main-navigation a:focus {
color: #000;
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
color: rgba( 0, 0, 0, 0.4 );
}
.main-navigation ul ul {
display: none;
margin-left: 0.875em;
}
.no-js .main-navigation ul ul {
display: block;
}
.main-navigation ul .toggled-on {
display: block;
}
.main-navigation .primary-menu {
border-bottom: 1px solid #efefef;
}
.dropdown-toggle {
background-color: transparent;
border: 0;
border-radius: 0;
color: #1a1a1a;
content: "";
height: 49px;
padding: 0;
position: absolute;
right: 0;
text-transform: none;
top: 0;
width: 48px;
}
.dropdown-toggle:after {
border: 0 solid #efefef;
border-left-width: 1px;
content: "\f431";
left: 1px;
position: relative;
width: 48px;
}
.dropdown-toggle:hover,
.dropdown-toggle:focus {
background-color: transparent;
color: #000;
}
.dropdown-toggle:focus {
outline: thin dotted;
outline-offset: -1px;
}
.dropdown-toggle:focus:after {
border-color: transparent;
}
.dropdown-toggle.toggled-on:after {
content: "\f432";
}
/**
* <= 909px
*/
@media screen and (max-width: 909px) {
.menu-toggle {
margin: 0 auto;
display: block;
font-size: 16px;
font-size: 1.0rem;
padding: 0 .5em;
}
.menu-toggle,
button.menu-toggle:focus,
button.menu-toggle:hover {
background-color: #fff;
border: 1px solid #eaeaea;
border-radius: 4px;
}
.menu-toggle.toggled-on,
button.menu-toggle.toggled-on:focus,
button.menu-toggle.toggled-on:hover {
background-color: #000;
border-color: #000;
}
.menu-toggle:after {
cursor: pointer;
font: normal 26px/1 'Genericons';
line-height: 1.5em;
display: inline-block;
content: "\f419";
color: #000;
}
.menu-toggle.toggled-on:after {
color: #fff;
}
button.dropdown-toggle,
.dark-mode button:hover,
.dark-mode .main-navigation ul ul li {
background-color: transparent;
}
.dark-mode .dropdown-toggle:after {
color: #efefef;
}
.night-btn,
.main-navigation a.search-icon {
padding: 0.6em 0.5em;
}
.main-navigation li {
border-top: 1px solid rgba(222, 222, 222, 0.5);
}
.main-navigation {
border-bottom: 2px solid #000;
}
}
/**
* >= 910px
*/
@media screen and (min-width: 56.875em) {
.main-navigation {
margin: 0;
}
.main-navigation:last-child {
margin-right: -0.75em;
}
.main-navigation .primary-menu,
.main-navigation .primary-menu > li {
border: 0;
}
.main-navigation .primary-menu > li {
float: left;
}
.main-navigation a {
outline-offset: -8px;
padding: 0.65625em 0.75em;
white-space: nowrap;
}
.main-navigation li:hover > a,
.main-navigation li.focus > a {
color: #000;
}
.main-navigation ul ul {
font-size: 16px;
color: #fff;
display: block;
left: -999em;
margin: 0;
position: absolute;
width: 200px;
z-index: 99999;
}
.main-navigation ul ul ul {
top: -1px;
}
.main-navigation ul ul ul:before,
.main-navigation ul ul ul:after {
border: 0;
}
.main-navigation ul ul li {
background-color: #2c2c2c;
}
.main-navigation ul ul a {
white-space: normal;
}
.main-navigation ul ul:before {
content: "";
position: absolute;
width: 0;
height: 0;
border-style: solid;
border-width: 0 8px 6px 8px;
border-color: transparent transparent #2c2c2c transparent;
bottom: 100%;
left: 2em;
}
.main-navigation ul ul:after {
border-color: #fff transparent;
border-width: 0 8px 8px;
right: 11px;
top: -7px;
}
.main-navigation li:hover > ul,
.main-navigation li.focus > ul {
left: 0;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
border-right: 1px solid rgba(255, 255, 255, 0.25);
left: auto;
right: 100%;
top: 0;
}
.menu-toggle,
.dropdown-toggle,
.main-navigation ul .dropdown-toggle.toggled-on {
display: none;
}
.main-navigation ul ul li > a {
color: #f2f2f2;
}
.main-navigation ul ul li:hover > a {
color: #fff;
}
.main-navigation .menu-item-has-children > a {
margin: 0;
padding-right: 1.85em;
}
.main-navigation .menu-item-has-children > a:after {
content: "\f431";
position: absolute;
right: .65rem;
top: 0.8125em;
}
.main-navigation ul ul .menu-item-has-children > a:after {
right: 0.5625em;
top: 0.75em;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.main-navigation ul ul li.current-menu-ancestor > a,
.main-navigation ul ul li.current-menu-item > a {
color: rgba(255, 254, 254, 0.52);
}
} | public/wp-content/themes/writings/assets/css/navigation.css | .dropdown-toggle:after,
.dropdown-toggle.toggled-on:after,
.main-navigation .menu-item-has-children > a:after {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-family: "Genericons";
font-size: 95%;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
speak: none;
text-align: center;
text-decoration: inherit;
text-transform: none;
vertical-align: top;
}
.site-header-menu.toggled-on,
.no-js .site-header-menu {
display: block;
margin-top: 1.5em;
}
.main-navigation {
font-family: inherit;
}
.site-footer .main-navigation {
margin-bottom: 1.75em;
}
.main-navigation ul {
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation li {
position: relative;
}
.main-navigation a {
color: #1a1a1a;
display: block;
line-height: 1.3125;
outline-offset: -1px;
padding: 0.84375em 0;
}
.main-navigation a,
.main-navigation a:hover {
text-decoration: none;
}
.main-navigation a:hover,
.main-navigation a:focus {
color: #000;
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
color: rgba( 0, 0, 0, 0.4 );
}
.main-navigation ul ul {
display: none;
margin-left: 0.875em;
}
.no-js .main-navigation ul ul {
display: block;
}
.main-navigation ul .toggled-on {
display: block;
}
.main-navigation .primary-menu {
border-bottom: 1px solid #efefef;
}
.dropdown-toggle {
background-color: transparent;
border: 0;
border-radius: 0;
color: #1a1a1a;
content: "";
height: 49px;
padding: 0;
position: absolute;
right: 0;
text-transform: none;
top: 0;
width: 48px;
}
.dropdown-toggle:after {
border: 0 solid #efefef;
border-left-width: 1px;
content: "\f431";
left: 1px;
position: relative;
width: 48px;
}
.dropdown-toggle:hover,
.dropdown-toggle:focus {
background-color: transparent;
color: #000;
}
.dropdown-toggle:focus {
outline: thin dotted;
outline-offset: -1px;
}
.dropdown-toggle:focus:after {
border-color: transparent;
}
.dropdown-toggle.toggled-on:after {
content: "\f432";
}
/**
* <= 909px
*/
@media screen and (max-width: 909px) {
.menu-toggle {
margin: 0 auto;
display: block;
font-size: 16px;
font-size: 1.0rem;
padding: 0 .5em;
}
.menu-toggle,
button.menu-toggle:focus,
button.menu-toggle:hover {
background-color: #fff;
border: 1px solid #eaeaea;
border-radius: 4px;
}
.menu-toggle.toggled-on,
button.menu-toggle.toggled-on:focus,
button.menu-toggle.toggled-on:hover {
background-color: #000;
border-color: #000;
}
.menu-toggle:after {
cursor: pointer;
font: normal 26px/1 'Genericons';
line-height: 1.5em;
display: inline-block;
content: "\f419";
color: #000;
}
.menu-toggle.toggled-on:after {
color: #fff;
}
button.dropdown-toggle,
.dark-mode button:hover,
.dark-mode .main-navigation ul ul li {
background-color: transparent;
}
.dark-mode .dropdown-toggle:after {
color: #efefef;
}
.night-btn,
.main-navigation a.search-icon {
padding: 0.6em 0.5em;
}
.main-navigation li {
border-top: 1px solid rgba(222, 222, 222, 0.5);
}
.main-navigation {
border-bottom: 2px solid #000;
}
}
/**
* >= 910px
*/
@media screen and (min-width: 56.875em) {
.main-navigation {
margin: 0;
}
.main-navigation:last-child {
margin-right: -0.75em;
}
.main-navigation .primary-menu,
.main-navigation .primary-menu > li {
border: 0;
}
.main-navigation .primary-menu > li {
float: left;
}
.main-navigation a {
outline-offset: -8px;
padding: 0.65625em 0.75em;
white-space: nowrap;
}
.main-navigation li:hover > a,
.main-navigation li.focus > a {
color: #000;
}
.main-navigation ul ul {
font-size: 16px;
color: #fff;
display: block;
left: -999em;
margin: 0;
position: absolute;
width: 200px;
z-index: 99999;
}
.main-navigation ul ul ul {
top: -1px;
}
.main-navigation ul ul ul:before,
.main-navigation ul ul ul:after {
border: 0;
}
.main-navigation ul ul li {
background-color: #2c2c2c;
}
.main-navigation ul ul a {
white-space: normal;
}
.main-navigation ul ul:before {
content: "";
position: absolute;
width: 0;
height: 0;
border-style: solid;
border-width: 0 8px 6px 8px;
border-color: transparent transparent #2c2c2c transparent;
bottom: 100%;
left: 2em;
}
.main-navigation ul ul:after {
border-color: #fff transparent;
border-width: 0 8px 8px;
right: 11px;
top: -7px;
}
.main-navigation li:hover > ul,
.main-navigation li.focus > ul {
left: 0;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
border-right: 1px solid rgba(255, 255, 255, 0.25);
left: auto;
right: 100%;
top: 0;
}
.menu-toggle,
.dropdown-toggle,
.main-navigation ul .dropdown-toggle.toggled-on {
display: none;
}
.main-navigation ul ul li > a {
color: #f2f2f2;
}
.main-navigation ul ul li:hover > a {
color: #fff;
}
.main-navigation .menu-item-has-children > a {
margin: 0;
padding-right: 1.85em;
}
.main-navigation .menu-item-has-children > a:after {
content: "\f431";
position: absolute;
right: .65rem;
top: 0.8125em;
}
.main-navigation ul ul .menu-item-has-children > a:after {
right: 0.5625em;
top: 0.75em;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.main-navigation ul ul li.current-menu-ancestor > a,
.main-navigation ul ul li.current-menu-item > a {
color: rgba(255, 254, 254, 0.52);
}
} | 0.256646 | 0.039975 |
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
html {
font-size: 62.5%;
}
ul {
list-style: none;
}
a {
text-decoration: none;
}
/* ===== End the fine the structure style ===== */
/* ===== Open navbar-box ===== */
.navbar-box {
background-color: #17bf9c;
}
.block_navbar {
justify-content: space-between;
height: 90px;
align-items: center;
display: flex;
}
/* Open block_navbar--logo */
.block_navbar--logo {
padding-left: 3rem;
}
.block_navbar--logo a {}
.block_navbar--logo a img {
height: 80px;
display: block;
}
/* End block_navbar--logo */
/* Open block_navbar--menu */
.block_navbar--menu {
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.block_navbar--menu .menu_item {
padding: 0 2.5rem;
}
.block_navbar--menu .menu_item .menu_item-link, .menu_item-link {
color: white;
font-size: 14px;
text-transform: uppercase;
padding: 0 8px;
transition: 0.5s;
}
.block_navbar--menu .menu_item:hover .menu_item-link {
color: rgb(221, 190, 190);
}
.block_toggle--menu {
display: none;
}
/* End block_navbar--menu */
/* Open block_navbar--block-btn */
.block_navbar--block-btn {
justify-content: flex-end;
margin: 10px;
display: flex;
}
.block_navbar--block-btn .block-btn_item {
border: 1px solid white;
border-radius: 5px;
margin: 0 5px;
transition: 0.5s;
}
.block_navbar--block-btn .block-btn_item:hover {
background-color: #0a9c7f;
}
.block_navbar--block-btn .block-btn_item .block-btn_item-link {
font-size: 14px;
color: white;
background-color: transparent;
border: none;
padding: 8px 2rem;
}
/* End block_navbar--block-btn */
/* Open login-model + register */
.modal-dialog {
position: absolute;
text-align: center;
top: 20%;
min-width: 70%;
}
.modal-dialog .modal-content {
padding: 5rem 0;
}
.modal-dialog .modal-content .form {
width: 38%;
margin: auto;
}
.modal-dialog .modal-content .form .form-title {
padding-bottom: 15px;
}
.modal-dialog .modal-content .form .form-title h1 {
font-size: 3.5rem;
color: #0cba95;
font-weight: 700;
text-transform: uppercase;
}
.modal-dialog .modal-content .form .form-title p {
color: gray;
font-size: 15px;
}
.modal-dialog .modal-content .form .form-input_item {
justify-content: center;
margin: 5px 0;
}
.modal-dialog .modal-content .form .form-input_item p {
font-size: 13px;
text-align: left;
padding-top: 5px;
font-weight: 600;
}
.modal-dialog .modal-content .form .form-input_item input {
padding: 5px 10px;
font-size: 14px;
outline: none;
background: transparent;
border-radius: 5px;
width: 20rem;
border: 1px solid gray;
}
.modal-dialog .modal-content .form .form-login_text {
font-size: 12px;
padding-top: 10px;
}
.modal-dialog .modal-content .form .form-login_text a {
text-decoration: none;
transition: 0.4s;
}
.form-input_btn--item {
margin: 7px 0;
}
.form-input_btn--item button {
border: transparent;
outline: transparent;
font-size: 18px;
font-weight: 700;
width: 33rem;
height: 4rem;
border-radius: 5px;
position: relative;
}
.form-input_btn--item button i {
position: absolute;
left: 5%;
top: 50%;
transform: translateY(-50%);
}
.form-input_item .forn-input_label {}
.form-input_item .forn-input_label .form-input_label-item {
padding: 0 15px;
}
.form-input_item .forn-input_label .form-input_label-item label {
font-size: 13px;
padding: 5px 5px 0 5px;
}
.form-input_item .forn-input_label .form-input_label-item input {}
/* End login-model + register */
/* ===== End navbar-box ===== */
/* ===== Open title-box ===== */
.title-box {
padding: 10px;
border-bottom: 3px solid #eef0ef;
}
.title-box .block_toggle {
color: #17bf9c;
font-size: 30px;
cursor: pointer;
display: none;
}
.title-box .block_toggle i {}
.title-box .block_title {
justify-content: space-between;
border-bottom: 2px solid #0a9c7f;
}
.title-box .block_title .block_title-item {
text-transform: uppercase;
}
.title-box .block_title .block_title-item .block_title-link {
font-size: 14px;
color: black;
transition: 0.3s;
}
.title-box .block_title .block_title-item:hover .block_title-link {
color: gray;
}
.title-box .block_toggle--title-content {
display: none;
}
/* ===== End title-box ===== */
/* ===== Open blog-box ===== */
.blog-box {}
.block_blog {}
.title-blog {
color: #1ac69e;
font-family: 'Times New Roman', Times, serif;
font-weight: 900;
font-size: 2.5rem;
text-transform: uppercase;
}
/* ----- Open block_blog--content-blog ----- */
.block_blog--content-blog {}
.block_blog--content-blog .block--content-blog {}
/* +++++ Open content-blog--left +++++ */
.content-blog--left {}
/* ..... Open content-blog--left-news ..... */
.content-blog--left-news {
margin-bottom: 15px;
}
/* Open blog_top (news-blog_top + notion-blog_top) */
.blog_top {}
.blog_top a {
padding: 0;
}
.blog_top a .blog_top-img {
width: 100%;
}
.blog_top a .blog_top-img img {
width: 100%;
height: 100%;
display: block;
}
.blog_top a .blog_top-text {
padding: 5px 0;
}
.blog_top a .blog_top-text h2 {
color: #555555;
font-weight: 600;
transition: 0.5s;
}
.blog_top a:hover .blog_top-text h2 {
color: black;
}
/* End blog_top (news-blog_top + notion-blog_top) */
/* Open blog_bottom (news-blog_bottom + notion-blog_bottom) */
.blog_bottom {
padding: 15px 0;
}
.blog_bottom .blog_bottom--item {}
.blog_bottom .blog_bottom--item a {
padding: 0;
overflow: hidden;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-img {
width: 100%;
height: 15rem;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-img img {
width: 100%;
height: 100%;
display: block;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-content {
height: 15rem;
overflow: hidden;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-content h3 {
color: #464646;
padding: 10px 0;
transition: 0.4s;
font-weight: 700;
}
.blog_bottom .blog_bottom--item a:hover .blog_bottom--item-content h3 {
color: black;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-content p {
color: #585858;
font-size: 12px;
font-weight: 600;
transition: 0.4s;
}
.blog_bottom .blog_bottom--item a:hover .blog_bottom--item-content p {
color: black;
}
/* End blog_bottom (news-blog_bottom + notion-blog_bottom) */
/* Open blog_slick (news-blog_slick + notion-blog_slick) */
.blog_slick {
background-color: #eddcd2;
padding: 15px 0;
}
.blog_slick .blog_slick--title {
padding: 0 0 5px 20px;
text-transform: uppercase;
font-weight: 900;
}
.blog_slick .blog_slick--title h1 {
font-family: 'Times New Roman', Times, serif;
font-weight: 900;
color: #474141;
}
.blog_slick .blog_slick--content {
margin: 0 15px;
}
.blog_slick .blog_slick--content .blog_slick--content_item {
width: 20rem;
height: 15rem;
position: relative;
border-radius: 15px;
overflow: hidden;
margin: 0 5px;
}
.blog_slick .blog_slick--content .blog_slick--content_item a {
padding: 0;
}
.blog_slick .blog_slick--content .blog_slick--content_item a .slick--content_item-img {}
.blog_slick .blog_slick--content .blog_slick--content_item a .slick--content_item-img img {
width: 100%;
height: 150px;
display: block;
}
.blog_slick .blog_slick--content .blog_slick--content_item a .slick--content_item-text {
position: absolute;
top: 70%;
left: 0;
padding: 0 15px;
}
.blog_slick .blog_slick--content .blog_slick--content_item a .slick--content_item-text p {
color: white;
font-size: 14px;
line-height: 18px;
transition: 0.3s;
}
.blog_slick .blog_slick--content .blog_slick--content_item a:hover .slick--content_item-text p {
transform: translateY(-20%);
}
.arrow-item {
cursor: pointer;
position: absolute;
top: 50%;
}
.arrow-item_prev {
left: -16px;
}
.arrow-item_next {
right: -16px;
}
/* End blog_slick (news-blog_slick + notion-blog_slick) */
/* ..... End content-blog--left-news ..... */
/* ..... Open content-blog--left-notion ..... */
.content-blog--left-notion {
margin: 20px 0;
}
/* Open notion-blog_center */
.notion-blog_center {}
.notion-blog_center .notion-blog_center--item {}
.notion-blog_center .notion-blog_center--item a {
padding: 0;
}
.notion-blog_center .notion-blog_center--item a .notion-blog_center--item_img {
padding-bottom: 10px;
}
.notion-blog_center .notion-blog_center--item a .notion-blog_center--item_img img {
width: 100%;
height: 100%;
display: block;
}
.notion-blog_center .notion-blog_center--item a .notion-blog_center--item_text {
height: 80px;
overflow: hidden;
}
.notion-blog_center .notion-blog_center--item a .notion-blog_center--item_text h4 {
color: #464646;
transition: 0.3s;
}
.notion-blog_center .notion-blog_center--item a:hover .notion-blog_center--item_text h4 {
color: black;
}
/* Open notion-blog_center */
/* ..... End content-blog--left-notion ..... */
/* +++++ End content-blog--left +++++ */
/* +++++ Open content-blog--right +++++ */
.content-blog--right {}
/* Open content-blog--right_top */
.content-blog--right_top {
border: 1px solid rgb(161, 161, 161);
border-radius: 3px;
}
.content-blog--right_top--title {
background-color: #17bf9c;
}
.content-blog--right_top--title h1 {
color: white;
text-align: center;
padding: 10px 0;
text-transform: uppercase;
}
.content-blog--right_top--block_item {
background-color: #cdcdcd;
margin-top: -5px;
height: 5rem;
align-items: flex-end;
justify-content: space-between;
}
.content-blog--right_top--block_item .block_item-link {
width: 50%;
text-align: center;
}
.content-blog--right_top--block_item .block_item-link .item-link {
border: none;
background-color: transparent;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
outline: transparent;
padding: 8px 4rem;
font-size: 14px;
transition: 0.5s;
}
.content-blog--right_top--block_item .block_item-link button.active {
background-color: white !important;
}
.content-blog--right_top--form-load {
height: 32rem;
}
.content-blog--right_top--form-load .form-load_lease {}
.content-blog--right_top--form-load .form-load_shell {}
.content-blog--right_top--form-load .tabcontent {
display: none;
padding: 2rem;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-item {
padding-bottom: 15px;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-item label {
font-size: 14px;
line-height: 3rem;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-item select {
width: 100%;
height: 3rem;
padding: 5px;
border: 1px solid rgb(161, 161, 161);
font-size: 14px;
outline: transparent;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-btn {
text-align: center;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-btn button {
border: transparent;
background-color: #17bf9c;
padding: 5px 8rem;
color: white;
border-radius: 10px;
font-size: 16px;
outline: transparent;
transition: 0.5s;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-btn button:hover {
background-color: #12977d;
}
/* End content-blog--right_top */
/* Open content-blog--right_center */
.content-blog--right_center {
padding-top: 15px;
}
.content-blog--right_center-item {
padding-bottom: 20px;
}
.content-blog--right_center-item .content-blog--right_center-item--title {}
.content-blog--right_center-item .content-blog--right_center-item--title h1 {}
.content-blog--right_center-item .content-blog--right_center--content {}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item {
overflow: hidden;
}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a {}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a .right_center--content-item_img {}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a .right_center--content-item_img img {
width: 100%;
height: 100%;
display: block;
}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a .right_center--content-item_text {
padding: 10px 0;
}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a .right_center--content-item_text h4 {
color: #464646;
font-size: 15px;
font-weight: 600;
transition: 0.3s;
}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a:hover .right_center--content-item_text h4 {
color: black;
}
.right_center--content-btn {}
.right_center--content-btn a {
color: #33d2e5;
display: block;
font-size: 14px;
transition: 0.3s;
}
.right_center--content-btn a:hover {
color: #157e8a;
}
/* End content-blog--right_center */
/* Open content-blog--right_bottom */
.content-blog--right_bottom {}
.content-blog--right_bottom-item {
border: 1px solid rgb(161, 161, 161);
background-color: #f9dcca;
margin-bottom: 15px;
}
.content-blog--right_bottom-item .right_bottom-item--title {
justify-content: center;
padding: 15px 0;
margin: auto;
}
.content-blog--right_bottom-item .right_bottom-item--title span {
text-transform: uppercase;
font-size: 18px;
text-align: center;
border-bottom: 2px solid black;
font-weight: 700;
padding-bottom: 5px;
}
.content-blog--right_bottom-item .right_bottom-item--content {
background-color: #fef1e9;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link {
font-size: 14px;
border-bottom: 1px solid #e4d3cb;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a {
padding: 10px 15px;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a p {
margin: 0;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a .sector {
width: 20%;
color: black;
text-align: center;
justify-content: center;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a .news {
color: #9c6441;
border-left: 1px solid rgb(161, 161, 161);
padding-left: 15px;
transition: 0.3s;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a:hover .news {
color: #0e0602;
}
/* End content-blog--right_bottom */
/* Open content-blog--right_detail-top */
.content-blog--right_detail-top {
border: 1px solid rgb(161, 161, 161);
border-radius: 3px;
margin-bottom: 20px;
}
.content-blog--right_detail-top .right_detail-top--title {
background-color: #17bf9c;
text-align: center;
}
.content-blog--right_detail-top .right_detail-top--title h1 {
padding: 10px 0;
}
.content-blog--right_detail-top .right_detail-top--content {
justify-content: center;
}
.content-blog--right_detail-top .right_detail-top--content .form-load {
padding: 2rem;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--item {
margin-bottom: 15px;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--item input {
padding: 5px 10px;
width: 100%;
font-size: 14px;
border: 1px solid rgb(161, 161, 161);
outline: transparent;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--btn {
text-align: center;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--btn button {
border: transparent;
background-color: #17bf9c;
padding: 5px 8rem;
color: white;
border-radius: 10px;
font-size: 16px;
outline: transparent;
transition: 0.5s;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--btn:hover button {
background-color: #1f8f78;
}
/* End content-blog--right_detail-top */
/* +++++ End content-blog--right +++++ */
/* ----- End block_blog--content-blog ----- */
/* ----- Open block_blog--featured-article ----- */
.block_blog--featured-article {
padding: 15px;
}
.featured-article_title {}
.featured-article_title h1 {}
.featured-article_content {}
.featured-article_content .featured-article_content--left {}
.featured-article_content .featured-article_content--right {}
.featured-article_content .featured-article_item {}
.featured-article_content .featured-article_item a {
color: white;
font-size: 15px;
position: relative;
padding: 0;
border-radius: 5px;
overflow: hidden;
}
.featured-article_content .featured-article_item a .featured-article_item--img {}
.featured-article_content .featured-article_item a .featured-article_item--img img {
width: 100%;
display: block;
}
.featured-article_content .featured-article_item a .featured-article_item--content {
position: absolute;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.363);
width: 100%;
height: 100%;
align-items: flex-end;
}
.featured-article_content .featured-article_item a .featured-article_item--content .featured-article_item--content-text {
padding: 15px;
transition: 0.5s;
}
.featured-article_content .featured-article_item a:hover .featured-article_item--content .featured-article_item--content-text {
transform: translateY(-10px);
}
.featured-article_content .featured-article_item a .featured-article_item--content .featured-article_item--content-text {}
.featured-article_content .featured-article_item a .featured-article_item--content .featured-article_item--content-text i {}
.featured-article_content .featured-article_item a .featured-article_item--content .featnured-article_item--content-commemt {}
.featured-article_content .featured-article_item a .featured-article_item--content .featnured-article_item--content-commemt ul {}
.featured-article_content .featured-article_item a .featured-article_item--content .featnured-article_item--content-commemt ul li {
padding: 15px;
}
.featured-article_content .featured-article_item a .featured-article_item--content .featnured-article_item--content-commemt ul li span {
padding: 3px 5px;
}
/* ----- End block_blog--featured-article ----- */
/* ----- Open block_blog--store ----- */
.block_blog--store {}
.blog_block-store {}
/* Open block_blog--store-left */
.block_blog--store-left {}
.store-left--title {}
.store-left--title h1 {}
.store-left--content {}
.store-left--content .store-left--content_item {}
.store-left--content .store-left--content_item a {
padding: 0;
}
.store-left--content .store-left--content_item a .store-left--content_item-img {
height: 150px;
}
.store-left--content .store-left--content_item a .store-left--content_item-img img {
width: 100%;
height: 100%;
display: block;
}
.store-left--content .store-left--content_item a .store-left--content_item-text {
padding-top: 5px;
text-align: center;
}
.store-left--content .store-left--content_item a .store-left--content_item-text h4 {
color: #464646;
font-weight: 700;
transition: 0.3s;
}
.store-left--content .store-left--content_item a:hover .store-left--content_item-text h4 {
color: black;
}
/* End block_blog--store-left */
/* Open block_blog--store-right */
.block_blog--store-right {
padding-left: 3rem;
}
.store-right--title {}
.store-right--title h1 {}
.store-right--content {}
.store-right--content .store-right--content-item {
margin: 10px 0;
}
.store-right--content .store-right--content-item a {
padding: 0;
}
.store-right--content .store-right--content-item a .store-right--content-item_img {
border-radius: 50%;
overflow: hidden;
}
.store-right--content .store-right--content-item a .store-right--content-item_img img {
width: 100%;
height: 85px;
display: block;
}
.store-right--content .store-right--content-item a .store-right--content-item_text {
color: #464646;
margin-top: auto;
transition: 0.3s;
}
.store-right--content .store-right--content-item a:hover .store-right--content-item_text {
color: black;
}
.store-right--content .store-right--content-item a .store-right--content-item_text h3 {}
.store-right--content .store-right--content-item a .store-right--content-item_text p {
font-size: 12px;
}
.store-right--btn {
width: 110px;
padding-top: 15px;
}
.store-right--btn a {
color: #33d2e5;
display: block;
font-size: 14px;
transition: 0.3s;
}
.store-right--btn a:hover {
color: #138c99;
}
/* End block_blog--store-right */
/* ----- End block_blog--store ----- */
/* ===== End blog-box ===== */
/* ===== Open blog_user-box ==== */
.blog_user--menu {}
.blog_user--menu .list-menu {}
.blog_user--menu .list-menu .list-menu_item {
border-bottom: 3px solid #eef0ef;
padding-left: 3rem;
}
.blog_user--menu .list-menu .list-menu_item a {
align-items: center;
height: 100%;
color: black;
font-weight: 700;
font-size: 16px;
padding: 0;
transition: 0.5s;
}
.blog_user--menu .list-menu .list-menu_item a:hover {
transform: translateX(2rem);
}
.blog_user--menu .list-menu .list-menu_item a .icon {
width: 20px;
margin: 0 8px 8px 10px;
padding: 10px 0;
}
.blog_user--menu .list-menu .list-menu_item a .icon img {
width: 100%;
}
.blog_user--content-save {
padding: 0 2rem;
}
.content-save--top {
justify-content: space-between;
padding: 10px 0;
}
.content-save--top .save--top_title {}
.content-save--top .save--top_title h1 {
padding-top: 8px;
font-weight: 700;
}
.content-save--top .save--top_btn-post {}
.content-save--top .save--top_btn-post button {
color: #08c198;
width: 30rem;
height: 4rem;
background-color: white;
border-radius: 10px;
border: 3px solid #cbcbcb;
outline: transparent;
transition: 0.5s;
}
.content-save--top .save--top_btn-post button:hover {
/* color: #08c198; */
background-color: gray;
}
.content-save--top .save--top_btn-post button span {
text-align: center;
font-size: 18px;
font-weight: 700;
padding: 3px;
}
.content-save--top .save--top_btn-post button span i {}
.content-save--center {}
.content-save--center .save--center_item {
background-color: white;
border-radius: 10px;
height: 19rem;
margin: 15px 0;
}
.content-save--center .save--center_item a {
color: black;
padding: 2rem;
}
.content-save--center .save--center_item a .center_item-img {}
.content-save--center .save--center_item a .center_item-img img {
width: 100%;
height: 15rem;
}
.content-save--center .save--center_item a .center_item-content {}
.content-save--center .save--center_item a .center_item-content .title {}
.content-save--center .save--center_item a .center_item-content .title h2 {
font-weight: 600;
}
.content-save--center .save--center_item a .center_item-content .infor {
justify-content: space-between;
align-items: flex-end;
height: 100%;
}
.content-save--center .save--center_item a .center_item-content .infor .status {}
.content-save--center .save--center_item a .center_item-content .infor .status span {
font-size: 14px;
}
.content-save--center .save--center_item a .center_item-content .infor .block-btn {}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_left {}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_right {}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_item {
margin: 0 5px;
}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_item button {
width: 8rem;
height: 3rem;
border-radius: 8px;
background-color: white;
font-size: 14px;
font-weight: 600;
}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_item button span {}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_item button span i {}
/* ===== End blog_user-box ==== */
/* ===== Open blog_user--content-sale ===== */
.blog_user--content-sale {
background-color: white;
border-radius: 8px;
padding: 2rem 15rem;
font-size: 13px;
}
.blog_user--content-sale p {
display: flex;
align-items: center;
height: 100%;
}
.blog_user--content-sale textarea {
outline: transparent;
color: gray;
padding: 15px;
}
.blog_user--content-sale input {
height: 30px;
outline: transparent;
color: gray;
padding: 0 15px;
}
.blog_user--content-sale button {
color: white;
background-color: gray;
padding: 0 10px;
border: none;
}
.blog_user--content-sale .block-input input {
width: 20rem;
}
.blog_user--content-sale .content-sale--form-title_bottom, .form-infor_content-row, .form-contact_content-row {
justify-content: space-between;
}
.blog_user--content-sale .content-sale--title {
padding: 25px 0 15px 0;
}
.blog_user--content-sale .content-sale--title h2 {
font-weight: 700;
color: #17bf9c;
}
.content-sale--form-title .content-sale--form-title_top {
justify-content: space-between;
padding-bottom: 15px;
}
.content-sale--form-title .content-sale--form-title_top p {
padding-top: 6px;
}
.content-sale--form-title .content-sale--form-title_top .block-input {
width: 90%;
}
.content-sale--form-title .content-sale--form-title_top .block-input input {
width: 100%;
}
.content-sale--form-title .content-sale--form-title_bottom .form-title_bottom-item p {
padding-right: 10px;
}
.content-sale--form-infor .content-sale--form-infor_content .form-infor_content-row--item, .form-contact_content-row--item {
justify-content: space-between;
width: 45%;
margin: 10px 0;
}
.content-sale--form-utilities_content {
flex-wrap: wrap;
}
.content-sale--form-utilities .form-utilities_content-item {
width: calc(100% / 3);
}
.content-sale--form-utilities .form-utilities_content-item input {
margin: 0 15px;
}
.content-sale--form-contact .content-sale--form-contact_content .form-contact_content-row {
justify-content: space-between;
width: 100%;
}
.content-sale--block-btn {
justify-content: flex-end;
padding: 2rem 0;
}
.content-sale--block-btn button {
background-color: #17bf9c;
color: white;
border: transparent;
width: 30rem;
height: 4rem;
font-size: 15px;
font-weight: 700;
}
/* ===== End blog_user--content-sale ===== */
/* ===== Open footer-box ===== */
.footer-box {
background-color: #242424;
margin-top: 4rem;
}
.block_footer {}
/* Open block_footer--contact */
.block_footer--contact {}
.footer--contact_img {
width: 80%;
margin: auto;
}
.footer--contact_img img {
width: 100%;
display: block;
}
.footer--contact_social {
text-align: center;
transform: translateY(-20px);
}
.footer--contact_social .footer--contact_social-title {}
.footer--contact_social .footer--contact_social-title p {
color: white;
font-size: 14px;
text-transform: uppercase;
}
.footer--contact_social .footer--contact_social-item {
justify-content: space-between;
}
.footer--contact_social .footer--contact_social-item li {}
.footer--contact_social .footer--contact_social-item li a {}
.footer--contact_social .footer--contact_social-item li a img {}
/* End block_footer--contact */
/* Open block_footer--item */
.block_footer--item {
padding: 5rem 0;
}
.block_footer--item .block_footer--item_title {}
.block_footer--item .block_footer--item_title span {
color: white;
text-transform: uppercase;
border-bottom: 2px solid white;
font-size: 16px;
padding: 0 15px 10px 0;
}
.block_footer--item .block_footer--item_content {
padding-top: 3rem;
}
.block_footer--item .block_footer--item_content li {
display: block;
padding-bottom: 15px;
}
.block_footer--item .block_footer--item_content li a {
padding: 10px 0;
color: white;
font-size: 14px;
text-decoration: none;
transition: 0.3s;
}
.block_footer--item .block_footer--item_content li a:hover {
color: rgb(182, 182, 182);
}
/* End block_footer--item */
/* ===== End footer-box ===== */ | public/css/style.css | * {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
html {
font-size: 62.5%;
}
ul {
list-style: none;
}
a {
text-decoration: none;
}
/* ===== End the fine the structure style ===== */
/* ===== Open navbar-box ===== */
.navbar-box {
background-color: #17bf9c;
}
.block_navbar {
justify-content: space-between;
height: 90px;
align-items: center;
display: flex;
}
/* Open block_navbar--logo */
.block_navbar--logo {
padding-left: 3rem;
}
.block_navbar--logo a {}
.block_navbar--logo a img {
height: 80px;
display: block;
}
/* End block_navbar--logo */
/* Open block_navbar--menu */
.block_navbar--menu {
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.block_navbar--menu .menu_item {
padding: 0 2.5rem;
}
.block_navbar--menu .menu_item .menu_item-link, .menu_item-link {
color: white;
font-size: 14px;
text-transform: uppercase;
padding: 0 8px;
transition: 0.5s;
}
.block_navbar--menu .menu_item:hover .menu_item-link {
color: rgb(221, 190, 190);
}
.block_toggle--menu {
display: none;
}
/* End block_navbar--menu */
/* Open block_navbar--block-btn */
.block_navbar--block-btn {
justify-content: flex-end;
margin: 10px;
display: flex;
}
.block_navbar--block-btn .block-btn_item {
border: 1px solid white;
border-radius: 5px;
margin: 0 5px;
transition: 0.5s;
}
.block_navbar--block-btn .block-btn_item:hover {
background-color: #0a9c7f;
}
.block_navbar--block-btn .block-btn_item .block-btn_item-link {
font-size: 14px;
color: white;
background-color: transparent;
border: none;
padding: 8px 2rem;
}
/* End block_navbar--block-btn */
/* Open login-model + register */
.modal-dialog {
position: absolute;
text-align: center;
top: 20%;
min-width: 70%;
}
.modal-dialog .modal-content {
padding: 5rem 0;
}
.modal-dialog .modal-content .form {
width: 38%;
margin: auto;
}
.modal-dialog .modal-content .form .form-title {
padding-bottom: 15px;
}
.modal-dialog .modal-content .form .form-title h1 {
font-size: 3.5rem;
color: #0cba95;
font-weight: 700;
text-transform: uppercase;
}
.modal-dialog .modal-content .form .form-title p {
color: gray;
font-size: 15px;
}
.modal-dialog .modal-content .form .form-input_item {
justify-content: center;
margin: 5px 0;
}
.modal-dialog .modal-content .form .form-input_item p {
font-size: 13px;
text-align: left;
padding-top: 5px;
font-weight: 600;
}
.modal-dialog .modal-content .form .form-input_item input {
padding: 5px 10px;
font-size: 14px;
outline: none;
background: transparent;
border-radius: 5px;
width: 20rem;
border: 1px solid gray;
}
.modal-dialog .modal-content .form .form-login_text {
font-size: 12px;
padding-top: 10px;
}
.modal-dialog .modal-content .form .form-login_text a {
text-decoration: none;
transition: 0.4s;
}
.form-input_btn--item {
margin: 7px 0;
}
.form-input_btn--item button {
border: transparent;
outline: transparent;
font-size: 18px;
font-weight: 700;
width: 33rem;
height: 4rem;
border-radius: 5px;
position: relative;
}
.form-input_btn--item button i {
position: absolute;
left: 5%;
top: 50%;
transform: translateY(-50%);
}
.form-input_item .forn-input_label {}
.form-input_item .forn-input_label .form-input_label-item {
padding: 0 15px;
}
.form-input_item .forn-input_label .form-input_label-item label {
font-size: 13px;
padding: 5px 5px 0 5px;
}
.form-input_item .forn-input_label .form-input_label-item input {}
/* End login-model + register */
/* ===== End navbar-box ===== */
/* ===== Open title-box ===== */
.title-box {
padding: 10px;
border-bottom: 3px solid #eef0ef;
}
.title-box .block_toggle {
color: #17bf9c;
font-size: 30px;
cursor: pointer;
display: none;
}
.title-box .block_toggle i {}
.title-box .block_title {
justify-content: space-between;
border-bottom: 2px solid #0a9c7f;
}
.title-box .block_title .block_title-item {
text-transform: uppercase;
}
.title-box .block_title .block_title-item .block_title-link {
font-size: 14px;
color: black;
transition: 0.3s;
}
.title-box .block_title .block_title-item:hover .block_title-link {
color: gray;
}
.title-box .block_toggle--title-content {
display: none;
}
/* ===== End title-box ===== */
/* ===== Open blog-box ===== */
.blog-box {}
.block_blog {}
.title-blog {
color: #1ac69e;
font-family: 'Times New Roman', Times, serif;
font-weight: 900;
font-size: 2.5rem;
text-transform: uppercase;
}
/* ----- Open block_blog--content-blog ----- */
.block_blog--content-blog {}
.block_blog--content-blog .block--content-blog {}
/* +++++ Open content-blog--left +++++ */
.content-blog--left {}
/* ..... Open content-blog--left-news ..... */
.content-blog--left-news {
margin-bottom: 15px;
}
/* Open blog_top (news-blog_top + notion-blog_top) */
.blog_top {}
.blog_top a {
padding: 0;
}
.blog_top a .blog_top-img {
width: 100%;
}
.blog_top a .blog_top-img img {
width: 100%;
height: 100%;
display: block;
}
.blog_top a .blog_top-text {
padding: 5px 0;
}
.blog_top a .blog_top-text h2 {
color: #555555;
font-weight: 600;
transition: 0.5s;
}
.blog_top a:hover .blog_top-text h2 {
color: black;
}
/* End blog_top (news-blog_top + notion-blog_top) */
/* Open blog_bottom (news-blog_bottom + notion-blog_bottom) */
.blog_bottom {
padding: 15px 0;
}
.blog_bottom .blog_bottom--item {}
.blog_bottom .blog_bottom--item a {
padding: 0;
overflow: hidden;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-img {
width: 100%;
height: 15rem;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-img img {
width: 100%;
height: 100%;
display: block;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-content {
height: 15rem;
overflow: hidden;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-content h3 {
color: #464646;
padding: 10px 0;
transition: 0.4s;
font-weight: 700;
}
.blog_bottom .blog_bottom--item a:hover .blog_bottom--item-content h3 {
color: black;
}
.blog_bottom .blog_bottom--item a .blog_bottom--item-content p {
color: #585858;
font-size: 12px;
font-weight: 600;
transition: 0.4s;
}
.blog_bottom .blog_bottom--item a:hover .blog_bottom--item-content p {
color: black;
}
/* End blog_bottom (news-blog_bottom + notion-blog_bottom) */
/* Open blog_slick (news-blog_slick + notion-blog_slick) */
.blog_slick {
background-color: #eddcd2;
padding: 15px 0;
}
.blog_slick .blog_slick--title {
padding: 0 0 5px 20px;
text-transform: uppercase;
font-weight: 900;
}
.blog_slick .blog_slick--title h1 {
font-family: 'Times New Roman', Times, serif;
font-weight: 900;
color: #474141;
}
.blog_slick .blog_slick--content {
margin: 0 15px;
}
.blog_slick .blog_slick--content .blog_slick--content_item {
width: 20rem;
height: 15rem;
position: relative;
border-radius: 15px;
overflow: hidden;
margin: 0 5px;
}
.blog_slick .blog_slick--content .blog_slick--content_item a {
padding: 0;
}
.blog_slick .blog_slick--content .blog_slick--content_item a .slick--content_item-img {}
.blog_slick .blog_slick--content .blog_slick--content_item a .slick--content_item-img img {
width: 100%;
height: 150px;
display: block;
}
.blog_slick .blog_slick--content .blog_slick--content_item a .slick--content_item-text {
position: absolute;
top: 70%;
left: 0;
padding: 0 15px;
}
.blog_slick .blog_slick--content .blog_slick--content_item a .slick--content_item-text p {
color: white;
font-size: 14px;
line-height: 18px;
transition: 0.3s;
}
.blog_slick .blog_slick--content .blog_slick--content_item a:hover .slick--content_item-text p {
transform: translateY(-20%);
}
.arrow-item {
cursor: pointer;
position: absolute;
top: 50%;
}
.arrow-item_prev {
left: -16px;
}
.arrow-item_next {
right: -16px;
}
/* End blog_slick (news-blog_slick + notion-blog_slick) */
/* ..... End content-blog--left-news ..... */
/* ..... Open content-blog--left-notion ..... */
.content-blog--left-notion {
margin: 20px 0;
}
/* Open notion-blog_center */
.notion-blog_center {}
.notion-blog_center .notion-blog_center--item {}
.notion-blog_center .notion-blog_center--item a {
padding: 0;
}
.notion-blog_center .notion-blog_center--item a .notion-blog_center--item_img {
padding-bottom: 10px;
}
.notion-blog_center .notion-blog_center--item a .notion-blog_center--item_img img {
width: 100%;
height: 100%;
display: block;
}
.notion-blog_center .notion-blog_center--item a .notion-blog_center--item_text {
height: 80px;
overflow: hidden;
}
.notion-blog_center .notion-blog_center--item a .notion-blog_center--item_text h4 {
color: #464646;
transition: 0.3s;
}
.notion-blog_center .notion-blog_center--item a:hover .notion-blog_center--item_text h4 {
color: black;
}
/* Open notion-blog_center */
/* ..... End content-blog--left-notion ..... */
/* +++++ End content-blog--left +++++ */
/* +++++ Open content-blog--right +++++ */
.content-blog--right {}
/* Open content-blog--right_top */
.content-blog--right_top {
border: 1px solid rgb(161, 161, 161);
border-radius: 3px;
}
.content-blog--right_top--title {
background-color: #17bf9c;
}
.content-blog--right_top--title h1 {
color: white;
text-align: center;
padding: 10px 0;
text-transform: uppercase;
}
.content-blog--right_top--block_item {
background-color: #cdcdcd;
margin-top: -5px;
height: 5rem;
align-items: flex-end;
justify-content: space-between;
}
.content-blog--right_top--block_item .block_item-link {
width: 50%;
text-align: center;
}
.content-blog--right_top--block_item .block_item-link .item-link {
border: none;
background-color: transparent;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
outline: transparent;
padding: 8px 4rem;
font-size: 14px;
transition: 0.5s;
}
.content-blog--right_top--block_item .block_item-link button.active {
background-color: white !important;
}
.content-blog--right_top--form-load {
height: 32rem;
}
.content-blog--right_top--form-load .form-load_lease {}
.content-blog--right_top--form-load .form-load_shell {}
.content-blog--right_top--form-load .tabcontent {
display: none;
padding: 2rem;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-item {
padding-bottom: 15px;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-item label {
font-size: 14px;
line-height: 3rem;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-item select {
width: 100%;
height: 3rem;
padding: 5px;
border: 1px solid rgb(161, 161, 161);
font-size: 14px;
outline: transparent;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-btn {
text-align: center;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-btn button {
border: transparent;
background-color: #17bf9c;
padding: 5px 8rem;
color: white;
border-radius: 10px;
font-size: 16px;
outline: transparent;
transition: 0.5s;
}
.content-blog--right_top--form-load .tabcontent .tabcontent-btn button:hover {
background-color: #12977d;
}
/* End content-blog--right_top */
/* Open content-blog--right_center */
.content-blog--right_center {
padding-top: 15px;
}
.content-blog--right_center-item {
padding-bottom: 20px;
}
.content-blog--right_center-item .content-blog--right_center-item--title {}
.content-blog--right_center-item .content-blog--right_center-item--title h1 {}
.content-blog--right_center-item .content-blog--right_center--content {}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item {
overflow: hidden;
}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a {}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a .right_center--content-item_img {}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a .right_center--content-item_img img {
width: 100%;
height: 100%;
display: block;
}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a .right_center--content-item_text {
padding: 10px 0;
}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a .right_center--content-item_text h4 {
color: #464646;
font-size: 15px;
font-weight: 600;
transition: 0.3s;
}
.content-blog--right_center-item .content-blog--right_center--content .right_center--content-item a:hover .right_center--content-item_text h4 {
color: black;
}
.right_center--content-btn {}
.right_center--content-btn a {
color: #33d2e5;
display: block;
font-size: 14px;
transition: 0.3s;
}
.right_center--content-btn a:hover {
color: #157e8a;
}
/* End content-blog--right_center */
/* Open content-blog--right_bottom */
.content-blog--right_bottom {}
.content-blog--right_bottom-item {
border: 1px solid rgb(161, 161, 161);
background-color: #f9dcca;
margin-bottom: 15px;
}
.content-blog--right_bottom-item .right_bottom-item--title {
justify-content: center;
padding: 15px 0;
margin: auto;
}
.content-blog--right_bottom-item .right_bottom-item--title span {
text-transform: uppercase;
font-size: 18px;
text-align: center;
border-bottom: 2px solid black;
font-weight: 700;
padding-bottom: 5px;
}
.content-blog--right_bottom-item .right_bottom-item--content {
background-color: #fef1e9;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link {
font-size: 14px;
border-bottom: 1px solid #e4d3cb;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a {
padding: 10px 15px;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a p {
margin: 0;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a .sector {
width: 20%;
color: black;
text-align: center;
justify-content: center;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a .news {
color: #9c6441;
border-left: 1px solid rgb(161, 161, 161);
padding-left: 15px;
transition: 0.3s;
}
.content-blog--right_bottom-item .right_bottom-item--content .right_bottom-item--content_link a:hover .news {
color: #0e0602;
}
/* End content-blog--right_bottom */
/* Open content-blog--right_detail-top */
.content-blog--right_detail-top {
border: 1px solid rgb(161, 161, 161);
border-radius: 3px;
margin-bottom: 20px;
}
.content-blog--right_detail-top .right_detail-top--title {
background-color: #17bf9c;
text-align: center;
}
.content-blog--right_detail-top .right_detail-top--title h1 {
padding: 10px 0;
}
.content-blog--right_detail-top .right_detail-top--content {
justify-content: center;
}
.content-blog--right_detail-top .right_detail-top--content .form-load {
padding: 2rem;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--item {
margin-bottom: 15px;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--item input {
padding: 5px 10px;
width: 100%;
font-size: 14px;
border: 1px solid rgb(161, 161, 161);
outline: transparent;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--btn {
text-align: center;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--btn button {
border: transparent;
background-color: #17bf9c;
padding: 5px 8rem;
color: white;
border-radius: 10px;
font-size: 16px;
outline: transparent;
transition: 0.5s;
}
.content-blog--right_detail-top .right_detail-top--content .form-load .form-load--btn:hover button {
background-color: #1f8f78;
}
/* End content-blog--right_detail-top */
/* +++++ End content-blog--right +++++ */
/* ----- End block_blog--content-blog ----- */
/* ----- Open block_blog--featured-article ----- */
.block_blog--featured-article {
padding: 15px;
}
.featured-article_title {}
.featured-article_title h1 {}
.featured-article_content {}
.featured-article_content .featured-article_content--left {}
.featured-article_content .featured-article_content--right {}
.featured-article_content .featured-article_item {}
.featured-article_content .featured-article_item a {
color: white;
font-size: 15px;
position: relative;
padding: 0;
border-radius: 5px;
overflow: hidden;
}
.featured-article_content .featured-article_item a .featured-article_item--img {}
.featured-article_content .featured-article_item a .featured-article_item--img img {
width: 100%;
display: block;
}
.featured-article_content .featured-article_item a .featured-article_item--content {
position: absolute;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.363);
width: 100%;
height: 100%;
align-items: flex-end;
}
.featured-article_content .featured-article_item a .featured-article_item--content .featured-article_item--content-text {
padding: 15px;
transition: 0.5s;
}
.featured-article_content .featured-article_item a:hover .featured-article_item--content .featured-article_item--content-text {
transform: translateY(-10px);
}
.featured-article_content .featured-article_item a .featured-article_item--content .featured-article_item--content-text {}
.featured-article_content .featured-article_item a .featured-article_item--content .featured-article_item--content-text i {}
.featured-article_content .featured-article_item a .featured-article_item--content .featnured-article_item--content-commemt {}
.featured-article_content .featured-article_item a .featured-article_item--content .featnured-article_item--content-commemt ul {}
.featured-article_content .featured-article_item a .featured-article_item--content .featnured-article_item--content-commemt ul li {
padding: 15px;
}
.featured-article_content .featured-article_item a .featured-article_item--content .featnured-article_item--content-commemt ul li span {
padding: 3px 5px;
}
/* ----- End block_blog--featured-article ----- */
/* ----- Open block_blog--store ----- */
.block_blog--store {}
.blog_block-store {}
/* Open block_blog--store-left */
.block_blog--store-left {}
.store-left--title {}
.store-left--title h1 {}
.store-left--content {}
.store-left--content .store-left--content_item {}
.store-left--content .store-left--content_item a {
padding: 0;
}
.store-left--content .store-left--content_item a .store-left--content_item-img {
height: 150px;
}
.store-left--content .store-left--content_item a .store-left--content_item-img img {
width: 100%;
height: 100%;
display: block;
}
.store-left--content .store-left--content_item a .store-left--content_item-text {
padding-top: 5px;
text-align: center;
}
.store-left--content .store-left--content_item a .store-left--content_item-text h4 {
color: #464646;
font-weight: 700;
transition: 0.3s;
}
.store-left--content .store-left--content_item a:hover .store-left--content_item-text h4 {
color: black;
}
/* End block_blog--store-left */
/* Open block_blog--store-right */
.block_blog--store-right {
padding-left: 3rem;
}
.store-right--title {}
.store-right--title h1 {}
.store-right--content {}
.store-right--content .store-right--content-item {
margin: 10px 0;
}
.store-right--content .store-right--content-item a {
padding: 0;
}
.store-right--content .store-right--content-item a .store-right--content-item_img {
border-radius: 50%;
overflow: hidden;
}
.store-right--content .store-right--content-item a .store-right--content-item_img img {
width: 100%;
height: 85px;
display: block;
}
.store-right--content .store-right--content-item a .store-right--content-item_text {
color: #464646;
margin-top: auto;
transition: 0.3s;
}
.store-right--content .store-right--content-item a:hover .store-right--content-item_text {
color: black;
}
.store-right--content .store-right--content-item a .store-right--content-item_text h3 {}
.store-right--content .store-right--content-item a .store-right--content-item_text p {
font-size: 12px;
}
.store-right--btn {
width: 110px;
padding-top: 15px;
}
.store-right--btn a {
color: #33d2e5;
display: block;
font-size: 14px;
transition: 0.3s;
}
.store-right--btn a:hover {
color: #138c99;
}
/* End block_blog--store-right */
/* ----- End block_blog--store ----- */
/* ===== End blog-box ===== */
/* ===== Open blog_user-box ==== */
.blog_user--menu {}
.blog_user--menu .list-menu {}
.blog_user--menu .list-menu .list-menu_item {
border-bottom: 3px solid #eef0ef;
padding-left: 3rem;
}
.blog_user--menu .list-menu .list-menu_item a {
align-items: center;
height: 100%;
color: black;
font-weight: 700;
font-size: 16px;
padding: 0;
transition: 0.5s;
}
.blog_user--menu .list-menu .list-menu_item a:hover {
transform: translateX(2rem);
}
.blog_user--menu .list-menu .list-menu_item a .icon {
width: 20px;
margin: 0 8px 8px 10px;
padding: 10px 0;
}
.blog_user--menu .list-menu .list-menu_item a .icon img {
width: 100%;
}
.blog_user--content-save {
padding: 0 2rem;
}
.content-save--top {
justify-content: space-between;
padding: 10px 0;
}
.content-save--top .save--top_title {}
.content-save--top .save--top_title h1 {
padding-top: 8px;
font-weight: 700;
}
.content-save--top .save--top_btn-post {}
.content-save--top .save--top_btn-post button {
color: #08c198;
width: 30rem;
height: 4rem;
background-color: white;
border-radius: 10px;
border: 3px solid #cbcbcb;
outline: transparent;
transition: 0.5s;
}
.content-save--top .save--top_btn-post button:hover {
/* color: #08c198; */
background-color: gray;
}
.content-save--top .save--top_btn-post button span {
text-align: center;
font-size: 18px;
font-weight: 700;
padding: 3px;
}
.content-save--top .save--top_btn-post button span i {}
.content-save--center {}
.content-save--center .save--center_item {
background-color: white;
border-radius: 10px;
height: 19rem;
margin: 15px 0;
}
.content-save--center .save--center_item a {
color: black;
padding: 2rem;
}
.content-save--center .save--center_item a .center_item-img {}
.content-save--center .save--center_item a .center_item-img img {
width: 100%;
height: 15rem;
}
.content-save--center .save--center_item a .center_item-content {}
.content-save--center .save--center_item a .center_item-content .title {}
.content-save--center .save--center_item a .center_item-content .title h2 {
font-weight: 600;
}
.content-save--center .save--center_item a .center_item-content .infor {
justify-content: space-between;
align-items: flex-end;
height: 100%;
}
.content-save--center .save--center_item a .center_item-content .infor .status {}
.content-save--center .save--center_item a .center_item-content .infor .status span {
font-size: 14px;
}
.content-save--center .save--center_item a .center_item-content .infor .block-btn {}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_left {}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_right {}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_item {
margin: 0 5px;
}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_item button {
width: 8rem;
height: 3rem;
border-radius: 8px;
background-color: white;
font-size: 14px;
font-weight: 600;
}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_item button span {}
.content-save--center .save--center_item a .center_item-content .infor .block-btn .block-btn_item button span i {}
/* ===== End blog_user-box ==== */
/* ===== Open blog_user--content-sale ===== */
.blog_user--content-sale {
background-color: white;
border-radius: 8px;
padding: 2rem 15rem;
font-size: 13px;
}
.blog_user--content-sale p {
display: flex;
align-items: center;
height: 100%;
}
.blog_user--content-sale textarea {
outline: transparent;
color: gray;
padding: 15px;
}
.blog_user--content-sale input {
height: 30px;
outline: transparent;
color: gray;
padding: 0 15px;
}
.blog_user--content-sale button {
color: white;
background-color: gray;
padding: 0 10px;
border: none;
}
.blog_user--content-sale .block-input input {
width: 20rem;
}
.blog_user--content-sale .content-sale--form-title_bottom, .form-infor_content-row, .form-contact_content-row {
justify-content: space-between;
}
.blog_user--content-sale .content-sale--title {
padding: 25px 0 15px 0;
}
.blog_user--content-sale .content-sale--title h2 {
font-weight: 700;
color: #17bf9c;
}
.content-sale--form-title .content-sale--form-title_top {
justify-content: space-between;
padding-bottom: 15px;
}
.content-sale--form-title .content-sale--form-title_top p {
padding-top: 6px;
}
.content-sale--form-title .content-sale--form-title_top .block-input {
width: 90%;
}
.content-sale--form-title .content-sale--form-title_top .block-input input {
width: 100%;
}
.content-sale--form-title .content-sale--form-title_bottom .form-title_bottom-item p {
padding-right: 10px;
}
.content-sale--form-infor .content-sale--form-infor_content .form-infor_content-row--item, .form-contact_content-row--item {
justify-content: space-between;
width: 45%;
margin: 10px 0;
}
.content-sale--form-utilities_content {
flex-wrap: wrap;
}
.content-sale--form-utilities .form-utilities_content-item {
width: calc(100% / 3);
}
.content-sale--form-utilities .form-utilities_content-item input {
margin: 0 15px;
}
.content-sale--form-contact .content-sale--form-contact_content .form-contact_content-row {
justify-content: space-between;
width: 100%;
}
.content-sale--block-btn {
justify-content: flex-end;
padding: 2rem 0;
}
.content-sale--block-btn button {
background-color: #17bf9c;
color: white;
border: transparent;
width: 30rem;
height: 4rem;
font-size: 15px;
font-weight: 700;
}
/* ===== End blog_user--content-sale ===== */
/* ===== Open footer-box ===== */
.footer-box {
background-color: #242424;
margin-top: 4rem;
}
.block_footer {}
/* Open block_footer--contact */
.block_footer--contact {}
.footer--contact_img {
width: 80%;
margin: auto;
}
.footer--contact_img img {
width: 100%;
display: block;
}
.footer--contact_social {
text-align: center;
transform: translateY(-20px);
}
.footer--contact_social .footer--contact_social-title {}
.footer--contact_social .footer--contact_social-title p {
color: white;
font-size: 14px;
text-transform: uppercase;
}
.footer--contact_social .footer--contact_social-item {
justify-content: space-between;
}
.footer--contact_social .footer--contact_social-item li {}
.footer--contact_social .footer--contact_social-item li a {}
.footer--contact_social .footer--contact_social-item li a img {}
/* End block_footer--contact */
/* Open block_footer--item */
.block_footer--item {
padding: 5rem 0;
}
.block_footer--item .block_footer--item_title {}
.block_footer--item .block_footer--item_title span {
color: white;
text-transform: uppercase;
border-bottom: 2px solid white;
font-size: 16px;
padding: 0 15px 10px 0;
}
.block_footer--item .block_footer--item_content {
padding-top: 3rem;
}
.block_footer--item .block_footer--item_content li {
display: block;
padding-bottom: 15px;
}
.block_footer--item .block_footer--item_content li a {
padding: 10px 0;
color: white;
font-size: 14px;
text-decoration: none;
transition: 0.3s;
}
.block_footer--item .block_footer--item_content li a:hover {
color: rgb(182, 182, 182);
}
/* End block_footer--item */
/* ===== End footer-box ===== */ | 0.318697 | 0.075517 |
#maincontent {
width: 100%;
text-align: left; /* this overrides the text-align: center on the body element. */
background-color: #fff;
}
.topwrapper {
width:960px;
width:960px; /*IE6 width*/
height:400px;
margin:0 auto;
padding:0 15px 20px 15px;
}
.topcontent {
width:600px;
width:600px; /*IE6 width*/
padding:0;
position:absolute;
z-index:100;
}
/* Dare Home Page items */
/* Main Slideshow nav */
#nav { z-index: 50; position: absolute; bottom:50px; right: 20px; }
#nav a { margin:0 2px; padding: 2px 3px; background: #000; text-decoration: none; color:#fff; font-size:8px; line-height:12px;}
#nav a.activeSlide { background: #ea0; color:#000; }
#nav a:focus { outline: none; }
/* Main Slideshow */
#mainslideshow {width:600px; height:400px; overflow:hidden; }
#mainslideshow div {width:600px; height: 400px; padding:0; color:#333; text-align:left;}
#mainslideshow div img {float:left; margin:0; width:600px; height:400px; padding:0; background:#fff; visibility:hidden;}
#mainslideshow div {top: 0; left: 0;}
#mainslideshow div .boxcaption h2{
padding:0 0 0 20px;
color:#fff;
font-weight:normal;
font:14px "Lucida Grande", Arial, sans-serif;
line-height:26px;
background:#002663;
}
#mainslideshow div .boxcaption h2 a{
padding:0;
color:#fff;
font-weight:normal;
font:14px "Lucida Grande", Arial, sans-serif;
line-height:26px;
background:#002663;
}
#mainslideshow div .boxcaption{
position:absolute;
height:55px;
width:600px;
visibility:hidden;
}
#mainslideshow div .boxcaption {
top:320px;
left:0;}
#mainslideshow div .boxcaption h1 {padding:0 0 0 20px; margin:0; color:#ffd200; font:32px Arial, sans-serif; letter-spacing:2px; line-height:42px; background-color:#111;
filter: alpha(opacity=70);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
-moz-opacity: 0.70;
opacity:0.7;}
#mainslideshow div .boxcaption h1 a {color:#ea0; font:32px Arial, sans-serif; letter-spacing:-1px; line-height:40px; text-decoration:none;}
#mainslideshow div .boxcaption h1 a:hover {color:#fff; font:32px Arial, sans-serif; letter-spacing:-1px; line-height:40px; text-decoration:none;}
/* top slider */
#s4 {width: 218px; height: 225px; background-color: #fff; margin:10px auto 5px auto; overflow:hidden;}
#s4 div {width: 218px; height: 225px; padding: 0px; color: #333; text-align: left;}
#s4 div img {float: left; margin: 0 10px 10px 0; width: 100%; height: auto; padding: 0px; background: #fff;}
#s4 div {top: 0; left: 0;}
#box1 {width:320px; height:118px; background-color:#ea0; opacity:.6; filter:alpha(opacity=60); margin-bottom:8px; padding:5px 10px; color:#000; -moz-border-radius: 10px; border-radius: 10px;}
#box1:hover {opacity:1.0;}
#box1 h2 {font-size:1.3em; color:#474545; padding-top:5px;}
#box1 a {color:#00539f; text-decoration:underline; font-size:14px; padding-left:15px;}
#box1 p {padding-top:10px;}
#box2 {width:320px; height:118px; background-color:#003877; opacity:.6; filter:alpha(opacity=60); margin-bottom:8px; padding:5px 10px; color:#fff; -moz-border-radius: 10px; border-radius: 10px;}
#box2:hover {opacity:1.0;}
#box2 h2 {font-size:1.3em; color:#fff; padding-top:5px;}
#box2 a {color:#ffd200; text-decoration:underline; font-size:14px; padding-left:15px;}
#box2 p {padding-top:10px}
#box3 {width:320px; height:118px; background-color:#ea0; opacity:.6; filter:alpha(opacity=60); margin-bottom:7px; padding:5px 10px; color:#000; -moz-border-radius: 10px; border-radius: 10px;}
#box3:hover {opacity:1.0;}
#box3 h2 {font-size:1.3em; color:#474545; padding-top:5px;}
#box3 a {color:#00539f; text-decoration:underline; font-size:14px; padding-left:15px;}
#box3 p {padding-top:10px;}
#box4 {width:320px; height:84px; background-color:#003877; opacity:.6; filter:alpha(opacity=60); padding:5px 10px; color:#fff; -moz-border-radius: 10px; border-radius: 10px;}
#box4:hover {opacity:1.0;}
#box4 h2 {font-size:1.3em; color:#fff; padding-top:5px;}
#box4 a {color:#ffd200; text-decoration:underline; font-size:14px; padding-left:15px;}
#box4 p {padding-top:10px;}
#boxmega {width:320px; height:390px; background-color:#e1e1e1; margin-bottom:8px; padding:5px 10px; color:#000; -moz-border-radius:10px; border-radius:10px; text-align:center;} | css/slideshow_features.css | #maincontent {
width: 100%;
text-align: left; /* this overrides the text-align: center on the body element. */
background-color: #fff;
}
.topwrapper {
width:960px;
width:960px; /*IE6 width*/
height:400px;
margin:0 auto;
padding:0 15px 20px 15px;
}
.topcontent {
width:600px;
width:600px; /*IE6 width*/
padding:0;
position:absolute;
z-index:100;
}
/* Dare Home Page items */
/* Main Slideshow nav */
#nav { z-index: 50; position: absolute; bottom:50px; right: 20px; }
#nav a { margin:0 2px; padding: 2px 3px; background: #000; text-decoration: none; color:#fff; font-size:8px; line-height:12px;}
#nav a.activeSlide { background: #ea0; color:#000; }
#nav a:focus { outline: none; }
/* Main Slideshow */
#mainslideshow {width:600px; height:400px; overflow:hidden; }
#mainslideshow div {width:600px; height: 400px; padding:0; color:#333; text-align:left;}
#mainslideshow div img {float:left; margin:0; width:600px; height:400px; padding:0; background:#fff; visibility:hidden;}
#mainslideshow div {top: 0; left: 0;}
#mainslideshow div .boxcaption h2{
padding:0 0 0 20px;
color:#fff;
font-weight:normal;
font:14px "Lucida Grande", Arial, sans-serif;
line-height:26px;
background:#002663;
}
#mainslideshow div .boxcaption h2 a{
padding:0;
color:#fff;
font-weight:normal;
font:14px "Lucida Grande", Arial, sans-serif;
line-height:26px;
background:#002663;
}
#mainslideshow div .boxcaption{
position:absolute;
height:55px;
width:600px;
visibility:hidden;
}
#mainslideshow div .boxcaption {
top:320px;
left:0;}
#mainslideshow div .boxcaption h1 {padding:0 0 0 20px; margin:0; color:#ffd200; font:32px Arial, sans-serif; letter-spacing:2px; line-height:42px; background-color:#111;
filter: alpha(opacity=70);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
-moz-opacity: 0.70;
opacity:0.7;}
#mainslideshow div .boxcaption h1 a {color:#ea0; font:32px Arial, sans-serif; letter-spacing:-1px; line-height:40px; text-decoration:none;}
#mainslideshow div .boxcaption h1 a:hover {color:#fff; font:32px Arial, sans-serif; letter-spacing:-1px; line-height:40px; text-decoration:none;}
/* top slider */
#s4 {width: 218px; height: 225px; background-color: #fff; margin:10px auto 5px auto; overflow:hidden;}
#s4 div {width: 218px; height: 225px; padding: 0px; color: #333; text-align: left;}
#s4 div img {float: left; margin: 0 10px 10px 0; width: 100%; height: auto; padding: 0px; background: #fff;}
#s4 div {top: 0; left: 0;}
#box1 {width:320px; height:118px; background-color:#ea0; opacity:.6; filter:alpha(opacity=60); margin-bottom:8px; padding:5px 10px; color:#000; -moz-border-radius: 10px; border-radius: 10px;}
#box1:hover {opacity:1.0;}
#box1 h2 {font-size:1.3em; color:#474545; padding-top:5px;}
#box1 a {color:#00539f; text-decoration:underline; font-size:14px; padding-left:15px;}
#box1 p {padding-top:10px;}
#box2 {width:320px; height:118px; background-color:#003877; opacity:.6; filter:alpha(opacity=60); margin-bottom:8px; padding:5px 10px; color:#fff; -moz-border-radius: 10px; border-radius: 10px;}
#box2:hover {opacity:1.0;}
#box2 h2 {font-size:1.3em; color:#fff; padding-top:5px;}
#box2 a {color:#ffd200; text-decoration:underline; font-size:14px; padding-left:15px;}
#box2 p {padding-top:10px}
#box3 {width:320px; height:118px; background-color:#ea0; opacity:.6; filter:alpha(opacity=60); margin-bottom:7px; padding:5px 10px; color:#000; -moz-border-radius: 10px; border-radius: 10px;}
#box3:hover {opacity:1.0;}
#box3 h2 {font-size:1.3em; color:#474545; padding-top:5px;}
#box3 a {color:#00539f; text-decoration:underline; font-size:14px; padding-left:15px;}
#box3 p {padding-top:10px;}
#box4 {width:320px; height:84px; background-color:#003877; opacity:.6; filter:alpha(opacity=60); padding:5px 10px; color:#fff; -moz-border-radius: 10px; border-radius: 10px;}
#box4:hover {opacity:1.0;}
#box4 h2 {font-size:1.3em; color:#fff; padding-top:5px;}
#box4 a {color:#ffd200; text-decoration:underline; font-size:14px; padding-left:15px;}
#box4 p {padding-top:10px;}
#boxmega {width:320px; height:390px; background-color:#e1e1e1; margin-bottom:8px; padding:5px 10px; color:#000; -moz-border-radius:10px; border-radius:10px; text-align:center;} | 0.301671 | 0.100128 |
.login {
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: center;
align-items: center;
}
.login__content {
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid #dadce0;
border-radius: 7px;
padding: 30px;
height: 520px;
width: 440px;
position: absolute;
}
.login__logo {
width: 100px;
}
.login__wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.login__title {
font-size: 24px;
font-weight: 400;
margin-top: 5px;
}
.login__subtitle {
font-size: 16px;
font-weight: 400;
margin-top: 5px;
}
.login__form {
width: 100%;
display: flex;
flex-direction: column;
}
.login__input {
margin-top: 20px !important;
}
.login__infoText {
display: flex;
flex-direction: column;
margin-top: 50px;
color: #5f6368;
font-size: 14px;
}
.login__infoText a {
color: #1a73e8;
font-weight: 500;
text-decoration: none;
}
.login__buttons {
display: flex;
justify-content: space-between;
margin: 40px 0 0;
/* background-image: url(../../images/X-oo.svg); */
}
.login__button {
font-weight: 500 !important;
text-transform: capitalize;
}
.login__button:first-of-type {
padding-left: 0;
}
@media (max-width: 600px) {
.login__content {
border: none;
width: 85vw;
position: absolute;
top: 0;
margin: 0;
}
}
.login__loading{
animation: a-s 500ms 500ms 1 forwards;
background-color: #f1f1f1;
height: 4px;
width: 114%;
margin: -30px -10px 30px -10px;
opacity: 0;
overflow: hidden;
position: relative;
}
.login__loading::before{
animation: a-lb 20s 500ms linear forwards;
background-color: #3684eb;
content: "";
display: block;
height: 100%;
position: absolute;
transform: translate(-300px);
width: 100%;
}
@keyframes a-s {
100% {
opacity: 1;
}
}
@keyframes a-lb {
0% {
transform: translate(-300px);
}
5% {
transform: translate(-240px);
}
15% {
transform: translate(-30px);
}
25% {
transform: translate(-30px);
}
30% {
transform: translate(-20px);
}
45% {
transform: translate(-20px);
}
50% {
transform: translate(-15px);
}
65% {
transform: translate(-15px);
}
70% {
transform: translate(-10px);
}
95% {
transform: translate(-10px);
}
100% {
transform: translate(-5px);
}
} | src/components/Signin/styles.css | .login {
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: center;
align-items: center;
}
.login__content {
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid #dadce0;
border-radius: 7px;
padding: 30px;
height: 520px;
width: 440px;
position: absolute;
}
.login__logo {
width: 100px;
}
.login__wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.login__title {
font-size: 24px;
font-weight: 400;
margin-top: 5px;
}
.login__subtitle {
font-size: 16px;
font-weight: 400;
margin-top: 5px;
}
.login__form {
width: 100%;
display: flex;
flex-direction: column;
}
.login__input {
margin-top: 20px !important;
}
.login__infoText {
display: flex;
flex-direction: column;
margin-top: 50px;
color: #5f6368;
font-size: 14px;
}
.login__infoText a {
color: #1a73e8;
font-weight: 500;
text-decoration: none;
}
.login__buttons {
display: flex;
justify-content: space-between;
margin: 40px 0 0;
/* background-image: url(../../images/X-oo.svg); */
}
.login__button {
font-weight: 500 !important;
text-transform: capitalize;
}
.login__button:first-of-type {
padding-left: 0;
}
@media (max-width: 600px) {
.login__content {
border: none;
width: 85vw;
position: absolute;
top: 0;
margin: 0;
}
}
.login__loading{
animation: a-s 500ms 500ms 1 forwards;
background-color: #f1f1f1;
height: 4px;
width: 114%;
margin: -30px -10px 30px -10px;
opacity: 0;
overflow: hidden;
position: relative;
}
.login__loading::before{
animation: a-lb 20s 500ms linear forwards;
background-color: #3684eb;
content: "";
display: block;
height: 100%;
position: absolute;
transform: translate(-300px);
width: 100%;
}
@keyframes a-s {
100% {
opacity: 1;
}
}
@keyframes a-lb {
0% {
transform: translate(-300px);
}
5% {
transform: translate(-240px);
}
15% {
transform: translate(-30px);
}
25% {
transform: translate(-30px);
}
30% {
transform: translate(-20px);
}
45% {
transform: translate(-20px);
}
50% {
transform: translate(-15px);
}
65% {
transform: translate(-15px);
}
70% {
transform: translate(-10px);
}
95% {
transform: translate(-10px);
}
100% {
transform: translate(-5px);
}
} | 0.46223 | 0.076891 |
h1{
text-align: center;
}
section{
background-color: plum;
padding: 50px;
}
.cajitas div{
padding: 60px;
margin-left: 20px;
/* position: relative; -> lo quito para que el borde no me pise los id*/
display: inline-block;
border: 1px solid black;
}
#box-1{
border:1px solid powderblue;
box-shadow: 0 0 50px powderblue;
position: absolute;
left:50%;
top:13%;
transform: translate(-50%); /*para girar y centrar*/
z-index: 1;
}
#box-2{
background-color: pink;
border-left: 2px solid white;
border-right: 2px solid white;
transform: scale(2); /*la dobla*/
transform: scale(-0.91, -1.3); /*anula al anterior, y si hago más es sucesivo*/
/*ETC*/
}
#box-3{
background-color: teal;
transform: scale(1.5) rotate(45deg);
/* transform: rotate(-120deg); */ /*gira la caja*/
border-top: 2px solid red;
margin-left: 40px;
}
#box-4{
background-color: goldenrod;
transform: rotate(45deg) scaleY(1.5) skew(15deg); /*skew es un efecto en 2D para
deformar el elemento con cierto ángulo en las direcciones horizontal y vertical
respectivamente (x, y), como si se estirara desde los extremos*/
border-bottom: 2px solid red;
}
#box-5{
background-color: salmon;
transform: scale(1.3) rotate(20deg);
opacity: 0.3; /*opacidad o transparencia*/
}
#box-5:hover{
transform: scale(1) rotate(0deg);
opacity: 1;
transition: all 0.2s ease 0.2s; /*el tiempo define en cuanto se hace la animación*/
/*all es toda la caja, ease es la forma de la animación*/
}
/*vamos a hacer animaciones de una caja utilizando una keyframe y sólo indicando
esa frame en el id de lo que queremos animar*/
#box-6{
border-top: 2px solid orangered;
margin-left: 100px;
background-color: springgreen;
animation: 2.5s ease both; /*se indica la animación en la caja propia*/
/*tiempo, tipo, a qué elementos se aplica*/
}
@keyframes slide {
0%{
transform: translateX(0%);
opacity: 0;
}
25%{
transform: rotate(45deg) translateX(-50%);
opacity: 0.25;
}
50%{
transform: rotate(90deg) translateX(-50%);
opacity: 0.5;
}
75%{
transform: rotate(120deg) translateX(-50%);
opacity: 0.75;
}
100%{
transform: rotate(180deg) translateX(-50%);
opacity: 1;
}
}
#box-6:hover{ /*al pasar el cursor se hace la animación*/
animation-name: slide;
}
/*SIM ACOSTAO*/
.person{
background-color:orange;
}
.person div{
border: 1px solid black;
padding: 30px;
background-color: beige;
display: inline-block;
}
#pillow{
background-color: green;
transform: scale(0.4, 0.4) skew(40deg, 140deg) rotate(90deg);
position: absolute;
left:0%;
top:65%;
}
#face{
border-radius: 50%;
}
#chest{
transform: scale(2, 0.75);
margin-left:30px;
}
#left-arm{
transform: scale(1, 0.25) rotate(20deg);
position: absolute;
left:10%;
top:70%;
}
#right-arm{
transform: scale(1, 0.25) rotate(340deg);
position: absolute;
left:10%;
top:61%;
}
#left-leg{
transform: scale(1, 0.25) rotate(10deg);
position: absolute;
left:18%;
top:69%;
}
#right-leg{
transform: scale(1, 0.25) rotate(350deg);
position: absolute;
left:18%;
top:62%;
} | css/animaciones/src/css/style.css | h1{
text-align: center;
}
section{
background-color: plum;
padding: 50px;
}
.cajitas div{
padding: 60px;
margin-left: 20px;
/* position: relative; -> lo quito para que el borde no me pise los id*/
display: inline-block;
border: 1px solid black;
}
#box-1{
border:1px solid powderblue;
box-shadow: 0 0 50px powderblue;
position: absolute;
left:50%;
top:13%;
transform: translate(-50%); /*para girar y centrar*/
z-index: 1;
}
#box-2{
background-color: pink;
border-left: 2px solid white;
border-right: 2px solid white;
transform: scale(2); /*la dobla*/
transform: scale(-0.91, -1.3); /*anula al anterior, y si hago más es sucesivo*/
/*ETC*/
}
#box-3{
background-color: teal;
transform: scale(1.5) rotate(45deg);
/* transform: rotate(-120deg); */ /*gira la caja*/
border-top: 2px solid red;
margin-left: 40px;
}
#box-4{
background-color: goldenrod;
transform: rotate(45deg) scaleY(1.5) skew(15deg); /*skew es un efecto en 2D para
deformar el elemento con cierto ángulo en las direcciones horizontal y vertical
respectivamente (x, y), como si se estirara desde los extremos*/
border-bottom: 2px solid red;
}
#box-5{
background-color: salmon;
transform: scale(1.3) rotate(20deg);
opacity: 0.3; /*opacidad o transparencia*/
}
#box-5:hover{
transform: scale(1) rotate(0deg);
opacity: 1;
transition: all 0.2s ease 0.2s; /*el tiempo define en cuanto se hace la animación*/
/*all es toda la caja, ease es la forma de la animación*/
}
/*vamos a hacer animaciones de una caja utilizando una keyframe y sólo indicando
esa frame en el id de lo que queremos animar*/
#box-6{
border-top: 2px solid orangered;
margin-left: 100px;
background-color: springgreen;
animation: 2.5s ease both; /*se indica la animación en la caja propia*/
/*tiempo, tipo, a qué elementos se aplica*/
}
@keyframes slide {
0%{
transform: translateX(0%);
opacity: 0;
}
25%{
transform: rotate(45deg) translateX(-50%);
opacity: 0.25;
}
50%{
transform: rotate(90deg) translateX(-50%);
opacity: 0.5;
}
75%{
transform: rotate(120deg) translateX(-50%);
opacity: 0.75;
}
100%{
transform: rotate(180deg) translateX(-50%);
opacity: 1;
}
}
#box-6:hover{ /*al pasar el cursor se hace la animación*/
animation-name: slide;
}
/*SIM ACOSTAO*/
.person{
background-color:orange;
}
.person div{
border: 1px solid black;
padding: 30px;
background-color: beige;
display: inline-block;
}
#pillow{
background-color: green;
transform: scale(0.4, 0.4) skew(40deg, 140deg) rotate(90deg);
position: absolute;
left:0%;
top:65%;
}
#face{
border-radius: 50%;
}
#chest{
transform: scale(2, 0.75);
margin-left:30px;
}
#left-arm{
transform: scale(1, 0.25) rotate(20deg);
position: absolute;
left:10%;
top:70%;
}
#right-arm{
transform: scale(1, 0.25) rotate(340deg);
position: absolute;
left:10%;
top:61%;
}
#left-leg{
transform: scale(1, 0.25) rotate(10deg);
position: absolute;
left:18%;
top:69%;
}
#right-leg{
transform: scale(1, 0.25) rotate(350deg);
position: absolute;
left:18%;
top:62%;
} | 0.539711 | 0.217234 |
:root {
--green: #00674B;
--white: #f8f8f8;
--black: #272727;
}
html {
/* border-box box model allows us to add padding and border to our elements without increasing their size */
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
/* BODY */
body {
letter-spacing: -1px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 15px;
line-height: 1.5;
margin: 0;
padding: 0;
}
/* HEADER */
header {
background-color: var(--green);
height: 100px;
padding-top: 10px;
}
header .container {
width: 80%;
margin: 0 auto;
overflow: hidden;
}
/* Logo */
header .container .menu .logo {
color: var(--white);
font-size: 50px;
font-weight: 700;
text-decoration: none;
}
/* Navigation */
.menu nav {
float: right;
}
.menu nav ul {
float: left;
list-style: none;
margin: 0;
width: fit-content;
}
.menu nav ul li {
display: block;
float: left;
list-style: none;
padding: 0 10px;
}
.nav-links {
margin-top: 30px;
}
.menu nav ul li a {
text-decoration: none;
color: var(--white);
font-size: 16px;
text-transform: uppercase;
}
/* Search Bar */
header .container .menu nav .form {
margin-top: 15px;
}
header .container .menu nav form input[type=text] {
background-image: url("../imgs/3-512.png");
background-size: 20px;
background-repeat: no-repeat;
background-position: 4px 7px;
padding: 8px 10px 8px 25px;
border-radius: 27px;
margin-top: 8px;
margin-bottom: 8px;
outline: none;
width: 160px;
transition: width 0.3s ease-in-out;
-webkit-transition: width 0.3s ease-in-out;
-moz-transition: width 0.3s ease-in-out;
-ms-transition: width 0.3s ease-in-out;
-o-transition: width 0.3s ease-in-out;
}
header .container .menu nav form input[type=text]:focus {
width: 250px;
}
/* ACCOUNT SECTION */
#create {
margin-top: 40px;
height: 600px;
}
.box {
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 40px;
background: var(--green);
box-sizing: border-box;
box-shadow: 0 15px 25px rgba(0, 0, 0, .5);
border-radius: 10px;
}
.box h2 {
margin: 0 0 30px;
padding: 0;
color: var(--white);
text-align: center;
}
.box .inputBox {
position: relative;
}
.box .inputBox input {
width: 100%;
padding: 10px 0;
font-size: 16px;
color: var(--green);
letter-spacing: 1px;
margin-bottom: 30px;
border: none;
border-bottom: 1px solid var(--green);
outline: none;
background: transparent;
}
.box .inputBox label {
position: absolute;
top: 0;
left: 0;
padding: 1px 0;
font-size: 18px;
color: var(--green);
pointer-events: none;
transition: .5s;
}
.box .inputBox input:focus~label,
.box .inputBox input:valid~label {
top: -18px;
left: 0;
color: #03a9f4;
font-size: 12px;
}
.box input[type="submit"] {
background: transparent;
border: none;
outline: none;
color: var(--white);
background: var(--green);
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
}
#button {
width: 250px;
padding: 10px;
border-radius: 5px;
outline: 0px;
}
#ph {
outline: 0px;
width: 75px;
padding: 5px;
border-radius: 5px;
}
#phone {
width: 180px;
padding: 5px;
border-radius: 5px;
outline: 0px;
}
#but {
color: var(--black);
font-size: 18px;
}
#butt {
width: 390px;
padding: 10px;
border-radius: 10px;
outline: 0px;
background-color: var(--white);
border: 2px solid var(--green);
color: var(--green);
font-size: 18px;
}
#butt:hover {
padding: 0.5rem 1.5rem;
background: var(--green);
color: var(--white);
text-align: center;
border: 2px solid var(--green);
transition: all 0.5s ease-out;
}
/* FOOTER */
footer {
background-color: var(--green);
color: var(--white);
}
footer .container {
padding: 40px;
}
.address {
font-size: 1rem;
letter-spacing: 1px;
list-style: none;
line-height: 30px;
}
ul .copyright {
font-size: 17px;
font-weight: bold;
text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
footer .more-info {
padding-left: 200px;
}
}
@media only screen and (min-width: 1000px) {
footer .more-info {
padding-left: 300px;
}
}
@media only screen and (min-width: 1440px) {
footer .more-info {
padding-left: 520px;
}
} | assets/css/accounts.css | :root {
--green: #00674B;
--white: #f8f8f8;
--black: #272727;
}
html {
/* border-box box model allows us to add padding and border to our elements without increasing their size */
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
/* BODY */
body {
letter-spacing: -1px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 15px;
line-height: 1.5;
margin: 0;
padding: 0;
}
/* HEADER */
header {
background-color: var(--green);
height: 100px;
padding-top: 10px;
}
header .container {
width: 80%;
margin: 0 auto;
overflow: hidden;
}
/* Logo */
header .container .menu .logo {
color: var(--white);
font-size: 50px;
font-weight: 700;
text-decoration: none;
}
/* Navigation */
.menu nav {
float: right;
}
.menu nav ul {
float: left;
list-style: none;
margin: 0;
width: fit-content;
}
.menu nav ul li {
display: block;
float: left;
list-style: none;
padding: 0 10px;
}
.nav-links {
margin-top: 30px;
}
.menu nav ul li a {
text-decoration: none;
color: var(--white);
font-size: 16px;
text-transform: uppercase;
}
/* Search Bar */
header .container .menu nav .form {
margin-top: 15px;
}
header .container .menu nav form input[type=text] {
background-image: url("../imgs/3-512.png");
background-size: 20px;
background-repeat: no-repeat;
background-position: 4px 7px;
padding: 8px 10px 8px 25px;
border-radius: 27px;
margin-top: 8px;
margin-bottom: 8px;
outline: none;
width: 160px;
transition: width 0.3s ease-in-out;
-webkit-transition: width 0.3s ease-in-out;
-moz-transition: width 0.3s ease-in-out;
-ms-transition: width 0.3s ease-in-out;
-o-transition: width 0.3s ease-in-out;
}
header .container .menu nav form input[type=text]:focus {
width: 250px;
}
/* ACCOUNT SECTION */
#create {
margin-top: 40px;
height: 600px;
}
.box {
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 40px;
background: var(--green);
box-sizing: border-box;
box-shadow: 0 15px 25px rgba(0, 0, 0, .5);
border-radius: 10px;
}
.box h2 {
margin: 0 0 30px;
padding: 0;
color: var(--white);
text-align: center;
}
.box .inputBox {
position: relative;
}
.box .inputBox input {
width: 100%;
padding: 10px 0;
font-size: 16px;
color: var(--green);
letter-spacing: 1px;
margin-bottom: 30px;
border: none;
border-bottom: 1px solid var(--green);
outline: none;
background: transparent;
}
.box .inputBox label {
position: absolute;
top: 0;
left: 0;
padding: 1px 0;
font-size: 18px;
color: var(--green);
pointer-events: none;
transition: .5s;
}
.box .inputBox input:focus~label,
.box .inputBox input:valid~label {
top: -18px;
left: 0;
color: #03a9f4;
font-size: 12px;
}
.box input[type="submit"] {
background: transparent;
border: none;
outline: none;
color: var(--white);
background: var(--green);
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
}
#button {
width: 250px;
padding: 10px;
border-radius: 5px;
outline: 0px;
}
#ph {
outline: 0px;
width: 75px;
padding: 5px;
border-radius: 5px;
}
#phone {
width: 180px;
padding: 5px;
border-radius: 5px;
outline: 0px;
}
#but {
color: var(--black);
font-size: 18px;
}
#butt {
width: 390px;
padding: 10px;
border-radius: 10px;
outline: 0px;
background-color: var(--white);
border: 2px solid var(--green);
color: var(--green);
font-size: 18px;
}
#butt:hover {
padding: 0.5rem 1.5rem;
background: var(--green);
color: var(--white);
text-align: center;
border: 2px solid var(--green);
transition: all 0.5s ease-out;
}
/* FOOTER */
footer {
background-color: var(--green);
color: var(--white);
}
footer .container {
padding: 40px;
}
.address {
font-size: 1rem;
letter-spacing: 1px;
list-style: none;
line-height: 30px;
}
ul .copyright {
font-size: 17px;
font-weight: bold;
text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
footer .more-info {
padding-left: 200px;
}
}
@media only screen and (min-width: 1000px) {
footer .more-info {
padding-left: 300px;
}
}
@media only screen and (min-width: 1440px) {
footer .more-info {
padding-left: 520px;
}
} | 0.345547 | 0.125842 |
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,300);
body {
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 1em;
}
h1, h2, h3 {
margin-top: 0;
font-weight: 400;
}
p {
font-size: 1.05em;
color: #444;
}
a {
/* color: #6090b0; */
color: #444;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
code {
display: inherit;
border: 0;
}
ul {
padding-left: 20px;
display: block;
}
pre {
display: block;
background-color: #f2f2f2;
}
/* Header */
header, nav {
margin-top: 26px;
}
header h1, header img {
display: inline-block;
vertical-align: middle;
line-height: 1.3em;
font-size: 1.3em;
margin: 0;
}
header img {
margin: -4px 10px 0 0;
}
header a {
margin-top: 26px;
text-decoration: none;
color: #630B0B;
font-weight: 700;
}
/* Main Navigation */
nav li {
display: inline-block;
list-style: none;
text-align: center;
vertical-align: middle;
line-height: .91em;
font-size: .91em;
}
nav li.twitter a {
padding-right: 0;
}
nav li.twitter img {
border-width: 0;
}
nav ul {
margin: 0 0 28px 0;
padding: 0;
float: right;
}
nav a {
text-decoration: none;
font-weight: 700;
color: #777;
padding: 0 25px;
}
body.home nav:after {
height: auto;
background-color: transparent;
content: url(img/messy.png);
position: absolute;
display: block;
right: 0;
top: 70px;
}
body.home nav {
position: relative;
}
/* Blog Posts */
#blogposts, #links {
margin: 25px 0;
}
#blogposts:before {
margin-top: -25px;
height: 1px;
}
#blogposts ul.posts {
list-style-type: none;
padding: 0;
font-size: 90%;
}
#blogposts ul.posts a {
color: inherit;
}
#blogposts ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 75%;
}
/* Footer */
footer {
font-size: .7em;
text-align: center;
margin: 70px 0 20px 0;
}
footer:before {
margin-top: -25px;
height: 1px;
}
body.home footer {
margin-top: 25px;
}
body.home footer:before {
display: none;
}
/* Grey Background - General Styles */
#blogposts:before, footer:before {
display: block;
content: "";
background-color: #EDEDED;
position: absolute;
left: 0;
right: 0;
z-index: -1;
width: 100%;
}
@media handheld and (max-width: 480px) , screen and (max-device-width: 480px) , screen and (max-width: 600px) {
body.home nav:after {
display: none
}
header, nav {
text-align: center
}
nav ul {
float: none
}
nav a {
padding: 0 25px 0 0
}
} | css/style.css | @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,300);
body {
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 1em;
}
h1, h2, h3 {
margin-top: 0;
font-weight: 400;
}
p {
font-size: 1.05em;
color: #444;
}
a {
/* color: #6090b0; */
color: #444;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
code {
display: inherit;
border: 0;
}
ul {
padding-left: 20px;
display: block;
}
pre {
display: block;
background-color: #f2f2f2;
}
/* Header */
header, nav {
margin-top: 26px;
}
header h1, header img {
display: inline-block;
vertical-align: middle;
line-height: 1.3em;
font-size: 1.3em;
margin: 0;
}
header img {
margin: -4px 10px 0 0;
}
header a {
margin-top: 26px;
text-decoration: none;
color: #630B0B;
font-weight: 700;
}
/* Main Navigation */
nav li {
display: inline-block;
list-style: none;
text-align: center;
vertical-align: middle;
line-height: .91em;
font-size: .91em;
}
nav li.twitter a {
padding-right: 0;
}
nav li.twitter img {
border-width: 0;
}
nav ul {
margin: 0 0 28px 0;
padding: 0;
float: right;
}
nav a {
text-decoration: none;
font-weight: 700;
color: #777;
padding: 0 25px;
}
body.home nav:after {
height: auto;
background-color: transparent;
content: url(img/messy.png);
position: absolute;
display: block;
right: 0;
top: 70px;
}
body.home nav {
position: relative;
}
/* Blog Posts */
#blogposts, #links {
margin: 25px 0;
}
#blogposts:before {
margin-top: -25px;
height: 1px;
}
#blogposts ul.posts {
list-style-type: none;
padding: 0;
font-size: 90%;
}
#blogposts ul.posts a {
color: inherit;
}
#blogposts ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 75%;
}
/* Footer */
footer {
font-size: .7em;
text-align: center;
margin: 70px 0 20px 0;
}
footer:before {
margin-top: -25px;
height: 1px;
}
body.home footer {
margin-top: 25px;
}
body.home footer:before {
display: none;
}
/* Grey Background - General Styles */
#blogposts:before, footer:before {
display: block;
content: "";
background-color: #EDEDED;
position: absolute;
left: 0;
right: 0;
z-index: -1;
width: 100%;
}
@media handheld and (max-width: 480px) , screen and (max-device-width: 480px) , screen and (max-width: 600px) {
body.home nav:after {
display: none
}
header, nav {
text-align: center
}
nav ul {
float: none
}
nav a {
padding: 0 25px 0 0
}
} | 0.21101 | 0.049474 |
section.module:last-child {
margin-bottom: 0;
}
section.module h2 {
margin-bottom: 40px;
font-family: "Roboto Slab", serif;
font-size: 30px;
}
section.module p {
margin-bottom: 40px;
font-size: 16px;
font-weight: 300;
}
section.module p:last-child {
margin-bottom: 0;
}
section.module.content {
padding: 40px 0;
}
@media all and (min-width: 600px) {
section.module h2 {
font-size: 42px;
}
section.module p {
font-size: 20px;
}
}
/* ============================================================
Custom style
============================================================ */
.navbar-default {
background-color: #E5B243;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #DAA520;
}
.navbar-default .navbar-toggle {
border-color: #DAA520;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
background-color: #DAA520;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #1B70B7;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #1B70B7;
}
.nav > li > a {
padding: 20px 10px;
}
.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
max-height: 380px;
}
.carousel-indicators li {
border: 1px solid #1B70B7;
}
.carousel-indicators .active {
background-color: #E5B243;
}
.btn-success {
background-color: #1B70B7;
border-color: #1B70B7;
}
.btn-success:hover {
background-color: #2b4fc7;
border-color: #263E8F;
}
.btn-success:focus, .btn-success.focus {
background-color: #3031C9;
border-color: #0A0A48;
}
.scroll-top .btn {
line-height: 22px;
padding-left: 28%;
}
input {
padding: 0 !important;
}
.portfolio-modal .modal-content {
padding: 50px 0px;
}
.fa-futbol-o {
color: white;
}
.img-brand {
margin-top: -20px;
}
@media (min-width: 300px) and (max-width: 384px) {
.logo-brand {
margin-left: 50px;
margin-top: -50px;
}
}
@media (min-width: 200px) and (max-width: 767px) {
.img-brand {
width: 35px;
height: 54px;
margin-top: -16px !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.title {
margin-top: 40px;
}
}
@media (min-width: 991px) and (max-width: 1199px) {
.title {
margin-top: 30px;
}
}
.divNombre {
padding: 10px 10px 0px;
font-size: 12px;
}
.salida {
color: #fff;
}
.vinculo:hover {
color: #2C3E50;
text-decoration: none;
}
/* ============================================================
Mapa Google
============================================================ */
.gmap {
text-align: left;
color: #000;
}
#gmap_canvas img {
max-width: none !important;
background: none !important;
}
/* ============================================================
Boton Select
============================================================ */
.btn-select {
color: #ACB6C0;
background-color: #FFF;
border-color: #FFF;
margin-left: -15px !important;
margin-top: -5px;
}
.btn-select:hover, .btn-select:focus {
color: #2C3E50;
}
.bs-caret {
color: #1B70B7;
}
.open {
margin-left: -15px;
}
.pull-left {
font-size: 1.5em;
opacity: 1;
}
.dropdown-menu {
margin-top: 7px;
}
.dropup .dropdown-menu {
margin-bottom: 7px;
}
.has-error .bootstrap-select .dropdown-toggle, .error .bootstrap-select .dropdown-toggle {
border-color: #FFF !important;
} | css/style.css | section.module:last-child {
margin-bottom: 0;
}
section.module h2 {
margin-bottom: 40px;
font-family: "Roboto Slab", serif;
font-size: 30px;
}
section.module p {
margin-bottom: 40px;
font-size: 16px;
font-weight: 300;
}
section.module p:last-child {
margin-bottom: 0;
}
section.module.content {
padding: 40px 0;
}
@media all and (min-width: 600px) {
section.module h2 {
font-size: 42px;
}
section.module p {
font-size: 20px;
}
}
/* ============================================================
Custom style
============================================================ */
.navbar-default {
background-color: #E5B243;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #DAA520;
}
.navbar-default .navbar-toggle {
border-color: #DAA520;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
background-color: #DAA520;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #1B70B7;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #1B70B7;
}
.nav > li > a {
padding: 20px 10px;
}
.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
max-height: 380px;
}
.carousel-indicators li {
border: 1px solid #1B70B7;
}
.carousel-indicators .active {
background-color: #E5B243;
}
.btn-success {
background-color: #1B70B7;
border-color: #1B70B7;
}
.btn-success:hover {
background-color: #2b4fc7;
border-color: #263E8F;
}
.btn-success:focus, .btn-success.focus {
background-color: #3031C9;
border-color: #0A0A48;
}
.scroll-top .btn {
line-height: 22px;
padding-left: 28%;
}
input {
padding: 0 !important;
}
.portfolio-modal .modal-content {
padding: 50px 0px;
}
.fa-futbol-o {
color: white;
}
.img-brand {
margin-top: -20px;
}
@media (min-width: 300px) and (max-width: 384px) {
.logo-brand {
margin-left: 50px;
margin-top: -50px;
}
}
@media (min-width: 200px) and (max-width: 767px) {
.img-brand {
width: 35px;
height: 54px;
margin-top: -16px !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.title {
margin-top: 40px;
}
}
@media (min-width: 991px) and (max-width: 1199px) {
.title {
margin-top: 30px;
}
}
.divNombre {
padding: 10px 10px 0px;
font-size: 12px;
}
.salida {
color: #fff;
}
.vinculo:hover {
color: #2C3E50;
text-decoration: none;
}
/* ============================================================
Mapa Google
============================================================ */
.gmap {
text-align: left;
color: #000;
}
#gmap_canvas img {
max-width: none !important;
background: none !important;
}
/* ============================================================
Boton Select
============================================================ */
.btn-select {
color: #ACB6C0;
background-color: #FFF;
border-color: #FFF;
margin-left: -15px !important;
margin-top: -5px;
}
.btn-select:hover, .btn-select:focus {
color: #2C3E50;
}
.bs-caret {
color: #1B70B7;
}
.open {
margin-left: -15px;
}
.pull-left {
font-size: 1.5em;
opacity: 1;
}
.dropdown-menu {
margin-top: 7px;
}
.dropup .dropdown-menu {
margin-bottom: 7px;
}
.has-error .bootstrap-select .dropdown-toggle, .error .bootstrap-select .dropdown-toggle {
border-color: #FFF !important;
} | 0.250363 | 0.091139 |
height: auto;
width: auto;
}
.background-image {
background: url('../images/main_slider_1.jpg');
background-position: 40% 60%;
background-repeat: no-repeat;
background-size: cover;
background-attachment: local;
}
.no-data-container {
width: 100%;
margin-top: 30px;
text-align: center;
background-color: white;
}
.no-data-listing {
width: 100%;
height: 280px;
margin-top: 50px;
text-align: center;
background-color: white;
padding: 50px;
}
.no-data-listing>.no-offer {
font-size: 44px;
padding-top: 55px;
font-style: italic;
}
#not-found-page {
width: 100%;
margin-top: 10em;
text-align: center;
background-color: white;
padding: 50px;
}
#not-found-page>h1 {
font-size: 60px;
margin-bottom: 10px;
font-style: italic;
}
#not-found-page>p {
font-size: 40px;
margin-bottom: 10px;
font-style: italic;
}
.no-data {
font-size: 44px;
font-style: italic;
}
.no-data-img {
box-shadow: 0px -2px 20px -1px #f4c537, inset -14px -14px 30px -13px rgb(0 0 0 / 55%);
opacity: 0.95;
width: 100%;
height: 10%;
margin-bottom: 10px;
}
#top-houses {
text-align: center;
position: relative;
padding-bottom: 4%;
background: white;
}
.home-container {
margin: 0px auto 4px 0;
height: 700px;
display: flex;
top: 0%;
left: 50%;
margin-left: 40px;
text-align: center;
}
.info {
justify-items: legacy;
display: flex;
flex-direction: column;
position: relative;
flex: 1;
margin-top: 15em;
max-width: 100%;
}
.info>h1 {
font-size: 5.3rem;
margin: 12px 0 0px;
position: relative;
font-weight: 700;
line-height: 1.1;
text-transform: uppercase;
padding: 0;
letter-spacing: 0px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(234, 236, 250);
}
.info>h2 {
font-size: 1.5rem;
font-weight: 700;
text-transform: uppercase;
padding: 0;
letter-spacing: 0px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(234, 236, 250);
}
#top-houses>h1 {
font-size: 53px;
font-weight: 700;
margin-top: 30px;
padding-top: 10px;
margin-bottom: 20px;
width: 100%;
text-align: center;
font-family: 'Raleway', sans-serif;
color: rgba(42, 42, 46, 0.85);
}
.houses {
display: flex;
flex-wrap: wrap;
text-align: center;
justify-content: space-evenly;
width: 100%;
}
.details-con {
display: none;
margin-top: 320px;
position: absolute;
text-align: right;
width: 100%;
z-index: 9999;
}
.card-home {
background-color: #fff;
bottom: 0;
box-shadow: 0px 0px 40px 4px rgba(77, 77, 240, 0.315);
height: 400px;
margin-top: 20px;
left: 0;
overflow: hidden;
position: relative;
right: 0;
top: 0;
width: 500px;
margin-left: -1em;
text-align: center;
}
.card-home>h2 {
color: #0c0c41;
font-family: 'Raleway', sans-serif;
font-size: 22px;
font-weight: 200;
margin-top: 330px;
position: absolute;
text-align: center;
width: 100%;
z-index: 9999;
}
.card-home:hover h2 {
background: #3487f7;
color: #fff;
margin-top: 150px;
padding: 5px;
}
.card-home:hover .card_image {
background-size: cover;
border-radius: 0;
margin-top: -120px;
}
.card_image {
background-color: #eef2f7;
background-size: cover;
height: 470px;
margin-left: -55px;
margin-top: -170px;
position: absolute;
width: 560px;
}
.card:hover {
height: 430px;
width: 500px;
}
.card:hover .cta-container {
display: inline;
margin-top: 390px;
}
.card:hover .card_circle {
background-size: cover;
border-radius: 0;
margin-top: -130px;
}
.card_image>img {
width: 100%;
height: 100%;
}
.card-home:hover {
height: 430px;
width: 500px;
}
.card-home:hover .cta-container {
display: inline;
margin-top: 390px;
}
.card-home:hover .card_circle {
background-size: cover;
border-radius: 0;
margin-top: -130px;
}
.details-link {
-webkit-transition: 0.2s ease-out;
border: 2px solid #3487f7;
border-radius: 2px;
color: #3487f7;
display: inline-block;
font-family: 'Raleway', sans-serif;
font-size: 17px;
font-weight: 400;
height: 36px;
letter-spacing: 0.5px;
line-height: 36px;
padding: 0 2rem;
text-align: center;
margin-left: -1em;
text-decoration: none;
text-transform: uppercase;
transition: 0.2s ease-out;
}
.details-link:hover {
background-color: #3487f7;
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
color: #fff;
} | Express-Retake-20-8-2021-Tested/express-exam-retake/static/css/home.css | height: auto;
width: auto;
}
.background-image {
background: url('../images/main_slider_1.jpg');
background-position: 40% 60%;
background-repeat: no-repeat;
background-size: cover;
background-attachment: local;
}
.no-data-container {
width: 100%;
margin-top: 30px;
text-align: center;
background-color: white;
}
.no-data-listing {
width: 100%;
height: 280px;
margin-top: 50px;
text-align: center;
background-color: white;
padding: 50px;
}
.no-data-listing>.no-offer {
font-size: 44px;
padding-top: 55px;
font-style: italic;
}
#not-found-page {
width: 100%;
margin-top: 10em;
text-align: center;
background-color: white;
padding: 50px;
}
#not-found-page>h1 {
font-size: 60px;
margin-bottom: 10px;
font-style: italic;
}
#not-found-page>p {
font-size: 40px;
margin-bottom: 10px;
font-style: italic;
}
.no-data {
font-size: 44px;
font-style: italic;
}
.no-data-img {
box-shadow: 0px -2px 20px -1px #f4c537, inset -14px -14px 30px -13px rgb(0 0 0 / 55%);
opacity: 0.95;
width: 100%;
height: 10%;
margin-bottom: 10px;
}
#top-houses {
text-align: center;
position: relative;
padding-bottom: 4%;
background: white;
}
.home-container {
margin: 0px auto 4px 0;
height: 700px;
display: flex;
top: 0%;
left: 50%;
margin-left: 40px;
text-align: center;
}
.info {
justify-items: legacy;
display: flex;
flex-direction: column;
position: relative;
flex: 1;
margin-top: 15em;
max-width: 100%;
}
.info>h1 {
font-size: 5.3rem;
margin: 12px 0 0px;
position: relative;
font-weight: 700;
line-height: 1.1;
text-transform: uppercase;
padding: 0;
letter-spacing: 0px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(234, 236, 250);
}
.info>h2 {
font-size: 1.5rem;
font-weight: 700;
text-transform: uppercase;
padding: 0;
letter-spacing: 0px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(234, 236, 250);
}
#top-houses>h1 {
font-size: 53px;
font-weight: 700;
margin-top: 30px;
padding-top: 10px;
margin-bottom: 20px;
width: 100%;
text-align: center;
font-family: 'Raleway', sans-serif;
color: rgba(42, 42, 46, 0.85);
}
.houses {
display: flex;
flex-wrap: wrap;
text-align: center;
justify-content: space-evenly;
width: 100%;
}
.details-con {
display: none;
margin-top: 320px;
position: absolute;
text-align: right;
width: 100%;
z-index: 9999;
}
.card-home {
background-color: #fff;
bottom: 0;
box-shadow: 0px 0px 40px 4px rgba(77, 77, 240, 0.315);
height: 400px;
margin-top: 20px;
left: 0;
overflow: hidden;
position: relative;
right: 0;
top: 0;
width: 500px;
margin-left: -1em;
text-align: center;
}
.card-home>h2 {
color: #0c0c41;
font-family: 'Raleway', sans-serif;
font-size: 22px;
font-weight: 200;
margin-top: 330px;
position: absolute;
text-align: center;
width: 100%;
z-index: 9999;
}
.card-home:hover h2 {
background: #3487f7;
color: #fff;
margin-top: 150px;
padding: 5px;
}
.card-home:hover .card_image {
background-size: cover;
border-radius: 0;
margin-top: -120px;
}
.card_image {
background-color: #eef2f7;
background-size: cover;
height: 470px;
margin-left: -55px;
margin-top: -170px;
position: absolute;
width: 560px;
}
.card:hover {
height: 430px;
width: 500px;
}
.card:hover .cta-container {
display: inline;
margin-top: 390px;
}
.card:hover .card_circle {
background-size: cover;
border-radius: 0;
margin-top: -130px;
}
.card_image>img {
width: 100%;
height: 100%;
}
.card-home:hover {
height: 430px;
width: 500px;
}
.card-home:hover .cta-container {
display: inline;
margin-top: 390px;
}
.card-home:hover .card_circle {
background-size: cover;
border-radius: 0;
margin-top: -130px;
}
.details-link {
-webkit-transition: 0.2s ease-out;
border: 2px solid #3487f7;
border-radius: 2px;
color: #3487f7;
display: inline-block;
font-family: 'Raleway', sans-serif;
font-size: 17px;
font-weight: 400;
height: 36px;
letter-spacing: 0.5px;
line-height: 36px;
padding: 0 2rem;
text-align: center;
margin-left: -1em;
text-decoration: none;
text-transform: uppercase;
transition: 0.2s ease-out;
}
.details-link:hover {
background-color: #3487f7;
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
color: #fff;
} | 0.466846 | 0.071267 |
@import url("https://fonts.googleapis.com/css?family=Finger+Paint");
/* line 3, ../sass/base/_base.scss */
body {
background-image: url("../img/bg.png");
}
/* line 7, ../sass/base/_base.scss */
.section-padding {
padding: 30px 0 30px 0;
}
/* line 10, ../sass/base/_base.scss */
.heading {
padding-bottom: 30px;
text-transform: uppercase;
font-weight: bold;
font-family: 'Finger Paint', cursive;
}
/* line 17, ../sass/base/_base.scss */
.primary_btn {
background-color: #FFD700;
padding: 10px;
width: 150px;
text-transform: uppercase;
font-weight: bold;
border: 2px solid #000;
transition: 0.5s;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.25), 0 17px 50px 0 rgba(0, 0, 0, 0.25);
color: #222222;
margin: 15px 0;
}
/* line 30, ../sass/base/_base.scss */
.primary_btn:hover {
background-color: #222222;
border-color: #FFD700;
color: #FFD700;
box-shadow: none;
}
/* line 1, ../sass/module/_navbar.scss */
.navbar {
border-radius: 0;
}
/* line 3, ../sass/module/_navbar.scss */
.navbar .navbar-brand {
color: #fff;
}
/* line 8, ../sass/module/_navbar.scss */
.navbar .navbar-collapse ul li a {
color: #fff;
text-transform: uppercase;
}
/* line 2, ../sass/module/_gallery.scss */
.gallery img {
padding: 10px 0;
}
/* line 1, ../sass/module/_social-media.scss */
.wrp {
text-align: center;
height: 100%;
width: 100%;
background-color: #222222;
}
/* line 7, ../sass/module/_social-media.scss */
.wrp::before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
/* line 13, ../sass/module/_social-media.scss */
.icon {
display: inline-block;
font-size: 20px;
line-height: 50px;
height: 50px;
width: 50px;
margin-right: 20px;
color: #4099ff;
border-radius: 100%;
position: relative;
}
/* line 24, ../sass/module/_social-media.scss */
.icon::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-radius: 100%;
background: rgba(0, 0, 0, 0.1);
z-index: -1;
}
/* line 35, ../sass/module/_social-media.scss */
.icon::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
vertical-align: middle;
width: 100%;
height: 100%;
transform: scale(0);
background: #4099ff;
border-radius: 100%;
z-index: -1;
}
/* line 51, ../sass/module/_social-media.scss */
.icon:hover {
animation-name: bubble2;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;
}
/* line 57, ../sass/module/_social-media.scss */
.icon:hover::after {
animation-name: bubble;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
/* line 62, ../sass/module/_social-media.scss */
.icon-twitter {
color: #4099ff;
}
/* line 65, ../sass/module/_social-media.scss */
.icon-twitter::after {
background: #4099ff;
}
/* line 68, ../sass/module/_social-media.scss */
.icon-facebook {
color: #3b5998;
}
/* line 71, ../sass/module/_social-media.scss */
.icon-facebook::after {
background: #3b5998;
}
/* line 74, ../sass/module/_social-media.scss */
.icon-instagram {
color: #3f729b;
}
/* line 77, ../sass/module/_social-media.scss */
.icon-instagram::after {
background: #3f729b;
}
/* line 80, ../sass/module/_social-media.scss */
.icon-gplus {
color: #dc4e41;
}
/* line 83, ../sass/module/_social-media.scss */
.icon-gplus::after {
background: #dc4e41;
}
@-moz-keyframes bubble {
100% {
transform: scale(1);
}
}
@-webkit-keyframes bubble {
100% {
transform: scale(1);
}
}
@-o-keyframes bubble {
100% {
transform: scale(1);
}
}
@keyframes bubble {
100% {
transform: scale(1);
}
}
@-moz-keyframes bubble2 {
100% {
color: #fff;
}
}
@-webkit-keyframes bubble2 {
100% {
color: #fff;
}
}
@-o-keyframes bubble2 {
100% {
color: #fff;
}
}
@keyframes bubble2 {
100% {
color: #fff;
}
}
/* line 2, ../sass/module/pages/_abt-page.scss */
.about_page img {
margin: 10px 0;
} | public/frontend/stylesheets/main.css | @import url("https://fonts.googleapis.com/css?family=Finger+Paint");
/* line 3, ../sass/base/_base.scss */
body {
background-image: url("../img/bg.png");
}
/* line 7, ../sass/base/_base.scss */
.section-padding {
padding: 30px 0 30px 0;
}
/* line 10, ../sass/base/_base.scss */
.heading {
padding-bottom: 30px;
text-transform: uppercase;
font-weight: bold;
font-family: 'Finger Paint', cursive;
}
/* line 17, ../sass/base/_base.scss */
.primary_btn {
background-color: #FFD700;
padding: 10px;
width: 150px;
text-transform: uppercase;
font-weight: bold;
border: 2px solid #000;
transition: 0.5s;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.25), 0 17px 50px 0 rgba(0, 0, 0, 0.25);
color: #222222;
margin: 15px 0;
}
/* line 30, ../sass/base/_base.scss */
.primary_btn:hover {
background-color: #222222;
border-color: #FFD700;
color: #FFD700;
box-shadow: none;
}
/* line 1, ../sass/module/_navbar.scss */
.navbar {
border-radius: 0;
}
/* line 3, ../sass/module/_navbar.scss */
.navbar .navbar-brand {
color: #fff;
}
/* line 8, ../sass/module/_navbar.scss */
.navbar .navbar-collapse ul li a {
color: #fff;
text-transform: uppercase;
}
/* line 2, ../sass/module/_gallery.scss */
.gallery img {
padding: 10px 0;
}
/* line 1, ../sass/module/_social-media.scss */
.wrp {
text-align: center;
height: 100%;
width: 100%;
background-color: #222222;
}
/* line 7, ../sass/module/_social-media.scss */
.wrp::before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
/* line 13, ../sass/module/_social-media.scss */
.icon {
display: inline-block;
font-size: 20px;
line-height: 50px;
height: 50px;
width: 50px;
margin-right: 20px;
color: #4099ff;
border-radius: 100%;
position: relative;
}
/* line 24, ../sass/module/_social-media.scss */
.icon::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-radius: 100%;
background: rgba(0, 0, 0, 0.1);
z-index: -1;
}
/* line 35, ../sass/module/_social-media.scss */
.icon::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
vertical-align: middle;
width: 100%;
height: 100%;
transform: scale(0);
background: #4099ff;
border-radius: 100%;
z-index: -1;
}
/* line 51, ../sass/module/_social-media.scss */
.icon:hover {
animation-name: bubble2;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;
}
/* line 57, ../sass/module/_social-media.scss */
.icon:hover::after {
animation-name: bubble;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
/* line 62, ../sass/module/_social-media.scss */
.icon-twitter {
color: #4099ff;
}
/* line 65, ../sass/module/_social-media.scss */
.icon-twitter::after {
background: #4099ff;
}
/* line 68, ../sass/module/_social-media.scss */
.icon-facebook {
color: #3b5998;
}
/* line 71, ../sass/module/_social-media.scss */
.icon-facebook::after {
background: #3b5998;
}
/* line 74, ../sass/module/_social-media.scss */
.icon-instagram {
color: #3f729b;
}
/* line 77, ../sass/module/_social-media.scss */
.icon-instagram::after {
background: #3f729b;
}
/* line 80, ../sass/module/_social-media.scss */
.icon-gplus {
color: #dc4e41;
}
/* line 83, ../sass/module/_social-media.scss */
.icon-gplus::after {
background: #dc4e41;
}
@-moz-keyframes bubble {
100% {
transform: scale(1);
}
}
@-webkit-keyframes bubble {
100% {
transform: scale(1);
}
}
@-o-keyframes bubble {
100% {
transform: scale(1);
}
}
@keyframes bubble {
100% {
transform: scale(1);
}
}
@-moz-keyframes bubble2 {
100% {
color: #fff;
}
}
@-webkit-keyframes bubble2 {
100% {
color: #fff;
}
}
@-o-keyframes bubble2 {
100% {
color: #fff;
}
}
@keyframes bubble2 {
100% {
color: #fff;
}
}
/* line 2, ../sass/module/pages/_abt-page.scss */
.about_page img {
margin: 10px 0;
} | 0.286469 | 0.052522 |
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
body {
padding-top: 3rem;
padding-bottom: 3rem;
color: #5a5a5a;
font-family: 'Roboto';
}
object {
padding: 30px;
}
#heading {
text-align: center;
}
#title {
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
background-color: royalblue;
color: whitesmoke;
}
#subTitle {
padding-left: 80px;
padding-top: 40px;
}
h3 {
padding: 30px;
}
p {
padding-left: 30px;
}
#link {
padding-left: 100px;
padding-top: 50px;
}
#video {
padding-left: 50px;
}
#bioDescription {
padding-left: 10%;
padding-right: 30px;
}
#bioPic {
padding-left: 50px;
padding-top: 30px;
}
.bioGrid {
display: grid;
grid-template-columns: 1fr 1fr;
}
/* Cards sytling */
.content {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
padding-left: 50px;
}
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
bottom: 3rem;
z-index: 10;
}
/* Declare heights because of positioning of img element */
.carousel-item {
height: 32rem;
}
.carousel-item > img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 32rem;
padding-bottom: 20px;
}
/* MARKETING CONTENT
-------------------------------------------------- */
/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
margin-bottom: 1.5rem;
text-align: center;
}
.marketing h2 {
font-weight: 400;
}
.marketing .col-lg-4 p {
margin-right: .75rem;
margin-left: .75rem;
}
/* Thin out the marketing headings */
.featurette-heading {
font-weight: 300;
line-height: 1;
letter-spacing: -.05rem;
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 40em) {
/* Bump up size of carousel content */
.carousel-caption p {
margin-bottom: 1.25rem;
font-size: 1.25rem;
line-height: 1.4;
}
}
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
} | carousel.css | -------------------------------------------------- */
/* Padding below the footer and lighter body text */
body {
padding-top: 3rem;
padding-bottom: 3rem;
color: #5a5a5a;
font-family: 'Roboto';
}
object {
padding: 30px;
}
#heading {
text-align: center;
}
#title {
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
background-color: royalblue;
color: whitesmoke;
}
#subTitle {
padding-left: 80px;
padding-top: 40px;
}
h3 {
padding: 30px;
}
p {
padding-left: 30px;
}
#link {
padding-left: 100px;
padding-top: 50px;
}
#video {
padding-left: 50px;
}
#bioDescription {
padding-left: 10%;
padding-right: 30px;
}
#bioPic {
padding-left: 50px;
padding-top: 30px;
}
.bioGrid {
display: grid;
grid-template-columns: 1fr 1fr;
}
/* Cards sytling */
.content {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
padding-left: 50px;
}
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
bottom: 3rem;
z-index: 10;
}
/* Declare heights because of positioning of img element */
.carousel-item {
height: 32rem;
}
.carousel-item > img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 32rem;
padding-bottom: 20px;
}
/* MARKETING CONTENT
-------------------------------------------------- */
/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
margin-bottom: 1.5rem;
text-align: center;
}
.marketing h2 {
font-weight: 400;
}
.marketing .col-lg-4 p {
margin-right: .75rem;
margin-left: .75rem;
}
/* Thin out the marketing headings */
.featurette-heading {
font-weight: 300;
line-height: 1;
letter-spacing: -.05rem;
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 40em) {
/* Bump up size of carousel content */
.carousel-caption p {
margin-bottom: 1.25rem;
font-size: 1.25rem;
line-height: 1.4;
}
}
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
} | 0.466116 | 0.100525 |
.background-interno-3{
height: 100vh;
background: none;
}
.menu-navegacao .segunda-secao img:hover{
transform: scale(1);
border-radius: 1vh;
transition: 1s ease;
}
.sobre-nos .transition-fundo{
width: 100vw;
height: 100vh;
position: absolute;
background: white;
opacity: 1;
z-index: 9;
}
.sobre-nos .imagem-transition-fundo{
display: block;
margin: auto;
}
/* @medias 'retrato' (imagem-transition-fundo) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 500/1000) and (orientation: portrait){
.sobre-nos .imagem-transition-fundo{
width: 35vh;
margin-top: 25vh;
}
}
@media screen and (min-aspect-ratio: 500/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .imagem-transition-fundo{
width: 40vh;
margin-top: 25vh;
}
}
/* @medias 'paisagem' (imagem-transition-fundo) */
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/600) and (orientation: landscape){
.sobre-nos .imagem-transition-fundo{
width: 35vw;
margin-top: 20vh;
}
}
@media screen and (min-aspect-ratio: 1000/600) and (max-aspect-ratio: 1000/500) and (orientation: landscape){
.sobre-nos .imagem-transition-fundo{
width: 30vw;
margin-top: 20vh;
}
}
@media screen and (min-aspect-ratio: 1000/500) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .imagem-transition-fundo{
width: 25vw;
margin-top: 18vh;
}
}
.sobre-nos .background-interno-opaco-1{
height: 35vh;
background: white;
}
.sobre-nos .background-interno-opaco-2{
height: 65vh;
background: rgba(60,60,60,.8);
}
.sobre-nos .bloco-info-1{
background:
linear-gradient(to bottom, white 0%, silver 200%);
font-size: 10vh;
position: absolute;
width: 30vw;
height: 60vh;
top: 38vh;
right: 35vw;
box-shadow: inset 0vh 0vh 1vh .1vh black;
}
.sobre-nos .faixa-1{
background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(0,0,40,1) 100%);
font-size: 10vh;
position: absolute;
width: 100vw;
height: 1vh;
top: 35.1vh;
right: -100vw;
box-shadow: .3vh .1vh .2vh 0vh black;
}
.sobre-nos .faixa-2{
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(70,70,70,1) 100%);
font-size: 10vh;
position: absolute;
width: 100vw;
height: 1vh;
top: 36.5vh;
left: -100vw;
box-shadow: .3vh .1vh .2vh 0vh black;
}
.sobre-nos .faixa-3{
background: none;
font-size: 10vh;
position: absolute;
width: 100vw;
height: .1vh;
top: 35vh;
left: 0;
box-shadow: .1vh .1vh .3vh .1vh black;
}
.sobre-nos .imagem-motivacional-1-div{
width: 100vw;
height: 35vh;
position: absolute;
right: 0;
top: -.5vh;
}
.sobre-nos .imagem-motivacional-1{
width: 44vh;
margin-left: auto;
margin-right: auto;
display: block;
}
@media screen and (min-aspect-ratio: 650/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1-div{
top: 12.5vh
}
}
@media screen and (min-aspect-ratio: 400/1000) and (max-aspect-ratio: 650/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1-div{
top: 10.9vh
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 400/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1-div{
top: 10.9vh
}
}
@media screen and (min-aspect-ratio: 650/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1{
width: 28vh;
}
}
@media screen and (min-aspect-ratio: 400/1000) and (max-aspect-ratio: 650/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1{
width: 30vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 400/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1{
width: 30vh;
}
}
.sobre-nos .imagem-motivacional-2{
width: 8vh;
position: absolute;
left: 17vw;
top: 35vh
}
/* @medias 'retrato' (imagem-motivacional-2) */
@media screen and (min-aspect-ratio: 550/1000) and (max-aspect-ratio: 650/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-2{
width: 7vh;
left: 12vw;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-2{
width: 6vh;
left: 20vw;
}
}
.sobre-nos .imagem-fundo-opaco-1{
position: absolute;
left: 0vw;
top: 35vh;
z-index: -1;
}
.sobre-nos .texto-descritivo-1{
position: absolute;
top: 38vh;
left: 20vh;
width: 120vh;
height: 35vh;
}
/* @medias 'retrato' (texto-descritivo-1) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-1{
display: none;
}
}
/* @medias 'paisagem' (texto-descritivo-1) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
display: none;
}
}
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 78vh;
height: 22vh;
top: 44vh;
left: 16vh;
}
}
@media screen and (min-aspect-ratio: 1000/900) and (max-aspect-ratio: 1000/800) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 90vh;
height: 25vh;
top: 44vh;
left: 16vh;
}
}
@media screen and (min-aspect-ratio: 1000/800) and (max-aspect-ratio: 1000/700) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 104vh;
height: 26vh;
top: 44vh;
left: 16vh;
}
}
@media screen and (min-aspect-ratio: 1000/700) and (max-aspect-ratio: 1000/500) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 112vh;
height: 28vh;
top: 42vh;
left: 20vh;
}
}
@media screen and (min-aspect-ratio: 1000/500) and (max-aspect-ratio: 1000/400) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 140vh;
height: 32vh;
top: 42vh;
left: 20vh;
}
}
@media screen and (min-aspect-ratio: 1000/400) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 140vh;
height: 32vh;
top: 42vh;
left: 35vh;
}
}
.sobre-nos .texto-descritivo-2{
position: absolute;
top: 70vh;
right: 10vh;
width: 90vh;
height: 30vh;
}
/* @medias 'retrato' (texto-descritivo-2) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-2{
display: none;
}
}
/* @medias 'paisagem' (texto-descritivo-2) */
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
display: none;
}
}
@media screen and (min-aspect-ratio: 1000/900) and (max-aspect-ratio: 1000/800) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 70vh;
height: 18vh;
top: 72vh;
right: 5vh;
}
}
@media screen and (min-aspect-ratio: 1000/800) and (max-aspect-ratio: 1000/700) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 70vh;
height: 20vh;
top: 72vh;
right: 5vh;
}
}
@media screen and (min-aspect-ratio: 1000/700) and (max-aspect-ratio: 1000/500) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 90vh;
height: 20vh;
top: 70vh;
right: 10vh;
}
}
@media screen and (min-aspect-ratio: 1000/500) and (max-aspect-ratio: 1000/400) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 100vh;
height: 25vh;
top: 68vh;
right: 10vh;
}
}
@media screen and (min-aspect-ratio: 1000/400) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 100vh;
height: 25vh;
top: 68vh;
right: 20vh;
}
}
.sobre-nos .texto-descritivo-div{
position: absolute;
top: 43vh;
width: 100vw;
}
/* @media 'retrato' (texto-descritivo-div) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-div{
top: 41vh;
}
}
.sobre-nos .texto-descritivo-3{
margin-left: auto;
margin-right: auto;
display: block;
width: 80vh;
}
/* @medias 'retrato' (texto-descritivo-3) */
@media screen and (min-aspect-ratio: 600/1000) and (max-aspect-ratio: 850/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-3{
width: 95vw;
position: absolute;
left: 2vh;
top: 2vh;
}
}
@media screen and (min-aspect-ratio: 550/1000) and (max-aspect-ratio: 600/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-3{
width: 95vw;
position: absolute;
left: 1.5vh;
top: 3vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-3{
display: none;
}
}
/* @medias 'paisagem' (texto-descritivo-3) */
@media screen and (min-aspect-ratio: 1000/899) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .texto-descritivo-3{
display: none;
}
}
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-3{
margin-left: 15vw;
}
}
.sobre-nos .texto-descritivo-4{
margin-left: auto;
margin-right: auto;
display: block;
width: 80vh;
}
/* @medias 'retrato' (texto-descritivo-4) */
@media screen and (min-aspect-ratio: 800/1000) and (max-aspect-ratio: 850/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-4{
width: 95vw;
position: absolute;
left: 2vh;
top: 33vh;
}
}
@media screen and (min-aspect-ratio: 550/1000) and (max-aspect-ratio: 800/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-4{
width: 95vw;
position: absolute;
left: 2vh;
top: 30vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-4{
display: none;
}
}
/* @medias 'paisagem' (texto-descritivo-4) */
@media screen and (min-aspect-ratio: 1000/899) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .texto-descritivo-4{
display: none;
}
}
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-4{
margin-left: 15vw;
}
}
.sobre-nos .texto-descritivo-5{
margin-left: auto;
margin-right: auto;
display: block;
width: 75vw;
}
.sobre-nos .texto-descritivo-5{
margin-left: auto;
margin-right: auto;
display: block;
width: 75vw;
}
/* @medias 'retrato' (texto-descritivo-5) */
@media screen and (min-aspect-ratio: 400/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-5{
width: 39vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 400/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-5{
width: 98vw;
}
}
/* @media "display:none" (texto-descritivo-5) */
@media screen and (min-aspect-ratio: 551/1000) and (max-aspect-ratio: 1000/1){
.sobre-nos .texto-descritivo-5{
display: none;
}
}
.sobre-nos .endereço-maps-div{
position: absolute;
top: 95vh;
width: 100vw;
}
.sobre-nos .endereço-maps{
width: 35vh;
margin-right: auto;
margin-left: auto;
display: block;
border-radius: 1vh;
box-shadow: 0vh .1vh .1vh .1vh rgba(0,0,0, .3);
background: rgba(95,95,95,.8);
transition: 1s;
}
/* @media "retrato" (endereço-maps-div) */
@media screen and (min-aspect-ratio: 550/1000) and (max-aspect-ratio: 800/1000) and (orientation: portrait){
.sobre-nos .endereço-maps-div{
top: 94vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .endereço-maps-div{
top: 96vh;
}
}
/* @media "retrato" (endereço-maps) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .endereço-maps{
width: 30vh;
}
}
/* @media "paisagem" (endereço-maps) */
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .endereço-maps:hover{
background: rgba(255,110,0,1);
}
} | css/sobre_nos.css |
.background-interno-3{
height: 100vh;
background: none;
}
.menu-navegacao .segunda-secao img:hover{
transform: scale(1);
border-radius: 1vh;
transition: 1s ease;
}
.sobre-nos .transition-fundo{
width: 100vw;
height: 100vh;
position: absolute;
background: white;
opacity: 1;
z-index: 9;
}
.sobre-nos .imagem-transition-fundo{
display: block;
margin: auto;
}
/* @medias 'retrato' (imagem-transition-fundo) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 500/1000) and (orientation: portrait){
.sobre-nos .imagem-transition-fundo{
width: 35vh;
margin-top: 25vh;
}
}
@media screen and (min-aspect-ratio: 500/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .imagem-transition-fundo{
width: 40vh;
margin-top: 25vh;
}
}
/* @medias 'paisagem' (imagem-transition-fundo) */
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/600) and (orientation: landscape){
.sobre-nos .imagem-transition-fundo{
width: 35vw;
margin-top: 20vh;
}
}
@media screen and (min-aspect-ratio: 1000/600) and (max-aspect-ratio: 1000/500) and (orientation: landscape){
.sobre-nos .imagem-transition-fundo{
width: 30vw;
margin-top: 20vh;
}
}
@media screen and (min-aspect-ratio: 1000/500) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .imagem-transition-fundo{
width: 25vw;
margin-top: 18vh;
}
}
.sobre-nos .background-interno-opaco-1{
height: 35vh;
background: white;
}
.sobre-nos .background-interno-opaco-2{
height: 65vh;
background: rgba(60,60,60,.8);
}
.sobre-nos .bloco-info-1{
background:
linear-gradient(to bottom, white 0%, silver 200%);
font-size: 10vh;
position: absolute;
width: 30vw;
height: 60vh;
top: 38vh;
right: 35vw;
box-shadow: inset 0vh 0vh 1vh .1vh black;
}
.sobre-nos .faixa-1{
background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(0,0,40,1) 100%);
font-size: 10vh;
position: absolute;
width: 100vw;
height: 1vh;
top: 35.1vh;
right: -100vw;
box-shadow: .3vh .1vh .2vh 0vh black;
}
.sobre-nos .faixa-2{
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(70,70,70,1) 100%);
font-size: 10vh;
position: absolute;
width: 100vw;
height: 1vh;
top: 36.5vh;
left: -100vw;
box-shadow: .3vh .1vh .2vh 0vh black;
}
.sobre-nos .faixa-3{
background: none;
font-size: 10vh;
position: absolute;
width: 100vw;
height: .1vh;
top: 35vh;
left: 0;
box-shadow: .1vh .1vh .3vh .1vh black;
}
.sobre-nos .imagem-motivacional-1-div{
width: 100vw;
height: 35vh;
position: absolute;
right: 0;
top: -.5vh;
}
.sobre-nos .imagem-motivacional-1{
width: 44vh;
margin-left: auto;
margin-right: auto;
display: block;
}
@media screen and (min-aspect-ratio: 650/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1-div{
top: 12.5vh
}
}
@media screen and (min-aspect-ratio: 400/1000) and (max-aspect-ratio: 650/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1-div{
top: 10.9vh
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 400/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1-div{
top: 10.9vh
}
}
@media screen and (min-aspect-ratio: 650/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1{
width: 28vh;
}
}
@media screen and (min-aspect-ratio: 400/1000) and (max-aspect-ratio: 650/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1{
width: 30vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 400/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-1{
width: 30vh;
}
}
.sobre-nos .imagem-motivacional-2{
width: 8vh;
position: absolute;
left: 17vw;
top: 35vh
}
/* @medias 'retrato' (imagem-motivacional-2) */
@media screen and (min-aspect-ratio: 550/1000) and (max-aspect-ratio: 650/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-2{
width: 7vh;
left: 12vw;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .imagem-motivacional-2{
width: 6vh;
left: 20vw;
}
}
.sobre-nos .imagem-fundo-opaco-1{
position: absolute;
left: 0vw;
top: 35vh;
z-index: -1;
}
.sobre-nos .texto-descritivo-1{
position: absolute;
top: 38vh;
left: 20vh;
width: 120vh;
height: 35vh;
}
/* @medias 'retrato' (texto-descritivo-1) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-1{
display: none;
}
}
/* @medias 'paisagem' (texto-descritivo-1) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
display: none;
}
}
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 78vh;
height: 22vh;
top: 44vh;
left: 16vh;
}
}
@media screen and (min-aspect-ratio: 1000/900) and (max-aspect-ratio: 1000/800) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 90vh;
height: 25vh;
top: 44vh;
left: 16vh;
}
}
@media screen and (min-aspect-ratio: 1000/800) and (max-aspect-ratio: 1000/700) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 104vh;
height: 26vh;
top: 44vh;
left: 16vh;
}
}
@media screen and (min-aspect-ratio: 1000/700) and (max-aspect-ratio: 1000/500) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 112vh;
height: 28vh;
top: 42vh;
left: 20vh;
}
}
@media screen and (min-aspect-ratio: 1000/500) and (max-aspect-ratio: 1000/400) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 140vh;
height: 32vh;
top: 42vh;
left: 20vh;
}
}
@media screen and (min-aspect-ratio: 1000/400) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .texto-descritivo-1{
width: 140vh;
height: 32vh;
top: 42vh;
left: 35vh;
}
}
.sobre-nos .texto-descritivo-2{
position: absolute;
top: 70vh;
right: 10vh;
width: 90vh;
height: 30vh;
}
/* @medias 'retrato' (texto-descritivo-2) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 1000/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-2{
display: none;
}
}
/* @medias 'paisagem' (texto-descritivo-2) */
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
display: none;
}
}
@media screen and (min-aspect-ratio: 1000/900) and (max-aspect-ratio: 1000/800) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 70vh;
height: 18vh;
top: 72vh;
right: 5vh;
}
}
@media screen and (min-aspect-ratio: 1000/800) and (max-aspect-ratio: 1000/700) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 70vh;
height: 20vh;
top: 72vh;
right: 5vh;
}
}
@media screen and (min-aspect-ratio: 1000/700) and (max-aspect-ratio: 1000/500) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 90vh;
height: 20vh;
top: 70vh;
right: 10vh;
}
}
@media screen and (min-aspect-ratio: 1000/500) and (max-aspect-ratio: 1000/400) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 100vh;
height: 25vh;
top: 68vh;
right: 10vh;
}
}
@media screen and (min-aspect-ratio: 1000/400) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .texto-descritivo-2{
width: 100vh;
height: 25vh;
top: 68vh;
right: 20vh;
}
}
.sobre-nos .texto-descritivo-div{
position: absolute;
top: 43vh;
width: 100vw;
}
/* @media 'retrato' (texto-descritivo-div) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-div{
top: 41vh;
}
}
.sobre-nos .texto-descritivo-3{
margin-left: auto;
margin-right: auto;
display: block;
width: 80vh;
}
/* @medias 'retrato' (texto-descritivo-3) */
@media screen and (min-aspect-ratio: 600/1000) and (max-aspect-ratio: 850/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-3{
width: 95vw;
position: absolute;
left: 2vh;
top: 2vh;
}
}
@media screen and (min-aspect-ratio: 550/1000) and (max-aspect-ratio: 600/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-3{
width: 95vw;
position: absolute;
left: 1.5vh;
top: 3vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-3{
display: none;
}
}
/* @medias 'paisagem' (texto-descritivo-3) */
@media screen and (min-aspect-ratio: 1000/899) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .texto-descritivo-3{
display: none;
}
}
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-3{
margin-left: 15vw;
}
}
.sobre-nos .texto-descritivo-4{
margin-left: auto;
margin-right: auto;
display: block;
width: 80vh;
}
/* @medias 'retrato' (texto-descritivo-4) */
@media screen and (min-aspect-ratio: 800/1000) and (max-aspect-ratio: 850/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-4{
width: 95vw;
position: absolute;
left: 2vh;
top: 33vh;
}
}
@media screen and (min-aspect-ratio: 550/1000) and (max-aspect-ratio: 800/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-4{
width: 95vw;
position: absolute;
left: 2vh;
top: 30vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-4{
display: none;
}
}
/* @medias 'paisagem' (texto-descritivo-4) */
@media screen and (min-aspect-ratio: 1000/899) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .texto-descritivo-4{
display: none;
}
}
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/900) and (orientation: landscape){
.sobre-nos .texto-descritivo-4{
margin-left: 15vw;
}
}
.sobre-nos .texto-descritivo-5{
margin-left: auto;
margin-right: auto;
display: block;
width: 75vw;
}
.sobre-nos .texto-descritivo-5{
margin-left: auto;
margin-right: auto;
display: block;
width: 75vw;
}
/* @medias 'retrato' (texto-descritivo-5) */
@media screen and (min-aspect-ratio: 400/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-5{
width: 39vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 400/1000) and (orientation: portrait){
.sobre-nos .texto-descritivo-5{
width: 98vw;
}
}
/* @media "display:none" (texto-descritivo-5) */
@media screen and (min-aspect-ratio: 551/1000) and (max-aspect-ratio: 1000/1){
.sobre-nos .texto-descritivo-5{
display: none;
}
}
.sobre-nos .endereço-maps-div{
position: absolute;
top: 95vh;
width: 100vw;
}
.sobre-nos .endereço-maps{
width: 35vh;
margin-right: auto;
margin-left: auto;
display: block;
border-radius: 1vh;
box-shadow: 0vh .1vh .1vh .1vh rgba(0,0,0, .3);
background: rgba(95,95,95,.8);
transition: 1s;
}
/* @media "retrato" (endereço-maps-div) */
@media screen and (min-aspect-ratio: 550/1000) and (max-aspect-ratio: 800/1000) and (orientation: portrait){
.sobre-nos .endereço-maps-div{
top: 94vh;
}
}
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .endereço-maps-div{
top: 96vh;
}
}
/* @media "retrato" (endereço-maps) */
@media screen and (min-aspect-ratio: 1/1000) and (max-aspect-ratio: 550/1000) and (orientation: portrait){
.sobre-nos .endereço-maps{
width: 30vh;
}
}
/* @media "paisagem" (endereço-maps) */
@media screen and (min-aspect-ratio: 1000/1000) and (max-aspect-ratio: 1000/1) and (orientation: landscape){
.sobre-nos .endereço-maps:hover{
background: rgba(255,110,0,1);
}
} | 0.51562 | 0.057945 |
@font-face {
font-family: Roboto;
src: url(../fonts/roboto/Roboto-Regular.ttf);
}
@font-face {
font-family: Roboto;
font-weight: bold;
src: url(../fonts/roboto/Roboto-Bold.ttf);
}
html, body {
margin: 0;
border: 0;
padding: 0;
}
html {
background-color: #222222;
padding-top: 30px;
padding-right: 30px;
padding-left: 30px;
}
body {
font-family: Roboto;
color: #eeeeee;
font-weight: bold;
}
h1 {
display: block;
}
div.box {
background: #333333;
border-radius: 30px;
width: 100%;
height: 60px;
padding-left: 30px;
padding-right: 30px;
box-sizing: border-box;
margin-bottom: 30px;
text-align: left;
display: flex;
align-items: center;
font-size: 16px;
}
div.box.input {
outline: none;
transition-property: box-shadow;
transition-duration: .3s;
}
div.box.input:focus {
box-shadow: 0 0 6px 2px #eeeeee;
}
div.box.input:empty:before {
color: #777777;
content: attr(aria-placeholder);
}
div.box.textarea {
outline: none;
display: block;
height: auto;
overflow-y: scroll;
padding-top: 30px;
min-height: 150px;
max-height: 300px;
padding-bottom: 30px ;
transition-property: box-shadow;
transition-duration: .3s;
}
div.box.textarea:focus {
box-shadow: 0 0 6px 2px #eeeeee;
}
div.box.textarea:empty:before {
color: #777777;
content: attr(aria-placeholder);
}
div.box.output {
display: block;
height: auto;
padding-top: 30px;
min-height: 150px;
padding-bottom: 30px ;
}
div.box.output:empty:before {
color: #777777;
content: attr(aria-placeholder);
}
div.box.button {
color: #29CB6A;
display: flex;
align-items: center;
justify-content: center;
transition-property: background-color, color;
transition-duration: .5s;
}
div.box.button:hover {
cursor: pointer;
background-color: #29CB6A;
color: #eeeeee;
}
div.input-group {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
column-gap: 30px;
}
nav.sideslider {
background-color: #222222;
}
div.sideswitcher {
background-color: #222222;
}
div.ss-item {
background-color: #222222;
}
h1.ss-item-title {
font-weight: bold;
box-sizing: border-box;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
padding: 15px 15px 7.5px 15px;
}
ul.ss-item-list {
font-weight: normal;
list-style: none;
padding: 0;
margin: 0;
}
ul.ss-item-list li {
padding: 7.5px 15px 7.5px 15px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
transition: filter .3s;
}
ul.ss-item-list li:nth-of-type(2n+1) {
background-color: #333333;
}
ul.ss-item-list li:nth-of-type(2n) {
background-color: #222222;
}
ul.ss-item-list li:hover {
filter: brightness(150%);
cursor: pointer;
} | css/base.css | @font-face {
font-family: Roboto;
src: url(../fonts/roboto/Roboto-Regular.ttf);
}
@font-face {
font-family: Roboto;
font-weight: bold;
src: url(../fonts/roboto/Roboto-Bold.ttf);
}
html, body {
margin: 0;
border: 0;
padding: 0;
}
html {
background-color: #222222;
padding-top: 30px;
padding-right: 30px;
padding-left: 30px;
}
body {
font-family: Roboto;
color: #eeeeee;
font-weight: bold;
}
h1 {
display: block;
}
div.box {
background: #333333;
border-radius: 30px;
width: 100%;
height: 60px;
padding-left: 30px;
padding-right: 30px;
box-sizing: border-box;
margin-bottom: 30px;
text-align: left;
display: flex;
align-items: center;
font-size: 16px;
}
div.box.input {
outline: none;
transition-property: box-shadow;
transition-duration: .3s;
}
div.box.input:focus {
box-shadow: 0 0 6px 2px #eeeeee;
}
div.box.input:empty:before {
color: #777777;
content: attr(aria-placeholder);
}
div.box.textarea {
outline: none;
display: block;
height: auto;
overflow-y: scroll;
padding-top: 30px;
min-height: 150px;
max-height: 300px;
padding-bottom: 30px ;
transition-property: box-shadow;
transition-duration: .3s;
}
div.box.textarea:focus {
box-shadow: 0 0 6px 2px #eeeeee;
}
div.box.textarea:empty:before {
color: #777777;
content: attr(aria-placeholder);
}
div.box.output {
display: block;
height: auto;
padding-top: 30px;
min-height: 150px;
padding-bottom: 30px ;
}
div.box.output:empty:before {
color: #777777;
content: attr(aria-placeholder);
}
div.box.button {
color: #29CB6A;
display: flex;
align-items: center;
justify-content: center;
transition-property: background-color, color;
transition-duration: .5s;
}
div.box.button:hover {
cursor: pointer;
background-color: #29CB6A;
color: #eeeeee;
}
div.input-group {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
column-gap: 30px;
}
nav.sideslider {
background-color: #222222;
}
div.sideswitcher {
background-color: #222222;
}
div.ss-item {
background-color: #222222;
}
h1.ss-item-title {
font-weight: bold;
box-sizing: border-box;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
padding: 15px 15px 7.5px 15px;
}
ul.ss-item-list {
font-weight: normal;
list-style: none;
padding: 0;
margin: 0;
}
ul.ss-item-list li {
padding: 7.5px 15px 7.5px 15px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
transition: filter .3s;
}
ul.ss-item-list li:nth-of-type(2n+1) {
background-color: #333333;
}
ul.ss-item-list li:nth-of-type(2n) {
background-color: #222222;
}
ul.ss-item-list li:hover {
filter: brightness(150%);
cursor: pointer;
} | 0.264643 | 0.113924 |
@media only screen and (max-width:1196px) and (min-width: 992px) {
#contact {
width: 25%;
margin-left: -0px;
}
#first-section #quote {
margin-left: 40.333333%;
}
ul.navbar-nav li {
margin-left: -25px;
}
#contact .panel span {
font-size: 10.42px;
}
#contact .panel {
height: 364px;
}
#contact .panel #free {
font-size: 11.42px;
margin-top: -13px;
}
}
@media only screen and (max-width:1181px) and (min-width: 992px) {
#fourth-section .main-quote, #eighth-section .main-quote {
margin-left: 360px;
}
#seventh-section #partners {
margin-left: 86px;
}
#seventh-section .use {
width: 70%;
margin-left: 1;
margin: 0px auto;
}
}
@media only screen and (max-width:1172px) and (min-width: 992px) {
#seventh-section .use.small {
width: 70%;
}
#first-section #quote {
margin-top: 94px;
margin-left: 39.7%;
width: 33.333333%;
}
#second-section {
margin-top: -6px;
}
}
@media only screen and (max-width:1142px) and (min-width: 992px) {
#first-section #quote {
margin-left: 40.7%;
}
}
/*========== Non-Mobile First Method ==========*/
/* XtraLarge Devices, Wide Screens */
@media only screen and (max-width : 1500px) {
}
/*MD AND LG*/
/*@media only screen and (max-width : 1500px) and (min-width: 768px) {*/
/*@media only screen and (max-width : 1500px) and (min-width: 992px) {*/
@media only screen and (max-width : 2100px) and (min-width: 992px) {
#first-section {
background: url(../images/first-section-bg.png) no-repeat;
/* max-height: 586px;
height: 586px;
*/ }
#first-section #quote {
height: 148px;
margin-top: 77px;
margin-left: 39.7%;
width: 31.333333%;
}
#first-section #quote p {
margin-top: -14px;
margin-left: 7px;
line-height: 27px;
}
#first-section img {
margin-top: 40px;
margin-left: 20px;
}
#first-section [type="checkbox"] {
vertical-align: middle;
margin-top: -1px;
}
#contact p.first {
margin-top: 69px;
margin-left: 9px;
}
#contact p.second {
margin-left: 9px
}
#contact .panel h3 {
margin-top: 17px;
margin-right: -9px;
}
#contact .panel {
margin-top: 6px;
margin-left: 8px;
/*height: 356px;*/
}
#contact .panel #free {
font-size: 12.42px;
}
#contact {
width: 26%;
float: left;
text-align: left;
}
#contact input {
height: 36px;
}
#second-section {
max-height: 1526px;
background: url(../images/section2-bg.png);
}
#second-section #main-text {
margin-top: 53px;
margin-left: 55px;
}
#second-section #main-text .section-title span {
margin: 10px;
}
#second-section #main-text .first {
margin-top: -8px;
margin-right: 10px;
}
#second-section #easy-to-use {
margin-top: 44px;
}
#second-section .img1 {
margin-left: 40px;
margin-top: 2px;
}
#second-section #oversee {
margin-top: 49px;
}
#second-section .img2 {
margin-left: -26px;
}
#second-section #cross-device {
margin-top: 72px;
}
#second-section .img3 {
margin-left: 19px;
}
#second-section #detailed-tracking {
margin-top: -6px;
}
#second-section .img4 {
margin-left: -46px;
}
#second-section .text1 {
margin-top: 87px;
margin-left: 50px;
}
#second-section .text1 h2 {
margin-left: -1px;
}
#second-section .text1 p {
margin-left: 1px;
}
#second-section .text2 {
margin-top: 100px;
margin-left: 101px;
}
#second-section .text2 p {
margin-top: -3px;
}
#second-section .text3 {
margin-left: 136px;
margin-top: 74px;
}
#second-section .text3 p {
margin-top: -1px;
margin-left: -1px;
}
#second-section .first-col {
margin-left: -43%;
margin-top: 73px;
}
#third-section {
max-height: 855px;
height: 855px;
}
#third-section .main-quote {
margin-top: 64px;
margin-left: 40px;
}
#third-section .main-quote .first {
margin-top: 13px;
margin-left: 23px;
}
#third-section .main-quote .second {
margin-top: -18px;
margin-left: 19px;
}
#third-section .main img {
margin-left: 40px;
margin-top: 53px;
}
#fourth-section, #eighth-section {
max-height: 134px;
height: 134px;
}
#fourth-section .main-quote, #eighth-section .main-quote {
margin-left: 410px;
margin-top: 26px;
}
#fourth-section button, #eighth-section button {
width: 204px;
height: 41px;
margin-top: 5px;
margin-left: 252px;
}
#fifth-section {
max-height: 737px;
height: 737px;
margin-top: -2px;
}
#fifth-section .main-quote {
margin-top: 54px;
margin-left: 40px;
}
#fifth-section .main-quote .first {
margin-top: 13px;
margin-left: 23px;
}
#fifth-section .main-quote .second {
margin-top: -10px;
margin-left: 19px;
}
#fifth-section .images {
margin-top: 55px;
}
#fifth-section .images #button1 {
margin-left: 99px;
}
#fifth-section .images #button2 {
margin-left: 91px;
}
#fifth-section .images #button3 {
margin-left: 73px;
}
#fifth-section .lower-quote {
margin-top: 463px;
margin-left: 72px;
}
#fifth-section .lower-quote h2 {
font-size: 27.58px;
font-family: MuseoSans700;
}
#fifth-section .lower-quote .first {
margin-top: 10px;
margin-left: -23px;
}
#sixth-section {
max-height: 411px;
height: 411px;
}
#seventh-section .main-quote {
margin-top: 71px;
margin-left: 38px;
}
#seventh-section .main-quote .first {
margin-top: 14px;
margin-left: 22px;
}
/* Block - Brand */
#seventh-section .use{
text-align:center;
margin:0 auto;
width:60%;
}
#seventh-section .use.small{
width:62%;
}
#seventh-section .use.small2{
width:30%;
}
#seventh-section .use a{
width: auto;
height: 133px;
overflow: hidden;
display: block;
float: left;
transition:all 0.3s;
}
#seventh-section .use.small a img{
margin-right:15px;
}
#seventh-section .use a img{
opacity:0;
}
#seventh-section .use.small a img{
margin-right:15px;
}
#seventh-section .use a img{
opacity:0;
}
#seventh-section a.brand1 {
background: url('../images/agency/brand_01b.jpg') no-repeat center center;
}
#seventh-section a.brand2 {
background: url('../images/agency/brand_02c.jpg') no-repeat center center;
}
#seventh-section a.brand3 {
background: url('../images/agency/brand_03b.jpg') no-repeat center center;
}
#seventh-section a.brand4 {
background: url('../images/agency/brand_04b.jpg') no-repeat center center;
}
#seventh-section a.brand5 {
background: url('../images/agency/brand_05b.jpg') no-repeat center center;
}
#seventh-section a.brand6 {
background: url('../images/agency/brand_06b.jpg') no-repeat center center;
}
#seventh-section a.brand7 {
background: url('../images/agency/brand_07.jpg') no-repeat center center;
}
#seventh-section a.brand8 {
background: url('../images/agency/brand_08b.jpg') no-repeat center center;
}
#seventh-section a.brand9 {
background: url('../images/agency/brand_09b.jpg') no-repeat center center;
}
#seventh-section a.brand10 {
background: url('../images/agency/brand_10b.jpg') no-repeat center center;
}
#seventh-section a.brand11 {
background: url('../images/agency/brand_11b.jpg') no-repeat center center;
}
#seventh-section a.brand12 {
background: url('../images/agency/brand_12.jpg') no-repeat center center;
}
#seventh-section a.brand13 {
background: url('../images/agency/brand_13.jpg') no-repeat center center;
}
#seventh-section a.brand14 {
background: url('../images/agency/brand_14.jpg') no-repeat center center;
}
#seventh-section a.brand15 {
background: url('../images/agency/brand_15.jpg') no-repeat center center;
}
#seventh-section a.brand16 {
background: url('../images/agency/brand_16.jpg') no-repeat center center;
}
#seventh-section a.brand17 {
background: url('../images/agency/brand_17b.jpg') no-repeat center center;
}
#seventh-section a.brand18 {
background: url('../images/agency/brand_18b.jpg') no-repeat center center;
}
#seventh-section a.brand19 {
background: url('../images/agency/brand_19b.jpg') no-repeat center center;
}
#seventh-section a.brand20 {
background: url('../images/agency/brand_20b.jpg') no-repeat center center;
}
#seventh-section a.brand21 {
background: url('../images/agency/brand_21b.jpg') no-repeat center center;
}
#seventh-section a.brand22 {
background: url('../images/agency/brand_22b.jpg') no-repeat center center;
}
#seventh-section a.brand1:hover{
background: url('../images/agency/brand-color_01b.jpg') no-repeat center center;
}
#seventh-section a.brand2:hover{
background: url('../images/agency/brand-color_02c.jpg') no-repeat center center;
}
#seventh-section a.brand3:hover{
background: url('../images/agency/brand-color_03b.jpg') no-repeat center center;
}
#seventh-section a.brand4:hover{
background: url('../images/agency/brand-color_04b.jpg') no-repeat center center;
}
#seventh-section a.brand5:hover{
background: url('../images/agency/brand-color_05b.jpg') no-repeat center center;
}
#seventh-section a.brand6:hover{
background: url('../images/agency/brand-color_06b.jpg') no-repeat center center;
}
#seventh-section a.brand7:hover{
background: url('../images/agency/brand-color_07.jpg') no-repeat center center;
}
#seventh-section a.brand8:hover{
background: url('../images/agency/brand-color_08b.jpg') no-repeat center center;
}
#seventh-section a.brand9:hover{
background: url('../images/agency/brand-color_09b.jpg') no-repeat center center;
}
#seventh-section a.brand10:hover{
background: url('../images/agency/brand-color_10b.jpg') no-repeat center center;
}
#seventh-section a.brand11:hover{
background: url('../images/agency/brand-color_11b.jpg') no-repeat center center;
}
#seventh-section a.brand12:hover{
background: url('../images/agency/brand-color_12.jpg') no-repeat center center;
}
#seventh-section a.brand13:hover{
background: url('../images/agency/brand-color_13.jpg') no-repeat center center;
}
#seventh-section a.brand14:hover{
background: url('../images/agency/brand-color_14.jpg') no-repeat center center;
}
#seventh-section a.brand15:hover{
background: url('../images/agency/brand-color_15.jpg') no-repeat center center;
}
#seventh-section a.brand16:hover{
background: url('../images/agency/brand-color_16.jpg') no-repeat center center;
}
#seventh-section a.brand17:hover{
background: url('../images/agency/brand-color_17b.jpg') no-repeat center center;
}
#seventh-section a.brand18:hover{
background: url('../images/agency/brand-color_18b.jpg') no-repeat center center;
}
#seventh-section a.brand19:hover{
background: url('../images/agency/brand-color_19b.jpg') no-repeat center center;
}
#seventh-section a.brand20:hover{
background: url('../images/agency/brand-color_20b.jpg') no-repeat center center;
}
#seventh-section a.brand21:hover{
background: url('../images/agency/brand-color_21b.jpg') no-repeat center center;
}
#seventh-section a.brand22:hover{
background: url('../images/agency/brand-color_22b.jpg') no-repeat center center;
}
#seventh-section #traffic-partners h2 {
margin-top: 81px;
margin-left: 82px;
}
#seventh-section #partners {
margin-top: 9px;
margin-left: 86px;
text-align: center;
}
#seventh-section #trading-desk h2 {
margin-top: 291px;
margin-left: 82px;
}
#seventh-section #trading-desk #dsp {
margin-top: 18px;
margin-left: 104px;
text-align: center;
}
#seventh-section #trading-desk #dsp {
margin-top: 18px;
margin-left: 104px;
}
}
/* Small Devices, Tablets */
/*@media only screen and (max-width : 768px) and (min-width:240px) {*/
@media only screen and (max-width : 992px) and (min-width:240px) {
#first-section #quote {
text-align: center;
}
#first-section #main-quote {
font-size: 41.96px;
}
#first-section #quote p {
font-size: 15.4px;
}
#contact p.first {
font-size: 22.56px;
}
#second-section #main-text {
margin-bottom: 50px;
}
#second-section .row {
margin-bottom: 10%;
}
#third-section .main img {
margin-bottom: 30px;
}
#fourth-section h1, #eighth-section h1 {
font-size: 23px;
}
#fourth-section, #eighth-section {
background: url(../images/banner.png) no-repeat center;
}
#fourth-section button, #eighth-section button {
font-size: 15.55px;
margin-bottom: 11px;
}
#fifth-section img {
margin-top: 20px;
}
#fifth-section .images div.button {
margin-bottom: 50px;
}
#sixth-section .carousel-text {
margin-bottom: 22px;
}
#sixth-section .carousel-inner .item {
max-width: 284px;
}
#sixth-section .carousel-control {
/*top: 118px;*/
top: 162px;
width: 10%;
margin-left: -16px;
}
#seventh-section img {
width: 150px;
}
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
#sixth-section a.right.carousel-control {
margin-right: 4px;
}
.carousel {
margin-left: 17px;
}
#sixth-section .main-quote {
margin-left: 0;
}
#fifth-section .images .highlight {
font-size: 19px;
}
#fifth-section .images div.button {
height: 70px;
}
}
/* Custom, iPhone Retina Smallest */
@media only screen and (max-width : 320px) {
#sixth-section .carousel-control {
/* top: 118px; */
top: 162px;
width: 3%;
margin-left: -25px;
}
.carousel-text {
outline: 0;
}
}
/*MD ONLY*/
@media (max-width: 1200px) and (min-width: 991px) {
#first-section #quote, #first-section #contact center {
text-align: left;
}
#first-section #quote {
margin-top: 26px;
margin-left: 28.7%;
margin-right: 25px;
width: 37.333333%;
}
#contact {
margin-top: -22px;
width: 31%;
}
#first-section {
background: url(../images/section1-md-bg.png) no-repeat;
}
#second-section {
margin-top: -23px;
}
#second-section .img4 {
max-width: 450px;
margin-top: 39px;
}
#third-section {
height: auto;
max-height: 100%;
}
#fourth-section button, #eighth-section button {
margin-top: 0px;
}
#fourth-section h1, #eighth-section h1 {
font-size: 25.54px;
}
#fourth-section .main-quote, #eighth-section .main-quote {
margin-left: 300px;
}
#sixth-section .carousel-control {
width: 13%;
}
#seventh-section .use {
width: 80%;
}
#seventh-section .use.small {
width: 80%;
}
#footer-ul2 {
margin-left: 0px;
}
}
@media (max-width: 1500px) and (min-width: 1200px) {
#fifth-section .images .img1 {
margin-left: 74px;
}
#fifth-section .images .img2 {
margin-left: 72px;
}
#fifth-section .images .img3 {
margin-left: 46px;
}
}
@media (min-width: 1422px) {
#fourth-section .main-quote, #eighth-section .main-quote {
margin-left: 620px;
}
} | dev/landing/css/landing.css | @media only screen and (max-width:1196px) and (min-width: 992px) {
#contact {
width: 25%;
margin-left: -0px;
}
#first-section #quote {
margin-left: 40.333333%;
}
ul.navbar-nav li {
margin-left: -25px;
}
#contact .panel span {
font-size: 10.42px;
}
#contact .panel {
height: 364px;
}
#contact .panel #free {
font-size: 11.42px;
margin-top: -13px;
}
}
@media only screen and (max-width:1181px) and (min-width: 992px) {
#fourth-section .main-quote, #eighth-section .main-quote {
margin-left: 360px;
}
#seventh-section #partners {
margin-left: 86px;
}
#seventh-section .use {
width: 70%;
margin-left: 1;
margin: 0px auto;
}
}
@media only screen and (max-width:1172px) and (min-width: 992px) {
#seventh-section .use.small {
width: 70%;
}
#first-section #quote {
margin-top: 94px;
margin-left: 39.7%;
width: 33.333333%;
}
#second-section {
margin-top: -6px;
}
}
@media only screen and (max-width:1142px) and (min-width: 992px) {
#first-section #quote {
margin-left: 40.7%;
}
}
/*========== Non-Mobile First Method ==========*/
/* XtraLarge Devices, Wide Screens */
@media only screen and (max-width : 1500px) {
}
/*MD AND LG*/
/*@media only screen and (max-width : 1500px) and (min-width: 768px) {*/
/*@media only screen and (max-width : 1500px) and (min-width: 992px) {*/
@media only screen and (max-width : 2100px) and (min-width: 992px) {
#first-section {
background: url(../images/first-section-bg.png) no-repeat;
/* max-height: 586px;
height: 586px;
*/ }
#first-section #quote {
height: 148px;
margin-top: 77px;
margin-left: 39.7%;
width: 31.333333%;
}
#first-section #quote p {
margin-top: -14px;
margin-left: 7px;
line-height: 27px;
}
#first-section img {
margin-top: 40px;
margin-left: 20px;
}
#first-section [type="checkbox"] {
vertical-align: middle;
margin-top: -1px;
}
#contact p.first {
margin-top: 69px;
margin-left: 9px;
}
#contact p.second {
margin-left: 9px
}
#contact .panel h3 {
margin-top: 17px;
margin-right: -9px;
}
#contact .panel {
margin-top: 6px;
margin-left: 8px;
/*height: 356px;*/
}
#contact .panel #free {
font-size: 12.42px;
}
#contact {
width: 26%;
float: left;
text-align: left;
}
#contact input {
height: 36px;
}
#second-section {
max-height: 1526px;
background: url(../images/section2-bg.png);
}
#second-section #main-text {
margin-top: 53px;
margin-left: 55px;
}
#second-section #main-text .section-title span {
margin: 10px;
}
#second-section #main-text .first {
margin-top: -8px;
margin-right: 10px;
}
#second-section #easy-to-use {
margin-top: 44px;
}
#second-section .img1 {
margin-left: 40px;
margin-top: 2px;
}
#second-section #oversee {
margin-top: 49px;
}
#second-section .img2 {
margin-left: -26px;
}
#second-section #cross-device {
margin-top: 72px;
}
#second-section .img3 {
margin-left: 19px;
}
#second-section #detailed-tracking {
margin-top: -6px;
}
#second-section .img4 {
margin-left: -46px;
}
#second-section .text1 {
margin-top: 87px;
margin-left: 50px;
}
#second-section .text1 h2 {
margin-left: -1px;
}
#second-section .text1 p {
margin-left: 1px;
}
#second-section .text2 {
margin-top: 100px;
margin-left: 101px;
}
#second-section .text2 p {
margin-top: -3px;
}
#second-section .text3 {
margin-left: 136px;
margin-top: 74px;
}
#second-section .text3 p {
margin-top: -1px;
margin-left: -1px;
}
#second-section .first-col {
margin-left: -43%;
margin-top: 73px;
}
#third-section {
max-height: 855px;
height: 855px;
}
#third-section .main-quote {
margin-top: 64px;
margin-left: 40px;
}
#third-section .main-quote .first {
margin-top: 13px;
margin-left: 23px;
}
#third-section .main-quote .second {
margin-top: -18px;
margin-left: 19px;
}
#third-section .main img {
margin-left: 40px;
margin-top: 53px;
}
#fourth-section, #eighth-section {
max-height: 134px;
height: 134px;
}
#fourth-section .main-quote, #eighth-section .main-quote {
margin-left: 410px;
margin-top: 26px;
}
#fourth-section button, #eighth-section button {
width: 204px;
height: 41px;
margin-top: 5px;
margin-left: 252px;
}
#fifth-section {
max-height: 737px;
height: 737px;
margin-top: -2px;
}
#fifth-section .main-quote {
margin-top: 54px;
margin-left: 40px;
}
#fifth-section .main-quote .first {
margin-top: 13px;
margin-left: 23px;
}
#fifth-section .main-quote .second {
margin-top: -10px;
margin-left: 19px;
}
#fifth-section .images {
margin-top: 55px;
}
#fifth-section .images #button1 {
margin-left: 99px;
}
#fifth-section .images #button2 {
margin-left: 91px;
}
#fifth-section .images #button3 {
margin-left: 73px;
}
#fifth-section .lower-quote {
margin-top: 463px;
margin-left: 72px;
}
#fifth-section .lower-quote h2 {
font-size: 27.58px;
font-family: MuseoSans700;
}
#fifth-section .lower-quote .first {
margin-top: 10px;
margin-left: -23px;
}
#sixth-section {
max-height: 411px;
height: 411px;
}
#seventh-section .main-quote {
margin-top: 71px;
margin-left: 38px;
}
#seventh-section .main-quote .first {
margin-top: 14px;
margin-left: 22px;
}
/* Block - Brand */
#seventh-section .use{
text-align:center;
margin:0 auto;
width:60%;
}
#seventh-section .use.small{
width:62%;
}
#seventh-section .use.small2{
width:30%;
}
#seventh-section .use a{
width: auto;
height: 133px;
overflow: hidden;
display: block;
float: left;
transition:all 0.3s;
}
#seventh-section .use.small a img{
margin-right:15px;
}
#seventh-section .use a img{
opacity:0;
}
#seventh-section .use.small a img{
margin-right:15px;
}
#seventh-section .use a img{
opacity:0;
}
#seventh-section a.brand1 {
background: url('../images/agency/brand_01b.jpg') no-repeat center center;
}
#seventh-section a.brand2 {
background: url('../images/agency/brand_02c.jpg') no-repeat center center;
}
#seventh-section a.brand3 {
background: url('../images/agency/brand_03b.jpg') no-repeat center center;
}
#seventh-section a.brand4 {
background: url('../images/agency/brand_04b.jpg') no-repeat center center;
}
#seventh-section a.brand5 {
background: url('../images/agency/brand_05b.jpg') no-repeat center center;
}
#seventh-section a.brand6 {
background: url('../images/agency/brand_06b.jpg') no-repeat center center;
}
#seventh-section a.brand7 {
background: url('../images/agency/brand_07.jpg') no-repeat center center;
}
#seventh-section a.brand8 {
background: url('../images/agency/brand_08b.jpg') no-repeat center center;
}
#seventh-section a.brand9 {
background: url('../images/agency/brand_09b.jpg') no-repeat center center;
}
#seventh-section a.brand10 {
background: url('../images/agency/brand_10b.jpg') no-repeat center center;
}
#seventh-section a.brand11 {
background: url('../images/agency/brand_11b.jpg') no-repeat center center;
}
#seventh-section a.brand12 {
background: url('../images/agency/brand_12.jpg') no-repeat center center;
}
#seventh-section a.brand13 {
background: url('../images/agency/brand_13.jpg') no-repeat center center;
}
#seventh-section a.brand14 {
background: url('../images/agency/brand_14.jpg') no-repeat center center;
}
#seventh-section a.brand15 {
background: url('../images/agency/brand_15.jpg') no-repeat center center;
}
#seventh-section a.brand16 {
background: url('../images/agency/brand_16.jpg') no-repeat center center;
}
#seventh-section a.brand17 {
background: url('../images/agency/brand_17b.jpg') no-repeat center center;
}
#seventh-section a.brand18 {
background: url('../images/agency/brand_18b.jpg') no-repeat center center;
}
#seventh-section a.brand19 {
background: url('../images/agency/brand_19b.jpg') no-repeat center center;
}
#seventh-section a.brand20 {
background: url('../images/agency/brand_20b.jpg') no-repeat center center;
}
#seventh-section a.brand21 {
background: url('../images/agency/brand_21b.jpg') no-repeat center center;
}
#seventh-section a.brand22 {
background: url('../images/agency/brand_22b.jpg') no-repeat center center;
}
#seventh-section a.brand1:hover{
background: url('../images/agency/brand-color_01b.jpg') no-repeat center center;
}
#seventh-section a.brand2:hover{
background: url('../images/agency/brand-color_02c.jpg') no-repeat center center;
}
#seventh-section a.brand3:hover{
background: url('../images/agency/brand-color_03b.jpg') no-repeat center center;
}
#seventh-section a.brand4:hover{
background: url('../images/agency/brand-color_04b.jpg') no-repeat center center;
}
#seventh-section a.brand5:hover{
background: url('../images/agency/brand-color_05b.jpg') no-repeat center center;
}
#seventh-section a.brand6:hover{
background: url('../images/agency/brand-color_06b.jpg') no-repeat center center;
}
#seventh-section a.brand7:hover{
background: url('../images/agency/brand-color_07.jpg') no-repeat center center;
}
#seventh-section a.brand8:hover{
background: url('../images/agency/brand-color_08b.jpg') no-repeat center center;
}
#seventh-section a.brand9:hover{
background: url('../images/agency/brand-color_09b.jpg') no-repeat center center;
}
#seventh-section a.brand10:hover{
background: url('../images/agency/brand-color_10b.jpg') no-repeat center center;
}
#seventh-section a.brand11:hover{
background: url('../images/agency/brand-color_11b.jpg') no-repeat center center;
}
#seventh-section a.brand12:hover{
background: url('../images/agency/brand-color_12.jpg') no-repeat center center;
}
#seventh-section a.brand13:hover{
background: url('../images/agency/brand-color_13.jpg') no-repeat center center;
}
#seventh-section a.brand14:hover{
background: url('../images/agency/brand-color_14.jpg') no-repeat center center;
}
#seventh-section a.brand15:hover{
background: url('../images/agency/brand-color_15.jpg') no-repeat center center;
}
#seventh-section a.brand16:hover{
background: url('../images/agency/brand-color_16.jpg') no-repeat center center;
}
#seventh-section a.brand17:hover{
background: url('../images/agency/brand-color_17b.jpg') no-repeat center center;
}
#seventh-section a.brand18:hover{
background: url('../images/agency/brand-color_18b.jpg') no-repeat center center;
}
#seventh-section a.brand19:hover{
background: url('../images/agency/brand-color_19b.jpg') no-repeat center center;
}
#seventh-section a.brand20:hover{
background: url('../images/agency/brand-color_20b.jpg') no-repeat center center;
}
#seventh-section a.brand21:hover{
background: url('../images/agency/brand-color_21b.jpg') no-repeat center center;
}
#seventh-section a.brand22:hover{
background: url('../images/agency/brand-color_22b.jpg') no-repeat center center;
}
#seventh-section #traffic-partners h2 {
margin-top: 81px;
margin-left: 82px;
}
#seventh-section #partners {
margin-top: 9px;
margin-left: 86px;
text-align: center;
}
#seventh-section #trading-desk h2 {
margin-top: 291px;
margin-left: 82px;
}
#seventh-section #trading-desk #dsp {
margin-top: 18px;
margin-left: 104px;
text-align: center;
}
#seventh-section #trading-desk #dsp {
margin-top: 18px;
margin-left: 104px;
}
}
/* Small Devices, Tablets */
/*@media only screen and (max-width : 768px) and (min-width:240px) {*/
@media only screen and (max-width : 992px) and (min-width:240px) {
#first-section #quote {
text-align: center;
}
#first-section #main-quote {
font-size: 41.96px;
}
#first-section #quote p {
font-size: 15.4px;
}
#contact p.first {
font-size: 22.56px;
}
#second-section #main-text {
margin-bottom: 50px;
}
#second-section .row {
margin-bottom: 10%;
}
#third-section .main img {
margin-bottom: 30px;
}
#fourth-section h1, #eighth-section h1 {
font-size: 23px;
}
#fourth-section, #eighth-section {
background: url(../images/banner.png) no-repeat center;
}
#fourth-section button, #eighth-section button {
font-size: 15.55px;
margin-bottom: 11px;
}
#fifth-section img {
margin-top: 20px;
}
#fifth-section .images div.button {
margin-bottom: 50px;
}
#sixth-section .carousel-text {
margin-bottom: 22px;
}
#sixth-section .carousel-inner .item {
max-width: 284px;
}
#sixth-section .carousel-control {
/*top: 118px;*/
top: 162px;
width: 10%;
margin-left: -16px;
}
#seventh-section img {
width: 150px;
}
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
#sixth-section a.right.carousel-control {
margin-right: 4px;
}
.carousel {
margin-left: 17px;
}
#sixth-section .main-quote {
margin-left: 0;
}
#fifth-section .images .highlight {
font-size: 19px;
}
#fifth-section .images div.button {
height: 70px;
}
}
/* Custom, iPhone Retina Smallest */
@media only screen and (max-width : 320px) {
#sixth-section .carousel-control {
/* top: 118px; */
top: 162px;
width: 3%;
margin-left: -25px;
}
.carousel-text {
outline: 0;
}
}
/*MD ONLY*/
@media (max-width: 1200px) and (min-width: 991px) {
#first-section #quote, #first-section #contact center {
text-align: left;
}
#first-section #quote {
margin-top: 26px;
margin-left: 28.7%;
margin-right: 25px;
width: 37.333333%;
}
#contact {
margin-top: -22px;
width: 31%;
}
#first-section {
background: url(../images/section1-md-bg.png) no-repeat;
}
#second-section {
margin-top: -23px;
}
#second-section .img4 {
max-width: 450px;
margin-top: 39px;
}
#third-section {
height: auto;
max-height: 100%;
}
#fourth-section button, #eighth-section button {
margin-top: 0px;
}
#fourth-section h1, #eighth-section h1 {
font-size: 25.54px;
}
#fourth-section .main-quote, #eighth-section .main-quote {
margin-left: 300px;
}
#sixth-section .carousel-control {
width: 13%;
}
#seventh-section .use {
width: 80%;
}
#seventh-section .use.small {
width: 80%;
}
#footer-ul2 {
margin-left: 0px;
}
}
@media (max-width: 1500px) and (min-width: 1200px) {
#fifth-section .images .img1 {
margin-left: 74px;
}
#fifth-section .images .img2 {
margin-left: 72px;
}
#fifth-section .images .img3 {
margin-left: 46px;
}
}
@media (min-width: 1422px) {
#fourth-section .main-quote, #eighth-section .main-quote {
margin-left: 620px;
}
} | 0.410284 | 0.080177 |
.w-1000{
margin: 0 auto;
width: 1000px;
}
.mt20{margin-top: 20px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mb20{margin-bottom: 20px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}
.mr5{margin-right: 5px!important;}
.pt20{padding-top: 20px;}
.pt40{padding-top: 40px;}
.pt50{padding-top: 50px;}
.pb20{padding-bottom: 20px;}
.pb40{padding-bottom: 40px;}
.pb50{padding-bottom: 50px;}
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}
.clearfix{*+height:1%;}
.common-horizontal-ul{}
.common-horizontal-ul li{float: left;display: inline-block;}
/*通用 end*/
body{
background-color: #2a3e54;
}
.container{
padding: 0;
width: 100%;
}
.header{
height: 95px;
background-color: #465163;
border-bottom: 1px solid #526070;
}
.header .logo{
float: left;
margin: 15px 0 15px 20px;
}
.header .login-list{
float: right;
margin: 15px 20px;
text-align: right;
font-size: 12px;
}
.header .login-list .login-pwd{
color: #fff;
}
.header .login-list .login-info{
margin-top: 30px;
color: #fff;
}
.header .login-list .login-info span{
margin: 0 5px;
color: #c28b86;
}
.main_container{
min-height: 600px;
}
.main_container .sidebar{
position: absolute;
width: 230px;
background-color: #2a3f54;
min-height: 100%;
}
.main_container .sidebar h5{
margin: 15px;
color: #fff;
}
.main_container .main{
margin-left: 230px;
padding: 20px;
background-color: #f7f7f7;
}
.nav > li{
cursor: pointer;
background-color: #2a3e54;
}
.nav > li > a{
color: #fff;
}
.nav > li:hover >a{
color: #fff;
background-color: #34475b;
}
.side-menu .active{
border-right: 4px solid #1abb9c;
}
.side-menu .active .child_menu{
display: block;
background-color: #fff;
}
.side-menu .active > a{
background-color: #34475b;
}
.nav.child_menu{
display: none;
margin-top: 5px;
}
.nav.child_menu li{
padding-left: 36px;
}
.nav.child_menu li a{
padding: 10px;
line-height: 1;
}
.nav.child_menu li.current-page{
background-color: #34475b;
}
.nav.child_menu > li:hover{
color: #fff;
background-color: #34475b;
}
.nav.child_menu li:before{
position: absolute;
left: 30px;
content: "";
width: 1px;
height: 34px;
background-color: #435668;
}
.nav.child_menu li:after{
position: absolute;
content: "";
left: 26px;
top: 13px;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #435668;
}
.side-menu span.fa{
color: #c4cfda;
float: right;
font-size: 10px;
margin-top: 5px;
min-width: inherit;
}
.side-menu .fa{
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-family: FontAwesome;
font-size: 18px;
font-style: normal;
font-weight: 400;
opacity: 0.99;
width: 26px;
} | lesson04_2/assets/css/index.css | .w-1000{
margin: 0 auto;
width: 1000px;
}
.mt20{margin-top: 20px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mb20{margin-bottom: 20px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}
.mr5{margin-right: 5px!important;}
.pt20{padding-top: 20px;}
.pt40{padding-top: 40px;}
.pt50{padding-top: 50px;}
.pb20{padding-bottom: 20px;}
.pb40{padding-bottom: 40px;}
.pb50{padding-bottom: 50px;}
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}
.clearfix{*+height:1%;}
.common-horizontal-ul{}
.common-horizontal-ul li{float: left;display: inline-block;}
/*通用 end*/
body{
background-color: #2a3e54;
}
.container{
padding: 0;
width: 100%;
}
.header{
height: 95px;
background-color: #465163;
border-bottom: 1px solid #526070;
}
.header .logo{
float: left;
margin: 15px 0 15px 20px;
}
.header .login-list{
float: right;
margin: 15px 20px;
text-align: right;
font-size: 12px;
}
.header .login-list .login-pwd{
color: #fff;
}
.header .login-list .login-info{
margin-top: 30px;
color: #fff;
}
.header .login-list .login-info span{
margin: 0 5px;
color: #c28b86;
}
.main_container{
min-height: 600px;
}
.main_container .sidebar{
position: absolute;
width: 230px;
background-color: #2a3f54;
min-height: 100%;
}
.main_container .sidebar h5{
margin: 15px;
color: #fff;
}
.main_container .main{
margin-left: 230px;
padding: 20px;
background-color: #f7f7f7;
}
.nav > li{
cursor: pointer;
background-color: #2a3e54;
}
.nav > li > a{
color: #fff;
}
.nav > li:hover >a{
color: #fff;
background-color: #34475b;
}
.side-menu .active{
border-right: 4px solid #1abb9c;
}
.side-menu .active .child_menu{
display: block;
background-color: #fff;
}
.side-menu .active > a{
background-color: #34475b;
}
.nav.child_menu{
display: none;
margin-top: 5px;
}
.nav.child_menu li{
padding-left: 36px;
}
.nav.child_menu li a{
padding: 10px;
line-height: 1;
}
.nav.child_menu li.current-page{
background-color: #34475b;
}
.nav.child_menu > li:hover{
color: #fff;
background-color: #34475b;
}
.nav.child_menu li:before{
position: absolute;
left: 30px;
content: "";
width: 1px;
height: 34px;
background-color: #435668;
}
.nav.child_menu li:after{
position: absolute;
content: "";
left: 26px;
top: 13px;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #435668;
}
.side-menu span.fa{
color: #c4cfda;
float: right;
font-size: 10px;
margin-top: 5px;
min-width: inherit;
}
.side-menu .fa{
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-family: FontAwesome;
font-size: 18px;
font-style: normal;
font-weight: 400;
opacity: 0.99;
width: 26px;
} | 0.255344 | 0.061509 |
body {
background-color: #FC9403 !important;
background-image: url("http://2.bp.blogspot.com/-6rmHcJp6l_Q/T_vQg7vFkxI/AAAAAAAALoU/klQbQfhqRhE/s1600/imagen1.jpeg") !important;/* imagen fondo de la pagina */
background-attachment: fixed !important;
background-repeat: no-repeat !important;
background-position: top center !important;
background-color: #C0DEED !important;/* Color fondo de la pagina */
color: #BABABA !important;
}
#pageHead { background:#181717 ;z-index: 10 !important; }
#pageHead, body:not(.UIPage_LoggedOut):not(.fbIndex)
#blueBar {
background:#181717;/* COLOR FONDO DE HEADER */
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
z-index : 5 !important;
position: float!important; top: 0px;
padding-left:5px;
}
body:not(.fixedBody)
#content {margin-top: 50px !important;/* DISTANCIA ENTRE CABECERA Y CONTENIDO */
}
.ptm {margin-top: -6px !important;}
#blueBarHolder {
background: -moz-linear-gradient(center top , #DA8E8E, #FEF104) repeat scroll 0 0 transparent !important;
}
.loggedout_menubar_container{height:900px !important;}
.loggedout_menubar{padding-top: 100px !important;}
#mainContainer{
background:#fff; /*FONDO SIDEBAR 1 */
-moz-box-shadow: 20px 40px 40px rgba(0,0,0,.25);
border: 2px solid white !important;
-moz-border-radius: 15px;
border-radius: 15px;
}
uiHeaderSection, .uiSideHeader {
background: -moz-linear-gradient(top, #c0deed 40%, #ffffff 100%);
-moz-border-radius: 10px;
border-radius: 10px;
}
.uiScrollableAreaBody {
padding-top: 40px;}
.profile-picture {
border: 1px solid white;
-webkit-transform: rotate(-2deg);
-moz-transform: rotate(-2deg);
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
margin-left: -10px;/* PARTES DE LA IMAGEN DE INICIO */
}
.profile-picture:hover {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
position: relative;
z-index: 5;
}
.profile-friends li:hover {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
position: relative;
z-index: 5;
}
.UIImageBlock_MED_Image{
border: 0px solid white;
-webkit-transform: rotate(1deg) !important;
-moz-transform: rotate(1deg) !important;
margin-top: -10px;
margin-bottom: 8px;
}/* imagen de los amigos en la sidebar 1 */
.uiProfilePhotoMedium{
border: 4px solid white !important;
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
margin: 2px;
}
.event_profile .event_upload_image {
width: 179px;
border: 8px solid white !important;
-webkit-transform: rotate(-2deg);
-moz-transform: rotate(-2deg);
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
margin-left: -40px;
}
.MessagingContentBorder {
position: absolute !important;
}
.MessagingReadHeader {
margin-left: -20px;
width: 800px !important;
margin-top: -23px !important;
}
.storyContent{
width: 400px;/* ANCHO DEL CONTENIDO DE CADA POST */
padding-top: 5px;
padding-bottom:5px;
padding-right: 5px;
margin-left: -8px;
margin-top: 14px;
-moz-border-radius: 1em 4em 1em 4em;
border-radius: 1em 50em 1em 20em;
background: transparent;/* COLOR DE FONDO DEL POST */
background: -moz-linear-gradient(top, #c0deed 0%, #ffffff 100%);
}
.uiStreamMinistoryGroup {
padding: 15px 0 10px 25px !important;
}
.fbNubFlyoutTitlebar{
-moz-border-radius-topright: 10px;
}
#fbDockChat{
-moz-box-shadow: 6px -4px 12px rgba(0,0,0,.25);
}
element.style {
min-height: 100px !important;
}
.hasLeftCol #contentCol {
border-left: 1px solid #C0DEED !important;/* borde del contenido left */
}
#contentCol {
background-color: transparent !important;
padding-top: 0px !important;/* Distancia desde la izquierda */
}
#headNav {
background: -moz-linear-gradient(center top , #333333, #111111) repeat scroll 0 0 transparent !important;
border-color: #404040 #404040 -moz-use-text-color !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.uiLinkButton:hover, .uiLinkButton input:hover, .uiLinkButton input:focus, .uiLinkButton input:active {
color: #FFFFFF !important;
}
.openToggler #navAccountLink, .no_js #navAccount:hover #navAccountLink {
background-color: #404040 !important;
color: #FFFFFF !important;
}
#pageNav a {
color: #FFFFFF !important;
}
#navAccount ul {
background: #FFFFFF none repeat scroll 0 0 #2a2a2a !important;
border-color: #404040 #404040 #404040 !important;/* Color del borde de las pestañas del menu*/
}
#navAccount ul a:hover, #navAccount ul a:focus, #navAccount ul a:active, #navAccount .logoutButton:hover input, #navAccount .logoutButton input:active, #navAccount .logoutButton input:focus {
background: none repeat scroll 0 0 #C3FE2C !important;/* Color pestañas al pasar el cursor del menu*/
border-bottom: 1px solid #9B9C9B !important ;
border-top: 1px solid #6E6E6D !important ;
color: #404040 !important;/* Color letras del menu desplegable*/
}
#pageNav a:hover, #pageNav a:focus, #pageNav a:active {
background-color: #474747 !important;
}
#navAccount ul a, #navAccount ul .logoutButton input {
color: #BABABA !important;
}
#pageNav a {
color: #BABABA !important;
}
#pageNav a:hover, #pageNav a:focus, #pageNav a:active {
color: #FFFFFF !important;
}
#jewelRequest:hover, #jewelRequest:focus, #jewelRequest:active {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
background-color: #2a2a2a !important;
}
#jewelRequest {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
.jewelToggler:active, .jewelToggler:focus, .jewelToggler:hover {
background-color: #474747 !important;
}
#jewelMail:hover, #jewelMail:focus, #jewelMail:active {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
#jewelMail {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
.jewelToggler:active, .jewelToggler:focus, .jewelToggler:hover {
background-color: #474747 !important;
}
#jewelNotif:hover, #jewelNotif:focus, #jewelNotif:active {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
#jewelNotif {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
.jewelToggler:active, .jewelToggler:focus, .jewelToggler:hover {
background-color: #474747 !important;
}
.jewelToggler:active, .jewelToggler:focus, .jewelToggler:hover {
background-color: #474747 !important;
}
#jewelCase .jewelBox {
background-color: #2a2a2a !important;
border-color: #333333 #333333 #2a2a2a !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.jewelBox ul {
background-color: #2a2a2a !important;
}
.uiHeaderSection, .uiSideHeader {
background-color: #b3ceff !important;
}
#jewelCase .jewelFooter a:hover, #jewelCase .jewelFooter a:active, #jewelCase .jewelFooter a:focus {
background-color: #474747 !important;
border-top: 1px solid #E0E0E0 !important;
color: #FFFFFF !important;
}
#jewelCase .jewelFooter a {
background-color: #404040 !important;
color: #BABABA !important;
}
#jewelBoxMail .subject {
color: #BABABA !important;
}
#jewelBoxNotif .blueName {
color: #BABABA !important;
}
#jewelBoxNotif li a {
color: #808080 !important;
}
#jewelCase .jewelHighlightItem li {
border-top: 1px solid #404040 !important;
}
#jewelCase .jewelItemNew {
background: none repeat scroll 0 0 #4F4F4F !important;
}
#jewelCase .jewelHighlightItem li a:hover, #jewelCase .jewelHighlightItem li a:active, #jewelCase .jewelHighlightItem li a:focus {
background-color: #474747 !important;
border-bottom: 1px solid #474747 !important;
border-top: 1px solid #474747 !important;
}
#jewelBoxMail .author {
color: #BABABA !important;
}
#jewelCase .jewelHeader a {
color: #BABABA !important;
}
element.style {
background-color: #2a2a2a !important;
}
.jewelBox ul {
background-color: #2a2a2a !important;
}
.fbDock, .fbDockWrapperLeft .lNubContainer, .fbDockWrapperRight .rNubContainer {
background: url("http://3.bp.blogspot.com/-t1eBquNC44k/T_x3ifIT4zI/AAAAAAAALpI/YtpWCL-3kkE/s1600/klklklklklc.png") repeat-x scroll 0 0 #F4F4F4 !important;
border-color: #999999;
}
.fbDock .rNubContainer {
float: right;
background: #fff !important;/* Color fondo atraz del fondo del chat */
}
.clearfix {
display: block;
}
.fbNubButton {
background:#292828; !important;/* Color fondo del chat */
}
.fbNubButton:hover {
background-color: #474747 !important;/* Color del chat al pasar el cursor */
border-style: solid;
color: #BABABA !important;
font-weight: bold;
}
.fbDockChatBuddyListNub .label .count strong {
color: #BABABA !important;
}
.fbNubFlyoutTitlebar {
-moz-border-bottom-colors: none;
-moz-border-image: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #2a2a2a !important;/* Color borde de la palabra chat */
border-color: #254588 ##E40909 -moz-use-text-color;
border-style: solid solid none;
border-width: 1px 1px 0;
color: #FFFFFF;
cursor: pointer;
font-size: 11px;
font-weight: bold;
line-height: 14px;
padding: 3px 3px 3px 5px;
}
.fbNubFlyout {
background-color: #F5F5F5 !important;
border-bottom: 1px solid #777777;
bottom: 25px;
position: absolute;
}
.friendlist_name {
background-color: #F5F5F5 !important;
color: #888888;
float: left;
padding: 0 5px 0 6px;
}
.switch {
background-color: #F5F5F5 !important;
display: block;
float: right;
padding: 3px 6px;
position: relative;
}
.openToggler .fbNubButton {
background: none repeat scroll 0 0 #2a2a2a !important;
border-color: #F61010;
border-right-width: 1px;
border-top-width: 0;
margin-right: -1px;
padding: 5px;
}
.fbChatMessage {
margin-bottom: 3px;
white-space: pre-wrap;
word-wrap: break-word;
color: #2a2a2a !important;
}
.fbNubButton .rule {
border-top: 1px solid #474747 !important;
margin-top: -5px;
padding-top: 4px;
position: relative;
}
element.style {
background-color: #2a2a2a !important;
}
.fbNubButton {
border-color: #474747 !important;
border-style: solid;
border-width: 1px 0 0 1px;
color: #333333;
display: block;
font-weight: bold;
height: 16px;
padding: 4px 5px;
position: relative;
z-index: 1;
}
.no-titan .fbDockChatTab.disabled .fbNubButton {
background-color: #9A9A9A !important;
color: #454545 !important;
}
.fbNubButton {
border-color: ;
border-style: solid;
border-width: 1px 0 0 1px;
color: #333333;
display: block;
font-weight: bold;
height: 16px;
padding: 4px 5px;
position: relative;
z-index: 1;
}
a {
color: #3B5998;
cursor: pointer;
text-decoration: none;
}
.fbNubButton {
border-color: #474747 !important;/* borde del fondo del chat */
border-style: solid;
border-width: 1px 0 0 1px;
color: #333333;
display: block;
font-weight: bold;
height: 16px;
padding: 4px 5px;
position: relative;
z-index: 1;
}
.fbNubButton {
border-style: solid;
color: #BABABA !important;
font-weight: bold;
}
a {
color: #3B5998;
cursor: pointer;
text-decoration: none;
}
a {
color: #3B5998;/* LETRAS color de los enlaces */
cursor: pointer;
text-decoration: none;
}
.uiUfiComment .commentContent {
color: #2a2a2a !important;
}
.uiUfi .ufiItem {
color: #2a2a2a !important;
}
.UIWell {
background: none !important;
}
.GBUndoAction_notification_text {
color: #2a2a2a !important;
}
.sp_a2jb2c {
background-image: url("http://1.bp.blogspot.com/-oLYoQjlimo4/T_x3imaoIaI/AAAAAAAALpU/BihHSUWRTaM/s1600/lokuj.png") !important;
}
.fbDockChatBuddyListNub .icon {
background-image: url("http://1.bp.blogspot.com/-5BhsV4bMibo/T_x3iSbxPII/AAAAAAAALo8/xyKISWICC5A/s320/jiohoho.gif") !important;
}
.loggedout_menubar_container {
background: -moz-linear-gradient(center top , #333333, #111111) repeat scroll 0 0 transparent !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.uiWashLayoutGradientWash, .uiWashLayoutEmptyGradientWash {
background-color: transparent !important;
background-image: url("http://3.bp.blogspot.com/-e4GLb-GmkNU/T_yJ8OVAuGI/AAAAAAAALp8/jMsUTRCQkwQ/s1600/naranja.png") !important;
background-attachment: fixed !important;
background-repeat: no-repeat !important;
background-position: top center !important;
background-color: #C0DEED !important;
}
#contentCurve {
background-color: transparent !important;
}
#photoborder {
background-color: transparent !important;
}
.photo_metadata {
color: #2a2a2a !important;
}
.fbDockChatTab.highlight .fbNubButton {
background: url("http://2.bp.blogspot.com/-CvVQB8KrpuU/T_x3h5Rc0mI/AAAAAAAALow/ZrGtf-VwZVE/s1600/aaabbb.png") repeat-x scroll 0 0 #6D84B4 !important;
color: #FFFFFF !important;
}
.uiSideNav .item, .uiSideNav .subitem {
background: #6D84B4,
border-bottom: 1px solid #2A2A2A !important;
}
.uiSideNav .selectedItem .item, .uiSideNav .selectedItem .item:hover, .uiSideNav ul .selectedItem .subitem, .uiSideNav ul .selectedItem .subitem:hover {
background-color: #DBEDF5 !important;
}
td, td.label {
color: #2a2a2a !important;
}
.openToggler .jewelToggler {
background-color: #2a2a2a !important;
}
.mvs {
color: #2a2a2a !important;
}
#pageFooter {
background-color: transparent !important;
}
.uiSideNav .item, .uiSideNav .subitem {
border-bottom: 0px solid transparent !important;
}
ul #navAccountInfo a:hover, ul #navAccountInfo a:focus, ul #navAccountInfo a:active {
text-decoration: none !important;
}
ul #navAccountPic a:hover, ul #navAccountPic a:focus, ul #navAccountPic a:active {
padding: 3px 5px 8px !important;
}
.uiNumberGiant {
color: #666666 !important;
}
.fsm {
color: #666666 !important;
}
.uiBlingBox {
border-bottom: 0 !important;
}
.uiSideNav .item, .uiSideNav .subitem {
border-bottom: 1px solid #888888 !important;
}
#contentArea {
color: #666666 !important;
}
.uiSideNav .selectedItem .item, .uiSideNav .selectedItem .item:hover, .uiSideNav ul .selectedItem .subitem, .uiSideNav ul .selectedItem .subitem:hover {
background-color: #333333 !important;/* FONDO titulos sidebar 1 */
color: #BABABA !important;
}
.uiSideNav .item:hover, .uiSideNav .item:active, .uiSideNav .item:focus, .uiSideNav .subitem:hover, .uiSideNav .subitem:active, .uiSideNav .subitem:focus {
background-color: #C3FE2C !important;/* FONDO titulos al pasar cursor */
color: #2A2A2A !important;}
.placePageStats {
color: #666666 !important;
}
.uiHeader h3, .uiHeader h4 {
color: #666666 !important;
}
#navSearch .uiTypeahead, #navSearch .uiTypeahead .wrap {
border-color: #666666 !important;
}
.pop_content h2.dialog_title {
background: -moz-linear-gradient(center top , #333333, #111111) repeat scroll 0 0 transparent !important;
border-color: #2A2A2A #2A2A2A -moz-use-text-color !important;
color: #BABABA !important;
}
.pop_content .dialog_content {
background: none repeat scroll 0 0 #DBEDF5 !important;
}
.uiLinkButton:hover, .uiLinkButton input:hover, .uiLinkButton input:focus, .uiLinkButton input:active {
color: #474747 !important;
}
.pop_content .dialog_content {
color: #474747 !important;
}
#video_info #video_metadata .video_title {
background: none repeat scroll 0 0 transparent !important;
}
#description {
color: #3D3C3C !important;
}
.profile .blurb.owner .text_wrapper, .profile .blurb.owner .edit {
color: #474747 !important;
}
.profile .profile_color_bar {
background-color: #8EC1DA !important;
background-image: url("http://3.bp.blogspot.com/-e4GLb-GmkNU/T_yJ8OVAuGI/AAAAAAAALp8/jMsUTRCQkwQ/s1600/naranja.png") !important;/* FONDO CABECERA NUBES */
background-position: 70px -41px !important;
} | data/usercss/69076.user.css | body {
background-color: #FC9403 !important;
background-image: url("http://2.bp.blogspot.com/-6rmHcJp6l_Q/T_vQg7vFkxI/AAAAAAAALoU/klQbQfhqRhE/s1600/imagen1.jpeg") !important;/* imagen fondo de la pagina */
background-attachment: fixed !important;
background-repeat: no-repeat !important;
background-position: top center !important;
background-color: #C0DEED !important;/* Color fondo de la pagina */
color: #BABABA !important;
}
#pageHead { background:#181717 ;z-index: 10 !important; }
#pageHead, body:not(.UIPage_LoggedOut):not(.fbIndex)
#blueBar {
background:#181717;/* COLOR FONDO DE HEADER */
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
z-index : 5 !important;
position: float!important; top: 0px;
padding-left:5px;
}
body:not(.fixedBody)
#content {margin-top: 50px !important;/* DISTANCIA ENTRE CABECERA Y CONTENIDO */
}
.ptm {margin-top: -6px !important;}
#blueBarHolder {
background: -moz-linear-gradient(center top , #DA8E8E, #FEF104) repeat scroll 0 0 transparent !important;
}
.loggedout_menubar_container{height:900px !important;}
.loggedout_menubar{padding-top: 100px !important;}
#mainContainer{
background:#fff; /*FONDO SIDEBAR 1 */
-moz-box-shadow: 20px 40px 40px rgba(0,0,0,.25);
border: 2px solid white !important;
-moz-border-radius: 15px;
border-radius: 15px;
}
uiHeaderSection, .uiSideHeader {
background: -moz-linear-gradient(top, #c0deed 40%, #ffffff 100%);
-moz-border-radius: 10px;
border-radius: 10px;
}
.uiScrollableAreaBody {
padding-top: 40px;}
.profile-picture {
border: 1px solid white;
-webkit-transform: rotate(-2deg);
-moz-transform: rotate(-2deg);
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
margin-left: -10px;/* PARTES DE LA IMAGEN DE INICIO */
}
.profile-picture:hover {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
position: relative;
z-index: 5;
}
.profile-friends li:hover {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
position: relative;
z-index: 5;
}
.UIImageBlock_MED_Image{
border: 0px solid white;
-webkit-transform: rotate(1deg) !important;
-moz-transform: rotate(1deg) !important;
margin-top: -10px;
margin-bottom: 8px;
}/* imagen de los amigos en la sidebar 1 */
.uiProfilePhotoMedium{
border: 4px solid white !important;
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
margin: 2px;
}
.event_profile .event_upload_image {
width: 179px;
border: 8px solid white !important;
-webkit-transform: rotate(-2deg);
-moz-transform: rotate(-2deg);
-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
margin-left: -40px;
}
.MessagingContentBorder {
position: absolute !important;
}
.MessagingReadHeader {
margin-left: -20px;
width: 800px !important;
margin-top: -23px !important;
}
.storyContent{
width: 400px;/* ANCHO DEL CONTENIDO DE CADA POST */
padding-top: 5px;
padding-bottom:5px;
padding-right: 5px;
margin-left: -8px;
margin-top: 14px;
-moz-border-radius: 1em 4em 1em 4em;
border-radius: 1em 50em 1em 20em;
background: transparent;/* COLOR DE FONDO DEL POST */
background: -moz-linear-gradient(top, #c0deed 0%, #ffffff 100%);
}
.uiStreamMinistoryGroup {
padding: 15px 0 10px 25px !important;
}
.fbNubFlyoutTitlebar{
-moz-border-radius-topright: 10px;
}
#fbDockChat{
-moz-box-shadow: 6px -4px 12px rgba(0,0,0,.25);
}
element.style {
min-height: 100px !important;
}
.hasLeftCol #contentCol {
border-left: 1px solid #C0DEED !important;/* borde del contenido left */
}
#contentCol {
background-color: transparent !important;
padding-top: 0px !important;/* Distancia desde la izquierda */
}
#headNav {
background: -moz-linear-gradient(center top , #333333, #111111) repeat scroll 0 0 transparent !important;
border-color: #404040 #404040 -moz-use-text-color !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.uiLinkButton:hover, .uiLinkButton input:hover, .uiLinkButton input:focus, .uiLinkButton input:active {
color: #FFFFFF !important;
}
.openToggler #navAccountLink, .no_js #navAccount:hover #navAccountLink {
background-color: #404040 !important;
color: #FFFFFF !important;
}
#pageNav a {
color: #FFFFFF !important;
}
#navAccount ul {
background: #FFFFFF none repeat scroll 0 0 #2a2a2a !important;
border-color: #404040 #404040 #404040 !important;/* Color del borde de las pestañas del menu*/
}
#navAccount ul a:hover, #navAccount ul a:focus, #navAccount ul a:active, #navAccount .logoutButton:hover input, #navAccount .logoutButton input:active, #navAccount .logoutButton input:focus {
background: none repeat scroll 0 0 #C3FE2C !important;/* Color pestañas al pasar el cursor del menu*/
border-bottom: 1px solid #9B9C9B !important ;
border-top: 1px solid #6E6E6D !important ;
color: #404040 !important;/* Color letras del menu desplegable*/
}
#pageNav a:hover, #pageNav a:focus, #pageNav a:active {
background-color: #474747 !important;
}
#navAccount ul a, #navAccount ul .logoutButton input {
color: #BABABA !important;
}
#pageNav a {
color: #BABABA !important;
}
#pageNav a:hover, #pageNav a:focus, #pageNav a:active {
color: #FFFFFF !important;
}
#jewelRequest:hover, #jewelRequest:focus, #jewelRequest:active {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
background-color: #2a2a2a !important;
}
#jewelRequest {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
.jewelToggler:active, .jewelToggler:focus, .jewelToggler:hover {
background-color: #474747 !important;
}
#jewelMail:hover, #jewelMail:focus, #jewelMail:active {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
#jewelMail {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
.jewelToggler:active, .jewelToggler:focus, .jewelToggler:hover {
background-color: #474747 !important;
}
#jewelNotif:hover, #jewelNotif:focus, #jewelNotif:active {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
#jewelNotif {
background-image: url("http://3.bp.blogspot.com/-v9pe6QV7Fpc/T_x3i8jtKiI/AAAAAAAALpg/2lxkqmIerP4/s1600/zzzzzzz.png") !important;
}
.jewelToggler:active, .jewelToggler:focus, .jewelToggler:hover {
background-color: #474747 !important;
}
.jewelToggler:active, .jewelToggler:focus, .jewelToggler:hover {
background-color: #474747 !important;
}
#jewelCase .jewelBox {
background-color: #2a2a2a !important;
border-color: #333333 #333333 #2a2a2a !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.jewelBox ul {
background-color: #2a2a2a !important;
}
.uiHeaderSection, .uiSideHeader {
background-color: #b3ceff !important;
}
#jewelCase .jewelFooter a:hover, #jewelCase .jewelFooter a:active, #jewelCase .jewelFooter a:focus {
background-color: #474747 !important;
border-top: 1px solid #E0E0E0 !important;
color: #FFFFFF !important;
}
#jewelCase .jewelFooter a {
background-color: #404040 !important;
color: #BABABA !important;
}
#jewelBoxMail .subject {
color: #BABABA !important;
}
#jewelBoxNotif .blueName {
color: #BABABA !important;
}
#jewelBoxNotif li a {
color: #808080 !important;
}
#jewelCase .jewelHighlightItem li {
border-top: 1px solid #404040 !important;
}
#jewelCase .jewelItemNew {
background: none repeat scroll 0 0 #4F4F4F !important;
}
#jewelCase .jewelHighlightItem li a:hover, #jewelCase .jewelHighlightItem li a:active, #jewelCase .jewelHighlightItem li a:focus {
background-color: #474747 !important;
border-bottom: 1px solid #474747 !important;
border-top: 1px solid #474747 !important;
}
#jewelBoxMail .author {
color: #BABABA !important;
}
#jewelCase .jewelHeader a {
color: #BABABA !important;
}
element.style {
background-color: #2a2a2a !important;
}
.jewelBox ul {
background-color: #2a2a2a !important;
}
.fbDock, .fbDockWrapperLeft .lNubContainer, .fbDockWrapperRight .rNubContainer {
background: url("http://3.bp.blogspot.com/-t1eBquNC44k/T_x3ifIT4zI/AAAAAAAALpI/YtpWCL-3kkE/s1600/klklklklklc.png") repeat-x scroll 0 0 #F4F4F4 !important;
border-color: #999999;
}
.fbDock .rNubContainer {
float: right;
background: #fff !important;/* Color fondo atraz del fondo del chat */
}
.clearfix {
display: block;
}
.fbNubButton {
background:#292828; !important;/* Color fondo del chat */
}
.fbNubButton:hover {
background-color: #474747 !important;/* Color del chat al pasar el cursor */
border-style: solid;
color: #BABABA !important;
font-weight: bold;
}
.fbDockChatBuddyListNub .label .count strong {
color: #BABABA !important;
}
.fbNubFlyoutTitlebar {
-moz-border-bottom-colors: none;
-moz-border-image: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #2a2a2a !important;/* Color borde de la palabra chat */
border-color: #254588 ##E40909 -moz-use-text-color;
border-style: solid solid none;
border-width: 1px 1px 0;
color: #FFFFFF;
cursor: pointer;
font-size: 11px;
font-weight: bold;
line-height: 14px;
padding: 3px 3px 3px 5px;
}
.fbNubFlyout {
background-color: #F5F5F5 !important;
border-bottom: 1px solid #777777;
bottom: 25px;
position: absolute;
}
.friendlist_name {
background-color: #F5F5F5 !important;
color: #888888;
float: left;
padding: 0 5px 0 6px;
}
.switch {
background-color: #F5F5F5 !important;
display: block;
float: right;
padding: 3px 6px;
position: relative;
}
.openToggler .fbNubButton {
background: none repeat scroll 0 0 #2a2a2a !important;
border-color: #F61010;
border-right-width: 1px;
border-top-width: 0;
margin-right: -1px;
padding: 5px;
}
.fbChatMessage {
margin-bottom: 3px;
white-space: pre-wrap;
word-wrap: break-word;
color: #2a2a2a !important;
}
.fbNubButton .rule {
border-top: 1px solid #474747 !important;
margin-top: -5px;
padding-top: 4px;
position: relative;
}
element.style {
background-color: #2a2a2a !important;
}
.fbNubButton {
border-color: #474747 !important;
border-style: solid;
border-width: 1px 0 0 1px;
color: #333333;
display: block;
font-weight: bold;
height: 16px;
padding: 4px 5px;
position: relative;
z-index: 1;
}
.no-titan .fbDockChatTab.disabled .fbNubButton {
background-color: #9A9A9A !important;
color: #454545 !important;
}
.fbNubButton {
border-color: ;
border-style: solid;
border-width: 1px 0 0 1px;
color: #333333;
display: block;
font-weight: bold;
height: 16px;
padding: 4px 5px;
position: relative;
z-index: 1;
}
a {
color: #3B5998;
cursor: pointer;
text-decoration: none;
}
.fbNubButton {
border-color: #474747 !important;/* borde del fondo del chat */
border-style: solid;
border-width: 1px 0 0 1px;
color: #333333;
display: block;
font-weight: bold;
height: 16px;
padding: 4px 5px;
position: relative;
z-index: 1;
}
.fbNubButton {
border-style: solid;
color: #BABABA !important;
font-weight: bold;
}
a {
color: #3B5998;
cursor: pointer;
text-decoration: none;
}
a {
color: #3B5998;/* LETRAS color de los enlaces */
cursor: pointer;
text-decoration: none;
}
.uiUfiComment .commentContent {
color: #2a2a2a !important;
}
.uiUfi .ufiItem {
color: #2a2a2a !important;
}
.UIWell {
background: none !important;
}
.GBUndoAction_notification_text {
color: #2a2a2a !important;
}
.sp_a2jb2c {
background-image: url("http://1.bp.blogspot.com/-oLYoQjlimo4/T_x3imaoIaI/AAAAAAAALpU/BihHSUWRTaM/s1600/lokuj.png") !important;
}
.fbDockChatBuddyListNub .icon {
background-image: url("http://1.bp.blogspot.com/-5BhsV4bMibo/T_x3iSbxPII/AAAAAAAALo8/xyKISWICC5A/s320/jiohoho.gif") !important;
}
.loggedout_menubar_container {
background: -moz-linear-gradient(center top , #333333, #111111) repeat scroll 0 0 transparent !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.uiWashLayoutGradientWash, .uiWashLayoutEmptyGradientWash {
background-color: transparent !important;
background-image: url("http://3.bp.blogspot.com/-e4GLb-GmkNU/T_yJ8OVAuGI/AAAAAAAALp8/jMsUTRCQkwQ/s1600/naranja.png") !important;
background-attachment: fixed !important;
background-repeat: no-repeat !important;
background-position: top center !important;
background-color: #C0DEED !important;
}
#contentCurve {
background-color: transparent !important;
}
#photoborder {
background-color: transparent !important;
}
.photo_metadata {
color: #2a2a2a !important;
}
.fbDockChatTab.highlight .fbNubButton {
background: url("http://2.bp.blogspot.com/-CvVQB8KrpuU/T_x3h5Rc0mI/AAAAAAAALow/ZrGtf-VwZVE/s1600/aaabbb.png") repeat-x scroll 0 0 #6D84B4 !important;
color: #FFFFFF !important;
}
.uiSideNav .item, .uiSideNav .subitem {
background: #6D84B4,
border-bottom: 1px solid #2A2A2A !important;
}
.uiSideNav .selectedItem .item, .uiSideNav .selectedItem .item:hover, .uiSideNav ul .selectedItem .subitem, .uiSideNav ul .selectedItem .subitem:hover {
background-color: #DBEDF5 !important;
}
td, td.label {
color: #2a2a2a !important;
}
.openToggler .jewelToggler {
background-color: #2a2a2a !important;
}
.mvs {
color: #2a2a2a !important;
}
#pageFooter {
background-color: transparent !important;
}
.uiSideNav .item, .uiSideNav .subitem {
border-bottom: 0px solid transparent !important;
}
ul #navAccountInfo a:hover, ul #navAccountInfo a:focus, ul #navAccountInfo a:active {
text-decoration: none !important;
}
ul #navAccountPic a:hover, ul #navAccountPic a:focus, ul #navAccountPic a:active {
padding: 3px 5px 8px !important;
}
.uiNumberGiant {
color: #666666 !important;
}
.fsm {
color: #666666 !important;
}
.uiBlingBox {
border-bottom: 0 !important;
}
.uiSideNav .item, .uiSideNav .subitem {
border-bottom: 1px solid #888888 !important;
}
#contentArea {
color: #666666 !important;
}
.uiSideNav .selectedItem .item, .uiSideNav .selectedItem .item:hover, .uiSideNav ul .selectedItem .subitem, .uiSideNav ul .selectedItem .subitem:hover {
background-color: #333333 !important;/* FONDO titulos sidebar 1 */
color: #BABABA !important;
}
.uiSideNav .item:hover, .uiSideNav .item:active, .uiSideNav .item:focus, .uiSideNav .subitem:hover, .uiSideNav .subitem:active, .uiSideNav .subitem:focus {
background-color: #C3FE2C !important;/* FONDO titulos al pasar cursor */
color: #2A2A2A !important;}
.placePageStats {
color: #666666 !important;
}
.uiHeader h3, .uiHeader h4 {
color: #666666 !important;
}
#navSearch .uiTypeahead, #navSearch .uiTypeahead .wrap {
border-color: #666666 !important;
}
.pop_content h2.dialog_title {
background: -moz-linear-gradient(center top , #333333, #111111) repeat scroll 0 0 transparent !important;
border-color: #2A2A2A #2A2A2A -moz-use-text-color !important;
color: #BABABA !important;
}
.pop_content .dialog_content {
background: none repeat scroll 0 0 #DBEDF5 !important;
}
.uiLinkButton:hover, .uiLinkButton input:hover, .uiLinkButton input:focus, .uiLinkButton input:active {
color: #474747 !important;
}
.pop_content .dialog_content {
color: #474747 !important;
}
#video_info #video_metadata .video_title {
background: none repeat scroll 0 0 transparent !important;
}
#description {
color: #3D3C3C !important;
}
.profile .blurb.owner .text_wrapper, .profile .blurb.owner .edit {
color: #474747 !important;
}
.profile .profile_color_bar {
background-color: #8EC1DA !important;
background-image: url("http://3.bp.blogspot.com/-e4GLb-GmkNU/T_yJ8OVAuGI/AAAAAAAALp8/jMsUTRCQkwQ/s1600/naranja.png") !important;/* FONDO CABECERA NUBES */
background-position: 70px -41px !important;
} | 0.282691 | 0.051845 |
@charset "utf-8";
/* CSS Document */
.all-elements{
overflow-x:hidden;
}
body{
background-color:#282c33;
}
.page-header{
background-image:url(../images/misc/menu-bg.png);
height:60px;
box-shadow: 0px 3px 2px 2px rgba(0, 0, 0, 0.2);
}
.paragraph{
display:block;
width:100%;
}
.logo{
width:78px;
float:right;
margin-top:22px;
margin-right:20px;
}
.deploy-sidebar{
position:absolute;
top:0px;
left:0px;
background-image:url(../images/misc/deploy-menu_402x.png);
background-size:18px 12px;
background-position:20px 23px;
background-repeat:no-repeat;
width:60px;
height:60px;
}
.deploy-sidebar:hover{
background-color:rgba(255,255,255,0.1);
}
.deploy-contact{
position:absolute;
top:24px;
right:20px;
background-image:url(../images/misc/deploy-mail_402x.png);
background-size:18px 12px;
width:18px;
height:12px;
}
.bxslider-wrapper{
margin-bottom:-20px;
}
.page-content{
background-image:url(../images/misc/menu-bg.png);
z-index:10;
display:block;
min-height:525px;
box-shadow: -2px 0px 5px 5px rgba(0, 0, 0, 0.3);
}
.page-content-wrapper{
display:block;
background-color:#FFFFFF;
padding:20px;
margin-top:0px;
margin-bottom:0px;
padding-bottom:15px;
}
.page-sidebar{
background-color:#FFFFFF;
width:230px;
display:block;
position:absolute;
z-index:2;
top:0px;
left:0px;
bottom:0px;
overflow:hidden;
position:fixed;
}
.page-sidebar-scroll{
background-image:url(../images/misc/menu-bg.png);
background-repeat:repeat;
width:230px;
overflow: scroll!important;
overflow-x:hidden!important;
-webkit-overflow-scroll:touch!important;
height:100%;
}
.heading em{
font-family:'Dosis', sans-serif;
font-style:normal;
font-size:12px;
color:#F89F35;
}
.heading h3{
color:#252525;
font-weight:400;
margin-top:-5px;
}
.heading-left{
float:left;
}
.heading-right{
float:right;
margin-top:5px;
}
.thumbs{
width:110%;
margin-left:-5%;
}
.thumb{
width:33%;
box-sizing:border-box;
padding-left:10px;
padding-right:10px;
float:left;
margin-bottom:10px;
}
.thumb img{
width:100%;
display:block;
}
.left-thumb-text{
color:#FFFFFF;
text-align:left;
padding-left:10px;
margin-top:-30px;
}
.right-thumb-text{
color:#FFFFFF;
text-align:right;
padding-right:10px;
margin-top:-30px;
}
.copyright{
font-size:12px;
margin-top:-10px;
margin-bottom:-10px;
}
.footer{
padding-top:20px;
padding-bottom:15px;
background-image:url(../images/misc/menu-bg.png);
background-repeat:repeat;
width:320px;
}
.footer-shortcuts{
width:130px;
margin-left:auto;
margin-right:auto;
}
.footer-shortcuts a {
float:left;
margin-left:5px;
margin-right:5px;
}
.nav-item{
-webkit-tap-highlight-color: rgba(0,0,0,0);
float:left;
height:100px;
width:100px;
border:solid 1px rgba(0, 0, 0, 0.4);
box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.05);
border-top:none;
}
.no-border{
border-left:none!important;
}
.nav-item a{
-webkit-tap-highlight-color: rgba(0,0,0,0);
text-align:center;
color:rgba(255,255,255,0.6)!important;
font-size:14px;
margin-top:10px;
}
.nav-item:hover{
background-color:rgba(255,255,255,0.07);
}
.selected-nav-item{
background-color:rgba(255,255,255,0.07)!important;
}
.nav-item img{
margin-left:35px;
padding-bottom:10px;
padding-top:15px;
}
.small-nav-item{
float:left;
border:solid 1px rgba(0, 0, 0, 0.4);
box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.05);
width:50px;
height:75px;
}
.small-nav-item:hover{
background-color:rgba(255,255,255,0.07);
}
.small-nav-item a{
text-align:center;
color:rgba(255,255,255,0.6)!important;
font-size:12px;
margin-top:10px;
}
.small-nav-icon img{
margin-left:15px;
margin-top:10px;
margin-bottom:10px;
}
.sidebar-copyright{
padding-top:10px;
margin-bottom:10px;
font-size:12px!important;
display:block;
text-align:center;
} | styles/style.css | @charset "utf-8";
/* CSS Document */
.all-elements{
overflow-x:hidden;
}
body{
background-color:#282c33;
}
.page-header{
background-image:url(../images/misc/menu-bg.png);
height:60px;
box-shadow: 0px 3px 2px 2px rgba(0, 0, 0, 0.2);
}
.paragraph{
display:block;
width:100%;
}
.logo{
width:78px;
float:right;
margin-top:22px;
margin-right:20px;
}
.deploy-sidebar{
position:absolute;
top:0px;
left:0px;
background-image:url(../images/misc/deploy-menu_402x.png);
background-size:18px 12px;
background-position:20px 23px;
background-repeat:no-repeat;
width:60px;
height:60px;
}
.deploy-sidebar:hover{
background-color:rgba(255,255,255,0.1);
}
.deploy-contact{
position:absolute;
top:24px;
right:20px;
background-image:url(../images/misc/deploy-mail_402x.png);
background-size:18px 12px;
width:18px;
height:12px;
}
.bxslider-wrapper{
margin-bottom:-20px;
}
.page-content{
background-image:url(../images/misc/menu-bg.png);
z-index:10;
display:block;
min-height:525px;
box-shadow: -2px 0px 5px 5px rgba(0, 0, 0, 0.3);
}
.page-content-wrapper{
display:block;
background-color:#FFFFFF;
padding:20px;
margin-top:0px;
margin-bottom:0px;
padding-bottom:15px;
}
.page-sidebar{
background-color:#FFFFFF;
width:230px;
display:block;
position:absolute;
z-index:2;
top:0px;
left:0px;
bottom:0px;
overflow:hidden;
position:fixed;
}
.page-sidebar-scroll{
background-image:url(../images/misc/menu-bg.png);
background-repeat:repeat;
width:230px;
overflow: scroll!important;
overflow-x:hidden!important;
-webkit-overflow-scroll:touch!important;
height:100%;
}
.heading em{
font-family:'Dosis', sans-serif;
font-style:normal;
font-size:12px;
color:#F89F35;
}
.heading h3{
color:#252525;
font-weight:400;
margin-top:-5px;
}
.heading-left{
float:left;
}
.heading-right{
float:right;
margin-top:5px;
}
.thumbs{
width:110%;
margin-left:-5%;
}
.thumb{
width:33%;
box-sizing:border-box;
padding-left:10px;
padding-right:10px;
float:left;
margin-bottom:10px;
}
.thumb img{
width:100%;
display:block;
}
.left-thumb-text{
color:#FFFFFF;
text-align:left;
padding-left:10px;
margin-top:-30px;
}
.right-thumb-text{
color:#FFFFFF;
text-align:right;
padding-right:10px;
margin-top:-30px;
}
.copyright{
font-size:12px;
margin-top:-10px;
margin-bottom:-10px;
}
.footer{
padding-top:20px;
padding-bottom:15px;
background-image:url(../images/misc/menu-bg.png);
background-repeat:repeat;
width:320px;
}
.footer-shortcuts{
width:130px;
margin-left:auto;
margin-right:auto;
}
.footer-shortcuts a {
float:left;
margin-left:5px;
margin-right:5px;
}
.nav-item{
-webkit-tap-highlight-color: rgba(0,0,0,0);
float:left;
height:100px;
width:100px;
border:solid 1px rgba(0, 0, 0, 0.4);
box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.05);
border-top:none;
}
.no-border{
border-left:none!important;
}
.nav-item a{
-webkit-tap-highlight-color: rgba(0,0,0,0);
text-align:center;
color:rgba(255,255,255,0.6)!important;
font-size:14px;
margin-top:10px;
}
.nav-item:hover{
background-color:rgba(255,255,255,0.07);
}
.selected-nav-item{
background-color:rgba(255,255,255,0.07)!important;
}
.nav-item img{
margin-left:35px;
padding-bottom:10px;
padding-top:15px;
}
.small-nav-item{
float:left;
border:solid 1px rgba(0, 0, 0, 0.4);
box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.05);
width:50px;
height:75px;
}
.small-nav-item:hover{
background-color:rgba(255,255,255,0.07);
}
.small-nav-item a{
text-align:center;
color:rgba(255,255,255,0.6)!important;
font-size:12px;
margin-top:10px;
}
.small-nav-icon img{
margin-left:15px;
margin-top:10px;
margin-bottom:10px;
}
.sidebar-copyright{
padding-top:10px;
margin-bottom:10px;
font-size:12px!important;
display:block;
text-align:center;
} | 0.17614 | 0.061396 |
html {
font-size: 12.28125px !important;
}
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video
{
margin: 0;
padding: 0;
border: 0;
font: inherit;
font-size: 100%;
vertical-align: middle
}
table {
border-collapse: collapse;
border-spacing: 0
}
sub,sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline
}
fieldset,img {
border: 0
}
*,a,a:active,a:focus,button,div:active,div:focus,img,input,input:active,input:focus,textarea
{
-webkit-tap-highlight-color: transparent
}
a:focus,button:focus,input:focus {
outline: none
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section
{
display: block
}
html {
color: #333;
height: 100%;
-webkit-user-select: none;
user-select: none
}
* {
max-height: 999999px
}
#debuggapRoot .dg-out {
width: 5rem !important;
height: 5rem !important;
border-radius: 50% !important
}
#debuggapRoot .dg-inner {
width: 4rem !important;
height: 4rem !important;
border-radius: 50% !important;
margin: .5rem !important
}
body {
font-size: 1.2rem;
line-height: 1.5;
font-family: PingFang SC, -apple-system, Heiti SC, Helvetica,
Helvetica Neue, Droid Sans Fallback, Droid Sans;
height: auto;
min-height: 100%;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
flex-direction: column;
-webkit-text-size-adjust: none
}
body.not-flex {
display: block
}
ol,ul {
list-style: none
}
blockquote,q {
quotes: none
}
blockquote:after,blockquote:before,q:after,q:before {
content: ''
}
a {
text-decoration: none
}
.scrolling {
-webkit-overflow-scrolling: touch
}
.booked .form-group,.confirm-order .goods-info,.confirm-order .price-info,.confirm-order .user-info,.flex-column,.flex-row,.m-alert-dialog .operate,.m-alert-dialog .tip .tip-head,.m-confirm-dialog
.operate,.m-confirm-dialog .tip .tip-head,.m-datepicker .datepicker .m-header .m-h-title,.m-datepicker .tr-row,.m-dialog
.dialog-head,.m-stretch-swiper {
display: -webkit-box;
display: flex
}
.confirm-order .goods-info,.confirm-order .price-info,.confirm-order .user-info,.flex-column,.m-stretch-swiper
{
-webkit-box-orient: vertical;
flex-direction: column
}
.flex-item,.m-alert-dialog .operate span,.m-alert-dialog .tip .tip-title,.m-confirm-dialog .operate span,.m-confirm-dialog .tip
.tip-title,.m-datepicker .datepicker .m-header .title,.m-datepicker .tr-row>div,.m-dialog .dialog-head .title,.m-stretch-swiper>.swiper-wrapper,.pbd
{
-webkit-box-flex: 1;
flex: 1
}
.flex-vertical-middle {
-webkit-box-align: center;
align-items: center
}
.m-stretch-swiper>.swiper-wrapper {
-webkit-box-align: stretch;
align-items: stretch
}
.m-stretch-swiper>.swiper-wrapper>.swiper-slide {
height: auto
}
.single-line-clamp {
white-space: nowrap;
word-break: break-all
}
.ellipsis,.single-line-clamp {
overflow: hidden;
text-overflow: ellipsis
}
.ellipsis {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical
}
.pbd {
-webkit-user-select: none;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.border-box {
box-sizing: border-box
}
.prompt {
font-size: 1.1rem;
color: #ff7800;
background-color: #faf6de;
line-height: 1.4rem;
padding: .8rem 1.4rem;
position: absolute;
left: 0;
top: 0;
right: 0;
z-index: 1000
}
.prompt
.icon-prompt {
background-position: 50%;
width: 1.4rem;
height: 1.4rem;
background-image: url(./images/icons/prompt.png);
background-repeat: no-repeat;
background-size: 100%;
display: inline-block
}
.dashboardScroll {
height: 100%;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
-webkit-transform: translateZ(0);
-webkit-perspective: 1000
}
.dashboardScroll .dashboardScroll-inner,.dashboardScroll:after {
height: calc(100% + 1px)
}
.modal-open .dashboardScroll {
overflow-y: hidden
}
.modal-open .maskScroll {
overflow-y: scroll
}
body {
height: 100%;
background-color: #f5f5f5
}
:-moz-placeholder {
color: #999;
font-size: 1.5rem
}
::-webkit-input-placeholder {
color: #999;
font-size: 1.5rem
}
.icon-coupon {
background-position: -13.55rem -18.6rem;
width: 2rem;
height: 1.8rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
background-color: #f2f2f2
}
.booked
.icon-contact {
background-position: -9.4rem -15.4rem;
width: 2.4rem;
height: 2.5rem;
background-image: url("../../../images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked
.adaptive {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1
}
.booked
.wrap-box {
background-color: #fff;
padding: 0 1.4rem;
margin-bottom: 1.1rem
}
.booked .buynumber,.booked .goods-info,.booked
.use-date {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.booked .buynumber>div,.booked .goods-info>div,.booked
.use-date>div {
-ms-flex-item-align: center;
align-self: center
}
.booked .buynumber .label,.booked .goods-info .label,.booked .use-date
.label {
color: #333;
font-size: 1.4rem
}
.booked
.goods-info {
padding: 1rem 0;
height: 4.4rem;
box-sizing: border-box;
position: relative
}
.booked .goods-info:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
bottom: 0;
border-bottom-width: 1px
}
.iphone .booked .goods-info:before {
border-bottom-width: 2px
}
.iphoneplus
.booked .goods-info:before {
border-bottom-width: 3px
}
.booked .goods-info
.title {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
font-size: 1.6rem;
height: 1.6rem;
line-height: 1.6rem;
color: #333
}
.booked
.goods-info .price {
color: #fc7700;
font-size: 1.8rem
}
.booked .goods-info .price em {
font-size: 1.5rem
}
.booked .goods-info
.price span {
vertical-align: baseline
}
.booked .use-date {
padding: 1rem 0;
position: relative
}
.booked
.use-date:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
bottom: 0;
border-bottom-width: 1px
}
.iphone .booked
.use-date:before {
border-bottom-width: 2px
}
.iphoneplus .booked
.use-date:before {
border-bottom-width: 3px
}
.booked .use-date
.datelist {
width: 100%;
text-align: right;
}
.booked .use-date .datelist
.icon-more-date-gray {
background-position: -20.3rem -4.6rem;
width: .6rem;
height: .9rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked
.use-date .datelist .date-item {
display: -moz-inline-stack;
display: inline-block;
font-size: 1rem;
color: #333;
border: 1px solid #d4d4d4;
border-radius: .2rem;
margin-left: .2rem;
width: 63px;
height: 2.8rem;
box-sizing: border-box;
line-height: 2.8rem;
text-align: center
}
.booked .use-date .datelist .date-item .date-text {
font-size: 11px
}
.booked .use-date
.datelist .date-item .date-num {
font-size: 1.0rem;
color: #fc7700
}
.booked .use-date .datelist
.date-item.active {
background-color: #fc7700;
color: #fff;
border: 1px solid transparent
}
.booked
.use-date .datelist .date-item.active .date-num {
color: #fff
}
.booked .use-date .datelist
.date-item.active .icon-more-date-gray {
background-position: -20.3rem -5.9rem;
width: .6rem;
height: .9rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked
.buynumber {
padding: 1rem 0
}
.booked .buynumber .limit {
font-size: 0.7em;
color: #999
}
.booked .buynumber
.quantity {
font-weight: 700
}
.booked .extra {
position: absolute;
right: -1.4rem;
top: 0;
padding: 1rem 1.4rem;
z-index: 8
}
.booked .form-group {
padding: 1rem 0;
height: 4.5rem;
box-sizing: border-box;
position: relative
}
.booked
.form-group>div {
-ms-flex-item-align: center;
align-self: center
}
.booked .form-group .item-feild {
position: relative
}
.booked .form-group
.label {
padding-right: 1.2rem;
white-space: nowrap;
color: #333;
font-size: 1.4rem
}
.booked .form-group
.form-control {
font-size: 1.4rem;
line-height: 2.6rem;
border: 1px solid transparent;
width: 100%;
height: 2.6rem;
color: #333
}
.booked
.form-group .form-control :-moz-placeholder {
color: #999
}
.booked .form-group
.form-control ::-webkit-input-placeholder {
color: #999
}
.booked .form-group
.empty::-webkit-input-placeholder {
color: #fc7700
}
.booked .form-group
.empty:-moz-placeholder,.booked .form-group .empty::-moz-placeholder
{
color: #fc7700
}
.booked
.form-group .empty:-ms-input-placeholder {
color: #fc7700
}
.booked .form-group .error {
color: #fc7700
}
.booked
.form-group em i {
position: absolute;
white-space: nowrap;
right: .2rem;
font-size: 1rem;
background-color: #fc7700;
color: #fff;
display: inline-block;
padding: .2rem .6rem;
top: .6rem;
border-radius: .4rem
}
.booked
.couponbox {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
padding-top: 1rem;
padding-bottom: 1rem;
height: 4.5rem;
box-sizing: border-box
}
.booked
.couponbox .label {
font-size: 1.4rem;
color: #666
}
.booked .couponbox
.icon-right {
background-position: -1.3rem -23.4rem;
width: .85rem;
height: 1.3rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked
.couponbox .output {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
text-align: right
}
.booked
.couponbox .output span {
color: #333;
font-size: 1.4rem;
margin-right: .5rem
}
.booked .couponbox
.output span em {
font-size: 1.5rem
}
.booked .couponbox .output span.no-coupon {
color: #999;
margin-right: 0;
font-size: 1.4rem
}
.booked
.couponbox .output:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%
}
.booked
.detailtab {
background-color: #fbfbfb
}
.booked .detailtab .tab-menu {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
background-color: #fff;
text-align: center;
height: 4.2rem;
position: relative
}
.booked
.detailtab .tab-menu:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
bottom: 0;
border-bottom-width: 1px
}
.iphone .booked .detailtab
.tab-menu:before {
border-bottom-width: 2px
}
.iphoneplus .booked .detailtab .tab-menu:before {
border-bottom-width: 3px
}
.booked
.detailtab
.tab-menu>div {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
-ms-flex-item-align: center;
align-self: center;
line-height: 4.2rem;
height: 4.2rem;
position: relative;
font-size: 1.4rem;
color: #333
}
.booked
.detailtab .tab-menu>div.active {
color: #00c267
}
.booked .detailtab
.tab-menu>div.swiper-scrollbar-drag {
position: absolute;
width: 2.4rem;
height: .3rem;
background-color: #00c267;
left: 0;
bottom: -.1rem;
visibility: hidden;
-webkit-transition: all .4s;
transition: all .4s
}
.booked .detailtab
.tab-menu.menu-fixed {
position: fixed;
top: 0;
width: 100%;
height: 4.2rem;
z-index: 1000
}
.booked .detailtab .tab-content
.swiper-slide {
background-color: #fafafa
}
.booked .detailtab .tab-content
.article {
padding: 1.4rem;
font-size: 1.2rem;
color: #666
}
.booked .detailtab
.tab-content .article img {
max-width: 100%
}
.confirm-order {
font-size: 1.2rem;
color: #666;
padding-left: 1.4rem;
padding-right: 1.4rem
}
.confirm-order .goods-info,.confirm-order .price-info,.confirm-order
.user-info {
position: relative;
padding-top: .6rem;
padding-bottom: .6rem
}
.confirm-order
.goods-info:before,.confirm-order .price-info:before,.confirm-order
.user-info:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone
.confirm-order .goods-info:before,.iphone .confirm-order .price-info:before,.iphone .confirm-order
.user-info:before {
border-top-width: 2px
}
.iphoneplus .confirm-order .goods-info:before,.iphoneplus
.confirm-order .price-info:before,.iphoneplus .confirm-order .user-info:before
{
border-top-width: 3px
}
.confirm-order
.goods-info {
height: 8.4rem;
box-sizing: border-box;
justify-content: center
}
.confirm-order .goods-info
.title {
font-size: 1.6rem;
color: #333;
font-weight: 700;
height: 1.6rem;
line-height: 1.6rem;
margin-bottom: .6rem
}
.confirm-order
.goods-info .number,.confirm-order .goods-info .usedate {
margin-bottom: .6rem
}
.confirm-order .goods-info .number,.confirm-order
.goods-info .usedate,.confirm-order .goods-info .validrang {
font-size: 1.2rem;
height: 1.2rem;
line-height: 1.2rem;
color: #666
}
.confirm-order
.user-info {
height: 6.5rem;
box-sizing: border-box;
justify-content: center
}
.confirm-order .user-info .row-info
.row-label {
margin-right: 1.2rem
}
.confirm-order .user-info .row-info .row-text {
color: #333
}
.confirm-order
.user-info .row-info:first-child {
padding-bottom: .6rem
}
.confirm-order
.price-info {
height: 6.5rem;
box-sizing: border-box;
justify-content: center
}
.confirm-order .price-info
.row-flex {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.confirm-order
.price-info .row-flex .item-flex {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1
}
.confirm-order
.price-info .row-flex.discount {
margin-top: .4rem
}
.confirm-order .price-info .row-flex
.price {
font-size: 1.2rem;
vertical-align: baseline;
color: #333
}
.confirm-order .price-info
.row-flex .price em,.confirm-order .price-info em {
color: #999
}
.confirm-order .price-info
.cash-price {
color: #fc7700;
font-size: 1.2rem;
vertical-align: baseline
}
.checkout {
position: relative
}
.checkout
.terms {
padding: 1rem 1.4rem;
height: 4.5rem;
box-sizing: border-box;
background-color: rgba(0, 0, 0, .75);
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.checkout .terms
.pact-checkbox {
background-position: -23.85rem -8.2rem;
width: 1.6rem;
height: 1.5rem;
background-image: url("../../../images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.checkout .terms .pact-check {
width: 2.2rem
}
.checkout .terms .pact-intro {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1
}
.checkout .terms .pact-intro
h2 {
color: #fff;
font-size: 1.2rem
}
.checkout .terms .pact-intro p {
color: hsla(0, 0%, 100%, .75);
font-size: .9rem
}
.checkout
.terms.active .pact-checkbox {
background-position: -23.85rem -6.3rem;
width: 1.6rem;
height: 1.5rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.checkout .sheet {
position: relative
}
.checkout .sheet .submitbtn,.checkout .sheet
.total {
height: 4.6rem;
text-align: center;
font-size: 1.6rem
}
.checkout .sheet .submitbtn:before,.checkout
.sheet .total:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%
}
.checkout .sheet
.submitbtn>span,.checkout .sheet .total>span {
display: inline-block;
vertical-align: middle
}
.checkout .sheet
.total {
width: 60vw;
color: #666
}
.checkout .sheet .total .price {
color: #fc7700;
vertical-align: baseline;
margin-right: .4rem
}
.checkout .sheet .total .price em {
font-size: 1.5rem
}
.checkout .sheet .total .units {
vertical-align: baseline;
font-size: 1.3rem;
color: #666
}
.checkout .sheet .submitbtn {
background-color: #00c267;
position: absolute;
right: 0;
top: 0;
width: 40vw;
color: #fff
}
.user-bind {
font-size: 1.2rem;
color: #666;
text-align: left;
line-height: 1.8rem
}
.user-bind strong {
color: #333
}
.m-dialog.confirm-submit
.dialog-operate {
position: relative
}
.m-dialog.confirm-submit
.dialog-operate:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone .m-dialog.confirm-submit
.dialog-operate:before {
border-top-width: 2px
}
.iphoneplus .m-dialog.confirm-submit
.dialog-operate:before {
border-top-width: 3px
}
.m-dialog.confirm-submit
.dialog-operate button {
display: -moz-inline-stack;
display: inline-block;
font-size: 1.6rem
}
.m-dialog.confirm-submit
.dialog-operate .white-btn {
background-color: #fff;
width: 60vw;
color: #fc7700;
font-size: 1.6rem;
vertical-align: baseline
}
.m-dialog.confirm-submit .dialog-operate .white-btn em {
font-size: 1.6rem
}
.m-dialog.confirm-submit
.dialog-operate .white-btn .number {
color: #666;
font-size: 1.6rem;
margin-left: .4rem
}
.m-dialog.confirm-submit .dialog-operate
.soonpay-btn {
width: 40vw
}
.contactlist {
padding: 0 1.4rem
}
.contactlist .item-row {
height: 4.3rem;
padding: 1rem 0;
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.contactlist
.item-row
:not
(
:first-child
){
position
:
relative
}
.contactlist
.item-row:not (:first-child ):before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone
.contactlist .item-row:not (:first-child ):before {
border-top-width: 2px
}
.iphoneplus .contactlist
.item-row:not (:first-child ):before {
border-top-width: 3px
}
.contactlist
.item-row>div {
-ms-flex-item-align: center;
align-self: center
}
.contactlist
.item-row .contact-info {
line-height: 2rem;
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
color: #333;
font-size: 1.4rem
}
.contactlist .item-row .contact-info
.label {
color: #666
}
.couponlist {
padding: 0 1.4rem;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.couponlist
.item-row {
padding: 1rem 0;
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.couponlist
.item-row
:not
(
:first-child
){
position
:
relative
}
.couponlist .item-row:not (:first-child ):before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone
.couponlist .item-row:not (:first-child ):before {
border-top-width: 2px
}
.iphoneplus
.couponlist .item-row:not (:first-child ):before {
border-top-width: 3px
}
.couponlist
.item-row>div {
-ms-flex-item-align: center;
align-self: center
}
.couponlist .item-row
.coupon-info {
line-height: 2rem;
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1
}
.couponlist
.item-row .coupon-info .label-num {
font-size: 1.4rem
}
.couponlist .item-row .coupon-info
.label-num span {
color: #fc7700;
font-size: 2.4rem;
vertical-align: baseline
}
.couponlist .item-row
.coupon-info .label-num span em {
font-size: 1.4rem
}
.couponlist .item-row .coupon-info
.label-num span.re-visit {
display: -moz-inline-stack;
display: inline-block;
color: #fff;
font-size: .9rem;
background-color: #00c267;
border-radius: .4rem;
background-clip: padding-box;
padding: 0 .4rem;
line-height: 1.3rem
}
.couponlist
.item-row .coupon-info .date {
color: #666
}
.radio-box
.icon-radio {
background-position: -21.3rem -12rem
}
.item-checked .radio-box .icon-radio,.radio-box
.icon-radio {
width: 2rem;
height: 1.8rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.item-checked
.radio-box .icon-radio {
background-position: -21.3rem -16.4rem
}
.swiper-container {
margin: 0 auto;
position: relative;
overflow: hidden;
z-index: 1
}
.swiper-container .swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
box-sizing: content-box;
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.swiper-container .swiper-slide {
-webkit-flex-shrink: 0;
-ms-flex: 0 0 auto;
flex-shrink: 0;
position: relative
}
.m-mask {
background-color: transparent;
transition: all 1s
}
.dialog-wrap-info {
background-color: hsla(0, 0%, 57%, .7);
z-index: 1000;
width: 60%;
border-radius: .4rem
}
.dialog-wrap-info .dialog-content-info {
display: table;
width: 100%;
height: 100%
}
.dialog-wrap-info
.dialog-content-info .dialog-content-bd {
display: table-cell;
padding: 3rem 2rem;
text-align: center;
color: #fff;
font-size: 1.5rem
}
.m-alert-dialog,.m-confirm-dialog {
width: 25rem;
background-color: #fff;
border-radius: .4rem;
text-align: center;
margin: 0 auto
}
.m-alert-dialog .tip,.m-confirm-dialog
.tip {
border-bottom: 1.5px solid #dfdfdf
}
.m-alert-dialog .tip .tip-head,.m-confirm-dialog .tip
.tip-head {
background-color: #f5f5f5;
height: 3.4rem;
line-height: 3.4rem
}
.m-alert-dialog .tip
.tip-title,.m-confirm-dialog .tip .tip-title {
font-size: 1.5rem;
color: #727272;
text-align: center
}
.m-alert-dialog .tip
.tip-close,.m-confirm-dialog .tip .tip-close {
padding: 0 1rem 0 2rem;
font-size: 1.5rem;
color: #21ab38;
position: absolute;
right: 0
}
.m-alert-dialog .tip div.content,.m-confirm-dialog .tip div.content {
padding: 1.5rem 1.5rem 4rem;
font-size: 1.2rem;
line-height: 1.8rem
}
.m-alert-dialog .alert,.m-confirm-dialog .alert {
padding: 1.2rem 0;
color: #727272;
font-size: 1.5rem
}
.m-alert-dialog .operate,.m-confirm-dialog .operate {
height: 2.8rem
}
.m-alert-dialog
.operate span,.m-confirm-dialog .operate span {
display: block;
align-self: center;
line-height: 2.8rem
}
.m-alert-dialog
.operate span:last-child,.m-confirm-dialog .operate span:last-child {
color: #21ab38
}
.m-confirm-dialog {
left: 50% !important;
top: 50% !important;
width: 80%;
margin-left: -40%;
margin-top: -40%
}
.m-dialog {
-moz-border-top-left-radius: .5rem;
border-top-left-radius: .5rem;
-moz-border-top-right-radius: .5rem;
border-top-right-radius: .5rem;
overflow: hidden;
background-color: #fff;
width: 100%
}
.m-dialog .icon-close {
background-position: -15.95rem -18.6rem;
width: 2rem;
height: 1.8rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.m-dialog
.dialog-head {
font-size: 1.6rem;
color: #333;
background-color: #fafafa;
height: 4.4rem;
box-sizing: border-box;
position: relative;
border-bottom: 1.5px solid #dfdfdf
}
.m-dialog .dialog-head .close-wrap,.m-dialog
.dialog-head .title {
display: block;
-ms-flex-item-align: center;
align-self: center
}
.m-dialog .dialog-head
.title {
padding-left: 1.4rem;
position: relative
}
.m-dialog .dialog-head
.title:before {
position: absolute;
left: 0;
top: 50%;
margin-top: -1rem;
content: "";
width: .4rem;
height: 2rem;
background-color: #00c267
}
.m-dialog .dialog-head
.close-wrap {
text-align: right;
padding-left: 2.8rem;
padding-right: 1.4rem
}
.m-dialog .dialog-inner {
overflow: hidden
}
.m-dialog .dialog-inner
.dialog-content {
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.m-dialog
.dialog-operate {
box-shadow: 0 -2px 5px rgba(1, 1, 1, .1)
}
.m-dialog .dialog-operate button {
display: block;
width: 100%;
background-color: #00c267;
height: 4.6rem;
font-size: 1.8rem;
color: #fff;
border: 0
}
.m-dialog
.dialog-operate button sub {
font-size: 1.1rem;
margin-right: .4rem
}
.m-dialog
.article {
padding: 1rem;
color: #727272;
font-size: 1.1rem
}
.m-dialog .article h5 {
font-size: 1.1rem;
padding: .35rem 0
}
.m-dialog .article
p {
line-height: 1.75rem;
padding-bottom: .4rem
}
@
-webkit-keyframes slidein { 0%{
transform: translate3d(0, 100%, 0)
}
to {
transform: translateZ(0)
}
}
.weui-mask {
position: fixed;
z-index: 1000;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(11, 14, 23, .7)
}
.weui-dialog {
position: fixed;
z-index: 5000;
width: 85%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: #fdfdfe;
text-align: center;
border-radius: .4rem;
background-clip: padding-box;
overflow: hidden
}
.weui-dialog .dialog-inner {
width: 96%
}
.weui-dialog .weui-dialog-hd {
padding: 2rem 1rem 0
}
.weui-dialog .weui-dialog-hd .weui-dialog-title {
font-size: 1.5rem;
color: #262c2f
}
.weui-dialog .weui-dialog-bd {
text-align: center;
padding: 1rem 1.4rem 2rem;
font-size: 1.2rem;
color: #727272;
word-wrap: break-word;
word-break: break-all
}
.weui-dialog
.weui-dialog-bd p {
display: inline-block;
text-align: justify
}
.weui-dialog .weui-dialog-ft {
position: relative;
line-height: 4.3rem;
border-top: 1.5px solid #dfdfdf;
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.weui-dialog .weui-dialog-ft span {
position: relative;
display: block;
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
color: #21ac39;
font-size: 1.5rem;
-webkit-tap-highlight-color: transparent
}
.weui-dialog .weui-dialog-ft span:first-child {
border-right: 1.5px solid #dfdfdf
}
.weui-dialog .weui-dialog-ft .cancel {
color: #666;
font-size: 1.4rem
}
.weui-dialog-message
.weui-mask-transparent {
position: fixed;
z-index: 1000;
top: 0;
right: 0;
left: 0;
bottom: 0
}
.weui-dialog-message
.weui-toast {
background-color: rgba(0, 0, 0, .7);
font-size: 1.4rem;
color: #fff;
border-radius: 1.4rem;
background-clip: padding-box;
padding: .8rem 2.4rem
}
.weui-dialog-window {
border-radius: .4rem;
background-clip: padding-box;
background-color: #fff;
width: 92%;
padding-bottom: 1rem
}
.weui-dialog-window .head-inner {
padding: 1.4rem 0
}
.weui-dialog-window .title {
border-left: .4rem solid #22ad3a;
font-size: 1.5rem;
color: #262c2f;
padding-left: .6rem
}
.weui-dialog-window .close-wrap {
padding: 0 1.4rem 0 2rem
}
.weui-dialog-window
.dialog-inner {
padding: 0 1rem;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.weui-dialog-window .dialog-inner
.dialog-content {
padding: 1rem 0;
border-top: 1.5px solid #d3d3d3;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.weui-dialog-window .dialog-inner .dialog-content img {
max-width: 100%
}
.hr {
height: 1px;
margin: .8rem 0;
position: relative;
border-bottom: 1.5px solid #dfdfdf
}
.gap-h1 {
height: 1.4rem;
font-size: 0;
line-height: 0;
overflow: hidden;
background-color: #f5f5f5
}
.quantity-form {
position: relative;
white-space: nowrap
}
.quantity-form .decrement,.quantity-form
.increment {
display: -moz-inline-stack;
display: inline-block
}
.quantity-form .quantity {
width: 2rem;
height: 2.6rem;
line-height: 2.6rem;
margin: 0;
text-align: center;
font-size: 1.2rem;
-webkit-appearance: none;
color: #262c2f;
border: 1px solid #fff;
background-color: transparent;
font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif;
-moz-user-select: none;
-webkit-user-select: none;
color: #darkGray
}
.quantity-form
.increment {
background-position: 0 -15.4rem
}
.quantity-form .increment,.quantity-form
.increment.disabled {
width: 2.8rem;
height: 2.8rem;
background-image: url("../../../images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.quantity-form .decrement {
background-position: -12.4rem -11.9rem
}
.quantity-form .decrement,.quantity-form .decrement.disabled {
width: 2.8rem;
height: 2.8rem;
background-image: url("../../../images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.calendar-full-btn button,.opt-full-btn button {
display: block;
width: 100%;
background-color: #21ac39;
height: 4.95rem;
font-size: 1.8rem;
color: #fff;
border: 0
}
.calendar-full-btn button sub,.opt-full-btn button
sub {
font-size: 1.1rem;
margin-right: .4rem
}
.slidein {
-webkit-animation-name: slideLn;
animation-name: slideLn;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: none;
animation-fill-mode: none
}
.slidein,.slideout {
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.slideout {
-webkit-animation-name: slideOut;
animation-name: slideOut;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: none;
animation-fill-mode: none
}
.fadein {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.fadein,.fadeout {
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.fadeout {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.tools-menu {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 4.6rem;
box-sizing: border-box;
z-index: 1000;
background-color: hsla(0, 0%, 100%, .93)
}
.tools-menu
.icon-wx-purchase {
background-position: -5.4rem -18.6rem
}
.tools-menu .icon-my-order,.tools-menu
.icon-wx-purchase {
width: 2.3rem;
height: 2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.tools-menu
.icon-my-order {
background-position: 0 -18.6rem
}
.tools-menu .icon-card-package {
background-position: -17.75rem -15.4rem;
width: 2.3rem;
height: 2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.tools-menu .inner-menu {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
width: 100vw;
position: relative
}
.tools-menu .inner-menu:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e8e8e8;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone .tools-menu
.inner-menu:before {
border-top-width: 2px
}
.iphoneplus .tools-menu .inner-menu:before {
border-top-width: 3px
}
.tools-menu
.inner-menu>div {
-webkit-box-flex: 1;
-moz-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
height: 4rem;
padding-top: .6rem;
align-content: space-between;
position: relative
}
.tools-menu .inner-menu>div .dots {
position: absolute;
width: .7rem;
height: .7rem;
border-radius: 50%;
background-clip: padding-box;
background-color: #fc7700;
left: 50%;
margin-left: .3rem;
visibility: hidden
}
.tools-menu .inner-menu>div .dots.show {
visibility: visible
}
.tools-menu
.inner-menu>div span {
display: block;
font-size: 1rem;
color: #999;
padding-top: .1rem
}
.tools-menu .inner-menu>div.active
.icon-wx-purchase {
background-position: -2.7rem -18.6rem
}
.tools-menu .inner-menu>div.active .icon-my-order,.tools-menu
.inner-menu>div.active .icon-wx-purchase {
width: 2.3rem;
height: 2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.tools-menu .inner-menu>div.active
.icon-my-order {
background-position: -8.1rem -18.6rem
}
.tools-menu .inner-menu>div.active
.icon-card-package {
background-position: -15.05rem -15.4rem;
width: 2.3rem;
height: 2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.tools-menu .inner-menu>div.active span {
color: #00c267
} /*!
* Mixins
*/ /*!
* Mixins
*/ /*!
* Mixins
*/ /*!
* Mixins
*/ /*!
* #border-radius {
* @include default-border-radius(25px);
* }
*
* #border-radius-top-left {
* @include top-left-border-radius(25px);
* }
*
* #border-radius-top-right {
* @include top-right-border-radius(25px);
* }
* #border-radius-bottom-left {
* @include bottom-left-border-radius(25px);
* }
* #border-radius-bottom-right {
* @include bottom-right-border-radius(25px);
* }
* #border-radius-top {
* @include top-border-radius(25px, 25px)
* }
* #border-radius-bottom {
* @include bottom-border-radius(25px, 25px)
* }
* #border-radius-left {
* @include left-border-radius(25px, 25px)
* }
* #border-radius-right {
* @include right-border-radius(25px, 25px)
* }
* #border-radius-combo {
* @include combo-border-radius(50px, 30px, 15px, 80px)
* }
*/ /*!
* Mixins
*/ /*!
* Mixins
*/
@
-webkit-keyframes slideLn { 0%{
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
}
@
keyframes slideLn { 0%{
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
}
@
-webkit-keyframes slideOut { 0%{
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
to {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@
keyframes slideOut { 0%{
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
to {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@
-webkit-keyframes fadeIn { 0%{
opacity: 0
}
to {
opacity: 1
}
}
@
keyframes fadeIn { 0%{
opacity: 0
}
to {
opacity: 1
}
}
@
-webkit-keyframes
fadeOut { 0%{
opacity: 1
}
to {
opacity: 0
}
}
@
keyframes fadeOut { 0%{
opacity: 1
}
to {
opacity: 0
}
}
@
-webkit-keyframes shake { 0%,to { -webkit-transform:translateZ(0);
transform: translateZ(0)
}
12
.5
%,
37
.5
%,
62
.5
%{
-webkit-transform
:
translate3d
(-10px
,
0,
0);
transform
:
translate3d
(-10px
,
0,
0)
}
25%,50%,75
.5
%{
-webkit-transform
:
translate3d
(10px
,
0,
0);
transform
:
translate3d
(10px
,
0,
0)
}
}
@
keyframes shake { 0%,to { -webkit-transform:translateZ(0);
transform: translateZ(0)
}
12
.5
%,
37
.5
%,
62
.5
%{
-webkit-transform
:
translate3d
(-10px
,
0,
0);
transform
:
translate3d
(-10px
,
0,
0)
}
25%,50%,75
.5
%{
-webkit-transform
:
translate3d
(10px
,
0,
0);
transform
:
translate3d
(10px
,
0,
0)
}
}
.m-datepicker .mask {
width: 100%;
height: 100%;
position: fixed;
background-color: rgba(0, 0, 0, .75);
left: 0;
top: 0;
z-index: 10;
transition: all 1s
}
.m-datepicker
.datepicker {
display: block;
position: absolute;
bottom: 0;
left: 0;
z-index: 900;
background-color: #fff;
width: 100%;
border-top-left-radius: .5rem;
border-top-right-radius: .5rem;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
overflow: hidden
}
.m-datepicker .datepicker
.m-header {
font-size: 1.7rem;
height: 4.3rem;
line-height: 4.3rem;
text-align: left
}
.m-datepicker
.datepicker .m-header .close-wrap {
padding: 0 1.4rem 0 2.8rem
}
.m-datepicker .datepicker .m-header
.m-h-title {
margin: 0;
position: relative;
border-bottom: 1px solid #d3d3d3;
background-color: #fafafa
}
.m-datepicker
.datepicker .m-header .title {
text-align: left;
padding-left: 1.4rem;
font-size: 1.5rem;
position: relative
}
.m-datepicker
.datepicker .m-header .title:before {
position: absolute;
left: 0;
top: 50%;
margin-top: -1rem;
content: "";
width: .4rem;
height: 2rem;
background-color: #00c267
}
.m-datepicker .tbody {
position: relative;
overflow: hidden;
border-right: 1.5px solid #d3d3d3;
padding: .8rem 0;
box-sizing: border-box
}
.m-datepicker .tbody .tr-row>div {
border-radius: 50%
}
.m-datepicker .tbody
.tr-row>div:nth-child(odd) {
z-index: 14
}
.m-datepicker .tbody .tr-row>div:nth-child(even) {
z-index: 13
}
.m-datepicker .tbody
.tr-row>div.active {
background-color: #fc7700
}
.m-datepicker .tbody .tr-row>div.active em,.m-datepicker .tbody
.tr-row>div.active span {
color: #fff
}
.m-datepicker .tr-row {
height: 4.2rem;
line-height: 4.2rem;
text-align: center;
font-size: 1.4rem
}
.m-datepicker .tr-row>div {
position: relative;
z-index: 12;
height: 14.28571vw
}
.m-datepicker
.tr-row>div em,.m-datepicker .tr-row>div span {
position: absolute;
left: 0;
display: block;
width: 100%;
text-align: center
}
.m-datepicker
.tr-row>div span {
display: inline-block;
width: 100%;
top: 1.2rem;
line-height: 1.2rem;
color: #ccc
}
.m-datepicker .tr-row>div.allowed
span {
color: #333
}
.m-datepicker .tr-row>div .icon-date-slected {
visibility: hidden;
position: absolute;
right: -.1rem;
top: -.15rem
}
.m-datepicker
.tr-row>div.active .icon-date-slected {
visibility: visible;
z-index: 1000
}
[data-device-type=android] .m-datepicker .tr-row>div.active
.icon-date-slected {
top: -.2rem
}
.m-datepicker .tr-row>div em {
font-size: .85rem;
color: #fc7700;
font-style: normal;
line-height: 1rem;
top: 2.7rem
}
.m-datepicker .tr-row>div.next,.m-datepicker .tr-row>div.prev {
-webkit-box-flex: 2;
flex: 2
}
.m-datepicker
.tr-row>div.prev {
text-align: left;
padding-left: 1.4rem
}
.m-datepicker
.tr-row>div.next {
text-align: right;
padding-right: 1.4rem
}
.m-datepicker .tr-row.week-row {
background-color: #fafafa;
font-size: 1.2rem;
color: #333;
height: 3.3rem
}
.m-datepicker .tr-row.week-row .weekend {
color: #00c267
}
.m-datepicker .tr-row .new,.m-datepicker .tr-row
.old {
color: #d3d3d3
}
.m-datepicker .tr-row .datepicker-switch {
-webkit-box-flex: 3;
flex: 3;
text-align: center;
font-size: 1.5rem
}
.icon-switch-l {
background-position: -8rem -10.6rem
}
.icon-switch-l,.icon-switch-r {
width: .7rem;
height: 1.2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.icon-switch-r {
background-position: -8rem -7.4rem
}
.icon-close {
background-position: -15.95rem -18.6rem;
width: 2rem;
height: 1.8rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.bg-backhome {
height: 100%;
background-color: #f0f0f0
}
.backhome .offshelf {
padding: 6rem 0 4rem
}
.backhome .offshelf
.icon-offshelf {
width: 24.4rem;
height: 9rem;
background: url(./images/offshelf.png) no-repeat 50%;
background-size: 100%;
margin: 0 auto
}
.backhome
.message {
text-align: center;
font-size: 1.5rem;
color: #727272;
padding: 1.4rem
}
.backhome .btnbox {
text-align: center;
padding-top: 5rem
}
.backhome
.btnbox button {
display: inline-block;
cursor: pointer;
text-align: center;
vertical-align: middle;
position: relative;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
touch-action: manipulation;
background-color: #7acd89;
border: 1px solid transparent;
padding: .4rem 2rem;
color: #fff;
font-size: 1.5rem;
border-radius: .4rem;
background-clip: padding-box
}
.content {
list-style: none;
height: 70px;
line-height: 60px;
font-family: "方正姚体";
}
.bottomDiv {
float: right;
margin-right: 100px;
margin-top: -40px;
width: 160px;
height: 10px;
font-size: 5px;
color: #808080;
}
.left {
float: left;
margin-right: 5%;
height: 50px;
}
.menuList .right {
float: right;
width: 10px;
}
.am-modal-bd {
padding-bottom: 1px;
} | hqc_mp/src/main/webapp/statics/css/wx/ticket/toBuyTicket.css | html {
font-size: 12.28125px !important;
}
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video
{
margin: 0;
padding: 0;
border: 0;
font: inherit;
font-size: 100%;
vertical-align: middle
}
table {
border-collapse: collapse;
border-spacing: 0
}
sub,sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline
}
fieldset,img {
border: 0
}
*,a,a:active,a:focus,button,div:active,div:focus,img,input,input:active,input:focus,textarea
{
-webkit-tap-highlight-color: transparent
}
a:focus,button:focus,input:focus {
outline: none
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section
{
display: block
}
html {
color: #333;
height: 100%;
-webkit-user-select: none;
user-select: none
}
* {
max-height: 999999px
}
#debuggapRoot .dg-out {
width: 5rem !important;
height: 5rem !important;
border-radius: 50% !important
}
#debuggapRoot .dg-inner {
width: 4rem !important;
height: 4rem !important;
border-radius: 50% !important;
margin: .5rem !important
}
body {
font-size: 1.2rem;
line-height: 1.5;
font-family: PingFang SC, -apple-system, Heiti SC, Helvetica,
Helvetica Neue, Droid Sans Fallback, Droid Sans;
height: auto;
min-height: 100%;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
flex-direction: column;
-webkit-text-size-adjust: none
}
body.not-flex {
display: block
}
ol,ul {
list-style: none
}
blockquote,q {
quotes: none
}
blockquote:after,blockquote:before,q:after,q:before {
content: ''
}
a {
text-decoration: none
}
.scrolling {
-webkit-overflow-scrolling: touch
}
.booked .form-group,.confirm-order .goods-info,.confirm-order .price-info,.confirm-order .user-info,.flex-column,.flex-row,.m-alert-dialog .operate,.m-alert-dialog .tip .tip-head,.m-confirm-dialog
.operate,.m-confirm-dialog .tip .tip-head,.m-datepicker .datepicker .m-header .m-h-title,.m-datepicker .tr-row,.m-dialog
.dialog-head,.m-stretch-swiper {
display: -webkit-box;
display: flex
}
.confirm-order .goods-info,.confirm-order .price-info,.confirm-order .user-info,.flex-column,.m-stretch-swiper
{
-webkit-box-orient: vertical;
flex-direction: column
}
.flex-item,.m-alert-dialog .operate span,.m-alert-dialog .tip .tip-title,.m-confirm-dialog .operate span,.m-confirm-dialog .tip
.tip-title,.m-datepicker .datepicker .m-header .title,.m-datepicker .tr-row>div,.m-dialog .dialog-head .title,.m-stretch-swiper>.swiper-wrapper,.pbd
{
-webkit-box-flex: 1;
flex: 1
}
.flex-vertical-middle {
-webkit-box-align: center;
align-items: center
}
.m-stretch-swiper>.swiper-wrapper {
-webkit-box-align: stretch;
align-items: stretch
}
.m-stretch-swiper>.swiper-wrapper>.swiper-slide {
height: auto
}
.single-line-clamp {
white-space: nowrap;
word-break: break-all
}
.ellipsis,.single-line-clamp {
overflow: hidden;
text-overflow: ellipsis
}
.ellipsis {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical
}
.pbd {
-webkit-user-select: none;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.border-box {
box-sizing: border-box
}
.prompt {
font-size: 1.1rem;
color: #ff7800;
background-color: #faf6de;
line-height: 1.4rem;
padding: .8rem 1.4rem;
position: absolute;
left: 0;
top: 0;
right: 0;
z-index: 1000
}
.prompt
.icon-prompt {
background-position: 50%;
width: 1.4rem;
height: 1.4rem;
background-image: url(./images/icons/prompt.png);
background-repeat: no-repeat;
background-size: 100%;
display: inline-block
}
.dashboardScroll {
height: 100%;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
-webkit-transform: translateZ(0);
-webkit-perspective: 1000
}
.dashboardScroll .dashboardScroll-inner,.dashboardScroll:after {
height: calc(100% + 1px)
}
.modal-open .dashboardScroll {
overflow-y: hidden
}
.modal-open .maskScroll {
overflow-y: scroll
}
body {
height: 100%;
background-color: #f5f5f5
}
:-moz-placeholder {
color: #999;
font-size: 1.5rem
}
::-webkit-input-placeholder {
color: #999;
font-size: 1.5rem
}
.icon-coupon {
background-position: -13.55rem -18.6rem;
width: 2rem;
height: 1.8rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
background-color: #f2f2f2
}
.booked
.icon-contact {
background-position: -9.4rem -15.4rem;
width: 2.4rem;
height: 2.5rem;
background-image: url("../../../images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked
.adaptive {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1
}
.booked
.wrap-box {
background-color: #fff;
padding: 0 1.4rem;
margin-bottom: 1.1rem
}
.booked .buynumber,.booked .goods-info,.booked
.use-date {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.booked .buynumber>div,.booked .goods-info>div,.booked
.use-date>div {
-ms-flex-item-align: center;
align-self: center
}
.booked .buynumber .label,.booked .goods-info .label,.booked .use-date
.label {
color: #333;
font-size: 1.4rem
}
.booked
.goods-info {
padding: 1rem 0;
height: 4.4rem;
box-sizing: border-box;
position: relative
}
.booked .goods-info:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
bottom: 0;
border-bottom-width: 1px
}
.iphone .booked .goods-info:before {
border-bottom-width: 2px
}
.iphoneplus
.booked .goods-info:before {
border-bottom-width: 3px
}
.booked .goods-info
.title {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
font-size: 1.6rem;
height: 1.6rem;
line-height: 1.6rem;
color: #333
}
.booked
.goods-info .price {
color: #fc7700;
font-size: 1.8rem
}
.booked .goods-info .price em {
font-size: 1.5rem
}
.booked .goods-info
.price span {
vertical-align: baseline
}
.booked .use-date {
padding: 1rem 0;
position: relative
}
.booked
.use-date:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
bottom: 0;
border-bottom-width: 1px
}
.iphone .booked
.use-date:before {
border-bottom-width: 2px
}
.iphoneplus .booked
.use-date:before {
border-bottom-width: 3px
}
.booked .use-date
.datelist {
width: 100%;
text-align: right;
}
.booked .use-date .datelist
.icon-more-date-gray {
background-position: -20.3rem -4.6rem;
width: .6rem;
height: .9rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked
.use-date .datelist .date-item {
display: -moz-inline-stack;
display: inline-block;
font-size: 1rem;
color: #333;
border: 1px solid #d4d4d4;
border-radius: .2rem;
margin-left: .2rem;
width: 63px;
height: 2.8rem;
box-sizing: border-box;
line-height: 2.8rem;
text-align: center
}
.booked .use-date .datelist .date-item .date-text {
font-size: 11px
}
.booked .use-date
.datelist .date-item .date-num {
font-size: 1.0rem;
color: #fc7700
}
.booked .use-date .datelist
.date-item.active {
background-color: #fc7700;
color: #fff;
border: 1px solid transparent
}
.booked
.use-date .datelist .date-item.active .date-num {
color: #fff
}
.booked .use-date .datelist
.date-item.active .icon-more-date-gray {
background-position: -20.3rem -5.9rem;
width: .6rem;
height: .9rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked
.buynumber {
padding: 1rem 0
}
.booked .buynumber .limit {
font-size: 0.7em;
color: #999
}
.booked .buynumber
.quantity {
font-weight: 700
}
.booked .extra {
position: absolute;
right: -1.4rem;
top: 0;
padding: 1rem 1.4rem;
z-index: 8
}
.booked .form-group {
padding: 1rem 0;
height: 4.5rem;
box-sizing: border-box;
position: relative
}
.booked
.form-group>div {
-ms-flex-item-align: center;
align-self: center
}
.booked .form-group .item-feild {
position: relative
}
.booked .form-group
.label {
padding-right: 1.2rem;
white-space: nowrap;
color: #333;
font-size: 1.4rem
}
.booked .form-group
.form-control {
font-size: 1.4rem;
line-height: 2.6rem;
border: 1px solid transparent;
width: 100%;
height: 2.6rem;
color: #333
}
.booked
.form-group .form-control :-moz-placeholder {
color: #999
}
.booked .form-group
.form-control ::-webkit-input-placeholder {
color: #999
}
.booked .form-group
.empty::-webkit-input-placeholder {
color: #fc7700
}
.booked .form-group
.empty:-moz-placeholder,.booked .form-group .empty::-moz-placeholder
{
color: #fc7700
}
.booked
.form-group .empty:-ms-input-placeholder {
color: #fc7700
}
.booked .form-group .error {
color: #fc7700
}
.booked
.form-group em i {
position: absolute;
white-space: nowrap;
right: .2rem;
font-size: 1rem;
background-color: #fc7700;
color: #fff;
display: inline-block;
padding: .2rem .6rem;
top: .6rem;
border-radius: .4rem
}
.booked
.couponbox {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
padding-top: 1rem;
padding-bottom: 1rem;
height: 4.5rem;
box-sizing: border-box
}
.booked
.couponbox .label {
font-size: 1.4rem;
color: #666
}
.booked .couponbox
.icon-right {
background-position: -1.3rem -23.4rem;
width: .85rem;
height: 1.3rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.booked
.couponbox .output {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
text-align: right
}
.booked
.couponbox .output span {
color: #333;
font-size: 1.4rem;
margin-right: .5rem
}
.booked .couponbox
.output span em {
font-size: 1.5rem
}
.booked .couponbox .output span.no-coupon {
color: #999;
margin-right: 0;
font-size: 1.4rem
}
.booked
.couponbox .output:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%
}
.booked
.detailtab {
background-color: #fbfbfb
}
.booked .detailtab .tab-menu {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
background-color: #fff;
text-align: center;
height: 4.2rem;
position: relative
}
.booked
.detailtab .tab-menu:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
bottom: 0;
border-bottom-width: 1px
}
.iphone .booked .detailtab
.tab-menu:before {
border-bottom-width: 2px
}
.iphoneplus .booked .detailtab .tab-menu:before {
border-bottom-width: 3px
}
.booked
.detailtab
.tab-menu>div {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
-ms-flex-item-align: center;
align-self: center;
line-height: 4.2rem;
height: 4.2rem;
position: relative;
font-size: 1.4rem;
color: #333
}
.booked
.detailtab .tab-menu>div.active {
color: #00c267
}
.booked .detailtab
.tab-menu>div.swiper-scrollbar-drag {
position: absolute;
width: 2.4rem;
height: .3rem;
background-color: #00c267;
left: 0;
bottom: -.1rem;
visibility: hidden;
-webkit-transition: all .4s;
transition: all .4s
}
.booked .detailtab
.tab-menu.menu-fixed {
position: fixed;
top: 0;
width: 100%;
height: 4.2rem;
z-index: 1000
}
.booked .detailtab .tab-content
.swiper-slide {
background-color: #fafafa
}
.booked .detailtab .tab-content
.article {
padding: 1.4rem;
font-size: 1.2rem;
color: #666
}
.booked .detailtab
.tab-content .article img {
max-width: 100%
}
.confirm-order {
font-size: 1.2rem;
color: #666;
padding-left: 1.4rem;
padding-right: 1.4rem
}
.confirm-order .goods-info,.confirm-order .price-info,.confirm-order
.user-info {
position: relative;
padding-top: .6rem;
padding-bottom: .6rem
}
.confirm-order
.goods-info:before,.confirm-order .price-info:before,.confirm-order
.user-info:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone
.confirm-order .goods-info:before,.iphone .confirm-order .price-info:before,.iphone .confirm-order
.user-info:before {
border-top-width: 2px
}
.iphoneplus .confirm-order .goods-info:before,.iphoneplus
.confirm-order .price-info:before,.iphoneplus .confirm-order .user-info:before
{
border-top-width: 3px
}
.confirm-order
.goods-info {
height: 8.4rem;
box-sizing: border-box;
justify-content: center
}
.confirm-order .goods-info
.title {
font-size: 1.6rem;
color: #333;
font-weight: 700;
height: 1.6rem;
line-height: 1.6rem;
margin-bottom: .6rem
}
.confirm-order
.goods-info .number,.confirm-order .goods-info .usedate {
margin-bottom: .6rem
}
.confirm-order .goods-info .number,.confirm-order
.goods-info .usedate,.confirm-order .goods-info .validrang {
font-size: 1.2rem;
height: 1.2rem;
line-height: 1.2rem;
color: #666
}
.confirm-order
.user-info {
height: 6.5rem;
box-sizing: border-box;
justify-content: center
}
.confirm-order .user-info .row-info
.row-label {
margin-right: 1.2rem
}
.confirm-order .user-info .row-info .row-text {
color: #333
}
.confirm-order
.user-info .row-info:first-child {
padding-bottom: .6rem
}
.confirm-order
.price-info {
height: 6.5rem;
box-sizing: border-box;
justify-content: center
}
.confirm-order .price-info
.row-flex {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.confirm-order
.price-info .row-flex .item-flex {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1
}
.confirm-order
.price-info .row-flex.discount {
margin-top: .4rem
}
.confirm-order .price-info .row-flex
.price {
font-size: 1.2rem;
vertical-align: baseline;
color: #333
}
.confirm-order .price-info
.row-flex .price em,.confirm-order .price-info em {
color: #999
}
.confirm-order .price-info
.cash-price {
color: #fc7700;
font-size: 1.2rem;
vertical-align: baseline
}
.checkout {
position: relative
}
.checkout
.terms {
padding: 1rem 1.4rem;
height: 4.5rem;
box-sizing: border-box;
background-color: rgba(0, 0, 0, .75);
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.checkout .terms
.pact-checkbox {
background-position: -23.85rem -8.2rem;
width: 1.6rem;
height: 1.5rem;
background-image: url("../../../images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.checkout .terms .pact-check {
width: 2.2rem
}
.checkout .terms .pact-intro {
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1
}
.checkout .terms .pact-intro
h2 {
color: #fff;
font-size: 1.2rem
}
.checkout .terms .pact-intro p {
color: hsla(0, 0%, 100%, .75);
font-size: .9rem
}
.checkout
.terms.active .pact-checkbox {
background-position: -23.85rem -6.3rem;
width: 1.6rem;
height: 1.5rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.checkout .sheet {
position: relative
}
.checkout .sheet .submitbtn,.checkout .sheet
.total {
height: 4.6rem;
text-align: center;
font-size: 1.6rem
}
.checkout .sheet .submitbtn:before,.checkout
.sheet .total:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%
}
.checkout .sheet
.submitbtn>span,.checkout .sheet .total>span {
display: inline-block;
vertical-align: middle
}
.checkout .sheet
.total {
width: 60vw;
color: #666
}
.checkout .sheet .total .price {
color: #fc7700;
vertical-align: baseline;
margin-right: .4rem
}
.checkout .sheet .total .price em {
font-size: 1.5rem
}
.checkout .sheet .total .units {
vertical-align: baseline;
font-size: 1.3rem;
color: #666
}
.checkout .sheet .submitbtn {
background-color: #00c267;
position: absolute;
right: 0;
top: 0;
width: 40vw;
color: #fff
}
.user-bind {
font-size: 1.2rem;
color: #666;
text-align: left;
line-height: 1.8rem
}
.user-bind strong {
color: #333
}
.m-dialog.confirm-submit
.dialog-operate {
position: relative
}
.m-dialog.confirm-submit
.dialog-operate:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone .m-dialog.confirm-submit
.dialog-operate:before {
border-top-width: 2px
}
.iphoneplus .m-dialog.confirm-submit
.dialog-operate:before {
border-top-width: 3px
}
.m-dialog.confirm-submit
.dialog-operate button {
display: -moz-inline-stack;
display: inline-block;
font-size: 1.6rem
}
.m-dialog.confirm-submit
.dialog-operate .white-btn {
background-color: #fff;
width: 60vw;
color: #fc7700;
font-size: 1.6rem;
vertical-align: baseline
}
.m-dialog.confirm-submit .dialog-operate .white-btn em {
font-size: 1.6rem
}
.m-dialog.confirm-submit
.dialog-operate .white-btn .number {
color: #666;
font-size: 1.6rem;
margin-left: .4rem
}
.m-dialog.confirm-submit .dialog-operate
.soonpay-btn {
width: 40vw
}
.contactlist {
padding: 0 1.4rem
}
.contactlist .item-row {
height: 4.3rem;
padding: 1rem 0;
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.contactlist
.item-row
:not
(
:first-child
){
position
:
relative
}
.contactlist
.item-row:not (:first-child ):before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone
.contactlist .item-row:not (:first-child ):before {
border-top-width: 2px
}
.iphoneplus .contactlist
.item-row:not (:first-child ):before {
border-top-width: 3px
}
.contactlist
.item-row>div {
-ms-flex-item-align: center;
align-self: center
}
.contactlist
.item-row .contact-info {
line-height: 2rem;
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
color: #333;
font-size: 1.4rem
}
.contactlist .item-row .contact-info
.label {
color: #666
}
.couponlist {
padding: 0 1.4rem;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.couponlist
.item-row {
padding: 1rem 0;
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.couponlist
.item-row
:not
(
:first-child
){
position
:
relative
}
.couponlist .item-row:not (:first-child ):before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e5e5e5;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone
.couponlist .item-row:not (:first-child ):before {
border-top-width: 2px
}
.iphoneplus
.couponlist .item-row:not (:first-child ):before {
border-top-width: 3px
}
.couponlist
.item-row>div {
-ms-flex-item-align: center;
align-self: center
}
.couponlist .item-row
.coupon-info {
line-height: 2rem;
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1
}
.couponlist
.item-row .coupon-info .label-num {
font-size: 1.4rem
}
.couponlist .item-row .coupon-info
.label-num span {
color: #fc7700;
font-size: 2.4rem;
vertical-align: baseline
}
.couponlist .item-row
.coupon-info .label-num span em {
font-size: 1.4rem
}
.couponlist .item-row .coupon-info
.label-num span.re-visit {
display: -moz-inline-stack;
display: inline-block;
color: #fff;
font-size: .9rem;
background-color: #00c267;
border-radius: .4rem;
background-clip: padding-box;
padding: 0 .4rem;
line-height: 1.3rem
}
.couponlist
.item-row .coupon-info .date {
color: #666
}
.radio-box
.icon-radio {
background-position: -21.3rem -12rem
}
.item-checked .radio-box .icon-radio,.radio-box
.icon-radio {
width: 2rem;
height: 1.8rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.item-checked
.radio-box .icon-radio {
background-position: -21.3rem -16.4rem
}
.swiper-container {
margin: 0 auto;
position: relative;
overflow: hidden;
z-index: 1
}
.swiper-container .swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
-webkit-transition-property: -webkit-transform;
transition-property: transform;
box-sizing: content-box;
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.swiper-container .swiper-slide {
-webkit-flex-shrink: 0;
-ms-flex: 0 0 auto;
flex-shrink: 0;
position: relative
}
.m-mask {
background-color: transparent;
transition: all 1s
}
.dialog-wrap-info {
background-color: hsla(0, 0%, 57%, .7);
z-index: 1000;
width: 60%;
border-radius: .4rem
}
.dialog-wrap-info .dialog-content-info {
display: table;
width: 100%;
height: 100%
}
.dialog-wrap-info
.dialog-content-info .dialog-content-bd {
display: table-cell;
padding: 3rem 2rem;
text-align: center;
color: #fff;
font-size: 1.5rem
}
.m-alert-dialog,.m-confirm-dialog {
width: 25rem;
background-color: #fff;
border-radius: .4rem;
text-align: center;
margin: 0 auto
}
.m-alert-dialog .tip,.m-confirm-dialog
.tip {
border-bottom: 1.5px solid #dfdfdf
}
.m-alert-dialog .tip .tip-head,.m-confirm-dialog .tip
.tip-head {
background-color: #f5f5f5;
height: 3.4rem;
line-height: 3.4rem
}
.m-alert-dialog .tip
.tip-title,.m-confirm-dialog .tip .tip-title {
font-size: 1.5rem;
color: #727272;
text-align: center
}
.m-alert-dialog .tip
.tip-close,.m-confirm-dialog .tip .tip-close {
padding: 0 1rem 0 2rem;
font-size: 1.5rem;
color: #21ab38;
position: absolute;
right: 0
}
.m-alert-dialog .tip div.content,.m-confirm-dialog .tip div.content {
padding: 1.5rem 1.5rem 4rem;
font-size: 1.2rem;
line-height: 1.8rem
}
.m-alert-dialog .alert,.m-confirm-dialog .alert {
padding: 1.2rem 0;
color: #727272;
font-size: 1.5rem
}
.m-alert-dialog .operate,.m-confirm-dialog .operate {
height: 2.8rem
}
.m-alert-dialog
.operate span,.m-confirm-dialog .operate span {
display: block;
align-self: center;
line-height: 2.8rem
}
.m-alert-dialog
.operate span:last-child,.m-confirm-dialog .operate span:last-child {
color: #21ab38
}
.m-confirm-dialog {
left: 50% !important;
top: 50% !important;
width: 80%;
margin-left: -40%;
margin-top: -40%
}
.m-dialog {
-moz-border-top-left-radius: .5rem;
border-top-left-radius: .5rem;
-moz-border-top-right-radius: .5rem;
border-top-right-radius: .5rem;
overflow: hidden;
background-color: #fff;
width: 100%
}
.m-dialog .icon-close {
background-position: -15.95rem -18.6rem;
width: 2rem;
height: 1.8rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.m-dialog
.dialog-head {
font-size: 1.6rem;
color: #333;
background-color: #fafafa;
height: 4.4rem;
box-sizing: border-box;
position: relative;
border-bottom: 1.5px solid #dfdfdf
}
.m-dialog .dialog-head .close-wrap,.m-dialog
.dialog-head .title {
display: block;
-ms-flex-item-align: center;
align-self: center
}
.m-dialog .dialog-head
.title {
padding-left: 1.4rem;
position: relative
}
.m-dialog .dialog-head
.title:before {
position: absolute;
left: 0;
top: 50%;
margin-top: -1rem;
content: "";
width: .4rem;
height: 2rem;
background-color: #00c267
}
.m-dialog .dialog-head
.close-wrap {
text-align: right;
padding-left: 2.8rem;
padding-right: 1.4rem
}
.m-dialog .dialog-inner {
overflow: hidden
}
.m-dialog .dialog-inner
.dialog-content {
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.m-dialog
.dialog-operate {
box-shadow: 0 -2px 5px rgba(1, 1, 1, .1)
}
.m-dialog .dialog-operate button {
display: block;
width: 100%;
background-color: #00c267;
height: 4.6rem;
font-size: 1.8rem;
color: #fff;
border: 0
}
.m-dialog
.dialog-operate button sub {
font-size: 1.1rem;
margin-right: .4rem
}
.m-dialog
.article {
padding: 1rem;
color: #727272;
font-size: 1.1rem
}
.m-dialog .article h5 {
font-size: 1.1rem;
padding: .35rem 0
}
.m-dialog .article
p {
line-height: 1.75rem;
padding-bottom: .4rem
}
@
-webkit-keyframes slidein { 0%{
transform: translate3d(0, 100%, 0)
}
to {
transform: translateZ(0)
}
}
.weui-mask {
position: fixed;
z-index: 1000;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(11, 14, 23, .7)
}
.weui-dialog {
position: fixed;
z-index: 5000;
width: 85%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: #fdfdfe;
text-align: center;
border-radius: .4rem;
background-clip: padding-box;
overflow: hidden
}
.weui-dialog .dialog-inner {
width: 96%
}
.weui-dialog .weui-dialog-hd {
padding: 2rem 1rem 0
}
.weui-dialog .weui-dialog-hd .weui-dialog-title {
font-size: 1.5rem;
color: #262c2f
}
.weui-dialog .weui-dialog-bd {
text-align: center;
padding: 1rem 1.4rem 2rem;
font-size: 1.2rem;
color: #727272;
word-wrap: break-word;
word-break: break-all
}
.weui-dialog
.weui-dialog-bd p {
display: inline-block;
text-align: justify
}
.weui-dialog .weui-dialog-ft {
position: relative;
line-height: 4.3rem;
border-top: 1.5px solid #dfdfdf;
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex
}
.weui-dialog .weui-dialog-ft span {
position: relative;
display: block;
-webkit-box-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
color: #21ac39;
font-size: 1.5rem;
-webkit-tap-highlight-color: transparent
}
.weui-dialog .weui-dialog-ft span:first-child {
border-right: 1.5px solid #dfdfdf
}
.weui-dialog .weui-dialog-ft .cancel {
color: #666;
font-size: 1.4rem
}
.weui-dialog-message
.weui-mask-transparent {
position: fixed;
z-index: 1000;
top: 0;
right: 0;
left: 0;
bottom: 0
}
.weui-dialog-message
.weui-toast {
background-color: rgba(0, 0, 0, .7);
font-size: 1.4rem;
color: #fff;
border-radius: 1.4rem;
background-clip: padding-box;
padding: .8rem 2.4rem
}
.weui-dialog-window {
border-radius: .4rem;
background-clip: padding-box;
background-color: #fff;
width: 92%;
padding-bottom: 1rem
}
.weui-dialog-window .head-inner {
padding: 1.4rem 0
}
.weui-dialog-window .title {
border-left: .4rem solid #22ad3a;
font-size: 1.5rem;
color: #262c2f;
padding-left: .6rem
}
.weui-dialog-window .close-wrap {
padding: 0 1.4rem 0 2rem
}
.weui-dialog-window
.dialog-inner {
padding: 0 1rem;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.weui-dialog-window .dialog-inner
.dialog-content {
padding: 1rem 0;
border-top: 1.5px solid #d3d3d3;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch
}
.weui-dialog-window .dialog-inner .dialog-content img {
max-width: 100%
}
.hr {
height: 1px;
margin: .8rem 0;
position: relative;
border-bottom: 1.5px solid #dfdfdf
}
.gap-h1 {
height: 1.4rem;
font-size: 0;
line-height: 0;
overflow: hidden;
background-color: #f5f5f5
}
.quantity-form {
position: relative;
white-space: nowrap
}
.quantity-form .decrement,.quantity-form
.increment {
display: -moz-inline-stack;
display: inline-block
}
.quantity-form .quantity {
width: 2rem;
height: 2.6rem;
line-height: 2.6rem;
margin: 0;
text-align: center;
font-size: 1.2rem;
-webkit-appearance: none;
color: #262c2f;
border: 1px solid #fff;
background-color: transparent;
font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif;
-moz-user-select: none;
-webkit-user-select: none;
color: #darkGray
}
.quantity-form
.increment {
background-position: 0 -15.4rem
}
.quantity-form .increment,.quantity-form
.increment.disabled {
width: 2.8rem;
height: 2.8rem;
background-image: url("../../../images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.quantity-form .decrement {
background-position: -12.4rem -11.9rem
}
.quantity-form .decrement,.quantity-form .decrement.disabled {
width: 2.8rem;
height: 2.8rem;
background-image: url("../../../images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.calendar-full-btn button,.opt-full-btn button {
display: block;
width: 100%;
background-color: #21ac39;
height: 4.95rem;
font-size: 1.8rem;
color: #fff;
border: 0
}
.calendar-full-btn button sub,.opt-full-btn button
sub {
font-size: 1.1rem;
margin-right: .4rem
}
.slidein {
-webkit-animation-name: slideLn;
animation-name: slideLn;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: none;
animation-fill-mode: none
}
.slidein,.slideout {
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.slideout {
-webkit-animation-name: slideOut;
animation-name: slideOut;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: none;
animation-fill-mode: none
}
.fadein {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.fadein,.fadeout {
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.fadeout {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.tools-menu {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 4.6rem;
box-sizing: border-box;
z-index: 1000;
background-color: hsla(0, 0%, 100%, .93)
}
.tools-menu
.icon-wx-purchase {
background-position: -5.4rem -18.6rem
}
.tools-menu .icon-my-order,.tools-menu
.icon-wx-purchase {
width: 2.3rem;
height: 2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.tools-menu
.icon-my-order {
background-position: 0 -18.6rem
}
.tools-menu .icon-card-package {
background-position: -17.75rem -15.4rem;
width: 2.3rem;
height: 2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.tools-menu .inner-menu {
display: -webkit-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
width: 100vw;
position: relative
}
.tools-menu .inner-menu:before {
content: "";
position: absolute;
width: 200%;
display: block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
box-sizing: border-box;
-webkit-transform: scale(.5);
transform: scale(.5);
border-radius: 0;
background-clip: padding-box;
border: 0 solid #e8e8e8;
left: 0;
top: 0;
border-top-width: 1px
}
.iphone .tools-menu
.inner-menu:before {
border-top-width: 2px
}
.iphoneplus .tools-menu .inner-menu:before {
border-top-width: 3px
}
.tools-menu
.inner-menu>div {
-webkit-box-flex: 1;
-moz-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
height: 4rem;
padding-top: .6rem;
align-content: space-between;
position: relative
}
.tools-menu .inner-menu>div .dots {
position: absolute;
width: .7rem;
height: .7rem;
border-radius: 50%;
background-clip: padding-box;
background-color: #fc7700;
left: 50%;
margin-left: .3rem;
visibility: hidden
}
.tools-menu .inner-menu>div .dots.show {
visibility: visible
}
.tools-menu
.inner-menu>div span {
display: block;
font-size: 1rem;
color: #999;
padding-top: .1rem
}
.tools-menu .inner-menu>div.active
.icon-wx-purchase {
background-position: -2.7rem -18.6rem
}
.tools-menu .inner-menu>div.active .icon-my-order,.tools-menu
.inner-menu>div.active .icon-wx-purchase {
width: 2.3rem;
height: 2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.tools-menu .inner-menu>div.active
.icon-my-order {
background-position: -8.1rem -18.6rem
}
.tools-menu .inner-menu>div.active
.icon-card-package {
background-position: -15.05rem -15.4rem;
width: 2.3rem;
height: 2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.tools-menu .inner-menu>div.active span {
color: #00c267
} /*!
* Mixins
*/ /*!
* Mixins
*/ /*!
* Mixins
*/ /*!
* Mixins
*/ /*!
* #border-radius {
* @include default-border-radius(25px);
* }
*
* #border-radius-top-left {
* @include top-left-border-radius(25px);
* }
*
* #border-radius-top-right {
* @include top-right-border-radius(25px);
* }
* #border-radius-bottom-left {
* @include bottom-left-border-radius(25px);
* }
* #border-radius-bottom-right {
* @include bottom-right-border-radius(25px);
* }
* #border-radius-top {
* @include top-border-radius(25px, 25px)
* }
* #border-radius-bottom {
* @include bottom-border-radius(25px, 25px)
* }
* #border-radius-left {
* @include left-border-radius(25px, 25px)
* }
* #border-radius-right {
* @include right-border-radius(25px, 25px)
* }
* #border-radius-combo {
* @include combo-border-radius(50px, 30px, 15px, 80px)
* }
*/ /*!
* Mixins
*/ /*!
* Mixins
*/
@
-webkit-keyframes slideLn { 0%{
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
}
@
keyframes slideLn { 0%{
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
}
@
-webkit-keyframes slideOut { 0%{
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
to {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@
keyframes slideOut { 0%{
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
to {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@
-webkit-keyframes fadeIn { 0%{
opacity: 0
}
to {
opacity: 1
}
}
@
keyframes fadeIn { 0%{
opacity: 0
}
to {
opacity: 1
}
}
@
-webkit-keyframes
fadeOut { 0%{
opacity: 1
}
to {
opacity: 0
}
}
@
keyframes fadeOut { 0%{
opacity: 1
}
to {
opacity: 0
}
}
@
-webkit-keyframes shake { 0%,to { -webkit-transform:translateZ(0);
transform: translateZ(0)
}
12
.5
%,
37
.5
%,
62
.5
%{
-webkit-transform
:
translate3d
(-10px
,
0,
0);
transform
:
translate3d
(-10px
,
0,
0)
}
25%,50%,75
.5
%{
-webkit-transform
:
translate3d
(10px
,
0,
0);
transform
:
translate3d
(10px
,
0,
0)
}
}
@
keyframes shake { 0%,to { -webkit-transform:translateZ(0);
transform: translateZ(0)
}
12
.5
%,
37
.5
%,
62
.5
%{
-webkit-transform
:
translate3d
(-10px
,
0,
0);
transform
:
translate3d
(-10px
,
0,
0)
}
25%,50%,75
.5
%{
-webkit-transform
:
translate3d
(10px
,
0,
0);
transform
:
translate3d
(10px
,
0,
0)
}
}
.m-datepicker .mask {
width: 100%;
height: 100%;
position: fixed;
background-color: rgba(0, 0, 0, .75);
left: 0;
top: 0;
z-index: 10;
transition: all 1s
}
.m-datepicker
.datepicker {
display: block;
position: absolute;
bottom: 0;
left: 0;
z-index: 900;
background-color: #fff;
width: 100%;
border-top-left-radius: .5rem;
border-top-right-radius: .5rem;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
overflow: hidden
}
.m-datepicker .datepicker
.m-header {
font-size: 1.7rem;
height: 4.3rem;
line-height: 4.3rem;
text-align: left
}
.m-datepicker
.datepicker .m-header .close-wrap {
padding: 0 1.4rem 0 2.8rem
}
.m-datepicker .datepicker .m-header
.m-h-title {
margin: 0;
position: relative;
border-bottom: 1px solid #d3d3d3;
background-color: #fafafa
}
.m-datepicker
.datepicker .m-header .title {
text-align: left;
padding-left: 1.4rem;
font-size: 1.5rem;
position: relative
}
.m-datepicker
.datepicker .m-header .title:before {
position: absolute;
left: 0;
top: 50%;
margin-top: -1rem;
content: "";
width: .4rem;
height: 2rem;
background-color: #00c267
}
.m-datepicker .tbody {
position: relative;
overflow: hidden;
border-right: 1.5px solid #d3d3d3;
padding: .8rem 0;
box-sizing: border-box
}
.m-datepicker .tbody .tr-row>div {
border-radius: 50%
}
.m-datepicker .tbody
.tr-row>div:nth-child(odd) {
z-index: 14
}
.m-datepicker .tbody .tr-row>div:nth-child(even) {
z-index: 13
}
.m-datepicker .tbody
.tr-row>div.active {
background-color: #fc7700
}
.m-datepicker .tbody .tr-row>div.active em,.m-datepicker .tbody
.tr-row>div.active span {
color: #fff
}
.m-datepicker .tr-row {
height: 4.2rem;
line-height: 4.2rem;
text-align: center;
font-size: 1.4rem
}
.m-datepicker .tr-row>div {
position: relative;
z-index: 12;
height: 14.28571vw
}
.m-datepicker
.tr-row>div em,.m-datepicker .tr-row>div span {
position: absolute;
left: 0;
display: block;
width: 100%;
text-align: center
}
.m-datepicker
.tr-row>div span {
display: inline-block;
width: 100%;
top: 1.2rem;
line-height: 1.2rem;
color: #ccc
}
.m-datepicker .tr-row>div.allowed
span {
color: #333
}
.m-datepicker .tr-row>div .icon-date-slected {
visibility: hidden;
position: absolute;
right: -.1rem;
top: -.15rem
}
.m-datepicker
.tr-row>div.active .icon-date-slected {
visibility: visible;
z-index: 1000
}
[data-device-type=android] .m-datepicker .tr-row>div.active
.icon-date-slected {
top: -.2rem
}
.m-datepicker .tr-row>div em {
font-size: .85rem;
color: #fc7700;
font-style: normal;
line-height: 1rem;
top: 2.7rem
}
.m-datepicker .tr-row>div.next,.m-datepicker .tr-row>div.prev {
-webkit-box-flex: 2;
flex: 2
}
.m-datepicker
.tr-row>div.prev {
text-align: left;
padding-left: 1.4rem
}
.m-datepicker
.tr-row>div.next {
text-align: right;
padding-right: 1.4rem
}
.m-datepicker .tr-row.week-row {
background-color: #fafafa;
font-size: 1.2rem;
color: #333;
height: 3.3rem
}
.m-datepicker .tr-row.week-row .weekend {
color: #00c267
}
.m-datepicker .tr-row .new,.m-datepicker .tr-row
.old {
color: #d3d3d3
}
.m-datepicker .tr-row .datepicker-switch {
-webkit-box-flex: 3;
flex: 3;
text-align: center;
font-size: 1.5rem
}
.icon-switch-l {
background-position: -8rem -10.6rem
}
.icon-switch-l,.icon-switch-r {
width: .7rem;
height: 1.2rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.icon-switch-r {
background-position: -8rem -7.4rem
}
.icon-close {
background-position: -15.95rem -18.6rem;
width: 2rem;
height: 1.8rem;
background-image: url("../../statics/images/wx/ticket/sprite.png");
background-repeat: no-repeat;
background-size: 25.55rem 24.9rem;
display: inline-block
}
.bg-backhome {
height: 100%;
background-color: #f0f0f0
}
.backhome .offshelf {
padding: 6rem 0 4rem
}
.backhome .offshelf
.icon-offshelf {
width: 24.4rem;
height: 9rem;
background: url(./images/offshelf.png) no-repeat 50%;
background-size: 100%;
margin: 0 auto
}
.backhome
.message {
text-align: center;
font-size: 1.5rem;
color: #727272;
padding: 1.4rem
}
.backhome .btnbox {
text-align: center;
padding-top: 5rem
}
.backhome
.btnbox button {
display: inline-block;
cursor: pointer;
text-align: center;
vertical-align: middle;
position: relative;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
touch-action: manipulation;
background-color: #7acd89;
border: 1px solid transparent;
padding: .4rem 2rem;
color: #fff;
font-size: 1.5rem;
border-radius: .4rem;
background-clip: padding-box
}
.content {
list-style: none;
height: 70px;
line-height: 60px;
font-family: "方正姚体";
}
.bottomDiv {
float: right;
margin-right: 100px;
margin-top: -40px;
width: 160px;
height: 10px;
font-size: 5px;
color: #808080;
}
.left {
float: left;
margin-right: 5%;
height: 50px;
}
.menuList .right {
float: right;
width: 10px;
}
.am-modal-bd {
padding-bottom: 1px;
} | 0.269902 | 0.075244 |
/**
*
* Name: farhang Fonts
* Version: 1.0
* Author: <NAME> (<EMAIL>)
* Created on: March 11, 2020
* Updated on: March 22, 2020
* Website: http://fontiran.com
* Copyright: Commercial/Proprietary Software
--------------------------------------------------------------------------------------
فونت فرهنگ یک نرم افزار مالکیتی محسوب می شود. جهت آگاهی از قوانین استفاده از این فونت ها لطفا به وب سایت (فونت ایران دات کام) مراجعه نمایید
--------------------------------------------------------------------------------------
farhang fonts are considered a proprietary software. To gain information about the laws regarding the use of these fonts, please visit www.fontiran.com
--------------------------------------------------------------------------------------
This set of fonts are used in this project under the license: (.....)
------------------------------------------------------------------------------------- fonts/-
*
**/
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 100;
src: url('fonts/eot/farhang-thinsharp.eot');
src: url('fonts/eot/farhang-thinsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-thinsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-thinsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 200;
src: url('fonts/eot/farhang-extralightsharp.eot');
src: url('fonts/eot/farhang-extralightsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-extralightsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-extralightsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 300;
src: url('fonts/eot/farhang-lightsharp.eot');
src: url('fonts/eot/farhang-lightsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-lightsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-lightsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 500;
src: url('fonts/eot/farhang-mediumsharp.eot');
src: url('fonts/eot/farhang-mediumsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-mediumsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-mediumsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 600;
src: url('fonts/eot/farhang-demiboldsharp.eot');
src: url('fonts/eot/farhang-demiboldsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-demiboldsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-demiboldsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 800;
src: url('fonts/eot/farhang-extraboldsharp.eot');
src: url('fonts/eot/farhang-extraboldsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-extraboldsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-extraboldsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 900;
src: url('fonts/eot/farhang-blacksharp.eot');
src: url('fonts/eot/farhang-blacksharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-blacksharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-blacksharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: bold;
src: url('fonts/eot/farhang-boldsharp.eot');
src: url('fonts/eot/farhang-boldsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-boldsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-boldsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: normal;
src: url('fonts/eot/farhang-regularsharp.eot');
src: url('fonts/eot/farhang-regularsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-regularsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-regularsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
} | client/src/styles/all-fonts/FarhangPro/Farhang Sharp/Webfonts/fontiran.css | /**
*
* Name: farhang Fonts
* Version: 1.0
* Author: <NAME> (<EMAIL>)
* Created on: March 11, 2020
* Updated on: March 22, 2020
* Website: http://fontiran.com
* Copyright: Commercial/Proprietary Software
--------------------------------------------------------------------------------------
فونت فرهنگ یک نرم افزار مالکیتی محسوب می شود. جهت آگاهی از قوانین استفاده از این فونت ها لطفا به وب سایت (فونت ایران دات کام) مراجعه نمایید
--------------------------------------------------------------------------------------
farhang fonts are considered a proprietary software. To gain information about the laws regarding the use of these fonts, please visit www.fontiran.com
--------------------------------------------------------------------------------------
This set of fonts are used in this project under the license: (.....)
------------------------------------------------------------------------------------- fonts/-
*
**/
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 100;
src: url('fonts/eot/farhang-thinsharp.eot');
src: url('fonts/eot/farhang-thinsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-thinsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-thinsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 200;
src: url('fonts/eot/farhang-extralightsharp.eot');
src: url('fonts/eot/farhang-extralightsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-extralightsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-extralightsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 300;
src: url('fonts/eot/farhang-lightsharp.eot');
src: url('fonts/eot/farhang-lightsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-lightsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-lightsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 500;
src: url('fonts/eot/farhang-mediumsharp.eot');
src: url('fonts/eot/farhang-mediumsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-mediumsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-mediumsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 600;
src: url('fonts/eot/farhang-demiboldsharp.eot');
src: url('fonts/eot/farhang-demiboldsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-demiboldsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-demiboldsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 800;
src: url('fonts/eot/farhang-extraboldsharp.eot');
src: url('fonts/eot/farhang-extraboldsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-extraboldsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-extraboldsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: 900;
src: url('fonts/eot/farhang-blacksharp.eot');
src: url('fonts/eot/farhang-blacksharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-blacksharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-blacksharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: bold;
src: url('fonts/eot/farhang-boldsharp.eot');
src: url('fonts/eot/farhang-boldsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-boldsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-boldsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}
@font-face {
font-family: farhangsharp;
font-style: normal;
font-weight: normal;
src: url('fonts/eot/farhang-regularsharp.eot');
src: url('fonts/eot/farhang-regularsharp.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('fonts/woff2/farhang-regularsharp.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
url('fonts/woff/farhang-regularsharp.woff') format('woff'); /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
} | 0.257018 | 0.044974 |
body {
font-family: 'Montserrat', sans-serif;
}
* {
box-sizing: border-box;
}
.container {
max-width: 100%;
width: 1230px;
margin-left: auto;
margin-right: auto;
}
.my-0 {
margin-top: 0;
margin-bottom: 0;
}
.mt-0 {
margin-top: 0;
}
.mb-5 {
margin-bottom: 5px;
}
.mb-0 {
margin-bottom: 0;
}
/* END -- General */
/* Typography */
/* 20px */
.fs-l {
font-size: 20px;
}
/* 16px */
.fs-m {
font-size: 16px;
}
/* 14px */
.fs-s {
font-size: 14px;
}
/* 12px */
.fs-xs {
font-size: 12px;
}
/* 10px */
.fs-xxs {
font-size: 10px;
}
/* END -- Typography */
/* Top Nav */
.top-nav {
display: flex;
padding-top: 10px;
padding-bottom: 10px;
}
/* END -- Top Nav */
.main-header__container {
display: flex;
justify-content: space-between;
align-items: center;
}
.main-header__logo {
width: 180px;
}
.main-header__asset {
max-width: 100%;
height: auto;
}
.main-header__nav-item {
display: inline-block;
vertical-align: middle;
margin-right: 15px;
}
.main-header__nav-item:last-child {
margin-right: 0;
}
.main-header__nav-link {
color: black;
font-weight: bold;
text-decoration: none;
}
.dd-actions {
background-color: #fafafa;
display: block;
align-items: center;
overflow: hidden;
margin-bottom: 50px;
}
.dd-actions__col {
width: calc(100% - 160px - 360px);
padding-left: 25px;
padding-right: 25px;
float: left;
display: flex;
min-height: 60px;
align-items: center;
/* flex-direction: column; */
}
.dd-actions__col--filters {
width: 160px;
border-right: 1px solid #cacaca;
}
.dd-actions__col--address {
width: 360px;
border-left: 1px solid #cacaca;
align-items: flex-start;
justify-content: center;
flex-direction: column;
}
.dd-list {
display: flex;
flex-wrap: wrap;
}
.dd-list__item {
width: calc((100% - 90px) / 4);
min-height: 280px;
/* background-color: #F4774F; */
margin-right: 30px;
margin-bottom: 30px;
}
.dd-list__item:nth-child(4n) {
margin-right: 0;
}
footer {
background-color: #fafafa;
padding-top: 15px;
padding-bottom: 15px;
}
.bullet {
display: flex;
}
.bullet__asset {
width: 55px;
}
.bullet__content {
width: calc(100% - 55px);
padding-left: 10px;
padding-right: 10px;
}
.dd-card__body {
position: relative;
}
.dd-card__labels {
position: absolute;
}
.dd-card__top-left-info {
top: 0;
left: 0;
width: 105px;
height: 105px;
background-color: green;
}
.dd-card__footer {
padding-left: 5px;
padding-right: 5px;
}
.dd-card__title {
white-space: nowrap;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
.dd-card__image {
padding-bottom: calc(9/16*100%);
background-color: blue;
background-image: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80");
background-size: cover;
background-position: center;
}
.dd-card__footer {
position: relative;
}
.dd-card__actions {
top: 5px;
right: 5px;
background-color: #cccc;
padding: 5px;
}
.dd-card__bottom-right-info {
right: 5px;
bottom: 5px;
background-color: #fafafa;
padding: 5px;
}
.dd-card__avatar {
width: 100%;
height: 55px;
margin-top: calc(-55px / 2);
background-color: yellow;
border-radius: 50%;
border: 2px solid white;
}
.dd-card__reviews {
text-align: center;
}
.dd-card__footer-content {
padding-top: 15px;
padding-bottom: 15px;
}
.stars {
text-align: center;
}
.stars__item {
width: 5px;
height: 5px;
background-color: green;
display: inline-block;
vertical-align: middle;
margin-right: 4px;
}
.stars__item:last-child {
margin-right: 0;
} | css/custom.css |
body {
font-family: 'Montserrat', sans-serif;
}
* {
box-sizing: border-box;
}
.container {
max-width: 100%;
width: 1230px;
margin-left: auto;
margin-right: auto;
}
.my-0 {
margin-top: 0;
margin-bottom: 0;
}
.mt-0 {
margin-top: 0;
}
.mb-5 {
margin-bottom: 5px;
}
.mb-0 {
margin-bottom: 0;
}
/* END -- General */
/* Typography */
/* 20px */
.fs-l {
font-size: 20px;
}
/* 16px */
.fs-m {
font-size: 16px;
}
/* 14px */
.fs-s {
font-size: 14px;
}
/* 12px */
.fs-xs {
font-size: 12px;
}
/* 10px */
.fs-xxs {
font-size: 10px;
}
/* END -- Typography */
/* Top Nav */
.top-nav {
display: flex;
padding-top: 10px;
padding-bottom: 10px;
}
/* END -- Top Nav */
.main-header__container {
display: flex;
justify-content: space-between;
align-items: center;
}
.main-header__logo {
width: 180px;
}
.main-header__asset {
max-width: 100%;
height: auto;
}
.main-header__nav-item {
display: inline-block;
vertical-align: middle;
margin-right: 15px;
}
.main-header__nav-item:last-child {
margin-right: 0;
}
.main-header__nav-link {
color: black;
font-weight: bold;
text-decoration: none;
}
.dd-actions {
background-color: #fafafa;
display: block;
align-items: center;
overflow: hidden;
margin-bottom: 50px;
}
.dd-actions__col {
width: calc(100% - 160px - 360px);
padding-left: 25px;
padding-right: 25px;
float: left;
display: flex;
min-height: 60px;
align-items: center;
/* flex-direction: column; */
}
.dd-actions__col--filters {
width: 160px;
border-right: 1px solid #cacaca;
}
.dd-actions__col--address {
width: 360px;
border-left: 1px solid #cacaca;
align-items: flex-start;
justify-content: center;
flex-direction: column;
}
.dd-list {
display: flex;
flex-wrap: wrap;
}
.dd-list__item {
width: calc((100% - 90px) / 4);
min-height: 280px;
/* background-color: #F4774F; */
margin-right: 30px;
margin-bottom: 30px;
}
.dd-list__item:nth-child(4n) {
margin-right: 0;
}
footer {
background-color: #fafafa;
padding-top: 15px;
padding-bottom: 15px;
}
.bullet {
display: flex;
}
.bullet__asset {
width: 55px;
}
.bullet__content {
width: calc(100% - 55px);
padding-left: 10px;
padding-right: 10px;
}
.dd-card__body {
position: relative;
}
.dd-card__labels {
position: absolute;
}
.dd-card__top-left-info {
top: 0;
left: 0;
width: 105px;
height: 105px;
background-color: green;
}
.dd-card__footer {
padding-left: 5px;
padding-right: 5px;
}
.dd-card__title {
white-space: nowrap;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
.dd-card__image {
padding-bottom: calc(9/16*100%);
background-color: blue;
background-image: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80");
background-size: cover;
background-position: center;
}
.dd-card__footer {
position: relative;
}
.dd-card__actions {
top: 5px;
right: 5px;
background-color: #cccc;
padding: 5px;
}
.dd-card__bottom-right-info {
right: 5px;
bottom: 5px;
background-color: #fafafa;
padding: 5px;
}
.dd-card__avatar {
width: 100%;
height: 55px;
margin-top: calc(-55px / 2);
background-color: yellow;
border-radius: 50%;
border: 2px solid white;
}
.dd-card__reviews {
text-align: center;
}
.dd-card__footer-content {
padding-top: 15px;
padding-bottom: 15px;
}
.stars {
text-align: center;
}
.stars__item {
width: 5px;
height: 5px;
background-color: green;
display: inline-block;
vertical-align: middle;
margin-right: 4px;
}
.stars__item:last-child {
margin-right: 0;
} | 0.46563 | 0.063832 |
@charset "utf-8";
/* CSS Document */
.textnothide {
display: block !important;
position: absolute;
z-index: -1;
}
.form-group{
overflow:hidden;
}
.skin-blue .sidebar-menu > li.header {
background: #1a2226 none repeat scroll 0 0;
color: #fff;
text-transform: uppercase;
}
.custom-menu .btn{ text-align:left !important;}
.custom-menu > li > a{ padding:3px 10px !important;}
.navbar-nav > .user-menu > .custom-menu{ width:100% !important; max-width:200px;}
.up_empl a {
background: #eeeeee none repeat scroll 0 0;
border: 1px solid #dddddd;
border-radius: 3px !important;
display: block;
margin-bottom: 10px;
padding: 10px 12px;
text-decoration: none;
}
.bg-purple{
color:#fff;
}
.bg-purple:hover{
color:#fff;
}
.box-footer a{
margin-left: 5px;
}
.btn_disbl_cls .btn-info {background-color: #dddddd !important; border-color: #dddddd !important;}
.not-authorised{padding-top:5%;}
.not-authorised .details{text-align:center;}
.not-authorised .details h2{font-size:50px; font-weight:bold; text-transform:uppercase; line-height:50px; color:#1b1b1b;}
.not-authorised .details h3{font-size:26px; color:#5b5b5b;}
.blue-theam thead tr th{ background-color:#3c8dbc; color:#fff; font-weight:normal;}
.blue-theam > thead > tr > th{ padding:4px !important;}
.blue-theam > thead{border:1px solid #3c8dbc;}
.blue-theam .gray-bg{ background-color:#dddddd;}
.blue-theam .searchable{ border:1px solid #3c8dbc; }
.blue-theam table {margin-bottom: 0 !important;}
.blue-theam > thead > tr > th { border-bottom: 0px solid #f4f4f4 !important;}
.blue-theam > thead > tr > th,
.blue-theam > tbody > tr > th,
.blue-theam > tfoot > tr > th,
.blue-theam > thead > tr > td,
.blue-theam > tbody > tr > td,
.blue-theam > tfoot > tr > td {
border-top: 0px solid #f00;
}
.breadcrumb > li + li::before {
padding: 0 5px;
color: #403f3f;
}
.home-icon{ margin-right:5px;}
.btn { margin-bottom:5px !important;}
.red{ color:#f00;}
.ace-file-container{ float:left; }
.col-sm-5 input[type="file"] {display: inline; width:auto;}
.custom-border{ border:1px solid #ccc; overflow:auto; padding:4px 10px;}
.btn_disbl_cls { background-color: #ccc; border-color: #ccc; cursor:not-allowed;}
.btn_disbl_cls:hover{background-color: #ccc; border-color: #ccc;}
.bld_cls{
font-weight:bold;
}
.bg-aqua{ color:#fff;}
.bg-green{ background-color:#28b779; color:#fff;}
.bg-red{ background-color:#e84c3d; color:#fff;}
.bg-yellow{color:#fff;}
.box-gray{ background-color:#f9f8f8; border:1px solid #CCC; overflow:hidden; width:100%; float:left; margin-bottom:10px; padding:10px;}
.box-body{ display:inline-block; width:100%;}
.align-right{ text-align:right; }
.align-left{ text-align:left;}
.align-center{ text-align:center;}
.custom-from-group .form-inline .form-group{ float:left; margin-bottom:10px;}
.custom-from-group .form-group{ width:100%; max-width:100%;}
.custom-from-group .form-group label{ margin:0 5px 0 0 ; width:100%; max-width:130px;}
.custom-from-group .form-group .col-sm-6 label{max-width:20px;}
.custom-from-group .col-md-3 .form-group label{max-width:50px !important;}
.custom-from-group .form-group input{ width:100%; max-width:300px;}
.custom-from-group .form-group textarea{ width:100%; max-width:300px;}
.custom-from-group .form-group select{width:100%; max-width:300px;}
.custom-from-group .two-cloumn .col-sm-7 label{max-width:130px;}
.custom-from-group .two-cloumn .col-sm-5 label{max-width:20px;}
.custom-from-group .two-cloumn .small-input{ width:100%; max-width:122px;}
.custom-from-group .two-cloumn .small-input2{ width:100%; max-width:122px;}
.custom-from-group .inner-con{ width:100%; max-width:410px;}
.custom-from-group .custom-btn{ margin-left:108px !important;}
.custom-from-group .custom-btn2{ }
.custom-from-group .no-mar{ margin:0 0 5px 0 !important;}
.custom-from-group .mar-01{margin-left:138px !important;}
.custom-from-group .form-group .col-sm-6,
.custom-from-group .form-group .col-sm-12,
.custom-from-group .form-group .col-sm-7,
.custom-from-group .form-group .col-sm-5
{padding-right: 0;padding-left: 0;}
ul.custom-table{ padding:0 5px; margin:0; border:1px solid #f4f4f4; overflow:hidden;}
ul.custom-table li{ padding:5px 0; margin:5px 0 5px 0 ; list-style:none; text-align:center; overflow:hidden; border-bottom:0 solid #ccc; }
ul.custom-table li.header{ background-color:#3c8dbc; color:#fff; padding:5px 0;}
@media screen and ( max-width: 1238px ) {
.custom-from-group .inner-con{ width:100%; max-width:300px;}
}
.dataTables_wrapper .dt-buttons{ float:right;}
.dataTables_wrapper .dt-buttons .buttons-excel{ margin-bottom: 5px !important; background-color: #3c8dbc; border-color: #3c8dbc; border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid transparent; padding: 6px 10px 6px 25px;
font-size: 12px; line-height: 1.5; background:#3c8dbc url(../img/arrow10.png) 11px 50% no-repeat;}
.dataTables_wrapper .dt-buttons .buttons-pdf{ margin-bottom: 5px !important; background-color: #3c8dbc; border-color: #3c8dbc; border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid transparent; padding: 6px 10px 6px 25px;
font-size: 12px; line-height: 1.5; background:#3c8dbc url(../img/pdf_icon.png) 7px 50% no-repeat;}
.dataTables_wrapper .dt-buttons .buttons-print{ margin-bottom: 5px !important; background-color: #3c8dbc; border-color: #3c8dbc; border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid transparent; padding: 6px 10px 6px 25px;
font-size: 12px; line-height: 1.5; background:#3c8dbc url(../img/print_icon.png) 7px 50% no-repeat; margin-left:5px;}
.dataTables_wrapper .dt-buttons .buttons-excel:hover{background-color: #00acd6;}
.dataTables_wrapper .dt-buttons a{ color:#fff !important;}
.modal-footer{ width:100%;}
.custom-table-listing{ padding:0 15px; margin:0;}
.custom-table-listing h2{ margin:0 -15px 10px -15px; font-size:18px; font-weight:bold;}
.custom-table-listing .row{ margin-bottom:20px;}
.custom-table-listing .heading-bg{ background-color:#004f83; color:#fff; overflow:hidden;}
.custom-table-listing .row-th{ float:left; width:100%; max-width:20%; padding:10px 0; margin:0;}
.custom-table-listing .row-td{ float:left; width:100%; max-width:20%; padding:10px 0; margin:0;}
.custom-table-listing .odd{background-color:#e1e1e1; overflow:hidden;}
.custom-table-listing .even{background-color:#fff; overflow:hidden;}
.custom-table-listing .pad-10{padding:10px;}
.bg-purple{
background-color:#847bbb;
color:#fff;
}
.bg-light-yellow{
background-color:#fbd01e;
color:#fff;
}
.bg-pink{
background-color:#ff7ca2;
color:#fff;
}
.bg-pple{
background-color:#B05A89;
color:#fff;
}
.sesson-expired{ text-align:center; margin:30px 0; background-color:#fff; padding:30px 0 50px 0;}
.sesson-expired h2{ color:#2d2d2d; padding:0; margin:10px 0 10px 0; font-size:24px; line-height:24px;}
.sesson-expired h3{ color:#a3a4ae; padding:0; margin:10px 0 10px 0; font-size:14px; line-height:16px;}
.priority_low{ color:#FBD01E; font-weight:bold;}
.priority_medium{ color:#F39C12; font-weight:bold;}
.priority_high{ color:#E84C3D; font-weight:bold;}
.request_status_open{ color:#E84C3D; font-weight:bold;}
.request_status_resolved{ color:#28B779; font-weight:bold;}
.list-box{border:1px solid #ccc; max-height:150px; overflow:auto; box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;border-radius:4px; padding:6px 12px;margin-left: 14px;} | webadmin/public/css/custom_style.css | @charset "utf-8";
/* CSS Document */
.textnothide {
display: block !important;
position: absolute;
z-index: -1;
}
.form-group{
overflow:hidden;
}
.skin-blue .sidebar-menu > li.header {
background: #1a2226 none repeat scroll 0 0;
color: #fff;
text-transform: uppercase;
}
.custom-menu .btn{ text-align:left !important;}
.custom-menu > li > a{ padding:3px 10px !important;}
.navbar-nav > .user-menu > .custom-menu{ width:100% !important; max-width:200px;}
.up_empl a {
background: #eeeeee none repeat scroll 0 0;
border: 1px solid #dddddd;
border-radius: 3px !important;
display: block;
margin-bottom: 10px;
padding: 10px 12px;
text-decoration: none;
}
.bg-purple{
color:#fff;
}
.bg-purple:hover{
color:#fff;
}
.box-footer a{
margin-left: 5px;
}
.btn_disbl_cls .btn-info {background-color: #dddddd !important; border-color: #dddddd !important;}
.not-authorised{padding-top:5%;}
.not-authorised .details{text-align:center;}
.not-authorised .details h2{font-size:50px; font-weight:bold; text-transform:uppercase; line-height:50px; color:#1b1b1b;}
.not-authorised .details h3{font-size:26px; color:#5b5b5b;}
.blue-theam thead tr th{ background-color:#3c8dbc; color:#fff; font-weight:normal;}
.blue-theam > thead > tr > th{ padding:4px !important;}
.blue-theam > thead{border:1px solid #3c8dbc;}
.blue-theam .gray-bg{ background-color:#dddddd;}
.blue-theam .searchable{ border:1px solid #3c8dbc; }
.blue-theam table {margin-bottom: 0 !important;}
.blue-theam > thead > tr > th { border-bottom: 0px solid #f4f4f4 !important;}
.blue-theam > thead > tr > th,
.blue-theam > tbody > tr > th,
.blue-theam > tfoot > tr > th,
.blue-theam > thead > tr > td,
.blue-theam > tbody > tr > td,
.blue-theam > tfoot > tr > td {
border-top: 0px solid #f00;
}
.breadcrumb > li + li::before {
padding: 0 5px;
color: #403f3f;
}
.home-icon{ margin-right:5px;}
.btn { margin-bottom:5px !important;}
.red{ color:#f00;}
.ace-file-container{ float:left; }
.col-sm-5 input[type="file"] {display: inline; width:auto;}
.custom-border{ border:1px solid #ccc; overflow:auto; padding:4px 10px;}
.btn_disbl_cls { background-color: #ccc; border-color: #ccc; cursor:not-allowed;}
.btn_disbl_cls:hover{background-color: #ccc; border-color: #ccc;}
.bld_cls{
font-weight:bold;
}
.bg-aqua{ color:#fff;}
.bg-green{ background-color:#28b779; color:#fff;}
.bg-red{ background-color:#e84c3d; color:#fff;}
.bg-yellow{color:#fff;}
.box-gray{ background-color:#f9f8f8; border:1px solid #CCC; overflow:hidden; width:100%; float:left; margin-bottom:10px; padding:10px;}
.box-body{ display:inline-block; width:100%;}
.align-right{ text-align:right; }
.align-left{ text-align:left;}
.align-center{ text-align:center;}
.custom-from-group .form-inline .form-group{ float:left; margin-bottom:10px;}
.custom-from-group .form-group{ width:100%; max-width:100%;}
.custom-from-group .form-group label{ margin:0 5px 0 0 ; width:100%; max-width:130px;}
.custom-from-group .form-group .col-sm-6 label{max-width:20px;}
.custom-from-group .col-md-3 .form-group label{max-width:50px !important;}
.custom-from-group .form-group input{ width:100%; max-width:300px;}
.custom-from-group .form-group textarea{ width:100%; max-width:300px;}
.custom-from-group .form-group select{width:100%; max-width:300px;}
.custom-from-group .two-cloumn .col-sm-7 label{max-width:130px;}
.custom-from-group .two-cloumn .col-sm-5 label{max-width:20px;}
.custom-from-group .two-cloumn .small-input{ width:100%; max-width:122px;}
.custom-from-group .two-cloumn .small-input2{ width:100%; max-width:122px;}
.custom-from-group .inner-con{ width:100%; max-width:410px;}
.custom-from-group .custom-btn{ margin-left:108px !important;}
.custom-from-group .custom-btn2{ }
.custom-from-group .no-mar{ margin:0 0 5px 0 !important;}
.custom-from-group .mar-01{margin-left:138px !important;}
.custom-from-group .form-group .col-sm-6,
.custom-from-group .form-group .col-sm-12,
.custom-from-group .form-group .col-sm-7,
.custom-from-group .form-group .col-sm-5
{padding-right: 0;padding-left: 0;}
ul.custom-table{ padding:0 5px; margin:0; border:1px solid #f4f4f4; overflow:hidden;}
ul.custom-table li{ padding:5px 0; margin:5px 0 5px 0 ; list-style:none; text-align:center; overflow:hidden; border-bottom:0 solid #ccc; }
ul.custom-table li.header{ background-color:#3c8dbc; color:#fff; padding:5px 0;}
@media screen and ( max-width: 1238px ) {
.custom-from-group .inner-con{ width:100%; max-width:300px;}
}
.dataTables_wrapper .dt-buttons{ float:right;}
.dataTables_wrapper .dt-buttons .buttons-excel{ margin-bottom: 5px !important; background-color: #3c8dbc; border-color: #3c8dbc; border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid transparent; padding: 6px 10px 6px 25px;
font-size: 12px; line-height: 1.5; background:#3c8dbc url(../img/arrow10.png) 11px 50% no-repeat;}
.dataTables_wrapper .dt-buttons .buttons-pdf{ margin-bottom: 5px !important; background-color: #3c8dbc; border-color: #3c8dbc; border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid transparent; padding: 6px 10px 6px 25px;
font-size: 12px; line-height: 1.5; background:#3c8dbc url(../img/pdf_icon.png) 7px 50% no-repeat;}
.dataTables_wrapper .dt-buttons .buttons-print{ margin-bottom: 5px !important; background-color: #3c8dbc; border-color: #3c8dbc; border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid transparent; padding: 6px 10px 6px 25px;
font-size: 12px; line-height: 1.5; background:#3c8dbc url(../img/print_icon.png) 7px 50% no-repeat; margin-left:5px;}
.dataTables_wrapper .dt-buttons .buttons-excel:hover{background-color: #00acd6;}
.dataTables_wrapper .dt-buttons a{ color:#fff !important;}
.modal-footer{ width:100%;}
.custom-table-listing{ padding:0 15px; margin:0;}
.custom-table-listing h2{ margin:0 -15px 10px -15px; font-size:18px; font-weight:bold;}
.custom-table-listing .row{ margin-bottom:20px;}
.custom-table-listing .heading-bg{ background-color:#004f83; color:#fff; overflow:hidden;}
.custom-table-listing .row-th{ float:left; width:100%; max-width:20%; padding:10px 0; margin:0;}
.custom-table-listing .row-td{ float:left; width:100%; max-width:20%; padding:10px 0; margin:0;}
.custom-table-listing .odd{background-color:#e1e1e1; overflow:hidden;}
.custom-table-listing .even{background-color:#fff; overflow:hidden;}
.custom-table-listing .pad-10{padding:10px;}
.bg-purple{
background-color:#847bbb;
color:#fff;
}
.bg-light-yellow{
background-color:#fbd01e;
color:#fff;
}
.bg-pink{
background-color:#ff7ca2;
color:#fff;
}
.bg-pple{
background-color:#B05A89;
color:#fff;
}
.sesson-expired{ text-align:center; margin:30px 0; background-color:#fff; padding:30px 0 50px 0;}
.sesson-expired h2{ color:#2d2d2d; padding:0; margin:10px 0 10px 0; font-size:24px; line-height:24px;}
.sesson-expired h3{ color:#a3a4ae; padding:0; margin:10px 0 10px 0; font-size:14px; line-height:16px;}
.priority_low{ color:#FBD01E; font-weight:bold;}
.priority_medium{ color:#F39C12; font-weight:bold;}
.priority_high{ color:#E84C3D; font-weight:bold;}
.request_status_open{ color:#E84C3D; font-weight:bold;}
.request_status_resolved{ color:#28B779; font-weight:bold;}
.list-box{border:1px solid #ccc; max-height:150px; overflow:auto; box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;border-radius:4px; padding:6px 12px;margin-left: 14px;} | 0.247987 | 0.080502 |
.icon {
width: 45px;
height: 45px;
position: absolute;
background-repeat: no-repeat;
background-size: 45px;
}
.icon::before {
content: "";
}
.mail {
background-image: url("../icons/mail.svg");
top: 60px;
left: 50px;
}
.calendar {
background-image: url("../icons/calendar.svg");
top: 60px;
left: 110px;
}
.photos {
background-image: url("../icons/photos.svg");
top: 60px;
left: 170px;
}
.camera {
background-image: url("../icons/camera.svg");
top: 60px;
left: 230px;
}
/* start of second row */
.maps {
background-image: url("../icons/maps.png");
top: 115px;
left: 50px;
}
.clock {
background-image: url("../icons/clock.svg");
top: 115px;
left: 110px;
}
.weather {
background-image: url("../icons/weather.svg");
top: 115px;
left: 170px;
}
.calculator {
background-image: url("../icons/calculator.svg");
top: 115px;
left: 230px;
}
/* start of third row */
.myshortcuts {
background-image: url("../icons/myshortcuts.svg");
top: 175px;
left: 50px;
}
.notes {
background-image: url("../icons/notes.svg");
top: 175px;
left: 110px;
}
.reminders {
background-image: url("../icons/reminders.svg");
top: 175px;
left: 170px;
}
.files {
background-image: url("../icons/files.svg");
top: 175px;
left: 230px;
}
/* start of fourth row */
.health {
background-image: url("../icons/health.svg");
top: 235px;
left: 50px;
}
.appstore {
background-image: url("../icons/appstore.svg");
top: 235px;
left: 110px;
}
/* start of fifth row */
.wallet {
background-image: url("../icons/wallet.svg");
top: 295px;
left: 50px;
}
.settings {
background-image: url("../icons/settings.svg");
top: 295px;
left: 110px;
}
/* widget */
.widget-2 {
width: 107px;
height: 107px;
position: absolute;
background-image: url('../widgets/applemusic-widget.png');
background-repeat: no-repeat;
background-size: 107px;
border-radius: 0.8rem;
top: 235px;
left: 169px;
}
.widget-2::before {
content: "";
}
.widget-4 {
width: 225px;
height: 107px;
position: absolute;
background-image: url('../widgets/calendar-widget.png');
background-repeat: no-repeat;
background-size: 225px;
border-radius: 0.8rem;
top: 355px;
left: 50px;
}
.widget-4::before {
content: "";
}
/* start of bottom bar */
.bottombar {
position: absolute;
top: 100px;
left: 50px;
width: 100px;
}
.call {
background-image: url("../icons/phone.png");
top: 403px;
left: 6px;
}
.safari {
background-image: url("../icons/safari.svg");
top: 403px;
left: 63px;
}
.iosmessage {
background-image: url("../icons/iosmessage.svg");
top: 403px;
left: 119px;
}
.itunes {
background-image: url("../icons/itunes.svg");
top: 403px;
left: 174px;
} | css/appicons.css | .icon {
width: 45px;
height: 45px;
position: absolute;
background-repeat: no-repeat;
background-size: 45px;
}
.icon::before {
content: "";
}
.mail {
background-image: url("../icons/mail.svg");
top: 60px;
left: 50px;
}
.calendar {
background-image: url("../icons/calendar.svg");
top: 60px;
left: 110px;
}
.photos {
background-image: url("../icons/photos.svg");
top: 60px;
left: 170px;
}
.camera {
background-image: url("../icons/camera.svg");
top: 60px;
left: 230px;
}
/* start of second row */
.maps {
background-image: url("../icons/maps.png");
top: 115px;
left: 50px;
}
.clock {
background-image: url("../icons/clock.svg");
top: 115px;
left: 110px;
}
.weather {
background-image: url("../icons/weather.svg");
top: 115px;
left: 170px;
}
.calculator {
background-image: url("../icons/calculator.svg");
top: 115px;
left: 230px;
}
/* start of third row */
.myshortcuts {
background-image: url("../icons/myshortcuts.svg");
top: 175px;
left: 50px;
}
.notes {
background-image: url("../icons/notes.svg");
top: 175px;
left: 110px;
}
.reminders {
background-image: url("../icons/reminders.svg");
top: 175px;
left: 170px;
}
.files {
background-image: url("../icons/files.svg");
top: 175px;
left: 230px;
}
/* start of fourth row */
.health {
background-image: url("../icons/health.svg");
top: 235px;
left: 50px;
}
.appstore {
background-image: url("../icons/appstore.svg");
top: 235px;
left: 110px;
}
/* start of fifth row */
.wallet {
background-image: url("../icons/wallet.svg");
top: 295px;
left: 50px;
}
.settings {
background-image: url("../icons/settings.svg");
top: 295px;
left: 110px;
}
/* widget */
.widget-2 {
width: 107px;
height: 107px;
position: absolute;
background-image: url('../widgets/applemusic-widget.png');
background-repeat: no-repeat;
background-size: 107px;
border-radius: 0.8rem;
top: 235px;
left: 169px;
}
.widget-2::before {
content: "";
}
.widget-4 {
width: 225px;
height: 107px;
position: absolute;
background-image: url('../widgets/calendar-widget.png');
background-repeat: no-repeat;
background-size: 225px;
border-radius: 0.8rem;
top: 355px;
left: 50px;
}
.widget-4::before {
content: "";
}
/* start of bottom bar */
.bottombar {
position: absolute;
top: 100px;
left: 50px;
width: 100px;
}
.call {
background-image: url("../icons/phone.png");
top: 403px;
left: 6px;
}
.safari {
background-image: url("../icons/safari.svg");
top: 403px;
left: 63px;
}
.iosmessage {
background-image: url("../icons/iosmessage.svg");
top: 403px;
left: 119px;
}
.itunes {
background-image: url("../icons/itunes.svg");
top: 403px;
left: 174px;
} | 0.395601 | 0.055107 |
.menu
{
font-family:Verdana;
color:#ffffff !important;
font-size:11px;
text-decoration: none !important;
}
.menu:active
{
font-family:Verdana;
color:#FF0000;
font-size:11px;
text-decoration: underline;
}
.menu:hover
{
font-family:Verdana;
color:#ffffff !important;
font-size:11px;
text-decoration: underline !important;
}
.menu:visited
{
font-family:Verdana;
color:#ffffff;
font-size:11px;
text-decoration: none;
}
.menu2
{
font-family:Verdana;
color:#ffff00 !important;
font-size:11px;
text-decoration: none !important;
}
.menu2:hover
{
font-family:Verdana;
color:#ffff00 !important;
font-size:11px;
text-decoration: underline !important;
}
.menu2:visited
{
font-family:Verdana;
color:#ffff00;
font-size:11px;
text-decoration: none;
}
.campo, input {
font-family:Verdana;
font-size:11px;
color:#000000;
background:#FFFFFF;
}
.select {
font-family:Verdana;
font-size:11px;
color:#000000;
background:#FFFFFF;
}
.texto, .padrao, td {
font-family:Verdana;
text-decoration: none;
text-align: justify;
color: #000000;
font-size: 11px;
}
.texto_branco {
font-family:Verdana;
text-decoration: none;
color: #FFFFFF;
font-size: 11px;
}
.destaque_titulo{
font-family:Verdana;
text-decoration: underline;
color: #666666;
font-size: 11px;
font-weight: bold;
}
.destaque, .artigo {
font-family:Verdana;
text-decoration: none !important;
color: #666666 !important;
font-size: 11px !important;
}
.destaque:active {
font-family:Verdana;
text-decoration: none;
color: #969696;
font-size: 11px;
}
.destaque:hover {
font-family:Verdana;
text-decoration: none !important;
color: #969696 !important;
font-size: 11px !important;
}
.destaque:visited {
font-family:Verdana;
text-decoration: none;
color: #969696;
font-size: 11px;
}
A:link {
text-decoration: none;
color: #005300;
}
A:active {
text-decoration: none;
color: #005300;
}
A:hover {
text-decoration: underline !important;
color: #008200 !important;
}
A:visited {
text-decoration: none;
color: #005300;
}
.esquerda { text-align: left; }
.centro { text-align: center; }
.direita { text-align: right; }
.codigo { background-color: #eeeeee; }
.codigo { background-color: #fffff4; border: 1px solid #d4d4c6; }
.titulo {
font-family:Arial, Helvetica;
text-decoration: none;
color: #000000;
font-size: 16px;
font-weight: bold;
}
.titulo2 {
font-family:Arial, Helvetica;
text-decoration: none;
color: #000000;
font-size: 14px;
font-weight: bold;
}
.titulo3, H3 {
font-family:Arial, Helvetica;
text-decoration: none;
color: #1C2D1F;
font-size: 12px;
font-weight: bold;
}
.coluna { background-image: url('/imagens/verde/interna_titulo_bg.jpg'); } | gap/impressora.php_files/estilo-verde.css |
.menu
{
font-family:Verdana;
color:#ffffff !important;
font-size:11px;
text-decoration: none !important;
}
.menu:active
{
font-family:Verdana;
color:#FF0000;
font-size:11px;
text-decoration: underline;
}
.menu:hover
{
font-family:Verdana;
color:#ffffff !important;
font-size:11px;
text-decoration: underline !important;
}
.menu:visited
{
font-family:Verdana;
color:#ffffff;
font-size:11px;
text-decoration: none;
}
.menu2
{
font-family:Verdana;
color:#ffff00 !important;
font-size:11px;
text-decoration: none !important;
}
.menu2:hover
{
font-family:Verdana;
color:#ffff00 !important;
font-size:11px;
text-decoration: underline !important;
}
.menu2:visited
{
font-family:Verdana;
color:#ffff00;
font-size:11px;
text-decoration: none;
}
.campo, input {
font-family:Verdana;
font-size:11px;
color:#000000;
background:#FFFFFF;
}
.select {
font-family:Verdana;
font-size:11px;
color:#000000;
background:#FFFFFF;
}
.texto, .padrao, td {
font-family:Verdana;
text-decoration: none;
text-align: justify;
color: #000000;
font-size: 11px;
}
.texto_branco {
font-family:Verdana;
text-decoration: none;
color: #FFFFFF;
font-size: 11px;
}
.destaque_titulo{
font-family:Verdana;
text-decoration: underline;
color: #666666;
font-size: 11px;
font-weight: bold;
}
.destaque, .artigo {
font-family:Verdana;
text-decoration: none !important;
color: #666666 !important;
font-size: 11px !important;
}
.destaque:active {
font-family:Verdana;
text-decoration: none;
color: #969696;
font-size: 11px;
}
.destaque:hover {
font-family:Verdana;
text-decoration: none !important;
color: #969696 !important;
font-size: 11px !important;
}
.destaque:visited {
font-family:Verdana;
text-decoration: none;
color: #969696;
font-size: 11px;
}
A:link {
text-decoration: none;
color: #005300;
}
A:active {
text-decoration: none;
color: #005300;
}
A:hover {
text-decoration: underline !important;
color: #008200 !important;
}
A:visited {
text-decoration: none;
color: #005300;
}
.esquerda { text-align: left; }
.centro { text-align: center; }
.direita { text-align: right; }
.codigo { background-color: #eeeeee; }
.codigo { background-color: #fffff4; border: 1px solid #d4d4c6; }
.titulo {
font-family:Arial, Helvetica;
text-decoration: none;
color: #000000;
font-size: 16px;
font-weight: bold;
}
.titulo2 {
font-family:Arial, Helvetica;
text-decoration: none;
color: #000000;
font-size: 14px;
font-weight: bold;
}
.titulo3, H3 {
font-family:Arial, Helvetica;
text-decoration: none;
color: #1C2D1F;
font-size: 12px;
font-weight: bold;
}
.coluna { background-image: url('/imagens/verde/interna_titulo_bg.jpg'); } | 0.199659 | 0.043406 |
}
@-webkit-keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.invisible {
display:none;/*ne zavzame površine*/
}
#space {/*options ureja velikost tega*/
margin:0 auto;
background-color:#7688B3;
width:1000px;
height:550px;
position:relative;
}
#top_wrapper {
width:400px;
margin:0 auto;
height:80px;
position:relative;
background-color:#7688B3;
}
#bot_wrapper {
margin:0 auto;
border-color: black;
border-style:solid;
border-width: 2px 2px 2px 2px;
}
#go_back {cursor:pointer; position:absolute; right:0;top:0;width:300px;height:50px;background-color:#1F916B;}
#go_back:hover {background-color:black;color:white;font-weight:bold;}
#space_menu {background-color:grey;width:100%; height:100%; position:relative;
-moz-transition: fadeIn 1s;
-webkit-animation: fadeIn 1s;
-ms-transition: fadeIn 1s;
-o-transition: fadeIn 1s;
animation: fadeIn 1s;/*prepiše go_back na nek način*/
}
#space_menu div { cursor:pointer; width:200px; height:25px; border-radius:25px; margin:0 auto;
background-color:darkgrey; padding: 10px 0 10px 0; position:absolute; left:400px;
}
#space_menu div:hover {background-color:#B5AD93;color:white;font-weight:bold;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;}
#space_menu #menu_play {top:100px;}
#space_menu #menu_highscores {top:200px;}
#space_menu #menu_options {top:300px;}
#space_menu #menu_exit {top:400px;}
#space_game {background-color: #7688B3;
-moz-transition: fadeIn 1s;
-webkit-animation: fadeIn 1s;
-ms-transition: fadeIn 1s;
-o-transition: fadeIn 1s;
animation: fadeIn 1s;/*prepiše go_back na nek način*/
}
#minskoPolje {
/*background-color:#5D8AA8;*/
cursor:pointer;
text-align:center;
margin: 0 auto;
border: 3px solid black;
}
#minskoPolje.a {
border-collapse:separate;/*frej prostor vmes med kvadratki*/
border-spacing:2px;
}
#minskoPolje.b {
border-collapse:collapse;
border-spacing:0px;
}
#minskoPolje td {
font-family:Arial,sans-serif;
border:1px solid black;
height:35px;
width:35px;
min-height:25px;
min-width:25px;
line-height:25px;
text-align:center;
font-weight:bold;
font-size:120%;
-moz-transition: background-color 0.5s;
-webkit-transition: background-color 0.5s;
-ms-transition: background-color 0.5s;
-o-transition: background-color 0.5s;
transition: background-color 0.5s;
}
.neodprtoPolje {background-color:#A1A1A1;}
.neodprtoPolje:hover {opacity:0.3;filter:alpha(opacity=30);}/*IE*/
.rumenaMina {background-color:#C9C9C9; background-image:url("../images/rumenaMina.png"); background-size:100% auto;}
.rdečaMina {background-color:#C9C9C9; background-image:url("../images/rdecaMina.png"); background-size:100% auto;}
.zastavica {background-color:#A1A1A1; background-image:url("../images/zastavica.png"); background-size:100% auto;}
.prekrižanaZastavica {opacity:0.85;background-color:#C9C9C9; background-image:url("../images/prekrizanaZastavica.png"); background-size:100% auto;}
.razred0 {background-color:#C9C9C9; color: transparent;}/*0 so transparentne, v nekaterih FF se vseeno lahko označijo*/
.razred1 {background-color:#C9C9C9; color: #677FCF;}
.razred2 {background-color:#C9C9C9; color: #34AD4A;}
.razred3 {background-color:#C9C9C9; color: #C94456;}
.razred4 {background-color:#C9C9C9; color: #1B48E0;}
.razred5 {background-color:#C9C9C9; color: #E09926;}
.razred6 {background-color:#C9C9C9; color: #15CED1;}
.razred7 {background-color:#C9C9C9; color: #D8DE64;}
.razred8 {background-color:#C9C9C9; color: #E890DB;}
div#top_wrapper {
margin: 0 auto;
height:100px;
/*background-color:green;*/
}
div#top_innerwrapper {
position:relative;
margin: 0 auto;
width:400px;
height:100px;
background-color:grey;
}
/*div#clock {
background-image:url("../pacman/images/Canvas_animation2.png"); background-size:100% auto;
}*/
div#mr_smiley.win {
background-image:url("../images/smileyWin.png"); background-size:100% auto;
}
div#mr_smiley.play {
background-image:url("../images/smileyPlay.png"); background-size:100% auto;
}
div#mr_smiley.defeat {
background-image:url("../images/smileyDefeat.png"); background-size:100% auto;
}
/*div#sound.mute {
background-image:url("../images/off.png"); background-size:60% auto; background-position:center;
}
div#sound.unmute {
background-image:url("../images/on.png"); background-size:60% auto; background-position:center;
}*/
div#timer {
top:35px;
font-family:"Segoe UI light","Segoe UI";
/*background-color:blue;*/
position:absolute;
height:60px;
width:150px;
border-radius:20px;
color:white;
cursor:default;
color:white;
font-size:25px;
text-align:center;
}
div#counter {
font-family:"Segoe UI light","Segoe UI";
left:300px;
top:25px;
position:absolute;
border-radius:20px;
height:50px;
width:80px;
color:white;
cursor:pointer;
text-align: center;
color:white;
font-size:35px;
}
/*div#counter.deaktivirano{background-color:#828EAB;}
div#counter.deaktivirano:hover{background-color:#999CA3;}
div#counter.aktivirano{color:orange;}
div#counter.aktivirano:hover{background-color:#916691;}*/
div#clock {
position:absolute;
width:40px;
top:30px;
height:40px;
left:110px;
background-repeat:no-repeat;
}
div#mr_smiley:hover {
background-color:black;
}
div#mr_smiley {
position:absolute;
top:25px;
left:180px;
width:40px;
height:40px;
border-radius:20px;/*da miška lahko pritisne le znotraj "kroga"*/
background-repeat:no-repeat;
cursor:pointer;
}
div#mr_smiley:hover {
background-color:black;
}
input[type="text"] {
width:50px;
text-align:center;
}
#submitScore{
font-family:Verdana;
font-size:14px;
background:#A1A1A1;
text-align:justify;
width:350px;
height:100px;
margin: 0 auto;
border-radius: 5px;
margin-top:125px;
padding:25px 25px 25px 25px;
}
#highscoresSelect {
position:relative;
margin:0 auto;
}
#highscoresFromDatabase {/*bolje to kot tabela*/
background-color:white;
border:1px solid black;
margin: 0 auto;
margin-top:30px;
text-align:center;
overflow:scroll;
height:485px;
width:600px;
}
#highscoresFromDatabase tr:hover {
background-color:#339966;
color:white;
}
#highscoresFromDatabase th {
font-size:1.2em;
text-align:center;
padding-top:7px;
padding-bottom:12px;
background-color:#A7C942;
color:white;
width:150px;
} | css/stylesheet.css | }
@-webkit-keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.invisible {
display:none;/*ne zavzame površine*/
}
#space {/*options ureja velikost tega*/
margin:0 auto;
background-color:#7688B3;
width:1000px;
height:550px;
position:relative;
}
#top_wrapper {
width:400px;
margin:0 auto;
height:80px;
position:relative;
background-color:#7688B3;
}
#bot_wrapper {
margin:0 auto;
border-color: black;
border-style:solid;
border-width: 2px 2px 2px 2px;
}
#go_back {cursor:pointer; position:absolute; right:0;top:0;width:300px;height:50px;background-color:#1F916B;}
#go_back:hover {background-color:black;color:white;font-weight:bold;}
#space_menu {background-color:grey;width:100%; height:100%; position:relative;
-moz-transition: fadeIn 1s;
-webkit-animation: fadeIn 1s;
-ms-transition: fadeIn 1s;
-o-transition: fadeIn 1s;
animation: fadeIn 1s;/*prepiše go_back na nek način*/
}
#space_menu div { cursor:pointer; width:200px; height:25px; border-radius:25px; margin:0 auto;
background-color:darkgrey; padding: 10px 0 10px 0; position:absolute; left:400px;
}
#space_menu div:hover {background-color:#B5AD93;color:white;font-weight:bold;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;}
#space_menu #menu_play {top:100px;}
#space_menu #menu_highscores {top:200px;}
#space_menu #menu_options {top:300px;}
#space_menu #menu_exit {top:400px;}
#space_game {background-color: #7688B3;
-moz-transition: fadeIn 1s;
-webkit-animation: fadeIn 1s;
-ms-transition: fadeIn 1s;
-o-transition: fadeIn 1s;
animation: fadeIn 1s;/*prepiše go_back na nek način*/
}
#minskoPolje {
/*background-color:#5D8AA8;*/
cursor:pointer;
text-align:center;
margin: 0 auto;
border: 3px solid black;
}
#minskoPolje.a {
border-collapse:separate;/*frej prostor vmes med kvadratki*/
border-spacing:2px;
}
#minskoPolje.b {
border-collapse:collapse;
border-spacing:0px;
}
#minskoPolje td {
font-family:Arial,sans-serif;
border:1px solid black;
height:35px;
width:35px;
min-height:25px;
min-width:25px;
line-height:25px;
text-align:center;
font-weight:bold;
font-size:120%;
-moz-transition: background-color 0.5s;
-webkit-transition: background-color 0.5s;
-ms-transition: background-color 0.5s;
-o-transition: background-color 0.5s;
transition: background-color 0.5s;
}
.neodprtoPolje {background-color:#A1A1A1;}
.neodprtoPolje:hover {opacity:0.3;filter:alpha(opacity=30);}/*IE*/
.rumenaMina {background-color:#C9C9C9; background-image:url("../images/rumenaMina.png"); background-size:100% auto;}
.rdečaMina {background-color:#C9C9C9; background-image:url("../images/rdecaMina.png"); background-size:100% auto;}
.zastavica {background-color:#A1A1A1; background-image:url("../images/zastavica.png"); background-size:100% auto;}
.prekrižanaZastavica {opacity:0.85;background-color:#C9C9C9; background-image:url("../images/prekrizanaZastavica.png"); background-size:100% auto;}
.razred0 {background-color:#C9C9C9; color: transparent;}/*0 so transparentne, v nekaterih FF se vseeno lahko označijo*/
.razred1 {background-color:#C9C9C9; color: #677FCF;}
.razred2 {background-color:#C9C9C9; color: #34AD4A;}
.razred3 {background-color:#C9C9C9; color: #C94456;}
.razred4 {background-color:#C9C9C9; color: #1B48E0;}
.razred5 {background-color:#C9C9C9; color: #E09926;}
.razred6 {background-color:#C9C9C9; color: #15CED1;}
.razred7 {background-color:#C9C9C9; color: #D8DE64;}
.razred8 {background-color:#C9C9C9; color: #E890DB;}
div#top_wrapper {
margin: 0 auto;
height:100px;
/*background-color:green;*/
}
div#top_innerwrapper {
position:relative;
margin: 0 auto;
width:400px;
height:100px;
background-color:grey;
}
/*div#clock {
background-image:url("../pacman/images/Canvas_animation2.png"); background-size:100% auto;
}*/
div#mr_smiley.win {
background-image:url("../images/smileyWin.png"); background-size:100% auto;
}
div#mr_smiley.play {
background-image:url("../images/smileyPlay.png"); background-size:100% auto;
}
div#mr_smiley.defeat {
background-image:url("../images/smileyDefeat.png"); background-size:100% auto;
}
/*div#sound.mute {
background-image:url("../images/off.png"); background-size:60% auto; background-position:center;
}
div#sound.unmute {
background-image:url("../images/on.png"); background-size:60% auto; background-position:center;
}*/
div#timer {
top:35px;
font-family:"Segoe UI light","Segoe UI";
/*background-color:blue;*/
position:absolute;
height:60px;
width:150px;
border-radius:20px;
color:white;
cursor:default;
color:white;
font-size:25px;
text-align:center;
}
div#counter {
font-family:"Segoe UI light","Segoe UI";
left:300px;
top:25px;
position:absolute;
border-radius:20px;
height:50px;
width:80px;
color:white;
cursor:pointer;
text-align: center;
color:white;
font-size:35px;
}
/*div#counter.deaktivirano{background-color:#828EAB;}
div#counter.deaktivirano:hover{background-color:#999CA3;}
div#counter.aktivirano{color:orange;}
div#counter.aktivirano:hover{background-color:#916691;}*/
div#clock {
position:absolute;
width:40px;
top:30px;
height:40px;
left:110px;
background-repeat:no-repeat;
}
div#mr_smiley:hover {
background-color:black;
}
div#mr_smiley {
position:absolute;
top:25px;
left:180px;
width:40px;
height:40px;
border-radius:20px;/*da miška lahko pritisne le znotraj "kroga"*/
background-repeat:no-repeat;
cursor:pointer;
}
div#mr_smiley:hover {
background-color:black;
}
input[type="text"] {
width:50px;
text-align:center;
}
#submitScore{
font-family:Verdana;
font-size:14px;
background:#A1A1A1;
text-align:justify;
width:350px;
height:100px;
margin: 0 auto;
border-radius: 5px;
margin-top:125px;
padding:25px 25px 25px 25px;
}
#highscoresSelect {
position:relative;
margin:0 auto;
}
#highscoresFromDatabase {/*bolje to kot tabela*/
background-color:white;
border:1px solid black;
margin: 0 auto;
margin-top:30px;
text-align:center;
overflow:scroll;
height:485px;
width:600px;
}
#highscoresFromDatabase tr:hover {
background-color:#339966;
color:white;
}
#highscoresFromDatabase th {
font-size:1.2em;
text-align:center;
padding-top:7px;
padding-bottom:12px;
background-color:#A7C942;
color:white;
width:150px;
} | 0.246533 | 0.091707 |
html,
body {
height: 100%;
width: 100%;
font-family: Montserrat;
}
#content {
background-color: #fff;
}
.post {
padding-top: 10em;
margin: auto;
width:100%;
}
.post-content {
width: 90%;
max-width: 800px;
margin: auto;
text-align: justify;
line-height: 220%;
font-size:160%;
}
.post-title {
font-weight: 1000;
text-align: center;
padding-top: 1.5em;
padding-bottom: 2em;
font-size: 3.0em;
text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.3);
}
.img-header {
position: relative;
padding: 20px;
height: 80%;
width: 100%;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
background-position: center center
}
#footer {
position: absolute;
text-align: center;
vertical-align: middle;
height: 30%;
width: 100%;
background-color:#F5F5F5;
}
.footer-icon{
opacity: 0.65;
-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;
}
#footer img {
height: 90%;
width: 80%;
-webkit-filter: drop-shadow(2px 15px 2px gray); /* Chrome, Safari, Opera */
filter: drop-shadow(2px 15px 2px gray);
}
.footer-icon:hover {
opacity: 1;
-webkit-transform:scale(1.2, 1.2);
-moz-transform:scale(1.2, 1.2);
-ms-transform:scale(1.2, 1.2);
-o-transform:scale(1.2, 1.2);
transform: scale(1.2);
}
#footer p {
z-index: 1;
}
.navbar {
width:100%;
padding:1.4em;
position: fixed;
z-index: 9999;
}
.navbar-default {
background-color: #ffffff;
}
.navbar-default .navbar-brand {
color: #22a7f0;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #003171;
}
.navbar-default .navbar-text {
color: #22a7f0;
}
.navbar-default .navbar-nav > li > a {
color: #22a7f0;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color:#003171;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #003171;
background-color: #1F4788;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #003171;
background-color: #1F4788;
}
.navbar-default .navbar-toggle {
border-color: #1F4788;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #1F4788;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #22a7f0;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #22a7f0;
}
.navbar-default .navbar-link {
color: #22a7f0;
}
.navbar-default .navbar-link:hover {
color: #003171;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #22a7f0;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #003171;
}
.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: #003171;
background-color: #1F4788;
}
} | css/blogstyle.css | html,
body {
height: 100%;
width: 100%;
font-family: Montserrat;
}
#content {
background-color: #fff;
}
.post {
padding-top: 10em;
margin: auto;
width:100%;
}
.post-content {
width: 90%;
max-width: 800px;
margin: auto;
text-align: justify;
line-height: 220%;
font-size:160%;
}
.post-title {
font-weight: 1000;
text-align: center;
padding-top: 1.5em;
padding-bottom: 2em;
font-size: 3.0em;
text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.3);
}
.img-header {
position: relative;
padding: 20px;
height: 80%;
width: 100%;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
background-position: center center
}
#footer {
position: absolute;
text-align: center;
vertical-align: middle;
height: 30%;
width: 100%;
background-color:#F5F5F5;
}
.footer-icon{
opacity: 0.65;
-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;
}
#footer img {
height: 90%;
width: 80%;
-webkit-filter: drop-shadow(2px 15px 2px gray); /* Chrome, Safari, Opera */
filter: drop-shadow(2px 15px 2px gray);
}
.footer-icon:hover {
opacity: 1;
-webkit-transform:scale(1.2, 1.2);
-moz-transform:scale(1.2, 1.2);
-ms-transform:scale(1.2, 1.2);
-o-transform:scale(1.2, 1.2);
transform: scale(1.2);
}
#footer p {
z-index: 1;
}
.navbar {
width:100%;
padding:1.4em;
position: fixed;
z-index: 9999;
}
.navbar-default {
background-color: #ffffff;
}
.navbar-default .navbar-brand {
color: #22a7f0;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #003171;
}
.navbar-default .navbar-text {
color: #22a7f0;
}
.navbar-default .navbar-nav > li > a {
color: #22a7f0;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color:#003171;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #003171;
background-color: #1F4788;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #003171;
background-color: #1F4788;
}
.navbar-default .navbar-toggle {
border-color: #1F4788;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #1F4788;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #22a7f0;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #22a7f0;
}
.navbar-default .navbar-link {
color: #22a7f0;
}
.navbar-default .navbar-link:hover {
color: #003171;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #22a7f0;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #003171;
}
.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: #003171;
background-color: #1F4788;
}
} | 0.356223 | 0.063337 |
body {
margin: 0px;
}
#background {
/* backgrounds collection */
background-color: black;
background-image: url("https://source.unsplash.com/collection/3351493/1600x900/daily");
background-size: cover;
background-position: center center;
position: static;
top: 0;
bottom: 0;
height: 100vh;
z-index: -10;
}
#background-overlay {
position: absolute;
background-color: rgba(0, 0, 0, 0.5);
top: 0;
bottom: 0;
height: 100%;
width: 100%;
z-index: -5;
}
.top_row {
position: absolute;
top: 0;
height: 10%;
width: 100%;
}
/* Todo List */
#todo {
display: inline-block;
color: #ffffff;
position: absolute;
font-family: "Ubuntu", sans-serif;
top: 5px;
right: 10px;
width: 15em;
}
h2 {
text-align: center;
font-family: "<NAME>", sans-serif;
}
#myInput {
background: transparent;
border: 0px solid #ffffff;
color: #ffffffef;
border-bottom-width: 2px;
width: 11.8em;
outline: none;
font-size: 15px;
font-weight: bold;
}
#list {
margin: 0;
padding: 0;
font-size: 15px;
font-weight: bold;
}
#list li {
padding: 2px 2px 2px 15px;
cursor: pointer;
position: relative;
list-style: none;
/* make the list items unselectable */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#list li::before {
content: "\26AC";
position: absolute;
top: 2px;
left: 2px;
bottom: 1pm;
height: 12px;
width: 7px;
}
#list li:hover {
text-decoration: line-through;
}
#list li.checked {
text-decoration: line-through;
color: #0fb10a;
}
#list li.checked::before {
/* check mark */
content: "\2713";
position: absolute;
top: 2px;
left: 2px;
bottom: 1pm;
height: 12px;
width: 7px;
}
.close {
position: absolute;
right: 0;
top: 0;
padding: 0px 3px 0px 3px;
}
.close:hover {
border-width: 1px;
border-style: solid;
border-color: white;
}
/* Clock And Date */
.center_main {
position: fixed;
top: 50%;
height: 25%;
width: 100%;
text-align: center;
}
#clock {
color: #ffffff;
display: inline-block;
font-size: 13em;
font-family: "Do Hyeon", sans-serif;
letter-spacing: 2px;
}
#date {
color: #ffffff;
display: inline-table;
top: 0;
font-size: 3em;
font-family: "Do Hyeon", sans-serif;
}
#credit {
position: absolute;
color: #ffffff;
font-size: 14px;
font-family: "Do Hyeon", sans-serif;
display: inline-block;
left: 13px;
bottom: 0.5px;
}
#credit a {
color: #ffffff;
} | styles.css | body {
margin: 0px;
}
#background {
/* backgrounds collection */
background-color: black;
background-image: url("https://source.unsplash.com/collection/3351493/1600x900/daily");
background-size: cover;
background-position: center center;
position: static;
top: 0;
bottom: 0;
height: 100vh;
z-index: -10;
}
#background-overlay {
position: absolute;
background-color: rgba(0, 0, 0, 0.5);
top: 0;
bottom: 0;
height: 100%;
width: 100%;
z-index: -5;
}
.top_row {
position: absolute;
top: 0;
height: 10%;
width: 100%;
}
/* Todo List */
#todo {
display: inline-block;
color: #ffffff;
position: absolute;
font-family: "Ubuntu", sans-serif;
top: 5px;
right: 10px;
width: 15em;
}
h2 {
text-align: center;
font-family: "<NAME>", sans-serif;
}
#myInput {
background: transparent;
border: 0px solid #ffffff;
color: #ffffffef;
border-bottom-width: 2px;
width: 11.8em;
outline: none;
font-size: 15px;
font-weight: bold;
}
#list {
margin: 0;
padding: 0;
font-size: 15px;
font-weight: bold;
}
#list li {
padding: 2px 2px 2px 15px;
cursor: pointer;
position: relative;
list-style: none;
/* make the list items unselectable */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#list li::before {
content: "\26AC";
position: absolute;
top: 2px;
left: 2px;
bottom: 1pm;
height: 12px;
width: 7px;
}
#list li:hover {
text-decoration: line-through;
}
#list li.checked {
text-decoration: line-through;
color: #0fb10a;
}
#list li.checked::before {
/* check mark */
content: "\2713";
position: absolute;
top: 2px;
left: 2px;
bottom: 1pm;
height: 12px;
width: 7px;
}
.close {
position: absolute;
right: 0;
top: 0;
padding: 0px 3px 0px 3px;
}
.close:hover {
border-width: 1px;
border-style: solid;
border-color: white;
}
/* Clock And Date */
.center_main {
position: fixed;
top: 50%;
height: 25%;
width: 100%;
text-align: center;
}
#clock {
color: #ffffff;
display: inline-block;
font-size: 13em;
font-family: "Do Hyeon", sans-serif;
letter-spacing: 2px;
}
#date {
color: #ffffff;
display: inline-table;
top: 0;
font-size: 3em;
font-family: "Do Hyeon", sans-serif;
}
#credit {
position: absolute;
color: #ffffff;
font-size: 14px;
font-family: "Do Hyeon", sans-serif;
display: inline-block;
left: 13px;
bottom: 0.5px;
}
#credit a {
color: #ffffff;
} | 0.350088 | 0.072472 |
.pc .soria .dijitInputContainer input {
margin: 0 0.1em;
}
.pc .soria .dijitSelect .dijitButtonContents,
.pc .soria .dijitSelect,
.pc .soria .dijitTextBox,
.pc .soria .dijitTextArea {
background:#fff url("../images/validationInputBg.png") repeat-x top left;
#background:#fff url('../images/validationInputBg.gif') repeat-x top left;
}
.pc .soria .dijitSelect,
.pc .soria .dijitTextBox,
.pc .soria .dijitTextArea {
border:1px solid #8ba0bd;
}
.pc .soria .dijitSelect .dijitArrowButton,
.pc .soria .dijitComboBox .dijitButtonNode {
padding: 0 0.2em;
}
.pc .soria .dijitSelect .dijitButtonContents,
.pc .soria .dijitTextBox .dijitButtonNode {
border-color: #8ba0bd;
}
.pc .soria .dijitSelectFocused,
.pc .soria .dijitTextBoxFocused,
.pc .soria .dijitTextAreaFocused {
border-color:#406b9b;
}
.pc .soria .dijitSelectFocused TD,
.pc .soria .dijitTextBoxFocused .dijitButtonNode,
.pc .soria .dijitSpinner .dijitUpArrowButtonActive,
.pc .soria .dijitSpinner .dijitDownArrowButtonActive {
border-color:#8ba0bd;
}
.pc .soria .dijitSpinnerFocused .dijitDownArrowButton,
.pc .soria .dijitSpinner .dijitUpArrowButtonActive,
.pc .soria .dijitSpinner .dijitDownArrowButtonActive {
border-top-color:#8ba0bd;
}
.pc .soria .dijitError {
border-color:#f3d118;
background-color:#f9f7ba;
background-image:none;
}
.pc .soria .dijitErrorFocused {
background-color:#ff6;
background-image:none;
}
.pc .soria .dijitValidationTextBoxError .dijitValidationIcon {
width: 16px;
background: transparent url('../images/warning.png') no-repeat center center;
}
.pc .soria .dijitComboBoxHighlightMatch {
background-color:#f9f7ba;
}
/* dojox.mobile.TextBox */
.mobile .soria .dijitTextBox {
height: 22px;
border-width: 1px;
border-style: inset;
font-family: Helvetica;
font-size: 13px;
border-color: #9cacc0;
border-radius: 5px;
}
/* dojox.mobile.TextArea */
.mobile .soria .dijitTextArea {
padding: 4px 1px;
border-width: 1px;
border-style: inset;
font-family: Helvetica;
font-size: 13px;
border-color: #9cacc0;
border-radius: 5px;
}
/* dojox.mobile.ExpandingTextArea */
.mblExpandingTextArea {
margin: 2px;
} | .history/history-qface1-201304/src/qface/resources/themes/soria/dijit/form/Common.css | .pc .soria .dijitInputContainer input {
margin: 0 0.1em;
}
.pc .soria .dijitSelect .dijitButtonContents,
.pc .soria .dijitSelect,
.pc .soria .dijitTextBox,
.pc .soria .dijitTextArea {
background:#fff url("../images/validationInputBg.png") repeat-x top left;
#background:#fff url('../images/validationInputBg.gif') repeat-x top left;
}
.pc .soria .dijitSelect,
.pc .soria .dijitTextBox,
.pc .soria .dijitTextArea {
border:1px solid #8ba0bd;
}
.pc .soria .dijitSelect .dijitArrowButton,
.pc .soria .dijitComboBox .dijitButtonNode {
padding: 0 0.2em;
}
.pc .soria .dijitSelect .dijitButtonContents,
.pc .soria .dijitTextBox .dijitButtonNode {
border-color: #8ba0bd;
}
.pc .soria .dijitSelectFocused,
.pc .soria .dijitTextBoxFocused,
.pc .soria .dijitTextAreaFocused {
border-color:#406b9b;
}
.pc .soria .dijitSelectFocused TD,
.pc .soria .dijitTextBoxFocused .dijitButtonNode,
.pc .soria .dijitSpinner .dijitUpArrowButtonActive,
.pc .soria .dijitSpinner .dijitDownArrowButtonActive {
border-color:#8ba0bd;
}
.pc .soria .dijitSpinnerFocused .dijitDownArrowButton,
.pc .soria .dijitSpinner .dijitUpArrowButtonActive,
.pc .soria .dijitSpinner .dijitDownArrowButtonActive {
border-top-color:#8ba0bd;
}
.pc .soria .dijitError {
border-color:#f3d118;
background-color:#f9f7ba;
background-image:none;
}
.pc .soria .dijitErrorFocused {
background-color:#ff6;
background-image:none;
}
.pc .soria .dijitValidationTextBoxError .dijitValidationIcon {
width: 16px;
background: transparent url('../images/warning.png') no-repeat center center;
}
.pc .soria .dijitComboBoxHighlightMatch {
background-color:#f9f7ba;
}
/* dojox.mobile.TextBox */
.mobile .soria .dijitTextBox {
height: 22px;
border-width: 1px;
border-style: inset;
font-family: Helvetica;
font-size: 13px;
border-color: #9cacc0;
border-radius: 5px;
}
/* dojox.mobile.TextArea */
.mobile .soria .dijitTextArea {
padding: 4px 1px;
border-width: 1px;
border-style: inset;
font-family: Helvetica;
font-size: 13px;
border-color: #9cacc0;
border-radius: 5px;
}
/* dojox.mobile.ExpandingTextArea */
.mblExpandingTextArea {
margin: 2px;
} | 0.298287 | 0.129513 |
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html {
color: #222;
font-size: 1em;
line-height: 1.4;
}
/*
* 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;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
* {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
letter-spacing: 2px;
box-sizing: border-box;
}
.page-container {
max-width: 1259px;
margin: 0 auto;
}
/* ==========================================================================
Menu's styles
========================================================================== */
/* menu's styles*/
.header {
position: fixed;
width: 100%;
height: 90px;
border: none;
margin: 0 auto;
z-index: 20;
}
.sub-header {
position: relative;
width: 100%;
height: 90px;
margin: 0 auto;
transition: 0.5s;
}
.sub-header.active {
width: 100%;
float: left;
height: 70px;
margin: 0 auto;
background: linear-gradient(70deg, rgba(0, 34, 64, 1), silver);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* the company logo of menu*/
#companylogo img {
width: 200px;
height: 90px;
left: 10%;
position: absolute;
transition: 0.5s;
}
.sub-header.active #companylogo img {
width: 180px;
height: 70px;
transition: 0.5s;
transform: translateX(-5%);
}
ul.menu li {
list-style: none;
min-width: 100px;
font-size: 16px;
float: left;
text-align: center;
height: 30px;
line-height: 30px;
transition: 0.5s;
}
.sub-header.active li {
font-size: 14px;
height: 20px;
line-height: 20px;
}
.sub-header ul.menu li a {
text-decoration: none;
color: #fff;
font-size: 18px;
letter-spacing: 0px;
text-transform: uppercase;
transition: 0.5s;
display: block;
}
#menucontent {
margin-left: 40%;
}
#menucontent li {
margin-top: 56px;
margin-right: 40px;
}
.sub-header.active #menucontent li {
margin-top: 46px;
}
#menucontent li a:hover {
color: rgb(225, 39, 43);
border-bottom-color: rgb(225, 39, 43);
border-bottom-style: solid;
border-bottom-width: 4px;
}
#companylogo a:hover {
border-bottom-style: none;
}
.menu li a.active {
color: rgb(225, 39, 43);
border-bottom-color: rgb(225, 39, 43);
border-bottom-style: solid;
border-bottom-width: 4px;
}
/* this will show up when window size less than 600 */
#menuiconid {
display: none;
}
.sub-header.active .dropdown-content {
top: 70px;
}
.dropdown-parent {
/*position: relative;*/
display: inline-block;
}
.dropdown-content {
visibility: hidden;
opacity: 0;
position: absolute;
top: 90px;
z-index: 20;
-moz-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
-ms-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
-webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
background-color: rgba(91, 97, 106, 0.9);
width: 100%;
height: 200px;
left: 0;
}
.dropdown-parent:focus .dropdown-content,
.dropdown-parent:focus-within .dropdown-content,
.dropdown-parent:hover .dropdown-content {
visibility: visible; /* shows sub-menu */
opacity: 1;
z-index: 1;
-webkit-transform: translateY(0%);
-ms-transform: translateY(0%);
transform: translateY(0%);
transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}
.dropdown-content li:not(:first-child) {
float: left;
}
.dropdown-content-rightside {
margin-left: 40%;
}
.dropdown-content-header {
font-size: 35px;
letter-spacing: 1px;
line-height: 1.8;
margin-top: 5%;
margin-left: 50px;
text-align: center;
color: white;
}
.dropdown-content-header2 {
table-layout: fixed;
width: 400px;
font-size: 35px;
letter-spacing: 1px;
line-height: 1.8;
margin-top: -3%;
text-align: center;
color: white;
}
.dropdown-content-header3 {
font-size: 35px;
letter-spacing: 1px;
line-height: 1.8;
margin-top: 5%;
margin-left: 80px;
text-align: center;
color: white;
}
.split-line {
position: absolute;
width: 1px;
background-color: white;
height: 150px;
top: 25px;
left: 33%;
}
#menucontent > li.dropdown-parent > .dropdown-content > .dropdown-content-rightside > li a {
font-size: 15px;
}
#menucontent > li.dropdown-parent > .dropdown-content > .dropdown-content-rightside > li a:hover {
color: rgb(225, 39, 43);
border-bottom-style: none;
border-bottom-width: 0;
}
@media screen and (max-width: 965px) {
.sub-header {
margin: 0;
padding: 0;
}
.sub-header ul {
width: 100%;
height: 0;
overflow: hidden;
background: linear-gradient(70deg, rgba(0, 34, 64, 1), silver);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sub-header ul li {
list-style: none;
width: 100%;
font-size: 16px;
float: none;
display: block;
text-align: center;
height: 30px;
line-height: 30px;
transition: 0.5s;
}
#menucontent {
margin-left: 0;
background-color: rgba(91, 97, 106, 0.9);
width: 100%;
}
#menucontent li:first-child {
margin: 70px 0 0 0;
}
.sub-header.active ul {
height: 0;
overflow: hidden;
transition: 0.5s;
}
.sub-header.active #menucontent li:first-child {
margin: 55px 0 0 0;
}
.sub-header.active #menuiconid {
font-size: 35px;
}
.dropdown-content {
display: none;
}
#menuiconid {
position: fixed;
display: inline-block;
color: white;
font-size: 40px;
cursor: pointer;
margin-top: 5px;
margin-left: 65%;
width: 40px;
height: 50px;
padding: 15px 0;
}
#companylogo {
width: 100px;
}
#menucontent > li.dropdown-parent a:hover {
border-bottom-style: none;
border-bottom-width: 0;
color: red;
}
}
/* ==========================================================================
footer' styles
========================================================================== */
/*back top button*/
#upiconid {
width: 50px;
height: 50px;
cursor: pointer;
}
#upiconid:hover {
opacity: 0.7;
}
.footer-header {
display: block;
background-color: rgb(220, 220, 220);
height: 50px;
}
.footer-header h3 a {
float: right;
margin-top: 10px;
margin-right: 35px;
text-decoration: none;
color: black;
}
.footer-header h3 a:hover {
color: rgb(225, 39, 43);
}
.footer-content {
display: block;
background-color: rgb(169, 169, 169);
}
.footer-content img {
margin-top: 30px;
margin-left: 3%;
width: 200px;
height: 90px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.footer-content h2 {
margin-top: 10px;
margin-left: 3%;
color: white;
}
.footer-content h5 {
margin-top: 15px;
text-align: center;
}
@media only screen and (max-width: 440px) {
.footer-header {
height: 80px;
}
.footer-header h3 a {
margin-right: 0;
margin-left: 10%;
}
}
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/
.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
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap; /* 1 */
}
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
white-space: inherit;
}
/*
* 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: " "; /* 1 */
display: table; /* 2 */
}
.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: transparent !important;
color: #000 !important; /* Black prints faster */
-webkit-box-shadow: none !important;
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:
* 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;
}
} | css/main.css | /* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html {
color: #222;
font-size: 1em;
line-height: 1.4;
}
/*
* 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;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
* {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
letter-spacing: 2px;
box-sizing: border-box;
}
.page-container {
max-width: 1259px;
margin: 0 auto;
}
/* ==========================================================================
Menu's styles
========================================================================== */
/* menu's styles*/
.header {
position: fixed;
width: 100%;
height: 90px;
border: none;
margin: 0 auto;
z-index: 20;
}
.sub-header {
position: relative;
width: 100%;
height: 90px;
margin: 0 auto;
transition: 0.5s;
}
.sub-header.active {
width: 100%;
float: left;
height: 70px;
margin: 0 auto;
background: linear-gradient(70deg, rgba(0, 34, 64, 1), silver);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* the company logo of menu*/
#companylogo img {
width: 200px;
height: 90px;
left: 10%;
position: absolute;
transition: 0.5s;
}
.sub-header.active #companylogo img {
width: 180px;
height: 70px;
transition: 0.5s;
transform: translateX(-5%);
}
ul.menu li {
list-style: none;
min-width: 100px;
font-size: 16px;
float: left;
text-align: center;
height: 30px;
line-height: 30px;
transition: 0.5s;
}
.sub-header.active li {
font-size: 14px;
height: 20px;
line-height: 20px;
}
.sub-header ul.menu li a {
text-decoration: none;
color: #fff;
font-size: 18px;
letter-spacing: 0px;
text-transform: uppercase;
transition: 0.5s;
display: block;
}
#menucontent {
margin-left: 40%;
}
#menucontent li {
margin-top: 56px;
margin-right: 40px;
}
.sub-header.active #menucontent li {
margin-top: 46px;
}
#menucontent li a:hover {
color: rgb(225, 39, 43);
border-bottom-color: rgb(225, 39, 43);
border-bottom-style: solid;
border-bottom-width: 4px;
}
#companylogo a:hover {
border-bottom-style: none;
}
.menu li a.active {
color: rgb(225, 39, 43);
border-bottom-color: rgb(225, 39, 43);
border-bottom-style: solid;
border-bottom-width: 4px;
}
/* this will show up when window size less than 600 */
#menuiconid {
display: none;
}
.sub-header.active .dropdown-content {
top: 70px;
}
.dropdown-parent {
/*position: relative;*/
display: inline-block;
}
.dropdown-content {
visibility: hidden;
opacity: 0;
position: absolute;
top: 90px;
z-index: 20;
-moz-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
-ms-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
-webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
background-color: rgba(91, 97, 106, 0.9);
width: 100%;
height: 200px;
left: 0;
}
.dropdown-parent:focus .dropdown-content,
.dropdown-parent:focus-within .dropdown-content,
.dropdown-parent:hover .dropdown-content {
visibility: visible; /* shows sub-menu */
opacity: 1;
z-index: 1;
-webkit-transform: translateY(0%);
-ms-transform: translateY(0%);
transform: translateY(0%);
transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}
.dropdown-content li:not(:first-child) {
float: left;
}
.dropdown-content-rightside {
margin-left: 40%;
}
.dropdown-content-header {
font-size: 35px;
letter-spacing: 1px;
line-height: 1.8;
margin-top: 5%;
margin-left: 50px;
text-align: center;
color: white;
}
.dropdown-content-header2 {
table-layout: fixed;
width: 400px;
font-size: 35px;
letter-spacing: 1px;
line-height: 1.8;
margin-top: -3%;
text-align: center;
color: white;
}
.dropdown-content-header3 {
font-size: 35px;
letter-spacing: 1px;
line-height: 1.8;
margin-top: 5%;
margin-left: 80px;
text-align: center;
color: white;
}
.split-line {
position: absolute;
width: 1px;
background-color: white;
height: 150px;
top: 25px;
left: 33%;
}
#menucontent > li.dropdown-parent > .dropdown-content > .dropdown-content-rightside > li a {
font-size: 15px;
}
#menucontent > li.dropdown-parent > .dropdown-content > .dropdown-content-rightside > li a:hover {
color: rgb(225, 39, 43);
border-bottom-style: none;
border-bottom-width: 0;
}
@media screen and (max-width: 965px) {
.sub-header {
margin: 0;
padding: 0;
}
.sub-header ul {
width: 100%;
height: 0;
overflow: hidden;
background: linear-gradient(70deg, rgba(0, 34, 64, 1), silver);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sub-header ul li {
list-style: none;
width: 100%;
font-size: 16px;
float: none;
display: block;
text-align: center;
height: 30px;
line-height: 30px;
transition: 0.5s;
}
#menucontent {
margin-left: 0;
background-color: rgba(91, 97, 106, 0.9);
width: 100%;
}
#menucontent li:first-child {
margin: 70px 0 0 0;
}
.sub-header.active ul {
height: 0;
overflow: hidden;
transition: 0.5s;
}
.sub-header.active #menucontent li:first-child {
margin: 55px 0 0 0;
}
.sub-header.active #menuiconid {
font-size: 35px;
}
.dropdown-content {
display: none;
}
#menuiconid {
position: fixed;
display: inline-block;
color: white;
font-size: 40px;
cursor: pointer;
margin-top: 5px;
margin-left: 65%;
width: 40px;
height: 50px;
padding: 15px 0;
}
#companylogo {
width: 100px;
}
#menucontent > li.dropdown-parent a:hover {
border-bottom-style: none;
border-bottom-width: 0;
color: red;
}
}
/* ==========================================================================
footer' styles
========================================================================== */
/*back top button*/
#upiconid {
width: 50px;
height: 50px;
cursor: pointer;
}
#upiconid:hover {
opacity: 0.7;
}
.footer-header {
display: block;
background-color: rgb(220, 220, 220);
height: 50px;
}
.footer-header h3 a {
float: right;
margin-top: 10px;
margin-right: 35px;
text-decoration: none;
color: black;
}
.footer-header h3 a:hover {
color: rgb(225, 39, 43);
}
.footer-content {
display: block;
background-color: rgb(169, 169, 169);
}
.footer-content img {
margin-top: 30px;
margin-left: 3%;
width: 200px;
height: 90px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.footer-content h2 {
margin-top: 10px;
margin-left: 3%;
color: white;
}
.footer-content h5 {
margin-top: 15px;
text-align: center;
}
@media only screen and (max-width: 440px) {
.footer-header {
height: 80px;
}
.footer-header h3 a {
margin-right: 0;
margin-left: 10%;
}
}
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/
.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
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap; /* 1 */
}
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
white-space: inherit;
}
/*
* 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: " "; /* 1 */
display: table; /* 2 */
}
.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: transparent !important;
color: #000 !important; /* Black prints faster */
-webkit-box-shadow: none !important;
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:
* 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;
}
} | 0.583678 | 0.077343 |
.App {
height: 100vh;
}
.home {
height: 100%;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* background: rgb(255,255,0);
background: linear-gradient(90deg, rgba(255,255,0,1) 0%, rgba(255,0,0,1) 100%); */
}
.menu {
position: absolute;
margin: 5px;
display: flex;
background-color: #fff;
z-index: 1;
}
.actions-btn-group,
.pickorder-btn-group {
margin: 5px;
}
.btn-fat {
border-width: 3px !important;
}
.info {
position: absolute;
bottom: 10px;
left: 10px;
width: 25px;
height: 25px;
}
.modal-backdrop {
background: rgba(0,0,0,0.25);
}
.field-container {
display: flex;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
}
.field {
width: 70vh;
height: 70vh;
justify-content: center;
align-items: center;
/* border: 2px solid black;
box-sizing: border-box; */
}
.row {
margin: 0 !important;
/* height: 16.66%; */
}
.rows-6:nth-child(odd) {
height: 15%;
}
.rows-6:nth-child(even) {
height: 18.33%;
}
.col {
/* background-color: red;
border: 1px solid black;
box-sizing: border-box; */
padding: 0 !important;
height: 100%;
}
.img-container {
text-align: center;
}
.img-container > img {
width: auto;
height: 90%;
margin-top: 5%;
}
/* .box-container {} */
.box {
margin: auto;
width: 80%;
height: 100%;
box-sizing: border-box;
border: 2px solid #555;
border-radius: 10px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
font-size: 3rem;
}
.box-disabled {
background-color: #fff;
cursor: default;
}
.box-pickable {
background-color: #e7e7e7;
cursor: pointer;
}
.box-picked {
background-color: #aaa;
cursor: pointer;
}
.red-apple {
background-image: url('./assets/images/red_apple.png');
background-color: #fff;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.yellow-apple {
background-image: url('./assets/images/yellow_apple.png');
background-color: #fff;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
} | src/App.css | .App {
height: 100vh;
}
.home {
height: 100%;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* background: rgb(255,255,0);
background: linear-gradient(90deg, rgba(255,255,0,1) 0%, rgba(255,0,0,1) 100%); */
}
.menu {
position: absolute;
margin: 5px;
display: flex;
background-color: #fff;
z-index: 1;
}
.actions-btn-group,
.pickorder-btn-group {
margin: 5px;
}
.btn-fat {
border-width: 3px !important;
}
.info {
position: absolute;
bottom: 10px;
left: 10px;
width: 25px;
height: 25px;
}
.modal-backdrop {
background: rgba(0,0,0,0.25);
}
.field-container {
display: flex;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
}
.field {
width: 70vh;
height: 70vh;
justify-content: center;
align-items: center;
/* border: 2px solid black;
box-sizing: border-box; */
}
.row {
margin: 0 !important;
/* height: 16.66%; */
}
.rows-6:nth-child(odd) {
height: 15%;
}
.rows-6:nth-child(even) {
height: 18.33%;
}
.col {
/* background-color: red;
border: 1px solid black;
box-sizing: border-box; */
padding: 0 !important;
height: 100%;
}
.img-container {
text-align: center;
}
.img-container > img {
width: auto;
height: 90%;
margin-top: 5%;
}
/* .box-container {} */
.box {
margin: auto;
width: 80%;
height: 100%;
box-sizing: border-box;
border: 2px solid #555;
border-radius: 10px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
font-size: 3rem;
}
.box-disabled {
background-color: #fff;
cursor: default;
}
.box-pickable {
background-color: #e7e7e7;
cursor: pointer;
}
.box-picked {
background-color: #aaa;
cursor: pointer;
}
.red-apple {
background-image: url('./assets/images/red_apple.png');
background-color: #fff;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.yellow-apple {
background-image: url('./assets/images/yellow_apple.png');
background-color: #fff;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
} | 0.40251 | 0.060863 |
header .header-head{
position:fixed;
top: 0;
width: auto;
z-index: 10;
float:right;
}
header .header-top{
background:#ffffff none repeat scroll 0 0;
box-sizing:border-box;
height:110px;
position:relative;
width:100%;
}
header .header-top-inner{
height:100%;
margin:0 auto;
max-width:100%;
}
header .header-top-inner-left{
float:left;
height:100%;
width:330px;
}
header .name-company{
color: black;
font-size: 50px;
margin: 0 8px;
vertical-align: middle;
position:absolute;
left:100px;
top:20px;
}
header .header-top-inner-right{
float:right;
height:100%;
min-width:550px;
position:relative;
width:330px;
}
header .header-nav{
background:#337ab7 none repeat scroll 0 0;
font-family: "Proxima Nova Condensed";
font-weight:600;
height:50px;
width:100%;
}
header .header-nav-inner{
display: flex;
height: 50px;
margin: 0 auto;
max-height: 50px;
transition: height 0.15s ease-in-out 0s;
}
header .header-nav-inner ul{
display:table-caption;
margin:0;
padding:0;
width:100%;
}
header .header-nav-inner ul li.nav-button{
/*border-left: 1px solid #dddddd;*/
box-shadow: -1px 0 0 0 #ffffff;
color: #ffffff;
background:#337ab7;
display: table-cell;
font-size: 18px;
font-weight: 750;
letter-spacing: 0.5px;
padding: 0 30px;
position: relative;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
}
.nav-button > a{
color:#ffffff;
display:inline-block;
height:50px;
line-height:50px;
white-space: nowrap;
width:100%;
}
.nav-button > a:hover{
color:#ffffff;
text-decoration:none;
cursor:pointer;
filter:alpha(opacity=50);
opacity:.8;
}
#btn-login{
background-color: #337ab7; /* Green */
border: none;
cursor: pointer;
display: table-cell;
float:center;
font-size: 20px;
font-weight: 700;
letter-spacing: 0.5px;
padding: 0 15px;
position: relative;
text-transform: uppercase;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: top;
}
#btn-login > a{
float:center;
color:#ffffff;
display:table-cell;
height:50px;
line-height:50px;
white-space: nowrap;
width:100%;
text-align: center;
}
#btn-login:hover{
color:#ffffff;
text-decoration:none;
cursor:pointer;
filter:alpha(opacity=50);
opacity:.8;
size:5px 75px;
} | web/cssMainPage/styleHeader.css | header .header-head{
position:fixed;
top: 0;
width: auto;
z-index: 10;
float:right;
}
header .header-top{
background:#ffffff none repeat scroll 0 0;
box-sizing:border-box;
height:110px;
position:relative;
width:100%;
}
header .header-top-inner{
height:100%;
margin:0 auto;
max-width:100%;
}
header .header-top-inner-left{
float:left;
height:100%;
width:330px;
}
header .name-company{
color: black;
font-size: 50px;
margin: 0 8px;
vertical-align: middle;
position:absolute;
left:100px;
top:20px;
}
header .header-top-inner-right{
float:right;
height:100%;
min-width:550px;
position:relative;
width:330px;
}
header .header-nav{
background:#337ab7 none repeat scroll 0 0;
font-family: "Proxima Nova Condensed";
font-weight:600;
height:50px;
width:100%;
}
header .header-nav-inner{
display: flex;
height: 50px;
margin: 0 auto;
max-height: 50px;
transition: height 0.15s ease-in-out 0s;
}
header .header-nav-inner ul{
display:table-caption;
margin:0;
padding:0;
width:100%;
}
header .header-nav-inner ul li.nav-button{
/*border-left: 1px solid #dddddd;*/
box-shadow: -1px 0 0 0 #ffffff;
color: #ffffff;
background:#337ab7;
display: table-cell;
font-size: 18px;
font-weight: 750;
letter-spacing: 0.5px;
padding: 0 30px;
position: relative;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
}
.nav-button > a{
color:#ffffff;
display:inline-block;
height:50px;
line-height:50px;
white-space: nowrap;
width:100%;
}
.nav-button > a:hover{
color:#ffffff;
text-decoration:none;
cursor:pointer;
filter:alpha(opacity=50);
opacity:.8;
}
#btn-login{
background-color: #337ab7; /* Green */
border: none;
cursor: pointer;
display: table-cell;
float:center;
font-size: 20px;
font-weight: 700;
letter-spacing: 0.5px;
padding: 0 15px;
position: relative;
text-transform: uppercase;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: top;
}
#btn-login > a{
float:center;
color:#ffffff;
display:table-cell;
height:50px;
line-height:50px;
white-space: nowrap;
width:100%;
text-align: center;
}
#btn-login:hover{
color:#ffffff;
text-decoration:none;
cursor:pointer;
filter:alpha(opacity=50);
opacity:.8;
size:5px 75px;
} | 0.300746 | 0.049935 |
html, body {
position: fixed;
}
body, body * {
margin: 0;
border: none;
padding: 0;
outline: none;
}
body {
width: 100%;
height: 100%;
}
.bg-r {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow-y: scroll;
}
.bg-r::-webkit-scrollbar {
width: 15px;
background: #020202;
}
.bg-r::-webkit-scrollbar-track {
background: #212121;
border-radius: 8px;
}
.bg-r::-webkit-scrollbar-thumb {
background: #2d2d2d;
border-radius: 8px;
}
.bg-r .bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
background-color: #020202;
background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, #0a0a0a 10px, #0a0a0a 12px), repeating-linear-gradient(45deg, transparent, transparent 10px, #0a0a0a 10px, #0a0a0a 12px);
}
.bg-r .bg .wr {
position: absolute;
top: 20px;
left: 50px;
right: 50px;
height: calc(100% - 40px);
background: #0c0c0c;
border-radius: 30px;
border: solid 10px #0f0f0f;
overflow: hidden;
}
.bg-r .bg .wr .top {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: #1e1e1e;
border-bottom: solid 10px #0f0f0f;
}
.bg-r .bg .wr .top .icon {
position: absolute;
top: 0;
left: 15px;
width: 100px;
height: 100px;
user-select: none;
}
.bg-r .bg .wr .top .icon .icon-i {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
display: inline-block;
line-height: 100px;
vertical-align: middle;
font-size: 100px;
color: #9cdcf5;
text-shadow: 0 0 9px #1889e6, 0 0 9px #1889e6, 0 0 9px #1889e6;
}
.bg-r .bg .wr .top .icon .icon-i:hover{
cursor: pointer;
}
.bg-r .bg .wr .top .title {
position: absolute;
top: 0;
left: 50%;
height: 100%;
transform: translate(-50%,0);
font-family: Turret Road, sans-serif;
font-weight: 700;
font-size: 70px;
text-align: left;
line-height: 100px;
user-select: none;
}
.bg-r .bg .wr .top .title .c {
color: #bbf49e;
text-shadow: 0 0 8px #5be113, 0 0 8px #5be113, 0 0 8px #5be113;
transition: color 0.1s, text-shadow 0.1s;
}
.bg-r .bg .wr .top .title .c:hover {
color: #869380;
text-shadow: 0 0 2px #283620, 0 0 2px #283620, 0 0 2px #283620;
transition: color 0.1s, text-shadow 0.1s;
}
.bg-r .bg .wr .top .account {
position: absolute;
top: 0;
right: 15px;
width: 100px;
height: 100px;
user-select: none;
}
.bg-r .bg .wr .top .account .account-i {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
line-height: 100px;
vertical-align: middle;
font-size: 90px;
color: #edc94a;
text-shadow: 0 0 9px #e8bc16, 0 0 9px #e8bc16, 0 0 9px #e8bc16;
display: initial;
cursor: pointer;
}
.bg-r .bg .wr .code {
position: absolute;
top: 110px;
left: 0;
width: calc(50% - 5px);
height: calc(100% - 110px);
border-right: solid 10px #0f0f0f;
}
.bg-r .bg .wr .code .code-e {
min-width: calc(100% - 20px);
height: calc(100% - 20px);
padding: 10px;
resize: none;
font-family: Ubuntu Mono;
font-size: 20px;
overflow-x: scroll;
white-space: nowrap;
background: #020202;
color: #d9d9d9;
}
.bg-r .bg .wr .code .code-e::-webkit-scrollbar {
width: 15px;
background: #020202;
cursor: pointer;
}
.bg-r .bg .wr .code .code-e::-webkit-scrollbar-track {
background: #212121;
border-radius: 8px;
}
.bg-r .bg .wr .code .code-e::-webkit-scrollbar-thumb {
background: #2d2d2d;
border-radius: 8px;
}
.bg-r .bg .wr .code .code-e::selection {
background: #303030;
color: #2fcf8e;
}
.bg-r .bg .wr .preview {
position: absolute;
top: 110px;
right: 10px;
width: calc(50% - 25px);
min-height: calc(100% - 110px);
overflow: hidden;
}
.bg-r .bg .wr .preview f-t {
position: relative;
width: 100%;
font-family: Turret Road, sans-serif;
font-weight: 400;
text-align: center;
line-height: 90px;
font-size: 70px;
color: #4837db;
display: block;
user-select: none;
}
.bg-r .bg .wr .preview f-d {
position: relative;
width: 100%;
font-family: Montserrat Alternates, sans-serif;
font-style: italic;
line-height: 22px;
font-size: 17px;
padding-bottom: 15px;
text-align: center;
color: #efefef;
display: block;
}
.bg-r .bg .wr .preview p {
padding-top: 14px;
font-family: Montserrat, sans-serif;
color: #f6f6f6;
}
.bg-r .bg .wr .preview p:first-child {
padding-top: 0;
}
.bg-r .bg .wr .preview p f-i {
font-style: italic;
display: inline;
}
.bg-r .bg .wr .preview p f-b {
font-weight: 600;
display: inline;
}
.bg-r .bg .wr .preview p f-c {
border-radius: 5px;
padding: 3px;
padding-top: 1px;
background: #383838;
color: #bababa;
font-family: Ubuntu Mono, sans-serif;
display: inline;
}
.bg-r .bg .wr .preview p img {
position: relative;
left: 50%;
transform: translate(-50%,0);
user-select: none;
}
.bg-r .bg .wr .preview f-d::selection, .bg-r .bg .wr .preview p::selection, .bg-r .bg .wr .preview p *::selection {
background: #303030;
color: #2fcf8e;
}
.bg-r .bg .wr .preview p f-c::selection {
background: #399c7173;
color: #fcfcfc;
}
.bg-r .bg .wr .preview .err {
position: absolute;
top: 30px;
left: 50%;
width: 100%;
transform: translate(-50%,0);
font-family: Nova Mono;
font-size: 40px;
text-align: center;
color: #ea4114;
user-select: none;
}
.bg-r .bg .wr .preview .err .ln {
padding-top: 10px;
font-size: 20px;
font-family: Ubuntu Mono;
color: #da8324;
}
.bg-r .bg .e-err {
position: absolute;
top: -32px;
left: 50%;
transform: translate(-50%,0);
height: 30px;
padding: 1px 7px 1px 7px;
background: #de3020;
color: #ededed;
font-family: Montserrat Alternates;
font-size: 20px;
text-align: center;
line-height: 30px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
user-select: none;
transition: top 0.25s;
white-space: nowrap;
}
.bg-r .bg .e-err.e {
top: 0;
transition: top 0.25s;
} | src/web/css/new.css | html, body {
position: fixed;
}
body, body * {
margin: 0;
border: none;
padding: 0;
outline: none;
}
body {
width: 100%;
height: 100%;
}
.bg-r {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow-y: scroll;
}
.bg-r::-webkit-scrollbar {
width: 15px;
background: #020202;
}
.bg-r::-webkit-scrollbar-track {
background: #212121;
border-radius: 8px;
}
.bg-r::-webkit-scrollbar-thumb {
background: #2d2d2d;
border-radius: 8px;
}
.bg-r .bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
background-color: #020202;
background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, #0a0a0a 10px, #0a0a0a 12px), repeating-linear-gradient(45deg, transparent, transparent 10px, #0a0a0a 10px, #0a0a0a 12px);
}
.bg-r .bg .wr {
position: absolute;
top: 20px;
left: 50px;
right: 50px;
height: calc(100% - 40px);
background: #0c0c0c;
border-radius: 30px;
border: solid 10px #0f0f0f;
overflow: hidden;
}
.bg-r .bg .wr .top {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: #1e1e1e;
border-bottom: solid 10px #0f0f0f;
}
.bg-r .bg .wr .top .icon {
position: absolute;
top: 0;
left: 15px;
width: 100px;
height: 100px;
user-select: none;
}
.bg-r .bg .wr .top .icon .icon-i {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
display: inline-block;
line-height: 100px;
vertical-align: middle;
font-size: 100px;
color: #9cdcf5;
text-shadow: 0 0 9px #1889e6, 0 0 9px #1889e6, 0 0 9px #1889e6;
}
.bg-r .bg .wr .top .icon .icon-i:hover{
cursor: pointer;
}
.bg-r .bg .wr .top .title {
position: absolute;
top: 0;
left: 50%;
height: 100%;
transform: translate(-50%,0);
font-family: Turret Road, sans-serif;
font-weight: 700;
font-size: 70px;
text-align: left;
line-height: 100px;
user-select: none;
}
.bg-r .bg .wr .top .title .c {
color: #bbf49e;
text-shadow: 0 0 8px #5be113, 0 0 8px #5be113, 0 0 8px #5be113;
transition: color 0.1s, text-shadow 0.1s;
}
.bg-r .bg .wr .top .title .c:hover {
color: #869380;
text-shadow: 0 0 2px #283620, 0 0 2px #283620, 0 0 2px #283620;
transition: color 0.1s, text-shadow 0.1s;
}
.bg-r .bg .wr .top .account {
position: absolute;
top: 0;
right: 15px;
width: 100px;
height: 100px;
user-select: none;
}
.bg-r .bg .wr .top .account .account-i {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
line-height: 100px;
vertical-align: middle;
font-size: 90px;
color: #edc94a;
text-shadow: 0 0 9px #e8bc16, 0 0 9px #e8bc16, 0 0 9px #e8bc16;
display: initial;
cursor: pointer;
}
.bg-r .bg .wr .code {
position: absolute;
top: 110px;
left: 0;
width: calc(50% - 5px);
height: calc(100% - 110px);
border-right: solid 10px #0f0f0f;
}
.bg-r .bg .wr .code .code-e {
min-width: calc(100% - 20px);
height: calc(100% - 20px);
padding: 10px;
resize: none;
font-family: Ubuntu Mono;
font-size: 20px;
overflow-x: scroll;
white-space: nowrap;
background: #020202;
color: #d9d9d9;
}
.bg-r .bg .wr .code .code-e::-webkit-scrollbar {
width: 15px;
background: #020202;
cursor: pointer;
}
.bg-r .bg .wr .code .code-e::-webkit-scrollbar-track {
background: #212121;
border-radius: 8px;
}
.bg-r .bg .wr .code .code-e::-webkit-scrollbar-thumb {
background: #2d2d2d;
border-radius: 8px;
}
.bg-r .bg .wr .code .code-e::selection {
background: #303030;
color: #2fcf8e;
}
.bg-r .bg .wr .preview {
position: absolute;
top: 110px;
right: 10px;
width: calc(50% - 25px);
min-height: calc(100% - 110px);
overflow: hidden;
}
.bg-r .bg .wr .preview f-t {
position: relative;
width: 100%;
font-family: Turret Road, sans-serif;
font-weight: 400;
text-align: center;
line-height: 90px;
font-size: 70px;
color: #4837db;
display: block;
user-select: none;
}
.bg-r .bg .wr .preview f-d {
position: relative;
width: 100%;
font-family: Montserrat Alternates, sans-serif;
font-style: italic;
line-height: 22px;
font-size: 17px;
padding-bottom: 15px;
text-align: center;
color: #efefef;
display: block;
}
.bg-r .bg .wr .preview p {
padding-top: 14px;
font-family: Montserrat, sans-serif;
color: #f6f6f6;
}
.bg-r .bg .wr .preview p:first-child {
padding-top: 0;
}
.bg-r .bg .wr .preview p f-i {
font-style: italic;
display: inline;
}
.bg-r .bg .wr .preview p f-b {
font-weight: 600;
display: inline;
}
.bg-r .bg .wr .preview p f-c {
border-radius: 5px;
padding: 3px;
padding-top: 1px;
background: #383838;
color: #bababa;
font-family: Ubuntu Mono, sans-serif;
display: inline;
}
.bg-r .bg .wr .preview p img {
position: relative;
left: 50%;
transform: translate(-50%,0);
user-select: none;
}
.bg-r .bg .wr .preview f-d::selection, .bg-r .bg .wr .preview p::selection, .bg-r .bg .wr .preview p *::selection {
background: #303030;
color: #2fcf8e;
}
.bg-r .bg .wr .preview p f-c::selection {
background: #399c7173;
color: #fcfcfc;
}
.bg-r .bg .wr .preview .err {
position: absolute;
top: 30px;
left: 50%;
width: 100%;
transform: translate(-50%,0);
font-family: Nova Mono;
font-size: 40px;
text-align: center;
color: #ea4114;
user-select: none;
}
.bg-r .bg .wr .preview .err .ln {
padding-top: 10px;
font-size: 20px;
font-family: Ubuntu Mono;
color: #da8324;
}
.bg-r .bg .e-err {
position: absolute;
top: -32px;
left: 50%;
transform: translate(-50%,0);
height: 30px;
padding: 1px 7px 1px 7px;
background: #de3020;
color: #ededed;
font-family: Montserrat Alternates;
font-size: 20px;
text-align: center;
line-height: 30px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
user-select: none;
transition: top 0.25s;
white-space: nowrap;
}
.bg-r .bg .e-err.e {
top: 0;
transition: top 0.25s;
} | 0.281307 | 0.043427 |
@media only screen and (min-width: 320px) and (max-width: 350px){
/***.container { width: 38em; } **/
label{ padding-top: 10px;font-size: 16px; }
.label-mob-width{ width: 27%; }
.input-mob-width{ width: 50%; }
#bodyData{ overflow-x: hidden; width: 38em;}
.logo-image{ height: 90px; width: 200px;}
.user-header{ margin-top: 11%; height: 40px;right: 5%;width: 34%;}
.user-image{ height:80px; width: 80px; position: absolute; left: -60px; top: -39px;}
.user-detail{ font-size: 14px; width:100%; padding: 7px 25px;margin-top: -14%;}
.save-button{ margin-left: 10px; }
.status-content-width{ width: 88%;}
.project-dropdown{ width: 100%; }
.picker-width{ width: 90%; z-index: 2;}
.dash-table{ max-width: 100%; }
#pendingtaskblock{ margin:0; }
/***.report-text{ width: 60%; }***/
.half-block-area{ min-width:100%; }
.open-menu{ position: absolute; right: 0; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.container{ position: relative; top: 50px; }
.static-header{ top: 5px; height: 100px;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size: 4.6vw;height: 10em; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
#date-leave{max-width: 72%;}
}
@media only screen and (min-width: 350px) and (max-width: 380px){
/***.container { width: 38em; } **/
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 37%; }
.input-mob-width{ width: 55%; }
#bodyData{ overflow-x: hidden;}
.logo-image{ height: 66px; width: 150px;}
.user-header{ margin-top: 5%; height: 40px;right: 1%;width: 40%;}
.user-image{ height:50px; width: 50px; }
.user-detail{ font-size: 10px; width:100%; padding: 6px 23px;}
.save-button{ margin-left: 10px; }
.status-content-width{ width: 97%;}
.project-dropdown{ width: 100%; margin-left: 0;}
.picker-width{ min-width: 90%; z-index: 2;}
/***.report-text{ width: 65%; }***/
.dash-table{ min-width: 100%; }
.half-block-area{ min-width:100%; }
.open-menu{ position: absolute; right: 0; }
.button-field{ width: 40%; margin: 10px; }
.BlockHeight{ float:left !important; width:100%; margin-bottom: 5em;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.container{ position: relative; top: 44px; }
.static-header{ top: 35px; height: 100px;}
.daily-picker{ margin-top:30px; }
.info-block{ height: 5em; }
.block-content{margin-bottom: 1em;}
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
.pagination{ max-width: 100%; font-size:2.6vw;height: 6em; }
.pagination .paginate_button.previous a{max-width:65px;padding-left: 10px;}
.pagination .paginate_button.next a{max-width:45px;padding-left: 10px;}
.pagination .paginate_button a{max-width:35px; padding-left: 6px;}
#date-leave{max-width: 75%;}
}
@media only screen and (min-width: 380px) and (max-width: 420px){
/***.container { width: 34em; } **/
label{ padding-top: 10px;font-size: 13px; }
.label-mob-width{ width: 30%; }
.input-mob-width{ width: 55%; }
#bodyData{ overflow-x: hidden; }
.logo-image{ height: 84px; width: 210px;}
.user-header{ margin-top: 9%; height: 40px;right: 1%;width: 36%;}
.user-detail{ font-size: 10px; width:100%; padding: 6px 23px;}
.user-image{ height:50px; width: 50px; }
.save-button{ margin-left: 10px; }
.status-content-width{ width: 95%;}
.project-dropdown{ width: 100%; margin-left: 0;}
.picker-width{ width: 90%; z-index: 2;}
/**.report-text{ width: 80%; } **/
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.button-field{ width: 40%; margin: 10px; }
.dash-table{ min-width: 100%; }
.open-menu{ position: absolute; right: 0; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.container{ position: relative; top: 44px; }
.static-header{ top: 25px; height: 100px;}
.daily-picker{ margin-top:30px; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
.pagination{ height:5em; max-width: 100%; font-size:80%; }
.pagination .paginate_button.previous a{max-width:70px;padding-left: 15px;}
.pagination .paginate_button.next a{max-width:50px;padding-left: 13px;}
.pagination .paginate_button a{max-width:35px; padding-left: 6px;}
#date-leave{max-width: 77%;}
}
@media only screen and (min-width: 421px) and (max-width: 470px){
.container { width: 32em; position: relative; top: 44px;}
label{ padding-top: 10px;font-size: 14px; }
.label-mob-width{ width: 28%; }
.input-mob-width{ width: 55%; }
#bodyData{ overflow-x: hidden; /**width: 33em;**/}
.logo-image{ height: 80px; width: 190px;}
.user-image{ height:60px; width: 60px; left: -40px; bottom: -4px;}
.user-detail{ font-size: 11px; width:100%; padding: 6px 23px; height:40px;}
.user-header{ margin-top: 8%; height: 40px;right: 1%;width: 36%;}
.save-button{ margin-left: 10px; }
.status-content-width{ width: 95%;}
.BlockHeight{ float:left !important; width:100%; margin-bottom: 5em;}
.dash-table{ min-width: 100%; }
.open-menu{ position: absolute; right: 0; }
.picker-width{ z-index: 2; width: 90%;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-header{ top: 40px; height: 9em;}
.daily-picker{ margin-top:30px; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
.project-dropdown{ width: 100%; margin-left: 0;}
.pagination{ width: 95%; font-size:14px;height: 5em; }
.pagination .paginate_button.previous a{max-width:85px;padding-left: 15px;}
.pagination .paginate_button.next a{max-width:53px;padding-left: 13px;}
.pagination .paginate_button a{max-width:39px; padding-left: 6px;}
#date-leave{max-width: 80%;}
}
@media only screen and (min-width: 471px) and (max-width: 500px){
.container { width: 34em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 14px; }
.label-mob-width{ width: 24%; }
.input-mob-width{ width: 50%; }
#bodyData{ overflow-x: hidden; }
.status-content-width{ width: 95%;}
.logo-image{ height: 84px; width: 210px;}
.user-image{ height:65px; width: 65px; left: -45px; bottom: -8px;}
.user-detail{ font-size: 13px; width:100%; padding: 6px 23px; height:45px;}
.user-header{ margin-top: 10%; height: 40px;right: 1%;width: 36%;}
.save-button{ margin-left: 10px; }
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.open-menu{ position: absolute; right: 0; }
.picker-width{ z-index: 2; width: 90%;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-header{ top: 7px; height: 100px;}
.daily-picker{ margin-top:30px; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
.project-dropdown{ width: 100%; margin-left: 0;}
.pagination{ width: 96%; font-size:15px;height: 5em; }
.pagination .paginate_button.previous a{max-width:85px;padding-left: 15px;}
.pagination .paginate_button.next a{max-width:53px;padding-left: 13px;}
.pagination .paginate_button a{max-width:44px; padding-left: 6px;}
#date-leave{max-width: 80%;}
}
@media only screen and (min-width: 501px) and (max-width: 550px){
.container { width: 34em; position: relative; top: 44px;}
label{ padding-top: 10px;font-size: 14px; }
.label-mob-width{ width: 26%; }
.input-mob-width{ width: 53%; }
#bodyData{ overflow-x: hidden; }
.logo-image{ height: 84px; width: 210px;}
.user-image{ height:65px; width: 65px; left: -45px; bottom: -8px;}
.user-detail{ font-size: 13px; width:100%; padding: 6px 23px; height:45px;}
.user-header{ margin-top: 10%; height: 40px;right: 1%;width: 36%;}
.save-button{ margin-left: 10px; }
.open-menu{ position: absolute; right: 0; }
.status-content-width{ width: 95%;}
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.picker-width{ z-index: 2; width: 90%;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-header{ top: 28px; height: 9em;}
.daily-picker{ margin-top:30px; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 15%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
.pagination{ width: 96%; font-size:15px;height: 5em; }
.pagination .paginate_button.previous a{max-width:85px;padding-left: 15px;}
.pagination .paginate_button.next a{max-width:53px;padding-left: 13px;}
.pagination .paginate_button a{max-width:44px; padding-left: 6px;}
#date-leave{max-width: 80%;}
}
@media only screen and (min-width: 551px) and (max-width: 600px){
.container { width: 38em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 25%; }
.input-mob-width{ width: 56%; }
#bodyData{ overflow-x: hidden; }
.navbar-toggle{ margin-right: 45px; }
.logo-image{ height: 105px; width: 250px;margin-top: 20px;}
.user-image{ height:65px; width: 65px; left: -45px; bottom: -8px;}
.user-detail{ font-size: 13px; width:100%; padding: 6px 23px; height:45px;}
.user-header{ margin-top: 12%; height: 40px;right: 1%;width: 36%;}
.status-content-width{ width: 95%;}
.save-button{ margin-left: 10px; }
.BlockHeight{ float:left !important; width:100%;margin-bottom: 2em; }
.open-menu{ position: absolute; right: 0; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.5em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-container{ position: relative; top: 44px; }
.static-header{ top: 1%; height: 8em;}
.daily-picker{ margin-top:30px; }
.picker-width{ z-index: 2; width: 90%;}
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.block-area{ margin:16% 2% 0 3%; }
.picker-width{ z-index: 2;}
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
#date-leave{max-width: 84%;}
}
@media only screen and (min-width: 601px) and (max-width: 650px){
.container { width: 40em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 26%; }
.input-mob-width{ width: 52%; }
#bodyData{ overflow-x: hidden; }
.logo-image{ height: 110px; width: 250px;margin-top: 20px;}
.user-image{ height:65px; width: 65px; left: -45px; bottom: -8px;}
.user-detail{ font-size: 13px; width:100%; padding: 6px 23px; height:45px;}
.user-header{ margin-top: 14%; height: 40px;right: 1%;width: 36%;}
.save-button{ margin-left: 10px; }
.open-menu{ position: absolute; right: 0; }
.status-content-width{ width: 95%;}
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-header{ top: 1%; height: 9em;}
.picker-width{ z-index: 2; width: 90%;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
.info-block{ height: 5.5em; }
#date-leave{max-width: 85%;}
}
@media only screen and (min-width: 651px) and (max-width: 700px){
.container { width: 44em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 25%; }
.input-mob-width{ width: 58%; }
#bodyData{ overflow-x: hidden; }
.save-button{ margin-left: 10px; }
.status-content-width{ width: 95%;}
.open-menu{ position: absolute; right: 0; }
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.picker-width{ z-index: 2; width: 90%;}
.static-header{ top: 15px; height: 9em;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.info-block{ height: 5em; }
#date-leave{max-width: 87%;}
}
@media only screen and (min-width: 701px) and (max-width: 750px){
.container { width: 46em; position: relative; top: 44px;}
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 25%; }
.input-mob-width{ width: 55%; }
#bodyData{ overflow-x: hidden; }
.save-button{ margin-left: 10px; }
.open-menu{ position: absolute; right: 0; }
.status-content-width{ width: 95%;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.picker-width{ z-index: 2; width: 90%;}
.static-header{ top: 15px; height: 9em;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
#date-leave{max-width: 87%;}
}
@media only screen and (min-width: 751px) and (max-width: 766px){
.container { width: 50em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 14px; }
.label-mob-width{ width: 26%; }
.input-mob-width{ width: 65%; }
#bodyData{ overflow-x: hidden; }
.save-button{ margin-left: 10px; }
.status-content-width{ width: 95%;}
.open-menu{ position: absolute; right: 0; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.picker-width{ z-index: 2; width: 93%;}
.static-header{ top: 15px; height: 9em;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size:15px;height: 7em; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
}
@media only screen and (min-width: 767px) and (max-width: 990px){
.pendingtask{ position: absolute; right: 25px; }
.daily-picker{ margin-left:15%; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
.picker-width{ z-index: 2;}
.picker-width{ width: 95%; }
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.pagination .paginate_button.previous a{max-width:80px;padding-left: 10px;}
.pagination .paginate_button.next a{max-width:50px;padding-left: 10px;}
.pagination .paginate_button a{max-width:44px; padding-left: 6px;}
#date-leave{max-width: 88%;}
#leave-submit{float:left;}
#leave-reset{float:left;}
}
@media only screen and (min-width: 995px) and (max-width: 1200px){
.picker-width{ width: 94%; }
#date-leave{max-width: 88%;}
} | public/css/common-mobile.css | @media only screen and (min-width: 320px) and (max-width: 350px){
/***.container { width: 38em; } **/
label{ padding-top: 10px;font-size: 16px; }
.label-mob-width{ width: 27%; }
.input-mob-width{ width: 50%; }
#bodyData{ overflow-x: hidden; width: 38em;}
.logo-image{ height: 90px; width: 200px;}
.user-header{ margin-top: 11%; height: 40px;right: 5%;width: 34%;}
.user-image{ height:80px; width: 80px; position: absolute; left: -60px; top: -39px;}
.user-detail{ font-size: 14px; width:100%; padding: 7px 25px;margin-top: -14%;}
.save-button{ margin-left: 10px; }
.status-content-width{ width: 88%;}
.project-dropdown{ width: 100%; }
.picker-width{ width: 90%; z-index: 2;}
.dash-table{ max-width: 100%; }
#pendingtaskblock{ margin:0; }
/***.report-text{ width: 60%; }***/
.half-block-area{ min-width:100%; }
.open-menu{ position: absolute; right: 0; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.container{ position: relative; top: 50px; }
.static-header{ top: 5px; height: 100px;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size: 4.6vw;height: 10em; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
#date-leave{max-width: 72%;}
}
@media only screen and (min-width: 350px) and (max-width: 380px){
/***.container { width: 38em; } **/
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 37%; }
.input-mob-width{ width: 55%; }
#bodyData{ overflow-x: hidden;}
.logo-image{ height: 66px; width: 150px;}
.user-header{ margin-top: 5%; height: 40px;right: 1%;width: 40%;}
.user-image{ height:50px; width: 50px; }
.user-detail{ font-size: 10px; width:100%; padding: 6px 23px;}
.save-button{ margin-left: 10px; }
.status-content-width{ width: 97%;}
.project-dropdown{ width: 100%; margin-left: 0;}
.picker-width{ min-width: 90%; z-index: 2;}
/***.report-text{ width: 65%; }***/
.dash-table{ min-width: 100%; }
.half-block-area{ min-width:100%; }
.open-menu{ position: absolute; right: 0; }
.button-field{ width: 40%; margin: 10px; }
.BlockHeight{ float:left !important; width:100%; margin-bottom: 5em;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.container{ position: relative; top: 44px; }
.static-header{ top: 35px; height: 100px;}
.daily-picker{ margin-top:30px; }
.info-block{ height: 5em; }
.block-content{margin-bottom: 1em;}
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
.pagination{ max-width: 100%; font-size:2.6vw;height: 6em; }
.pagination .paginate_button.previous a{max-width:65px;padding-left: 10px;}
.pagination .paginate_button.next a{max-width:45px;padding-left: 10px;}
.pagination .paginate_button a{max-width:35px; padding-left: 6px;}
#date-leave{max-width: 75%;}
}
@media only screen and (min-width: 380px) and (max-width: 420px){
/***.container { width: 34em; } **/
label{ padding-top: 10px;font-size: 13px; }
.label-mob-width{ width: 30%; }
.input-mob-width{ width: 55%; }
#bodyData{ overflow-x: hidden; }
.logo-image{ height: 84px; width: 210px;}
.user-header{ margin-top: 9%; height: 40px;right: 1%;width: 36%;}
.user-detail{ font-size: 10px; width:100%; padding: 6px 23px;}
.user-image{ height:50px; width: 50px; }
.save-button{ margin-left: 10px; }
.status-content-width{ width: 95%;}
.project-dropdown{ width: 100%; margin-left: 0;}
.picker-width{ width: 90%; z-index: 2;}
/**.report-text{ width: 80%; } **/
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.button-field{ width: 40%; margin: 10px; }
.dash-table{ min-width: 100%; }
.open-menu{ position: absolute; right: 0; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.container{ position: relative; top: 44px; }
.static-header{ top: 25px; height: 100px;}
.daily-picker{ margin-top:30px; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
.pagination{ height:5em; max-width: 100%; font-size:80%; }
.pagination .paginate_button.previous a{max-width:70px;padding-left: 15px;}
.pagination .paginate_button.next a{max-width:50px;padding-left: 13px;}
.pagination .paginate_button a{max-width:35px; padding-left: 6px;}
#date-leave{max-width: 77%;}
}
@media only screen and (min-width: 421px) and (max-width: 470px){
.container { width: 32em; position: relative; top: 44px;}
label{ padding-top: 10px;font-size: 14px; }
.label-mob-width{ width: 28%; }
.input-mob-width{ width: 55%; }
#bodyData{ overflow-x: hidden; /**width: 33em;**/}
.logo-image{ height: 80px; width: 190px;}
.user-image{ height:60px; width: 60px; left: -40px; bottom: -4px;}
.user-detail{ font-size: 11px; width:100%; padding: 6px 23px; height:40px;}
.user-header{ margin-top: 8%; height: 40px;right: 1%;width: 36%;}
.save-button{ margin-left: 10px; }
.status-content-width{ width: 95%;}
.BlockHeight{ float:left !important; width:100%; margin-bottom: 5em;}
.dash-table{ min-width: 100%; }
.open-menu{ position: absolute; right: 0; }
.picker-width{ z-index: 2; width: 90%;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-header{ top: 40px; height: 9em;}
.daily-picker{ margin-top:30px; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
.project-dropdown{ width: 100%; margin-left: 0;}
.pagination{ width: 95%; font-size:14px;height: 5em; }
.pagination .paginate_button.previous a{max-width:85px;padding-left: 15px;}
.pagination .paginate_button.next a{max-width:53px;padding-left: 13px;}
.pagination .paginate_button a{max-width:39px; padding-left: 6px;}
#date-leave{max-width: 80%;}
}
@media only screen and (min-width: 471px) and (max-width: 500px){
.container { width: 34em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 14px; }
.label-mob-width{ width: 24%; }
.input-mob-width{ width: 50%; }
#bodyData{ overflow-x: hidden; }
.status-content-width{ width: 95%;}
.logo-image{ height: 84px; width: 210px;}
.user-image{ height:65px; width: 65px; left: -45px; bottom: -8px;}
.user-detail{ font-size: 13px; width:100%; padding: 6px 23px; height:45px;}
.user-header{ margin-top: 10%; height: 40px;right: 1%;width: 36%;}
.save-button{ margin-left: 10px; }
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.open-menu{ position: absolute; right: 0; }
.picker-width{ z-index: 2; width: 90%;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-header{ top: 7px; height: 100px;}
.daily-picker{ margin-top:30px; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 16%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
.project-dropdown{ width: 100%; margin-left: 0;}
.pagination{ width: 96%; font-size:15px;height: 5em; }
.pagination .paginate_button.previous a{max-width:85px;padding-left: 15px;}
.pagination .paginate_button.next a{max-width:53px;padding-left: 13px;}
.pagination .paginate_button a{max-width:44px; padding-left: 6px;}
#date-leave{max-width: 80%;}
}
@media only screen and (min-width: 501px) and (max-width: 550px){
.container { width: 34em; position: relative; top: 44px;}
label{ padding-top: 10px;font-size: 14px; }
.label-mob-width{ width: 26%; }
.input-mob-width{ width: 53%; }
#bodyData{ overflow-x: hidden; }
.logo-image{ height: 84px; width: 210px;}
.user-image{ height:65px; width: 65px; left: -45px; bottom: -8px;}
.user-detail{ font-size: 13px; width:100%; padding: 6px 23px; height:45px;}
.user-header{ margin-top: 10%; height: 40px;right: 1%;width: 36%;}
.save-button{ margin-left: 10px; }
.open-menu{ position: absolute; right: 0; }
.status-content-width{ width: 95%;}
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.picker-width{ z-index: 2; width: 90%;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-header{ top: 28px; height: 9em;}
.daily-picker{ margin-top:30px; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 15%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
.pagination{ width: 96%; font-size:15px;height: 5em; }
.pagination .paginate_button.previous a{max-width:85px;padding-left: 15px;}
.pagination .paginate_button.next a{max-width:53px;padding-left: 13px;}
.pagination .paginate_button a{max-width:44px; padding-left: 6px;}
#date-leave{max-width: 80%;}
}
@media only screen and (min-width: 551px) and (max-width: 600px){
.container { width: 38em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 25%; }
.input-mob-width{ width: 56%; }
#bodyData{ overflow-x: hidden; }
.navbar-toggle{ margin-right: 45px; }
.logo-image{ height: 105px; width: 250px;margin-top: 20px;}
.user-image{ height:65px; width: 65px; left: -45px; bottom: -8px;}
.user-detail{ font-size: 13px; width:100%; padding: 6px 23px; height:45px;}
.user-header{ margin-top: 12%; height: 40px;right: 1%;width: 36%;}
.status-content-width{ width: 95%;}
.save-button{ margin-left: 10px; }
.BlockHeight{ float:left !important; width:100%;margin-bottom: 2em; }
.open-menu{ position: absolute; right: 0; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.5em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-container{ position: relative; top: 44px; }
.static-header{ top: 1%; height: 8em;}
.daily-picker{ margin-top:30px; }
.picker-width{ z-index: 2; width: 90%;}
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.block-area{ margin:16% 2% 0 3%; }
.picker-width{ z-index: 2;}
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
.info-block{ height: 5em; }
#date-leave{max-width: 84%;}
}
@media only screen and (min-width: 601px) and (max-width: 650px){
.container { width: 40em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 26%; }
.input-mob-width{ width: 52%; }
#bodyData{ overflow-x: hidden; }
.logo-image{ height: 110px; width: 250px;margin-top: 20px;}
.user-image{ height:65px; width: 65px; left: -45px; bottom: -8px;}
.user-detail{ font-size: 13px; width:100%; padding: 6px 23px; height:45px;}
.user-header{ margin-top: 14%; height: 40px;right: 1%;width: 36%;}
.save-button{ margin-left: 10px; }
.open-menu{ position: absolute; right: 0; }
.status-content-width{ width: 95%;}
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.static-header{ top: 1%; height: 9em;}
.picker-width{ z-index: 2; width: 90%;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
.info-block{ height: 5.5em; }
#date-leave{max-width: 85%;}
}
@media only screen and (min-width: 651px) and (max-width: 700px){
.container { width: 44em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 25%; }
.input-mob-width{ width: 58%; }
#bodyData{ overflow-x: hidden; }
.save-button{ margin-left: 10px; }
.status-content-width{ width: 95%;}
.open-menu{ position: absolute; right: 0; }
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.picker-width{ z-index: 2; width: 90%;}
.static-header{ top: 15px; height: 9em;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.info-block{ height: 5em; }
#date-leave{max-width: 87%;}
}
@media only screen and (min-width: 701px) and (max-width: 750px){
.container { width: 46em; position: relative; top: 44px;}
label{ padding-top: 10px;font-size: 15px; }
.label-mob-width{ width: 25%; }
.input-mob-width{ width: 55%; }
#bodyData{ overflow-x: hidden; }
.save-button{ margin-left: 10px; }
.open-menu{ position: absolute; right: 0; }
.status-content-width{ width: 95%;}
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.BlockHeight{ float:left !important; width:100%;margin-bottom: 5em; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.picker-width{ z-index: 2; width: 90%;}
.static-header{ top: 15px; height: 9em;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
#date-leave{max-width: 87%;}
}
@media only screen and (min-width: 751px) and (max-width: 766px){
.container { width: 50em; position: relative; top: 44px; }
label{ padding-top: 10px;font-size: 14px; }
.label-mob-width{ width: 26%; }
.input-mob-width{ width: 65%; }
#bodyData{ overflow-x: hidden; }
.save-button{ margin-left: 10px; }
.status-content-width{ width: 95%;}
.open-menu{ position: absolute; right: 0; }
.navbar-submenu{ position: fixed; right:25px; }
.dropdown-menu-style{ position: absolute !important;top:0; left: -11.4em; background-color: #808080 !important; }
.navbar-style{ overflow: hidden; height: 65px; position: fixed; min-width: 100%; z-index: 5; }
.header-container{ position: relative; top: 44px; }
.picker-width{ z-index: 2; width: 93%;}
.static-header{ top: 15px; height: 9em;}
.daily-picker{ margin-top:30px; }
.pagination{ max-width: 100%; font-size:15px;height: 7em; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
}
@media only screen and (min-width: 767px) and (max-width: 990px){
.pendingtask{ position: absolute; right: 25px; }
.daily-picker{ margin-left:15%; }
.block-area{ margin:16% 2% 0 3%; }
.compressed-area{ margin: 0; }
.project-label{ width: 14%; }
.project-input{ width: 80%; }
.picker-width{ z-index: 2;}
.picker-width{ width: 95%; }
.pagination{ max-width: 100%; font-size:15px;height: 5em; }
.pagination .paginate_button.previous a{max-width:80px;padding-left: 10px;}
.pagination .paginate_button.next a{max-width:50px;padding-left: 10px;}
.pagination .paginate_button a{max-width:44px; padding-left: 6px;}
#date-leave{max-width: 88%;}
#leave-submit{float:left;}
#leave-reset{float:left;}
}
@media only screen and (min-width: 995px) and (max-width: 1200px){
.picker-width{ width: 94%; }
#date-leave{max-width: 88%;}
} | 0.29584 | 0.101278 |
.signin ::selection {
color: #fff;
background: red;
}
.signin-container {
min-height: 90vh;
box-sizing: border-box;
font-family: Helvetica, Arial, sans-serif;
padding: 30px;
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
color: #21252d;
line-height: 1.5;
font-size: 1.5rem;
display: flex;
width: 85vw;
margin: 0 auto;
}
.signin {
justify-content: center;
max-width: 430px;
margin: auto;
text-align: center;
}
.signin .popcorn {
width: 50px;
margin-bottom: 1rem;
border-style: none;
}
.signin h3 {
margin-top: 0;
font-weight: 500;
}
.signin form {
box-sizing: border-box;
}
.signin .label {
font-size: 0.75rem;
cursor: default;
color: #21252d;
line-height: 1.5;
display: flex;
justify-content: space-between;
margin-top: 1rem;
}
.red-font {
color: red;
}
.signin input {
height: 46px;
font-size: 15px;
display: block;
margin: auto;
box-sizing: border-box;
width: 100%;
margin-top: 0.5rem;
padding: 0.5rem 0.5rem;
background-color: #fff;
border: 1px solid #b0b6be;
border-radius: 0.25rem;
overflow: visible;
transition: 0.5s;
font-family: sans-serif;
}
.signin input:focus {
transition: 0.5s;
border: 1px solid #6c94fb;
outline: none;
}
.signin .inputField {
position: relative;
}
.signin .showPassEye {
width: 30px;
height: 46px;
position: absolute;
bottom: 0;
right: 10px;
margin: 0;
cursor: pointer;
}
.signin .tooltip {
position: absolute;
font-size: 0.5rem;
border: 1px solid gray;
box-sizing: border-box;
padding-bottom: 2px;
transition: 0.1s;
width: 60px;
height: 12px;
right: -65px;
bottom: 10px;
}
.signin .notvisible {
width: 0;
height: 0;
font-size: 0;
transition: 0.1s;
visibility: hidden;
}
.signin input[type="submit"].notAllowed {
cursor: not-allowed;
background: #21252d;
color: white;
border: none;
}
.signin input[type="submit"] {
border-color: #316aff;
background-color: #316aff;
color: white;
transition: 0.2s;
height: 46px;
width: 98%;
}
.signin input[type="submit"]:hover {
transition: 0.2s;
width: 100%;
}
.signin .signUpBlock {
text-align: center;
margin-top: 2rem;
font-size: 1rem;
}
.signin .signUpBlock a {
color: #316aff;
} | client/src/components/pages/SignIn/Signin.styles.css | .signin ::selection {
color: #fff;
background: red;
}
.signin-container {
min-height: 90vh;
box-sizing: border-box;
font-family: Helvetica, Arial, sans-serif;
padding: 30px;
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
color: #21252d;
line-height: 1.5;
font-size: 1.5rem;
display: flex;
width: 85vw;
margin: 0 auto;
}
.signin {
justify-content: center;
max-width: 430px;
margin: auto;
text-align: center;
}
.signin .popcorn {
width: 50px;
margin-bottom: 1rem;
border-style: none;
}
.signin h3 {
margin-top: 0;
font-weight: 500;
}
.signin form {
box-sizing: border-box;
}
.signin .label {
font-size: 0.75rem;
cursor: default;
color: #21252d;
line-height: 1.5;
display: flex;
justify-content: space-between;
margin-top: 1rem;
}
.red-font {
color: red;
}
.signin input {
height: 46px;
font-size: 15px;
display: block;
margin: auto;
box-sizing: border-box;
width: 100%;
margin-top: 0.5rem;
padding: 0.5rem 0.5rem;
background-color: #fff;
border: 1px solid #b0b6be;
border-radius: 0.25rem;
overflow: visible;
transition: 0.5s;
font-family: sans-serif;
}
.signin input:focus {
transition: 0.5s;
border: 1px solid #6c94fb;
outline: none;
}
.signin .inputField {
position: relative;
}
.signin .showPassEye {
width: 30px;
height: 46px;
position: absolute;
bottom: 0;
right: 10px;
margin: 0;
cursor: pointer;
}
.signin .tooltip {
position: absolute;
font-size: 0.5rem;
border: 1px solid gray;
box-sizing: border-box;
padding-bottom: 2px;
transition: 0.1s;
width: 60px;
height: 12px;
right: -65px;
bottom: 10px;
}
.signin .notvisible {
width: 0;
height: 0;
font-size: 0;
transition: 0.1s;
visibility: hidden;
}
.signin input[type="submit"].notAllowed {
cursor: not-allowed;
background: #21252d;
color: white;
border: none;
}
.signin input[type="submit"] {
border-color: #316aff;
background-color: #316aff;
color: white;
transition: 0.2s;
height: 46px;
width: 98%;
}
.signin input[type="submit"]:hover {
transition: 0.2s;
width: 100%;
}
.signin .signUpBlock {
text-align: center;
margin-top: 2rem;
font-size: 1rem;
}
.signin .signUpBlock a {
color: #316aff;
} | 0.484868 | 0.09236 |
*{
margin: 0;
padding: 0;
transition: 300ms;
}
body{
}
.vol1{
font-family: "Poppins", sans-serif;
padding: 50px 0 5;
position: relative;
text-align: center;
background:-webkit-linear-gradient(90deg, #f45622 0%, #f53e54 100%);
justify-content: center;
}
.image img{
max-width: 350px;
}
.info{
font-weight: bolder;
font-size: 1em;
margin-right: 50px;
position: relative;
top: 50%;
transform: translateY(30%);
color: white;
}
.info a{
padding: 6px 15px;
background-color: white;
color: black;
border-radius: 10px;
border: 1px solid white;
font-weight: 0.7em!important;
}
.info a:hover{
text-decoration: none;
background-color: transparent;
color: white;
}
.info p{
margin: 20px 0;
}
.vol2{
margin-top: 100px;
}
.item{
justify-content: space-around;
margin-bottom: 70px;
}
.item a{
margin-top: 20px;
}
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
fieldset, label { margin: 0; padding: 0; }
/****** Style Star Rating Widget *****/
.rating {
border: none;
display: inline-flex;
}
.rating > input { display: none; }
.rating > label:before {
margin: 5px;
font-size: 1.25em;
font-family: FontAwesome;
display: inline-block;
content: "\f005";
}
.rating > .half:before {
content: "\f089";
position: absolute;
}
.rating > label {
color: #ddd;
/* float: right; */
}
.card a{
display: block;
background: black;
outline: none;
border: 1px solid black;
}
.card a:hover{
outline: none;
border: 1px solid black;
background-color: white;
color :black;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700; } /* hover previous stars in list */
.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85; }
.pagination {
color: black;
justify-content: center;
}
.page-item a{
color: black;
}
.card{
/* width: 35%; */
margin-bottom: 35px;
}
.card img{
width: 100%;
height: 300px;
}
.upa{
position: fixed;
bottom: 50px;
right: 50px;
padding: 12px 16px;
background-color: rgb(0,0,0,0.4);
color: whitesmoke;
z-index: 99;
}
.upa:hover{
background-color: rgb(0,0,0,0.4);
color: whitesmoke;
}
@media (max-width:1024px) {
.lef {
width: 50%;
margin-bottom: 75px;
}
.vol1{
padding: 50px 0 150px;
}
} | public/libs/css/style.css | *{
margin: 0;
padding: 0;
transition: 300ms;
}
body{
}
.vol1{
font-family: "Poppins", sans-serif;
padding: 50px 0 5;
position: relative;
text-align: center;
background:-webkit-linear-gradient(90deg, #f45622 0%, #f53e54 100%);
justify-content: center;
}
.image img{
max-width: 350px;
}
.info{
font-weight: bolder;
font-size: 1em;
margin-right: 50px;
position: relative;
top: 50%;
transform: translateY(30%);
color: white;
}
.info a{
padding: 6px 15px;
background-color: white;
color: black;
border-radius: 10px;
border: 1px solid white;
font-weight: 0.7em!important;
}
.info a:hover{
text-decoration: none;
background-color: transparent;
color: white;
}
.info p{
margin: 20px 0;
}
.vol2{
margin-top: 100px;
}
.item{
justify-content: space-around;
margin-bottom: 70px;
}
.item a{
margin-top: 20px;
}
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
fieldset, label { margin: 0; padding: 0; }
/****** Style Star Rating Widget *****/
.rating {
border: none;
display: inline-flex;
}
.rating > input { display: none; }
.rating > label:before {
margin: 5px;
font-size: 1.25em;
font-family: FontAwesome;
display: inline-block;
content: "\f005";
}
.rating > .half:before {
content: "\f089";
position: absolute;
}
.rating > label {
color: #ddd;
/* float: right; */
}
.card a{
display: block;
background: black;
outline: none;
border: 1px solid black;
}
.card a:hover{
outline: none;
border: 1px solid black;
background-color: white;
color :black;
}
/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700; } /* hover previous stars in list */
.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85; }
.pagination {
color: black;
justify-content: center;
}
.page-item a{
color: black;
}
.card{
/* width: 35%; */
margin-bottom: 35px;
}
.card img{
width: 100%;
height: 300px;
}
.upa{
position: fixed;
bottom: 50px;
right: 50px;
padding: 12px 16px;
background-color: rgb(0,0,0,0.4);
color: whitesmoke;
z-index: 99;
}
.upa:hover{
background-color: rgb(0,0,0,0.4);
color: whitesmoke;
}
@media (max-width:1024px) {
.lef {
width: 50%;
margin-bottom: 75px;
}
.vol1{
padding: 50px 0 150px;
}
} | 0.248443 | 0.0809 |
* {
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 2rem;
-webkit-font-smoothing: antialiased;
line-height: 1.3;
}
a:link,
a:visited {
color: #5334F5;
text-decoration: none;
font-weight: 600;
}
.Hero {
height: 920px;
background: url('../images/wallpaper0.jpg'), #08113F;
background-size: cover;
background-position: center;
position: relative;
}
.HeroGroup {
margin: 0 auto;
max-width: 500px;
padding: 150px 50px;
text-align: center;
overflow: hidden;
}
.HeroGroup .highlight {
color: #9DE1E5;
}
.Hero h1 {
color: white;
font-size: 6rem;
line-height: 1.2;
opacity: 0;
animation: HeroAnimation 3s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(.2, .8, .2, 1);
}
.Hero p {
margin-top: 30px;
color: rgba(255, 255, 255, .8);
font-size: 3rem;
line-height: 1.5;
opacity: 0;
animation: HeroAnimation 3s forwards cubic-bezier(.2, .8, .2, 1);
animation-delay: .25s;
}
.Hero a {
display: inline-block;
margin-top: 45px;
font-size: 1.7rem;
font-weight: 600;
color: white;
text-transform: uppercase;
background: rgba(0, 0, 0, .7);
padding: 9px 20px;
border: 1px solid rgba(255, 255, 255, .25);
border-radius: 20px;
cursor: pointer;
opacity: 0;
transition: all .5s cubic-bezier(.2, .8, .2, 1);
animation: HeroAnimation 3s forwards cubic-bezier(.2, .8, .2, 1);
animation-delay: .45s;
}
.Hero a:hover {
background: white;
color: black;
transform: translateY(-3px);
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
.Hero .Logos {
position: relative;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 40px;
margin: 100px 0;
justify-items: center;
z-index: 10;
}
@media (max-width: 640px) {
.HeroGroup {
padding: 100px 20px;
}
.Hero h1 {
font-size: 4rem;
}
.Hero p {
font-size: 2.4rem;
}
}
@keyframes HeroAnimation {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.Hero svg {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
}
@media (max-width: 640px) {
.Hero .Logos {
grid-template-columns: repeat(3, 1fr);
}
}
.Action {
max-width: 340px;
margin: 0 auto 100px;
text-align: center;
position: relative;
z-index: 10;
}
.btn:link,
.btn:visited {
display: inline-block;
color: white;
font-weight: 600;
font-size: 2.4rem;
padding: 16px 60px;
background: linear-gradient(104.74deg, #4B26FF 0%, #B01EFF 100%);
box-shadow: 0px 10px 20px rgba(101, 41, 255, 0.15);
border-radius: 100px;
transition: all .8s cubic-bezier(.2, .8, .2, 1);
}
.btn:hover {
transform: translateY(-5px);
box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.35);
}
.ActionSub {
color: #B9C8DD;
font-weight: 600;
text-transform: uppercase;
font-size: 2rem;
margin-top: 25px;
margin-bottom: 15px;
}
.ActionText {
color: #205284;
font-size: 1.8rem;
line-height: 3rem;
}
.Cards h2 {
margin: 50px 20px;
font-size: 6rem;
text-align: center;
font-weight: 700;
background: linear-gradient(104deg, #050A27 0%, #4A548C 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.CardGroup {
margin: 50px 40px 100px;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 40px;
justify-items: center;
}
@media (max-width: 1060px) {
.CardGroup {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 960px) {
.CardGroup {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.CardGroup {
grid-template-columns: repeat(1, 1fr);
}
} | src/layouts/index.css | * {
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 2rem;
-webkit-font-smoothing: antialiased;
line-height: 1.3;
}
a:link,
a:visited {
color: #5334F5;
text-decoration: none;
font-weight: 600;
}
.Hero {
height: 920px;
background: url('../images/wallpaper0.jpg'), #08113F;
background-size: cover;
background-position: center;
position: relative;
}
.HeroGroup {
margin: 0 auto;
max-width: 500px;
padding: 150px 50px;
text-align: center;
overflow: hidden;
}
.HeroGroup .highlight {
color: #9DE1E5;
}
.Hero h1 {
color: white;
font-size: 6rem;
line-height: 1.2;
opacity: 0;
animation: HeroAnimation 3s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(.2, .8, .2, 1);
}
.Hero p {
margin-top: 30px;
color: rgba(255, 255, 255, .8);
font-size: 3rem;
line-height: 1.5;
opacity: 0;
animation: HeroAnimation 3s forwards cubic-bezier(.2, .8, .2, 1);
animation-delay: .25s;
}
.Hero a {
display: inline-block;
margin-top: 45px;
font-size: 1.7rem;
font-weight: 600;
color: white;
text-transform: uppercase;
background: rgba(0, 0, 0, .7);
padding: 9px 20px;
border: 1px solid rgba(255, 255, 255, .25);
border-radius: 20px;
cursor: pointer;
opacity: 0;
transition: all .5s cubic-bezier(.2, .8, .2, 1);
animation: HeroAnimation 3s forwards cubic-bezier(.2, .8, .2, 1);
animation-delay: .45s;
}
.Hero a:hover {
background: white;
color: black;
transform: translateY(-3px);
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
.Hero .Logos {
position: relative;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-gap: 40px;
margin: 100px 0;
justify-items: center;
z-index: 10;
}
@media (max-width: 640px) {
.HeroGroup {
padding: 100px 20px;
}
.Hero h1 {
font-size: 4rem;
}
.Hero p {
font-size: 2.4rem;
}
}
@keyframes HeroAnimation {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.Hero svg {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
}
@media (max-width: 640px) {
.Hero .Logos {
grid-template-columns: repeat(3, 1fr);
}
}
.Action {
max-width: 340px;
margin: 0 auto 100px;
text-align: center;
position: relative;
z-index: 10;
}
.btn:link,
.btn:visited {
display: inline-block;
color: white;
font-weight: 600;
font-size: 2.4rem;
padding: 16px 60px;
background: linear-gradient(104.74deg, #4B26FF 0%, #B01EFF 100%);
box-shadow: 0px 10px 20px rgba(101, 41, 255, 0.15);
border-radius: 100px;
transition: all .8s cubic-bezier(.2, .8, .2, 1);
}
.btn:hover {
transform: translateY(-5px);
box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.35);
}
.ActionSub {
color: #B9C8DD;
font-weight: 600;
text-transform: uppercase;
font-size: 2rem;
margin-top: 25px;
margin-bottom: 15px;
}
.ActionText {
color: #205284;
font-size: 1.8rem;
line-height: 3rem;
}
.Cards h2 {
margin: 50px 20px;
font-size: 6rem;
text-align: center;
font-weight: 700;
background: linear-gradient(104deg, #050A27 0%, #4A548C 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.CardGroup {
margin: 50px 40px 100px;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 40px;
justify-items: center;
}
@media (max-width: 1060px) {
.CardGroup {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 960px) {
.CardGroup {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.CardGroup {
grid-template-columns: repeat(1, 1fr);
}
} | 0.482185 | 0.107813 |
body {
color: #808080;
font-weight: 400;
font-size: 14px;
line-height: 26px;
-webkit-font-smoothing: antialiased;
}
p {
margin-bottom: 26px;
}
a {
color: #FFFFFF;
text-decoration: none !important;
-webkit-transition: color 0.3s;
transition: color 0.3s;
}
a:hover {
color: #4c4c4c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #000
font-weight: 400;
}
.btn2 {
font-family: "HELVETICA";
font-size: 16px;
letter-spacing: 1px;
border-radius: 40px;
padding: 8px 30px;
margin-bottom: 5px;
-webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.btn2.btn-lg {
padding: 10px 35px;
letter-spacing: 2px;
font-size: 21px;
}
.btn2.btn-sm {
padding: 7px 20px;
font-size: 14px;
}
.btn2.btn-xs {
padding: 5px 15px;
font-size: 12px;
}
.btn2-default {
color: #676767;
border-color: #e5e5e5;
}
.btn2-default:hover {
color: #fff;
background-color: #000
border-color: #000
}
.btn2-default-o {
color: #f2f2f2;
border-color: #f2f2f2;
background-color: transparent;
}
.btn2-default-o:hover {
color: #000
background-color: #fff;
border-color: #fff;
}
.btn2-main-o {
color: #4ecdc4;
border-color: #4ecdc4;
background-color: transparent;
}
.btn2-main-o:hover {
color: #000;
background-color: black;
border-color: black;
}
.btn2-dark-o {
color: #4c4c4c;
border-color: #4c4c4c;
background-color: transparent;
}
.btn2-dark-o:hover {
color: #fff;
background-color: #4c4c4c;
border-color: #4c4c4c;
}
.btn2-dark {
color: #fff;
background-color: #4c4c4c;
border-color: #4c4c4c;
}
.btn2-dark:hover,
.btn2-dark:focus,
.btn2-dark:active {
background-color: #333333;
border-color: #333333;
color: #fff;
}
.btn2-main {
color: #fff;
background-color: #000
border-color: #000
}
.btn2-main:hover,
.btn2-main:focus,
.btn2-main:active {
color: #4ecdc4;
border-color: #4ecdc4;
background-color: transparent;
}
.btn2-link {
font-weight: 400;
color: #000
}
.btn2-link:hover,
.btn2-link:focus,
.btn2-link:active {
color: #4c4c4c;
text-decoration: none;
} | public/css1/styled.css | body {
color: #808080;
font-weight: 400;
font-size: 14px;
line-height: 26px;
-webkit-font-smoothing: antialiased;
}
p {
margin-bottom: 26px;
}
a {
color: #FFFFFF;
text-decoration: none !important;
-webkit-transition: color 0.3s;
transition: color 0.3s;
}
a:hover {
color: #4c4c4c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #000
font-weight: 400;
}
.btn2 {
font-family: "HELVETICA";
font-size: 16px;
letter-spacing: 1px;
border-radius: 40px;
padding: 8px 30px;
margin-bottom: 5px;
-webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.btn2.btn-lg {
padding: 10px 35px;
letter-spacing: 2px;
font-size: 21px;
}
.btn2.btn-sm {
padding: 7px 20px;
font-size: 14px;
}
.btn2.btn-xs {
padding: 5px 15px;
font-size: 12px;
}
.btn2-default {
color: #676767;
border-color: #e5e5e5;
}
.btn2-default:hover {
color: #fff;
background-color: #000
border-color: #000
}
.btn2-default-o {
color: #f2f2f2;
border-color: #f2f2f2;
background-color: transparent;
}
.btn2-default-o:hover {
color: #000
background-color: #fff;
border-color: #fff;
}
.btn2-main-o {
color: #4ecdc4;
border-color: #4ecdc4;
background-color: transparent;
}
.btn2-main-o:hover {
color: #000;
background-color: black;
border-color: black;
}
.btn2-dark-o {
color: #4c4c4c;
border-color: #4c4c4c;
background-color: transparent;
}
.btn2-dark-o:hover {
color: #fff;
background-color: #4c4c4c;
border-color: #4c4c4c;
}
.btn2-dark {
color: #fff;
background-color: #4c4c4c;
border-color: #4c4c4c;
}
.btn2-dark:hover,
.btn2-dark:focus,
.btn2-dark:active {
background-color: #333333;
border-color: #333333;
color: #fff;
}
.btn2-main {
color: #fff;
background-color: #000
border-color: #000
}
.btn2-main:hover,
.btn2-main:focus,
.btn2-main:active {
color: #4ecdc4;
border-color: #4ecdc4;
background-color: transparent;
}
.btn2-link {
font-weight: 400;
color: #000
}
.btn2-link:hover,
.btn2-link:focus,
.btn2-link:active {
color: #4c4c4c;
text-decoration: none;
} | 0.27973 | 0.068475 |
░█████╗░░█████╗░██████╗░██╗░░░██╗██████╗░██╗░██████╗░██╗░░██╗████████╗
██╔══██╗██╔══██╗██╔══██╗╚██╗░██╔╝██╔══██╗██║██╔════╝░██║░░██║╚══██╔══╝
██║░░╚═╝██║░░██║██████╔╝░╚████╔╝░██████╔╝██║██║░░██╗░███████║░░░██║░░░
██║░░██╗██║░░██║██╔═══╝░░░╚██╔╝░░██╔══██╗██║██║░░╚██╗██╔══██║░░░██║░░░
╚█████╔╝╚█████╔╝██║░░░░░░░░██║░░░██║░░██║██║╚██████╔╝██║░░██║░░░██║░░░
░╚════╝░░╚════╝░╚═╝░░░░░░░░╚═╝░░░╚═╝░░╚═╝╚═╝░╚═════╝░╚═╝░░╚═╝░░░╚═╝░░░
██████╗░░█████╗░██████╗░░░███╗░░
╚════██╗██╔══██╗╚════██╗░████║░░
░░███╔═╝██║░░██║░░███╔═╝██╔██║░░
██╔══╝░░██║░░██║██╔══╝░░╚═╝██║░░
███████╗╚█████╔╝███████╗███████╗
╚══════╝░╚════╝░╚══════╝╚══════╝
███╗░░░███╗██╗░██████╗░░█████╗░██████╗░░█████╗░███████╗████████╗
████╗░████║██║██╔═══██╗██╔══██╗██╔══██╗██╔══██╗██╔════╝╚══██╔══╝
██╔████╔██║██║██║██╗██║██║░░╚═╝██████╔╝███████║█████╗░░░░░██║░░░
██║╚██╔╝██║██║╚██████╔╝██║░░██╗██╔══██╗██╔══██║██╔══╝░░░░░██║░░░
██║░╚═╝░██║██║░╚═██╔═╝░╚█████╔╝██║░░██║██║░░██║██║░░░░░░░░██║░░░
╚═╝░░░░░╚═╝╚═╝░░░╚═╝░░░░╚════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░░░░╚═╝░░░
██████╗░██╗░░░░░███████╗░█████╗░░██████╗███████╗
██╔══██╗██║░░░░░██╔════╝██╔══██╗██╔════╝██╔════╝
██████╔╝██║░░░░░█████╗░░███████║╚█████╗░█████╗░░
██╔═══╝░██║░░░░░██╔══╝░░██╔══██║░╚═══██╗██╔══╝░░
██║░░░░░███████╗███████╗██║░░██║██████╔╝███████╗
╚═╝░░░░░╚══════╝╚══════╝╚═╝░░╚═╝╚═════╝░╚══════╝
██████╗░░█████╗░███╗░░██╗██╗████████╗
██╔══██╗██╔══██╗████╗░██║╚█║╚══██╔══╝
██║░░██║██║░░██║██╔██╗██║░╚╝░░░██║░░░
██║░░██║██║░░██║██║╚████║░░░░░░██║░░░
██████╔╝╚█████╔╝██║░╚███║░░░░░░██║░░░
╚═════╝░░╚════╝░╚═╝░░╚══╝░░░░░░╚═╝░░░
██████╗░██╗░█████╗░██╗░░██╗ ██╗░░░██╗██████╗░ ████████╗██╗░░██╗███████╗
██╔══██╗██║██╔══██╗██║░██╔╝ ██║░░░██║██╔══██╗ ╚══██╔══╝██║░░██║██╔════╝
██████╔╝██║██║░░╚═╝█████═╝░ ██║░░░██║██████╔╝ ░░░██║░░░███████║█████╗░░
██╔═══╝░██║██║░░██╗██╔═██╗░ ██║░░░██║██╔═══╝░ ░░░██║░░░██╔══██║██╔══╝░░
██║░░░░░██║╚█████╔╝██║░╚██╗ ╚██████╔╝██║░░░░░ ░░░██║░░░██║░░██║███████╗
╚═╝░░░░░╚═╝░╚════╝░╚═╝░░╚═╝ ░╚═════╝░╚═╝░░░░░ ░░░╚═╝░░░╚═╝░░╚═╝╚══════╝
░█████╗░░█████╗░██████╗░██╗███╗░░██╗░██████╗░
██╔══██╗██╔══██╗██╔══██╗██║████╗░██║██╔════╝░
██║░░╚═╝██║░░██║██║░░██║██║██╔██╗██║██║░░██╗░
██║░░██╗██║░░██║██║░░██║██║██║╚████║██║░░╚██╗
╚█████╔╝╚█████╔╝██████╔╝██║██║░╚███║╚██████╔╝
░╚════╝░░╚════╝░╚═════╝░╚═╝╚═╝░░╚══╝░╚═════╝░
░██████╗██╗░░░██╗░██████╗████████╗███████╗███╗░░░███╗
██╔════╝╚██╗░██╔╝██╔════╝╚══██╔══╝██╔════╝████╗░████║
╚█████╗░░╚████╔╝░╚█████╗░░░░██║░░░█████╗░░██╔████╔██║
░╚═══██╗░░╚██╔╝░░░╚═══██╗░░░██║░░░██╔══╝░░██║╚██╔╝██║
██████╔╝░░░██║░░░██████╔╝░░░██║░░░███████╗██║░╚═╝░██║
╚═════╝░░░░╚═╝░░░╚═════╝░░░░╚═╝░░░╚══════╝╚═╝░░░░░╚═╝
░█████╗░███╗░░██╗ ████████╗██╗░░██╗██╗░██████╗
██╔══██╗████╗░██║ ╚══██╔══╝██║░░██║██║██╔════╝
██║░░██║██╔██╗██║ ░░░██║░░░███████║██║╚█████╗░
██║░░██║██║╚████║ ░░░██║░░░██╔══██║██║░╚═══██╗
╚█████╔╝██║░╚███║ ░░░██║░░░██║░░██║██║██████╔╝
░╚════╝░╚═╝░░╚══╝ ░░░╚═╝░░░╚═╝░░╚═╝╚═╝╚═════╝░
░██╗░░░░░░░██╗███████╗██████╗░░██████╗██╗████████╗███████╗
░██║░░██╗░░██║██╔════╝██╔══██╗██╔════╝██║╚══██╔══╝██╔════╝
░╚██╗████╗██╔╝█████╗░░██████╦╝╚█████╗░██║░░░██║░░░█████╗░░
░░████╔═████║░██╔══╝░░██╔══██╗░╚═══██╗██║░░░██║░░░██╔══╝░░
░░╚██╔╝░╚██╔╝░███████╗██████╦╝██████╔╝██║░░░██║░░░███████╗
░░░╚═╝░░░╚═╝░░╚══════╝╚═════╝░╚═════╝░╚═╝░░░╚═╝░░░╚══════╝
/* ==UserStyle==
@name Google Drive - Discord Theme
@description Discord theme for drive.google.com
@version 1.0.0
@author Miqcraft
@author URI: https://github.com/MIQCRAFT
@version: 1.0.0
@license MIT
==/UserStyle== */
@-moz-document domain("drive.google.com") {
.a-qc-La {
background-color: #111317;
}
.a-D-B {
background-color: #111317;
}
.gb_Wa:not(.gb_Fd) {
background: #0e1015 !important;
}
.gb_Ve {
background: #1c1f25 !important;
}
body {
color: white;
}
.h-R-w-d.a-l-S-Pc-w-d {
color: white;
}
.a-l-S-Pc-w-d .a-w-d-aa-zd svg {
fill: #49e171;
}
.a-l-S-Pc-w-d.h-R-w-d-W {
background: #2a2e35;
}
.a-U-ye-ha>.a-U-J {
background-color: #1c2028;
border: none !important;
}
.a-ec-Gd .Kzazxf.x6jRSb:hover {
box-shadow: none !important;
background: #434e61;
}
.a-ec-Gd .Kzazxf.x6jRSb {
box-shadow: none !important;
transition: all 0.2s ease;
background-color: #323b4b;
background-image: none;
border: none !important;
border-radius: 10px;
color: #bacceb;
height: 42px;
min-width: 212px;
padding: 0 14px 0 0;
}
.a-D-B-WErN3d-j {
border-bottom: 3px solid #2c3140;
}
.a-U-xc>.a-da-fc-Ug::after, .a-U-xc>.a-da-ji::before, .a-U-xc>.a-da-Ul::before {
border-bottom: 3px solid #2c3140;
}
.gb_qa svg, .gb_Bc svg, .gb_Xc .gb_6d, .gb_Nc .gb_6d {
color: #e5e6e6;
opacity: 1;
}
.VV2Bdf {
color: #9aafc9;
}
.L202Xe {
background-color: #282c34;
border: none !important;
}
.RwLyCe {
border-top: 3px solid #4f5464;
}
.eAQ1W {
color: #ffffff;
}
.Vl9rfc {
color: #6a7991;
}
.RnhyXe.paynGb:not(:disabled) {
border-color: none;
color: #5cc177;
background: #323b4b;
}
.RnhyXe.paynGb:hover {
border: none !important;
color: #5cc177;
background: #323b4b;
}
.RnhyXe.paynGb:focus:not(:disabled), .RnhyXe.paynGb:hover:not(:disabled), .RnhyXe.paynGb:active:not(:disabled) {
border-color: none !important;
color: #5cc177;
background: #323b4b;
}
.ub-ml-Pr .USrqEe-ml-Pr-gi .Ea0cbb-hTVF2c-r, .ub-ml-Pr .USrqEe-ml-Pr-gi .cr-hTVF2c-r {
color: #97aac2;
}
.a-U-J-x {
color: #a5b9d2;
}
.a-Ng-c-ha svg {
fill: #58bd75;
}
.a-U-ye-ha>.a-U-J>.a-U-J-x {
font-weight: 600;
color: #57bb74;
}
.a-U-ye-ha>.a-U-J .a-U-Ze svg, .a-U-xc-J .a-Ng-c-wk svg, .a-U-J .a-U-Ze svg {
fill: #cee4ff;
}
.a-d-c svg {
fill: white;
}
.a-s-Ba-Ak {
border-bottom: 3px solid #2c3140;
}
::-webkit-scrollbar-thumb {
background-color: #373d4a;
background-clip: padding-box;
border: solid transparent;
border-width: 4px;
transition: all 0.2s ease;
border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #555e72;
}
.B-Nd-ZB7aWe-UvFRu {
background-color: #58bd75;
}
.B-ZB7aWe-UvFRu.L3Yhxc-Ya {
background-color: #fbbc04;
}
.Kk7lMc-Yb-Il-j, .a-Kk7lMc-ae3xF-j {
border-left: none !important;
}
.Kk7lMc-Yb-Il-j {
background-color: #1c1f25;
}
.Yb-Il-d-W .Yb-Il-d-c-Nd, .Yb-Il-d-pb .Yb-Il-d-c-Nd {
background-color: #111317;
}
.Kk7lMc-Yb-Il-vc {
border-top: 4px solid #515f7b;
}
.s55KNe .jGNTYb {
background-color: #282c34;
border: none !important;
}
.WYuW0e {
color: white;
}
.s55KNe .tohzcb .l-o-c-qd svg {
fill: #58bd75;
}
.s55KNe .gudAKb {
opacity: 0.4;
transition: all 0.6s ease;
}
.s55KNe .gudAKb:hover {
opacity: 1;
cursor: pointer;
}
.L202Xe {
transition: all 0.3s ease;
}
.L202Xe:hover {
transform: translateY(-4px);
}
.s55KNe .WYuW0e:not(.RDfNAe) {
transition: all 0.3s ease;
}
.s55KNe .WYuW0e:not(.RDfNAe):hover {
transform: translateY(-4px);
}
.ta-gc-np-Nd {
background-color: none !important;
background-image: none !important;
background-position: 0 0, 10px 10px;
-webkit-background-size: 21px 21px;
background-size: 21px 21px;
}
.l-u-Ab-zb {
background: none !important;
}
.s55KNe .WYuW0e {
transition: all 0.3s ease;
}
.s55KNe .WYuW0e:hover {
transform: translateY(-3px);
cursor: pointer;
}
.s55KNe .jGNTYb {
transition: all 0.2s;
}
.s55KNe .jGNTYb:hover {
background-color: #2c3039;
cursor: pointer;
}
.a-ec-Gd .Kzazxf.x6jRSb:focus {
background-color: #323b4b;
outline: none !important;
}
.h-uj {
background: #1c1f25;
}
.a-Va-Zb-ga {
color: #adc0d8;
}
.a-Lk .g-d-wd:not(.g-d-db), .a-Lk .g-d-wd:not(.g-d-db):focus, .a-Lk .g-d-wd:not(.g-d-db).g-d-Pb {
background: transparent;
color: #63697d;
fill: #7c849b;
}
.a-Lk .g-d-wd:not(.g-d-db).g-d-W {
color: #63697d;
fill: #7c849b;
}
.h-R-w-d.g-Qb {
box-shadow: inset 0 -1px 0 0 #39414c;
}
.g-Qa {
border-color: #58bd75;
fill: rgba(0, 0, 0, .54);
}
.a-Va-Zb-va-d svg {
fill: white;
}
.a-Va-Zb-vb:focus, .a-Va-Zb-vb:hover {
border: 1px dashed transparent;
box-shadow: inset 0 -2px 0 0 #58bd75;
}
.l-u-xb.l-u-o {
border: none !important;
}
.l-u-xb {
background: #323b4b;
}
.l-u-V {
color: #aebdd5;
}
.a-c-j>div svg {
fill: #52c274;
}
.a-ok-Ji-ga {
color: #90a8c5;
font-weight: 500;
}
.a-ub-Gd {
background-color: #1c1f25;
border-left: 3px solid #2c3140;
}
.a-q-Xc-Ab-c svg path {
fill: white;
}
.l-u-xb {
background: #323b4b;
border: none !important;
border-radius: 6px;
color: #8da9d6;
transition: all 0.3s;
}
.l-u-xb:hover {
cursor: pointer;
transform: translateY(-4px);
}
.l-u-Ab-zb-j {
opacity: 0.3;
transition: all 0.3s;
}
.l-u-Ab-zb-j:hover {
opacity: 1;
cursor: pointer;
}
.a-u-hd-Mb-dd .a-hd-Il-w-d {
color: #90a7e0;
}
.a-u-hd-Mb-dd .a-hd-Il-mhHukc-d svg {
fill: white;
}
.A7IrWb.w8ecmf.VLrnY {
background: #0c0d0f;
}
.A7IrWb {
background: #fff;
border-radius: 6px;
border: none !important;
color: #fbbc04;
}
.XpILwc {
margin: 7px 11px;
}
.VZc3j.qoCZef:not(:disabled), .ZbSJib.qoCZef:not(:disabled) {
color: #9dbdd5;
}
.a-U-J {
border-radius: 10px;
padding: 1px 1px 1px 3px;
}
.a-da-U .a-U-xc-J {
background-color: #14171c;
border: none !important;
width: 90%;
margin-top: 5px;
margin-left: 9px;
padding: 0px 0px 0px 7px;
transition: all 0.4s;
}
.a-da-U .a-U-xc-J:hover {
background-color: #1c2028;
border: none !important;
width: 90%;
margin-top: 5px;
margin-left: 9px;
padding: 0px 0px 0px 7px;
transform: translateY(-2px);
cursor: pointer;
}
.a-U-ye-ha>.a-U-J {
background-color: #1c2028;
border: none !important;
width: 90%;
margin-left: 9px;
transition: all 0.4s;
}
.a-U-ye-ha>.a-U-J:hover {
transform: translateY(-2px);
cursor: pointer;
background-color: #242933;
}
.a-U-xc>.a-da-fc-Ug::after, .a-U-xc>.a-da-ji::before, .a-U-xc>.a-da-Ul::before {
display: none !important;
}
.ub-ml-Pr.USrqEe-ml-Pr-qc-j .ub-sc-j {
padding-top: 29px;
}
.RnhyXe.paynGb {
border: none !important;
transition: all 0.2s;
}
.RnhyXe.paynGb:not(:disabled):hover {
transform: translateY(-3px);
}
.a-Va-Zb-M>input::placeholder {
color: #545d69;
}
#gs_lc50>input::placeholder {
color: #526274;
}
#gs_lc50>input[type=text] {
color: #a6bdda;
}
.a-ub-oa {
background-color: #0e1015;
}
.a-ub-va-d-c svg {
fill: white;
}
.a-ub-D {
border-left: none !important;
}
.a-ub-ra-B>.h-ra-B {
border-bottom: none !important;
}
.a-ub-ra-B>.h-ra-B>.h-ra {
color: #aac2df;
}
.a-ub-ra-B>.h-ra-B>.h-ra-ha {
color: #57bc74;
}
.a-ub-ra-B>.h-ra-B>.h-ra.h-ra-ha>.a-ra-Mb-j>.a-ra-Mb {
border-bottom: 4px solid #57bc74;
}
.z80MQ.FwR7Pc:focus {
background: #2fc66b !important;
}
.ZqJeHd.a-c-d.a-r-d {
color: #96afcd !important;
}
.KZ6CTb.a-c-d svg {
fill: #9eb9db !important;
}
.KZ6CTb.a-c-d:hover svg, .KZ6CTb.a-c-d:focus svg {
fill: #9eb9db !important;
}
.aabwZd .N7iPof {
border-bottom: none !important;
}
.N7iPof {
background-color: #111317 !important;
}
.iZz7md.aaQsNb:hover, .iZz7md.aaQsNb:hover svg, .iZz7md .I2rTXb:focus, .iZz7md .I2rTXb:focus svg {
color: #8a9fb9 !important;
fill: #8a9fb9 !important;
}
.iZz7md {
color: #99b7dc !important;
fill: #99b7dc !important;
}
.aabwZd .WYuW0e .M3pype[data-column-field="6"] {
color: #7292c1 !important;
fill: #7292c1 !important;
}
.aabwZd .WYuW0e {
-webkit-align-items: center !important;
align-items: center !important;
border: none !important;
border-bottom: 2px solid #2c3140 !important;
color: #798ca9 !important;
fill: #576375 !important;
}
.aabwZd .WYuW0e .M3pype .YUNZ4c {
color: #58bd75 !important;
}
.Yb-Il-d-c-j {
background-color: #2c323c !important;
}
.Yb-Il-d-c {
fill: #8da0c6 !important;
}
.s55KNe:not(.KBj6Qd) .GZwC2b .jGNTYb, .aabwZd:not(.KBj6Qd) .GZwC2b {
background-color: #1c1f25 !important;
}
.a-da-U .a-U-xc-J .a-s-T-c-j {
padding-right: 8px;
}
.af {
background-color: #0e1015;
border: none !important;
}
.le-Ba {
background-color: #1c1f25;
border-bottom: none !important;
}
.Ea-oa {
border-bottom: none !important;
color: #95a2cb;
display: block;
padding-bottom: 6px;
position: relative;
}
.a-Cd-oa {
background-color: #323b4b;
border-left: none !important;
border-right: none !important;
}
.a-Cd-Ba-j {
border-left: none !important;
border-right: none !important;
}
.a-s-fa-Ha-pa {
fill: #bfc5ce !important;
}
.f-G circle {
fill: #fbbc04 !important;
}
.a-f-n svg>circle {
fill: #c0cce36b;
}
.le-Ba-d {
color: #fbbc04;
}
.Ea-oa.Ea-G {
color: #fff;
}
.Ccie2c:focus .v2devc, .Ccie2c.Pb .v2devc {
background-color: #2f343d;
}
} | data/usercss/200866.user.css | ░█████╗░░█████╗░██████╗░██╗░░░██╗██████╗░██╗░██████╗░██╗░░██╗████████╗
██╔══██╗██╔══██╗██╔══██╗╚██╗░██╔╝██╔══██╗██║██╔════╝░██║░░██║╚══██╔══╝
██║░░╚═╝██║░░██║██████╔╝░╚████╔╝░██████╔╝██║██║░░██╗░███████║░░░██║░░░
██║░░██╗██║░░██║██╔═══╝░░░╚██╔╝░░██╔══██╗██║██║░░╚██╗██╔══██║░░░██║░░░
╚█████╔╝╚█████╔╝██║░░░░░░░░██║░░░██║░░██║██║╚██████╔╝██║░░██║░░░██║░░░
░╚════╝░░╚════╝░╚═╝░░░░░░░░╚═╝░░░╚═╝░░╚═╝╚═╝░╚═════╝░╚═╝░░╚═╝░░░╚═╝░░░
██████╗░░█████╗░██████╗░░░███╗░░
╚════██╗██╔══██╗╚════██╗░████║░░
░░███╔═╝██║░░██║░░███╔═╝██╔██║░░
██╔══╝░░██║░░██║██╔══╝░░╚═╝██║░░
███████╗╚█████╔╝███████╗███████╗
╚══════╝░╚════╝░╚══════╝╚══════╝
███╗░░░███╗██╗░██████╗░░█████╗░██████╗░░█████╗░███████╗████████╗
████╗░████║██║██╔═══██╗██╔══██╗██╔══██╗██╔══██╗██╔════╝╚══██╔══╝
██╔████╔██║██║██║██╗██║██║░░╚═╝██████╔╝███████║█████╗░░░░░██║░░░
██║╚██╔╝██║██║╚██████╔╝██║░░██╗██╔══██╗██╔══██║██╔══╝░░░░░██║░░░
██║░╚═╝░██║██║░╚═██╔═╝░╚█████╔╝██║░░██║██║░░██║██║░░░░░░░░██║░░░
╚═╝░░░░░╚═╝╚═╝░░░╚═╝░░░░╚════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░░░░╚═╝░░░
██████╗░██╗░░░░░███████╗░█████╗░░██████╗███████╗
██╔══██╗██║░░░░░██╔════╝██╔══██╗██╔════╝██╔════╝
██████╔╝██║░░░░░█████╗░░███████║╚█████╗░█████╗░░
██╔═══╝░██║░░░░░██╔══╝░░██╔══██║░╚═══██╗██╔══╝░░
██║░░░░░███████╗███████╗██║░░██║██████╔╝███████╗
╚═╝░░░░░╚══════╝╚══════╝╚═╝░░╚═╝╚═════╝░╚══════╝
██████╗░░█████╗░███╗░░██╗██╗████████╗
██╔══██╗██╔══██╗████╗░██║╚█║╚══██╔══╝
██║░░██║██║░░██║██╔██╗██║░╚╝░░░██║░░░
██║░░██║██║░░██║██║╚████║░░░░░░██║░░░
██████╔╝╚█████╔╝██║░╚███║░░░░░░██║░░░
╚═════╝░░╚════╝░╚═╝░░╚══╝░░░░░░╚═╝░░░
██████╗░██╗░█████╗░██╗░░██╗ ██╗░░░██╗██████╗░ ████████╗██╗░░██╗███████╗
██╔══██╗██║██╔══██╗██║░██╔╝ ██║░░░██║██╔══██╗ ╚══██╔══╝██║░░██║██╔════╝
██████╔╝██║██║░░╚═╝█████═╝░ ██║░░░██║██████╔╝ ░░░██║░░░███████║█████╗░░
██╔═══╝░██║██║░░██╗██╔═██╗░ ██║░░░██║██╔═══╝░ ░░░██║░░░██╔══██║██╔══╝░░
██║░░░░░██║╚█████╔╝██║░╚██╗ ╚██████╔╝██║░░░░░ ░░░██║░░░██║░░██║███████╗
╚═╝░░░░░╚═╝░╚════╝░╚═╝░░╚═╝ ░╚═════╝░╚═╝░░░░░ ░░░╚═╝░░░╚═╝░░╚═╝╚══════╝
░█████╗░░█████╗░██████╗░██╗███╗░░██╗░██████╗░
██╔══██╗██╔══██╗██╔══██╗██║████╗░██║██╔════╝░
██║░░╚═╝██║░░██║██║░░██║██║██╔██╗██║██║░░██╗░
██║░░██╗██║░░██║██║░░██║██║██║╚████║██║░░╚██╗
╚█████╔╝╚█████╔╝██████╔╝██║██║░╚███║╚██████╔╝
░╚════╝░░╚════╝░╚═════╝░╚═╝╚═╝░░╚══╝░╚═════╝░
░██████╗██╗░░░██╗░██████╗████████╗███████╗███╗░░░███╗
██╔════╝╚██╗░██╔╝██╔════╝╚══██╔══╝██╔════╝████╗░████║
╚█████╗░░╚████╔╝░╚█████╗░░░░██║░░░█████╗░░██╔████╔██║
░╚═══██╗░░╚██╔╝░░░╚═══██╗░░░██║░░░██╔══╝░░██║╚██╔╝██║
██████╔╝░░░██║░░░██████╔╝░░░██║░░░███████╗██║░╚═╝░██║
╚═════╝░░░░╚═╝░░░╚═════╝░░░░╚═╝░░░╚══════╝╚═╝░░░░░╚═╝
░█████╗░███╗░░██╗ ████████╗██╗░░██╗██╗░██████╗
██╔══██╗████╗░██║ ╚══██╔══╝██║░░██║██║██╔════╝
██║░░██║██╔██╗██║ ░░░██║░░░███████║██║╚█████╗░
██║░░██║██║╚████║ ░░░██║░░░██╔══██║██║░╚═══██╗
╚█████╔╝██║░╚███║ ░░░██║░░░██║░░██║██║██████╔╝
░╚════╝░╚═╝░░╚══╝ ░░░╚═╝░░░╚═╝░░╚═╝╚═╝╚═════╝░
░██╗░░░░░░░██╗███████╗██████╗░░██████╗██╗████████╗███████╗
░██║░░██╗░░██║██╔════╝██╔══██╗██╔════╝██║╚══██╔══╝██╔════╝
░╚██╗████╗██╔╝█████╗░░██████╦╝╚█████╗░██║░░░██║░░░█████╗░░
░░████╔═████║░██╔══╝░░██╔══██╗░╚═══██╗██║░░░██║░░░██╔══╝░░
░░╚██╔╝░╚██╔╝░███████╗██████╦╝██████╔╝██║░░░██║░░░███████╗
░░░╚═╝░░░╚═╝░░╚══════╝╚═════╝░╚═════╝░╚═╝░░░╚═╝░░░╚══════╝
/* ==UserStyle==
@name Google Drive - Discord Theme
@description Discord theme for drive.google.com
@version 1.0.0
@author Miqcraft
@author URI: https://github.com/MIQCRAFT
@version: 1.0.0
@license MIT
==/UserStyle== */
@-moz-document domain("drive.google.com") {
.a-qc-La {
background-color: #111317;
}
.a-D-B {
background-color: #111317;
}
.gb_Wa:not(.gb_Fd) {
background: #0e1015 !important;
}
.gb_Ve {
background: #1c1f25 !important;
}
body {
color: white;
}
.h-R-w-d.a-l-S-Pc-w-d {
color: white;
}
.a-l-S-Pc-w-d .a-w-d-aa-zd svg {
fill: #49e171;
}
.a-l-S-Pc-w-d.h-R-w-d-W {
background: #2a2e35;
}
.a-U-ye-ha>.a-U-J {
background-color: #1c2028;
border: none !important;
}
.a-ec-Gd .Kzazxf.x6jRSb:hover {
box-shadow: none !important;
background: #434e61;
}
.a-ec-Gd .Kzazxf.x6jRSb {
box-shadow: none !important;
transition: all 0.2s ease;
background-color: #323b4b;
background-image: none;
border: none !important;
border-radius: 10px;
color: #bacceb;
height: 42px;
min-width: 212px;
padding: 0 14px 0 0;
}
.a-D-B-WErN3d-j {
border-bottom: 3px solid #2c3140;
}
.a-U-xc>.a-da-fc-Ug::after, .a-U-xc>.a-da-ji::before, .a-U-xc>.a-da-Ul::before {
border-bottom: 3px solid #2c3140;
}
.gb_qa svg, .gb_Bc svg, .gb_Xc .gb_6d, .gb_Nc .gb_6d {
color: #e5e6e6;
opacity: 1;
}
.VV2Bdf {
color: #9aafc9;
}
.L202Xe {
background-color: #282c34;
border: none !important;
}
.RwLyCe {
border-top: 3px solid #4f5464;
}
.eAQ1W {
color: #ffffff;
}
.Vl9rfc {
color: #6a7991;
}
.RnhyXe.paynGb:not(:disabled) {
border-color: none;
color: #5cc177;
background: #323b4b;
}
.RnhyXe.paynGb:hover {
border: none !important;
color: #5cc177;
background: #323b4b;
}
.RnhyXe.paynGb:focus:not(:disabled), .RnhyXe.paynGb:hover:not(:disabled), .RnhyXe.paynGb:active:not(:disabled) {
border-color: none !important;
color: #5cc177;
background: #323b4b;
}
.ub-ml-Pr .USrqEe-ml-Pr-gi .Ea0cbb-hTVF2c-r, .ub-ml-Pr .USrqEe-ml-Pr-gi .cr-hTVF2c-r {
color: #97aac2;
}
.a-U-J-x {
color: #a5b9d2;
}
.a-Ng-c-ha svg {
fill: #58bd75;
}
.a-U-ye-ha>.a-U-J>.a-U-J-x {
font-weight: 600;
color: #57bb74;
}
.a-U-ye-ha>.a-U-J .a-U-Ze svg, .a-U-xc-J .a-Ng-c-wk svg, .a-U-J .a-U-Ze svg {
fill: #cee4ff;
}
.a-d-c svg {
fill: white;
}
.a-s-Ba-Ak {
border-bottom: 3px solid #2c3140;
}
::-webkit-scrollbar-thumb {
background-color: #373d4a;
background-clip: padding-box;
border: solid transparent;
border-width: 4px;
transition: all 0.2s ease;
border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #555e72;
}
.B-Nd-ZB7aWe-UvFRu {
background-color: #58bd75;
}
.B-ZB7aWe-UvFRu.L3Yhxc-Ya {
background-color: #fbbc04;
}
.Kk7lMc-Yb-Il-j, .a-Kk7lMc-ae3xF-j {
border-left: none !important;
}
.Kk7lMc-Yb-Il-j {
background-color: #1c1f25;
}
.Yb-Il-d-W .Yb-Il-d-c-Nd, .Yb-Il-d-pb .Yb-Il-d-c-Nd {
background-color: #111317;
}
.Kk7lMc-Yb-Il-vc {
border-top: 4px solid #515f7b;
}
.s55KNe .jGNTYb {
background-color: #282c34;
border: none !important;
}
.WYuW0e {
color: white;
}
.s55KNe .tohzcb .l-o-c-qd svg {
fill: #58bd75;
}
.s55KNe .gudAKb {
opacity: 0.4;
transition: all 0.6s ease;
}
.s55KNe .gudAKb:hover {
opacity: 1;
cursor: pointer;
}
.L202Xe {
transition: all 0.3s ease;
}
.L202Xe:hover {
transform: translateY(-4px);
}
.s55KNe .WYuW0e:not(.RDfNAe) {
transition: all 0.3s ease;
}
.s55KNe .WYuW0e:not(.RDfNAe):hover {
transform: translateY(-4px);
}
.ta-gc-np-Nd {
background-color: none !important;
background-image: none !important;
background-position: 0 0, 10px 10px;
-webkit-background-size: 21px 21px;
background-size: 21px 21px;
}
.l-u-Ab-zb {
background: none !important;
}
.s55KNe .WYuW0e {
transition: all 0.3s ease;
}
.s55KNe .WYuW0e:hover {
transform: translateY(-3px);
cursor: pointer;
}
.s55KNe .jGNTYb {
transition: all 0.2s;
}
.s55KNe .jGNTYb:hover {
background-color: #2c3039;
cursor: pointer;
}
.a-ec-Gd .Kzazxf.x6jRSb:focus {
background-color: #323b4b;
outline: none !important;
}
.h-uj {
background: #1c1f25;
}
.a-Va-Zb-ga {
color: #adc0d8;
}
.a-Lk .g-d-wd:not(.g-d-db), .a-Lk .g-d-wd:not(.g-d-db):focus, .a-Lk .g-d-wd:not(.g-d-db).g-d-Pb {
background: transparent;
color: #63697d;
fill: #7c849b;
}
.a-Lk .g-d-wd:not(.g-d-db).g-d-W {
color: #63697d;
fill: #7c849b;
}
.h-R-w-d.g-Qb {
box-shadow: inset 0 -1px 0 0 #39414c;
}
.g-Qa {
border-color: #58bd75;
fill: rgba(0, 0, 0, .54);
}
.a-Va-Zb-va-d svg {
fill: white;
}
.a-Va-Zb-vb:focus, .a-Va-Zb-vb:hover {
border: 1px dashed transparent;
box-shadow: inset 0 -2px 0 0 #58bd75;
}
.l-u-xb.l-u-o {
border: none !important;
}
.l-u-xb {
background: #323b4b;
}
.l-u-V {
color: #aebdd5;
}
.a-c-j>div svg {
fill: #52c274;
}
.a-ok-Ji-ga {
color: #90a8c5;
font-weight: 500;
}
.a-ub-Gd {
background-color: #1c1f25;
border-left: 3px solid #2c3140;
}
.a-q-Xc-Ab-c svg path {
fill: white;
}
.l-u-xb {
background: #323b4b;
border: none !important;
border-radius: 6px;
color: #8da9d6;
transition: all 0.3s;
}
.l-u-xb:hover {
cursor: pointer;
transform: translateY(-4px);
}
.l-u-Ab-zb-j {
opacity: 0.3;
transition: all 0.3s;
}
.l-u-Ab-zb-j:hover {
opacity: 1;
cursor: pointer;
}
.a-u-hd-Mb-dd .a-hd-Il-w-d {
color: #90a7e0;
}
.a-u-hd-Mb-dd .a-hd-Il-mhHukc-d svg {
fill: white;
}
.A7IrWb.w8ecmf.VLrnY {
background: #0c0d0f;
}
.A7IrWb {
background: #fff;
border-radius: 6px;
border: none !important;
color: #fbbc04;
}
.XpILwc {
margin: 7px 11px;
}
.VZc3j.qoCZef:not(:disabled), .ZbSJib.qoCZef:not(:disabled) {
color: #9dbdd5;
}
.a-U-J {
border-radius: 10px;
padding: 1px 1px 1px 3px;
}
.a-da-U .a-U-xc-J {
background-color: #14171c;
border: none !important;
width: 90%;
margin-top: 5px;
margin-left: 9px;
padding: 0px 0px 0px 7px;
transition: all 0.4s;
}
.a-da-U .a-U-xc-J:hover {
background-color: #1c2028;
border: none !important;
width: 90%;
margin-top: 5px;
margin-left: 9px;
padding: 0px 0px 0px 7px;
transform: translateY(-2px);
cursor: pointer;
}
.a-U-ye-ha>.a-U-J {
background-color: #1c2028;
border: none !important;
width: 90%;
margin-left: 9px;
transition: all 0.4s;
}
.a-U-ye-ha>.a-U-J:hover {
transform: translateY(-2px);
cursor: pointer;
background-color: #242933;
}
.a-U-xc>.a-da-fc-Ug::after, .a-U-xc>.a-da-ji::before, .a-U-xc>.a-da-Ul::before {
display: none !important;
}
.ub-ml-Pr.USrqEe-ml-Pr-qc-j .ub-sc-j {
padding-top: 29px;
}
.RnhyXe.paynGb {
border: none !important;
transition: all 0.2s;
}
.RnhyXe.paynGb:not(:disabled):hover {
transform: translateY(-3px);
}
.a-Va-Zb-M>input::placeholder {
color: #545d69;
}
#gs_lc50>input::placeholder {
color: #526274;
}
#gs_lc50>input[type=text] {
color: #a6bdda;
}
.a-ub-oa {
background-color: #0e1015;
}
.a-ub-va-d-c svg {
fill: white;
}
.a-ub-D {
border-left: none !important;
}
.a-ub-ra-B>.h-ra-B {
border-bottom: none !important;
}
.a-ub-ra-B>.h-ra-B>.h-ra {
color: #aac2df;
}
.a-ub-ra-B>.h-ra-B>.h-ra-ha {
color: #57bc74;
}
.a-ub-ra-B>.h-ra-B>.h-ra.h-ra-ha>.a-ra-Mb-j>.a-ra-Mb {
border-bottom: 4px solid #57bc74;
}
.z80MQ.FwR7Pc:focus {
background: #2fc66b !important;
}
.ZqJeHd.a-c-d.a-r-d {
color: #96afcd !important;
}
.KZ6CTb.a-c-d svg {
fill: #9eb9db !important;
}
.KZ6CTb.a-c-d:hover svg, .KZ6CTb.a-c-d:focus svg {
fill: #9eb9db !important;
}
.aabwZd .N7iPof {
border-bottom: none !important;
}
.N7iPof {
background-color: #111317 !important;
}
.iZz7md.aaQsNb:hover, .iZz7md.aaQsNb:hover svg, .iZz7md .I2rTXb:focus, .iZz7md .I2rTXb:focus svg {
color: #8a9fb9 !important;
fill: #8a9fb9 !important;
}
.iZz7md {
color: #99b7dc !important;
fill: #99b7dc !important;
}
.aabwZd .WYuW0e .M3pype[data-column-field="6"] {
color: #7292c1 !important;
fill: #7292c1 !important;
}
.aabwZd .WYuW0e {
-webkit-align-items: center !important;
align-items: center !important;
border: none !important;
border-bottom: 2px solid #2c3140 !important;
color: #798ca9 !important;
fill: #576375 !important;
}
.aabwZd .WYuW0e .M3pype .YUNZ4c {
color: #58bd75 !important;
}
.Yb-Il-d-c-j {
background-color: #2c323c !important;
}
.Yb-Il-d-c {
fill: #8da0c6 !important;
}
.s55KNe:not(.KBj6Qd) .GZwC2b .jGNTYb, .aabwZd:not(.KBj6Qd) .GZwC2b {
background-color: #1c1f25 !important;
}
.a-da-U .a-U-xc-J .a-s-T-c-j {
padding-right: 8px;
}
.af {
background-color: #0e1015;
border: none !important;
}
.le-Ba {
background-color: #1c1f25;
border-bottom: none !important;
}
.Ea-oa {
border-bottom: none !important;
color: #95a2cb;
display: block;
padding-bottom: 6px;
position: relative;
}
.a-Cd-oa {
background-color: #323b4b;
border-left: none !important;
border-right: none !important;
}
.a-Cd-Ba-j {
border-left: none !important;
border-right: none !important;
}
.a-s-fa-Ha-pa {
fill: #bfc5ce !important;
}
.f-G circle {
fill: #fbbc04 !important;
}
.a-f-n svg>circle {
fill: #c0cce36b;
}
.le-Ba-d {
color: #fbbc04;
}
.Ea-oa.Ea-G {
color: #fff;
}
.Ccie2c:focus .v2devc, .Ccie2c.Pb .v2devc {
background-color: #2f343d;
}
} | 0.164114 | 0.028463 |
@media (min-width: 769px) {
/* Header */
header .nav-logo {
margin-left: 5rem;
transition: transform 1s;
}
.nav-logo:hover, .nav-logo:focus {
transform: rotate(360deg);
}
.menu-list {
flex-direction: row;
width: auto;
height: auto;
position: static;
padding: 0;
border-radius: 0;
box-shadow: none;
transform: none;
}
.menu-list .list-item {
display: flex;
margin-bottom: 0;
padding: 0 1.5rem;
font-family: var(--default-font);
}
.list-item a {
white-space: nowrap;
font-size: var(--medium-font);
}
.list-item a:hover, .list-item a:focus {
color: var(--main-color);
}
.list-item .fas {
display: none;
}
/* Nav menu button */
.menu-toggle-btn {
display: none;
}
/* Footer */
.footer-container {
column-gap: 2.5rem;
grid-template-rows: auto;
grid-template-columns: 2fr repeat(3, 1fr);
grid-template-areas:
"logo hours address information"
"media hours address information"
"copyrights copyrights copyrights copyrights";
}
.logo-content {
margin: -3rem 0;
}
.logo-content img {
width: 176px;
}
.media-content {
margin-left: var(--mg-5);
}
.restaurant-info-links a {
margin-bottom: 0;
}
/* Home page */
.home-page {
margin-bottom: 5rem;
padding: 2rem 5rem;
}
@keyframes pulse {
from {
transform: scale(1);
}
to {
transform: scale(0.9);
}
}
.intro-container {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.intro-title {
font-size: var(--xx-large-font);
}
.intro-img {
margin: 0;
margin-left: 1rem;
max-width: 500px;
}
.menu-preview {
display: flex;
justify-content: space-evenly;
flex-direction: row-reverse;
margin-top: 5rem;
}
.preview-container {
margin: auto 0;
padding: 0 5rem 0;
}
.preview-title {
font-size: var(--large-font);
}
.samples-container {
flex-basis: 90%;
grid-template-columns: repeat(2, 1fr);
margin-top: 0;
}
.app-container {
margin-top: 5rem;
}
/* Menu */
.menu-container {
padding: 2rem 5rem;
}
.food-symbol {
margin-right: 33px;
justify-content: right;
}
.food-symbol span:first-child {
margin-right: var(--mg-3);
}
.featured-container {
column-gap: 4rem;
grid-template-columns: repeat(2, 1fr);
grid-template-areas:
"item1 item2"
"item3 item4";
}
.item img {
height: 400px;
}
.full-menu-container {
column-gap: 10%;
grid-template-areas:
"title title"
"appetizers main"
"desserts drinks";
}
.main-container {
margin-top: 0;
}
.desserts-container {
margin-top: 0;
}
.drinks-container {
margin-top: 0;
}
/* About */
.about-container {
padding: 2rem 5rem;
}
.about-content {
display: flex;
flex-direction: row-reverse;
margin-bottom: 5rem;
}
.about-img img {
margin: 0 5rem 0 0;
}
.card-container {
column-gap: 2rem;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
"service-one service-two service-three";
}
.service-three img {
height: 356px;
}
.card {
background-color: var(--main-color);
margin-bottom: 0;
}
.service-content {
position: relative;
margin-bottom: var(--mg-4);
}
.service-description {
color: var(---dark-text-color);
padding: 4rem 1.5rem 2rem;
line-height: 2rem;
}
.service-btn span {
margin-left: var(--mg-1);
font-size: var(--large-font);
}
/* Location */
.location-container {
padding: 2rem 5rem;
}
.location-content {
display: flex;
justify-content: space-between;
margin-bottom: var(--mg-6);
}
.restaurant-address {
align-self: center;
padding: 6rem 5rem 0 2rem;
min-width: 300px;
}
.restaurant-times table {
width: 50%;
border-collapse: collapse;
margin-bottom: var(--mg-6);
}
.restaurant-times table td:last-child {
text-align: right;
}
.restaurant-times table tr {
border-bottom: 1px solid var(--dark-text-color);
}
.restaurant-map {
width: 100%;
height: 400px;
}
/* Contact */
.contact-container {
padding: 2rem 5rem;
}
.submit-btn input:hover, .submit-btn input:focus {
background-color: #df8200;
color: var(--dark-text-color);
animation: pulse 1s;
}
/* Button effects */
.order-btn:hover, .view-menu-btn:hover,
.history-btn:hover, .locate-btn:hover {
color: var(--dark-text-color);
animation: pulse 1s;
}
.order-btn:focus, .view-menu-btn:focus,
.history-btn:focus, .locate-btn:focus {
color: var(--dark-text-color);
animation: pulse 1s;
}
}
@media (min-width: 481px) and (max-width: 798px) {
/* About */
.card-container {
column-gap: 2rem;
grid-template-areas:
"service-one service-one service-two service-two"
". service-three service-three .";
}
} | css/style.css | @media (min-width: 769px) {
/* Header */
header .nav-logo {
margin-left: 5rem;
transition: transform 1s;
}
.nav-logo:hover, .nav-logo:focus {
transform: rotate(360deg);
}
.menu-list {
flex-direction: row;
width: auto;
height: auto;
position: static;
padding: 0;
border-radius: 0;
box-shadow: none;
transform: none;
}
.menu-list .list-item {
display: flex;
margin-bottom: 0;
padding: 0 1.5rem;
font-family: var(--default-font);
}
.list-item a {
white-space: nowrap;
font-size: var(--medium-font);
}
.list-item a:hover, .list-item a:focus {
color: var(--main-color);
}
.list-item .fas {
display: none;
}
/* Nav menu button */
.menu-toggle-btn {
display: none;
}
/* Footer */
.footer-container {
column-gap: 2.5rem;
grid-template-rows: auto;
grid-template-columns: 2fr repeat(3, 1fr);
grid-template-areas:
"logo hours address information"
"media hours address information"
"copyrights copyrights copyrights copyrights";
}
.logo-content {
margin: -3rem 0;
}
.logo-content img {
width: 176px;
}
.media-content {
margin-left: var(--mg-5);
}
.restaurant-info-links a {
margin-bottom: 0;
}
/* Home page */
.home-page {
margin-bottom: 5rem;
padding: 2rem 5rem;
}
@keyframes pulse {
from {
transform: scale(1);
}
to {
transform: scale(0.9);
}
}
.intro-container {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.intro-title {
font-size: var(--xx-large-font);
}
.intro-img {
margin: 0;
margin-left: 1rem;
max-width: 500px;
}
.menu-preview {
display: flex;
justify-content: space-evenly;
flex-direction: row-reverse;
margin-top: 5rem;
}
.preview-container {
margin: auto 0;
padding: 0 5rem 0;
}
.preview-title {
font-size: var(--large-font);
}
.samples-container {
flex-basis: 90%;
grid-template-columns: repeat(2, 1fr);
margin-top: 0;
}
.app-container {
margin-top: 5rem;
}
/* Menu */
.menu-container {
padding: 2rem 5rem;
}
.food-symbol {
margin-right: 33px;
justify-content: right;
}
.food-symbol span:first-child {
margin-right: var(--mg-3);
}
.featured-container {
column-gap: 4rem;
grid-template-columns: repeat(2, 1fr);
grid-template-areas:
"item1 item2"
"item3 item4";
}
.item img {
height: 400px;
}
.full-menu-container {
column-gap: 10%;
grid-template-areas:
"title title"
"appetizers main"
"desserts drinks";
}
.main-container {
margin-top: 0;
}
.desserts-container {
margin-top: 0;
}
.drinks-container {
margin-top: 0;
}
/* About */
.about-container {
padding: 2rem 5rem;
}
.about-content {
display: flex;
flex-direction: row-reverse;
margin-bottom: 5rem;
}
.about-img img {
margin: 0 5rem 0 0;
}
.card-container {
column-gap: 2rem;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
"service-one service-two service-three";
}
.service-three img {
height: 356px;
}
.card {
background-color: var(--main-color);
margin-bottom: 0;
}
.service-content {
position: relative;
margin-bottom: var(--mg-4);
}
.service-description {
color: var(---dark-text-color);
padding: 4rem 1.5rem 2rem;
line-height: 2rem;
}
.service-btn span {
margin-left: var(--mg-1);
font-size: var(--large-font);
}
/* Location */
.location-container {
padding: 2rem 5rem;
}
.location-content {
display: flex;
justify-content: space-between;
margin-bottom: var(--mg-6);
}
.restaurant-address {
align-self: center;
padding: 6rem 5rem 0 2rem;
min-width: 300px;
}
.restaurant-times table {
width: 50%;
border-collapse: collapse;
margin-bottom: var(--mg-6);
}
.restaurant-times table td:last-child {
text-align: right;
}
.restaurant-times table tr {
border-bottom: 1px solid var(--dark-text-color);
}
.restaurant-map {
width: 100%;
height: 400px;
}
/* Contact */
.contact-container {
padding: 2rem 5rem;
}
.submit-btn input:hover, .submit-btn input:focus {
background-color: #df8200;
color: var(--dark-text-color);
animation: pulse 1s;
}
/* Button effects */
.order-btn:hover, .view-menu-btn:hover,
.history-btn:hover, .locate-btn:hover {
color: var(--dark-text-color);
animation: pulse 1s;
}
.order-btn:focus, .view-menu-btn:focus,
.history-btn:focus, .locate-btn:focus {
color: var(--dark-text-color);
animation: pulse 1s;
}
}
@media (min-width: 481px) and (max-width: 798px) {
/* About */
.card-container {
column-gap: 2rem;
grid-template-areas:
"service-one service-one service-two service-two"
". service-three service-three .";
}
} | 0.596198 | 0.133783 |
a
{
color:inherit;
text-decoration:none;
}
body
{
background-color:#333;
background-image:url(/static/img/playerbg.png);
background-position:center top;
background-repeat:repeat;
color:#CCC;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size:12px;
}
#container
{
margin:20px auto 0;
width:90%;
}
#logo
{
margin-bottom:15px;
}
#logo img
{
float:left;
}
#twitterButton
{
float:right;
height:20px!important;
padding-top:14px;
width:67px!important;
}
#twitterButton iframe
{
height:20px!important;
width:67px!important;
}
#controls
{
border:1px solid #666;
opacity: 0.7;
background-color: black;
}
.controlElement
{
border-right: 1px solid #666;
float: left;
line-height: 0;
}
.controlElement i
{
cursor:pointer;
padding:14px !important;
display: inline-block !important;
}
.controlElement i:active
{
bottom:-1px;
position:relative;
}
#nowPlaying
{
border:none;
line-height:15px;
margin-left:5px;
padding:6px;
}
#nowPlaying p
{
margin: 0 0 4px !important;
}
#nowPlaying img
{
display:inline;
margin:0 0 0 5px;
padding:0;
}
.nowPlayingTitle
{
font-weight:700;
letter-spacing:-1px;
}
#sublinks
{
opacity: 0.7;
background-color: black;
border:1px solid #666;
color:#eaeaea;
font-size:12px;
margin-top:10px;
padding:10px;
text-align:center;
}
#sublinks ul li
{
display:inline;
margin-right:15px;
}
.loader
{
cursor:default!important;
}
#embeds
{
height:0;
margin:0;
padding:0;
width:0;
}
#embeds *
{
height:0;
width:0;
}
/*
#volume
{
height:45px;
}
#ctrlStartStop
{
height:45px;
}
*/
#slider
{
margin-right:14px;
margin-top:16px;
width:100px;
float: right;
}
#frontrow
{
background-color:#EAEAEA;
border:1px solid #000;
color:#333;
height:100%;
left:0;
opacity:0.93;
position:fixed;
text-align:center;
top:0;
width:100%;
z-index:199;
}
#frontrow p
{
font-size:24px;
margin-top:50px;
}
#frontrow img
{
margin-top:15px;
}
#nowPlayingTrack a,#sublinks a
{
border-bottom:1px dotted #ccc;
}
#nowPlayingTrack a:hover,#sublinks a:hover
{
border-bottom:1px solid #ccc;
}
.slider
{
margin-right: 15px;
} | lib/rfk/static/css/html5player.css | a
{
color:inherit;
text-decoration:none;
}
body
{
background-color:#333;
background-image:url(/static/img/playerbg.png);
background-position:center top;
background-repeat:repeat;
color:#CCC;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size:12px;
}
#container
{
margin:20px auto 0;
width:90%;
}
#logo
{
margin-bottom:15px;
}
#logo img
{
float:left;
}
#twitterButton
{
float:right;
height:20px!important;
padding-top:14px;
width:67px!important;
}
#twitterButton iframe
{
height:20px!important;
width:67px!important;
}
#controls
{
border:1px solid #666;
opacity: 0.7;
background-color: black;
}
.controlElement
{
border-right: 1px solid #666;
float: left;
line-height: 0;
}
.controlElement i
{
cursor:pointer;
padding:14px !important;
display: inline-block !important;
}
.controlElement i:active
{
bottom:-1px;
position:relative;
}
#nowPlaying
{
border:none;
line-height:15px;
margin-left:5px;
padding:6px;
}
#nowPlaying p
{
margin: 0 0 4px !important;
}
#nowPlaying img
{
display:inline;
margin:0 0 0 5px;
padding:0;
}
.nowPlayingTitle
{
font-weight:700;
letter-spacing:-1px;
}
#sublinks
{
opacity: 0.7;
background-color: black;
border:1px solid #666;
color:#eaeaea;
font-size:12px;
margin-top:10px;
padding:10px;
text-align:center;
}
#sublinks ul li
{
display:inline;
margin-right:15px;
}
.loader
{
cursor:default!important;
}
#embeds
{
height:0;
margin:0;
padding:0;
width:0;
}
#embeds *
{
height:0;
width:0;
}
/*
#volume
{
height:45px;
}
#ctrlStartStop
{
height:45px;
}
*/
#slider
{
margin-right:14px;
margin-top:16px;
width:100px;
float: right;
}
#frontrow
{
background-color:#EAEAEA;
border:1px solid #000;
color:#333;
height:100%;
left:0;
opacity:0.93;
position:fixed;
text-align:center;
top:0;
width:100%;
z-index:199;
}
#frontrow p
{
font-size:24px;
margin-top:50px;
}
#frontrow img
{
margin-top:15px;
}
#nowPlayingTrack a,#sublinks a
{
border-bottom:1px dotted #ccc;
}
#nowPlayingTrack a:hover,#sublinks a:hover
{
border-bottom:1px solid #ccc;
}
.slider
{
margin-right: 15px;
} | 0.213705 | 0.074399 |
.minutes0 :nth-child(3){
background-image: url("minutes/0.png");
}
.minutes1 :nth-child(3){
background-image: url("minutes/1.png");
}
.minutes2 :nth-child(3){
background-image: url("minutes/2.png");
}
.minutes3 :nth-child(3){
background-image: url("minutes/3.png");
}
.minutes4 :nth-child(3){
background-image: url("minutes/4.png");
}
.minutes5 :nth-child(3){
background-image: url("minutes/5.png");
}
.minutes6 :nth-child(3){
background-image: url("minutes/6.png");
}
.minutes7 :nth-child(3){
background-image: url("minutes/7.png");
}
.minutes8 :nth-child(3){
background-image: url("minutes/8.png");
}
.minutes9 :nth-child(3){
background-image: url("minutes/9.png");
}
.minutes10 :nth-child(3){
background-image: url("minutes/10.png");
}
.minutes11 :nth-child(3){
background-image: url("minutes/11.png");
}
.minutes12 :nth-child(3){
background-image: url("minutes/12.png");
}
.minutes13 :nth-child(3){
background-image: url("minutes/13.png");
}
.minutes14 :nth-child(3){
background-image: url("minutes/14.png");
}
.minutes15 :nth-child(3){
background-image: url("minutes/15.png");
}
.minutes16 :nth-child(3){
background-image: url("minutes/16.png");
}
.minutes17 :nth-child(3){
background-image: url("minutes/17.png");
}
.minutes18 :nth-child(3){
background-image: url("minutes/18.png");
}
.minutes19 :nth-child(3){
background-image: url("minutes/19.png");
}
.minutes20 :nth-child(3){
background-image: url("minutes/20.png");
}
.minutes21 :nth-child(3){
background-image: url("minutes/21.png");
}
.minutes22 :nth-child(3){
background-image: url("minutes/22.png");
}
.minutes23 :nth-child(3){
background-image: url("minutes/23.png");
}
.minutes24 :nth-child(3){
background-image: url("minutes/24.png");
}
.minutes25 :nth-child(3){
background-image: url("minutes/25.png");
}
.minutes26 :nth-child(3){
background-image: url("minutes/26.png");
}
.minutes27 :nth-child(3){
background-image: url("minutes/27.png");
}
.minutes28 :nth-child(3){
background-image: url("minutes/28.png");
}
.minutes29 :nth-child(3){
background-image: url("minutes/29.png");
}
.minutes30 :nth-child(3){
background-image: url("minutes/30.png");
}
.minutes31 :nth-child(3){
background-image: url("minutes/31.png");
}
.minutes32 :nth-child(3){
background-image: url("minutes/32.png");
}
.minutes33 :nth-child(3){
background-image: url("minutes/33.png");
}
.minutes34 :nth-child(3){
background-image: url("minutes/34.png");
}
.minutes35 :nth-child(3){
background-image: url("minutes/35.png");
}
.minutes36 :nth-child(3){
background-image: url("minutes/36.png");
}
.minutes37 :nth-child(3){
background-image: url("minutes/37.png");
}
.minutes38 :nth-child(3){
background-image: url("minutes/38.png");
}
.minutes39 :nth-child(3){
background-image: url("minutes/39.png");
}
.minutes40 :nth-child(3){
background-image: url("minutes/40.png");
}
.minutes41 :nth-child(3){
background-image: url("minutes/41.png");
}
.minutes42 :nth-child(3){
background-image: url("minutes/42.png");
}
.minutes43 :nth-child(3){
background-image: url("minutes/43.png");
}
.minutes44 :nth-child(3){
background-image: url("minutes/44.png");
}
.minutes45 :nth-child(3){
background-image: url("minutes/45.png");
}
.minutes46 :nth-child(3){
background-image: url("minutes/46.png");
}
.minutes47 :nth-child(3){
background-image: url("minutes/47.png");
}
.minutes48 :nth-child(3){
background-image: url("minutes/48.png");
}
.minutes49 :nth-child(3){
background-image: url("minutes/49.png");
}
.minutes50 :nth-child(3){
background-image: url("minutes/50.png");
}
.minutes51 :nth-child(3){
background-image: url("minutes/51.png");
}
.minutes52 :nth-child(3){
background-image: url("minutes/52.png");
}
.minutes53 :nth-child(3){
background-image: url("minutes/53.png");
}
.minutes54 :nth-child(3){
background-image: url("minutes/54.png");
}
.minutes55 :nth-child(3){
background-image: url("minutes/55.png");
}
.minutes56 :nth-child(3){
background-image: url("minutes/56.png");
}
.minutes57 :nth-child(3){
background-image: url("minutes/57.png");
}
.minutes58 :nth-child(3){
background-image: url("minutes/58.png");
}
.minutes59 :nth-child(3){
background-image: url("minutes/59.png");
} | Clock/Standard/minutes.css | .minutes0 :nth-child(3){
background-image: url("minutes/0.png");
}
.minutes1 :nth-child(3){
background-image: url("minutes/1.png");
}
.minutes2 :nth-child(3){
background-image: url("minutes/2.png");
}
.minutes3 :nth-child(3){
background-image: url("minutes/3.png");
}
.minutes4 :nth-child(3){
background-image: url("minutes/4.png");
}
.minutes5 :nth-child(3){
background-image: url("minutes/5.png");
}
.minutes6 :nth-child(3){
background-image: url("minutes/6.png");
}
.minutes7 :nth-child(3){
background-image: url("minutes/7.png");
}
.minutes8 :nth-child(3){
background-image: url("minutes/8.png");
}
.minutes9 :nth-child(3){
background-image: url("minutes/9.png");
}
.minutes10 :nth-child(3){
background-image: url("minutes/10.png");
}
.minutes11 :nth-child(3){
background-image: url("minutes/11.png");
}
.minutes12 :nth-child(3){
background-image: url("minutes/12.png");
}
.minutes13 :nth-child(3){
background-image: url("minutes/13.png");
}
.minutes14 :nth-child(3){
background-image: url("minutes/14.png");
}
.minutes15 :nth-child(3){
background-image: url("minutes/15.png");
}
.minutes16 :nth-child(3){
background-image: url("minutes/16.png");
}
.minutes17 :nth-child(3){
background-image: url("minutes/17.png");
}
.minutes18 :nth-child(3){
background-image: url("minutes/18.png");
}
.minutes19 :nth-child(3){
background-image: url("minutes/19.png");
}
.minutes20 :nth-child(3){
background-image: url("minutes/20.png");
}
.minutes21 :nth-child(3){
background-image: url("minutes/21.png");
}
.minutes22 :nth-child(3){
background-image: url("minutes/22.png");
}
.minutes23 :nth-child(3){
background-image: url("minutes/23.png");
}
.minutes24 :nth-child(3){
background-image: url("minutes/24.png");
}
.minutes25 :nth-child(3){
background-image: url("minutes/25.png");
}
.minutes26 :nth-child(3){
background-image: url("minutes/26.png");
}
.minutes27 :nth-child(3){
background-image: url("minutes/27.png");
}
.minutes28 :nth-child(3){
background-image: url("minutes/28.png");
}
.minutes29 :nth-child(3){
background-image: url("minutes/29.png");
}
.minutes30 :nth-child(3){
background-image: url("minutes/30.png");
}
.minutes31 :nth-child(3){
background-image: url("minutes/31.png");
}
.minutes32 :nth-child(3){
background-image: url("minutes/32.png");
}
.minutes33 :nth-child(3){
background-image: url("minutes/33.png");
}
.minutes34 :nth-child(3){
background-image: url("minutes/34.png");
}
.minutes35 :nth-child(3){
background-image: url("minutes/35.png");
}
.minutes36 :nth-child(3){
background-image: url("minutes/36.png");
}
.minutes37 :nth-child(3){
background-image: url("minutes/37.png");
}
.minutes38 :nth-child(3){
background-image: url("minutes/38.png");
}
.minutes39 :nth-child(3){
background-image: url("minutes/39.png");
}
.minutes40 :nth-child(3){
background-image: url("minutes/40.png");
}
.minutes41 :nth-child(3){
background-image: url("minutes/41.png");
}
.minutes42 :nth-child(3){
background-image: url("minutes/42.png");
}
.minutes43 :nth-child(3){
background-image: url("minutes/43.png");
}
.minutes44 :nth-child(3){
background-image: url("minutes/44.png");
}
.minutes45 :nth-child(3){
background-image: url("minutes/45.png");
}
.minutes46 :nth-child(3){
background-image: url("minutes/46.png");
}
.minutes47 :nth-child(3){
background-image: url("minutes/47.png");
}
.minutes48 :nth-child(3){
background-image: url("minutes/48.png");
}
.minutes49 :nth-child(3){
background-image: url("minutes/49.png");
}
.minutes50 :nth-child(3){
background-image: url("minutes/50.png");
}
.minutes51 :nth-child(3){
background-image: url("minutes/51.png");
}
.minutes52 :nth-child(3){
background-image: url("minutes/52.png");
}
.minutes53 :nth-child(3){
background-image: url("minutes/53.png");
}
.minutes54 :nth-child(3){
background-image: url("minutes/54.png");
}
.minutes55 :nth-child(3){
background-image: url("minutes/55.png");
}
.minutes56 :nth-child(3){
background-image: url("minutes/56.png");
}
.minutes57 :nth-child(3){
background-image: url("minutes/57.png");
}
.minutes58 :nth-child(3){
background-image: url("minutes/58.png");
}
.minutes59 :nth-child(3){
background-image: url("minutes/59.png");
} | 0.1602 | 0.353735 |
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
:root{
--main-color:#e38528;
}
*{
font-family: 'Roboto', sans-serif;
margin:0; padding:0;
box-sizing: border-box;
outline: none; border:none;
text-decoration: none;
text-transform: capitalize;
transition: all .2s linear;
line-height: 1.5;
}
html{
font-size: 62.5%;
overflow-x: hidden;
scroll-behavior: smooth;
}
body{
background: #ffffff;
padding-left: 30rem;
}
section{
padding:1rem 5%;
min-height: 100vh;
}
.heading{
font-size: 4rem;
padding-bottom: 1rem;
color:#111;
text-transform: uppercase;
}
.heading span{
color:var(--main-color);
text-transform: uppercase;
}
.btn{
display: inline-block;
margin-top: 1rem;
padding:.8rem 3rem;
background:var(--main-color);
color:#fff;
cursor: pointer;
font-size: 1.7rem;
}
.btn:hover{
background:#111;
letter-spacing: .2rem;
}
header{
position: fixed;
top:0; left:0; bottom:0;
background:#222;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1000;
flex-flow: column;
padding:8rem 2rem;
width:30rem;
text-align: center;
}
header .logo{
text-transform: uppercase;
color:#fff;
font-size: 3rem;
font-weight: bolder;
}
header .logo span{
text-transform: uppercase;
color: #f66;
}
header .navbar a{
display: block;
font-size: 2rem;
color:#fff;
margin:2rem 0;
}
header .navbar a:hover{
letter-spacing: .2rem;
color:var(--main-color);
}
header .follow a{
font-size: 2.5rem;
color:#fff;
margin:0 .7rem;
}
header .follow a:hover{
color:var(--main-color);
}
#menu-bars{
position: fixed;
top:1rem; right: 1rem;
z-index: 10000;
background:var(--main-color);
color:#fff;
border-radius: .5rem;
padding:1rem 1.5rem;
font-size: 3rem;
cursor:pointer;
display: none;
}
.cursor-1{
position: absolute;
top:0; left:0;
height:1rem; width:1rem;
background: var(--main-color);
pointer-events: none;
transform: translate(-50%, -50%);
border-radius: 50%;
z-index: 10000;
}
.cursor-1.active{
height:7rem;
width:7rem;
opacity: .3;
}
.cursor-2{
position: absolute;
top:0; left:0;
height:4rem; width:4rem;
border:.1rem solid var(--main-color);
pointer-events: none;
transform: translate(-50%, -50%);
border-radius: 50%;
z-index: 10000;
transition: .3s linear;
}
.cursor-2.active{
display: none;
}
.one span {
color: #f66;
}
.one {
padding-left: 299px;
font-size: 2.8rem;
color: rgb(63, 62, 62);
padding-top: 80px;
}
.text1 {
color: rgb(44, 40, 40);
padding-top: 15px;
font-size: 1.5rem;
}
.text2 {
font-size: 2.8rem;
padding-top: 20px;
color: #000000;
}
.text3 {
font-size: 2.8rem;
padding-top: 20px;
color: #f66;
}
.Aritméticos img {
padding-left: 259px;
padding-top: 35px;
}
span {
color: #f66;
}
.ad {
padding-left: 10px;
font-size: 2.8rem;
color: rgb(63, 62, 62);
padding-top: 80px;
}
/* media queries */
@media (max-width:991px){
html{
font-size: 55%;
}
body{
padding: 0;
}
#menu-bars{
display: initial;
}
header{
left:-120%;
}
header.active{
left:0%;
}
.cursor-1,
.cursor-2{
display: none;
}
}
@media (max-width:450px){
html{
font-size: 50%;
}
header{
width:100%;
}
.experience .box-container .box{
padding-right: 0;
}
} | src/css/operation.css | @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
:root{
--main-color:#e38528;
}
*{
font-family: 'Roboto', sans-serif;
margin:0; padding:0;
box-sizing: border-box;
outline: none; border:none;
text-decoration: none;
text-transform: capitalize;
transition: all .2s linear;
line-height: 1.5;
}
html{
font-size: 62.5%;
overflow-x: hidden;
scroll-behavior: smooth;
}
body{
background: #ffffff;
padding-left: 30rem;
}
section{
padding:1rem 5%;
min-height: 100vh;
}
.heading{
font-size: 4rem;
padding-bottom: 1rem;
color:#111;
text-transform: uppercase;
}
.heading span{
color:var(--main-color);
text-transform: uppercase;
}
.btn{
display: inline-block;
margin-top: 1rem;
padding:.8rem 3rem;
background:var(--main-color);
color:#fff;
cursor: pointer;
font-size: 1.7rem;
}
.btn:hover{
background:#111;
letter-spacing: .2rem;
}
header{
position: fixed;
top:0; left:0; bottom:0;
background:#222;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1000;
flex-flow: column;
padding:8rem 2rem;
width:30rem;
text-align: center;
}
header .logo{
text-transform: uppercase;
color:#fff;
font-size: 3rem;
font-weight: bolder;
}
header .logo span{
text-transform: uppercase;
color: #f66;
}
header .navbar a{
display: block;
font-size: 2rem;
color:#fff;
margin:2rem 0;
}
header .navbar a:hover{
letter-spacing: .2rem;
color:var(--main-color);
}
header .follow a{
font-size: 2.5rem;
color:#fff;
margin:0 .7rem;
}
header .follow a:hover{
color:var(--main-color);
}
#menu-bars{
position: fixed;
top:1rem; right: 1rem;
z-index: 10000;
background:var(--main-color);
color:#fff;
border-radius: .5rem;
padding:1rem 1.5rem;
font-size: 3rem;
cursor:pointer;
display: none;
}
.cursor-1{
position: absolute;
top:0; left:0;
height:1rem; width:1rem;
background: var(--main-color);
pointer-events: none;
transform: translate(-50%, -50%);
border-radius: 50%;
z-index: 10000;
}
.cursor-1.active{
height:7rem;
width:7rem;
opacity: .3;
}
.cursor-2{
position: absolute;
top:0; left:0;
height:4rem; width:4rem;
border:.1rem solid var(--main-color);
pointer-events: none;
transform: translate(-50%, -50%);
border-radius: 50%;
z-index: 10000;
transition: .3s linear;
}
.cursor-2.active{
display: none;
}
.one span {
color: #f66;
}
.one {
padding-left: 299px;
font-size: 2.8rem;
color: rgb(63, 62, 62);
padding-top: 80px;
}
.text1 {
color: rgb(44, 40, 40);
padding-top: 15px;
font-size: 1.5rem;
}
.text2 {
font-size: 2.8rem;
padding-top: 20px;
color: #000000;
}
.text3 {
font-size: 2.8rem;
padding-top: 20px;
color: #f66;
}
.Aritméticos img {
padding-left: 259px;
padding-top: 35px;
}
span {
color: #f66;
}
.ad {
padding-left: 10px;
font-size: 2.8rem;
color: rgb(63, 62, 62);
padding-top: 80px;
}
/* media queries */
@media (max-width:991px){
html{
font-size: 55%;
}
body{
padding: 0;
}
#menu-bars{
display: initial;
}
header{
left:-120%;
}
header.active{
left:0%;
}
.cursor-1,
.cursor-2{
display: none;
}
}
@media (max-width:450px){
html{
font-size: 50%;
}
header{
width:100%;
}
.experience .box-container .box{
padding-right: 0;
}
} | 0.351979 | 0.055285 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
body {
background: linear-gradient(190.8deg, rgba(215, 131, 144, 0.3) -8.75%, rgba(170, 113, 121, 0.208108) 32.5%, rgba(36, 9, 13, 0) 93.77%), #120505;
}
.header {
display: flex;
flex-wrap: wrap;
gap: 40px;
align-items: center;
justify-content: space-around;
padding: 20px;
}
.header-menu {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 40px;
}
.header-menu a {
color: #FFF2E7;
font-family: 'Sarala', sans-serif;
font-size: 1.125rem;
}
/* section ---------------------- */
.conteudo {
display: flex;
justify-content: space-around;
align-items: center;
gap: 40px;
padding: 40px 20px;
border-top: 0.4px solid #FFF2E7;
margin-bottom: 20px;
}
.image {
position: relative;
}
.conteudo img {
max-width: 100%;
display: block;
filter: drop-shadow(0 0 2rem rgb(165, 20, 20));
}
.conteudo .video-trailer {
position: absolute;
background: rgb(206, 182, 182, .6);
height: 360px;
width: 360px;
border-radius: 50%;
top: 0;
opacity: 0;
transition: 2s ease-in-out;
}
.conteudo .video-trailer:hover {
opacity: 1;
}
.conteudo .video-trailer a {
font-family: 'Sarala', sans-serif;
color: #ECD6C4;
font-size: 1.25rem;
padding: 10px;
background: #221e1e;
border-radius: 8px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 900px) {
.conteudo .video-trailer {
display: none;
}
}
.conteudo-texto {
display: flex;
flex-direction: column;
gap:32px;
}
.conteudo h1 {
font-family: 'Righteous', cursive;
font-size: 4rem;
color: #FFF2E7;
}
.conteudo-texto p {
color: #ECD6C4;
font-size: 1.5rem;
}
.conteudo-btn {
font-family: 'Sarala', sans-serif;
color: #2F2325;
background: #E3CDAC;
border-radius: 20px;
padding: 10px 30px;
place-self: start;
box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
transition: .3s ease-out;
}
.conteudo-btn:hover {
background: #FFF2E7;
}
@media (max-width: 700px) {
.header {
gap: 20px;
}
.header-menu {
gap: 20px;
}
.header-menu a {
font-size: 1rem;
gap: 10px;
background: #855f5f69;
padding: 5px 10px;
border-radius: 4px;
}
.conteudo {
flex-direction: column;
}
.conteudo-texto {
align-items: center;
gap: 20px;
}
.conteudo-texto h1 {
font-size: 2.5rem;
}
.conteudo-texto p {
text-align: center;
font-size: 1.25rem;
}
.conteudo-btn {
place-self: center;
}
}
/* section ------------ */
.motivos {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
padding: 0px 20px;
}
.motivos h2 {
font-family: 'Righteous', cursive;
font-weight: 400;
color: #FFF2E7;
margin-bottom: 40px;
border-top: 0.4px solid #FFF2E7;
padding-top: 40px;
}
.motivos ul {
list-style: none;
font-family: 'Sarala', sans-serif;
color: #ECD6C4;
display: flex;
flex-direction: column;
gap: 20px;
justify-content: center;
align-items: center;
text-align: center;
}
.footer {
border-top: 0.4px solid #FFF2E7;
text-align: center;
padding: 10px 20px;
}
.footer p {
color: #FFF2E7;
font-size: 4rem;
}
@media (max-width: 800px) {
.footer p {
font-size: 2.5rem;
}
} | style.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
body {
background: linear-gradient(190.8deg, rgba(215, 131, 144, 0.3) -8.75%, rgba(170, 113, 121, 0.208108) 32.5%, rgba(36, 9, 13, 0) 93.77%), #120505;
}
.header {
display: flex;
flex-wrap: wrap;
gap: 40px;
align-items: center;
justify-content: space-around;
padding: 20px;
}
.header-menu {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 40px;
}
.header-menu a {
color: #FFF2E7;
font-family: 'Sarala', sans-serif;
font-size: 1.125rem;
}
/* section ---------------------- */
.conteudo {
display: flex;
justify-content: space-around;
align-items: center;
gap: 40px;
padding: 40px 20px;
border-top: 0.4px solid #FFF2E7;
margin-bottom: 20px;
}
.image {
position: relative;
}
.conteudo img {
max-width: 100%;
display: block;
filter: drop-shadow(0 0 2rem rgb(165, 20, 20));
}
.conteudo .video-trailer {
position: absolute;
background: rgb(206, 182, 182, .6);
height: 360px;
width: 360px;
border-radius: 50%;
top: 0;
opacity: 0;
transition: 2s ease-in-out;
}
.conteudo .video-trailer:hover {
opacity: 1;
}
.conteudo .video-trailer a {
font-family: 'Sarala', sans-serif;
color: #ECD6C4;
font-size: 1.25rem;
padding: 10px;
background: #221e1e;
border-radius: 8px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 900px) {
.conteudo .video-trailer {
display: none;
}
}
.conteudo-texto {
display: flex;
flex-direction: column;
gap:32px;
}
.conteudo h1 {
font-family: 'Righteous', cursive;
font-size: 4rem;
color: #FFF2E7;
}
.conteudo-texto p {
color: #ECD6C4;
font-size: 1.5rem;
}
.conteudo-btn {
font-family: 'Sarala', sans-serif;
color: #2F2325;
background: #E3CDAC;
border-radius: 20px;
padding: 10px 30px;
place-self: start;
box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
transition: .3s ease-out;
}
.conteudo-btn:hover {
background: #FFF2E7;
}
@media (max-width: 700px) {
.header {
gap: 20px;
}
.header-menu {
gap: 20px;
}
.header-menu a {
font-size: 1rem;
gap: 10px;
background: #855f5f69;
padding: 5px 10px;
border-radius: 4px;
}
.conteudo {
flex-direction: column;
}
.conteudo-texto {
align-items: center;
gap: 20px;
}
.conteudo-texto h1 {
font-size: 2.5rem;
}
.conteudo-texto p {
text-align: center;
font-size: 1.25rem;
}
.conteudo-btn {
place-self: center;
}
}
/* section ------------ */
.motivos {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
padding: 0px 20px;
}
.motivos h2 {
font-family: 'Righteous', cursive;
font-weight: 400;
color: #FFF2E7;
margin-bottom: 40px;
border-top: 0.4px solid #FFF2E7;
padding-top: 40px;
}
.motivos ul {
list-style: none;
font-family: 'Sarala', sans-serif;
color: #ECD6C4;
display: flex;
flex-direction: column;
gap: 20px;
justify-content: center;
align-items: center;
text-align: center;
}
.footer {
border-top: 0.4px solid #FFF2E7;
text-align: center;
padding: 10px 20px;
}
.footer p {
color: #FFF2E7;
font-size: 4rem;
}
@media (max-width: 800px) {
.footer p {
font-size: 2.5rem;
}
} | 0.400398 | 0.086478 |
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
color: #073144;
font-family: "Open Sans", sans-serif;
line-height: 2;
font-size: 1.125rem;
margin: 0;
padding: 0;
}
p {
margin: 0 0 1.5em 0;
}
.container {
display: grid;
margin: 4rem auto;
max-width: 1100px;
grid-template-columns: 200px 1fr;
grid-column-gap: 4rem;
}
nav {
background-color: white;
position: sticky;
top: 4rem;
}
.case-study-elements {
counter-reset: li;
display: flex;
flex-direction: column;
justify-content: space-between;
list-style: none;
margin: 0;
padding: 0;
}
.case-study-elements a {
align-items: center;
border: none;
color: #22ace0;
display: inline-flex;
font-size: .875rem;
margin-bottom: 5px;
padding: .3125rem .9375rem .3125rem 2.625rem;
position: relative;
text-decoration: none;
text-decoration: none;
text-transform: uppercase;
transition: none;
width: 100%;
}
.case-study-elements li a::before {
border-radius: 100%;
border: 2px solid #b9c3ce;
color: #b9c3ce;
content: counter(li);
counter-increment: li;
font-weight: normal;
height: 20px;
left: 7px;
line-height: 20px;
position: absolute;
text-align: center;
top: 6px;
width: 20px;
}
.case-study-elements a:hover {
color: #df1360
}
.case-study-elements a:hover::before {
color: #df1360;
border-color: #df1360;
}
.case-study-elements li a.active {
color: #df1360
}
.case-study-elements a.active::before {
background-color: #df1360;
border: 2px solid #df1360;
color: white;
}
.content-section {
margin-bottom: 6rem;
scroll-snap-align: start;
}
.content {
counter-reset: h1counter;
}
.content-sub-head {
align-items: center;
display: flex;
font-size: 2.25rem;
font-weight: lighter;
margin-top: 0;
}
.content-sub-head::before {
background-color: #da2061;
border-radius: 100%;
color: #fff;
content: counter(h1counter);
counter-increment: h1counter;
display: block;
display: block;
font-size: 1.375rem;
font-size: 22px;
font-weight: 400;
height: 50px;
line-height: 50px;
margin-right: 1rem;
text-align: center;
width: 50px;
} | demos/list-example/style.css | * {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
color: #073144;
font-family: "Open Sans", sans-serif;
line-height: 2;
font-size: 1.125rem;
margin: 0;
padding: 0;
}
p {
margin: 0 0 1.5em 0;
}
.container {
display: grid;
margin: 4rem auto;
max-width: 1100px;
grid-template-columns: 200px 1fr;
grid-column-gap: 4rem;
}
nav {
background-color: white;
position: sticky;
top: 4rem;
}
.case-study-elements {
counter-reset: li;
display: flex;
flex-direction: column;
justify-content: space-between;
list-style: none;
margin: 0;
padding: 0;
}
.case-study-elements a {
align-items: center;
border: none;
color: #22ace0;
display: inline-flex;
font-size: .875rem;
margin-bottom: 5px;
padding: .3125rem .9375rem .3125rem 2.625rem;
position: relative;
text-decoration: none;
text-decoration: none;
text-transform: uppercase;
transition: none;
width: 100%;
}
.case-study-elements li a::before {
border-radius: 100%;
border: 2px solid #b9c3ce;
color: #b9c3ce;
content: counter(li);
counter-increment: li;
font-weight: normal;
height: 20px;
left: 7px;
line-height: 20px;
position: absolute;
text-align: center;
top: 6px;
width: 20px;
}
.case-study-elements a:hover {
color: #df1360
}
.case-study-elements a:hover::before {
color: #df1360;
border-color: #df1360;
}
.case-study-elements li a.active {
color: #df1360
}
.case-study-elements a.active::before {
background-color: #df1360;
border: 2px solid #df1360;
color: white;
}
.content-section {
margin-bottom: 6rem;
scroll-snap-align: start;
}
.content {
counter-reset: h1counter;
}
.content-sub-head {
align-items: center;
display: flex;
font-size: 2.25rem;
font-weight: lighter;
margin-top: 0;
}
.content-sub-head::before {
background-color: #da2061;
border-radius: 100%;
color: #fff;
content: counter(h1counter);
counter-increment: h1counter;
display: block;
display: block;
font-size: 1.375rem;
font-size: 22px;
font-weight: 400;
height: 50px;
line-height: 50px;
margin-right: 1rem;
text-align: center;
width: 50px;
} | 0.544317 | 0.115262 |
.td_h_a {
color: #6c6b6b;
text-decoration: none;
padding-right: 50px; }
.td_h {
color: #6c6b6b;
font-weight: 400;
font-size: 14px;
letter-spacing: 0.5px; }
/* billboard stlye 1 */
.td_bb {
text-align: center; }
.span_bb {
font-weight: 500;
letter-spacing: 1px; }
/* Blog */
.a_blog {
text-decoration: none; }
.td_blog {
color: #8b8b8b;
font-size: 12px;
font-weight: 300;
letter-spacing: .5px; }
/* Call action */
.td_call {
color: #676767;
font-size: 20px;
letter-spacing: .5px;
line-height: 30px;
text-transform: uppercase;
text-align: center;
font-weight: 300; }
/* Clients */
.a_clients {
text-decoration: none;
display: block; }
/* Content */
.td_cont {
width: 40px; }
.a_cont {
color: #676767;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .5px;
line-height: 26px;
text-decoration: none; }
/* Features */
.td_f {
vertical-align: top; }
.p_f {
color: #8b8b8b;
font-weight: 400;
font-size: 14px;
line-height: 26px; }
/* Footer */
.a_fo {
text-decoration: none;
border: 0; }
.td_fo {
text-align: center;
color: #bcc9dd;
font-weight: 400;
font-size: 12px;
letter-spacing: .5px; }
footer {
position: absolute;
bottom: 0;
width: 100%;
box-sizing: border-box; }
/* Testimonials */
.p_test {
width: 240px;
padding: 33px 20px 35px 20px;
border-top: 1px solid #e6e6e6;
border-right: 1px solid #e6e6e6;
border-left: 1px solid #e6e6e6;
color: #8c8c8c;
font-weight: 400;
font-size: 14px;
letter-spacing: .5px;
line-height: 26px; }
.td_test {
color: #676767;
font-size: 14px;
font-weight: 600;
letter-spacing: .5px; }
/* Services */
.p_ser {
color: #8b8b8b;
font-weight: 400;
font-size: 14px;
line-height: 24px;
letter-spacing: .5px; }
.a_ser {
color: #605f5f;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
text-decoration: none; }
* {
font-family: "Roboto", sans-serif; }
html {
width: 100%;
position: relative;
min-height: 100%; }
body {
width: 100%;
margin: 0;
padding: 0;
background: #ffffff; }
p, h1, h2, h3, h4 {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0; }
table {
font-size: 14px;
border: 0; }
img {
border: none !important; }
/*# sourceMappingURL=style.css.map */ | public/stylesheets/style.css | .td_h_a {
color: #6c6b6b;
text-decoration: none;
padding-right: 50px; }
.td_h {
color: #6c6b6b;
font-weight: 400;
font-size: 14px;
letter-spacing: 0.5px; }
/* billboard stlye 1 */
.td_bb {
text-align: center; }
.span_bb {
font-weight: 500;
letter-spacing: 1px; }
/* Blog */
.a_blog {
text-decoration: none; }
.td_blog {
color: #8b8b8b;
font-size: 12px;
font-weight: 300;
letter-spacing: .5px; }
/* Call action */
.td_call {
color: #676767;
font-size: 20px;
letter-spacing: .5px;
line-height: 30px;
text-transform: uppercase;
text-align: center;
font-weight: 300; }
/* Clients */
.a_clients {
text-decoration: none;
display: block; }
/* Content */
.td_cont {
width: 40px; }
.a_cont {
color: #676767;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .5px;
line-height: 26px;
text-decoration: none; }
/* Features */
.td_f {
vertical-align: top; }
.p_f {
color: #8b8b8b;
font-weight: 400;
font-size: 14px;
line-height: 26px; }
/* Footer */
.a_fo {
text-decoration: none;
border: 0; }
.td_fo {
text-align: center;
color: #bcc9dd;
font-weight: 400;
font-size: 12px;
letter-spacing: .5px; }
footer {
position: absolute;
bottom: 0;
width: 100%;
box-sizing: border-box; }
/* Testimonials */
.p_test {
width: 240px;
padding: 33px 20px 35px 20px;
border-top: 1px solid #e6e6e6;
border-right: 1px solid #e6e6e6;
border-left: 1px solid #e6e6e6;
color: #8c8c8c;
font-weight: 400;
font-size: 14px;
letter-spacing: .5px;
line-height: 26px; }
.td_test {
color: #676767;
font-size: 14px;
font-weight: 600;
letter-spacing: .5px; }
/* Services */
.p_ser {
color: #8b8b8b;
font-weight: 400;
font-size: 14px;
line-height: 24px;
letter-spacing: .5px; }
.a_ser {
color: #605f5f;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
text-decoration: none; }
* {
font-family: "Roboto", sans-serif; }
html {
width: 100%;
position: relative;
min-height: 100%; }
body {
width: 100%;
margin: 0;
padding: 0;
background: #ffffff; }
p, h1, h2, h3, h4 {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0; }
table {
font-size: 14px;
border: 0; }
img {
border: none !important; }
/*# sourceMappingURL=style.css.map */ | 0.311951 | 0.143278 |
width: 100vw;
height: 100vh;
margin-top: 70px;
margin-bottom: -70px;
background: linear-gradient(180deg, rgb(11,16,20) 80%, rgb(119,12,157) 100%);
}
.text-container {
position: absolute;
top: 20%;
left: 50%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.date { margin-bottom: -20px; }
.location { text-align: left; }
/* Container for buttons */
.button-container {
position: absolute;
top: 40%;
left: 49.3%;
z-index: 2;
display: inline-block;
}
/* Buttons */
.button1, .button2 {
position: relative;
display: inline-block;
width: 260px;
height: 40px;
margin: 10px;
font-size: 18px;
font-weight: 900;
letter-spacing: 0.08em;
line-height: 50px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
background-color: transparent;
cursor: pointer;
}
.button1 svg {
position: absolute;
top: 0;
left: 0;
}
.button1 svg rect {
//stroke: #ec0033;
stroke-width: 3;
stroke-dasharray: 353, 0;
stroke-dashoffset: 0;
-webkit-transition: all 600ms ease;
transition: all 600ms ease;
}
.button1 span {
background: rgb(255,130,130);
background: -moz-linear-gradient(bottom, rgba(155,125,225,1) 0%, rgba(225,120,237,1) 100%);
background: -webkit-linear-gradient(bottom, rgba(155,125,225,1) 0%, rgba(225,120,237,1) 100%);
background: linear-gradient(to top, rgba(155,125,255,1) 0%, rgba(225,120,237,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9b7de1', endColorstr='#e178ed', GradientType=1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.button1:hover svg rect {
stroke-width: 3;
stroke-dasharray: 200, 550;
stroke-dashoffset: 437;
}
.button2 svg {
position: absolute;
top: 0;
left: 0;
}
.button2 svg rect {
//stroke: #ec0033;
stroke-width: 3;
stroke-dasharray: 353, 0;
stroke-dashoffset: 0;
-webkit-transition: all 600ms ease;
transition: all 600ms ease;
}
.button2 span {
background: rgb(255,130,130);
background: -moz-linear-gradient(bottom, rgba(155,125,225,1) 0%, rgba(225,120,237,1) 100%);
background: -webkit-linear-gradient(bottom, rgba(155,125,225,1) 0%, rgba(225,120,237,1) 100%);
background: linear-gradient(to top, rgba(155,125,255,1) 0%, rgba(225,120,237,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9b7de1', endColorstr='#e178ed', GradientType=1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.button2:hover svg rect {
stroke-width: 3;
stroke-dasharray: 200, 550;
stroke-dashoffset: 437;
}
#logo {
position: absolute;
top: 15%;
left: 1%;
display: flex;
width: 50vw;
}
#cityscape {
position: absolute;
bottom: 0;
z-index: 1;
width: 100%;
justify-content: flex-end;
align-items: flex-end;
}
/* Media Queries */
@media screen and (max-width: 324px) {
#intro { height: 90%; }
.text-container {
position: relative;
top: -2rem;
left: 10%;
display: block;
width: 80vw;
}
.date { margin-bottom: -1rem; }
.location { text-align: center; }
.button-container {
position: relative;
top: -3rem;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#logo {
position: relative;
top: 0;
display: block;
width: 98vw;
}
#cityscape {
position: relative;
top: -4rem;
}
}
/* Add navbar to each media query except 1024 */
@media screen and (min-width: 325px) and (max-width: 426px) {
#intro { height: 90%; }
.text-container {
position: relative;
top: -2rem;
left: 10%;
display: block;
width: 80vw;
}
.date {
margin-bottom: -1rem;
}
.location {
text-align: center;
}
.button-container {
position: relative;
top: -3rem;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#logo {
position: relative;
top: 0;
display: block;
width: 98vw;
}
#cityscape {
position: relative;
top: -4rem;
}
}
@media screen and (min-width: 427px) and (max-width: 768px) {
.text-container {
position: relative;
display: block;
flex-direction: column;
top: -2rem;
left: 10%;
width: 80vw;
}
.location { text-align: center; }
.button-container {
position: relative;
top: -3rem;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#logo {
position: relative;
top: 0;
left: 25%;
display: flex;
width: 50vw;
}
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
.text-container {
position: absolute;
top: 15%;
left: 50%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.button-container {
margin-top: 10px;
}
}
@media screen and (max-width: 1365px) and (min-width: 1025px) {
#logo {
height: 50%;
}
#cityscape {
height: 50%;
}
.button-container {
margin-top: 50px;
}
}
@media screen and (min-width: 1366px) {
#logo {
height: 50%;
}
#cityscape {
height: 50%;
}
} | src/components/Intro.css | width: 100vw;
height: 100vh;
margin-top: 70px;
margin-bottom: -70px;
background: linear-gradient(180deg, rgb(11,16,20) 80%, rgb(119,12,157) 100%);
}
.text-container {
position: absolute;
top: 20%;
left: 50%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.date { margin-bottom: -20px; }
.location { text-align: left; }
/* Container for buttons */
.button-container {
position: absolute;
top: 40%;
left: 49.3%;
z-index: 2;
display: inline-block;
}
/* Buttons */
.button1, .button2 {
position: relative;
display: inline-block;
width: 260px;
height: 40px;
margin: 10px;
font-size: 18px;
font-weight: 900;
letter-spacing: 0.08em;
line-height: 50px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
background-color: transparent;
cursor: pointer;
}
.button1 svg {
position: absolute;
top: 0;
left: 0;
}
.button1 svg rect {
//stroke: #ec0033;
stroke-width: 3;
stroke-dasharray: 353, 0;
stroke-dashoffset: 0;
-webkit-transition: all 600ms ease;
transition: all 600ms ease;
}
.button1 span {
background: rgb(255,130,130);
background: -moz-linear-gradient(bottom, rgba(155,125,225,1) 0%, rgba(225,120,237,1) 100%);
background: -webkit-linear-gradient(bottom, rgba(155,125,225,1) 0%, rgba(225,120,237,1) 100%);
background: linear-gradient(to top, rgba(155,125,255,1) 0%, rgba(225,120,237,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9b7de1', endColorstr='#e178ed', GradientType=1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.button1:hover svg rect {
stroke-width: 3;
stroke-dasharray: 200, 550;
stroke-dashoffset: 437;
}
.button2 svg {
position: absolute;
top: 0;
left: 0;
}
.button2 svg rect {
//stroke: #ec0033;
stroke-width: 3;
stroke-dasharray: 353, 0;
stroke-dashoffset: 0;
-webkit-transition: all 600ms ease;
transition: all 600ms ease;
}
.button2 span {
background: rgb(255,130,130);
background: -moz-linear-gradient(bottom, rgba(155,125,225,1) 0%, rgba(225,120,237,1) 100%);
background: -webkit-linear-gradient(bottom, rgba(155,125,225,1) 0%, rgba(225,120,237,1) 100%);
background: linear-gradient(to top, rgba(155,125,255,1) 0%, rgba(225,120,237,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9b7de1', endColorstr='#e178ed', GradientType=1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.button2:hover svg rect {
stroke-width: 3;
stroke-dasharray: 200, 550;
stroke-dashoffset: 437;
}
#logo {
position: absolute;
top: 15%;
left: 1%;
display: flex;
width: 50vw;
}
#cityscape {
position: absolute;
bottom: 0;
z-index: 1;
width: 100%;
justify-content: flex-end;
align-items: flex-end;
}
/* Media Queries */
@media screen and (max-width: 324px) {
#intro { height: 90%; }
.text-container {
position: relative;
top: -2rem;
left: 10%;
display: block;
width: 80vw;
}
.date { margin-bottom: -1rem; }
.location { text-align: center; }
.button-container {
position: relative;
top: -3rem;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#logo {
position: relative;
top: 0;
display: block;
width: 98vw;
}
#cityscape {
position: relative;
top: -4rem;
}
}
/* Add navbar to each media query except 1024 */
@media screen and (min-width: 325px) and (max-width: 426px) {
#intro { height: 90%; }
.text-container {
position: relative;
top: -2rem;
left: 10%;
display: block;
width: 80vw;
}
.date {
margin-bottom: -1rem;
}
.location {
text-align: center;
}
.button-container {
position: relative;
top: -3rem;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#logo {
position: relative;
top: 0;
display: block;
width: 98vw;
}
#cityscape {
position: relative;
top: -4rem;
}
}
@media screen and (min-width: 427px) and (max-width: 768px) {
.text-container {
position: relative;
display: block;
flex-direction: column;
top: -2rem;
left: 10%;
width: 80vw;
}
.location { text-align: center; }
.button-container {
position: relative;
top: -3rem;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#logo {
position: relative;
top: 0;
left: 25%;
display: flex;
width: 50vw;
}
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
.text-container {
position: absolute;
top: 15%;
left: 50%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.button-container {
margin-top: 10px;
}
}
@media screen and (max-width: 1365px) and (min-width: 1025px) {
#logo {
height: 50%;
}
#cityscape {
height: 50%;
}
.button-container {
margin-top: 50px;
}
}
@media screen and (min-width: 1366px) {
#logo {
height: 50%;
}
#cityscape {
height: 50%;
}
} | 0.53437 | 0.06216 |
.btn {
border: none;
background-color: rgb(190, 4, 4);
padding-top: 5px;
padding: 10px 10px;
color: white;
border-bottom: 3px solid red;
font-size: 10px;
cursor: pointer;
display: inline-block;
padding-left: 20px;
}
form a{
border: none;
background-color: rgb(190, 4, 4);
padding-top: 5px;
padding: 10px 10px;
color: white;
border-bottom: 3px solid red;
font-size: 10px;
cursor: pointer;
display: inline-block;
padding-left: 20px;
}
.er404{
color: white;
font-size: 50px;
text-align: center;
}
.secret{
color: white;
font-size: 50px;
text-align: center;
}
.secret img{
overflow: hidden;
border: 2px solid rgb(122, 0, 0);
border-radius: 4px;
padding: 5px;
height: 750px;
width: auto;
}
.er404 img {
overflow: hidden;
border: 2px solid rgb(122, 0, 0);
border-radius: 4px;
padding: 5px;
height: 500px;
width: auto;
}
label{
color: white;
padding-bottom: 5px;
}
.btn:hover{
background-color: rgb(177, 0, 0);
}
.refresh {
background-color: rgb(39, 39, 39);
overflow: auto;
position: fixed;
border-left: 5px solid rgb(190, 9, 9);
}
/* Navbar links */
.refresh a {
float: left;
text-align: center;
padding: 5px;
color: white;
text-decoration: none;
font-size: 10px;
border-bottom: 3px solid transparent;
text-shadow: 2px 2px 5px black;
}
/* Style the navigation bar */
.navbar {
width: 100%;
background-color: rgb(39, 39, 39);
overflow: auto;
position: fixed;
border-left: 5px solid rgb(190, 9, 9);
}
/* Navbar links */
.navbar a {
height: 28px;
float: left;
text-align: center;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
border-bottom: 3px solid transparent;
text-shadow: 2px 2px 5px black;
}
/*Navbar Text */
.navbar b {
float: right;
text-align: center;
padding: 12px;
height: 28px;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
color: rgb(255, 255, 255);
border-bottom: 3px solid rgb(161, 0, 0);
width: 63.9%;
}
/* Navbar links on mouse-over */
.navbar a:hover {
background-color: rgb(134, 18, 18);
border-bottom: 3px solid rgb(209, 70, 70);
}
/* Current/active navbar link */
.active {
border-bottom: 3px solid rgb(0, 0, 0);
background-color: rgb(153, 0, 0);
}
.navbar img{
float: left;
width: auto;
height: 40px;
background-color: rgb(0, 0, 0);
overflow: hidden;
border: 2px solid rgb(0, 0, 0);
border-radius: 0px;
}
body{
margin: 0px;
border-left: 5px solid rgb(141, 1, 1);
background-color: rgb(32, 32, 32);
size: auto;
height: fit-content;
}
.main a{
padding-left: 20px;
color: white;
font-size: 35;
font-family: Arial, Helvetica, sans-serif;
}
p{
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: auto;
padding-left: 20px;
}
.main b{
color: white;
font-size: 16;
padding-top: 55px;
padding-left: 20px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
img {
overflow: hidden;
border: 2px solid rgb(122, 0, 0);
border-radius: 4px;
padding: 5px;
height: 150px;
width: auto;
}
.main{
padding-top: 100px;
overflow-y: hidden;
size: auto;
background-color: rgb(32, 32, 32);
width: 35%;
height: auto;
}
.images{
padding-top: 100px;
overflow-y: hidden;
size: auto;
float: right;
margin-left: auto;
width: 65%;
height: auto;
background-color: rgb(83, 83, 83);
color: white;
}
.images a{
padding-left: 20px;
color: white;
font-size: 35;
font-family: Arial, Helvetica, sans-serif;
}
.images b{
color: white;
font-size: 16;
padding-top: 25px;
padding-left: 20px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 1300px) {
.navbar img{
float: none;
text-align: center;
display: block;
}
.main{
padding-top: 310px;
overflow-y: hidden;
size: auto;
width: 35%;
height: auto;
}
img{
width: auto;
height: 50px;
}
.images{
padding-top: 290px;
display: block;
}
.navbar{
position: absolute;
}
.navbar a {
float: none;
display: block;
}
.navbar b{
float: none;
display: block;
}
} | main/content/styles.css | .btn {
border: none;
background-color: rgb(190, 4, 4);
padding-top: 5px;
padding: 10px 10px;
color: white;
border-bottom: 3px solid red;
font-size: 10px;
cursor: pointer;
display: inline-block;
padding-left: 20px;
}
form a{
border: none;
background-color: rgb(190, 4, 4);
padding-top: 5px;
padding: 10px 10px;
color: white;
border-bottom: 3px solid red;
font-size: 10px;
cursor: pointer;
display: inline-block;
padding-left: 20px;
}
.er404{
color: white;
font-size: 50px;
text-align: center;
}
.secret{
color: white;
font-size: 50px;
text-align: center;
}
.secret img{
overflow: hidden;
border: 2px solid rgb(122, 0, 0);
border-radius: 4px;
padding: 5px;
height: 750px;
width: auto;
}
.er404 img {
overflow: hidden;
border: 2px solid rgb(122, 0, 0);
border-radius: 4px;
padding: 5px;
height: 500px;
width: auto;
}
label{
color: white;
padding-bottom: 5px;
}
.btn:hover{
background-color: rgb(177, 0, 0);
}
.refresh {
background-color: rgb(39, 39, 39);
overflow: auto;
position: fixed;
border-left: 5px solid rgb(190, 9, 9);
}
/* Navbar links */
.refresh a {
float: left;
text-align: center;
padding: 5px;
color: white;
text-decoration: none;
font-size: 10px;
border-bottom: 3px solid transparent;
text-shadow: 2px 2px 5px black;
}
/* Style the navigation bar */
.navbar {
width: 100%;
background-color: rgb(39, 39, 39);
overflow: auto;
position: fixed;
border-left: 5px solid rgb(190, 9, 9);
}
/* Navbar links */
.navbar a {
height: 28px;
float: left;
text-align: center;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
border-bottom: 3px solid transparent;
text-shadow: 2px 2px 5px black;
}
/*Navbar Text */
.navbar b {
float: right;
text-align: center;
padding: 12px;
height: 28px;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
color: rgb(255, 255, 255);
border-bottom: 3px solid rgb(161, 0, 0);
width: 63.9%;
}
/* Navbar links on mouse-over */
.navbar a:hover {
background-color: rgb(134, 18, 18);
border-bottom: 3px solid rgb(209, 70, 70);
}
/* Current/active navbar link */
.active {
border-bottom: 3px solid rgb(0, 0, 0);
background-color: rgb(153, 0, 0);
}
.navbar img{
float: left;
width: auto;
height: 40px;
background-color: rgb(0, 0, 0);
overflow: hidden;
border: 2px solid rgb(0, 0, 0);
border-radius: 0px;
}
body{
margin: 0px;
border-left: 5px solid rgb(141, 1, 1);
background-color: rgb(32, 32, 32);
size: auto;
height: fit-content;
}
.main a{
padding-left: 20px;
color: white;
font-size: 35;
font-family: Arial, Helvetica, sans-serif;
}
p{
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: auto;
padding-left: 20px;
}
.main b{
color: white;
font-size: 16;
padding-top: 55px;
padding-left: 20px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
img {
overflow: hidden;
border: 2px solid rgb(122, 0, 0);
border-radius: 4px;
padding: 5px;
height: 150px;
width: auto;
}
.main{
padding-top: 100px;
overflow-y: hidden;
size: auto;
background-color: rgb(32, 32, 32);
width: 35%;
height: auto;
}
.images{
padding-top: 100px;
overflow-y: hidden;
size: auto;
float: right;
margin-left: auto;
width: 65%;
height: auto;
background-color: rgb(83, 83, 83);
color: white;
}
.images a{
padding-left: 20px;
color: white;
font-size: 35;
font-family: Arial, Helvetica, sans-serif;
}
.images b{
color: white;
font-size: 16;
padding-top: 25px;
padding-left: 20px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 1300px) {
.navbar img{
float: none;
text-align: center;
display: block;
}
.main{
padding-top: 310px;
overflow-y: hidden;
size: auto;
width: 35%;
height: auto;
}
img{
width: auto;
height: 50px;
}
.images{
padding-top: 290px;
display: block;
}
.navbar{
position: absolute;
}
.navbar a {
float: none;
display: block;
}
.navbar b{
float: none;
display: block;
}
} | 0.522933 | 0.077065 |
body {
color: #444444;
font-family: Helvetica, Verdana, sans-serif ;
background: #f3f3f3;
margin: 0;
font-size: 16px;
}
.invisible {
display: none;
}
.display-as-table {
display: table;
}
.display-as-table-cell {
display: table-cell;
}
.pl10 {
padding-left: 10px;
}
.pt15 {
padding-top: 15px;
}
.pl23 {
padding-left: 23px;
}
.pl57 {
padding-left: 57px;
}
.ml10 {
margin-left: 10px;
}
.mt15 {
margin-top: 15px;
}
.mt16 {
margin-top: 16px;
}
.mt10 {
margin-top: 10px;
}
.font-size-16 {
font-size: 16px;
}
.fr {
float: right;
}
.pr {
position: relative;
}
a, a:visited { color: #606060; text-decoration: none; }
a.btn-social a, a.btn-social:visited { color: #FFFFFF; }
#divMaskLayer {
position: fixed;
_position: absolute;
top: 0;
_top: expression(0+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px');
left: 0;
_left: expression(0+((e=document.documentElement.scrollLeft)?e:document.body.scrollLeft)+'px');
width: 100%;
height: 100%;
_height: expression(0+((e=document.documentElement.clientHeight)?e:document.body.clientHeight)+'px');
background: #343d46;
opacity: .7;
filter: Alpha(Opacity=70);
z-index: 100;
}
#loaderContent {
text-align: center;
position: fixed;
_position: absolute;
width: 160px;
height: 120px;
left: 50%;
_left: expression((((w=document.documentElement.clientWidth)?w:document.body.clientWidth)+((l=document.documentElement.scrollLeft)?l:document.body.scrollLeft))/2+'px');
top: 50%;
_top: expression((((h=document.documentElement.clientHeight)?h:document.body.clientHeight)+((t=document.documentElement.scrollTop)?t:document.body.scrollTop))/2+'px');
margin-left: -80px;
margin-top: -60px;
z-index: 101;
}
#imgLoader {
width: 160px;
height: 120px;
}
#spLoader {
color: white;
font-size: 14px;
position: relative;
top: -25px;
left: 5px;
}
#divTaskJsonResultContainer {
position: fixed;
_position: absolute;
width: 800px;
height: 600px;
left: 50%;
_left: expression((((w=document.documentElement.clientWidth)?w:document.body.clientWidth)+((l=document.documentElement.scrollLeft)?l:document.body.scrollLeft))/2+'px');
top: 50%;
_top: expression((((h=document.documentElement.clientHeight)?h:document.body.clientHeight)+((t=document.documentElement.scrollTop)?t:document.body.scrollTop))/2+'px');
margin-left: -400px;
margin-top: -300px;
/*overflow: auto;*/
z-index: 101;
}
#divTaskJsonClose {
cursor: pointer;
position: absolute;
right: -45px;
top: -28px;
}
#divTaskJsonClose > img {
height: 25px;
width: auto;
}
pre.prettyprint {
padding: 10px 15px 10px 20px;
}
#divTaskJsonResult {
width: 800px;
height: 600px;
overflow: auto;
}
#preTaskJson {
background-color: #f5f5f5;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
box-shadow: 0 3px 6px 0 rgba(170, 170, 170, 0.3);
line-height: 200%;
font-family: Helvetica, Verdana, sans-serif;
}
#btnDownload {
position: absolute;
top: 31px;
right: 41px;
font-size: 16px;
}
#btnDownload,
#btnDownload:visited{
color: #50a8e1;
}
#btnDownload:hover {
color: #5bbfff;
}
@media (max-height: 600px) {
#divTaskJsonResultContainer {
width: 600px;
height: 450px;
margin-left: -300px;
margin-top: -225px;
}
#divTaskJsonResult {
width: 600px;
height: 450px;
}
}
/*tool tip*/
[data-tip] {
position:relative;
}
[data-tip]:before {
}
[data-tip]:after {
display:none;
content:attr(data-tip);
position:absolute;
top:35px;
left:0px;
padding:5px 8px;
background:#1a1a1a;
color:#fff;
z-index:9;
font-size: 12px;
/*height:18px;
line-height:18px;*/
-o-border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
white-space:nowrap;
word-wrap:normal;
}
[data-tip]:hover:before,
[data-tip]:hover:after {
display:block;
/*white-space:pre-wrap;*/
/*https://stackoverflow.com/questions/13338780/how-to-make-twitter-bootstrap-tooltips-have-multiple-lines*/
white-space:pre;
max-width: none;
}
/*header*/
#divPageHeader {
height: 90px;
}
#divPageHeader > div {
vertical-align: middle;
}
#divCorpLogo {
padding-left: 57px;
}
#divCorpLogo img {
width: 159px;
height: auto;
border: 0;
}
#divPageHeader > #divSplit {
padding: 0 10px;
}
#divPageHeader > #divSplit > div {
width: 1px;
height: 26px;
background-color: #dddddd;
}
#divPageHeader > #divDesc {
font-size: 28px;
/*font-family: OpenSans-Semibold;*/
}
#divPageHeader > #divDesc img {
height: 17px;
width: auto;
border: 0;
}
#divPageHeader > #divGenerate {
text-align: right;
padding-right: 57px;
}
/*page content wrapper*/
#divPageWrapper {
margin: 50px auto 0 auto;
background: #fff;
border: solid 2px #cccccc;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
}
/*footer*/
#divPageFooter {
height: 57px;
font-size: 14px;
color: #606060;
width: 100%;
}
#divPageFooter > div {
vertical-align: middle;
}
#divPageFooter > #divCorpRight {
width: 82%;
padding-left: 57px;
}
#divTel {
padding-right: 57px;
}
#divTel > div {
vertical-align: middle;
}
#divTel img {
display: block;
}
#divTelNo,
#divTelIcon {
float: right;
}
.container {
position:relative;
margin: 0 auto;
padding: 20px 0 0 0;
width: 1030px;
}
.ct-top
{
font-size: 21px;
line-height: 27px;
color: #444;
font-family: OpenSans-Semibold, Arial, sans-serif, Verdana, Helvetica;
padding: 0 0 15px 0;
}
.ScanWrapper {
position:absolute;
left:600px;
top: 94px;
width: 420px;
height: 430px;
border: 1px solid #CACACA;
background-color: #FFFFFF;
}
.ViewerWrapper {
width: 580px;
height: 520px;
border: 0px;
background-color: #FFFFFF;
position:relative;
}
.ViewerContainer {
width: 560px;
height: 520px;
border: 1px solid #CACACA;
}
.ViewerScroll
{
display:none;
height: 516px;
width: 14px;
background-color:#F5F5F5;
border-radius:10px;
box-shadow:inset 0 0 6px rgba(0,0,0,0.3);
top:2px;
right:5px;
position:absolute;
}
.footer {
margin-top: 10px;
border: 1px solid #CACACA;
bottom: 0;
width: 100%;
height: 60px; /* Set the fixed height of the footer here */
line-height: 60px; /* Vertically center the text there */
background-color: #f5f5f5;
text-align: center;
} | Server/TwainCloudServer/css/dynamsoft/comm.css | body {
color: #444444;
font-family: Helvetica, Verdana, sans-serif ;
background: #f3f3f3;
margin: 0;
font-size: 16px;
}
.invisible {
display: none;
}
.display-as-table {
display: table;
}
.display-as-table-cell {
display: table-cell;
}
.pl10 {
padding-left: 10px;
}
.pt15 {
padding-top: 15px;
}
.pl23 {
padding-left: 23px;
}
.pl57 {
padding-left: 57px;
}
.ml10 {
margin-left: 10px;
}
.mt15 {
margin-top: 15px;
}
.mt16 {
margin-top: 16px;
}
.mt10 {
margin-top: 10px;
}
.font-size-16 {
font-size: 16px;
}
.fr {
float: right;
}
.pr {
position: relative;
}
a, a:visited { color: #606060; text-decoration: none; }
a.btn-social a, a.btn-social:visited { color: #FFFFFF; }
#divMaskLayer {
position: fixed;
_position: absolute;
top: 0;
_top: expression(0+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px');
left: 0;
_left: expression(0+((e=document.documentElement.scrollLeft)?e:document.body.scrollLeft)+'px');
width: 100%;
height: 100%;
_height: expression(0+((e=document.documentElement.clientHeight)?e:document.body.clientHeight)+'px');
background: #343d46;
opacity: .7;
filter: Alpha(Opacity=70);
z-index: 100;
}
#loaderContent {
text-align: center;
position: fixed;
_position: absolute;
width: 160px;
height: 120px;
left: 50%;
_left: expression((((w=document.documentElement.clientWidth)?w:document.body.clientWidth)+((l=document.documentElement.scrollLeft)?l:document.body.scrollLeft))/2+'px');
top: 50%;
_top: expression((((h=document.documentElement.clientHeight)?h:document.body.clientHeight)+((t=document.documentElement.scrollTop)?t:document.body.scrollTop))/2+'px');
margin-left: -80px;
margin-top: -60px;
z-index: 101;
}
#imgLoader {
width: 160px;
height: 120px;
}
#spLoader {
color: white;
font-size: 14px;
position: relative;
top: -25px;
left: 5px;
}
#divTaskJsonResultContainer {
position: fixed;
_position: absolute;
width: 800px;
height: 600px;
left: 50%;
_left: expression((((w=document.documentElement.clientWidth)?w:document.body.clientWidth)+((l=document.documentElement.scrollLeft)?l:document.body.scrollLeft))/2+'px');
top: 50%;
_top: expression((((h=document.documentElement.clientHeight)?h:document.body.clientHeight)+((t=document.documentElement.scrollTop)?t:document.body.scrollTop))/2+'px');
margin-left: -400px;
margin-top: -300px;
/*overflow: auto;*/
z-index: 101;
}
#divTaskJsonClose {
cursor: pointer;
position: absolute;
right: -45px;
top: -28px;
}
#divTaskJsonClose > img {
height: 25px;
width: auto;
}
pre.prettyprint {
padding: 10px 15px 10px 20px;
}
#divTaskJsonResult {
width: 800px;
height: 600px;
overflow: auto;
}
#preTaskJson {
background-color: #f5f5f5;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
box-shadow: 0 3px 6px 0 rgba(170, 170, 170, 0.3);
line-height: 200%;
font-family: Helvetica, Verdana, sans-serif;
}
#btnDownload {
position: absolute;
top: 31px;
right: 41px;
font-size: 16px;
}
#btnDownload,
#btnDownload:visited{
color: #50a8e1;
}
#btnDownload:hover {
color: #5bbfff;
}
@media (max-height: 600px) {
#divTaskJsonResultContainer {
width: 600px;
height: 450px;
margin-left: -300px;
margin-top: -225px;
}
#divTaskJsonResult {
width: 600px;
height: 450px;
}
}
/*tool tip*/
[data-tip] {
position:relative;
}
[data-tip]:before {
}
[data-tip]:after {
display:none;
content:attr(data-tip);
position:absolute;
top:35px;
left:0px;
padding:5px 8px;
background:#1a1a1a;
color:#fff;
z-index:9;
font-size: 12px;
/*height:18px;
line-height:18px;*/
-o-border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
white-space:nowrap;
word-wrap:normal;
}
[data-tip]:hover:before,
[data-tip]:hover:after {
display:block;
/*white-space:pre-wrap;*/
/*https://stackoverflow.com/questions/13338780/how-to-make-twitter-bootstrap-tooltips-have-multiple-lines*/
white-space:pre;
max-width: none;
}
/*header*/
#divPageHeader {
height: 90px;
}
#divPageHeader > div {
vertical-align: middle;
}
#divCorpLogo {
padding-left: 57px;
}
#divCorpLogo img {
width: 159px;
height: auto;
border: 0;
}
#divPageHeader > #divSplit {
padding: 0 10px;
}
#divPageHeader > #divSplit > div {
width: 1px;
height: 26px;
background-color: #dddddd;
}
#divPageHeader > #divDesc {
font-size: 28px;
/*font-family: OpenSans-Semibold;*/
}
#divPageHeader > #divDesc img {
height: 17px;
width: auto;
border: 0;
}
#divPageHeader > #divGenerate {
text-align: right;
padding-right: 57px;
}
/*page content wrapper*/
#divPageWrapper {
margin: 50px auto 0 auto;
background: #fff;
border: solid 2px #cccccc;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
}
/*footer*/
#divPageFooter {
height: 57px;
font-size: 14px;
color: #606060;
width: 100%;
}
#divPageFooter > div {
vertical-align: middle;
}
#divPageFooter > #divCorpRight {
width: 82%;
padding-left: 57px;
}
#divTel {
padding-right: 57px;
}
#divTel > div {
vertical-align: middle;
}
#divTel img {
display: block;
}
#divTelNo,
#divTelIcon {
float: right;
}
.container {
position:relative;
margin: 0 auto;
padding: 20px 0 0 0;
width: 1030px;
}
.ct-top
{
font-size: 21px;
line-height: 27px;
color: #444;
font-family: OpenSans-Semibold, Arial, sans-serif, Verdana, Helvetica;
padding: 0 0 15px 0;
}
.ScanWrapper {
position:absolute;
left:600px;
top: 94px;
width: 420px;
height: 430px;
border: 1px solid #CACACA;
background-color: #FFFFFF;
}
.ViewerWrapper {
width: 580px;
height: 520px;
border: 0px;
background-color: #FFFFFF;
position:relative;
}
.ViewerContainer {
width: 560px;
height: 520px;
border: 1px solid #CACACA;
}
.ViewerScroll
{
display:none;
height: 516px;
width: 14px;
background-color:#F5F5F5;
border-radius:10px;
box-shadow:inset 0 0 6px rgba(0,0,0,0.3);
top:2px;
right:5px;
position:absolute;
}
.footer {
margin-top: 10px;
border: 1px solid #CACACA;
bottom: 0;
width: 100%;
height: 60px; /* Set the fixed height of the footer here */
line-height: 60px; /* Vertically center the text there */
background-color: #f5f5f5;
text-align: center;
} | 0.357904 | 0.107766 |
:root {
--tiny-space: 6px;
--font-size: 16px;
--Field_padding: 22px;
--Field_changed-width: 4px;
--button_border-width: 2px;
}
@media (max-width: 1199px) {
:root {
--Field_padding: 18px;
}
}
*,
*::before,
*::after {
box-sizing: border-box;
background-repeat: no-repeat;
}
html {
background-color: lightgrey;
color: black;
font-family: system-ui;
font-size: var(--font-size);
line-height: 1.25;
}
html.firefox {
font: menu;
font-size: var(--font-size);
}
body {
margin: 0;
font-size: inherit;
font-family: inherit;
}
input,
button,
select,
textarea {
min-width: 0;
margin: 0;
padding: 0.125em 0.375em;
border: 1px solid darkgrey;
border-radius: 0;
background: white;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
transition: border-color 200ms;
outline: none;
}
input:not(:disabled):hover,
button:not(:disabled):hover,
select:not(:disabled):hover,
textarea:not(:disabled):hover,
input:not(:disabled):focus,
button:not(:disabled):focus,
select:not(:disabled):focus,
textarea:not(:disabled):focus {
border-color: blue;
}
input:disabled,
button:disabled,
select:disabled,
textarea:disabled {
opacity: 0.5;
cursor: not-allowed;
}
input::-moz-focus-inner,
button::-moz-focus-inner,
select::-moz-focus-inner,
textarea::-moz-focus-inner {
padding: 0;
border: none;
}
input.is-readonly,
button.is-readonly,
select.is-readonly,
textarea.is-readonly {
font-style: italic;
}
input[type="checkbox"],
input[type="radio"] {
--size: 1.25em;
width: var(--size);
height: var(--size);
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}
input[type="checkbox"]:checked {
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 7.5'><polyline points='1,3 4,6 9,1' fill='none' stroke='%232b4eed' stroke-width='2' /></svg>");
background-repeat: no-repeat;
background-position: center;
}
input[type="radio"] {
border-radius: 50%;
padding: 2px;
background-clip: content-box;
}
input[type="radio"]:checked {
background-color: blue;
}
button {
border-width: var(--button_border-width);
cursor: pointer;
}
select {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'><polyline points='1,1 3,3 5,1' fill='none' stroke='%23777' /></svg>");
background-repeat: no-repeat;
background-position: right 0.375em center;
background-size: auto 0.75em;
padding-right: 1.875em;
}
textarea {
width: 100%;
resize: vertical;
}
a {
color: blue;
text-decoration: none;
}
a:hover,
a:focus,
a:active {
text-decoration: underline;
}
label {
margin: 0;
font-weight: inherit;
}
p {
margin: 0;
}
p + p {
margin-top: 5px;
}
kbd {
display: inline-block;
min-width: 1.6em;
padding: 0 4px;
border: 2px solid darkgrey;
border-radius: 3px;
background-color: white;
text-align: center;
font-size: 0.8em;
font-family: inherit;
font-style: normal;
font-weight: normal;
}
code {
display: inline-block;
padding: 0 4px;
border: 1px solid grey;
border-radius: 3px;
background-color: lightgrey;
font-size: 0.8em;
}
pre {
margin: 0;
white-space: pre-wrap;
}
.Layout {
margin: 15px;
}
.Layout-sidebar {
margin-top: var(--Field_padding);
}
.Layout-sidebar > * + * {
margin-top: var(--Field_padding);
}
@media (min-width: 1020px) {
.Layout {
display: flex;
justify-content: center;
align-items: flex-start;
margin: 50px 15px;
}
.Layout-main {
max-width: 800px;
}
.Layout-sidebar {
width: 320px;
margin-top: 0;
position: sticky;
top: var(--Field_padding);
margin-left: var(--Field_padding);
}
}
.Paper {
background-color: white;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
}
.Field {
--border-width: 1px;
border-top: var(--border-width) solid grey;
padding: var(--Field_padding);
position: relative;
}
.Field:first-child {
border-top: none;
}
.Field::before,
.Field::after {
content: "";
position: absolute;
top: calc(-1 * var(--border-width));
bottom: calc(-1 * var(--border-width));
left: 0;
width: var(--Field_changed-width);
background-color: blue;
opacity: 0;
transition: opacity 200ms;
}
.Field::after {
left: auto;
right: 0;
}
.Field:first-child::before,
.Field:first-child::after {
top: 0;
}
.Field:last-child::before,
.Field:last-child::after {
bottom: 0;
}
.Field.is-changed,
.Field.is-changedRight {
z-index: 1;
}
.Field.is-changed::before,
.Field.is-changedRight::after {
opacity: 1;
}
/* This CSS only supports connecting two fields. */
.Field:first-child.is-connected,
.Field:not(.is-connected) + .Field.is-connected {
padding-bottom: calc(var(--Field_padding) / 2);
}
.Field.is-connected + .Field.is-connected {
border-top: none;
padding-top: calc(var(--Field_padding) / 2);
}
.Field:first-child.is-connected::before,
.Field:first-child.is-connected::after,
.Field:not(.is-connected) + .Field.is-connected::before,
.Field:not(.is-connected) + .Field.is-connected::after {
bottom: 0;
}
.Field.is-connected + .Field.is-connected::before,
.Field.is-connected + .Field.is-connected::after {
top: 0;
}
.Field.is-fullWidth {
padding-left: 0;
padding-right: 0;
}
.Field-label {
display: block;
padding-bottom: var(--tiny-space);
margin-top: -3px;
line-height: 1;
font-weight: bold;
}
.Field.is-fullWidth .Field-label {
padding-left: var(--Field_padding);
padding-right: var(--Field_padding);
}
.Field.is-connected + .Field.is-connected .Field-label {
margin-top: 0;
}
.Field-resetButton {
all: unset;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
color: blue;
cursor: pointer;
margin-left: 10px;
}
.Field-description {
margin-bottom: -2px;
}
.Field.is-fullWidth .Field-description {
padding-left: var(--Field_padding);
padding-right: var(--Field_padding);
}
.TextSmall {
font-size: 14px;
}
.Error {
color: red;
font-weight: bold;
}
.Error a {
color: inherit;
text-decoration: underline;
}
.Attachment {
display: flex;
position: relative;
}
.Attachment-content {
position: absolute;
left: 0;
bottom: 100%;
width: 100%;
}
.TinyLabel {
padding-bottom: var(--tiny-space);
font-size: 12px;
}
.Spaced {
display: flex;
}
.Spaced > * + * {
margin-left: 0.625em;
}
.Spaced--center {
align-items: center;
}
.Spaced--end {
align-items: flex-end;
}
.SpacedVertical {
display: flex;
flex-direction: column;
}
.SpacedVertical > * + * {
margin-top: 10px;
}
.SpacedVertical--large > * + * {
margin-top: var(--Field_padding);
}
.ShrinkwrapChildren {
display: flex;
flex-direction: column;
align-items: flex-start;
}
/* .TestLinks {} */
.TestLinks-grid {
display: grid;
grid-template: repeat(9, 1fr) / repeat(3, 1fr);
grid-auto-flow: column;
grid-gap: 4px;
}
.TestLinks-pagination {
font-size: 12px;
justify-content: center;
}
.TestLink {
outline: none;
}
.TestLink.is-clicked {
font-weight: bold;
color: inherit;
}
.KeypressTable {
table-layout: fixed;
border-spacing: 0;
border: 1px solid darkgrey;
padding: 2px 0;
width: 100%;
}
.KeypressTable th {
text-align: left;
}
.KeypressTable td,
.KeypressTable th {
padding: 2px 8px;
}
.KeysTable {
border: 1px solid darkgrey;
width: 100%;
height: 310px;
overflow-y: auto;
}
.KeysTable.is-disabled {
opacity: 0.5;
}
.KeysTable table {
table-layout: fixed;
border-spacing: 0;
width: 100%;
}
.KeysTable thead th {
position: sticky;
top: 0;
background-color: grey;
text-align: left;
font-weight: normal;
}
.KeysTable td,
.KeysTable th {
padding: 0;
padding-right: 4px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.KeysTable td:first-child,
.KeysTable th:first-child {
padding-left: 9px;
width: 50%;
}
.KeysTable td:last-child,
.KeysTable th:last-child {
width: 20px;
padding: 0;
}
.KeysTable td:last-child button {
width: 100%;
}
.KeysTable tbody tr:nth-child(even) td {
background-color: lightgrey;
}
.KeysTable tbody tr.is-animated td {
animation: Highlight 1000ms ease-out forwards;
}
@keyframes Highlight {
from,
20% {
box-shadow: inset 0 0 0 99px blue;
color: white;
}
to {
box-shadow: inset 0 0 0 99px transparent;
color: inherit;
}
}
.KeysTable td.is-changed {
background-image: linear-gradient(to right, blue 3px, transparent 0);
}
.RemoveButton {
--size: 20px;
all: unset;
text-align: center;
min-width: var(--size);
font-size: var(--size);
line-height: 1;
cursor: pointer;
}
.RemoveButton:hover,
.RemoveButton:focus {
color: blue;
}
.AddShortcutButton {
display: flex;
align-self: flex-start;
margin-left: auto;
flex-shrink: 0;
}
.AddShortcutButton-button {
--size: 28px;
width: var(--size);
height: var(--size);
padding: 0;
line-height: 0;
}
.ShortcutsTable {
table-layout: fixed;
border-spacing: 0;
width: 100%;
}
.ShortcutsTable td,
.ShortcutsTable th {
padding: 3px;
padding-left: 5px;
vertical-align: top;
}
.ShortcutsTable th {
padding-top: 6px;
padding-left: calc(var(--Field_padding) - var(--Field_changed-width));
border-left: var(--Field_changed-width) solid transparent;
width: calc(50%);
font-weight: normal;
text-align: left;
transition: border-color 200ms;
}
.ShortcutsTable th.is-changed {
border-left-color: blue;
}
.ShortcutsTable td {
padding-right: var(--Field_padding);
}
.ShortcutsTable tbody tr:nth-child(odd) td,
.ShortcutsTable tbody tr:nth-child(odd) th {
background-color: lightgrey;
}
.ShortcutsGrid {
--spacing-vertical: 3px;
--spacing-horizontal: 10px;
display: flex;
flex-wrap: wrap;
margin: calc(-1 * var(--spacing-vertical))
calc(-1 * var(--spacing-horizontal));
width: 100%;
}
.ShortcutsGrid > * {
flex: 1 1 50%;
display: flex;
padding: var(--spacing-vertical) var(--spacing-horizontal);
}
.Preview {
position: relative;
border: 1px solid darkgrey;
overflow: auto;
}
.KeyboardShortcut {
white-space: nowrap;
}
.KeyboardShortcut > * + * {
margin-left: 1px;
}
.ButtonWithPopup {
display: inline-flex;
flex-direction: column;
position: relative;
}
.ButtonWithPopup.is-open .ButtonWithPopup-button {
position: relative;
z-index: 2;
border-color: blue;
}
.ButtonWithPopup.is-open .ButtonWithPopup-button::after {
content: "";
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: var(--button_border-width);
background-color: white;
}
.ButtonWithPopup-popup {
position: absolute;
z-index: 1;
top: calc(100% - var(--button_border-width));
right: 0;
min-width: 100%;
border: var(--button_border-width) solid blue;
background-color: white;
padding: 24px;
font-size: 1rem;
}
.ErrorsSpacing {
height: var(--Field_padding);
}
.Errors {
padding: var(--Field_padding);
padding-top: 0;
background-color: red;
}
.ErrorsHeading {
display: flex;
position: sticky;
bottom: 0;
background-color: red;
}
.ErrorsHeading-link {
flex-grow: 1;
padding: var(--Field_padding) var(--Field_padding);
color: inherit;
font-weight: bold;
text-decoration: underline;
}
.ErrorsHeading-removeButton {
width: 50px;
font-size: 28px;
}
.Intro {
padding: 18px var(--Field_padding);
}
.PerfTable {
border-spacing: 0;
width: 100%;
}
.PerfTable caption button {
all: unset;
padding: 0 var(--Field_padding);
width: 100%;
text-align: left;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
position: relative;
}
.PerfTable th,
.PerfTable td {
text-align: right;
font-weight: normal;
padding: 2px 0;
padding-right: 5px;
}
.PerfTable th:first-child,
.PerfTable td:first-child {
padding-left: var(--Field_padding);
text-align: left;
}
.PerfTable th:last-child,
.PerfTable td:last-child {
padding-right: var(--Field_padding);
}
.PerfTable thead th,
.PerfTable th:only-child {
padding-top: 10px;
font-weight: bold;
}
.PerfTable thead th:not(:first-child) {
--width: 50px;
width: var(--width);
}
.PerfTable thead th:last-child {
width: calc(var(--width) + var(--Field_padding));
}
.PerfTable-alternate {
background-color: lightgrey;
}
.PerfTable [title] {
border-bottom: 1px dotted currentColor;
}
.Details-button {
border-left: none;
border-right: none;
padding-left: var(--Field_padding);
padding-right: var(--Field_padding);
width: 100%;
text-align: left;
}
.Toggle {
position: relative;
}
.Toggle::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: var(--Field_padding);
height: 100%;
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'><polyline points='1,1 3,3 5,1' fill='none' stroke='%23777' /></svg>");
background-repeat: no-repeat;
background-position: center;
background-size: auto 0.75em;
transition: transform 200ms;
}
.Toggle.is-open::before {
transform: rotate(180deg);
}
.Branding {
display: flex;
align-items: center;
padding: var(--Field_padding);
}
.Branding-image {
flex-shrink: 0;
margin-right: var(--Field_padding);
}
.Branding-name {
font-weight: bold;
} | src/options/options.css | :root {
--tiny-space: 6px;
--font-size: 16px;
--Field_padding: 22px;
--Field_changed-width: 4px;
--button_border-width: 2px;
}
@media (max-width: 1199px) {
:root {
--Field_padding: 18px;
}
}
*,
*::before,
*::after {
box-sizing: border-box;
background-repeat: no-repeat;
}
html {
background-color: lightgrey;
color: black;
font-family: system-ui;
font-size: var(--font-size);
line-height: 1.25;
}
html.firefox {
font: menu;
font-size: var(--font-size);
}
body {
margin: 0;
font-size: inherit;
font-family: inherit;
}
input,
button,
select,
textarea {
min-width: 0;
margin: 0;
padding: 0.125em 0.375em;
border: 1px solid darkgrey;
border-radius: 0;
background: white;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
transition: border-color 200ms;
outline: none;
}
input:not(:disabled):hover,
button:not(:disabled):hover,
select:not(:disabled):hover,
textarea:not(:disabled):hover,
input:not(:disabled):focus,
button:not(:disabled):focus,
select:not(:disabled):focus,
textarea:not(:disabled):focus {
border-color: blue;
}
input:disabled,
button:disabled,
select:disabled,
textarea:disabled {
opacity: 0.5;
cursor: not-allowed;
}
input::-moz-focus-inner,
button::-moz-focus-inner,
select::-moz-focus-inner,
textarea::-moz-focus-inner {
padding: 0;
border: none;
}
input.is-readonly,
button.is-readonly,
select.is-readonly,
textarea.is-readonly {
font-style: italic;
}
input[type="checkbox"],
input[type="radio"] {
--size: 1.25em;
width: var(--size);
height: var(--size);
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}
input[type="checkbox"]:checked {
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 7.5'><polyline points='1,3 4,6 9,1' fill='none' stroke='%232b4eed' stroke-width='2' /></svg>");
background-repeat: no-repeat;
background-position: center;
}
input[type="radio"] {
border-radius: 50%;
padding: 2px;
background-clip: content-box;
}
input[type="radio"]:checked {
background-color: blue;
}
button {
border-width: var(--button_border-width);
cursor: pointer;
}
select {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'><polyline points='1,1 3,3 5,1' fill='none' stroke='%23777' /></svg>");
background-repeat: no-repeat;
background-position: right 0.375em center;
background-size: auto 0.75em;
padding-right: 1.875em;
}
textarea {
width: 100%;
resize: vertical;
}
a {
color: blue;
text-decoration: none;
}
a:hover,
a:focus,
a:active {
text-decoration: underline;
}
label {
margin: 0;
font-weight: inherit;
}
p {
margin: 0;
}
p + p {
margin-top: 5px;
}
kbd {
display: inline-block;
min-width: 1.6em;
padding: 0 4px;
border: 2px solid darkgrey;
border-radius: 3px;
background-color: white;
text-align: center;
font-size: 0.8em;
font-family: inherit;
font-style: normal;
font-weight: normal;
}
code {
display: inline-block;
padding: 0 4px;
border: 1px solid grey;
border-radius: 3px;
background-color: lightgrey;
font-size: 0.8em;
}
pre {
margin: 0;
white-space: pre-wrap;
}
.Layout {
margin: 15px;
}
.Layout-sidebar {
margin-top: var(--Field_padding);
}
.Layout-sidebar > * + * {
margin-top: var(--Field_padding);
}
@media (min-width: 1020px) {
.Layout {
display: flex;
justify-content: center;
align-items: flex-start;
margin: 50px 15px;
}
.Layout-main {
max-width: 800px;
}
.Layout-sidebar {
width: 320px;
margin-top: 0;
position: sticky;
top: var(--Field_padding);
margin-left: var(--Field_padding);
}
}
.Paper {
background-color: white;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
}
.Field {
--border-width: 1px;
border-top: var(--border-width) solid grey;
padding: var(--Field_padding);
position: relative;
}
.Field:first-child {
border-top: none;
}
.Field::before,
.Field::after {
content: "";
position: absolute;
top: calc(-1 * var(--border-width));
bottom: calc(-1 * var(--border-width));
left: 0;
width: var(--Field_changed-width);
background-color: blue;
opacity: 0;
transition: opacity 200ms;
}
.Field::after {
left: auto;
right: 0;
}
.Field:first-child::before,
.Field:first-child::after {
top: 0;
}
.Field:last-child::before,
.Field:last-child::after {
bottom: 0;
}
.Field.is-changed,
.Field.is-changedRight {
z-index: 1;
}
.Field.is-changed::before,
.Field.is-changedRight::after {
opacity: 1;
}
/* This CSS only supports connecting two fields. */
.Field:first-child.is-connected,
.Field:not(.is-connected) + .Field.is-connected {
padding-bottom: calc(var(--Field_padding) / 2);
}
.Field.is-connected + .Field.is-connected {
border-top: none;
padding-top: calc(var(--Field_padding) / 2);
}
.Field:first-child.is-connected::before,
.Field:first-child.is-connected::after,
.Field:not(.is-connected) + .Field.is-connected::before,
.Field:not(.is-connected) + .Field.is-connected::after {
bottom: 0;
}
.Field.is-connected + .Field.is-connected::before,
.Field.is-connected + .Field.is-connected::after {
top: 0;
}
.Field.is-fullWidth {
padding-left: 0;
padding-right: 0;
}
.Field-label {
display: block;
padding-bottom: var(--tiny-space);
margin-top: -3px;
line-height: 1;
font-weight: bold;
}
.Field.is-fullWidth .Field-label {
padding-left: var(--Field_padding);
padding-right: var(--Field_padding);
}
.Field.is-connected + .Field.is-connected .Field-label {
margin-top: 0;
}
.Field-resetButton {
all: unset;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
color: blue;
cursor: pointer;
margin-left: 10px;
}
.Field-description {
margin-bottom: -2px;
}
.Field.is-fullWidth .Field-description {
padding-left: var(--Field_padding);
padding-right: var(--Field_padding);
}
.TextSmall {
font-size: 14px;
}
.Error {
color: red;
font-weight: bold;
}
.Error a {
color: inherit;
text-decoration: underline;
}
.Attachment {
display: flex;
position: relative;
}
.Attachment-content {
position: absolute;
left: 0;
bottom: 100%;
width: 100%;
}
.TinyLabel {
padding-bottom: var(--tiny-space);
font-size: 12px;
}
.Spaced {
display: flex;
}
.Spaced > * + * {
margin-left: 0.625em;
}
.Spaced--center {
align-items: center;
}
.Spaced--end {
align-items: flex-end;
}
.SpacedVertical {
display: flex;
flex-direction: column;
}
.SpacedVertical > * + * {
margin-top: 10px;
}
.SpacedVertical--large > * + * {
margin-top: var(--Field_padding);
}
.ShrinkwrapChildren {
display: flex;
flex-direction: column;
align-items: flex-start;
}
/* .TestLinks {} */
.TestLinks-grid {
display: grid;
grid-template: repeat(9, 1fr) / repeat(3, 1fr);
grid-auto-flow: column;
grid-gap: 4px;
}
.TestLinks-pagination {
font-size: 12px;
justify-content: center;
}
.TestLink {
outline: none;
}
.TestLink.is-clicked {
font-weight: bold;
color: inherit;
}
.KeypressTable {
table-layout: fixed;
border-spacing: 0;
border: 1px solid darkgrey;
padding: 2px 0;
width: 100%;
}
.KeypressTable th {
text-align: left;
}
.KeypressTable td,
.KeypressTable th {
padding: 2px 8px;
}
.KeysTable {
border: 1px solid darkgrey;
width: 100%;
height: 310px;
overflow-y: auto;
}
.KeysTable.is-disabled {
opacity: 0.5;
}
.KeysTable table {
table-layout: fixed;
border-spacing: 0;
width: 100%;
}
.KeysTable thead th {
position: sticky;
top: 0;
background-color: grey;
text-align: left;
font-weight: normal;
}
.KeysTable td,
.KeysTable th {
padding: 0;
padding-right: 4px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.KeysTable td:first-child,
.KeysTable th:first-child {
padding-left: 9px;
width: 50%;
}
.KeysTable td:last-child,
.KeysTable th:last-child {
width: 20px;
padding: 0;
}
.KeysTable td:last-child button {
width: 100%;
}
.KeysTable tbody tr:nth-child(even) td {
background-color: lightgrey;
}
.KeysTable tbody tr.is-animated td {
animation: Highlight 1000ms ease-out forwards;
}
@keyframes Highlight {
from,
20% {
box-shadow: inset 0 0 0 99px blue;
color: white;
}
to {
box-shadow: inset 0 0 0 99px transparent;
color: inherit;
}
}
.KeysTable td.is-changed {
background-image: linear-gradient(to right, blue 3px, transparent 0);
}
.RemoveButton {
--size: 20px;
all: unset;
text-align: center;
min-width: var(--size);
font-size: var(--size);
line-height: 1;
cursor: pointer;
}
.RemoveButton:hover,
.RemoveButton:focus {
color: blue;
}
.AddShortcutButton {
display: flex;
align-self: flex-start;
margin-left: auto;
flex-shrink: 0;
}
.AddShortcutButton-button {
--size: 28px;
width: var(--size);
height: var(--size);
padding: 0;
line-height: 0;
}
.ShortcutsTable {
table-layout: fixed;
border-spacing: 0;
width: 100%;
}
.ShortcutsTable td,
.ShortcutsTable th {
padding: 3px;
padding-left: 5px;
vertical-align: top;
}
.ShortcutsTable th {
padding-top: 6px;
padding-left: calc(var(--Field_padding) - var(--Field_changed-width));
border-left: var(--Field_changed-width) solid transparent;
width: calc(50%);
font-weight: normal;
text-align: left;
transition: border-color 200ms;
}
.ShortcutsTable th.is-changed {
border-left-color: blue;
}
.ShortcutsTable td {
padding-right: var(--Field_padding);
}
.ShortcutsTable tbody tr:nth-child(odd) td,
.ShortcutsTable tbody tr:nth-child(odd) th {
background-color: lightgrey;
}
.ShortcutsGrid {
--spacing-vertical: 3px;
--spacing-horizontal: 10px;
display: flex;
flex-wrap: wrap;
margin: calc(-1 * var(--spacing-vertical))
calc(-1 * var(--spacing-horizontal));
width: 100%;
}
.ShortcutsGrid > * {
flex: 1 1 50%;
display: flex;
padding: var(--spacing-vertical) var(--spacing-horizontal);
}
.Preview {
position: relative;
border: 1px solid darkgrey;
overflow: auto;
}
.KeyboardShortcut {
white-space: nowrap;
}
.KeyboardShortcut > * + * {
margin-left: 1px;
}
.ButtonWithPopup {
display: inline-flex;
flex-direction: column;
position: relative;
}
.ButtonWithPopup.is-open .ButtonWithPopup-button {
position: relative;
z-index: 2;
border-color: blue;
}
.ButtonWithPopup.is-open .ButtonWithPopup-button::after {
content: "";
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: var(--button_border-width);
background-color: white;
}
.ButtonWithPopup-popup {
position: absolute;
z-index: 1;
top: calc(100% - var(--button_border-width));
right: 0;
min-width: 100%;
border: var(--button_border-width) solid blue;
background-color: white;
padding: 24px;
font-size: 1rem;
}
.ErrorsSpacing {
height: var(--Field_padding);
}
.Errors {
padding: var(--Field_padding);
padding-top: 0;
background-color: red;
}
.ErrorsHeading {
display: flex;
position: sticky;
bottom: 0;
background-color: red;
}
.ErrorsHeading-link {
flex-grow: 1;
padding: var(--Field_padding) var(--Field_padding);
color: inherit;
font-weight: bold;
text-decoration: underline;
}
.ErrorsHeading-removeButton {
width: 50px;
font-size: 28px;
}
.Intro {
padding: 18px var(--Field_padding);
}
.PerfTable {
border-spacing: 0;
width: 100%;
}
.PerfTable caption button {
all: unset;
padding: 0 var(--Field_padding);
width: 100%;
text-align: left;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
position: relative;
}
.PerfTable th,
.PerfTable td {
text-align: right;
font-weight: normal;
padding: 2px 0;
padding-right: 5px;
}
.PerfTable th:first-child,
.PerfTable td:first-child {
padding-left: var(--Field_padding);
text-align: left;
}
.PerfTable th:last-child,
.PerfTable td:last-child {
padding-right: var(--Field_padding);
}
.PerfTable thead th,
.PerfTable th:only-child {
padding-top: 10px;
font-weight: bold;
}
.PerfTable thead th:not(:first-child) {
--width: 50px;
width: var(--width);
}
.PerfTable thead th:last-child {
width: calc(var(--width) + var(--Field_padding));
}
.PerfTable-alternate {
background-color: lightgrey;
}
.PerfTable [title] {
border-bottom: 1px dotted currentColor;
}
.Details-button {
border-left: none;
border-right: none;
padding-left: var(--Field_padding);
padding-right: var(--Field_padding);
width: 100%;
text-align: left;
}
.Toggle {
position: relative;
}
.Toggle::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: var(--Field_padding);
height: 100%;
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'><polyline points='1,1 3,3 5,1' fill='none' stroke='%23777' /></svg>");
background-repeat: no-repeat;
background-position: center;
background-size: auto 0.75em;
transition: transform 200ms;
}
.Toggle.is-open::before {
transform: rotate(180deg);
}
.Branding {
display: flex;
align-items: center;
padding: var(--Field_padding);
}
.Branding-image {
flex-shrink: 0;
margin-right: var(--Field_padding);
}
.Branding-name {
font-weight: bold;
} | 0.514888 | 0.141459 |
ngm-dashboard .ngm-panel-header,
.ngm-proj-title,
.ngm-proj-views-title,
.ngm-projects-list {
margin-bottom: 12px;
}
.ngm-proj-views-title,
.ngm-proj-title {
display: flex;
color: #212529;
font: normal normal bold 14px/20px Inter;
}
.ngm-proj-title {
justify-content: space-between;
}
.ngm-proj-views-title > div:first-child {
margin-right: 15px;
}
.ngm-dashboard-tabs {
color: var(--ngm-interaction);
display: flex;
}
.ngm-dashboard-tabs > div:hover {
color: var(--ngm-interaction-hover);
cursor: pointer;
}
.ngm-dashboard-tabs > div.active {
color: var(--ngm-interaction-active);
}
.ngm-dashboard-tabs > div:not(:last-child) {
margin-right: 24px;
}
.ngm-projects-list {
display: flex;
flex-wrap: wrap;
}
.ngm-proj-preview {
display: flex;
flex-direction: column;
background-color: white;
box-shadow: 2px 2px 2px #00000029;
border-radius: 8px;
width: 240px;
height: 228px;
cursor: pointer;
margin: 8px;
}
.ngm-proj-preview-img {
width: 240px;
height: 132px;
background-size: cover;
background-repeat: no-repeat;
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.ngm-proj-preview-title {
background-color: var(--ngm-interaction-active);
width: 240px;
height: 32px;
color: white;
font: normal normal bold 14px/28px Inter;
}
.ngm-proj-preview-subtitle {
width: 100%;
height: calc(100% - 164px);
font: normal normal 500 14px/20px Inter;
color: #212529;
}
.ngm-proj-preview-subtitle,
.ngm-proj-preview-title {
display: flex;
align-items: center;
padding: 0 8px;
}
.ngm-proj-preview-subtitle span {
height: 70%;
display: block;
display: -webkit-box;
max-width: 224px;
margin: 0 auto;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
ngm-dashboard .ngm-divider {
margin-top: 16px;
margin-bottom: 19px;
}
.ngm-proj-information {
display: flex;
}
.ngm-proj-description {
margin-left: 28px;
font: normal normal 500 16px/24px Inter;
letter-spacing: 0.16px;
color: #4A5056;
width: 450px;
}
.ngm-proj-data {
margin-bottom: 16px;
font: normal normal 500 14px/20px Inter;
color: #212529;
}
.ngm-proj-description-title {
font: normal normal 500 12px/15px Inter;
letter-spacing: 0.41px;
}
ngm-project-popup {
width: 480px;
}
ngm-project-popup.compact {
width: 260px;
}
.ngm-project-popup-content {
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 1px 3px #00000033;
margin-bottom: 12px;
}
.ngm-project-view-title {
padding: 8px 0;
max-width: 380px;
}
.compact .ngm-project-view-title {
max-width: 170px;
}
.ngm-project-popup-content > .ngm-play-last-icon,
.ngm-project-popup-content > .ngm-play-icon {
cursor: pointer;
margin: 4px;
}
.ngm-project-popup-content > .ngm-play-last-icon:hover,
.ngm-project-popup-content > .ngm-play-icon:hover {
background-color: var(--ngm-interaction-hover);
}
ngm-dashboard .ngm-label-btn {
display: flex;
align-items: center;
justify-content: start;
}
ngm-dashboard .ngm-label-btn .ngm-back-icon {
background-color: var(--ngm-interaction);
margin-right: 8px;
}
ngm-dashboard .ngm-label-btn:hover .ngm-back-icon {
background-color: var(--ngm-interaction-hover);
}
.ngm-view-icon {
background-color: var(--ngm-interaction);
cursor: pointer;
}
.ngm-view-icon:hover, .ngm-view-icon:focus {
background-color: var(--ngm-interaction-hover);
} | ui/src/style/ngm-dashboard.css | ngm-dashboard .ngm-panel-header,
.ngm-proj-title,
.ngm-proj-views-title,
.ngm-projects-list {
margin-bottom: 12px;
}
.ngm-proj-views-title,
.ngm-proj-title {
display: flex;
color: #212529;
font: normal normal bold 14px/20px Inter;
}
.ngm-proj-title {
justify-content: space-between;
}
.ngm-proj-views-title > div:first-child {
margin-right: 15px;
}
.ngm-dashboard-tabs {
color: var(--ngm-interaction);
display: flex;
}
.ngm-dashboard-tabs > div:hover {
color: var(--ngm-interaction-hover);
cursor: pointer;
}
.ngm-dashboard-tabs > div.active {
color: var(--ngm-interaction-active);
}
.ngm-dashboard-tabs > div:not(:last-child) {
margin-right: 24px;
}
.ngm-projects-list {
display: flex;
flex-wrap: wrap;
}
.ngm-proj-preview {
display: flex;
flex-direction: column;
background-color: white;
box-shadow: 2px 2px 2px #00000029;
border-radius: 8px;
width: 240px;
height: 228px;
cursor: pointer;
margin: 8px;
}
.ngm-proj-preview-img {
width: 240px;
height: 132px;
background-size: cover;
background-repeat: no-repeat;
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.ngm-proj-preview-title {
background-color: var(--ngm-interaction-active);
width: 240px;
height: 32px;
color: white;
font: normal normal bold 14px/28px Inter;
}
.ngm-proj-preview-subtitle {
width: 100%;
height: calc(100% - 164px);
font: normal normal 500 14px/20px Inter;
color: #212529;
}
.ngm-proj-preview-subtitle,
.ngm-proj-preview-title {
display: flex;
align-items: center;
padding: 0 8px;
}
.ngm-proj-preview-subtitle span {
height: 70%;
display: block;
display: -webkit-box;
max-width: 224px;
margin: 0 auto;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
ngm-dashboard .ngm-divider {
margin-top: 16px;
margin-bottom: 19px;
}
.ngm-proj-information {
display: flex;
}
.ngm-proj-description {
margin-left: 28px;
font: normal normal 500 16px/24px Inter;
letter-spacing: 0.16px;
color: #4A5056;
width: 450px;
}
.ngm-proj-data {
margin-bottom: 16px;
font: normal normal 500 14px/20px Inter;
color: #212529;
}
.ngm-proj-description-title {
font: normal normal 500 12px/15px Inter;
letter-spacing: 0.41px;
}
ngm-project-popup {
width: 480px;
}
ngm-project-popup.compact {
width: 260px;
}
.ngm-project-popup-content {
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 1px 3px #00000033;
margin-bottom: 12px;
}
.ngm-project-view-title {
padding: 8px 0;
max-width: 380px;
}
.compact .ngm-project-view-title {
max-width: 170px;
}
.ngm-project-popup-content > .ngm-play-last-icon,
.ngm-project-popup-content > .ngm-play-icon {
cursor: pointer;
margin: 4px;
}
.ngm-project-popup-content > .ngm-play-last-icon:hover,
.ngm-project-popup-content > .ngm-play-icon:hover {
background-color: var(--ngm-interaction-hover);
}
ngm-dashboard .ngm-label-btn {
display: flex;
align-items: center;
justify-content: start;
}
ngm-dashboard .ngm-label-btn .ngm-back-icon {
background-color: var(--ngm-interaction);
margin-right: 8px;
}
ngm-dashboard .ngm-label-btn:hover .ngm-back-icon {
background-color: var(--ngm-interaction-hover);
}
.ngm-view-icon {
background-color: var(--ngm-interaction);
cursor: pointer;
}
.ngm-view-icon:hover, .ngm-view-icon:focus {
background-color: var(--ngm-interaction-hover);
} | 0.478285 | 0.08548 |
@charset "utf-8";
.col_main { float:left; width:100%;}
.col_sub,.col_extra { float:left;}
.grid_01 .main_wrap { margin-left:195px;}
.grid_01 .col_sub { width:185px; margin-left:-100%;}
.inputfile{cursor:hand;border:#dedede 1px solid;background-color:#fff; height:24px;} /*单上传按钮样式*/
.user_center .user_pgHeader,.user_nav .item .parent,.user_nav .item .s,.user_gonggao .bd li,.user_center .user_info .face_bg,.alink,.alink_message .s,.user_info .money .s,.module_default .hd,.module_default .tongji_hd .s,.module_default .bbsList .item,.module_default .po .s,.module_default .dianpu .s,.btn_new,.btn_new .s_l,.btn_tuiguang .s_l,.btn_green,.btn_green .s_l,.yellow_tip .hd .s,.sys_tip .s,.tab_A .item,.tab_A .item .s,.tab_A .add_zp,.menu_a,.menu_a .s,.table_a th,.table_a .btn_b,.table_a .btn_b .s,.user_form .form_btn,.user_form .form_btn .s { background:url(../Images/user_manage_sp.png) no-repeat 0 0;}
.user_center {}
.user_center .user_pgHeader { height:32px; overflow:hidden; font:0pt/1000px Arial;}
.uc_yezhu .user_pgHeader { background-position:0 0;}
.uc_business .user_pgHeader { background-position:0 -33px;}
.uc_company .user_pgHeader { background-position:0 -66px;}
.uc_designer .user_pgHeader { background-position:0 -99px;}
.uc_yezhu .user_info { background-color:#fffdee; border:1px solid #edd28b;}
.message{ background-color:#fffdee; border:1px solid #edd28b; padding:16px;}
.uc_business .user_info { background-color:#e5eef4; border:1px solid #c4d5df;}
.uc_company .user_info { background-color:#e8f5ee; border:1px solid #bbd4c6;}
.uc_designer .user_info { background-color:#fff4c0; border:1px solid #e8c387;}
.uc_yezhu .user_info .left { width:120px;}
.uc_yezhu .user_info .right { width:417px;}
.uc_yezhu .user_info .face_bg { width:103px; height:107px; overflow:hidden; background-position:0 -390px; padding:5px;}
.uc_yezhu .user_info .change_face { width:103px;}
.jftd{ text-indent:10px;}
.btn_submit { width:75px; height:36px; overflow:hidden; background:url(../Images/btn_submit.jpg) no-repeat; border:none;color:#fff;font-size:13px; margin:4px 4px;; text-align:center;cursor:pointer;}
.uc_business .user_info .left { width:150px;}
.uc_business .user_info .right { width:380px;}
.uc_business .user_info .face_bg { width:145px; height:66px; overflow:hidden; background-position:0 -508px; padding:2px;}
.uc_business .user_info .change_face { width:149px;}
.uc_business .user_info .money { border:1px solid #c4d5df;}
.uc_business .module_default .tongji_inner .zb_tip { margin-left:0; margin-top:15px;}
.hidden{ display:none;}
.uc_company .user_info .left { width:150px;}
.uc_company .user_info .right { width:380px;}
.uc_company .user_info .face_bg { width:145px; height:66px; overflow:hidden; background-position:0 -839px; padding:2px;}
.uc_company .user_info .change_face { width:149px;}
.uc_company .user_info .money { border:1px solid #bbd4c6;}
.uc_company .module_default .tongji_inner .zb_tip { margin-left:0; margin-top:15px; padding:8px 10px;}
.redbold{font-size:10.5pt; font-weight:bold; color:Red;}
.uc_designer .user_info .left { width:115px;}
.uc_designer .user_info .right { width:420px;}
.uc_designer .user_info .face_bg { width:106px; height:106px; overflow:hidden; background-position:0 -579px; padding:2px;}
.uc_designer .user_info .change_face { width:106px;}
.uc_designer .user_info .money { border:1px solid #e8c387;}
.uc_designer .module_default .tongji_inner .zb_tip { margin-left:0; margin-top:15px; padding:8px 10px;}
.btn_1{ background-color:#f3f2ef;cursor:pointer; border:solid 1px #829fbb; padding:0 5px; letter-spacing:2px; line-height:20px; margin:0px 2px;}
.opdiv{ margin:6px 0px 2px 8px;}
.jftitle{ color:Red; font-size:large; margin:0px 6px;}
#Marker{ font-weight:bold; font-size:120%; vertical-align:top;}
.headimg{ margin:4px;Border:4px solid #f3f2ef;}
.checkboxlist input{ vertical-align:middle;}
.checkboxlist label{ vertical-align:middle; margin-right:12px; margin-left:1px;}
.radiobuttonlist input{ vertical-align:middle;}
.radiobuttonlist label{ vertical-align:middle; margin-right:12px; margin-left:1px;}
/*多个个文件上传样式开始*/
.uploadtable{border:1px solid #f3f2ef; margin-top:2px; width:99%;}
.uploadtable .single{ float:left; border:4px solid #eee;width:120px; text-align:center; height:120px; margin:3px 3px;}
.single img{ text-align:center;}
/*多个文件上传样式结束*/
/*SmartGrid控件样式开始*/
.cell_1{ width:20%; padding-left:6px;}
.cell_2{ width:35%;}
.cell_3{ width:20%;}
.cell_4{ width:18%;}
.cell_5{ width:7%;}
.btncss{ background-color:#f3f2ef;cursor:pointer; padding:4px 8px; border:solid 1px #829fbb;}
.btn_go{ background-color:#f3f2ef;cursor:pointer; width:50px; border:solid 1px #829fbb; height:20px;}
.txt_go{width:32px;border:solid 1px #808080; margin-left:2px;}
.ddl{width:60%; border:solid 1px #808080;height:20px;}
.gridviewhead { background-color:#ecf8dc;}
.gridviwnva{background-color:#e1e1e1;}
.gridviwnva table{background-color:#f6f6f6; line-height:25px;}
.gridviwnva tr { width:100%;}
.gridviwnva a:link{ text-decoration: none; padding:0px 2px 0 2px;}
.gridviwnva a:visited{text-decoration: none ; padding:0px 2px 0 2px;}
.gridviwnva a:hover{text-decoration: none;padding:0px 2px 0 2px;}
.gridviwnva a:active{text-decoration: none ;padding:0px 2px 0 2px;}
.gridviwnvarow { background-color:#fafef4; color:#333333;height:24px;}
.gridviwnvaatler { background-color:#f2fbe7;}
.gridviwnvaselect{ background-color:#ecf8dc;}
.gridviwnvaheader {background-color:#f6f6f6; font-weight:bold; line-height:26px;}
.divspace{ height:12px;}
.std10{ width:10%;}
.std35{ width:35%;}
/*.select{ width:40%;}*/默认去掉
.file{ background-color:Navy; border-style:none;}
.hr{ border:1px dotted #3f78b7;}
.hit{ text-decoration:none; cursor:pointer; color:Blue;}
/*SmartGrid控件样式结束*/
.div_tool{ border:solid 1px #98bbe3;padding-left:10px; line-height:24px; margin:4px 0px;}
.div_tool label {padding:0px 2px;}
.div_tool a { margin-left:18px; font-weight:300; letter-spacing:1px;}
.search_tool{ border:solid 1px #98bbe3;padding-left:60px; line-height:22px;}
.add{background:url(/Images/comm/add.png) no-repeat 0px -1px;width:16px; height:16px;}
.delete{background:url(/Images/comm/delete.png) no-repeat 0px -1px;width:16px; height:16px;}
.user_nav { border:1px solid #dfdfdf; border-top:0 none;}
.user_nav .item { position:relative; *zoom:1; z-index:1; border-top:1px solid #dfdfdf;}
.user_nav .item .parent { display:block; height:29px; overflow:hidden; background-position:0 -132px; background-repeat:repeat-x; font:bold 14px/29px simsun; color:#333; padding-left:15px;}
.user_nav .item .parent:hover { text-decoration:none; color:#666;}
.user_nav .item .son { padding:10px;}
.user_nav .item .item_in { padding-left:15px; line-height:25px;}
.user_nav .item .s { display:block; position:absolute; width:7px; height:4px; top:12px; right:10px; background-position:-133px -390px;}
.user_nav .item .close { background-position:-141px -390px;}
.user_nav .item .hide { display:none;}
.user_info { width:733px; float:left; padding:10px;}
.user_gonggao { width:185px; float:right;}
.user_gonggao { border:1px solid #dfdfdf;}
.user_gonggao .hd li { float:left; width:px; background-color:#f5f5f5; height:27px; font:14px/27px simsun; border-bottom:1px solid #dfdfdf; width:92px; text-align:center; border-right:1px solid #dfdfdf;}
.user_gonggao .hd .select { background-color:#fff; border-bottom:1px solid #fff; font-weight:bold;}
.user_gonggao .hd a { color:#666;} .user_gonggao .hd .select a { color:#404040;}
.user_gonggao .hd .last { border-right:0 none;}
.user_gonggao .bd { padding:7px 10px;}
.user_gonggao .bd li { background-position:-177px -412px; line-height:24px; height:24px; overflow:hidden; padding-left:15px; border-bottom:1px dotted #ddd;}
.user_info .left { float:left;}
.user_info .right { float:left;margin-left: 20px; color:#888; line-height:24px;}
.user_info .change_face { text-align:center;}
.user_info .title { font:bold 14px/24px Arial; color:#404040; margin-bottom:6px;}
.user_info .money { background-color:#fff; border:1px solid #ffeed6; padding:8px 12px; margin-top:8px; height:16px; line-height:16px;}
.user_info .money .red { font-weight:bold;}
.user_info .money .black { font-family:simsun;}
.user_info .money .s { display:inline-block; *display:inline; *zoom:1; width:16px; height:16px; overflow:hidden; vertical-align:middle; margin-right:5px;}
.user_info .money .s_1 { background-position:-165px -390px;}
.user_info .money .s_2 { background-position:-114px -406px;}
.user_info .money a { font-family:simsun;}
.module_default { border:1px solid #dfdfdf; margin-top:10px;}
.module_default .hd { height:29px; font:bold 14px/29px simsun; background-position:0 -132px; background-repeat:repeat-x; background-color:#f1f1f1; padding-left:12px; color:#404040;}
.module_default .hd .txt { padding-left:20px; color:#777; font:normal 12px/29px simsun;}
.module_default .tongji_hd { position:relative; *zoom:1; z-index:1; padding-left:28px;}
.module_default .tongji_hd .s { position:absolute; left:8px; top:6px; width:15px; height:15px; background-position:-149px -390px; overflow:hidden;}
.module_default .hd .other_hd { font:normal 12px/29px simsun; color:#888;}
.module_default .hd .more { display:block; _display:inline; float:right; margin:0 10px 0 0; font:normal 12px/29px simsun;}
.module_default .tongji_inner { padding:12px; line-height:24px;}
.module_default .tongji_inner .zb_tip { margin:6px 0 12px 60px; border:1px solid #aad87e; background-color:#d8f7bb; color:#404040; padding:2px 8px;}
.module_default .tongji_inner .btn { margin:6px 0 8px 60px;}
.module_default .bbsList { padding:10px 0 10px 10px;}
.module_default .bbsList li { float:left; display:inline; margin-right:10px; width:224px; background-position:-178px -436px; line-height:22px; height:22px; overflow:hidden; padding-left:13px;}
.gongneng_table { width:100%;}
.gongneng_table th { background-color:#f3f3f3;border-top:1px solid #fff; color:#666; line-height:24px; }
.gongneng_table td { border-top:1px solid #ddd; border-right:1px solid #ddd; text-align:left; padding-left:15px; line-height:46px; font-size:12px;}
.gongneng_table .center{ text-align:center;border-right:1px solid #ddd; }
.gongneng_table .span{text-align:center; display:block;}
.txt_init{border-top:1px solid #A2A2A2;border-left:1px solid #A2A2A2;border-right:1px solid #DEDEDE;border-bottom:1px solid #DEDEDE;color:#484848; padding:5px 5px 5px 5px; margin:2px 0px; width:40%;vertical-align:middle; font-size:12px; line-height:20px;word-wrap:break-wrod;word-break:break-all;}
.txt_focus{border:1px solid #FF9900;vertical-align:middle;color:#FF0000;background-color: #FFEECA; font-size:12px;line-height:20px;word-wrap:break-wrod;word-break:break-all;}
.td1{ width:18%;}
.td2{ width:82%;}
.red{color:Red;}
.module_default .po { position:relative; *zoom:1; z-index:1; padding-left:24px; margin:4px 0;}
.module_default .po .s { position:absolute; display:block; width:15px; height:16px; overflow:hidden; left:2px; top:3px;}
.module_default .s_1 .s { background-position:-131px -406px;}
.module_default .s_2 .s { background-position:-147px -406px; width:16px;}
.module_default .dianpu { line-height:30px; position:relative; *zoom:1; z-index:1; padding-left:105px;}
.module_default .dianpu .s { display:block; position:absolute; top:5px; left:5px; background-position:0 -690px; width:82px; height:71px; overflow:hidden;}
.module_default .dianpu .s_2 { background-position:-83px -690px; width:68px; height:61px; top:8px; left:11px;}
.module_default .btn2 { margin-top:5px; height:28px;}
.alink {display:inline-block; *display:inline; *zoom:1; background-position:0 -162px; padding:0 15px; border:1px solid #999999; margin:2px 0px 2px 0px; font:12px/22px simsun; color:#404040; background-color:#e6e6e6; vertical-align:middle;}
.alink:hover { text-decoration:none; color:#666;}
.alink_message { position:relative; *zoom:1;}
.alink_message .s { display:block; position:absolute; top:-5px; right:-6px; width:18px; height:15px; background-position:-114px -390px; overflow:hidden;}
.btn_new { font-family:simsun; position:relative; *zoom:1; z-index:1; display:block; float:right; height:26px; background-position:0 -185px; font:bold 12px/26px simsun; color:#fff; padding:0 15px 0 14px;}
.btn_new .s_l { display:block; position:absolute; overflow:hidden; width:3px; height:26px; right:0; top:0; background-position:-114px -446px;}
.btn_tuiguang { font-family:simsun; position:relative; *zoom:1; z-index:1; display:inline-block; *display:inline; *zoom:1; color:#f30; padding:0 0 0 28px;}
.btn_tuiguang .s_l { display:block; position:absolute; overflow:hidden; width:24px; height:22px; left:0; top:3px; background-position:-114px -423px;}
.btn_green { font-family:simsun; position:relative; *zoom:1; z-index:1; display:inline-block; *display:inline; *zoom:1; height:20px; background-position:0 -212px; font:12px/20px simsun; color:#fff; padding:0 10px 0 9px; margin-left:6px; margin-right:6px;}
.btn_green .s_l { display:block; position:absolute; overflow:hidden; width:2px; height:20px; right:-1px; top:0; background-position:-118px -446px;}
.red { color:#c00;}
.green { color:#106c01;}
.orange { color:#f30;}
.blue { color:#36c;}
.gray { color:#888;}
.black { color:#404040;}
.marTop10 { margin-top:10px;}
/* 内页 */
.yellow_tip { border:1px solid #edd28b; background-color:#fffdee; padding:10px;}
.yellow_tip .hd { position:relative; *zoom:1; z-index:1; color:#c00; font:bold 14px/1.5 simsun; padding-left:20px;}
.yellow_tip .hd .s { display:block; position:absolute; left:0px; top:1px; width:14px; height:15px; background-position:-138px -423px; overflow:hidden;}
.yellow_tip .bd { padding:10px 5px 0;}
/* 计算统计信息 */
.count_tip { border:1px solid #FFD324; background-color: #FFF6BF; padding:1px; margin:3px 0px;}
.count_tip .bd { padding:0px 0px 0px 8px; font-weight:bold; line-height:24px;}
.count_tip .bd a{ margin:0px 12px;}
.gray_tip { border:1px solid #e6e6e6; background-color:#f8f8f8; padding:10px;}
.gray_tip .hd { color:#165fb9; font:bold 14px/1.5 simsun;}
.gray_tip .bd { padding:5px 0 0;}
.sys_tip { border:1px solid #dfdfdf; background-color:#fff; padding:120px; position:relative; *zoom:1; z-index:1;}
.sys_tip .s { display:block; position:absolute; left:150px; top:117px; width:75px; height:75px; background-position:0 -762px; overflow:hidden;}
.sys_tip .bd { padding:5px 0 0 120px; font:14px/1.8 simsun;}
.sys_tip h3 { color:#333; font-weight:bold;}
.tab_A { position:relative; *zoom:1; z-index:1; border-bottom:2px solid #b40007;}
.tab_A .item { position:relative; *zoom:1; z-index:1; float:left; display:inline; margin-left:4px; height:27px; background-position:0 -261px; line-height:27px; padding:0 14px; font-family:simsun;}
.tab_A .select { background-position:0 -233px;
top: -1px;
left: 1px;
}
.tab_A .item a { color:#404040;}
.tab_A .select a { color:#fff; font-weight:bold;}
.tab_A .item .s { display:block; position:absolute; right:0; top:0; width:2px; height:27px; background-position:-121px -446px; overflow:hidden;}
.tab_A .select .s { background-position:-124px -446px;}
.tab_A .add_zp { color:#fff; text-align:left; line-height:23px; font-family:simsun; position:absolute; display:block; width:69px; height:23px; right:5px; top:2px; background-position:-77px -762px; color:#fff; padding-left:25px;}
.tab_B { border-bottom:1px solid #b40007; padding-left:5px;}
.tab_B .item { position:relative; *zoom:1; z-index:1; float:left; height:32px; background-position:0 -261px; padding:0 16px; border:1px solid #e0e0e0; border-bottom:0 none; font:bold 14px/32px simsun; background-color:#f9f9f9; margin-top:1px;}
.tab_B .select { margin-top:0px; background-position:0 -233px; margin-bottom:-1px; background-color:#fff; border:2px solid #c30000; border-bottom:1px solid #fff;}
.tab_B .item a { color:#888;}
.tab_B .select a { color:#404040;}
.menu_a { display:inline-block; *display:inline; *zoom:1; position:relative; z-index:1; height:28px; line-height:28px; color:#666; background-position:0 -318px; padding:0 13px 0 12px; margin-right:8px;}
.menu_a_select { background-position:0 -289px; color:#c00;}
.menu_a .s { display:block; position:absolute; right:0; top:0; overflow:hidden; width:2px; height:28px; background-position:-127px -446px;}
.menu_a_select .s { background-position:-130px -446px;}
.table_a { border:1px solid #ddd;}
.table_a th { background-position:0 -910px; background-repeat:repeat-x; line-height:26px; font-weight:bold;}
.table_a td { text-align:center; line-height:24px; border:1px solid #ddd; padding:0 7px;}
.table_a .even td { background-color:#f8f8f8;}
.table_a .btn td { border:0 none;}
.table_a .checkbox { vertical-align:middle;}
.table_a .btn_b { vertical-align:middle; display:inline-block; *display:inline; *zoom:1; position:relative; z-index:1; height:21px; line-height:21px; color:#666; background-position:0 -942px; padding:0 9px; margin-right:5px; font-family:simsun;}
.table_a .btn_b .s { display:block; position:absolute; right:0; top:0; overflow:hidden; width:2px; height:21px; background-position:-138px -446px;}
.table_a .ali_left { padding:4px 0; line-height:16px; text-align:left; padding-left:0;}
.table_a .gn { float:left; width:30%;}
.table_a .pages{display:inline; margin-right:2px;float:right;}
.table_a .page {display:inline; margin-right:4px;}
.table_a .page a { vertical-align:top; padding:0 6px; margin-left:3px; display:inline-block; *display:inline; *zoom:1; line-height:19px; height:19px; background-color:#fff; border:1px solid #ddd; color:#404040;}
.table_a .page a.select { background-color:#ffeedd; border:1px solid #ee7700; color:#ee5500;}
.pages .paginginfo{display:inline; vertical-align:bottom;}
.table_a .page span.select { background-color:#ffeedd; border:1px solid #ee7700; color:#ee5500; vertical-align:top; padding:0 6px; margin-left:3px; display:inline-block; *display:inline; *zoom:1; line-height:19px; height:19px; width:8px;}
.user_form { padding:10px 0;}
.user_form .item_l { padding:10px 15px; overflow:hidden; *zoom:1; border-bottom:1px dotted #cbcbcb; position:relative;*zoom:1;}
.user_form .noborder { border-bottom:0 none;}
.user_form .item_l .sp_01,.user_form .item_l .sp_02,.user_form .item_l .sp_03 { display:block; float:left; line-height:28px;}
.user_form .item_l .sp_01 { width:130px; font-size:14px; text-align:right;}
.user_form .item_l .sp_02 { font-size:14px;}
.user_form .item_l .sp_03 { color:#888; display:inline; margin-left:15px;}
.user_form .item_l .ipt { width:260px; height:20px; border:1px solid #ccc; vertical-align:top; padding:4px; font-size:14px;}
.user_form .item_l .red { color:#f00;}
.user_form .item_l .question { font-weight:bold; color:#f30; font-size:14px; padding-right:10px;}
.user_form .item_l .sp_03 img { display:block; margin-top:5px;}
.user_form .upfile,.user_form .select_opt { font-size:14px; padding:4px;}
.user_form .checkbox { vertical-align:middle; margin:0 4px 0 12px;}
.user_form .form_btn { display:inline-block; *display:inline; *zoom:1; position:relative; z-index:1; height:42px; color:#666; background-position:0 -347px; padding:0 30px; font:bold 16px/42px simsun; color:#fff; margin-right:10px;}
.user_form .form_btn .s { display:block; position:absolute; right:0; top:0; overflow:hidden; width:4px; height:42px; background-position:-133px -446px;}
.user_form .form_btn:hover { text-decoration:none; opacity:.8; FILTER: alpha(opacity=80);}
#form td .ipt{float:left;}
#form td .notice{float:left;padding-top: 10px;}
#form td .notice .Validform_checktip{display:block;line-height: 18px;height: 18px;} | Home/Tpl/default/css/user_center.css | @charset "utf-8";
.col_main { float:left; width:100%;}
.col_sub,.col_extra { float:left;}
.grid_01 .main_wrap { margin-left:195px;}
.grid_01 .col_sub { width:185px; margin-left:-100%;}
.inputfile{cursor:hand;border:#dedede 1px solid;background-color:#fff; height:24px;} /*单上传按钮样式*/
.user_center .user_pgHeader,.user_nav .item .parent,.user_nav .item .s,.user_gonggao .bd li,.user_center .user_info .face_bg,.alink,.alink_message .s,.user_info .money .s,.module_default .hd,.module_default .tongji_hd .s,.module_default .bbsList .item,.module_default .po .s,.module_default .dianpu .s,.btn_new,.btn_new .s_l,.btn_tuiguang .s_l,.btn_green,.btn_green .s_l,.yellow_tip .hd .s,.sys_tip .s,.tab_A .item,.tab_A .item .s,.tab_A .add_zp,.menu_a,.menu_a .s,.table_a th,.table_a .btn_b,.table_a .btn_b .s,.user_form .form_btn,.user_form .form_btn .s { background:url(../Images/user_manage_sp.png) no-repeat 0 0;}
.user_center {}
.user_center .user_pgHeader { height:32px; overflow:hidden; font:0pt/1000px Arial;}
.uc_yezhu .user_pgHeader { background-position:0 0;}
.uc_business .user_pgHeader { background-position:0 -33px;}
.uc_company .user_pgHeader { background-position:0 -66px;}
.uc_designer .user_pgHeader { background-position:0 -99px;}
.uc_yezhu .user_info { background-color:#fffdee; border:1px solid #edd28b;}
.message{ background-color:#fffdee; border:1px solid #edd28b; padding:16px;}
.uc_business .user_info { background-color:#e5eef4; border:1px solid #c4d5df;}
.uc_company .user_info { background-color:#e8f5ee; border:1px solid #bbd4c6;}
.uc_designer .user_info { background-color:#fff4c0; border:1px solid #e8c387;}
.uc_yezhu .user_info .left { width:120px;}
.uc_yezhu .user_info .right { width:417px;}
.uc_yezhu .user_info .face_bg { width:103px; height:107px; overflow:hidden; background-position:0 -390px; padding:5px;}
.uc_yezhu .user_info .change_face { width:103px;}
.jftd{ text-indent:10px;}
.btn_submit { width:75px; height:36px; overflow:hidden; background:url(../Images/btn_submit.jpg) no-repeat; border:none;color:#fff;font-size:13px; margin:4px 4px;; text-align:center;cursor:pointer;}
.uc_business .user_info .left { width:150px;}
.uc_business .user_info .right { width:380px;}
.uc_business .user_info .face_bg { width:145px; height:66px; overflow:hidden; background-position:0 -508px; padding:2px;}
.uc_business .user_info .change_face { width:149px;}
.uc_business .user_info .money { border:1px solid #c4d5df;}
.uc_business .module_default .tongji_inner .zb_tip { margin-left:0; margin-top:15px;}
.hidden{ display:none;}
.uc_company .user_info .left { width:150px;}
.uc_company .user_info .right { width:380px;}
.uc_company .user_info .face_bg { width:145px; height:66px; overflow:hidden; background-position:0 -839px; padding:2px;}
.uc_company .user_info .change_face { width:149px;}
.uc_company .user_info .money { border:1px solid #bbd4c6;}
.uc_company .module_default .tongji_inner .zb_tip { margin-left:0; margin-top:15px; padding:8px 10px;}
.redbold{font-size:10.5pt; font-weight:bold; color:Red;}
.uc_designer .user_info .left { width:115px;}
.uc_designer .user_info .right { width:420px;}
.uc_designer .user_info .face_bg { width:106px; height:106px; overflow:hidden; background-position:0 -579px; padding:2px;}
.uc_designer .user_info .change_face { width:106px;}
.uc_designer .user_info .money { border:1px solid #e8c387;}
.uc_designer .module_default .tongji_inner .zb_tip { margin-left:0; margin-top:15px; padding:8px 10px;}
.btn_1{ background-color:#f3f2ef;cursor:pointer; border:solid 1px #829fbb; padding:0 5px; letter-spacing:2px; line-height:20px; margin:0px 2px;}
.opdiv{ margin:6px 0px 2px 8px;}
.jftitle{ color:Red; font-size:large; margin:0px 6px;}
#Marker{ font-weight:bold; font-size:120%; vertical-align:top;}
.headimg{ margin:4px;Border:4px solid #f3f2ef;}
.checkboxlist input{ vertical-align:middle;}
.checkboxlist label{ vertical-align:middle; margin-right:12px; margin-left:1px;}
.radiobuttonlist input{ vertical-align:middle;}
.radiobuttonlist label{ vertical-align:middle; margin-right:12px; margin-left:1px;}
/*多个个文件上传样式开始*/
.uploadtable{border:1px solid #f3f2ef; margin-top:2px; width:99%;}
.uploadtable .single{ float:left; border:4px solid #eee;width:120px; text-align:center; height:120px; margin:3px 3px;}
.single img{ text-align:center;}
/*多个文件上传样式结束*/
/*SmartGrid控件样式开始*/
.cell_1{ width:20%; padding-left:6px;}
.cell_2{ width:35%;}
.cell_3{ width:20%;}
.cell_4{ width:18%;}
.cell_5{ width:7%;}
.btncss{ background-color:#f3f2ef;cursor:pointer; padding:4px 8px; border:solid 1px #829fbb;}
.btn_go{ background-color:#f3f2ef;cursor:pointer; width:50px; border:solid 1px #829fbb; height:20px;}
.txt_go{width:32px;border:solid 1px #808080; margin-left:2px;}
.ddl{width:60%; border:solid 1px #808080;height:20px;}
.gridviewhead { background-color:#ecf8dc;}
.gridviwnva{background-color:#e1e1e1;}
.gridviwnva table{background-color:#f6f6f6; line-height:25px;}
.gridviwnva tr { width:100%;}
.gridviwnva a:link{ text-decoration: none; padding:0px 2px 0 2px;}
.gridviwnva a:visited{text-decoration: none ; padding:0px 2px 0 2px;}
.gridviwnva a:hover{text-decoration: none;padding:0px 2px 0 2px;}
.gridviwnva a:active{text-decoration: none ;padding:0px 2px 0 2px;}
.gridviwnvarow { background-color:#fafef4; color:#333333;height:24px;}
.gridviwnvaatler { background-color:#f2fbe7;}
.gridviwnvaselect{ background-color:#ecf8dc;}
.gridviwnvaheader {background-color:#f6f6f6; font-weight:bold; line-height:26px;}
.divspace{ height:12px;}
.std10{ width:10%;}
.std35{ width:35%;}
/*.select{ width:40%;}*/默认去掉
.file{ background-color:Navy; border-style:none;}
.hr{ border:1px dotted #3f78b7;}
.hit{ text-decoration:none; cursor:pointer; color:Blue;}
/*SmartGrid控件样式结束*/
.div_tool{ border:solid 1px #98bbe3;padding-left:10px; line-height:24px; margin:4px 0px;}
.div_tool label {padding:0px 2px;}
.div_tool a { margin-left:18px; font-weight:300; letter-spacing:1px;}
.search_tool{ border:solid 1px #98bbe3;padding-left:60px; line-height:22px;}
.add{background:url(/Images/comm/add.png) no-repeat 0px -1px;width:16px; height:16px;}
.delete{background:url(/Images/comm/delete.png) no-repeat 0px -1px;width:16px; height:16px;}
.user_nav { border:1px solid #dfdfdf; border-top:0 none;}
.user_nav .item { position:relative; *zoom:1; z-index:1; border-top:1px solid #dfdfdf;}
.user_nav .item .parent { display:block; height:29px; overflow:hidden; background-position:0 -132px; background-repeat:repeat-x; font:bold 14px/29px simsun; color:#333; padding-left:15px;}
.user_nav .item .parent:hover { text-decoration:none; color:#666;}
.user_nav .item .son { padding:10px;}
.user_nav .item .item_in { padding-left:15px; line-height:25px;}
.user_nav .item .s { display:block; position:absolute; width:7px; height:4px; top:12px; right:10px; background-position:-133px -390px;}
.user_nav .item .close { background-position:-141px -390px;}
.user_nav .item .hide { display:none;}
.user_info { width:733px; float:left; padding:10px;}
.user_gonggao { width:185px; float:right;}
.user_gonggao { border:1px solid #dfdfdf;}
.user_gonggao .hd li { float:left; width:px; background-color:#f5f5f5; height:27px; font:14px/27px simsun; border-bottom:1px solid #dfdfdf; width:92px; text-align:center; border-right:1px solid #dfdfdf;}
.user_gonggao .hd .select { background-color:#fff; border-bottom:1px solid #fff; font-weight:bold;}
.user_gonggao .hd a { color:#666;} .user_gonggao .hd .select a { color:#404040;}
.user_gonggao .hd .last { border-right:0 none;}
.user_gonggao .bd { padding:7px 10px;}
.user_gonggao .bd li { background-position:-177px -412px; line-height:24px; height:24px; overflow:hidden; padding-left:15px; border-bottom:1px dotted #ddd;}
.user_info .left { float:left;}
.user_info .right { float:left;margin-left: 20px; color:#888; line-height:24px;}
.user_info .change_face { text-align:center;}
.user_info .title { font:bold 14px/24px Arial; color:#404040; margin-bottom:6px;}
.user_info .money { background-color:#fff; border:1px solid #ffeed6; padding:8px 12px; margin-top:8px; height:16px; line-height:16px;}
.user_info .money .red { font-weight:bold;}
.user_info .money .black { font-family:simsun;}
.user_info .money .s { display:inline-block; *display:inline; *zoom:1; width:16px; height:16px; overflow:hidden; vertical-align:middle; margin-right:5px;}
.user_info .money .s_1 { background-position:-165px -390px;}
.user_info .money .s_2 { background-position:-114px -406px;}
.user_info .money a { font-family:simsun;}
.module_default { border:1px solid #dfdfdf; margin-top:10px;}
.module_default .hd { height:29px; font:bold 14px/29px simsun; background-position:0 -132px; background-repeat:repeat-x; background-color:#f1f1f1; padding-left:12px; color:#404040;}
.module_default .hd .txt { padding-left:20px; color:#777; font:normal 12px/29px simsun;}
.module_default .tongji_hd { position:relative; *zoom:1; z-index:1; padding-left:28px;}
.module_default .tongji_hd .s { position:absolute; left:8px; top:6px; width:15px; height:15px; background-position:-149px -390px; overflow:hidden;}
.module_default .hd .other_hd { font:normal 12px/29px simsun; color:#888;}
.module_default .hd .more { display:block; _display:inline; float:right; margin:0 10px 0 0; font:normal 12px/29px simsun;}
.module_default .tongji_inner { padding:12px; line-height:24px;}
.module_default .tongji_inner .zb_tip { margin:6px 0 12px 60px; border:1px solid #aad87e; background-color:#d8f7bb; color:#404040; padding:2px 8px;}
.module_default .tongji_inner .btn { margin:6px 0 8px 60px;}
.module_default .bbsList { padding:10px 0 10px 10px;}
.module_default .bbsList li { float:left; display:inline; margin-right:10px; width:224px; background-position:-178px -436px; line-height:22px; height:22px; overflow:hidden; padding-left:13px;}
.gongneng_table { width:100%;}
.gongneng_table th { background-color:#f3f3f3;border-top:1px solid #fff; color:#666; line-height:24px; }
.gongneng_table td { border-top:1px solid #ddd; border-right:1px solid #ddd; text-align:left; padding-left:15px; line-height:46px; font-size:12px;}
.gongneng_table .center{ text-align:center;border-right:1px solid #ddd; }
.gongneng_table .span{text-align:center; display:block;}
.txt_init{border-top:1px solid #A2A2A2;border-left:1px solid #A2A2A2;border-right:1px solid #DEDEDE;border-bottom:1px solid #DEDEDE;color:#484848; padding:5px 5px 5px 5px; margin:2px 0px; width:40%;vertical-align:middle; font-size:12px; line-height:20px;word-wrap:break-wrod;word-break:break-all;}
.txt_focus{border:1px solid #FF9900;vertical-align:middle;color:#FF0000;background-color: #FFEECA; font-size:12px;line-height:20px;word-wrap:break-wrod;word-break:break-all;}
.td1{ width:18%;}
.td2{ width:82%;}
.red{color:Red;}
.module_default .po { position:relative; *zoom:1; z-index:1; padding-left:24px; margin:4px 0;}
.module_default .po .s { position:absolute; display:block; width:15px; height:16px; overflow:hidden; left:2px; top:3px;}
.module_default .s_1 .s { background-position:-131px -406px;}
.module_default .s_2 .s { background-position:-147px -406px; width:16px;}
.module_default .dianpu { line-height:30px; position:relative; *zoom:1; z-index:1; padding-left:105px;}
.module_default .dianpu .s { display:block; position:absolute; top:5px; left:5px; background-position:0 -690px; width:82px; height:71px; overflow:hidden;}
.module_default .dianpu .s_2 { background-position:-83px -690px; width:68px; height:61px; top:8px; left:11px;}
.module_default .btn2 { margin-top:5px; height:28px;}
.alink {display:inline-block; *display:inline; *zoom:1; background-position:0 -162px; padding:0 15px; border:1px solid #999999; margin:2px 0px 2px 0px; font:12px/22px simsun; color:#404040; background-color:#e6e6e6; vertical-align:middle;}
.alink:hover { text-decoration:none; color:#666;}
.alink_message { position:relative; *zoom:1;}
.alink_message .s { display:block; position:absolute; top:-5px; right:-6px; width:18px; height:15px; background-position:-114px -390px; overflow:hidden;}
.btn_new { font-family:simsun; position:relative; *zoom:1; z-index:1; display:block; float:right; height:26px; background-position:0 -185px; font:bold 12px/26px simsun; color:#fff; padding:0 15px 0 14px;}
.btn_new .s_l { display:block; position:absolute; overflow:hidden; width:3px; height:26px; right:0; top:0; background-position:-114px -446px;}
.btn_tuiguang { font-family:simsun; position:relative; *zoom:1; z-index:1; display:inline-block; *display:inline; *zoom:1; color:#f30; padding:0 0 0 28px;}
.btn_tuiguang .s_l { display:block; position:absolute; overflow:hidden; width:24px; height:22px; left:0; top:3px; background-position:-114px -423px;}
.btn_green { font-family:simsun; position:relative; *zoom:1; z-index:1; display:inline-block; *display:inline; *zoom:1; height:20px; background-position:0 -212px; font:12px/20px simsun; color:#fff; padding:0 10px 0 9px; margin-left:6px; margin-right:6px;}
.btn_green .s_l { display:block; position:absolute; overflow:hidden; width:2px; height:20px; right:-1px; top:0; background-position:-118px -446px;}
.red { color:#c00;}
.green { color:#106c01;}
.orange { color:#f30;}
.blue { color:#36c;}
.gray { color:#888;}
.black { color:#404040;}
.marTop10 { margin-top:10px;}
/* 内页 */
.yellow_tip { border:1px solid #edd28b; background-color:#fffdee; padding:10px;}
.yellow_tip .hd { position:relative; *zoom:1; z-index:1; color:#c00; font:bold 14px/1.5 simsun; padding-left:20px;}
.yellow_tip .hd .s { display:block; position:absolute; left:0px; top:1px; width:14px; height:15px; background-position:-138px -423px; overflow:hidden;}
.yellow_tip .bd { padding:10px 5px 0;}
/* 计算统计信息 */
.count_tip { border:1px solid #FFD324; background-color: #FFF6BF; padding:1px; margin:3px 0px;}
.count_tip .bd { padding:0px 0px 0px 8px; font-weight:bold; line-height:24px;}
.count_tip .bd a{ margin:0px 12px;}
.gray_tip { border:1px solid #e6e6e6; background-color:#f8f8f8; padding:10px;}
.gray_tip .hd { color:#165fb9; font:bold 14px/1.5 simsun;}
.gray_tip .bd { padding:5px 0 0;}
.sys_tip { border:1px solid #dfdfdf; background-color:#fff; padding:120px; position:relative; *zoom:1; z-index:1;}
.sys_tip .s { display:block; position:absolute; left:150px; top:117px; width:75px; height:75px; background-position:0 -762px; overflow:hidden;}
.sys_tip .bd { padding:5px 0 0 120px; font:14px/1.8 simsun;}
.sys_tip h3 { color:#333; font-weight:bold;}
.tab_A { position:relative; *zoom:1; z-index:1; border-bottom:2px solid #b40007;}
.tab_A .item { position:relative; *zoom:1; z-index:1; float:left; display:inline; margin-left:4px; height:27px; background-position:0 -261px; line-height:27px; padding:0 14px; font-family:simsun;}
.tab_A .select { background-position:0 -233px;
top: -1px;
left: 1px;
}
.tab_A .item a { color:#404040;}
.tab_A .select a { color:#fff; font-weight:bold;}
.tab_A .item .s { display:block; position:absolute; right:0; top:0; width:2px; height:27px; background-position:-121px -446px; overflow:hidden;}
.tab_A .select .s { background-position:-124px -446px;}
.tab_A .add_zp { color:#fff; text-align:left; line-height:23px; font-family:simsun; position:absolute; display:block; width:69px; height:23px; right:5px; top:2px; background-position:-77px -762px; color:#fff; padding-left:25px;}
.tab_B { border-bottom:1px solid #b40007; padding-left:5px;}
.tab_B .item { position:relative; *zoom:1; z-index:1; float:left; height:32px; background-position:0 -261px; padding:0 16px; border:1px solid #e0e0e0; border-bottom:0 none; font:bold 14px/32px simsun; background-color:#f9f9f9; margin-top:1px;}
.tab_B .select { margin-top:0px; background-position:0 -233px; margin-bottom:-1px; background-color:#fff; border:2px solid #c30000; border-bottom:1px solid #fff;}
.tab_B .item a { color:#888;}
.tab_B .select a { color:#404040;}
.menu_a { display:inline-block; *display:inline; *zoom:1; position:relative; z-index:1; height:28px; line-height:28px; color:#666; background-position:0 -318px; padding:0 13px 0 12px; margin-right:8px;}
.menu_a_select { background-position:0 -289px; color:#c00;}
.menu_a .s { display:block; position:absolute; right:0; top:0; overflow:hidden; width:2px; height:28px; background-position:-127px -446px;}
.menu_a_select .s { background-position:-130px -446px;}
.table_a { border:1px solid #ddd;}
.table_a th { background-position:0 -910px; background-repeat:repeat-x; line-height:26px; font-weight:bold;}
.table_a td { text-align:center; line-height:24px; border:1px solid #ddd; padding:0 7px;}
.table_a .even td { background-color:#f8f8f8;}
.table_a .btn td { border:0 none;}
.table_a .checkbox { vertical-align:middle;}
.table_a .btn_b { vertical-align:middle; display:inline-block; *display:inline; *zoom:1; position:relative; z-index:1; height:21px; line-height:21px; color:#666; background-position:0 -942px; padding:0 9px; margin-right:5px; font-family:simsun;}
.table_a .btn_b .s { display:block; position:absolute; right:0; top:0; overflow:hidden; width:2px; height:21px; background-position:-138px -446px;}
.table_a .ali_left { padding:4px 0; line-height:16px; text-align:left; padding-left:0;}
.table_a .gn { float:left; width:30%;}
.table_a .pages{display:inline; margin-right:2px;float:right;}
.table_a .page {display:inline; margin-right:4px;}
.table_a .page a { vertical-align:top; padding:0 6px; margin-left:3px; display:inline-block; *display:inline; *zoom:1; line-height:19px; height:19px; background-color:#fff; border:1px solid #ddd; color:#404040;}
.table_a .page a.select { background-color:#ffeedd; border:1px solid #ee7700; color:#ee5500;}
.pages .paginginfo{display:inline; vertical-align:bottom;}
.table_a .page span.select { background-color:#ffeedd; border:1px solid #ee7700; color:#ee5500; vertical-align:top; padding:0 6px; margin-left:3px; display:inline-block; *display:inline; *zoom:1; line-height:19px; height:19px; width:8px;}
.user_form { padding:10px 0;}
.user_form .item_l { padding:10px 15px; overflow:hidden; *zoom:1; border-bottom:1px dotted #cbcbcb; position:relative;*zoom:1;}
.user_form .noborder { border-bottom:0 none;}
.user_form .item_l .sp_01,.user_form .item_l .sp_02,.user_form .item_l .sp_03 { display:block; float:left; line-height:28px;}
.user_form .item_l .sp_01 { width:130px; font-size:14px; text-align:right;}
.user_form .item_l .sp_02 { font-size:14px;}
.user_form .item_l .sp_03 { color:#888; display:inline; margin-left:15px;}
.user_form .item_l .ipt { width:260px; height:20px; border:1px solid #ccc; vertical-align:top; padding:4px; font-size:14px;}
.user_form .item_l .red { color:#f00;}
.user_form .item_l .question { font-weight:bold; color:#f30; font-size:14px; padding-right:10px;}
.user_form .item_l .sp_03 img { display:block; margin-top:5px;}
.user_form .upfile,.user_form .select_opt { font-size:14px; padding:4px;}
.user_form .checkbox { vertical-align:middle; margin:0 4px 0 12px;}
.user_form .form_btn { display:inline-block; *display:inline; *zoom:1; position:relative; z-index:1; height:42px; color:#666; background-position:0 -347px; padding:0 30px; font:bold 16px/42px simsun; color:#fff; margin-right:10px;}
.user_form .form_btn .s { display:block; position:absolute; right:0; top:0; overflow:hidden; width:4px; height:42px; background-position:-133px -446px;}
.user_form .form_btn:hover { text-decoration:none; opacity:.8; FILTER: alpha(opacity=80);}
#form td .ipt{float:left;}
#form td .notice{float:left;padding-top: 10px;}
#form td .notice .Validform_checktip{display:block;line-height: 18px;height: 18px;} | 0.213869 | 0.06165 |
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Medium.eot');
src: local('SF Pro Display Medium'), local('SFProDisplay-Medium'),
url('../fonts/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Medium.woff2') format('woff2'),
url('../fonts/SFProDisplay-Medium.woff') format('woff'),
url('../fonts/SFProDisplay-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Heavy.eot');
src: local('SF Pro Display Heavy'), local('SFProDisplay-Heavy'),
url('../fonts/SFProDisplay-Heavy.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Heavy.woff2') format('woff2'),
url('../fonts/SFProDisplay-Heavy.woff') format('woff'),
url('../fonts/SFProDisplay-Heavy.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-UltralightItalic.eot');
src: local('SF Pro Display UltralightItalic'), local('SFProDisplay-UltralightItalic'),
url('../fonts/SFProDisplay-UltralightItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-UltralightItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-UltralightItalic.woff') format('woff'),
url('../fonts/SFProDisplay-UltralightItalic.ttf') format('truetype');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-RegularItalic.eot');
src: local('SF Pro Display Regular Italic'), local('SFProDisplay-RegularItalic'),
url('../fonts/SFProDisplay-RegularItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-RegularItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-RegularItalic.woff') format('woff'),
url('../fonts/SFProDisplay-RegularItalic.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Thin.eot');
src: local('SF Pro Display Thin'), local('SFProDisplay-Thin'),
url('../fonts/SFProDisplay-Thin.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Thin.woff2') format('woff2'),
url('../fonts/SFProDisplay-Thin.woff') format('woff'),
url('../fonts/SFProDisplay-Thin.ttf') format('truetype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Light.eot');
src: local('SF Pro Display Light'), local('SFProDisplay-Light'),
url('../fonts/SFProDisplay-Light.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Light.woff2') format('woff2'),
url('../fonts/SFProDisplay-Light.woff') format('woff'),
url('../fonts/SFProDisplay-Light.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-BlackItalic.eot');
src: local('SF Pro Display Black Italic'), local('SFProDisplay-BlackItalic'),
url('../fonts/SFProDisplay-BlackItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-BlackItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-BlackItalic.woff') format('woff'),
url('../fonts/SFProDisplay-BlackItalic.ttf') format('truetype');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Bold.eot');
src: local('SF Pro Display Bold'), local('SFProDisplay-Bold'),
url('../fonts/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Bold.woff2') format('woff2'),
url('../fonts/SFProDisplay-Bold.woff') format('woff'),
url('../fonts/SFProDisplay-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Black.eot');
src: local('SF Pro Display Black'), local('SFProDisplay-Black'),
url('../fonts/SFProDisplay-Black.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Black.woff2') format('woff2'),
url('../fonts/SFProDisplay-Black.woff') format('woff'),
url('../fonts/SFProDisplay-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-SemiboldItalic.eot');
src: local('SF Pro Display SemiboldItalic'), local('SFProDisplay-SemiboldItalic'),
url('../fonts/SFProDisplay-SemiboldItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-SemiboldItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-SemiboldItalic.woff') format('woff'),
url('../fonts/SFProDisplay-SemiboldItalic.ttf') format('truetype');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Ultralight.eot');
src: local('SF Pro Display Ultralight'), local('SFProDisplay-Ultralight'),
url('../fonts/SFProDisplay-Ultralight.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Ultralight.woff2') format('woff2'),
url('../fonts/SFProDisplay-Ultralight.woff') format('woff'),
url('../fonts/SFProDisplay-Ultralight.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-LightItalic.eot');
src: local('SF Pro Display LightItalic'), local('SFProDisplay-LightItalic'),
url('../fonts/SFProDisplay-LightItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-LightItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-LightItalic.woff') format('woff'),
url('../fonts/SFProDisplay-LightItalic.ttf') format('truetype');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-ThinItalic.eot');
src: local('SF Pro Display ThinItalic'), local('SFProDisplay-ThinItalic'),
url('../fonts/SFProDisplay-ThinItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-ThinItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-ThinItalic.woff') format('woff'),
url('../fonts/SFProDisplay-ThinItalic.ttf') format('truetype');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-MediumItalic.eot');
src: local('SF Pro Display MediumItalic'), local('SFProDisplay-MediumItalic'),
url('../fonts/SFProDisplay-MediumItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-MediumItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-MediumItalic.woff') format('woff'),
url('../fonts/SFProDisplay-MediumItalic.ttf') format('truetype');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Semibold.eot');
src: local('SF Pro Display Semibold'), local('SFProDisplay-Semibold'),
url('../fonts/SFProDisplay-Semibold.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Semibold.woff2') format('woff2'),
url('../fonts/SFProDisplay-Semibold.woff') format('woff'),
url('../fonts/SFProDisplay-Semibold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-HeavyItalic.eot');
src: local('SF Pro Display HeavyItalic'), local('SFProDisplay-HeavyItalic'),
url('../fonts/SFProDisplay-HeavyItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-HeavyItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-HeavyItalic.woff') format('woff'),
url('../fonts/SFProDisplay-HeavyItalic.ttf') format('truetype');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Regular.eot');
src: local('SF Pro Display Regular'), local('SFProDisplay-Regular'),
url('../fonts/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Regular.woff2') format('woff2'),
url('../fonts/SFProDisplay-Regular.woff') format('woff'),
url('../fonts/SFProDisplay-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-BoldItalic.eot');
src: local('SF Pro Display BoldItalic'), local('SFProDisplay-BoldItalic'),
url('../fonts/SFProDisplay-BoldItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-BoldItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-BoldItalic.woff') format('woff'),
url('../fonts/SFProDisplay-BoldItalic.ttf') format('truetype');
font-weight: bold;
font-style: italic;
}
body::-webkit-scrollbar {
width: 10px;
}
body::-webkit-scrollbar-track {
background-color: #c9c9c9;
opacity: 0.5;
}
body::-webkit-scrollbar-thumb {
background-color: #202020;
outline: 1px solid slategrey;
opacity: 0.7;
}
/* UNINSTALL FEW CSS-FRAME */
h1, ul {
margin-bottom: 0rem;
}
a {
color: #c9c9c9;
}
label {
font-family: 'SF Pro Display';
font-weight: 100;
font-style: normal;
font-size: 16px;
}
input, select, textarea {
background-color: #1e1e1e!important;
border: 0.1rem solid #fff!important;
color: #c9c9c9!important;
font-family: 'SF Pro Display'!important;
font-weight: 200!important;
font-style: italic!important;
}
input:hover {
background-color: #1e1e1e!important;
border: 0.1rem solid #fff!important;
opacity: 0.7;
}
a:hover {
color: #c9c9c9;
opacity: 0.7;
}
body {
margin: 0;
font-family: 'SF Pro Display';
font-weight: normal;
font-style: normal;
font-size: 16px;
background: #1e1e1e;
color: #c9c9c9;
}
.tc {
text-align: center;
}
.wrapper {
width: 100%;
}
.container {
max-width: 100rem;
}
.container-auth {
max-width: 50rem;
margin: auto;
padding: 20px 50px 20px 50px;
background: #282828;
}
.container-auth h2 {
font-family: 'SF Pro Display';
font-weight: 900;
font-style: italic;
font-size: 32px;
}
.navigation {
margin-top: 20px;
position: relative;
display: flex;
z-index: 2;
background: #282828;
}
.navigation .logo {
font-family: 'SF Pro Display';
font-weight: 500;
font-style: normal;
font-size: 42px;
width: 500px;
}
.navigation .navbar {
width: 100%;
}
.navigation ul {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
}
.navigation ul li {
padding: 16px 0px 0px 20px;
}
.navigation ul li a {
font-family: 'SF Pro Display';
font-weight: 100;
font-style: normal;
font-size: 18px;
color: #c9c9c9;
}
.navigation .billing {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
padding: 16px 0px 0px 20px;
font-family: 'SF Pro Display';
font-weight: 100;
font-style: normal;
font-size: 18px;
color: #c9c9c9;
}
.panel {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
}
.panel2 {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
margin-top: 30px;
}
.panel .bar {
}
.panel .bar ul {
display: flex;
align-items: stretch;
justify-content: center;
list-style: none;
}
.panel .bar ul li {
display: block;
flex: 0 1 auto; /* Default */
list-style-type: none;
padding-left: 10px;
padding-right: 10px;
}
.panel .bar ul li a {
font-family: 'SF Pro Display';
font-weight: 100;
font-style: normal;
font-size: 18px;
color: #c9c9c9;
}
.tellarion {
display: block;
margin-top: 20px;
}
.express {
margin-top: 5rem;
}
.partners {
display: inline-block;
text-align: center;
}
.partners a {
display: inline-block;
}
.container {
padding: 20px 50px 20px 50px;
background: #282828;
}
.container-2 {
padding: 20px 50px 20px 50px;
max-width: 100rem;
margin: 0 auto;
position: relative;
width: 100%;
}
.container-2 h2 {
font-family: 'SF Pro Display';
font-weight: 900;
font-style: italic;
font-size: 32px;
margin-top: 10px;
margin-bottom: 30px;
}
.container-2 h3 {
font-family: 'SF Pro Display';
font-weight: 800;
font-style: italic;
font-size: 24px;
margin-top: 10px;
margin-bottom: 30px;
}
.container-2 .block-category {
display: inline-block;
background: #282828;
min-height: 500px;
width: 30%;
margin-right: 5%;
}
.container-2 .block-category ul {
display: flex;
flex-direction: column;
list-style-type: none;
align-items: center;
justify-content: center;
}
.container-2 .block-category ul li {
background: #1e1e1e;
padding-left: 5px;
padding-right: 5px;
width: 80%;
}
.container-2 .block-category ul li:hover {
background: #1e1e1e;
padding-left: 5px;
padding-right: 5px;
width: 85%;
opacity: 0.5;
cursor: pointer;
}
.container-2 .block-bets ul {
display: flex;
flex-direction: column;
list-style-type: none;
align-items: center;
justify-content: center;
}
.container-2 .block-bets ul li {
background: #1e1e1e;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
width: 80%;
}
.container-2 .block-bets ul li:hover {
background: #1e1e1e;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
width: 80%;
opacity: 0.5;
cursor: pointer;
}
.container-2 .block-bets {
display: inline-block;
background: #282828;
min-height: 500px;
margin-left: 5%;
width: 60%;
}
.container-2 .block-bets .info {
display: block;
text-align: center;
width: 100%;
padding-left: 10px;
padding-right: 10px;
}
/* */
.container-2 .block-session {
display: inline-block;
background: #282828;
min-height: 500px;
width: 60%;
margin-right: 2.5%;
}
.container-2 .block-process {
display: inline-block;
background: #282828;
min-height: 500px;
margin-left: 2.5%;
width: 35%;
}
.container-2 .block-chat {
margin-top: 30px;
display: inline-block;
background: #282828;
min-height: 250px;
max-height: 250px;
width: 100%;
overflow: scroll;
}
.container-2 .block-chat .messages {
display: block;
text-align: left;
padding-left: 20px;
padding-right: 20px;
}
.container-2 .block-chat2 {
margin-top: 30px;
display: inline-block;
background: #282828;
min-height: 100px;
max-height: 100px;
padding-top: 5px;
width: 100%;
}
.container-2 .block-other {
margin-top: 30px;
display: inline-block;
background: #282828;
min-height: 100px;
max-height: 100px;
padding: 20px;
width: 100%;
text-align: left;
}
.container-2 .block-session .session-info {
padding-bottom: 20px;
}
.container h2 {
font-family: 'SF Pro Display';
font-weight: 900;
font-style: italic;
font-size: 32px;
}
.container-board {
background: #fff;
max-width: 50rem;
margin: auto;
margin-top: 5%;
padding: 1em;
border-radius: 0.5em;
}
.container-board h2 {
margin-top: 0.3em;
font-family: 'SF Pro Display';
font-weight: 900;
font-style: italic;
}
footer {
margin-top: 3em;
margin-bottom: 3em;
}
footer .footerbar {
position: relative;
display: flex;
justify-content: center;
}
footer .footerbar ul {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
}
footer .footerbar ul li {
padding: 0.5rem;
}
footer .footerbar ul li a {
font-size: 16px;
font-family: 'SF Pro Display';
font-weight: 200;
font-style: italic;
color: #606c76;
}
footer .copy {
font-size: 14px;
font-family: 'SF Pro Display';
font-weight: 100;
font-style: italic;
}
/* MODERATION PANEL */
.tellarion-panel ul {
display: flex;
justify-content: left;
flex-direction: column;
list-style-type: none;
}
.tellarion-panel ul li {
background: #3a3a3a;
padding: 15px 20px 15px 20px;
}
.tellarion-panel ul li .actions {
float: right;
}
.tellarion-panel .btn-green {
height: 30px!important;
line-height: 0rem;
margin-bottom: 0rem!important;
background-color: #328932!important;
border: 0px!important;
}
.tellarion-panel .btn-red {
height: 30px!important;
line-height: 0rem;
margin-bottom: 0rem!important;
background-color: #914949!important;
border: 0px!important;
}
.tellarion-panel .btn-orange {
height: 30px!important;
line-height: 0rem;
margin-bottom: 0rem!important;
background-color: #9e6e18!important;
border: 0px!important;
}
.tellarion-panel .btn-gray {
height: 30px!important;
line-height: 0rem;
margin-bottom: 0rem!important;
background-color: gray!important;
border: 0px!important;
}
/* MODAL */
.modal {
background: #1e1e1e!important;
font-family: 'SF Pro Display'!important;
font-weight: normal!important;
font-style: normal!important;
font-size: 16px!important;
}
.blocker {
z-index: 100!important;
} | public/css/style.css |
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Medium.eot');
src: local('SF Pro Display Medium'), local('SFProDisplay-Medium'),
url('../fonts/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Medium.woff2') format('woff2'),
url('../fonts/SFProDisplay-Medium.woff') format('woff'),
url('../fonts/SFProDisplay-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Heavy.eot');
src: local('SF Pro Display Heavy'), local('SFProDisplay-Heavy'),
url('../fonts/SFProDisplay-Heavy.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Heavy.woff2') format('woff2'),
url('../fonts/SFProDisplay-Heavy.woff') format('woff'),
url('../fonts/SFProDisplay-Heavy.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-UltralightItalic.eot');
src: local('SF Pro Display UltralightItalic'), local('SFProDisplay-UltralightItalic'),
url('../fonts/SFProDisplay-UltralightItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-UltralightItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-UltralightItalic.woff') format('woff'),
url('../fonts/SFProDisplay-UltralightItalic.ttf') format('truetype');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-RegularItalic.eot');
src: local('SF Pro Display Regular Italic'), local('SFProDisplay-RegularItalic'),
url('../fonts/SFProDisplay-RegularItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-RegularItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-RegularItalic.woff') format('woff'),
url('../fonts/SFProDisplay-RegularItalic.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Thin.eot');
src: local('SF Pro Display Thin'), local('SFProDisplay-Thin'),
url('../fonts/SFProDisplay-Thin.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Thin.woff2') format('woff2'),
url('../fonts/SFProDisplay-Thin.woff') format('woff'),
url('../fonts/SFProDisplay-Thin.ttf') format('truetype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Light.eot');
src: local('SF Pro Display Light'), local('SFProDisplay-Light'),
url('../fonts/SFProDisplay-Light.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Light.woff2') format('woff2'),
url('../fonts/SFProDisplay-Light.woff') format('woff'),
url('../fonts/SFProDisplay-Light.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-BlackItalic.eot');
src: local('SF Pro Display Black Italic'), local('SFProDisplay-BlackItalic'),
url('../fonts/SFProDisplay-BlackItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-BlackItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-BlackItalic.woff') format('woff'),
url('../fonts/SFProDisplay-BlackItalic.ttf') format('truetype');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Bold.eot');
src: local('SF Pro Display Bold'), local('SFProDisplay-Bold'),
url('../fonts/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Bold.woff2') format('woff2'),
url('../fonts/SFProDisplay-Bold.woff') format('woff'),
url('../fonts/SFProDisplay-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Black.eot');
src: local('SF Pro Display Black'), local('SFProDisplay-Black'),
url('../fonts/SFProDisplay-Black.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Black.woff2') format('woff2'),
url('../fonts/SFProDisplay-Black.woff') format('woff'),
url('../fonts/SFProDisplay-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-SemiboldItalic.eot');
src: local('SF Pro Display SemiboldItalic'), local('SFProDisplay-SemiboldItalic'),
url('../fonts/SFProDisplay-SemiboldItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-SemiboldItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-SemiboldItalic.woff') format('woff'),
url('../fonts/SFProDisplay-SemiboldItalic.ttf') format('truetype');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Ultralight.eot');
src: local('SF Pro Display Ultralight'), local('SFProDisplay-Ultralight'),
url('../fonts/SFProDisplay-Ultralight.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Ultralight.woff2') format('woff2'),
url('../fonts/SFProDisplay-Ultralight.woff') format('woff'),
url('../fonts/SFProDisplay-Ultralight.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-LightItalic.eot');
src: local('SF Pro Display LightItalic'), local('SFProDisplay-LightItalic'),
url('../fonts/SFProDisplay-LightItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-LightItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-LightItalic.woff') format('woff'),
url('../fonts/SFProDisplay-LightItalic.ttf') format('truetype');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-ThinItalic.eot');
src: local('SF Pro Display ThinItalic'), local('SFProDisplay-ThinItalic'),
url('../fonts/SFProDisplay-ThinItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-ThinItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-ThinItalic.woff') format('woff'),
url('../fonts/SFProDisplay-ThinItalic.ttf') format('truetype');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-MediumItalic.eot');
src: local('SF Pro Display MediumItalic'), local('SFProDisplay-MediumItalic'),
url('../fonts/SFProDisplay-MediumItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-MediumItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-MediumItalic.woff') format('woff'),
url('../fonts/SFProDisplay-MediumItalic.ttf') format('truetype');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Semibold.eot');
src: local('SF Pro Display Semibold'), local('SFProDisplay-Semibold'),
url('../fonts/SFProDisplay-Semibold.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Semibold.woff2') format('woff2'),
url('../fonts/SFProDisplay-Semibold.woff') format('woff'),
url('../fonts/SFProDisplay-Semibold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-HeavyItalic.eot');
src: local('SF Pro Display HeavyItalic'), local('SFProDisplay-HeavyItalic'),
url('../fonts/SFProDisplay-HeavyItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-HeavyItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-HeavyItalic.woff') format('woff'),
url('../fonts/SFProDisplay-HeavyItalic.ttf') format('truetype');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-Regular.eot');
src: local('SF Pro Display Regular'), local('SFProDisplay-Regular'),
url('../fonts/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-Regular.woff2') format('woff2'),
url('../fonts/SFProDisplay-Regular.woff') format('woff'),
url('../fonts/SFProDisplay-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'SF Pro Display';
src: url('../fonts/SFProDisplay-BoldItalic.eot');
src: local('SF Pro Display BoldItalic'), local('SFProDisplay-BoldItalic'),
url('../fonts/SFProDisplay-BoldItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/SFProDisplay-BoldItalic.woff2') format('woff2'),
url('../fonts/SFProDisplay-BoldItalic.woff') format('woff'),
url('../fonts/SFProDisplay-BoldItalic.ttf') format('truetype');
font-weight: bold;
font-style: italic;
}
body::-webkit-scrollbar {
width: 10px;
}
body::-webkit-scrollbar-track {
background-color: #c9c9c9;
opacity: 0.5;
}
body::-webkit-scrollbar-thumb {
background-color: #202020;
outline: 1px solid slategrey;
opacity: 0.7;
}
/* UNINSTALL FEW CSS-FRAME */
h1, ul {
margin-bottom: 0rem;
}
a {
color: #c9c9c9;
}
label {
font-family: 'SF Pro Display';
font-weight: 100;
font-style: normal;
font-size: 16px;
}
input, select, textarea {
background-color: #1e1e1e!important;
border: 0.1rem solid #fff!important;
color: #c9c9c9!important;
font-family: 'SF Pro Display'!important;
font-weight: 200!important;
font-style: italic!important;
}
input:hover {
background-color: #1e1e1e!important;
border: 0.1rem solid #fff!important;
opacity: 0.7;
}
a:hover {
color: #c9c9c9;
opacity: 0.7;
}
body {
margin: 0;
font-family: 'SF Pro Display';
font-weight: normal;
font-style: normal;
font-size: 16px;
background: #1e1e1e;
color: #c9c9c9;
}
.tc {
text-align: center;
}
.wrapper {
width: 100%;
}
.container {
max-width: 100rem;
}
.container-auth {
max-width: 50rem;
margin: auto;
padding: 20px 50px 20px 50px;
background: #282828;
}
.container-auth h2 {
font-family: 'SF Pro Display';
font-weight: 900;
font-style: italic;
font-size: 32px;
}
.navigation {
margin-top: 20px;
position: relative;
display: flex;
z-index: 2;
background: #282828;
}
.navigation .logo {
font-family: 'SF Pro Display';
font-weight: 500;
font-style: normal;
font-size: 42px;
width: 500px;
}
.navigation .navbar {
width: 100%;
}
.navigation ul {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
}
.navigation ul li {
padding: 16px 0px 0px 20px;
}
.navigation ul li a {
font-family: 'SF Pro Display';
font-weight: 100;
font-style: normal;
font-size: 18px;
color: #c9c9c9;
}
.navigation .billing {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
padding: 16px 0px 0px 20px;
font-family: 'SF Pro Display';
font-weight: 100;
font-style: normal;
font-size: 18px;
color: #c9c9c9;
}
.panel {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
}
.panel2 {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
margin-top: 30px;
}
.panel .bar {
}
.panel .bar ul {
display: flex;
align-items: stretch;
justify-content: center;
list-style: none;
}
.panel .bar ul li {
display: block;
flex: 0 1 auto; /* Default */
list-style-type: none;
padding-left: 10px;
padding-right: 10px;
}
.panel .bar ul li a {
font-family: 'SF Pro Display';
font-weight: 100;
font-style: normal;
font-size: 18px;
color: #c9c9c9;
}
.tellarion {
display: block;
margin-top: 20px;
}
.express {
margin-top: 5rem;
}
.partners {
display: inline-block;
text-align: center;
}
.partners a {
display: inline-block;
}
.container {
padding: 20px 50px 20px 50px;
background: #282828;
}
.container-2 {
padding: 20px 50px 20px 50px;
max-width: 100rem;
margin: 0 auto;
position: relative;
width: 100%;
}
.container-2 h2 {
font-family: 'SF Pro Display';
font-weight: 900;
font-style: italic;
font-size: 32px;
margin-top: 10px;
margin-bottom: 30px;
}
.container-2 h3 {
font-family: 'SF Pro Display';
font-weight: 800;
font-style: italic;
font-size: 24px;
margin-top: 10px;
margin-bottom: 30px;
}
.container-2 .block-category {
display: inline-block;
background: #282828;
min-height: 500px;
width: 30%;
margin-right: 5%;
}
.container-2 .block-category ul {
display: flex;
flex-direction: column;
list-style-type: none;
align-items: center;
justify-content: center;
}
.container-2 .block-category ul li {
background: #1e1e1e;
padding-left: 5px;
padding-right: 5px;
width: 80%;
}
.container-2 .block-category ul li:hover {
background: #1e1e1e;
padding-left: 5px;
padding-right: 5px;
width: 85%;
opacity: 0.5;
cursor: pointer;
}
.container-2 .block-bets ul {
display: flex;
flex-direction: column;
list-style-type: none;
align-items: center;
justify-content: center;
}
.container-2 .block-bets ul li {
background: #1e1e1e;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
width: 80%;
}
.container-2 .block-bets ul li:hover {
background: #1e1e1e;
padding-left: 5px;
padding-right: 5px;
padding-top: 10px;
padding-bottom: 10px;
width: 80%;
opacity: 0.5;
cursor: pointer;
}
.container-2 .block-bets {
display: inline-block;
background: #282828;
min-height: 500px;
margin-left: 5%;
width: 60%;
}
.container-2 .block-bets .info {
display: block;
text-align: center;
width: 100%;
padding-left: 10px;
padding-right: 10px;
}
/* */
.container-2 .block-session {
display: inline-block;
background: #282828;
min-height: 500px;
width: 60%;
margin-right: 2.5%;
}
.container-2 .block-process {
display: inline-block;
background: #282828;
min-height: 500px;
margin-left: 2.5%;
width: 35%;
}
.container-2 .block-chat {
margin-top: 30px;
display: inline-block;
background: #282828;
min-height: 250px;
max-height: 250px;
width: 100%;
overflow: scroll;
}
.container-2 .block-chat .messages {
display: block;
text-align: left;
padding-left: 20px;
padding-right: 20px;
}
.container-2 .block-chat2 {
margin-top: 30px;
display: inline-block;
background: #282828;
min-height: 100px;
max-height: 100px;
padding-top: 5px;
width: 100%;
}
.container-2 .block-other {
margin-top: 30px;
display: inline-block;
background: #282828;
min-height: 100px;
max-height: 100px;
padding: 20px;
width: 100%;
text-align: left;
}
.container-2 .block-session .session-info {
padding-bottom: 20px;
}
.container h2 {
font-family: 'SF Pro Display';
font-weight: 900;
font-style: italic;
font-size: 32px;
}
.container-board {
background: #fff;
max-width: 50rem;
margin: auto;
margin-top: 5%;
padding: 1em;
border-radius: 0.5em;
}
.container-board h2 {
margin-top: 0.3em;
font-family: 'SF Pro Display';
font-weight: 900;
font-style: italic;
}
footer {
margin-top: 3em;
margin-bottom: 3em;
}
footer .footerbar {
position: relative;
display: flex;
justify-content: center;
}
footer .footerbar ul {
display: flex;
list-style-type: none;
align-items: flex-end;
justify-content: flex-end;
}
footer .footerbar ul li {
padding: 0.5rem;
}
footer .footerbar ul li a {
font-size: 16px;
font-family: 'SF Pro Display';
font-weight: 200;
font-style: italic;
color: #606c76;
}
footer .copy {
font-size: 14px;
font-family: 'SF Pro Display';
font-weight: 100;
font-style: italic;
}
/* MODERATION PANEL */
.tellarion-panel ul {
display: flex;
justify-content: left;
flex-direction: column;
list-style-type: none;
}
.tellarion-panel ul li {
background: #3a3a3a;
padding: 15px 20px 15px 20px;
}
.tellarion-panel ul li .actions {
float: right;
}
.tellarion-panel .btn-green {
height: 30px!important;
line-height: 0rem;
margin-bottom: 0rem!important;
background-color: #328932!important;
border: 0px!important;
}
.tellarion-panel .btn-red {
height: 30px!important;
line-height: 0rem;
margin-bottom: 0rem!important;
background-color: #914949!important;
border: 0px!important;
}
.tellarion-panel .btn-orange {
height: 30px!important;
line-height: 0rem;
margin-bottom: 0rem!important;
background-color: #9e6e18!important;
border: 0px!important;
}
.tellarion-panel .btn-gray {
height: 30px!important;
line-height: 0rem;
margin-bottom: 0rem!important;
background-color: gray!important;
border: 0px!important;
}
/* MODAL */
.modal {
background: #1e1e1e!important;
font-family: 'SF Pro Display'!important;
font-weight: normal!important;
font-style: normal!important;
font-size: 16px!important;
}
.blocker {
z-index: 100!important;
} | 0.286568 | 0.034294 |
html {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
font-family: helvetica;
background-size: cover;
height: 100%;
}
body {
min-height: 100%;
display: flex;
flex-direction: column;
}
h1{
font-size: 3em;
color: #FFD700;
text-shadow: 0 0 3px #000000;
}
h2 {
font-size: 2em;
color: #000000;
text-shadow: 0 0 3px #FFD700;
}
.title::-webkit-input-placeholder {
color: hsl(22, 52%, 45%);
font-size: 2em;
}
.Wish::-webkit-input-placeholder {
color: hsl(22, 52%, 45%);
font-size: 2em;
}
textarea {
font-size: 1em;
color: purple;
margin-bottom: 70px;
}
#submit,
#reset-btn {
color: purple;
background-color: lightGrey;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1em;
}
.hero-wrapper {
Display:flex;
Justify-content: flex-end;
Height: auto;
Border: 2px solid black;
}
.hero {
Text-align: center;
Color: blue;
Font-size:.8em;
}
.content-wrapper {
Display:flex;
Justify-content: flex-start;
Width:100%;
Height: auto;
Border: 2px solid black;
}
.index-bg {
background: url(http://postroiv.ru/wp-content/uploads/2016/05/613.jpg);
background-repeat: no-repeat;
background-position: left top;
flex: 1;
}
.title-wrapper {
direction: rtl;
margin: 10px;
}
.subTitle-wrapper {
direction: rtl;
margin: 10px;
}
.link-wrapper {
direction: rtl;
margin: 50px;
}
.bottom-wrapper1 {
position: fixed;
bottom: 3%;
left: 0;
right: 0;
text-align: right;
margin: 0 10px;
}
.form-wrapper {
display: flex;
flex-direction: row;
width: 100%;
}
.form-stuff {
width: 50%;
}
.form-img {
width: 50%;
}
.form-img img {
/*object-fit: cover;*/
/*min-width: 50%;
min-height: 50%;*/
width: 100%;
height: 75.2%;
}
#reset-text {
font-size: 2em;
}
.wish-wrapper {
display: flex;
flex-direction: row;
min-height: 400px;
width: 100%;
}
.wish-spot {
width: 55%;
font-size: 2em;
}
.wish-img {
background: url(http://us.123rf.com/450wm/chrisbradshaw/chrisbradshaw1501/chrisbradshaw150100013/35922618-many-different-coins-under-water-in-a-fountain.jpg?ver=6) no-repeat center;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
width: 45%;
}
.thought-img img {
object-fit: cover;
}
.bottom-wrapper2 {
margin-top: 40px;
color: hsl(22, 52%, 50%);
}
footer {
background-color:hsl(180, 20%,67%);
color: hsl(0, 0%, 100%);
display: flex;
justify-content: center;
padding: 1rem;
}
footer small {
margin-right: 2rem;
}
footer .well_ico {
background: url(https://maxcdn.icons8.com/Share/icon/DIY//well1600.png);
background-size: 20px 20px;
width: 20px;
height: 20px;
z-index: 2;
}
footer address {
margin-left: 2rem;
} | public/main.css | html {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
font-family: helvetica;
background-size: cover;
height: 100%;
}
body {
min-height: 100%;
display: flex;
flex-direction: column;
}
h1{
font-size: 3em;
color: #FFD700;
text-shadow: 0 0 3px #000000;
}
h2 {
font-size: 2em;
color: #000000;
text-shadow: 0 0 3px #FFD700;
}
.title::-webkit-input-placeholder {
color: hsl(22, 52%, 45%);
font-size: 2em;
}
.Wish::-webkit-input-placeholder {
color: hsl(22, 52%, 45%);
font-size: 2em;
}
textarea {
font-size: 1em;
color: purple;
margin-bottom: 70px;
}
#submit,
#reset-btn {
color: purple;
background-color: lightGrey;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1em;
}
.hero-wrapper {
Display:flex;
Justify-content: flex-end;
Height: auto;
Border: 2px solid black;
}
.hero {
Text-align: center;
Color: blue;
Font-size:.8em;
}
.content-wrapper {
Display:flex;
Justify-content: flex-start;
Width:100%;
Height: auto;
Border: 2px solid black;
}
.index-bg {
background: url(http://postroiv.ru/wp-content/uploads/2016/05/613.jpg);
background-repeat: no-repeat;
background-position: left top;
flex: 1;
}
.title-wrapper {
direction: rtl;
margin: 10px;
}
.subTitle-wrapper {
direction: rtl;
margin: 10px;
}
.link-wrapper {
direction: rtl;
margin: 50px;
}
.bottom-wrapper1 {
position: fixed;
bottom: 3%;
left: 0;
right: 0;
text-align: right;
margin: 0 10px;
}
.form-wrapper {
display: flex;
flex-direction: row;
width: 100%;
}
.form-stuff {
width: 50%;
}
.form-img {
width: 50%;
}
.form-img img {
/*object-fit: cover;*/
/*min-width: 50%;
min-height: 50%;*/
width: 100%;
height: 75.2%;
}
#reset-text {
font-size: 2em;
}
.wish-wrapper {
display: flex;
flex-direction: row;
min-height: 400px;
width: 100%;
}
.wish-spot {
width: 55%;
font-size: 2em;
}
.wish-img {
background: url(http://us.123rf.com/450wm/chrisbradshaw/chrisbradshaw1501/chrisbradshaw150100013/35922618-many-different-coins-under-water-in-a-fountain.jpg?ver=6) no-repeat center;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
width: 45%;
}
.thought-img img {
object-fit: cover;
}
.bottom-wrapper2 {
margin-top: 40px;
color: hsl(22, 52%, 50%);
}
footer {
background-color:hsl(180, 20%,67%);
color: hsl(0, 0%, 100%);
display: flex;
justify-content: center;
padding: 1rem;
}
footer small {
margin-right: 2rem;
}
footer .well_ico {
background: url(https://maxcdn.icons8.com/Share/icon/DIY//well1600.png);
background-size: 20px 20px;
width: 20px;
height: 20px;
z-index: 2;
}
footer address {
margin-left: 2rem;
} | 0.416441 | 0.0745 |
body {
font-family: Calibri Light;
background:url(bg.jpg) #DDD no-repeat left top;
background-size: 100%;
background-attachment: fixed;
padding-top: 51px;
-webkit-transition: background 1.5s linear;
-moz-transition: background 1.5s linear;
-o-transition: background 1.5s linear;
-ms-transition: background 1.5s linear;
transition: background 1.5s linear;
}
#content {
background-color: rgba(255,255,255,0.7);
margin: auto;
position: absolute;
top: 45px;
bottom: 0px;
left: 0px;
right: 0px;
min-width:500px;
min-height:300px;
max-width:800px;
max-height:500px;
}
.form-control {
margin: auto;
max-width:300px;
margin-top: 5px;
}
.btn-large {
font-size: 175%;
margin: auto;
width:200px;
height:100px;
position: absolute;
top: 50%;
bottom: 0px;
left: 0px;
right: 0px
}
.list-group {
top: 100px;
position: absolute;
width:300px;
background-color: rgba(255,255,255,0.5)
}
#title {
font-size: 300%;
margin: auto;
margin-top: 10%;
text-align: center;
}
#bottom {
width:100%;
height:240px;
position: absolute;
bottom:0;
right:0;
}
#messageLog {
width: -webkit-calc(100% - 320px);
height:90%;
background-color: rgba(255,255,255,0.5);
resize: none;
overflow-y: auto;
scroll-top: 10000;
}
#messageBox {
width: -webkit-calc(100% - 320px);
height:10%;
position: absolute;
bottom:0;
left:0;
}
video {
width:auto;
height:auto;
}
#localVideo {
width:320px;
height:240px;
position: absolute;
bottom:0;
right:0;
}
#localVideoContainer {
position: absolute;
bottom:0;
right:0;
}
#localControl {
width:320px;
height:240px;
background: black;
position: absolute;
bottom:0;
right:0;
opacity:.5;
display: none;
}
.videoMute {
margin: auto;
position: absolute;
bottom: 10%;
left: 31%;
width: 62px;
height: 62px;
}
.audioMute {
margin: auto;
position: absolute;
bottom: 10%;
right: 31%;
width: 62px;
height: 62px;
}
.fa {
line-height: inherit;
}
#videos {
float: center;
display: inline-block;
margin: 0 1em 0 1em;
}
#videoBackground {
float: left;
margin: 10px;
}
#panel {
float: right;
background-color: rgba(200,200,255,0.5);
height: -webkit-calc(100% - 240px);
width: 320px;
padding: 20px;
}
.action {
cursor: pointer;
} | client/style.css | body {
font-family: Calibri Light;
background:url(bg.jpg) #DDD no-repeat left top;
background-size: 100%;
background-attachment: fixed;
padding-top: 51px;
-webkit-transition: background 1.5s linear;
-moz-transition: background 1.5s linear;
-o-transition: background 1.5s linear;
-ms-transition: background 1.5s linear;
transition: background 1.5s linear;
}
#content {
background-color: rgba(255,255,255,0.7);
margin: auto;
position: absolute;
top: 45px;
bottom: 0px;
left: 0px;
right: 0px;
min-width:500px;
min-height:300px;
max-width:800px;
max-height:500px;
}
.form-control {
margin: auto;
max-width:300px;
margin-top: 5px;
}
.btn-large {
font-size: 175%;
margin: auto;
width:200px;
height:100px;
position: absolute;
top: 50%;
bottom: 0px;
left: 0px;
right: 0px
}
.list-group {
top: 100px;
position: absolute;
width:300px;
background-color: rgba(255,255,255,0.5)
}
#title {
font-size: 300%;
margin: auto;
margin-top: 10%;
text-align: center;
}
#bottom {
width:100%;
height:240px;
position: absolute;
bottom:0;
right:0;
}
#messageLog {
width: -webkit-calc(100% - 320px);
height:90%;
background-color: rgba(255,255,255,0.5);
resize: none;
overflow-y: auto;
scroll-top: 10000;
}
#messageBox {
width: -webkit-calc(100% - 320px);
height:10%;
position: absolute;
bottom:0;
left:0;
}
video {
width:auto;
height:auto;
}
#localVideo {
width:320px;
height:240px;
position: absolute;
bottom:0;
right:0;
}
#localVideoContainer {
position: absolute;
bottom:0;
right:0;
}
#localControl {
width:320px;
height:240px;
background: black;
position: absolute;
bottom:0;
right:0;
opacity:.5;
display: none;
}
.videoMute {
margin: auto;
position: absolute;
bottom: 10%;
left: 31%;
width: 62px;
height: 62px;
}
.audioMute {
margin: auto;
position: absolute;
bottom: 10%;
right: 31%;
width: 62px;
height: 62px;
}
.fa {
line-height: inherit;
}
#videos {
float: center;
display: inline-block;
margin: 0 1em 0 1em;
}
#videoBackground {
float: left;
margin: 10px;
}
#panel {
float: right;
background-color: rgba(200,200,255,0.5);
height: -webkit-calc(100% - 240px);
width: 320px;
padding: 20px;
}
.action {
cursor: pointer;
} | 0.357119 | 0.060252 |
section {
height: 90vh;
overflow: hidden;
text-align: center;
background: #1c1d26;
padding-top: 80px;
}
h1 {
margin: 0;
margin-bottom: 20px;
text-align: center;
}
h2 {
margin: 0;
margin-bottom: 20px;
text-align: center;
}
h1 img{
width: 80px;
height: 80px;
}
p {
text-align: center;
}
body,
html {
font-family: 'Lemonada', cursive;
font-size: calc(13px+1vw);
}
h1 {
font-weight: 700;
font-size: 2rem;
}
h2 {
font-weight: 700;
font-size: 1.5rem;
}
p {
font-weight: 400;
font-size: 1rem;
}
section a {
font-weight: 700;
font-size: 2rem;
text-decoration: none;
color: #12130f;
}
body {
background-color: #8f8073;
}
section {
background-color: #8fcb9b;
border-radius: 90px;
margin-top: 12px;
}
.container3 {
background-color: #8fcbc1;
border-radius: 90px;
height: 90vh;
overflow: hidden;
text-align: center;
padding-top: 50px;
margin-top: 12px;
}
h2 a {
border-radius: 90px;
padding-right: 1em;
padding-left: 1em;
}
.logos {
width: 70px;
height: 70px;
}
a:hover {
cursor: pointer;
background-color: #eae6e5;
opacity: 0.7;
}
.gris {
background-color: grey;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.gris:hover {
background-color: palevioletred;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.sizes {
height: 25px;
width: 25px;
}
.whiste {
background-color: white;
}
.big1 {
height: 13vh;
text-align: center;
}
.big2 {
height: 75vh;
overflow: hidden;
text-align: center;
}
.big3 {
height: 12vh;
text-align: center;
padding-top: 25px;
}
.big1 img{
width: 50px;
height: 50px;
}
.big7 img {
width: 100px;
height: 50px;
}
.big9 {
margin-top: 40px;
width: 50px;
height: 50px;
}
/*.nine {
height: 160px;
}
*/
body,
html {
font-family: 'Lemonada', cursive;
font-size: calc(13px+1vw);
}
.container {
display: grid;
grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr;
grid-gap: 15px;
}
body {
background-color: #f1e3f3;
}
#uno {
background-color: #62bfed;
padding-top: 22px;
padding-bottom: 22px;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
#dos {
background-color: #8fb8ed;
padding-top: 22px;
padding-bottom: 22px;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
#tres {
background-color: #c2bbf0;
padding-top: 22px;
padding-bottom: 22px;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.big2 a {
font-weight: 700;
font-size: 1rem;
text-decoration: none;
color: #f1e3f3;
padding: 2vh;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.big2 a:hover {
cursor: pointer;
background-color: #3590f3;
opacity: 0.7;
}
.big3 a {
font-weight: 700;
font-size: 1rem;
text-decoration: none;
color: #12130f;
padding: 2vh;
border-bottom-left-radius: 12px;
border-top-right-radius: 12px;
}
#a22 a:hover {
cursor: pointer;
background-color: #d98324;
}
#a23 a:hover {
cursor: pointer;
background-color: #a40606;
}
#a24 a:hover {
cursor: pointer;
background-color: #5a0002;
color: #f1e3f3;
}
#a21 a:hover {
cursor: pointer;
background-color: #d7cf07;
}
#a20 a:hover {
cursor: pointer;
background-color: #230007;
color: #f1e3f3;
}
.boton {
height: 150px;
width: 150px;
background-color: rgb(235, 152, 45);
border-radius: 81px;
}
#boton {
position: absolute;
background-image: url(../images/Brackets_Icon.svg.png);
animation-name: bol;
animation-duration: 30s;
animation-iteration-count:cubic-bezier(.12, .56, .47, .28);
animation-iteration-count: infinite;
}
@keyframes bol {
0% {
left: 0;
top: 0;
}
10% {
left: 33%;
top: 0;
}
20% {
left: 66%;
top: 0;
}
30% {
left: 88%;
top: 0;
background-color: red;
}
40% {
top: 40%;
left: 88%;
border-radius: 0;
background-color: blue;
}
50% {
top: 80%;
left: 88%;
background-color: rgb(41, 41, 78);
}
60% {
top: 80%;
left: 66%;
}
70% {
top: 80%;
left: 33%;
background-color: rgb(188, 55, 221);
}
80% {
top: 80%;
left: 0;
background-color: rgb(75, 238, 189);
}
90% {
top:40%;
left: 0;
}
100% {
left: 0;
top: 0;
background-color: yellow;
}
}
.Iam {
font-size: 40px;
text-align: left;
color: rgb(247, 45, 45);
padding-left: 125px;
padding-bottom: 170px;
}
.Iam h4 {
height: 50px;
float: left;
margin-right: 0.3em;
}
.Iam b {
float: left;
overflow: hidden;
position: relative;
height: 50px;
top: 40px;
}
.Iam .innerIam {
display: inline-block;
color: #e74c3c;
position: relative;
white-space: nowrap;
top: 0;
left: 0;
/*animation*/
-webkit-animation:move 10s;
-moz-animation:move 10s;
-ms-animation:move 10s;
-o-animation:move 10s;
animation:move 10s;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
-moz-animation-iteration-count:infinite;
-ms-animation-iteration-count:infinite;
-o-animation-iteration-count:infinite;
animation-iteration-count:infinite;
/*animation-delay*/
-webkit-animation-delay:2s;
-moz-animation-delay:2s;
-ms-animation-delay:2s;
-o-animation-delay:2s;
animation-delay:2s;
}
@keyframes move{
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}
@-webkit-keyframes move {
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}
@-moz-keyframes move {
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}
@-o-keyframes move {
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}
@keyframes move {
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
} | estilos/estilos.css | section {
height: 90vh;
overflow: hidden;
text-align: center;
background: #1c1d26;
padding-top: 80px;
}
h1 {
margin: 0;
margin-bottom: 20px;
text-align: center;
}
h2 {
margin: 0;
margin-bottom: 20px;
text-align: center;
}
h1 img{
width: 80px;
height: 80px;
}
p {
text-align: center;
}
body,
html {
font-family: 'Lemonada', cursive;
font-size: calc(13px+1vw);
}
h1 {
font-weight: 700;
font-size: 2rem;
}
h2 {
font-weight: 700;
font-size: 1.5rem;
}
p {
font-weight: 400;
font-size: 1rem;
}
section a {
font-weight: 700;
font-size: 2rem;
text-decoration: none;
color: #12130f;
}
body {
background-color: #8f8073;
}
section {
background-color: #8fcb9b;
border-radius: 90px;
margin-top: 12px;
}
.container3 {
background-color: #8fcbc1;
border-radius: 90px;
height: 90vh;
overflow: hidden;
text-align: center;
padding-top: 50px;
margin-top: 12px;
}
h2 a {
border-radius: 90px;
padding-right: 1em;
padding-left: 1em;
}
.logos {
width: 70px;
height: 70px;
}
a:hover {
cursor: pointer;
background-color: #eae6e5;
opacity: 0.7;
}
.gris {
background-color: grey;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.gris:hover {
background-color: palevioletred;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.sizes {
height: 25px;
width: 25px;
}
.whiste {
background-color: white;
}
.big1 {
height: 13vh;
text-align: center;
}
.big2 {
height: 75vh;
overflow: hidden;
text-align: center;
}
.big3 {
height: 12vh;
text-align: center;
padding-top: 25px;
}
.big1 img{
width: 50px;
height: 50px;
}
.big7 img {
width: 100px;
height: 50px;
}
.big9 {
margin-top: 40px;
width: 50px;
height: 50px;
}
/*.nine {
height: 160px;
}
*/
body,
html {
font-family: 'Lemonada', cursive;
font-size: calc(13px+1vw);
}
.container {
display: grid;
grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr;
grid-gap: 15px;
}
body {
background-color: #f1e3f3;
}
#uno {
background-color: #62bfed;
padding-top: 22px;
padding-bottom: 22px;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
#dos {
background-color: #8fb8ed;
padding-top: 22px;
padding-bottom: 22px;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
#tres {
background-color: #c2bbf0;
padding-top: 22px;
padding-bottom: 22px;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.big2 a {
font-weight: 700;
font-size: 1rem;
text-decoration: none;
color: #f1e3f3;
padding: 2vh;
border-top-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.big2 a:hover {
cursor: pointer;
background-color: #3590f3;
opacity: 0.7;
}
.big3 a {
font-weight: 700;
font-size: 1rem;
text-decoration: none;
color: #12130f;
padding: 2vh;
border-bottom-left-radius: 12px;
border-top-right-radius: 12px;
}
#a22 a:hover {
cursor: pointer;
background-color: #d98324;
}
#a23 a:hover {
cursor: pointer;
background-color: #a40606;
}
#a24 a:hover {
cursor: pointer;
background-color: #5a0002;
color: #f1e3f3;
}
#a21 a:hover {
cursor: pointer;
background-color: #d7cf07;
}
#a20 a:hover {
cursor: pointer;
background-color: #230007;
color: #f1e3f3;
}
.boton {
height: 150px;
width: 150px;
background-color: rgb(235, 152, 45);
border-radius: 81px;
}
#boton {
position: absolute;
background-image: url(../images/Brackets_Icon.svg.png);
animation-name: bol;
animation-duration: 30s;
animation-iteration-count:cubic-bezier(.12, .56, .47, .28);
animation-iteration-count: infinite;
}
@keyframes bol {
0% {
left: 0;
top: 0;
}
10% {
left: 33%;
top: 0;
}
20% {
left: 66%;
top: 0;
}
30% {
left: 88%;
top: 0;
background-color: red;
}
40% {
top: 40%;
left: 88%;
border-radius: 0;
background-color: blue;
}
50% {
top: 80%;
left: 88%;
background-color: rgb(41, 41, 78);
}
60% {
top: 80%;
left: 66%;
}
70% {
top: 80%;
left: 33%;
background-color: rgb(188, 55, 221);
}
80% {
top: 80%;
left: 0;
background-color: rgb(75, 238, 189);
}
90% {
top:40%;
left: 0;
}
100% {
left: 0;
top: 0;
background-color: yellow;
}
}
.Iam {
font-size: 40px;
text-align: left;
color: rgb(247, 45, 45);
padding-left: 125px;
padding-bottom: 170px;
}
.Iam h4 {
height: 50px;
float: left;
margin-right: 0.3em;
}
.Iam b {
float: left;
overflow: hidden;
position: relative;
height: 50px;
top: 40px;
}
.Iam .innerIam {
display: inline-block;
color: #e74c3c;
position: relative;
white-space: nowrap;
top: 0;
left: 0;
/*animation*/
-webkit-animation:move 10s;
-moz-animation:move 10s;
-ms-animation:move 10s;
-o-animation:move 10s;
animation:move 10s;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
-moz-animation-iteration-count:infinite;
-ms-animation-iteration-count:infinite;
-o-animation-iteration-count:infinite;
animation-iteration-count:infinite;
/*animation-delay*/
-webkit-animation-delay:2s;
-moz-animation-delay:2s;
-ms-animation-delay:2s;
-o-animation-delay:2s;
animation-delay:2s;
}
@keyframes move{
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}
@-webkit-keyframes move {
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}
@-moz-keyframes move {
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}
@-o-keyframes move {
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}
@keyframes move {
0% { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
} | 0.414069 | 0.072604 |
html, body, #skin{
height: 100%;
margin:0;
padding:0;
}
body {
color: #333;
font-family: '微软雅黑';
overflow: hidden;
}
@keyframes show {
from{
opacity: 0;
}
}
.primary-button,
.secondary-button {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-radius: 20px;
}
.primary-button {
color: #fff;
background: #1b98f8;
margin: 1em 0;
}
.secondary-button {
background: #fff;
border: 1px solid #ddd;
color: #666;
padding: 0.5em 2em;
font-size: 80%;
}
#layout,
#nav,
#list,
#main {
margin: 0;
padding: 0;
letter-spacing: normal;
}
/*收起左侧栏*/
#layout.middle #nav {
width: 40px;
}
#layout.middle #list {
left: 55px;
}
#layout.middle #main {
left: 390px;
}
#layout.middle .nav-menu-button {
right: 0;
}
#nav .nav-menu-button {
position: absolute;
top: 0;
right: 10px;
width: 40px;
height: 37px;
background: url(../../imgs/icon/left.png) center no-repeat;
cursor: pointer;
}
#nav .nav-menu-button.right {
background-image: url(../../imgs/icon/right.png);
}
#nav .pure-menu {
background: transparent;
border: none;
text-align: left;
}
.new-note-item{
position: relative;
height: 36px;
line-height: 36px;
padding-left: 40px;
box-sizing: border-box;
text-align: center;
}
.middle-add-item{
display: none;
position: absolute;
left: 0;
top: 0;
width: 40px;
height: 36px;
background: url("../../imgs/icon/add.png") 10px 7px no-repeat;
cursor: pointer;
}
.middle-add-item:hover{
background-color: #e4e4e4;
}
.middle .middle-add-item{
display: block;
}
.new-doc-box{
position: relative;
margin : 0 30px;
width: 100px;
height: 36px;
cursor: pointer;
}
.new-doc-box:after{
position: absolute;
right: 0;
top: 16px;
content: ' ';
width: 0;
height: 0;
border-top: 3px solid #333;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
}
.new-doc-box span, .new-doc-box .add-icon img{
float: left;
-webkit-user-select: none;
}
.new-doc-box .add-icon{
width: 20px;
padding: 7px 3px 0 0;
}
.new-doc-box .add-list{
display: none;
position: absolute;
top: 36px;
width: 100px;
background: #fff;
z-index: 5;
font-size: 12px;
text-align: left;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
}
.new-doc-box .add-list li{
padding-left: 15px;
color: #999;
}
.new-doc-box.active .add-list{
display: block;
}
.pure-menu-item {
position: relative;
width: 240px;
}
.pure-menu-item .first-menu-a {
position: relative;
padding: 8px 30px 8px 40px;
}
.first-menu-a {
line-height: 20px;
}
.nav-newest-item .first-menu-a {
background: url(../../imgs/icon/new.png) 10px 7px no-repeat;
}
.nav-doc-item .first-menu-a {
background: url(../../imgs/icon/doc.png) 10px 7px no-repeat;
}
.nav-share-item .first-menu-a {
background: url(../../imgs/icon/share.png) 10px 7px no-repeat;
}
.nav-del-item .first-menu-a {
background: url(../../imgs/icon/del.png) 10px 7px no-repeat;
}
.first-menu-down, .child-menu-down {
position: absolute;
right: 10px;
top: 10px;
width: 14px;
height: 14px;
background: url(../../imgs/icon/down.png) 1px 2px no-repeat;
background-size: 12px;
border: 1px solid #aaa;
border-radius: 50%;
}
.child-menu-down {
display: none;
}
.child-menu-open {
position: absolute;
left: 0;
top: 8px;
width: 20px;
height: 20px;
background: url("../../imgs/icon/down2.png") 5px 5px no-repeat;
background-size: 10px;
transition: transform .3s;
display: none;
}
.is-parent .child-menu-open{
display: block;
}
.on .child-menu-open {
transform: rotate(90deg);
}
.child-menu-down.active {
display: block;
}
.first-menu-a:hover .child-menu-down,
.second-menu-a:hover .child-menu-down{
display: block;
}
.child-menu-icon {
position: absolute;
left: 18px;
top: 10px;
width: 16px;
height: 16px;
background: url("../../imgs/icon/folder.png") no-repeat;
background-size: 16px;
}
.child-list {
width: 100%;
box-sizing: border-box;
list-style: none;
padding-left: 15px;
font-size: 14px;
}
.first-child-list {
padding-left: 30px;
}
.child-item {
position: relative;
animation: show .3s ease;
}
.child-item a {
padding: 8px 30px 8px 38px;
line-height: 20px;
height: 20px;
}
.child-item.add-dir a{
padding-left: 0;
}
.child-item.add-dir span {
font-size: 18px;
line-height: 20px;
margin-right: 5px;
/*background: url(../../imgs/icon/add.png) 0 10px no-repeat;*/
/*background-size: 16px;*/
}
.child-item .item-name{
display: inline-block;
width:100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.pure-menu-item a {
display: block;
color: #333;
}
.down-box {
position: absolute;
right: 10px;
width: 100px;
display: none;
background: #fff;
z-index: 5;
font-size: 12px;
transition: top .3s;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
}
.down-box p {
margin: 0;
padding: 8px 10px;
cursor: pointer;
}
.down-box p:hover {
background: #f3f3f3;
}
.child-item input {
width: 95%;
border: 1px solid #eee;
}
.child-add-ul {
list-style: none;
padding-left: 20px;
}
.child-add-ul li input {
margin: 8px 30px 8px 0;
}
.child-item-input {
display: none;
}
.child-item-input input {
width: 130px;
border: 1px solid #ddd;
padding: 5px 10px;
}
.doc-content-header input:focus,
.doc-content-header input:active {
outline: 0;
}
.doc-content-controls {
position: relative;
text-align: right;
line-height: 35px;
}
.doc-content-controls .edit-btn,
.doc-content-controls .save-btn{
display: none;
float: right;
width: 50px;
height: 35px;
border: 1px solid #ededed;
line-height: 35px;
border-radius: 3px;
text-align: center;
font-size: 14px;
cursor: pointer;
}
.doc-content-controls .more-btn{
float: right;
width: 18px;
height:18px;
background: url("../../imgs/icon/more.png") no-repeat;
border: 1px solid #888;
border-radius: 50%;
margin: 8px 0 0 20px;
cursor: pointer;
}
.more-list{
display: none;
position: absolute;
right: -10px;
top: 45px;
width: 100px;
background: #fff;
font-size: 12px;
text-align: left;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
z-index: 11;
}
.more-list li{
padding-left: 15px;
color: #999;
cursor: pointer;
}
.feedback{
position: fixed;
bottom: 0;
width: 240px;
height: 40px;
line-height: 40px;
text-align: center;
border-top: 1px solid #ddd;
background: #fff;
}
.feedback a{
display: block;
color: #666;
}
.feedback a:hover{
background-color: #fff;
}
.feedback span{
display: inline-block;
}
.feedback .feedback-icon{
width: 20px;
height: 20px;
}
.feedback .feedback-icon img{
float: left;
padding-top: 3px;
}
.middle .feedback{
width: 40px;
/*background-image: url("../../imgs/icon/feedback.png");*/
/*background-position: 10px 10px;*/
/*background-repeat: no-repeat;*/
}
#layout {
position: relative;
padding-top: 50px;
height: 100%;
box-sizing: border-box;
background: #f3f3f3;
}
#nav,
#list {
position: absolute;
top: 65px;;
bottom: 0;
background: #fff;
}
#nav {
left: 0;
width: 240px;
border-right: 1px solid #ddd;
transition: width .3s;
overflow: hidden;
}
#list {
left: 255px;
width: 320px;
border-right: 1px solid #ddd;
transition: left .3s;
}
.nav-inner {
display: block;
margin: 37px 0;
border-top: 1px solid #aaa;
}
/*note css*/
.list-head {
position: relative;
height: 57px;
padding: 10px;
border-bottom: 1px solid #ddd;
text-align: center;
box-sizing: border-box;
}
.search-input-box{
padding-right: 50px;
box-sizing: border-box;
}
.search-input-box input.search-input{
border: 1px solid #ededed;
width: 100%;
height: 37px;
padding: 5px 15px;
border-radius: 20px;
box-sizing: border-box;
}
.search-input-box input.search-input:focus {
outline: 0;
}
.sort-box{
position: absolute;
right:8px;
top:5px;
width: 50px;
height:50px;
}
.sort-box-icon{
display: block;
margin: 12px;
width: 25px;
height:25px;
background: url("../../imgs/icon/sort.png") no-repeat;
cursor: pointer;
}
.sort-box:hover .sort-down-menu{
display: block;
}
.sort-down-menu{
display: none;
position: absolute;
top: 40px;
width: 100px;
z-index: 11;
background: #fff;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
}
.sort-down-menu li{
line-height: 35px;
padding-left: 25px;
font-size: 14px;
text-align: left;
color: #999;
cursor: pointer;
}
.sort-down-menu li.active.desc{
background-image: url('../../imgs/icon/sort_down.png');
background-position: 10px 11px;
background-repeat: no-repeat;
}
.sort-down-menu li.active.asc{
background-image: url('../../imgs/icon/sort_up.png');
background-position: 10px 11px;
background-repeat: no-repeat;
}
.list-content{
position: absolute;
top: 57px;
bottom: 0;
width:100%;
overflow-y: scroll;
}
.list-content.null .list-content-ul,
.is-search-null .list-null,
.search-null{
display: none;
}
.list-content.null .list-content-null,
.is-search-null .search-null{
display: block;
}
.list-content-null{
display: none;
text-align: center;
}
.list-content-null p{
margin: 200px 0 30px;
color: #999;
}
.list-content-null span.new-note{
padding: 10px 20px;
color: #fff;
border-radius: 3px;
cursor: pointer;
}
.list-content::-webkit-scrollbar{
width:0;
}
.doc-item {
position: relative;
padding: 0.9em 1em;
border-bottom: 1px solid #ddd;
cursor: pointer;
animation: show .3s ease;
}
.doc-title {
margin: 0;
font-size: 14px;
line-height: 22px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.doc-title .icon-md, .doc-title .icon-note{
float: left;
width: 16px;
height: 16px;
background: url("../../imgs/icon/md.png") no-repeat;
background-size: 16px;
margin:2px 5px 0 0;
}
.doc-title .icon-note{
background-image: url("../../imgs/icon/note.png");
}
.doc-time {
font-size: 80%;
margin: 0.4em 0;
color: #aaa;
}
.doc-author{
margin-left: 10px;
}
.doc-hover-icon{
position: absolute;
right: 10px;
top: 15px;
height: 20px;
margin: 0;
display: none;
}
.doc-hover-icon .list-share-icon, .doc-hover-icon .list-del-icon{
float: left;
width: 20px;
height:20px;
background-repeat: no-repeat;
background-size: 20px;
margin-right:10px;
}
.doc-hover-icon .list-share-icon{
background-image: url("../../imgs/icon/share.png");
}
.doc-hover-icon .list-del-icon{
background-image: url("../../imgs/icon/del.png");
}
.doc-item:hover .doc-hover-icon{
display: block;
}
.doc-item:hover .doc-title{
padding-right: 60px;
}
/* Doc Content Styles */
#main {
position: absolute;
left: 590px;
right: 0;
top: 65px;
bottom: 0;
margin: 0;
padding: 0;
transition: left .3s;
background: #fff;
}
.doc-content.null .doc-content-header, .doc-content.null .doc-content-body{
display: none;
}
.doc-content.null .doc-content-null{
display: block;
}
.doc-content-null{
display: none;
}
.doc-content-header {
position: relative;
padding: 15px 30px;
height: 70px;
border-bottom: 1px solid #ddd;
box-sizing: border-box;
line-height: 40px;
}
.doc-content-title{
padding-right: 110px;
}
.doc-content-controls{
position: absolute;
right: 20px;
top: 15px;
width: 110px;
height: 40px;
}
.doc-content-title .doc-title-input {
display: none;
width: 100%;
height: 100%;
border: 0;
font-size: 20px;
color: #333;
animation: show .3s ease;
}
.doc-content-title .doc-title-span{
display: none;
font-size: 20px;
color: #333;
outline: 0;
animation: show .3s ease;
}
.is-edit .doc-title-input,
.is-edit .save-btn,
.is-edit .doc-edit-body,
.no-edit .doc-preview-body,
.no-edit .doc-title-span,
.no-edit .edit-btn{
display: block;
}
.editor-1, .editor-2{
display: none;
}
.is-edit-1 .editor-1,
.is-edit-2 .editor-2{
display: block;
}
::-webkit-input-placeholder {
color: #ccc;
}
.is-edit .doc-content-body{
overflow: hidden;
}
.doc-content-body{
position: absolute;
top:70px;
bottom: 0;
width: 100%;
overflow-y: scroll;
}
.doc-edit-body{
display: none;
animation: show .3s ease;
border-left: 1px solid #ddd;
}
.doc-preview-body{
display: none;
width: 80%;
margin: auto;
padding: 20px;
animation: show .3s ease;
}
.editor-theme{
position: absolute;
right: 10px;
top: 40px;
width: 300px;
padding:10px;
background: #fff;
z-index: 11;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
transform: translateX(110%);
transition: transform .3s;
}
.editor-theme.active{
transform: translateX(0);
}
.editor-theme li{
font-size: 12px;
display: inline-block;
padding: 5px;
}
.editor-theme li:hover,.editor-theme li.active{
cursor: pointer;
color: #76b0f3;
background: #f4f9ff;
}
.markdown-body p {
font-size: 15px;
}
#editormd {
box-sizing: border-box;
border-top: 0;
border-right: 0;
margin-bottom: 0;
}
.editormd-fullscreen {
z-index: 100;
}
.editormd-html-preview pre ol.linenums,
.editormd-preview-container pre ol.linenums{
padding-left: 0;
}
.editormd-html-preview pre ol.linenums li,
.editormd-preview-container pre ol.linenums li{
list-style-type: none;
}
li.L1, li.L3, li.L5, li.L7, li.L9{
background: #f6f6f6;
}
.editormd-html-preview .com,.editormd-preview-container .com{
color: #aaa;
font-size: 12px;
}
.editormd-preview-container ul{
list-style-type: disc;
}
.editormd-preview-container ol{
list-style-type: decimal;
}
.editor-2 .w-e-toolbar{
border-bottom: 1px solid #ddd;
}
.editor-2 .w-e-toolbar .w-e-menu{
padding: 10px;
}
.editor-2 .w-e-text{
padding: 20px 40px;
}
.editor-2 .w-e-text::-webkit-scrollbar{
width: 0;
}
.editor-2 .w-e-text ol{
list-style-type: decimal;
}
.editor-2 .w-e-text ul{
list-style-type: disc;
}
.editor-2 .w-e-text code{
margin: 0;
padding: 5px 10px;
}
.editormd-html-preview code, .editormd-preview-container code, .editormd{
border: 0;
}
/* wangeditor */
#editor{
background: #F0F0F0;
}
.w-e-toolbar,.w-e-text-container{
background: #fff;
}
.w-e-text-container{
width: 80%;
margin: auto;
} | public/module/doc/css/layouts/main.css | html, body, #skin{
height: 100%;
margin:0;
padding:0;
}
body {
color: #333;
font-family: '微软雅黑';
overflow: hidden;
}
@keyframes show {
from{
opacity: 0;
}
}
.primary-button,
.secondary-button {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-radius: 20px;
}
.primary-button {
color: #fff;
background: #1b98f8;
margin: 1em 0;
}
.secondary-button {
background: #fff;
border: 1px solid #ddd;
color: #666;
padding: 0.5em 2em;
font-size: 80%;
}
#layout,
#nav,
#list,
#main {
margin: 0;
padding: 0;
letter-spacing: normal;
}
/*收起左侧栏*/
#layout.middle #nav {
width: 40px;
}
#layout.middle #list {
left: 55px;
}
#layout.middle #main {
left: 390px;
}
#layout.middle .nav-menu-button {
right: 0;
}
#nav .nav-menu-button {
position: absolute;
top: 0;
right: 10px;
width: 40px;
height: 37px;
background: url(../../imgs/icon/left.png) center no-repeat;
cursor: pointer;
}
#nav .nav-menu-button.right {
background-image: url(../../imgs/icon/right.png);
}
#nav .pure-menu {
background: transparent;
border: none;
text-align: left;
}
.new-note-item{
position: relative;
height: 36px;
line-height: 36px;
padding-left: 40px;
box-sizing: border-box;
text-align: center;
}
.middle-add-item{
display: none;
position: absolute;
left: 0;
top: 0;
width: 40px;
height: 36px;
background: url("../../imgs/icon/add.png") 10px 7px no-repeat;
cursor: pointer;
}
.middle-add-item:hover{
background-color: #e4e4e4;
}
.middle .middle-add-item{
display: block;
}
.new-doc-box{
position: relative;
margin : 0 30px;
width: 100px;
height: 36px;
cursor: pointer;
}
.new-doc-box:after{
position: absolute;
right: 0;
top: 16px;
content: ' ';
width: 0;
height: 0;
border-top: 3px solid #333;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
}
.new-doc-box span, .new-doc-box .add-icon img{
float: left;
-webkit-user-select: none;
}
.new-doc-box .add-icon{
width: 20px;
padding: 7px 3px 0 0;
}
.new-doc-box .add-list{
display: none;
position: absolute;
top: 36px;
width: 100px;
background: #fff;
z-index: 5;
font-size: 12px;
text-align: left;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
}
.new-doc-box .add-list li{
padding-left: 15px;
color: #999;
}
.new-doc-box.active .add-list{
display: block;
}
.pure-menu-item {
position: relative;
width: 240px;
}
.pure-menu-item .first-menu-a {
position: relative;
padding: 8px 30px 8px 40px;
}
.first-menu-a {
line-height: 20px;
}
.nav-newest-item .first-menu-a {
background: url(../../imgs/icon/new.png) 10px 7px no-repeat;
}
.nav-doc-item .first-menu-a {
background: url(../../imgs/icon/doc.png) 10px 7px no-repeat;
}
.nav-share-item .first-menu-a {
background: url(../../imgs/icon/share.png) 10px 7px no-repeat;
}
.nav-del-item .first-menu-a {
background: url(../../imgs/icon/del.png) 10px 7px no-repeat;
}
.first-menu-down, .child-menu-down {
position: absolute;
right: 10px;
top: 10px;
width: 14px;
height: 14px;
background: url(../../imgs/icon/down.png) 1px 2px no-repeat;
background-size: 12px;
border: 1px solid #aaa;
border-radius: 50%;
}
.child-menu-down {
display: none;
}
.child-menu-open {
position: absolute;
left: 0;
top: 8px;
width: 20px;
height: 20px;
background: url("../../imgs/icon/down2.png") 5px 5px no-repeat;
background-size: 10px;
transition: transform .3s;
display: none;
}
.is-parent .child-menu-open{
display: block;
}
.on .child-menu-open {
transform: rotate(90deg);
}
.child-menu-down.active {
display: block;
}
.first-menu-a:hover .child-menu-down,
.second-menu-a:hover .child-menu-down{
display: block;
}
.child-menu-icon {
position: absolute;
left: 18px;
top: 10px;
width: 16px;
height: 16px;
background: url("../../imgs/icon/folder.png") no-repeat;
background-size: 16px;
}
.child-list {
width: 100%;
box-sizing: border-box;
list-style: none;
padding-left: 15px;
font-size: 14px;
}
.first-child-list {
padding-left: 30px;
}
.child-item {
position: relative;
animation: show .3s ease;
}
.child-item a {
padding: 8px 30px 8px 38px;
line-height: 20px;
height: 20px;
}
.child-item.add-dir a{
padding-left: 0;
}
.child-item.add-dir span {
font-size: 18px;
line-height: 20px;
margin-right: 5px;
/*background: url(../../imgs/icon/add.png) 0 10px no-repeat;*/
/*background-size: 16px;*/
}
.child-item .item-name{
display: inline-block;
width:100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.pure-menu-item a {
display: block;
color: #333;
}
.down-box {
position: absolute;
right: 10px;
width: 100px;
display: none;
background: #fff;
z-index: 5;
font-size: 12px;
transition: top .3s;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
}
.down-box p {
margin: 0;
padding: 8px 10px;
cursor: pointer;
}
.down-box p:hover {
background: #f3f3f3;
}
.child-item input {
width: 95%;
border: 1px solid #eee;
}
.child-add-ul {
list-style: none;
padding-left: 20px;
}
.child-add-ul li input {
margin: 8px 30px 8px 0;
}
.child-item-input {
display: none;
}
.child-item-input input {
width: 130px;
border: 1px solid #ddd;
padding: 5px 10px;
}
.doc-content-header input:focus,
.doc-content-header input:active {
outline: 0;
}
.doc-content-controls {
position: relative;
text-align: right;
line-height: 35px;
}
.doc-content-controls .edit-btn,
.doc-content-controls .save-btn{
display: none;
float: right;
width: 50px;
height: 35px;
border: 1px solid #ededed;
line-height: 35px;
border-radius: 3px;
text-align: center;
font-size: 14px;
cursor: pointer;
}
.doc-content-controls .more-btn{
float: right;
width: 18px;
height:18px;
background: url("../../imgs/icon/more.png") no-repeat;
border: 1px solid #888;
border-radius: 50%;
margin: 8px 0 0 20px;
cursor: pointer;
}
.more-list{
display: none;
position: absolute;
right: -10px;
top: 45px;
width: 100px;
background: #fff;
font-size: 12px;
text-align: left;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
z-index: 11;
}
.more-list li{
padding-left: 15px;
color: #999;
cursor: pointer;
}
.feedback{
position: fixed;
bottom: 0;
width: 240px;
height: 40px;
line-height: 40px;
text-align: center;
border-top: 1px solid #ddd;
background: #fff;
}
.feedback a{
display: block;
color: #666;
}
.feedback a:hover{
background-color: #fff;
}
.feedback span{
display: inline-block;
}
.feedback .feedback-icon{
width: 20px;
height: 20px;
}
.feedback .feedback-icon img{
float: left;
padding-top: 3px;
}
.middle .feedback{
width: 40px;
/*background-image: url("../../imgs/icon/feedback.png");*/
/*background-position: 10px 10px;*/
/*background-repeat: no-repeat;*/
}
#layout {
position: relative;
padding-top: 50px;
height: 100%;
box-sizing: border-box;
background: #f3f3f3;
}
#nav,
#list {
position: absolute;
top: 65px;;
bottom: 0;
background: #fff;
}
#nav {
left: 0;
width: 240px;
border-right: 1px solid #ddd;
transition: width .3s;
overflow: hidden;
}
#list {
left: 255px;
width: 320px;
border-right: 1px solid #ddd;
transition: left .3s;
}
.nav-inner {
display: block;
margin: 37px 0;
border-top: 1px solid #aaa;
}
/*note css*/
.list-head {
position: relative;
height: 57px;
padding: 10px;
border-bottom: 1px solid #ddd;
text-align: center;
box-sizing: border-box;
}
.search-input-box{
padding-right: 50px;
box-sizing: border-box;
}
.search-input-box input.search-input{
border: 1px solid #ededed;
width: 100%;
height: 37px;
padding: 5px 15px;
border-radius: 20px;
box-sizing: border-box;
}
.search-input-box input.search-input:focus {
outline: 0;
}
.sort-box{
position: absolute;
right:8px;
top:5px;
width: 50px;
height:50px;
}
.sort-box-icon{
display: block;
margin: 12px;
width: 25px;
height:25px;
background: url("../../imgs/icon/sort.png") no-repeat;
cursor: pointer;
}
.sort-box:hover .sort-down-menu{
display: block;
}
.sort-down-menu{
display: none;
position: absolute;
top: 40px;
width: 100px;
z-index: 11;
background: #fff;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
}
.sort-down-menu li{
line-height: 35px;
padding-left: 25px;
font-size: 14px;
text-align: left;
color: #999;
cursor: pointer;
}
.sort-down-menu li.active.desc{
background-image: url('../../imgs/icon/sort_down.png');
background-position: 10px 11px;
background-repeat: no-repeat;
}
.sort-down-menu li.active.asc{
background-image: url('../../imgs/icon/sort_up.png');
background-position: 10px 11px;
background-repeat: no-repeat;
}
.list-content{
position: absolute;
top: 57px;
bottom: 0;
width:100%;
overflow-y: scroll;
}
.list-content.null .list-content-ul,
.is-search-null .list-null,
.search-null{
display: none;
}
.list-content.null .list-content-null,
.is-search-null .search-null{
display: block;
}
.list-content-null{
display: none;
text-align: center;
}
.list-content-null p{
margin: 200px 0 30px;
color: #999;
}
.list-content-null span.new-note{
padding: 10px 20px;
color: #fff;
border-radius: 3px;
cursor: pointer;
}
.list-content::-webkit-scrollbar{
width:0;
}
.doc-item {
position: relative;
padding: 0.9em 1em;
border-bottom: 1px solid #ddd;
cursor: pointer;
animation: show .3s ease;
}
.doc-title {
margin: 0;
font-size: 14px;
line-height: 22px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.doc-title .icon-md, .doc-title .icon-note{
float: left;
width: 16px;
height: 16px;
background: url("../../imgs/icon/md.png") no-repeat;
background-size: 16px;
margin:2px 5px 0 0;
}
.doc-title .icon-note{
background-image: url("../../imgs/icon/note.png");
}
.doc-time {
font-size: 80%;
margin: 0.4em 0;
color: #aaa;
}
.doc-author{
margin-left: 10px;
}
.doc-hover-icon{
position: absolute;
right: 10px;
top: 15px;
height: 20px;
margin: 0;
display: none;
}
.doc-hover-icon .list-share-icon, .doc-hover-icon .list-del-icon{
float: left;
width: 20px;
height:20px;
background-repeat: no-repeat;
background-size: 20px;
margin-right:10px;
}
.doc-hover-icon .list-share-icon{
background-image: url("../../imgs/icon/share.png");
}
.doc-hover-icon .list-del-icon{
background-image: url("../../imgs/icon/del.png");
}
.doc-item:hover .doc-hover-icon{
display: block;
}
.doc-item:hover .doc-title{
padding-right: 60px;
}
/* Doc Content Styles */
#main {
position: absolute;
left: 590px;
right: 0;
top: 65px;
bottom: 0;
margin: 0;
padding: 0;
transition: left .3s;
background: #fff;
}
.doc-content.null .doc-content-header, .doc-content.null .doc-content-body{
display: none;
}
.doc-content.null .doc-content-null{
display: block;
}
.doc-content-null{
display: none;
}
.doc-content-header {
position: relative;
padding: 15px 30px;
height: 70px;
border-bottom: 1px solid #ddd;
box-sizing: border-box;
line-height: 40px;
}
.doc-content-title{
padding-right: 110px;
}
.doc-content-controls{
position: absolute;
right: 20px;
top: 15px;
width: 110px;
height: 40px;
}
.doc-content-title .doc-title-input {
display: none;
width: 100%;
height: 100%;
border: 0;
font-size: 20px;
color: #333;
animation: show .3s ease;
}
.doc-content-title .doc-title-span{
display: none;
font-size: 20px;
color: #333;
outline: 0;
animation: show .3s ease;
}
.is-edit .doc-title-input,
.is-edit .save-btn,
.is-edit .doc-edit-body,
.no-edit .doc-preview-body,
.no-edit .doc-title-span,
.no-edit .edit-btn{
display: block;
}
.editor-1, .editor-2{
display: none;
}
.is-edit-1 .editor-1,
.is-edit-2 .editor-2{
display: block;
}
::-webkit-input-placeholder {
color: #ccc;
}
.is-edit .doc-content-body{
overflow: hidden;
}
.doc-content-body{
position: absolute;
top:70px;
bottom: 0;
width: 100%;
overflow-y: scroll;
}
.doc-edit-body{
display: none;
animation: show .3s ease;
border-left: 1px solid #ddd;
}
.doc-preview-body{
display: none;
width: 80%;
margin: auto;
padding: 20px;
animation: show .3s ease;
}
.editor-theme{
position: absolute;
right: 10px;
top: 40px;
width: 300px;
padding:10px;
background: #fff;
z-index: 11;
box-shadow: 0 1px 16px 0 rgba(90, 109, 122, 0.41);
transform: translateX(110%);
transition: transform .3s;
}
.editor-theme.active{
transform: translateX(0);
}
.editor-theme li{
font-size: 12px;
display: inline-block;
padding: 5px;
}
.editor-theme li:hover,.editor-theme li.active{
cursor: pointer;
color: #76b0f3;
background: #f4f9ff;
}
.markdown-body p {
font-size: 15px;
}
#editormd {
box-sizing: border-box;
border-top: 0;
border-right: 0;
margin-bottom: 0;
}
.editormd-fullscreen {
z-index: 100;
}
.editormd-html-preview pre ol.linenums,
.editormd-preview-container pre ol.linenums{
padding-left: 0;
}
.editormd-html-preview pre ol.linenums li,
.editormd-preview-container pre ol.linenums li{
list-style-type: none;
}
li.L1, li.L3, li.L5, li.L7, li.L9{
background: #f6f6f6;
}
.editormd-html-preview .com,.editormd-preview-container .com{
color: #aaa;
font-size: 12px;
}
.editormd-preview-container ul{
list-style-type: disc;
}
.editormd-preview-container ol{
list-style-type: decimal;
}
.editor-2 .w-e-toolbar{
border-bottom: 1px solid #ddd;
}
.editor-2 .w-e-toolbar .w-e-menu{
padding: 10px;
}
.editor-2 .w-e-text{
padding: 20px 40px;
}
.editor-2 .w-e-text::-webkit-scrollbar{
width: 0;
}
.editor-2 .w-e-text ol{
list-style-type: decimal;
}
.editor-2 .w-e-text ul{
list-style-type: disc;
}
.editor-2 .w-e-text code{
margin: 0;
padding: 5px 10px;
}
.editormd-html-preview code, .editormd-preview-container code, .editormd{
border: 0;
}
/* wangeditor */
#editor{
background: #F0F0F0;
}
.w-e-toolbar,.w-e-text-container{
background: #fff;
}
.w-e-text-container{
width: 80%;
margin: auto;
} | 0.290981 | 0.048406 |
html, body{
margin:0;
font-size: 100%;
font-family: 'Montserrat', sans-serif;
background: #fff;
}
body a {
text-decoration:none;
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
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;
}
h2,h3,h4,h5,h6{
margin:0;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
}
p{
margin:0;
font-family: 'Open Sans', sans-serif;
}
ul{
margin:0;
padding:0;
}
label{
margin:0;
}
img {
border: 0;
width: 100%;
}
/*--header--*/
.header_left {
float: left;
margin: .3em 0 0;
}
.header_left ul li {
display: inline-block;
margin-right: 2em;
font-size: 15px;
color: #999c9e;
letter-spacing: 1px;
}
.header_left ul li i {
padding-right: 1em;
color: #ee4f4f;
}
.header_left ul li a {
font-size: 15px;
color: #999c9e;
text-decoration: none;
}
.header_left ul li a:hover {
color: #ee4f4f;
}
.header_right {
float: right;
}
ul.forms_right {
float: right;
margin-top: 3px;
}
ul.forms_right {
float: right;
}
ul.forms_right li a {
background: #ee4f4f;
color: #fff;
font-size: 0.9em;
padding: 0.6em 1em;
text-transform: uppercase;
letter-spacing: 1px;
}
ul.forms_right li a:hover {
background: #168eea;
}
ul.forms_right li a.active {
background: #168eea;
}
ul.forms_right li {
display: inline-block;
list-style: none;
}
.top_menu_w3layouts {
padding: 0.5em 2em;
background: #000;
}
.content {
margin: 0;
padding: 0px;
}
.content p:last-child {
margin: 0;
}
.content a.button {
display: inline-block;
padding: 10px 20px;
background: #ff0;
color: #000;
text-decoration: none;
}
.content a.button:hover {
background: #000;
color: #ff0;
}
.content.title {
position: relative;
background: #333;
}
.navbar-nav {
float: right;
margin: 0;
}
.content.title h1 span.demo {
display: inline-block;
font-size: .5em;
padding: 10px;
background: #fff;
color: #333;
vertical-align: top;
}
.content.title .back-to-article {
position: absolute;
bottom: -20px;
left: 20px;
}
.content.title .back-to-article a {
padding: 10px 20px;
background: #168eea;
color: #fff;
text-decoration: none;
}
.content.title .back-to-article a:hover {
background: #168eea;
}
.content.title .back-to-article a i {
margin-left: 5px;
}
.content.white {
background: #fff;
}
.content.black {
background: #000;
}
.content.black p {
color: #999;
}
.content.black p a {
color: #08c;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 0!important;
border: 1px solid transparent;
}
.navbar-default {
background-color: #fff;
border-color: #fff;
}
.navbar-brand {
float: left;
padding: 0!important;
font-size: 18px;
line-height: 0px!important;
height: 0px!important;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.29);
}
.navbar-default a.navbar-brand h1 {
color: #0099cc;
color: #03C5E2;
font-weight: 700;
font-size: 40px;
margin-top: 14px;
}
.navbar-default a.navbar-brand h1 .fa {
color: #ed1b2e;
margin-right: 3px;
}
.navbar-default .navbar-nav>li>a {
color: #282828;
letter-spacing: 1px;
font-weight: 600;
text-transform: uppercase;
font-size: 14px;
padding: 15px 22px;
margin: 1em 0;
}
.navbar-nav>li>a.active {
color: #ffffff;
background: #ed1b2e;
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
color: #fff;
background: #ed1b2e;
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
color: #fff;
background: #ed1b2e;
}
.navbar-default .navbar-brand label {
color: #333;
display: block;
font-size: 0.3em;
text-align: center;
letter-spacing: 1px;
text-shadow: 0 1px 2px rgba(47, 47, 47, 0.2);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #111;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #ffffff;
}
.navbar-default .navbar-nav>.active>a:before {
background: #168eea;
transform: translateX(0);
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-o-transform: translateX(0);
-ms-transform: translateX(0);
}
.navbar-toggle {
position: relative;
float: right;
margin-right: 0;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: #282828;
background-image: none;
border: 1px solid transparent;
border-radius: 0;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
color: #ffffff;
background: #168eea;
}
.navbar-nav>li {
float: left;
margin: 0 5px;
}
.navbar-default .navbar-toggle {
border-color: #202020;
}
.dropdown-menu .divider {
height: 0;
margin: 0;
overflow: none;
background: none;
}
.dropdown-menu .divider {
border-bottom: 1px solid #E8E7EC;
padding: 0px 0;
}
.main-content {
padding: 3em 0;
}
.dropdown-menu {
min-width: 150px;
padding: 0px 0;
}
ul.dropdown-menu.sub-menu {
min-width: 130px;
top: 77px;
left: 148px;
-webkit-animation: fadeinleft 600ms ease-in-out;
-moz-animation: fadeinleft 600ms ease-in-out;
-o-animation: fadeinleft 600ms ease-in-out;
-ms-animation: fadeinleft 600ms ease-in-out;
animation: fadeinleft 600ms ease-in-out;
}
ul.dropdown-menu:hover a.s-menu {
background: #373738;
color: #fff;
}
.dropdown-menu.columns-2 {
min-width: 400px;
}
.dropdown-menu.columns-3 {
min-width: 600px;
}
.dropdown-menu li a {
padding: 12px 15px;
color: #282828;
letter-spacing: 1px;
font-weight: 600;
text-transform: uppercase;
font-size: 14px;
}
.dropdown-menu {
border-radius: 0px;
}
.multi-column-dropdown {
list-style: none;
}
.multi-column-dropdown li a {
display: block;
clear: both;
line-height: 1.428571429;
color: #333;
white-space: normal;
}
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
color: #fff;
text-decoration: none;
background-color: #ed1b2e;
}
.multi-column-dropdown li a:hover {
text-decoration: none;
color: #168eea;
background: none;
}
b.fa.fa-caret-right {
vertical-align: middle;
margin-left: 2em;
}
@media (max-width:767px) {
.dropdown-menu.multi-column {
min-width: 240px !important;
overflow-x: hidden;
}
.navbar-nav {
float: left;
margin: 0;
margin-left: 0em;
width: 100%;
background: #eee;
margin-top: 1em;
}
}
/* innerpages_banner */
.innerpages_banner {
background: -webkit-linear-gradient(rgba(23, 22, 23, 0), rgba(23, 22, 23, 0)), url(../images/banner1.png) repeat;
background: -moz-linear-gradient(rgba(23, 22, 23, 0), rgba(23, 22, 23, 0)), url(../images/banner1.png) repeat;
background: -ms-linear-gradient(rgba(23, 22, 23, 0), rgba(23, 22, 23, 0)), url(../images/banner1.png) repeat;
background: linear-gradient(rgba(23, 22, 23, 0), rgba(23, 22, 23, 0)), url(../images/banner1.png) repeat;
min-height: 300px;
}
.innerpages_banner h2 {
font-size: 55px;
font-weight: 600;
color: #fff;
text-align: center;
padding-top: 2em;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
/* //innerpages_banner */
/*-- contact --*/
.contact-section{
padding: 5em 0;
}
.mail_grid_w3l input[type="text"],
.mail_grid_w3l input[type="email"],
.mail_grid_w3l textarea {
outline: none;
padding: 14px;
font-size: 14px;
color: #212121;
background: none;
width: 100%;
border: 1px solid #b5b5b5;
letter-spacing: 1px;
font-family: 'Montserrat', sans-serif;
}
.contact-fields-w3ls {
margin-bottom: 1em;
}
.contact-fields-w3ls:nth-child(4) {
margin-bottom: 0;
}
.mail_grid_w3l textarea {
min-height: 175px;
width: 100%;
resize: none;
}
.mail_grid_w3l input[type="submit"] {
outline: none;
padding: 13px 0;
font-size: 18px;
color: #fff;
background: #03C5E2;
width: 100%;
border: none;
text-transform: capitalize;
letter-spacing: 2px;
font-family: 'Montserrat', sans-serif;
}
.mail_grid_w3l input[type="submit"]:hover {
background: #ed1b2e;
color: #fff;
}
.address-grids span.fa {
color: #fff;
font-size: 18px;
float: left;
width: 50px;
height: 50px;
text-align: center;
background: rgba(3, 196, 226, 0.7);
line-height: 49px;
}
.address-grids {
margin-top: 2em;
}
.contact-section .social-icons-agileits-w3layouts {
margin-top: 1.7em;
}
.contact-right {
padding-left: 1em;
float: left;
width: 80%;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
font-size: 15px;
letter-spacing: 1px;
color: #fff;
padding: 0.5em 1em;
border: 0;
width: 100%;
border-bottom: 1px solid #dcdcdc;
background: none;
-webkit-appearance: none;
outline: none;
border-radius: 00px 30px 30px 0px;
-webkit-border-radius: 00px 30px 30px 0px;
-moz-border-radius: 00px 30px 30px 0px;
-moz-border-radius: 00px 30px 30px 0px;
-ms-border-radius: 00px 30px 30px 0px;
}
.contact-right p {
font-weight: 600;
color: #ffffff;
font-size: 1em;
letter-spacing: 1px;
}
.contact-right span,
.contact-right a {
color: #cecaca;
font-size: 13px;
line-height: 1.8em;
letter-spacing: 1px;
text-decoration: none;
}
.contact-right a:hover {
color: #ed1b2e;
text-decoration: none;
}
.address-grid h4 {
font-size: 26px;
color: #fff;
}
.address-left {
background: #0b0c11;
padding: 2em 2em;
}
.address-right-w3-img {
background: url(../images/contact.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: 411px;
margin-left: 1%;
width: 65%;
}
.mail_grid_w3l {
margin: 3em 0 0 0;
}
.contact_left_grid {
padding-left: 0;
}
.contact_rightt_grid {
padding: 0;
}
.map {
padding: 1.5em 1.5em 1.2em;
background: #dfdfdf;
}
.map iframe {
width: 100%;
min-height: 307px;
border: none;
}
/*--// contact --*/
/*-- subscribe --*/
.subscribe{
background: #ed1b2e;
padding: 4em 0;
}
.subscribe h3.heading {
color: #ffffff;
}
.agile-subscribe-heading{
text-align:center;
}
.subscribe-grid{
text-align: center;
width: 80%;
margin: 2em auto 0;
}
.subscribe-grid input[type="email"] {
display: inline-block;
background: #FFFFFF;
border: solid 1px #fff;
width: 60%;
outline: none;
padding: .7em;
font-size: 1em;
color: #999999;
}
.subscribe-grid button.btn1 {
color: #ffffff;
font-size: 1em;
border: solid 1px #03C5E2;
width: 70px;
padding: .7em;
text-align: center;
text-decoration: none;
background: #03C5E2;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
button.btn1:hover{
background: #fff;
border: 1px solid #fff;
}
button.btn1:hover i.fa.fa-paper-plane-o{
color: #03C5E2 !important;
}
/*-- //subscribe --*/ | web/css/contact.css | html, body{
margin:0;
font-size: 100%;
font-family: 'Montserrat', sans-serif;
background: #fff;
}
body a {
text-decoration:none;
transition:0.5s all;
-webkit-transition:0.5s all;
-moz-transition:0.5s all;
-o-transition:0.5s all;
-ms-transition:0.5s all;
}
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;
}
h2,h3,h4,h5,h6{
margin:0;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
}
p{
margin:0;
font-family: 'Open Sans', sans-serif;
}
ul{
margin:0;
padding:0;
}
label{
margin:0;
}
img {
border: 0;
width: 100%;
}
/*--header--*/
.header_left {
float: left;
margin: .3em 0 0;
}
.header_left ul li {
display: inline-block;
margin-right: 2em;
font-size: 15px;
color: #999c9e;
letter-spacing: 1px;
}
.header_left ul li i {
padding-right: 1em;
color: #ee4f4f;
}
.header_left ul li a {
font-size: 15px;
color: #999c9e;
text-decoration: none;
}
.header_left ul li a:hover {
color: #ee4f4f;
}
.header_right {
float: right;
}
ul.forms_right {
float: right;
margin-top: 3px;
}
ul.forms_right {
float: right;
}
ul.forms_right li a {
background: #ee4f4f;
color: #fff;
font-size: 0.9em;
padding: 0.6em 1em;
text-transform: uppercase;
letter-spacing: 1px;
}
ul.forms_right li a:hover {
background: #168eea;
}
ul.forms_right li a.active {
background: #168eea;
}
ul.forms_right li {
display: inline-block;
list-style: none;
}
.top_menu_w3layouts {
padding: 0.5em 2em;
background: #000;
}
.content {
margin: 0;
padding: 0px;
}
.content p:last-child {
margin: 0;
}
.content a.button {
display: inline-block;
padding: 10px 20px;
background: #ff0;
color: #000;
text-decoration: none;
}
.content a.button:hover {
background: #000;
color: #ff0;
}
.content.title {
position: relative;
background: #333;
}
.navbar-nav {
float: right;
margin: 0;
}
.content.title h1 span.demo {
display: inline-block;
font-size: .5em;
padding: 10px;
background: #fff;
color: #333;
vertical-align: top;
}
.content.title .back-to-article {
position: absolute;
bottom: -20px;
left: 20px;
}
.content.title .back-to-article a {
padding: 10px 20px;
background: #168eea;
color: #fff;
text-decoration: none;
}
.content.title .back-to-article a:hover {
background: #168eea;
}
.content.title .back-to-article a i {
margin-left: 5px;
}
.content.white {
background: #fff;
}
.content.black {
background: #000;
}
.content.black p {
color: #999;
}
.content.black p a {
color: #08c;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 0!important;
border: 1px solid transparent;
}
.navbar-default {
background-color: #fff;
border-color: #fff;
}
.navbar-brand {
float: left;
padding: 0!important;
font-size: 18px;
line-height: 0px!important;
height: 0px!important;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.29);
}
.navbar-default a.navbar-brand h1 {
color: #0099cc;
color: #03C5E2;
font-weight: 700;
font-size: 40px;
margin-top: 14px;
}
.navbar-default a.navbar-brand h1 .fa {
color: #ed1b2e;
margin-right: 3px;
}
.navbar-default .navbar-nav>li>a {
color: #282828;
letter-spacing: 1px;
font-weight: 600;
text-transform: uppercase;
font-size: 14px;
padding: 15px 22px;
margin: 1em 0;
}
.navbar-nav>li>a.active {
color: #ffffff;
background: #ed1b2e;
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
color: #fff;
background: #ed1b2e;
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
color: #fff;
background: #ed1b2e;
}
.navbar-default .navbar-brand label {
color: #333;
display: block;
font-size: 0.3em;
text-align: center;
letter-spacing: 1px;
text-shadow: 0 1px 2px rgba(47, 47, 47, 0.2);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #111;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #ffffff;
}
.navbar-default .navbar-nav>.active>a:before {
background: #168eea;
transform: translateX(0);
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-o-transform: translateX(0);
-ms-transform: translateX(0);
}
.navbar-toggle {
position: relative;
float: right;
margin-right: 0;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: #282828;
background-image: none;
border: 1px solid transparent;
border-radius: 0;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
color: #ffffff;
background: #168eea;
}
.navbar-nav>li {
float: left;
margin: 0 5px;
}
.navbar-default .navbar-toggle {
border-color: #202020;
}
.dropdown-menu .divider {
height: 0;
margin: 0;
overflow: none;
background: none;
}
.dropdown-menu .divider {
border-bottom: 1px solid #E8E7EC;
padding: 0px 0;
}
.main-content {
padding: 3em 0;
}
.dropdown-menu {
min-width: 150px;
padding: 0px 0;
}
ul.dropdown-menu.sub-menu {
min-width: 130px;
top: 77px;
left: 148px;
-webkit-animation: fadeinleft 600ms ease-in-out;
-moz-animation: fadeinleft 600ms ease-in-out;
-o-animation: fadeinleft 600ms ease-in-out;
-ms-animation: fadeinleft 600ms ease-in-out;
animation: fadeinleft 600ms ease-in-out;
}
ul.dropdown-menu:hover a.s-menu {
background: #373738;
color: #fff;
}
.dropdown-menu.columns-2 {
min-width: 400px;
}
.dropdown-menu.columns-3 {
min-width: 600px;
}
.dropdown-menu li a {
padding: 12px 15px;
color: #282828;
letter-spacing: 1px;
font-weight: 600;
text-transform: uppercase;
font-size: 14px;
}
.dropdown-menu {
border-radius: 0px;
}
.multi-column-dropdown {
list-style: none;
}
.multi-column-dropdown li a {
display: block;
clear: both;
line-height: 1.428571429;
color: #333;
white-space: normal;
}
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
color: #fff;
text-decoration: none;
background-color: #ed1b2e;
}
.multi-column-dropdown li a:hover {
text-decoration: none;
color: #168eea;
background: none;
}
b.fa.fa-caret-right {
vertical-align: middle;
margin-left: 2em;
}
@media (max-width:767px) {
.dropdown-menu.multi-column {
min-width: 240px !important;
overflow-x: hidden;
}
.navbar-nav {
float: left;
margin: 0;
margin-left: 0em;
width: 100%;
background: #eee;
margin-top: 1em;
}
}
/* innerpages_banner */
.innerpages_banner {
background: -webkit-linear-gradient(rgba(23, 22, 23, 0), rgba(23, 22, 23, 0)), url(../images/banner1.png) repeat;
background: -moz-linear-gradient(rgba(23, 22, 23, 0), rgba(23, 22, 23, 0)), url(../images/banner1.png) repeat;
background: -ms-linear-gradient(rgba(23, 22, 23, 0), rgba(23, 22, 23, 0)), url(../images/banner1.png) repeat;
background: linear-gradient(rgba(23, 22, 23, 0), rgba(23, 22, 23, 0)), url(../images/banner1.png) repeat;
min-height: 300px;
}
.innerpages_banner h2 {
font-size: 55px;
font-weight: 600;
color: #fff;
text-align: center;
padding-top: 2em;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
/* //innerpages_banner */
/*-- contact --*/
.contact-section{
padding: 5em 0;
}
.mail_grid_w3l input[type="text"],
.mail_grid_w3l input[type="email"],
.mail_grid_w3l textarea {
outline: none;
padding: 14px;
font-size: 14px;
color: #212121;
background: none;
width: 100%;
border: 1px solid #b5b5b5;
letter-spacing: 1px;
font-family: 'Montserrat', sans-serif;
}
.contact-fields-w3ls {
margin-bottom: 1em;
}
.contact-fields-w3ls:nth-child(4) {
margin-bottom: 0;
}
.mail_grid_w3l textarea {
min-height: 175px;
width: 100%;
resize: none;
}
.mail_grid_w3l input[type="submit"] {
outline: none;
padding: 13px 0;
font-size: 18px;
color: #fff;
background: #03C5E2;
width: 100%;
border: none;
text-transform: capitalize;
letter-spacing: 2px;
font-family: 'Montserrat', sans-serif;
}
.mail_grid_w3l input[type="submit"]:hover {
background: #ed1b2e;
color: #fff;
}
.address-grids span.fa {
color: #fff;
font-size: 18px;
float: left;
width: 50px;
height: 50px;
text-align: center;
background: rgba(3, 196, 226, 0.7);
line-height: 49px;
}
.address-grids {
margin-top: 2em;
}
.contact-section .social-icons-agileits-w3layouts {
margin-top: 1.7em;
}
.contact-right {
padding-left: 1em;
float: left;
width: 80%;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
font-size: 15px;
letter-spacing: 1px;
color: #fff;
padding: 0.5em 1em;
border: 0;
width: 100%;
border-bottom: 1px solid #dcdcdc;
background: none;
-webkit-appearance: none;
outline: none;
border-radius: 00px 30px 30px 0px;
-webkit-border-radius: 00px 30px 30px 0px;
-moz-border-radius: 00px 30px 30px 0px;
-moz-border-radius: 00px 30px 30px 0px;
-ms-border-radius: 00px 30px 30px 0px;
}
.contact-right p {
font-weight: 600;
color: #ffffff;
font-size: 1em;
letter-spacing: 1px;
}
.contact-right span,
.contact-right a {
color: #cecaca;
font-size: 13px;
line-height: 1.8em;
letter-spacing: 1px;
text-decoration: none;
}
.contact-right a:hover {
color: #ed1b2e;
text-decoration: none;
}
.address-grid h4 {
font-size: 26px;
color: #fff;
}
.address-left {
background: #0b0c11;
padding: 2em 2em;
}
.address-right-w3-img {
background: url(../images/contact.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: 411px;
margin-left: 1%;
width: 65%;
}
.mail_grid_w3l {
margin: 3em 0 0 0;
}
.contact_left_grid {
padding-left: 0;
}
.contact_rightt_grid {
padding: 0;
}
.map {
padding: 1.5em 1.5em 1.2em;
background: #dfdfdf;
}
.map iframe {
width: 100%;
min-height: 307px;
border: none;
}
/*--// contact --*/
/*-- subscribe --*/
.subscribe{
background: #ed1b2e;
padding: 4em 0;
}
.subscribe h3.heading {
color: #ffffff;
}
.agile-subscribe-heading{
text-align:center;
}
.subscribe-grid{
text-align: center;
width: 80%;
margin: 2em auto 0;
}
.subscribe-grid input[type="email"] {
display: inline-block;
background: #FFFFFF;
border: solid 1px #fff;
width: 60%;
outline: none;
padding: .7em;
font-size: 1em;
color: #999999;
}
.subscribe-grid button.btn1 {
color: #ffffff;
font-size: 1em;
border: solid 1px #03C5E2;
width: 70px;
padding: .7em;
text-align: center;
text-decoration: none;
background: #03C5E2;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
button.btn1:hover{
background: #fff;
border: 1px solid #fff;
}
button.btn1:hover i.fa.fa-paper-plane-o{
color: #03C5E2 !important;
}
/*-- //subscribe --*/ | 0.312055 | 0.059129 |
body {
overflow-x: hidden;
}
p {
font-size: 20px;
}
#para{
margin-top: 40px;
}
p.small {
font-size: 16px;
}
#blog{
width: 70%;
margin-left: 10%;
list-style: none;
}
a,
a:hover,
a:focus,
a:active,
a.active {
outline: 0;
color: #18bc9c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 700;
}
hr.gear-light,
hr.gear-primary {
margin: 25px auto 30px;
padding: 0;
max-width: 250px;
border: 0;
border-top: solid 5px;
text-align: center;
}
hr.gear-light:after,
hr.gear-primary:after {
content: "\f005";
display: inline-block;
position: relative;
top: -.8em;
padding: 0 .25em;
font-family: FontAwesome;
font-size: 2em;
}
hr.gear-light {
border-color: #fff;
}
hr.gear-light:after {
color: lightcoral;
background-color: dimgray;
}
hr.gear-primary {
border-color: #2c3e50;
}
hr.gear-primary:after {
color: #2c3e50;
background-color: #fff;
}
.img-centered {
margin: 0 auto;
}
#mce-EMAIL{
}
#plantext{
padding: 20px;
}
header {
text-align: center;
color: #fff;
background-color: #9e9e9e;
}
header .container {
padding-top: 100px;
padding-bottom: 50px;
}
.main-image{
width:400px;
height: 300px;
background-image:url(../img/3a470e3e8591ddbc4a6366b19435fd50.gif);
z-index: 9999;
background-repeat: no-repeat;
margin-left: 25%;
}
#contact-form{
margin-top: 60px;
}
.img-responsive {
height: 300px;
width: 400px;
}
header img {
display: block;
margin: 0 auto 20px;
}
header .intro-text .name {
display: block;
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 2em;
font-weight: 700;
}
header .intro-text .skills {
font-size: 1.25em;
font-weight: 300;
}
@media(min-width:768px) {
header .container {
padding-top: 100px;
padding-bottom: 100px;
}
header .intro-text .name {
font-size: 4.75em;
}
header .intro-text .skills {
font-size: 1.75em;
}
}
#services{
background-color: #7c5d9f;
height: 100%;
align-content: center;
}
#seed{
background-image: url(../img/seed.png);
background-repeat: no-repeat;
background-size: contain;
width: 300px;
height: 200px;
}
#nerd{
background-image: url(../img/nerd.png);
background-repeat: no-repeat;
background-size: contain;
width: 300px;
height: 200px;
}
#test{
background-image: url(../img/beakercopy.png);
background-repeat: no-repeat;
background-size: contain;
width: 300px;
height: 250px;
}
#promos{
text-align: center;
display: table-cell;
width: 300px;
padding: 2%;
}
#promotions{
margin-left: 8%;
}
.promo-text {
color: white;
display: inline-flex, !important;
}
@media(min-width:768px) {
.navbar-fixed-top {
padding: 25px 0;
-webkit-transition: padding .3s;
-moz-transition: padding .3s;
transition: padding .3s;
}
.navbar-brand{
margin-top: -20px;
}
.navbar-fixed-top .navbar-brand {
font-size: 2em;
-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;
}
.navbar-fixed-top.navbar-shrink {
padding: 10px 0;
}
.navbar-fixed-top.navbar-shrink .navbar-brand {
font-size: 1.5em;
}
#promotions{
margin-left: 4%;
}
}
#stats{
height: 60%;
width: 80%;
}
#buynow{
background-color: mediumpurple;
padding: 30px;
border-radius: 10px;
margin-left: 50%;
font-size: 1em;
}
#buynow2{
background-color: mediumpurple;
padding: 30px;
float: right;
border-radius: 10px;
margin: -20%;
font-size: 2em;
}
#satellite{
background-image: url(../img/satellite.png);
background-size: 60px, 60px;
width: 60px;
height: 60px;
margin-top: -50px;
margin-left: 45%;
}
#galaxy{
background-image: url(../img/galaxy.png);
background-size: 60px, 60px;
width: 60px;
height: 60px;
margin-top:-50px;
margin-left: 45%;
}
#interstellar{
background-image: url(../img/interstellar.png);
background-size: 60px, 60px;
width: 60px;
height: 60px;
margin-top:-50px;
margin-left: 45%;
}
#termsframe{
width: 100%;
height: 800px;
}
#fineprint{
padding: 20px;
color: gray;
bottom:0px;
}
#mc_embed_signup{
float: left;
width: 800px;
margin-left: 10%;
color: !important, darkgray;
padding-left: 50px;
}
#mce-EMAIL{
width: 30%;
left: !important, 20px;
color: mediumpurple;
}
#emailformtitle{
<<<<<<< Updated upstream
=======
color: #9e9e9e;
>>>>>>> Stashed changes
}
#mc-embedded-subscribe{
background-color:!important, #2c3e50;
left: 70px;
}
@media(max-width:560px){
#mc_embed_signup{
margin-left: -9%;
}
}
.navbar {
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 700;
}
.navbar a:focus {
outline: 0;
}
.navbar .navbar-nav {
letter-spacing: 2px;
margin-top: -10px;
margin-right: -80px;
}
.navbar .navbar-nav li a:focus {
outline: 0;
}
.navbar-default,
.navbar-inverse {
border: 0;
}
section {
padding: 100px 0;
}
section h2 {
margin: 0;
font-size: 3em;
}
section.success {
color: #fff;
background: #18bc9c;
}
section.success a,
section.success a:hover,
section.success a:focus,
section.success a:active,
section.success a.active {
outline: 0;
color: #2c3e50;
}
@media(max-width:767px) {
section {
padding: 75px 0;
}
section.first {
padding-top: 75px;
}
.img-responsive {
margin-left: 1%;
}
#buynow{
margin-left: 35%;
}
}
#portfolio .portfolio-item {
right: 0;
margin: 0 0 15px;
}
#portfolio .portfolio-item .portfolio-link {
display: block;
position: relative;
margin: 0 auto;
max-width: 400px;
}
#portfolio .portfolio-item .portfolio-link .caption {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
background: rgba(24,188,156,.9);
-webkit-transition: all ease .5s;
-moz-transition: all ease .5s;
transition: all ease .5s;
}
#portfolio .portfolio-item .portfolio-link .caption:hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content {
position: absolute;
top: 50%;
width: 100%;
height: 20px;
margin-top: -12px;
text-align: center;
font-size: 20px;
color: #fff;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
margin: 0;
}
#portfolio * {
z-index: 2;
}
#star{
float:left;
}
@media(min-width:767px) {
#portfolio .portfolio-item {
margin: 0 0 30px;
}
}
#integrate1{
background-image: url(../img/angular.gif);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate2{
background-image: url(../img/facebook.jpeg);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate3{
background-image: url(../img/mailchimp.jpeg);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate4{
background-image: url(../img/google.jpg);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate5{
background-image: url(../img/paypal.png);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate6{
background-image: url(../img/firebase.jpg);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate1,#integrate2,#integrate3,#integrate4,#integrate5,#integrate6{
margin: 10px;
}
@media(max-width:760px){
#integrate1,#integrate2,#integrate3,#integrate4,#integrate5,#integrate6, #more{
display: none;
}
}
#more{
margin-top: 230px;
}
.btn-outline {
margin-top: 15px;
border: solid 2px #fff;
font-size: 20px;
color: #fff;
background: 0 0;
transition: all .3s ease-in-out;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
border: solid 2px #fff;
color: #18bc9c;
background: #fff;
}
.floating-label-form-group {
position: relative;
margin-bottom: 0;
padding-bottom: .5em;
border-bottom: 1px solid #eee;
}
.floating-label-form-group input,
.floating-label-form-group textarea {
z-index: 1;
position: relative;
padding-right: 0;
padding-left: 0;
border: 0;
border-radius: 0;
font-size: 1.5em;
background: 0 0;
box-shadow: none!important;
resize: none;
}
.floating-label-form-group label {
display: block;
z-index: 0;
position: relative;
top: 2em;
margin: 0;
font-size: .85em;
line-height: 1.764705882em;
vertical-align: middle;
vertical-align: baseline;
opacity: 0;
-webkit-transition: top .3s ease,opacity .3s ease;
-moz-transition: top .3s ease,opacity .3s ease;
-ms-transition: top .3s ease,opacity .3s ease;
transition: top .3s ease,opacity .3s ease;
}
.floating-label-form-group::not(:first-child) {
padding-left: 14px;
border-left: 1px solid #eee;
}
.floating-label-form-group-with-value label {
top: 0;
opacity: 1;
}
.floating-label-form-group-with-focus label {
color: #18bc9c;
}
form .row:first-child .floating-label-form-group {
border-top: 1px solid #eee;
}
footer {
color: #fff;
width: 200%;
margin-left: -300px;
}
footer h3 {
margin-bottom: 30px;
}
footer .footer-above {
padding-top: 50px;
background-color: #2c3e50;
}
footer .footer-col {
margin-bottom: 50px;
}
footer .footer-below {
padding: 25px 0;
background-color: #233140;
}
#socialicons{
background-image: url(/img/Facebook-128.png);
background-size: 40px;
width:40px;
height: 40px;
float: right;
}
.btn-social {
display: inline-block;
width: 50px;
height: 50px;
border: 2px solid #fff;
border-radius: 100%;
text-align: center;
font-size: 20px;
line-height: 45px;
}
.btn:focus,
.btn:active,
.btn.active {
outline: 0;
}
.scroll-top {
z-index: 1049;
position: fixed;
right: 2%;
bottom: 2%;
width: 50px;
height: 50px;
}
.scroll-top .btn {
width: 50px;
height: 50px;
border-radius: 100%;
font-size: 20px;
line-height: 28px;
opacity: 30%;
}
.scroll-top .btn:focus {
outline: 0;
}
.portfolio-modal .modal-content {
padding: 100px 0;
min-height: 100%;
border: 0;
border-radius: 0;
text-align: center;
background-clip: border-box;
-webkit-box-shadow: none;
box-shadow: none;
}
.portfolio-modal .modal-content h2 {
margin: 0;
font-size: 3em;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content .item-details {
margin: 30px 0;
}
.portfolio-modal .close-modal {
position: absolute;
top: 25px;
right: 25px;
width: 75px;
height: 75px;
background-color: transparent;
cursor: pointer;
}
.portfolio-modal .close-modal:hover {
opacity: .3;
}
.portfolio-modal .close-modal .lr {
z-index: 1051;
width: 1px;
height: 75px;
margin-left: 35px;
background-color: #2c3e50;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.portfolio-modal .close-modal .lr .rl {
z-index: 1052;
width: 1px;
height: 75px;
background-color: #2c3e50;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.portfolio-modal .modal-backdrop {
display: none;
opacity: 0;
}
@media(max-width:660px){
.main-image{
margin-left: -30px;
}
#promos {
display: table-row;
}
#seed, #nerd, #test{
margin-left: 15%;
}
p{
margin: 15px;
}
#socialicons{
width: 40px;
height: 40px;
background-size: 40px,40px;
background-repeat: no-repeat;
margin-top: 20px;
float: left;
}
#email{
font-size: 16px;
}
#mc_embed_signup{
<<<<<<< Updated upstream
width: 400px;
padding-left: 5px;
}
footer{
margin-left: -90px;
}
}
/*Media Query for small & medium mobile */
@media(max-width:375px){
.main-image{
width: 300px;
height: 200px;
=======
float: left;
}
}
@media(max-width:461px){
#buynow{
margin-left: 22%;
}
}
@media(min-width:1440px){
#promos{
left:200px ;
padding: 110px;
}
.main-image{
left: 30px;
>>>>>>> Stashed changes
}
footer{
margin-left: -400px;
}
} | css/freelancer.css | body {
overflow-x: hidden;
}
p {
font-size: 20px;
}
#para{
margin-top: 40px;
}
p.small {
font-size: 16px;
}
#blog{
width: 70%;
margin-left: 10%;
list-style: none;
}
a,
a:hover,
a:focus,
a:active,
a.active {
outline: 0;
color: #18bc9c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 700;
}
hr.gear-light,
hr.gear-primary {
margin: 25px auto 30px;
padding: 0;
max-width: 250px;
border: 0;
border-top: solid 5px;
text-align: center;
}
hr.gear-light:after,
hr.gear-primary:after {
content: "\f005";
display: inline-block;
position: relative;
top: -.8em;
padding: 0 .25em;
font-family: FontAwesome;
font-size: 2em;
}
hr.gear-light {
border-color: #fff;
}
hr.gear-light:after {
color: lightcoral;
background-color: dimgray;
}
hr.gear-primary {
border-color: #2c3e50;
}
hr.gear-primary:after {
color: #2c3e50;
background-color: #fff;
}
.img-centered {
margin: 0 auto;
}
#mce-EMAIL{
}
#plantext{
padding: 20px;
}
header {
text-align: center;
color: #fff;
background-color: #9e9e9e;
}
header .container {
padding-top: 100px;
padding-bottom: 50px;
}
.main-image{
width:400px;
height: 300px;
background-image:url(../img/3a470e3e8591ddbc4a6366b19435fd50.gif);
z-index: 9999;
background-repeat: no-repeat;
margin-left: 25%;
}
#contact-form{
margin-top: 60px;
}
.img-responsive {
height: 300px;
width: 400px;
}
header img {
display: block;
margin: 0 auto 20px;
}
header .intro-text .name {
display: block;
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 2em;
font-weight: 700;
}
header .intro-text .skills {
font-size: 1.25em;
font-weight: 300;
}
@media(min-width:768px) {
header .container {
padding-top: 100px;
padding-bottom: 100px;
}
header .intro-text .name {
font-size: 4.75em;
}
header .intro-text .skills {
font-size: 1.75em;
}
}
#services{
background-color: #7c5d9f;
height: 100%;
align-content: center;
}
#seed{
background-image: url(../img/seed.png);
background-repeat: no-repeat;
background-size: contain;
width: 300px;
height: 200px;
}
#nerd{
background-image: url(../img/nerd.png);
background-repeat: no-repeat;
background-size: contain;
width: 300px;
height: 200px;
}
#test{
background-image: url(../img/beakercopy.png);
background-repeat: no-repeat;
background-size: contain;
width: 300px;
height: 250px;
}
#promos{
text-align: center;
display: table-cell;
width: 300px;
padding: 2%;
}
#promotions{
margin-left: 8%;
}
.promo-text {
color: white;
display: inline-flex, !important;
}
@media(min-width:768px) {
.navbar-fixed-top {
padding: 25px 0;
-webkit-transition: padding .3s;
-moz-transition: padding .3s;
transition: padding .3s;
}
.navbar-brand{
margin-top: -20px;
}
.navbar-fixed-top .navbar-brand {
font-size: 2em;
-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;
}
.navbar-fixed-top.navbar-shrink {
padding: 10px 0;
}
.navbar-fixed-top.navbar-shrink .navbar-brand {
font-size: 1.5em;
}
#promotions{
margin-left: 4%;
}
}
#stats{
height: 60%;
width: 80%;
}
#buynow{
background-color: mediumpurple;
padding: 30px;
border-radius: 10px;
margin-left: 50%;
font-size: 1em;
}
#buynow2{
background-color: mediumpurple;
padding: 30px;
float: right;
border-radius: 10px;
margin: -20%;
font-size: 2em;
}
#satellite{
background-image: url(../img/satellite.png);
background-size: 60px, 60px;
width: 60px;
height: 60px;
margin-top: -50px;
margin-left: 45%;
}
#galaxy{
background-image: url(../img/galaxy.png);
background-size: 60px, 60px;
width: 60px;
height: 60px;
margin-top:-50px;
margin-left: 45%;
}
#interstellar{
background-image: url(../img/interstellar.png);
background-size: 60px, 60px;
width: 60px;
height: 60px;
margin-top:-50px;
margin-left: 45%;
}
#termsframe{
width: 100%;
height: 800px;
}
#fineprint{
padding: 20px;
color: gray;
bottom:0px;
}
#mc_embed_signup{
float: left;
width: 800px;
margin-left: 10%;
color: !important, darkgray;
padding-left: 50px;
}
#mce-EMAIL{
width: 30%;
left: !important, 20px;
color: mediumpurple;
}
#emailformtitle{
<<<<<<< Updated upstream
=======
color: #9e9e9e;
>>>>>>> Stashed changes
}
#mc-embedded-subscribe{
background-color:!important, #2c3e50;
left: 70px;
}
@media(max-width:560px){
#mc_embed_signup{
margin-left: -9%;
}
}
.navbar {
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 700;
}
.navbar a:focus {
outline: 0;
}
.navbar .navbar-nav {
letter-spacing: 2px;
margin-top: -10px;
margin-right: -80px;
}
.navbar .navbar-nav li a:focus {
outline: 0;
}
.navbar-default,
.navbar-inverse {
border: 0;
}
section {
padding: 100px 0;
}
section h2 {
margin: 0;
font-size: 3em;
}
section.success {
color: #fff;
background: #18bc9c;
}
section.success a,
section.success a:hover,
section.success a:focus,
section.success a:active,
section.success a.active {
outline: 0;
color: #2c3e50;
}
@media(max-width:767px) {
section {
padding: 75px 0;
}
section.first {
padding-top: 75px;
}
.img-responsive {
margin-left: 1%;
}
#buynow{
margin-left: 35%;
}
}
#portfolio .portfolio-item {
right: 0;
margin: 0 0 15px;
}
#portfolio .portfolio-item .portfolio-link {
display: block;
position: relative;
margin: 0 auto;
max-width: 400px;
}
#portfolio .portfolio-item .portfolio-link .caption {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
background: rgba(24,188,156,.9);
-webkit-transition: all ease .5s;
-moz-transition: all ease .5s;
transition: all ease .5s;
}
#portfolio .portfolio-item .portfolio-link .caption:hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content {
position: absolute;
top: 50%;
width: 100%;
height: 20px;
margin-top: -12px;
text-align: center;
font-size: 20px;
color: #fff;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
margin: 0;
}
#portfolio * {
z-index: 2;
}
#star{
float:left;
}
@media(min-width:767px) {
#portfolio .portfolio-item {
margin: 0 0 30px;
}
}
#integrate1{
background-image: url(../img/angular.gif);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate2{
background-image: url(../img/facebook.jpeg);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate3{
background-image: url(../img/mailchimp.jpeg);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate4{
background-image: url(../img/google.jpg);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate5{
background-image: url(../img/paypal.png);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate6{
background-image: url(../img/firebase.jpg);
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
#integrate1,#integrate2,#integrate3,#integrate4,#integrate5,#integrate6{
margin: 10px;
}
@media(max-width:760px){
#integrate1,#integrate2,#integrate3,#integrate4,#integrate5,#integrate6, #more{
display: none;
}
}
#more{
margin-top: 230px;
}
.btn-outline {
margin-top: 15px;
border: solid 2px #fff;
font-size: 20px;
color: #fff;
background: 0 0;
transition: all .3s ease-in-out;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
border: solid 2px #fff;
color: #18bc9c;
background: #fff;
}
.floating-label-form-group {
position: relative;
margin-bottom: 0;
padding-bottom: .5em;
border-bottom: 1px solid #eee;
}
.floating-label-form-group input,
.floating-label-form-group textarea {
z-index: 1;
position: relative;
padding-right: 0;
padding-left: 0;
border: 0;
border-radius: 0;
font-size: 1.5em;
background: 0 0;
box-shadow: none!important;
resize: none;
}
.floating-label-form-group label {
display: block;
z-index: 0;
position: relative;
top: 2em;
margin: 0;
font-size: .85em;
line-height: 1.764705882em;
vertical-align: middle;
vertical-align: baseline;
opacity: 0;
-webkit-transition: top .3s ease,opacity .3s ease;
-moz-transition: top .3s ease,opacity .3s ease;
-ms-transition: top .3s ease,opacity .3s ease;
transition: top .3s ease,opacity .3s ease;
}
.floating-label-form-group::not(:first-child) {
padding-left: 14px;
border-left: 1px solid #eee;
}
.floating-label-form-group-with-value label {
top: 0;
opacity: 1;
}
.floating-label-form-group-with-focus label {
color: #18bc9c;
}
form .row:first-child .floating-label-form-group {
border-top: 1px solid #eee;
}
footer {
color: #fff;
width: 200%;
margin-left: -300px;
}
footer h3 {
margin-bottom: 30px;
}
footer .footer-above {
padding-top: 50px;
background-color: #2c3e50;
}
footer .footer-col {
margin-bottom: 50px;
}
footer .footer-below {
padding: 25px 0;
background-color: #233140;
}
#socialicons{
background-image: url(/img/Facebook-128.png);
background-size: 40px;
width:40px;
height: 40px;
float: right;
}
.btn-social {
display: inline-block;
width: 50px;
height: 50px;
border: 2px solid #fff;
border-radius: 100%;
text-align: center;
font-size: 20px;
line-height: 45px;
}
.btn:focus,
.btn:active,
.btn.active {
outline: 0;
}
.scroll-top {
z-index: 1049;
position: fixed;
right: 2%;
bottom: 2%;
width: 50px;
height: 50px;
}
.scroll-top .btn {
width: 50px;
height: 50px;
border-radius: 100%;
font-size: 20px;
line-height: 28px;
opacity: 30%;
}
.scroll-top .btn:focus {
outline: 0;
}
.portfolio-modal .modal-content {
padding: 100px 0;
min-height: 100%;
border: 0;
border-radius: 0;
text-align: center;
background-clip: border-box;
-webkit-box-shadow: none;
box-shadow: none;
}
.portfolio-modal .modal-content h2 {
margin: 0;
font-size: 3em;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content .item-details {
margin: 30px 0;
}
.portfolio-modal .close-modal {
position: absolute;
top: 25px;
right: 25px;
width: 75px;
height: 75px;
background-color: transparent;
cursor: pointer;
}
.portfolio-modal .close-modal:hover {
opacity: .3;
}
.portfolio-modal .close-modal .lr {
z-index: 1051;
width: 1px;
height: 75px;
margin-left: 35px;
background-color: #2c3e50;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.portfolio-modal .close-modal .lr .rl {
z-index: 1052;
width: 1px;
height: 75px;
background-color: #2c3e50;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.portfolio-modal .modal-backdrop {
display: none;
opacity: 0;
}
@media(max-width:660px){
.main-image{
margin-left: -30px;
}
#promos {
display: table-row;
}
#seed, #nerd, #test{
margin-left: 15%;
}
p{
margin: 15px;
}
#socialicons{
width: 40px;
height: 40px;
background-size: 40px,40px;
background-repeat: no-repeat;
margin-top: 20px;
float: left;
}
#email{
font-size: 16px;
}
#mc_embed_signup{
<<<<<<< Updated upstream
width: 400px;
padding-left: 5px;
}
footer{
margin-left: -90px;
}
}
/*Media Query for small & medium mobile */
@media(max-width:375px){
.main-image{
width: 300px;
height: 200px;
=======
float: left;
}
}
@media(max-width:461px){
#buynow{
margin-left: 22%;
}
}
@media(min-width:1440px){
#promos{
left:200px ;
padding: 110px;
}
.main-image{
left: 30px;
>>>>>>> Stashed changes
}
footer{
margin-left: -400px;
}
} | 0.333069 | 0.103612 |
html, body, form, fieldset, table, tr, td, img {
font-size:10pt; font-family:Arial,sans-serif;color:black;line-height:20px;
}
body {
background-color: white;
margin-top: 50px;
margin-bottom: 50px;
margin-right: 100px;
margin-left: 100px;
font-size:10pt; font-family:Arial,sans-serif;color:black;line-height:20px;
}
.hidden>div {
display:none;
}
.visible>div {
display:block;
}
#canvas {
border: 1px solid black;
}
p { font-size:10pt; font-family:Arial,sans-serif;color:black;line-height:20px;}
p.text { font-size:10pt; font-family:Arial,sans-serif; color:black;line-height:20px; }
p.code { font-size:10pt; font-family:monospace; color:blue;line-height:20px; }
p.warn { font-size:10pt; font-family:monospace; color:red;line-height:20px; }
p.top { font-size:10pt; font-family:Arial,sans-serif; color:black; text-decoration:underline }
p.big { font-size:14pt; font-family:Arial,sans-serif; color:black }
p.tiny { font-size:7pt; font-family:Arial,sans-serif; color:black }
fieldset {
padding: 1em;
font:Arial,sans-serif;color:black;
}
label {
float:left;
width:25%;
margin-right:0.5em;
padding-top:0.2em;
text-align:right;
font-weight:bold;
}
h1 { font-size: 14pt; font-family:Arial,sans-serif; text-align: left; color:black }
h2 { font-size: 14pt; font-family:Arial,sans-serif; text-align: left; color:black }
h3 { font-size: 12pt; font-family:Arial,sans-serif; text-align: left; color:black }
h3 { font-size: 12pt; font-family:Arial,sans-serif; text-align: left; color:black }
h4 { font-size: 10pt; font-family:Arial,sans-serif; text-align: left; color:black }
h4 { font-size: 10pt; font-family:Arial,sans-serif; text-align: left; color:black }
ul {
font-family: Arial, sans-serif;
font-size: 10pt;
line-height:20px;
color: black;
text-decoration: none;
}
img.myborder {
border:1px solid #C0C0C0;
}
a:link {
font-size:10pt;
line-height:20px;
font-family:Arial,sans-serif;
color:#800000;
text-decoration:none
}
a {
font-size:10pt;
line-height:20px;
font-family:Arial,sans-serif;
color:#800000;
text-decoration:none
}
p tinylink {font-size:7pt; color:#800000; text-decoration:none }
a:visited { font-size:10pt; color:#800000; text-decoration:none;line-height:20px; }
a:hover { font-size:10pt; color:#FF0000; text-decoration:none;line-height:20px; }
a:active { font-size:10pt; color:#FF0000; text-decoration:none;line-height:20px; }
a:focus { font-size:10pt;color:#800000; text-decoration:none;line-height:20px; }
td.caption { text-align: left; font-size:8pt; font-family:Arial,sans-serif; color:black; }
table.image { margin-left: 4em; }
table,th, td
{
font-size:10pt; font-family:Arial,sans-serif; color:black;line-height:20px;
padding:10px;
}
table.visborder td, th
{
border: 1px solid #C0C0C0;
}
Span.CENTERTEXT
{
text-align: center;
}
div.CENTERTEXT
{
text-align: center;
}
#table_mapping_keyboard table, th, td {
padding:0; margin:0;
}
#table_mapping_keyboard {
border-collapse: collapse;
} | processingjs/imgtypewriter/itw.css | html, body, form, fieldset, table, tr, td, img {
font-size:10pt; font-family:Arial,sans-serif;color:black;line-height:20px;
}
body {
background-color: white;
margin-top: 50px;
margin-bottom: 50px;
margin-right: 100px;
margin-left: 100px;
font-size:10pt; font-family:Arial,sans-serif;color:black;line-height:20px;
}
.hidden>div {
display:none;
}
.visible>div {
display:block;
}
#canvas {
border: 1px solid black;
}
p { font-size:10pt; font-family:Arial,sans-serif;color:black;line-height:20px;}
p.text { font-size:10pt; font-family:Arial,sans-serif; color:black;line-height:20px; }
p.code { font-size:10pt; font-family:monospace; color:blue;line-height:20px; }
p.warn { font-size:10pt; font-family:monospace; color:red;line-height:20px; }
p.top { font-size:10pt; font-family:Arial,sans-serif; color:black; text-decoration:underline }
p.big { font-size:14pt; font-family:Arial,sans-serif; color:black }
p.tiny { font-size:7pt; font-family:Arial,sans-serif; color:black }
fieldset {
padding: 1em;
font:Arial,sans-serif;color:black;
}
label {
float:left;
width:25%;
margin-right:0.5em;
padding-top:0.2em;
text-align:right;
font-weight:bold;
}
h1 { font-size: 14pt; font-family:Arial,sans-serif; text-align: left; color:black }
h2 { font-size: 14pt; font-family:Arial,sans-serif; text-align: left; color:black }
h3 { font-size: 12pt; font-family:Arial,sans-serif; text-align: left; color:black }
h3 { font-size: 12pt; font-family:Arial,sans-serif; text-align: left; color:black }
h4 { font-size: 10pt; font-family:Arial,sans-serif; text-align: left; color:black }
h4 { font-size: 10pt; font-family:Arial,sans-serif; text-align: left; color:black }
ul {
font-family: Arial, sans-serif;
font-size: 10pt;
line-height:20px;
color: black;
text-decoration: none;
}
img.myborder {
border:1px solid #C0C0C0;
}
a:link {
font-size:10pt;
line-height:20px;
font-family:Arial,sans-serif;
color:#800000;
text-decoration:none
}
a {
font-size:10pt;
line-height:20px;
font-family:Arial,sans-serif;
color:#800000;
text-decoration:none
}
p tinylink {font-size:7pt; color:#800000; text-decoration:none }
a:visited { font-size:10pt; color:#800000; text-decoration:none;line-height:20px; }
a:hover { font-size:10pt; color:#FF0000; text-decoration:none;line-height:20px; }
a:active { font-size:10pt; color:#FF0000; text-decoration:none;line-height:20px; }
a:focus { font-size:10pt;color:#800000; text-decoration:none;line-height:20px; }
td.caption { text-align: left; font-size:8pt; font-family:Arial,sans-serif; color:black; }
table.image { margin-left: 4em; }
table,th, td
{
font-size:10pt; font-family:Arial,sans-serif; color:black;line-height:20px;
padding:10px;
}
table.visborder td, th
{
border: 1px solid #C0C0C0;
}
Span.CENTERTEXT
{
text-align: center;
}
div.CENTERTEXT
{
text-align: center;
}
#table_mapping_keyboard table, th, td {
padding:0; margin:0;
}
#table_mapping_keyboard {
border-collapse: collapse;
} | 0.356447 | 0.064007 |
body {
font-family: 'Open Sans', sans-serif;
}
#wrapper {
width: 100%;
background:#202020;
}
#page-wrapper {
padding: 15px 15px;
min-height: 600px;
background:#F3F3F3;
}
#page-inner {
width:100%;
margin:5px 20px 10px 0px;
background-color:#e2e1e1!important;
padding:20px;
min-height:850px;
}
.text-center {
text-align:center;
}
.no-boder {
border:1px solid #f3f3f3;
}
h2 {
color: #f00;
}
h4 {
padding-top:100px;
}
.square-btn-adjust {
border: 0px solid transparent;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
/*==============================================
DASHBOARD STYLES
=============================================*/
.bg-color-green {
background-color: #00CE6F;
color: #fff;
}
.bg-color-blue {
background-color: #12aaf8;
color: #fff;
}
.bg-color-red {
background-color: #DB0630;
color: #fff;
}
.bg-color-brown {
background-color: #e47b0b;
color: #fff;
}
.icon-box-right {
display: block;
float: right;
margin: 0 15px 10px 0;
width: 70px;
height: 70px;
line-height: 75px;
vertical-align: middle;
text-align: center;
font-size: 40px;
}
.main-temp-back {
background: #8702A8;
color: #FFFFFF;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.main-temp-back .text-temp {
font-size: 40px;
}
.back-dash {
padding:20px;
font-size:20px;
font-weight:500;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
background-color:#2EA7EB;
color:#fff;
}
.back-dash p {
padding-top:16px;
font-size:13px;
color:#fff;
line-height:25px;
text-align:justify;
}
.back-footer-green {
background-color: #009B50;
border-top: 0px solid #fff;
}
.back-footer-red {
background-color: #AF0000;
border-top: 0px solid #fff;
}
.back-footer-blue {
background-color: #0083c7;
border-top: 0px solid #fff;
}
.back-footer-brown {
background-color: #B94A00;
border-top: 0px solid #fff;
}
/*==============================================
MEDIA QUERIES
=============================================*/
@media(min-width:768px) {
#page-wrapper{
padding: 15px 30px;
min-height: 1200px;
}
.navbar-side {
z-index: 1;
position: absolute;
width: 260px;
}
.navbar {
border-radius: 0px;
}
} | assets/main/css/custom.css | body {
font-family: 'Open Sans', sans-serif;
}
#wrapper {
width: 100%;
background:#202020;
}
#page-wrapper {
padding: 15px 15px;
min-height: 600px;
background:#F3F3F3;
}
#page-inner {
width:100%;
margin:5px 20px 10px 0px;
background-color:#e2e1e1!important;
padding:20px;
min-height:850px;
}
.text-center {
text-align:center;
}
.no-boder {
border:1px solid #f3f3f3;
}
h2 {
color: #f00;
}
h4 {
padding-top:100px;
}
.square-btn-adjust {
border: 0px solid transparent;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
/*==============================================
DASHBOARD STYLES
=============================================*/
.bg-color-green {
background-color: #00CE6F;
color: #fff;
}
.bg-color-blue {
background-color: #12aaf8;
color: #fff;
}
.bg-color-red {
background-color: #DB0630;
color: #fff;
}
.bg-color-brown {
background-color: #e47b0b;
color: #fff;
}
.icon-box-right {
display: block;
float: right;
margin: 0 15px 10px 0;
width: 70px;
height: 70px;
line-height: 75px;
vertical-align: middle;
text-align: center;
font-size: 40px;
}
.main-temp-back {
background: #8702A8;
color: #FFFFFF;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.main-temp-back .text-temp {
font-size: 40px;
}
.back-dash {
padding:20px;
font-size:20px;
font-weight:500;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
background-color:#2EA7EB;
color:#fff;
}
.back-dash p {
padding-top:16px;
font-size:13px;
color:#fff;
line-height:25px;
text-align:justify;
}
.back-footer-green {
background-color: #009B50;
border-top: 0px solid #fff;
}
.back-footer-red {
background-color: #AF0000;
border-top: 0px solid #fff;
}
.back-footer-blue {
background-color: #0083c7;
border-top: 0px solid #fff;
}
.back-footer-brown {
background-color: #B94A00;
border-top: 0px solid #fff;
}
/*==============================================
MEDIA QUERIES
=============================================*/
@media(min-width:768px) {
#page-wrapper{
padding: 15px 30px;
min-height: 1200px;
}
.navbar-side {
z-index: 1;
position: absolute;
width: 260px;
}
.navbar {
border-radius: 0px;
}
} | 0.424531 | 0.101812 |
Created on : 30/12/2020, 18:31:36
Author : Jamilly
*/
#dashboard-page {
display: flex;
min-height: 100vh;
}
#dashboard-page main {
flex: 1;
}
.sidebar {
position: fixed;
height: 100%;
padding: 32px 24px;
background: linear-gradient(329.54deg, #15B6D6 0%, #15D6D6 100%);
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.sidebar img {
width: 48px;
}
.sidebar footer button, .menu button {
width: 48px;
height: 48px;
border: 0;
background: #12AFCB;
border-radius: 16px;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
transition: background-color 0.2s;
}
.sidebar footer button:hover {
background: #17D6EB;
}
.top{
margin-left: 200px;
margin-right: 150px;
margin-top: 50px;
border-bottom: 1px solid #D3E2E5;
padding-bottom: 15px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.top h1{
color: #4D6F80;
font-size: 25px;
}
.top p{
color: #8FA7B2;
font-size: 14px;
padding-top: 14px;
}
.listing{
margin-left: 180px;
margin-top: 40px;
margin-right: 100px;
}
.orphanage-block{
width: 440px;
height: 250px;
border-radius: 20px;
border: 1px solid #D3E2E5;
background: #ffffff;
display: inline-block;
margin-left: 20px;
margin-top:20px;
color: #4D6F80;
}
.orphanage-info{
padding-left: 10px;
padding-right: 10px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.orphanage-info p{
padding-top:16px;
}
.edit-button1, .edit-button2{
font-size:16px;
color:#15B6D6;
margin-top: 10px;
border: 0;
border-radius: 14px;
background: #EBF2F5;
transition: background-color 0.2s;
cursor: pointer;
}
.edit-button1{
padding: 11px 12px;
}
.edit-button2{
padding: 11px 14px;
}
.edit-button1:hover, .edit-button2:hover{
background: #dae1e4;
}
.map img{
border-radius: 20px;
} | web/styles/dashboard.css | Created on : 30/12/2020, 18:31:36
Author : Jamilly
*/
#dashboard-page {
display: flex;
min-height: 100vh;
}
#dashboard-page main {
flex: 1;
}
.sidebar {
position: fixed;
height: 100%;
padding: 32px 24px;
background: linear-gradient(329.54deg, #15B6D6 0%, #15D6D6 100%);
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.sidebar img {
width: 48px;
}
.sidebar footer button, .menu button {
width: 48px;
height: 48px;
border: 0;
background: #12AFCB;
border-radius: 16px;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
transition: background-color 0.2s;
}
.sidebar footer button:hover {
background: #17D6EB;
}
.top{
margin-left: 200px;
margin-right: 150px;
margin-top: 50px;
border-bottom: 1px solid #D3E2E5;
padding-bottom: 15px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.top h1{
color: #4D6F80;
font-size: 25px;
}
.top p{
color: #8FA7B2;
font-size: 14px;
padding-top: 14px;
}
.listing{
margin-left: 180px;
margin-top: 40px;
margin-right: 100px;
}
.orphanage-block{
width: 440px;
height: 250px;
border-radius: 20px;
border: 1px solid #D3E2E5;
background: #ffffff;
display: inline-block;
margin-left: 20px;
margin-top:20px;
color: #4D6F80;
}
.orphanage-info{
padding-left: 10px;
padding-right: 10px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.orphanage-info p{
padding-top:16px;
}
.edit-button1, .edit-button2{
font-size:16px;
color:#15B6D6;
margin-top: 10px;
border: 0;
border-radius: 14px;
background: #EBF2F5;
transition: background-color 0.2s;
cursor: pointer;
}
.edit-button1{
padding: 11px 12px;
}
.edit-button2{
padding: 11px 14px;
}
.edit-button1:hover, .edit-button2:hover{
background: #dae1e4;
}
.map img{
border-radius: 20px;
} | 0.351756 | 0.185633 |
margin-bottom: 0;
background: #eff2f5;
color:black;
border: 0ch;
opacity: 1;
font-family: inherit;
}
.estilo{
background-repeat: no-repeat;
background-image: url(https://lh3.googleusercontent.com/8unpJUuDaA38ulJj2hJs3m-2VRZT_83Dl8J_fXCs75c1HsUiyOAj_puy73fFFAJ3JlZrqClLLZeSCdEVzM3d_W0gTvJ7xrBf3HCa4uC8RuCO7-6KfoMjqxngn_CXi7yyjlTs5JJJRRKrOMpaxiucQkqZuhCAT4OKL8p8lq0w-2s6l-YfuREWWXIalDRx034tcTBtgweQxUvaYMEvicDloSni1RmlxsUGKCEHniyYcsSzd5WR4h5HWVNDSMYhBmIcs028HtsIdtfVxBdGfTjXgD0RXdRhJDM0fntqnxkz1uZy8_UCoW9qGAVXo8vXsqdILIpVNVa_rF-6Myhmd9J3EGGOdV4Ps2swTIWi8nMW3uNnT1exWggatzDMhLjL2H--AYcqEsxLBwMvYAeHfHif4kKG2z0ugCmGuuLVDX4szXN3OEstf_Xkg93GcOW4ehXJ5Y3c_l7jBIdijD2pbKxxqdQRCAXYZ5UHpTV72AmxHYVDxpXWz5VKPUllIo3xmshmwxdhjtkdYoFOMCJc_6ptsbg-i_DzcNRT3gB4fXJuuFVEjVlIEUnCqPy19ekCnDCRAOim1l5J8LK_vX_5KNErj7tl9tEAndtiT9iaQUv43XBoTupE2tdw3SF1lsOToKc=w1270-h423-no);
background-size: cover;
background-position: center top;
width: 100%;
height: 100%;
opacity: 1;
visibility: inherit;
z-index: 20;
}
*/
#padre img{
width: 100%;
}
span.opcion-menu{
font-family: inherit;
}
#uno font{
font-family: sans-serif;
}
#padre{
position:relative;
width: 100%;
}
#uno {
position: absolute;
background:rgba(0, 0,0,0.5);
top: 76.5%;
height: 84px;
left: 0;
right: 0;
margin: 0 auto;
width: 100%;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
text-align:initial;
font-size: 0.8em;
}
#unos {
position: absolute;
background:rgba(45, 40, 40, 0.5);
top: 0px;
height: 70px;
left: 200;
right: 0;
margin: 0 auto;
width: 100%;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
text-align:center;
font-size: 170%;
}
.dos {
position: absolute;
background:transparent;
top: 50%;
padding: 5px;
/*height: 100px;*/
left: 0;
right: 0;
margin: 0 auto;
width: 85%;
color: #fff;
/*font-family:themillon;
font-family: ;*/
text-align:initial;
font-size: 140%;
text-align: center;
}
#tres {
width: 100%;
height: 120px;
border: 3px solid #fff;
background: white;
margin-left: 0%;
margin-right: 0%;
padding: 0;
}
#cuatro {
width: 100%;
height: 120px;
border: 3px solid #fff;
background: white;
margin-left: 0%;
margin-right: 0%;
padding: 0;
}
#uno:hover{
background: rgba(182,51,39 ,.9);
opacity: 0.70;
}
.titulo{
float: left;
width: 70%;
}
div.titulo{
line-height: 32px;
margin-right: 0px;
margin-left: 0px;
}
#uno-paquetes {
position: absolute;
background: rgba(0, 0,0,0.5);
top: 74.5%;
height: 84px;
left: 0;
right: 0;
margin: 0 auto;
width: 100%;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
text-align: initial;
font-size: 0.8em;
}
div.titulo-paquetes {
line-height: 21px;
margin-right: 0px;
margin-left: 0px;
}
.service_icon {
background: #b63327;
font-size: 22px;
line-height: 60px;
-moz-border-radius: 50px;
border-radius: 50px;
width: 60px;
height: 60px;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
margin: auto;
float: none;
text-align: center;
overflow: hidden;
float: none;
position: absolute;
left: 50%;
top: -30px;
margin: 0 0 0 -30px;
border-radius: 100px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
font-size: 20px;
line-height: 24px;
}
.image{
background: #ffffff;
}
.fa-star:before {
color: white;
}
.carousel-caption{
z-index: 1;
white-space: nowrap;
visibility: inherit;
transition: none 0s ease 0s;
text-align: inherit;
line-height: 35px;
top:65%;
border-width: 0px;
margin: 0px;
margin-left: -70px;
padding: 0px;
letter-spacing: 0px;
font-weight: 700;
font-size: 3em;
min-height: 0px;
min-width: 0px;
max-height: none;
max-width: none;
opacity: 1;
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform-origin: 50% 50% 0px;
}
#uno.titulo.ruta{
font-size: 20px;
line-height: 32px;
margin: 0%;
}
div.cuadro{
position: absolute;
left: 0;
bottom: 0;
padding: 12px 15px 7px 15px;
background: #000;
background-color: rgba(0, 0, 0, 0.9);
color: #000000;
width: 100%;
height: auto;
font-size: 12px;
box-sizing: border-box;
text-align: left;
}
.lugar1{
color: #fff;
margin-block-start: 2%;
font-size: 16px;
font-weight: 900;
text-align: left;
letter-spacing: -1px;
text-transform: uppercase;
font-size:italic;
}
.row.cuatro{
display: table;
width: 100%;
height: 130px;
border: 3px solid #fff;
background: white;
}
.page_caption_desc{
font-weight: 700;
letter-spacing: 2px;
font-family: 'Raleway' !important;
font-size: 12px !important;
margin: auto;
margin-bottom: 40px;
width: 100%;
padding: 0;
float: left;
color: #bc453a;
text-transform: uppercase;
font-style: inherit;
text-align:center;
}
.row.cuatro h1{
font-weight: 700;
font-size: 30px;
line-height: 30px;
text-transform: uppercase;
margin-bottom: 5px;
letter-spacing: 0;
margin-top: 3%;
}
.titulo h2{
font-weight: bold;
/*margin-top: 6%;*/
align-items: center;
}
.ruta{
margin-right: 0;
font-weight: 900;
font-size: 13px;
font-style:inherit;
font-family:inherit;
}
#uno.titulo.h3{
font-size:10px;
}
.precio{
float: right;
width: 30%;
text-align: right;
}
.diast{
color: #fff;
font-weight: 900;
text-transform: capitalize;
font-size: 20px;
font-family: inherit;
}
.preciot{
color: #fff;
font-weight: 900;
font-size: 9.5px;
float: right;
font-family: inherit;
}
#paquetes{
color:white;
text-align:inherit;
}
#footer{
background-color: black;
}
.h1{
text-align: center;
top:100px;
}
div, h1{
text-align: center;
}
header
{
position: fixed;
z-index: 1;
width: 100%;
padding: 0%;
}
*{
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
span{
color: #fff !important;
letter-spacing: 0px;
font-size: 12px;
text-transform: uppercase;
font-weight: 750;
}
.black{
color:#000000 !important;
font-size:17px;
}
div.cuatro h3{
font-size: 20px;
line-height: 32px;
}
.testimonial_slider_wrapper {
font-size: 18px;
/*font-style: italic;*/
width: 90%;
margin: auto;
text-align: center;
}
.testimonial_slider_meta_position{
display: inline;
margin-left: 5px;
margin-right: 5px;
}
.testimonial_slider_meta_position, .testimonial_slider_meta_company {
display: inline;
margin-left: 5px;
margin-right: 5px;
}
.flexslider .slides > li {
text-align: center;
}
.testimonial_slider_meta {
margin-top: 10px;
font-size: 13px;
font-weight: bold;
font-style: normal;
font-family: 'Raleway', 'Helvetica Neue', Arial,Verdana,sans-serif;
color: #b63327;
}
.flexslider {
margin: 0;
position: relative;
zoom: 1;
margin-top: 0;
}
.flex-control-nav {
width: 100%;
text-align: center;
margin: 0 !important;
margin-top: 20px !important;
}
.flex-control-nav{
padding: 0;
list-style: none;
}
.flex-control-paging li a.flex-active {
background: #999;
cursor: default;
}
.flex-control-paging li a.flex-active {
background: #999;
cursor: default;
}
h2{
font-family:Arial, Helvetica, sans-serif;
color:#fff;
font-size:"200px";
;
}
.imgfont{
background-image: url(../imagenes/imgfont.jpg);
width:100%;
padding: 35px;
}
span.opcion-menu:hover{
cursor: pointer;
border-bottom: 2px solid;
padding-bottom: 1px;
}
.opcion-menu2:hover{
cursor: pointer;
}
.slides {
margin-top: 0 !important;
margin-left: 0 !important;
padding: 0;
list-style: none;
}
ul{
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
nav{
position: absolute;
z-index: 1;
padding: 0;
width: 100%;
height: 68px;
background-color:#0001;
line-height: 68px;
}
nav ul{
float: right;
margin-right: 300px;
}
nav ul li{
list-style-type: none;
display: inline-block;
}
nav ul li a {
text-decoration: none;
color: #fff;
padding: 30px;
}
.footer_bar {
background: #ffffff;
width: 100%;
min-height: 50px;
margin: auto;
padding: 0 0 5px 0;
float: left;
}
#footer {
width: 100%;
margin: auto;
padding-bottom: 55px;
color: #999;
word-wrap: break-word;
background: #000000;
margin-bottom: 0;
padding-top: 40px;
float: left;
}
#footer ul.sidebar_widget {
width: 960px;
list-style: none;
margin: 0;
margin: auto;
}
#footer .sidebar_widget.four > li {
width: 20%;
float: left;
margin-right: 5%;
}
#footer ul.sidebar_widget li .textwidget {
padding-top: 0;
}
/*
figure img{
width: 100%;
height: 1000;
margin-bottom: 25px;
background-repeat: no-repeat;
}
*/
/*---------------------------ESTILOS DEL FOOTER-----------------------------------*/
/*footer*/
.col_white_amrc { color:#FFF;}
footer { width:100%; background-color:#263238; min-height:250px; padding:10px 0px 25px 0px ;}
.pt2 { padding-top:40px ; margin-bottom:20px ;}
footer p { font-size:13px; color:#CCC; padding-bottom:0px; margin-bottom:8px;}
.mb10 { padding-bottom:15px ;}
.footer_ul_amrc { margin:0px ; list-style-type:none ; font-size:14px; padding:0px 0px 10px 0px ; }
.footer_ul_amrc li {padding:0px 0px 5px 0px;}
.footer_ul_amrc li a{ color:#CCC;}
.footer_ul_amrc li a:hover{ color:#fff; text-decoration:none;}
.fleft { float:left;}
.padding-right { padding-right:10px; }
.footer_ul2_amrc {margin:0px; list-style-type:none; padding:0px;}
.footer_ul2_amrc li p { display:table; }
.footer_ul2_amrc li a:hover { text-decoration:none;}
.footer_ul2_amrc li i { margin-top:5px;}
.bottom_border { border-bottom:1px solid #323f45; padding-bottom:20px;}
.foote_bottom_ul_amrc {
list-style-type:none;
padding:0px;
display:table;
margin-top: 10px;
margin-right: auto;
margin-bottom: 10px;
margin-left: auto;
}
.foote_bottom_ul_amrc li { display:inline;}
.foote_bottom_ul_amrc li a { color:#999; margin:0 12px;}
.social_footer_ul { display:table; margin:15px auto 0 auto; list-style-type:none; }
.social_footer_ul li { padding-left:20px; padding-top:10px; float:left; }
.social_footer_ul li a { color:#CCC; border:1px solid #CCC; padding:8px;border-radius:50%;}
.social_footer_ul li i { width:20px; height:20px; text-align:center;}
/*Estilos Personalizados*/
.container-contacto{
position: fixed;
top: 51px;
z-index: 25;
float: right;
width: 300px;
margin-left: 61%;
background: #ffffff;
padding: 30px;
padding-top: 12px;
padding-bottom: 12px;
}
.title-contact{
text-align: left;
font-family: sans-serif;
font-weight: bold;
}
.redondeo{
webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
moz-box-shadow: 0px 0px 7px #000000;
-webkit-box-shadow: 0px 0px 7px #000000;
box-shadow: 0px 0px 7px #000000;
}
.salir-modal-contact{
background: #72689a;
padding: 3px;
float: right;
margin-bottom: 8px;
cursor: pointer;
}
.hidden-class{
display: none !important;
}
.btn-editar{
position: absolute;
border-radius: 50%;
color: white;
background: #00a5cb; /* Old browsers */
background: -moz-linear-gradient(left, #0190b0 50%, #00a5cb 50%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #0190b0 50%,#00a5cb 50%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to left, #0190b0 50%,#00a5cb 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0190b0', endColorstr='#00a5cb',GradientType=0 ); /* IE6-9 */
z-index: 20;
font-size: 50px;
border: none;
}
.btn-editar:hover{
color: white;
font-size: 53px;
}
.modal-header{
background-color: #e88b5c;
}
.text-left{
text-align: left !important;
}
.info-paquete span{
color: #000000;
}
.center-text-paquete{
text-align: justify;
width: 60%;
margin: auto;
} | public/css/style.css |
margin-bottom: 0;
background: #eff2f5;
color:black;
border: 0ch;
opacity: 1;
font-family: inherit;
}
.estilo{
background-repeat: no-repeat;
background-image: url(https://lh3.googleusercontent.com/8unpJUuDaA38ulJj2hJs3m-2VRZT_83Dl8J_fXCs75c1HsUiyOAj_puy73fFFAJ3JlZrqClLLZeSCdEVzM3d_W0gTvJ7xrBf3HCa4uC8RuCO7-6KfoMjqxngn_CXi7yyjlTs5JJJRRKrOMpaxiucQkqZuhCAT4OKL8p8lq0w-2s6l-YfuREWWXIalDRx034tcTBtgweQxUvaYMEvicDloSni1RmlxsUGKCEHniyYcsSzd5WR4h5HWVNDSMYhBmIcs028HtsIdtfVxBdGfTjXgD0RXdRhJDM0fntqnxkz1uZy8_UCoW9qGAVXo8vXsqdILIpVNVa_rF-6Myhmd9J3EGGOdV4Ps2swTIWi8nMW3uNnT1exWggatzDMhLjL2H--AYcqEsxLBwMvYAeHfHif4kKG2z0ugCmGuuLVDX4szXN3OEstf_Xkg93GcOW4ehXJ5Y3c_l7jBIdijD2pbKxxqdQRCAXYZ5UHpTV72AmxHYVDxpXWz5VKPUllIo3xmshmwxdhjtkdYoFOMCJc_6ptsbg-i_DzcNRT3gB4fXJuuFVEjVlIEUnCqPy19ekCnDCRAOim1l5J8LK_vX_5KNErj7tl9tEAndtiT9iaQUv43XBoTupE2tdw3SF1lsOToKc=w1270-h423-no);
background-size: cover;
background-position: center top;
width: 100%;
height: 100%;
opacity: 1;
visibility: inherit;
z-index: 20;
}
*/
#padre img{
width: 100%;
}
span.opcion-menu{
font-family: inherit;
}
#uno font{
font-family: sans-serif;
}
#padre{
position:relative;
width: 100%;
}
#uno {
position: absolute;
background:rgba(0, 0,0,0.5);
top: 76.5%;
height: 84px;
left: 0;
right: 0;
margin: 0 auto;
width: 100%;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
text-align:initial;
font-size: 0.8em;
}
#unos {
position: absolute;
background:rgba(45, 40, 40, 0.5);
top: 0px;
height: 70px;
left: 200;
right: 0;
margin: 0 auto;
width: 100%;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
text-align:center;
font-size: 170%;
}
.dos {
position: absolute;
background:transparent;
top: 50%;
padding: 5px;
/*height: 100px;*/
left: 0;
right: 0;
margin: 0 auto;
width: 85%;
color: #fff;
/*font-family:themillon;
font-family: ;*/
text-align:initial;
font-size: 140%;
text-align: center;
}
#tres {
width: 100%;
height: 120px;
border: 3px solid #fff;
background: white;
margin-left: 0%;
margin-right: 0%;
padding: 0;
}
#cuatro {
width: 100%;
height: 120px;
border: 3px solid #fff;
background: white;
margin-left: 0%;
margin-right: 0%;
padding: 0;
}
#uno:hover{
background: rgba(182,51,39 ,.9);
opacity: 0.70;
}
.titulo{
float: left;
width: 70%;
}
div.titulo{
line-height: 32px;
margin-right: 0px;
margin-left: 0px;
}
#uno-paquetes {
position: absolute;
background: rgba(0, 0,0,0.5);
top: 74.5%;
height: 84px;
left: 0;
right: 0;
margin: 0 auto;
width: 100%;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
text-align: initial;
font-size: 0.8em;
}
div.titulo-paquetes {
line-height: 21px;
margin-right: 0px;
margin-left: 0px;
}
.service_icon {
background: #b63327;
font-size: 22px;
line-height: 60px;
-moz-border-radius: 50px;
border-radius: 50px;
width: 60px;
height: 60px;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
margin: auto;
float: none;
text-align: center;
overflow: hidden;
float: none;
position: absolute;
left: 50%;
top: -30px;
margin: 0 0 0 -30px;
border-radius: 100px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
font-size: 20px;
line-height: 24px;
}
.image{
background: #ffffff;
}
.fa-star:before {
color: white;
}
.carousel-caption{
z-index: 1;
white-space: nowrap;
visibility: inherit;
transition: none 0s ease 0s;
text-align: inherit;
line-height: 35px;
top:65%;
border-width: 0px;
margin: 0px;
margin-left: -70px;
padding: 0px;
letter-spacing: 0px;
font-weight: 700;
font-size: 3em;
min-height: 0px;
min-width: 0px;
max-height: none;
max-width: none;
opacity: 1;
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
transform-origin: 50% 50% 0px;
}
#uno.titulo.ruta{
font-size: 20px;
line-height: 32px;
margin: 0%;
}
div.cuadro{
position: absolute;
left: 0;
bottom: 0;
padding: 12px 15px 7px 15px;
background: #000;
background-color: rgba(0, 0, 0, 0.9);
color: #000000;
width: 100%;
height: auto;
font-size: 12px;
box-sizing: border-box;
text-align: left;
}
.lugar1{
color: #fff;
margin-block-start: 2%;
font-size: 16px;
font-weight: 900;
text-align: left;
letter-spacing: -1px;
text-transform: uppercase;
font-size:italic;
}
.row.cuatro{
display: table;
width: 100%;
height: 130px;
border: 3px solid #fff;
background: white;
}
.page_caption_desc{
font-weight: 700;
letter-spacing: 2px;
font-family: 'Raleway' !important;
font-size: 12px !important;
margin: auto;
margin-bottom: 40px;
width: 100%;
padding: 0;
float: left;
color: #bc453a;
text-transform: uppercase;
font-style: inherit;
text-align:center;
}
.row.cuatro h1{
font-weight: 700;
font-size: 30px;
line-height: 30px;
text-transform: uppercase;
margin-bottom: 5px;
letter-spacing: 0;
margin-top: 3%;
}
.titulo h2{
font-weight: bold;
/*margin-top: 6%;*/
align-items: center;
}
.ruta{
margin-right: 0;
font-weight: 900;
font-size: 13px;
font-style:inherit;
font-family:inherit;
}
#uno.titulo.h3{
font-size:10px;
}
.precio{
float: right;
width: 30%;
text-align: right;
}
.diast{
color: #fff;
font-weight: 900;
text-transform: capitalize;
font-size: 20px;
font-family: inherit;
}
.preciot{
color: #fff;
font-weight: 900;
font-size: 9.5px;
float: right;
font-family: inherit;
}
#paquetes{
color:white;
text-align:inherit;
}
#footer{
background-color: black;
}
.h1{
text-align: center;
top:100px;
}
div, h1{
text-align: center;
}
header
{
position: fixed;
z-index: 1;
width: 100%;
padding: 0%;
}
*{
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
span{
color: #fff !important;
letter-spacing: 0px;
font-size: 12px;
text-transform: uppercase;
font-weight: 750;
}
.black{
color:#000000 !important;
font-size:17px;
}
div.cuatro h3{
font-size: 20px;
line-height: 32px;
}
.testimonial_slider_wrapper {
font-size: 18px;
/*font-style: italic;*/
width: 90%;
margin: auto;
text-align: center;
}
.testimonial_slider_meta_position{
display: inline;
margin-left: 5px;
margin-right: 5px;
}
.testimonial_slider_meta_position, .testimonial_slider_meta_company {
display: inline;
margin-left: 5px;
margin-right: 5px;
}
.flexslider .slides > li {
text-align: center;
}
.testimonial_slider_meta {
margin-top: 10px;
font-size: 13px;
font-weight: bold;
font-style: normal;
font-family: 'Raleway', 'Helvetica Neue', Arial,Verdana,sans-serif;
color: #b63327;
}
.flexslider {
margin: 0;
position: relative;
zoom: 1;
margin-top: 0;
}
.flex-control-nav {
width: 100%;
text-align: center;
margin: 0 !important;
margin-top: 20px !important;
}
.flex-control-nav{
padding: 0;
list-style: none;
}
.flex-control-paging li a.flex-active {
background: #999;
cursor: default;
}
.flex-control-paging li a.flex-active {
background: #999;
cursor: default;
}
h2{
font-family:Arial, Helvetica, sans-serif;
color:#fff;
font-size:"200px";
;
}
.imgfont{
background-image: url(../imagenes/imgfont.jpg);
width:100%;
padding: 35px;
}
span.opcion-menu:hover{
cursor: pointer;
border-bottom: 2px solid;
padding-bottom: 1px;
}
.opcion-menu2:hover{
cursor: pointer;
}
.slides {
margin-top: 0 !important;
margin-left: 0 !important;
padding: 0;
list-style: none;
}
ul{
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
nav{
position: absolute;
z-index: 1;
padding: 0;
width: 100%;
height: 68px;
background-color:#0001;
line-height: 68px;
}
nav ul{
float: right;
margin-right: 300px;
}
nav ul li{
list-style-type: none;
display: inline-block;
}
nav ul li a {
text-decoration: none;
color: #fff;
padding: 30px;
}
.footer_bar {
background: #ffffff;
width: 100%;
min-height: 50px;
margin: auto;
padding: 0 0 5px 0;
float: left;
}
#footer {
width: 100%;
margin: auto;
padding-bottom: 55px;
color: #999;
word-wrap: break-word;
background: #000000;
margin-bottom: 0;
padding-top: 40px;
float: left;
}
#footer ul.sidebar_widget {
width: 960px;
list-style: none;
margin: 0;
margin: auto;
}
#footer .sidebar_widget.four > li {
width: 20%;
float: left;
margin-right: 5%;
}
#footer ul.sidebar_widget li .textwidget {
padding-top: 0;
}
/*
figure img{
width: 100%;
height: 1000;
margin-bottom: 25px;
background-repeat: no-repeat;
}
*/
/*---------------------------ESTILOS DEL FOOTER-----------------------------------*/
/*footer*/
.col_white_amrc { color:#FFF;}
footer { width:100%; background-color:#263238; min-height:250px; padding:10px 0px 25px 0px ;}
.pt2 { padding-top:40px ; margin-bottom:20px ;}
footer p { font-size:13px; color:#CCC; padding-bottom:0px; margin-bottom:8px;}
.mb10 { padding-bottom:15px ;}
.footer_ul_amrc { margin:0px ; list-style-type:none ; font-size:14px; padding:0px 0px 10px 0px ; }
.footer_ul_amrc li {padding:0px 0px 5px 0px;}
.footer_ul_amrc li a{ color:#CCC;}
.footer_ul_amrc li a:hover{ color:#fff; text-decoration:none;}
.fleft { float:left;}
.padding-right { padding-right:10px; }
.footer_ul2_amrc {margin:0px; list-style-type:none; padding:0px;}
.footer_ul2_amrc li p { display:table; }
.footer_ul2_amrc li a:hover { text-decoration:none;}
.footer_ul2_amrc li i { margin-top:5px;}
.bottom_border { border-bottom:1px solid #323f45; padding-bottom:20px;}
.foote_bottom_ul_amrc {
list-style-type:none;
padding:0px;
display:table;
margin-top: 10px;
margin-right: auto;
margin-bottom: 10px;
margin-left: auto;
}
.foote_bottom_ul_amrc li { display:inline;}
.foote_bottom_ul_amrc li a { color:#999; margin:0 12px;}
.social_footer_ul { display:table; margin:15px auto 0 auto; list-style-type:none; }
.social_footer_ul li { padding-left:20px; padding-top:10px; float:left; }
.social_footer_ul li a { color:#CCC; border:1px solid #CCC; padding:8px;border-radius:50%;}
.social_footer_ul li i { width:20px; height:20px; text-align:center;}
/*Estilos Personalizados*/
.container-contacto{
position: fixed;
top: 51px;
z-index: 25;
float: right;
width: 300px;
margin-left: 61%;
background: #ffffff;
padding: 30px;
padding-top: 12px;
padding-bottom: 12px;
}
.title-contact{
text-align: left;
font-family: sans-serif;
font-weight: bold;
}
.redondeo{
webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
moz-box-shadow: 0px 0px 7px #000000;
-webkit-box-shadow: 0px 0px 7px #000000;
box-shadow: 0px 0px 7px #000000;
}
.salir-modal-contact{
background: #72689a;
padding: 3px;
float: right;
margin-bottom: 8px;
cursor: pointer;
}
.hidden-class{
display: none !important;
}
.btn-editar{
position: absolute;
border-radius: 50%;
color: white;
background: #00a5cb; /* Old browsers */
background: -moz-linear-gradient(left, #0190b0 50%, #00a5cb 50%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #0190b0 50%,#00a5cb 50%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to left, #0190b0 50%,#00a5cb 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0190b0', endColorstr='#00a5cb',GradientType=0 ); /* IE6-9 */
z-index: 20;
font-size: 50px;
border: none;
}
.btn-editar:hover{
color: white;
font-size: 53px;
}
.modal-header{
background-color: #e88b5c;
}
.text-left{
text-align: left !important;
}
.info-paquete span{
color: #000000;
}
.center-text-paquete{
text-align: justify;
width: 60%;
margin: auto;
} | 0.243912 | 0.097305 |
.dhtmlxcolorpicker {
BACKGROUND: #e6e5e5; COLOR: #000
}
.dhtmlxcolorpicker .cs_ContentTable {
MARGIN: 8px
}
.dhtmlxcolorpicker .cs_SelectorDiv {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 256px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 256px
}
.dhtmlxcolorpicker .cs_SelectorDiv_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 210px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 120px
}
.dhtmlxcolorpicker .cs_SelectorVer {
OVERFLOW: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 100%; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker .cs_SelectorHor {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker .cs_LumSelect {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 13px; BORDER-LEFT: gray 1px solid; WIDTH: 15px; MARGIN-RIGHT: 10px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker .cs_LumSelect_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 6px; BORDER-LEFT: gray 1px solid; WIDTH: 12px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker .cs_LumSelectLine {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker .cs_LumSelectArrow {
BACKGROUND: url(imgs/slide.gif) no-repeat; OVERFLOW: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 9px
}
.dhtmlxcolorpicker .cs_LumElement {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 4px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker .cs_ColorArea {
FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ColorArea_Mini {
FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ColorArea TD {
HEIGHT: 25px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_ColorArea_Mini TD {
HEIGHT: 18px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_EndColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 72px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 69px
}
.dhtmlxcolorpicker .cs_EndColor_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 100px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 30px
}
.dhtmlxcolorpicker .cs_Hex {
FONT-SIZE: 12px; WIDTH: 55px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_Hex_Mini {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 45px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker .cs_Hex_MiniX {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 45px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker .cs_Hex_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker .cs_Input {
FONT-SIZE: 12px; WIDTH: 26px; FONT-FAMILY: Arial; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_Input_Mini {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 22px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_Input_MiniX {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 22px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_Input_MiniX {
HEIGHT: 11px
}
.commonInputStyle {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_ButtonOk {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_ButtonOk_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_ButtonCancel {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_ButtonCancel_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Mini {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Mini_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Hover {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Mini {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Mini_Hover {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_CustomColors {
MARGIN-TOP: 8px; WIDTH: 76px; HEIGHT: 38px
}
.dhtmlxcolorpicker .cs_CustomColors_Mini {
MARGIN-TOP: 6px; WIDTH: 100%; HEIGHT: 18px
}
.dhtmlxcolorpicker .cs_CustomColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 14px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 14px
}
.dhtmlxcolorpicker .cs_CustomColor_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 18px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 18px
}
.dhtmlxcolorpicker .cs_ButtonOk {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ButtonOk_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ButtonCancel {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ButtonCancel_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_colorInput {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker .cs_colorBox {
BORDER-RIGHT: black 1px solid; BORDER-TOP: black 1px solid; LEFT: 0px; BORDER-LEFT: black 1px solid; BORDER-BOTTOM: black 1px solid; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker .cs_ButtonsPanel {
BACKGROUND: url(imgs/cp_buttons_panel.gif); HEIGHT: 37px
}
.dhtmlxcolorpicker_dhx_black {
BACKGROUND: #000
}
.dhtmlxcolorpicker_dhx_black .cs_ContentTable {
MARGIN: 8px
}
.dhtmlxcolorpicker_dhx_black .cs_SelectorDiv {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 256px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 256px
}
.dhtmlxcolorpicker_dhx_black .cs_SelectorDiv_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 210px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 120px
}
.dhtmlxcolorpicker_dhx_black .cs_SelectorVer {
OVERFLOW: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 100%; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_black .cs_SelectorHor {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_black .cs_LumSelect {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 13px; BORDER-LEFT: gray 1px solid; WIDTH: 15px; MARGIN-RIGHT: 10px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_black .cs_LumSelect_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 6px; BORDER-LEFT: gray 1px solid; WIDTH: 12px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_black .cs_LumSelectLine {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_black .cs_LumSelectArrow {
BACKGROUND: url(img/__dhxCP_skin_Black/slide.gif) no-repeat; OVERFLOW: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 9px
}
.dhtmlxcolorpicker_dhx_black .cs_LumElement {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 4px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_black .cs_ColorArea {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #ffffff; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ColorArea_Mini {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #ffffff; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ColorArea TD {
HEIGHT: 25px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_ColorArea_Mini TD {
HEIGHT: 18px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_EndColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 72px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 69px
}
.dhtmlxcolorpicker_dhx_black .cs_EndColor_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 100px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 30px
}
.dhtmlxcolorpicker_dhx_black .cs_Hex {
FONT-SIZE: 12px; WIDTH: 55px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_Hex_Mini {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 45px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_black .cs_Hex_MiniX {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 45px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_black .cs_Hex_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker_dhx_black .cs_Input {
FONT-SIZE: 12px; WIDTH: 26px; FONT-FAMILY: Arial; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_Input_Mini {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 22px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_Input_MiniX {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 22px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_Input_MiniX {
HEIGHT: 11px
}
.commonInputStyle {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonOk {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonOk_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonCancel {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonCancel_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Mini {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Mini_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Hover {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Mini {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Mini_Hover {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColors {
MARGIN-TOP: 8px; WIDTH: 76px; HEIGHT: 38px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColors_Mini {
MARGIN-TOP: 6px; WIDTH: 100%; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 14px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 14px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColor_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 18px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonOk {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonOk_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonCancel {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonCancel_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_colorInput {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_black .cs_colorBox {
BORDER-RIGHT: black 1px solid; BORDER-TOP: black 1px solid; LEFT: 0px; BORDER-LEFT: black 1px solid; BORDER-BOTTOM: black 1px solid; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonsPanel {
BACKGROUND: url(imgs/__dhxCP_skin_Black/cp_buttons_panel.png); HEIGHT: 37px
}
.dhtmlxcolorpicker_dhx_blue {
BACKGROUND: #d3e2e5
}
.dhtmlxcolorpicker_dhx_blue .cs_ContentTable {
MARGIN: 8px
}
.dhtmlxcolorpicker_dhx_blue .cs_SelectorDiv {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 256px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 256px
}
.dhtmlxcolorpicker_dhx_blue .cs_SelectorDiv_Mini {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; OVERFLOW: hidden; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 210px; BORDER-BOTTOM: #adc6cb 1px solid; POSITION: relative; HEIGHT: 120px
}
.dhtmlxcolorpicker_dhx_blue .cs_SelectorVer {
OVERFLOW: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 100%; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_blue .cs_SelectorHor {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_blue .cs_LumSelect {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 13px; BORDER-LEFT: gray 1px solid; WIDTH: 15px; MARGIN-RIGHT: 10px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_blue .cs_LumSelect_Mini {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; MARGIN-LEFT: 6px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 12px; BORDER-BOTTOM: #adc6cb 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_blue .cs_LumSelectLine {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_blue .cs_LumSelectArrow {
BACKGROUND: url(imgs/__dhxCP_skin_Blue/slide.gif) no-repeat; OVERFLOW: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 9px
}
.dhtmlxcolorpicker_dhx_blue .cs_LumElement {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 4px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_blue .cs_ColorArea {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #02609e; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ColorArea_Mini {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #02609e; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ColorArea TD {
HEIGHT: 25px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_ColorArea_Mini TD {
HEIGHT: 18px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_EndColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 72px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 69px
}
.dhtmlxcolorpicker_dhx_blue .cs_EndColor_Mini {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 100px; BORDER-BOTTOM: #adc6cb 1px solid; HEIGHT: 30px
}
.dhtmlxcolorpicker_dhx_blue .cs_Hex {
FONT-SIZE: 12px; WIDTH: 55px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_Hex_Mini {
BORDER-RIGHT: #adc6cb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #adc6cb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 45px; PADDING-TOP: 0px; BORDER-BOTTOM: #adc6cb 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_blue .cs_Hex_MiniX {
BORDER-RIGHT: #adc6cb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #adc6cb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 45px; PADDING-TOP: 0px; BORDER-BOTTOM: #adc6cb 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_blue .cs_Hex_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker_dhx_blue .cs_Input {
FONT-SIZE: 12px; WIDTH: 26px; FONT-FAMILY: Arial; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_Input_Mini {
BORDER-RIGHT: #adc6cb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #adc6cb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 22px; PADDING-TOP: 0px; BORDER-BOTTOM: #adc6cb 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_Input_MiniX {
BORDER-RIGHT: #adc6cb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #adc6cb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 22px; PADDING-TOP: 0px; BORDER-BOTTOM: #adc6cb 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_Input_MiniX {
HEIGHT: 11px
}
.commonInputStyle {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonOk {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonOk_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonCancel {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonCancel_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Mini {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Mini_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Hover {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Mini {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Mini_Hover {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColors {
MARGIN-TOP: 8px; WIDTH: 76px; HEIGHT: 38px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColors_Mini {
MARGIN-TOP: 6px; WIDTH: 100%; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColor {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 14px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: #adc6cb 1px solid; HEIGHT: 14px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColor_Mini {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 18px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: #adc6cb 1px solid; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonOk {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonOk_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonCancel {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonCancel_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_colorInput {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_blue .cs_colorBox {
BORDER-RIGHT: blue 1px solid; BORDER-TOP: blue 1px solid; LEFT: 0px; BORDER-LEFT: blue 1px solid; BORDER-BOTTOM: blue 1px solid; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonsPanel {
BACKGROUND: url(imgs/__dhxCP_skin_Blue/cp_buttons_panel.png); HEIGHT: 37px
}
.dhtmlxcolorpicker_dhx_skyblue {
BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/bg_head.gif) #c3d4eb repeat-x
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ContentTable {
MARGIN: 20px 8px 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_SelectorDiv {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; OVERFLOW: hidden; BORDER-LEFT: #fff 1px solid; WIDTH: 256px; BORDER-BOTTOM: #fff 1px solid; POSITION: relative; HEIGHT: 256px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_SelectorDiv_Mini {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; OVERFLOW: hidden; BORDER-LEFT: #fff 1px solid; WIDTH: 210px; BORDER-BOTTOM: #fff 1px solid; POSITION: relative; HEIGHT: 120px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_SelectorVer {
OVERFLOW: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 100%; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_skyblue .cs_SelectorHor {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumSelect {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; MARGIN-LEFT: 13px; BORDER-LEFT: #fff 1px solid; WIDTH: 15px; MARGIN-RIGHT: 10px; BORDER-BOTTOM: #fff 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumSelect_Mini {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; MARGIN-LEFT: 6px; BORDER-LEFT: #fff 1px solid; WIDTH: 12px; BORDER-BOTTOM: #fff 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumSelectLine {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumSelectArrow {
BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/slide.gif) no-repeat; OVERFLOW: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 9px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumElement {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 4px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ColorArea {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #02609e; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ColorArea_Mini {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #02609e; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ColorArea TD {
HEIGHT: 25px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ColorArea_Mini TD {
HEIGHT: 18px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_EndColor {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; WIDTH: 72px; BORDER-BOTTOM: #fff 1px solid; HEIGHT: 69px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_EndColor_Mini {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; WIDTH: 100px; BORDER-BOTTOM: #fff 1px solid; HEIGHT: 30px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Hex {
FONT-SIZE: 12px; WIDTH: 55px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Hex_Mini {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #fff 1px solid; WIDTH: 45px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Hex_MiniX {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #fff 1px solid; WIDTH: 45px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Hex_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Input {
FONT-SIZE: 12px; WIDTH: 26px; FONT-FAMILY: Arial; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Input_Mini {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #fff 1px solid; WIDTH: 22px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Input_MiniX {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #fff 1px solid; WIDTH: 22px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Input_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColorAdd {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColorAdd_Mini {
BORDER-TOP-WIDTH: 0px; MARGIN-TOP: 6px; PADDING-LEFT: 20px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_add.gif); BORDER-BOTTOM-WIDTH: 0px; WIDTH: 100%; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColorAdd_Mini_Hover {
BORDER-TOP-WIDTH: 0px; MARGIN-TOP: 6px; PADDING-LEFT: 20px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_add.gif); BORDER-BOTTOM-WIDTH: 0px; WIDTH: 100%; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColorAdd_Mini_Hover {
BACKGROUND-POSITION: left bottom
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColors {
MARGIN-TOP: 8px; WIDTH: 76px; HEIGHT: 38px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColors_Mini {
MARGIN-TOP: 6px; WIDTH: 100%; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColor {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: #fff 1px solid; WIDTH: 14px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: #fff 1px solid; HEIGHT: 14px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColor_Mini {
BORDER-RIGHT: #a4bed4 1px solid; BORDER-TOP: #a4bed4 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: #a4bed4 1px solid; WIDTH: 18px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: #a4bed4 1px solid; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonOk {
BORDER-TOP-WIDTH: 0px; PADDING-LEFT: 17px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_select.gif); FLOAT: right; BORDER-BOTTOM-WIDTH: 0px; MARGIN: 3px 6px 0px 0px; WIDTH: 70px; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonOk_Hover {
BORDER-TOP-WIDTH: 0px; PADDING-LEFT: 17px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_select.gif); FLOAT: right; BORDER-BOTTOM-WIDTH: 0px; MARGIN: 3px 6px 0px 0px; WIDTH: 70px; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonOk_Hover {
BACKGROUND-POSITION: left bottom
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonCancel {
BORDER-TOP-WIDTH: 0px; PADDING-LEFT: 17px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_cancel.gif); FLOAT: right; BORDER-BOTTOM-WIDTH: 0px; MARGIN: 3px 7px 0px 0px; WIDTH: 72px; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonCancel_Hover {
BORDER-TOP-WIDTH: 0px; PADDING-LEFT: 17px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_cancel.gif); FLOAT: right; BORDER-BOTTOM-WIDTH: 0px; MARGIN: 3px 7px 0px 0px; WIDTH: 72px; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonCancel_Hover {
BACKGROUND-POSITION: left bottom
}
.dhtmlxcolorpicker_dhx_skyblue .cs_colorInput {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_blue .cs_colorBox {
BORDER-RIGHT: blue 1px solid; BORDER-TOP: blue 1px solid; LEFT: 0px; BORDER-LEFT: blue 1px solid; BORDER-BOTTOM: blue 1px solid; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonsPanel {
MARGIN-BOTTOM: 8px
} | src/web/console/shared/plugins/dhtmlx/dhtmlxcolorpicker/dhtmlxcolorpicker.css | .dhtmlxcolorpicker {
BACKGROUND: #e6e5e5; COLOR: #000
}
.dhtmlxcolorpicker .cs_ContentTable {
MARGIN: 8px
}
.dhtmlxcolorpicker .cs_SelectorDiv {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 256px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 256px
}
.dhtmlxcolorpicker .cs_SelectorDiv_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 210px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 120px
}
.dhtmlxcolorpicker .cs_SelectorVer {
OVERFLOW: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 100%; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker .cs_SelectorHor {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker .cs_LumSelect {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 13px; BORDER-LEFT: gray 1px solid; WIDTH: 15px; MARGIN-RIGHT: 10px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker .cs_LumSelect_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 6px; BORDER-LEFT: gray 1px solid; WIDTH: 12px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker .cs_LumSelectLine {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker .cs_LumSelectArrow {
BACKGROUND: url(imgs/slide.gif) no-repeat; OVERFLOW: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 9px
}
.dhtmlxcolorpicker .cs_LumElement {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 4px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker .cs_ColorArea {
FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ColorArea_Mini {
FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ColorArea TD {
HEIGHT: 25px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_ColorArea_Mini TD {
HEIGHT: 18px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_EndColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 72px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 69px
}
.dhtmlxcolorpicker .cs_EndColor_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 100px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 30px
}
.dhtmlxcolorpicker .cs_Hex {
FONT-SIZE: 12px; WIDTH: 55px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_Hex_Mini {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 45px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker .cs_Hex_MiniX {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 45px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker .cs_Hex_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker .cs_Input {
FONT-SIZE: 12px; WIDTH: 26px; FONT-FAMILY: Arial; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_Input_Mini {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 22px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_Input_MiniX {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 22px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker .cs_Input_MiniX {
HEIGHT: 11px
}
.commonInputStyle {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_ButtonOk {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_ButtonOk_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_ButtonCancel {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_ButtonCancel_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Mini {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Mini_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker .cs_CustomColorAdd {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Hover {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Mini {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_CustomColorAdd_Mini_Hover {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_CustomColors {
MARGIN-TOP: 8px; WIDTH: 76px; HEIGHT: 38px
}
.dhtmlxcolorpicker .cs_CustomColors_Mini {
MARGIN-TOP: 6px; WIDTH: 100%; HEIGHT: 18px
}
.dhtmlxcolorpicker .cs_CustomColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 14px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 14px
}
.dhtmlxcolorpicker .cs_CustomColor_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 18px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 18px
}
.dhtmlxcolorpicker .cs_ButtonOk {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ButtonOk_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ButtonCancel {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_ButtonCancel_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker .cs_colorInput {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker .cs_colorBox {
BORDER-RIGHT: black 1px solid; BORDER-TOP: black 1px solid; LEFT: 0px; BORDER-LEFT: black 1px solid; BORDER-BOTTOM: black 1px solid; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker .cs_ButtonsPanel {
BACKGROUND: url(imgs/cp_buttons_panel.gif); HEIGHT: 37px
}
.dhtmlxcolorpicker_dhx_black {
BACKGROUND: #000
}
.dhtmlxcolorpicker_dhx_black .cs_ContentTable {
MARGIN: 8px
}
.dhtmlxcolorpicker_dhx_black .cs_SelectorDiv {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 256px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 256px
}
.dhtmlxcolorpicker_dhx_black .cs_SelectorDiv_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 210px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 120px
}
.dhtmlxcolorpicker_dhx_black .cs_SelectorVer {
OVERFLOW: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 100%; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_black .cs_SelectorHor {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_black .cs_LumSelect {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 13px; BORDER-LEFT: gray 1px solid; WIDTH: 15px; MARGIN-RIGHT: 10px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_black .cs_LumSelect_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 6px; BORDER-LEFT: gray 1px solid; WIDTH: 12px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_black .cs_LumSelectLine {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_black .cs_LumSelectArrow {
BACKGROUND: url(img/__dhxCP_skin_Black/slide.gif) no-repeat; OVERFLOW: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 9px
}
.dhtmlxcolorpicker_dhx_black .cs_LumElement {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 4px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_black .cs_ColorArea {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #ffffff; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ColorArea_Mini {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #ffffff; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ColorArea TD {
HEIGHT: 25px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_ColorArea_Mini TD {
HEIGHT: 18px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_EndColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 72px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 69px
}
.dhtmlxcolorpicker_dhx_black .cs_EndColor_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 100px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 30px
}
.dhtmlxcolorpicker_dhx_black .cs_Hex {
FONT-SIZE: 12px; WIDTH: 55px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_Hex_Mini {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 45px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_black .cs_Hex_MiniX {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 45px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_black .cs_Hex_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker_dhx_black .cs_Input {
FONT-SIZE: 12px; WIDTH: 26px; FONT-FAMILY: Arial; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_Input_Mini {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 22px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_Input_MiniX {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; WIDTH: 22px; PADDING-TOP: 0px; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_black .cs_Input_MiniX {
HEIGHT: 11px
}
.commonInputStyle {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonOk {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonOk_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonCancel {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonCancel_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Mini {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Mini_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Hover {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Mini {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColorAdd_Mini_Hover {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColors {
MARGIN-TOP: 8px; WIDTH: 76px; HEIGHT: 38px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColors_Mini {
MARGIN-TOP: 6px; WIDTH: 100%; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 14px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 14px
}
.dhtmlxcolorpicker_dhx_black .cs_CustomColor_Mini {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 18px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonOk {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonOk_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonCancel {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonCancel_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_black .cs_colorInput {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_black .cs_colorBox {
BORDER-RIGHT: black 1px solid; BORDER-TOP: black 1px solid; LEFT: 0px; BORDER-LEFT: black 1px solid; BORDER-BOTTOM: black 1px solid; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_black .cs_ButtonsPanel {
BACKGROUND: url(imgs/__dhxCP_skin_Black/cp_buttons_panel.png); HEIGHT: 37px
}
.dhtmlxcolorpicker_dhx_blue {
BACKGROUND: #d3e2e5
}
.dhtmlxcolorpicker_dhx_blue .cs_ContentTable {
MARGIN: 8px
}
.dhtmlxcolorpicker_dhx_blue .cs_SelectorDiv {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; OVERFLOW: hidden; BORDER-LEFT: gray 1px solid; WIDTH: 256px; BORDER-BOTTOM: gray 1px solid; POSITION: relative; HEIGHT: 256px
}
.dhtmlxcolorpicker_dhx_blue .cs_SelectorDiv_Mini {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; OVERFLOW: hidden; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 210px; BORDER-BOTTOM: #adc6cb 1px solid; POSITION: relative; HEIGHT: 120px
}
.dhtmlxcolorpicker_dhx_blue .cs_SelectorVer {
OVERFLOW: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 100%; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_blue .cs_SelectorHor {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_blue .cs_LumSelect {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; MARGIN-LEFT: 13px; BORDER-LEFT: gray 1px solid; WIDTH: 15px; MARGIN-RIGHT: 10px; BORDER-BOTTOM: gray 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_blue .cs_LumSelect_Mini {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; MARGIN-LEFT: 6px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 12px; BORDER-BOTTOM: #adc6cb 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_blue .cs_LumSelectLine {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_blue .cs_LumSelectArrow {
BACKGROUND: url(imgs/__dhxCP_skin_Blue/slide.gif) no-repeat; OVERFLOW: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 9px
}
.dhtmlxcolorpicker_dhx_blue .cs_LumElement {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 4px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_blue .cs_ColorArea {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #02609e; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ColorArea_Mini {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #02609e; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ColorArea TD {
HEIGHT: 25px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_ColorArea_Mini TD {
HEIGHT: 18px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_EndColor {
BORDER-RIGHT: gray 1px solid; BORDER-TOP: gray 1px solid; BORDER-LEFT: gray 1px solid; WIDTH: 72px; BORDER-BOTTOM: gray 1px solid; HEIGHT: 69px
}
.dhtmlxcolorpicker_dhx_blue .cs_EndColor_Mini {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 100px; BORDER-BOTTOM: #adc6cb 1px solid; HEIGHT: 30px
}
.dhtmlxcolorpicker_dhx_blue .cs_Hex {
FONT-SIZE: 12px; WIDTH: 55px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_Hex_Mini {
BORDER-RIGHT: #adc6cb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #adc6cb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 45px; PADDING-TOP: 0px; BORDER-BOTTOM: #adc6cb 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_blue .cs_Hex_MiniX {
BORDER-RIGHT: #adc6cb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #adc6cb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 45px; PADDING-TOP: 0px; BORDER-BOTTOM: #adc6cb 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_blue .cs_Hex_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker_dhx_blue .cs_Input {
FONT-SIZE: 12px; WIDTH: 26px; FONT-FAMILY: Arial; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_Input_Mini {
BORDER-RIGHT: #adc6cb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #adc6cb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 22px; PADDING-TOP: 0px; BORDER-BOTTOM: #adc6cb 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_Input_MiniX {
BORDER-RIGHT: #adc6cb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #adc6cb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 22px; PADDING-TOP: 0px; BORDER-BOTTOM: #adc6cb 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_blue .cs_Input_MiniX {
HEIGHT: 11px
}
.commonInputStyle {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonOk {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonOk_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonCancel {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonCancel_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Mini {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Mini_Hover {
BORDER-RIGHT: white 1px outset; BORDER-TOP: white 1px outset; BACKGROUND: #d4cfc9; BORDER-LEFT: white 1px outset; BORDER-BOTTOM: white 1px outset; HEIGHT: 22px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Hover {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Mini {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColorAdd_Mini_Hover {
MARGIN-TOP: 6px; FONT-SIZE: 12px; WIDTH: 100%; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColors {
MARGIN-TOP: 8px; WIDTH: 76px; HEIGHT: 38px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColors_Mini {
MARGIN-TOP: 6px; WIDTH: 100%; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColor {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 14px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: #adc6cb 1px solid; HEIGHT: 14px
}
.dhtmlxcolorpicker_dhx_blue .cs_CustomColor_Mini {
BORDER-RIGHT: #adc6cb 1px solid; BORDER-TOP: #adc6cb 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: #adc6cb 1px solid; WIDTH: 18px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: #adc6cb 1px solid; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonOk {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonOk_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 6px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonCancel {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonCancel_Hover {
MARGIN-TOP: 3px; FONT-SIZE: 12px; FLOAT: right; WIDTH: 70px; MARGIN-RIGHT: 7px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_blue .cs_colorInput {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_blue .cs_colorBox {
BORDER-RIGHT: blue 1px solid; BORDER-TOP: blue 1px solid; LEFT: 0px; BORDER-LEFT: blue 1px solid; BORDER-BOTTOM: blue 1px solid; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_blue .cs_ButtonsPanel {
BACKGROUND: url(imgs/__dhxCP_skin_Blue/cp_buttons_panel.png); HEIGHT: 37px
}
.dhtmlxcolorpicker_dhx_skyblue {
BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/bg_head.gif) #c3d4eb repeat-x
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ContentTable {
MARGIN: 20px 8px 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_SelectorDiv {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; OVERFLOW: hidden; BORDER-LEFT: #fff 1px solid; WIDTH: 256px; BORDER-BOTTOM: #fff 1px solid; POSITION: relative; HEIGHT: 256px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_SelectorDiv_Mini {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; OVERFLOW: hidden; BORDER-LEFT: #fff 1px solid; WIDTH: 210px; BORDER-BOTTOM: #fff 1px solid; POSITION: relative; HEIGHT: 120px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_SelectorVer {
OVERFLOW: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 100%; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_skyblue .cs_SelectorHor {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumSelect {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; MARGIN-LEFT: 13px; BORDER-LEFT: #fff 1px solid; WIDTH: 15px; MARGIN-RIGHT: 10px; BORDER-BOTTOM: #fff 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumSelect_Mini {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; MARGIN-LEFT: 6px; BORDER-LEFT: #fff 1px solid; WIDTH: 12px; BORDER-BOTTOM: #fff 1px solid; POSITION: relative
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumSelectLine {
OVERFLOW: hidden; WIDTH: 100%; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: white
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumSelectArrow {
BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/slide.gif) no-repeat; OVERFLOW: hidden; WIDTH: 13px; POSITION: absolute; HEIGHT: 9px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_LumElement {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 0px; BORDER-BOTTOM-WIDTH: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 4px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ColorArea {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #02609e; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ColorArea_Mini {
FONT-SIZE: 12px; WIDTH: 100%; COLOR: #02609e; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ColorArea TD {
HEIGHT: 25px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ColorArea_Mini TD {
HEIGHT: 18px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_EndColor {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; WIDTH: 72px; BORDER-BOTTOM: #fff 1px solid; HEIGHT: 69px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_EndColor_Mini {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; WIDTH: 100px; BORDER-BOTTOM: #fff 1px solid; HEIGHT: 30px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Hex {
FONT-SIZE: 12px; WIDTH: 55px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Hex_Mini {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #fff 1px solid; WIDTH: 45px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Hex_MiniX {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #fff 1px solid; WIDTH: 45px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Hex_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Input {
FONT-SIZE: 12px; WIDTH: 26px; FONT-FAMILY: Arial; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Input_Mini {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #fff 1px solid; WIDTH: 22px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Input_MiniX {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 0px; MARGIN: 0px; BORDER-LEFT: #fff 1px solid; WIDTH: 22px; PADDING-TOP: 0px; BORDER-BOTTOM: #fff 1px solid; FONT-FAMILY: Arial; HEIGHT: 15px; TEXT-ALIGN: right
}
.dhtmlxcolorpicker_dhx_skyblue .cs_Input_MiniX {
HEIGHT: 11px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColorAdd {
MARGIN-TOP: 8px; FONT-SIZE: 12px; WIDTH: 145px; FONT-FAMILY: Arial
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColorAdd_Mini {
BORDER-TOP-WIDTH: 0px; MARGIN-TOP: 6px; PADDING-LEFT: 20px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_add.gif); BORDER-BOTTOM-WIDTH: 0px; WIDTH: 100%; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColorAdd_Mini_Hover {
BORDER-TOP-WIDTH: 0px; MARGIN-TOP: 6px; PADDING-LEFT: 20px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_add.gif); BORDER-BOTTOM-WIDTH: 0px; WIDTH: 100%; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColorAdd_Mini_Hover {
BACKGROUND-POSITION: left bottom
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColors {
MARGIN-TOP: 8px; WIDTH: 76px; HEIGHT: 38px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColors_Mini {
MARGIN-TOP: 6px; WIDTH: 100%; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColor {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: #fff 1px solid; WIDTH: 14px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: #fff 1px solid; HEIGHT: 14px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_CustomColor_Mini {
BORDER-RIGHT: #a4bed4 1px solid; BORDER-TOP: #a4bed4 1px solid; FLOAT: left; MARGIN-BOTTOM: 3px; OVERFLOW: hidden; BORDER-LEFT: #a4bed4 1px solid; WIDTH: 18px; CURSOR: pointer; MARGIN-RIGHT: 3px; BORDER-BOTTOM: #a4bed4 1px solid; HEIGHT: 18px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonOk {
BORDER-TOP-WIDTH: 0px; PADDING-LEFT: 17px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_select.gif); FLOAT: right; BORDER-BOTTOM-WIDTH: 0px; MARGIN: 3px 6px 0px 0px; WIDTH: 70px; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonOk_Hover {
BORDER-TOP-WIDTH: 0px; PADDING-LEFT: 17px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_select.gif); FLOAT: right; BORDER-BOTTOM-WIDTH: 0px; MARGIN: 3px 6px 0px 0px; WIDTH: 70px; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonOk_Hover {
BACKGROUND-POSITION: left bottom
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonCancel {
BORDER-TOP-WIDTH: 0px; PADDING-LEFT: 17px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_cancel.gif); FLOAT: right; BORDER-BOTTOM-WIDTH: 0px; MARGIN: 3px 7px 0px 0px; WIDTH: 72px; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonCancel_Hover {
BORDER-TOP-WIDTH: 0px; PADDING-LEFT: 17px; BORDER-LEFT-WIDTH: 0px; FONT-SIZE: 11px; BACKGROUND: url(imgs/__dhxCP_skin_SkyBlue/but_cancel.gif); FLOAT: right; BORDER-BOTTOM-WIDTH: 0px; MARGIN: 3px 7px 0px 0px; WIDTH: 72px; FONT-FAMILY: Tahoma; HEIGHT: 21px; BORDER-RIGHT-WIDTH: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonCancel_Hover {
BACKGROUND-POSITION: left bottom
}
.dhtmlxcolorpicker_dhx_skyblue .cs_colorInput {
LEFT: 0px; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_blue .cs_colorBox {
BORDER-RIGHT: blue 1px solid; BORDER-TOP: blue 1px solid; LEFT: 0px; BORDER-LEFT: blue 1px solid; BORDER-BOTTOM: blue 1px solid; POSITION: absolute; TOP: 0px
}
.dhtmlxcolorpicker_dhx_skyblue .cs_ButtonsPanel {
MARGIN-BOTTOM: 8px
} | 0.447219 | 0.189634 |
body {
font-family: 'treasure', sans-serif;
font-size:13px;
/* background-color: black; */
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
@font-face {
font-family: 'pirate';
src: url('../../treasuremapdeadhand-yla3-webfont.woff2') format('woff2'),
url('../../treasuremapdeadhand-yla3-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'treasure';
src: url('../../booter.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
#textsize {
text-shadow: 0 0 20px black;
/* font-size: 1.38rem; */
font-size: 4vw;
width: 100%;
overflow: scroll;
}
#pirate {
width: 50vw;
max-width: 350px;
/* position: absolute; */
/* top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0 auto; */
}
h2 {
max-height: 70%;
max-width: 70%;
}
.box {
width: 40%;
margin: 0 auto;
background-clip: padding-box;
text-align: center;
}
.button {
font-size: 1em;
padding: 10px;
color: #fff;
border: 2px solid black;
text-decoration: none;
cursor: pointers;
transition: all 0.3s ease-out;
}
.button:hover {
background: white;
}
.overlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* this is the overlay that covers the whole screen */
background: rgba(104, 78, 22, 0.7);
transition: opacity 500ms;
visibility: hidden;
opacity: 0;
}
.overlay:target {
visibility: visible;
opacity: 1;
}
.popup {
margin: 0 auto;
/* padding: 20px; */
background: #fff;
border-radius: 5px;
width: 100vw;
height: 100vh;
position: relative;
background-color: transparent;
transition: all 5s ease-in-out;
}
.close {
color: white;
font-size: 60px;
}
.popup h2 {
margin-top: 0;
color: #333;
font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30x;
font-weight: bold;
text-decoration: none;
color: black;
}
.popup .close:hover {
color: #fff;
}
.popup .content {
max-height: 60%;
height: 50%;
overflow: auto;
}
@media screen and (max-width: 700px){
.box{
width: 70%;
}
.popup{
width: 70%;
}
}
/* @media screen and (max-height: 630px){
#textsize {
font-size: large;
}
} */ | public/stylesheets/departmentpage.css |
body {
font-family: 'treasure', sans-serif;
font-size:13px;
/* background-color: black; */
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
@font-face {
font-family: 'pirate';
src: url('../../treasuremapdeadhand-yla3-webfont.woff2') format('woff2'),
url('../../treasuremapdeadhand-yla3-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'treasure';
src: url('../../booter.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
#textsize {
text-shadow: 0 0 20px black;
/* font-size: 1.38rem; */
font-size: 4vw;
width: 100%;
overflow: scroll;
}
#pirate {
width: 50vw;
max-width: 350px;
/* position: absolute; */
/* top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0 auto; */
}
h2 {
max-height: 70%;
max-width: 70%;
}
.box {
width: 40%;
margin: 0 auto;
background-clip: padding-box;
text-align: center;
}
.button {
font-size: 1em;
padding: 10px;
color: #fff;
border: 2px solid black;
text-decoration: none;
cursor: pointers;
transition: all 0.3s ease-out;
}
.button:hover {
background: white;
}
.overlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* this is the overlay that covers the whole screen */
background: rgba(104, 78, 22, 0.7);
transition: opacity 500ms;
visibility: hidden;
opacity: 0;
}
.overlay:target {
visibility: visible;
opacity: 1;
}
.popup {
margin: 0 auto;
/* padding: 20px; */
background: #fff;
border-radius: 5px;
width: 100vw;
height: 100vh;
position: relative;
background-color: transparent;
transition: all 5s ease-in-out;
}
.close {
color: white;
font-size: 60px;
}
.popup h2 {
margin-top: 0;
color: #333;
font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30x;
font-weight: bold;
text-decoration: none;
color: black;
}
.popup .close:hover {
color: #fff;
}
.popup .content {
max-height: 60%;
height: 50%;
overflow: auto;
}
@media screen and (max-width: 700px){
.box{
width: 70%;
}
.popup{
width: 70%;
}
}
/* @media screen and (max-height: 630px){
#textsize {
font-size: large;
}
} */ | 0.437103 | 0.056262 |
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
table { border-collapse: collapse; border-spacing: 0; }
body { font-family: Arial, sans-serif; font-size: 12px; background: #e4e8eb url(/shared/themes/Element/images/bg.jpg) repeat-x; }
.BlankTemplate body { background-color: #fff; background-image: none; color: #000; }
a { text-decoration: none; color: #666; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-weight: bold; }
h1 { font-size: 26px; }
h2 { font-size: 20px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
ul { margin: 15px; }
p { padding: 5px 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 8px 0; padding: 0; }
input, select { vertical-align: middle; }
input[type=text], input[type=password], select, textarea { border: 1px solid #ccc; margin: 3px 0; padding: 2px; font-family: Verdana,Arial; font-size: 12px; }
#leftRibbon { position: absolute; left: -21px; top: 0; background: url(/shared/themes/Element/images/menuleft.png) no-repeat; width: 55px; height: 120px; }
#rightRibbon { position: absolute; right: -21px; top: 0; background: url(/shared/themes/Element/images/menuright.png) no-repeat; width: 55px; height: 120px; }
#bannerbg { width: 960px; height: 304px; background: url(/shared/themes/Element/images/bannerbg.png) no-repeat; }
#slidebox, #slidebox .content { width: 918px; }
#slidebox, #slidebox .container, #slidebox .content { height: 268px; }
.quotes { text-align: left; padding: 10px 20px; font-size: 14px; }
.quotes cite { display: block; color: #FF9C0D; padding-left: 20px; }
.LayoutBottom li, .LayoutBottom ul { list-style: none; margin: 0; }
.Hidden { display: none; }
.CarouselNextButtonImage, .CarouselPrevButtonImage { cursor: pointer; }
.AddressBookNameTextbox { width: 194px; }
.AddressBookCityTextbox { width: 152px; }
.AddressBookStateTextbox { width: 160px; }
.AddressBookZipCodeTextbox { width: 112px; }
.AddressBookNotes { font-family: Verdana; font-size: 10px; }
.ProductGroupItemPricing { white-space: nowrap; }
.ProductGroupItemQuantity { width: 40px; }
.ProductGroupItemDescription { margin: 0px 4px 0px 4px; }
.CustomPaymentMethodsAmountArea { float: right; }
.CustomPaymentMethodsAmountTextbox { width: 80px; }
.CustomPaymentMethodsFieldName { padding-left: 15px; width: 100px; text-align: right; }
.CustomPaymentMethodsChooseArea { padding-left: 35px; }
.CustomPaymentMethodsSeparator { height: 1px; color: #999999; }
.MicroStoreMoreInfoLink { font-size: 10px; }
.PaymentMethodsCC { font-size: 10px; }
.PaymentMethodsNewCardNum { width: 103px; }
.PaymentMethodsNewCardName { width: 100px; }
.PaymentMethodsChoosePaypalButton { padding-left: 35px; }
.PaymentMethodsCustomFieldName { padding-left: 35px; width: 200px; }
.PaymentMethodsChooseCustomButton { padding-left: 35px; }
.PaymentMethodsEcheckTextbox { width: 75px; }
.PersonalizationFileUpload { width: 250px; }
.ProductReviewTagSelectorRemoveTagArea { width: 15px; text-align: center; }
.ProductReviewTagSelectorRemoveTagImage { border: 0 none; }
.RelatedItemsContainer { padding: 10px; }
.RelatedItemsSeparator { color: #999999; height: 1px; }
.RelatedItemsProductPhotoArea { float: left; width: 14%; }
.RelatedItemsProductNameArea { float: left; width: 34%; }
.RelatedItemsPricingArea { float: left; width: 24%; }
.RelatedItemsAddToCartArea { float: left; width: 24%; text-align: right; }
.RelatedItemsQtyTextbox { width: 40px; }
.RelatedItemsMessageText { float: left; width: 24%; text-align: right; }
.RelatedItemsAddToCartButton { clear: both; text-align: right; }
.ShippingMethodCalendarPickerArea { float: left; width: 49%; }
.ErrorText {
background: url(/store/i/ld/error.png) no-repeat 5px 5px #FFBFBF;
border: 1px solid #999;
border-radius: 3px;
color: #7F0000;
display: block;
font-weight: bold;
line-height: 25px;
margin: 20px 0;
padding: 5px 30px 5px 65px;
box-shadow: 0px 0px 5px #999;
min-height: 45px;
}
.errorText { padding-top: 5px; border-bottom: 1px dashed #8F2323; }
input.BrowseByDropDownGoThemeButton, .CategoryFilterButton, input.MailingListGoThemeButton { border-radius: 5px; border: 1px solid #d3dee0; background: none; height: auto; width: auto; line-height: 15px; color: #000; font-size: 14px; padding: 5px 10px; }
.attentionText { background: #e5e5e5; border: 1px solid #ccc; border-radius: 10px; box-shadow: 0 0 5px #333; margin: 10px 0; padding: 10px; color: #000; }
.itemoriginalprice { text-decoration: line-through; }
.CustomFieldLabel { width: 118px; }
.CustomFieldInput { }
.EProductCredentials { font-weight:bold;}
.EProductCredentials span { font-weight:normal;padding-right:20px;}
.EProductNameContainer { display:inline; padding-right:20px;}
.EProductURLContainer { display:inline; }
.EProductItemContainer { text-align:left;}
/* [/Global] */
/* [Layout] */
.Layout, .LayoutTop, .LayoutMiddle, .LayoutLeftColumn, .LayoutContent, .LayoutRightColumn, .LayoutBottom { display: block; }
.Layout { width: 100%; margin: 30px auto 0; }
.LayoutTop { position: relative; z-index: 1; }
.LayoutTopMiddle { position: relative; }
.LayoutTopLeft { background: url(/shared/themes/Element/images/headerleft.png) no-repeat -17px 0px; height: 106px; margin-right: 439px; }
.LayoutTopRight { background: url(/shared/themes/Element/images/headerright.png) no-repeat top right; position: absolute; top: 0; right: 0; height: 106px; width: 439px; padding-top: 10px; }
.LayoutTopBottom { clear: both; height: 120px; position: relative; background: #fff; }
.LayoutTopBottom .inner { background: url(/shared/themes/Element/images/menumid.png) repeat-x; margin: 0 33px !important; width: auto !important; height: 120px; }
.LayoutLeftColumn { width: 240px; }
.LayoutRightColumn { width: 240px; }
.LeftAndRightColumn .LayoutContent { margin: 0 240px; }
.LeftColumn .LayoutContent { margin: 0 10px 0 240px; }
.RightColumn .LayoutContent { margin: 0 240px 0 10px; }
.DoubleLeft .LayoutContent { margin: 0 0 0 480px; }
.DoubleRight .LayoutContent { margin: 0 480px 0 0; }
.LayoutLeftColumnInner { padding: 0 5px 0 15px; }
.LayoutRightColumnInner { padding: 0 15px 0 5px; }
.LayoutContentInner { width: 100%; float: left; }
.LayoutBottom { color: #fff; position: relative; z-index: 2; clear: both; padding: 0px; margin-top: -500px; min-height: 350px; }
.LayoutBottom .fullwrap { background: url(/shared/themes/Element/images/footerbg.png) repeat-x; padding: 5px; min-height: 400px; position: relative; }
.DoubleLeft .LayoutLeftColumn { float: left; }
.DoubleLeft .LayoutRightColumn { float: left; }
.DoubleRight .LayoutLeftColumn { float: right; }
.DoubleRight .LayoutRightColumn { float: right; }
.LeftAndRightColumn .LayoutLeftColumn { float: left; }
.LeftAndRightColumn .LayoutRightColumn { float: right; }
.LeftColumn .LayoutLeftColumn { float: left; }
.RightColumn .LayoutRightColumn { float: right; }
.OneColumn .LayoutContent { padding: 0 20px; }
.OneColumn .LayoutContentInner { width: 100%; padding: 0; }
.LayoutContent { padding: 0 5px; }
.LayoutTopRight .Control { text-align: right; }
.LayoutMiddle { background: #ffffff; border-left: 1px solid #d4dada; border-right: 1px solid #d4dada; margin: 0 auto; padding-bottom: 500px; padding-top: 100px; position: relative; top: -100px; z-index: 0; }
.LayoutTop .inner { position: relative; }
.LayoutBottom .inner { }
.FooterTop { background: url(/Shared/Themes/Element/images/footergrad.png) repeat-x bottom; min-height: 100px; }
.pagewidth { width: 960px; margin: 0 auto; }
.FloatingSideBar { width: 273px; position: absolute; right: -273px; }
.FloatingSideBar .top { background: url(/shared/themes/Element/images/rightsidetop.png) no-repeat; height: 31px; }
.FloatingSideBar .middle { background: url(/shared/themes/Element/images/rightsidemid.png) repeat-y; text-align: center; padding: 0 10px 0 20px; }
.FloatingSideBar .bottom { background: url(/shared/themes/Element/images/rightsidebottom.png) no-repeat; height: 42px; }
.FooterLeft { float: left; width: 49%; }
.FooterRight { float: right; width: 49%; }
/* [/Layout] */
/* [Widgets] */
.Control { margin: 0 0 10px; padding: 5px; }
.ControlItem { vertical-align: top; }
.ControlHeader { padding: 5px 10px 5px 15px; background: #1B1D1A url(/shared/themes/Element/images/widgetheader.png) repeat-x; font-weight: bold; color: #ffffff; line-height: 25px; vertical-align: middle; font-size: 15px; border-radius: 5px; }
.HorizontalNav { margin: 10px 0; padding: 10px; text-align: center; }
.HorizontalNavSeperator { display: inline; }
.HorizontalNavItem a { padding: 19px 13px; line-height: 31px; color: #fff; }
.HorizontalNavItem a:hover { color: #000; text-decoration: none; }
.HorizontalNavItem { display: inline-block; *display:inline; zoom:1; }
.HorizontalNavItem a:hover, .HorizontalNavItem:hover > a, .HorizontalNavItemHover > a { }
.HorizontalNavItem > .SubMenu { margin-top: 0px; *margin-top: -18px; }
.HorizontalNavItem .SubMenu { position: absolute; left: -9999px; top: 100%; background: #353635; z-index: 100; }
.HorizontalNavItem:hover .SubMenu .SubMenu, .HorizontalNavItemHover .SubMenu .SubMenu { left: -9999px; }
.HorizontalNavItem .SubMenuItem a { display: block; min-width: 150px;padding:19px 13px; color: #fff; line-height: 15px; }
.HorizontalNavItem .SubMenuItem a:hover, .HorizontalNavItem .SubMenuItem:hover > a, .HorizontalNavItem .SubMenuItemHover > a { background: #111; color: #fff; }
.HorizontalNavItem:hover .SubMenu, .HorizontalNavItemHover .SubMenu { left: 0; }
.HorizontalNavItem .SubMenuItem, .HorizontalNav, .HorizontalNavItem { position: relative; z-index: 10; }
.HorizontalNavItem .SubMenuItem:hover .SubMenu, .HorizontalNavItem .SubMenuItemHover .SubMenu { left: 100% !important; top: 0; }
.FeaturedItemsRating .StarRatings { float: none; margin: 0 auto; }
.FeaturedItemsDetails { text-align: center; }
.FeaturedItemsItem { position: relative; text-align: center; margin: 20px auto; width: 225px; height: 200px; }
.FeaturedItemsItem a { }
div.FeaturedItemsThumbnail, div.FeaturedItemsThumbNail { border: 1px solid #D3DEE0; border-radius: 10px; height: 180px; margin: 12px; padding: 10px; }
.FeaturedItemsPriceTab { position: absolute; bottom: 0; left: 0; background: url(/shared/themes/Element/images/pricetab2.png) no-repeat; height: 64px; width: 224px; }
.FeaturedItemsName { position: absolute; top: 15px; left: 10px; width: 112px; height: 30px; overflow: hidden; text-align: left; }
.lblPriceLabel { display: none; }
.FeaturedItemsPrice { position: absolute; top: 25px; right: 5px; font-size: 20px; font-weight: bold; color: #fff; }
.FeaturedCats { margin: 0; padding: 0; list-style: none; }
.FeaturedCats li { margin: 3px 5px; width: 17%; height: 15px; overflow: hidden; float: left; padding: 5px; border-bottom: 1px solid #D3DEE0; }
.FeaturedCats li a { color: #333; }
.DealOfMonthThumbnail { padding: 10px; }
.DealOfMonthName a { color: #333; text-align: left; display: block; border-top: 1px solid #D3DEE0; padding: 10px 0 0; }
.DealOfMonthPrice { text-align: left; }
.DealOfMonthPrice { border-bottom: 1px solid #D3DEE0; padding: 10px 0; }
.DealOfMonthPrice .lblPriceLabel { color: #333; display: inline; }
.DealOfMonthPrice .lblPrice { color: #FF9C0D; font-size: 24px; font-weight: bold; }
.FloatingSideBar .Control { margin: 0; }
/* [/Widgets] */
/* [ProductDetails] */
.ProductDetails { margin: 0 0 0 365px; text-align: right; }
.ProductDetails .inner { float: left; width: 100%; }
.ProductDetailsCategoryTrail { display: block; margin-bottom: 15px; }
.ProductDetailsAdToCartArea { clear: both; }
.ProductDetailsReviewsSocial { border: 1px solid #D3DEE0; clear: both; border-left: none; border-right: none; padding-top: 5px; padding-bottom: 5px; margin-bottom: 10px; }
.ProductDetailsSocialBookmarks { margin: 10px 0; float: right; }
.ProductDetailsProductName { text-align: left; background: url(/shared/themes/Element/images/productname.png) repeat-x; line-height: 43px; padding: 0 0 0 10px; color: #000; font-size: 22px; border-radius: 8px; }
.ProductDetailsLeft { float: left; width: 345px; text-align: center; }
.ProductDetailsPhoto { width: 345px; border-radius: 8px; border: 1px solid #D3DEE0; }
.ProductDetailsPhoto img { max-width: 250px; max-height: 250px; }
.ProductDetailsPhotoArea table { width: 100%; margin: 10px 0 0 0; }
.ProductDetailsLowCost { float: left; }
div.ProductDetailsThumbPhoto { position: relative; height: 90px; margin: 10px; border: 1px solid #D3DEE0; border-radius: 8px; }
img.ProductDetailsThumbPhoto { max-width: 110px; max-height: 90px; }
.ProductDetailsManufacturerName { min-height: 40px; text-align: left; }
#imgMfgLogo { max-width: 150px; }
.ProductDetailsItemNrAvailability { float: left; text-align: left; padding: 10px 20px 10px 0; border-top: 1px solid #D3DEE0; }
div.ProductDetailsQuantity { float: right; }
.ProductDetailsQuantityTextBox { width: 40px; text-align: center; }
.ProductDetailsVariations select { float: right; clear: right; }
span.ProductDetailsVariations { float: right; clear: right; margin: 10px 0 2px; font-weight: bold; }
.ProductDetailsVariations table { float: right; clear: right; }
.ProductDetailsTabs { margin: 10px 0; text-align: left; }
.ProductGroup { border: 1px solid #ccc; margin: 5px 0; font-size: 10px; width: 100%; }
.ProductGroup td { padding: 5px; }
.ProductGroupHeader { background: #666; color: #fff; }
.ProductGroupHeader th { padding: 5px; }
span.ProductGroupItem { text-align: center; }
.ProductGroupAlternatingItem { background: #ccc; }
span.ProductGroupAlternatingItem { text-align: center; }
#tdProductGroupDisplayQuantity { text-align: center; }
#tdProductGroupDisplayAltQuantity { text-align: center; }
.ProductDetailsQuantityPriceTable { width: 100%; margin-bottom: 15px; }
.ProductDetailsQuantityPriceQuantity { background: #ccc; color: #000; padding: 5px; }
.ProductDetailsQuantityPricePrice { padding: 15px 5px; border-left: 1px solid #ccc; }
.ProductDetailsQuantityPriceQuantityLabel { background: #ccc; color: #000; padding: 5px; }
.ProductDetailsQuantityPricePriceLabel { padding: 15px 5px; }
.ProductDetailsQuantityPricePriceLabel p { padding: 0; }
.ProductDetailsPricing { float: right; padding: 10px 0 10px 20px; border-top: 1px solid #D3DEE0; text-align: right; }
.ProductDetailsPrice { font-weight: bold; }
.ProductDetailsPriceArea { display: block; }
.ProductDetailsRetail { text-decoration: line-through; font-weight: bold; }
.ProductDetailsRetailPriceArea { display: block; }
.ProductDetailsSalePriceArea { display: block; }
.ProductDetailsSalePrice { font-weight: bold; }
.ProductDetailsWasPriceArea { display: block; }
.ProductDetailsWasPrice { text-decoration: line-through; font-weight: bold; }
.ProductDetailsReviewDisplay { float: left; }
.ProductDetailsReviewRatingStars, .ProductDetailsReviewRatingStars .StarRatings { float: left; }
.ProductDetailsReviewRatingCount { clear: left; text-align: center; font-size: 10px; }
.ProductDetailsAttributesTD { padding: 2px 5px; border: 1px solid #ccc; }
.ProductDetailsAttributesGroup { }
.ProductDetailsAttributesLink { }
.ProductDetailsAttributesDiv { }
.ProductDetailsAttributesValue { }
.needsSelection { background-color: #FFAFAF; border: 1px solid #8F2323; color: #7F0000; }
.SwatchNotApplicable { opacity:0.5; pointer-events: none; }
/* [/ProductDetails] */
/* [Catalog] */
/* [/Catalog] */
/* [Category] */
#dlCategory td { vertical-align: top; }
.CategoryItem { position: relative; text-align: center; margin: 20px auto; width: 225px; height: 370px; }
.CategoryItem a { color: #333; }
div.CategoryItemThumbnail { position: relative; border: 1px solid #D3DEE0; border-radius: 10px; height: 350px; margin: 12px; padding: 10px; }
.CategoryPriceTab { position: absolute; bottom: 0; left: 0; background: url(/shared/themes/Element/images/pricetab2.png) no-repeat; height: 240px; width: 224px; }
.CategoryItemName { position: absolute; top: 15px; left: 10px; width: 112px; height: 28px; overflow: hidden; text-align: left; }
.CategoryProductPriceLabel { display: none; }
.CategoryItemPrice { position: absolute; top: 25px; right: 5px; font-size: 20px; font-weight: bold; color: #fff; }
.CategoryItemInformation { font-size: 14px; position: absolute; top: 65px; left: 25px; text-align: left; line-height: 25px; }
.CategoryPageNavigation { background: url(/shared/themes/Element/images/widgetheader.png) repeat-x #1B1D1A; border-radius: 5px; color: #fff; padding: 5px; margin: 5px 0; }
.CategoryPageNavigation a { color: #fff; }
.CategoryPageNumberPerPage { font-weight: bold; }
.ProductListPagingCurrentPageBox { width: 30px; border: 1px solid #ccc; }
.CategoryChildCategories { float: left; text-align: center; width: 33%; height: 150px; }
.CategoryCategoryThumbnail img { max-width: 120px; max-height: 120px; }
.CategoryProductRow { padding: 5px; margin: 5px 0; }
.CategoryProductDetails { margin: 0 130px; font-size: 10px; padding: 5px; border: 1px solid #ccc; }
.CategoryProductNameLink a { font-size: 16px; font-weight: bold; padding: 10px 0; display: block; }
.CategoryProductPricingInfo { float: right; width: 130px; text-align: right; }
.CategoryProductQuantityTextbox { width: 40px; text-align: center; }
div.CategoryProductThumbnailArea { width: 130px; text-align: center; margin: 0 auto; }
.CategoryProductThumbnail img { max-width: 125px; max-height: 125px; }
.StarRatings { float: right; }
.CategoryProductRatingText { clear: right; }
.CategoryProductAddToCartArea { position: absolute; bottom: 0; height: 80px; width: 125px; left: 50px; font-size: 14px; }
.CategoryProductRetailPrice { text-decoration: line-through; }
.CategoryProductWasPrice { text-decoration: line-through; }
/* [/Category] */
/* [ShoppingCart] */
table.ShoppingCart { border: 1px solid #666; width: 100%; }
.ShoppingCart td, td.ShoppingCart { text-align: left; border: 1px solid #666; padding: 10px; }
.ShoppingCartHeader { background: #666; color: #fff; font-weight: bold; padding: 5px; }
.ShoppingCartThumbnail { float: left; }
.ShoppingCartPrice { font-weight: bold; }
td.ShoppingCartTotals { text-align: right; }
td.ShoppingCartDiscount { text-align: right; }
.ShoppingCartClear { float: left; text-align: left; }
.ShoppingCartChildBranch { float: left; vertical-align: top; }
.dvChkSelect { display: inline; }
#dvInlineCalculateShippingForm { display: inline; }
#dvInlinePostalcode { float: left; display: inline; }
.PayPalGoogleCO { text-align: center; }
.ShoppingCartError { text-align: center; }
#dvCalculateShippingForm { text-align: left; width: 330px; }
.ShippingCalcLabel { font-weight: bold; text-align: center; }
.ShippingCalcField { padding: 3px; clear: both; }
.ShippingCalcFieldLabel { display: block; float: left; width: 90px; text-align: right; padding: 5px; }
.ShoppingCartSelectCheckbox { border: 0; }
.ShoppingCartQtyTextbox { width: 40px; }
.ShoppingCartInlineCalculateShippingForm { display: inline; }
.ShoppingCartInlinePostalCode { display: inline; float: left; }
.ShoppingCartInlinePostalCodeTextbox { width: 72px; }
.ShoppingCartCouponCodeTextbox { width: 80px; }
.ShoppingCartSavedCartText { text-align: center; }
/* [/ShoppingCart] */
/* [CheckOut] */
.CheckOutHeader { font-weight: bold; font-size: 16px; }
.CheckOutSubHeader { font-weight: bold; font-size: 14px; margin: 20px 0 10px 0; }
.CardFieldHeaders { background: #666; color: #fff; padding: 5px; }
/* [/CheckOut] */
/* [ShippingEstimation] */
.ShippingEstimationZipTextbox { width: 70px; }
/* [/ShippingEstimation] */
/* [WriteReview] */
.ProductReviewFieldLabel { padding: 5px 0 0 0; }
.ProductReviewChangeEmail { font-size: 10px; }
.WriteReviewEmailAddress { width: 300px; }
.WriteReviewChangeEmailAddressText { font-size: 10px; }
.WriteReviewNameTextbox { width: 200px; }
.WriteReviewTitleTextbox { width: 100%; }
/* [/WriteReview] */
/* [ProductReviews] */
/* [/ProductReviews] */
/* [CMS] */
/* [/CMS] */
/* [Attribute] */
/* [/Attribute] */
/* [Manufacturer] */
/* [/Manufacturer] */
/* [Search] */
.CMSPage { margin: 5px 0; }
.CMSPageTitleLine a { }
.CMSSearchRelevance { font-size: 10px; }
.CMSPageDescription { font-size: 10px; margin: 5px; color: #333; }
.SearchRelevance { }
.CategoryItem { position: relative; text-align: center; margin: 20px auto; width: 225px; height: 370px; }
.CategoryPriceTab { position: absolute; bottom: 0; left: 0; background: url(/shared/themes/Element/images/pricetab2.png) no-repeat; height: 240px; width: 224px; }
.CategoryItemName { position: absolute; top: 15px; left: 10px; width: 112px; height: 28px; overflow: hidden; text-align: left; }
.CategoryItemPrice { position: absolute; top: 25px; right: 5px; font-size: 20px; font-weight: bold; color: #fff; }
.CategoryItemInformation { font-size: 14px; position: absolute; top: 65px; left: 25px; text-align: left; line-height: 25px; }
.CategoryPageNavigation { background: url(/shared/themes/Element/images/widgetheader.png) repeat-x #1B1D1A; border-radius: 5px; color: #fff; padding: 5px; margin: 5px 0; }
.CategoryPageNumberPerPage { font-weight: bold; }
.CategoryProductRow { padding: 5px; margin: 5px 0; }
.CategoryProductAddToCartArea { position: absolute; bottom: 0; height: 80px; width: 125px; left: 50px; font-size: 14px; }
/* [/Search] */
/* [Receipt] */
.LogoText { font-size: Large; font-weight: bold; }
.StoreInfoText { font-size: 14px; }
.ReceiptPaymentMethodText { font-size: 8px; }
.ReceiptHeader { background: #333; color: #fff; }
.ReceiptText { padding: 4px; text-align: left; }
.ReceiptItemTable td { padding: 5px; }
/* [/Receipt] */
/* [OnePageCheckOut] */
.ExistingAccountArea { height: 45px; }
.AccountPasswordText { padding-left: 2px; }
.ShippingMethodArea { float: left; width: 50%; }
.ShippingDropDownArea { padding-left: 10px; }
.ShippingRatesText { text-align: center; }
.MultipleShippingAddressesText { padding-left: 10px; }
.PaymentMethodArea { width: 49%; float: right; }
.CreditCardTextbox { width: 130px; }
.ExplainCVVText { font-size: 10px; }
.EcheckNameTextbox { width: 130px; }
.EcheckStateTextbox { width: 60px; }
.EcheckBankTextbox { width: 150px; }
.GiftcardTextbox { width: 130px; }
.GiftcardDropDown { width: 200px; }
.GiftcardAddTextbox { width: 150px; }
.CouponTextbox { width: 80px; }
.PublicCommentsArea { width: 100%; float: left; }
.PublicComments { margin-top: 4px; width: 100%; height: 80px; }
.OrderGiftingArea { width: 49%; float: right; }
.GiftMessageArea { margin-top: 12px; }
.GiftMessage { margin-top: 4px; width: 100%; height: 50px; }
.ShoppingCartHeaderText { text-align: center; }
/* [/OnePageCheckOut] */
/* [OnePagePayment] */
.InvoiceTextbox { width: 130px; }
.PaymentAmountTextbox { width: 80px; }
/* [/OnePagePayment] */
/* [CustomerLogin] */
.EmailAddressTextbox { width: 130px; }
.LoginFieldDesc { font-weight: normal; width: 140px; float: left; margin: 0 0 20px 0; }
.LoginLeftSide { border: #cccccc 1px solid; float: left; width: 49%; height: 240px; }
.LoginRightSide { border: #cccccc 1px solid; float: right; width: 49%; height: 240px; }
.LoginLeftSide .inner, .LoginRightSide .inner { margin: 10px; }
.LoginLeftSide .button, .LoginRightSide .button { text-align: center; }
.ForgotPassLink { clear: both; }
/* [/CustomerLogin] */
/* [CustomerLogout] */
/* [/CustomerLogout] */
/* [ChangePassword] */
/* [/ChangePassword] */
/* [LostPassword] */
/* [/LostPassword] */
/* [MyAccount] */
.MyAccountShowHideTable { border-width: 0px; width: 100%; border-collapse: collapse; display: none; }
/* [/MyAccount] */
/* [EditLogin] */
/* [/EditLogin] */
/* [NewCustomer] */
/* [/NewCustomer] */
/* [BillingAddress] */
.AddressEditorAddressList { padding-bottom: 10px; }
.RequiredField { color: red; }
.AddressEditorEmailTextbox { width: 160px; }
.AddressEditorPhoneTextbox { width: 112px; }
.AddressEditorZipCodeTextbox { width: 112px; }
.AddressEditorZipCodePlus4Textbox { width: 56px; }
.AddressEditorMailingListCheckbox { text-align: left; }
/* [/BillingAddress] */
/* [ShippingAddress] */
/* [/ShippingAddress] */
/* [ShippingMethod] */
/* [/ShippingMethod] */
/* [PaymentMethod] */
/* [/PaymentMethod] */
/* [OrderDetails] */
.OrderDetailsPublicComments { margin-top: 4px; width: 98%; height: 40px; }
.OrderDetailsGiftMessage { margin-top: 4px; width: 98%; height: 40px; }
.OrderDetailsTotalText { font-size: 10px; }
.OrderDetailsAdditionalFeesText { font-size: 8px; }
/* [/OrderDetails] */
/* [EnterCVV] */
.CVVWidth { width: 40px; }
/* [/EnterCVV] */
/* [ViewOrder] */
.SpecialInstructionsArea { display: inline-block; text-align: left; }
.ViewOrderHeader { background: #333; color: #fff; }
.ViewOrderText { padding: 4px; text-align: left; }
.ViewOrderTable td { padding: 5px; }
/* [/ViewOrder] */
/* [MailingListRemove] */
/* [/MailingListRemove] */
/* [Error] */
/* [/Error] */
/* [AffiliateCenter] */
/* [/AffiliateCenter] */
/* [eProduct] */
/* [/eProduct] */
/* [CustomForm] */
/* [/CustomForm] */
/* [MicroStoreHomePage] */
/* [/MicroStoreHomePage] */
/* [WishList] */
.Button { border: 2px solid #333; padding: 0; }
/* [/WishList] */
/* [SavedWishLists] */
.SavedWishCheckbox { border: 0; }
/* [/SavedWishLists] */
/* [SavedWishListDetail] */
/* [/SavedWishListDetail] */
/* [StorePassword] */
/* [/StorePassword] */
/* [AddToCart] */
/* [/AddToCart] */
/* [PlaceOrder] */
/* [/PlaceOrder] */
/* [Register] */
.RegisterNameTextbox { width: 150px; }
.RegisterEmailTextbox { width: 200px; }
.RegisterStateTextbox { width: 201px; }
.RegisterFaxTextbox { width: 100px; }
.Notes { font-style: italic; font-size: 10px; }
.RegisterBox { padding: 0 0 15px 0; }
/* [/Register] */
/* [PicturePopup] */
/* [/PicturePopup] */
/* [PopUp] */
/* [/PopUp] */
/* [MayWeSuggest] */
.MayWeSuggest { padding: 20px; text-align: center; }
/* [/MayWeSuggest] */
/* [CategoryList] */
.CategoryListProduct { width: 100px; float: left; margin: 20px; text-align: center; }
.CategoryListProductPhoto { height: 100px; }
/* [/CategoryList] */
/* [AffiliateLogin] */
.AffiliateLoginBoxLeft { border: #cccccc 1px solid; float: left; width: 49%; height: 200px; }
.AffiliateLoginBoxRight { border: #cccccc 1px solid; float: right; width: 49%; height: 200px; }
.AffLoginBoxInner { padding: 10px; }
.LoginButtons { text-align: center; clear: both; }
.LoginFieldLabel { width: 120px; font-size: 10px; display: block; float: left; }
/* [/AffiliateLogin] */
/* [AffliateApplication] */
.AffiliateApplicationEmailTextbox { width: 300px; }
.AffiliateApplicationPasswordTextbox { width: 176px; }
.AffiliateApplicationPayeeTextbox { width: 300px; }
.AffiliateApplicationContactTextbox { width: 300px; }
.AffiliateApplicationWebsiteUrls { width: 352px; }
.AffiliateApplicationDescription { width: 352px; }
.AffiliateLoginTextbox { width: 120px; }
.AffiliateHelpTextLeft { font-size: 8px; text-align: left; }
.AffiliateHelpTextRight { font-size: 8px; text-align: right; }
.AffiliateLabel { text-align: right; }
/* [/AffliateApplication] */
/* [_404] */
/* [/_404] */
/* [FreeItemOrder] */
.QtyTextbox { width: 40px; }
.PasswordTextbox { width: 130px; }
/* [/FreeItemOrder] */
/* [SiteMap] */
.SiteMapLinks { margin: 0px; padding-left: 20px; }
.SiteMapLinks li { line-height: 18px; }
.SiteMapHeader { margin-top: 10px; margin-bottom: 5px; font-weight: bold; }
.SiteMapHeader a { font-weight: bold; }
/* [/SiteMap] */
/* [Invoice] */
/* [/Invoice] */
/* [UploadFile] */
/* [/UploadFile] */
/* [UploadFileSuccess] */
.UploadFileResult { height: 40px; text-align: center; color: red; }
/* [/UploadFileSuccess] */
/* [ExplainCVV] */
/* [/ExplainCVV] */
/* [ShoppingCartPrint] */
/* [/ShoppingCartPrint] */
/* [TellAFriend] */
/* [/TellAFriend] */
/* [SingleSignon] */
/* [/SingleSignon] */
/* [MyDownloads] */
/* [/MyDownloads] */
/* [Header] */
/* [/Header] */
/* [Footer] */
/* [/Footer] */
/* [LeftColumn] */
/* [/LeftColumn] */
/* [RightColumn] */
/* [/RightColumn] */
/* [SharedWishList] */
.SharedWishListCheckbox { border: 0; }
/* [/SharedWishList] */
/* [AttributeDropDownGroup] */
.AttributeDropDownGroupItem { white-space: nowrap; }
/* [/AttributeDropDownGroup] */
/* [AttributeGroupLinks] */
/* [/AttributeGroupLinks] */
/* [AttributeNavigationLinks] */
.BrowseByAttributeFilterButtonArea { }
.BrowseByAttHeader { }
/* [/AttributeNavigationLinks] */
/* [BannerAd] */
/* [/BannerAd] */
/* [CategoryDropDownFilter] */
.CategoryFilterDropDown { }
.CategoryFilterCategoryDropDown { }
.CategoryFilterAttributeDropDown { }
.CategoryFilterDropDownContainer { }
/* [/CategoryDropDownFilter] */
/* [CategoryNavigationLinks] */
.BrowseCategoryIcon { }
/* [/CategoryNavigationLinks] */
/* [Carousel] */
.CarouselPrevButton { }
.CarouselNextButton { }
.CarouselBuyNowLink { font-size: 7pt; text-decoration: none; }
.CarouselMoreLink { font-size: 7pt; text-decoration: none; }
/* [/Carousel] */
/* [CustomerLoginWidget] */
.CustomerLoginEmailTextbox { width: 180px; }
/* [/CustomerLoginWidget] */
/* [CustomWidget] */
/* [/CustomWidget] */
/* [DropDownNavigation] */
/* [/DropDownNavigation] */
/* [FileUpload] */
.UploadFileResult { height: 40px; text-align: center; color: red; }
/* [/FileUpload] */
/* [GlobalWidget] */
/* [/GlobalWidget] */
/* [HTML] */
/* [/HTML] */
/* [LargeShoppingCart] */
.ShoppingCart { }
.ShoppingCartHeader { }
.ShoppingCartClear { }
.ShoppingCartPrice { }
.ShoppingCartTotals { }
.ShoppingCartShippingInfo { }
.ShoppingCartDiscount { }
.ShoppingCartCouponCode { }
.ShoppingCartThumbnail { }
.ShoppingCartItemNr { }
.ShoppingCartVariations { }
.ShoppingCartPersonalize { }
.ShoppingCartGiftMessage { }
.ErrorText { }
.ShoppingCartSelectCheckbox { border: 0; }
.ShoppingCartQtyTextbox { width: 40px; }
.ShoppingCartInlineCalculateShippingForm { display: inline; }
.ShoppingCartInlinePostalCode { display: inline; float: left; }
.ShoppingCartInlinePostalCodeTextbox { width: 72px; }
.ShoppingCartCouponCodeTextbox { width: 80px; }
.ShoppingCartSavedCartText { text-align: center; }
/* [/LargeShoppingCart] */
/* [LinkGroup] */
/* [/LinkGroup] */
/* [MailingList] */
/* [/MailingList] */
/* [ManufacturerNavigationLinks] */
/* [/ManufacturerNavigationLinks] */
/* [MicroStoreDropDown] */
.MicroStoreDropDown { width: 160px; }
/* [/MicroStoreDropDown] */
/* [ProductDisplay] */
.FeaturedItemsRating { }
.FeaturedItemsDetails { }
.FeaturedItemsPriceHR { }
.FeaturedItemsPriceAlignment { }
.FeaturedItemsBuyMoreLinkHR { }
.FeatureItemsThumbNail { }
.PriceLabels { }
.ProductDisplayBuyNowLink { font-size: 7pt; text-decoration: none; }
.ProductDisplayMoreLink { font-size: 7pt; text-decoration: none; }
.ProductDisplayStatus { font-size: 7pt; text-decoration: none; }
.ProductDisplayBuyMoreArea { float: right; padding-right: 5px; display: inline; }
/* [/ProductDisplay] */
/* [ProductReviewsListing] */
.ProductReviewsListing ul { margin: 0 20px 15px; }
.ProductReviewDimensionName { }
.ProductReviewSummary { }
.ProductReviewWriteLink { }
.ProductReviewAllReviewsLink { }
.ProductReviewTitle { }
.ProductReviewRatings { }
.ProductReviewBody { }
.ProductReviewProsArea { }
.ProductReviewProsHeader { }
.ProductReviewPros { }
.ProductReviewConsArea { }
.ProductReviewConsHeader { }
.ProductReviewCons { }
.ProductReviewItemMeta { }
/* [/ProductReviewsListing] */
/* [QuickOrderEntry] */
.QuickOrderEntryHeader { text-align: center; }
.QuickOrderEntryItemNumberTextbox { width: 100px; }
.QuickOrderEntryQuantityTextbox { width: 50px; }
.QuickOrderEntryAddButton { text-align: center; }
/* [/QuickOrderEntry] */
/* [RepeatedList] */
/* [/RepeatedList] */
/* [RSSFeedReader] */
/* [/RSSFeedReader] */
/* [SearchBox] */
/* [/SearchBox] */
/* [SmallShoppingCart] */
.SmallCartItemLink { text-decoration: underline; }
.SmallCartQtyTextbox { border-color: #333333; border-width: 1px; border-style: Solid; font-size: 8pt; width: 30px; }
/* [/SmallShoppingCart] */
/* [Tabs] */
/* [/Tabs] */
/* [TreeNavigation] */
.Node { }
.NodeHover { }
.NodeSelected { }
.RootNode { }
.LeafNode { }
.Island { }
/* [/TreeNavigation] */
/* [WidgetArea] */
/* [/WidgetArea] */
/* [Widget266] */
.Control_266 { float: left; font-size: 14px; }
.storeinfo { list-style: none; margin: 0; padding: 0; }
.storeinfo li { float: left; width: 33%; text-align: left; color: #8EBC3E; }
.ControlHeader_266 { }
.ControlItem_266 { }
.ControlLink_266 { }
.ControlLink_266 a { }
.ControlLink_266 a:hover { }
.ControlLinkSeperator_266 { }
.ControlText_266 { }
.ControlInput_266 { }
.ControlFooter_266 { }
/* [/Widget266] */
/* [Widget267] */
.Control_267 { float: left; width: 43%; margin: 0 10px; }
.Control_267 h3 { padding: 0 0 10px 0; margin-bottom: 10px; border-bottom: 1px solid #999; line-height: 25px; }
.social { list-style: none; margin: 0; padding: 0; }
.social li { float: left; width: 50%; text-align: center; margin: 0; padding: 0; }
.ControlHeader_267 { }
.ControlItem_267 { }
.ControlLink_267 { }
.ControlLink_267 a { }
.ControlLink_267 a:hover { }
.ControlLinkSeperator_267 { }
.ControlText_267 { }
.ControlInput_267 { }
.ControlFooter_267 { }
/* [/Widget267] */
/* [Widget250] */
.Control_250 { text-align: right; }
#utilnav { text-align: center; font-weight: bold; font-size: 14px; }
.utillink { display: block; height: 40px; color: #8ebc3e; line-height: 42px; }
#utilnav #phone { float: left; text-align: right; padding-right: 10px; width: 180px; line-height: 42px; }
#utilnav #phone a { line-height: 38px; }
#utilmid { float: right; width: 110px; text-align: right; }
#utilmid a { margin-right: 17px; }
#utilright { float: right; width: 128px; }
.utillink2 { color: #ff9c0d; display: block; height: 40px; line-height: 42px; }
.cartitemscount { color: #fff; }
/* [/Widget250] */
/* [Widget270] */
.Control_270 { }
.ControlHeader_270 { background: none; padding: 0; }
.ControlItem_270 { }
.ControlLink_270 { }
.ControlLink_270 a { }
.ControlLink_270 a:hover { }
.ControlLinkSeperator_270 { }
.ControlText_270 { }
.ControlFooter_270 { }
/* [/Widget270] */
/* [Widget252] */
.Control_252 { position: absolute; right: 0; top: 0; background: url(/shared/themes/Element/images/search.png) no-repeat; padding: 0; height: 50px; width: 278px; margin: 0; }
.Control_252 input[type=text] { margin: 15px 0 15px 15px; width: 195px; background: none; border: none; }
.Control_252 input[type=submit] { opacity: 0; filter: alpha(opacity=0); }
.ControlHeader_252 { }
.ControlItem_252 { }
.ControlLink_252 { }
.ControlLink_252 a { }
.ControlLink_252 a:hover { }
.ControlLinkSeperator_252 { }
.ControlText_252 { }
.ControlInput_252 { }
.ControlFooter_252 { }
/* [/Widget252] */
/* [Widget253] */
.Control_253 { position: absolute; left: 0; top: 0; text-align: left; padding:0; margin: 0 318px 0 0; z-index:11; }
.ControlHeader_253 { }
.ControlItem_253 { }
.ControlLink_253 { padding: 10px 0;display:block;float:left; }
.ControlLink_253:hover { background: url("/shared/themes/Element/images/navhover2.png") repeat-x scroll right center transparent; }
.ControlLink_253 a { }
.ControlLink_253 a:hover, .ControlLink_253:hover > a { color: #fff; background: url("/shared/themes/Element/images/navhover1.png") no-repeat scroll left center transparent; text-decoration: none; }
.ControlLinkSeperator_253 { }
.ControlText_253 { }
.ControlInput_253 { }
.ControlFooter_253 { }
/* [/Widget253] */
/* [Widget254] */
.Control_254 { position: absolute; top: 50px; width: 100%; margin: 0; }
.ControlHeader_254 { }
.ControlItem_254 { }
.ControlLink_254 { }
.ControlLink_254 a { color: #000; }
.ControlLink_254 a:hover { }
.ControlLinkSeperator_254 { }
.ControlText_254 { }
.ControlInput_254 { }
.ControlFooter_254 { }
/* [/Widget254] */
/* [Widget271] */
.Control_271 { }
.CategoryFilterCategoryDropDown_271 { width: 210px; display: block; padding: 5px; border-radius: 5px; border: 1px solid #d3dee0; border-top: 2px solid #d3dee0; background: #fff; margin: 10px 0; }
.ControlHeader_271 { }
.ControlItem_271 { }
.ControlLink_271 { }
.ControlLink_271 a { }
.ControlLink_271 a:hover { }
.ControlLinkSeperator_271 { }
.ControlText_271 { }
.ControlInput_271 { }
.ControlFooter_271 { }
/* [/Widget271] */
/* [Widget9539] */
.Control_9539 { padding: 0; margin: 0; position: relative; top: -25px; }
.ControlHeader_9539 { }
.ControlItem_9539 { }
.ControlLink_9539 { }
.ControlLink_9539 a { }
.ControlLink_9539 a:hover { }
.ControlLinkSeperator_9539 { }
.ControlText_9539 { }
.ControlInput_9539 { }
.ControlFooter_9539 { }
/* [/Widget9539] */
/* [Widget272] */
.Control_272 { }
.Control_272 select { width: 210px; display: block; padding: 5px; border-radius: 5px; border: 1px solid #d3dee0; border-top: 2px solid #d3dee0; background: #fff; margin: 10px 0; }
.ControlHeader_272 { }
.ControlItem_272 { }
.ControlLink_272 { }
.ControlLink_272 a { }
.ControlLink_272 a:hover { }
.ControlLinkSeperator_272 { }
.ControlText_272 { }
.ControlInput_272 { }
.ControlFooter_272 { }
/* [/Widget272] */
/* [Widget124] */
.Control_124 { }
.ControlHeader_124 { }
.ControlItem_124 { }
.ControlLink_124 { color: #333; }
.ControlLink_124 a { }
.ControlLink_124 a:hover { }
.ControlLinkSeperator_124 { }
.ControlText_124 { }
.ControlInput_124 { }
.ControlFooter_124 { }
/* [/Widget124] */
/* [Widget123] */
.Control_123 { }
.ControlHeader_123 { }
.ControlItem_123 { }
.ControlLink_123 { color: #333; }
.ControlLink_123 a { }
.ControlLink_123 a:hover { }
.ControlLinkSeperator_123 { }
.ControlText_123 { }
.ControlInput_123 { }
.ControlFooter_123 { }
/* [/Widget123] */
/* [Widget269] */
.Control_269 { }
.ControlHeader_269 { }
.ControlItem_269 { }
.ControlLink_269 { }
.ControlLink_Link_269 { display: block; padding: 10px 15px; border-bottom: 1px solid #D3DEE0; color: #000; }
.ControlLink_Link_269:hover { background: #8EBC3E; text-decoration: none; }
.ControlLinkSeperator_269 { }
.ControlText_269 { }
.ControlInput_269 { }
.ControlFooter_269 { }
/* [/Widget269] */
/* [Widget127] */
.Control_127 { }
.ControlHeader_127 { }
.ControlItem_127 { }
.ControlLink_127 { }
.ControlLink_127 a { }
.ControlLink_127 a:hover { }
.ControlLinkSeperator_127 { }
.ControlText_127 { }
.ControlInput_127 { }
.ControlFooter_127 { }
/* [/Widget127] */
/* [Widget256] */
.Control_256 { margin: 0; padding: 10px 20px; }
.ControlHeader_256 { }
.ControlItem_256 { }
.ControlLink_256 { }
.ControlLink_256 a { }
.ControlLink_256 a:hover { }
.ControlLinkSeperator_256 { }
.ControlText_256 { }
.ControlInput_256 { }
.ControlFooter_256 { }
/* [/Widget256] */
/* [Widget265] */
.Control_265 { float: left; width: 43%; margin: 0 10px 20px 0; }
.ControlHeader_265 { background: none; padding: 0 0 10px 0; margin-bottom: 10px; border-bottom: 1px solid #999; border-radius: 0px; }
.ControlItem_265 { }
.ControlLink_265 { }
.ControlLink_265 a { display: block; border-bottom: 1px solid #999; color: #c76f05; padding: 8px 0; }
.ControlLink_265 a:hover { }
.ControlLinkSeperator_265 { }
.ControlText_265 { }
.ControlInput_265 { }
.ControlFooter_265 { }
/* [/Widget265] */
/* [Widget125] */
.Control_125 { }
.ControlHeader_125 { }
.ControlItem_125 { width: 235px; height: 220px; margin: 30px; border: 1px solid #D3DEE0; border-radius: 10px; position: relative; }
.Control_125 .CarouselProductName { margin: 10px 10px 0; display: block; height: 30px; overflow: hidden; }
.Control_125 .CarouselThumbnail { text-align: center; }
.Control_125 .CarouselPrice { position: absolute; right: -12px; bottom: 0; width: 136px; height: 62px; line-height: 62px; text-indent: 10px; color: #fff; font-size: 24px; font-weight: bold; background: url(/shared/themes/Element/images/pricetab1.png) no-repeat; }
.Control_125 a { color: #333; }
.ControlLink_125 { }
.ControlLink_125 a { }
.ControlLink_125 a:hover { }
.ControlLinkSeperator_125 { }
.ControlText_125 { }
.ControlInput_125 { }
.ControlFooter_125 { }
.CarouselPrevButton_125 { }
.CarouselNextButton_125 { }
.CarouselBuyNowLink_125 { font-size: 7pt; text-decoration: none; }
.CarouselMoreLink_125 { font-size: 7pt; text-decoration: none; }
/* [/Widget125] */
/* [Buttons] */
.ThemeButton { border: none; cursor: pointer; font-size: 0; line-height: 0; color: transparent; background-color: transparent; }
.ApplyCodeThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnAdd.gif'); width: 80px; height: 25px; }
.AddToCartThemeButton { background: url('/Shared/Themes/Element/Buttons/addtocart.png'); width: 202px; height: 76px; margin-top: 15px; }
.CategoryAddToCartThemeButton, .CategoryProductAddToCart { background: url(/shared/themes/Element/buttons/addtocartcat.png); width: 125px; height: 52px; margin-top: 0; }
.CancelThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnCancel.gif'); width: 75px; height: 25px; }
.ChangeThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnChange.gif'); width: 75px; height: 25px; }
.CheckoutThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnCheckOut.gif'); width: 170px; height: 30px; }
.ContinueThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnContinue.gif'); width: 75px; height: 25px; }
.ContinueShoppingThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnContinueShopping.gif'); width: 130px; height: 30px; }
.DeleteThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnDelete.gif'); width: 75px; height: 25px; }
.EditThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnEdit.gif'); width: 75px; height: 25px; }
.GoThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnGo.gif'); width: 22px; height: 22px; }
.LogoutThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnLogout.gif'); width: 75px; height: 25px; }
.MoveToCartThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnMoveToCart.gif'); width: 105px; height: 30px; }
.MoveToWishListThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnMoveToWishlist.gif'); width: 120px; height: 30px; }
.PlaceOrderThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnPlaceOrder.gif'); width: 145px; height: 35px; }
.RemoveFromCartThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnRemoveFromCart.gif'); width: 75px; height: 25px; }
.SelectPaymentThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnSelectPayment.gif'); width: 75px; height: 25px; }
.SignInThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnSignIn.gif'); width: 115px; height: 30px; }
.UpdateCartThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnUpdateCart.gif'); width: 100px; height: 30px; }
.UseThisAddressThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnUseThisAddress.gif'); width: 115px; height: 25px; }
/* [/Buttons] */
/* [Widget263] */
.Control_263 { padding-left: 15px; }
.Control_263 h3 { padding: 0 0 10px 0; margin-bottom: 10px; border-bottom: 1px solid #999; line-height: 25px; }
.ControlHeader_263 { }
.ControlItem_263 { }
.ControlLink_263 { }
.ControlLink_263 a { }
.ControlLink_263 a:hover { }
.ControlLinkSeperator_263 { }
.ControlText_263 { }
.ControlInput_263 { }
.ControlFooter_263 { }
/* [/Widget263] */
/* [Widget158] */
.Control_158 { clear: both; width: 345px; }
.ControlHeader_158 { background: none; border-bottom: 1px solid #D3DEE0; border-radius: 0; color: #000000; margin: 0; text-align: left; }
.ControlItem_158 { }
.ControlLink_158 { }
.ControlLink_158 a { }
.ControlLink_158 a:hover { }
.ControlLinkSeperator_158 { }
.ControlText_158 { }
.ControlInput_158 { }
.ControlFooter_158 { }
.FeaturedItemsRating_158 { }
.FeaturedItemsDetails_158 { }
.FeaturedItemsPriceHR_158 { }
.FeaturedItemsPriceAlignment_158 { }
.FeaturedItemsBuyMoreLinkHR_158 { }
.FeaturedItemsThumbNail_158 { }
div.FeaturedItemsThumbNail_158 { height: 100px; text-align: center; margin: 20px 20px 0 0; }
.PriceLabels_158 { }
.ProductDisplayBuyNowLink_158 { font-size: 7pt; text-decoration: none; }
.ProductDisplayMoreLink_158 { font-size: 7pt; text-decoration: none; }
.ProductDisplayStatus_158 { font-size: 7pt; text-decoration: none; }
.ProductDisplayBuyMoreArea_158 { float: right; padding-right: 5px; display: inline; }
/* [/Widget158] */
/* [Widget156] */
.Control_156 { }
.ControlHeader_156 { border: 1px solid #D3DEE0; background: none; border-left: none; border-right: none; color: #000000; }
.ControlItem_156 { }
.ControlLink_156 { }
.ControlLink_156 a { }
.ControlLink_156 a:hover { }
.ControlLinkSeperator_156 { }
.ControlText_156 { }
.ControlInput_156 { }
.ControlFooter_156 { }
.ProductReviewDimensionName_156 { display: none; }
.ProductReviewSummary_156 { }
.ProductReviewWriteLink_156 { }
.ProductReviewAllReviewsLink_156 { }
.ProductReviewTitle_156 { }
.ProductReviewRatings_156 { }
.ProductReviewBody_156 { }
.ProductReviewProsArea_156 { }
.ProductReviewProsHeader_156 { }
.ProductReviewPros_156 { }
.ProductReviewConsArea_156 { }
.ProductReviewConsHeader_156 { }
.ProductReviewCons_156 { }
.ProductReviewItemMeta_156 { }
/* [/Widget156] */
/* [Widget119] */
.Control_119 { background: url(/shared/themes/Element/images/bannergreen.png); width: 569px; height: 63px; position: absolute; z-index: 5; left: 31px; top: 245px; padding: 0; }
.Control_119 a { margin-right: 15px; font-size: 13px; color: #374b0f; font-weight: bold; }
.Control_119 img { vertical-align: bottom; }
.ControlHeader_119 { }
.ControlItem_119 { }
.ControlLink_119 { }
.ControlLink_119 a { }
.ControlLink_119 a:hover { }
.ControlLinkSeperator_119 { }
.ControlText_119 { }
.ControlInput_119 { }
.ControlFooter_119 { }
/* [/Widget119] */
/* [Slideshow] */
.Slideshow { position: relative; }
.SlideList, Slide { margin: 0; padding: 0; list-style: none; }
.Slide { overflow: hidden; }
.SlideshowButtons { margin: 1em 0; padding: 0; position: relative; bottom: 4em; margin-left: 1em; }
.SlideshowButton { margin: 0 10px 0 0; padding: 0; float: left; list-style: none; height: 28px; line-height: 28px; }
.SlideshowButtonLink { float: left; height: 28px; line-height: 28px; border: 1px solid#ccc; background: #DAF3F8; color: #555; padding: 0 10px; text-decoration: none; }
.SlideshowButtonLinkCurrent { background: #5DC9E1; color: #fff; }
.SlideshowButtonLink:focus { outline: none; }
.SlideshowPrevious {position:absolute;left:5px;background:#666;color:#fff;}
.SlideshowNext {position:absolute;right:5px;background:#666;color:#fff;}
.SlideshowPreviousLink {color:#fff;padding:5px;display:block;}
.SlideshowNextLink {color:#fff;padding:5px;display:block;}
/* [/Slideshow] */
/* [Widget120] */
.Control_120 { margin: -20px 20px 0; padding: 0; }
.ControlHeader_120 { }
.ControlItem_120 { }
.ControlLink_120 { }
.ControlLink_120 a { }
.ControlLink_120 a:hover { }
.ControlLinkSeperator_120 { }
.ControlText_120 { }
.ControlInput_120 { }
.ControlFooter_120 { }
.Slideshow_120 { position: relative; }
.SlideList_120 { margin: 0; padding: 0; list-style: none; }
.Slide_120 { overflow: hidden; }
.SlideshowButtons_120 { margin: 1em 0; padding: 0; position: relative; bottom: 4em; margin-left: 1em; }
.SlideshowButton_120 { margin: 0 10px 0 0; padding: 0; float: left; list-style: none; height: 28px; line-height: 28px; }
.SlideshowButtonLink_120 { float: left; height: 28px; line-height: 28px; border: 1px solid#ccc; background: #DAF3F8; color: #555; padding: 0 10px; text-decoration: none; }
.SlideshowButtonLinkCurrent_120 { background: #5DC9E1; color: #fff; }
.SlideshowButtonLink:focus_120 { outline: none; }
/* [/Widget120] */
/* [Widget247] */
.Control_247 { display: inline; }
.storename { display: inline; font-size: 50px; line-height: 100px; text-decoration: none !important; color: #8ebc3e; padding: 0 0 0 30px; }
a.storename { padding: 0; }
/* [/Widget247] */
/* [ImageLogo] */
/* [/ImageLogo] */
/* [Widget248] */
.Control_248 { display: inline; }
/* [/Widget248] */
/* [BlogPost] */
.CommentReplies { margin-left: 100px; }
/* [/BlogPost] */
/* [ProductCompare] */
.product-compare-table { }
.product-compare-table tr > th:first-child:not(:last-child) { border-right: 1px solid #ccc; }
.product-compare-table tr > td:nth-child(2n), .product-compare-table tr > th:nth-child(2n) { background: #f9f9f9; }
.remove-link { top: -5px; right: -5px; }
.remove-link a { color: inherit; font-size: 16px; display: block; height: 20px; width: 20px; line-height: 20px; }
.remove-link a:hover { text-decoration: none; background: #666; color: #fff; border-radius: 25px; }
/* [/ProductCompare] */
.ShippingSelect input[type="radio"] + label { margin-left: 1em; } | _/Shared/Themes/Element/CSS/style.css | html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
table { border-collapse: collapse; border-spacing: 0; }
body { font-family: Arial, sans-serif; font-size: 12px; background: #e4e8eb url(/shared/themes/Element/images/bg.jpg) repeat-x; }
.BlankTemplate body { background-color: #fff; background-image: none; color: #000; }
a { text-decoration: none; color: #666; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-weight: bold; }
h1 { font-size: 26px; }
h2 { font-size: 20px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
ul { margin: 15px; }
p { padding: 5px 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 8px 0; padding: 0; }
input, select { vertical-align: middle; }
input[type=text], input[type=password], select, textarea { border: 1px solid #ccc; margin: 3px 0; padding: 2px; font-family: Verdana,Arial; font-size: 12px; }
#leftRibbon { position: absolute; left: -21px; top: 0; background: url(/shared/themes/Element/images/menuleft.png) no-repeat; width: 55px; height: 120px; }
#rightRibbon { position: absolute; right: -21px; top: 0; background: url(/shared/themes/Element/images/menuright.png) no-repeat; width: 55px; height: 120px; }
#bannerbg { width: 960px; height: 304px; background: url(/shared/themes/Element/images/bannerbg.png) no-repeat; }
#slidebox, #slidebox .content { width: 918px; }
#slidebox, #slidebox .container, #slidebox .content { height: 268px; }
.quotes { text-align: left; padding: 10px 20px; font-size: 14px; }
.quotes cite { display: block; color: #FF9C0D; padding-left: 20px; }
.LayoutBottom li, .LayoutBottom ul { list-style: none; margin: 0; }
.Hidden { display: none; }
.CarouselNextButtonImage, .CarouselPrevButtonImage { cursor: pointer; }
.AddressBookNameTextbox { width: 194px; }
.AddressBookCityTextbox { width: 152px; }
.AddressBookStateTextbox { width: 160px; }
.AddressBookZipCodeTextbox { width: 112px; }
.AddressBookNotes { font-family: Verdana; font-size: 10px; }
.ProductGroupItemPricing { white-space: nowrap; }
.ProductGroupItemQuantity { width: 40px; }
.ProductGroupItemDescription { margin: 0px 4px 0px 4px; }
.CustomPaymentMethodsAmountArea { float: right; }
.CustomPaymentMethodsAmountTextbox { width: 80px; }
.CustomPaymentMethodsFieldName { padding-left: 15px; width: 100px; text-align: right; }
.CustomPaymentMethodsChooseArea { padding-left: 35px; }
.CustomPaymentMethodsSeparator { height: 1px; color: #999999; }
.MicroStoreMoreInfoLink { font-size: 10px; }
.PaymentMethodsCC { font-size: 10px; }
.PaymentMethodsNewCardNum { width: 103px; }
.PaymentMethodsNewCardName { width: 100px; }
.PaymentMethodsChoosePaypalButton { padding-left: 35px; }
.PaymentMethodsCustomFieldName { padding-left: 35px; width: 200px; }
.PaymentMethodsChooseCustomButton { padding-left: 35px; }
.PaymentMethodsEcheckTextbox { width: 75px; }
.PersonalizationFileUpload { width: 250px; }
.ProductReviewTagSelectorRemoveTagArea { width: 15px; text-align: center; }
.ProductReviewTagSelectorRemoveTagImage { border: 0 none; }
.RelatedItemsContainer { padding: 10px; }
.RelatedItemsSeparator { color: #999999; height: 1px; }
.RelatedItemsProductPhotoArea { float: left; width: 14%; }
.RelatedItemsProductNameArea { float: left; width: 34%; }
.RelatedItemsPricingArea { float: left; width: 24%; }
.RelatedItemsAddToCartArea { float: left; width: 24%; text-align: right; }
.RelatedItemsQtyTextbox { width: 40px; }
.RelatedItemsMessageText { float: left; width: 24%; text-align: right; }
.RelatedItemsAddToCartButton { clear: both; text-align: right; }
.ShippingMethodCalendarPickerArea { float: left; width: 49%; }
.ErrorText {
background: url(/store/i/ld/error.png) no-repeat 5px 5px #FFBFBF;
border: 1px solid #999;
border-radius: 3px;
color: #7F0000;
display: block;
font-weight: bold;
line-height: 25px;
margin: 20px 0;
padding: 5px 30px 5px 65px;
box-shadow: 0px 0px 5px #999;
min-height: 45px;
}
.errorText { padding-top: 5px; border-bottom: 1px dashed #8F2323; }
input.BrowseByDropDownGoThemeButton, .CategoryFilterButton, input.MailingListGoThemeButton { border-radius: 5px; border: 1px solid #d3dee0; background: none; height: auto; width: auto; line-height: 15px; color: #000; font-size: 14px; padding: 5px 10px; }
.attentionText { background: #e5e5e5; border: 1px solid #ccc; border-radius: 10px; box-shadow: 0 0 5px #333; margin: 10px 0; padding: 10px; color: #000; }
.itemoriginalprice { text-decoration: line-through; }
.CustomFieldLabel { width: 118px; }
.CustomFieldInput { }
.EProductCredentials { font-weight:bold;}
.EProductCredentials span { font-weight:normal;padding-right:20px;}
.EProductNameContainer { display:inline; padding-right:20px;}
.EProductURLContainer { display:inline; }
.EProductItemContainer { text-align:left;}
/* [/Global] */
/* [Layout] */
.Layout, .LayoutTop, .LayoutMiddle, .LayoutLeftColumn, .LayoutContent, .LayoutRightColumn, .LayoutBottom { display: block; }
.Layout { width: 100%; margin: 30px auto 0; }
.LayoutTop { position: relative; z-index: 1; }
.LayoutTopMiddle { position: relative; }
.LayoutTopLeft { background: url(/shared/themes/Element/images/headerleft.png) no-repeat -17px 0px; height: 106px; margin-right: 439px; }
.LayoutTopRight { background: url(/shared/themes/Element/images/headerright.png) no-repeat top right; position: absolute; top: 0; right: 0; height: 106px; width: 439px; padding-top: 10px; }
.LayoutTopBottom { clear: both; height: 120px; position: relative; background: #fff; }
.LayoutTopBottom .inner { background: url(/shared/themes/Element/images/menumid.png) repeat-x; margin: 0 33px !important; width: auto !important; height: 120px; }
.LayoutLeftColumn { width: 240px; }
.LayoutRightColumn { width: 240px; }
.LeftAndRightColumn .LayoutContent { margin: 0 240px; }
.LeftColumn .LayoutContent { margin: 0 10px 0 240px; }
.RightColumn .LayoutContent { margin: 0 240px 0 10px; }
.DoubleLeft .LayoutContent { margin: 0 0 0 480px; }
.DoubleRight .LayoutContent { margin: 0 480px 0 0; }
.LayoutLeftColumnInner { padding: 0 5px 0 15px; }
.LayoutRightColumnInner { padding: 0 15px 0 5px; }
.LayoutContentInner { width: 100%; float: left; }
.LayoutBottom { color: #fff; position: relative; z-index: 2; clear: both; padding: 0px; margin-top: -500px; min-height: 350px; }
.LayoutBottom .fullwrap { background: url(/shared/themes/Element/images/footerbg.png) repeat-x; padding: 5px; min-height: 400px; position: relative; }
.DoubleLeft .LayoutLeftColumn { float: left; }
.DoubleLeft .LayoutRightColumn { float: left; }
.DoubleRight .LayoutLeftColumn { float: right; }
.DoubleRight .LayoutRightColumn { float: right; }
.LeftAndRightColumn .LayoutLeftColumn { float: left; }
.LeftAndRightColumn .LayoutRightColumn { float: right; }
.LeftColumn .LayoutLeftColumn { float: left; }
.RightColumn .LayoutRightColumn { float: right; }
.OneColumn .LayoutContent { padding: 0 20px; }
.OneColumn .LayoutContentInner { width: 100%; padding: 0; }
.LayoutContent { padding: 0 5px; }
.LayoutTopRight .Control { text-align: right; }
.LayoutMiddle { background: #ffffff; border-left: 1px solid #d4dada; border-right: 1px solid #d4dada; margin: 0 auto; padding-bottom: 500px; padding-top: 100px; position: relative; top: -100px; z-index: 0; }
.LayoutTop .inner { position: relative; }
.LayoutBottom .inner { }
.FooterTop { background: url(/Shared/Themes/Element/images/footergrad.png) repeat-x bottom; min-height: 100px; }
.pagewidth { width: 960px; margin: 0 auto; }
.FloatingSideBar { width: 273px; position: absolute; right: -273px; }
.FloatingSideBar .top { background: url(/shared/themes/Element/images/rightsidetop.png) no-repeat; height: 31px; }
.FloatingSideBar .middle { background: url(/shared/themes/Element/images/rightsidemid.png) repeat-y; text-align: center; padding: 0 10px 0 20px; }
.FloatingSideBar .bottom { background: url(/shared/themes/Element/images/rightsidebottom.png) no-repeat; height: 42px; }
.FooterLeft { float: left; width: 49%; }
.FooterRight { float: right; width: 49%; }
/* [/Layout] */
/* [Widgets] */
.Control { margin: 0 0 10px; padding: 5px; }
.ControlItem { vertical-align: top; }
.ControlHeader { padding: 5px 10px 5px 15px; background: #1B1D1A url(/shared/themes/Element/images/widgetheader.png) repeat-x; font-weight: bold; color: #ffffff; line-height: 25px; vertical-align: middle; font-size: 15px; border-radius: 5px; }
.HorizontalNav { margin: 10px 0; padding: 10px; text-align: center; }
.HorizontalNavSeperator { display: inline; }
.HorizontalNavItem a { padding: 19px 13px; line-height: 31px; color: #fff; }
.HorizontalNavItem a:hover { color: #000; text-decoration: none; }
.HorizontalNavItem { display: inline-block; *display:inline; zoom:1; }
.HorizontalNavItem a:hover, .HorizontalNavItem:hover > a, .HorizontalNavItemHover > a { }
.HorizontalNavItem > .SubMenu { margin-top: 0px; *margin-top: -18px; }
.HorizontalNavItem .SubMenu { position: absolute; left: -9999px; top: 100%; background: #353635; z-index: 100; }
.HorizontalNavItem:hover .SubMenu .SubMenu, .HorizontalNavItemHover .SubMenu .SubMenu { left: -9999px; }
.HorizontalNavItem .SubMenuItem a { display: block; min-width: 150px;padding:19px 13px; color: #fff; line-height: 15px; }
.HorizontalNavItem .SubMenuItem a:hover, .HorizontalNavItem .SubMenuItem:hover > a, .HorizontalNavItem .SubMenuItemHover > a { background: #111; color: #fff; }
.HorizontalNavItem:hover .SubMenu, .HorizontalNavItemHover .SubMenu { left: 0; }
.HorizontalNavItem .SubMenuItem, .HorizontalNav, .HorizontalNavItem { position: relative; z-index: 10; }
.HorizontalNavItem .SubMenuItem:hover .SubMenu, .HorizontalNavItem .SubMenuItemHover .SubMenu { left: 100% !important; top: 0; }
.FeaturedItemsRating .StarRatings { float: none; margin: 0 auto; }
.FeaturedItemsDetails { text-align: center; }
.FeaturedItemsItem { position: relative; text-align: center; margin: 20px auto; width: 225px; height: 200px; }
.FeaturedItemsItem a { }
div.FeaturedItemsThumbnail, div.FeaturedItemsThumbNail { border: 1px solid #D3DEE0; border-radius: 10px; height: 180px; margin: 12px; padding: 10px; }
.FeaturedItemsPriceTab { position: absolute; bottom: 0; left: 0; background: url(/shared/themes/Element/images/pricetab2.png) no-repeat; height: 64px; width: 224px; }
.FeaturedItemsName { position: absolute; top: 15px; left: 10px; width: 112px; height: 30px; overflow: hidden; text-align: left; }
.lblPriceLabel { display: none; }
.FeaturedItemsPrice { position: absolute; top: 25px; right: 5px; font-size: 20px; font-weight: bold; color: #fff; }
.FeaturedCats { margin: 0; padding: 0; list-style: none; }
.FeaturedCats li { margin: 3px 5px; width: 17%; height: 15px; overflow: hidden; float: left; padding: 5px; border-bottom: 1px solid #D3DEE0; }
.FeaturedCats li a { color: #333; }
.DealOfMonthThumbnail { padding: 10px; }
.DealOfMonthName a { color: #333; text-align: left; display: block; border-top: 1px solid #D3DEE0; padding: 10px 0 0; }
.DealOfMonthPrice { text-align: left; }
.DealOfMonthPrice { border-bottom: 1px solid #D3DEE0; padding: 10px 0; }
.DealOfMonthPrice .lblPriceLabel { color: #333; display: inline; }
.DealOfMonthPrice .lblPrice { color: #FF9C0D; font-size: 24px; font-weight: bold; }
.FloatingSideBar .Control { margin: 0; }
/* [/Widgets] */
/* [ProductDetails] */
.ProductDetails { margin: 0 0 0 365px; text-align: right; }
.ProductDetails .inner { float: left; width: 100%; }
.ProductDetailsCategoryTrail { display: block; margin-bottom: 15px; }
.ProductDetailsAdToCartArea { clear: both; }
.ProductDetailsReviewsSocial { border: 1px solid #D3DEE0; clear: both; border-left: none; border-right: none; padding-top: 5px; padding-bottom: 5px; margin-bottom: 10px; }
.ProductDetailsSocialBookmarks { margin: 10px 0; float: right; }
.ProductDetailsProductName { text-align: left; background: url(/shared/themes/Element/images/productname.png) repeat-x; line-height: 43px; padding: 0 0 0 10px; color: #000; font-size: 22px; border-radius: 8px; }
.ProductDetailsLeft { float: left; width: 345px; text-align: center; }
.ProductDetailsPhoto { width: 345px; border-radius: 8px; border: 1px solid #D3DEE0; }
.ProductDetailsPhoto img { max-width: 250px; max-height: 250px; }
.ProductDetailsPhotoArea table { width: 100%; margin: 10px 0 0 0; }
.ProductDetailsLowCost { float: left; }
div.ProductDetailsThumbPhoto { position: relative; height: 90px; margin: 10px; border: 1px solid #D3DEE0; border-radius: 8px; }
img.ProductDetailsThumbPhoto { max-width: 110px; max-height: 90px; }
.ProductDetailsManufacturerName { min-height: 40px; text-align: left; }
#imgMfgLogo { max-width: 150px; }
.ProductDetailsItemNrAvailability { float: left; text-align: left; padding: 10px 20px 10px 0; border-top: 1px solid #D3DEE0; }
div.ProductDetailsQuantity { float: right; }
.ProductDetailsQuantityTextBox { width: 40px; text-align: center; }
.ProductDetailsVariations select { float: right; clear: right; }
span.ProductDetailsVariations { float: right; clear: right; margin: 10px 0 2px; font-weight: bold; }
.ProductDetailsVariations table { float: right; clear: right; }
.ProductDetailsTabs { margin: 10px 0; text-align: left; }
.ProductGroup { border: 1px solid #ccc; margin: 5px 0; font-size: 10px; width: 100%; }
.ProductGroup td { padding: 5px; }
.ProductGroupHeader { background: #666; color: #fff; }
.ProductGroupHeader th { padding: 5px; }
span.ProductGroupItem { text-align: center; }
.ProductGroupAlternatingItem { background: #ccc; }
span.ProductGroupAlternatingItem { text-align: center; }
#tdProductGroupDisplayQuantity { text-align: center; }
#tdProductGroupDisplayAltQuantity { text-align: center; }
.ProductDetailsQuantityPriceTable { width: 100%; margin-bottom: 15px; }
.ProductDetailsQuantityPriceQuantity { background: #ccc; color: #000; padding: 5px; }
.ProductDetailsQuantityPricePrice { padding: 15px 5px; border-left: 1px solid #ccc; }
.ProductDetailsQuantityPriceQuantityLabel { background: #ccc; color: #000; padding: 5px; }
.ProductDetailsQuantityPricePriceLabel { padding: 15px 5px; }
.ProductDetailsQuantityPricePriceLabel p { padding: 0; }
.ProductDetailsPricing { float: right; padding: 10px 0 10px 20px; border-top: 1px solid #D3DEE0; text-align: right; }
.ProductDetailsPrice { font-weight: bold; }
.ProductDetailsPriceArea { display: block; }
.ProductDetailsRetail { text-decoration: line-through; font-weight: bold; }
.ProductDetailsRetailPriceArea { display: block; }
.ProductDetailsSalePriceArea { display: block; }
.ProductDetailsSalePrice { font-weight: bold; }
.ProductDetailsWasPriceArea { display: block; }
.ProductDetailsWasPrice { text-decoration: line-through; font-weight: bold; }
.ProductDetailsReviewDisplay { float: left; }
.ProductDetailsReviewRatingStars, .ProductDetailsReviewRatingStars .StarRatings { float: left; }
.ProductDetailsReviewRatingCount { clear: left; text-align: center; font-size: 10px; }
.ProductDetailsAttributesTD { padding: 2px 5px; border: 1px solid #ccc; }
.ProductDetailsAttributesGroup { }
.ProductDetailsAttributesLink { }
.ProductDetailsAttributesDiv { }
.ProductDetailsAttributesValue { }
.needsSelection { background-color: #FFAFAF; border: 1px solid #8F2323; color: #7F0000; }
.SwatchNotApplicable { opacity:0.5; pointer-events: none; }
/* [/ProductDetails] */
/* [Catalog] */
/* [/Catalog] */
/* [Category] */
#dlCategory td { vertical-align: top; }
.CategoryItem { position: relative; text-align: center; margin: 20px auto; width: 225px; height: 370px; }
.CategoryItem a { color: #333; }
div.CategoryItemThumbnail { position: relative; border: 1px solid #D3DEE0; border-radius: 10px; height: 350px; margin: 12px; padding: 10px; }
.CategoryPriceTab { position: absolute; bottom: 0; left: 0; background: url(/shared/themes/Element/images/pricetab2.png) no-repeat; height: 240px; width: 224px; }
.CategoryItemName { position: absolute; top: 15px; left: 10px; width: 112px; height: 28px; overflow: hidden; text-align: left; }
.CategoryProductPriceLabel { display: none; }
.CategoryItemPrice { position: absolute; top: 25px; right: 5px; font-size: 20px; font-weight: bold; color: #fff; }
.CategoryItemInformation { font-size: 14px; position: absolute; top: 65px; left: 25px; text-align: left; line-height: 25px; }
.CategoryPageNavigation { background: url(/shared/themes/Element/images/widgetheader.png) repeat-x #1B1D1A; border-radius: 5px; color: #fff; padding: 5px; margin: 5px 0; }
.CategoryPageNavigation a { color: #fff; }
.CategoryPageNumberPerPage { font-weight: bold; }
.ProductListPagingCurrentPageBox { width: 30px; border: 1px solid #ccc; }
.CategoryChildCategories { float: left; text-align: center; width: 33%; height: 150px; }
.CategoryCategoryThumbnail img { max-width: 120px; max-height: 120px; }
.CategoryProductRow { padding: 5px; margin: 5px 0; }
.CategoryProductDetails { margin: 0 130px; font-size: 10px; padding: 5px; border: 1px solid #ccc; }
.CategoryProductNameLink a { font-size: 16px; font-weight: bold; padding: 10px 0; display: block; }
.CategoryProductPricingInfo { float: right; width: 130px; text-align: right; }
.CategoryProductQuantityTextbox { width: 40px; text-align: center; }
div.CategoryProductThumbnailArea { width: 130px; text-align: center; margin: 0 auto; }
.CategoryProductThumbnail img { max-width: 125px; max-height: 125px; }
.StarRatings { float: right; }
.CategoryProductRatingText { clear: right; }
.CategoryProductAddToCartArea { position: absolute; bottom: 0; height: 80px; width: 125px; left: 50px; font-size: 14px; }
.CategoryProductRetailPrice { text-decoration: line-through; }
.CategoryProductWasPrice { text-decoration: line-through; }
/* [/Category] */
/* [ShoppingCart] */
table.ShoppingCart { border: 1px solid #666; width: 100%; }
.ShoppingCart td, td.ShoppingCart { text-align: left; border: 1px solid #666; padding: 10px; }
.ShoppingCartHeader { background: #666; color: #fff; font-weight: bold; padding: 5px; }
.ShoppingCartThumbnail { float: left; }
.ShoppingCartPrice { font-weight: bold; }
td.ShoppingCartTotals { text-align: right; }
td.ShoppingCartDiscount { text-align: right; }
.ShoppingCartClear { float: left; text-align: left; }
.ShoppingCartChildBranch { float: left; vertical-align: top; }
.dvChkSelect { display: inline; }
#dvInlineCalculateShippingForm { display: inline; }
#dvInlinePostalcode { float: left; display: inline; }
.PayPalGoogleCO { text-align: center; }
.ShoppingCartError { text-align: center; }
#dvCalculateShippingForm { text-align: left; width: 330px; }
.ShippingCalcLabel { font-weight: bold; text-align: center; }
.ShippingCalcField { padding: 3px; clear: both; }
.ShippingCalcFieldLabel { display: block; float: left; width: 90px; text-align: right; padding: 5px; }
.ShoppingCartSelectCheckbox { border: 0; }
.ShoppingCartQtyTextbox { width: 40px; }
.ShoppingCartInlineCalculateShippingForm { display: inline; }
.ShoppingCartInlinePostalCode { display: inline; float: left; }
.ShoppingCartInlinePostalCodeTextbox { width: 72px; }
.ShoppingCartCouponCodeTextbox { width: 80px; }
.ShoppingCartSavedCartText { text-align: center; }
/* [/ShoppingCart] */
/* [CheckOut] */
.CheckOutHeader { font-weight: bold; font-size: 16px; }
.CheckOutSubHeader { font-weight: bold; font-size: 14px; margin: 20px 0 10px 0; }
.CardFieldHeaders { background: #666; color: #fff; padding: 5px; }
/* [/CheckOut] */
/* [ShippingEstimation] */
.ShippingEstimationZipTextbox { width: 70px; }
/* [/ShippingEstimation] */
/* [WriteReview] */
.ProductReviewFieldLabel { padding: 5px 0 0 0; }
.ProductReviewChangeEmail { font-size: 10px; }
.WriteReviewEmailAddress { width: 300px; }
.WriteReviewChangeEmailAddressText { font-size: 10px; }
.WriteReviewNameTextbox { width: 200px; }
.WriteReviewTitleTextbox { width: 100%; }
/* [/WriteReview] */
/* [ProductReviews] */
/* [/ProductReviews] */
/* [CMS] */
/* [/CMS] */
/* [Attribute] */
/* [/Attribute] */
/* [Manufacturer] */
/* [/Manufacturer] */
/* [Search] */
.CMSPage { margin: 5px 0; }
.CMSPageTitleLine a { }
.CMSSearchRelevance { font-size: 10px; }
.CMSPageDescription { font-size: 10px; margin: 5px; color: #333; }
.SearchRelevance { }
.CategoryItem { position: relative; text-align: center; margin: 20px auto; width: 225px; height: 370px; }
.CategoryPriceTab { position: absolute; bottom: 0; left: 0; background: url(/shared/themes/Element/images/pricetab2.png) no-repeat; height: 240px; width: 224px; }
.CategoryItemName { position: absolute; top: 15px; left: 10px; width: 112px; height: 28px; overflow: hidden; text-align: left; }
.CategoryItemPrice { position: absolute; top: 25px; right: 5px; font-size: 20px; font-weight: bold; color: #fff; }
.CategoryItemInformation { font-size: 14px; position: absolute; top: 65px; left: 25px; text-align: left; line-height: 25px; }
.CategoryPageNavigation { background: url(/shared/themes/Element/images/widgetheader.png) repeat-x #1B1D1A; border-radius: 5px; color: #fff; padding: 5px; margin: 5px 0; }
.CategoryPageNumberPerPage { font-weight: bold; }
.CategoryProductRow { padding: 5px; margin: 5px 0; }
.CategoryProductAddToCartArea { position: absolute; bottom: 0; height: 80px; width: 125px; left: 50px; font-size: 14px; }
/* [/Search] */
/* [Receipt] */
.LogoText { font-size: Large; font-weight: bold; }
.StoreInfoText { font-size: 14px; }
.ReceiptPaymentMethodText { font-size: 8px; }
.ReceiptHeader { background: #333; color: #fff; }
.ReceiptText { padding: 4px; text-align: left; }
.ReceiptItemTable td { padding: 5px; }
/* [/Receipt] */
/* [OnePageCheckOut] */
.ExistingAccountArea { height: 45px; }
.AccountPasswordText { padding-left: 2px; }
.ShippingMethodArea { float: left; width: 50%; }
.ShippingDropDownArea { padding-left: 10px; }
.ShippingRatesText { text-align: center; }
.MultipleShippingAddressesText { padding-left: 10px; }
.PaymentMethodArea { width: 49%; float: right; }
.CreditCardTextbox { width: 130px; }
.ExplainCVVText { font-size: 10px; }
.EcheckNameTextbox { width: 130px; }
.EcheckStateTextbox { width: 60px; }
.EcheckBankTextbox { width: 150px; }
.GiftcardTextbox { width: 130px; }
.GiftcardDropDown { width: 200px; }
.GiftcardAddTextbox { width: 150px; }
.CouponTextbox { width: 80px; }
.PublicCommentsArea { width: 100%; float: left; }
.PublicComments { margin-top: 4px; width: 100%; height: 80px; }
.OrderGiftingArea { width: 49%; float: right; }
.GiftMessageArea { margin-top: 12px; }
.GiftMessage { margin-top: 4px; width: 100%; height: 50px; }
.ShoppingCartHeaderText { text-align: center; }
/* [/OnePageCheckOut] */
/* [OnePagePayment] */
.InvoiceTextbox { width: 130px; }
.PaymentAmountTextbox { width: 80px; }
/* [/OnePagePayment] */
/* [CustomerLogin] */
.EmailAddressTextbox { width: 130px; }
.LoginFieldDesc { font-weight: normal; width: 140px; float: left; margin: 0 0 20px 0; }
.LoginLeftSide { border: #cccccc 1px solid; float: left; width: 49%; height: 240px; }
.LoginRightSide { border: #cccccc 1px solid; float: right; width: 49%; height: 240px; }
.LoginLeftSide .inner, .LoginRightSide .inner { margin: 10px; }
.LoginLeftSide .button, .LoginRightSide .button { text-align: center; }
.ForgotPassLink { clear: both; }
/* [/CustomerLogin] */
/* [CustomerLogout] */
/* [/CustomerLogout] */
/* [ChangePassword] */
/* [/ChangePassword] */
/* [LostPassword] */
/* [/LostPassword] */
/* [MyAccount] */
.MyAccountShowHideTable { border-width: 0px; width: 100%; border-collapse: collapse; display: none; }
/* [/MyAccount] */
/* [EditLogin] */
/* [/EditLogin] */
/* [NewCustomer] */
/* [/NewCustomer] */
/* [BillingAddress] */
.AddressEditorAddressList { padding-bottom: 10px; }
.RequiredField { color: red; }
.AddressEditorEmailTextbox { width: 160px; }
.AddressEditorPhoneTextbox { width: 112px; }
.AddressEditorZipCodeTextbox { width: 112px; }
.AddressEditorZipCodePlus4Textbox { width: 56px; }
.AddressEditorMailingListCheckbox { text-align: left; }
/* [/BillingAddress] */
/* [ShippingAddress] */
/* [/ShippingAddress] */
/* [ShippingMethod] */
/* [/ShippingMethod] */
/* [PaymentMethod] */
/* [/PaymentMethod] */
/* [OrderDetails] */
.OrderDetailsPublicComments { margin-top: 4px; width: 98%; height: 40px; }
.OrderDetailsGiftMessage { margin-top: 4px; width: 98%; height: 40px; }
.OrderDetailsTotalText { font-size: 10px; }
.OrderDetailsAdditionalFeesText { font-size: 8px; }
/* [/OrderDetails] */
/* [EnterCVV] */
.CVVWidth { width: 40px; }
/* [/EnterCVV] */
/* [ViewOrder] */
.SpecialInstructionsArea { display: inline-block; text-align: left; }
.ViewOrderHeader { background: #333; color: #fff; }
.ViewOrderText { padding: 4px; text-align: left; }
.ViewOrderTable td { padding: 5px; }
/* [/ViewOrder] */
/* [MailingListRemove] */
/* [/MailingListRemove] */
/* [Error] */
/* [/Error] */
/* [AffiliateCenter] */
/* [/AffiliateCenter] */
/* [eProduct] */
/* [/eProduct] */
/* [CustomForm] */
/* [/CustomForm] */
/* [MicroStoreHomePage] */
/* [/MicroStoreHomePage] */
/* [WishList] */
.Button { border: 2px solid #333; padding: 0; }
/* [/WishList] */
/* [SavedWishLists] */
.SavedWishCheckbox { border: 0; }
/* [/SavedWishLists] */
/* [SavedWishListDetail] */
/* [/SavedWishListDetail] */
/* [StorePassword] */
/* [/StorePassword] */
/* [AddToCart] */
/* [/AddToCart] */
/* [PlaceOrder] */
/* [/PlaceOrder] */
/* [Register] */
.RegisterNameTextbox { width: 150px; }
.RegisterEmailTextbox { width: 200px; }
.RegisterStateTextbox { width: 201px; }
.RegisterFaxTextbox { width: 100px; }
.Notes { font-style: italic; font-size: 10px; }
.RegisterBox { padding: 0 0 15px 0; }
/* [/Register] */
/* [PicturePopup] */
/* [/PicturePopup] */
/* [PopUp] */
/* [/PopUp] */
/* [MayWeSuggest] */
.MayWeSuggest { padding: 20px; text-align: center; }
/* [/MayWeSuggest] */
/* [CategoryList] */
.CategoryListProduct { width: 100px; float: left; margin: 20px; text-align: center; }
.CategoryListProductPhoto { height: 100px; }
/* [/CategoryList] */
/* [AffiliateLogin] */
.AffiliateLoginBoxLeft { border: #cccccc 1px solid; float: left; width: 49%; height: 200px; }
.AffiliateLoginBoxRight { border: #cccccc 1px solid; float: right; width: 49%; height: 200px; }
.AffLoginBoxInner { padding: 10px; }
.LoginButtons { text-align: center; clear: both; }
.LoginFieldLabel { width: 120px; font-size: 10px; display: block; float: left; }
/* [/AffiliateLogin] */
/* [AffliateApplication] */
.AffiliateApplicationEmailTextbox { width: 300px; }
.AffiliateApplicationPasswordTextbox { width: 176px; }
.AffiliateApplicationPayeeTextbox { width: 300px; }
.AffiliateApplicationContactTextbox { width: 300px; }
.AffiliateApplicationWebsiteUrls { width: 352px; }
.AffiliateApplicationDescription { width: 352px; }
.AffiliateLoginTextbox { width: 120px; }
.AffiliateHelpTextLeft { font-size: 8px; text-align: left; }
.AffiliateHelpTextRight { font-size: 8px; text-align: right; }
.AffiliateLabel { text-align: right; }
/* [/AffliateApplication] */
/* [_404] */
/* [/_404] */
/* [FreeItemOrder] */
.QtyTextbox { width: 40px; }
.PasswordTextbox { width: 130px; }
/* [/FreeItemOrder] */
/* [SiteMap] */
.SiteMapLinks { margin: 0px; padding-left: 20px; }
.SiteMapLinks li { line-height: 18px; }
.SiteMapHeader { margin-top: 10px; margin-bottom: 5px; font-weight: bold; }
.SiteMapHeader a { font-weight: bold; }
/* [/SiteMap] */
/* [Invoice] */
/* [/Invoice] */
/* [UploadFile] */
/* [/UploadFile] */
/* [UploadFileSuccess] */
.UploadFileResult { height: 40px; text-align: center; color: red; }
/* [/UploadFileSuccess] */
/* [ExplainCVV] */
/* [/ExplainCVV] */
/* [ShoppingCartPrint] */
/* [/ShoppingCartPrint] */
/* [TellAFriend] */
/* [/TellAFriend] */
/* [SingleSignon] */
/* [/SingleSignon] */
/* [MyDownloads] */
/* [/MyDownloads] */
/* [Header] */
/* [/Header] */
/* [Footer] */
/* [/Footer] */
/* [LeftColumn] */
/* [/LeftColumn] */
/* [RightColumn] */
/* [/RightColumn] */
/* [SharedWishList] */
.SharedWishListCheckbox { border: 0; }
/* [/SharedWishList] */
/* [AttributeDropDownGroup] */
.AttributeDropDownGroupItem { white-space: nowrap; }
/* [/AttributeDropDownGroup] */
/* [AttributeGroupLinks] */
/* [/AttributeGroupLinks] */
/* [AttributeNavigationLinks] */
.BrowseByAttributeFilterButtonArea { }
.BrowseByAttHeader { }
/* [/AttributeNavigationLinks] */
/* [BannerAd] */
/* [/BannerAd] */
/* [CategoryDropDownFilter] */
.CategoryFilterDropDown { }
.CategoryFilterCategoryDropDown { }
.CategoryFilterAttributeDropDown { }
.CategoryFilterDropDownContainer { }
/* [/CategoryDropDownFilter] */
/* [CategoryNavigationLinks] */
.BrowseCategoryIcon { }
/* [/CategoryNavigationLinks] */
/* [Carousel] */
.CarouselPrevButton { }
.CarouselNextButton { }
.CarouselBuyNowLink { font-size: 7pt; text-decoration: none; }
.CarouselMoreLink { font-size: 7pt; text-decoration: none; }
/* [/Carousel] */
/* [CustomerLoginWidget] */
.CustomerLoginEmailTextbox { width: 180px; }
/* [/CustomerLoginWidget] */
/* [CustomWidget] */
/* [/CustomWidget] */
/* [DropDownNavigation] */
/* [/DropDownNavigation] */
/* [FileUpload] */
.UploadFileResult { height: 40px; text-align: center; color: red; }
/* [/FileUpload] */
/* [GlobalWidget] */
/* [/GlobalWidget] */
/* [HTML] */
/* [/HTML] */
/* [LargeShoppingCart] */
.ShoppingCart { }
.ShoppingCartHeader { }
.ShoppingCartClear { }
.ShoppingCartPrice { }
.ShoppingCartTotals { }
.ShoppingCartShippingInfo { }
.ShoppingCartDiscount { }
.ShoppingCartCouponCode { }
.ShoppingCartThumbnail { }
.ShoppingCartItemNr { }
.ShoppingCartVariations { }
.ShoppingCartPersonalize { }
.ShoppingCartGiftMessage { }
.ErrorText { }
.ShoppingCartSelectCheckbox { border: 0; }
.ShoppingCartQtyTextbox { width: 40px; }
.ShoppingCartInlineCalculateShippingForm { display: inline; }
.ShoppingCartInlinePostalCode { display: inline; float: left; }
.ShoppingCartInlinePostalCodeTextbox { width: 72px; }
.ShoppingCartCouponCodeTextbox { width: 80px; }
.ShoppingCartSavedCartText { text-align: center; }
/* [/LargeShoppingCart] */
/* [LinkGroup] */
/* [/LinkGroup] */
/* [MailingList] */
/* [/MailingList] */
/* [ManufacturerNavigationLinks] */
/* [/ManufacturerNavigationLinks] */
/* [MicroStoreDropDown] */
.MicroStoreDropDown { width: 160px; }
/* [/MicroStoreDropDown] */
/* [ProductDisplay] */
.FeaturedItemsRating { }
.FeaturedItemsDetails { }
.FeaturedItemsPriceHR { }
.FeaturedItemsPriceAlignment { }
.FeaturedItemsBuyMoreLinkHR { }
.FeatureItemsThumbNail { }
.PriceLabels { }
.ProductDisplayBuyNowLink { font-size: 7pt; text-decoration: none; }
.ProductDisplayMoreLink { font-size: 7pt; text-decoration: none; }
.ProductDisplayStatus { font-size: 7pt; text-decoration: none; }
.ProductDisplayBuyMoreArea { float: right; padding-right: 5px; display: inline; }
/* [/ProductDisplay] */
/* [ProductReviewsListing] */
.ProductReviewsListing ul { margin: 0 20px 15px; }
.ProductReviewDimensionName { }
.ProductReviewSummary { }
.ProductReviewWriteLink { }
.ProductReviewAllReviewsLink { }
.ProductReviewTitle { }
.ProductReviewRatings { }
.ProductReviewBody { }
.ProductReviewProsArea { }
.ProductReviewProsHeader { }
.ProductReviewPros { }
.ProductReviewConsArea { }
.ProductReviewConsHeader { }
.ProductReviewCons { }
.ProductReviewItemMeta { }
/* [/ProductReviewsListing] */
/* [QuickOrderEntry] */
.QuickOrderEntryHeader { text-align: center; }
.QuickOrderEntryItemNumberTextbox { width: 100px; }
.QuickOrderEntryQuantityTextbox { width: 50px; }
.QuickOrderEntryAddButton { text-align: center; }
/* [/QuickOrderEntry] */
/* [RepeatedList] */
/* [/RepeatedList] */
/* [RSSFeedReader] */
/* [/RSSFeedReader] */
/* [SearchBox] */
/* [/SearchBox] */
/* [SmallShoppingCart] */
.SmallCartItemLink { text-decoration: underline; }
.SmallCartQtyTextbox { border-color: #333333; border-width: 1px; border-style: Solid; font-size: 8pt; width: 30px; }
/* [/SmallShoppingCart] */
/* [Tabs] */
/* [/Tabs] */
/* [TreeNavigation] */
.Node { }
.NodeHover { }
.NodeSelected { }
.RootNode { }
.LeafNode { }
.Island { }
/* [/TreeNavigation] */
/* [WidgetArea] */
/* [/WidgetArea] */
/* [Widget266] */
.Control_266 { float: left; font-size: 14px; }
.storeinfo { list-style: none; margin: 0; padding: 0; }
.storeinfo li { float: left; width: 33%; text-align: left; color: #8EBC3E; }
.ControlHeader_266 { }
.ControlItem_266 { }
.ControlLink_266 { }
.ControlLink_266 a { }
.ControlLink_266 a:hover { }
.ControlLinkSeperator_266 { }
.ControlText_266 { }
.ControlInput_266 { }
.ControlFooter_266 { }
/* [/Widget266] */
/* [Widget267] */
.Control_267 { float: left; width: 43%; margin: 0 10px; }
.Control_267 h3 { padding: 0 0 10px 0; margin-bottom: 10px; border-bottom: 1px solid #999; line-height: 25px; }
.social { list-style: none; margin: 0; padding: 0; }
.social li { float: left; width: 50%; text-align: center; margin: 0; padding: 0; }
.ControlHeader_267 { }
.ControlItem_267 { }
.ControlLink_267 { }
.ControlLink_267 a { }
.ControlLink_267 a:hover { }
.ControlLinkSeperator_267 { }
.ControlText_267 { }
.ControlInput_267 { }
.ControlFooter_267 { }
/* [/Widget267] */
/* [Widget250] */
.Control_250 { text-align: right; }
#utilnav { text-align: center; font-weight: bold; font-size: 14px; }
.utillink { display: block; height: 40px; color: #8ebc3e; line-height: 42px; }
#utilnav #phone { float: left; text-align: right; padding-right: 10px; width: 180px; line-height: 42px; }
#utilnav #phone a { line-height: 38px; }
#utilmid { float: right; width: 110px; text-align: right; }
#utilmid a { margin-right: 17px; }
#utilright { float: right; width: 128px; }
.utillink2 { color: #ff9c0d; display: block; height: 40px; line-height: 42px; }
.cartitemscount { color: #fff; }
/* [/Widget250] */
/* [Widget270] */
.Control_270 { }
.ControlHeader_270 { background: none; padding: 0; }
.ControlItem_270 { }
.ControlLink_270 { }
.ControlLink_270 a { }
.ControlLink_270 a:hover { }
.ControlLinkSeperator_270 { }
.ControlText_270 { }
.ControlFooter_270 { }
/* [/Widget270] */
/* [Widget252] */
.Control_252 { position: absolute; right: 0; top: 0; background: url(/shared/themes/Element/images/search.png) no-repeat; padding: 0; height: 50px; width: 278px; margin: 0; }
.Control_252 input[type=text] { margin: 15px 0 15px 15px; width: 195px; background: none; border: none; }
.Control_252 input[type=submit] { opacity: 0; filter: alpha(opacity=0); }
.ControlHeader_252 { }
.ControlItem_252 { }
.ControlLink_252 { }
.ControlLink_252 a { }
.ControlLink_252 a:hover { }
.ControlLinkSeperator_252 { }
.ControlText_252 { }
.ControlInput_252 { }
.ControlFooter_252 { }
/* [/Widget252] */
/* [Widget253] */
.Control_253 { position: absolute; left: 0; top: 0; text-align: left; padding:0; margin: 0 318px 0 0; z-index:11; }
.ControlHeader_253 { }
.ControlItem_253 { }
.ControlLink_253 { padding: 10px 0;display:block;float:left; }
.ControlLink_253:hover { background: url("/shared/themes/Element/images/navhover2.png") repeat-x scroll right center transparent; }
.ControlLink_253 a { }
.ControlLink_253 a:hover, .ControlLink_253:hover > a { color: #fff; background: url("/shared/themes/Element/images/navhover1.png") no-repeat scroll left center transparent; text-decoration: none; }
.ControlLinkSeperator_253 { }
.ControlText_253 { }
.ControlInput_253 { }
.ControlFooter_253 { }
/* [/Widget253] */
/* [Widget254] */
.Control_254 { position: absolute; top: 50px; width: 100%; margin: 0; }
.ControlHeader_254 { }
.ControlItem_254 { }
.ControlLink_254 { }
.ControlLink_254 a { color: #000; }
.ControlLink_254 a:hover { }
.ControlLinkSeperator_254 { }
.ControlText_254 { }
.ControlInput_254 { }
.ControlFooter_254 { }
/* [/Widget254] */
/* [Widget271] */
.Control_271 { }
.CategoryFilterCategoryDropDown_271 { width: 210px; display: block; padding: 5px; border-radius: 5px; border: 1px solid #d3dee0; border-top: 2px solid #d3dee0; background: #fff; margin: 10px 0; }
.ControlHeader_271 { }
.ControlItem_271 { }
.ControlLink_271 { }
.ControlLink_271 a { }
.ControlLink_271 a:hover { }
.ControlLinkSeperator_271 { }
.ControlText_271 { }
.ControlInput_271 { }
.ControlFooter_271 { }
/* [/Widget271] */
/* [Widget9539] */
.Control_9539 { padding: 0; margin: 0; position: relative; top: -25px; }
.ControlHeader_9539 { }
.ControlItem_9539 { }
.ControlLink_9539 { }
.ControlLink_9539 a { }
.ControlLink_9539 a:hover { }
.ControlLinkSeperator_9539 { }
.ControlText_9539 { }
.ControlInput_9539 { }
.ControlFooter_9539 { }
/* [/Widget9539] */
/* [Widget272] */
.Control_272 { }
.Control_272 select { width: 210px; display: block; padding: 5px; border-radius: 5px; border: 1px solid #d3dee0; border-top: 2px solid #d3dee0; background: #fff; margin: 10px 0; }
.ControlHeader_272 { }
.ControlItem_272 { }
.ControlLink_272 { }
.ControlLink_272 a { }
.ControlLink_272 a:hover { }
.ControlLinkSeperator_272 { }
.ControlText_272 { }
.ControlInput_272 { }
.ControlFooter_272 { }
/* [/Widget272] */
/* [Widget124] */
.Control_124 { }
.ControlHeader_124 { }
.ControlItem_124 { }
.ControlLink_124 { color: #333; }
.ControlLink_124 a { }
.ControlLink_124 a:hover { }
.ControlLinkSeperator_124 { }
.ControlText_124 { }
.ControlInput_124 { }
.ControlFooter_124 { }
/* [/Widget124] */
/* [Widget123] */
.Control_123 { }
.ControlHeader_123 { }
.ControlItem_123 { }
.ControlLink_123 { color: #333; }
.ControlLink_123 a { }
.ControlLink_123 a:hover { }
.ControlLinkSeperator_123 { }
.ControlText_123 { }
.ControlInput_123 { }
.ControlFooter_123 { }
/* [/Widget123] */
/* [Widget269] */
.Control_269 { }
.ControlHeader_269 { }
.ControlItem_269 { }
.ControlLink_269 { }
.ControlLink_Link_269 { display: block; padding: 10px 15px; border-bottom: 1px solid #D3DEE0; color: #000; }
.ControlLink_Link_269:hover { background: #8EBC3E; text-decoration: none; }
.ControlLinkSeperator_269 { }
.ControlText_269 { }
.ControlInput_269 { }
.ControlFooter_269 { }
/* [/Widget269] */
/* [Widget127] */
.Control_127 { }
.ControlHeader_127 { }
.ControlItem_127 { }
.ControlLink_127 { }
.ControlLink_127 a { }
.ControlLink_127 a:hover { }
.ControlLinkSeperator_127 { }
.ControlText_127 { }
.ControlInput_127 { }
.ControlFooter_127 { }
/* [/Widget127] */
/* [Widget256] */
.Control_256 { margin: 0; padding: 10px 20px; }
.ControlHeader_256 { }
.ControlItem_256 { }
.ControlLink_256 { }
.ControlLink_256 a { }
.ControlLink_256 a:hover { }
.ControlLinkSeperator_256 { }
.ControlText_256 { }
.ControlInput_256 { }
.ControlFooter_256 { }
/* [/Widget256] */
/* [Widget265] */
.Control_265 { float: left; width: 43%; margin: 0 10px 20px 0; }
.ControlHeader_265 { background: none; padding: 0 0 10px 0; margin-bottom: 10px; border-bottom: 1px solid #999; border-radius: 0px; }
.ControlItem_265 { }
.ControlLink_265 { }
.ControlLink_265 a { display: block; border-bottom: 1px solid #999; color: #c76f05; padding: 8px 0; }
.ControlLink_265 a:hover { }
.ControlLinkSeperator_265 { }
.ControlText_265 { }
.ControlInput_265 { }
.ControlFooter_265 { }
/* [/Widget265] */
/* [Widget125] */
.Control_125 { }
.ControlHeader_125 { }
.ControlItem_125 { width: 235px; height: 220px; margin: 30px; border: 1px solid #D3DEE0; border-radius: 10px; position: relative; }
.Control_125 .CarouselProductName { margin: 10px 10px 0; display: block; height: 30px; overflow: hidden; }
.Control_125 .CarouselThumbnail { text-align: center; }
.Control_125 .CarouselPrice { position: absolute; right: -12px; bottom: 0; width: 136px; height: 62px; line-height: 62px; text-indent: 10px; color: #fff; font-size: 24px; font-weight: bold; background: url(/shared/themes/Element/images/pricetab1.png) no-repeat; }
.Control_125 a { color: #333; }
.ControlLink_125 { }
.ControlLink_125 a { }
.ControlLink_125 a:hover { }
.ControlLinkSeperator_125 { }
.ControlText_125 { }
.ControlInput_125 { }
.ControlFooter_125 { }
.CarouselPrevButton_125 { }
.CarouselNextButton_125 { }
.CarouselBuyNowLink_125 { font-size: 7pt; text-decoration: none; }
.CarouselMoreLink_125 { font-size: 7pt; text-decoration: none; }
/* [/Widget125] */
/* [Buttons] */
.ThemeButton { border: none; cursor: pointer; font-size: 0; line-height: 0; color: transparent; background-color: transparent; }
.ApplyCodeThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnAdd.gif'); width: 80px; height: 25px; }
.AddToCartThemeButton { background: url('/Shared/Themes/Element/Buttons/addtocart.png'); width: 202px; height: 76px; margin-top: 15px; }
.CategoryAddToCartThemeButton, .CategoryProductAddToCart { background: url(/shared/themes/Element/buttons/addtocartcat.png); width: 125px; height: 52px; margin-top: 0; }
.CancelThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnCancel.gif'); width: 75px; height: 25px; }
.ChangeThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnChange.gif'); width: 75px; height: 25px; }
.CheckoutThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnCheckOut.gif'); width: 170px; height: 30px; }
.ContinueThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnContinue.gif'); width: 75px; height: 25px; }
.ContinueShoppingThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnContinueShopping.gif'); width: 130px; height: 30px; }
.DeleteThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnDelete.gif'); width: 75px; height: 25px; }
.EditThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnEdit.gif'); width: 75px; height: 25px; }
.GoThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnGo.gif'); width: 22px; height: 22px; }
.LogoutThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnLogout.gif'); width: 75px; height: 25px; }
.MoveToCartThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnMoveToCart.gif'); width: 105px; height: 30px; }
.MoveToWishListThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnMoveToWishlist.gif'); width: 120px; height: 30px; }
.PlaceOrderThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnPlaceOrder.gif'); width: 145px; height: 35px; }
.RemoveFromCartThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnRemoveFromCart.gif'); width: 75px; height: 25px; }
.SelectPaymentThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnSelectPayment.gif'); width: 75px; height: 25px; }
.SignInThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnSignIn.gif'); width: 115px; height: 30px; }
.UpdateCartThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnUpdateCart.gif'); width: 100px; height: 30px; }
.UseThisAddressThemeButton { background-image: url('/Shared/Themes/Element/Buttons/btnUseThisAddress.gif'); width: 115px; height: 25px; }
/* [/Buttons] */
/* [Widget263] */
.Control_263 { padding-left: 15px; }
.Control_263 h3 { padding: 0 0 10px 0; margin-bottom: 10px; border-bottom: 1px solid #999; line-height: 25px; }
.ControlHeader_263 { }
.ControlItem_263 { }
.ControlLink_263 { }
.ControlLink_263 a { }
.ControlLink_263 a:hover { }
.ControlLinkSeperator_263 { }
.ControlText_263 { }
.ControlInput_263 { }
.ControlFooter_263 { }
/* [/Widget263] */
/* [Widget158] */
.Control_158 { clear: both; width: 345px; }
.ControlHeader_158 { background: none; border-bottom: 1px solid #D3DEE0; border-radius: 0; color: #000000; margin: 0; text-align: left; }
.ControlItem_158 { }
.ControlLink_158 { }
.ControlLink_158 a { }
.ControlLink_158 a:hover { }
.ControlLinkSeperator_158 { }
.ControlText_158 { }
.ControlInput_158 { }
.ControlFooter_158 { }
.FeaturedItemsRating_158 { }
.FeaturedItemsDetails_158 { }
.FeaturedItemsPriceHR_158 { }
.FeaturedItemsPriceAlignment_158 { }
.FeaturedItemsBuyMoreLinkHR_158 { }
.FeaturedItemsThumbNail_158 { }
div.FeaturedItemsThumbNail_158 { height: 100px; text-align: center; margin: 20px 20px 0 0; }
.PriceLabels_158 { }
.ProductDisplayBuyNowLink_158 { font-size: 7pt; text-decoration: none; }
.ProductDisplayMoreLink_158 { font-size: 7pt; text-decoration: none; }
.ProductDisplayStatus_158 { font-size: 7pt; text-decoration: none; }
.ProductDisplayBuyMoreArea_158 { float: right; padding-right: 5px; display: inline; }
/* [/Widget158] */
/* [Widget156] */
.Control_156 { }
.ControlHeader_156 { border: 1px solid #D3DEE0; background: none; border-left: none; border-right: none; color: #000000; }
.ControlItem_156 { }
.ControlLink_156 { }
.ControlLink_156 a { }
.ControlLink_156 a:hover { }
.ControlLinkSeperator_156 { }
.ControlText_156 { }
.ControlInput_156 { }
.ControlFooter_156 { }
.ProductReviewDimensionName_156 { display: none; }
.ProductReviewSummary_156 { }
.ProductReviewWriteLink_156 { }
.ProductReviewAllReviewsLink_156 { }
.ProductReviewTitle_156 { }
.ProductReviewRatings_156 { }
.ProductReviewBody_156 { }
.ProductReviewProsArea_156 { }
.ProductReviewProsHeader_156 { }
.ProductReviewPros_156 { }
.ProductReviewConsArea_156 { }
.ProductReviewConsHeader_156 { }
.ProductReviewCons_156 { }
.ProductReviewItemMeta_156 { }
/* [/Widget156] */
/* [Widget119] */
.Control_119 { background: url(/shared/themes/Element/images/bannergreen.png); width: 569px; height: 63px; position: absolute; z-index: 5; left: 31px; top: 245px; padding: 0; }
.Control_119 a { margin-right: 15px; font-size: 13px; color: #374b0f; font-weight: bold; }
.Control_119 img { vertical-align: bottom; }
.ControlHeader_119 { }
.ControlItem_119 { }
.ControlLink_119 { }
.ControlLink_119 a { }
.ControlLink_119 a:hover { }
.ControlLinkSeperator_119 { }
.ControlText_119 { }
.ControlInput_119 { }
.ControlFooter_119 { }
/* [/Widget119] */
/* [Slideshow] */
.Slideshow { position: relative; }
.SlideList, Slide { margin: 0; padding: 0; list-style: none; }
.Slide { overflow: hidden; }
.SlideshowButtons { margin: 1em 0; padding: 0; position: relative; bottom: 4em; margin-left: 1em; }
.SlideshowButton { margin: 0 10px 0 0; padding: 0; float: left; list-style: none; height: 28px; line-height: 28px; }
.SlideshowButtonLink { float: left; height: 28px; line-height: 28px; border: 1px solid#ccc; background: #DAF3F8; color: #555; padding: 0 10px; text-decoration: none; }
.SlideshowButtonLinkCurrent { background: #5DC9E1; color: #fff; }
.SlideshowButtonLink:focus { outline: none; }
.SlideshowPrevious {position:absolute;left:5px;background:#666;color:#fff;}
.SlideshowNext {position:absolute;right:5px;background:#666;color:#fff;}
.SlideshowPreviousLink {color:#fff;padding:5px;display:block;}
.SlideshowNextLink {color:#fff;padding:5px;display:block;}
/* [/Slideshow] */
/* [Widget120] */
.Control_120 { margin: -20px 20px 0; padding: 0; }
.ControlHeader_120 { }
.ControlItem_120 { }
.ControlLink_120 { }
.ControlLink_120 a { }
.ControlLink_120 a:hover { }
.ControlLinkSeperator_120 { }
.ControlText_120 { }
.ControlInput_120 { }
.ControlFooter_120 { }
.Slideshow_120 { position: relative; }
.SlideList_120 { margin: 0; padding: 0; list-style: none; }
.Slide_120 { overflow: hidden; }
.SlideshowButtons_120 { margin: 1em 0; padding: 0; position: relative; bottom: 4em; margin-left: 1em; }
.SlideshowButton_120 { margin: 0 10px 0 0; padding: 0; float: left; list-style: none; height: 28px; line-height: 28px; }
.SlideshowButtonLink_120 { float: left; height: 28px; line-height: 28px; border: 1px solid#ccc; background: #DAF3F8; color: #555; padding: 0 10px; text-decoration: none; }
.SlideshowButtonLinkCurrent_120 { background: #5DC9E1; color: #fff; }
.SlideshowButtonLink:focus_120 { outline: none; }
/* [/Widget120] */
/* [Widget247] */
.Control_247 { display: inline; }
.storename { display: inline; font-size: 50px; line-height: 100px; text-decoration: none !important; color: #8ebc3e; padding: 0 0 0 30px; }
a.storename { padding: 0; }
/* [/Widget247] */
/* [ImageLogo] */
/* [/ImageLogo] */
/* [Widget248] */
.Control_248 { display: inline; }
/* [/Widget248] */
/* [BlogPost] */
.CommentReplies { margin-left: 100px; }
/* [/BlogPost] */
/* [ProductCompare] */
.product-compare-table { }
.product-compare-table tr > th:first-child:not(:last-child) { border-right: 1px solid #ccc; }
.product-compare-table tr > td:nth-child(2n), .product-compare-table tr > th:nth-child(2n) { background: #f9f9f9; }
.remove-link { top: -5px; right: -5px; }
.remove-link a { color: inherit; font-size: 16px; display: block; height: 20px; width: 20px; line-height: 20px; }
.remove-link a:hover { text-decoration: none; background: #666; color: #fff; border-radius: 25px; }
/* [/ProductCompare] */
.ShippingSelect input[type="radio"] + label { margin-left: 1em; } | 0.4917 | 0.153803 |
.tab-head h2 {
border-bottom: solid cornflowerblue 1px;
/* border-left: solid cornflowerblue 1px; */
width: 33%;
height: 50px;
line-height: 50px;
margin: 0;
/* float: left; */
text-align: center;
display: inline-block
}
.tab-content {
/* border: solid cornflowerblue 1px; */
width: 100%;
display: block
/* height: 100px; */
}
.tab-content div {
display: none;
}
.selected {
/* background-color: #98B8F0; */
border-bottom: solid cornflowerblue 3px!important;
/* border-radius: 4px; */
}
.tab-content .show {
display: block;
}
.operation {
margin: 10px 0;
background-color: #f3f3f3;
border-radius: 4px;
padding: 10px;
}
.operation span {
display: inline-block;
width: 24%;
/* display: block; */
word-break: break-all;
word-wrap: break-word;
vertical-align: top;
/* text-align: center */
}
.operation span:nth-child(odd) {
text-align: right
}
.operation span:nth-child(even) {
text-align: left
}
.workstate {
margin: 10px 0;
background-color: #87BCE7;
color: white!important;
border-radius: 4px;
padding: 10px;
}
ul {
padding: 10px;
background-color: #B4B4B4;
border-radius: 4px;
}
.yellow {
background-color: #eec500!important;
}
.blue {
background-color: #0091e3!important;
}
.green {
background-color: #00bf13!important;
}
.red {
background-color: #ca2000!important;
}
.origin {
background-color: #00bf13!important;
color: white!important;
// float: right;
cursor: pointer;
outline: none;
}
.stop {
background-color: #eec500!important;
color: white!important;
cursor: pointer;
outline: none;
}
.recovery {
background-color: #0091e3!important;
color: white!important;
cursor: pointer;
outline: none;
}
.file {
background-color: #0078ff!important;
color: white!important;
cursor: pointer;
outline: none;
}
.restart {
background-color: #00bf13!important;
color: white!important;
cursor: pointer;
outline: none;
}
.kill {
background-color: #ca2000!important;
color: white!important;
cursor: pointer;
outline: none;
}
.buttonGroup {
margin: 10px 0;
background-color: #f3f3f3;
border-radius: 4px;
padding: 10px;
}
.disable-button {
opacity: 0.5;
cursor: not-allowed!important;
}
.stop:hover {
background-color: #ddb800!important;
}
.recovery:hover {
background-color: #0082ce!important;
}
.origin:hover,
.restart:hover {
background-color: #00a811!important;
}
.kill:hover {
background-color: #b41e00!important;
}
.stop:active,
.recovery:active,
.restart:active,
.kill:active,
.origin:active {
transform: translateY(4px);
}
.disable-button:active {
transform: translateY(0px)!important;
} | apps/css/jobs.css | .tab-head h2 {
border-bottom: solid cornflowerblue 1px;
/* border-left: solid cornflowerblue 1px; */
width: 33%;
height: 50px;
line-height: 50px;
margin: 0;
/* float: left; */
text-align: center;
display: inline-block
}
.tab-content {
/* border: solid cornflowerblue 1px; */
width: 100%;
display: block
/* height: 100px; */
}
.tab-content div {
display: none;
}
.selected {
/* background-color: #98B8F0; */
border-bottom: solid cornflowerblue 3px!important;
/* border-radius: 4px; */
}
.tab-content .show {
display: block;
}
.operation {
margin: 10px 0;
background-color: #f3f3f3;
border-radius: 4px;
padding: 10px;
}
.operation span {
display: inline-block;
width: 24%;
/* display: block; */
word-break: break-all;
word-wrap: break-word;
vertical-align: top;
/* text-align: center */
}
.operation span:nth-child(odd) {
text-align: right
}
.operation span:nth-child(even) {
text-align: left
}
.workstate {
margin: 10px 0;
background-color: #87BCE7;
color: white!important;
border-radius: 4px;
padding: 10px;
}
ul {
padding: 10px;
background-color: #B4B4B4;
border-radius: 4px;
}
.yellow {
background-color: #eec500!important;
}
.blue {
background-color: #0091e3!important;
}
.green {
background-color: #00bf13!important;
}
.red {
background-color: #ca2000!important;
}
.origin {
background-color: #00bf13!important;
color: white!important;
// float: right;
cursor: pointer;
outline: none;
}
.stop {
background-color: #eec500!important;
color: white!important;
cursor: pointer;
outline: none;
}
.recovery {
background-color: #0091e3!important;
color: white!important;
cursor: pointer;
outline: none;
}
.file {
background-color: #0078ff!important;
color: white!important;
cursor: pointer;
outline: none;
}
.restart {
background-color: #00bf13!important;
color: white!important;
cursor: pointer;
outline: none;
}
.kill {
background-color: #ca2000!important;
color: white!important;
cursor: pointer;
outline: none;
}
.buttonGroup {
margin: 10px 0;
background-color: #f3f3f3;
border-radius: 4px;
padding: 10px;
}
.disable-button {
opacity: 0.5;
cursor: not-allowed!important;
}
.stop:hover {
background-color: #ddb800!important;
}
.recovery:hover {
background-color: #0082ce!important;
}
.origin:hover,
.restart:hover {
background-color: #00a811!important;
}
.kill:hover {
background-color: #b41e00!important;
}
.stop:active,
.recovery:active,
.restart:active,
.kill:active,
.origin:active {
transform: translateY(4px);
}
.disable-button:active {
transform: translateY(0px)!important;
} | 0.493164 | 0.105349 |
.app__gallery {
flex-direction: row;
background: var(--color-black);
padding: 4rem 0 4rem 6rem;
}
.app__gallery-content {
flex: 1;
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
min-width: 500px;
padding-right: 2rem;
}
.app__gallery-content button {
margin-top: 1rem;
}
.app__gallery-images {
flex: 1;
display: flex;
flex-direction: row;
max-width: 50%;
position: relative;
}
.app__gallery-images_container {
display: flex;
flex-direction: row;
width: max-content;
overflow-x: scroll;
-ms-overflow-style: none;
scrollbar-width: none;
}
.app__gallery-images_container::-webkit-scrollbar {
display: none;
}
.app__gallery-images_card {
position: relative;
min-width: 301px;
height: 447px;
margin-right: 2rem;
}
.gallery__image-icon {
position: absolute;
color: #fff;
font-size: 2rem;
opacity: 0;
transition: 0.5s ease;
cursor: pointer;
}
.app__gallery-images_card img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 1;
transition: 0.5s ease;
}
.app__gallery-images_card:hover img {
opacity: 0.35;
}
.app__gallery-images_card:hover .gallery__image-icon {
opacity: 1;
}
.app__gallery-images_arrows {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 1rem;
position: absolute;
bottom: 5%;
}
.gallery__arrow-icon {
color: var(--color-golden);
font-size: 2rem;
cursor: pointer;
background: var(--color-black);
border-radius: 5px;
}
.gallery__arrow-icon:hover {
color: var(--color-white);
}
@media screen and (min-width: 2000px) {
.app__gallery-content button {
margin-top: 2rem;
}
.app__gallery-content {
min-width: 1000px;
padding-right: 4rem;
}
.app__gallery-images_card {
min-width: 400px;
height: 547px;
}
}
@media screen and (max-width: 1150px) {
.app__gallery {
flex-direction: column;
}
.app__gallery-images {
max-width: 100%;
margin: 5rem 0;
}
}
@media screen and (max-width: 850px) {
.app__gallery {
padding: 4rem 0 4rem 4rem;
}
}
@media screen and (max-width: 650px) {
.app__gallery {
padding: 4rem 0 4rem 2rem;
}
.app__gallery-content {
min-width: 100%;
}
.app__gallery-images_card {
min-width: 240px;
height: 320px;
}
} | src/container/Gallery/Gallery.css | .app__gallery {
flex-direction: row;
background: var(--color-black);
padding: 4rem 0 4rem 6rem;
}
.app__gallery-content {
flex: 1;
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
min-width: 500px;
padding-right: 2rem;
}
.app__gallery-content button {
margin-top: 1rem;
}
.app__gallery-images {
flex: 1;
display: flex;
flex-direction: row;
max-width: 50%;
position: relative;
}
.app__gallery-images_container {
display: flex;
flex-direction: row;
width: max-content;
overflow-x: scroll;
-ms-overflow-style: none;
scrollbar-width: none;
}
.app__gallery-images_container::-webkit-scrollbar {
display: none;
}
.app__gallery-images_card {
position: relative;
min-width: 301px;
height: 447px;
margin-right: 2rem;
}
.gallery__image-icon {
position: absolute;
color: #fff;
font-size: 2rem;
opacity: 0;
transition: 0.5s ease;
cursor: pointer;
}
.app__gallery-images_card img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 1;
transition: 0.5s ease;
}
.app__gallery-images_card:hover img {
opacity: 0.35;
}
.app__gallery-images_card:hover .gallery__image-icon {
opacity: 1;
}
.app__gallery-images_arrows {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 1rem;
position: absolute;
bottom: 5%;
}
.gallery__arrow-icon {
color: var(--color-golden);
font-size: 2rem;
cursor: pointer;
background: var(--color-black);
border-radius: 5px;
}
.gallery__arrow-icon:hover {
color: var(--color-white);
}
@media screen and (min-width: 2000px) {
.app__gallery-content button {
margin-top: 2rem;
}
.app__gallery-content {
min-width: 1000px;
padding-right: 4rem;
}
.app__gallery-images_card {
min-width: 400px;
height: 547px;
}
}
@media screen and (max-width: 1150px) {
.app__gallery {
flex-direction: column;
}
.app__gallery-images {
max-width: 100%;
margin: 5rem 0;
}
}
@media screen and (max-width: 850px) {
.app__gallery {
padding: 4rem 0 4rem 4rem;
}
}
@media screen and (max-width: 650px) {
.app__gallery {
padding: 4rem 0 4rem 2rem;
}
.app__gallery-content {
min-width: 100%;
}
.app__gallery-images_card {
min-width: 240px;
height: 320px;
}
} | 0.503174 | 0.059428 |
main{
background: none;
padding: 0;
border: 0;
box-shadow: none;
}
#article_header{
position: relative;
display: inline-flex;
box-sizing: border-box;
flex-direction: column;
height: auto;
width: 100%;
padding: 10px;
background: #ffffff;
margin-top: 5px;
border-radius: 5px 5px 0px 0px;
}
#article_title{
font-size: 26px;
word-wrap: break-word;
padding: 5px 0px 5px 0px;
font-weight: bold;
}
.category,
.language,
.software,
.github{
display: inline-block;
flex-wrap: wrap;
box-sizing: border-box;
font-size: 14px;
padding: 4px;
margin: 2px;
border: 1px solid #cccccc;
border-radius: 5px;
line-height: 14px;
align-items: center;
color: #666666;
font-weight: 500;
text-align: center;
text-decoration: none;
}
.github {
width: 200px;
}
.github label{
cursor: pointer;
}
.github img{
display: inline-block;
height: 24px;
}
#categories a,
#languages a,
#softwares a{
display: inline-block;
text-decoration: none;
}
::before{
display: inline-block;
vertical-align: middle;
margin-right: 5px;
}
.category::before{
content: url("../svg/tag.ic.svg");
width: 14px;
}
.language::before{
content: url("../svg/lang_ic.svg");
width: 14px;
}
.software::before{
content: url("../svg/pc_ic.svg");
width: 14px;
}
#period::before{
content: url('svg/calender_ic.svg');
width: 16px;
}
article{
display: inline-block;
box-sizing: border-box;
width: 100%;
height: 100%;
background: #ffffff;
padding: 20px;
border-top: 1px solid #cccccc;
border-width: 80%;
word-wrap: break-word;
font-size: 16px;
line-height: 20px;
}
#work_detail_label{
position: relative;
display: inline-block;
font-size: 26px;
margin-top: 15px;
font-weight: bold;
color: #4b4b4b;
}
#work_display{
display: inline-flex;
flex-direction: column;
align-items: center;
width: 100%;
height: 100%;
text-align: center;
}
#carousel{
display: inline-flex;
flex-direction: column;
box-sizing: border-box;
width: 100%;
max-width: 450px;
height: auto;
margin-left: auto;
margin-right: auto;
border: 1px solid #cccccc;
}
#carousel_img_part{
position: relative;
display: inline-block;
box-sizing: border-box;
width: 100%;
height: 250px;
background: #666666;
}
#carousel_img{
display: inline-block;
width: 100%;
height: 100%;
}
#carousel_img_part img{
display: inline-block;
position: absolute;
object-fit: contain;
transform: translate(-50%);
width: 100%;
height: 100%;
}
#img_list{
display: inline-flex;
box-sizing: border-box;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
width: 100%;
padding: 2px;
}
#img_list img{
display: inline-block;
width: 50px;
height: 50px;
padding: 2px;
margin: 0px 2px 0px 2px;
cursor: pointer;
border: 1px solid #cccccc;
object-fit: contain;
}
#work_details{
display: inline-flex;
flex-direction: column;
flex-wrap: wrap;
text-align: left;
width: 100%;
max-width: 550px;
font-size: 18px;
vertical-align: middle;
border-radius: 5px 5px 0px 0px;
margin:10px 0px 10px 0px;
}
#work_details tr{
display: grid;
grid-template-columns: 35% 65%;
width: 100%;
line-height: 30px;
border-bottom: none;
}
#work_details tr td{
padding: 5px;
word-break: break-all;
}
#work_details tr td:first-child{
display: inline-block;
box-sizing: border-box;
margin-bottom: auto;
margin-top: auto;
}
#work_details tr td:last-child{
display: inline-flex;
flex-direction: row;
box-sizing: border-box;
flex-wrap: wrap;
}
#work_details tr td[id*="github"]{
flex-direction: column;
}
@media(max-width:650px){
#work_details tr{
grid-template-columns: 100%;
}
#work_details tr td{
text-align: center;
justify-content: center;
}
#work_details tr td:last-child{
margin-left: auto;
margin-right: auto;
}
}
#main_menu li:nth-child(3){
border-bottom: 3px solid #444444;
} | css/work.css | main{
background: none;
padding: 0;
border: 0;
box-shadow: none;
}
#article_header{
position: relative;
display: inline-flex;
box-sizing: border-box;
flex-direction: column;
height: auto;
width: 100%;
padding: 10px;
background: #ffffff;
margin-top: 5px;
border-radius: 5px 5px 0px 0px;
}
#article_title{
font-size: 26px;
word-wrap: break-word;
padding: 5px 0px 5px 0px;
font-weight: bold;
}
.category,
.language,
.software,
.github{
display: inline-block;
flex-wrap: wrap;
box-sizing: border-box;
font-size: 14px;
padding: 4px;
margin: 2px;
border: 1px solid #cccccc;
border-radius: 5px;
line-height: 14px;
align-items: center;
color: #666666;
font-weight: 500;
text-align: center;
text-decoration: none;
}
.github {
width: 200px;
}
.github label{
cursor: pointer;
}
.github img{
display: inline-block;
height: 24px;
}
#categories a,
#languages a,
#softwares a{
display: inline-block;
text-decoration: none;
}
::before{
display: inline-block;
vertical-align: middle;
margin-right: 5px;
}
.category::before{
content: url("../svg/tag.ic.svg");
width: 14px;
}
.language::before{
content: url("../svg/lang_ic.svg");
width: 14px;
}
.software::before{
content: url("../svg/pc_ic.svg");
width: 14px;
}
#period::before{
content: url('svg/calender_ic.svg');
width: 16px;
}
article{
display: inline-block;
box-sizing: border-box;
width: 100%;
height: 100%;
background: #ffffff;
padding: 20px;
border-top: 1px solid #cccccc;
border-width: 80%;
word-wrap: break-word;
font-size: 16px;
line-height: 20px;
}
#work_detail_label{
position: relative;
display: inline-block;
font-size: 26px;
margin-top: 15px;
font-weight: bold;
color: #4b4b4b;
}
#work_display{
display: inline-flex;
flex-direction: column;
align-items: center;
width: 100%;
height: 100%;
text-align: center;
}
#carousel{
display: inline-flex;
flex-direction: column;
box-sizing: border-box;
width: 100%;
max-width: 450px;
height: auto;
margin-left: auto;
margin-right: auto;
border: 1px solid #cccccc;
}
#carousel_img_part{
position: relative;
display: inline-block;
box-sizing: border-box;
width: 100%;
height: 250px;
background: #666666;
}
#carousel_img{
display: inline-block;
width: 100%;
height: 100%;
}
#carousel_img_part img{
display: inline-block;
position: absolute;
object-fit: contain;
transform: translate(-50%);
width: 100%;
height: 100%;
}
#img_list{
display: inline-flex;
box-sizing: border-box;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
width: 100%;
padding: 2px;
}
#img_list img{
display: inline-block;
width: 50px;
height: 50px;
padding: 2px;
margin: 0px 2px 0px 2px;
cursor: pointer;
border: 1px solid #cccccc;
object-fit: contain;
}
#work_details{
display: inline-flex;
flex-direction: column;
flex-wrap: wrap;
text-align: left;
width: 100%;
max-width: 550px;
font-size: 18px;
vertical-align: middle;
border-radius: 5px 5px 0px 0px;
margin:10px 0px 10px 0px;
}
#work_details tr{
display: grid;
grid-template-columns: 35% 65%;
width: 100%;
line-height: 30px;
border-bottom: none;
}
#work_details tr td{
padding: 5px;
word-break: break-all;
}
#work_details tr td:first-child{
display: inline-block;
box-sizing: border-box;
margin-bottom: auto;
margin-top: auto;
}
#work_details tr td:last-child{
display: inline-flex;
flex-direction: row;
box-sizing: border-box;
flex-wrap: wrap;
}
#work_details tr td[id*="github"]{
flex-direction: column;
}
@media(max-width:650px){
#work_details tr{
grid-template-columns: 100%;
}
#work_details tr td{
text-align: center;
justify-content: center;
}
#work_details tr td:last-child{
margin-left: auto;
margin-right: auto;
}
}
#main_menu li:nth-child(3){
border-bottom: 3px solid #444444;
} | 0.21917 | 0.056862 |
.title-container * {
overflow: hidden;
}
.tile-container {
display: flex;
flex-flow: row wrap;
width: 100%;
padding: 0 1rem 0 1rem;
margin-top: 2rem;
justify-content: center;
}
.tile-container>h1 {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
font: 2.5rem Raleway;
color: #1976D2;
}
.tile-container ion-icon {
padding: 0 0.5rem 0 0.5rem;
}
.tile-container * {
/*border: 1px solid red;*/ /*for testing phase*/
}
.l-tile {
width: 100%; /*for mobiles width range [0,700px]*/
height: 25rem;
background: #90CAF9;
margin: 0.5%;
position: relative;
}
.l-tile,.m-tile,.s-tile {
display: flex;
flex-flow: column-reverse nowrap;
background-position: center !important;
}
/*for making tiles responsive, dont change it*/
@media only screen and (min-width:700px) {
.l-tile {
width: 49%;
}
}
@media only screen and (min-width:800px) {
.tile-container {
padding: 0 2.5rem 0 2.5rem;
}
}
@media only screen and (min-width: 900px) {
.tile-container {
padding: 0 10% 0 10%;
}
.l-tile {
height: 25rem;
}
}
.m-tile {
margin: 0.5%;
width: 100%;
height: 48.5%;
position: relative;
}
.s-tile {
width: 49.5%;
height: 100%;
position: relative;
}
.container-s-tile {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
background: #FFFF;
}
.container-m-tile {
display: flex;
flex-flow: column nowrap;
align-items: center;
background: #FFFF;
justify-content: space-between;
}
.tile-text {
display: flex;
flex-flow: column nowrap;
justify-content: center;
background: rgba(0,0,0,0.3);
opacity: 0;
color: #FFFF;
text-align: center;
width: 100%;
height: 100%;
transition: 0.7s;
}
.tile-text:hover {
opacity: 1;
backdrop-filter: blur(0.5rem);
}
.tile-text-heading {
font: 2.0rem Raleway;
margin: 0.5rem 0 0.25rem 0;
}
.tile-text-body {
padding: 0 0.5rem 0 0.5rem;
align-items: center;
font: 1rem "Segoe UI Light";
}
.button {
font-size: 1rem;
display: block;
border: 1px solid #FFFF;
padding: 0.5rem;
width: 7.5rem;
margin: 1rem auto 0 auto;
transition: 0.5s;
}
.button:hover {
background: #FFFF;
color: #0D47A1;
}
.time {
width: fit-content;
background: #01579B;
padding: 0.25rem;
color: white;
font: 1rem "Segoe UI";
position: absolute;
bottom: 0;
left: 0;
} | assets/css/news.css | .title-container * {
overflow: hidden;
}
.tile-container {
display: flex;
flex-flow: row wrap;
width: 100%;
padding: 0 1rem 0 1rem;
margin-top: 2rem;
justify-content: center;
}
.tile-container>h1 {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
font: 2.5rem Raleway;
color: #1976D2;
}
.tile-container ion-icon {
padding: 0 0.5rem 0 0.5rem;
}
.tile-container * {
/*border: 1px solid red;*/ /*for testing phase*/
}
.l-tile {
width: 100%; /*for mobiles width range [0,700px]*/
height: 25rem;
background: #90CAF9;
margin: 0.5%;
position: relative;
}
.l-tile,.m-tile,.s-tile {
display: flex;
flex-flow: column-reverse nowrap;
background-position: center !important;
}
/*for making tiles responsive, dont change it*/
@media only screen and (min-width:700px) {
.l-tile {
width: 49%;
}
}
@media only screen and (min-width:800px) {
.tile-container {
padding: 0 2.5rem 0 2.5rem;
}
}
@media only screen and (min-width: 900px) {
.tile-container {
padding: 0 10% 0 10%;
}
.l-tile {
height: 25rem;
}
}
.m-tile {
margin: 0.5%;
width: 100%;
height: 48.5%;
position: relative;
}
.s-tile {
width: 49.5%;
height: 100%;
position: relative;
}
.container-s-tile {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
background: #FFFF;
}
.container-m-tile {
display: flex;
flex-flow: column nowrap;
align-items: center;
background: #FFFF;
justify-content: space-between;
}
.tile-text {
display: flex;
flex-flow: column nowrap;
justify-content: center;
background: rgba(0,0,0,0.3);
opacity: 0;
color: #FFFF;
text-align: center;
width: 100%;
height: 100%;
transition: 0.7s;
}
.tile-text:hover {
opacity: 1;
backdrop-filter: blur(0.5rem);
}
.tile-text-heading {
font: 2.0rem Raleway;
margin: 0.5rem 0 0.25rem 0;
}
.tile-text-body {
padding: 0 0.5rem 0 0.5rem;
align-items: center;
font: 1rem "Segoe UI Light";
}
.button {
font-size: 1rem;
display: block;
border: 1px solid #FFFF;
padding: 0.5rem;
width: 7.5rem;
margin: 1rem auto 0 auto;
transition: 0.5s;
}
.button:hover {
background: #FFFF;
color: #0D47A1;
}
.time {
width: fit-content;
background: #01579B;
padding: 0.25rem;
color: white;
font: 1rem "Segoe UI";
position: absolute;
bottom: 0;
left: 0;
} | 0.290578 | 0.066751 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Manrope", sans-serif;
}
body {
font-size: 13px;
}
/* Container e Grid container */
.c-container {
max-width: 1920px;
width: 100%;
max-height: 1080px;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: hsl(210, 46%, 95%);
}
.c-grid-container {
border-radius: 0.5em;
width: 720px;
height: 280px;
display: grid;
grid-template-columns: 285px 2fr;
background: #fff;
}
/* Primeira coluna / Imagem */
.c-drawers-img {
width: 100%;
height: 100%;
background-image: url(./images/drawers.jpg);
background-size: cover;
background-position: left center;
border-radius: 0.5em 0 0 0.5em;
}
/* Container do conteúdo */
.c-content-container {
position: relative;
display: flex;
flex-direction: column;
justify-content: space-around;
padding: 20px 40px 20px 40px;
}
.c-content-container h3 {
font-weight: bold;
font-size: 19px;
color: hsl(217, 19%, 35%);
}
.c-content-container .c-text {
color: hsl(212, 23%, 69%);
line-height: 1.5em;
padding: 0;
}
/* Contact container */
.c-contact-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.c-contact {
display: flex;
}
.c-contact p {
margin-left: 10px;
color: hsl(217, 19%, 35%);
font-weight: bold;
padding: 0;
}
.c-contact span {
color: hsl(212, 23%, 69%);
font-weight: normal;
}
.c-contact img {
width: 35px;
border-radius: 50%;
}
.c-contact-icon-container {
width: 34px;
height: 32px;
background: hsl(210, 46%, 95%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.c-contact-icon-container .c-share-icon {
width: 17px;
}
/* Share Container */
.c-share-container {
position: absolute;
right: -65px;
bottom: 90px;
display: none;
justify-content: space-around;
align-items: center;
width: 250px;
height: 60px;
background: hsl(217, 19%, 35%);
border-radius: 0.5em;
}
.c-share-container p {
color: hsl(212, 23%, 69%);
}
.c-share-container .c-share {
display: flex;
width: 80%;
justify-content: space-around;
}
.c-share-icon-container {
width: 36px;
height: 34px;
background: hsl(214, 17%, 51%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
bottom: -58px;
right: 105px;
}
.c-share-icon-container .c-share-icon {
filter: brightness(5);
width: 17px;
}
@media (max-width: 600px) {
/* Grid Container */
.c-grid-container {
border-radius: 0.5em;
width: 320px;
height: 460px;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1.2fr 2fr;
background: #fff;
}
/* Primeira Linha / Imagem */
.c-drawers-img {
border-radius: 0.5em 0.5em 0 0;
}
/* Content Container */
.c-content-container {
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 0;
}
.c-content-container h3 {
font-weight: bold;
font-size: 16px;
color: hsl(217, 19%, 35%);
padding: 0px 34px 0px 30px;
}
.c-content-container .c-text {
padding: 20px 34px 20px 30px;
}
.c-contact-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 9px 30px 15px 30px;
}
.c-contact p {
margin-left: 10px;
color: hsl(217, 19%, 35%);
font-weight: bold;
}
/* Share container */
.c-share-container {
position: static;
right: 0px;
bottom: 0px;
display: none;
justify-content: space-around;
align-items: center;
width: 100%;
height: 60px;
background: hsl(217, 19%, 35%);
border-radius: 0 0 0.5em 0.5em;
}
.c-share-container p {
color: hsl(212, 23%, 69%);
}
.c-share-container .c-share {
display: flex;
width: 60%;
justify-content: space-around;
}
.c-share-icon-container {
width: 30px;
height: 30px;
background: hsl(214, 17%, 51%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: static;
bottom: 0px;
}
.c-share-icon-container .c-share-icon {
filter: brightness(5);
width: 15px;
}
} | iniciante/article-preview-component-master/syle.css |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Manrope", sans-serif;
}
body {
font-size: 13px;
}
/* Container e Grid container */
.c-container {
max-width: 1920px;
width: 100%;
max-height: 1080px;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: hsl(210, 46%, 95%);
}
.c-grid-container {
border-radius: 0.5em;
width: 720px;
height: 280px;
display: grid;
grid-template-columns: 285px 2fr;
background: #fff;
}
/* Primeira coluna / Imagem */
.c-drawers-img {
width: 100%;
height: 100%;
background-image: url(./images/drawers.jpg);
background-size: cover;
background-position: left center;
border-radius: 0.5em 0 0 0.5em;
}
/* Container do conteúdo */
.c-content-container {
position: relative;
display: flex;
flex-direction: column;
justify-content: space-around;
padding: 20px 40px 20px 40px;
}
.c-content-container h3 {
font-weight: bold;
font-size: 19px;
color: hsl(217, 19%, 35%);
}
.c-content-container .c-text {
color: hsl(212, 23%, 69%);
line-height: 1.5em;
padding: 0;
}
/* Contact container */
.c-contact-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.c-contact {
display: flex;
}
.c-contact p {
margin-left: 10px;
color: hsl(217, 19%, 35%);
font-weight: bold;
padding: 0;
}
.c-contact span {
color: hsl(212, 23%, 69%);
font-weight: normal;
}
.c-contact img {
width: 35px;
border-radius: 50%;
}
.c-contact-icon-container {
width: 34px;
height: 32px;
background: hsl(210, 46%, 95%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.c-contact-icon-container .c-share-icon {
width: 17px;
}
/* Share Container */
.c-share-container {
position: absolute;
right: -65px;
bottom: 90px;
display: none;
justify-content: space-around;
align-items: center;
width: 250px;
height: 60px;
background: hsl(217, 19%, 35%);
border-radius: 0.5em;
}
.c-share-container p {
color: hsl(212, 23%, 69%);
}
.c-share-container .c-share {
display: flex;
width: 80%;
justify-content: space-around;
}
.c-share-icon-container {
width: 36px;
height: 34px;
background: hsl(214, 17%, 51%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
bottom: -58px;
right: 105px;
}
.c-share-icon-container .c-share-icon {
filter: brightness(5);
width: 17px;
}
@media (max-width: 600px) {
/* Grid Container */
.c-grid-container {
border-radius: 0.5em;
width: 320px;
height: 460px;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1.2fr 2fr;
background: #fff;
}
/* Primeira Linha / Imagem */
.c-drawers-img {
border-radius: 0.5em 0.5em 0 0;
}
/* Content Container */
.c-content-container {
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 0;
}
.c-content-container h3 {
font-weight: bold;
font-size: 16px;
color: hsl(217, 19%, 35%);
padding: 0px 34px 0px 30px;
}
.c-content-container .c-text {
padding: 20px 34px 20px 30px;
}
.c-contact-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 9px 30px 15px 30px;
}
.c-contact p {
margin-left: 10px;
color: hsl(217, 19%, 35%);
font-weight: bold;
}
/* Share container */
.c-share-container {
position: static;
right: 0px;
bottom: 0px;
display: none;
justify-content: space-around;
align-items: center;
width: 100%;
height: 60px;
background: hsl(217, 19%, 35%);
border-radius: 0 0 0.5em 0.5em;
}
.c-share-container p {
color: hsl(212, 23%, 69%);
}
.c-share-container .c-share {
display: flex;
width: 60%;
justify-content: space-around;
}
.c-share-icon-container {
width: 30px;
height: 30px;
background: hsl(214, 17%, 51%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: static;
bottom: 0px;
}
.c-share-icon-container .c-share-icon {
filter: brightness(5);
width: 15px;
}
} | 0.503662 | 0.063773 |
padding-left : 0;
-webkit-transition: all 0.5s ease;
-moz-transition : all 0.5s ease;
-o-transition : all 0.5s ease;
transition : all 0.5s ease;
}
#wrapper.toggled {
padding-left: 250px;
}
#sidebar-wrapper {
z-index : 1000;
position : fixed;
left : 250px;
width : 0;
height : 100%;
margin-left : -250px;
overflow-y : auto;
background : #000;
-webkit-transition: all 0.5s ease;
-moz-transition : all 0.5s ease;
-o-transition : all 0.5s ease;
transition : all 0.5s ease;
}
#wrapper.toggled #sidebar-wrapper {
width: 250px;
}
#page-content-wrapper {
width : 100%;
position: absolute;
padding : 15px;
}
#wrapper.toggled #page-content-wrapper {
position : absolute;
margin-right: -250px;
}
/* Sidebar Styles */
.sidebar-nav {
position : absolute;
top : 0;
width : 250px;
margin : 0;
padding : 0;
list-style: none;
}
.sidebar-nav li:last-child {
opacity: 0.5;
}
.sidebar-nav li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav li a {
display : block;
text-decoration: none;
color : #999999;
}
.sidebar-nav li a:hover {
text-decoration: none;
color : #fff;
background : rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height : 65px;
font-size : 18px;
line-height: 60px;
}
.sidebar-nav > .sidebar-brand a {
color: #999999;
}
.sidebar-nav > .sidebar-brand a:hover {
color : #fff;
background: none;
}
@media(min-width:200px) {
#wrapper {
padding-left: 250px;
}
#wrapper.toggled {
padding-left: 0;
}
#sidebar-wrapper {
width: 250px;
}
#wrapper.toggled #sidebar-wrapper {
width: 0;
}
#page-content-wrapper {
padding : 20px;
position: relative;
}
#wrapper.toggled #page-content-wrapper {
position : relative;
margin-right: 0;
}
}
#topbar {
position : absolute;
left : 0;
top : 0;
width : 100%;
height : 50px;
background-color: #1d5a92;
color : #fff;
z-index : 9999;
}
#topbar #hamburger {
position: absolute;
left : 15px;
top : 15px;
cursor : pointer;
}
#topbar #title {
text-align : center;
line-height: 50px;
font-size : 20px;
font-weight: bold;
}
.social {
float : right;
margin-top: -17px;
cursor : pointer;
}
#topbar .social {
position : absolute;
right : 15px;
top : 15px;
margin-top: 0;
cursor : pointer;
}
#page-content {
position: absolute;
left : 0;
top : 50px;
width : 100%;
} | styles/menu.css | padding-left : 0;
-webkit-transition: all 0.5s ease;
-moz-transition : all 0.5s ease;
-o-transition : all 0.5s ease;
transition : all 0.5s ease;
}
#wrapper.toggled {
padding-left: 250px;
}
#sidebar-wrapper {
z-index : 1000;
position : fixed;
left : 250px;
width : 0;
height : 100%;
margin-left : -250px;
overflow-y : auto;
background : #000;
-webkit-transition: all 0.5s ease;
-moz-transition : all 0.5s ease;
-o-transition : all 0.5s ease;
transition : all 0.5s ease;
}
#wrapper.toggled #sidebar-wrapper {
width: 250px;
}
#page-content-wrapper {
width : 100%;
position: absolute;
padding : 15px;
}
#wrapper.toggled #page-content-wrapper {
position : absolute;
margin-right: -250px;
}
/* Sidebar Styles */
.sidebar-nav {
position : absolute;
top : 0;
width : 250px;
margin : 0;
padding : 0;
list-style: none;
}
.sidebar-nav li:last-child {
opacity: 0.5;
}
.sidebar-nav li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav li a {
display : block;
text-decoration: none;
color : #999999;
}
.sidebar-nav li a:hover {
text-decoration: none;
color : #fff;
background : rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height : 65px;
font-size : 18px;
line-height: 60px;
}
.sidebar-nav > .sidebar-brand a {
color: #999999;
}
.sidebar-nav > .sidebar-brand a:hover {
color : #fff;
background: none;
}
@media(min-width:200px) {
#wrapper {
padding-left: 250px;
}
#wrapper.toggled {
padding-left: 0;
}
#sidebar-wrapper {
width: 250px;
}
#wrapper.toggled #sidebar-wrapper {
width: 0;
}
#page-content-wrapper {
padding : 20px;
position: relative;
}
#wrapper.toggled #page-content-wrapper {
position : relative;
margin-right: 0;
}
}
#topbar {
position : absolute;
left : 0;
top : 0;
width : 100%;
height : 50px;
background-color: #1d5a92;
color : #fff;
z-index : 9999;
}
#topbar #hamburger {
position: absolute;
left : 15px;
top : 15px;
cursor : pointer;
}
#topbar #title {
text-align : center;
line-height: 50px;
font-size : 20px;
font-weight: bold;
}
.social {
float : right;
margin-top: -17px;
cursor : pointer;
}
#topbar .social {
position : absolute;
right : 15px;
top : 15px;
margin-top: 0;
cursor : pointer;
}
#page-content {
position: absolute;
left : 0;
top : 50px;
width : 100%;
} | 0.513181 | 0.064624 |
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Overpass:300,400,700");
:root {
--global--link--Color: var(--global--primary--Color);
--global--link--TextDecoration: none;
--global--link--hover-Color: #0088ce;
--global--link--hover--TextDecoration: underline;
--global--BorderWidth: 1px;
--global--dark--BorderColor: #bbb;
--global--light--BorderColor: #d1d1d1;
--global--spacer--xxs: 0.125rem;
--global--spacer--xs: 0.25rem;
--global--spacer--sm: 0.5rem;
--global--spacer--md: 1rem;
--global--spacer--lg: 2rem;
--global--spacer--xl: 3rem;
--global--primary--Color: #39a5dc;
--global--primary--dark--Color: #0088ce;
--global--danger--Color: #c00;
--global--danger--dark--Color: #a30000;
--global--warning--Color: #ec7a08;
--global--warning--dark--Color: #b35c00;
--global--dark--Color: #292e34;
--global--dark--off--Color: #8b8d8f;
--global--light--Color: #fafafa;
--global--light--off-Color: #d1d1d1;
--global--light--BackgroundColor: #fafafa;
--global--light--off--BackgroundColor: #ededed;
--global--dark--BackgroundColor: #292e34;
--global--dark--off--BackgroundColor: #393f44;
--global--breakpoint--xs: 0;
--global--breakpoint--sm: 24em;
--global--breakpoint--md: 50;
--global--breakpoint--lg: 50em;
--global--breakpoint--xl: 73em;
--global--sans-serif--FontFamily: “Overpass”, Overpass, “open sans”, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--global--hero-title--FontSize: 3rem;
--global--main-title--FontSize: 2rem;
--global--secondary--title-FontSize: 1.5rem;
--global--sub-title--FontSize: 1.2rem;
--global--body--FontSize: 1rem;
--global--caption--FontSize: 0.8rem;
--global--sm--LineHeight: 1.1;
--global--md--LineHeight: 1.5;
--global--lg--LineHeight: 2;
--global--light--FomntWeight: 300;
--global--normal--FomntWeight: 400;
--global--bold--FomntWeight: 700;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: var(--global--normal--FontWeight);
}
ul {
list-style: none;
}
button,
input,
select,
textarea {
margin: 0;
}
img,
embed,
iframe,
object,
audio,
video {
max-width: 100%;
height: auto;
}
iframe {
border: 0;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
td,
th {
padding: 0;
text-align: left;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
}
body {
font-family: var(--global--sans-serif--FontFamily);
font-size: var(--global--body--FontSize);
font-weight: var(--global--normal--FontWeight);
line-height: var(--global--md--LineHeight);
color: var(--global--dark--Color);
text-align: left;
background-color: var(--global--light--BackgroundColor);
}
a {
color: var(--global--link--Color);
text-decoration: var(--global--link--TextDecoration);
}
a:hover {
color: var(--global--link--hover--Color);
text-decoration: var(--global--link--hover--TextDecoration);
}
button,
a {
cursor: pointer;
}
.alert {
--alert--BorderWidth: var(--global--BorderWidth);
--alert--BorderColor: var(--global--dark--BorderColor);
--alert--Color: var(--global--dark--Color);
--alert--PaddingTop: var(--global--spacer--sm);
--alert--PaddingRight: var(--global--spacer--sm);
--alert--PaddingBottom: var(--global--spacer--sm);
--alert--PaddingLeft: var(--global--spacer--sm);
--alert__title--FontSize: var(--global--secondary-title--FontSize);
--alert__title--MarginBottom: var(--global--spacer--xxs);
--alert--primary--BorderColor: var(--global--primary--Color);
--alert--primary--Color: var(--global--primary--Color);
--alert--warning--BorderColor: var(--global--warning--Color);
--alert--warning--Color: var(--global--warning--Color);
--alert--danger--BorderColor: var(--global--danger--Color);
--alert--danger--Color: var(--global--danger--Color);
border: var(--alert--BorderWidth, 1px) solid var(--alert--BorderColor, #bbb);
color: var(--alert--Color, #292e34);
padding: var(--alert--PaddingTop, 1rem) var(--alert--PaddingRight, 1rem) var(--alert--PaddingBottom, 1rem) var(--alert--PaddingLeft, 1rem);
}
.alert__title {
font-size: var(--alert__title--FontSize, 1.5rem);
margin-bottom: var(--alert__title--MarginBottom, 0.25rem);
}
.alert.is-primary {
border-color: var(--alert--primary--BorderColor, #39a5dc);
color: var(--alert--primary--Color, #39a5dc);
}
.alert.is-warning {
border-color: var(--alert--warning--BorderColor, #ec7a08);
color: var(--bualerttton--warning--Color, #ec7a08);
}
.alert.is-danger {
border-color: var(--alert--danger--BorderColor, #c00);
color: var(--alert--danger--Color, #c00);
}
.button {
--button--PaddingTop: var(--global--spacer--xs);
--button--PaddingRight: var(--global--spacer--xxl);
--button--PaddingBottom: var(--global--spacer--xs);
--button--PaddingLeft: var(--global--spacer--xxl);
--button--LineHeight: var(--global--sm--LineHeight);
--button--FontWeight: var(--global--normal--FontWeight);
--button--primary--BackgroundColor: var(--global--primary--Color);
--button--primary--hover--BackgroundColor: var(--global--primary-dark--Color);
--button--warning--BackgroundColor: var(--global--warning--Color);
--button--warning--hover--BackgroundColor: var(--global--warning--dark--Color);
--button--danger--BackgroundColor: var(--global--danger--Color);
--button--danger--hover--BorderColor: var(--global--danger-dark--Color);
--button--small--FontSize: var(--global--caption--FontSize);
--button--large--FontSize: var(--global--sub-title--FontSize);
display: inline-block;
padding: var(--button--PaddingTop, 0.5rem) var(--button--PaddingRight, 2rem) var(--button--PaddingBottom, 0.5rem) var(--button--PaddingLeft, 2rem);
font-size: var(--button--FontSize, 1rem);
font-weight: var(--button--FontWeight, 400);
line-height: var(--button--LineHeight, 1.2);
color: var(--button--Color, #fff);
text-align: center;
white-space: nowrap;
background-color: var(--button--BackgroundColor, #ccc);
border: none;
border-radius: 30rem;
cursor: pointer;
}
.button:hover,
.button:focus,
.button.has-focus {
color: var(--button--hover--Color, #fff);
background-color: var(--button--hover--BackgroundColor, #555);
}
.button:disabled,
.button.is-disabled {
pointer-events: none;
opacity: 0.5;
}
.button.is-small {
font-size: var(--button--small--FontSize, 0.9rem);
}
.button.is-large {
font-size: var(--button--large--FontSize, 1.2rem);
}
.button.is-block {
display: block;
width: 100%;
}
.button.is-primary {
background-color: var(--button--primary--BackgroundColor, #39a5dc);
}
.button.is-primary:hover,
.button.is-primary:focus,
.button.is-primary.has-focus {
background-color: var(--button--primary--hover--BackgroundColor, #0088ce);
}
.button.is-warning {
background-color: var(--button--warning--BackgroundColor, #ec7a08);
}
.button.is-warning:hover,
.button.is-warning:focus,
.button.is-warning.has-focus {
background-color: var(--button--warning--hover--BackgroundColor, #b35c00);
}
.button.is-danger {
background-color: var(--button--danger--BackgroundColor, #c00);
}
.button.is-danger:hover,
.button.is-danger:focus,
.button.is-danger.has-focus {
background-color: var(--button--danger--hover--BackgroundColor, #a30000);
}
.example {
margin: 1rem 0;
} | Theming with Variables - Globals and Locals/styles/system.processed.css | @charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Overpass:300,400,700");
:root {
--global--link--Color: var(--global--primary--Color);
--global--link--TextDecoration: none;
--global--link--hover-Color: #0088ce;
--global--link--hover--TextDecoration: underline;
--global--BorderWidth: 1px;
--global--dark--BorderColor: #bbb;
--global--light--BorderColor: #d1d1d1;
--global--spacer--xxs: 0.125rem;
--global--spacer--xs: 0.25rem;
--global--spacer--sm: 0.5rem;
--global--spacer--md: 1rem;
--global--spacer--lg: 2rem;
--global--spacer--xl: 3rem;
--global--primary--Color: #39a5dc;
--global--primary--dark--Color: #0088ce;
--global--danger--Color: #c00;
--global--danger--dark--Color: #a30000;
--global--warning--Color: #ec7a08;
--global--warning--dark--Color: #b35c00;
--global--dark--Color: #292e34;
--global--dark--off--Color: #8b8d8f;
--global--light--Color: #fafafa;
--global--light--off-Color: #d1d1d1;
--global--light--BackgroundColor: #fafafa;
--global--light--off--BackgroundColor: #ededed;
--global--dark--BackgroundColor: #292e34;
--global--dark--off--BackgroundColor: #393f44;
--global--breakpoint--xs: 0;
--global--breakpoint--sm: 24em;
--global--breakpoint--md: 50;
--global--breakpoint--lg: 50em;
--global--breakpoint--xl: 73em;
--global--sans-serif--FontFamily: “Overpass”, Overpass, “open sans”, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--global--hero-title--FontSize: 3rem;
--global--main-title--FontSize: 2rem;
--global--secondary--title-FontSize: 1.5rem;
--global--sub-title--FontSize: 1.2rem;
--global--body--FontSize: 1rem;
--global--caption--FontSize: 0.8rem;
--global--sm--LineHeight: 1.1;
--global--md--LineHeight: 1.5;
--global--lg--LineHeight: 2;
--global--light--FomntWeight: 300;
--global--normal--FomntWeight: 400;
--global--bold--FomntWeight: 700;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: var(--global--normal--FontWeight);
}
ul {
list-style: none;
}
button,
input,
select,
textarea {
margin: 0;
}
img,
embed,
iframe,
object,
audio,
video {
max-width: 100%;
height: auto;
}
iframe {
border: 0;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
td,
th {
padding: 0;
text-align: left;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
}
body {
font-family: var(--global--sans-serif--FontFamily);
font-size: var(--global--body--FontSize);
font-weight: var(--global--normal--FontWeight);
line-height: var(--global--md--LineHeight);
color: var(--global--dark--Color);
text-align: left;
background-color: var(--global--light--BackgroundColor);
}
a {
color: var(--global--link--Color);
text-decoration: var(--global--link--TextDecoration);
}
a:hover {
color: var(--global--link--hover--Color);
text-decoration: var(--global--link--hover--TextDecoration);
}
button,
a {
cursor: pointer;
}
.alert {
--alert--BorderWidth: var(--global--BorderWidth);
--alert--BorderColor: var(--global--dark--BorderColor);
--alert--Color: var(--global--dark--Color);
--alert--PaddingTop: var(--global--spacer--sm);
--alert--PaddingRight: var(--global--spacer--sm);
--alert--PaddingBottom: var(--global--spacer--sm);
--alert--PaddingLeft: var(--global--spacer--sm);
--alert__title--FontSize: var(--global--secondary-title--FontSize);
--alert__title--MarginBottom: var(--global--spacer--xxs);
--alert--primary--BorderColor: var(--global--primary--Color);
--alert--primary--Color: var(--global--primary--Color);
--alert--warning--BorderColor: var(--global--warning--Color);
--alert--warning--Color: var(--global--warning--Color);
--alert--danger--BorderColor: var(--global--danger--Color);
--alert--danger--Color: var(--global--danger--Color);
border: var(--alert--BorderWidth, 1px) solid var(--alert--BorderColor, #bbb);
color: var(--alert--Color, #292e34);
padding: var(--alert--PaddingTop, 1rem) var(--alert--PaddingRight, 1rem) var(--alert--PaddingBottom, 1rem) var(--alert--PaddingLeft, 1rem);
}
.alert__title {
font-size: var(--alert__title--FontSize, 1.5rem);
margin-bottom: var(--alert__title--MarginBottom, 0.25rem);
}
.alert.is-primary {
border-color: var(--alert--primary--BorderColor, #39a5dc);
color: var(--alert--primary--Color, #39a5dc);
}
.alert.is-warning {
border-color: var(--alert--warning--BorderColor, #ec7a08);
color: var(--bualerttton--warning--Color, #ec7a08);
}
.alert.is-danger {
border-color: var(--alert--danger--BorderColor, #c00);
color: var(--alert--danger--Color, #c00);
}
.button {
--button--PaddingTop: var(--global--spacer--xs);
--button--PaddingRight: var(--global--spacer--xxl);
--button--PaddingBottom: var(--global--spacer--xs);
--button--PaddingLeft: var(--global--spacer--xxl);
--button--LineHeight: var(--global--sm--LineHeight);
--button--FontWeight: var(--global--normal--FontWeight);
--button--primary--BackgroundColor: var(--global--primary--Color);
--button--primary--hover--BackgroundColor: var(--global--primary-dark--Color);
--button--warning--BackgroundColor: var(--global--warning--Color);
--button--warning--hover--BackgroundColor: var(--global--warning--dark--Color);
--button--danger--BackgroundColor: var(--global--danger--Color);
--button--danger--hover--BorderColor: var(--global--danger-dark--Color);
--button--small--FontSize: var(--global--caption--FontSize);
--button--large--FontSize: var(--global--sub-title--FontSize);
display: inline-block;
padding: var(--button--PaddingTop, 0.5rem) var(--button--PaddingRight, 2rem) var(--button--PaddingBottom, 0.5rem) var(--button--PaddingLeft, 2rem);
font-size: var(--button--FontSize, 1rem);
font-weight: var(--button--FontWeight, 400);
line-height: var(--button--LineHeight, 1.2);
color: var(--button--Color, #fff);
text-align: center;
white-space: nowrap;
background-color: var(--button--BackgroundColor, #ccc);
border: none;
border-radius: 30rem;
cursor: pointer;
}
.button:hover,
.button:focus,
.button.has-focus {
color: var(--button--hover--Color, #fff);
background-color: var(--button--hover--BackgroundColor, #555);
}
.button:disabled,
.button.is-disabled {
pointer-events: none;
opacity: 0.5;
}
.button.is-small {
font-size: var(--button--small--FontSize, 0.9rem);
}
.button.is-large {
font-size: var(--button--large--FontSize, 1.2rem);
}
.button.is-block {
display: block;
width: 100%;
}
.button.is-primary {
background-color: var(--button--primary--BackgroundColor, #39a5dc);
}
.button.is-primary:hover,
.button.is-primary:focus,
.button.is-primary.has-focus {
background-color: var(--button--primary--hover--BackgroundColor, #0088ce);
}
.button.is-warning {
background-color: var(--button--warning--BackgroundColor, #ec7a08);
}
.button.is-warning:hover,
.button.is-warning:focus,
.button.is-warning.has-focus {
background-color: var(--button--warning--hover--BackgroundColor, #b35c00);
}
.button.is-danger {
background-color: var(--button--danger--BackgroundColor, #c00);
}
.button.is-danger:hover,
.button.is-danger:focus,
.button.is-danger.has-focus {
background-color: var(--button--danger--hover--BackgroundColor, #a30000);
}
.example {
margin: 1rem 0;
} | 0.325521 | 0.049843 |
.navbar {
width: 80%;
margin: 0 auto;
height: 70px;
background-color: #fff;
position: sticky;
top: 0;
display: flex;
align-items: center;
justify-content: space-between;
font-family: "Rubik", sans-serif;
z-index: 10;
}
.navbar .logo,
.navbar .center,
.navbar .right {
display: flex;
align-items: center;
}
.navbar .logo p {
font-size: 25px;
color: #212121;
font-weight: 400;
}
.navbar .logo img {
width: 50px;
margin-right: 10px;
}
.center .item {
padding: 6px 5px;
margin: 0 20px;
font-size: 20px;
cursor: pointer;
position: relative;
transition: 0.1s ease-in;
}
.center .item:after {
background: none repeat scroll 0 0 transparent;
bottom: 0;
content: "";
display: block;
height: 2px;
left: 50%;
position: absolute;
background: #3c5a5f;
width: 0;
transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.center .item:hover:after {
width: 100%;
left: 0;
}
.right .item {
padding: 10px;
}
.right .item button {
width: 120px;
height: 36px;
border: 2px solid #3c5a5f;
border-radius: 5px;
font-weight: 500;
color: #3c5a5f;
font-size: 14px;
cursor: pointer;
font-family: "Rubik", sans-serif;
transition: 0.1s ease-in;
}
.right .item button:hover {
background-color: #3c5a5f;
color: #fff;
transition: 0.1s ease-out;
}
.menu i{
font-size: 40px;
}
@media screen and (max-width: 650px) {
.navbar .right,
.navbar .center{
display: none;
}
.menu-container{
display: flex;
width: 50vw;
height: 100vh;
padding: 50px;
flex-direction: column;
position: fixed;
top:0;
right:-20px;
transform: translateX(calc(100% + 50px));
transition: 0.3s transform ease-in;
background-color: #fff;
}
.menu-container.show{
display: flex;
transform: translateX(0);
transition: 0.3s transform ease-out;
}
.closebtn{
position: absolute;
top: 30px;
right: 50px;
}
.closebtn i{
font-size: 30px;
}
.menu-container .item{
padding: 6px 5px;
margin: 5px 0;
font-size: 20px;
}
.item button {
width: 120px;
height: 36px;
border: 2px solid #3c5a5f;
border-radius: 5px;
font-weight: 500;
color: #3c5a5f;
font-size: 14px;
cursor: pointer;
font-family: "Rubik", sans-serif;
transition: 0.1s ease-in;
}
} | client/src/components/navbar/navbar.css | .navbar {
width: 80%;
margin: 0 auto;
height: 70px;
background-color: #fff;
position: sticky;
top: 0;
display: flex;
align-items: center;
justify-content: space-between;
font-family: "Rubik", sans-serif;
z-index: 10;
}
.navbar .logo,
.navbar .center,
.navbar .right {
display: flex;
align-items: center;
}
.navbar .logo p {
font-size: 25px;
color: #212121;
font-weight: 400;
}
.navbar .logo img {
width: 50px;
margin-right: 10px;
}
.center .item {
padding: 6px 5px;
margin: 0 20px;
font-size: 20px;
cursor: pointer;
position: relative;
transition: 0.1s ease-in;
}
.center .item:after {
background: none repeat scroll 0 0 transparent;
bottom: 0;
content: "";
display: block;
height: 2px;
left: 50%;
position: absolute;
background: #3c5a5f;
width: 0;
transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.center .item:hover:after {
width: 100%;
left: 0;
}
.right .item {
padding: 10px;
}
.right .item button {
width: 120px;
height: 36px;
border: 2px solid #3c5a5f;
border-radius: 5px;
font-weight: 500;
color: #3c5a5f;
font-size: 14px;
cursor: pointer;
font-family: "Rubik", sans-serif;
transition: 0.1s ease-in;
}
.right .item button:hover {
background-color: #3c5a5f;
color: #fff;
transition: 0.1s ease-out;
}
.menu i{
font-size: 40px;
}
@media screen and (max-width: 650px) {
.navbar .right,
.navbar .center{
display: none;
}
.menu-container{
display: flex;
width: 50vw;
height: 100vh;
padding: 50px;
flex-direction: column;
position: fixed;
top:0;
right:-20px;
transform: translateX(calc(100% + 50px));
transition: 0.3s transform ease-in;
background-color: #fff;
}
.menu-container.show{
display: flex;
transform: translateX(0);
transition: 0.3s transform ease-out;
}
.closebtn{
position: absolute;
top: 30px;
right: 50px;
}
.closebtn i{
font-size: 30px;
}
.menu-container .item{
padding: 6px 5px;
margin: 5px 0;
font-size: 20px;
}
.item button {
width: 120px;
height: 36px;
border: 2px solid #3c5a5f;
border-radius: 5px;
font-weight: 500;
color: #3c5a5f;
font-size: 14px;
cursor: pointer;
font-family: "Rubik", sans-serif;
transition: 0.1s ease-in;
}
} | 0.289472 | 0.073198 |
.modalButton {
display: inline-block; }
.modalButton:hover {
cursor: pointer; }
/* The Modal (background) */
.modal {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 10;
/* 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.6);
/* Black w/ opacity */
font-family: Open Sans, Roboto, Helvetica, sans-serif; }
/* Modal Content */
.modal-content {
position: relative;
/*
* I have to use display: table because:
* block won't fit the width
* inline-block won't center
*/
display: table;
min-width: 200px;
background-color: #303030;
color: #bbb;
margin: 0 auto;
padding: 0;
box-shadow: 0 0px 22px 0 rgba(0, 0, 0, 0.4), 0 6px 30px 0 rgba(0, 0, 0, 0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
-moz-animation-name: animatetop;
-moz-animation-fill-mode: both;
-moz-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s; }
.modal-out {
opacity: 0;
transition: 0.3s; }
/* Add Animation */
@-webkit-keyframes animatetop {
from {
top: -300px;
opacity: 0; }
to {
top: 0;
opacity: 1; } }
@-moz-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: #eee;
float: right;
font-size: 28px;
font-weight: bold;
line-height: 22px;
text-shadow: 2px 2px rgba(0, 0, 0, 0.01);
transition: text-shadow 0.5s 0.2s, transform 0.2s linear 0.2s; }
.close:hover, .close:focus {
text-decoration: none;
cursor: pointer;
transform: rotate(90deg);
text-shadow: 2px -2px rgba(0, 0, 0, 0.3);
transition: transform 0.2s; }
.modal-header {
padding: 8px 16px;
background-color: #444;
color: #eee;
font-size: 12px;
font-family: Open Sans, Roboto, Helvetica, sans-serif;
box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4); }
.modal-body {
padding: 8px 16px; }
.modal-body .inputField {
padding: 8px;
/*
* The difference between:
* .inputField .last { last inside inputField }
* .inputField.last { last and inputField}
*/ }
.modal-body .inputField input[type="text"], .modal-body .inputField select {
padding: 5px;
margin-top: 5px;
border: 1.5px solid #888;
border-radius: 3px;
background-color: #404040;
color: white;
font-family: Noto Mono, DejaVu Sans Mono, Droid Sans Mono, Inconsolata, Menlo, Andale Mono, monospace; }
.modal-body .inputField.last {
margin-top: 10px; }
#editAddForm {
display: none; }
#deleteForm {
display: none; }
#clearAllForm {
display: none; }
/*# sourceMappingURL=modal.css.map */ | includes/modal.css | .modalButton {
display: inline-block; }
.modalButton:hover {
cursor: pointer; }
/* The Modal (background) */
.modal {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 10;
/* 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.6);
/* Black w/ opacity */
font-family: Open Sans, Roboto, Helvetica, sans-serif; }
/* Modal Content */
.modal-content {
position: relative;
/*
* I have to use display: table because:
* block won't fit the width
* inline-block won't center
*/
display: table;
min-width: 200px;
background-color: #303030;
color: #bbb;
margin: 0 auto;
padding: 0;
box-shadow: 0 0px 22px 0 rgba(0, 0, 0, 0.4), 0 6px 30px 0 rgba(0, 0, 0, 0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
-moz-animation-name: animatetop;
-moz-animation-fill-mode: both;
-moz-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s; }
.modal-out {
opacity: 0;
transition: 0.3s; }
/* Add Animation */
@-webkit-keyframes animatetop {
from {
top: -300px;
opacity: 0; }
to {
top: 0;
opacity: 1; } }
@-moz-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: #eee;
float: right;
font-size: 28px;
font-weight: bold;
line-height: 22px;
text-shadow: 2px 2px rgba(0, 0, 0, 0.01);
transition: text-shadow 0.5s 0.2s, transform 0.2s linear 0.2s; }
.close:hover, .close:focus {
text-decoration: none;
cursor: pointer;
transform: rotate(90deg);
text-shadow: 2px -2px rgba(0, 0, 0, 0.3);
transition: transform 0.2s; }
.modal-header {
padding: 8px 16px;
background-color: #444;
color: #eee;
font-size: 12px;
font-family: Open Sans, Roboto, Helvetica, sans-serif;
box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4); }
.modal-body {
padding: 8px 16px; }
.modal-body .inputField {
padding: 8px;
/*
* The difference between:
* .inputField .last { last inside inputField }
* .inputField.last { last and inputField}
*/ }
.modal-body .inputField input[type="text"], .modal-body .inputField select {
padding: 5px;
margin-top: 5px;
border: 1.5px solid #888;
border-radius: 3px;
background-color: #404040;
color: white;
font-family: Noto Mono, DejaVu Sans Mono, Droid Sans Mono, Inconsolata, Menlo, Andale Mono, monospace; }
.modal-body .inputField.last {
margin-top: 10px; }
#editAddForm {
display: none; }
#deleteForm {
display: none; }
#clearAllForm {
display: none; }
/*# sourceMappingURL=modal.css.map */ | 0.29798 | 0.044328 |
.statistics-box {
padding-top: 14px;
min-height: 80px;
text-align: center
}
.statistics-box.with-icon {
position: relative;
padding-left: 80px;
text-align: right
}
.statistics-box.with-icon .ico {
position: absolute;
top: 0px;
left: 0px;
width: 40px;
height: 40px;
font-size: 50px;
line-height: 80px;
text-align: center
}
.statistics-box.with-icon .ico.small {
font-size: 42px
}
.statistics-box .counter {
margin-top: 0px;
margin-bottom: 0px
}
.statistics-box .text {
color: #aab2bd;
margin: 0px
}
.form-control {
color: #e4d3b8;
background-color: #16171D;
background-image: none;
border-top-color: #2F3136;
border-right-color: #2F3136;
border-bottom-color: #2F3136;
border-left-color: #2F3136;
}
.form-control:focus {
color: #e4d3b8;
background-color: #16171D;
background-image: none;
border-top-color: #5e5c59;
border-right-color: #5e5c59;
border-bottom-color: #353433;
border-left-color: #5e5c59;
}
.payload-nav {
padding: .5rem 1rem;
font-size: 1.09375rem;
color:white !important;
line-height: 2.5;
border-radius: .3rem;
margin: 5px;
}
.height-sv {
/* min-height:653px;
*/}
.btn-payload {
width:100%;
font-size: 16px;
color:white !important;
line-height: 2.4;
border-radius: .3rem;
margin: 3px;
}
.bruhed {
opacity: .65;
pointer-events: none;
}
.text-purple {
color: #6f42c1 !important
}
.text-pink {
color: #e83e8c !important
}
.text-orange {
color: #fd7e14 !important
}
.voldemort
{
color: #ffc000;
text-shadow: 0px 0px 8px #fabc00;
}
.admin-user-color
{
color: #ff0400;
text-shadow: 0px 0px 8px #ff0400;
}
.vip-user-color
{
color: #00ffff;
text-shadow: 0px 0px 8px #00ffff;
}
.voldemort_user
{
color: #fff;
text-shadow: 0px 0px 8px #fff;
background-image: url(https://i.imgur.com/6AgByCA.gif);
background-repeat: repeat;
}
.aquaman
{
color: #6991f7;
text-shadow: 0.5px 0.5px 5px #6991f7;
}
.godly
{
color: #00FFFF;
background-image: url(https://i.imgur.com/6AgByCA.gif);
background-repeat: repeat;
}
::-webkit-scrollbar-thumb {
background-color: #272a32
}
::-webkit-scrollbar-corner {
background-color: #16171d
}
::-webkit-scrollbar {
background-color: #1a1b21;
color: #d4c7b1
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #e60000, 0 0 30px #e6000c, 0 0 40px #e60000, 0 0 50px #e60000, 0 0 60px #e60000;
}
to {
text-shadow: 0 0 10px #fff, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d, 0 0 40px #ff4d4d, 0 0 50px #ff4d4d, 0 0 60px #ff4d4d, 0 0 70px #ff4d4d;
}
}
@keyframes blinkingText{
0%{ color: #000; }
49%{ color: #000; }
60%{ color: transparent; }
99%{ color:transparent; }
100%{ color: #000; }
}
.owner {
color: #fff;
text-align: center;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
background-image: url(https://i.imgur.com/6AgByCA.gif);
background-repeat: repeat
}
.faq-question-q-box {
height: 30px;
width: 30px;
color: #3bafda;
text-align: center;
border-radius: 50%;
float: left;
font-weight: 700;
line-height: 30px;
background-color: rgba(59, 175, 218, .15)
}
.faq-question {
margin-top: 0;
margin-left: 50px;
font-weight: 400;
font-size: 16px
}
.faq-answer {
margin-left: 50px;
color: #ced4da
}
.card-scroll {
max-height: 800px;
overflow-y: auto;
}
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
overflow: hidden;
background: #000000;
}
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #f2f2f2;
border-top: 6px solid #007bff;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
} | panel/assets/css/emnosia.css | .statistics-box {
padding-top: 14px;
min-height: 80px;
text-align: center
}
.statistics-box.with-icon {
position: relative;
padding-left: 80px;
text-align: right
}
.statistics-box.with-icon .ico {
position: absolute;
top: 0px;
left: 0px;
width: 40px;
height: 40px;
font-size: 50px;
line-height: 80px;
text-align: center
}
.statistics-box.with-icon .ico.small {
font-size: 42px
}
.statistics-box .counter {
margin-top: 0px;
margin-bottom: 0px
}
.statistics-box .text {
color: #aab2bd;
margin: 0px
}
.form-control {
color: #e4d3b8;
background-color: #16171D;
background-image: none;
border-top-color: #2F3136;
border-right-color: #2F3136;
border-bottom-color: #2F3136;
border-left-color: #2F3136;
}
.form-control:focus {
color: #e4d3b8;
background-color: #16171D;
background-image: none;
border-top-color: #5e5c59;
border-right-color: #5e5c59;
border-bottom-color: #353433;
border-left-color: #5e5c59;
}
.payload-nav {
padding: .5rem 1rem;
font-size: 1.09375rem;
color:white !important;
line-height: 2.5;
border-radius: .3rem;
margin: 5px;
}
.height-sv {
/* min-height:653px;
*/}
.btn-payload {
width:100%;
font-size: 16px;
color:white !important;
line-height: 2.4;
border-radius: .3rem;
margin: 3px;
}
.bruhed {
opacity: .65;
pointer-events: none;
}
.text-purple {
color: #6f42c1 !important
}
.text-pink {
color: #e83e8c !important
}
.text-orange {
color: #fd7e14 !important
}
.voldemort
{
color: #ffc000;
text-shadow: 0px 0px 8px #fabc00;
}
.admin-user-color
{
color: #ff0400;
text-shadow: 0px 0px 8px #ff0400;
}
.vip-user-color
{
color: #00ffff;
text-shadow: 0px 0px 8px #00ffff;
}
.voldemort_user
{
color: #fff;
text-shadow: 0px 0px 8px #fff;
background-image: url(https://i.imgur.com/6AgByCA.gif);
background-repeat: repeat;
}
.aquaman
{
color: #6991f7;
text-shadow: 0.5px 0.5px 5px #6991f7;
}
.godly
{
color: #00FFFF;
background-image: url(https://i.imgur.com/6AgByCA.gif);
background-repeat: repeat;
}
::-webkit-scrollbar-thumb {
background-color: #272a32
}
::-webkit-scrollbar-corner {
background-color: #16171d
}
::-webkit-scrollbar {
background-color: #1a1b21;
color: #d4c7b1
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #e60000, 0 0 30px #e6000c, 0 0 40px #e60000, 0 0 50px #e60000, 0 0 60px #e60000;
}
to {
text-shadow: 0 0 10px #fff, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d, 0 0 40px #ff4d4d, 0 0 50px #ff4d4d, 0 0 60px #ff4d4d, 0 0 70px #ff4d4d;
}
}
@keyframes blinkingText{
0%{ color: #000; }
49%{ color: #000; }
60%{ color: transparent; }
99%{ color:transparent; }
100%{ color: #000; }
}
.owner {
color: #fff;
text-align: center;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
background-image: url(https://i.imgur.com/6AgByCA.gif);
background-repeat: repeat
}
.faq-question-q-box {
height: 30px;
width: 30px;
color: #3bafda;
text-align: center;
border-radius: 50%;
float: left;
font-weight: 700;
line-height: 30px;
background-color: rgba(59, 175, 218, .15)
}
.faq-question {
margin-top: 0;
margin-left: 50px;
font-weight: 400;
font-size: 16px
}
.faq-answer {
margin-left: 50px;
color: #ced4da
}
.card-scroll {
max-height: 800px;
overflow-y: auto;
}
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
overflow: hidden;
background: #000000;
}
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #f2f2f2;
border-top: 6px solid #007bff;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
} | 0.455441 | 0.134747 |
/*reset*/
*{padding: 0;margin: 0;}
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
background: transparent;
}
article, aside, figure, footer, header, nav, section, details, summary {display: block;}
html, body { height: 100%; color: #333; font-size: 12px; font-family: "微软雅黑",MicrosoftYaHei;}
a { text-decoration: none; color: #3cf; -webkit-tap-highlight-color: transparent;}
li{list-style: none;}
table{border-collapse: collapse;}
input {outline: medium none;font-family: "微软雅黑",MicrosoftYaHei;font-size: 14px;}
button{font-family:"微软雅黑",MicrosoftYaHei;}
em {font-style: normal;}
.wrap{max-width: 100%;min-height: 100%;overflow: hidden;margin: 0 auto;background: #ccc;}
.left{float: left;}
.right{float: right;}
.clear{clear:both;}
.red{color: #f60;}
.ececk_warning{
font-size: 13px;
color: red;
width: 300px;
margin: 0 auto;
}
.login_wrap{
background: url(../images/logo_bg.jpg) no-repeat center;
background-size: 100%;
}
.logo{
width: 500px;
height: 150px;
margin: 0px auto;
background: url(../images/logowz.png) no-repeat center;
}
.login_box{
width: 360px;
background: #FFFFFF;
margin: 0px auto;
}
.login_title{
font-size: 18px;
text-align: center;
color: #888888;
padding: 15px 0;
width: 300px;
margin: 0 auto;
border-bottom: solid 1px #CCCCCC;
}
.form_text_ipt{
width: 300px;
height: 40px;
border: solid 1px #CCCCCC;
margin: 20px auto 0 auto;
background: #FFFFFF;
}
.form_check_ipt{
width: 300px;
margin: 10px auto;
overflow: hidden;
}
.form_text_ipt input{
width: 290px;
height: 30px;
margin: 5px;
border: none;
font-family: "微软雅黑";
font-size: 15px;
color: #666;
}
.check_left label{
cursor: pointer;
}
.check_left label input{
position: relative;
top: 2px;
}
.form_btn{
width: 300px;
height: 40px;
margin: 10px auto;
}
.form_btn button{
width: 100%;
height: 100%;
border: none;
color: #FFFFFF;
font-size: 14px;
background: red;
cursor: pointer;
}
.form_reg_btn{
width: 300px;
margin: 0 auto;
font-size: 14px;
color: #666;
}
.other_login{
overflow: hidden;
width: 300px;
height: 80px;
line-height: 80px;
margin: 0px auto;
}
.other_left{
font-size: 14px;
color: #999;
} | SpringMVC_06_Book/src/main/webapp/static/css/login.css | /*reset*/
*{padding: 0;margin: 0;}
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
background: transparent;
}
article, aside, figure, footer, header, nav, section, details, summary {display: block;}
html, body { height: 100%; color: #333; font-size: 12px; font-family: "微软雅黑",MicrosoftYaHei;}
a { text-decoration: none; color: #3cf; -webkit-tap-highlight-color: transparent;}
li{list-style: none;}
table{border-collapse: collapse;}
input {outline: medium none;font-family: "微软雅黑",MicrosoftYaHei;font-size: 14px;}
button{font-family:"微软雅黑",MicrosoftYaHei;}
em {font-style: normal;}
.wrap{max-width: 100%;min-height: 100%;overflow: hidden;margin: 0 auto;background: #ccc;}
.left{float: left;}
.right{float: right;}
.clear{clear:both;}
.red{color: #f60;}
.ececk_warning{
font-size: 13px;
color: red;
width: 300px;
margin: 0 auto;
}
.login_wrap{
background: url(../images/logo_bg.jpg) no-repeat center;
background-size: 100%;
}
.logo{
width: 500px;
height: 150px;
margin: 0px auto;
background: url(../images/logowz.png) no-repeat center;
}
.login_box{
width: 360px;
background: #FFFFFF;
margin: 0px auto;
}
.login_title{
font-size: 18px;
text-align: center;
color: #888888;
padding: 15px 0;
width: 300px;
margin: 0 auto;
border-bottom: solid 1px #CCCCCC;
}
.form_text_ipt{
width: 300px;
height: 40px;
border: solid 1px #CCCCCC;
margin: 20px auto 0 auto;
background: #FFFFFF;
}
.form_check_ipt{
width: 300px;
margin: 10px auto;
overflow: hidden;
}
.form_text_ipt input{
width: 290px;
height: 30px;
margin: 5px;
border: none;
font-family: "微软雅黑";
font-size: 15px;
color: #666;
}
.check_left label{
cursor: pointer;
}
.check_left label input{
position: relative;
top: 2px;
}
.form_btn{
width: 300px;
height: 40px;
margin: 10px auto;
}
.form_btn button{
width: 100%;
height: 100%;
border: none;
color: #FFFFFF;
font-size: 14px;
background: red;
cursor: pointer;
}
.form_reg_btn{
width: 300px;
margin: 0 auto;
font-size: 14px;
color: #666;
}
.other_login{
overflow: hidden;
width: 300px;
height: 80px;
line-height: 80px;
margin: 0px auto;
}
.other_left{
font-size: 14px;
color: #999;
} | 0.212314 | 0.051035 |
*{margin:0;padding:0}
li{list-style:none}
img{vertical-align:top;border:none}
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
margin: 0;
padding: 0;
}
/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
/*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示,使得在任何编码下都无问题 */
}
h1 { font-size: 18px; /* 18px / 12px = 1.5 */ }
h2 { font-size: 16px; }
h3 { font-size: 14px; }
h4, h5, h6 { font-size: 100%; }
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 *//* 重置列表元素 */
ul, ol { list-style: none; }/* 重置文本格式元素 */
a { text-decoration: none; }
a:hover { text-decoration: underline; }
abbr[title], acronym[title] { /* 注:1.ie6 不支持 abbr; 2.这里用了属性选择符,ie6 下无效果 */border-bottom: 1px dotted;cursor: help;}
q:before, q:after { content: ''; }/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车:让链接里的 img 无边框 *//* 注:optgroup 无法扶正 */
button, input, select, textarea { font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */}/* 重置表格元素 */
table {border-collapse: collapse;border-spacing: 0;}/* 重置 hr */
hr { border: none; height: 1px;}
body{
max-width: 750px;
margin: 0 auto;
background: #F1F1F1;
}
.font{
font-size: 1.3rem;
}
.left{
float: left;
}
.right{
float: right;
}
.header{
height: 11.4rem;
width: 100%;
background-image: url(../images/bg.png);
width: 100%;
overflow: hidden;
background-position: center;
background-repeat: no-repeat;
-webkit-background-size: cover;
background-size: cover;
-webkit-filter: blur(0px);
filter: blur(0px);
}
.user-info{
width: 14rem;
height: 8rem;
margin: 0 auto;
text-align: center;
padding-top: .2rem;
font-size: 1rem;
color: #fff;
}
.user-info p{
margin-top: 0.4rem;
}
.user-img img{
height: 4rem;
width: 4rem;
border-radius: 40px;
border: 2px solid #fff;
}
.show{
height: 1.2rem;
width: 13rem;
margin: 0 auto;
text-align: center;
font-size: 1rem;
color: #fff;
}
.head-not{
height: 2rem;
width: 18rem;
margin: 0 auto;
color: #fff;
font-size: 1rem;
}
.cont{
height: 7.5rem;
background-color: #fff;
width: 100%;
font-size: 1rem;
}
.cont-info{
height: 6rem;
width: 65%;
margin-top: .5rem;
color: #808080;
}
.cont-pay{
height: 6rem;
width: 34%;
border-left: 1px solid #D3D3D3;
margin-top: .5rem;
}
.cont-jine{
padding-left: 1.5rem;
padding-bottom: .3rem;
line-height: 1.5rem;
border-bottom: 1px solid #D3D3D3;
}
.cont-yj{
padding-left: 1.5rem;
padding-top: .3rem;
line-height: 1.5rem;
}
.cont-cz {
height: 2.8rem;
width: 6.2rem;
margin: 0 auto;
}
.cont-tx{
height: 2.8rem;
width: 6.2rem;
margin: 0 auto;
padding-top: 0.8rem;
}
.czbtn{
height: 2.8rem;
width: 6rem;
padding: 0;
}
.game_list{
margin-top: .4rem;
height: 18rem;
width: 100%;
background-color: #fff;
}
.nav {
width: 100%;
height: 3.6rem;
position: fixed;
bottom: 0;
background-color:#fff;
left: 0;
border-top: 1px solid #D3D3D3;
}
.nav span {
display: inline-block;
width: 23.8%;
color: #808080;
text-align: center;
font-size: .8rem;
line-height:30px;
font-weight: 600;
}
.nav i{
display: block;
margin-top: 0.5rem;
font-size: 1.2rem;
}
.qhb{
position: absolute;
top: 8%;
right: 2%;
}
.qhb img{
height: 5.5rem;
}
@media screen and (max-width:350px){
.cont-yj {
font-size: 0.8rem;
}
.game_list{
height: 20rem;
}
.nav span {
width: 32.2%;
}
} | public/static/newgame/css/index.css | *{margin:0;padding:0}
li{list-style:none}
img{vertical-align:top;border:none}
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
margin: 0;
padding: 0;
}
/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
/*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示,使得在任何编码下都无问题 */
}
h1 { font-size: 18px; /* 18px / 12px = 1.5 */ }
h2 { font-size: 16px; }
h3 { font-size: 14px; }
h4, h5, h6 { font-size: 100%; }
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 *//* 重置列表元素 */
ul, ol { list-style: none; }/* 重置文本格式元素 */
a { text-decoration: none; }
a:hover { text-decoration: underline; }
abbr[title], acronym[title] { /* 注:1.ie6 不支持 abbr; 2.这里用了属性选择符,ie6 下无效果 */border-bottom: 1px dotted;cursor: help;}
q:before, q:after { content: ''; }/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车:让链接里的 img 无边框 *//* 注:optgroup 无法扶正 */
button, input, select, textarea { font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */}/* 重置表格元素 */
table {border-collapse: collapse;border-spacing: 0;}/* 重置 hr */
hr { border: none; height: 1px;}
body{
max-width: 750px;
margin: 0 auto;
background: #F1F1F1;
}
.font{
font-size: 1.3rem;
}
.left{
float: left;
}
.right{
float: right;
}
.header{
height: 11.4rem;
width: 100%;
background-image: url(../images/bg.png);
width: 100%;
overflow: hidden;
background-position: center;
background-repeat: no-repeat;
-webkit-background-size: cover;
background-size: cover;
-webkit-filter: blur(0px);
filter: blur(0px);
}
.user-info{
width: 14rem;
height: 8rem;
margin: 0 auto;
text-align: center;
padding-top: .2rem;
font-size: 1rem;
color: #fff;
}
.user-info p{
margin-top: 0.4rem;
}
.user-img img{
height: 4rem;
width: 4rem;
border-radius: 40px;
border: 2px solid #fff;
}
.show{
height: 1.2rem;
width: 13rem;
margin: 0 auto;
text-align: center;
font-size: 1rem;
color: #fff;
}
.head-not{
height: 2rem;
width: 18rem;
margin: 0 auto;
color: #fff;
font-size: 1rem;
}
.cont{
height: 7.5rem;
background-color: #fff;
width: 100%;
font-size: 1rem;
}
.cont-info{
height: 6rem;
width: 65%;
margin-top: .5rem;
color: #808080;
}
.cont-pay{
height: 6rem;
width: 34%;
border-left: 1px solid #D3D3D3;
margin-top: .5rem;
}
.cont-jine{
padding-left: 1.5rem;
padding-bottom: .3rem;
line-height: 1.5rem;
border-bottom: 1px solid #D3D3D3;
}
.cont-yj{
padding-left: 1.5rem;
padding-top: .3rem;
line-height: 1.5rem;
}
.cont-cz {
height: 2.8rem;
width: 6.2rem;
margin: 0 auto;
}
.cont-tx{
height: 2.8rem;
width: 6.2rem;
margin: 0 auto;
padding-top: 0.8rem;
}
.czbtn{
height: 2.8rem;
width: 6rem;
padding: 0;
}
.game_list{
margin-top: .4rem;
height: 18rem;
width: 100%;
background-color: #fff;
}
.nav {
width: 100%;
height: 3.6rem;
position: fixed;
bottom: 0;
background-color:#fff;
left: 0;
border-top: 1px solid #D3D3D3;
}
.nav span {
display: inline-block;
width: 23.8%;
color: #808080;
text-align: center;
font-size: .8rem;
line-height:30px;
font-weight: 600;
}
.nav i{
display: block;
margin-top: 0.5rem;
font-size: 1.2rem;
}
.qhb{
position: absolute;
top: 8%;
right: 2%;
}
.qhb img{
height: 5.5rem;
}
@media screen and (max-width:350px){
.cont-yj {
font-size: 0.8rem;
}
.game_list{
height: 20rem;
}
.nav span {
width: 32.2%;
}
} | 0.309858 | 0.0809 |
----------------------------------*/
.ui-slider,.ui-slider-range,.ui-sliderv,.ui-slider-rangev { margin-bottom:20px; }
/* Overlays */
.ui-widget-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ui-slider {
position: relative;
text-align: left;
}
.ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 1.2em;
height: 1.2em;
cursor: default;
}
.ui-slider .ui-slider-range {
position: absolute;
z-index: 1;
font-size: .7em;
display: block;
border: 0;
background-position: 0 0;
}
/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
filter: inherit;
}
.ui-slider-horizontal {
height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
top: -.3em;
margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
top: 0;
height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
right: 0;
}
.ui-slider-vertical {
width: .8em;
height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
left: -.3em;
margin-left: 0;
margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
left: 0;
width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
top: 0;
}
/* Component containers
----------------------------------*/
.ui-slider.ui-widget {
font-family: Helvetica,Arial,sans-serif;
font-size: 1.1em;
}
.ui-slider.ui-widget .ui-widget {
font-size: 1em;
}
.ui-slider.ui-widget input,
.ui-slider.ui-widget select,
.ui-slider.ui-widget textarea,
.ui-slider.ui-widget button {
font-family: Helvetica,Arial,sans-serif;
font-size: 1em;
}
.ui-slider.ui-widget-content {
border: 1px solid #dddddd;
background: #ffffff;
color: #444444;
}
.ui-slider.ui-widget-content a {
color: #444444;
}
.ui-slider.ui-widget-header {
border: 0px solid #dddddd;
background: #dddddd;
color: #444444;
font-weight: bold;
}
.ui-slider.ui-widget-header a {
color: #444444;
}
/* Interaction states
----------------------------------*/
.ui-slider.ui-state-default,
.ui-slider.ui-widget-content .ui-state-default,
.ui-slider.ui-widget-header .ui-state-default {
border: 1px solid #dddddd;
background: #f6f6f6;
font-weight: bold;
color: #0073ea;
outline:none !important;
}
.ui-slider.ui-state-default a,
.ui-slider.ui-state-default a:link,
.ui-slider.ui-state-default a:visited {
color: #FFFFFF;
text-decoration: none;
}
.ui-slider.ui-state-hover,
.ui-slider.ui-widget-content .ui-state-hover,
.ui-slider.ui-widget-header .ui-state-hover,
.ui-slider.ui-state-focus,
.ui-slider.ui-widget-content .ui-state-focus,
.ui-slider.ui-widget-header .ui-state-focus {
border: 1px solid #0073ea;
background: #f6f6f6;
font-weight: bold;
cursor:pointer;
color: #ffffff;outline:none !important;
}
.ui-slider.ui-state-hover a,
.ui-slider.ui-state-hover a:hover,
.ui-slider.ui-state-hover a:link,
.ui-slider.ui-state-hover a:visited {
color: #ffffff;
text-decoration: none;
}
.ui-slider.ui-state-active,
.ui-slider.ui-widget-content .ui-state-active,
.ui-slider.ui-widget-header .ui-state-active {
border: 1px solid #dddddd;
background: #ffffff;
font-weight: bold;
color: #ff0084;
}
.ui-slider.ui-state-active a,
.ui-slider.ui-state-active a:link,
.ui-slider.ui-state-active a:visited {
color: #ff0084;
text-decoration: none;
}
/* Interaction Cues
----------------------------------*/
.ui-slider.ui-state-highlight,
.ui-slider.ui-widget-content .ui-state-highlight,
.ui-slider.ui-widget-header .ui-state-highlight {
border: 1px solid #cccccc;
background: #ffffff;
color: #444444;
}
.ui-slider.ui-state-highlight a,
.ui-slider.ui-widget-content .ui-state-highlight a,
.ui-slider.ui-widget-header .ui-state-highlight a {
color: #444444;
}
.ui-slider.ui-state-error,
.ui-slider.ui-widget-content .ui-state-error,
.ui-slider.ui-widget-header .ui-state-error {
border: 1px solid #ff0084;
background: #ffffff url(images/ui-bg_flat_55_ffffff_40x100.png) 50% 50% repeat-x;
color: #222222;
}
.ui-slider.ui-state-error a,
.ui-slider.ui-widget-content .ui-state-error a,
.ui-slider.ui-widget-header .ui-state-error a {
color: #222222;
}
.ui-slider.ui-state-error-text,
.ui-slider.ui-widget-content .ui-state-error-text,
.ui-slider.ui-widget-header .ui-state-error-text {
color: #222222;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
opacity: .7;
filter:Alpha(Opacity=70);
font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
opacity: .35;
filter:Alpha(Opacity=35);
background-image: none;
}
.ui-state-disabled .ui-icon {
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}
#slider-primary .ui-slider-range { background: #7897C8; }
#slider-primary .ui-slider-handle { border-color: #7897C8; }
#slider-success .ui-slider-range { background: #8BC198; }
#slider-success .ui-slider-handle { border-color: #8BC198; }
#slider-info .ui-slider-range { background: #7CACCE; }
#slider-info .ui-slider-handle { border-color: #7CACCE; }
#slider-warning .ui-slider-range { background: #DAC582; }
#slider-warning .ui-slider-handle { border-color: #DAC582; }
#slider-danger .ui-slider-range { background: #C68D85; }
#slider-danger .ui-slider-handle { border-color: #C68D85; }
#slider-dark .ui-slider-range { background: #444444; }
#slider-dark .ui-slider-handle { border-color: #444444; } | backend/opacity/lib/css/opacity-sliders.css | ----------------------------------*/
.ui-slider,.ui-slider-range,.ui-sliderv,.ui-slider-rangev { margin-bottom:20px; }
/* Overlays */
.ui-widget-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ui-slider {
position: relative;
text-align: left;
}
.ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 1.2em;
height: 1.2em;
cursor: default;
}
.ui-slider .ui-slider-range {
position: absolute;
z-index: 1;
font-size: .7em;
display: block;
border: 0;
background-position: 0 0;
}
/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
filter: inherit;
}
.ui-slider-horizontal {
height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
top: -.3em;
margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
top: 0;
height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
right: 0;
}
.ui-slider-vertical {
width: .8em;
height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
left: -.3em;
margin-left: 0;
margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
left: 0;
width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
top: 0;
}
/* Component containers
----------------------------------*/
.ui-slider.ui-widget {
font-family: Helvetica,Arial,sans-serif;
font-size: 1.1em;
}
.ui-slider.ui-widget .ui-widget {
font-size: 1em;
}
.ui-slider.ui-widget input,
.ui-slider.ui-widget select,
.ui-slider.ui-widget textarea,
.ui-slider.ui-widget button {
font-family: Helvetica,Arial,sans-serif;
font-size: 1em;
}
.ui-slider.ui-widget-content {
border: 1px solid #dddddd;
background: #ffffff;
color: #444444;
}
.ui-slider.ui-widget-content a {
color: #444444;
}
.ui-slider.ui-widget-header {
border: 0px solid #dddddd;
background: #dddddd;
color: #444444;
font-weight: bold;
}
.ui-slider.ui-widget-header a {
color: #444444;
}
/* Interaction states
----------------------------------*/
.ui-slider.ui-state-default,
.ui-slider.ui-widget-content .ui-state-default,
.ui-slider.ui-widget-header .ui-state-default {
border: 1px solid #dddddd;
background: #f6f6f6;
font-weight: bold;
color: #0073ea;
outline:none !important;
}
.ui-slider.ui-state-default a,
.ui-slider.ui-state-default a:link,
.ui-slider.ui-state-default a:visited {
color: #FFFFFF;
text-decoration: none;
}
.ui-slider.ui-state-hover,
.ui-slider.ui-widget-content .ui-state-hover,
.ui-slider.ui-widget-header .ui-state-hover,
.ui-slider.ui-state-focus,
.ui-slider.ui-widget-content .ui-state-focus,
.ui-slider.ui-widget-header .ui-state-focus {
border: 1px solid #0073ea;
background: #f6f6f6;
font-weight: bold;
cursor:pointer;
color: #ffffff;outline:none !important;
}
.ui-slider.ui-state-hover a,
.ui-slider.ui-state-hover a:hover,
.ui-slider.ui-state-hover a:link,
.ui-slider.ui-state-hover a:visited {
color: #ffffff;
text-decoration: none;
}
.ui-slider.ui-state-active,
.ui-slider.ui-widget-content .ui-state-active,
.ui-slider.ui-widget-header .ui-state-active {
border: 1px solid #dddddd;
background: #ffffff;
font-weight: bold;
color: #ff0084;
}
.ui-slider.ui-state-active a,
.ui-slider.ui-state-active a:link,
.ui-slider.ui-state-active a:visited {
color: #ff0084;
text-decoration: none;
}
/* Interaction Cues
----------------------------------*/
.ui-slider.ui-state-highlight,
.ui-slider.ui-widget-content .ui-state-highlight,
.ui-slider.ui-widget-header .ui-state-highlight {
border: 1px solid #cccccc;
background: #ffffff;
color: #444444;
}
.ui-slider.ui-state-highlight a,
.ui-slider.ui-widget-content .ui-state-highlight a,
.ui-slider.ui-widget-header .ui-state-highlight a {
color: #444444;
}
.ui-slider.ui-state-error,
.ui-slider.ui-widget-content .ui-state-error,
.ui-slider.ui-widget-header .ui-state-error {
border: 1px solid #ff0084;
background: #ffffff url(images/ui-bg_flat_55_ffffff_40x100.png) 50% 50% repeat-x;
color: #222222;
}
.ui-slider.ui-state-error a,
.ui-slider.ui-widget-content .ui-state-error a,
.ui-slider.ui-widget-header .ui-state-error a {
color: #222222;
}
.ui-slider.ui-state-error-text,
.ui-slider.ui-widget-content .ui-state-error-text,
.ui-slider.ui-widget-header .ui-state-error-text {
color: #222222;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
opacity: .7;
filter:Alpha(Opacity=70);
font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
opacity: .35;
filter:Alpha(Opacity=35);
background-image: none;
}
.ui-state-disabled .ui-icon {
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}
#slider-primary .ui-slider-range { background: #7897C8; }
#slider-primary .ui-slider-handle { border-color: #7897C8; }
#slider-success .ui-slider-range { background: #8BC198; }
#slider-success .ui-slider-handle { border-color: #8BC198; }
#slider-info .ui-slider-range { background: #7CACCE; }
#slider-info .ui-slider-handle { border-color: #7CACCE; }
#slider-warning .ui-slider-range { background: #DAC582; }
#slider-warning .ui-slider-handle { border-color: #DAC582; }
#slider-danger .ui-slider-range { background: #C68D85; }
#slider-danger .ui-slider-handle { border-color: #C68D85; }
#slider-dark .ui-slider-range { background: #444444; }
#slider-dark .ui-slider-handle { border-color: #444444; } | 0.452536 | 0.064183 |
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline; }
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block; }
body {
line-height: 1; }
ol, ul {
list-style: none; }
blockquote, q {
quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none; }
table {
border-collapse: collapse;
border-spacing: 0; }
h1 {
font-size: 2.25em; }
h2 {
font-size: 1.875em; }
h3 {
font-size: 1.5em; }
h4 {
font-size: 1.25em; }
h5 {
font-size: 1.125em; }
h6 {
font-size: 1em; }
.container {
width: 100%; }
.row {
box-sizing: border-box;
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex: 0 1 auto;
-webkit-box-flex: 0;
flex: 0 1 auto;
-ms-flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.row .reverse {
-ms-flex-direction: row-reverse;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
flex-direction: row-reverse; }
.col .reverse {
-ms-flex-direction: column-reverse;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
flex-direction: column-reverse; }
.col-xs,
.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 {
box-sizing: border-box;
-ms-flex: 0 0 auto;
-webkit-box-flex: 0;
flex: 0 0 auto;
padding-right: 0.5rem;
padding-left: 0.5rem; }
.col-xs {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
max-width: 100%; }
.col-xs-1 {
-ms-flex-preferred-size: 8.333%;
flex-basis: 8.333%;
max-width: 8.333%; }
.col-xs-2 {
-ms-flex-preferred-size: 16.667%;
flex-basis: 16.667%;
max-width: 16.667%; }
.col-xs-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.col-xs-4 {
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; }
.col-xs-5 {
-ms-flex-preferred-size: 41.667%;
flex-basis: 41.667%;
max-width: 41.667%; }
.col-xs-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.col-xs-7 {
-ms-flex-preferred-size: 58.333%;
flex-basis: 58.333%;
max-width: 58.333%; }
.col-xs-8 {
-ms-flex-preferred-size: 66.667%;
flex-basis: 66.667%;
max-width: 66.667%; }
.col-xs-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; }
.col-xs-10 {
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; }
.col-xs-11 {
-ms-flex-preferred-size: 91.667%;
flex-basis: 91.667%;
max-width: 91.667%; }
.col-xs-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.col-xs-offset-1 {
margin-left: 8.333%; }
.col-xs-offset-2 {
margin-left: 16.667%; }
.col-xs-offset-3 {
margin-left: 25%; }
.col-xs-offset-4 {
margin-left: 33.333%; }
.col-xs-offset-5 {
margin-left: 41.667%; }
.col-xs-offset-6 {
margin-left: 50%; }
.col-xs-offset-7 {
margin-left: 58.333%; }
.col-xs-offset-8 {
margin-left: 66.667%; }
.col-xs-offset-9 {
margin-left: 75%; }
.col-xs-offset-10 {
margin-left: 83.333%; }
.col-xs-offset-11 {
margin-left: 91.667%; }
.start-xs {
-ms-flex-pack: start;
-webkit-box-pack: start;
justify-content: flex-start;
text-align: start; }
.center-xs {
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
text-align: center; }
.end-xs {
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
text-align: end; }
.top-xs {
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start; }
.middle-xs {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center; }
.bottom-xs {
-ms-flex-align: end;
-webkit-box-align: end;
align-items: flex-end; }
.around-xs {
-ms-flex-pack: distribute;
justify-content: space-around; }
.between-xs {
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between; }
.first-xs {
-ms-flex-order: -1;
-webkit-box-ordinal-group: 0;
order: -1; }
.last-xs {
-ms-flex-order: 1;
-webkit-box-ordinal-group: 2;
order: 1; }
@media only screen and (min-width: 576px) {
.col-sm,
.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 {
box-sizing: border-box;
-ms-flex: 0 0 auto;
-webkit-box-flex: 0;
flex: 0 0 auto;
padding-right: 0.5rem;
padding-left: 0.5rem; }
.col-sm {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
max-width: 100%; }
.col-sm-1 {
-ms-flex-preferred-size: 8.333%;
flex-basis: 8.333%;
max-width: 8.333%; }
.col-sm-2 {
-ms-flex-preferred-size: 16.667%;
flex-basis: 16.667%;
max-width: 16.667%; }
.col-sm-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.col-sm-4 {
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; }
.col-sm-5 {
-ms-flex-preferred-size: 41.667%;
flex-basis: 41.667%;
max-width: 41.667%; }
.col-sm-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.col-sm-7 {
-ms-flex-preferred-size: 58.333%;
flex-basis: 58.333%;
max-width: 58.333%; }
.col-sm-8 {
-ms-flex-preferred-size: 66.667%;
flex-basis: 66.667%;
max-width: 66.667%; }
.col-sm-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; }
.col-sm-10 {
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; }
.col-sm-11 {
-ms-flex-preferred-size: 91.667%;
flex-basis: 91.667%;
max-width: 91.667%; }
.col-sm-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.col-sm-offset-1 {
margin-left: 8.333%; }
.col-sm-offset-2 {
margin-left: 16.667%; }
.col-sm-offset-3 {
margin-left: 25%; }
.col-sm-offset-4 {
margin-left: 33.333%; }
.col-sm-offset-5 {
margin-left: 41.667%; }
.col-sm-offset-6 {
margin-left: 50%; }
.col-sm-offset-7 {
margin-left: 58.333%; }
.col-sm-offset-8 {
margin-left: 66.667%; }
.col-sm-offset-9 {
margin-left: 75%; }
.col-sm-offset-10 {
margin-left: 83.333%; }
.col-sm-offset-11 {
margin-left: 91.667%; }
.start-sm {
-ms-flex-pack: start;
-webkit-box-pack: start;
justify-content: flex-start;
text-align: start; }
.center-sm {
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
text-align: center; }
.end-sm {
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
text-align: end; }
.top-sm {
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start; }
.middle-sm {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center; }
.bottom-sm {
-ms-flex-align: end;
-webkit-box-align: end;
align-items: flex-end; }
.around-sm {
-ms-flex-pack: distribute;
justify-content: space-around; }
.between-sm {
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between; }
.first-sm {
-ms-flex-order: -1;
-webkit-box-ordinal-group: 0;
order: -1; }
.last-sm {
-ms-flex-order: 1;
-webkit-box-ordinal-group: 2;
order: 1; } }
@media only screen and (min-width: 768px) {
.col-md,
.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 {
box-sizing: border-box;
-ms-flex: 0 0 auto;
-webkit-box-flex: 0;
flex: 0 0 auto;
padding-right: 0.5rem;
padding-left: 0.5rem; }
.col-md {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
max-width: 100%; }
.col-md-1 {
-ms-flex-preferred-size: 8.333%;
flex-basis: 8.333%;
max-width: 8.333%; }
.col-md-2 {
-ms-flex-preferred-size: 16.667%;
flex-basis: 16.667%;
max-width: 16.667%; }
.col-md-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.col-md-4 {
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; }
.col-md-5 {
-ms-flex-preferred-size: 41.667%;
flex-basis: 41.667%;
max-width: 41.667%; }
.col-md-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.col-md-7 {
-ms-flex-preferred-size: 58.333%;
flex-basis: 58.333%;
max-width: 58.333%; }
.col-md-8 {
-ms-flex-preferred-size: 66.667%;
flex-basis: 66.667%;
max-width: 66.667%; }
.col-md-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; }
.col-md-10 {
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; }
.col-md-11 {
-ms-flex-preferred-size: 91.667%;
flex-basis: 91.667%;
max-width: 91.667%; }
.col-md-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.col-md-offset-1 {
margin-left: 8.333%; }
.col-md-offset-2 {
margin-left: 16.667%; }
.col-md-offset-3 {
margin-left: 25%; }
.col-md-offset-4 {
margin-left: 33.333%; }
.col-md-offset-5 {
margin-left: 41.667%; }
.col-md-offset-6 {
margin-left: 50%; }
.col-md-offset-7 {
margin-left: 58.333%; }
.col-md-offset-8 {
margin-left: 66.667%; }
.col-md-offset-9 {
margin-left: 75%; }
.col-md-offset-10 {
margin-left: 83.333%; }
.col-md-offset-11 {
margin-left: 91.667%; }
.start-md {
-ms-flex-pack: start;
-webkit-box-pack: start;
justify-content: flex-start;
text-align: start; }
.center-md {
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
text-align: center; }
.end-md {
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
text-align: end; }
.top-md {
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start; }
.middle-md {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center; }
.bottom-md {
-ms-flex-align: end;
-webkit-box-align: end;
align-items: flex-end; }
.around-md {
-ms-flex-pack: distribute;
justify-content: space-around; }
.between-md {
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between; }
.first-md {
-ms-flex-order: -1;
-webkit-box-ordinal-group: 0;
order: -1; }
.last-md {
-ms-flex-order: 1;
-webkit-box-ordinal-group: 2;
order: 1; } }
@media only screen and (min-width: 992px) {
.col-lg,
.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 {
box-sizing: border-box;
-ms-flex: 0 0 auto;
-webkit-box-flex: 0;
flex: 0 0 auto;
padding-right: 0.5rem;
padding-left: 0.5rem; }
.col-lg {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
max-width: 100%; }
.col-lg-1 {
-ms-flex-preferred-size: 8.333%;
flex-basis: 8.333%;
max-width: 8.333%; }
.col-lg-2 {
-ms-flex-preferred-size: 16.667%;
flex-basis: 16.667%;
max-width: 16.667%; }
.col-lg-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.col-lg-4 {
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; }
.col-lg-5 {
-ms-flex-preferred-size: 41.667%;
flex-basis: 41.667%;
max-width: 41.667%; }
.col-lg-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.col-lg-7 {
-ms-flex-preferred-size: 58.333%;
flex-basis: 58.333%;
max-width: 58.333%; }
.col-lg-8 {
-ms-flex-preferred-size: 66.667%;
flex-basis: 66.667%;
max-width: 66.667%; }
.col-lg-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; }
.col-lg-10 {
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; }
.col-lg-11 {
-ms-flex-preferred-size: 91.667%;
flex-basis: 91.667%;
max-width: 91.667%; }
.col-lg-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.col-lg-offset-1 {
margin-left: 8.333%; }
.col-lg-offset-2 {
margin-left: 16.667%; }
.col-lg-offset-3 {
margin-left: 25%; }
.col-lg-offset-4 {
margin-left: 33.333%; }
.col-lg-offset-5 {
margin-left: 41.667%; }
.col-lg-offset-6 {
margin-left: 50%; }
.col-lg-offset-7 {
margin-left: 58.333%; }
.col-lg-offset-8 {
margin-left: 66.667%; }
.col-lg-offset-9 {
margin-left: 75%; }
.col-lg-offset-10 {
margin-left: 83.333%; }
.col-lg-offset-11 {
margin-left: 91.667%; }
.start-lg {
-ms-flex-pack: start;
-webkit-box-pack: start;
justify-content: flex-start;
text-align: start; }
.center-lg {
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
text-align: center; }
.end-lg {
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
text-align: end; }
.top-lg {
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start; }
.middle-lg {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center; }
.bottom-lg {
-ms-flex-align: end;
-webkit-box-align: end;
align-items: flex-end; }
.around-lg {
-ms-flex-pack: distribute;
justify-content: space-around; }
.between-lg {
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between; }
.first-lg {
-ms-flex-order: -1;
-webkit-box-ordinal-group: 0;
order: -1; }
.last-lg {
-ms-flex-order: 1;
-webkit-box-ordinal-group: 2;
order: 1; } }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Thin.ttf) format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-ThinItalic.ttf) format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Light.ttf) format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-LightItalic.ttf) format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Regular.ttf) format("truetype");
font-weight: 400;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Italic.ttf) format("truetype");
font-weight: 400;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Medium.ttf) format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-MediumItalic.ttf) format("truetype");
font-weight: 500;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Bold.ttf) format("truetype");
font-weight: 700;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-BoldItalic.ttf) format("truetype");
font-weight: 700;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Black.ttf) format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-BlackItalic.ttf) format("truetype");
font-weight: 900;
font-style: italic; }
body, html {
font-family: 'Segoe UI', sans-serif !important;
height: 100%;
letter-spacing: 0.1em; }
.container {
height: 100%; }
.container .row {
height: 100%; }
.container .row .leftside {
padding: 0 !important;
color: #FFFFFF;
background-color: #234649;
background-image: linear-gradient(to bottom right, #234649, #3C787E); }
.container .row .leftside .header {
height: 160px;
font-size: 32px;
text-transform: uppercase;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
justify-content: space-around; }
.container .row .leftside .header span strong {
font-weight: 800; }
.container .row .leftside .navigation {
height: calc(100% - 320px); }
.container .row .leftside .navigation span {
margin: 0 16px;
display: block;
text-transform: uppercase;
font-size: 16px;
line-height: 80px; }
.container .row .leftside .navigation .menu, .container .row .leftside .navigation .account {
display: flex;
flex-direction: column; }
.container .row .leftside .navigation .menu a, .container .row .leftside .navigation .account a {
width: calc(100% - 32px);
height: 40px;
padding-left: 32px;
display: flex;
flex-direction: row;
align-items: center;
color: #FFFFFF;
text-decoration: none;
line-height: 24px; }
.container .row .leftside .navigation .menu a span, .container .row .leftside .navigation .account a span {
text-transform: none;
line-height: normal; }
.container .row .leftside .navigation .menu a i, .container .row .leftside .navigation .account a i {
margin-right: 16px; }
.container .row .leftside .navigation .menu a:hover, .container .row .leftside .navigation .menu a.active, .container .row .leftside .navigation .account a:hover, .container .row .leftside .navigation .account a.active {
color: #234649;
background-color: #FFFFFF; }
.container .row .leftside .footer {
height: 160px; } | public/css/style.css | html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline; }
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block; }
body {
line-height: 1; }
ol, ul {
list-style: none; }
blockquote, q {
quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none; }
table {
border-collapse: collapse;
border-spacing: 0; }
h1 {
font-size: 2.25em; }
h2 {
font-size: 1.875em; }
h3 {
font-size: 1.5em; }
h4 {
font-size: 1.25em; }
h5 {
font-size: 1.125em; }
h6 {
font-size: 1em; }
.container {
width: 100%; }
.row {
box-sizing: border-box;
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex: 0 1 auto;
-webkit-box-flex: 0;
flex: 0 1 auto;
-ms-flex-direction: row;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.row .reverse {
-ms-flex-direction: row-reverse;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
flex-direction: row-reverse; }
.col .reverse {
-ms-flex-direction: column-reverse;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
flex-direction: column-reverse; }
.col-xs,
.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 {
box-sizing: border-box;
-ms-flex: 0 0 auto;
-webkit-box-flex: 0;
flex: 0 0 auto;
padding-right: 0.5rem;
padding-left: 0.5rem; }
.col-xs {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
max-width: 100%; }
.col-xs-1 {
-ms-flex-preferred-size: 8.333%;
flex-basis: 8.333%;
max-width: 8.333%; }
.col-xs-2 {
-ms-flex-preferred-size: 16.667%;
flex-basis: 16.667%;
max-width: 16.667%; }
.col-xs-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.col-xs-4 {
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; }
.col-xs-5 {
-ms-flex-preferred-size: 41.667%;
flex-basis: 41.667%;
max-width: 41.667%; }
.col-xs-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.col-xs-7 {
-ms-flex-preferred-size: 58.333%;
flex-basis: 58.333%;
max-width: 58.333%; }
.col-xs-8 {
-ms-flex-preferred-size: 66.667%;
flex-basis: 66.667%;
max-width: 66.667%; }
.col-xs-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; }
.col-xs-10 {
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; }
.col-xs-11 {
-ms-flex-preferred-size: 91.667%;
flex-basis: 91.667%;
max-width: 91.667%; }
.col-xs-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.col-xs-offset-1 {
margin-left: 8.333%; }
.col-xs-offset-2 {
margin-left: 16.667%; }
.col-xs-offset-3 {
margin-left: 25%; }
.col-xs-offset-4 {
margin-left: 33.333%; }
.col-xs-offset-5 {
margin-left: 41.667%; }
.col-xs-offset-6 {
margin-left: 50%; }
.col-xs-offset-7 {
margin-left: 58.333%; }
.col-xs-offset-8 {
margin-left: 66.667%; }
.col-xs-offset-9 {
margin-left: 75%; }
.col-xs-offset-10 {
margin-left: 83.333%; }
.col-xs-offset-11 {
margin-left: 91.667%; }
.start-xs {
-ms-flex-pack: start;
-webkit-box-pack: start;
justify-content: flex-start;
text-align: start; }
.center-xs {
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
text-align: center; }
.end-xs {
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
text-align: end; }
.top-xs {
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start; }
.middle-xs {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center; }
.bottom-xs {
-ms-flex-align: end;
-webkit-box-align: end;
align-items: flex-end; }
.around-xs {
-ms-flex-pack: distribute;
justify-content: space-around; }
.between-xs {
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between; }
.first-xs {
-ms-flex-order: -1;
-webkit-box-ordinal-group: 0;
order: -1; }
.last-xs {
-ms-flex-order: 1;
-webkit-box-ordinal-group: 2;
order: 1; }
@media only screen and (min-width: 576px) {
.col-sm,
.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 {
box-sizing: border-box;
-ms-flex: 0 0 auto;
-webkit-box-flex: 0;
flex: 0 0 auto;
padding-right: 0.5rem;
padding-left: 0.5rem; }
.col-sm {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
max-width: 100%; }
.col-sm-1 {
-ms-flex-preferred-size: 8.333%;
flex-basis: 8.333%;
max-width: 8.333%; }
.col-sm-2 {
-ms-flex-preferred-size: 16.667%;
flex-basis: 16.667%;
max-width: 16.667%; }
.col-sm-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.col-sm-4 {
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; }
.col-sm-5 {
-ms-flex-preferred-size: 41.667%;
flex-basis: 41.667%;
max-width: 41.667%; }
.col-sm-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.col-sm-7 {
-ms-flex-preferred-size: 58.333%;
flex-basis: 58.333%;
max-width: 58.333%; }
.col-sm-8 {
-ms-flex-preferred-size: 66.667%;
flex-basis: 66.667%;
max-width: 66.667%; }
.col-sm-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; }
.col-sm-10 {
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; }
.col-sm-11 {
-ms-flex-preferred-size: 91.667%;
flex-basis: 91.667%;
max-width: 91.667%; }
.col-sm-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.col-sm-offset-1 {
margin-left: 8.333%; }
.col-sm-offset-2 {
margin-left: 16.667%; }
.col-sm-offset-3 {
margin-left: 25%; }
.col-sm-offset-4 {
margin-left: 33.333%; }
.col-sm-offset-5 {
margin-left: 41.667%; }
.col-sm-offset-6 {
margin-left: 50%; }
.col-sm-offset-7 {
margin-left: 58.333%; }
.col-sm-offset-8 {
margin-left: 66.667%; }
.col-sm-offset-9 {
margin-left: 75%; }
.col-sm-offset-10 {
margin-left: 83.333%; }
.col-sm-offset-11 {
margin-left: 91.667%; }
.start-sm {
-ms-flex-pack: start;
-webkit-box-pack: start;
justify-content: flex-start;
text-align: start; }
.center-sm {
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
text-align: center; }
.end-sm {
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
text-align: end; }
.top-sm {
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start; }
.middle-sm {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center; }
.bottom-sm {
-ms-flex-align: end;
-webkit-box-align: end;
align-items: flex-end; }
.around-sm {
-ms-flex-pack: distribute;
justify-content: space-around; }
.between-sm {
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between; }
.first-sm {
-ms-flex-order: -1;
-webkit-box-ordinal-group: 0;
order: -1; }
.last-sm {
-ms-flex-order: 1;
-webkit-box-ordinal-group: 2;
order: 1; } }
@media only screen and (min-width: 768px) {
.col-md,
.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 {
box-sizing: border-box;
-ms-flex: 0 0 auto;
-webkit-box-flex: 0;
flex: 0 0 auto;
padding-right: 0.5rem;
padding-left: 0.5rem; }
.col-md {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
max-width: 100%; }
.col-md-1 {
-ms-flex-preferred-size: 8.333%;
flex-basis: 8.333%;
max-width: 8.333%; }
.col-md-2 {
-ms-flex-preferred-size: 16.667%;
flex-basis: 16.667%;
max-width: 16.667%; }
.col-md-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.col-md-4 {
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; }
.col-md-5 {
-ms-flex-preferred-size: 41.667%;
flex-basis: 41.667%;
max-width: 41.667%; }
.col-md-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.col-md-7 {
-ms-flex-preferred-size: 58.333%;
flex-basis: 58.333%;
max-width: 58.333%; }
.col-md-8 {
-ms-flex-preferred-size: 66.667%;
flex-basis: 66.667%;
max-width: 66.667%; }
.col-md-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; }
.col-md-10 {
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; }
.col-md-11 {
-ms-flex-preferred-size: 91.667%;
flex-basis: 91.667%;
max-width: 91.667%; }
.col-md-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.col-md-offset-1 {
margin-left: 8.333%; }
.col-md-offset-2 {
margin-left: 16.667%; }
.col-md-offset-3 {
margin-left: 25%; }
.col-md-offset-4 {
margin-left: 33.333%; }
.col-md-offset-5 {
margin-left: 41.667%; }
.col-md-offset-6 {
margin-left: 50%; }
.col-md-offset-7 {
margin-left: 58.333%; }
.col-md-offset-8 {
margin-left: 66.667%; }
.col-md-offset-9 {
margin-left: 75%; }
.col-md-offset-10 {
margin-left: 83.333%; }
.col-md-offset-11 {
margin-left: 91.667%; }
.start-md {
-ms-flex-pack: start;
-webkit-box-pack: start;
justify-content: flex-start;
text-align: start; }
.center-md {
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
text-align: center; }
.end-md {
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
text-align: end; }
.top-md {
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start; }
.middle-md {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center; }
.bottom-md {
-ms-flex-align: end;
-webkit-box-align: end;
align-items: flex-end; }
.around-md {
-ms-flex-pack: distribute;
justify-content: space-around; }
.between-md {
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between; }
.first-md {
-ms-flex-order: -1;
-webkit-box-ordinal-group: 0;
order: -1; }
.last-md {
-ms-flex-order: 1;
-webkit-box-ordinal-group: 2;
order: 1; } }
@media only screen and (min-width: 992px) {
.col-lg,
.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 {
box-sizing: border-box;
-ms-flex: 0 0 auto;
-webkit-box-flex: 0;
flex: 0 0 auto;
padding-right: 0.5rem;
padding-left: 0.5rem; }
.col-lg {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-preferred-size: 0;
flex-basis: 0;
max-width: 100%; }
.col-lg-1 {
-ms-flex-preferred-size: 8.333%;
flex-basis: 8.333%;
max-width: 8.333%; }
.col-lg-2 {
-ms-flex-preferred-size: 16.667%;
flex-basis: 16.667%;
max-width: 16.667%; }
.col-lg-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.col-lg-4 {
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; }
.col-lg-5 {
-ms-flex-preferred-size: 41.667%;
flex-basis: 41.667%;
max-width: 41.667%; }
.col-lg-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.col-lg-7 {
-ms-flex-preferred-size: 58.333%;
flex-basis: 58.333%;
max-width: 58.333%; }
.col-lg-8 {
-ms-flex-preferred-size: 66.667%;
flex-basis: 66.667%;
max-width: 66.667%; }
.col-lg-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; }
.col-lg-10 {
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; }
.col-lg-11 {
-ms-flex-preferred-size: 91.667%;
flex-basis: 91.667%;
max-width: 91.667%; }
.col-lg-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.col-lg-offset-1 {
margin-left: 8.333%; }
.col-lg-offset-2 {
margin-left: 16.667%; }
.col-lg-offset-3 {
margin-left: 25%; }
.col-lg-offset-4 {
margin-left: 33.333%; }
.col-lg-offset-5 {
margin-left: 41.667%; }
.col-lg-offset-6 {
margin-left: 50%; }
.col-lg-offset-7 {
margin-left: 58.333%; }
.col-lg-offset-8 {
margin-left: 66.667%; }
.col-lg-offset-9 {
margin-left: 75%; }
.col-lg-offset-10 {
margin-left: 83.333%; }
.col-lg-offset-11 {
margin-left: 91.667%; }
.start-lg {
-ms-flex-pack: start;
-webkit-box-pack: start;
justify-content: flex-start;
text-align: start; }
.center-lg {
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
text-align: center; }
.end-lg {
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
text-align: end; }
.top-lg {
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start; }
.middle-lg {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center; }
.bottom-lg {
-ms-flex-align: end;
-webkit-box-align: end;
align-items: flex-end; }
.around-lg {
-ms-flex-pack: distribute;
justify-content: space-around; }
.between-lg {
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between; }
.first-lg {
-ms-flex-order: -1;
-webkit-box-ordinal-group: 0;
order: -1; }
.last-lg {
-ms-flex-order: 1;
-webkit-box-ordinal-group: 2;
order: 1; } }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Thin.ttf) format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-ThinItalic.ttf) format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Light.ttf) format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-LightItalic.ttf) format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Regular.ttf) format("truetype");
font-weight: 400;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Italic.ttf) format("truetype");
font-weight: 400;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Medium.ttf) format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-MediumItalic.ttf) format("truetype");
font-weight: 500;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Bold.ttf) format("truetype");
font-weight: 700;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-BoldItalic.ttf) format("truetype");
font-weight: 700;
font-style: italic; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-Black.ttf) format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: Lato;
src: url(/public/fonts/Lato-BlackItalic.ttf) format("truetype");
font-weight: 900;
font-style: italic; }
body, html {
font-family: 'Segoe UI', sans-serif !important;
height: 100%;
letter-spacing: 0.1em; }
.container {
height: 100%; }
.container .row {
height: 100%; }
.container .row .leftside {
padding: 0 !important;
color: #FFFFFF;
background-color: #234649;
background-image: linear-gradient(to bottom right, #234649, #3C787E); }
.container .row .leftside .header {
height: 160px;
font-size: 32px;
text-transform: uppercase;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
justify-content: space-around; }
.container .row .leftside .header span strong {
font-weight: 800; }
.container .row .leftside .navigation {
height: calc(100% - 320px); }
.container .row .leftside .navigation span {
margin: 0 16px;
display: block;
text-transform: uppercase;
font-size: 16px;
line-height: 80px; }
.container .row .leftside .navigation .menu, .container .row .leftside .navigation .account {
display: flex;
flex-direction: column; }
.container .row .leftside .navigation .menu a, .container .row .leftside .navigation .account a {
width: calc(100% - 32px);
height: 40px;
padding-left: 32px;
display: flex;
flex-direction: row;
align-items: center;
color: #FFFFFF;
text-decoration: none;
line-height: 24px; }
.container .row .leftside .navigation .menu a span, .container .row .leftside .navigation .account a span {
text-transform: none;
line-height: normal; }
.container .row .leftside .navigation .menu a i, .container .row .leftside .navigation .account a i {
margin-right: 16px; }
.container .row .leftside .navigation .menu a:hover, .container .row .leftside .navigation .menu a.active, .container .row .leftside .navigation .account a:hover, .container .row .leftside .navigation .account a.active {
color: #234649;
background-color: #FFFFFF; }
.container .row .leftside .footer {
height: 160px; } | 0.450843 | 0.07579 |
.content {
width: 100%;
margin: 0 auto;
min-width: 100%;
margin-top: 20px;
}
.tags {
min-width: 450px;
}
@media (max-width: 768px) {
.tags {
min-width: auto;
}
}
@media (max-width: 425px) {
.tags {
min-width: 100%;
}
}
.tags__title {
color: #89949f;
font-size: 1.8rem;
font-weight: 200;
margin-bottom: 1rem;
display: block;
}
.tags__content {
font-size: 16px;
background-color: #fff;
border: 1px solid #2e83ef;
display: flex;
flex-wrap: wrap;
width: 100% !important;
height: 60px;
}
.tags__item {
padding: 0.1em 1em 0.3em 1em;
color: #fff;
background: #037DE4;
margin: 0.6rem 0 0.5rem 0.5rem !important;
border-radius: 10em;
height: auto;
min-width: 100px;
}
.tags__list {
padding: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.tags__group {
position: relative;
display: flex;
flex-grow: 1;
height: 60px;
}
.tags__suggestions {
position: absolute;
bottom: 0;
left: 0;
background: white;
transform: translate3d(0, 100%, 0);
padding: 1rem;
width: 100%;
border: 1px solid #cfcfcf;
}
.tags__inner {
padding-bottom: 0.8em;
}
.tags__text {
font-size: 16px;
background: none;
border: none;
flex-grow: 1;
height: 60px;
padding-left: 15px;
}
.tags__text::placeholder {
font-weight: 200;
color: #89949f;
}
.tags__text:focus {
outline: none;
}
@media (max-width: 425px) {
.tags__text {
font-size: 12px;
}
}
.tags__remove {
background: none;
border: none;
color: #83c5fd;
line-height: 1;
font-size: 1rem;
padding: 0.2em 0.1em 0.1em 1em;
margin-right: 0rem;
cursor: pointer;
}
.tags__remove:hover, .tags__remove:focus {
color: #e7f4ff;
}
.tags__remove:focus {
outline: none;
}
.tags__empty {
border: none;
font-size: 1.5rem;
padding: 9px;
padding-right: 20px;
line-height: 1;
cursor: pointer;
color: #89949f;
background-color: transparent;
}
.tags__empty:hover, .tags__empty:focus {
color: #83c5fd;
}
.tags__empty:focus {
outline: none;
} | src/css/tags.css | .content {
width: 100%;
margin: 0 auto;
min-width: 100%;
margin-top: 20px;
}
.tags {
min-width: 450px;
}
@media (max-width: 768px) {
.tags {
min-width: auto;
}
}
@media (max-width: 425px) {
.tags {
min-width: 100%;
}
}
.tags__title {
color: #89949f;
font-size: 1.8rem;
font-weight: 200;
margin-bottom: 1rem;
display: block;
}
.tags__content {
font-size: 16px;
background-color: #fff;
border: 1px solid #2e83ef;
display: flex;
flex-wrap: wrap;
width: 100% !important;
height: 60px;
}
.tags__item {
padding: 0.1em 1em 0.3em 1em;
color: #fff;
background: #037DE4;
margin: 0.6rem 0 0.5rem 0.5rem !important;
border-radius: 10em;
height: auto;
min-width: 100px;
}
.tags__list {
padding: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.tags__group {
position: relative;
display: flex;
flex-grow: 1;
height: 60px;
}
.tags__suggestions {
position: absolute;
bottom: 0;
left: 0;
background: white;
transform: translate3d(0, 100%, 0);
padding: 1rem;
width: 100%;
border: 1px solid #cfcfcf;
}
.tags__inner {
padding-bottom: 0.8em;
}
.tags__text {
font-size: 16px;
background: none;
border: none;
flex-grow: 1;
height: 60px;
padding-left: 15px;
}
.tags__text::placeholder {
font-weight: 200;
color: #89949f;
}
.tags__text:focus {
outline: none;
}
@media (max-width: 425px) {
.tags__text {
font-size: 12px;
}
}
.tags__remove {
background: none;
border: none;
color: #83c5fd;
line-height: 1;
font-size: 1rem;
padding: 0.2em 0.1em 0.1em 1em;
margin-right: 0rem;
cursor: pointer;
}
.tags__remove:hover, .tags__remove:focus {
color: #e7f4ff;
}
.tags__remove:focus {
outline: none;
}
.tags__empty {
border: none;
font-size: 1.5rem;
padding: 9px;
padding-right: 20px;
line-height: 1;
cursor: pointer;
color: #89949f;
background-color: transparent;
}
.tags__empty:hover, .tags__empty:focus {
color: #83c5fd;
}
.tags__empty:focus {
outline: none;
} | 0.592077 | 0.089574 |
body, html {
margin: 0;
overflow: hidden;
height:100vh;
}
#map::-webkit-scrollbar {
display: none;
}
/*html {*/
/*overflow-y: auto;*/
/*background-color: transparent;*/
/*}*/
/*::-webkit-scrollbar:vertical {
width: 15px; !* remove scrollbar space *!
background: lightblue; !* optional: just make scrollbar invisible *!
}
::-webkit-scrollbar-track:vertical {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:vertical {
border-radius: 10px;
height: 30px;
color: black;
background-color: black;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}*/
/*::-webkit-scrollbar {
width: 15px;
height: 10px;
max-height: 800px;
overflow: auto;
left: 0;
bottom: 0
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
height: 30px;
display: block;
background-color: transparent;
left: 0;
bottom: 0
}
::-webkit-scrollbar-track-piece {
background-color: #cfc9ff;
-webkit-border-radius: 6px;
max-height: 500px;
left: 0;
bottom: 0
}
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #666;
border: 1px solid #eee;
-webkit-border-radius: 6px;
left: 0;
bottom: 0
}*/
/*.panel-body.js-platform-table {*/
/*overflow-y: scroll;*/
/*}*/
.scrollbar-inner {
overflow-y: scroll;
}
#left {
/*overflow: hidden;*/
margin-bottom: 0;
margin-top: 0;
padding-left: 0;
bottom: 0;
}
#right {
padding: 0;
right: 15px;
top: 115px;
position: fixed;
height: 100vh;
}
#wrapper{
height:100%;
overflow-y: scroll;
}
.row{
overflow: hidden;
}
.home-page .js-array:hover{
}
.home-page .js-array .panel-heading {
}
.home-page .js-array .panel-heading span {
display: inline-block;
width: 50%;
}
.home-page .js-array .panel-heading h4 {
position: relative;
/*background-color: #5c9ccc;*/
display: inline-block;
width: 100%;
padding: 5px;
margin: 0;
color: white;
background: #5c9ccc; /* Old browsers */
background: -moz-linear-gradient(left, #5c9ccc 20%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #5c9ccc 20%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #5c9ccc 20%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c9ccc', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}
.home-page .js-array .panel-heading h4 small {
color: white;
cursor: pointer;
padding: 5px;
background-color: green;
}
.home-page .js-array .panel-heading h4:hover {
transition: background 5s;
display: inline-block;
width: 100%;
/*padding: 5px;*/
margin-top: 0;
color: white;
border: 4px solid orange;
}
/*.home-page .fade {*/
/*opacity: 0;*/
/*transition: all 1s;*/
/*}*/
.mydivicon{
border-radius: 58px;
background: teal;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon:hover {
border-radius: 58px;
background: orange;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-hover {
border-radius: 58px;
background: orange;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-platform{
border-radius: 58px;
background: teal;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-platform:hover {
border-radius: 58px;
background: orange;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-platform-hover {
border-radius: 58px;
background: orange;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-nopointer {
pointer-events: none;
}
.leaflet-bar a { background-color: #fff; border-bottom: 1px solid #ccc; color: #444; display: block; height: 26px; width: 26px; line-height: 1.45 !important; text-align: center; text-decoration: none; font: bold 18px 'Lucida Console', Monaco, monospace; }
/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
overflow: hidden !important;
padding: 0 !important;
position: relative;
}
.scroll-wrapper > .scroll-content {
border: none !important;
box-sizing: content-box !important;
height: auto;
left: 0;
margin: 0;
max-height: none;
max-width: none !important;
overflow: scroll !important;
padding: 0;
position: relative !important;
top: 0;
width: auto !important;
}
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
height: 0;
width: 0;
}
.scroll-element {
display: none;
}
.scroll-element, .scroll-element div {
box-sizing: content-box;
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
display: block;
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
cursor: default;
}
.scroll-textarea {
border: 1px solid #cccccc;
border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
border: none !important;
box-sizing: border-box;
height: 100% !important;
margin: 0;
max-height: none !important;
max-width: none !important;
overflow: scroll !important;
outline: none;
padding: 2px;
position: relative !important;
top: 0;
width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
height: 0;
width: 0;
}
/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div
{
border: none;
margin: 0;
padding: 0;
position: absolute;
z-index: 10;
}
.scrollbar-inner > .scroll-element div {
display: block;
height: 100%;
left: 0;
top: 0;
width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-x {
bottom: 2px;
height: 8px;
left: 0;
width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-y {
height: 100%;
right: 2px;
top: 0;
width: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_outer {
overflow: hidden;
}
.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
filter: alpha(opacity=40);
opacity: 0.4;
}
.scrollbar-inner > .scroll-element .scroll-element_track { background-color: #e0e0e0; }
.scrollbar-inner > .scroll-element .scroll-bar { background-color: #c2c2c2; }
.scrollbar-inner > .scroll-element:hover .scroll-bar { background-color: #919191; }
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px; }
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px; } | ooiui/static/css/home/home.css | body, html {
margin: 0;
overflow: hidden;
height:100vh;
}
#map::-webkit-scrollbar {
display: none;
}
/*html {*/
/*overflow-y: auto;*/
/*background-color: transparent;*/
/*}*/
/*::-webkit-scrollbar:vertical {
width: 15px; !* remove scrollbar space *!
background: lightblue; !* optional: just make scrollbar invisible *!
}
::-webkit-scrollbar-track:vertical {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:vertical {
border-radius: 10px;
height: 30px;
color: black;
background-color: black;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}*/
/*::-webkit-scrollbar {
width: 15px;
height: 10px;
max-height: 800px;
overflow: auto;
left: 0;
bottom: 0
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
height: 30px;
display: block;
background-color: transparent;
left: 0;
bottom: 0
}
::-webkit-scrollbar-track-piece {
background-color: #cfc9ff;
-webkit-border-radius: 6px;
max-height: 500px;
left: 0;
bottom: 0
}
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #666;
border: 1px solid #eee;
-webkit-border-radius: 6px;
left: 0;
bottom: 0
}*/
/*.panel-body.js-platform-table {*/
/*overflow-y: scroll;*/
/*}*/
.scrollbar-inner {
overflow-y: scroll;
}
#left {
/*overflow: hidden;*/
margin-bottom: 0;
margin-top: 0;
padding-left: 0;
bottom: 0;
}
#right {
padding: 0;
right: 15px;
top: 115px;
position: fixed;
height: 100vh;
}
#wrapper{
height:100%;
overflow-y: scroll;
}
.row{
overflow: hidden;
}
.home-page .js-array:hover{
}
.home-page .js-array .panel-heading {
}
.home-page .js-array .panel-heading span {
display: inline-block;
width: 50%;
}
.home-page .js-array .panel-heading h4 {
position: relative;
/*background-color: #5c9ccc;*/
display: inline-block;
width: 100%;
padding: 5px;
margin: 0;
color: white;
background: #5c9ccc; /* Old browsers */
background: -moz-linear-gradient(left, #5c9ccc 20%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #5c9ccc 20%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #5c9ccc 20%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c9ccc', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}
.home-page .js-array .panel-heading h4 small {
color: white;
cursor: pointer;
padding: 5px;
background-color: green;
}
.home-page .js-array .panel-heading h4:hover {
transition: background 5s;
display: inline-block;
width: 100%;
/*padding: 5px;*/
margin-top: 0;
color: white;
border: 4px solid orange;
}
/*.home-page .fade {*/
/*opacity: 0;*/
/*transition: all 1s;*/
/*}*/
.mydivicon{
border-radius: 58px;
background: teal;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon:hover {
border-radius: 58px;
background: orange;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-hover {
border-radius: 58px;
background: orange;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-platform{
border-radius: 58px;
background: teal;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-platform:hover {
border-radius: 58px;
background: orange;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-platform-hover {
border-radius: 58px;
background: orange;
border: 2px solid #000;
opacity: 0.85;
}
.mydivicon-nopointer {
pointer-events: none;
}
.leaflet-bar a { background-color: #fff; border-bottom: 1px solid #ccc; color: #444; display: block; height: 26px; width: 26px; line-height: 1.45 !important; text-align: center; text-decoration: none; font: bold 18px 'Lucida Console', Monaco, monospace; }
/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
overflow: hidden !important;
padding: 0 !important;
position: relative;
}
.scroll-wrapper > .scroll-content {
border: none !important;
box-sizing: content-box !important;
height: auto;
left: 0;
margin: 0;
max-height: none;
max-width: none !important;
overflow: scroll !important;
padding: 0;
position: relative !important;
top: 0;
width: auto !important;
}
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
height: 0;
width: 0;
}
.scroll-element {
display: none;
}
.scroll-element, .scroll-element div {
box-sizing: content-box;
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
display: block;
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
cursor: default;
}
.scroll-textarea {
border: 1px solid #cccccc;
border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
border: none !important;
box-sizing: border-box;
height: 100% !important;
margin: 0;
max-height: none !important;
max-width: none !important;
overflow: scroll !important;
outline: none;
padding: 2px;
position: relative !important;
top: 0;
width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
height: 0;
width: 0;
}
/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div
{
border: none;
margin: 0;
padding: 0;
position: absolute;
z-index: 10;
}
.scrollbar-inner > .scroll-element div {
display: block;
height: 100%;
left: 0;
top: 0;
width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-x {
bottom: 2px;
height: 8px;
left: 0;
width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-y {
height: 100%;
right: 2px;
top: 0;
width: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_outer {
overflow: hidden;
}
.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
filter: alpha(opacity=40);
opacity: 0.4;
}
.scrollbar-inner > .scroll-element .scroll-element_track { background-color: #e0e0e0; }
.scrollbar-inner > .scroll-element .scroll-bar { background-color: #c2c2c2; }
.scrollbar-inner > .scroll-element:hover .scroll-bar { background-color: #919191; }
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px; }
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px; } | 0.31237 | 0.045331 |
body {
width: 295px;
margin: 15px;
font-size: 15px;
font-style: normal;
background-color: white;
}
.txt-right {
text-align: right;
}
.f-right {
float: right;
}
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.btn {
cursor: pointer;
display: inline-block;
-webkit-appearance: none!important;
border-radius: .125rem;
border: 1px solid #0079b8;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: middle;
line-height: 1.5rem;
letter-spacing: .12em;
font-size: .7rem;
font-weight: 500;
height: 2rem;
padding: 0 .5rem;
background-color: transparent;
color: #0079b8;
margin: .25rem .5rem .25rem 0;
}
/*min-width: 3rem;*/
/*max-width: 15rem;*/
.btn-primary {
border-color: #2f8400;
background-color: #2f8400;
color: #fff;
}
.btn-primary .btn:hover, .btn.btn-primary:hover {
background-color: #266900;
color: #e1f1f6;
}
.btn-success {
border-color: #308300;
background-color: transparent;
color: #308300;
}
.btn-success .btn:hover,
.btn.btn-success:hover {
background-color: #dff0d0;
color: #1d5100;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-default .btn:hover,
.btn.btn-default:hover {
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.block {
display: block;
width: 100%;
}
.input {
display: block;
width: 94%;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
padding: .25rem .5rem;
font-size: .875rem;
border-radius: .2rem;
margin-top: 6px;
}
.input.new-prop {
display: inline-block;
width: 84%;
}
.btn-remove-new-prop {
margin: 0 0 0 .25rem;
} | popup.css | body {
width: 295px;
margin: 15px;
font-size: 15px;
font-style: normal;
background-color: white;
}
.txt-right {
text-align: right;
}
.f-right {
float: right;
}
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.btn {
cursor: pointer;
display: inline-block;
-webkit-appearance: none!important;
border-radius: .125rem;
border: 1px solid #0079b8;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: middle;
line-height: 1.5rem;
letter-spacing: .12em;
font-size: .7rem;
font-weight: 500;
height: 2rem;
padding: 0 .5rem;
background-color: transparent;
color: #0079b8;
margin: .25rem .5rem .25rem 0;
}
/*min-width: 3rem;*/
/*max-width: 15rem;*/
.btn-primary {
border-color: #2f8400;
background-color: #2f8400;
color: #fff;
}
.btn-primary .btn:hover, .btn.btn-primary:hover {
background-color: #266900;
color: #e1f1f6;
}
.btn-success {
border-color: #308300;
background-color: transparent;
color: #308300;
}
.btn-success .btn:hover,
.btn.btn-success:hover {
background-color: #dff0d0;
color: #1d5100;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-default .btn:hover,
.btn.btn-default:hover {
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.block {
display: block;
width: 100%;
}
.input {
display: block;
width: 94%;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
padding: .25rem .5rem;
font-size: .875rem;
border-radius: .2rem;
margin-top: 6px;
}
.input.new-prop {
display: inline-block;
width: 84%;
}
.btn-remove-new-prop {
margin: 0 0 0 .25rem;
} | 0.363195 | 0.086825 |
body {
margin-top: 20;
margin-left: 120;
margin-right: 100;
margin-bottom: 100px;
}
button {
border: none;
padding: 5px;
font-size: 15px;
height: 27px;
border-radius: 3px;
background-color: #ffffff;
font-family: Raleway;
font-weight: bold;
width: 100px;
}
.nav {
background-color: #212121";
margin: 0;
display: flex;
& button {
border: none;
padding: 5px;
font-size: 15px;
height: 27px;
border-radius: 3px;
background-color: #ffffff;
font-family: Raleway;
font-weight: bold;
width: 100px;
}
.titles {
font-family: raleway;
margin-left: 20px;
color: #E5FCC2;
margin-right: 20px;
& h1 {
margin-top: 10px;
margin-bottom: 0;
display: block;
}
& h3 {
margin-top: 10px;
display: block;
}
}
.passwords {
display: flex;
margin-left: auto;
margin-right: 20px;
.forms {
margin-top: 12px;
margin-right: 20px;
& input {
border: none;
border-radius: 2px;
padding: 5px;
font-family: Quicksand;
font-weight: bold;
color: black;
font-size: 15px;
}
.topInput {
margin-bottom: 10px;
}
}
}
.reset {
display: block;
margin-top: 30px;
}
}
.hidden {
display: none;
}
.wrap {
.navTwo {
background-color: #6C5B7B;
display: flex;
& a {
text-decoration: none;
color: #A8E6CE;
font-size: 20px;
font-family: raleway;
margin-left: 60px;
margin-top: 20px;
margin-bottom: 20px;
display: block;
}
}
.mainPage {
.h1Con {
padding: 20px;
background-color: #45ADA8;
}
& h1 {
font-family: quicksand;
font-size: 50px;
text-align: center;
}
& h3 {
font-size: 30px;
font-family: arvo;
text-align: center;
}
}
}
h1 {
font-family: Raleway;
}
h2,
h3 {
font-family: quicksand;
font-weight: bold;
}
a {
text-decoration: none;
color: #555;
}
p {
font-family: arvo;
font-size: 20px;
color: white;
}
input {
font-family: quicksand;
font-size: 20px;
font-weight: bold;
}
ul {
font-family: nunito;
li {
list-style-type: none;
font-size: 20px;
}
}
textarea {
font-size: 20px;
font-family: quicksand;
font-weight: bold;
}
img {
height: 216px;
width: 384px;
}
.subWrap {
display: flex;
width: 800px;
margin-left: auto;
margin-right: auto;
}
.right {
margin-left: auto;
margin-top: 56px;
width: 384px;
}
.social {
width: 800px;
margin-left: auto;
margin-right: auto;
}
.profile {
width: 800px;
margin-left: auto;
margin-right: auto;
& img {
width: 300px;
height: 300px;
margin-left: auto;
margin-right: auto;
}
} | text.css | body {
margin-top: 20;
margin-left: 120;
margin-right: 100;
margin-bottom: 100px;
}
button {
border: none;
padding: 5px;
font-size: 15px;
height: 27px;
border-radius: 3px;
background-color: #ffffff;
font-family: Raleway;
font-weight: bold;
width: 100px;
}
.nav {
background-color: #212121";
margin: 0;
display: flex;
& button {
border: none;
padding: 5px;
font-size: 15px;
height: 27px;
border-radius: 3px;
background-color: #ffffff;
font-family: Raleway;
font-weight: bold;
width: 100px;
}
.titles {
font-family: raleway;
margin-left: 20px;
color: #E5FCC2;
margin-right: 20px;
& h1 {
margin-top: 10px;
margin-bottom: 0;
display: block;
}
& h3 {
margin-top: 10px;
display: block;
}
}
.passwords {
display: flex;
margin-left: auto;
margin-right: 20px;
.forms {
margin-top: 12px;
margin-right: 20px;
& input {
border: none;
border-radius: 2px;
padding: 5px;
font-family: Quicksand;
font-weight: bold;
color: black;
font-size: 15px;
}
.topInput {
margin-bottom: 10px;
}
}
}
.reset {
display: block;
margin-top: 30px;
}
}
.hidden {
display: none;
}
.wrap {
.navTwo {
background-color: #6C5B7B;
display: flex;
& a {
text-decoration: none;
color: #A8E6CE;
font-size: 20px;
font-family: raleway;
margin-left: 60px;
margin-top: 20px;
margin-bottom: 20px;
display: block;
}
}
.mainPage {
.h1Con {
padding: 20px;
background-color: #45ADA8;
}
& h1 {
font-family: quicksand;
font-size: 50px;
text-align: center;
}
& h3 {
font-size: 30px;
font-family: arvo;
text-align: center;
}
}
}
h1 {
font-family: Raleway;
}
h2,
h3 {
font-family: quicksand;
font-weight: bold;
}
a {
text-decoration: none;
color: #555;
}
p {
font-family: arvo;
font-size: 20px;
color: white;
}
input {
font-family: quicksand;
font-size: 20px;
font-weight: bold;
}
ul {
font-family: nunito;
li {
list-style-type: none;
font-size: 20px;
}
}
textarea {
font-size: 20px;
font-family: quicksand;
font-weight: bold;
}
img {
height: 216px;
width: 384px;
}
.subWrap {
display: flex;
width: 800px;
margin-left: auto;
margin-right: auto;
}
.right {
margin-left: auto;
margin-top: 56px;
width: 384px;
}
.social {
width: 800px;
margin-left: auto;
margin-right: auto;
}
.profile {
width: 800px;
margin-left: auto;
margin-right: auto;
& img {
width: 300px;
height: 300px;
margin-left: auto;
margin-right: auto;
}
} | 0.307878 | 0.052328 |
display: flex;
min-height: 330px;
}
.box-panel {
background: #b96f50;
padding: 5px;
margin: 5px;
display: flex;
width: 50px;
height: 50px;
cursor: pointer;
}
.box-pixel-panel:hover {
background: #c28569;
}
.box-active {
background: #c28569 !important;
}
.box-disabled {
background: #945542 !important;
cursor: default;
}
.box-pixel-panel {
background: #945542;
flex: 1;
width: 100%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.box-item {
min-height: 75%;
max-height: 40px;
image-rendering: pixelated;
}
#crafting-items {
display: flex;
flex-wrap: wrap;
width: 300px;
min-height: 124px;
}
#recipe {
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
background: #9f6c54;
padding: 7px;
padding-top: 14px;
min-height: 300px;
z-index: 9;
}
#crafting-item {
height: 120px;
display: flex;
}
#crafting-item > img {
height: 100%;
image-rendering: pixelated;
margin: auto;
filter: drop-shadow(1px 1px 0px white) drop-shadow(-1px 0px 0px white)
drop-shadow(0px -1px 0px white);
}
#recipe-title {
color: white;
text-shadow: 1px 1px black;
text-align: center;
padding-bottom: 4px;
padding-top: 4px;
}
#recipe-description {
text-align: center;
color: white;
text-shadow: 1px 1px black;
font-size: 11px;
margin-top: 12px;
}
#craft-button-text {
font-size: 12px;
}
#craft-action {
display: flex;
justify-content: space-around;
margin: 10px 0;
}
#craft-count {
display: flex;
}
.craft-arrow {
display: -webkit-flex;
display: flex;
width: 11px;
cursor: pointer;
margin-bottom: 3px;
image-rendering: -moz-crisp-edges;
image-rendering: pixelated;
}
#crafting-left {
display: flex;
flex-direction: column;
}
#community-left {
display: flex;
justify-content: space-between;
flex-direction: column;
padding-top: 4px;
width: 300px;
padding-bottom: 16px;
}
.ingredient {
display: flex;
justify-content: space-between;
align-items: center;
}
.ingredient-image {
width: 20px;
image-rendering: pixelated;
margin-right: 7px;
}
.ingredient-text {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
}
.ingredient-insufficient {
color: #f6757a;
}
.ingredient-count {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
}
#ingredients {
border-top: 1px solid white;
margin-top: 8px;
padding-top: 4px;
border-bottom: 1px solid white;
margin-bottom: 8px;
padding-bottom: 4px;
}
#inventory-header {
display: flex;
margin-top: 4px;
margin-bottom: 4px;
margin-left: 4px;
align-items: center;
}
#inventory-header > img {
width: 25px;
height: 25px;
image-rendering: pixelated;
margin-right: 4px;
}
#inventory-header > span {
color: white;
text-shadow: 1px 1px black;
font-size: 13px;
}
#inventory {
display: flex;
flex-wrap: wrap;
width: 300px;
min-height: 124px;
}
#inventory-loading {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
width: 300px;
height: 200px;
color: white;
text-shadow: 1px 1px black;
padding: 10px;
}
.inventory-box {
width: 50px;
height: 50px;
}
.box-count {
position: absolute;
right: -10px;
top: -10px;
z-index: 9999;
font-size: 12px;
background: #bfcbda;
padding: 0 3px;
border-radius: 6px;
border: 2px solid black;
outline: white;
color: black;
text-shadow: 1px 1px white;
}
.recipe-type {
position: absolute;
top: 0px;
right: 0;
font-size: 9px;
color: white;
text-shadow: 1px 1px black;
padding: 2px 7px;
border-radius: 3px;
}
.recipe-nft {
background: #2399db;
}
.recipe-erc20 {
background: #fbad34;
}
.nft-count {
position: absolute;
background: #2399db;
top: 0px;
right: 70px;
font-size: 9px;
color: white;
text-shadow: 1px 1px black;
padding: 2px 7px;
border-radius: 3px;
}
.community-title {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
display: block;
padding-left: 4px;
padding-bottom: 4px;
text-decoration: underline;
}
.community-description {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
display: block;
padding-left: 4px;
padding-bottom: 4px;
}
#community-footer {
display: flex;
justify-content: space-between;
}
.community-guide-text {
font-size: 12px;
color: white;
text-shadow: 1px 1px black;
padding: 8px;
}
#approving-animation {
position: relative;
height: 50px;
animation-name: running;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
#approving-goblin {
position: absolute;
height: 100px;
left: -68px;
top: -12px;
image-rendering: -moz-crisp-edges;
image-rendering: pixelated;
z-index: 9;
}
#approving-sff {
position: absolute;
height: 19px;
image-rendering: -moz-crisp-edges;
image-rendering: pixelated;
z-index: 99;
}
@keyframes running {
from {
transform: translate(0px, 0px);
}
to {
transform: translate(100%, 0px);
}
}
#community-error {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
padding: 8px;
}
#discord {
font-size: 10px;
}
#discord > img {
display: inline-block;
width: 20px;
image-rendering: pixelated;
border-radius: 5px;
position: relative;
left: -5px;
top: -2px;
} | Crafting.css | display: flex;
min-height: 330px;
}
.box-panel {
background: #b96f50;
padding: 5px;
margin: 5px;
display: flex;
width: 50px;
height: 50px;
cursor: pointer;
}
.box-pixel-panel:hover {
background: #c28569;
}
.box-active {
background: #c28569 !important;
}
.box-disabled {
background: #945542 !important;
cursor: default;
}
.box-pixel-panel {
background: #945542;
flex: 1;
width: 100%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.box-item {
min-height: 75%;
max-height: 40px;
image-rendering: pixelated;
}
#crafting-items {
display: flex;
flex-wrap: wrap;
width: 300px;
min-height: 124px;
}
#recipe {
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
background: #9f6c54;
padding: 7px;
padding-top: 14px;
min-height: 300px;
z-index: 9;
}
#crafting-item {
height: 120px;
display: flex;
}
#crafting-item > img {
height: 100%;
image-rendering: pixelated;
margin: auto;
filter: drop-shadow(1px 1px 0px white) drop-shadow(-1px 0px 0px white)
drop-shadow(0px -1px 0px white);
}
#recipe-title {
color: white;
text-shadow: 1px 1px black;
text-align: center;
padding-bottom: 4px;
padding-top: 4px;
}
#recipe-description {
text-align: center;
color: white;
text-shadow: 1px 1px black;
font-size: 11px;
margin-top: 12px;
}
#craft-button-text {
font-size: 12px;
}
#craft-action {
display: flex;
justify-content: space-around;
margin: 10px 0;
}
#craft-count {
display: flex;
}
.craft-arrow {
display: -webkit-flex;
display: flex;
width: 11px;
cursor: pointer;
margin-bottom: 3px;
image-rendering: -moz-crisp-edges;
image-rendering: pixelated;
}
#crafting-left {
display: flex;
flex-direction: column;
}
#community-left {
display: flex;
justify-content: space-between;
flex-direction: column;
padding-top: 4px;
width: 300px;
padding-bottom: 16px;
}
.ingredient {
display: flex;
justify-content: space-between;
align-items: center;
}
.ingredient-image {
width: 20px;
image-rendering: pixelated;
margin-right: 7px;
}
.ingredient-text {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
}
.ingredient-insufficient {
color: #f6757a;
}
.ingredient-count {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
}
#ingredients {
border-top: 1px solid white;
margin-top: 8px;
padding-top: 4px;
border-bottom: 1px solid white;
margin-bottom: 8px;
padding-bottom: 4px;
}
#inventory-header {
display: flex;
margin-top: 4px;
margin-bottom: 4px;
margin-left: 4px;
align-items: center;
}
#inventory-header > img {
width: 25px;
height: 25px;
image-rendering: pixelated;
margin-right: 4px;
}
#inventory-header > span {
color: white;
text-shadow: 1px 1px black;
font-size: 13px;
}
#inventory {
display: flex;
flex-wrap: wrap;
width: 300px;
min-height: 124px;
}
#inventory-loading {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
width: 300px;
height: 200px;
color: white;
text-shadow: 1px 1px black;
padding: 10px;
}
.inventory-box {
width: 50px;
height: 50px;
}
.box-count {
position: absolute;
right: -10px;
top: -10px;
z-index: 9999;
font-size: 12px;
background: #bfcbda;
padding: 0 3px;
border-radius: 6px;
border: 2px solid black;
outline: white;
color: black;
text-shadow: 1px 1px white;
}
.recipe-type {
position: absolute;
top: 0px;
right: 0;
font-size: 9px;
color: white;
text-shadow: 1px 1px black;
padding: 2px 7px;
border-radius: 3px;
}
.recipe-nft {
background: #2399db;
}
.recipe-erc20 {
background: #fbad34;
}
.nft-count {
position: absolute;
background: #2399db;
top: 0px;
right: 70px;
font-size: 9px;
color: white;
text-shadow: 1px 1px black;
padding: 2px 7px;
border-radius: 3px;
}
.community-title {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
display: block;
padding-left: 4px;
padding-bottom: 4px;
text-decoration: underline;
}
.community-description {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
display: block;
padding-left: 4px;
padding-bottom: 4px;
}
#community-footer {
display: flex;
justify-content: space-between;
}
.community-guide-text {
font-size: 12px;
color: white;
text-shadow: 1px 1px black;
padding: 8px;
}
#approving-animation {
position: relative;
height: 50px;
animation-name: running;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
#approving-goblin {
position: absolute;
height: 100px;
left: -68px;
top: -12px;
image-rendering: -moz-crisp-edges;
image-rendering: pixelated;
z-index: 9;
}
#approving-sff {
position: absolute;
height: 19px;
image-rendering: -moz-crisp-edges;
image-rendering: pixelated;
z-index: 99;
}
@keyframes running {
from {
transform: translate(0px, 0px);
}
to {
transform: translate(100%, 0px);
}
}
#community-error {
color: white;
text-shadow: 1px 1px black;
font-size: 12px;
padding: 8px;
}
#discord {
font-size: 10px;
}
#discord > img {
display: inline-block;
width: 20px;
image-rendering: pixelated;
border-radius: 5px;
position: relative;
left: -5px;
top: -2px;
} | 0.375477 | 0.100525 |
html,
body {
background-color: white;
}
textarea {
resize: none;
}
ul {
padding-left: 20px;
}
.btn {
margin-bottom: 10px;
margin-top: 10px;
}
/* overrides angular-material */
.md-confirm-button:focus,
.md-confirm-button.focus {
color: #fff;
background-color: #c9302c;
border-color: #761c19;
}
.md-confirm-button:hover {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.md-confirm-button:active,
.md-confirm-button.active,
.open > .dropdown-toggle.md-confirm-button {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.md-confirm-button:active:hover,
.md-confirm-button.active:hover,
.open > .dropdown-toggle.md-confirm-button:hover,
.md-confirm-button:active:focus,
.md-confirm-button.active:focus,
.open > .dropdown-toggle.md-confirm-button:focus,
.md-confirm-button:active.focus,
.md-confirm-button.active.focus,
.open > .dropdown-toggle.md-confirm-button.focus {
color: #fff;
background-color: #ac2925;
border-color: #761c19;
}
.md-confirm-button:active,
.md-confirm-button.active,
.open > .dropdown-toggle.md-confirm-button {
background-image: none;
}
.md-confirm-button.disabled:hover,
.md-confirm-button[disabled]:hover,
fieldset[disabled] .md-confirm-button:hover,
.md-confirm-button.disabled:focus,
.md-confirm-button[disabled]:focus,
fieldset[disabled] .md-confirm-button:focus,
.md-confirm-button.disabled.focus,
.md-confirm-button[disabled].focus,
fieldset[disabled] .md-confirm-button.focus {
background-color: #d9534f;
border-color: #d43f3a;
}
.md-confirm-button .badge {
color: #d9534f;
background-color: #fff;
}
/* overrides angular-material */
.md-cancel-button {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.md-cancel-button:focus,
.md-cancel-button.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.md-cancel-button:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.md-cancel-button:active,
.md-cancel-button.active,
.open > .dropdown-toggle.md-cancel-button {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.md-cancel-button:active:hover,
.md-cancel-button.active:hover,
.open > .dropdown-toggle.md-cancel-button:hover,
.md-cancel-button:active:focus,
.md-cancel-button.active:focus,
.open > .dropdown-toggle.md-cancel-button:focus,
.md-cancel-button:active.focus,
.md-cancel-button.active.focus,
.open > .dropdown-toggle.md-cancel-button.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.md-cancel-button:active,
.md-cancel-button.active,
.open > .dropdown-toggle.md-cancel-button {
background-image: none;
}
.md-cancel-button.disabled:hover,
.md-cancel-button[disabled]:hover,
fieldset[disabled] .md-cancel-button:hover,
.md-cancel-button.disabled:focus,
.md-cancel-button[disabled]:focus,
fieldset[disabled] .md-cancel-button:focus,
.md-cancel-button.disabled.focus,
.md-cancel-button[disabled].focus,
fieldset[disabled] .md-cancel-button.focus {
background-color: #fff;
border-color: #ccc;
}
.md-cancel-button .badge {
color: #fff;
background-color: #333;
} | src/www/js/hacks.css |
html,
body {
background-color: white;
}
textarea {
resize: none;
}
ul {
padding-left: 20px;
}
.btn {
margin-bottom: 10px;
margin-top: 10px;
}
/* overrides angular-material */
.md-confirm-button:focus,
.md-confirm-button.focus {
color: #fff;
background-color: #c9302c;
border-color: #761c19;
}
.md-confirm-button:hover {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.md-confirm-button:active,
.md-confirm-button.active,
.open > .dropdown-toggle.md-confirm-button {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.md-confirm-button:active:hover,
.md-confirm-button.active:hover,
.open > .dropdown-toggle.md-confirm-button:hover,
.md-confirm-button:active:focus,
.md-confirm-button.active:focus,
.open > .dropdown-toggle.md-confirm-button:focus,
.md-confirm-button:active.focus,
.md-confirm-button.active.focus,
.open > .dropdown-toggle.md-confirm-button.focus {
color: #fff;
background-color: #ac2925;
border-color: #761c19;
}
.md-confirm-button:active,
.md-confirm-button.active,
.open > .dropdown-toggle.md-confirm-button {
background-image: none;
}
.md-confirm-button.disabled:hover,
.md-confirm-button[disabled]:hover,
fieldset[disabled] .md-confirm-button:hover,
.md-confirm-button.disabled:focus,
.md-confirm-button[disabled]:focus,
fieldset[disabled] .md-confirm-button:focus,
.md-confirm-button.disabled.focus,
.md-confirm-button[disabled].focus,
fieldset[disabled] .md-confirm-button.focus {
background-color: #d9534f;
border-color: #d43f3a;
}
.md-confirm-button .badge {
color: #d9534f;
background-color: #fff;
}
/* overrides angular-material */
.md-cancel-button {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.md-cancel-button:focus,
.md-cancel-button.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.md-cancel-button:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.md-cancel-button:active,
.md-cancel-button.active,
.open > .dropdown-toggle.md-cancel-button {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.md-cancel-button:active:hover,
.md-cancel-button.active:hover,
.open > .dropdown-toggle.md-cancel-button:hover,
.md-cancel-button:active:focus,
.md-cancel-button.active:focus,
.open > .dropdown-toggle.md-cancel-button:focus,
.md-cancel-button:active.focus,
.md-cancel-button.active.focus,
.open > .dropdown-toggle.md-cancel-button.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.md-cancel-button:active,
.md-cancel-button.active,
.open > .dropdown-toggle.md-cancel-button {
background-image: none;
}
.md-cancel-button.disabled:hover,
.md-cancel-button[disabled]:hover,
fieldset[disabled] .md-cancel-button:hover,
.md-cancel-button.disabled:focus,
.md-cancel-button[disabled]:focus,
fieldset[disabled] .md-cancel-button:focus,
.md-cancel-button.disabled.focus,
.md-cancel-button[disabled].focus,
fieldset[disabled] .md-cancel-button.focus {
background-color: #fff;
border-color: #ccc;
}
.md-cancel-button .badge {
color: #fff;
background-color: #333;
} | 0.400515 | 0.042563 |
*, *:before, *:after { box-sizing: border-box }
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
html { -webkit-font-smoothing: antialiased }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block }
ol, ul { list-style: none }
blockquote, q { quotes: none }
table {
border-collapse: collapse;
border-spacing: 0;
}
button, input, select, textarea { margin: 0 }
:focus { outline: 0 }
img, video, object {
max-width: 100%;
height: auto!important;
}
iframe { max-width: 100% }
blockquote {
font-weight: normal;
font-size: 22px;
line-height: 1.5;
padding: 0 0 0 38px;
position: relative;
margin: 0 0 25px;
font-family: Georgia;
font-style: italic;
}
blockquote:after {
font-family: FontAwesome;
position: absolute;
content: "\f10d";
font-size: 30px;
color: #737373;
font-style: inherit;
top: 0;
left: 0;
}
.entry-content > blockquote { margin: 0 0 25px }
blockquote p:last-child { margin-bottom: 0 }
blockquote p { margin-bottom: 10px }
strong, b { font-weight: bold }
em, i, cite { font-style: italic }
small { font-size: 100% }
figure { margin: 10px 0 }
code, pre {
font-weight: normal;
font-style: normal;
}
pre {
margin: 5px 0 20px 0;
line-height: 1.3em;
padding: 8px 10px;
overflow: auto;
}
code {
padding: 0 8px;
line-height: 1.5;
}
mark {
padding: 1px 6px;
margin: 0 2px;
color: black;
background: #FFF7A8;
}
address {
margin: 10px 0;
font-style: italic;
}
.wp-caption {
background: #fff;
border: 1px solid #f0f0f0;
max-width: 96%;
padding: 5px 3px 10px;
text-align: center;
}
.sticky {
}
.gallery-caption {
}
#gallery-1 img { border: 0!important }
.bypostauthor {
}
.wp-caption-text { margin-bottom: 0 }
dl { padding-bottom: 1em }
dt {
float: left;
clear: left;
width: 100px;
text-align: right;
font-weight: bold;
}
dd {
margin: 0 0 0 110px;
padding: 0 0 0.5em 0;
overflow: hidden;
}
#wpadminbar { -webkit-backface-visibility: hidden }
/*-[ Framework ]--------------------*/
body {
font: 15px/1.5 Noto Sans, sans-serif;
color: #444;
background-color: #ffffff;
}
::-moz-selection {
background: #222;
color: white;
text-shadow: none;
}
::selection {
background: #222;
color: white;
text-shadow: none;
}
#page, .container {
position: relative;
margin-right: auto;
margin-left: auto;
}
/*-[ Headings ]---------------*/
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
color: #444;
line-height: 1;
margin-bottom: 15px;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 { line-height: 1.4 }
h1 { font-size: 30px }
h2 { font-size: 25px }
h3 { font-size: 20px }
h4 { font-size: 18px }
h5 { font-size: 15px }
h6 { font-size: 13px }
.sub-title { font-size: 12px }
p { margin-bottom: 25px }
.entry-content p {
}
/*-[ Links ]---------------*/
a {
color: inherit;
text-decoration: none;
transition: all 0.25s ease;
}
a:hover { color: #3498DB }
a:link, a:visited, a:active { text-decoration: none }
a.disabled { pointer-events: none }
/*-[ Main container ]---------------*/
.main-container-wrap { max-width: 100%; }
.main-container {
width: 1124px;
max-width: 100%;
margin: 0 auto;
clear: both;
display: block;
padding: 0;
}
#page, .container {
width: 1124px;
min-width: 240px;
}
#page {
min-height: 100px;
float: none;
clear: both;
display: inline-block;
width: 100%;
}
.featured-section-1-full-width-1 #page { padding: 0 }
/*-[ Header ]-----------------------*/
header {
float: left;
width: 100%;
position: relative;
}
.main-header {
background: #fff;
position: relative;
float: left;
width: 100%;
margin-bottom: 30px;
}
#header {
position: relative;
width: 100%;
float: left;
margin: 0;
padding: 0;
z-index: 9999;
}
.secondary-menu-disabled #header { padding: 0 }
.header-inner {
width: 100%;
height: 100%;
padding: 3% 0;
float: left;
}
.logo-wrap {
float: left;
vertical-align: middle;
margin: 15px 0;
}
.widget-header { max-width: 728px; width: 100%;float: right;}
#header h1, #header h2 {
font-size: 35px;
font-weight: 400;
float: left;
display: inline-block;
line-height: 1;
position: relative;
margin-bottom: 0;
text-transform: initial;
}
#logo a {
float: left;
line-height: 1;
}
#logo img { float: left }
.site-description {
float: left;
margin-top: 0;
clear: left;
}
/* header add */
#header .ad-728 { float: right }
#header .ad-728 img {
display: block;
width: 100%;
}
/*-[ Navigation ]-----------------*/
#navigation.mobile-only { display: none }
#navigation .menu-item-has-children > a:after {
content: "\f107";
font-family: FontAwesome;
position: absolute;
right: 20px;
}
#navigation .menu li {
position: relative;
list-style: none!important;
}
#navigation ul li li {
background: #fff;
border-bottom: 0;
}
#navigation ul ul {
position: absolute;
width: 255px;
padding: 20px 0 0 0;
padding-top: 0;
font-size: 12px;
color: #798189;
z-index: 99999;
}
#navigation ul ul li {
padding: 0;
color: #fff;
border-right: 0;
}
#header nav ul ul > li:first-child { border-top: 1px solid rgba(0, 0, 0, 0.1) }
#header nav ul ul ul > li:first-child { border-top: 0 }
#header nav#navigation ul ul li { background: #e52329 }
#header nav ul ul a, #header nav ul ul a:link, #header nav ul ul a:visited {
padding: 9px 45px 9px 20px;
color: #fff;
position: relative;
width: 190px;
border-left: 0;
background: transparent;
border-right: 0;
border-radius: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin: 0;
box-sizing: content-box;
}
#header nav ul ul li:last-child a { border-bottom: none }
#header nav ul ul { display: none }
#header nav ul ul ul {
left: 255px;
top: 0;
}
#header nav .menu-item-has-children>a, #header nav .page_item_has_children>a { padding-right: 40px }
#header nav ul li:hover a { color: #fff!important }
#navigation .menu li, #navigation .menu li a { font-size: 15px }
#navigation .menu li, #navigation .menu li a { color: #fff }
#navigation .menu a:hover, #navigation .menu .current-menu-item > a {
color: #fff !important;
background: rgba(0, 0, 0, 0.1);
}
.home #navigation .menu .home-menu-item a, #navigation .menu .current-menu-item > a { background: rgba(0, 0, 0, 0.1) }
/* bottom header nav */
.secondary-navigation {
float: left;
width: 100%;
position: relative;
}
.secondary-navigation a {
color: #fff;
text-align: left;
text-decoration: none;
padding: 19px 20px;
}
#navigation {
float: left;
width: 100%;
z-index: 99999;
}
#navigation ul { margin: 0 auto }
#navigation ul li {
float: left;
line-height: 22px;
border-right: 1px solid rgba(0, 0, 0, 0.1);
}
#navigation ul li a, #navigation ul li a:link, #navigation ul li a:visited { display: inline-block }
#navigation > ul > .current a {
background: transparent;
color: #5a5a5a !important;
}
.menu .menu-item:not(.home-menu-item) .fa { margin-right: 4px }
.clearfix:before, .clearfix:after {
content: " ";
display: table;
}
.clearfix:after { clear: both }
.clearfix { *zoom: 1 }
a#pull { display: none }
/* Flyout nav */
.sticky-navigation-active {
z-index: 500;
position: fixed;
top: 0;
margin: 0 !important;
-webkit-backface-visibility: hidden;
}
.admin-bar .sticky-navigation-active { top: 32px }
/*-[ Toggle menu ]---------------------------*/
#navigation .toggle-caret { display: none }
.toggle-menu ul ul { display: none }
.toggle-menu .toggle-menu-item-parent { position: relative }
.toggle-menu .toggle-caret {
position: absolute;
top: 0;
right: 0;
text-align: center;
cursor: pointer;
line-height: inherit;
}
.toggle-menu .toggle-caret .fa {
width: 20px;
text-align: center;
font-size: inherit;
color: inherit;
line-height: 40px;
}
.toggle-menu .active > .toggle-caret .fa:before { content: "\f068" } /*minus*/
.toggle-menu .toggle-caret:hover .fa {
}
/*-[ Content ]--------------------*/
.article {
width: 71.7%;
float: left;
margin-bottom: 10px;
padding: 0;
}
#content_box, .hentry, .hentry header, .hentry .box {
float: left;
width: 100%;
}
.hentry header, .hentry .box {
padding: 0 0 15px 0;
margin-bottom: 0;
}
.hentry header, .hentry .entry-title { margin-bottom: 0 }
.hentry .entry-title {
font-size: 25px;
line-height: 1.4;
text-transform: initial;
}
.hentry header { border-bottom: 1px solid rgba(0, 0, 0, 0.1) }
.page .hentry header { padding-bottom: 10px }
.single_page { padding-top: 0 }
.entry-content a { color: #3498DB }
.post-content {
overflow: hidden;
clear: both;
}
.error404 .post-content { overflow: visible }
.post-single-content {
clear: both;
padding: 30px;
}
.post-single-content-inner {
float: right;
overflow: hidden;
clear: both;
width: 83%;
}
.singleleft {
float: left;
width: 14.3%;
}
.singleleft .related-posts { margin-bottom: 0 }
div.singleleft.crlayout { float: right }
.readMore {
float: left;
margin-top: 15px;
}
.readMore a {
display: inline-block;
border: 0;
line-height: 1;
border-radius: 3px;
}
.ss-full-width {
overflow: hidden;
padding-top: 0;
margin-bottom: 30px;
}
.ss-full-width #content_box {
padding-right: 0;
padding-left: 0;
}
.wp-post-image {
float: left;
border-radius: 3px;
}
.post-box .wp-post-image { width: 100% }
.featured-thumbnail {
float: left;
max-width: 100%;
}
.featured-thumbnail img {
margin-bottom: 0;
width: 100%;
}
.title {
margin-bottom: 5px;
line-height: 21px;
clear: both;
word-wrap: break-word;
}
.single-title {
float: left;
padding: 0;
width: 100%;
text-transform: initial;
}
.page h1.title { padding-top: 0 }
.post-info {
display: block;
color: #919191;
float: left;
clear: both;
width: 100%;
margin-top: 15px;
line-height: 20px;
}
.single .post-info { margin-top: 5px }
.post-info a {
color: #919191;
padding: 1px 4px;
}
.post-info > span {
display: inline-block;
white-space: nowrap;
font-size: 14px;
width: auto;
margin: 0;
margin-right: 10px;
float: none;
}
.thecategory a {
color: #FFF!important;
background: #3498DB;
}
article header {
margin-bottom: 11px;
float: left;
width: 100%;
}
.type-page .single_page header {
padding-top: 0;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.single_post header {
width: 100%;
margin-bottom: 15px;
margin-top: -7px;
}
.article img.left, .article img.alignleft, .wp-caption.alignleft {
margin: 0.3em 1.571em 0.5em 0;
display: block;
float: left;
}
.article img.right, .article img.alignright, .wp-caption.alignright {
margin: 0.3em 0 0.5em 1.571em;
display: block;
float: right;
}
.article img.center, .article img.aligncenter, .wp-caption.aligncenter {
margin: 0.3em auto 0.5em auto;
display: block;
}
.article img.aligncenter, .article img.alignnone {
margin-top: 1em;
margin-bottom: 1em;
display: block;
clear: both;
}
.article ul, .textwidget ul {
margin: 1.5em 0 1.571em 1.9em;
list-style-type: square;
}
.article ol, .textwidget ol {
margin: 1.5em 0 1.571em 1.9em;
list-style-type: decimal;
}
.article ul ul, .article ol ol, .article ul ol, .article ol ul, .textwidget ul ul, .textwidget ul ol, .textwidget ol ul {
margin-top: 0;
margin-bottom: 0;
}
.article .iconlist { margin-left: 0 }
.article .iconlist li { list-style-type: none }
/**********featured sections***********/
/*general*/
.featured-section { margin: 10px 0 25px 0 }
.featured-section.no-gap, #latest-posts.no-gap { margin: 0 0 50px 0 }
.featured-section-title {
padding: 0;
margin-bottom: 30px;
font-size: 25px;
line-height: 15px;
}
.no-gap .featured-section-title { padding: 0 }
/*checker layouts*/
.featured-section-1-1, .featured-section-2-1, .dark { margin: 0 0 35px 0 }
.featured-section-2-1 .featured-section-title, .dark .featured-section-title { padding: 0 }
/*slider 1*/
.featured-section-1-full-width-1 .featured-section-1-1 { position: relative }
#featured-section-1 .static-posts, #featured-section-1 .static-posts .post-box { float: left }
.featured-section-1-full-width-2 .featured-section-1-2 .slider-container { width: 71.2% }
.featured-section-1-full-width-2 .featured-section-1-2 .static-posts { width: 28.8% }
.featured-section-1-full-width-1 .featured-section-1-1 .static-posts .post-box { padding: 0 }
/*slider 2*/
.featured-section-1-2 { margin-bottom: 40px }
.featured-section-1-2 .slider-container { margin-bottom: 10px }
.featured-section-1-2 .slider-container, .featured-section-1-2 .static-posts .post-box, .slider-like .post-box { padding: 0 5px }
/*section 2*/
.dark .post-box, .featured-section-2-1 .post-box { width: 33.33%!important }
.featured-section-2-2 .post-box, .slider-like .post-box { width: 50%!important }
.featured-section-2-full-width-2 .featured-section-2-2 .post-box { width: 33.33%!important }
.dark .post-box, .featured-section-2-1 .post-box {
padding: 0;
margin: 0!important;
}
#latest-posts { margin: 0 }
#featured-section-3 .vertical-small .post-img { margin-top: 3px }
#featured-section-3 .featured-section-title { margin-bottom: 25px }
/**********post layouts***********/
/*post container*/
.post-box {
margin: 0 0 10px 0;
list-style-type: none;
width: 100%;
float: left;
}
.widget .post-box {
padding: 0;
max-width: 345px;
margin-left: 0;
list-style-type: none;
margin-bottom: 15px;
}
.latestPost {
padding: 0;
clear: both;
}
.mixed.latestPost {
width: 48.394%;
clear: none;
margin-right: 3%;
margin-bottom: 27px;
}
.mixed.latestPost:nth-of-type(2n+1) { clear: left }
.post-data, .post-img {
position: relative;
overflow: hidden;
}
.post-data .post-title a { line-height: 1.4;text-transform: initial;}
#site-footer .post-data .post-title a {
color: inherit;
}
.post-img img {
border-radius: 3px;
float: left;
width: 100%;
}
.vertical-small .post-img, .vertical-small .post-data { width: 100% }
.vertical .post-data { overflow: hidden }
.mixed.vertical-small:nth-of-type(2n+2) { margin-right: 0 }
.vertical .post-img {
margin-bottom: 0;
margin-right: 20px;
float: left;
margin-top: 5px;
width: 48.4%;
}
.post-box.vertical { margin-bottom: 30px }
/* horizontal boxes */
.horizontal-container, .horizontal-container-inner {
width: 100%;
float: left;
position: relative;
}
.horizontal-container { overflow: hidden }
/* horizontal loop */
.horizontal .post-img, .horizontal .post-data { width: 50% }
.horizontal:nth-of-type(odd) .horizontal-container-inner { left: 50% }
.horizontal:nth-of-type(odd) .post-img, .horizontal:nth-of-type(odd) .post-data { right: 50% }
.horizontal:nth-of-type(even) .horizontal-container-inner { right: 50% }
.horizontal:nth-of-type(even) .post-img, .horizontal:nth-of-type(even) .post-data { left: 50% }
.horizontal:nth-of-type(even) .post-img { float: right }
.horizontal .post-data-container { margin: 8% 20px !important }
/* horizontal in mixed loop / related / widgets */
.horizontal-small .post-img {
width: 29.423%;
float: left;
margin-top: 4px;
}
.widget .horizontal-small .post-img {
width: 33.33%;
margin-top: 3px;
}
.widget .horizontal-small .post-data { overflow: hidden }
.clear-left { clear: left }
.clear-right { clear: right }
.clear-none { clear: none }
/*data*/
.vertical-small .post-data { margin-top: 15px }
.post-data header { margin-bottom: 0 }
.post-data .post-title {
display: block;
margin-bottom: 0 !important;
overflow: hidden;
}
.horizontal-small .post-info {
color: #919191;
margin-top: 10px;
}
#site-footer .horizontal-small .post-info, #site-footer .post-info {
color: inherit;
}
#site-footer .slider-container .post-info {
color: #919191;
}
.post-data .post-excerpt {
float: left;
width: 100%;
margin-top: 15px;
padding-right: 5px;
}
.latestPost.mixed.horizontal-small {
margin-right: 0;
clear: none;
}
.horizontal-small .post-data-container {
margin: 0 0 0 18px;
overflow: hidden;
}
.slider1 .post-data-container { margin: 40px 20px }
.slider1 .post-box, .featured-section-1-1 .post-box { margin: 0 !important }
.post-day {
position: absolute;
top: 20px;
right: 20px;
line-height: 1;
font-weight: lighter;
color: #fff;
}
/* no image widget box */
.no-thumb.post-box .post-data { overflow: hidden }
.no-thumb.horizontal-container .post-data {
height: auto!important;
padding: 0!important;
width: 100%!important;
}
.no-thumb.horizontal-container .post-data-container { position: relative!important }
/*-[ Thumbnail video icon ]--------------------------------*/
.play-icon {
position: absolute;
left: 50%;
top: 50%;
color: white;
font-size: 14px;
text-align: center;
width: 48px;
height: 48px;
line-height: 48px;
margin: -24px 0 0 -24px;
background: rgba(0,0,0,.5);
border-radius: 50%;
padding: 3px;
}
.play-icon .fa {
width: 100%;
height: 100%;
display: block;
line-height: 38px;
border-radius: 50%;
border: 2px solid #fff;
}
.vertical .play-icon, .slider1 .play-icon, .slider2 .play-icon {
font-size: 18px;
width: 96px;
height: 96px;
line-height: 96px;
margin: -48px 0 0 -48px;
padding: 5px;
}
.vertical .play-icon .fa, .slider1 .play-icon .fa, .slider2 .play-icon .fa {
line-height: 80px;
border-width: 3px;
}
.slider1 .play-icon { left: 68.75% }
.featured-section-1-full-width-1 .featured-section-1-1 .slider1 .play-icon {
top: 25%;
left: 75%;
}
/*-[ Related Posts ]---------------------------*/
.related-posts {
clear: both;
float: left;
width: 100%;
margin-bottom: 40px;
}
.related-posts h3 {
text-transform: uppercase;
font-size: 25px;
margin: 0;
}
.related-posts ul {
margin-left: 0;
padding: 0;
margin: 0;
overflow: hidden;
margin-top: 0;
}
.related-posts li {
width: 48.5%;
float: left;
list-style: none;
margin-bottom: 20px;
margin-right: 3%;
padding: 0;
}
.related-posts li:nth-child(odd) { clear: left }
.related-posts li:nth-child(even) {
clear: right;
margin-right: 0;
}
.relatedthumb img {
width: 100%;
max-width: 115px;
margin: 0;
}
.singleleft .related-posts li {
width: 100%;
padding: 0;
}
.singleleft .postauthor-top { margin-bottom: 20px }
.singleleft .related-posts h3 {
font-size: 18px;
font-weight: bold;
line-height: 1;
}
.singleleft .related-posts ul { margin: 0 }
.singleleft .rthumb img { margin-bottom: 3px }
/*-[ Tab/Review Widgets ]---------------------------*/
.widget .wpt_widget_content, .widget .wp_review_tab_widget_content { border: 0 }
.widget .wpt_widget_content .tab_title a { border-color: rgba(0, 0, 0, 0.05) }
.widget .wpt_widget_content .tab_title.selected a, .widget .wp_review_tab_widget_content .tab_title.selected a { color: #fff }
.widget .wpt_widget_content .tab-content li, .widget .wp_review_tab_widget_content .tab-content li {
padding: 0 0 10px 0;
border: 0;
}
.widget .wpt_thumb_small, .widget .wp_review_tab_thumb_small {
width: 115px;
height: 115px;
margin-top: 4px;
padding-top: 0;
}
.widget .wpt_widget_content .entry-title, .widget .wp_review_tab_widget_content .entry-title {
text-transform: uppercase;
line-height: 1.6;
}
.widget .wpt_widget_content .wp-post-image, .widget .wp_review_tab_widget_content .wp-post-image { width: 100% }
.widget .wpt_widget_content .tab_title.selected a, .wpt_widget_content .has-3-tabs .tab_title.selected a, .wpt_widget_content .has-4-tabs .tab_title.selected a, .widget .wp_review_tab_widget_content .tab_title.selected a, .wp_review_tab_widget_content .has-3-tabs .tab_title.selected a, .wp_review_tab_widget_content .has-4-tabs .tab_title.selected a { border-color: rgba(0, 0, 0, 0.05) }
.widget .wpt_widget_content .has-2-tabs .tab_title:first-child a, .widget .wp_review_tab_widget_content .has-2-tabs .tab_title:first-child a, .widget .wpt_widget_content .has-3-tabs .tab_title:first-child a, .widget .wp_review_tab_widget_content .has-3-tabs .tab_title:first-child a { border-radius: 3px 0 0 3px }
.widget .wpt_widget_content .has-2-tabs .tab_title:last-child a, .widget .wp_review_tab_widget_content .has-2-tabs .tab_title:last-child a, .widget .wpt_widget_content .has-3-tabs .tab_title:last-child a, .widget .wp_review_tab_widget_content .has-3-tabs .tab_title:last-child a { border-radius: 0 3px 3px 0 }
.widget .wpt_widget_content .has-4-tabs .tab_title:first-child a, .widget .wp_review_tab_widget_content .has-4-tabs .tab_title:first-child a { border-radius: 3px 0 0 0 }
.widget .wpt_widget_content .has-4-tabs .tab_title:nth-child(2) a, .widget .wp_review_tab_widget_content .has-4-tabs .tab_title:nth-child(2) a { border-radius: 0 3px 0 0 }
.widget .wpt_widget_content .has-4-tabs .tab_title:nth-child(3) a, .widget .wp_review_tab_widget_content .has-4-tabs .tab_title:nth-child(3) a { border-radius: 0 0 0 3px }
.widget .wpt_widget_content .has-4-tabs .tab_title:last-child a, .widget .wp_review_tab_widget_content .has-4-tabs .tab_title:last-child a { border-radius: 0 0 3px 0 }
.widget .wpt_widget_content .wpt-pagination a, .widget #comments-tab-content .wpt-pagination a, .widget .wp_review_tab_widget_content .wp-review-tab-pagination a {
padding: 5px 10px;
border-radius: 3px;
margin: 0;
margin-top: 15px;
float: left;
font-size: 16px;
color: #fff;
text-transform: initial;
font-weight: normal;
}
.widget .wpt_widget_content .wpt-pagination a.next, .widget #comments-tab-content .wpt-pagination a.next, .widget .wp_review_tab_widget_content .wp-review-tab-pagination a.next { float: right }
.widget .review-type-circle.review-total-only {
height: 27px;
padding: 3px;
}
.widget .review-total-only.small-thumb.review-type-star { font-size: 2px }
.widget .wp-review-show-total .review-star, .widget .wp-review-user-rating .review-star { margin: 2px 3px 0 3px }
/* Review Data */
.post-box .post-info { display: inline-table }
.post-box .review-total-only {
display: inline-block;
padding: 0 6px;
background: #3498db;
color: #fff;
position: relative;
border-radius: 3px;
overflow: hidden;
}
.review-total-only { border-radius: 3px }
.latestPost.post-box .review-total-only { margin-bottom: -5px }
.post-box .review-type-circle.review-total-only, .post-box .review-type-circle.wp-review-show-total {
margin-bottom: -5px;
margin-top: -7px;
height: 27px;
padding: 3px;
}
.post-box .review-total-only span { margin: 0 }
.post-box .review-type-star.review-total-only {
background: none!important;
padding: 0;
vertical-align: middle;
margin-bottom: 0px;
}
.post-box .review-total-only .review-result-wrapper i {
color: #919191 !important;
opacity: 1;
}
.post-box .review-total-only .review-result-wrapper .review-result i { color: #e52329 !important }
/*-[ Facebook like box Widget ]---------------------------*/
.widget.facebook_like iframe { width: 100% !important }
.fb_iframe_widget, .fb_iframe_widget span {
max-width: 100%;
width: 100%!important;
}
/*-[ WP Widgets ]---------------------------*/
.widget.widget_meta li, .widget.widget_archive li, .widget.widget_categories li, .widget.widget_pages li, .widget.widget_recent_comments li, .widget.widget_recent_entries li { padding: 0 }
/* Custom Nav Widget */
.widget_nav_menu ul li { list-style-type: square; }
.widget_nav_menu ul a {
padding: 0;
line-height: 2;
}
.widget_nav_menu .menu-item { margin: 0;margin-left: 17px;margin-bottom: 0;}
.widget_nav_menu .sub-menu > li > a {padding-left: 0;}
.widget_nav_menu .menu-item-has-children a {
padding-right: 0;
padding-left: 0;
}
.menu-caret {
position: absolute;
right: 0;
top: 1px;
width: 40px;
text-align: center;
border-left: 1px solid #c5c5c5;
line-height: 40px;
}
.menu-caret:before {
content: "\f105";
font-family: "FontAwesome";
font-size: 18px;
vertical-align: middle;
}
.active > a > .menu-caret {
color: #ffffff;
background: #e52329;
}
.active > a > .menu-caret:before { content: "\f107" }
/*-[ Form Input ]------------------*/
input, textarea, select {
padding: 8px 12px;
font-size: 14px;
color: #666;
border: 1px solid #eee;
background: #eeeeee;
font-family: inherit;
}
textarea {
overflow: auto;
resize: vertical;
}
select {
padding: 6px 10px;
border-color: #919191;
width: 100%;
}
input:focus, textarea:focus { background: #fff }
/*-[ Tables ]--------------------*/
table {
width: 100%;
text-align: left;
margin-bottom: 25px;
border: 1px solid #eee;
}
thead {
background: #F7F8F9;
font-size: 14px;
color: #585F65;
}
table th, table td {
padding: 7px 15px;
text-align: left;
}
thead th { padding: 14px }
tbody th {
font-weight: normal;
border-bottom: 1px solid #eee;
background: #eee;
}
/*-[ Line ]---------------------*/
hr {
border: none;
border-bottom: 1px solid #E5E5E5;
border-bottom: 1px solid rgba(0,0,0,0.1);
width: 297px;
margin: 35px 0;
clear: both;
position: relative;
}
/*-[ Search Form ]------------------*/
.widget-header form#searchform {
max-width: 300px;
float: right;
}
#searchform, .widget_product_search {
padding: 0;
float: left;
clear: both;
width: 100%;
position: relative;
}
.article #searchform { max-width: 300px }
#searchform fieldset { float: left }
.sbutton, #searchsubmit, .widget_product_search input[type="submit"] {
right: 0px;
top: 0px;
padding: 0;
float: right;
border: 0;
width: 48px;
height: 48px;
cursor: pointer;
text-align: center;
color: white;
transition: all 0.25s linear;
z-index: 10;
position: absolute;
border: 0;
vertical-align: top;
background: transparent;
}
.widget_product_search input[type="submit"] { width: auto; padding: 0 10px; border-radius: 0 3px 3px 0;}
#searchform .fa-search {
font-size: 18px;
top: 0px;
position: absolute;
right: 0px;
color: #919191;
padding: 15px 15px;
}
#s, .widget_product_search .search-field {
width: 100%;
float: left;
padding: 15px 0;
height: 48px;
text-indent: 10px;
color: #919191;
background: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.04);
transition: all 0.25s linear;
border-radius: 3px;
}
/* Search input placeholder text styling */
::-webkit-input-placeholder { color: #919191 }
:-moz-placeholder { color: #919191 }
::-moz-placeholder { color: #919191 }
:-ms-input-placeholder { color: #919191 }
:input-placeholder { color: #919191 }
/* Microphone icon position fix */
input::-webkit-input-speech-button {
margin-right: 50px;
margin-left: 5px;
cursor: pointer;
}
#searchform fieldset { width: 100% }
.breadcrumb, .breadcrumb> div, .breadcrumb .fa-caret-right, .breadcrumb .root a { float: none }
.breadcrumb {
clear: both;
padding: 0;
overflow: hidden;
margin-bottom: 20px;
}
.breadcrumb> div {
padding: 0 5px;
overflow: hidden;
float: none;
display: inline-block;
}
.breadcrumb .fa-caret-right { padding: 0 }
.breadcrumb .root { padding: 0 }
.breadcrumb .fa-caret-right { padding: 0 0 }
.breadcrumb > div { overflow: visible }
.breadcrumb > div:first-child { padding-left: 0 }
.no-results h2 { font-size: 16px }
/*-[ Top Ad in Post ]-------------------------------------*/
.topad {
margin-bottom: 10px;
clear: both;
}
/*-[ Bottom Ad in post ]-----------*/
.bottomad {
float: left;
clear: both;
margin-bottom: 10px;
}
/*-[ Sidebar ]---------------------*/
#sidebars p { line-height: 20px }
.sidebar.c-4-12 {
float: right;
width: 27.3%;
line-height: 20px;
max-width: 300px;
}
.sidebar.c-4-12 a {
}
.widget {
margin-bottom: 35px;
float: left;
clear: both;
width: 100%;
overflow: hidden;
}
#site-footer .widget h3 {color: inherit;}
.sidebar .widget h3 { margin-top: -5px }
.widget .title {
font-weight: bold;
text-transform: uppercase;
color: inherit;
font-size: 12px;
}
.widget li {
list-style-type: square;
margin-left: 17px;
margin-bottom: 10px;
}
.widget li:last-child { margin-bottom: 0 }
.widget h3 {
font-size: 25px;
line-height: 1.4;
margin: 0 0 20px 0;
text-transform: uppercase;
}
/*-[ Social Buttons ]--------------------------*/
.share-item.facebookbtn, .share-item.linkedinbtn, .share-item.stumblebtn { width: 92px }
.shareit {
padding: 20px 0 0;
overflow: hidden;
clear: both;
border: none;
}
.share-item {
display: block;
margin: 0;
float: left;
height: 25px;
width: 90px;
}
.shareit.top {
padding-top: 0!important;
margin-bottom: 15px!important;
}
.share-item.shareit.top {
float: left;
margin-bottom: 10px!important;
margin-top: 0;
width: 100%;
}
.share-item.facebookbtn, .share-item.facebooksharebtn {
margin-top: -1px;
width: 100px;
height: 28px;
}
.share-item.gplusbtn { width: 85px }
.share-item.pinbtn a { transition: none }
.share-item.stumblebtn {
margin-top: 1px;
height: 24px;
}
/*-[ Social Profile Widget ]--------------------------*/
.widget .social-profile-icons { margin: -6px }
.social-profile-icons ul li {
background: none;
border: none;
float: left;
list-style-type: none;
margin: 0 !important;
padding: 6px !important;
}
.social-profile-icons ul li a {
width: 40px;
height: 40px;
display: block;
float: left;
text-align: center;
line-height: 40px;
color: #FFF;
border-radius: 3px;
}
.social-profile-icons ul li a:hover { opacity: 0.8 }
.social-profile-icons ul li i {
font-size: 18px;
line-height: 40px;
}
.social-profile-icons .social-youtube a { background: #c9322b }
.social-profile-icons .social-rss a { background: #ef922f }
.social-profile-icons .social-twitter a { background: #40bff5 }
.social-profile-icons .social-facebook a { background: #5d82d1 }
.social-profile-icons .social-gplus a { background: #eb5e4c }
.social-profile-icons .social-vimeo a { background: #35c6ea }
.social-profile-icons .social-dribbble a { background: #f7659c }
.social-profile-icons .social-tumblr a { background: #426d9b }
.social-profile-icons .social-instagram a { background: #91653f }
.social-profile-icons .social-flickr a { background: #ff48a3 }
.social-profile-icons .social-pinterest a { background: #e13138 }
.social-profile-icons .social-linkedin a { background: #238cc8 }
.social-profile-icons .social-github a { background: #b5a470 }
.social-profile-icons .social-email a { background: #1d90dd }
.social-profile-icons .social-behance a { background: #1879fd }
.social-profile-icons .social-skype a { background: #13c1f3 }
.social-profile-icons .social-soundcloud a { background: #ff7e30 }
.social-profile-icons .social-stumbleupon a { background: #ff5c30 }
.social-profile-icons .social-dropbox a { background: #3476e4 }
.social-profile-icons .social-foursquare a { background: #0bbadf }
.social-profile-icons .social-reddit a { background: #ff4400 }
/*-[ Footer ]-------------------*/
footer > .footer-carousel-wrap, footer > .copyrights { background: #fff }
.footer-carousel-wrap { padding: 50px 0 }
footer {
overflow: hidden;
width: 100%;
position: relative;
clear: both;
}
footer .container { padding: 0 }
.footer-widgets {
overflow: hidden;
padding: 50px 0 0;
width: 100%;
margin: 0;
}
.f-widget {
width: 29.5%;
float: left;
position: relative;
margin-bottom: 0;
margin-right: 5.75%;
}
.widgets-num-4 .f-widget {
width: 22%;
margin-right: 4%;
}
.footer-widgets .f-widget:last-of-type { margin-right: 0px!important }
.copyrights {
float: left;
width: 100%;
clear: both;
padding: 40px 0;
}
.copyrights a {
color: inherit;
border-bottom: 1px dotted;
}
#copyright-note {
width: 1170px;
margin: 0 auto;
clear: both;
max-width: 100%;
}
#copyright-note > span { float: left }
#copyright-note .right { margin-right: 10px }
.postsby { margin-bottom: 25px }
/*-[ Back To Top ]---------------------------*/
#move-to-top {
color: #fff;
cursor: pointer;
display: inline-block;
position: fixed;
right: 10px;
bottom: 31px;
z-index: 25;
background: #444;
transition: all 0.25s linear;
-webkit-backface-visibility: hidden;
border-radius: 3px;
}
#move-to-top:hover { color: #ffffff;background: #444;}
#move-to-top:not(.filling) {
opacity: 0;
visibility: hidden;
}
#move-to-top .fa-chevron-up {
font-size: 14px;
padding: 0;
width: 40px;
line-height: 40px;
text-align: center;
}
/*-[ Post Tags ]---------------------------------*/
.thetags {
float: left;
width: 100%;
display: inline-block;
margin: 0 0 25px 0;
}
.thetags a { padding-right: 0 }
.tags a { margin-left: 5px }
/*-[ Author Box ]--------------------------------*/
.postauthor {
margin: 0 0 50px 0;
padding: 0;
min-height: 180px;
float: left;
clear: both;
width: 100%;
}
.postauthor h4 {
text-transform: uppercase;
font-size: 25px;
line-height: 22px;
}
.postauthor .vcard {
margin-bottom: 15px;
text-transform: uppercase;
}
.postauthor .vcard .fa { padding-right: 7px }
.postauthor .vcard .mail { color: #919191 }
.author-box {
float: left;
width: 100%;
}
.author-box img, .author-box-content { margin: 0 }
.author-box img {
float: left;
width: 19.2%;
}
.author-box-content {
position: relative;
padding: 0 0 0 20px;
min-height: 150px;
overflow: hidden;
}
.postauthor p {
padding-top: 0px;
margin-bottom: 0;
}
.postauthor h4 a { color: #444 !important }
#respond h4, .total-comments, .postauthor h4, .postauthor-top {
margin-bottom: 25px;
margin-top: 0;
font-size: 25px;
line-height: 22px;
}
.clear { clear: both }
.left { float: left }
.right { float: right }
.last { margin-right: 0!important }
/*-[ Tag widget ]------------------------------*/
.widget .wpt_widget_content #tags-tab-content ul li {
float: left;
margin: 0;
}
.tagcloud a, #tags-tab-content a, .widget .wpt_widget_content #tags-tab-content ul li a {
font-size: 15px!important;
padding: 7px 13px;
margin-bottom: 7px;
float: left;
border-radius: 3px;
margin-right: 7px;
background: #c5c5c5;
color: #FFFFFF!important;
transition: all 0.25s linear;
line-height: 1.4;
}
/*-[ Ad Widgets ]------------------------------*/
.ad-125 ul {
list-style: none outside none;
margin: 0 auto;
max-width: 100%;
}
.ad-125 li {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border: medium none !important;
float: left;
list-style: none outside none !important;
margin-bottom: 15px;
margin-left: 0;
padding-left: 0;
padding-top: 0 !important;
max-width: 48%;
}
.ad-125 li:nth-child(2n+2) { float: right!important }
.ad-125 li:nth-last-child(2), .ad-125 li:last-child { margin-bottom: 0 }
.ad-300 { text-align: center }
/*-[ Calender Widget ]-------------------------*/
#wp-calendar {
margin-bottom: 0;
border: 0px none;
position: relative;
}
#wp-calendar td {
text-align: center;
padding: 0;
line-height: 40px;
}
#wp-calendar td a {
display: block;
color: #fff;
background: #444;
}
#wp-calendar td a:hover, #wp-calendar #today { color: #fff }
#wp-calendar caption {
font-size: 15px;
padding: 10px 40px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
background: #444;
}
#wp-calendar thead {
background: transparent;
font-size: 15px;
font-weight: bold;
color: #919191;
}
#wp-calendar thead th {
padding: 25px 0;
text-align: center;
border-bottom: 1px solid #c5c5c5;
}
#wp-calendar thead th.today {
border-bottom: 1px solid;
color: #444;
}
#wp-calendar #prev, #wp-calendar #next {
position: absolute;
top: 0;
}
#wp-calendar #prev { left: 0 }
#wp-calendar #next { right: 0 }
#wp-calendar #prev a, #wp-calendar #next a { position: relative }
#wp-calendar #prev a:before, #wp-calendar #next a:before {
position: absolute;
font-family: "FontAwesome";
font-size: 18px;
color: #fff;
width: 40px;
line-height: 40px;
text-align: center;
background: #444;
transition: all 0.25s ease;
}
#wp-calendar #prev a:before {
border-right: 1px solid rgba(0, 0, 0, 0.1);
content: "\f104";
}
#wp-calendar #next a:before {
border-left: 1px solid #5e5e5e;
content: "\f105";
}
#wp-calendar tfoot .pad { display: none }
/*-[Comments]--------------*/
.nocomments {
margin: 0;
clear: both;
float: left;
width: 100%;
}
.total-comments { text-transform: uppercase }
#comments {
padding: 0;
float: left;
clear: both;
width: 100%;
margin-bottom: 0;
}
#respond h4 {
text-transform: uppercase;
padding-top: 5px;
padding-bottom: 7px;
font-size: 25px;
line-height: 20px;
}
#commentsAdd {
width: 100%;
float: left;
clear: both;
margin-bottom: 20px;
}
#comments .avatar {
position: absolute;
left: -115px;
top: 0;
}
.comment-box {
padding: 0 0 0 20px;
margin-left: 115px;
min-height: 115px;
position: relative;
}
.comment time { padding-left: 10px }
input.text-input, #commentform input { padding: 11px }
input#author, input#email, input#url {
width: 300px;
border: 1px solid rgba(0, 0, 0, 0.04);
background: rgba(0, 0, 0, 0.05);
max-width: 85%;
margin-right: 10px;
}
input#author, input#email, input#url, #comment {
transition: all 0.25s ease-in-out;
border-radius: 3px;
}
#cancel-comment-reply-link {
float: right;
line-height: 24px;
margin-top: 0;
cursor: pointer;
margin-bottom: -20px;
text-decoration: underline;
z-index: 100;
position: relative;
}
#commentform input#submit, .contactform #submit, input[type="submit"] {
line-height: 1;
background-color: #444;
padding: 17px 15px;
color: #fff;
text-decoration: none;
float: right;
cursor: pointer;
display: inline-block;
border: none;
transition: all 0.2s linear;
border-radius: 3px;
text-transform: uppercase;
}
.contactform #submit { float: left }
.contactform label { display: block }
.contactform {
overflow: hidden;
margin-bottom: 35px;
}
.comment #respond {
float: left;
width: 100%;
margin-top: 20px;
}
.error { color: red }
.thanks p { color: green }
ol.commentlist {
margin-left: 0;
margin-top: 13px;
}
.commentlist li {
list-style: none;
margin: 0 0 25px 0;
padding-left: 0;
float: left;
width: 100%;
position: relative;
}
.commentlist p { margin-bottom: 15px }
.ago {
color: #919191;
float: left;
text-transform: uppercase;
margin-right: 15px;
font-size: 15px;
}
.fn {
float: left;
text-transform: uppercase;
margin-right: 18px;
font-size: 15px;
font-weight: bold;
position: relative;
}
.bypostauthor .fn { padding-left: 85px }
.fn a {
font-weight: bold;
font-size: 15px;
}
.comment-reply-link {
color: #3498DB;
float: right;
margin-left: 15px;
font-size: 14px;
}
.commentmetadata {
overflow: hidden;
margin-top: 15px;
}
.commentmetadata > ul, .commentmetadata > ol {
margin-bottom: 15px!important;
float: left;
}
.commentmetadata li {
border: 0;
padding: 0;
margin-top: 0;
margin-bottom: 5px;
list-style: square;
}
.commentmetadata ol li { list-style: decimal }
.comment .wp-review-usercomment-rating { margin-top: -4px }
.comment .wp-review-usercomment-rating .review-star { margin: 0 auto }
.comment .review-result, #commentform .wp-review-comment-rating .review-result i { color: #FFB300!important }
.reply {
margin-top: 0px;
padding-bottom: 0px;
overflow: hidden;
width: 100%;
float: right;
}
.reply a {
font-weight: bold;
float: left;
padding: 0 0px;
color: #e52329;
font-size: 12px;
}
#commentsAdd #respond h4 { margin-bottom: 25px }
.comment #respond #respond { margin-top: 20px }
.commentlist .children {
margin-left: 113px;
margin-bottom: 0;
margin-top: 0;
float: left;
}
.commentlist .children li { margin-bottom: 35px }
.avatar {
float: left;
border-radius: 3px;
}
#respond h3 {
font-size: 18px;
margin: 0;
padding: 0;
float: left;
width: 100%;
}
.comment-awaiting-moderation {
font-style: italic;
font-weight: bold;
}
/*-[ Comment Form ]----------------------------*/
#commentform textarea {
width: 100%;
border: 1px solid rgba(0, 0, 0, 0.04);
background: rgba(0, 0, 0, 0.05);
padding: 2%;
line-height: 25px;
font-family: inherit;
}
#commentform textarea:focus { background: #fff }
#commentform p {
margin-bottom: 15px;
float: left;
width: 100%;
clear: both;
}
#commentform p label {
padding-bottom: 5px;
padding-top: 5px;
padding-left: 10px;
}
.cancel-comment-reply a {
float: right;
margin-top: -8px;
}
.required {
color: red;
padding: 0;
line-height: 1;
}
.comment-notes .required {
padding-left: 0;
padding-top: 3px;
}
.comment-notes { font-style: italic }
/*-[ pagination ]------------------*/
.pagination {
clear: both;
overflow: hidden;
float: left;
width: 100%;
margin-top: 10px;
margin-bottom: 20px;
text-align: center;
display: block!important;
}
.single .pagination {
border: 0;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin-top: 0;
padding: 0;
width: 100%;
text-align: left;
}
article .pagination { padding: 0 }
article .pagination a { margin-right: 10px;color: #fff;text-align: center;}
.pagination ul {
list-style: none;
margin: 0 auto;
display: inline-block;
}
.pagination-previous-next ul { display: block }
.pagination-previous-next ul li, .pagination ul li:only-child, .pagination ul li:last-child { border-right: 0px none }
.pagination > .current, .pagination .page-numbers.current, .pagination a:hover, .single .pagination a:hover .currenttext {
color: #fff;
display: inline-block;
padding: 10px 15px;
background: #444;
}
.pagination > .current, .pagination .page-numbers.current {
float: none;
background: #444;
border-radius: 3px;
min-width: 42px;
margin-right: 7px;
margin-bottom: 10px;
}
.pagination a, .pagination .dots {
background: #444;
display: inline-block;
float: none;
text-decoration: none;
padding: 10px 15px;
transition: all 0.25s linear;
border-radius: 3px;
min-width: 42px;
color: #fff;
margin-right: 7px;
margin-bottom: 10px;
}
.pagination .nav-previous, .pagination .previous {
float: left;
margin: 0;
margin-bottom: 10px;
}
.pagination .nav-next, .pagination .next {
float: right;
margin: 0;
margin-bottom: 10px;
}
.pagination a.previous.page-numbers,.pagination a.next.page-numbers {
float: none;
}
.pagination .nav-previous a, .pagination .nav-next a { color: #fff!important }
.single .pagination a .currenttext, .single .pagination a:hover .currenttext {
padding: 0;
background: transparent;
margin-right: 0;
min-width: 100%;
}
.single .pagination a:hover .currenttext { color: #fff }
.pagination .fa { font-size: 14px }
.pagination .nav-previous .fa { margin-right: 5px }
.pagination .nav-next .fa { margin-left: 5px }
/*-[ Contact Form ]------------------*/
.contact-form { position: relative }
.contact-form.loading:after {
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(255, 255, 255, 0.8);
}
.contact-form label, .contact-form input, .contact-form textarea {
display: block;
width: 100%;
}
.contact-form input, .contact-form textarea { padding: 12px }
.contact-form textarea { height: 150px }
.contact-form label { margin-top: 12px }
.contact-form input[type="submit"] {
margin-top: 12px;
padding: 15px;
float: right;
width: auto;
}
.mtscontact_error { color: #B90101 }
/*-[ AJAX search results ]------------------*/
.widget_search, #sidebar-search { overflow: visible }
.ajax-search-box-open #s { background-color: #eeeeee }
.ajax-search-results-container {
position: absolute;
top: 47px;
left: 0;
width: 100%;
z-index: 9;
background: #EEEEEE;
border: 1px solid #EEE;
border-top-color: rgba(0, 0, 0, 0.1);
color: #6a6a6a;
margin-top: -1px;
border-radius: 0 0 3px 3px;
}
.ajax-search-results-container a { padding: 0 }
.ajax-search-results-container.loading:after {
content: "";
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(255,255,255,0.8);
}
ul.ajax-search-results {
margin: 0;
padding: 0;
}
.ajax-search-results li {
margin: 0;
display: block;
float: left;
clear: both;
width: 100%;
list-style: none;
min-height: 50px;
padding: 12px 12px 0;
border-bottom: 0;
position: relative;
}
.ajax-search-results li:last-of-type { padding-bottom: 12px }
.ajax-search-results .wp-post-image {
margin: 3px 15px 0 0;
max-width: 80px;
}
.ajax-search-results .meta { margin: 5px 0 0 94px }
.ajax-search-meta .results-count { padding: 0 12px }
.ajax-search-meta .results-link {
float: left;
width: 100.6%;
text-align: center;
padding: 12px 20px;
line-height: 1;
border-radius: 0 0 3px 3px;
background: rgb(0, 0, 0);
margin: 7px 0px -1px;
color: #fff;
}
.ajax-search-results-container .no-results {
padding: 8px;
color: #AAA;
font-style: italic;
}
.ajax-search-results .play-icon {
left: 16.5%;
top: 50%;
}
/*-[ Load More ]-------------------*/
.pace .pace-progress {
background: #e52329;
position: fixed;
z-index: 2000;
top: 0;
left: 0;
height: 3px;
transition: width 0.8s;
-webkit-backface-visibility: hidden;
}
.admin-bar .pace .pace-progress { top: 32px }
.pace-inactive { display: none }
#load-posts, #fs2_load_more_container {
float: left;
width: 100%;
text-align: center;
}
#load-posts a, #fs2_load_more_button {
font-size: 15px;
color: #fff;
display: inline-block;
float: none;
line-height: 22px;
text-decoration: none;
padding: 9px 20px;
margin: 15px 0 25px 0;
background: #444;
border-radius: 3px;
}
#fs2_load_more_button { margin-bottom: 0 }
#load-posts .fa, #fs2_load_more_button .fa { margin-right: 15px }
/*-[ Parallax & Zoom Out ]--------------------------------*/
#parallax {
position: relative;
padding-bottom: 350px;
height: 0;
overflow: hidden;
background-size: cover;
margin-bottom: 25px;
}
#zoom-out-effect, #zoom-out-bg {
position: relative;
padding-bottom: 350px;
height: 0;
}
#zoom-out-effect {
overflow: hidden;
margin-bottom: 25px;
}
#zoom-out-bg {
background-size: cover;
width: 100%;
}
/*-[ Misc ]---------------------------*/
pre {
overflow: auto;
padding: 15px;
margin: 15px 0;
position: relative;
background: rgba(0, 0, 0, 0.1);
font-family: monospace;
color: #444;
}
pre:before {
content: "\f121";
color: #444;
position: absolute;
font-size: 18px;
right: 14px;
top: 6px;
font-family: FontAwesome;
}
/*-[ WP Review ]--------------------------------*/
.latestPost-review-wrapper {
position: absolute;
top: 0;
right: 0;
background: #FFF;
padding: 2px 8px;
}
.latestPost-review-wrapper .review-total-star { margin: 4px 0 }
.latestPost-review-wrapper .percentage-icon {
top: 0;
font-size: inherit;
font-style: normal;
}
.post-box .review-total-star {
position: relative!important;
right: auto!important;
top: auto!important;
}
/*-[ Mega Menu ]------------------------------------*/
#wpmm-megamenu a:hover { background: none!important }
#wpmm-megamenu .review-total-only { border-radius: 0 3px 0 }
#navigation .menu .menu-item-wpmm-megamenu a:hover { background: transparent }
#navigation .menu .wpmm-light-scheme.menu-item-wpmm-megamenu a:hover {
background: transparent;
color: #333!important;
}
/* Screen reader Css as WordPress's recommendation */
/* Text meant only for screen readers. */
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; /* Above WP toolbar. */
} | wp-content/themes/mts_best/style.css | *, *:before, *:after { box-sizing: border-box }
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
html { -webkit-font-smoothing: antialiased }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block }
ol, ul { list-style: none }
blockquote, q { quotes: none }
table {
border-collapse: collapse;
border-spacing: 0;
}
button, input, select, textarea { margin: 0 }
:focus { outline: 0 }
img, video, object {
max-width: 100%;
height: auto!important;
}
iframe { max-width: 100% }
blockquote {
font-weight: normal;
font-size: 22px;
line-height: 1.5;
padding: 0 0 0 38px;
position: relative;
margin: 0 0 25px;
font-family: Georgia;
font-style: italic;
}
blockquote:after {
font-family: FontAwesome;
position: absolute;
content: "\f10d";
font-size: 30px;
color: #737373;
font-style: inherit;
top: 0;
left: 0;
}
.entry-content > blockquote { margin: 0 0 25px }
blockquote p:last-child { margin-bottom: 0 }
blockquote p { margin-bottom: 10px }
strong, b { font-weight: bold }
em, i, cite { font-style: italic }
small { font-size: 100% }
figure { margin: 10px 0 }
code, pre {
font-weight: normal;
font-style: normal;
}
pre {
margin: 5px 0 20px 0;
line-height: 1.3em;
padding: 8px 10px;
overflow: auto;
}
code {
padding: 0 8px;
line-height: 1.5;
}
mark {
padding: 1px 6px;
margin: 0 2px;
color: black;
background: #FFF7A8;
}
address {
margin: 10px 0;
font-style: italic;
}
.wp-caption {
background: #fff;
border: 1px solid #f0f0f0;
max-width: 96%;
padding: 5px 3px 10px;
text-align: center;
}
.sticky {
}
.gallery-caption {
}
#gallery-1 img { border: 0!important }
.bypostauthor {
}
.wp-caption-text { margin-bottom: 0 }
dl { padding-bottom: 1em }
dt {
float: left;
clear: left;
width: 100px;
text-align: right;
font-weight: bold;
}
dd {
margin: 0 0 0 110px;
padding: 0 0 0.5em 0;
overflow: hidden;
}
#wpadminbar { -webkit-backface-visibility: hidden }
/*-[ Framework ]--------------------*/
body {
font: 15px/1.5 Noto Sans, sans-serif;
color: #444;
background-color: #ffffff;
}
::-moz-selection {
background: #222;
color: white;
text-shadow: none;
}
::selection {
background: #222;
color: white;
text-shadow: none;
}
#page, .container {
position: relative;
margin-right: auto;
margin-left: auto;
}
/*-[ Headings ]---------------*/
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
color: #444;
line-height: 1;
margin-bottom: 15px;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 { line-height: 1.4 }
h1 { font-size: 30px }
h2 { font-size: 25px }
h3 { font-size: 20px }
h4 { font-size: 18px }
h5 { font-size: 15px }
h6 { font-size: 13px }
.sub-title { font-size: 12px }
p { margin-bottom: 25px }
.entry-content p {
}
/*-[ Links ]---------------*/
a {
color: inherit;
text-decoration: none;
transition: all 0.25s ease;
}
a:hover { color: #3498DB }
a:link, a:visited, a:active { text-decoration: none }
a.disabled { pointer-events: none }
/*-[ Main container ]---------------*/
.main-container-wrap { max-width: 100%; }
.main-container {
width: 1124px;
max-width: 100%;
margin: 0 auto;
clear: both;
display: block;
padding: 0;
}
#page, .container {
width: 1124px;
min-width: 240px;
}
#page {
min-height: 100px;
float: none;
clear: both;
display: inline-block;
width: 100%;
}
.featured-section-1-full-width-1 #page { padding: 0 }
/*-[ Header ]-----------------------*/
header {
float: left;
width: 100%;
position: relative;
}
.main-header {
background: #fff;
position: relative;
float: left;
width: 100%;
margin-bottom: 30px;
}
#header {
position: relative;
width: 100%;
float: left;
margin: 0;
padding: 0;
z-index: 9999;
}
.secondary-menu-disabled #header { padding: 0 }
.header-inner {
width: 100%;
height: 100%;
padding: 3% 0;
float: left;
}
.logo-wrap {
float: left;
vertical-align: middle;
margin: 15px 0;
}
.widget-header { max-width: 728px; width: 100%;float: right;}
#header h1, #header h2 {
font-size: 35px;
font-weight: 400;
float: left;
display: inline-block;
line-height: 1;
position: relative;
margin-bottom: 0;
text-transform: initial;
}
#logo a {
float: left;
line-height: 1;
}
#logo img { float: left }
.site-description {
float: left;
margin-top: 0;
clear: left;
}
/* header add */
#header .ad-728 { float: right }
#header .ad-728 img {
display: block;
width: 100%;
}
/*-[ Navigation ]-----------------*/
#navigation.mobile-only { display: none }
#navigation .menu-item-has-children > a:after {
content: "\f107";
font-family: FontAwesome;
position: absolute;
right: 20px;
}
#navigation .menu li {
position: relative;
list-style: none!important;
}
#navigation ul li li {
background: #fff;
border-bottom: 0;
}
#navigation ul ul {
position: absolute;
width: 255px;
padding: 20px 0 0 0;
padding-top: 0;
font-size: 12px;
color: #798189;
z-index: 99999;
}
#navigation ul ul li {
padding: 0;
color: #fff;
border-right: 0;
}
#header nav ul ul > li:first-child { border-top: 1px solid rgba(0, 0, 0, 0.1) }
#header nav ul ul ul > li:first-child { border-top: 0 }
#header nav#navigation ul ul li { background: #e52329 }
#header nav ul ul a, #header nav ul ul a:link, #header nav ul ul a:visited {
padding: 9px 45px 9px 20px;
color: #fff;
position: relative;
width: 190px;
border-left: 0;
background: transparent;
border-right: 0;
border-radius: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin: 0;
box-sizing: content-box;
}
#header nav ul ul li:last-child a { border-bottom: none }
#header nav ul ul { display: none }
#header nav ul ul ul {
left: 255px;
top: 0;
}
#header nav .menu-item-has-children>a, #header nav .page_item_has_children>a { padding-right: 40px }
#header nav ul li:hover a { color: #fff!important }
#navigation .menu li, #navigation .menu li a { font-size: 15px }
#navigation .menu li, #navigation .menu li a { color: #fff }
#navigation .menu a:hover, #navigation .menu .current-menu-item > a {
color: #fff !important;
background: rgba(0, 0, 0, 0.1);
}
.home #navigation .menu .home-menu-item a, #navigation .menu .current-menu-item > a { background: rgba(0, 0, 0, 0.1) }
/* bottom header nav */
.secondary-navigation {
float: left;
width: 100%;
position: relative;
}
.secondary-navigation a {
color: #fff;
text-align: left;
text-decoration: none;
padding: 19px 20px;
}
#navigation {
float: left;
width: 100%;
z-index: 99999;
}
#navigation ul { margin: 0 auto }
#navigation ul li {
float: left;
line-height: 22px;
border-right: 1px solid rgba(0, 0, 0, 0.1);
}
#navigation ul li a, #navigation ul li a:link, #navigation ul li a:visited { display: inline-block }
#navigation > ul > .current a {
background: transparent;
color: #5a5a5a !important;
}
.menu .menu-item:not(.home-menu-item) .fa { margin-right: 4px }
.clearfix:before, .clearfix:after {
content: " ";
display: table;
}
.clearfix:after { clear: both }
.clearfix { *zoom: 1 }
a#pull { display: none }
/* Flyout nav */
.sticky-navigation-active {
z-index: 500;
position: fixed;
top: 0;
margin: 0 !important;
-webkit-backface-visibility: hidden;
}
.admin-bar .sticky-navigation-active { top: 32px }
/*-[ Toggle menu ]---------------------------*/
#navigation .toggle-caret { display: none }
.toggle-menu ul ul { display: none }
.toggle-menu .toggle-menu-item-parent { position: relative }
.toggle-menu .toggle-caret {
position: absolute;
top: 0;
right: 0;
text-align: center;
cursor: pointer;
line-height: inherit;
}
.toggle-menu .toggle-caret .fa {
width: 20px;
text-align: center;
font-size: inherit;
color: inherit;
line-height: 40px;
}
.toggle-menu .active > .toggle-caret .fa:before { content: "\f068" } /*minus*/
.toggle-menu .toggle-caret:hover .fa {
}
/*-[ Content ]--------------------*/
.article {
width: 71.7%;
float: left;
margin-bottom: 10px;
padding: 0;
}
#content_box, .hentry, .hentry header, .hentry .box {
float: left;
width: 100%;
}
.hentry header, .hentry .box {
padding: 0 0 15px 0;
margin-bottom: 0;
}
.hentry header, .hentry .entry-title { margin-bottom: 0 }
.hentry .entry-title {
font-size: 25px;
line-height: 1.4;
text-transform: initial;
}
.hentry header { border-bottom: 1px solid rgba(0, 0, 0, 0.1) }
.page .hentry header { padding-bottom: 10px }
.single_page { padding-top: 0 }
.entry-content a { color: #3498DB }
.post-content {
overflow: hidden;
clear: both;
}
.error404 .post-content { overflow: visible }
.post-single-content {
clear: both;
padding: 30px;
}
.post-single-content-inner {
float: right;
overflow: hidden;
clear: both;
width: 83%;
}
.singleleft {
float: left;
width: 14.3%;
}
.singleleft .related-posts { margin-bottom: 0 }
div.singleleft.crlayout { float: right }
.readMore {
float: left;
margin-top: 15px;
}
.readMore a {
display: inline-block;
border: 0;
line-height: 1;
border-radius: 3px;
}
.ss-full-width {
overflow: hidden;
padding-top: 0;
margin-bottom: 30px;
}
.ss-full-width #content_box {
padding-right: 0;
padding-left: 0;
}
.wp-post-image {
float: left;
border-radius: 3px;
}
.post-box .wp-post-image { width: 100% }
.featured-thumbnail {
float: left;
max-width: 100%;
}
.featured-thumbnail img {
margin-bottom: 0;
width: 100%;
}
.title {
margin-bottom: 5px;
line-height: 21px;
clear: both;
word-wrap: break-word;
}
.single-title {
float: left;
padding: 0;
width: 100%;
text-transform: initial;
}
.page h1.title { padding-top: 0 }
.post-info {
display: block;
color: #919191;
float: left;
clear: both;
width: 100%;
margin-top: 15px;
line-height: 20px;
}
.single .post-info { margin-top: 5px }
.post-info a {
color: #919191;
padding: 1px 4px;
}
.post-info > span {
display: inline-block;
white-space: nowrap;
font-size: 14px;
width: auto;
margin: 0;
margin-right: 10px;
float: none;
}
.thecategory a {
color: #FFF!important;
background: #3498DB;
}
article header {
margin-bottom: 11px;
float: left;
width: 100%;
}
.type-page .single_page header {
padding-top: 0;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.single_post header {
width: 100%;
margin-bottom: 15px;
margin-top: -7px;
}
.article img.left, .article img.alignleft, .wp-caption.alignleft {
margin: 0.3em 1.571em 0.5em 0;
display: block;
float: left;
}
.article img.right, .article img.alignright, .wp-caption.alignright {
margin: 0.3em 0 0.5em 1.571em;
display: block;
float: right;
}
.article img.center, .article img.aligncenter, .wp-caption.aligncenter {
margin: 0.3em auto 0.5em auto;
display: block;
}
.article img.aligncenter, .article img.alignnone {
margin-top: 1em;
margin-bottom: 1em;
display: block;
clear: both;
}
.article ul, .textwidget ul {
margin: 1.5em 0 1.571em 1.9em;
list-style-type: square;
}
.article ol, .textwidget ol {
margin: 1.5em 0 1.571em 1.9em;
list-style-type: decimal;
}
.article ul ul, .article ol ol, .article ul ol, .article ol ul, .textwidget ul ul, .textwidget ul ol, .textwidget ol ul {
margin-top: 0;
margin-bottom: 0;
}
.article .iconlist { margin-left: 0 }
.article .iconlist li { list-style-type: none }
/**********featured sections***********/
/*general*/
.featured-section { margin: 10px 0 25px 0 }
.featured-section.no-gap, #latest-posts.no-gap { margin: 0 0 50px 0 }
.featured-section-title {
padding: 0;
margin-bottom: 30px;
font-size: 25px;
line-height: 15px;
}
.no-gap .featured-section-title { padding: 0 }
/*checker layouts*/
.featured-section-1-1, .featured-section-2-1, .dark { margin: 0 0 35px 0 }
.featured-section-2-1 .featured-section-title, .dark .featured-section-title { padding: 0 }
/*slider 1*/
.featured-section-1-full-width-1 .featured-section-1-1 { position: relative }
#featured-section-1 .static-posts, #featured-section-1 .static-posts .post-box { float: left }
.featured-section-1-full-width-2 .featured-section-1-2 .slider-container { width: 71.2% }
.featured-section-1-full-width-2 .featured-section-1-2 .static-posts { width: 28.8% }
.featured-section-1-full-width-1 .featured-section-1-1 .static-posts .post-box { padding: 0 }
/*slider 2*/
.featured-section-1-2 { margin-bottom: 40px }
.featured-section-1-2 .slider-container { margin-bottom: 10px }
.featured-section-1-2 .slider-container, .featured-section-1-2 .static-posts .post-box, .slider-like .post-box { padding: 0 5px }
/*section 2*/
.dark .post-box, .featured-section-2-1 .post-box { width: 33.33%!important }
.featured-section-2-2 .post-box, .slider-like .post-box { width: 50%!important }
.featured-section-2-full-width-2 .featured-section-2-2 .post-box { width: 33.33%!important }
.dark .post-box, .featured-section-2-1 .post-box {
padding: 0;
margin: 0!important;
}
#latest-posts { margin: 0 }
#featured-section-3 .vertical-small .post-img { margin-top: 3px }
#featured-section-3 .featured-section-title { margin-bottom: 25px }
/**********post layouts***********/
/*post container*/
.post-box {
margin: 0 0 10px 0;
list-style-type: none;
width: 100%;
float: left;
}
.widget .post-box {
padding: 0;
max-width: 345px;
margin-left: 0;
list-style-type: none;
margin-bottom: 15px;
}
.latestPost {
padding: 0;
clear: both;
}
.mixed.latestPost {
width: 48.394%;
clear: none;
margin-right: 3%;
margin-bottom: 27px;
}
.mixed.latestPost:nth-of-type(2n+1) { clear: left }
.post-data, .post-img {
position: relative;
overflow: hidden;
}
.post-data .post-title a { line-height: 1.4;text-transform: initial;}
#site-footer .post-data .post-title a {
color: inherit;
}
.post-img img {
border-radius: 3px;
float: left;
width: 100%;
}
.vertical-small .post-img, .vertical-small .post-data { width: 100% }
.vertical .post-data { overflow: hidden }
.mixed.vertical-small:nth-of-type(2n+2) { margin-right: 0 }
.vertical .post-img {
margin-bottom: 0;
margin-right: 20px;
float: left;
margin-top: 5px;
width: 48.4%;
}
.post-box.vertical { margin-bottom: 30px }
/* horizontal boxes */
.horizontal-container, .horizontal-container-inner {
width: 100%;
float: left;
position: relative;
}
.horizontal-container { overflow: hidden }
/* horizontal loop */
.horizontal .post-img, .horizontal .post-data { width: 50% }
.horizontal:nth-of-type(odd) .horizontal-container-inner { left: 50% }
.horizontal:nth-of-type(odd) .post-img, .horizontal:nth-of-type(odd) .post-data { right: 50% }
.horizontal:nth-of-type(even) .horizontal-container-inner { right: 50% }
.horizontal:nth-of-type(even) .post-img, .horizontal:nth-of-type(even) .post-data { left: 50% }
.horizontal:nth-of-type(even) .post-img { float: right }
.horizontal .post-data-container { margin: 8% 20px !important }
/* horizontal in mixed loop / related / widgets */
.horizontal-small .post-img {
width: 29.423%;
float: left;
margin-top: 4px;
}
.widget .horizontal-small .post-img {
width: 33.33%;
margin-top: 3px;
}
.widget .horizontal-small .post-data { overflow: hidden }
.clear-left { clear: left }
.clear-right { clear: right }
.clear-none { clear: none }
/*data*/
.vertical-small .post-data { margin-top: 15px }
.post-data header { margin-bottom: 0 }
.post-data .post-title {
display: block;
margin-bottom: 0 !important;
overflow: hidden;
}
.horizontal-small .post-info {
color: #919191;
margin-top: 10px;
}
#site-footer .horizontal-small .post-info, #site-footer .post-info {
color: inherit;
}
#site-footer .slider-container .post-info {
color: #919191;
}
.post-data .post-excerpt {
float: left;
width: 100%;
margin-top: 15px;
padding-right: 5px;
}
.latestPost.mixed.horizontal-small {
margin-right: 0;
clear: none;
}
.horizontal-small .post-data-container {
margin: 0 0 0 18px;
overflow: hidden;
}
.slider1 .post-data-container { margin: 40px 20px }
.slider1 .post-box, .featured-section-1-1 .post-box { margin: 0 !important }
.post-day {
position: absolute;
top: 20px;
right: 20px;
line-height: 1;
font-weight: lighter;
color: #fff;
}
/* no image widget box */
.no-thumb.post-box .post-data { overflow: hidden }
.no-thumb.horizontal-container .post-data {
height: auto!important;
padding: 0!important;
width: 100%!important;
}
.no-thumb.horizontal-container .post-data-container { position: relative!important }
/*-[ Thumbnail video icon ]--------------------------------*/
.play-icon {
position: absolute;
left: 50%;
top: 50%;
color: white;
font-size: 14px;
text-align: center;
width: 48px;
height: 48px;
line-height: 48px;
margin: -24px 0 0 -24px;
background: rgba(0,0,0,.5);
border-radius: 50%;
padding: 3px;
}
.play-icon .fa {
width: 100%;
height: 100%;
display: block;
line-height: 38px;
border-radius: 50%;
border: 2px solid #fff;
}
.vertical .play-icon, .slider1 .play-icon, .slider2 .play-icon {
font-size: 18px;
width: 96px;
height: 96px;
line-height: 96px;
margin: -48px 0 0 -48px;
padding: 5px;
}
.vertical .play-icon .fa, .slider1 .play-icon .fa, .slider2 .play-icon .fa {
line-height: 80px;
border-width: 3px;
}
.slider1 .play-icon { left: 68.75% }
.featured-section-1-full-width-1 .featured-section-1-1 .slider1 .play-icon {
top: 25%;
left: 75%;
}
/*-[ Related Posts ]---------------------------*/
.related-posts {
clear: both;
float: left;
width: 100%;
margin-bottom: 40px;
}
.related-posts h3 {
text-transform: uppercase;
font-size: 25px;
margin: 0;
}
.related-posts ul {
margin-left: 0;
padding: 0;
margin: 0;
overflow: hidden;
margin-top: 0;
}
.related-posts li {
width: 48.5%;
float: left;
list-style: none;
margin-bottom: 20px;
margin-right: 3%;
padding: 0;
}
.related-posts li:nth-child(odd) { clear: left }
.related-posts li:nth-child(even) {
clear: right;
margin-right: 0;
}
.relatedthumb img {
width: 100%;
max-width: 115px;
margin: 0;
}
.singleleft .related-posts li {
width: 100%;
padding: 0;
}
.singleleft .postauthor-top { margin-bottom: 20px }
.singleleft .related-posts h3 {
font-size: 18px;
font-weight: bold;
line-height: 1;
}
.singleleft .related-posts ul { margin: 0 }
.singleleft .rthumb img { margin-bottom: 3px }
/*-[ Tab/Review Widgets ]---------------------------*/
.widget .wpt_widget_content, .widget .wp_review_tab_widget_content { border: 0 }
.widget .wpt_widget_content .tab_title a { border-color: rgba(0, 0, 0, 0.05) }
.widget .wpt_widget_content .tab_title.selected a, .widget .wp_review_tab_widget_content .tab_title.selected a { color: #fff }
.widget .wpt_widget_content .tab-content li, .widget .wp_review_tab_widget_content .tab-content li {
padding: 0 0 10px 0;
border: 0;
}
.widget .wpt_thumb_small, .widget .wp_review_tab_thumb_small {
width: 115px;
height: 115px;
margin-top: 4px;
padding-top: 0;
}
.widget .wpt_widget_content .entry-title, .widget .wp_review_tab_widget_content .entry-title {
text-transform: uppercase;
line-height: 1.6;
}
.widget .wpt_widget_content .wp-post-image, .widget .wp_review_tab_widget_content .wp-post-image { width: 100% }
.widget .wpt_widget_content .tab_title.selected a, .wpt_widget_content .has-3-tabs .tab_title.selected a, .wpt_widget_content .has-4-tabs .tab_title.selected a, .widget .wp_review_tab_widget_content .tab_title.selected a, .wp_review_tab_widget_content .has-3-tabs .tab_title.selected a, .wp_review_tab_widget_content .has-4-tabs .tab_title.selected a { border-color: rgba(0, 0, 0, 0.05) }
.widget .wpt_widget_content .has-2-tabs .tab_title:first-child a, .widget .wp_review_tab_widget_content .has-2-tabs .tab_title:first-child a, .widget .wpt_widget_content .has-3-tabs .tab_title:first-child a, .widget .wp_review_tab_widget_content .has-3-tabs .tab_title:first-child a { border-radius: 3px 0 0 3px }
.widget .wpt_widget_content .has-2-tabs .tab_title:last-child a, .widget .wp_review_tab_widget_content .has-2-tabs .tab_title:last-child a, .widget .wpt_widget_content .has-3-tabs .tab_title:last-child a, .widget .wp_review_tab_widget_content .has-3-tabs .tab_title:last-child a { border-radius: 0 3px 3px 0 }
.widget .wpt_widget_content .has-4-tabs .tab_title:first-child a, .widget .wp_review_tab_widget_content .has-4-tabs .tab_title:first-child a { border-radius: 3px 0 0 0 }
.widget .wpt_widget_content .has-4-tabs .tab_title:nth-child(2) a, .widget .wp_review_tab_widget_content .has-4-tabs .tab_title:nth-child(2) a { border-radius: 0 3px 0 0 }
.widget .wpt_widget_content .has-4-tabs .tab_title:nth-child(3) a, .widget .wp_review_tab_widget_content .has-4-tabs .tab_title:nth-child(3) a { border-radius: 0 0 0 3px }
.widget .wpt_widget_content .has-4-tabs .tab_title:last-child a, .widget .wp_review_tab_widget_content .has-4-tabs .tab_title:last-child a { border-radius: 0 0 3px 0 }
.widget .wpt_widget_content .wpt-pagination a, .widget #comments-tab-content .wpt-pagination a, .widget .wp_review_tab_widget_content .wp-review-tab-pagination a {
padding: 5px 10px;
border-radius: 3px;
margin: 0;
margin-top: 15px;
float: left;
font-size: 16px;
color: #fff;
text-transform: initial;
font-weight: normal;
}
.widget .wpt_widget_content .wpt-pagination a.next, .widget #comments-tab-content .wpt-pagination a.next, .widget .wp_review_tab_widget_content .wp-review-tab-pagination a.next { float: right }
.widget .review-type-circle.review-total-only {
height: 27px;
padding: 3px;
}
.widget .review-total-only.small-thumb.review-type-star { font-size: 2px }
.widget .wp-review-show-total .review-star, .widget .wp-review-user-rating .review-star { margin: 2px 3px 0 3px }
/* Review Data */
.post-box .post-info { display: inline-table }
.post-box .review-total-only {
display: inline-block;
padding: 0 6px;
background: #3498db;
color: #fff;
position: relative;
border-radius: 3px;
overflow: hidden;
}
.review-total-only { border-radius: 3px }
.latestPost.post-box .review-total-only { margin-bottom: -5px }
.post-box .review-type-circle.review-total-only, .post-box .review-type-circle.wp-review-show-total {
margin-bottom: -5px;
margin-top: -7px;
height: 27px;
padding: 3px;
}
.post-box .review-total-only span { margin: 0 }
.post-box .review-type-star.review-total-only {
background: none!important;
padding: 0;
vertical-align: middle;
margin-bottom: 0px;
}
.post-box .review-total-only .review-result-wrapper i {
color: #919191 !important;
opacity: 1;
}
.post-box .review-total-only .review-result-wrapper .review-result i { color: #e52329 !important }
/*-[ Facebook like box Widget ]---------------------------*/
.widget.facebook_like iframe { width: 100% !important }
.fb_iframe_widget, .fb_iframe_widget span {
max-width: 100%;
width: 100%!important;
}
/*-[ WP Widgets ]---------------------------*/
.widget.widget_meta li, .widget.widget_archive li, .widget.widget_categories li, .widget.widget_pages li, .widget.widget_recent_comments li, .widget.widget_recent_entries li { padding: 0 }
/* Custom Nav Widget */
.widget_nav_menu ul li { list-style-type: square; }
.widget_nav_menu ul a {
padding: 0;
line-height: 2;
}
.widget_nav_menu .menu-item { margin: 0;margin-left: 17px;margin-bottom: 0;}
.widget_nav_menu .sub-menu > li > a {padding-left: 0;}
.widget_nav_menu .menu-item-has-children a {
padding-right: 0;
padding-left: 0;
}
.menu-caret {
position: absolute;
right: 0;
top: 1px;
width: 40px;
text-align: center;
border-left: 1px solid #c5c5c5;
line-height: 40px;
}
.menu-caret:before {
content: "\f105";
font-family: "FontAwesome";
font-size: 18px;
vertical-align: middle;
}
.active > a > .menu-caret {
color: #ffffff;
background: #e52329;
}
.active > a > .menu-caret:before { content: "\f107" }
/*-[ Form Input ]------------------*/
input, textarea, select {
padding: 8px 12px;
font-size: 14px;
color: #666;
border: 1px solid #eee;
background: #eeeeee;
font-family: inherit;
}
textarea {
overflow: auto;
resize: vertical;
}
select {
padding: 6px 10px;
border-color: #919191;
width: 100%;
}
input:focus, textarea:focus { background: #fff }
/*-[ Tables ]--------------------*/
table {
width: 100%;
text-align: left;
margin-bottom: 25px;
border: 1px solid #eee;
}
thead {
background: #F7F8F9;
font-size: 14px;
color: #585F65;
}
table th, table td {
padding: 7px 15px;
text-align: left;
}
thead th { padding: 14px }
tbody th {
font-weight: normal;
border-bottom: 1px solid #eee;
background: #eee;
}
/*-[ Line ]---------------------*/
hr {
border: none;
border-bottom: 1px solid #E5E5E5;
border-bottom: 1px solid rgba(0,0,0,0.1);
width: 297px;
margin: 35px 0;
clear: both;
position: relative;
}
/*-[ Search Form ]------------------*/
.widget-header form#searchform {
max-width: 300px;
float: right;
}
#searchform, .widget_product_search {
padding: 0;
float: left;
clear: both;
width: 100%;
position: relative;
}
.article #searchform { max-width: 300px }
#searchform fieldset { float: left }
.sbutton, #searchsubmit, .widget_product_search input[type="submit"] {
right: 0px;
top: 0px;
padding: 0;
float: right;
border: 0;
width: 48px;
height: 48px;
cursor: pointer;
text-align: center;
color: white;
transition: all 0.25s linear;
z-index: 10;
position: absolute;
border: 0;
vertical-align: top;
background: transparent;
}
.widget_product_search input[type="submit"] { width: auto; padding: 0 10px; border-radius: 0 3px 3px 0;}
#searchform .fa-search {
font-size: 18px;
top: 0px;
position: absolute;
right: 0px;
color: #919191;
padding: 15px 15px;
}
#s, .widget_product_search .search-field {
width: 100%;
float: left;
padding: 15px 0;
height: 48px;
text-indent: 10px;
color: #919191;
background: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.04);
transition: all 0.25s linear;
border-radius: 3px;
}
/* Search input placeholder text styling */
::-webkit-input-placeholder { color: #919191 }
:-moz-placeholder { color: #919191 }
::-moz-placeholder { color: #919191 }
:-ms-input-placeholder { color: #919191 }
:input-placeholder { color: #919191 }
/* Microphone icon position fix */
input::-webkit-input-speech-button {
margin-right: 50px;
margin-left: 5px;
cursor: pointer;
}
#searchform fieldset { width: 100% }
.breadcrumb, .breadcrumb> div, .breadcrumb .fa-caret-right, .breadcrumb .root a { float: none }
.breadcrumb {
clear: both;
padding: 0;
overflow: hidden;
margin-bottom: 20px;
}
.breadcrumb> div {
padding: 0 5px;
overflow: hidden;
float: none;
display: inline-block;
}
.breadcrumb .fa-caret-right { padding: 0 }
.breadcrumb .root { padding: 0 }
.breadcrumb .fa-caret-right { padding: 0 0 }
.breadcrumb > div { overflow: visible }
.breadcrumb > div:first-child { padding-left: 0 }
.no-results h2 { font-size: 16px }
/*-[ Top Ad in Post ]-------------------------------------*/
.topad {
margin-bottom: 10px;
clear: both;
}
/*-[ Bottom Ad in post ]-----------*/
.bottomad {
float: left;
clear: both;
margin-bottom: 10px;
}
/*-[ Sidebar ]---------------------*/
#sidebars p { line-height: 20px }
.sidebar.c-4-12 {
float: right;
width: 27.3%;
line-height: 20px;
max-width: 300px;
}
.sidebar.c-4-12 a {
}
.widget {
margin-bottom: 35px;
float: left;
clear: both;
width: 100%;
overflow: hidden;
}
#site-footer .widget h3 {color: inherit;}
.sidebar .widget h3 { margin-top: -5px }
.widget .title {
font-weight: bold;
text-transform: uppercase;
color: inherit;
font-size: 12px;
}
.widget li {
list-style-type: square;
margin-left: 17px;
margin-bottom: 10px;
}
.widget li:last-child { margin-bottom: 0 }
.widget h3 {
font-size: 25px;
line-height: 1.4;
margin: 0 0 20px 0;
text-transform: uppercase;
}
/*-[ Social Buttons ]--------------------------*/
.share-item.facebookbtn, .share-item.linkedinbtn, .share-item.stumblebtn { width: 92px }
.shareit {
padding: 20px 0 0;
overflow: hidden;
clear: both;
border: none;
}
.share-item {
display: block;
margin: 0;
float: left;
height: 25px;
width: 90px;
}
.shareit.top {
padding-top: 0!important;
margin-bottom: 15px!important;
}
.share-item.shareit.top {
float: left;
margin-bottom: 10px!important;
margin-top: 0;
width: 100%;
}
.share-item.facebookbtn, .share-item.facebooksharebtn {
margin-top: -1px;
width: 100px;
height: 28px;
}
.share-item.gplusbtn { width: 85px }
.share-item.pinbtn a { transition: none }
.share-item.stumblebtn {
margin-top: 1px;
height: 24px;
}
/*-[ Social Profile Widget ]--------------------------*/
.widget .social-profile-icons { margin: -6px }
.social-profile-icons ul li {
background: none;
border: none;
float: left;
list-style-type: none;
margin: 0 !important;
padding: 6px !important;
}
.social-profile-icons ul li a {
width: 40px;
height: 40px;
display: block;
float: left;
text-align: center;
line-height: 40px;
color: #FFF;
border-radius: 3px;
}
.social-profile-icons ul li a:hover { opacity: 0.8 }
.social-profile-icons ul li i {
font-size: 18px;
line-height: 40px;
}
.social-profile-icons .social-youtube a { background: #c9322b }
.social-profile-icons .social-rss a { background: #ef922f }
.social-profile-icons .social-twitter a { background: #40bff5 }
.social-profile-icons .social-facebook a { background: #5d82d1 }
.social-profile-icons .social-gplus a { background: #eb5e4c }
.social-profile-icons .social-vimeo a { background: #35c6ea }
.social-profile-icons .social-dribbble a { background: #f7659c }
.social-profile-icons .social-tumblr a { background: #426d9b }
.social-profile-icons .social-instagram a { background: #91653f }
.social-profile-icons .social-flickr a { background: #ff48a3 }
.social-profile-icons .social-pinterest a { background: #e13138 }
.social-profile-icons .social-linkedin a { background: #238cc8 }
.social-profile-icons .social-github a { background: #b5a470 }
.social-profile-icons .social-email a { background: #1d90dd }
.social-profile-icons .social-behance a { background: #1879fd }
.social-profile-icons .social-skype a { background: #13c1f3 }
.social-profile-icons .social-soundcloud a { background: #ff7e30 }
.social-profile-icons .social-stumbleupon a { background: #ff5c30 }
.social-profile-icons .social-dropbox a { background: #3476e4 }
.social-profile-icons .social-foursquare a { background: #0bbadf }
.social-profile-icons .social-reddit a { background: #ff4400 }
/*-[ Footer ]-------------------*/
footer > .footer-carousel-wrap, footer > .copyrights { background: #fff }
.footer-carousel-wrap { padding: 50px 0 }
footer {
overflow: hidden;
width: 100%;
position: relative;
clear: both;
}
footer .container { padding: 0 }
.footer-widgets {
overflow: hidden;
padding: 50px 0 0;
width: 100%;
margin: 0;
}
.f-widget {
width: 29.5%;
float: left;
position: relative;
margin-bottom: 0;
margin-right: 5.75%;
}
.widgets-num-4 .f-widget {
width: 22%;
margin-right: 4%;
}
.footer-widgets .f-widget:last-of-type { margin-right: 0px!important }
.copyrights {
float: left;
width: 100%;
clear: both;
padding: 40px 0;
}
.copyrights a {
color: inherit;
border-bottom: 1px dotted;
}
#copyright-note {
width: 1170px;
margin: 0 auto;
clear: both;
max-width: 100%;
}
#copyright-note > span { float: left }
#copyright-note .right { margin-right: 10px }
.postsby { margin-bottom: 25px }
/*-[ Back To Top ]---------------------------*/
#move-to-top {
color: #fff;
cursor: pointer;
display: inline-block;
position: fixed;
right: 10px;
bottom: 31px;
z-index: 25;
background: #444;
transition: all 0.25s linear;
-webkit-backface-visibility: hidden;
border-radius: 3px;
}
#move-to-top:hover { color: #ffffff;background: #444;}
#move-to-top:not(.filling) {
opacity: 0;
visibility: hidden;
}
#move-to-top .fa-chevron-up {
font-size: 14px;
padding: 0;
width: 40px;
line-height: 40px;
text-align: center;
}
/*-[ Post Tags ]---------------------------------*/
.thetags {
float: left;
width: 100%;
display: inline-block;
margin: 0 0 25px 0;
}
.thetags a { padding-right: 0 }
.tags a { margin-left: 5px }
/*-[ Author Box ]--------------------------------*/
.postauthor {
margin: 0 0 50px 0;
padding: 0;
min-height: 180px;
float: left;
clear: both;
width: 100%;
}
.postauthor h4 {
text-transform: uppercase;
font-size: 25px;
line-height: 22px;
}
.postauthor .vcard {
margin-bottom: 15px;
text-transform: uppercase;
}
.postauthor .vcard .fa { padding-right: 7px }
.postauthor .vcard .mail { color: #919191 }
.author-box {
float: left;
width: 100%;
}
.author-box img, .author-box-content { margin: 0 }
.author-box img {
float: left;
width: 19.2%;
}
.author-box-content {
position: relative;
padding: 0 0 0 20px;
min-height: 150px;
overflow: hidden;
}
.postauthor p {
padding-top: 0px;
margin-bottom: 0;
}
.postauthor h4 a { color: #444 !important }
#respond h4, .total-comments, .postauthor h4, .postauthor-top {
margin-bottom: 25px;
margin-top: 0;
font-size: 25px;
line-height: 22px;
}
.clear { clear: both }
.left { float: left }
.right { float: right }
.last { margin-right: 0!important }
/*-[ Tag widget ]------------------------------*/
.widget .wpt_widget_content #tags-tab-content ul li {
float: left;
margin: 0;
}
.tagcloud a, #tags-tab-content a, .widget .wpt_widget_content #tags-tab-content ul li a {
font-size: 15px!important;
padding: 7px 13px;
margin-bottom: 7px;
float: left;
border-radius: 3px;
margin-right: 7px;
background: #c5c5c5;
color: #FFFFFF!important;
transition: all 0.25s linear;
line-height: 1.4;
}
/*-[ Ad Widgets ]------------------------------*/
.ad-125 ul {
list-style: none outside none;
margin: 0 auto;
max-width: 100%;
}
.ad-125 li {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border: medium none !important;
float: left;
list-style: none outside none !important;
margin-bottom: 15px;
margin-left: 0;
padding-left: 0;
padding-top: 0 !important;
max-width: 48%;
}
.ad-125 li:nth-child(2n+2) { float: right!important }
.ad-125 li:nth-last-child(2), .ad-125 li:last-child { margin-bottom: 0 }
.ad-300 { text-align: center }
/*-[ Calender Widget ]-------------------------*/
#wp-calendar {
margin-bottom: 0;
border: 0px none;
position: relative;
}
#wp-calendar td {
text-align: center;
padding: 0;
line-height: 40px;
}
#wp-calendar td a {
display: block;
color: #fff;
background: #444;
}
#wp-calendar td a:hover, #wp-calendar #today { color: #fff }
#wp-calendar caption {
font-size: 15px;
padding: 10px 40px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
background: #444;
}
#wp-calendar thead {
background: transparent;
font-size: 15px;
font-weight: bold;
color: #919191;
}
#wp-calendar thead th {
padding: 25px 0;
text-align: center;
border-bottom: 1px solid #c5c5c5;
}
#wp-calendar thead th.today {
border-bottom: 1px solid;
color: #444;
}
#wp-calendar #prev, #wp-calendar #next {
position: absolute;
top: 0;
}
#wp-calendar #prev { left: 0 }
#wp-calendar #next { right: 0 }
#wp-calendar #prev a, #wp-calendar #next a { position: relative }
#wp-calendar #prev a:before, #wp-calendar #next a:before {
position: absolute;
font-family: "FontAwesome";
font-size: 18px;
color: #fff;
width: 40px;
line-height: 40px;
text-align: center;
background: #444;
transition: all 0.25s ease;
}
#wp-calendar #prev a:before {
border-right: 1px solid rgba(0, 0, 0, 0.1);
content: "\f104";
}
#wp-calendar #next a:before {
border-left: 1px solid #5e5e5e;
content: "\f105";
}
#wp-calendar tfoot .pad { display: none }
/*-[Comments]--------------*/
.nocomments {
margin: 0;
clear: both;
float: left;
width: 100%;
}
.total-comments { text-transform: uppercase }
#comments {
padding: 0;
float: left;
clear: both;
width: 100%;
margin-bottom: 0;
}
#respond h4 {
text-transform: uppercase;
padding-top: 5px;
padding-bottom: 7px;
font-size: 25px;
line-height: 20px;
}
#commentsAdd {
width: 100%;
float: left;
clear: both;
margin-bottom: 20px;
}
#comments .avatar {
position: absolute;
left: -115px;
top: 0;
}
.comment-box {
padding: 0 0 0 20px;
margin-left: 115px;
min-height: 115px;
position: relative;
}
.comment time { padding-left: 10px }
input.text-input, #commentform input { padding: 11px }
input#author, input#email, input#url {
width: 300px;
border: 1px solid rgba(0, 0, 0, 0.04);
background: rgba(0, 0, 0, 0.05);
max-width: 85%;
margin-right: 10px;
}
input#author, input#email, input#url, #comment {
transition: all 0.25s ease-in-out;
border-radius: 3px;
}
#cancel-comment-reply-link {
float: right;
line-height: 24px;
margin-top: 0;
cursor: pointer;
margin-bottom: -20px;
text-decoration: underline;
z-index: 100;
position: relative;
}
#commentform input#submit, .contactform #submit, input[type="submit"] {
line-height: 1;
background-color: #444;
padding: 17px 15px;
color: #fff;
text-decoration: none;
float: right;
cursor: pointer;
display: inline-block;
border: none;
transition: all 0.2s linear;
border-radius: 3px;
text-transform: uppercase;
}
.contactform #submit { float: left }
.contactform label { display: block }
.contactform {
overflow: hidden;
margin-bottom: 35px;
}
.comment #respond {
float: left;
width: 100%;
margin-top: 20px;
}
.error { color: red }
.thanks p { color: green }
ol.commentlist {
margin-left: 0;
margin-top: 13px;
}
.commentlist li {
list-style: none;
margin: 0 0 25px 0;
padding-left: 0;
float: left;
width: 100%;
position: relative;
}
.commentlist p { margin-bottom: 15px }
.ago {
color: #919191;
float: left;
text-transform: uppercase;
margin-right: 15px;
font-size: 15px;
}
.fn {
float: left;
text-transform: uppercase;
margin-right: 18px;
font-size: 15px;
font-weight: bold;
position: relative;
}
.bypostauthor .fn { padding-left: 85px }
.fn a {
font-weight: bold;
font-size: 15px;
}
.comment-reply-link {
color: #3498DB;
float: right;
margin-left: 15px;
font-size: 14px;
}
.commentmetadata {
overflow: hidden;
margin-top: 15px;
}
.commentmetadata > ul, .commentmetadata > ol {
margin-bottom: 15px!important;
float: left;
}
.commentmetadata li {
border: 0;
padding: 0;
margin-top: 0;
margin-bottom: 5px;
list-style: square;
}
.commentmetadata ol li { list-style: decimal }
.comment .wp-review-usercomment-rating { margin-top: -4px }
.comment .wp-review-usercomment-rating .review-star { margin: 0 auto }
.comment .review-result, #commentform .wp-review-comment-rating .review-result i { color: #FFB300!important }
.reply {
margin-top: 0px;
padding-bottom: 0px;
overflow: hidden;
width: 100%;
float: right;
}
.reply a {
font-weight: bold;
float: left;
padding: 0 0px;
color: #e52329;
font-size: 12px;
}
#commentsAdd #respond h4 { margin-bottom: 25px }
.comment #respond #respond { margin-top: 20px }
.commentlist .children {
margin-left: 113px;
margin-bottom: 0;
margin-top: 0;
float: left;
}
.commentlist .children li { margin-bottom: 35px }
.avatar {
float: left;
border-radius: 3px;
}
#respond h3 {
font-size: 18px;
margin: 0;
padding: 0;
float: left;
width: 100%;
}
.comment-awaiting-moderation {
font-style: italic;
font-weight: bold;
}
/*-[ Comment Form ]----------------------------*/
#commentform textarea {
width: 100%;
border: 1px solid rgba(0, 0, 0, 0.04);
background: rgba(0, 0, 0, 0.05);
padding: 2%;
line-height: 25px;
font-family: inherit;
}
#commentform textarea:focus { background: #fff }
#commentform p {
margin-bottom: 15px;
float: left;
width: 100%;
clear: both;
}
#commentform p label {
padding-bottom: 5px;
padding-top: 5px;
padding-left: 10px;
}
.cancel-comment-reply a {
float: right;
margin-top: -8px;
}
.required {
color: red;
padding: 0;
line-height: 1;
}
.comment-notes .required {
padding-left: 0;
padding-top: 3px;
}
.comment-notes { font-style: italic }
/*-[ pagination ]------------------*/
.pagination {
clear: both;
overflow: hidden;
float: left;
width: 100%;
margin-top: 10px;
margin-bottom: 20px;
text-align: center;
display: block!important;
}
.single .pagination {
border: 0;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin-top: 0;
padding: 0;
width: 100%;
text-align: left;
}
article .pagination { padding: 0 }
article .pagination a { margin-right: 10px;color: #fff;text-align: center;}
.pagination ul {
list-style: none;
margin: 0 auto;
display: inline-block;
}
.pagination-previous-next ul { display: block }
.pagination-previous-next ul li, .pagination ul li:only-child, .pagination ul li:last-child { border-right: 0px none }
.pagination > .current, .pagination .page-numbers.current, .pagination a:hover, .single .pagination a:hover .currenttext {
color: #fff;
display: inline-block;
padding: 10px 15px;
background: #444;
}
.pagination > .current, .pagination .page-numbers.current {
float: none;
background: #444;
border-radius: 3px;
min-width: 42px;
margin-right: 7px;
margin-bottom: 10px;
}
.pagination a, .pagination .dots {
background: #444;
display: inline-block;
float: none;
text-decoration: none;
padding: 10px 15px;
transition: all 0.25s linear;
border-radius: 3px;
min-width: 42px;
color: #fff;
margin-right: 7px;
margin-bottom: 10px;
}
.pagination .nav-previous, .pagination .previous {
float: left;
margin: 0;
margin-bottom: 10px;
}
.pagination .nav-next, .pagination .next {
float: right;
margin: 0;
margin-bottom: 10px;
}
.pagination a.previous.page-numbers,.pagination a.next.page-numbers {
float: none;
}
.pagination .nav-previous a, .pagination .nav-next a { color: #fff!important }
.single .pagination a .currenttext, .single .pagination a:hover .currenttext {
padding: 0;
background: transparent;
margin-right: 0;
min-width: 100%;
}
.single .pagination a:hover .currenttext { color: #fff }
.pagination .fa { font-size: 14px }
.pagination .nav-previous .fa { margin-right: 5px }
.pagination .nav-next .fa { margin-left: 5px }
/*-[ Contact Form ]------------------*/
.contact-form { position: relative }
.contact-form.loading:after {
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(255, 255, 255, 0.8);
}
.contact-form label, .contact-form input, .contact-form textarea {
display: block;
width: 100%;
}
.contact-form input, .contact-form textarea { padding: 12px }
.contact-form textarea { height: 150px }
.contact-form label { margin-top: 12px }
.contact-form input[type="submit"] {
margin-top: 12px;
padding: 15px;
float: right;
width: auto;
}
.mtscontact_error { color: #B90101 }
/*-[ AJAX search results ]------------------*/
.widget_search, #sidebar-search { overflow: visible }
.ajax-search-box-open #s { background-color: #eeeeee }
.ajax-search-results-container {
position: absolute;
top: 47px;
left: 0;
width: 100%;
z-index: 9;
background: #EEEEEE;
border: 1px solid #EEE;
border-top-color: rgba(0, 0, 0, 0.1);
color: #6a6a6a;
margin-top: -1px;
border-radius: 0 0 3px 3px;
}
.ajax-search-results-container a { padding: 0 }
.ajax-search-results-container.loading:after {
content: "";
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(255,255,255,0.8);
}
ul.ajax-search-results {
margin: 0;
padding: 0;
}
.ajax-search-results li {
margin: 0;
display: block;
float: left;
clear: both;
width: 100%;
list-style: none;
min-height: 50px;
padding: 12px 12px 0;
border-bottom: 0;
position: relative;
}
.ajax-search-results li:last-of-type { padding-bottom: 12px }
.ajax-search-results .wp-post-image {
margin: 3px 15px 0 0;
max-width: 80px;
}
.ajax-search-results .meta { margin: 5px 0 0 94px }
.ajax-search-meta .results-count { padding: 0 12px }
.ajax-search-meta .results-link {
float: left;
width: 100.6%;
text-align: center;
padding: 12px 20px;
line-height: 1;
border-radius: 0 0 3px 3px;
background: rgb(0, 0, 0);
margin: 7px 0px -1px;
color: #fff;
}
.ajax-search-results-container .no-results {
padding: 8px;
color: #AAA;
font-style: italic;
}
.ajax-search-results .play-icon {
left: 16.5%;
top: 50%;
}
/*-[ Load More ]-------------------*/
.pace .pace-progress {
background: #e52329;
position: fixed;
z-index: 2000;
top: 0;
left: 0;
height: 3px;
transition: width 0.8s;
-webkit-backface-visibility: hidden;
}
.admin-bar .pace .pace-progress { top: 32px }
.pace-inactive { display: none }
#load-posts, #fs2_load_more_container {
float: left;
width: 100%;
text-align: center;
}
#load-posts a, #fs2_load_more_button {
font-size: 15px;
color: #fff;
display: inline-block;
float: none;
line-height: 22px;
text-decoration: none;
padding: 9px 20px;
margin: 15px 0 25px 0;
background: #444;
border-radius: 3px;
}
#fs2_load_more_button { margin-bottom: 0 }
#load-posts .fa, #fs2_load_more_button .fa { margin-right: 15px }
/*-[ Parallax & Zoom Out ]--------------------------------*/
#parallax {
position: relative;
padding-bottom: 350px;
height: 0;
overflow: hidden;
background-size: cover;
margin-bottom: 25px;
}
#zoom-out-effect, #zoom-out-bg {
position: relative;
padding-bottom: 350px;
height: 0;
}
#zoom-out-effect {
overflow: hidden;
margin-bottom: 25px;
}
#zoom-out-bg {
background-size: cover;
width: 100%;
}
/*-[ Misc ]---------------------------*/
pre {
overflow: auto;
padding: 15px;
margin: 15px 0;
position: relative;
background: rgba(0, 0, 0, 0.1);
font-family: monospace;
color: #444;
}
pre:before {
content: "\f121";
color: #444;
position: absolute;
font-size: 18px;
right: 14px;
top: 6px;
font-family: FontAwesome;
}
/*-[ WP Review ]--------------------------------*/
.latestPost-review-wrapper {
position: absolute;
top: 0;
right: 0;
background: #FFF;
padding: 2px 8px;
}
.latestPost-review-wrapper .review-total-star { margin: 4px 0 }
.latestPost-review-wrapper .percentage-icon {
top: 0;
font-size: inherit;
font-style: normal;
}
.post-box .review-total-star {
position: relative!important;
right: auto!important;
top: auto!important;
}
/*-[ Mega Menu ]------------------------------------*/
#wpmm-megamenu a:hover { background: none!important }
#wpmm-megamenu .review-total-only { border-radius: 0 3px 0 }
#navigation .menu .menu-item-wpmm-megamenu a:hover { background: transparent }
#navigation .menu .wpmm-light-scheme.menu-item-wpmm-megamenu a:hover {
background: transparent;
color: #333!important;
}
/* Screen reader Css as WordPress's recommendation */
/* Text meant only for screen readers. */
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; /* Above WP toolbar. */
} | 0.462716 | 0.133952 |
@font-face {
font-family: "Open Sans";
src: url("https://netology-code.github.io/html-2-diploma/sources/fonts/OpenSans-Regular.woff");
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: "Open Sans";
src: url("https://netology-code.github.io/html-2-diploma/sources/fonts/OpenSans-Bold.woff");
font-style: normal;
font-weight: 700;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
text-decoration: none;
}
body {
font-family: "Open Sans", "Roboto", "Helvetica", "Arial", sans-serif;
font-style: normal;
font-weight: 400;
}
.list {
list-style-type: none;
}
.link {
color: inherit;
}
.header {
position: relative;
padding-top: 28px;
padding-bottom: calc(145px - 18px);
/*из-за свойства line-height у заголовка .header-title сверху и снизу появляется небольшое расстояние, поэтому отступ скорректирован*/
background: #000000 url("https://netology-code.github.io/html-2-diploma/sources/images/banner-bg.jpg") center/cover no-repeat;
}
.header::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: 0.6;
}
.container {
position: relative;
z-index: 2;
width: 1200px;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.content {
display: flex;
justify-content: space-between;
}
.header__content_nav {
flex-wrap: wrap;
align-items: center;
}
.header__logo {
display: block;
/*avocode: 179px, ps: 183px*/
width: 179px;
height: 42px;
color: #ffffff;
}
.thumbnail img {
max-height: 100%;
max-width: 100%;
}
.menu__list {
display: flex;
flex-wrap: wrap;
}
.menu__item:nth-of-type(n+2) {
margin-left: 37px;
}
.menu__link {
font-size: 13px;
line-height: 2.76;
text-transform: uppercase;
color: #ffffff;
}
.title {
font-weight: 700;
text-transform: uppercase;
}
.header__title {
width: 735px;
padding-top: calc(125px - 21px);
/*из-за свойства line-height у заголовка .header-title сверху и снизу появляется небольшое расстояние, поэтому необходима коррекция отступов*/
margin-right: auto;
margin-left: auto;
text-align: center;
font-size: 45px;
line-height: 1.66;
color: #ffffff;
}
.main {
/*fix for IE11 problem with semantic tag "main" : https://weblog.west-wind.com/posts/2015/jan/12/main-html5-tag-not-working-in-internet-explorer-91011*/
display: block;
padding-top: 60px;
padding-bottom: 69px;
color: #0f0d0e;
background-color: #ffffff;
}
.content_top {
align-items: flex-start;
}
.main__articles {
flex: 0 0 66%;
}
.main__article + .main__article {
margin-top: 60px;
}
.main__article .article__thumbnail {
flex: 0 0 49.5%;
height: 295px;
}
.main__article .article__text {
flex: 0 0 47%;
}
.main__article .article__header {
padding-bottom: 46px;
}
.main__article .article__tag-list {
display: flex;
flex-wrap: wrap;
margin-bottom: 6px;
}
.article__tag {
font-size: 14px;
color: #b59f5b;
}
.main__article .article__tag {
margin-right: 18px;
}
.main__article .article__title {
margin-bottom: 27px;
font-size: 20px;
line-height: 1.2;
color: #0f0d0e;
/* цвет и шрифт зависят от расположения статьи на странице */
}
.main__article .article-info {
display: flex;
flex-wrap: wrap;
align-items: center;
/* font-size: 12px; */
}
.main__article .article-info__item {
margin-right: 17px;
}
.date {
font-size: 12px;
color: #888888;
}
.author {
font-size: 12px;
font-weight: 700;
color: #000000;
}
.main__article .article__excerpt {
font-size: 15px;
line-height: 1.47;
color: #0f0d0e
}
.sidebar {
flex: 0 0 23.2%;
}
.sidebar__item + .sidebar__item {
margin-top: 59px;
}
.title_sidebar {
font-size: 14px;
}
.sidebar__headline {
position: relative;
margin-bottom: 38px;
text-align: center;
color: #0f0d0e;
}
.sidebar__headline::after {
content: "";
position: absolute;
bottom: -13px;
left: calc(50% - 66px/2);
z-index: 2;
width: 66px;
height: 3px;
background-color: #b59f5b;
opacity: 0.4;
}
.sidebar__article + .sidebar__article {
margin-top: 22px;
}
.sidebar .article__thumbnail {
flex: 0 0 25.8%;
height: 70px;
}
.sidebar .article__header {
flex: 0 0 67.2%;
}
.title_sidebar_article {
color: #000000;
}
.sidebar__item + .sidebar__item_search {
margin-top: 63px;
}
.search {
display: flex;
}
.description-hint {
position: absolute;
width: 1px;
height: 1px;
clip: rect(1px, 1px, 1px, 1px);
}
.field {
padding-top: 16px;
padding-bottom: 15px;
padding-left: 18px;
font-family: inherit;
font-size: 12px;
/* color: #000000;
opacity: 0.54; */
color: #888888;
background-color: #f4f7f6;
border: 1px solid #f4f7f6;
}
.field:focus, .btn:focus {
border: 1px solid #8e7b4a;
outline: none
}
.search__field {
flex: 0 0 82%;
}
.btn {
font-family: inherit;
color: #ffffff;
background-color: #b59f5b;
border: 1px solid #b59f5b;
}
.btn:hover {
background-color: #9e895b;
cursor: pointer;
}
.search__btn {
flex: 0 0 18%;
height: 50px;
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/search.svg");
background-position: center;
background-size: 18px;
background-repeat: no-repeat;
}
.sidebar__item + .sidebar__item_subscription {
margin-top: 56px;
}
.sidebar__headline_subscription {
margin-bottom: 35px;
}
.subscribe__row {
width: 100%;
}
.subscribe__btn {
padding-top: 14px;
padding-bottom: 14px;
margin-top: 16px;
font-size: 14px;
text-align: center;
}
.sidebar__item + .sidebar__item_tags {
margin-top: 54px;
}
.sidebar-tags {
margin-bottom: -6px;
}
.sidebar-tags__item {
margin-bottom: 6px;
}
/*display: inline-block применены чисто в образовательных целях*/
.sidebar-tags__item, .sidebar-tag {
display: inline-block;
}
.sidebar-tag {
padding: 6px 13px 6px 11px;
font-size: 12px;
line-height: 1;
border: 3px solid #eeeeee;
}
.sidebar__headline_categories {
margin-bottom: 22px;
}
.categories__item {
display: block;
padding-top: 13px;
padding-bottom: 14px;
font-size: 14px;
font-weight: 700;
border-bottom: 1px solid #eeeeee;
}
.category {
position: relative;
}
.category__counter {
position: absolute;
top: calc(-50% + 12px/2);
left: calc(100% + 5px);
font-size: 12px;
font-weight: 700;
color: #b59f5b;
}
.social-info__content {
padding-top: 31px;
padding-bottom: 31px;
background-color: #f4f7f6;
}
.social-links {
display: flex;
justify-content: center;
}
.social-links__item + .social-links__item {
margin-left: 30px;
}
.social-links__item {
/* на случай, если не прогрузятся изображения социальных иконок */
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><circle cx='10' cy='5' r='1' stroke='black' stroke-width='0.5' fill='black'/></svg>");
}
.social-link {
display: block;
width: 20px;
height: 20px;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.social-link_twitter {
/* background-color: #76a9ea; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/004-twitter.svg");
}
.social-link_pinterest {
/* background-color: #e6001a; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/001-pinterest.svg");
}
.social-link_facebook {
/* background-color: #3b5998; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/002-facebook-logo.svg");
}
.social-link_instagram {
/* background-color: #904ac4; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/005-instagram.svg");
}
.social-link_tumblr {
/* background-color: #1d3765; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/003-tumblr.svg");
}
.footer {
padding-top: 70px;
padding-bottom: 31px;
text-align: center;
font-size: 12px;
font-weight: 700;
color: #999999;
} | src/css/style.css | @font-face {
font-family: "Open Sans";
src: url("https://netology-code.github.io/html-2-diploma/sources/fonts/OpenSans-Regular.woff");
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: "Open Sans";
src: url("https://netology-code.github.io/html-2-diploma/sources/fonts/OpenSans-Bold.woff");
font-style: normal;
font-weight: 700;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
text-decoration: none;
}
body {
font-family: "Open Sans", "Roboto", "Helvetica", "Arial", sans-serif;
font-style: normal;
font-weight: 400;
}
.list {
list-style-type: none;
}
.link {
color: inherit;
}
.header {
position: relative;
padding-top: 28px;
padding-bottom: calc(145px - 18px);
/*из-за свойства line-height у заголовка .header-title сверху и снизу появляется небольшое расстояние, поэтому отступ скорректирован*/
background: #000000 url("https://netology-code.github.io/html-2-diploma/sources/images/banner-bg.jpg") center/cover no-repeat;
}
.header::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: 0.6;
}
.container {
position: relative;
z-index: 2;
width: 1200px;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.content {
display: flex;
justify-content: space-between;
}
.header__content_nav {
flex-wrap: wrap;
align-items: center;
}
.header__logo {
display: block;
/*avocode: 179px, ps: 183px*/
width: 179px;
height: 42px;
color: #ffffff;
}
.thumbnail img {
max-height: 100%;
max-width: 100%;
}
.menu__list {
display: flex;
flex-wrap: wrap;
}
.menu__item:nth-of-type(n+2) {
margin-left: 37px;
}
.menu__link {
font-size: 13px;
line-height: 2.76;
text-transform: uppercase;
color: #ffffff;
}
.title {
font-weight: 700;
text-transform: uppercase;
}
.header__title {
width: 735px;
padding-top: calc(125px - 21px);
/*из-за свойства line-height у заголовка .header-title сверху и снизу появляется небольшое расстояние, поэтому необходима коррекция отступов*/
margin-right: auto;
margin-left: auto;
text-align: center;
font-size: 45px;
line-height: 1.66;
color: #ffffff;
}
.main {
/*fix for IE11 problem with semantic tag "main" : https://weblog.west-wind.com/posts/2015/jan/12/main-html5-tag-not-working-in-internet-explorer-91011*/
display: block;
padding-top: 60px;
padding-bottom: 69px;
color: #0f0d0e;
background-color: #ffffff;
}
.content_top {
align-items: flex-start;
}
.main__articles {
flex: 0 0 66%;
}
.main__article + .main__article {
margin-top: 60px;
}
.main__article .article__thumbnail {
flex: 0 0 49.5%;
height: 295px;
}
.main__article .article__text {
flex: 0 0 47%;
}
.main__article .article__header {
padding-bottom: 46px;
}
.main__article .article__tag-list {
display: flex;
flex-wrap: wrap;
margin-bottom: 6px;
}
.article__tag {
font-size: 14px;
color: #b59f5b;
}
.main__article .article__tag {
margin-right: 18px;
}
.main__article .article__title {
margin-bottom: 27px;
font-size: 20px;
line-height: 1.2;
color: #0f0d0e;
/* цвет и шрифт зависят от расположения статьи на странице */
}
.main__article .article-info {
display: flex;
flex-wrap: wrap;
align-items: center;
/* font-size: 12px; */
}
.main__article .article-info__item {
margin-right: 17px;
}
.date {
font-size: 12px;
color: #888888;
}
.author {
font-size: 12px;
font-weight: 700;
color: #000000;
}
.main__article .article__excerpt {
font-size: 15px;
line-height: 1.47;
color: #0f0d0e
}
.sidebar {
flex: 0 0 23.2%;
}
.sidebar__item + .sidebar__item {
margin-top: 59px;
}
.title_sidebar {
font-size: 14px;
}
.sidebar__headline {
position: relative;
margin-bottom: 38px;
text-align: center;
color: #0f0d0e;
}
.sidebar__headline::after {
content: "";
position: absolute;
bottom: -13px;
left: calc(50% - 66px/2);
z-index: 2;
width: 66px;
height: 3px;
background-color: #b59f5b;
opacity: 0.4;
}
.sidebar__article + .sidebar__article {
margin-top: 22px;
}
.sidebar .article__thumbnail {
flex: 0 0 25.8%;
height: 70px;
}
.sidebar .article__header {
flex: 0 0 67.2%;
}
.title_sidebar_article {
color: #000000;
}
.sidebar__item + .sidebar__item_search {
margin-top: 63px;
}
.search {
display: flex;
}
.description-hint {
position: absolute;
width: 1px;
height: 1px;
clip: rect(1px, 1px, 1px, 1px);
}
.field {
padding-top: 16px;
padding-bottom: 15px;
padding-left: 18px;
font-family: inherit;
font-size: 12px;
/* color: #000000;
opacity: 0.54; */
color: #888888;
background-color: #f4f7f6;
border: 1px solid #f4f7f6;
}
.field:focus, .btn:focus {
border: 1px solid #8e7b4a;
outline: none
}
.search__field {
flex: 0 0 82%;
}
.btn {
font-family: inherit;
color: #ffffff;
background-color: #b59f5b;
border: 1px solid #b59f5b;
}
.btn:hover {
background-color: #9e895b;
cursor: pointer;
}
.search__btn {
flex: 0 0 18%;
height: 50px;
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/search.svg");
background-position: center;
background-size: 18px;
background-repeat: no-repeat;
}
.sidebar__item + .sidebar__item_subscription {
margin-top: 56px;
}
.sidebar__headline_subscription {
margin-bottom: 35px;
}
.subscribe__row {
width: 100%;
}
.subscribe__btn {
padding-top: 14px;
padding-bottom: 14px;
margin-top: 16px;
font-size: 14px;
text-align: center;
}
.sidebar__item + .sidebar__item_tags {
margin-top: 54px;
}
.sidebar-tags {
margin-bottom: -6px;
}
.sidebar-tags__item {
margin-bottom: 6px;
}
/*display: inline-block применены чисто в образовательных целях*/
.sidebar-tags__item, .sidebar-tag {
display: inline-block;
}
.sidebar-tag {
padding: 6px 13px 6px 11px;
font-size: 12px;
line-height: 1;
border: 3px solid #eeeeee;
}
.sidebar__headline_categories {
margin-bottom: 22px;
}
.categories__item {
display: block;
padding-top: 13px;
padding-bottom: 14px;
font-size: 14px;
font-weight: 700;
border-bottom: 1px solid #eeeeee;
}
.category {
position: relative;
}
.category__counter {
position: absolute;
top: calc(-50% + 12px/2);
left: calc(100% + 5px);
font-size: 12px;
font-weight: 700;
color: #b59f5b;
}
.social-info__content {
padding-top: 31px;
padding-bottom: 31px;
background-color: #f4f7f6;
}
.social-links {
display: flex;
justify-content: center;
}
.social-links__item + .social-links__item {
margin-left: 30px;
}
.social-links__item {
/* на случай, если не прогрузятся изображения социальных иконок */
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><circle cx='10' cy='5' r='1' stroke='black' stroke-width='0.5' fill='black'/></svg>");
}
.social-link {
display: block;
width: 20px;
height: 20px;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.social-link_twitter {
/* background-color: #76a9ea; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/004-twitter.svg");
}
.social-link_pinterest {
/* background-color: #e6001a; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/001-pinterest.svg");
}
.social-link_facebook {
/* background-color: #3b5998; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/002-facebook-logo.svg");
}
.social-link_instagram {
/* background-color: #904ac4; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/005-instagram.svg");
}
.social-link_tumblr {
/* background-color: #1d3765; */
background-image: url("https://netology-code.github.io/html-2-diploma/sources/images/social/003-tumblr.svg");
}
.footer {
padding-top: 70px;
padding-bottom: 31px;
text-align: center;
font-size: 12px;
font-weight: 700;
color: #999999;
} | 0.446736 | 0.076996 |
@charset "utf-8";
/**
*
* -----------------------------------------------------------------------------
* Author : Digimerlin
* Author URI : http://digimerlin.com/
*
* -----------------------------------------------------------------------------
*
**/ /* TABLE OF CONTENT
---------------------------------------------------------
01. General CSS
02. Global Class CSS
03. Header Section CSS
04. About Section CSS
05. Slider Section CSS
06. Contact Section CSS
07. Skill-bar Section CSS
08. Services Section CSS
09. Process Section CSS
10. Pricing Section CSS
11. Blog Section CSS
12. Partner Section CSS
13. Testimonial Section CSS
14. Footer Section CSS
15. Scroll Up CSS
16. Preloader CSS
17. Animation Part
--------------------------------------------------------*/
@font-face {
font-family: "Livvic";
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCr-x1S2hzjrlfXbeM-.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlffw8Eesg.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCp-x1S2hzjrlfnbw.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlffm8Aesg.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlfft8cesg.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlff08Yesg.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlff68Qesg.ttf)
format("truetype");
}
/* -----------------------------------
01. General CSS
-------------------------------------*/
html,
body {
font-size: 16px;
color: #454545;
font-family: "Livvic", sans-serif;
vertical-align: baseline;
line-height: 26px;
font-weight: 400;
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
}
p {
margin: 0 0 26px;
line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Livvic", sans-serif;
color: #101010;
margin: 0 0 26px;
line-height: 1.2;
}
h1 {
font-size: 70px;
font-weight: 700;
}
h2 {
font-size: 36px;
font-weight: 700;
}
h3 {
font-size: 28px;
font-weight: 700;
}
h4 {
font-size: 24px;
font-weight: 700;
}
h5 {
font-size: 18px;
font-weight: 700;
}
h6 {
font-size: 16px;
font-weight: 700;
}
.pb-230 {
padding-bottom: 230px;
}
.pb-435 {
padding-bottom: 435px;
}
.pr-220 {
padding-right: 220px;
}
.offwrap {
cursor: url(assets/images/close.html), auto;
width: 100%;
left: 100%;
transition: all 0.8s ease-out 0s;
position: fixed;
background: rgba(255, 255, 255, 0.3);
height: 100vh;
top: 0;
bottom: 0;
z-index: 999;
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
}
.home11 {
background: #000000;
}
body.nav-expanded .offwrap {
left: 0%;
transition: all 0.8s ease-out 0s;
}
.home-style2 h1,
.home-style2 h2,
.home-style2 h3,
.home-style2 h4,
.home-style2 h5,
.home-style2 h6 {
color: #0a0a0a;
}
.no-border {
border: none !important;
}
.uppercase {
text-transform: uppercase !important;
}
.capitalize {
text-transform: capitalize !important;
}
.bold-text {
font-size: 20px;
font-weight: bold;
font-family: "Livvic", sans-serif;
}
.extra-bold {
font-weight: 800 !important;
}
.gray-color {
background-color: #f6f7f9;
}
.black-dark {
background: #131313 !important;
}
.dark-blue {
background-image: linear-gradient(140deg, #000c1c 62%, #032a44 100%);
}
.gray-color-important {
background-color: #f6f7f9 !important;
}
.primary-background {
background-color: #106eea;
}
.white-bg {
background: #ffffff;
}
.white-color {
color: #ffffff !important;
}
.pt-255 {
padding-top: 255px;
}
.pb-390 {
padding-bottom: 390px;
}
.md-pt-215 {
padding-top: 215px;
}
.rs-call-us .image-part img {
max-height: 585px;
/* -webkit-animation: shake 1s ease-in-out 1s infinite alternate; */
}
a {
color: #03305c;
transition: all 0.3s ease;
text-decoration: none !important;
outline: none !important;
}
a:active,
a:hover {
text-decoration: none;
outline: 0 none;
color: #03305c;
}
ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
.clear {
clear: both;
}
::-moz-selection {
background: #106eea;
text-shadow: none;
color: #ffffff;
}
::selection {
background: #106eea;
text-shadow: none;
color: #ffffff;
}
.bg1 {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-image: linear-gradient(120deg, #01182f 30%, #01aeb1 100%);
}
.bg2 {
background: url(../images/bg/counter-bg.png);
background-color: #fff;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
box-shadow: -1px 21px 25px 0px rgba(0, 0, 0, 0.12);
border-radius: 10px 10px 10px 10px;
padding: 40px 40px 40px 40px;
z-index: 10;
}
.bg4 {
background: url(../images/bg/about-2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.shape-part .right-side,
.shape-part .left-side {
position: absolute;
bottom: 0px;
left: 0;
}
.shape-part .right-side {
left: auto;
right: 0;
}
.bg-unset {
background: unset !important;
}
.rs-menu-toggle {
color: #106eea;
text-align: right;
}
button {
cursor: pointer;
}
.glyph-icon:before {
margin: 0;
}
.z-index-1 {
position: relative;
z-index: 1;
}
ul.services-list li a {
display: block;
border: 2px solid #e8e8e8;
padding: 16px 18px;
transition: all 0.5s ease;
border-radius: 5px;
position: relative;
font-size: 16px;
font-weight: 700;
color: #101010;
margin-bottom: 15px;
}
ul.services-list li a:before {
content: "\f113";
position: absolute;
right: 12px;
top: 16px;
font-family: Flaticon;
color: #1c1b1b;
}
ul.services-list li a:hover,
ul.services-list li a.active {
background-image: linear-gradient(250deg, #1273eb 19%, #03228f 100%);
color: #ffffff;
border-radius: 5px;
border-color: #1273eb;
}
ul.services-list li a:hover:before,
ul.services-list li a.active:before {
color: #ffffff;
}
ul.listing-style li {
margin-bottom: 7px;
}
ul.listing-style li i {
color: #03228f;
font-size: 24px;
line-height: 31px;
margin-right: 10px;
}
ul.rs-features-list li {
margin: 0px 0px 21px 0px;
}
ul.rs-features-list li i {
color: #fff;
background-color: transparent;
background-image: linear-gradient(180deg, #dd4c23 0%, #f27c1e 100%);
padding: 10px 10px 10px 10px;
margin: 0px 20px 0px 0px;
border-radius: 50px 50px 50px 50px;
}
ul.rs-features-list li span {
color: #575757;
font-size: 18px;
font-weight: 600;
text-decoration: underline;
}
ul.rs-features-list li span:hover {
color: #fc4f29;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none !important;
}
.pagination-part {
display: inline-block;
border: 1px solid #f9f9f9;
padding: 11px 0;
border-radius: 3px;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
background: #fff;
}
.pagination-part li {
padding: 2px 20px 0 21px;
line-height: 23px;
font-size: 18px;
text-decoration: none;
transition: all 0.4s ease-in-out 0s;
text-align: center;
background: 0 0;
color: #000;
display: inline-block;
vertical-align: top;
border-right: 1px solid #e6e6e6;
}
.pagination-part li a {
color: #454545;
}
.pagination-part li:last-child {
border-right: unset;
}
.pagination-part .next-page {
position: relative;
transition: all 0.4s ease-in-out 0s;
padding-right: 12px;
}
.pagination-part .next-page:before,
.pagination-part .next-page:after {
content: "\f105";
position: absolute;
top: 6px;
right: 0;
color: #454545;
line-height: 16px;
font-family: fontawesome;
font-size: 12px;
}
.pagination-part .next-page:before {
right: 4px;
}
.pagination-part .active a {
color: #106eea;
}
.gridFilter button {
font-size: 16px;
background: 0 0 !important;
color: #0a0a0a;
display: inline-block;
transition: 0.4s;
outline: 0;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
position: relative;
padding: 5px 20px;
border-radius: 30px;
border: 0;
border-radius: 3px;
}
.gridFilter button.active {
background: #fff;
color: #ff5421;
box-shadow: 0 0 30px #eee;
}
.gridFilter button + button {
margin-left: 20px;
}
blockquote {
margin: 35px 0px;
padding: 40px 60px;
color: #666;
position: relative;
background: rgba(0, 0, 0, 0.01);
font-weight: normal;
font-style: italic;
text-align: left;
clear: both;
font-weight: 400;
border-radius: 8px;
}
blockquote:before {
content: "\f129";
font-size: 35px;
color: #0b70e1;
padding-bottom: 0;
display: inline-block;
font-family: flaticon;
font-weight: 400;
text-align: center;
top: 0;
background: 0 0;
transform: rotate(180deg);
}
blockquote cite {
font-size: 15px;
display: block;
margin-top: 10px;
}
blockquote cite:before {
content: "";
font-size: 28px;
color: #ff5421;
padding-bottom: 0px;
display: inline-block;
background: #0b70e1;
height: 2px;
width: 40px;
font-weight: 400;
text-align: center;
top: -4px;
margin-right: 10px;
position: relative;
}
.dots {
list-style: disc;
margin: 0 0 1.5em 3em;
}
.arrow-btn {
position: absolute;
top: 90%;
left: 50%;
transform: translate(-50%, -15%);
}
.arrow-btn a {
font-weight: 400;
font-size: 17px;
border-color: #f2541b;
border-style: solid;
border-width: 1px;
margin: 0px;
border-radius: 23px;
padding: 12px 15px;
color: #f2541b;
}
.arrow-btn a span {
position: absolute;
display: block;
top: 50%;
left: 50%;
width: 8px;
height: 8px;
margin: -4px 0 0 -4px;
border-radius: 50%;
background: #f2541b;
}
.rs-carousel.nav-style1 {
position: relative;
}
.rs-carousel.nav-style1 .owl-nav {
display: block;
}
.rs-carousel.nav-style1 .owl-nav .owl-next,
.rs-carousel.nav-style1 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: #106eea;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.7s;
opacity: 0;
visibility: hidden;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before,
.rs-carousel.nav-style1 .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-carousel.nav-style1 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next,
.rs-carousel.nav-style1:hover .owl-nav .owl-prev {
left: -50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next {
right: -50px;
left: unset;
}
.rs-carousel.nav-style2 {
position: relative;
}
.rs-carousel.nav-style2 .owl-nav {
display: block;
position: absolute;
top: -80px;
right: 0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev,
.rs-carousel.nav-style2 .owl-nav .owl-next {
display: inline-block;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i,
.rs-carousel.nav-style2 .owl-nav .owl-next i {
transition: all 0.3s ease;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before,
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
font-family: Flaticon;
font-size: 22px;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:hover i,
.rs-carousel.nav-style2 .owl-nav .owl-next:hover i {
color: #106eea;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before {
content: "\f134";
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:after {
content: "/";
padding: 0 5px 0 5px;
position: relative;
top: -3px;
}
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
content: "\f133";
}
.rs-carousel .owl-dots {
text-align: center;
margin: 40px auto 0;
line-height: 15px;
display: block;
}
.rs-carousel .owl-dots .owl-dot {
width: 30px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
border: 1px solid #106eea;
background: transparent;
opacity: 0.7;
cursor: pointer;
}
.rs-carousel .owl-dots .owl-dot:hover {
background: #106eea;
}
.rs-carousel .owl-dots .active {
background: #106eea;
opacity: 1;
}
/* ------------------------------------
02. Global Class CSS
---------------------------------------*/
.y-middle {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.y-bottom {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: flex-end;
-webkit-align-items: flex-end;
align-items: flex-end;
}
.project-item .vertical-middle {
position: relative;
z-index: 9;
}
.vertical-middle {
display: table;
height: 100%;
width: 100%;
}
.vertical-middle-cell {
display: table-cell;
vertical-align: middle;
}
.readon {
color: #fff;
font-size: 16px;
font-weight: 600;
text-transform: capitalize;
cursor: pointer;
display: inline-block;
position: relative;
transition: all 0.4s;
z-index: 1;
background-color: transparent;
}
.readon.learn-more {
padding: 14px 40px 14px 40px;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
border-radius: 30px 30px 30px 30px;
}
.readon.learn-more:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #ffffff;
}
.readon.learn-more.sub-con {
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
padding: 18px 36px 16px 36px;
font-size: 14px;
font-weight: 500;
}
.readon.learn-more.sub-con:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #ffffff;
}
.readon.learn-more.submit {
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
padding: 16px 40px 16px 40px;
font-weight: 500;
font-size: 16px;
}
.readon.learn-more.submit:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #ffffff;
}
.readon.learn-more.post {
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
}
.readon.learn-more.post:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #fff;
}
.readon.learn-more.pdf i {
margin-left: 10px;
}
.readon.learn-more.contact-us {
border-radius: 8px 8px 8px 8px !important;
}
.readon.learn-more.learn-btn {
background-image: linear-gradient(90deg, #03228f 0%, #1d62f0 100%);
border-radius: 3px 3px 3px 3px !important;
}
.readon.learn-more.learn-btn:hover {
background-image: linear-gradient(180deg, #03228f 19%, #4e95ed 100%);
}
.readon.learn-more.slider-btn {
background: #ffffff;
color: #03305c;
padding: 15px 37px;
border-radius: 8px 8px 8px 8px !important;
}
.readon.learn-more.slider-btn:hover {
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
color: #ffffff;
}
.readon.started {
padding: 14px 40px 14px 40px;
background-image: linear-gradient(220deg, #f27c1e 0%, #dd4c23 79%);
border-radius: 30px 30px 30px 30px;
}
.readon.started:hover {
background-image: linear-gradient(180deg, #dd4c23 19%, #f27c1e 100%);
color: #ffffff;
}
.readon.started.get-new:hover {
background: rgba(0, 0, 0, 0)
linear-gradient(79deg, #dd4c23 0%, #f27c1e 63%, #f27c1e);
}
.readon.started.get-ready {
background-image: linear-gradient(90deg, #03228f 0, #0e73e4 100%);
border-radius: 3px;
text-transform: uppercase;
}
.readon.started.get-ready:hover {
opacity: 0.9;
}
.readon.started.get-ready2 {
border-radius: 5px 5px 5px 5px;
}
.readon.started.get-ready3 {
border-radius: 5px 5px 5px 5px;
text-transform: uppercase;
font-weight: 500;
}
.readon.lets-talk {
padding: 14px 40px 14px 40px;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
border-radius: 30px 30px 30px 30px;
}
.readon.lets-talk:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #ffffff;
}
.readon.buy-now {
padding: 10px 40px 10px 40px;
background-image: linear-gradient(170deg, #03228f 0%, #4e95ed 100%);
border-radius: 30px 30px 30px 30px;
text-transform: uppercase;
position: relative;
top: 25px;
}
.readon.buy-now:hover {
background-image: linear-gradient(360deg, #03228f 0%, #4e95ed 100%);
color: #ffffff;
}
.readon.buy-now.get-in {
padding: 15px 34px;
border: 1px solid #fff;
color: #ffffff;
background: transparent;
}
.readon.buy-now.get-in:hover {
background: #03228f;
color: #ffffff;
border: 1px solid #03228f;
}
.readon.buy-now.table-btn {
background-image: linear-gradient(90deg, #032390 0%, #032390 100%);
color: #ffffff;
border-radius: 3px 3px 3px 3px;
font-weight: 500;
}
.readon.buy-now.table-btn:hover {
background-image: linear-gradient(90deg, #0d6ada 0%, #0d6ada 100%);
}
.readon.buy-now.sl-btn {
background: rgba(0, 0, 0, 0)
linear-gradient(90deg, #03228f 0%, #1d62f0 100%);
color: #ffffff;
border-radius: 4px;
font-weight: 500;
font-size: 18px;
text-transform: capitalize;
padding: 17px 28px;
}
.readon.buy-now.sl-btn:hover {
background-image: linear-gradient(90deg, #0d6ada 0%, #0d6ada 100%);
}
.readon.buy-now.price {
background-image: linear-gradient(170deg, #03228f 0%, #4e95ed 100%);
border-radius: 8px 8px 8px 8px;
}
.readon.buy-now.price:hover {
background-image: linear-gradient(200deg, #03228f 0%, #4e95ed 100%);
}
.readon.buy-now.pricing:hover {
background-image: linear-gradient(170deg, #03228f 0%, #4e95ed 100%);
color: #ffffff;
}
.readon.view-more {
padding: 12px 25px 12px 25px;
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
color: #111111;
background-color: #ffffff;
border-radius: 30px 30px 30px 30px;
}
.readon.discover {
font-size: 16px;
font-weight: 500;
color: #032491;
padding: 17px 30px 17px 30px;
background: transparent;
background-image: linear-gradient(90deg, #ffffff 19%, #ffffff 100%);
border-radius: 4px 4px 4px 4px;
}
.readon.discover.started {
padding: 16px 30px 16px 30px;
}
.readon.discover.started:hover {
background-image: linear-gradient(90deg, #f6f7f9 19%, #f6f7f9 100%);
color: #032491;
}
.readon.discover:hover {
background-image: linear-gradient(90deg, #f6f7f9 19%, #f6f7f9 100%);
}
.readon.discover.more {
background-image: linear-gradient(90deg, #032491 19%, #032491 100%);
padding: 16px 30px 16px 30px;
color: #ffffff;
}
.readon.discover.more:hover {
background-image: linear-gradient(90deg, #0d6ada 19%, #0d6ada 100%);
color: #ffffff;
}
.readon.qoute-btn {
font-size: 16px;
padding: 15px 32px;
border-radius: 3px;
color: #fff;
font-weight: 500;
text-transform: uppercase;
color: #101010;
border: 1px solid #f2541b;
background: transparent;
}
.readon.qoute-btn:hover {
color: #ffffff;
background-image: linear-gradient(150deg, #dd4c23 19%, #f27c1e 100%);
}
.readon.reply {
cursor: pointer;
display: inline-block;
position: relative;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
padding: 3px 20px 6px;
line-height: 22px;
border-radius: 30px;
font-size: 13px;
font-weight: 500;
color: #ffffff !important;
background-image: linear-gradient(50deg, #03228f 10%, #0e73e4 100%);
z-index: 1;
border: none;
}
.readon.reply:hover {
background-image: linear-gradient(50deg, #0e73e4 10%, #03228f 100%);
color: #ffffff;
opacity: 0.99;
}
/*-- Services Button Css --*/
.services-button a {
position: relative;
display: inline-block;
transition: all ease 0.3s;
padding: 18px 0px 0px 0px;
font-size: 16px;
font-weight: 500;
color: #101010;
}
.services-button a:after {
content: "\f113";
font-family: Flaticon;
font-size: 10px;
position: relative;
right: 0;
top: 0;
display: inline-block;
margin-left: 15px;
transition: all ease 0.4s;
color: #101010;
}
/*-- Services-btn--*/
.services-btn2 a {
position: relative;
display: inline-block;
transition: all ease 0.3s;
font-weight: 500;
color: #032390;
}
.services-btn2 a:after {
position: absolute;
width: 30px;
height: 1px;
background: #0b70e1;
content: "";
top: 50%;
transform: translateY(-50%);
right: 0px;
transition: 0.4s;
opacity: 0;
}
.services-btn2 a:hover:after {
right: -40px;
opacity: 1;
}
/*-- Services-btn--*/
.services-btn3 a {
position: relative;
color: #101010;
display: inline-block;
transition: all 0.9s ease;
text-decoration: underline !important;
}
.services-btn3 a:after {
position: absolute;
right: 0;
top: 50%;
font-size: 15px;
font-weight: 500;
color: #f2541b;
font-family: "Flaticon";
transform: translateY(-50%);
transition: all 0.2s ease;
}
.services-btn3 a:hover {
color: #f2541b;
}
.services-btn3 a:hover:after {
right: -28px;
content: "\f110";
transition: all 0.9s ease;
}
/*-- Blog Button Css --*/
.blog-button a {
position: relative;
display: inline-block;
color: #061340;
font-size: 16px;
font-weight: 600;
transition: all ease 0.4s;
}
.blog-button a:after {
content: "\f113";
font-family: Flaticon;
font-size: 8px;
position: relative;
right: 0;
top: 0;
display: inline-block;
margin-left: 8px;
transition: all ease 0.4s;
color: #101010;
}
.blog-button a:hover {
color: #106eea;
}
.blog-button a:hover:after {
transform: translateX(10px);
color: #106eea;
}
.blog-button.style2 a:hover {
color: #ff5600;
}
.blog-button.style2 a:hover:after {
color: #ff5600;
}
.blog-button.inner-blog a {
text-align: center;
display: inline-block;
color: #0b70e1;
padding-right: 25px;
position: relative;
z-index: 1;
font-family: "Livvic", sans-serif;
font-weight: 500;
font-size: 15px;
transition: all 0.3s;
}
.blog-button.inner-blog a:after {
content: "\f114";
position: absolute;
font-family: flaticon;
font-size: 15px;
top: 1px;
right: 0;
opacity: 1;
transition: all 0.3s;
color: #0b70e1;
}
.blog-button.inner-blog a:hover {
color: #0b70e1;
}
.blog-button.inner-blog a:hover:after {
right: -5px;
opacity: 1;
transform: unset;
}
/*-- Submit Button Css --*/
.submit-btn {
box-shadow: 0 28px 50px 0 rgba(0, 0, 0, 0.05);
outline: 0;
border: none;
padding: 18px 18px 18px 18px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-weight: 500;
color: #fff;
background-image: linear-gradient(160deg, #03228f 0%, #0b70e1 77%);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
width: 100%;
cursor: pointer;
}
.submit-btn:hover {
opacity: 0.9;
}
.submit-btn.orange-btn {
background-image: linear-gradient(160deg, #f27c1e 0%, #dd4c23 79%);
}
.submit {
color: #ffffff;
background-color: transparent;
background-image: linear-gradient(95deg, #03228f 0%, #4e95ed 100%);
padding: 18px 40px 17px 40px;
font-size: 15px;
border-radius: 30px 30px 30px 30px;
border: none;
}
.submit:hover {
opacity: 0.99;
}
.submit.sub-small {
padding: 17px 40px 17px 40px;
}
.submit.sub-small:hover {
color: #ffffff;
background-image: linear-gradient(290deg, #03228f 0%, #4e95ed 100%);
opacity: unset;
}
/*-- Add Cart Button Css --*/
.add-btn {
cursor: pointer;
display: inline-block;
position: relative;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
padding: 10px 40px;
border-radius: 3px;
font-size: 16px;
font-weight: 500;
background-image: linear-gradient(90deg, #03228f 0%, #0e73e4 100%);
color: #ffffff;
z-index: 1;
border: none;
}
.add-btn:hover {
color: #fff;
background-image: linear-gradient(90deg, #0e73e4 19%, #03228f 100%);
z-index: 1;
}
/*Video Icon*/
.media-icon {
position: relative;
display: inline-block;
z-index: 1;
}
.media-icon .popup-videos {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #ffffff;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
width: 70px;
height: 70px;
border-radius: 100%;
text-align: center;
}
.media-icon .popup-videos:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
background-color: #1042c0;
transition: 0.3s ease all;
}
.media-icon .popup-videos i:before {
font-size: 30px;
line-height: 70px;
transition: 0.3s ease all;
}
.media-icon .popup-videos:hover:before {
background: #106eea;
}
.media-icon.video-item {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.slider-video .popup-videos {
display: inline-block;
position: relative;
height: 70px;
width: 70px;
line-height: 70px;
border-radius: 100%;
text-align: center;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
}
.slider-video .popup-videos i {
text-align: center;
color: #ffffff;
border-radius: 100%;
font-size: 25px;
position: relative;
line-height: 70px;
z-index: 9;
width: 100%;
vertical-align: middle;
margin-left: 0;
height: auto;
}
.slider-video .popup-videos:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 70px;
height: 70px;
border-radius: 50%;
animation: pulse-border 3000ms ease-out infinite;
background: #03305c;
}
.address-item .address-icon {
display: inline-block;
position: relative;
height: 70px;
width: 70px;
line-height: 70px;
border-radius: 100%;
text-align: center;
background: #ffffff;
}
.address-item .address-icon i {
text-align: center;
color: #106eea;
border-radius: 100%;
font-size: 25px;
position: relative;
line-height: 70px;
z-index: 9;
width: 100%;
vertical-align: middle;
margin-left: 0;
height: auto;
}
.address-item .address-icon:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 70px;
height: 70px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
background: #ffffff;
}
.tab-videos .popup-videos {
color: #de5022;
display: flex;
overflow: hidden;
}
.tab-videos .popup-videos i {
width: 35px;
height: 35px;
line-height: 32px;
border: 2px solid #de5022;
border-radius: 50%;
text-align: center;
font-size: 14px;
float: left;
margin-right: 18px;
}
.tab-videos .popup-videos:hover {
color: #de5022;
}
.tab-videos .popup-videos .title {
font-size: 22px;
line-height: 34px;
font-weight: 600;
color: #102b3e;
}
.tab-videos .popup-videos .title:hover {
color: #f2541b;
}
.rs-videos .animate-border .popup-border {
background-image: linear-gradient(180deg, #03228f 0%, #0b70e1 100%);
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
display: inline-block;
border-radius: 50%;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.rs-videos .animate-border .popup-border i {
font-size: 20px;
line-height: 80px;
display: block;
color: #ffffff;
}
.rs-videos .animate-border .popup-border:before {
content: "";
border: 2px solid #106eea;
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 180px;
height: 180px;
border-radius: 50%;
animation: zoomBig 3.25s linear infinite;
-webkit-animation-delay: 0.75s;
animation-delay: 0.75s;
}
.rs-videos .animate-border .popup-border:after {
content: "";
border: 2px solid #106eea;
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 180px;
height: 180px;
border-radius: 50%;
animation: zoomBig 3.25s linear infinite;
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
.rs-videos .animate-border.main-home .popup-border {
left: 8%;
}
.rs-videos .animate-border.main-home.style2 .popup-border {
left: 50%;
}
.rs-videos .animate-border.white-color .popup-border {
background: #ffffff;
bottom: -14px;
left: 44%;
}
.rs-videos .animate-border.white-color .popup-border i {
color: #03228f;
}
.rs-videos .animate-border.white-color .popup-border:before {
border: 2px solid #ffffff;
}
.rs-videos .animate-border.white-color .popup-border:after {
border: 2px solid #ffffff;
}
.rs-videos .animate-border.white-color.style3 .popup-border {
bottom: 362px;
left: 10%;
}
@keyframes zoomBig {
0% {
transform: translate(-50%, -50%) scale(0.5);
opacity: 1;
border-width: 3px;
}
40% {
opacity: 0.5;
border-width: 2px;
}
65% {
border-width: 1px;
}
100% {
transform: translate(-50%, -50%) scale(1);
opacity: 0;
border-width: 1px;
}
}
@keyframes zoomBig {
0% {
transform: translate(-50%, -50%) scale(0.5);
opacity: 1;
border-width: 3px;
}
40% {
opacity: 0.5;
border-width: 2px;
}
65% {
border-width: 1px;
}
100% {
transform: translate(-50%, -50%) scale(1);
opacity: 0;
border-width: 1px;
}
}
.margin-remove {
margin: 0 !important;
}
.no-gutter {
margin-left: 0;
margin-right: 0;
}
.no-gutter [class*="col-"] {
padding-left: 0;
padding-right: 0;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
margin: 0;
}
.container-fluid {
padding-left: 60px;
padding-right: 60px;
}
.display-table {
display: table;
height: 100%;
width: 100%;
}
.display-table-cell {
display: table-cell;
vertical-align: middle;
}
.relative {
position: relative;
}
.sec-title {
position: relative;
}
.sec-title .sub-text {
position: relative;
padding-left: 95px;
display: inline-block;
line-height: 28px;
font-size: 14px;
letter-spacing: 1px;
font-weight: 600;
color: #01aeb1;
text-transform: uppercase;
margin-bottom: 10px;
}
.sec-title .sub-text:after {
content: "";
position: absolute;
border: 0;
height: 4px;
width: 50px;
background-color: #03305c;
z-index: 1;
margin-left: 0;
left: 24px;
top: 12px;
}
.sec-title .sub-text:before {
content: "";
position: absolute;
left: 0;
top: 12px;
height: 4px;
width: 12px;
background-color: #03305c;
}
.sec-title .sub-text.new {
color: #ffffff;
font-size: 15px;
padding-left: 0;
}
.sec-title .sub-text.new:before {
display: none;
}
.sec-title .sub-text.new:after {
display: none;
}
.sec-title .sub-text.new-text {
padding-left: 0;
margin-bottom: 7px;
color: #ffffff;
}
.sec-title .sub-text.new-text:before {
display: none;
}
.sec-title .sub-text.new-text:after {
display: none;
}
.sec-title .sub-text.style2:after {
background-color: #01aeb1;
}
.sec-title .sub-text.style2:before {
background-color: #01aeb1;
}
.sec-title .sub-text.style-bg {
background-color: #1273eb17;
display: inline-block;
padding: 6px 25px;
color: #1273eb;
border-radius: 30px;
text-transform: uppercase;
}
.sec-title .sub-text.style-bg:before {
display: none;
}
.sec-title .sub-text.style-bg:after {
display: none;
}
.sec-title .sub-text.style4-bg {
color: #03228f;
}
.sec-title .sub-text.style4-bg:before {
background-color: #fd6509;
}
.sec-title .sub-text.style4-bg:after {
background-color: #fd6509;
}
.sec-title .sub-text.choose {
font-size: 16px;
font-weight: 500;
}
.sec-title .title {
font-size: 36px;
font-weight: 700;
line-height: 46px;
color: #101010;
margin: 0;
}
.sec-title .title.white-color {
color: #ffffff;
}
.sec-title .desc {
font-size: 18px;
font-weight: 400;
margin: 0;
text-align: justify;
}
.sec-title .desc.white-color {
color: #fff;
}
.sec-title .desc-big {
font-size: 28px;
line-height: 48px;
font-weight: 500;
margin: 0;
}
.sec-title2 {
position: relative;
}
.sec-title2 .sub-text {
margin: 0 0 10px;
display: block;
line-height: 28px;
font-family: "Livvic", sans-serif;
font-size: 14px;
font-weight: 400;
color: #03228f;
text-transform: uppercase;
}
.sec-title2 .sub-text.white-color {
color: #ffffff;
}
.sec-title2 .sub-text.gold-color {
font-weight: 600;
color: #f27c1e;
}
.sec-title2 .sub-text.contact {
color: #1273eb;
}
.sec-title2 .sub-text.orange-color {
color: #f2541b !important;
}
.sec-title2 .sub-text.style-bg {
background-color: #1273eb17;
display: inline-block;
padding: 6px 25px;
color: #1273eb;
border-radius: 30px;
text-transform: uppercase;
}
.sec-title2 .sub-text.style-bg.white-color {
color: #ffffff;
}
.sec-title2 .sub-text.style-bg.con-bg {
background-color: #03228f;
}
.sec-title2 .title {
font-size: 36px;
font-weight: 700;
line-height: 1.4;
color: #0a0a0a;
max-width: 490px;
margin: 0 auto;
}
.sec-title2 .title.white-color {
color: #ffffff;
}
.sec-title2 .title.testi-title {
max-width: unset;
}
.sec-title2 .title.testi-title.new {
color: #102b3e;
}
.sec-title2 .title.title2 {
max-width: 550px;
}
.sec-title2 .title.title3 {
color: #102b3e;
max-width: 430px;
margin: 0;
}
.sec-title2 .title.title4 {
max-width: 660px;
}
.sec-title2 .title.title5 {
color: #102b3e;
}
.sec-title2 .title.title6 {
font-weight: 600;
max-width: unset;
}
.sec-title2 .title.title7 {
color: #102b3e;
max-width: unset;
}
.sec-title2 .title.orange-color {
color: #f2541b !important;
}
.sec-title2 .heading-line {
position: relative;
/* background-color: #03228f; */
background-image: linear-gradient(90deg, #01182f 30%, #01aeb1 100%);
height: 5px;
width: 90px;
border-radius: 30px;
margin: 20px auto;
}
.sec-title2 .heading-line:before {
background-color: #00adb0;
content: "";
position: absolute;
left: 0;
top: -2.7px;
height: 10px;
width: 10px;
border-radius: 50%;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
-webkit-animation-direction: alternate-reverse;
-webkit-animation-name: watermark-animate;
animation-name: watermark-animate;
}
.sec-title2 .desc {
font-size: 18px;
line-height: 31px;
font-weight: 400;
color: #454545;
max-width: 429px;
margin: 13px auto 0;
}
.sec-title2 .desc.desc-text {
max-width: 540px;
}
.sec-title2 .desc.white-color {
color: #fff;
}
.sec-title2 .desc.desc2 {
max-width: 700px;
margin: 0;
}
.sec-title2 .desc-big {
font-size: 18px;
line-height: 31px;
color: #ffffff;
}
.sec-title3 .sub-text {
font-size: 19px;
line-height: 1.4;
font-weight: 700;
color: #ffffff;
display: block;
margin-bottom: 20px;
}
.sec-title3 .title {
font-size: 42px;
font-weight: 700;
color: #fff;
line-height: 40px;
margin-bottom: 30px;
}
.sec-title3 .desc {
font-size: 19px;
font-weight: 500;
color: #fff;
margin: 0;
}
.sec-title4 .sub-text {
font-size: 16px;
line-height: 1.4;
font-weight: 500;
color: #03228f;
margin: 0 0 10px;
display: block;
text-transform: uppercase;
}
.sec-title4 .title {
font-size: 36px;
line-height: 1.3;
font-weight: 700;
color: #101010;
margin: 0 0 17px;
}
.sec-title4 .heading-line {
height: 5px;
width: 90px;
background: #b9c7f6;
margin: 0px;
position: relative;
border-radius: 30px;
}
.sec-title4 .heading-line:before {
content: "";
position: absolute;
left: 0;
top: -2.7px;
height: 10px;
width: 10px;
border-radius: 50%;
background-color: #0d66d5;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
-webkit-animation-direction: alternate-reverse;
-webkit-animation-name: watermark-animate;
animation-name: watermark-animate;
}
.sec-title4 .desc {
margin: 0;
}
.sec-title4 .desc.desc-big {
font-size: 20px;
line-height: 30px;
margin: 26px 0px 30px 0px;
}
.sec-title5 .logo-icon {
margin-bottom: 15px;
}
.sec-title5 .logo-icon img {
width: 71px;
}
.sec-title5 .title {
font-size: 36px;
line-height: 1.4;
font-weight: 700;
color: #102b3e;
margin-bottom: 10px;
}
.sec-title5 .title span {
color: #f9780f;
}
.sec-title5 .desc {
font-size: 18px;
line-height: 26px;
font-weight: 400;
color: #454545;
max-width: 626px;
margin: 0 auto;
}
.pt-relative {
position: relative !important;
}
.sec-title6 .sub-text {
font-size: 18px;
font-weight: 600;
text-transform: uppercase;
line-height: 32px;
color: #f24c1a;
display: block;
margin-bottom: 5px;
}
.sec-title6 .sub-text.new-text {
margin-bottom: 10px;
}
.sec-title6 .title {
font-size: 36px;
font-weight: 700;
line-height: 1.4;
color: #102b3e;
margin-bottom: 5px;
}
.sec-title6 .title.new-title {
max-width: 700px;
margin: 0 auto;
}
.sec-title6 .desc {
padding-right: 125px;
}
.sec-right {
position: absolute;
right: -17%;
top: 45%;
transform: rotate(90deg);
z-index: 1;
}
.sec-right .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #101010;
letter-spacing: 2px;
margin-bottom: 20px;
}
.sec-left {
transform: rotate(-90deg) translatex(-50%);
transform-origin: left;
position: absolute;
left: -2%;
top: 46%;
z-index: 1;
}
.sec-left .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #101010;
letter-spacing: 2px;
margin-bottom: 20px;
}
.mfp-content .mfp-iframe-scaler .iframe {
top: -30px;
left: -17.2%;
max-width: 770px;
}
/* -----------------------
03. Header Section CSS
--------------------------*/
/*======= Header =======*/
header .header-nav {
position: relative;
background-color: #fff;
}
@media (max-width: 575px) {
header .header-nav {
top: 0;
}
}
header .header-nav .nav-container {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
height: 70px;
}
header .header-nav .nav-container .navbar-toggler {
border: 0;
background-color: transparent;
cursor: pointer;
display: none;
padding: 15px;
margin-left: 30px;
}
header .header-nav .nav-container .navbar-toggler span {
position: relative;
background-color: #ffffff;
border-radius: 0;
display: block;
height: 3px;
margin-top: 5px;
padding: 0;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
width: 30px;
cursor: pointer;
display: block;
}
header .header-nav .nav-container .navbar-toggler span:first-child {
margin-top: 0;
}
header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(1) {
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
top: 8px;
}
header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(2) {
opacity: 0;
}
header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(3) {
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
top: -8px;
}
header .header-nav .nav-container .navbar-close {
position: absolute;
top: 20px;
right: 20px;
z-index: 12;
display: none;
}
header .header-nav .nav-container .navbar-close .cross-wrap {
width: 26px;
height: 26px;
cursor: pointer;
position: relative;
}
header .header-nav .nav-container .navbar-close .cross-wrap span {
position: absolute;
display: block;
width: 100%;
height: 2px;
border-radius: 6px;
background: #fff;
}
header .header-nav .nav-container .navbar-close .cross-wrap span:first-child {
top: 12px;
left: 0;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
header .header-nav .nav-container .navbar-close .cross-wrap span:last-child {
bottom: 12px;
left: 0;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
header .header-nav .nav-container .menu-items {
position: relative;
}
header .header-nav .nav-container .menu-items ul li {
display: inline-block;
}
header .header-nav .nav-container .menu-items ul li.has-submemu {
position: relative;
}
header .header-nav .nav-container .menu-items ul li.has-submemu::after {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
content: "\f107";
position: absolute;
right: 5px;
top: 51%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
@media (max-width: 1599px) {
header .header-nav .nav-container .menu-items ul li.has-submemu::after {
right: -4px;
}
}
header .header-nav .nav-container .menu-items ul li a {
color: #14212b;
padding: 0 15px;
margin: 0 15px;
line-height: 80px;
position: relative;
font-weight: 500;
}
@media (max-width: 1599px) {
header .header-nav .nav-container .menu-items ul li a {
padding: 0 10px;
margin: 0 5px;
}
}
@media (max-width: 1199px) {
header .header-nav .nav-container .menu-items ul li a {
margin: 0 5px;
padding: 0 6px;
font-size: 16px;
}
}
header .header-nav .nav-container .menu-items ul li a:hover {
color: #106eea;
}
header .header-nav .nav-container .menu-items ul li .submenu {
position: absolute;
left: 0;
top: 110%;
width: 200px;
background-color: #fff;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
z-index: 99;
height: auto;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
header .header-nav .nav-container .menu-items ul li .submenu li {
display: block;
}
header .header-nav .nav-container .menu-items ul li .submenu li a {
display: block;
padding: 8px 30px;
position: relative;
-webkit-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
border-radius: 0;
margin: 0 0;
line-height: 30px !important;
color: #616161;
}
header .header-nav .nav-container .menu-items ul li .submenu li a:hover {
background-color: #ff4a17;
color: #fff !important;
}
header .header-nav .nav-container .menu-items ul li .submenu li .submenu {
left: 100%;
top: 50%;
}
header .header-nav .nav-container .menu-items ul li .submenu li:hover .submenu {
top: 0;
}
header .header-nav .nav-container .menu-items ul li:hover > .submenu {
opacity: 1;
visibility: visible;
top: 100%;
}
header .header-nav .nav-container .menu-items ul li .dd-trigger {
display: none;
}
header .header-nav .nav-container .offcanvas-toggler {
cursor: pointer;
border-radius: 5px;
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;
}
header .header-nav .nav-container .offcanvas-toggler span span {
background-color: #fff;
border-radius: 0;
display: block;
height: 3px;
margin-top: 8px;
padding: 0;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
width: 35px;
cursor: pointer;
}
header .header-nav .nav-container .offcanvas-toggler span span:first-child {
margin-top: 0;
}
@media (max-width: 991px) {
header .header-nav .nav-container .offcanvas-toggler {
display: none;
}
}
header .header-nav .sticky-nav .nav-container.site-logo {
max-height: 50px;
}
header .header-nav .nav-container .menu-social-link {
margin-right: 30px;
}
@media (max-width: 1199px) {
header .header-nav .nav-container .menu-social-link {
margin-right: 15px;
}
}
header .header-nav .nav-container .menu-social-link a {
color: #14212b;
padding: 8px;
}
@media (max-width: 1199px) {
header .header-nav .nav-container .menu-social-link a {
padding: 5px;
}
}
header .header-nav .nav-container .menu-social-link a:hover {
color: #ff4a17;
}
header .header-nav .nav-container.breakpoint-on {
padding: 15px 0;
}
header .header-nav .nav-container.breakpoint-on .nav-menu {
background-image: linear-gradient(20deg, #01182f 1%, #01aeb1 100%);
position: fixed;
top: 0;
left: -300px;
z-index: 9999;
width: 200px;
height: 100%;
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
padding: 0;
-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
display: block;
overflow-x: hidden;
overflow-y: scroll;
padding-top: 70px;
}
header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li {
display: block;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li::after {
display: none;
}
header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li a {
display: block;
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
color: #fff !important;
line-height: 45px !important;
font-size: 15px;
margin: 0 0;
padding: 0px 15px;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.submenu {
width: 100%;
position: relative;
top: 0;
left: 0;
-webkit-box-shadow: none;
box-shadow: none;
background-color: transparent;
visibility: visible;
opacity: 1;
display: none;
-webkit-transition: none;
transition: none;
box-shadow: none;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.submenu
li
a {
color: #fff;
padding: 0px 20px 0 40px;
line-height: 45px !important;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.submenu
li
a:hover {
background-color: transparent;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.submenu
li
.submenu
li
a {
padding: 0px 20px 0 50px;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.dd-trigger {
display: block;
position: absolute;
right: 0;
height: 45px;
width: 45px;
top: 0;
border-left: 1px solid rgba(255, 255, 255, 0.5);
z-index: 2;
background: transparent;
text-align: center;
line-height: 45px;
cursor: pointer;
color: #fff;
font-size: 20px;
}
header .header-nav .nav-container.breakpoint-on .nav-menu.menu-on {
left: 0;
}
header .header-nav .nav-container.breakpoint-on .nav-pushed-item,
header .header-nav .nav-container.breakpoint-on .navbar-close,
header .header-nav .nav-container.breakpoint-on .navbar-toggler {
display: block;
}
header .header-nav .nav-container.breakpoint-on .nav-pushed-item {
text-align: center;
margin-top: 40px;
}
header .header-nav .nav-container.breakpoint-on .nav-pushed-item .main-btn {
background-color: #fff;
color: #14212b;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-pushed-item
.main-btn::after {
background-color: #ff4a17;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-pushed-item
.main-btn:hover {
color: #fff;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-pushed-item
.menu-social-link
a {
color: #fff;
padding: 10px;
}
header .header-nav::before {
content: "";
left: 0;
top: 0;
background-color: #ff4a17;
width: 445px;
height: 100%;
position: absolute;
-webkit-clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
}
@media (max-width: 1599px) {
header .header-nav::before {
width: 265px;
-webkit-clip-path: polygon(0 0, 100% 0%, 185px 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0%, 185px 100%, 0% 100%);
}
}
@media (max-width: 1199px) {
header .header-nav::before {
width: 245px;
-webkit-clip-path: polygon(0 0, 100% 0%, 165px 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0%, 165px 100%, 0% 100%);
}
}
@media (max-width: 991px) {
header .header-nav::before {
width: 220px;
}
}
header.sticky-header.sticky-on .header-nav {
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
-webkit-animation: sticky 1.2s;
animation: sticky 1.2s;
background-color: #fff;
}
header.sticky-header.sticky-on .header-nav .nav-container .menu-items ul li a {
line-height: 100px;
}
header.sticky-header.header-two.sticky-on .header-nav {
/* background: #000f21; */
background-image: linear-gradient(120deg, #01182f 1%, #01aeb1 100%);
}
@media (max-width: 767px) {
header .header-topbar {
display: none;
}
}
header .header-topbar .header-topbar-inner {
border-bottom: 2px solid #ffffff;
padding: 15px 0;
}
@media (max-width: 767px) {
header .header-topbar .contact-info,
header .header-topbar .social-links {
text-align: center;
}
}
header .header-topbar .contact-info li,
header .header-topbar .social-links li {
display: inline-block;
}
header .header-topbar .contact-info li,
header .header-topbar .contact-info li a,
header .header-topbar .social-links li,
header .header-topbar .social-links li a {
color: #ffffff;
}
header .header-topbar .contact-info li a:hover,
header .header-topbar .social-links li a:hover {
color: #106eea;
}
header .header-topbar .contact-info li {
margin-right: 50px;
}
@media (max-width: 1199px) {
header .header-topbar .contact-info li {
margin-right: 20px;
}
}
@media (max-width: 991px) {
header .header-topbar .contact-info li {
margin-right: 10px;
font-size: 15px;
}
}
header .header-topbar .contact-info li i {
margin-right: 15px;
color: #c3d5ed;
}
header .header-topbar .social-links li {
margin-left: 15px;
font-size: 15px;
}
header.header-two {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: auto;
z-index: 999;
}
header.header-two .header-nav {
background-color: transparent;
}
header.header-two .header-nav::before {
display: none;
}
header.header-two .header-nav .nav-container .menu-items ul li a,
header.header-two
.header-nav
.nav-container
.menu-items
ul
li.has-submemu::after {
color: #fff;
}
header.header-two .header-nav .nav-container .menu-items ul li a:hover {
color: #03228f;
}
header.header-two
.header-nav
.nav-container
.menu-items
ul
li
.submenu
li
a:hover {
background-color: #14212b;
}
header.header-two .header-topbar .contact-info li,
header.header-two .header-topbar .contact-info li a,
header.header-two .header-topbar .social-links li,
header.header-two .header-topbar .social-links li a {
color: #ffffff;
}
header.header-two .header-topbar .contact-info li a:hover,
header.header-two .header-topbar .social-links li a:hover {
color: #106eea;
}
header.header-two .header-topbar .social-links li a {
color: #ffffff;
}
header.header-three {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: auto;
z-index: 999;
}
@media (min-width: 1800px) {
header.header-three .container-fluid {
max-width: 1780px;
}
}
header.header-three .header-nav {
background-color: transparent;
}
header.header-three .header-nav::before {
display: none;
}
/*======= Off Canvas =======*/
.offcanvas-wrapper {
position: fixed;
width: 450px;
top: 0;
min-height: 100vh;
right: -450px;
-webkit-transition: all 0.4s;
transition: all 0.4s;
z-index: 999;
opacity: 0;
visibility: hidden;
}
.offcanvas-wrapper.show-offcanvas {
right: -10px;
visibility: visible;
opacity: 1;
}
.offcanvas-wrapper .offcanvas-overly {
position: fixed;
height: 100vh;
width: 100%;
z-index: 98;
background-color: #1e1e1e;
left: 0;
top: 0;
-webkit-transition: all 0.4s;
transition: all 0.4s;
cursor: pointer;
opacity: 0;
visibility: hidden;
}
.offcanvas-wrapper .offcanvas-overly.show-overly {
visibility: visible;
opacity: 0.5;
}
.offcanvas-wrapper .offcanvas-widget {
background-image: linear-gradient(-170deg, #01182f 10%, #01aeb1 100%);
width: 100%;
height: 100vh;
padding: 70px 40px;
position: relative;
z-index: 99;
overflow-x: hidden;
overflow-y: scroll;
}
.offcanvas-wrapper .offcanvas-widget a.offcanvas-close {
position: absolute;
right: 30px;
top: 30px;
font-size: 28px;
color: #fff;
}
.offcanvas-wrapper .offcanvas-widget .widget {
margin-bottom: 40px;
font-size: 16px;
text-align: justify;
}
.offcanvas-wrapper .offcanvas-widget .widget .widget-title {
font-size: 22px;
margin-bottom: 20px;
padding-bottom: 15px;
position: relative;
}
.offcanvas-wrapper .offcanvas-widget .widget .widget-title::before,
.offcanvas-wrapper .offcanvas-widget .widget .widget-title::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 2px;
width: 10px;
background-color: #fff;
}
.offcanvas-wrapper .offcanvas-widget .widget .widget-title::after {
width: 30px;
left: 15px;
}
.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li {
display: inline-block;
margin-right: 15px;
}
.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li a {
height: 35px;
width: 35px;
line-height: 35px;
text-align: center;
border-radius: 50%;
font-size: 15px;
padding: 10px 13px;
background-color: #fff;
color: #03305c;
}
.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li a:hover {
background-image: linear-gradient(140deg, #03305c 0%, #00adb0 100%);
color: #fff;
}
.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li:not(:last-child),
.offcanvas-wrapper
.offcanvas-widget
.widget.contact-info-widget
li:not(:last-child) {
margin-bottom: 10px;
}
.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li i,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li i {
color: #fff;
position: relative;
top: 2px;
margin-right: 10px;
font-size: 18px;
}
.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li a,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li a {
color: #616161;
}
.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li a span,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li a span {
font-weight: 600;
}
/* ------------------------------------
04. About Section CSS
---------------------------------------*/
.rs-about .rs-animation-shape {
position: relative;
z-index: 1;
}
.rs-about .rs-animation-shape .pattern {
position: absolute;
top: 22px;
}
.rs-about .rs-animation-shape .middle {
position: absolute;
left: -165px;
top: -56px;
z-index: -1;
}
.rs-about .rs-animation-shape .bottom-shape {
position: absolute;
left: -165px;
top: 395px;
z-index: -1;
}
.rs-about .rs-animation-shape .middle-image2 {
position: absolute;
top: -80px;
left: -25px;
z-index: -1;
}
.rs-about .shape-image {
position: relative;
}
.rs-about .shape-image .top {
position: absolute;
right: 51%;
top: -125px;
}
.rs-about .shape-image .bottom {
position: absolute;
right: 0;
top: 145px;
}
.rs-about.style2 {
background-color: #f6f7f9;
border-radius: 0px 270px 0px 0px;
position: relative;
}
.rs-about.style2 .image-part {
position: absolute;
left: 35px;
}
.rs-about.style2 .image-part img {
max-width: 50%;
}
.rs-about.style2.modify1 {
background-color: unset;
border-radius: unset;
position: unset;
}
.rs-about.style2.modify1 .images {
left: unset;
position: unset;
}
.rs-about.style2.modify1 .images img {
max-width: 600px;
}
.rs-about.style2.modify2 {
border-radius: unset;
position: relative;
}
.rs-about.style2.modify2 .about-img img {
max-width: 690px;
}
.rs-about.style3 {
position: relative;
}
.rs-about.style3 .rs-animation-image .pattern-img {
text-align: center;
z-index: -1;
}
.rs-about.style3 .rs-animation-image .middle-img {
position: absolute;
left: 90px;
top: -20px;
}
.rs-about.style4 .about-content .logo-img {
margin-bottom: 15px;
}
.rs-about.style4 .about-content .logo-img img {
width: 71px;
}
.rs-about.style4 .about-content .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #102b3e;
margin-bottom: 30px;
padding-right: 24px;
}
.rs-about.style4 .about-content .title span {
color: #f9780f;
}
.rs-about.style4 .about-content p {
padding-right: 121px;
margin-bottom: 40px;
}
.rs-about .software-img img {
max-width: 600px;
}
/* ------------------------------------
05. Slider Section CSS
---------------------------------------*/
.rs-slider.style1 .slider-content {
padding: 260px 0 260px;
}
.rs-slider.style1 .slider-content .sl-sub-title {
font-size: 40px;
line-height: 45px;
font-weight: 600;
color: #ffffff;
margin-bottom: 25px;
}
.rs-slider.style1 .slider-content .sl-title {
font-size: 100px;
line-height: 84px;
font-weight: 700;
color: #ffffff;
margin-bottom: 40px;
}
.rs-slider.style1 .slider-content .sl-desc {
font-size: 20px;
line-height: 28px;
font-weight: 500;
color: #ffffff;
margin-bottom: 40px;
}
.rs-slider.style1 .slider-content .slider-btn li {
display: inline-block;
margin-right: 30px;
}
.rs-slider.style1 .slider-content .slider-btn li:last-child {
margin-right: 0;
}
.rs-slider.style1 .slider-content.slide1 {
/* background: url(../images/Digimerlin-1.png); */
background-image: linear-gradient(120deg, #01182f 1%, #01aeb1 100%);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 260px 0 270px;
border-radius: 0px 0px 999px 0px;
}
.rs-slider.style1 .slider-content.slide2 {
/* background: url(../images/Digimerlin-2.png); */
background-image: linear-gradient(120deg, #01182f 1%, #01aeb1 100%);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 0px 0px 999px 0px;
}
.rs-slider.style1 .owl-nav .owl-next,
.rs-slider.style1 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 60px;
height: 60px;
line-height: 60px;
border-radius: 50%;
background: #ffffff;
text-align: center;
color: #101010;
transition: all 0.5s;
transition-delay: 0.7s;
opacity: 0;
visibility: hidden;
}
.rs-slider.style1 .owl-nav .owl-next i:before,
.rs-slider.style1 .owl-nav .owl-prev i:before {
content: "\f112";
font-family: Flaticon;
}
.rs-slider.style1 .owl-nav .owl-next:hover,
.rs-slider.style1 .owl-nav .owl-prev:hover {
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
color: #ffffff;
}
.rs-slider.style1 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.style1 .owl-nav .owl-next i:before {
content: "\f113";
}
.rs-slider.style1:hover .owl-nav .owl-next,
.rs-slider.style1:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.style1:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
.rs-slider.style2 .slider-content {
padding: 140px 0 200px;
}
.rs-slider.style2 .slider-content .sl-img {
margin-bottom: 20px;
}
.rs-slider.style2 .slider-content .sl-img img {
width: 90px;
height: 90px;
}
.rs-slider.style2 .slider-content .sl-title {
font-size: 78px;
line-height: 80px;
font-weight: 700;
color: #ffffff;
letter-spacing: 4px;
margin-bottom: 20px;
}
.rs-slider.style2 .slider-content .sl-title2 {
font-size: 73px;
line-height: 80px;
font-weight: 900;
color: #ffffff;
margin-bottom: 30px;
}
.rs-slider.style2 .slider-content .sl-desc {
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #ffffff;
max-width: 600px;
margin-bottom: 20px;
}
.rs-slider.style2 .slider-content.slide1 {
background: url(assets/images/slider/style2/2.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.style2 .slider-content.slide2 {
background: url(assets/images/slider/style2/1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.style2 .owl-nav .owl-next,
.rs-slider.style2 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 60px;
height: 60px;
line-height: 60px;
border-radius: 50%;
background: #ffffff;
text-align: center;
color: #101010;
transition: all 0.5s;
transition-delay: 0.7s;
opacity: 0;
visibility: hidden;
}
.rs-slider.style2 .owl-nav .owl-next i:before,
.rs-slider.style2 .owl-nav .owl-prev i:before {
content: "\f112";
font-family: Flaticon;
}
.rs-slider.style2 .owl-nav .owl-next:hover,
.rs-slider.style2 .owl-nav .owl-prev:hover {
background: #106eea;
color: #ffffff;
}
.rs-slider.style2 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.style2 .owl-nav .owl-next i:before {
content: "\f113";
}
.rs-slider.style2:hover .owl-nav .owl-next,
.rs-slider.style2:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.style2:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
/* ------------------------------------
06. Contact Section CSS
---------------------------------------*/
.rs-contact .contact-wrap {
background: #ffffff;
padding: 25px 40px 50px;
border-radius: 10px 10px 10px 10px;
}
.rs-contact .contact-wrap .content-part {
text-align: center;
}
.rs-contact .contact-wrap .content-part .title {
font-size: 24px;
line-height: 40px;
font-weight: 700;
color: #0a0a0a;
margin: 0;
}
.rs-contact .contact-wrap .content-part .desc {
margin: 0;
}
.rs-contact .contact-wrap .from-control {
padding: 12px 16px 12px 16px;
border-radius: 5px 5px 5px 5px;
border-style: solid;
border-color: #02010100;
background-color: #f6f7f9;
color: #454545;
width: 100%;
opacity: 4;
}
.rs-contact .contact-wrap ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-contact .contact-wrap ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-contact .contact-wrap :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-contact .contact-wrap :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
.rs-contact .contact-box {
background-image: linear-gradient(0deg, #01182f 0%, #00adb0 100%);
padding: 80px 30px 80px 30px;
border-radius: 5px 5px 5px 5px;
}
.rs-contact .contact-box .address-box {
display: flex;
}
.rs-contact .contact-box .address-box .address-icon {
background-image: linear-gradient(275deg, #ffffff 0%, #fcfcff 100%);
min-width: 48px;
height: 48px;
line-height: 48px;
text-align: center;
width: 40px;
border-radius: 50%;
margin-right: 23px;
}
.rs-contact .contact-box .address-box .address-icon i {
font-size: 20px;
line-height: 20px;
color: #024067;
}
.rs-contact .contact-box .address-box .address-text .label {
font-size: 16px;
font-weight: 600;
color: #ffffff;
display: block;
margin-bottom: 5px;
}
.rs-contact .contact-box .address-box .address-text a {
color: #ffffff;
}
.rs-contact .contact-box .address-box .address-text a:hover {
color: #ccc;
}
.rs-contact .contact-box .address-box .address-text .desc {
color: #ffffff;
}
.rs-contact .contact-box.onepage-box {
background-image: linear-gradient(220deg, #f27c1e 0%, #dd4c23 79%);
}
.rs-contact .contact-box.onepage-box .address-box .address-icon {
background: white-color;
}
.rs-contact .contact-box.onepage-box .address-box .address-icon i {
color: #f2541b;
}
.rs-contact .contact-widget .from-control {
padding: 20px 20px 20px 20px;
border-radius: 5px 5px 5px 5px;
border-style: solid;
border-width: 0px 0px 0px 0px;
background-color: #f6f7f9;
width: 100%;
max-width: 100%;
border-bottom: 1px solid #00adb0;
}
.rs-contact .contact-widget textarea {
height: 120px;
}
.rs-contact .contact-widget ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-contact .contact-widget ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-contact .contact-widget :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-contact .contact-widget :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
.rs-contact .contact-widget.onepage-style .from-control {
background: #fff;
}
.rs-contact .map-canvas {
overflow: hidden;
}
.rs-contact .map-canvas iframe {
float: left;
width: 100%;
height: 620px;
border: unset;
}
.rs-contact.style2 .contact-box-wrap {
background-image: linear-gradient(270deg, #4e95ed 0%, #03228f 100%);
border-radius: 5px 5px 5px 5px;
padding: 90px 60px 60px 60px;
}
.rs-contact.style2 .contact-box-wrap .from-control {
padding: 16px 16px 16px 16px;
border-radius: 5px 5px 5px 5px;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #f1f5fb;
width: 100%;
max-width: 100%;
}
.rs-contact.style2 .contact-box-wrap textarea {
height: 120px;
}
.rs-contact.style2 .contact-box-wrap ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-contact.style2 .contact-box-wrap ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-contact.style2 .contact-box-wrap :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-contact.style2 .contact-box-wrap :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
.rs-contact.negative-margin {
margin-top: -315px;
}
/* ------------------------------------
14. Counter Section CSS
---------------------------------------*/
.rs-counter {
margin-top: -78px;
position: absolute;
min-width: 860px;
right: 100px;
}
.rs-counter .counter-top-area .counter-list .counter-text .count-number {
margin-bottom: 7px;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #03305c;
font-size: 48px;
font-weight: 900;
position: relative;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus {
padding-right: 30px !important;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus:before {
content: "+";
position: absolute;
right: 0;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k {
padding-right: 30px !important;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k:before {
content: "k";
position: absolute;
right: 0;
}
.rs-counter .counter-top-area .counter-list .counter-text .title {
font-size: 19px;
line-height: 29px;
color: #333333;
font-weight: 600;
margin: 0;
}
.rs-counter.style2 {
margin-top: unset;
position: unset;
min-width: unset;
right: unset;
}
.rs-counter.style2 .counter-top-area .counter-list {
display: flex;
align-items: center;
}
.rs-counter.style2 .counter-top-area .counter-list .count-icon {
width: 80px;
display: inline-block;
padding-right: 15px;
}
.rs-counter.style2 .counter-top-area .counter-list .counter-text .count-number {
margin-bottom: 7px;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #ffffff;
font-size: 53px;
font-weight: 700;
-webkit-text-fill-color: #042ba1;
-webkit-text-stroke-width: 1px;
position: relative;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus {
padding-right: 22px;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus:before {
content: "+";
position: absolute;
right: 0;
top: 25px;
font-size: 35px;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k {
padding-right: 22px;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k:before {
content: "k";
position: absolute;
right: 0;
top: 25px;
font-size: 35px;
}
.rs-counter.style2 .counter-top-area .counter-list .counter-text .title {
color: #ffffff;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
margin: 0;
}
.rs-counter.style3 {
margin-top: unset;
position: unset;
min-width: unset;
right: unset;
}
.rs-counter.style3
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #03228f;
font-size: 45px;
font-weight: 700;
padding: 0px 0px 0px 0px;
}
.rs-counter.style3
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.orange-color {
color: #dd4c23;
}
.rs-counter.style3 .counter-top-area .counter-list .counter-text .title {
font-size: 18px;
font-weight: 600;
color: #101010;
}
.rs-counter.style3.modify1 {
background-image: linear-gradient(180deg, #03228f 0%, #4e95ed 100%);
}
.rs-counter.style3.modify1 .counter-top-area {
text-align: center;
}
.rs-counter.style3.modify1
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #ffffff;
}
.rs-counter.style3.modify1
.counter-top-area
.counter-list
.counter-text
.count-number
.prefix {
font-size: 16px;
color: #ffffff;
font-weight: 700;
}
.rs-counter.style3.modify1
.counter-top-area
.counter-list
.counter-text
.title {
color: #ffffff;
}
.rs-counter.style3.modify2 .counter-top-area {
text-align: center;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number {
padding: 0px 0px 10px 0px;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.purple-color {
color: #7d88fc;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.blue-color {
color: #0073ff;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.pink-color {
color: #f1491a;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.paste-color {
color: #39ebe6;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.title {
color: #454545;
font-size: 20px;
font-weight: 600;
}
.rs-counter.style4 {
margin-top: -130px;
position: unset;
min-width: unset;
right: unset;
}
.rs-counter.style4 .counter-top-area {
text-align: center;
}
.rs-counter.style4 .counter-top-area .counter-list .counter-text .count-number {
margin-bottom: 7px;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #fff;
font-size: 52px;
font-weight: 700;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus {
padding-right: 30px !important;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus:before {
content: "+";
position: absolute;
right: 0;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k {
padding-right: 30px !important;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k:before {
content: "k";
position: absolute;
right: 0;
}
.rs-counter.style4 .counter-top-area .counter-list .counter-text .title {
color: #fff;
font-size: 20px;
font-weight: 400;
}
/* ------------------------------------
07. Skill-bar Section CSS
---------------------------------------*/
.rs-skillbar.style1 .cl-skill-bar .skillbar-title {
font-weight: 500;
font-size: 14px;
color: #212121;
}
.rs-skillbar.style1 .cl-skill-bar .skillbar {
background: #eeeeee;
height: 7px;
margin: 10px 0 24px;
position: relative;
width: 100%;
}
.rs-skillbar.style1 .cl-skill-bar .skillbar .skillbar-bar {
background: #106eea;
width: 0;
margin-bottom: 0;
height: 7px;
line-height: 7px;
background-color: transparent;
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
background-size: 1rem 1rem;
}
.rs-skillbar.style1 .cl-skill-bar .skillbar .skill-bar-percent {
height: 30px;
line-height: 30px;
position: absolute;
right: 0;
top: -38px;
font-size: 16px;
font-weight: 700;
color: #0a0a0a;
}
.rs-skillbar.style1.modify1 .cl-skill-bar .skillbar-title {
text-transform: uppercase;
}
.rs-skillbar.style1.modify1 .cl-skill-bar .skillbar {
background-color: #dfedfe;
}
.rs-skillbar.style1.modify1 .cl-skill-bar .skillbar .skillbar-bar {
background: #03228f;
}
.rs-skillbar.style1.modify1 .cl-skill-bar .skillbar .skill-bar-percent {
height: 30px;
line-height: 30px;
position: absolute;
right: 0;
top: -38px;
font-size: 16px;
font-weight: 700;
color: #0a0a0a;
}
.rs-skillbar.style1.modify1
.cl-skill-bar
.skillbar
.skill-bar-percent.white-color {
color: #fff;
}
.rs-skillbar.style1.modify2 .cl-skill-bar .skillbar-title {
text-transform: uppercase;
}
.rs-skillbar.style1.modify2 .cl-skill-bar .skillbar {
background: #fff;
border: 1px solid #0b70e1;
height: 9px;
border-radius: 0;
overflow: visible;
padding: 1px;
}
.rs-skillbar.style1.modify2 .cl-skill-bar .skillbar .skillbar-bar {
background: #007bff;
background-image: linear-gradient(250deg, #0b70e1 19%, #03228f 100%);
height: 5px;
}
.rs-skillbar.style1.modify2 .cl-skill-bar .skillbar .skill-bar-percent {
right: 70px;
color: #454545;
font-weight: 400;
}
.rs-skillbar.style1.modify3 {
padding: 0 120px 0 0;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar {
height: 8px;
line-height: 8px;
padding: 1px 1px 1px 1px;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #ff571c;
background-color: #bf1f1f00;
border-radius: 3px 3px 3px 3px;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar .skillbar-bar {
height: 100%;
background: #ff571c;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar .skill-bar-percent {
right: 70px;
color: #454545;
font-weight: 400;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar.purple-style {
border-color: #7e06e4;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar.purple-style .skillbar-bar {
background: #7e06e4;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar.blue-style {
border-color: #0073ff;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar.blue-style .skillbar-bar {
background: #0073ff;
}
.rs-skillbar.style1.home4 .skillbar .skillbar-bar {
background-color: #fd6509;
background-image: linear-gradient(
45deg,
rgba(255, 255, 255, 0.15) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, 0.15) 50%,
rgba(255, 255, 255, 0.15) 75%,
transparent 75%,
transparent
);
}
.rs-skillbar.style1.home4 .skillbar .skillbar-bar.paste-bg {
background-color: #03dea8;
}
.rs-skillbar.style1.home4 .skillbar .skillbar-bar.blue-bg {
background-color: #0a99fd;
}
.rs-skillbar.style1.home4 .skillbar .skillbar-bar.pink-bg {
background-color: #f00674;
}
/* ------------------------------------
08. Services Section CSS
---------------------------------------*/
.rs-services.main-home .services-item {
margin: 0px 20px 0px 20px;
padding: 60px 25px 50px 35px;
background-color: #ffffff;
border-radius: 10px 10px 10px 10px;
}
.rs-services.main-home .services-item .services-icon {
margin-bottom: 30px;
}
.rs-services.main-home .services-item .services-icon .image-part img {
width: 80px;
height: 80px;
}
.rs-services.main-home
.services-item
.services-content
.services-text
.services-title {
font-size: 22px;
font-weight: 600;
line-height: 30px;
margin-bottom: 10px;
}
.rs-services.main-home
.services-item
.services-content
.services-text
.services-title
a {
color: #101010;
}
.rs-services.main-home
.services-item
.services-content
.services-text
.services-title
a:hover {
color: #106eea;
}
.rs-services.main-home .services-item .services-content .services-desc p {
color: #444;
margin: 0;
text-align: justify;
}
.rs-services.main-home.style1 {
position: relative;
z-index: 111;
margin-top: -200px;
}
.rs-services.main-home.style1 .services-item {
text-align: center;
background-color: #ffffff;
border-radius: 10px 10px 10px 10px;
box-shadow: 0px 0px 48px 0px rgba(162, 162, 162, 0.5);
margin: 0px -10px 0px 0px;
padding: 40px;
}
.rs-services.main-home.style1 .services-item .services-icon {
margin-bottom: 15px;
}
.rs-services.main-home.style1 .services-item .services-icon .image-part img {
width: 80px;
height: 80px;
}
.rs-services.main-home.style1
.services-item
.services-content
.services-text
.services-title {
margin-bottom: 5px;
}
/* ------------------------------------
09. Process Section CSS
---------------------------------------*/
.rs-process.modify1 {
background-image: linear-gradient(120deg, #01182f 10%, #01aeb1 100%);
border-radius: 230px 0px 230px 0px;
}
.rs-process.modify1 .rs-addon-number .number-text {
margin: 0px 25px 0px 30px;
padding: 0px 48px 11px 48px;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
border-radius: 10px 10px 50px 10px;
position: relative;
width: 65%;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area {
font-size: 41px;
font-weight: 600;
line-height: 62px;
position: relative;
color: #03305c;
display: inline-block;
width: 70px;
height: 70px;
left: -70px;
top: -30px;
text-align: center;
background: #fff;
transition: all 0.3s ease 0s;
border-radius: 50%;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.green-bg {
background: #3bcd4c;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.plum-bg {
background: #9439e9;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.pink-bg {
background: #f30876;
}
.rs-process.modify1 .rs-addon-number .number-text .number-title .title {
color: #ffffff;
margin-bottom: 15px;
margin-top: -30px;
}
.rs-process.modify1 .rs-addon-number .number-text .number-txt {
color: #ffffff;
margin-bottom: 40px;
padding-right: 0;
}
.rs-process .shape-animation {
position: relative;
}
.rs-process .shape-animation .shape-process {
position: absolute;
left: 180px;
top: 50px;
}
.rs-process .shape-animation .shape-process .pulse {
margin-top: 60px;
margin-left: 60px;
animation: pulse-border 2000ms ease-out infinite;
}
/*------------------------------------
10. Pricing Section CSS
------------------------------------*/
.rs-pricing {
margin-top: -150px;
position: relative;
}
.rs-pricing .pricing-table {
padding: 27px 40px 0px 40px;
box-shadow: 0 0 30px #eee;
background: #ffffff;
border-radius: 10px 10px 10px 10px;
position: relative;
text-align: center;
margin: 0px 7px 0px 0px;
}
.rs-pricing .pricing-table .pricing-badge {
top: 30px;
left: 0px;
padding: 10px 23px 11px 23px;
background-color: #1273eb;
border-radius: 0px 30px 30px 0px;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
position: absolute;
color: #fff;
line-height: 1;
z-index: 1;
}
.rs-pricing .pricing-table .pricing-badge.white-color-bg {
background: #ffffff;
color: #106eea;
}
.rs-pricing .pricing-table .pricing-badge.secondary-bg {
background: #03228f;
}
.rs-pricing .pricing-table .pricing-icon {
margin-bottom: 60px;
}
.rs-pricing .pricing-table .pricing-icon img {
width: 110px;
}
.rs-pricing .pricing-table .pricing-table-price {
margin-bottom: 30px;
}
.rs-pricing
.pricing-table
.pricing-table-price
.pricing-table-bags
.pricing-currency {
font-size: 25px;
font-weight: 600;
color: #101010;
}
.rs-pricing
.pricing-table
.pricing-table-price
.pricing-table-bags
.table-price-text {
font-size: 52px;
font-weight: 600;
color: #101010;
}
.rs-pricing
.pricing-table
.pricing-table-price
.pricing-table-bags
.table-period {
color: #435761;
font-size: 16px;
font-weight: 500;
display: block;
}
.rs-pricing .pricing-table .pricing-table-body {
margin-bottom: 10px;
border-style: solid;
border-width: 1px 0px 0px 0px;
border-color: #ebebeb;
padding: 18px 15px 4px 15px;
}
.rs-pricing .pricing-table .pricing-table-body li {
text-align: left;
padding: 9px 0px 9px 0px;
margin-bottom: 0px;
font-size: 15px;
font-weight: 400;
}
.rs-pricing .pricing-table .pricing-table-body li i {
float: right;
margin-right: 0;
color: #106eea;
}
.rs-pricing .pricing-table.primary-bg {
background-image: linear-gradient(70deg, #0b70e1 0%, #03228f 100%);
}
.rs-pricing
.pricing-table.primary-bg
.pricing-table-price
.pricing-table-bags
.pricing-currency {
color: #ffffff;
}
.rs-pricing
.pricing-table.primary-bg
.pricing-table-price
.pricing-table-bags
.table-price-text {
color: #ffffff;
}
.rs-pricing
.pricing-table.primary-bg
.pricing-table-price
.pricing-table-bags
.table-period {
color: #ffffff;
}
.rs-pricing .pricing-table.primary-bg .pricing-table-body {
border-color: #1f71c1;
}
.rs-pricing .pricing-table.primary-bg .pricing-table-body li {
color: #ffffff;
}
.rs-pricing .pricing-table.primary-bg .pricing-table-body li i {
color: #ffffff;
}
.rs-pricing .pricing-table.light-gray-bg {
background-color: #f3f7ff;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #ebebeb;
border-radius: 5px 5px 5px 5px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
}
.rs-pricing
.pricing-table.light-gray-bg
.pricing-table-price
.pricing-table-bags
.pricing-currency {
color: #03228f;
}
.rs-pricing
.pricing-table.light-gray-bg
.pricing-table-price
.pricing-table-bags
.table-price-text {
color: #03228f;
}
.rs-pricing .pricing-table.light-gray-bg .pricing-table-body li i {
color: #101010;
}
.rs-pricing .pricing-table.new-style {
box-shadow: unset;
background: unset;
border-style: solid;
border-color: #ebebeb;
border-width: 1px 1px 1px 1px;
}
.rs-pricing .pricing-table.new-style2 {
background: unset;
border-style: solid;
border-color: #ebebeb;
border-width: 1px 1px 1px 1px;
}
.rs-pricing.style2 {
margin-top: unset;
position: unset;
}
.rs-pricing.style2.modify1 .pricing-table .pricing-table-body li i {
color: #03228f;
}
.rs-pricing.style2.modify1 {
background-color: unset;
}
/*------------------------------------
11. Blog Section CSS
------------------------------------*/
.rs-blog .blog-item {
transition: all 500ms ease;
border-radius: 5px;
box-shadow: 0 6px 25px rgba(12, 89, 219, 0.09);
margin-top: 15px;
padding: 15px;
background: #fff;
}
.rs-blog .blog-item .image-wrap {
position: relative;
}
.rs-blog .blog-item .image-wrap .post-categories {
position: absolute;
z-index: 11;
bottom: 20px;
right: 20px;
z-index: 10;
}
.rs-blog .blog-item .image-wrap .post-categories li {
display: inline-block;
}
.rs-blog .blog-item .image-wrap .post-categories li a {
border-radius: 30px;
color: #ffffff;
background: #03228f;
background: -moz-linear-gradient(
left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
background: -webkit-linear-gradient(
left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
background: linear-gradient(
to right,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#03228f', endColorstr='#0b70e1', GradientType=1);
transition: 0.4s;
font-size: 14px;
font-weight: 500;
padding: 6px 20px;
display: block;
}
.rs-blog .blog-item .image-wrap .post-categories li a:hover {
background: linear-gradient(
to left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
}
.rs-blog .blog-item .blog-content {
padding: 30px 15px 18px 15px;
background: #fff;
}
.rs-blog .blog-item .blog-content .blog-meta {
margin-bottom: 10px;
display: flex;
}
.rs-blog .blog-item .blog-content .blog-meta .date {
font-size: 14px;
color: #454545;
}
.rs-blog .blog-item .blog-content .blog-meta .date i {
color: #106eea;
padding-right: 5px;
}
.rs-blog .blog-item .blog-content .blog-meta .admin {
font-size: 15px;
font-weight: 500;
color: #454545;
margin-left: 25px;
}
.rs-blog .blog-item .blog-content .blog-meta .admin i {
color: #106eea;
padding-right: 5px;
}
.rs-blog .blog-item .blog-content .blog-title {
font-weight: 600;
font-size: 20px;
margin-bottom: 12px;
line-height: 1.4;
}
.rs-blog .blog-item .blog-content .blog-title a {
color: #101010;
}
.rs-blog .blog-item .blog-content .blog-title a:hover {
color: #106eea;
}
.rs-blog .blog-item .blog-content .desc {
margin-bottom: 15px;
}
.rs-blog .owl-stage-outer {
padding-bottom: 10px;
margin-top: -10px;
}
.rs-blog .blog-item:hover {
transform: translateY(-10px);
}
.rs-blog.style2 .blog-item {
transition: all 500ms ease;
border-radius: 5px;
box-shadow: 0 6px 25px rgba(12, 89, 219, 0.09);
margin-top: 15px;
padding: 15px;
}
.rs-blog.style2 .blog-item .image-wrap .post-categories li a {
border-radius: 8px 8px 8px 8px;
background-image: linear-gradient(150deg, #da4511 0%, #e7b723 100%);
}
.rs-blog.style2 .blog-item .blog-content {
padding: 30px 15px 18px 15px;
background: #fff;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta .date {
font-size: 14px;
color: #454545;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta .date i {
color: #106eea;
padding-right: 5px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta .admin {
font-size: 15px;
font-weight: 500;
color: #454545;
margin-left: 25px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta .admin i {
color: #106eea;
padding-right: 5px;
}
.rs-blog.style2 .blog-item .blog-content .blog-title a {
color: #101010;
}
.rs-blog.style2 .blog-item .blog-content .blog-title a:hover {
color: #ff5600;
}
.rs-inner-blog .blog-item {
background: #fff;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
border-radius: 15px;
padding: 15px;
transition: 0.3s;
}
.rs-inner-blog .blog-item .blog-img {
position: relative;
}
.rs-inner-blog .blog-item .blog-img a img {
border-radius: 10px;
}
.rs-inner-blog .blog-item .blog-img .post-categories {
position: absolute;
z-index: 11;
bottom: 20px;
right: 20px;
z-index: 10;
}
.rs-inner-blog .blog-item .blog-img .post-categories li {
display: inline-block;
}
.rs-inner-blog .blog-item .blog-img .post-categories li a {
border-radius: 30px;
color: #ffffff;
background: #03228f;
background: -moz-linear-gradient(
left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
background: -webkit-linear-gradient(
left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
background: linear-gradient(
to right,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#03228f', endColorstr='#0b70e1', GradientType=1);
transition: 0.4s;
font-size: 14px;
font-weight: 500;
padding: 6px 20px;
display: block;
}
.rs-inner-blog .blog-item .blog-img .post-categories li a:hover {
background: linear-gradient(
to left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
}
.rs-inner-blog .blog-item .blog-content {
padding: 25px 15px 25px;
overflow: hidden;
}
.rs-inner-blog .blog-item .blog-content .blog-title {
margin: 4px 0 10px;
font-size: 26px;
line-height: 35px;
font-weight: 700;
}
.rs-inner-blog .blog-item .blog-content .blog-title a {
color: #0a0a0a;
}
.rs-inner-blog .blog-item .blog-content .blog-title a:hover {
color: #106eea;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate {
overflow: hidden;
margin: 0 0 5px;
padding: 0 0 12px;
font-size: 13px;
display: flex;
align-items: center;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li {
margin-right: 15px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date {
display: inline-block;
font-weight: 400;
font-size: 13px;
color: #999;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date i {
color: #0b70e1;
margin-right: 3px;
font-size: 14px;
font-weight: 600;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author {
display: inline-block;
padding: 0;
margin-right: 0;
line-height: normal;
color: #999;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author i {
color: #0b70e1;
margin-right: 3px;
font-size: 14px;
font-weight: 600;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li:last-child {
margin-right: 0;
}
.rs-inner-blog .blog-item .blog-content .blog-desc {
font-size: 15px;
line-height: 27px;
font-weight: 400;
color: #454545;
margin-bottom: 20px;
}
.rs-inner-blog .widget-area .widget-title .title {
color: #101010;
font-size: 20px;
line-height: 26px;
font-weight: 600;
position: relative;
z-index: 1;
padding-bottom: 12px;
margin: 0;
}
.rs-inner-blog .widget-area .widget-title .title:before {
content: "";
position: absolute;
border: 0;
width: 50px;
height: 2px;
background: #106eea;
z-index: 1;
margin-left: 0;
bottom: 0;
left: 0;
}
.rs-inner-blog .widget-area .search-widget {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
border-radius: 10px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap {
position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap [type="search"] {
border: 1px solid #ddd;
color: #444444;
padding: 12px 17px;
width: 100%;
border-radius: 5px;
position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button {
background: transparent;
border: medium none;
color: #454545;
padding: 11px 15px 12px;
position: absolute;
display: block;
right: 0px;
top: 0;
z-index: 10;
font-size: 20px;
border-radius: 0 5px 5px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button i:before {
font-weight: 600;
font-size: 18px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button:hover {
color: #106eea;
}
.rs-inner-blog .widget-area .recent-posts {
background: #fff;
padding: 40px 30px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
border-radius: 10px;
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget .post-img {
width: 100px;
float: left;
padding-right: 15px;
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget .post-desc {
display: block;
font-size: 12px;
color: #888;
overflow: hidden;
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget .post-desc a {
font-size: 15px;
line-height: 22px;
font-weight: 500;
color: #0a0a0a;
display: block;
}
.rs-inner-blog
.widget-area
.recent-posts
.recent-post-widget
.post-desc
a:hover {
color: #106eea;
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget .post-desc .date {
display: block;
}
.rs-inner-blog
.widget-area
.recent-posts
.recent-post-widget
.post-desc
.date
i {
margin-right: 5px;
}
.rs-inner-blog
.widget-area
.recent-posts
.recent-post-widget
.post-desc
.date
i:before {
font-size: 12px;
}
.rs-inner-blog .widget-area .categories {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
border-radius: 10px;
}
.rs-inner-blog .widget-area .categories li {
margin-top: 13px;
padding-top: 13px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.rs-inner-blog .widget-area .categories li a {
font-size: 15px;
font-weight: 500;
color: #101010;
}
.rs-inner-blog .widget-area .categories li a:hover {
color: #106eea;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta {
display: flex;
align-items: center;
padding: 0 0 30px;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta li .p-date {
color: #555;
font-size: 14px;
margin-right: 8px;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta li .p-date i {
font-size: 13px;
margin-right: 3px;
color: #0b70e1;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta li .p-date i:before {
margin-right: 5px;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta .Post-cate {
list-style: none;
display: inline-block;
padding-right: 10px;
color: #555;
font-size: 14px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.Post-cate
.tag-line
i {
color: #0b70e1;
margin-right: 3px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.Post-cate
.tag-line
i:before {
margin-right: 4px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.Post-cate
.tag-line
a {
font-weight: 400;
color: #555;
font-size: 14px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.Post-cate
.tag-line
a:hover {
color: #106eea;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta .post-comment {
color: #555;
font-size: 14px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.post-comment
i:before {
color: #0b70e1;
}
.rs-inner-blog .blog-details .blog-full .comment-title {
font-size: 24px;
margin-bottom: 40px;
margin-top: 35px;
}
.rs-inner-blog .blog-details .blog-full .comment-body {
display: flex;
border-bottom: 1px solid #ddd;
padding-bottom: 30px;
margin-bottom: 25px;
}
.rs-inner-blog .blog-details .blog-full .comment-body .rstheme-logo {
margin-right: 28px;
}
.rs-inner-blog .blog-details .blog-full .comment-body .rstheme-logo img {
border-radius: 50%;
max-width: unset;
}
.rs-inner-blog .blog-details .blog-full .comment-body .comment-meta span {
display: block;
}
.rs-inner-blog .blog-details .blog-full .comment-body .comment-meta span a {
color: #0a0a0a;
font-weight: 700;
line-height: 22px;
}
.rs-inner-blog .blog-details .blog-full .comment-body .comment-meta a {
font-size: 14px;
color: #909090;
}
.rs-inner-blog .blog-details .blog-full .comment-note .from-control {
width: 100%;
padding: 15px 20px;
background-color: #f6f7f9;
border: none;
border-radius: 5px;
}
.rs-inner-blog .blog-details .blog-full .comment-note textarea {
height: 160px;
}
.rs-inner-blog
.blog-details
.blog-full
.comment-note
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-inner-blog .blog-details .blog-full .comment-note ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-inner-blog .blog-details .blog-full .comment-note :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-inner-blog .blog-details .blog-full .comment-note :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
/*------------------------------------
12. Partner Section CSS
------------------------------------*/
.rs-partner {
/* background: url(../images/bg/partners-bg.jpg); */
background-image: linear-gradient(120deg, #01182f 10%, #01aeb1 100%);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-partner .partner-item .logo-img a {
overflow: hidden;
display: inline-block;
position: relative;
transition: all 0.3s ease-in-out;
background: #e7ebef;
border-radius: 10px;
}
.rs-partner .partner-item .logo-img a .hover-logo {
transition: all 0.3s ease-in-out;
display: block;
position: absolute;
z-index: 1;
top: 0;
left: 0;
visibility: hidden;
filter: grayscale(100%);
}
.rs-partner .partner-item .logo-img a .main-logo {
filter: grayscale(100%);
transition: all 0.3s ease-in-out;
display: block;
}
.rs-partner .partner-item .logo-img a:hover .hover-logo {
position: absolute;
z-index: 1;
top: 0;
left: 0;
display: block;
opacity: 3;
visibility: visible;
-webkit-transform: translateY(0%);
-moz-transform: translateY(0%);
-ms-transform: translateY(0%);
-o-transform: translateY(0%);
transform: translateY(0%);
filter: grayscale(0%);
}
.rs-partner .partner-item .logo-img a:hover .main-logo {
display: block;
visibility: hidden;
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
filter: grayscale(100%);
}
/* ------------------------------------
13. Testimonial Section CSS
---------------------------------------*/
.rs-testimonial.main-home .testi-item .author-desc {
background: #ffffff;
padding: 70px 40px 80px 40px;
border-radius: 10px 10px 10px 10px;
box-shadow: -2px 16px 44px -32px rgba(0, 0, 0, 0);
}
.rs-testimonial.main-home .testi-item .author-desc .desc {
text-align: center;
position: relative;
color: #333333;
padding: 61px 0px 10px 0px;
font-size: 17px;
line-height: 33px;
font-weight: 400;
}
.rs-testimonial.main-home .testi-item .author-desc .desc .quote {
width: 50px;
top: -13px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.rs-testimonial.main-home .testi-item .author-desc .author-img {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 80px;
}
.rs-testimonial.main-home .testi-item .author-desc .author-img img {
width: 90px;
height: 90px;
}
.rs-testimonial.main-home .testi-item .author-part {
text-align: center;
padding-top: 70px;
}
.rs-testimonial.main-home .testi-item .author-part .name {
color: #0a0a0a;
font-size: 22px;
font-weight: 600;
display: block;
margin-bottom: 5px;
}
.rs-testimonial.main-home .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.main-home .owl-dots .owl-dot {
width: 25px;
height: 8px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
border: none;
transition: all 0.3s ease;
background-image: linear-gradient(90deg, #01182f 10%, #01aeb1 100%);
box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
}
.rs-testimonial.main-home .owl-dots .owl-dot:hover,
.rs-testimonial.main-home .owl-dots .owl-dot.active {
width: 40px;
/* background: #0b70e1; */
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
opacity: 1;
}
.rs-testimonial.main-home .owl-stage-outer {
padding: 45px 0;
margin: -45px 0;
}
/*------------------------------------
14. Footer Section CSS
------------------------------------*/
.rs-footer .footer-top {
padding: 92px 0 65px;
}
.rs-footer .footer-top .footer-logo img {
height: 60px;
}
.rs-footer .footer-top .widget-title {
font-size: 22px;
line-height: 40px;
font-weight: 600;
color: #101010;
margin-bottom: 25px;
}
.rs-footer .footer-top .site-map li {
margin-bottom: 12px;
}
.rs-footer .footer-top .site-map li a {
font-size: 16px;
color: #454545;
}
.rs-footer .footer-top .site-map li a:hover {
color: #106eea;
}
.rs-footer .footer-top .footer-social li {
display: inline;
margin-right: 5px;
}
.rs-footer .footer-top .footer-social li a {
display: inline-block;
width: 35px;
height: 35px;
line-height: 35px;
border-radius: 50%;
color: #555;
text-align: center;
font-size: 15px;
transition: all 0.8s ease;
background: rgba(255, 255, 255, 0.9);
}
.rs-footer .footer-top .footer-social li a i {
line-height: 35px;
}
.rs-footer .footer-top .footer-social li a:hover {
color: #ffffff;
background: #106eea;
}
.rs-footer .footer-top .footer-social li:last-child {
margin: 0;
}
.rs-footer .footer-top .address-widget li {
padding: 0px 0px 16px 40px;
position: relative;
}
.rs-footer .footer-top .address-widget li .desc a {
color: #454545;
}
.rs-footer .footer-top .address-widget li .desc a:hover {
color: #106eea;
}
.rs-footer .footer-top .address-widget li i {
color: #ffffff;
position: absolute;
left: 0px;
}
.rs-footer .footer-top .address-widget li i:before {
font-size: 20px;
}
.rs-footer .footer-top .widget-desc {
margin: 0;
}
.rs-footer .footer-top p {
margin: 30px 0 0;
position: relative;
text-align: justify;
}
.rs-footer .footer-top p input[type="email"] {
border: none;
width: 91%;
font-size: 13px;
padding: 16px 60px 16px 20px;
margin: 0;
color: #0a0a0a;
overflow: hidden;
border-radius: 30px 0 0 30px;
background: #fff;
box-shadow: 0 0 25px #eeeeee;
}
.rs-footer .footer-top p input[type="submit"] {
position: absolute;
top: 1px;
right: 1px;
bottom: 1px;
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
border-radius: 50%;
padding: 15px 28px 15px;
font-family: "Flaticon";
font-size: 0;
border: none;
}
.rs-footer .footer-top p i {
position: absolute;
right: 0;
top: 0;
bottom: 0;
padding: 12px 20px;
pointer-events: none;
color: #ffffff;
}
.rs-footer .footer-top p ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-footer .footer-top p ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-footer .footer-top p :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-footer .footer-top p :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
.rs-footer .footer-bottom {
padding: 20px 0;
background: rgba(255, 255, 255, 0.4);
}
.rs-footer .footer-bottom .copyright p {
margin: 0;
text-align: center;
}
.rs-footer .footer-bottom .copyright p a {
color: #454545;
}
.rs-footer .footer-bottom .copyright p a:hover {
color: #106eea;
}
.rs-footer .footer-bottom .copy-right-menu li {
display: inline-block;
position: relative;
padding: 0px 19px 0 25px;
}
.rs-footer .footer-bottom .copy-right-menu li a {
color: #454545;
}
.rs-footer .footer-bottom .copy-right-menu li a:hover {
color: #106eea;
}
.rs-footer .footer-bottom .copy-right-menu li:before {
display: block;
content: "";
position: absolute;
font-size: 18px;
background: #106eea;
left: 0;
top: 50%;
width: 6px;
height: 6px;
transform: translateY(-50%);
border-radius: 50%;
}
.rs-footer .footer-bottom .copy-right-menu li:first-child:before {
display: none;
}
.rs-footer.style2 {
background-image: linear-gradient(120deg, #01182f 1%, #01aeb1 100%);
background-color: #f5f6f9;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-footer.style2 .footer-top {
padding: 92px 0 65px;
}
.rs-footer.style2 .footer-top .footer-logo img {
height: 50px;
}
.rs-footer.style2 .footer-top .widget-title {
color: #ffffff;
}
.rs-footer.style2 .footer-top .site-map li a {
color: #ffffff;
}
.rs-footer.style2 .footer-top .site-map li a:hover {
color: #03305c;
}
.rs-footer.style2 .footer-top .footer-social li {
display: inline;
margin-right: 5px;
}
.rs-footer.style2 .footer-top .footer-social li a {
display: inline-block;
width: 35px;
height: 35px;
line-height: 35px;
border-radius: 50%;
color: #555;
text-align: center;
font-size: 15px;
transition: all 0.8s ease;
background: rgba(255, 255, 255, 0.9);
}
.rs-footer.style2 .footer-top .footer-social li a:hover {
color: #ffffff;
background-image: linear-gradient(230deg, #01182f 30%, #01aeb1 100%);
}
.rs-footer.style2 .footer-top .footer-social li:last-child {
margin: 0;
}
.rs-footer.style2 .footer-top .address-widget li {
padding: 0px 0px 16px 40px;
position: relative;
}
.rs-footer.style2 .footer-top .address-widget li .desc {
color: #ffffff;
}
.rs-footer.style2 .footer-top .address-widget li .desc a {
color: #ffffff;
}
.rs-footer.style2 .footer-top .address-widget li .desc a:hover {
color: #03305c;
}
.rs-footer.style2 .footer-top .widget-desc {
margin: 0;
}
.rs-footer.style2 .footer-top p input[type="email"] {
box-shadow: unset;
}
.rs-footer.style2 .footer-bottom {
background: transparent;
/* border-color: rgba(80, 90, 100, 0.56) !important;
border-top: 1px solid; */
}
.rs-footer.style2 .footer-bottom .copyright p {
color: #ffffff;
}
.rs-footer.style2 .footer-bottom .copyright p a {
color: #ffffff;
}
.rs-footer.style2 .footer-bottom .copyright p a:hover {
color: #03228f;
}
.rs-footer.style2 .footer-bottom .copy-right-menu li a {
color: #ffffff;
}
/* -----------------------
15. Scroll Up CSS
--------------------------*/
#scrollUp {
text-align: center;
bottom: 40px;
cursor: pointer;
display: none;
position: fixed;
right: 20px;
z-index: 999;
border-radius: 50px 50px 4px 4px;
}
#scrollUp i {
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
border-radius: 50%;
height: 40px;
font-size: 24px;
font-weight: 600;
width: 42px;
color: #fff;
line-height: 36px;
transition: all 0.3s ease;
margin-left: 2px;
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}
#scrollUp i:hover {
opacity: 0.8;
}
#scrollUp.oranage i {
background-image: linear-gradient(180deg, #dd4c23 19%, #f27c1e 100%);
}
/* ------------------------------------
16. Preloader CSS
---------------------------------------*/
.loader {
background-color: #000000;
height: 100%;
width: 100%;
position: fixed;
margin-top: 0;
top: 0;
z-index: 999999;
}
.loader .loader-container {
top: 45%;
left: 45%;
position: absolute;
width: auto;
height: auto;
}
/* .loader .loader-container {
width: 50px;
height: 50px;
background-color: #106eea;
border-radius: 100%;
-webkit-animation: sk-scaleout 1s infinite ease-in-out;
animation: sk-scaleout 1s infinite ease-in-out;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
} */
@-webkit-keyframes sk-scaleout {
0% {
-webkit-transform: scale(0);
}
100% {
-webkit-transform: scale(1);
opacity: 0;
}
}
@keyframes sk-scaleout {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
/* ------------------------------------
17. Animation Part
---------------------------------------*/
/*Pulse Border Animation*/
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
.move-y {
animation: move-y 2s alternate infinite;
-webkit-animation: move-y 2s alternate infinite;
}
@keyframes move-y {
0% {
transform: translate3d(0, 0, 0);
-webkit-transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(0, 10px, 0);
-webkit-transform: translate3d(0, 10px, 0);
}
}
.dance3 {
-webkit-animation: dance3 2s alternate infinite;
}
@keyframes dance3 {
0% {
-webkit-transform: scale(0.6);
}
100% {
-webkit-transform: scale(1);
}
}
.up-down {
animation: up-down 3s alternate infinite;
-webkit-animation: up-down 3s alternate infinite;
}
@keyframes up-down {
0% {
transform: translateY(10px);
-webkit-transform: translateY(0);
}
50% {
transform: translateY(-10px);
-webkit-transform: translateY(-10px);
}
100% {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(30px);
-webkit-transform: translateY(0);
}
50% {
transform: translateY(-50px);
-webkit-transform: translateY(-50px);
}
100% {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
.rotate {
animation: rotation 4s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
.watermark-animate {
-webkit-animation: watermark-animate 8s infinite;
animation: watermark-animate 8s infinite;
animation-direction: alternate-reverse;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
@keyframes watermark-animate {
0% {
left: 0;
}
100% {
left: 100%;
}
}
@-webkit-keyframes shake {
from{
-webkit-transform: rotate(5deg);
}
to{
-webkit-transform: rotate(-5deg);
-webkit-transform-origin: center center;
}
} | public/assets/frontend/css/style.css | @charset "utf-8";
/**
*
* -----------------------------------------------------------------------------
* Author : Digimerlin
* Author URI : http://digimerlin.com/
*
* -----------------------------------------------------------------------------
*
**/ /* TABLE OF CONTENT
---------------------------------------------------------
01. General CSS
02. Global Class CSS
03. Header Section CSS
04. About Section CSS
05. Slider Section CSS
06. Contact Section CSS
07. Skill-bar Section CSS
08. Services Section CSS
09. Process Section CSS
10. Pricing Section CSS
11. Blog Section CSS
12. Partner Section CSS
13. Testimonial Section CSS
14. Footer Section CSS
15. Scroll Up CSS
16. Preloader CSS
17. Animation Part
--------------------------------------------------------*/
@font-face {
font-family: "Livvic";
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCr-x1S2hzjrlfXbeM-.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlffw8Eesg.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCp-x1S2hzjrlfnbw.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlffm8Aesg.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlfft8cesg.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(http://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlff08Yesg.ttf)
format("truetype");
}
@font-face {
font-family: "Livvic";
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlff68Qesg.ttf)
format("truetype");
}
/* -----------------------------------
01. General CSS
-------------------------------------*/
html,
body {
font-size: 16px;
color: #454545;
font-family: "Livvic", sans-serif;
vertical-align: baseline;
line-height: 26px;
font-weight: 400;
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
}
p {
margin: 0 0 26px;
line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Livvic", sans-serif;
color: #101010;
margin: 0 0 26px;
line-height: 1.2;
}
h1 {
font-size: 70px;
font-weight: 700;
}
h2 {
font-size: 36px;
font-weight: 700;
}
h3 {
font-size: 28px;
font-weight: 700;
}
h4 {
font-size: 24px;
font-weight: 700;
}
h5 {
font-size: 18px;
font-weight: 700;
}
h6 {
font-size: 16px;
font-weight: 700;
}
.pb-230 {
padding-bottom: 230px;
}
.pb-435 {
padding-bottom: 435px;
}
.pr-220 {
padding-right: 220px;
}
.offwrap {
cursor: url(assets/images/close.html), auto;
width: 100%;
left: 100%;
transition: all 0.8s ease-out 0s;
position: fixed;
background: rgba(255, 255, 255, 0.3);
height: 100vh;
top: 0;
bottom: 0;
z-index: 999;
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
}
.home11 {
background: #000000;
}
body.nav-expanded .offwrap {
left: 0%;
transition: all 0.8s ease-out 0s;
}
.home-style2 h1,
.home-style2 h2,
.home-style2 h3,
.home-style2 h4,
.home-style2 h5,
.home-style2 h6 {
color: #0a0a0a;
}
.no-border {
border: none !important;
}
.uppercase {
text-transform: uppercase !important;
}
.capitalize {
text-transform: capitalize !important;
}
.bold-text {
font-size: 20px;
font-weight: bold;
font-family: "Livvic", sans-serif;
}
.extra-bold {
font-weight: 800 !important;
}
.gray-color {
background-color: #f6f7f9;
}
.black-dark {
background: #131313 !important;
}
.dark-blue {
background-image: linear-gradient(140deg, #000c1c 62%, #032a44 100%);
}
.gray-color-important {
background-color: #f6f7f9 !important;
}
.primary-background {
background-color: #106eea;
}
.white-bg {
background: #ffffff;
}
.white-color {
color: #ffffff !important;
}
.pt-255 {
padding-top: 255px;
}
.pb-390 {
padding-bottom: 390px;
}
.md-pt-215 {
padding-top: 215px;
}
.rs-call-us .image-part img {
max-height: 585px;
/* -webkit-animation: shake 1s ease-in-out 1s infinite alternate; */
}
a {
color: #03305c;
transition: all 0.3s ease;
text-decoration: none !important;
outline: none !important;
}
a:active,
a:hover {
text-decoration: none;
outline: 0 none;
color: #03305c;
}
ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
.clear {
clear: both;
}
::-moz-selection {
background: #106eea;
text-shadow: none;
color: #ffffff;
}
::selection {
background: #106eea;
text-shadow: none;
color: #ffffff;
}
.bg1 {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-image: linear-gradient(120deg, #01182f 30%, #01aeb1 100%);
}
.bg2 {
background: url(../images/bg/counter-bg.png);
background-color: #fff;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
box-shadow: -1px 21px 25px 0px rgba(0, 0, 0, 0.12);
border-radius: 10px 10px 10px 10px;
padding: 40px 40px 40px 40px;
z-index: 10;
}
.bg4 {
background: url(../images/bg/about-2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.shape-part .right-side,
.shape-part .left-side {
position: absolute;
bottom: 0px;
left: 0;
}
.shape-part .right-side {
left: auto;
right: 0;
}
.bg-unset {
background: unset !important;
}
.rs-menu-toggle {
color: #106eea;
text-align: right;
}
button {
cursor: pointer;
}
.glyph-icon:before {
margin: 0;
}
.z-index-1 {
position: relative;
z-index: 1;
}
ul.services-list li a {
display: block;
border: 2px solid #e8e8e8;
padding: 16px 18px;
transition: all 0.5s ease;
border-radius: 5px;
position: relative;
font-size: 16px;
font-weight: 700;
color: #101010;
margin-bottom: 15px;
}
ul.services-list li a:before {
content: "\f113";
position: absolute;
right: 12px;
top: 16px;
font-family: Flaticon;
color: #1c1b1b;
}
ul.services-list li a:hover,
ul.services-list li a.active {
background-image: linear-gradient(250deg, #1273eb 19%, #03228f 100%);
color: #ffffff;
border-radius: 5px;
border-color: #1273eb;
}
ul.services-list li a:hover:before,
ul.services-list li a.active:before {
color: #ffffff;
}
ul.listing-style li {
margin-bottom: 7px;
}
ul.listing-style li i {
color: #03228f;
font-size: 24px;
line-height: 31px;
margin-right: 10px;
}
ul.rs-features-list li {
margin: 0px 0px 21px 0px;
}
ul.rs-features-list li i {
color: #fff;
background-color: transparent;
background-image: linear-gradient(180deg, #dd4c23 0%, #f27c1e 100%);
padding: 10px 10px 10px 10px;
margin: 0px 20px 0px 0px;
border-radius: 50px 50px 50px 50px;
}
ul.rs-features-list li span {
color: #575757;
font-size: 18px;
font-weight: 600;
text-decoration: underline;
}
ul.rs-features-list li span:hover {
color: #fc4f29;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none !important;
}
.pagination-part {
display: inline-block;
border: 1px solid #f9f9f9;
padding: 11px 0;
border-radius: 3px;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
background: #fff;
}
.pagination-part li {
padding: 2px 20px 0 21px;
line-height: 23px;
font-size: 18px;
text-decoration: none;
transition: all 0.4s ease-in-out 0s;
text-align: center;
background: 0 0;
color: #000;
display: inline-block;
vertical-align: top;
border-right: 1px solid #e6e6e6;
}
.pagination-part li a {
color: #454545;
}
.pagination-part li:last-child {
border-right: unset;
}
.pagination-part .next-page {
position: relative;
transition: all 0.4s ease-in-out 0s;
padding-right: 12px;
}
.pagination-part .next-page:before,
.pagination-part .next-page:after {
content: "\f105";
position: absolute;
top: 6px;
right: 0;
color: #454545;
line-height: 16px;
font-family: fontawesome;
font-size: 12px;
}
.pagination-part .next-page:before {
right: 4px;
}
.pagination-part .active a {
color: #106eea;
}
.gridFilter button {
font-size: 16px;
background: 0 0 !important;
color: #0a0a0a;
display: inline-block;
transition: 0.4s;
outline: 0;
-webkit-transition: 0.4s;
-ms-transition: 0.4s;
position: relative;
padding: 5px 20px;
border-radius: 30px;
border: 0;
border-radius: 3px;
}
.gridFilter button.active {
background: #fff;
color: #ff5421;
box-shadow: 0 0 30px #eee;
}
.gridFilter button + button {
margin-left: 20px;
}
blockquote {
margin: 35px 0px;
padding: 40px 60px;
color: #666;
position: relative;
background: rgba(0, 0, 0, 0.01);
font-weight: normal;
font-style: italic;
text-align: left;
clear: both;
font-weight: 400;
border-radius: 8px;
}
blockquote:before {
content: "\f129";
font-size: 35px;
color: #0b70e1;
padding-bottom: 0;
display: inline-block;
font-family: flaticon;
font-weight: 400;
text-align: center;
top: 0;
background: 0 0;
transform: rotate(180deg);
}
blockquote cite {
font-size: 15px;
display: block;
margin-top: 10px;
}
blockquote cite:before {
content: "";
font-size: 28px;
color: #ff5421;
padding-bottom: 0px;
display: inline-block;
background: #0b70e1;
height: 2px;
width: 40px;
font-weight: 400;
text-align: center;
top: -4px;
margin-right: 10px;
position: relative;
}
.dots {
list-style: disc;
margin: 0 0 1.5em 3em;
}
.arrow-btn {
position: absolute;
top: 90%;
left: 50%;
transform: translate(-50%, -15%);
}
.arrow-btn a {
font-weight: 400;
font-size: 17px;
border-color: #f2541b;
border-style: solid;
border-width: 1px;
margin: 0px;
border-radius: 23px;
padding: 12px 15px;
color: #f2541b;
}
.arrow-btn a span {
position: absolute;
display: block;
top: 50%;
left: 50%;
width: 8px;
height: 8px;
margin: -4px 0 0 -4px;
border-radius: 50%;
background: #f2541b;
}
.rs-carousel.nav-style1 {
position: relative;
}
.rs-carousel.nav-style1 .owl-nav {
display: block;
}
.rs-carousel.nav-style1 .owl-nav .owl-next,
.rs-carousel.nav-style1 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 42px;
height: 42px;
line-height: 42px;
border-radius: 50%;
background: #106eea;
text-align: center;
color: #ffffff;
transition: all 0.5s;
transition-delay: 0.7s;
opacity: 0;
visibility: hidden;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before,
.rs-carousel.nav-style1 .owl-nav .owl-prev i:before {
content: "\f138";
font-family: Flaticon;
}
.rs-carousel.nav-style1 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-carousel.nav-style1 .owl-nav .owl-next i:before {
content: "\f137";
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next,
.rs-carousel.nav-style1:hover .owl-nav .owl-prev {
left: -50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-carousel.nav-style1:hover .owl-nav .owl-next {
right: -50px;
left: unset;
}
.rs-carousel.nav-style2 {
position: relative;
}
.rs-carousel.nav-style2 .owl-nav {
display: block;
position: absolute;
top: -80px;
right: 0;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev,
.rs-carousel.nav-style2 .owl-nav .owl-next {
display: inline-block;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i,
.rs-carousel.nav-style2 .owl-nav .owl-next i {
transition: all 0.3s ease;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before,
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
font-family: Flaticon;
font-size: 22px;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:hover i,
.rs-carousel.nav-style2 .owl-nav .owl-next:hover i {
color: #106eea;
}
.rs-carousel.nav-style2 .owl-nav .owl-prev i:before {
content: "\f134";
}
.rs-carousel.nav-style2 .owl-nav .owl-prev:after {
content: "/";
padding: 0 5px 0 5px;
position: relative;
top: -3px;
}
.rs-carousel.nav-style2 .owl-nav .owl-next i:before {
content: "\f133";
}
.rs-carousel .owl-dots {
text-align: center;
margin: 40px auto 0;
line-height: 15px;
display: block;
}
.rs-carousel .owl-dots .owl-dot {
width: 30px;
height: 10px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
border: 1px solid #106eea;
background: transparent;
opacity: 0.7;
cursor: pointer;
}
.rs-carousel .owl-dots .owl-dot:hover {
background: #106eea;
}
.rs-carousel .owl-dots .active {
background: #106eea;
opacity: 1;
}
/* ------------------------------------
02. Global Class CSS
---------------------------------------*/
.y-middle {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.y-bottom {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: flex-end;
-webkit-align-items: flex-end;
align-items: flex-end;
}
.project-item .vertical-middle {
position: relative;
z-index: 9;
}
.vertical-middle {
display: table;
height: 100%;
width: 100%;
}
.vertical-middle-cell {
display: table-cell;
vertical-align: middle;
}
.readon {
color: #fff;
font-size: 16px;
font-weight: 600;
text-transform: capitalize;
cursor: pointer;
display: inline-block;
position: relative;
transition: all 0.4s;
z-index: 1;
background-color: transparent;
}
.readon.learn-more {
padding: 14px 40px 14px 40px;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
border-radius: 30px 30px 30px 30px;
}
.readon.learn-more:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #ffffff;
}
.readon.learn-more.sub-con {
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
padding: 18px 36px 16px 36px;
font-size: 14px;
font-weight: 500;
}
.readon.learn-more.sub-con:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #ffffff;
}
.readon.learn-more.submit {
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
padding: 16px 40px 16px 40px;
font-weight: 500;
font-size: 16px;
}
.readon.learn-more.submit:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #ffffff;
}
.readon.learn-more.post {
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
}
.readon.learn-more.post:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #fff;
}
.readon.learn-more.pdf i {
margin-left: 10px;
}
.readon.learn-more.contact-us {
border-radius: 8px 8px 8px 8px !important;
}
.readon.learn-more.learn-btn {
background-image: linear-gradient(90deg, #03228f 0%, #1d62f0 100%);
border-radius: 3px 3px 3px 3px !important;
}
.readon.learn-more.learn-btn:hover {
background-image: linear-gradient(180deg, #03228f 19%, #4e95ed 100%);
}
.readon.learn-more.slider-btn {
background: #ffffff;
color: #03305c;
padding: 15px 37px;
border-radius: 8px 8px 8px 8px !important;
}
.readon.learn-more.slider-btn:hover {
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
color: #ffffff;
}
.readon.started {
padding: 14px 40px 14px 40px;
background-image: linear-gradient(220deg, #f27c1e 0%, #dd4c23 79%);
border-radius: 30px 30px 30px 30px;
}
.readon.started:hover {
background-image: linear-gradient(180deg, #dd4c23 19%, #f27c1e 100%);
color: #ffffff;
}
.readon.started.get-new:hover {
background: rgba(0, 0, 0, 0)
linear-gradient(79deg, #dd4c23 0%, #f27c1e 63%, #f27c1e);
}
.readon.started.get-ready {
background-image: linear-gradient(90deg, #03228f 0, #0e73e4 100%);
border-radius: 3px;
text-transform: uppercase;
}
.readon.started.get-ready:hover {
opacity: 0.9;
}
.readon.started.get-ready2 {
border-radius: 5px 5px 5px 5px;
}
.readon.started.get-ready3 {
border-radius: 5px 5px 5px 5px;
text-transform: uppercase;
font-weight: 500;
}
.readon.lets-talk {
padding: 14px 40px 14px 40px;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
border-radius: 30px 30px 30px 30px;
}
.readon.lets-talk:hover {
background-image: linear-gradient(250deg, #03305c 19%, #00adb0 100%);
color: #ffffff;
}
.readon.buy-now {
padding: 10px 40px 10px 40px;
background-image: linear-gradient(170deg, #03228f 0%, #4e95ed 100%);
border-radius: 30px 30px 30px 30px;
text-transform: uppercase;
position: relative;
top: 25px;
}
.readon.buy-now:hover {
background-image: linear-gradient(360deg, #03228f 0%, #4e95ed 100%);
color: #ffffff;
}
.readon.buy-now.get-in {
padding: 15px 34px;
border: 1px solid #fff;
color: #ffffff;
background: transparent;
}
.readon.buy-now.get-in:hover {
background: #03228f;
color: #ffffff;
border: 1px solid #03228f;
}
.readon.buy-now.table-btn {
background-image: linear-gradient(90deg, #032390 0%, #032390 100%);
color: #ffffff;
border-radius: 3px 3px 3px 3px;
font-weight: 500;
}
.readon.buy-now.table-btn:hover {
background-image: linear-gradient(90deg, #0d6ada 0%, #0d6ada 100%);
}
.readon.buy-now.sl-btn {
background: rgba(0, 0, 0, 0)
linear-gradient(90deg, #03228f 0%, #1d62f0 100%);
color: #ffffff;
border-radius: 4px;
font-weight: 500;
font-size: 18px;
text-transform: capitalize;
padding: 17px 28px;
}
.readon.buy-now.sl-btn:hover {
background-image: linear-gradient(90deg, #0d6ada 0%, #0d6ada 100%);
}
.readon.buy-now.price {
background-image: linear-gradient(170deg, #03228f 0%, #4e95ed 100%);
border-radius: 8px 8px 8px 8px;
}
.readon.buy-now.price:hover {
background-image: linear-gradient(200deg, #03228f 0%, #4e95ed 100%);
}
.readon.buy-now.pricing:hover {
background-image: linear-gradient(170deg, #03228f 0%, #4e95ed 100%);
color: #ffffff;
}
.readon.view-more {
padding: 12px 25px 12px 25px;
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
color: #111111;
background-color: #ffffff;
border-radius: 30px 30px 30px 30px;
}
.readon.discover {
font-size: 16px;
font-weight: 500;
color: #032491;
padding: 17px 30px 17px 30px;
background: transparent;
background-image: linear-gradient(90deg, #ffffff 19%, #ffffff 100%);
border-radius: 4px 4px 4px 4px;
}
.readon.discover.started {
padding: 16px 30px 16px 30px;
}
.readon.discover.started:hover {
background-image: linear-gradient(90deg, #f6f7f9 19%, #f6f7f9 100%);
color: #032491;
}
.readon.discover:hover {
background-image: linear-gradient(90deg, #f6f7f9 19%, #f6f7f9 100%);
}
.readon.discover.more {
background-image: linear-gradient(90deg, #032491 19%, #032491 100%);
padding: 16px 30px 16px 30px;
color: #ffffff;
}
.readon.discover.more:hover {
background-image: linear-gradient(90deg, #0d6ada 19%, #0d6ada 100%);
color: #ffffff;
}
.readon.qoute-btn {
font-size: 16px;
padding: 15px 32px;
border-radius: 3px;
color: #fff;
font-weight: 500;
text-transform: uppercase;
color: #101010;
border: 1px solid #f2541b;
background: transparent;
}
.readon.qoute-btn:hover {
color: #ffffff;
background-image: linear-gradient(150deg, #dd4c23 19%, #f27c1e 100%);
}
.readon.reply {
cursor: pointer;
display: inline-block;
position: relative;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
padding: 3px 20px 6px;
line-height: 22px;
border-radius: 30px;
font-size: 13px;
font-weight: 500;
color: #ffffff !important;
background-image: linear-gradient(50deg, #03228f 10%, #0e73e4 100%);
z-index: 1;
border: none;
}
.readon.reply:hover {
background-image: linear-gradient(50deg, #0e73e4 10%, #03228f 100%);
color: #ffffff;
opacity: 0.99;
}
/*-- Services Button Css --*/
.services-button a {
position: relative;
display: inline-block;
transition: all ease 0.3s;
padding: 18px 0px 0px 0px;
font-size: 16px;
font-weight: 500;
color: #101010;
}
.services-button a:after {
content: "\f113";
font-family: Flaticon;
font-size: 10px;
position: relative;
right: 0;
top: 0;
display: inline-block;
margin-left: 15px;
transition: all ease 0.4s;
color: #101010;
}
/*-- Services-btn--*/
.services-btn2 a {
position: relative;
display: inline-block;
transition: all ease 0.3s;
font-weight: 500;
color: #032390;
}
.services-btn2 a:after {
position: absolute;
width: 30px;
height: 1px;
background: #0b70e1;
content: "";
top: 50%;
transform: translateY(-50%);
right: 0px;
transition: 0.4s;
opacity: 0;
}
.services-btn2 a:hover:after {
right: -40px;
opacity: 1;
}
/*-- Services-btn--*/
.services-btn3 a {
position: relative;
color: #101010;
display: inline-block;
transition: all 0.9s ease;
text-decoration: underline !important;
}
.services-btn3 a:after {
position: absolute;
right: 0;
top: 50%;
font-size: 15px;
font-weight: 500;
color: #f2541b;
font-family: "Flaticon";
transform: translateY(-50%);
transition: all 0.2s ease;
}
.services-btn3 a:hover {
color: #f2541b;
}
.services-btn3 a:hover:after {
right: -28px;
content: "\f110";
transition: all 0.9s ease;
}
/*-- Blog Button Css --*/
.blog-button a {
position: relative;
display: inline-block;
color: #061340;
font-size: 16px;
font-weight: 600;
transition: all ease 0.4s;
}
.blog-button a:after {
content: "\f113";
font-family: Flaticon;
font-size: 8px;
position: relative;
right: 0;
top: 0;
display: inline-block;
margin-left: 8px;
transition: all ease 0.4s;
color: #101010;
}
.blog-button a:hover {
color: #106eea;
}
.blog-button a:hover:after {
transform: translateX(10px);
color: #106eea;
}
.blog-button.style2 a:hover {
color: #ff5600;
}
.blog-button.style2 a:hover:after {
color: #ff5600;
}
.blog-button.inner-blog a {
text-align: center;
display: inline-block;
color: #0b70e1;
padding-right: 25px;
position: relative;
z-index: 1;
font-family: "Livvic", sans-serif;
font-weight: 500;
font-size: 15px;
transition: all 0.3s;
}
.blog-button.inner-blog a:after {
content: "\f114";
position: absolute;
font-family: flaticon;
font-size: 15px;
top: 1px;
right: 0;
opacity: 1;
transition: all 0.3s;
color: #0b70e1;
}
.blog-button.inner-blog a:hover {
color: #0b70e1;
}
.blog-button.inner-blog a:hover:after {
right: -5px;
opacity: 1;
transform: unset;
}
/*-- Submit Button Css --*/
.submit-btn {
box-shadow: 0 28px 50px 0 rgba(0, 0, 0, 0.05);
outline: 0;
border: none;
padding: 18px 18px 18px 18px;
border-radius: 3px;
display: inline-block;
text-transform: capitalize;
font-size: 16px;
font-weight: 500;
color: #fff;
background-image: linear-gradient(160deg, #03228f 0%, #0b70e1 77%);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
width: 100%;
cursor: pointer;
}
.submit-btn:hover {
opacity: 0.9;
}
.submit-btn.orange-btn {
background-image: linear-gradient(160deg, #f27c1e 0%, #dd4c23 79%);
}
.submit {
color: #ffffff;
background-color: transparent;
background-image: linear-gradient(95deg, #03228f 0%, #4e95ed 100%);
padding: 18px 40px 17px 40px;
font-size: 15px;
border-radius: 30px 30px 30px 30px;
border: none;
}
.submit:hover {
opacity: 0.99;
}
.submit.sub-small {
padding: 17px 40px 17px 40px;
}
.submit.sub-small:hover {
color: #ffffff;
background-image: linear-gradient(290deg, #03228f 0%, #4e95ed 100%);
opacity: unset;
}
/*-- Add Cart Button Css --*/
.add-btn {
cursor: pointer;
display: inline-block;
position: relative;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
padding: 10px 40px;
border-radius: 3px;
font-size: 16px;
font-weight: 500;
background-image: linear-gradient(90deg, #03228f 0%, #0e73e4 100%);
color: #ffffff;
z-index: 1;
border: none;
}
.add-btn:hover {
color: #fff;
background-image: linear-gradient(90deg, #0e73e4 19%, #03228f 100%);
z-index: 1;
}
/*Video Icon*/
.media-icon {
position: relative;
display: inline-block;
z-index: 1;
}
.media-icon .popup-videos {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #ffffff;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
width: 70px;
height: 70px;
border-radius: 100%;
text-align: center;
}
.media-icon .popup-videos:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 80px;
height: 80px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
background-color: #1042c0;
transition: 0.3s ease all;
}
.media-icon .popup-videos i:before {
font-size: 30px;
line-height: 70px;
transition: 0.3s ease all;
}
.media-icon .popup-videos:hover:before {
background: #106eea;
}
.media-icon.video-item {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.slider-video .popup-videos {
display: inline-block;
position: relative;
height: 70px;
width: 70px;
line-height: 70px;
border-radius: 100%;
text-align: center;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
}
.slider-video .popup-videos i {
text-align: center;
color: #ffffff;
border-radius: 100%;
font-size: 25px;
position: relative;
line-height: 70px;
z-index: 9;
width: 100%;
vertical-align: middle;
margin-left: 0;
height: auto;
}
.slider-video .popup-videos:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 70px;
height: 70px;
border-radius: 50%;
animation: pulse-border 3000ms ease-out infinite;
background: #03305c;
}
.address-item .address-icon {
display: inline-block;
position: relative;
height: 70px;
width: 70px;
line-height: 70px;
border-radius: 100%;
text-align: center;
background: #ffffff;
}
.address-item .address-icon i {
text-align: center;
color: #106eea;
border-radius: 100%;
font-size: 25px;
position: relative;
line-height: 70px;
z-index: 9;
width: 100%;
vertical-align: middle;
margin-left: 0;
height: auto;
}
.address-item .address-icon:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 70px;
height: 70px;
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
background: #ffffff;
}
.tab-videos .popup-videos {
color: #de5022;
display: flex;
overflow: hidden;
}
.tab-videos .popup-videos i {
width: 35px;
height: 35px;
line-height: 32px;
border: 2px solid #de5022;
border-radius: 50%;
text-align: center;
font-size: 14px;
float: left;
margin-right: 18px;
}
.tab-videos .popup-videos:hover {
color: #de5022;
}
.tab-videos .popup-videos .title {
font-size: 22px;
line-height: 34px;
font-weight: 600;
color: #102b3e;
}
.tab-videos .popup-videos .title:hover {
color: #f2541b;
}
.rs-videos .animate-border .popup-border {
background-image: linear-gradient(180deg, #03228f 0%, #0b70e1 100%);
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
display: inline-block;
border-radius: 50%;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.rs-videos .animate-border .popup-border i {
font-size: 20px;
line-height: 80px;
display: block;
color: #ffffff;
}
.rs-videos .animate-border .popup-border:before {
content: "";
border: 2px solid #106eea;
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 180px;
height: 180px;
border-radius: 50%;
animation: zoomBig 3.25s linear infinite;
-webkit-animation-delay: 0.75s;
animation-delay: 0.75s;
}
.rs-videos .animate-border .popup-border:after {
content: "";
border: 2px solid #106eea;
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 180px;
height: 180px;
border-radius: 50%;
animation: zoomBig 3.25s linear infinite;
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
.rs-videos .animate-border.main-home .popup-border {
left: 8%;
}
.rs-videos .animate-border.main-home.style2 .popup-border {
left: 50%;
}
.rs-videos .animate-border.white-color .popup-border {
background: #ffffff;
bottom: -14px;
left: 44%;
}
.rs-videos .animate-border.white-color .popup-border i {
color: #03228f;
}
.rs-videos .animate-border.white-color .popup-border:before {
border: 2px solid #ffffff;
}
.rs-videos .animate-border.white-color .popup-border:after {
border: 2px solid #ffffff;
}
.rs-videos .animate-border.white-color.style3 .popup-border {
bottom: 362px;
left: 10%;
}
@keyframes zoomBig {
0% {
transform: translate(-50%, -50%) scale(0.5);
opacity: 1;
border-width: 3px;
}
40% {
opacity: 0.5;
border-width: 2px;
}
65% {
border-width: 1px;
}
100% {
transform: translate(-50%, -50%) scale(1);
opacity: 0;
border-width: 1px;
}
}
@keyframes zoomBig {
0% {
transform: translate(-50%, -50%) scale(0.5);
opacity: 1;
border-width: 3px;
}
40% {
opacity: 0.5;
border-width: 2px;
}
65% {
border-width: 1px;
}
100% {
transform: translate(-50%, -50%) scale(1);
opacity: 0;
border-width: 1px;
}
}
.margin-remove {
margin: 0 !important;
}
.no-gutter {
margin-left: 0;
margin-right: 0;
}
.no-gutter [class*="col-"] {
padding-left: 0;
padding-right: 0;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
margin: 0;
}
.container-fluid {
padding-left: 60px;
padding-right: 60px;
}
.display-table {
display: table;
height: 100%;
width: 100%;
}
.display-table-cell {
display: table-cell;
vertical-align: middle;
}
.relative {
position: relative;
}
.sec-title {
position: relative;
}
.sec-title .sub-text {
position: relative;
padding-left: 95px;
display: inline-block;
line-height: 28px;
font-size: 14px;
letter-spacing: 1px;
font-weight: 600;
color: #01aeb1;
text-transform: uppercase;
margin-bottom: 10px;
}
.sec-title .sub-text:after {
content: "";
position: absolute;
border: 0;
height: 4px;
width: 50px;
background-color: #03305c;
z-index: 1;
margin-left: 0;
left: 24px;
top: 12px;
}
.sec-title .sub-text:before {
content: "";
position: absolute;
left: 0;
top: 12px;
height: 4px;
width: 12px;
background-color: #03305c;
}
.sec-title .sub-text.new {
color: #ffffff;
font-size: 15px;
padding-left: 0;
}
.sec-title .sub-text.new:before {
display: none;
}
.sec-title .sub-text.new:after {
display: none;
}
.sec-title .sub-text.new-text {
padding-left: 0;
margin-bottom: 7px;
color: #ffffff;
}
.sec-title .sub-text.new-text:before {
display: none;
}
.sec-title .sub-text.new-text:after {
display: none;
}
.sec-title .sub-text.style2:after {
background-color: #01aeb1;
}
.sec-title .sub-text.style2:before {
background-color: #01aeb1;
}
.sec-title .sub-text.style-bg {
background-color: #1273eb17;
display: inline-block;
padding: 6px 25px;
color: #1273eb;
border-radius: 30px;
text-transform: uppercase;
}
.sec-title .sub-text.style-bg:before {
display: none;
}
.sec-title .sub-text.style-bg:after {
display: none;
}
.sec-title .sub-text.style4-bg {
color: #03228f;
}
.sec-title .sub-text.style4-bg:before {
background-color: #fd6509;
}
.sec-title .sub-text.style4-bg:after {
background-color: #fd6509;
}
.sec-title .sub-text.choose {
font-size: 16px;
font-weight: 500;
}
.sec-title .title {
font-size: 36px;
font-weight: 700;
line-height: 46px;
color: #101010;
margin: 0;
}
.sec-title .title.white-color {
color: #ffffff;
}
.sec-title .desc {
font-size: 18px;
font-weight: 400;
margin: 0;
text-align: justify;
}
.sec-title .desc.white-color {
color: #fff;
}
.sec-title .desc-big {
font-size: 28px;
line-height: 48px;
font-weight: 500;
margin: 0;
}
.sec-title2 {
position: relative;
}
.sec-title2 .sub-text {
margin: 0 0 10px;
display: block;
line-height: 28px;
font-family: "Livvic", sans-serif;
font-size: 14px;
font-weight: 400;
color: #03228f;
text-transform: uppercase;
}
.sec-title2 .sub-text.white-color {
color: #ffffff;
}
.sec-title2 .sub-text.gold-color {
font-weight: 600;
color: #f27c1e;
}
.sec-title2 .sub-text.contact {
color: #1273eb;
}
.sec-title2 .sub-text.orange-color {
color: #f2541b !important;
}
.sec-title2 .sub-text.style-bg {
background-color: #1273eb17;
display: inline-block;
padding: 6px 25px;
color: #1273eb;
border-radius: 30px;
text-transform: uppercase;
}
.sec-title2 .sub-text.style-bg.white-color {
color: #ffffff;
}
.sec-title2 .sub-text.style-bg.con-bg {
background-color: #03228f;
}
.sec-title2 .title {
font-size: 36px;
font-weight: 700;
line-height: 1.4;
color: #0a0a0a;
max-width: 490px;
margin: 0 auto;
}
.sec-title2 .title.white-color {
color: #ffffff;
}
.sec-title2 .title.testi-title {
max-width: unset;
}
.sec-title2 .title.testi-title.new {
color: #102b3e;
}
.sec-title2 .title.title2 {
max-width: 550px;
}
.sec-title2 .title.title3 {
color: #102b3e;
max-width: 430px;
margin: 0;
}
.sec-title2 .title.title4 {
max-width: 660px;
}
.sec-title2 .title.title5 {
color: #102b3e;
}
.sec-title2 .title.title6 {
font-weight: 600;
max-width: unset;
}
.sec-title2 .title.title7 {
color: #102b3e;
max-width: unset;
}
.sec-title2 .title.orange-color {
color: #f2541b !important;
}
.sec-title2 .heading-line {
position: relative;
/* background-color: #03228f; */
background-image: linear-gradient(90deg, #01182f 30%, #01aeb1 100%);
height: 5px;
width: 90px;
border-radius: 30px;
margin: 20px auto;
}
.sec-title2 .heading-line:before {
background-color: #00adb0;
content: "";
position: absolute;
left: 0;
top: -2.7px;
height: 10px;
width: 10px;
border-radius: 50%;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
-webkit-animation-direction: alternate-reverse;
-webkit-animation-name: watermark-animate;
animation-name: watermark-animate;
}
.sec-title2 .desc {
font-size: 18px;
line-height: 31px;
font-weight: 400;
color: #454545;
max-width: 429px;
margin: 13px auto 0;
}
.sec-title2 .desc.desc-text {
max-width: 540px;
}
.sec-title2 .desc.white-color {
color: #fff;
}
.sec-title2 .desc.desc2 {
max-width: 700px;
margin: 0;
}
.sec-title2 .desc-big {
font-size: 18px;
line-height: 31px;
color: #ffffff;
}
.sec-title3 .sub-text {
font-size: 19px;
line-height: 1.4;
font-weight: 700;
color: #ffffff;
display: block;
margin-bottom: 20px;
}
.sec-title3 .title {
font-size: 42px;
font-weight: 700;
color: #fff;
line-height: 40px;
margin-bottom: 30px;
}
.sec-title3 .desc {
font-size: 19px;
font-weight: 500;
color: #fff;
margin: 0;
}
.sec-title4 .sub-text {
font-size: 16px;
line-height: 1.4;
font-weight: 500;
color: #03228f;
margin: 0 0 10px;
display: block;
text-transform: uppercase;
}
.sec-title4 .title {
font-size: 36px;
line-height: 1.3;
font-weight: 700;
color: #101010;
margin: 0 0 17px;
}
.sec-title4 .heading-line {
height: 5px;
width: 90px;
background: #b9c7f6;
margin: 0px;
position: relative;
border-radius: 30px;
}
.sec-title4 .heading-line:before {
content: "";
position: absolute;
left: 0;
top: -2.7px;
height: 10px;
width: 10px;
border-radius: 50%;
background-color: #0d66d5;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
-webkit-animation-direction: alternate-reverse;
-webkit-animation-name: watermark-animate;
animation-name: watermark-animate;
}
.sec-title4 .desc {
margin: 0;
}
.sec-title4 .desc.desc-big {
font-size: 20px;
line-height: 30px;
margin: 26px 0px 30px 0px;
}
.sec-title5 .logo-icon {
margin-bottom: 15px;
}
.sec-title5 .logo-icon img {
width: 71px;
}
.sec-title5 .title {
font-size: 36px;
line-height: 1.4;
font-weight: 700;
color: #102b3e;
margin-bottom: 10px;
}
.sec-title5 .title span {
color: #f9780f;
}
.sec-title5 .desc {
font-size: 18px;
line-height: 26px;
font-weight: 400;
color: #454545;
max-width: 626px;
margin: 0 auto;
}
.pt-relative {
position: relative !important;
}
.sec-title6 .sub-text {
font-size: 18px;
font-weight: 600;
text-transform: uppercase;
line-height: 32px;
color: #f24c1a;
display: block;
margin-bottom: 5px;
}
.sec-title6 .sub-text.new-text {
margin-bottom: 10px;
}
.sec-title6 .title {
font-size: 36px;
font-weight: 700;
line-height: 1.4;
color: #102b3e;
margin-bottom: 5px;
}
.sec-title6 .title.new-title {
max-width: 700px;
margin: 0 auto;
}
.sec-title6 .desc {
padding-right: 125px;
}
.sec-right {
position: absolute;
right: -17%;
top: 45%;
transform: rotate(90deg);
z-index: 1;
}
.sec-right .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #101010;
letter-spacing: 2px;
margin-bottom: 20px;
}
.sec-left {
transform: rotate(-90deg) translatex(-50%);
transform-origin: left;
position: absolute;
left: -2%;
top: 46%;
z-index: 1;
}
.sec-left .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #101010;
letter-spacing: 2px;
margin-bottom: 20px;
}
.mfp-content .mfp-iframe-scaler .iframe {
top: -30px;
left: -17.2%;
max-width: 770px;
}
/* -----------------------
03. Header Section CSS
--------------------------*/
/*======= Header =======*/
header .header-nav {
position: relative;
background-color: #fff;
}
@media (max-width: 575px) {
header .header-nav {
top: 0;
}
}
header .header-nav .nav-container {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
height: 70px;
}
header .header-nav .nav-container .navbar-toggler {
border: 0;
background-color: transparent;
cursor: pointer;
display: none;
padding: 15px;
margin-left: 30px;
}
header .header-nav .nav-container .navbar-toggler span {
position: relative;
background-color: #ffffff;
border-radius: 0;
display: block;
height: 3px;
margin-top: 5px;
padding: 0;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
width: 30px;
cursor: pointer;
display: block;
}
header .header-nav .nav-container .navbar-toggler span:first-child {
margin-top: 0;
}
header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(1) {
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
top: 8px;
}
header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(2) {
opacity: 0;
}
header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(3) {
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
top: -8px;
}
header .header-nav .nav-container .navbar-close {
position: absolute;
top: 20px;
right: 20px;
z-index: 12;
display: none;
}
header .header-nav .nav-container .navbar-close .cross-wrap {
width: 26px;
height: 26px;
cursor: pointer;
position: relative;
}
header .header-nav .nav-container .navbar-close .cross-wrap span {
position: absolute;
display: block;
width: 100%;
height: 2px;
border-radius: 6px;
background: #fff;
}
header .header-nav .nav-container .navbar-close .cross-wrap span:first-child {
top: 12px;
left: 0;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
header .header-nav .nav-container .navbar-close .cross-wrap span:last-child {
bottom: 12px;
left: 0;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
header .header-nav .nav-container .menu-items {
position: relative;
}
header .header-nav .nav-container .menu-items ul li {
display: inline-block;
}
header .header-nav .nav-container .menu-items ul li.has-submemu {
position: relative;
}
header .header-nav .nav-container .menu-items ul li.has-submemu::after {
font-family: "Font Awesome 5 Pro";
font-weight: 400;
content: "\f107";
position: absolute;
right: 5px;
top: 51%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
@media (max-width: 1599px) {
header .header-nav .nav-container .menu-items ul li.has-submemu::after {
right: -4px;
}
}
header .header-nav .nav-container .menu-items ul li a {
color: #14212b;
padding: 0 15px;
margin: 0 15px;
line-height: 80px;
position: relative;
font-weight: 500;
}
@media (max-width: 1599px) {
header .header-nav .nav-container .menu-items ul li a {
padding: 0 10px;
margin: 0 5px;
}
}
@media (max-width: 1199px) {
header .header-nav .nav-container .menu-items ul li a {
margin: 0 5px;
padding: 0 6px;
font-size: 16px;
}
}
header .header-nav .nav-container .menu-items ul li a:hover {
color: #106eea;
}
header .header-nav .nav-container .menu-items ul li .submenu {
position: absolute;
left: 0;
top: 110%;
width: 200px;
background-color: #fff;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
z-index: 99;
height: auto;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
header .header-nav .nav-container .menu-items ul li .submenu li {
display: block;
}
header .header-nav .nav-container .menu-items ul li .submenu li a {
display: block;
padding: 8px 30px;
position: relative;
-webkit-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
border-radius: 0;
margin: 0 0;
line-height: 30px !important;
color: #616161;
}
header .header-nav .nav-container .menu-items ul li .submenu li a:hover {
background-color: #ff4a17;
color: #fff !important;
}
header .header-nav .nav-container .menu-items ul li .submenu li .submenu {
left: 100%;
top: 50%;
}
header .header-nav .nav-container .menu-items ul li .submenu li:hover .submenu {
top: 0;
}
header .header-nav .nav-container .menu-items ul li:hover > .submenu {
opacity: 1;
visibility: visible;
top: 100%;
}
header .header-nav .nav-container .menu-items ul li .dd-trigger {
display: none;
}
header .header-nav .nav-container .offcanvas-toggler {
cursor: pointer;
border-radius: 5px;
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;
}
header .header-nav .nav-container .offcanvas-toggler span span {
background-color: #fff;
border-radius: 0;
display: block;
height: 3px;
margin-top: 8px;
padding: 0;
-webkit-transition-duration: 300ms;
transition-duration: 300ms;
width: 35px;
cursor: pointer;
}
header .header-nav .nav-container .offcanvas-toggler span span:first-child {
margin-top: 0;
}
@media (max-width: 991px) {
header .header-nav .nav-container .offcanvas-toggler {
display: none;
}
}
header .header-nav .sticky-nav .nav-container.site-logo {
max-height: 50px;
}
header .header-nav .nav-container .menu-social-link {
margin-right: 30px;
}
@media (max-width: 1199px) {
header .header-nav .nav-container .menu-social-link {
margin-right: 15px;
}
}
header .header-nav .nav-container .menu-social-link a {
color: #14212b;
padding: 8px;
}
@media (max-width: 1199px) {
header .header-nav .nav-container .menu-social-link a {
padding: 5px;
}
}
header .header-nav .nav-container .menu-social-link a:hover {
color: #ff4a17;
}
header .header-nav .nav-container.breakpoint-on {
padding: 15px 0;
}
header .header-nav .nav-container.breakpoint-on .nav-menu {
background-image: linear-gradient(20deg, #01182f 1%, #01aeb1 100%);
position: fixed;
top: 0;
left: -300px;
z-index: 9999;
width: 200px;
height: 100%;
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
padding: 0;
-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
display: block;
overflow-x: hidden;
overflow-y: scroll;
padding-top: 70px;
}
header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li {
display: block;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li::after {
display: none;
}
header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li a {
display: block;
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
color: #fff !important;
line-height: 45px !important;
font-size: 15px;
margin: 0 0;
padding: 0px 15px;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.submenu {
width: 100%;
position: relative;
top: 0;
left: 0;
-webkit-box-shadow: none;
box-shadow: none;
background-color: transparent;
visibility: visible;
opacity: 1;
display: none;
-webkit-transition: none;
transition: none;
box-shadow: none;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.submenu
li
a {
color: #fff;
padding: 0px 20px 0 40px;
line-height: 45px !important;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.submenu
li
a:hover {
background-color: transparent;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.submenu
li
.submenu
li
a {
padding: 0px 20px 0 50px;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-menu
.menu-items
ul
li
.dd-trigger {
display: block;
position: absolute;
right: 0;
height: 45px;
width: 45px;
top: 0;
border-left: 1px solid rgba(255, 255, 255, 0.5);
z-index: 2;
background: transparent;
text-align: center;
line-height: 45px;
cursor: pointer;
color: #fff;
font-size: 20px;
}
header .header-nav .nav-container.breakpoint-on .nav-menu.menu-on {
left: 0;
}
header .header-nav .nav-container.breakpoint-on .nav-pushed-item,
header .header-nav .nav-container.breakpoint-on .navbar-close,
header .header-nav .nav-container.breakpoint-on .navbar-toggler {
display: block;
}
header .header-nav .nav-container.breakpoint-on .nav-pushed-item {
text-align: center;
margin-top: 40px;
}
header .header-nav .nav-container.breakpoint-on .nav-pushed-item .main-btn {
background-color: #fff;
color: #14212b;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-pushed-item
.main-btn::after {
background-color: #ff4a17;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-pushed-item
.main-btn:hover {
color: #fff;
}
header
.header-nav
.nav-container.breakpoint-on
.nav-pushed-item
.menu-social-link
a {
color: #fff;
padding: 10px;
}
header .header-nav::before {
content: "";
left: 0;
top: 0;
background-color: #ff4a17;
width: 445px;
height: 100%;
position: absolute;
-webkit-clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
}
@media (max-width: 1599px) {
header .header-nav::before {
width: 265px;
-webkit-clip-path: polygon(0 0, 100% 0%, 185px 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0%, 185px 100%, 0% 100%);
}
}
@media (max-width: 1199px) {
header .header-nav::before {
width: 245px;
-webkit-clip-path: polygon(0 0, 100% 0%, 165px 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0%, 165px 100%, 0% 100%);
}
}
@media (max-width: 991px) {
header .header-nav::before {
width: 220px;
}
}
header.sticky-header.sticky-on .header-nav {
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
-webkit-animation: sticky 1.2s;
animation: sticky 1.2s;
background-color: #fff;
}
header.sticky-header.sticky-on .header-nav .nav-container .menu-items ul li a {
line-height: 100px;
}
header.sticky-header.header-two.sticky-on .header-nav {
/* background: #000f21; */
background-image: linear-gradient(120deg, #01182f 1%, #01aeb1 100%);
}
@media (max-width: 767px) {
header .header-topbar {
display: none;
}
}
header .header-topbar .header-topbar-inner {
border-bottom: 2px solid #ffffff;
padding: 15px 0;
}
@media (max-width: 767px) {
header .header-topbar .contact-info,
header .header-topbar .social-links {
text-align: center;
}
}
header .header-topbar .contact-info li,
header .header-topbar .social-links li {
display: inline-block;
}
header .header-topbar .contact-info li,
header .header-topbar .contact-info li a,
header .header-topbar .social-links li,
header .header-topbar .social-links li a {
color: #ffffff;
}
header .header-topbar .contact-info li a:hover,
header .header-topbar .social-links li a:hover {
color: #106eea;
}
header .header-topbar .contact-info li {
margin-right: 50px;
}
@media (max-width: 1199px) {
header .header-topbar .contact-info li {
margin-right: 20px;
}
}
@media (max-width: 991px) {
header .header-topbar .contact-info li {
margin-right: 10px;
font-size: 15px;
}
}
header .header-topbar .contact-info li i {
margin-right: 15px;
color: #c3d5ed;
}
header .header-topbar .social-links li {
margin-left: 15px;
font-size: 15px;
}
header.header-two {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: auto;
z-index: 999;
}
header.header-two .header-nav {
background-color: transparent;
}
header.header-two .header-nav::before {
display: none;
}
header.header-two .header-nav .nav-container .menu-items ul li a,
header.header-two
.header-nav
.nav-container
.menu-items
ul
li.has-submemu::after {
color: #fff;
}
header.header-two .header-nav .nav-container .menu-items ul li a:hover {
color: #03228f;
}
header.header-two
.header-nav
.nav-container
.menu-items
ul
li
.submenu
li
a:hover {
background-color: #14212b;
}
header.header-two .header-topbar .contact-info li,
header.header-two .header-topbar .contact-info li a,
header.header-two .header-topbar .social-links li,
header.header-two .header-topbar .social-links li a {
color: #ffffff;
}
header.header-two .header-topbar .contact-info li a:hover,
header.header-two .header-topbar .social-links li a:hover {
color: #106eea;
}
header.header-two .header-topbar .social-links li a {
color: #ffffff;
}
header.header-three {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: auto;
z-index: 999;
}
@media (min-width: 1800px) {
header.header-three .container-fluid {
max-width: 1780px;
}
}
header.header-three .header-nav {
background-color: transparent;
}
header.header-three .header-nav::before {
display: none;
}
/*======= Off Canvas =======*/
.offcanvas-wrapper {
position: fixed;
width: 450px;
top: 0;
min-height: 100vh;
right: -450px;
-webkit-transition: all 0.4s;
transition: all 0.4s;
z-index: 999;
opacity: 0;
visibility: hidden;
}
.offcanvas-wrapper.show-offcanvas {
right: -10px;
visibility: visible;
opacity: 1;
}
.offcanvas-wrapper .offcanvas-overly {
position: fixed;
height: 100vh;
width: 100%;
z-index: 98;
background-color: #1e1e1e;
left: 0;
top: 0;
-webkit-transition: all 0.4s;
transition: all 0.4s;
cursor: pointer;
opacity: 0;
visibility: hidden;
}
.offcanvas-wrapper .offcanvas-overly.show-overly {
visibility: visible;
opacity: 0.5;
}
.offcanvas-wrapper .offcanvas-widget {
background-image: linear-gradient(-170deg, #01182f 10%, #01aeb1 100%);
width: 100%;
height: 100vh;
padding: 70px 40px;
position: relative;
z-index: 99;
overflow-x: hidden;
overflow-y: scroll;
}
.offcanvas-wrapper .offcanvas-widget a.offcanvas-close {
position: absolute;
right: 30px;
top: 30px;
font-size: 28px;
color: #fff;
}
.offcanvas-wrapper .offcanvas-widget .widget {
margin-bottom: 40px;
font-size: 16px;
text-align: justify;
}
.offcanvas-wrapper .offcanvas-widget .widget .widget-title {
font-size: 22px;
margin-bottom: 20px;
padding-bottom: 15px;
position: relative;
}
.offcanvas-wrapper .offcanvas-widget .widget .widget-title::before,
.offcanvas-wrapper .offcanvas-widget .widget .widget-title::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 2px;
width: 10px;
background-color: #fff;
}
.offcanvas-wrapper .offcanvas-widget .widget .widget-title::after {
width: 30px;
left: 15px;
}
.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li {
display: inline-block;
margin-right: 15px;
}
.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li a {
height: 35px;
width: 35px;
line-height: 35px;
text-align: center;
border-radius: 50%;
font-size: 15px;
padding: 10px 13px;
background-color: #fff;
color: #03305c;
}
.offcanvas-wrapper .offcanvas-widget .widget.social-link ul li a:hover {
background-image: linear-gradient(140deg, #03305c 0%, #00adb0 100%);
color: #fff;
}
.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li:not(:last-child),
.offcanvas-wrapper
.offcanvas-widget
.widget.contact-info-widget
li:not(:last-child) {
margin-bottom: 10px;
}
.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li i,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li i {
color: #fff;
position: relative;
top: 2px;
margin-right: 10px;
font-size: 18px;
}
.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li a,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li a {
color: #616161;
}
.offcanvas-wrapper .offcanvas-widget .widget.tweets-widget li a span,
.offcanvas-wrapper .offcanvas-widget .widget.contact-info-widget li a span {
font-weight: 600;
}
/* ------------------------------------
04. About Section CSS
---------------------------------------*/
.rs-about .rs-animation-shape {
position: relative;
z-index: 1;
}
.rs-about .rs-animation-shape .pattern {
position: absolute;
top: 22px;
}
.rs-about .rs-animation-shape .middle {
position: absolute;
left: -165px;
top: -56px;
z-index: -1;
}
.rs-about .rs-animation-shape .bottom-shape {
position: absolute;
left: -165px;
top: 395px;
z-index: -1;
}
.rs-about .rs-animation-shape .middle-image2 {
position: absolute;
top: -80px;
left: -25px;
z-index: -1;
}
.rs-about .shape-image {
position: relative;
}
.rs-about .shape-image .top {
position: absolute;
right: 51%;
top: -125px;
}
.rs-about .shape-image .bottom {
position: absolute;
right: 0;
top: 145px;
}
.rs-about.style2 {
background-color: #f6f7f9;
border-radius: 0px 270px 0px 0px;
position: relative;
}
.rs-about.style2 .image-part {
position: absolute;
left: 35px;
}
.rs-about.style2 .image-part img {
max-width: 50%;
}
.rs-about.style2.modify1 {
background-color: unset;
border-radius: unset;
position: unset;
}
.rs-about.style2.modify1 .images {
left: unset;
position: unset;
}
.rs-about.style2.modify1 .images img {
max-width: 600px;
}
.rs-about.style2.modify2 {
border-radius: unset;
position: relative;
}
.rs-about.style2.modify2 .about-img img {
max-width: 690px;
}
.rs-about.style3 {
position: relative;
}
.rs-about.style3 .rs-animation-image .pattern-img {
text-align: center;
z-index: -1;
}
.rs-about.style3 .rs-animation-image .middle-img {
position: absolute;
left: 90px;
top: -20px;
}
.rs-about.style4 .about-content .logo-img {
margin-bottom: 15px;
}
.rs-about.style4 .about-content .logo-img img {
width: 71px;
}
.rs-about.style4 .about-content .title {
font-size: 36px;
line-height: 46px;
font-weight: 700;
color: #102b3e;
margin-bottom: 30px;
padding-right: 24px;
}
.rs-about.style4 .about-content .title span {
color: #f9780f;
}
.rs-about.style4 .about-content p {
padding-right: 121px;
margin-bottom: 40px;
}
.rs-about .software-img img {
max-width: 600px;
}
/* ------------------------------------
05. Slider Section CSS
---------------------------------------*/
.rs-slider.style1 .slider-content {
padding: 260px 0 260px;
}
.rs-slider.style1 .slider-content .sl-sub-title {
font-size: 40px;
line-height: 45px;
font-weight: 600;
color: #ffffff;
margin-bottom: 25px;
}
.rs-slider.style1 .slider-content .sl-title {
font-size: 100px;
line-height: 84px;
font-weight: 700;
color: #ffffff;
margin-bottom: 40px;
}
.rs-slider.style1 .slider-content .sl-desc {
font-size: 20px;
line-height: 28px;
font-weight: 500;
color: #ffffff;
margin-bottom: 40px;
}
.rs-slider.style1 .slider-content .slider-btn li {
display: inline-block;
margin-right: 30px;
}
.rs-slider.style1 .slider-content .slider-btn li:last-child {
margin-right: 0;
}
.rs-slider.style1 .slider-content.slide1 {
/* background: url(../images/Digimerlin-1.png); */
background-image: linear-gradient(120deg, #01182f 1%, #01aeb1 100%);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 260px 0 270px;
border-radius: 0px 0px 999px 0px;
}
.rs-slider.style1 .slider-content.slide2 {
/* background: url(../images/Digimerlin-2.png); */
background-image: linear-gradient(120deg, #01182f 1%, #01aeb1 100%);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 0px 0px 999px 0px;
}
.rs-slider.style1 .owl-nav .owl-next,
.rs-slider.style1 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 60px;
height: 60px;
line-height: 60px;
border-radius: 50%;
background: #ffffff;
text-align: center;
color: #101010;
transition: all 0.5s;
transition-delay: 0.7s;
opacity: 0;
visibility: hidden;
}
.rs-slider.style1 .owl-nav .owl-next i:before,
.rs-slider.style1 .owl-nav .owl-prev i:before {
content: "\f112";
font-family: Flaticon;
}
.rs-slider.style1 .owl-nav .owl-next:hover,
.rs-slider.style1 .owl-nav .owl-prev:hover {
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
color: #ffffff;
}
.rs-slider.style1 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.style1 .owl-nav .owl-next i:before {
content: "\f113";
}
.rs-slider.style1:hover .owl-nav .owl-next,
.rs-slider.style1:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.style1:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
.rs-slider.style2 .slider-content {
padding: 140px 0 200px;
}
.rs-slider.style2 .slider-content .sl-img {
margin-bottom: 20px;
}
.rs-slider.style2 .slider-content .sl-img img {
width: 90px;
height: 90px;
}
.rs-slider.style2 .slider-content .sl-title {
font-size: 78px;
line-height: 80px;
font-weight: 700;
color: #ffffff;
letter-spacing: 4px;
margin-bottom: 20px;
}
.rs-slider.style2 .slider-content .sl-title2 {
font-size: 73px;
line-height: 80px;
font-weight: 900;
color: #ffffff;
margin-bottom: 30px;
}
.rs-slider.style2 .slider-content .sl-desc {
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #ffffff;
max-width: 600px;
margin-bottom: 20px;
}
.rs-slider.style2 .slider-content.slide1 {
background: url(assets/images/slider/style2/2.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.style2 .slider-content.slide2 {
background: url(assets/images/slider/style2/1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.rs-slider.style2 .owl-nav .owl-next,
.rs-slider.style2 .owl-nav .owl-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
width: 60px;
height: 60px;
line-height: 60px;
border-radius: 50%;
background: #ffffff;
text-align: center;
color: #101010;
transition: all 0.5s;
transition-delay: 0.7s;
opacity: 0;
visibility: hidden;
}
.rs-slider.style2 .owl-nav .owl-next i:before,
.rs-slider.style2 .owl-nav .owl-prev i:before {
content: "\f112";
font-family: Flaticon;
}
.rs-slider.style2 .owl-nav .owl-next:hover,
.rs-slider.style2 .owl-nav .owl-prev:hover {
background: #106eea;
color: #ffffff;
}
.rs-slider.style2 .owl-nav .owl-next {
right: 30px;
left: unset;
}
.rs-slider.style2 .owl-nav .owl-next i:before {
content: "\f113";
}
.rs-slider.style2:hover .owl-nav .owl-next,
.rs-slider.style2:hover .owl-nav .owl-prev {
left: 50px;
transition-delay: 0s;
visibility: visible;
opacity: 1;
}
.rs-slider.style2:hover .owl-nav .owl-next {
right: 50px;
left: unset;
}
/* ------------------------------------
06. Contact Section CSS
---------------------------------------*/
.rs-contact .contact-wrap {
background: #ffffff;
padding: 25px 40px 50px;
border-radius: 10px 10px 10px 10px;
}
.rs-contact .contact-wrap .content-part {
text-align: center;
}
.rs-contact .contact-wrap .content-part .title {
font-size: 24px;
line-height: 40px;
font-weight: 700;
color: #0a0a0a;
margin: 0;
}
.rs-contact .contact-wrap .content-part .desc {
margin: 0;
}
.rs-contact .contact-wrap .from-control {
padding: 12px 16px 12px 16px;
border-radius: 5px 5px 5px 5px;
border-style: solid;
border-color: #02010100;
background-color: #f6f7f9;
color: #454545;
width: 100%;
opacity: 4;
}
.rs-contact .contact-wrap ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-contact .contact-wrap ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-contact .contact-wrap :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-contact .contact-wrap :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
.rs-contact .contact-box {
background-image: linear-gradient(0deg, #01182f 0%, #00adb0 100%);
padding: 80px 30px 80px 30px;
border-radius: 5px 5px 5px 5px;
}
.rs-contact .contact-box .address-box {
display: flex;
}
.rs-contact .contact-box .address-box .address-icon {
background-image: linear-gradient(275deg, #ffffff 0%, #fcfcff 100%);
min-width: 48px;
height: 48px;
line-height: 48px;
text-align: center;
width: 40px;
border-radius: 50%;
margin-right: 23px;
}
.rs-contact .contact-box .address-box .address-icon i {
font-size: 20px;
line-height: 20px;
color: #024067;
}
.rs-contact .contact-box .address-box .address-text .label {
font-size: 16px;
font-weight: 600;
color: #ffffff;
display: block;
margin-bottom: 5px;
}
.rs-contact .contact-box .address-box .address-text a {
color: #ffffff;
}
.rs-contact .contact-box .address-box .address-text a:hover {
color: #ccc;
}
.rs-contact .contact-box .address-box .address-text .desc {
color: #ffffff;
}
.rs-contact .contact-box.onepage-box {
background-image: linear-gradient(220deg, #f27c1e 0%, #dd4c23 79%);
}
.rs-contact .contact-box.onepage-box .address-box .address-icon {
background: white-color;
}
.rs-contact .contact-box.onepage-box .address-box .address-icon i {
color: #f2541b;
}
.rs-contact .contact-widget .from-control {
padding: 20px 20px 20px 20px;
border-radius: 5px 5px 5px 5px;
border-style: solid;
border-width: 0px 0px 0px 0px;
background-color: #f6f7f9;
width: 100%;
max-width: 100%;
border-bottom: 1px solid #00adb0;
}
.rs-contact .contact-widget textarea {
height: 120px;
}
.rs-contact .contact-widget ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-contact .contact-widget ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-contact .contact-widget :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-contact .contact-widget :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
.rs-contact .contact-widget.onepage-style .from-control {
background: #fff;
}
.rs-contact .map-canvas {
overflow: hidden;
}
.rs-contact .map-canvas iframe {
float: left;
width: 100%;
height: 620px;
border: unset;
}
.rs-contact.style2 .contact-box-wrap {
background-image: linear-gradient(270deg, #4e95ed 0%, #03228f 100%);
border-radius: 5px 5px 5px 5px;
padding: 90px 60px 60px 60px;
}
.rs-contact.style2 .contact-box-wrap .from-control {
padding: 16px 16px 16px 16px;
border-radius: 5px 5px 5px 5px;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #f1f5fb;
width: 100%;
max-width: 100%;
}
.rs-contact.style2 .contact-box-wrap textarea {
height: 120px;
}
.rs-contact.style2 .contact-box-wrap ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-contact.style2 .contact-box-wrap ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-contact.style2 .contact-box-wrap :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-contact.style2 .contact-box-wrap :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
.rs-contact.negative-margin {
margin-top: -315px;
}
/* ------------------------------------
14. Counter Section CSS
---------------------------------------*/
.rs-counter {
margin-top: -78px;
position: absolute;
min-width: 860px;
right: 100px;
}
.rs-counter .counter-top-area .counter-list .counter-text .count-number {
margin-bottom: 7px;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #03305c;
font-size: 48px;
font-weight: 900;
position: relative;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus {
padding-right: 30px !important;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus:before {
content: "+";
position: absolute;
right: 0;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k {
padding-right: 30px !important;
}
.rs-counter
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k:before {
content: "k";
position: absolute;
right: 0;
}
.rs-counter .counter-top-area .counter-list .counter-text .title {
font-size: 19px;
line-height: 29px;
color: #333333;
font-weight: 600;
margin: 0;
}
.rs-counter.style2 {
margin-top: unset;
position: unset;
min-width: unset;
right: unset;
}
.rs-counter.style2 .counter-top-area .counter-list {
display: flex;
align-items: center;
}
.rs-counter.style2 .counter-top-area .counter-list .count-icon {
width: 80px;
display: inline-block;
padding-right: 15px;
}
.rs-counter.style2 .counter-top-area .counter-list .counter-text .count-number {
margin-bottom: 7px;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #ffffff;
font-size: 53px;
font-weight: 700;
-webkit-text-fill-color: #042ba1;
-webkit-text-stroke-width: 1px;
position: relative;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus {
padding-right: 22px;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus:before {
content: "+";
position: absolute;
right: 0;
top: 25px;
font-size: 35px;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k {
padding-right: 22px;
}
.rs-counter.style2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k:before {
content: "k";
position: absolute;
right: 0;
top: 25px;
font-size: 35px;
}
.rs-counter.style2 .counter-top-area .counter-list .counter-text .title {
color: #ffffff;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
margin: 0;
}
.rs-counter.style3 {
margin-top: unset;
position: unset;
min-width: unset;
right: unset;
}
.rs-counter.style3
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #03228f;
font-size: 45px;
font-weight: 700;
padding: 0px 0px 0px 0px;
}
.rs-counter.style3
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.orange-color {
color: #dd4c23;
}
.rs-counter.style3 .counter-top-area .counter-list .counter-text .title {
font-size: 18px;
font-weight: 600;
color: #101010;
}
.rs-counter.style3.modify1 {
background-image: linear-gradient(180deg, #03228f 0%, #4e95ed 100%);
}
.rs-counter.style3.modify1 .counter-top-area {
text-align: center;
}
.rs-counter.style3.modify1
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #ffffff;
}
.rs-counter.style3.modify1
.counter-top-area
.counter-list
.counter-text
.count-number
.prefix {
font-size: 16px;
color: #ffffff;
font-weight: 700;
}
.rs-counter.style3.modify1
.counter-top-area
.counter-list
.counter-text
.title {
color: #ffffff;
}
.rs-counter.style3.modify2 .counter-top-area {
text-align: center;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number {
padding: 0px 0px 10px 0px;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.purple-color {
color: #7d88fc;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.blue-color {
color: #0073ff;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.pink-color {
color: #f1491a;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.paste-color {
color: #39ebe6;
}
.rs-counter.style3.modify2
.counter-top-area
.counter-list
.counter-text
.title {
color: #454545;
font-size: 20px;
font-weight: 600;
}
.rs-counter.style4 {
margin-top: -130px;
position: unset;
min-width: unset;
right: unset;
}
.rs-counter.style4 .counter-top-area {
text-align: center;
}
.rs-counter.style4 .counter-top-area .counter-list .counter-text .count-number {
margin-bottom: 7px;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count {
color: #fff;
font-size: 52px;
font-weight: 700;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus {
padding-right: 30px !important;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.plus:before {
content: "+";
position: absolute;
right: 0;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k {
padding-right: 30px !important;
}
.rs-counter.style4
.counter-top-area
.counter-list
.counter-text
.count-number
.rs-count.k:before {
content: "k";
position: absolute;
right: 0;
}
.rs-counter.style4 .counter-top-area .counter-list .counter-text .title {
color: #fff;
font-size: 20px;
font-weight: 400;
}
/* ------------------------------------
07. Skill-bar Section CSS
---------------------------------------*/
.rs-skillbar.style1 .cl-skill-bar .skillbar-title {
font-weight: 500;
font-size: 14px;
color: #212121;
}
.rs-skillbar.style1 .cl-skill-bar .skillbar {
background: #eeeeee;
height: 7px;
margin: 10px 0 24px;
position: relative;
width: 100%;
}
.rs-skillbar.style1 .cl-skill-bar .skillbar .skillbar-bar {
background: #106eea;
width: 0;
margin-bottom: 0;
height: 7px;
line-height: 7px;
background-color: transparent;
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
background-size: 1rem 1rem;
}
.rs-skillbar.style1 .cl-skill-bar .skillbar .skill-bar-percent {
height: 30px;
line-height: 30px;
position: absolute;
right: 0;
top: -38px;
font-size: 16px;
font-weight: 700;
color: #0a0a0a;
}
.rs-skillbar.style1.modify1 .cl-skill-bar .skillbar-title {
text-transform: uppercase;
}
.rs-skillbar.style1.modify1 .cl-skill-bar .skillbar {
background-color: #dfedfe;
}
.rs-skillbar.style1.modify1 .cl-skill-bar .skillbar .skillbar-bar {
background: #03228f;
}
.rs-skillbar.style1.modify1 .cl-skill-bar .skillbar .skill-bar-percent {
height: 30px;
line-height: 30px;
position: absolute;
right: 0;
top: -38px;
font-size: 16px;
font-weight: 700;
color: #0a0a0a;
}
.rs-skillbar.style1.modify1
.cl-skill-bar
.skillbar
.skill-bar-percent.white-color {
color: #fff;
}
.rs-skillbar.style1.modify2 .cl-skill-bar .skillbar-title {
text-transform: uppercase;
}
.rs-skillbar.style1.modify2 .cl-skill-bar .skillbar {
background: #fff;
border: 1px solid #0b70e1;
height: 9px;
border-radius: 0;
overflow: visible;
padding: 1px;
}
.rs-skillbar.style1.modify2 .cl-skill-bar .skillbar .skillbar-bar {
background: #007bff;
background-image: linear-gradient(250deg, #0b70e1 19%, #03228f 100%);
height: 5px;
}
.rs-skillbar.style1.modify2 .cl-skill-bar .skillbar .skill-bar-percent {
right: 70px;
color: #454545;
font-weight: 400;
}
.rs-skillbar.style1.modify3 {
padding: 0 120px 0 0;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar {
height: 8px;
line-height: 8px;
padding: 1px 1px 1px 1px;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #ff571c;
background-color: #bf1f1f00;
border-radius: 3px 3px 3px 3px;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar .skillbar-bar {
height: 100%;
background: #ff571c;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar .skill-bar-percent {
right: 70px;
color: #454545;
font-weight: 400;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar.purple-style {
border-color: #7e06e4;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar.purple-style .skillbar-bar {
background: #7e06e4;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar.blue-style {
border-color: #0073ff;
}
.rs-skillbar.style1.modify3 .cl-skill-bar .skillbar.blue-style .skillbar-bar {
background: #0073ff;
}
.rs-skillbar.style1.home4 .skillbar .skillbar-bar {
background-color: #fd6509;
background-image: linear-gradient(
45deg,
rgba(255, 255, 255, 0.15) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, 0.15) 50%,
rgba(255, 255, 255, 0.15) 75%,
transparent 75%,
transparent
);
}
.rs-skillbar.style1.home4 .skillbar .skillbar-bar.paste-bg {
background-color: #03dea8;
}
.rs-skillbar.style1.home4 .skillbar .skillbar-bar.blue-bg {
background-color: #0a99fd;
}
.rs-skillbar.style1.home4 .skillbar .skillbar-bar.pink-bg {
background-color: #f00674;
}
/* ------------------------------------
08. Services Section CSS
---------------------------------------*/
.rs-services.main-home .services-item {
margin: 0px 20px 0px 20px;
padding: 60px 25px 50px 35px;
background-color: #ffffff;
border-radius: 10px 10px 10px 10px;
}
.rs-services.main-home .services-item .services-icon {
margin-bottom: 30px;
}
.rs-services.main-home .services-item .services-icon .image-part img {
width: 80px;
height: 80px;
}
.rs-services.main-home
.services-item
.services-content
.services-text
.services-title {
font-size: 22px;
font-weight: 600;
line-height: 30px;
margin-bottom: 10px;
}
.rs-services.main-home
.services-item
.services-content
.services-text
.services-title
a {
color: #101010;
}
.rs-services.main-home
.services-item
.services-content
.services-text
.services-title
a:hover {
color: #106eea;
}
.rs-services.main-home .services-item .services-content .services-desc p {
color: #444;
margin: 0;
text-align: justify;
}
.rs-services.main-home.style1 {
position: relative;
z-index: 111;
margin-top: -200px;
}
.rs-services.main-home.style1 .services-item {
text-align: center;
background-color: #ffffff;
border-radius: 10px 10px 10px 10px;
box-shadow: 0px 0px 48px 0px rgba(162, 162, 162, 0.5);
margin: 0px -10px 0px 0px;
padding: 40px;
}
.rs-services.main-home.style1 .services-item .services-icon {
margin-bottom: 15px;
}
.rs-services.main-home.style1 .services-item .services-icon .image-part img {
width: 80px;
height: 80px;
}
.rs-services.main-home.style1
.services-item
.services-content
.services-text
.services-title {
margin-bottom: 5px;
}
/* ------------------------------------
09. Process Section CSS
---------------------------------------*/
.rs-process.modify1 {
background-image: linear-gradient(120deg, #01182f 10%, #01aeb1 100%);
border-radius: 230px 0px 230px 0px;
}
.rs-process.modify1 .rs-addon-number .number-text {
margin: 0px 25px 0px 30px;
padding: 0px 48px 11px 48px;
background-image: linear-gradient(180deg, #00adb0 19%, #03305c 100%);
border-radius: 10px 10px 50px 10px;
position: relative;
width: 65%;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area {
font-size: 41px;
font-weight: 600;
line-height: 62px;
position: relative;
color: #03305c;
display: inline-block;
width: 70px;
height: 70px;
left: -70px;
top: -30px;
text-align: center;
background: #fff;
transition: all 0.3s ease 0s;
border-radius: 50%;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.green-bg {
background: #3bcd4c;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.plum-bg {
background: #9439e9;
}
.rs-process.modify1 .rs-addon-number .number-text .number-area.pink-bg {
background: #f30876;
}
.rs-process.modify1 .rs-addon-number .number-text .number-title .title {
color: #ffffff;
margin-bottom: 15px;
margin-top: -30px;
}
.rs-process.modify1 .rs-addon-number .number-text .number-txt {
color: #ffffff;
margin-bottom: 40px;
padding-right: 0;
}
.rs-process .shape-animation {
position: relative;
}
.rs-process .shape-animation .shape-process {
position: absolute;
left: 180px;
top: 50px;
}
.rs-process .shape-animation .shape-process .pulse {
margin-top: 60px;
margin-left: 60px;
animation: pulse-border 2000ms ease-out infinite;
}
/*------------------------------------
10. Pricing Section CSS
------------------------------------*/
.rs-pricing {
margin-top: -150px;
position: relative;
}
.rs-pricing .pricing-table {
padding: 27px 40px 0px 40px;
box-shadow: 0 0 30px #eee;
background: #ffffff;
border-radius: 10px 10px 10px 10px;
position: relative;
text-align: center;
margin: 0px 7px 0px 0px;
}
.rs-pricing .pricing-table .pricing-badge {
top: 30px;
left: 0px;
padding: 10px 23px 11px 23px;
background-color: #1273eb;
border-radius: 0px 30px 30px 0px;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
position: absolute;
color: #fff;
line-height: 1;
z-index: 1;
}
.rs-pricing .pricing-table .pricing-badge.white-color-bg {
background: #ffffff;
color: #106eea;
}
.rs-pricing .pricing-table .pricing-badge.secondary-bg {
background: #03228f;
}
.rs-pricing .pricing-table .pricing-icon {
margin-bottom: 60px;
}
.rs-pricing .pricing-table .pricing-icon img {
width: 110px;
}
.rs-pricing .pricing-table .pricing-table-price {
margin-bottom: 30px;
}
.rs-pricing
.pricing-table
.pricing-table-price
.pricing-table-bags
.pricing-currency {
font-size: 25px;
font-weight: 600;
color: #101010;
}
.rs-pricing
.pricing-table
.pricing-table-price
.pricing-table-bags
.table-price-text {
font-size: 52px;
font-weight: 600;
color: #101010;
}
.rs-pricing
.pricing-table
.pricing-table-price
.pricing-table-bags
.table-period {
color: #435761;
font-size: 16px;
font-weight: 500;
display: block;
}
.rs-pricing .pricing-table .pricing-table-body {
margin-bottom: 10px;
border-style: solid;
border-width: 1px 0px 0px 0px;
border-color: #ebebeb;
padding: 18px 15px 4px 15px;
}
.rs-pricing .pricing-table .pricing-table-body li {
text-align: left;
padding: 9px 0px 9px 0px;
margin-bottom: 0px;
font-size: 15px;
font-weight: 400;
}
.rs-pricing .pricing-table .pricing-table-body li i {
float: right;
margin-right: 0;
color: #106eea;
}
.rs-pricing .pricing-table.primary-bg {
background-image: linear-gradient(70deg, #0b70e1 0%, #03228f 100%);
}
.rs-pricing
.pricing-table.primary-bg
.pricing-table-price
.pricing-table-bags
.pricing-currency {
color: #ffffff;
}
.rs-pricing
.pricing-table.primary-bg
.pricing-table-price
.pricing-table-bags
.table-price-text {
color: #ffffff;
}
.rs-pricing
.pricing-table.primary-bg
.pricing-table-price
.pricing-table-bags
.table-period {
color: #ffffff;
}
.rs-pricing .pricing-table.primary-bg .pricing-table-body {
border-color: #1f71c1;
}
.rs-pricing .pricing-table.primary-bg .pricing-table-body li {
color: #ffffff;
}
.rs-pricing .pricing-table.primary-bg .pricing-table-body li i {
color: #ffffff;
}
.rs-pricing .pricing-table.light-gray-bg {
background-color: #f3f7ff;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #ebebeb;
border-radius: 5px 5px 5px 5px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
}
.rs-pricing
.pricing-table.light-gray-bg
.pricing-table-price
.pricing-table-bags
.pricing-currency {
color: #03228f;
}
.rs-pricing
.pricing-table.light-gray-bg
.pricing-table-price
.pricing-table-bags
.table-price-text {
color: #03228f;
}
.rs-pricing .pricing-table.light-gray-bg .pricing-table-body li i {
color: #101010;
}
.rs-pricing .pricing-table.new-style {
box-shadow: unset;
background: unset;
border-style: solid;
border-color: #ebebeb;
border-width: 1px 1px 1px 1px;
}
.rs-pricing .pricing-table.new-style2 {
background: unset;
border-style: solid;
border-color: #ebebeb;
border-width: 1px 1px 1px 1px;
}
.rs-pricing.style2 {
margin-top: unset;
position: unset;
}
.rs-pricing.style2.modify1 .pricing-table .pricing-table-body li i {
color: #03228f;
}
.rs-pricing.style2.modify1 {
background-color: unset;
}
/*------------------------------------
11. Blog Section CSS
------------------------------------*/
.rs-blog .blog-item {
transition: all 500ms ease;
border-radius: 5px;
box-shadow: 0 6px 25px rgba(12, 89, 219, 0.09);
margin-top: 15px;
padding: 15px;
background: #fff;
}
.rs-blog .blog-item .image-wrap {
position: relative;
}
.rs-blog .blog-item .image-wrap .post-categories {
position: absolute;
z-index: 11;
bottom: 20px;
right: 20px;
z-index: 10;
}
.rs-blog .blog-item .image-wrap .post-categories li {
display: inline-block;
}
.rs-blog .blog-item .image-wrap .post-categories li a {
border-radius: 30px;
color: #ffffff;
background: #03228f;
background: -moz-linear-gradient(
left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
background: -webkit-linear-gradient(
left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
background: linear-gradient(
to right,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#03228f', endColorstr='#0b70e1', GradientType=1);
transition: 0.4s;
font-size: 14px;
font-weight: 500;
padding: 6px 20px;
display: block;
}
.rs-blog .blog-item .image-wrap .post-categories li a:hover {
background: linear-gradient(
to left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
}
.rs-blog .blog-item .blog-content {
padding: 30px 15px 18px 15px;
background: #fff;
}
.rs-blog .blog-item .blog-content .blog-meta {
margin-bottom: 10px;
display: flex;
}
.rs-blog .blog-item .blog-content .blog-meta .date {
font-size: 14px;
color: #454545;
}
.rs-blog .blog-item .blog-content .blog-meta .date i {
color: #106eea;
padding-right: 5px;
}
.rs-blog .blog-item .blog-content .blog-meta .admin {
font-size: 15px;
font-weight: 500;
color: #454545;
margin-left: 25px;
}
.rs-blog .blog-item .blog-content .blog-meta .admin i {
color: #106eea;
padding-right: 5px;
}
.rs-blog .blog-item .blog-content .blog-title {
font-weight: 600;
font-size: 20px;
margin-bottom: 12px;
line-height: 1.4;
}
.rs-blog .blog-item .blog-content .blog-title a {
color: #101010;
}
.rs-blog .blog-item .blog-content .blog-title a:hover {
color: #106eea;
}
.rs-blog .blog-item .blog-content .desc {
margin-bottom: 15px;
}
.rs-blog .owl-stage-outer {
padding-bottom: 10px;
margin-top: -10px;
}
.rs-blog .blog-item:hover {
transform: translateY(-10px);
}
.rs-blog.style2 .blog-item {
transition: all 500ms ease;
border-radius: 5px;
box-shadow: 0 6px 25px rgba(12, 89, 219, 0.09);
margin-top: 15px;
padding: 15px;
}
.rs-blog.style2 .blog-item .image-wrap .post-categories li a {
border-radius: 8px 8px 8px 8px;
background-image: linear-gradient(150deg, #da4511 0%, #e7b723 100%);
}
.rs-blog.style2 .blog-item .blog-content {
padding: 30px 15px 18px 15px;
background: #fff;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta .date {
font-size: 14px;
color: #454545;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta .date i {
color: #106eea;
padding-right: 5px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta .admin {
font-size: 15px;
font-weight: 500;
color: #454545;
margin-left: 25px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta .admin i {
color: #106eea;
padding-right: 5px;
}
.rs-blog.style2 .blog-item .blog-content .blog-title a {
color: #101010;
}
.rs-blog.style2 .blog-item .blog-content .blog-title a:hover {
color: #ff5600;
}
.rs-inner-blog .blog-item {
background: #fff;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
border-radius: 15px;
padding: 15px;
transition: 0.3s;
}
.rs-inner-blog .blog-item .blog-img {
position: relative;
}
.rs-inner-blog .blog-item .blog-img a img {
border-radius: 10px;
}
.rs-inner-blog .blog-item .blog-img .post-categories {
position: absolute;
z-index: 11;
bottom: 20px;
right: 20px;
z-index: 10;
}
.rs-inner-blog .blog-item .blog-img .post-categories li {
display: inline-block;
}
.rs-inner-blog .blog-item .blog-img .post-categories li a {
border-radius: 30px;
color: #ffffff;
background: #03228f;
background: -moz-linear-gradient(
left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
background: -webkit-linear-gradient(
left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
background: linear-gradient(
to right,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#03228f', endColorstr='#0b70e1', GradientType=1);
transition: 0.4s;
font-size: 14px;
font-weight: 500;
padding: 6px 20px;
display: block;
}
.rs-inner-blog .blog-item .blog-img .post-categories li a:hover {
background: linear-gradient(
to left,
#03228f 0%,
#03228f 0%,
#03228f 26%,
#4e95ed 100%,
#2989d8 100%,
#207cca 100%,
#0b70e1 100%
);
}
.rs-inner-blog .blog-item .blog-content {
padding: 25px 15px 25px;
overflow: hidden;
}
.rs-inner-blog .blog-item .blog-content .blog-title {
margin: 4px 0 10px;
font-size: 26px;
line-height: 35px;
font-weight: 700;
}
.rs-inner-blog .blog-item .blog-content .blog-title a {
color: #0a0a0a;
}
.rs-inner-blog .blog-item .blog-content .blog-title a:hover {
color: #106eea;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate {
overflow: hidden;
margin: 0 0 5px;
padding: 0 0 12px;
font-size: 13px;
display: flex;
align-items: center;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li {
margin-right: 15px;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date {
display: inline-block;
font-weight: 400;
font-size: 13px;
color: #999;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .blog-date i {
color: #0b70e1;
margin-right: 3px;
font-size: 14px;
font-weight: 600;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author {
display: inline-block;
padding: 0;
margin-right: 0;
line-height: normal;
color: #999;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li .author i {
color: #0b70e1;
margin-right: 3px;
font-size: 14px;
font-weight: 600;
}
.rs-inner-blog .blog-item .blog-content .blog-meta .btm-cate li:last-child {
margin-right: 0;
}
.rs-inner-blog .blog-item .blog-content .blog-desc {
font-size: 15px;
line-height: 27px;
font-weight: 400;
color: #454545;
margin-bottom: 20px;
}
.rs-inner-blog .widget-area .widget-title .title {
color: #101010;
font-size: 20px;
line-height: 26px;
font-weight: 600;
position: relative;
z-index: 1;
padding-bottom: 12px;
margin: 0;
}
.rs-inner-blog .widget-area .widget-title .title:before {
content: "";
position: absolute;
border: 0;
width: 50px;
height: 2px;
background: #106eea;
z-index: 1;
margin-left: 0;
bottom: 0;
left: 0;
}
.rs-inner-blog .widget-area .search-widget {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
border-radius: 10px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap {
position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap [type="search"] {
border: 1px solid #ddd;
color: #444444;
padding: 12px 17px;
width: 100%;
border-radius: 5px;
position: relative;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button {
background: transparent;
border: medium none;
color: #454545;
padding: 11px 15px 12px;
position: absolute;
display: block;
right: 0px;
top: 0;
z-index: 10;
font-size: 20px;
border-radius: 0 5px 5px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button i:before {
font-weight: 600;
font-size: 18px;
}
.rs-inner-blog .widget-area .search-widget .search-wrap button:hover {
color: #106eea;
}
.rs-inner-blog .widget-area .recent-posts {
background: #fff;
padding: 40px 30px;
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
border-radius: 10px;
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget .post-img {
width: 100px;
float: left;
padding-right: 15px;
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget .post-desc {
display: block;
font-size: 12px;
color: #888;
overflow: hidden;
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget .post-desc a {
font-size: 15px;
line-height: 22px;
font-weight: 500;
color: #0a0a0a;
display: block;
}
.rs-inner-blog
.widget-area
.recent-posts
.recent-post-widget
.post-desc
a:hover {
color: #106eea;
}
.rs-inner-blog .widget-area .recent-posts .recent-post-widget .post-desc .date {
display: block;
}
.rs-inner-blog
.widget-area
.recent-posts
.recent-post-widget
.post-desc
.date
i {
margin-right: 5px;
}
.rs-inner-blog
.widget-area
.recent-posts
.recent-post-widget
.post-desc
.date
i:before {
font-size: 12px;
}
.rs-inner-blog .widget-area .categories {
background: #fff;
padding: 40px 30px 40px;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
border-radius: 10px;
}
.rs-inner-blog .widget-area .categories li {
margin-top: 13px;
padding-top: 13px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.rs-inner-blog .widget-area .categories li a {
font-size: 15px;
font-weight: 500;
color: #101010;
}
.rs-inner-blog .widget-area .categories li a:hover {
color: #106eea;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta {
display: flex;
align-items: center;
padding: 0 0 30px;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta li .p-date {
color: #555;
font-size: 14px;
margin-right: 8px;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta li .p-date i {
font-size: 13px;
margin-right: 3px;
color: #0b70e1;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta li .p-date i:before {
margin-right: 5px;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta .Post-cate {
list-style: none;
display: inline-block;
padding-right: 10px;
color: #555;
font-size: 14px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.Post-cate
.tag-line
i {
color: #0b70e1;
margin-right: 3px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.Post-cate
.tag-line
i:before {
margin-right: 4px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.Post-cate
.tag-line
a {
font-weight: 400;
color: #555;
font-size: 14px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.Post-cate
.tag-line
a:hover {
color: #106eea;
}
.rs-inner-blog .blog-details .blog-full .single-post-meta .post-comment {
color: #555;
font-size: 14px;
}
.rs-inner-blog
.blog-details
.blog-full
.single-post-meta
.post-comment
i:before {
color: #0b70e1;
}
.rs-inner-blog .blog-details .blog-full .comment-title {
font-size: 24px;
margin-bottom: 40px;
margin-top: 35px;
}
.rs-inner-blog .blog-details .blog-full .comment-body {
display: flex;
border-bottom: 1px solid #ddd;
padding-bottom: 30px;
margin-bottom: 25px;
}
.rs-inner-blog .blog-details .blog-full .comment-body .rstheme-logo {
margin-right: 28px;
}
.rs-inner-blog .blog-details .blog-full .comment-body .rstheme-logo img {
border-radius: 50%;
max-width: unset;
}
.rs-inner-blog .blog-details .blog-full .comment-body .comment-meta span {
display: block;
}
.rs-inner-blog .blog-details .blog-full .comment-body .comment-meta span a {
color: #0a0a0a;
font-weight: 700;
line-height: 22px;
}
.rs-inner-blog .blog-details .blog-full .comment-body .comment-meta a {
font-size: 14px;
color: #909090;
}
.rs-inner-blog .blog-details .blog-full .comment-note .from-control {
width: 100%;
padding: 15px 20px;
background-color: #f6f7f9;
border: none;
border-radius: 5px;
}
.rs-inner-blog .blog-details .blog-full .comment-note textarea {
height: 160px;
}
.rs-inner-blog
.blog-details
.blog-full
.comment-note
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-inner-blog .blog-details .blog-full .comment-note ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-inner-blog .blog-details .blog-full .comment-note :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-inner-blog .blog-details .blog-full .comment-note :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
/*------------------------------------
12. Partner Section CSS
------------------------------------*/
.rs-partner {
/* background: url(../images/bg/partners-bg.jpg); */
background-image: linear-gradient(120deg, #01182f 10%, #01aeb1 100%);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-partner .partner-item .logo-img a {
overflow: hidden;
display: inline-block;
position: relative;
transition: all 0.3s ease-in-out;
background: #e7ebef;
border-radius: 10px;
}
.rs-partner .partner-item .logo-img a .hover-logo {
transition: all 0.3s ease-in-out;
display: block;
position: absolute;
z-index: 1;
top: 0;
left: 0;
visibility: hidden;
filter: grayscale(100%);
}
.rs-partner .partner-item .logo-img a .main-logo {
filter: grayscale(100%);
transition: all 0.3s ease-in-out;
display: block;
}
.rs-partner .partner-item .logo-img a:hover .hover-logo {
position: absolute;
z-index: 1;
top: 0;
left: 0;
display: block;
opacity: 3;
visibility: visible;
-webkit-transform: translateY(0%);
-moz-transform: translateY(0%);
-ms-transform: translateY(0%);
-o-transform: translateY(0%);
transform: translateY(0%);
filter: grayscale(0%);
}
.rs-partner .partner-item .logo-img a:hover .main-logo {
display: block;
visibility: hidden;
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
filter: grayscale(100%);
}
/* ------------------------------------
13. Testimonial Section CSS
---------------------------------------*/
.rs-testimonial.main-home .testi-item .author-desc {
background: #ffffff;
padding: 70px 40px 80px 40px;
border-radius: 10px 10px 10px 10px;
box-shadow: -2px 16px 44px -32px rgba(0, 0, 0, 0);
}
.rs-testimonial.main-home .testi-item .author-desc .desc {
text-align: center;
position: relative;
color: #333333;
padding: 61px 0px 10px 0px;
font-size: 17px;
line-height: 33px;
font-weight: 400;
}
.rs-testimonial.main-home .testi-item .author-desc .desc .quote {
width: 50px;
top: -13px;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.rs-testimonial.main-home .testi-item .author-desc .author-img {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 80px;
}
.rs-testimonial.main-home .testi-item .author-desc .author-img img {
width: 90px;
height: 90px;
}
.rs-testimonial.main-home .testi-item .author-part {
text-align: center;
padding-top: 70px;
}
.rs-testimonial.main-home .testi-item .author-part .name {
color: #0a0a0a;
font-size: 22px;
font-weight: 600;
display: block;
margin-bottom: 5px;
}
.rs-testimonial.main-home .owl-dots {
text-align: center;
margin-top: 47px;
}
.rs-testimonial.main-home .owl-dots .owl-dot {
width: 25px;
height: 8px;
display: inline-block;
margin: 0 6px;
padding: 3px 0;
border-radius: 30px;
border: none;
transition: all 0.3s ease;
background-image: linear-gradient(90deg, #01182f 10%, #01aeb1 100%);
box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
}
.rs-testimonial.main-home .owl-dots .owl-dot:hover,
.rs-testimonial.main-home .owl-dots .owl-dot.active {
width: 40px;
/* background: #0b70e1; */
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
opacity: 1;
}
.rs-testimonial.main-home .owl-stage-outer {
padding: 45px 0;
margin: -45px 0;
}
/*------------------------------------
14. Footer Section CSS
------------------------------------*/
.rs-footer .footer-top {
padding: 92px 0 65px;
}
.rs-footer .footer-top .footer-logo img {
height: 60px;
}
.rs-footer .footer-top .widget-title {
font-size: 22px;
line-height: 40px;
font-weight: 600;
color: #101010;
margin-bottom: 25px;
}
.rs-footer .footer-top .site-map li {
margin-bottom: 12px;
}
.rs-footer .footer-top .site-map li a {
font-size: 16px;
color: #454545;
}
.rs-footer .footer-top .site-map li a:hover {
color: #106eea;
}
.rs-footer .footer-top .footer-social li {
display: inline;
margin-right: 5px;
}
.rs-footer .footer-top .footer-social li a {
display: inline-block;
width: 35px;
height: 35px;
line-height: 35px;
border-radius: 50%;
color: #555;
text-align: center;
font-size: 15px;
transition: all 0.8s ease;
background: rgba(255, 255, 255, 0.9);
}
.rs-footer .footer-top .footer-social li a i {
line-height: 35px;
}
.rs-footer .footer-top .footer-social li a:hover {
color: #ffffff;
background: #106eea;
}
.rs-footer .footer-top .footer-social li:last-child {
margin: 0;
}
.rs-footer .footer-top .address-widget li {
padding: 0px 0px 16px 40px;
position: relative;
}
.rs-footer .footer-top .address-widget li .desc a {
color: #454545;
}
.rs-footer .footer-top .address-widget li .desc a:hover {
color: #106eea;
}
.rs-footer .footer-top .address-widget li i {
color: #ffffff;
position: absolute;
left: 0px;
}
.rs-footer .footer-top .address-widget li i:before {
font-size: 20px;
}
.rs-footer .footer-top .widget-desc {
margin: 0;
}
.rs-footer .footer-top p {
margin: 30px 0 0;
position: relative;
text-align: justify;
}
.rs-footer .footer-top p input[type="email"] {
border: none;
width: 91%;
font-size: 13px;
padding: 16px 60px 16px 20px;
margin: 0;
color: #0a0a0a;
overflow: hidden;
border-radius: 30px 0 0 30px;
background: #fff;
box-shadow: 0 0 25px #eeeeee;
}
.rs-footer .footer-top p input[type="submit"] {
position: absolute;
top: 1px;
right: 1px;
bottom: 1px;
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
border-radius: 50%;
padding: 15px 28px 15px;
font-family: "Flaticon";
font-size: 0;
border: none;
}
.rs-footer .footer-top p i {
position: absolute;
right: 0;
top: 0;
bottom: 0;
padding: 12px 20px;
pointer-events: none;
color: #ffffff;
}
.rs-footer .footer-top p ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #454545;
opacity: 1;
}
.rs-footer .footer-top p ::-moz-placeholder {
/* Firefox 19+ */
color: #454545;
opacity: 1;
}
.rs-footer .footer-top p :-ms-input-placeholder {
/* IE 10+ */
color: #454545;
opacity: 1;
}
.rs-footer .footer-top p :-moz-placeholder {
/* Firefox 18- */
color: #454545;
opacity: 1;
}
.rs-footer .footer-bottom {
padding: 20px 0;
background: rgba(255, 255, 255, 0.4);
}
.rs-footer .footer-bottom .copyright p {
margin: 0;
text-align: center;
}
.rs-footer .footer-bottom .copyright p a {
color: #454545;
}
.rs-footer .footer-bottom .copyright p a:hover {
color: #106eea;
}
.rs-footer .footer-bottom .copy-right-menu li {
display: inline-block;
position: relative;
padding: 0px 19px 0 25px;
}
.rs-footer .footer-bottom .copy-right-menu li a {
color: #454545;
}
.rs-footer .footer-bottom .copy-right-menu li a:hover {
color: #106eea;
}
.rs-footer .footer-bottom .copy-right-menu li:before {
display: block;
content: "";
position: absolute;
font-size: 18px;
background: #106eea;
left: 0;
top: 50%;
width: 6px;
height: 6px;
transform: translateY(-50%);
border-radius: 50%;
}
.rs-footer .footer-bottom .copy-right-menu li:first-child:before {
display: none;
}
.rs-footer.style2 {
background-image: linear-gradient(120deg, #01182f 1%, #01aeb1 100%);
background-color: #f5f6f9;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.rs-footer.style2 .footer-top {
padding: 92px 0 65px;
}
.rs-footer.style2 .footer-top .footer-logo img {
height: 50px;
}
.rs-footer.style2 .footer-top .widget-title {
color: #ffffff;
}
.rs-footer.style2 .footer-top .site-map li a {
color: #ffffff;
}
.rs-footer.style2 .footer-top .site-map li a:hover {
color: #03305c;
}
.rs-footer.style2 .footer-top .footer-social li {
display: inline;
margin-right: 5px;
}
.rs-footer.style2 .footer-top .footer-social li a {
display: inline-block;
width: 35px;
height: 35px;
line-height: 35px;
border-radius: 50%;
color: #555;
text-align: center;
font-size: 15px;
transition: all 0.8s ease;
background: rgba(255, 255, 255, 0.9);
}
.rs-footer.style2 .footer-top .footer-social li a:hover {
color: #ffffff;
background-image: linear-gradient(230deg, #01182f 30%, #01aeb1 100%);
}
.rs-footer.style2 .footer-top .footer-social li:last-child {
margin: 0;
}
.rs-footer.style2 .footer-top .address-widget li {
padding: 0px 0px 16px 40px;
position: relative;
}
.rs-footer.style2 .footer-top .address-widget li .desc {
color: #ffffff;
}
.rs-footer.style2 .footer-top .address-widget li .desc a {
color: #ffffff;
}
.rs-footer.style2 .footer-top .address-widget li .desc a:hover {
color: #03305c;
}
.rs-footer.style2 .footer-top .widget-desc {
margin: 0;
}
.rs-footer.style2 .footer-top p input[type="email"] {
box-shadow: unset;
}
.rs-footer.style2 .footer-bottom {
background: transparent;
/* border-color: rgba(80, 90, 100, 0.56) !important;
border-top: 1px solid; */
}
.rs-footer.style2 .footer-bottom .copyright p {
color: #ffffff;
}
.rs-footer.style2 .footer-bottom .copyright p a {
color: #ffffff;
}
.rs-footer.style2 .footer-bottom .copyright p a:hover {
color: #03228f;
}
.rs-footer.style2 .footer-bottom .copy-right-menu li a {
color: #ffffff;
}
/* -----------------------
15. Scroll Up CSS
--------------------------*/
#scrollUp {
text-align: center;
bottom: 40px;
cursor: pointer;
display: none;
position: fixed;
right: 20px;
z-index: 999;
border-radius: 50px 50px 4px 4px;
}
#scrollUp i {
background-image: linear-gradient(90deg, #03305c 0%, #00adb0 100%);
border-radius: 50%;
height: 40px;
font-size: 24px;
font-weight: 600;
width: 42px;
color: #fff;
line-height: 36px;
transition: all 0.3s ease;
margin-left: 2px;
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}
#scrollUp i:hover {
opacity: 0.8;
}
#scrollUp.oranage i {
background-image: linear-gradient(180deg, #dd4c23 19%, #f27c1e 100%);
}
/* ------------------------------------
16. Preloader CSS
---------------------------------------*/
.loader {
background-color: #000000;
height: 100%;
width: 100%;
position: fixed;
margin-top: 0;
top: 0;
z-index: 999999;
}
.loader .loader-container {
top: 45%;
left: 45%;
position: absolute;
width: auto;
height: auto;
}
/* .loader .loader-container {
width: 50px;
height: 50px;
background-color: #106eea;
border-radius: 100%;
-webkit-animation: sk-scaleout 1s infinite ease-in-out;
animation: sk-scaleout 1s infinite ease-in-out;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
} */
@-webkit-keyframes sk-scaleout {
0% {
-webkit-transform: scale(0);
}
100% {
-webkit-transform: scale(1);
opacity: 0;
}
}
@keyframes sk-scaleout {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 0;
}
}
/* ------------------------------------
17. Animation Part
---------------------------------------*/
/*Pulse Border Animation*/
@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
@-webkit-keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
opacity: 0;
}
}
.move-y {
animation: move-y 2s alternate infinite;
-webkit-animation: move-y 2s alternate infinite;
}
@keyframes move-y {
0% {
transform: translate3d(0, 0, 0);
-webkit-transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(0, 10px, 0);
-webkit-transform: translate3d(0, 10px, 0);
}
}
.dance3 {
-webkit-animation: dance3 2s alternate infinite;
}
@keyframes dance3 {
0% {
-webkit-transform: scale(0.6);
}
100% {
-webkit-transform: scale(1);
}
}
.up-down {
animation: up-down 3s alternate infinite;
-webkit-animation: up-down 3s alternate infinite;
}
@keyframes up-down {
0% {
transform: translateY(10px);
-webkit-transform: translateY(0);
}
50% {
transform: translateY(-10px);
-webkit-transform: translateY(-10px);
}
100% {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(30px);
-webkit-transform: translateY(0);
}
50% {
transform: translateY(-50px);
-webkit-transform: translateY(-50px);
}
100% {
transform: translateY(0);
-webkit-transform: translateY(0);
}
}
.rotate {
animation: rotation 4s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
.watermark-animate {
-webkit-animation: watermark-animate 8s infinite;
animation: watermark-animate 8s infinite;
animation-direction: alternate-reverse;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
}
@keyframes watermark-animate {
0% {
left: 0;
}
100% {
left: 100%;
}
}
@-webkit-keyframes shake {
from{
-webkit-transform: rotate(5deg);
}
to{
-webkit-transform: rotate(-5deg);
-webkit-transform-origin: center center;
}
} | 0.509276 | 0.102305 |
* {
padding: 0;
margin: 0;
box-sizing: border-box;
outline: none;
}
span{
vertical-align: sub;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
img {
margin-top: 100px;
width: 600px;
height: 600px;
box-shadow: 10px 0 30px rgb(60, 105, 204),
0 10px 30px rgb(132, 206, 200),
-10px 0 30px yellow,
0 -10px 30px rgb(231, 97, 131);
}
img:hover {
box-shadow:
-10px 0 30px yellow,
0 10px 30px rgb(132, 206, 200),
10px 0 30px rgb(60, 105, 204),
0 -10px 30px rgb(231, 97, 131);
}
.text {
margin-top: 100px;
padding: 10px;
width: 600px;
background: rgb(230, 162, 226);
border: 2px solid rgb(169, 245, 220);
border-radius: 10px;
box-shadow: 0 0 10px rgb(0, 174, 255);
}
.symbols {
margin-top: 100px;
font-size: 52px;
}
.chess {
margin-top: 100px;
padding-right: 20px;
border: 1px solid black;
}
.chess td {
width: 50px;
height: 50px;
font-size: 24px;
text-align: center;
}
.chess tr:nth-child(even) > :nth-child(2n+3){
background: black;
}
.chess tr:nth-child(2n+3) > :nth-child(even){
background: black;
}
.chess tr:nth-child(n+2) > :nth-child(n+2){
border: 1px solid black;
}
.progress {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.svg-container{
display:inline-block;
width:300px;
height:300px;
}
circle#circ{
fill: rgb(174, 37, 179);
stroke: rgb(211, 180, 43);
stroke-width: 10;
stroke-dasharray: 308,450;
}
#val {
position: absolute;
font-size: 36px;
}
.quest form{
padding: 100px;
font-size: 24px;
}
.quest label {
margin-bottom: 20px;
}
.quest input {
border-radius: 10px;
padding: 5px;
}
button {
width: 200px;
height: 50px;
background: none;
border: 2px solid green;
border-radius: 10px;
font-size: 24px;
}
.quest input:valid {
border: 2px solid green;
}
.quest input:invalid {
border: 2px solid red;
}
.container {
width: 50%;
}
.container__wrapper {
overflow: hidden;
position: relative;
width: 100%;
padding-bottom: 100%; /* пропорции блока определяются здесь */
display: flex;
justify-content: center; /* элемент центрируется */
}
.container__content {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
min-height: 100%;
background-color: rgb(240, 140, 207);
}
.lang form{
margin: 100px;
display: flex;
flex-direction: column;
font-size: 24px;
}
.lang input[type="checkbox"] {
width: 30px;
height: 30px;
} | task4/style.css | * {
padding: 0;
margin: 0;
box-sizing: border-box;
outline: none;
}
span{
vertical-align: sub;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
img {
margin-top: 100px;
width: 600px;
height: 600px;
box-shadow: 10px 0 30px rgb(60, 105, 204),
0 10px 30px rgb(132, 206, 200),
-10px 0 30px yellow,
0 -10px 30px rgb(231, 97, 131);
}
img:hover {
box-shadow:
-10px 0 30px yellow,
0 10px 30px rgb(132, 206, 200),
10px 0 30px rgb(60, 105, 204),
0 -10px 30px rgb(231, 97, 131);
}
.text {
margin-top: 100px;
padding: 10px;
width: 600px;
background: rgb(230, 162, 226);
border: 2px solid rgb(169, 245, 220);
border-radius: 10px;
box-shadow: 0 0 10px rgb(0, 174, 255);
}
.symbols {
margin-top: 100px;
font-size: 52px;
}
.chess {
margin-top: 100px;
padding-right: 20px;
border: 1px solid black;
}
.chess td {
width: 50px;
height: 50px;
font-size: 24px;
text-align: center;
}
.chess tr:nth-child(even) > :nth-child(2n+3){
background: black;
}
.chess tr:nth-child(2n+3) > :nth-child(even){
background: black;
}
.chess tr:nth-child(n+2) > :nth-child(n+2){
border: 1px solid black;
}
.progress {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.svg-container{
display:inline-block;
width:300px;
height:300px;
}
circle#circ{
fill: rgb(174, 37, 179);
stroke: rgb(211, 180, 43);
stroke-width: 10;
stroke-dasharray: 308,450;
}
#val {
position: absolute;
font-size: 36px;
}
.quest form{
padding: 100px;
font-size: 24px;
}
.quest label {
margin-bottom: 20px;
}
.quest input {
border-radius: 10px;
padding: 5px;
}
button {
width: 200px;
height: 50px;
background: none;
border: 2px solid green;
border-radius: 10px;
font-size: 24px;
}
.quest input:valid {
border: 2px solid green;
}
.quest input:invalid {
border: 2px solid red;
}
.container {
width: 50%;
}
.container__wrapper {
overflow: hidden;
position: relative;
width: 100%;
padding-bottom: 100%; /* пропорции блока определяются здесь */
display: flex;
justify-content: center; /* элемент центрируется */
}
.container__content {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
min-height: 100%;
background-color: rgb(240, 140, 207);
}
.lang form{
margin: 100px;
display: flex;
flex-direction: column;
font-size: 24px;
}
.lang input[type="checkbox"] {
width: 30px;
height: 30px;
} | 0.316475 | 0.10079 |