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 |
|---|---|---|---|---|
.nimpic {
position: relative;
display: block;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
overflow: hidden;
text-indent: -1000px;
background-color: #ccc;
transition: height 0.5s ease-in-out;
min-height: 100px; /* Careful not to use height, as that will override values set with JS */
/*placeholder is 100px wide, so must be largeer than that*/
min-width: 120px;
}
/* If JS is not active, shows the alt text */
.no-js .nimpic {
text-indent:0;
text-align: center;
padding-top: 90px;
}
/* Start Loader */
.nimpic.no-img .nimpic-ldr {
opacity: 1 !important;
}
@media (max-width:767px) {
.nimpic.no-imgsm .nimpic-ldr {
opacity: 1 !important;
}
}
@media (max-width:991px) {
.nimpic.no-imgmd .nimpic-ldr {
opacity: 1 !important;
}
}
.nimpic-ldr {
transition: opacity 0.4s linear;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
/* Need to add the CSS class 'is-gifldr' to root element if using a gif loader animation. */
.nimpic.is-gifldr .nimpic-ldr {
background: no-repeat center;
background-color: #ccc;
background-size: 53px;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
-ms-interpolation-mode: bicubic; /*nearest-neighbor;*/
}
/* loader vis state */
.is-imgloaded .nimpic-ldr {
opacity: 0;
/*display: none;*/
}
.is-imgloading .nimpic-ldr {
/*display: block;*/
opacity: 1;
}
/* background-image state for loader (if using a gif) */
.nimpic-ldr {
background-image: url(/demos/img/placeholder-loader-1x.gif) !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dppx) {
.nimpic-ldr {
background-image: url(/demo/img/placeholder-loader-2x.gif) !important;
}
}
/* End Loader */
/* Start CSS loader animation. You can use this by using data-loader="ldrsimple" attribute. */
@keyframes loader-simple{
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.ldrsimple {
display: block;
font-size: 10px;
position: relative;
text-indent: 100px; /*negative indent doesn't work for some reason*/
overflow: hidden;
transform: translateZ(0);
border-top: 4px solid rgba(#666, 0.2);
border-right: 4px solid rgba(#666, 0.2);
border-bottom: 4px solid rgba(#666, 0.2);
border-left: 4px solid #666;
background-image: none !important;
position: absolute;
top: 50%;
left: 50%;
margin: -15px 0 0 -15px;
}
.is-imgloading > .ldrsimple, .no-img > .ldrsimple {
animation: loader-simple 1.1s infinite linear;
}
.ldrsimple,
.ldrsimple:after {
border-radius: 50%;
width: 31px;
height: 31px;
}
/* end CSS loader animation */ | src/nimblepic.css | .nimpic {
position: relative;
display: block;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
overflow: hidden;
text-indent: -1000px;
background-color: #ccc;
transition: height 0.5s ease-in-out;
min-height: 100px; /* Careful not to use height, as that will override values set with JS */
/*placeholder is 100px wide, so must be largeer than that*/
min-width: 120px;
}
/* If JS is not active, shows the alt text */
.no-js .nimpic {
text-indent:0;
text-align: center;
padding-top: 90px;
}
/* Start Loader */
.nimpic.no-img .nimpic-ldr {
opacity: 1 !important;
}
@media (max-width:767px) {
.nimpic.no-imgsm .nimpic-ldr {
opacity: 1 !important;
}
}
@media (max-width:991px) {
.nimpic.no-imgmd .nimpic-ldr {
opacity: 1 !important;
}
}
.nimpic-ldr {
transition: opacity 0.4s linear;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
/* Need to add the CSS class 'is-gifldr' to root element if using a gif loader animation. */
.nimpic.is-gifldr .nimpic-ldr {
background: no-repeat center;
background-color: #ccc;
background-size: 53px;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
-ms-interpolation-mode: bicubic; /*nearest-neighbor;*/
}
/* loader vis state */
.is-imgloaded .nimpic-ldr {
opacity: 0;
/*display: none;*/
}
.is-imgloading .nimpic-ldr {
/*display: block;*/
opacity: 1;
}
/* background-image state for loader (if using a gif) */
.nimpic-ldr {
background-image: url(/demos/img/placeholder-loader-1x.gif) !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dppx) {
.nimpic-ldr {
background-image: url(/demo/img/placeholder-loader-2x.gif) !important;
}
}
/* End Loader */
/* Start CSS loader animation. You can use this by using data-loader="ldrsimple" attribute. */
@keyframes loader-simple{
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.ldrsimple {
display: block;
font-size: 10px;
position: relative;
text-indent: 100px; /*negative indent doesn't work for some reason*/
overflow: hidden;
transform: translateZ(0);
border-top: 4px solid rgba(#666, 0.2);
border-right: 4px solid rgba(#666, 0.2);
border-bottom: 4px solid rgba(#666, 0.2);
border-left: 4px solid #666;
background-image: none !important;
position: absolute;
top: 50%;
left: 50%;
margin: -15px 0 0 -15px;
}
.is-imgloading > .ldrsimple, .no-img > .ldrsimple {
animation: loader-simple 1.1s infinite linear;
}
.ldrsimple,
.ldrsimple:after {
border-radius: 50%;
width: 31px;
height: 31px;
}
/* end CSS loader animation */ | 0.506591 | 0.079746 |
* {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
height: 100%;
scroll-behavior: smooth;
}
body {
min-height: 100%;
margin: 0;
position: relative;
padding-bottom: 7rem;
}
h1,
p {
text-align: center;
}
h2,
h3{
text-align: center;
text-decoration: underline;
padding-top: 5rem;
}
footer {
display: flex;
justify-content: space-around;
background-color: #3A3F44;
padding: 1rem;
margin-top: 3rem;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.form {
margin-left: 25%;
margin-top: 5rem;
width: 50%;
justify-content: center;
}
/*---HELPER---*/
.pt {
padding-top: 5rem;
}
.flex {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.flex-sb {
display: flex;
justify-content: space-between;
}
.ml {
margin: 2rem;
}
/*---HOME---*/
section img {
width: 100%;
}
section {
position: relative;
}
.jumbotron {
position: absolute;
top: 5rem;
width: 90%;
margin-left: 5%;
background-color: rgba(39,43,48,0.9);
}
.presentation p,
.justify p {
text-align: justify;
margin: 2rem;
}
.logo {
width: 5%;
height: 4%;
}
.presentation figure {
display: flex;
justify-content: space-around;
margin-top: 6rem;
}
.home {
display: flex;
flex-direction: row-reverse;
}
#twitter {
width: 40%;
margin: 5rem 1rem 1rem 1rem;
}
/*---PORTFOLIO---*/
.card-project {
width: 43%;
margin: 3rem;
box-shadow: 10px 10px 10px #1b1e21, -10px -10px 10px #1b1e21;
}
.card-body img {
width: 70%;
margin-left: 15%;
}
.center img {
width: 50%;
margin-left: 25%;
margin-top: 3rem;
box-shadow: 10px 10px 10px #1b1e21, -10px -10px 10px #1b1e21;
}
.comments {
border-top: 1px solid #F9980F;
margin: 3rem;
padding-top: 2rem;
text-align: center;
}
.card-comment {
width: 60%;
margin: 2rem 20%;
}
.card-comment h3,
.card-comment p {
text-align: left;
}
.btnCom {
margin: 0.5rem;
}
.navigation {
display: flex;
justify-content: center;
}
/*---ADMIN---*/
table {
box-shadow: 10px 10px 10px #1b1e21, -10px -10px 10px #1b1e21;
width: 80%;
margin: 4rem 10%;
}
td {
border: 1px solid #1b1e21 ;
padding: 1rem 5rem;
text-align: center;
}
th {
font-size: 1.3rem;
text-align: center;
width: 60%;
}
/*---MEDIAQUERIES---*/
@media (max-width: 1366px) {
.card-project {
width: 40%;
}
#twitter {
width: 80%;
}
}
@media (max-width: 768px) {
.jumbotron {
height: 55%;
padding: 0;
}
.btn-lg {
display: none;
}
#twitter {
width: 150%;
}
.card-project {
margin: 1rem;
width: 45%;
}
.card-comment {
width: 90%;
margin-left: 5%;
}
.logo {
width: 15%;
}
table,
tbody,
th,
tr,
td{
display: block;
padding: 1rem;
}
thead {
display: none;
}
}
@media (max-width: 375px) {
.jumbotron {
display: none;
}
.home {
display: flex;
flex-direction: column-reverse;
}
#twitter {
width: 90%;
margin-top: 5rem;
}
h2,
h3{
padding-top: 2rem;
}
.card-project {
margin: 1rem;
width: 90%;
}
.card-comment {
width: 100%;
margin-left: 0;
}
.comments {
width: 90%;
margin: 5%;
}
.form {
width: 90%;
margin-left: 5%;
}
button {
width: 80%;
margin-left: 10%;
}
h1 {
margin-top: 1.5rem;
}
} | public/css/style.css | * {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
height: 100%;
scroll-behavior: smooth;
}
body {
min-height: 100%;
margin: 0;
position: relative;
padding-bottom: 7rem;
}
h1,
p {
text-align: center;
}
h2,
h3{
text-align: center;
text-decoration: underline;
padding-top: 5rem;
}
footer {
display: flex;
justify-content: space-around;
background-color: #3A3F44;
padding: 1rem;
margin-top: 3rem;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.form {
margin-left: 25%;
margin-top: 5rem;
width: 50%;
justify-content: center;
}
/*---HELPER---*/
.pt {
padding-top: 5rem;
}
.flex {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.flex-sb {
display: flex;
justify-content: space-between;
}
.ml {
margin: 2rem;
}
/*---HOME---*/
section img {
width: 100%;
}
section {
position: relative;
}
.jumbotron {
position: absolute;
top: 5rem;
width: 90%;
margin-left: 5%;
background-color: rgba(39,43,48,0.9);
}
.presentation p,
.justify p {
text-align: justify;
margin: 2rem;
}
.logo {
width: 5%;
height: 4%;
}
.presentation figure {
display: flex;
justify-content: space-around;
margin-top: 6rem;
}
.home {
display: flex;
flex-direction: row-reverse;
}
#twitter {
width: 40%;
margin: 5rem 1rem 1rem 1rem;
}
/*---PORTFOLIO---*/
.card-project {
width: 43%;
margin: 3rem;
box-shadow: 10px 10px 10px #1b1e21, -10px -10px 10px #1b1e21;
}
.card-body img {
width: 70%;
margin-left: 15%;
}
.center img {
width: 50%;
margin-left: 25%;
margin-top: 3rem;
box-shadow: 10px 10px 10px #1b1e21, -10px -10px 10px #1b1e21;
}
.comments {
border-top: 1px solid #F9980F;
margin: 3rem;
padding-top: 2rem;
text-align: center;
}
.card-comment {
width: 60%;
margin: 2rem 20%;
}
.card-comment h3,
.card-comment p {
text-align: left;
}
.btnCom {
margin: 0.5rem;
}
.navigation {
display: flex;
justify-content: center;
}
/*---ADMIN---*/
table {
box-shadow: 10px 10px 10px #1b1e21, -10px -10px 10px #1b1e21;
width: 80%;
margin: 4rem 10%;
}
td {
border: 1px solid #1b1e21 ;
padding: 1rem 5rem;
text-align: center;
}
th {
font-size: 1.3rem;
text-align: center;
width: 60%;
}
/*---MEDIAQUERIES---*/
@media (max-width: 1366px) {
.card-project {
width: 40%;
}
#twitter {
width: 80%;
}
}
@media (max-width: 768px) {
.jumbotron {
height: 55%;
padding: 0;
}
.btn-lg {
display: none;
}
#twitter {
width: 150%;
}
.card-project {
margin: 1rem;
width: 45%;
}
.card-comment {
width: 90%;
margin-left: 5%;
}
.logo {
width: 15%;
}
table,
tbody,
th,
tr,
td{
display: block;
padding: 1rem;
}
thead {
display: none;
}
}
@media (max-width: 375px) {
.jumbotron {
display: none;
}
.home {
display: flex;
flex-direction: column-reverse;
}
#twitter {
width: 90%;
margin-top: 5rem;
}
h2,
h3{
padding-top: 2rem;
}
.card-project {
margin: 1rem;
width: 90%;
}
.card-comment {
width: 100%;
margin-left: 0;
}
.comments {
width: 90%;
margin: 5%;
}
.form {
width: 90%;
margin-left: 5%;
}
button {
width: 80%;
margin-left: 10%;
}
h1 {
margin-top: 1.5rem;
}
} | 0.419886 | 0.060696 |
div.emp_modal .modal-header{
background: rgba(0, 0, 0, 0.21);
text-align: center;
border-radius: 6px;
}
ul#eticsoftMP_cardList {
margin:0;
}
div.emp_modal .modal-content{
background-color: #ffffffe6;
text-align: center;
border-radius: .6rem;
}
div.emp_modal .modal-body{
background-color: #ffffffe6;
text-align: center;
border-radius: .6rem;
}
.emp_modal {
top: 30% !important;
z-index: 99999 !important;
}
#masterpass_logo_inline{
width:175px;
float:right;
}
#eticsoftMP_registerMP_checkbox{
}
#eticsoftMP_cardList_container_img {
}
.mp_register_container {
text-align: center;
background: #dddddd;
padding: 10px;
margin-top: 10px;
border: 1px solid #bbb;
border-radius: 5px;
}
#eticsoftMP_registerMP_checkbox input{
display: unset !important;
-ms-transform: scale(2);
-moz-transform: scale(2);
-webkit-transform: scale(2);
-o-transform: scale(2);
/* padding: 10px; */
margin: 10px;
}
#eticsoftMP_registerMP_registerContainer{
background: #eee;
padding: 10px;
color: #666;
}
#eticsoftMP_cardList {
}
#eticsoftMP_cardList li {
background: #ffffff;
display: block;
border-radius: 5px;
margin: 1em;
padding: 1em;
cursor: pointer;
text-align: left;
border: 2px solid #fff;
color: #666;
}
#eticsoftMP_cardList li.eticsoftMP_selectedli {
background: #ffffff;
color: #2fb5d2;
border: 2px solid #2fb5d2;
font-weight: bold;
}
#eticsoftMP_cardList li div.cardName{
}
#eticsoftMP_cardList li div.cardNumber{
}
#eticsoftMP_cardList li div.masterpassLogo{
float: right;
display: block;
margin: -2em 0em;
}
#eticsoftMP_cardList input{
}
#emp_form_cardcvv{
margin-bottom: 14px;
}
#eticsoftMP_cardList_container {
background: #e8e8e8;
padding: 15px;
text-align: center;
border-radius: 5px;
margin: 2px;
}
#mp_tx_selected_holder {
background: #e8e8e8;
padding: 15px;
text-align: center;
border-radius: 5px;
margin: 2px;
}
#eticsoftMP_loaderImg {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
margin:auto;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#eticsoftMP_totalToPay{
font-size: 2em;
margin: 5px;
color: #666;
} | views/css/masterpass.css | div.emp_modal .modal-header{
background: rgba(0, 0, 0, 0.21);
text-align: center;
border-radius: 6px;
}
ul#eticsoftMP_cardList {
margin:0;
}
div.emp_modal .modal-content{
background-color: #ffffffe6;
text-align: center;
border-radius: .6rem;
}
div.emp_modal .modal-body{
background-color: #ffffffe6;
text-align: center;
border-radius: .6rem;
}
.emp_modal {
top: 30% !important;
z-index: 99999 !important;
}
#masterpass_logo_inline{
width:175px;
float:right;
}
#eticsoftMP_registerMP_checkbox{
}
#eticsoftMP_cardList_container_img {
}
.mp_register_container {
text-align: center;
background: #dddddd;
padding: 10px;
margin-top: 10px;
border: 1px solid #bbb;
border-radius: 5px;
}
#eticsoftMP_registerMP_checkbox input{
display: unset !important;
-ms-transform: scale(2);
-moz-transform: scale(2);
-webkit-transform: scale(2);
-o-transform: scale(2);
/* padding: 10px; */
margin: 10px;
}
#eticsoftMP_registerMP_registerContainer{
background: #eee;
padding: 10px;
color: #666;
}
#eticsoftMP_cardList {
}
#eticsoftMP_cardList li {
background: #ffffff;
display: block;
border-radius: 5px;
margin: 1em;
padding: 1em;
cursor: pointer;
text-align: left;
border: 2px solid #fff;
color: #666;
}
#eticsoftMP_cardList li.eticsoftMP_selectedli {
background: #ffffff;
color: #2fb5d2;
border: 2px solid #2fb5d2;
font-weight: bold;
}
#eticsoftMP_cardList li div.cardName{
}
#eticsoftMP_cardList li div.cardNumber{
}
#eticsoftMP_cardList li div.masterpassLogo{
float: right;
display: block;
margin: -2em 0em;
}
#eticsoftMP_cardList input{
}
#emp_form_cardcvv{
margin-bottom: 14px;
}
#eticsoftMP_cardList_container {
background: #e8e8e8;
padding: 15px;
text-align: center;
border-radius: 5px;
margin: 2px;
}
#mp_tx_selected_holder {
background: #e8e8e8;
padding: 15px;
text-align: center;
border-radius: 5px;
margin: 2px;
}
#eticsoftMP_loaderImg {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
margin:auto;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#eticsoftMP_totalToPay{
font-size: 2em;
margin: 5px;
color: #666;
} | 0.346541 | 0.095518 |
@charset "utf-8";
/*LME 实现了左边栏菜单,菜单中有些链接,*/
/*这些链接大多是根据一级标题来生成的。*/
/*这个边栏可以在 Markdown 文件中以注释的方式指定,*/
/*也可以在“Html 编译选项”中指定强制编译。*/
/*但前提是当前文档中必须存在一级标题(H1)。*/
#left_menu {
margin: 0; /*取消外间距*/
padding: 0; /*取消内间距*/
position: fixed; /*位置相对于页面可视区域固定*/
top: 200px; /*距离页面可视区域顶端200像素*/
left: 0px; /*距离页面左边距为零(靠左停靠)*/
z-index: 900000000; /*在最上层*/
_position: absolute; /*兼容IE6*/
/*_top: expression(offsetParent.scrollTop+document.documentElement.clientHeight-this.offsetHeight);始终位于底部*/
_top: expression(documentElement.scrollTop+200); /*随页面滚动,保持可见*/
}
/*兼容IE6*/
/*html {
background-image: url(about:blank);
background-attachment: fixed;
}
*/
body{
padding-left: 26px; /*给左侧边栏留下足够的空间*/
}
/*左边栏的标题*/
.left_menu_title {
background: url('./Images~/menu_light.png') no-repeat center center; /*左边栏标题的图标*/
border-bottom-right-radius: 10px; /*左边栏右下角圆角(其实在IE8及以下版本中圆角效果是出不来的,所以实际上是用图像实现的圆角)*/
border-top-right-radius: 10px; /*左边栏右上角圆角(其实在IE8及以下版本中圆角效果是出不来的,所以实际上是用图像实现的圆角)*/
width: 16px; /*宽度:16像素*/
height: 200px; /*高度:200像素*/
text-align: center; /*文本居中对齐(实际上是用图标,没用文本,文本效果极差)*/
display: block; /*按块状元素显示*/
float: left; /*取消外间距*/
margin: 0; /*取消内间距*/
padding: 0; /*漂浮在页面左侧*/
cursor: pointer; /*指定鼠标指针*/
color: #FFF; /*前景色:黑色*/
}
/*左边栏的主显示区域*/
.left_menu_content {
width: 0px; /*宽度0*/
height: 198px; /*高度:198像素*/
float: left; /*漂浮在左侧*/
background-color: #555; /*背景色:黑色*/
overflow-y: scroll; /*随页面滚动*/
display: none; /*按块状元素显示*/
border-top: 1px solid white; /*顶边框:1像素,实线,白色*/
border-bottom: 1px solid white; /*底边框:1像素,实线,白色*/
}
/*左边栏主显示区域中的段落格式*/
.left_menu_content p {
text-indent: 0; /*取消文本缩进,节省空间*/
}
/*左边栏标题中的文本片段样式(现在改用图标实现了,这个其实已经没大用了)*/
.left_menu_title span {
width: 26px; /*宽度:1.5字符*/
text-indent: 0; /*取消文本缩进*/
position: relative; /*位置:相对位置*/
top: 50%; /*顶部位置:50%(使标题上的文本垂直接近居中)*/
display: block; /*按块状元素显示*/
z-index: 910000000; /*总在最前*/
}
/*左边栏展开时的样式*/
.left_menu_expand {
/*background-color: gray;*/ /*背景色变灰(已取消)*/
}
/*左边栏中链接的样式*/
.left_menu_content a {
padding: 0.5em; /*内间距:0.5字符宽*/
} | adaptor-ftdc/doc/html/menu_dark.css | @charset "utf-8";
/*LME 实现了左边栏菜单,菜单中有些链接,*/
/*这些链接大多是根据一级标题来生成的。*/
/*这个边栏可以在 Markdown 文件中以注释的方式指定,*/
/*也可以在“Html 编译选项”中指定强制编译。*/
/*但前提是当前文档中必须存在一级标题(H1)。*/
#left_menu {
margin: 0; /*取消外间距*/
padding: 0; /*取消内间距*/
position: fixed; /*位置相对于页面可视区域固定*/
top: 200px; /*距离页面可视区域顶端200像素*/
left: 0px; /*距离页面左边距为零(靠左停靠)*/
z-index: 900000000; /*在最上层*/
_position: absolute; /*兼容IE6*/
/*_top: expression(offsetParent.scrollTop+document.documentElement.clientHeight-this.offsetHeight);始终位于底部*/
_top: expression(documentElement.scrollTop+200); /*随页面滚动,保持可见*/
}
/*兼容IE6*/
/*html {
background-image: url(about:blank);
background-attachment: fixed;
}
*/
body{
padding-left: 26px; /*给左侧边栏留下足够的空间*/
}
/*左边栏的标题*/
.left_menu_title {
background: url('./Images~/menu_light.png') no-repeat center center; /*左边栏标题的图标*/
border-bottom-right-radius: 10px; /*左边栏右下角圆角(其实在IE8及以下版本中圆角效果是出不来的,所以实际上是用图像实现的圆角)*/
border-top-right-radius: 10px; /*左边栏右上角圆角(其实在IE8及以下版本中圆角效果是出不来的,所以实际上是用图像实现的圆角)*/
width: 16px; /*宽度:16像素*/
height: 200px; /*高度:200像素*/
text-align: center; /*文本居中对齐(实际上是用图标,没用文本,文本效果极差)*/
display: block; /*按块状元素显示*/
float: left; /*取消外间距*/
margin: 0; /*取消内间距*/
padding: 0; /*漂浮在页面左侧*/
cursor: pointer; /*指定鼠标指针*/
color: #FFF; /*前景色:黑色*/
}
/*左边栏的主显示区域*/
.left_menu_content {
width: 0px; /*宽度0*/
height: 198px; /*高度:198像素*/
float: left; /*漂浮在左侧*/
background-color: #555; /*背景色:黑色*/
overflow-y: scroll; /*随页面滚动*/
display: none; /*按块状元素显示*/
border-top: 1px solid white; /*顶边框:1像素,实线,白色*/
border-bottom: 1px solid white; /*底边框:1像素,实线,白色*/
}
/*左边栏主显示区域中的段落格式*/
.left_menu_content p {
text-indent: 0; /*取消文本缩进,节省空间*/
}
/*左边栏标题中的文本片段样式(现在改用图标实现了,这个其实已经没大用了)*/
.left_menu_title span {
width: 26px; /*宽度:1.5字符*/
text-indent: 0; /*取消文本缩进*/
position: relative; /*位置:相对位置*/
top: 50%; /*顶部位置:50%(使标题上的文本垂直接近居中)*/
display: block; /*按块状元素显示*/
z-index: 910000000; /*总在最前*/
}
/*左边栏展开时的样式*/
.left_menu_expand {
/*background-color: gray;*/ /*背景色变灰(已取消)*/
}
/*左边栏中链接的样式*/
.left_menu_content a {
padding: 0.5em; /*内间距:0.5字符宽*/
} | 0.160727 | 0.0704 |
@charset "UTF-8";
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('../fonts/roboto-v15-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Roboto'), local('Roboto-Regular'),
url('../fonts/roboto-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/roboto-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/roboto-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
url('../fonts/roboto-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/roboto-v15-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* ----------------------------------------------------------------------------------------------------- */
body{margin:0px; height:100%; overflow-x:hidden; overflow-y:auto; background-color:#20272a; font-family: 'Roboto', "Trebuchet MS", Arial, Helvetica, sans-serif; font-weight:normal;color:#404C51}
#LOGOTEXTSIDE{display:block;width:290px; float:left; height:auto; z-index:999; margin:-23px 0px 0px 0px; padding-top:25px; line-height:30px;}
#LOGOTEXTSIDE img{width:245px;}
.logoDarkText{color:#FDFDFD;}
.logoBlueText{color:#25aae1;}
/* menu side style*/
#MENUSIDE{width:85px; float:left; background-color:#313b3f; border-right:solid 1px #151d21; overflow:hidden; width: 299px;}
#MENUSIDEindent{width:100%; height:auto;}
#LOGO{height:65px; display:block; padding:20px 0 5px 0px; z-index:997; background-color:#313b3f; text-align:center;}
#LOGO img{width:120px; height:auto;}
.MenuSideMainLink{width:100%; height:37px; display:block; padding:15px 0px 0px 27px; cursor:pointer;}
.MenuSideMainLink input{ padding:6px; background-color:#354044; outline:none; border:0px; border:none; color:#9ba5ac; border-radius:20px;
-webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.5); -moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.5); box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.5);}
.MenuSideMainLinkDark{background-color:#20282b !important; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease;}
.MenuSideMainLink:hover{background-color:#20282b; -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;}
.MenuSideMainLink img{width:20px; height:auto; float:left;}
.MainLinkText{color:#9ba5ac; font-size:16px; margin:0px 0px 0px 30px; display:block;}
.SubMenuLinkContainer{width:auto; padding:20px; overflow:hidden; background-color:#20282b;}
.SubMenuLink{width:50%; display:inline-block; float:left; padding:6px; box-sizing:border-box; cursor:pointer; border-radius:4px; -webkit-border-radius:4px; color:#659eb3; font-size:14px;
}
.SubMenuLink:hover{background-color:#101517; color:#8dc5d9;}
.selectmenu{width:auto; max-width:120px; float:right; padding:5px; outline:none; font-size:16px; display:block; overflow:hidden;}
.LEVEL1{color:#25aae1; padding-left:10px;}
.LEVEL2{font-size:12px; color:#25aae1; padding-left:10px;}
.selectmenu option{ font-size:12px;}
/* content side style*/
#CONTENTSIDE{width:auto; overflow:hidden; z-index:1; margin-left:300px; background-color:#FFFFFF;}
#CONTENTSIDEindent{width:100%; height:auto;}
.ContentSideSections{display:block; border-bottom:solid 1px #dde3e6; padding:30px; overflow:hidden;background-color:#f5f7f8;}
.MOBILE .ContentSideSections{padding:14px 24px;}
#PFTopLinksCover{background-color:#1976D2;}
#PFMobileTopLinksCover{ position:inherit;}
.PFTopLinks{width:80px; display:inline-block; text-align:center; padding:10px 5px; border-radius:5px; font-size:12px; -webkit-border-radius:5px; margin-top:-17px; background-color: rgb(246, 249, 251); margin-left: 5px;
-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; overflow:hidden;}
.PFTopLinks:hover, .PFTopLinksMobile:hover{background-color:rgba(255,255,255,0.8);
-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;}
.PFTopLinksMobile{width:20%; display:inline-block; text-align:center; padding:1%; border-radius:5px; font-size:11px; -webkit-border-radius:5px;
-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; overflow:hidden;}
.PFTopLinks img, .PFTopLinksMobile img{width:80%; height:30px;}
.PFGrayText{color:#aab7c1;}
.PFDarkText{color:#313b3f;}
#openMenuBtn{float:left; padding:10px; margin-top:-9px; border-radius:5px; display:none;}
#openMobileMenuBtn {float: left; padding: 10px 10px 5px 10px; margin-left: 23px; margin-top: 5px; border-radius: 5px; display: none;}
#openMenuBtn.active, #openMenuBtn:hover, #openMenuBtn:focus,
#openMobileMenuBtn:hover, #openMobileMenuBtn:focus{background-color:#2F88E0;}
#openMenuBtn img,
#openMobileMenuBtn img{width:30px;}
.PropertyBox{width:27%; height:280px; float:left; padding:3%; overflow:hidden; text-align:center; border-radius:5px; -webkit-border-radius:5px; display:block;
-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;}
.PropertyBox:hover, .MOBILE .PropertyBox:hover{background-color:#e0e5e9;
-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;}
.PropertyBox img{width:60%;}
.PropertyBox .PropertyTopic{display:block; color:#25aae1; font-size:18px; margin-bottom:10px;}
.PropertyBox .PropertyText{display:block; color:#414D52; font-size:14px; line-height: 22px;}
.MOBILE .PropertyBox{width:27%; height:250px; float:left; padding:3%; overflow:hidden; text-align:center; border-radius:5px; -webkit-border-radius:5px; display:block;
-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;}
.MOBILE .PropertyBox img{width:80%;}
.MOBILE .PropertyBox .PropertyTopic{display:block; color:#25aae1; font-size:12px;}
.MOBILE .PropertyBox .PropertyText{display:block; color:#8c9aa5; font-size:11px;}
.widgetsLink{width:90%; height:auto; background-image:url(../images/widgetIconCover.svg); background-position:top; background-repeat:no-repeat; background-size:contain; display:table;
text-align:center; padding:5%;}
.widgetsLink img{width:40%; height:auto; margin-top:5%;}
.widgetsLink span{ width:100%; margin-top:10px; overflow:hidden; height:50px; display:table; font-size:14px;}
.widgetsLink:hover span{color:#fdd106; -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;}
.MOBILE .widgetsLink img{width:40%; height:auto; margin-top:1%;}
.MOBILE .widgetsLink span{ width:100%; margin-top:0px; overflow:hidden; height:50px; display:table; font-size:11px;}
.BoxesIndent{width:85%; float:right; padding-top:30px;}
.brandLogo{ width:70px; height:70px; display:block;
margin:10px 10px 10px 0px; float:left;}
.MOBILE .BoxesIndent{width:85%; float:none; margin:0px auto; padding-top:30px;}
/** ThemeSwitcher **/
.navOverlay{width:200px; max-height:400px; overflow-y:auto; background-color:#eff3f6; border:solid 1px #bcc7cf; z-index:99999999999; position: absolute;
border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px; -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2); -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2); margin-left:-60px;}
.navOverlay a{display:block; padding:10px; border-bottom:solid 1px #bcc7cf; text-align:left; color:#87939B; overflow:hidden;}
.navOverlay a:hover{ color:#fdd106;}
.navOverlay a span.ui-theme{width:30px; height:27px; float:left; border:solid 1px #D7DCE0; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}
.navOverlay a span.ui-text{ display:inline-block; margin-top:7px; margin-left:10px; font-size: 14px;}
/* cursor */
.cursorPointer{cursor:pointer;}
/* OTHERS */
a{ text-decoration:none; outline:none;color: #25AAE1}
.dispBlock{display:block !important;}
.TextShadow{text-shadow: 0 1px 0 #ffffff}
.TextShadowNone{text-shadow:none;}
.underline{ text-decoration:underline;}
.fontSize34{font-size:34px;}
.fontSize30{font-size:30px;}
.fontSize24{font-size:24px;}
.fontSize21{font-size:21px;}
.fontSize18{font-size:18px;}
.fontSize14{font-size:14px;}
.ContentX{width:95% !important; margin-bottom:30px; text-align:center; -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;}
.ContentX .defaultText{font-size:16px;}
.ContentX .defaultTopic{font-size:34px; line-height:36px; text-align:center;}
.ContentX .PropertyBox{height:220px;}
.ContentX .PropertyBox .PropertyTopic{font-size:14px;}
.ContentX .PropertyBox .PropertyText{font-size:12px;}
.PFTopLinksCover{padding-top:130px !important; height:auto !important; min-height:60px !important; text-align:left !important; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease;}
.PFTopLinksCover .PFTopLinks{float:left !important; margin-top:0px; -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;}
.wid50{width:50px;}
.wid100{width:100%;}
.texAliCenter{text-align:center;}
/* margins */
.marginRight10{margin-right:10px;}
.marginRight20{margin-right:20px;}
.marginBottom20{margin-bottom:20px;}
.marLefRigAuto{ margin-left:auto !important; margin-right:auto !important;}
.bordersOfMenuSide{border-top:solid 1px #404a4e;}
.hiddenIcons{opacity:0; filter:alpha(opacity=0);margin-left:-30px}
.hiddenLogo{opacity:0; filter:alpha(opacity=0);}
.emptyBox{display:block; height:121px;}
/* display */
.dispBlock{ display:block;}
.dispTable{ display:table;}
.overHidden{ overflow:hidden;}
/* floating */
.floatRight{float:right;}
.floatLeft{float:left;}
/* content boxes*/
.Content33{width:33%; }
.Content50{width:50%; }
.Content66{width:65%; background-position:left top; background-repeat:no-repeat;}
.Content100{width:100%;}
/* general text styles */
.defaultText{font-size:16px; color:#404C51; line-height: 24px;}
.defaultTopic{font-size:46px; color:#DB2226; line-height:46px; padding:10px 0px 10px 0px;}
/* buttons */
.BigButton{width:90%; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; display:table; font-size:20px; font-family: 'exobolditalic', "Trebuchet MS", Arial, Helvetica, sans-serif; color:#312E1C; margin:10px 0px 10px 0px; cursor:pointer;
padding:20px; border-radius:5px; border-right:solid 60px #404c51;}
.BigButton img{ margin-right:-60px; height:23px;}
.YellowBtn{background-color:#fdd106; -webkit-box-shadow: 0px 2px 0px 0px rgba(231,191,9,1); -moz-box-shadow: 0px 2px 0px 0px rgba(231,191,9,1); box-shadow: 0px 2px 0px 0px rgba(231,191,9,1);}
.YellowBtn:hover{ background-color:#fcdb42;}
.OrangeBtn{background-color:#fba751; -webkit-box-shadow: 0px 2px 0px 0px rgba(212,135,56,1); -moz-box-shadow: 0px 2px 0px 0px rgba(212,135,56,1); box-shadow: 0px 2px 0px 0px rgba(212,135,56,1);}
.OrangeBtn:hover{ background-color:#feb66d;}
/* text colors */
.orange{color:#fca752;}
.gray{color:#84939f;}
.pink{color:#e26e61;}
.yellow{color:#fdd106;}
.green{color:#39b54a;}
.blue{color:#25aae1;}
.subitem{color:#84939f;}
.fixedTop{position:fixed !important; margin-top:0 !important;}
.animated{-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;}
input.searchInput {
padding-left: 30px;
}
/** ClearFix **/
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .clearfix { height:1%; }
.clearfix { display:block; }
/* override */
.ui-widget {
font-size: 90%;
}
.Implementation {
background-color:#FFFFFF;
overflow: visible;
}
.Implementation h3 {
margin-top: 30px;
color: #5C666A;
}
.Implementation h3.first {
margin-top: 0px !important;
}
.Implementation h4 {
color: #5C666A;
}
.SubSubMenu {
padding: 15px 30px;
}
.SubSubMenu ul {
margin: 0;
padding: 0;
width: 100%;
}
.SubSubMenu ul li {
list-style: none;
width: 20%;
float: left;
margin-top: 5px;
}
.SubSubMenu ul li a:hover {
color: #fdd106
}
.Source .ui-tabview-panel {
color: #404C51 !important;
}
.Source h3 {
margin-top: 25px;
margin-bottom: 0px;
font-size: 24px;
font-weight: normal;
}
.Source h4 {
margin-top: 25px;
margin-bottom: 0px;
font-size: 20px;
font-weight: normal;
}
.Source p {
font-size: 16px;
line-height: 24px;
margin: 10px 0;
opacity: .90;
}
.Source .doc-tablewrapper {
margin: 10px 0;
}
.Source a {
color: #0273D4;
}
/* Docs Table */
.doc-table {
border-collapse: collapse;
width: 100%;
}
.doc-table th {
background-color: #dae8ef;
color: #404C51;
border: solid 1px #C1D5DF;
padding: 5px;
font-size: 16px;
}
.doc-table tbody td {
color: #404C51;
padding: 4px 10px;
border: 1px solid #E5EBF0;
font-size: 15px;
opacity: .90;
}
.doc-table tbody tr:nth-child(even) {
background-color: #FBFCFD;
}
.doc-table tbody tr:nth-child(odd){
background-color: #F3F6F9;
}
/* Tabs Source */
.Source .ui-tabview {
background: none;
border: 0 none;
color: #5C666A;
font-weight:lighter;
-moz-border-radius: 4px !important;
-webkit-border-radius: 4px !important;
border-radius: 4px !important;
}
.Source .ui-tabview .ui-tabview-nav {
background:#1976D2;
margin-bottom: -1px;
padding:3px 3px 0px 3px !important;
border-top-right-radius: 4px !important;
border-top-left-radius: 4px !important;
border-bottom-right-radius:0px;
border-bottom-left-radius:0px;
}
.Source .ui-tabview .ui-tabview-nav li,
.Source .ui-tabview .ui-tabview-nav li.ui-state-hover {
border:0px none !important;
background:#3F94E9;
border-color:#3F94E9;
box-shadow: none !important;
border-top-right-radius: 4px !important;
border-top-left-radius: 4px !important;
}
.Source .ui-tabview .ui-tabview-nav li a{
padding: .5em 1em !important;
}
.Source .ui-tabview .ui-tabview-nav li.tab-doc {
margin-right: 0;
}
.Source .ui-tabview .ui-tabview-nav li.ui-state-hover.ui-state-default a {
color: #fff;
}
.Source .ui-tabview .ui-tabview-nav li.ui-state-default a {
color: #fff !important;
font-weight:normal !important;
text-shadow: none;
}
.Source .ui-tabview .ui-tabview-nav li.ui-state-active a {
color:#5C666A !important;
font-weight:normal !important;
}
.Source .ui-tabview .ui-tabview-nav li.ui-state-hover {
box-shadow: none;
}
.Source .ui-tabview .ui-tabview-nav li.ui-tabview-selected {
background:#F5F6F7;
}
.Source .ui-tabview .ui-tabview-panels {
border-top: 1px solid #F5F6F7;
color: #5C666A !important;
background: #F5F6F7;
}
.Source .ui-tabview.ui-tabview-top > .ui-tabview-nav li{top:0px !important;}
.Source .ui-tabview.ui-tabview-top .ui-tabview-nav.ui-widget-header{border-bottom:0px none !important;}
/** Responsive **/
@media (min-width: 961px) {
.PFTopLinks {
display: block
}
.selectmenu {
display: none;
}
.mobileLogoCover {
display: none;
}
.PFNextGen iframe {
margin-left: 100px;
}
}
@media (max-width: 1140px) {
#LOGOTEXTSIDE {
width: auto;
background: none;
}
#LOGOTEXTSIDE span {
font-size: 24px;
}
#PFTopLinksCover .PFTopLinks {
padding-left:0;
padding-right:0;
}
}
@media (max-width: 960px) {
.PFTopLinks {
display: none
}
#PFTopLinksCover {
padding: 15px 15px 15px 15px;
}
.selectmenu {
display: block;
}
.mobileLogoCover {
display: block
}
#MENUSIDE {
display: none;
overflow-y:auto;
z-index:999;
}
#MENUSIDE.active{
display:block;
width:100%;
height:100%;
overflow-y:auto;
z-index:999;
}
#CONTENTSIDE {
margin-left:0
}
#LOGOTEXTSIDE {
display: none
}
.ContentSideSections{
padding:14px 24px;
}
#openMenuBtn{display:inline-block; float:left; padding:10px; margin-top:-6px; margin-right: 5px; border-radius:5px; position:relative; z-index:1000;}
#openMenuBtn.active {display: none;}
#openMobileMenuBtn.active{display: inline-block; background-color:#1976D2;}
#openMenuBtn:hover, #openMenuBtn:focus,
#openMobileMenuBtn:hover, #openMobileMenuBtn:focus{background-color:#2F88E0;}
#openMenuBtn img,
#openMobileMenuBtn img{width:20px;}
.Content33 {
width: 100%;
}
.Content66 {
width: 100%;
}
.ui-tabview.ui-tabview-top > .ui-tabview-nav li {
width: 100%;
}
.BigButton {
width: 100%;
}
.PFNextGen iframe {
margin-left: 0;
}
.SubSubMenu ul li {
width: 50%
}
.PropertyBox{width:44%;}
.PropertyBox img{width:40%;}
}
@media (max-width: 768px) {
.doc-table tbody td {
word-break: break-word;
}
}
/* Themes */
.ui-theme {background: url("../images/themes.png") no-repeat top left;display: block;}
.ui-theme.ui-theme-afterdark{ background-position: 0 0; width: 30px; height: 25px; }
.ui-theme.ui-theme-afternoon{ background-position: 0 -75px; width: 30px; height: 25px; }
.ui-theme.ui-theme-afterwork{ background-position: 0 -150px; width: 30px; height: 25px; }
.ui-theme.ui-theme-aristo{ background-position: 0 -225px; width: 30px; height: 27px; }
.ui-theme.ui-theme-black-tie{ background-position: 0 -302px; width: 30px; height: 27px; }
.ui-theme.ui-theme-blitzer{ background-position: 0 -379px; width: 30px; height: 27px; }
.ui-theme.ui-theme-bluesky{ background-position: 0 -456px; width: 30px; height: 27px; }
.ui-theme.ui-theme-bootstrap{ background-position: 0 -533px; width: 30px; height: 26px; }
.ui-theme.ui-theme-casablanca{ background-position: 0 -609px; width: 30px; height: 27px; }
.ui-theme.ui-theme-cruze{ background-position: 0 -686px; width: 30px; height: 25px; }
.ui-theme.ui-theme-cupertino{ background-position: 0 -761px; width: 30px; height: 27px; }
.ui-theme.ui-theme-dark-hive{ background-position: 0 -838px; width: 30px; height: 27px; }
.ui-theme.ui-theme-delta{ background-position: 0 -915px; width: 30px; height: 30px; }
.ui-theme.ui-theme-dot-luv{ background-position: 0 -995px; width: 30px; height: 27px; }
.ui-theme.ui-theme-eggplant{ background-position: 0 -1072px; width: 30px; height: 27px; }
.ui-theme.ui-theme-excite-bike{ background-position: 0 -1149px; width: 30px; height: 27px; }
.ui-theme.ui-theme-flick{ background-position: 0 -1226px; width: 30px; height: 27px; }
.ui-theme.ui-theme-glass-x{ background-position: 0 -1303px; width: 30px; height: 27px; }
.ui-theme.ui-theme-home{ background-position: 0 -1380px; width: 30px; height: 27px; }
.ui-theme.ui-theme-hot-sneaks{ background-position: 0 -1457px; width: 30px; height: 27px; }
.ui-theme.ui-theme-humanity{ background-position: 0 -1534px; width: 30px; height: 27px; }
.ui-theme.ui-theme-le-frog{ background-position: 0 -1611px; width: 30px; height: 27px; }
.ui-theme.ui-theme-midnight{ background-position: 0 -1688px; width: 30px; height: 27px; }
.ui-theme.ui-theme-mint-choc{ background-position: 0 -1765px; width: 30px; height: 27px; }
.ui-theme.ui-theme-omega{ background-position: 0 -915px; width: 30px; height: 30px; }
.ui-theme.ui-theme-overcast{ background-position: 0 -1842px; width: 30px; height: 27px; }
.ui-theme.ui-theme-pepper-grinder{ background-position: 0 -1919px; width: 30px; height: 27px; }
.ui-theme.ui-theme-redmond{ background-position: -80px 0; width: 30px; height: 27px; }
.ui-theme.ui-theme-rocket{ background-position: -80px -77px; width: 30px; height: 27px; }
.ui-theme.ui-theme-sam{ background-position: -80px -154px; width: 30px; height: 27px; }
.ui-theme.ui-theme-smoothness{ background-position: -80px -231px; width: 30px; height: 27px; }
.ui-theme.ui-theme-south-street{ background-position: -80px -308px; width: 30px; height: 27px; }
.ui-theme.ui-theme-start{ background-position: -80px -385px; width: 30px; height: 27px; }
.ui-theme.ui-theme-sunny{ background-position: -80px -462px; width: 30px; height: 25px; }
.ui-theme.ui-theme-swanky-purse{ background-position: -80px -537px; width: 30px; height: 27px; }
.ui-theme.ui-theme-trontastic{ background-position: -80px -614px; width: 30px; height: 27px; }
.ui-theme.ui-theme-ui-darkness{ background-position: -80px -691px; width: 30px; height: 27px; }
.ui-theme.ui-theme-ui-lightness{ background-position: -80px -768px; width: 30px; height: 27px; }
.ui-theme.ui-theme-vader{ background-position: -80px -845px; width: 30px; height: 27px; }
.PFLayouts .Content33,
.PFLayouts .Content50 {
box-sizing: border-box;
padding-right: 15px;
}
.submenuhide {
overflow: hidden;
max-height: 0;
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
-moz-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
-moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.submenushow {
-moz-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
-moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
max-height: 500px;
}
/* Code Styles */
pre {
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
font-family: Courier, 'New Courier', monospace;
font-size: 14px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
padding: 1em;
background-color: #CFD8DC;
color: #404C51;
margin: 10px 0px;
}
.ui-tabview-left > .ui-tabview-nav {
height: 150px;
}
.col-button {
width: 10%;
text-align: center;
}
.col-icon {
width: 22px;
text-align: center;
} | src/shared/primeng/primeng-master/showcase/resources/css/site.css | @charset "UTF-8";
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('../fonts/roboto-v15-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Roboto'), local('Roboto-Regular'),
url('../fonts/roboto-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../fonts/roboto-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/roboto-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
url('../fonts/roboto-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/roboto-v15-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* ----------------------------------------------------------------------------------------------------- */
body{margin:0px; height:100%; overflow-x:hidden; overflow-y:auto; background-color:#20272a; font-family: 'Roboto', "Trebuchet MS", Arial, Helvetica, sans-serif; font-weight:normal;color:#404C51}
#LOGOTEXTSIDE{display:block;width:290px; float:left; height:auto; z-index:999; margin:-23px 0px 0px 0px; padding-top:25px; line-height:30px;}
#LOGOTEXTSIDE img{width:245px;}
.logoDarkText{color:#FDFDFD;}
.logoBlueText{color:#25aae1;}
/* menu side style*/
#MENUSIDE{width:85px; float:left; background-color:#313b3f; border-right:solid 1px #151d21; overflow:hidden; width: 299px;}
#MENUSIDEindent{width:100%; height:auto;}
#LOGO{height:65px; display:block; padding:20px 0 5px 0px; z-index:997; background-color:#313b3f; text-align:center;}
#LOGO img{width:120px; height:auto;}
.MenuSideMainLink{width:100%; height:37px; display:block; padding:15px 0px 0px 27px; cursor:pointer;}
.MenuSideMainLink input{ padding:6px; background-color:#354044; outline:none; border:0px; border:none; color:#9ba5ac; border-radius:20px;
-webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.5); -moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.5); box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.5);}
.MenuSideMainLinkDark{background-color:#20282b !important; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease;}
.MenuSideMainLink:hover{background-color:#20282b; -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;}
.MenuSideMainLink img{width:20px; height:auto; float:left;}
.MainLinkText{color:#9ba5ac; font-size:16px; margin:0px 0px 0px 30px; display:block;}
.SubMenuLinkContainer{width:auto; padding:20px; overflow:hidden; background-color:#20282b;}
.SubMenuLink{width:50%; display:inline-block; float:left; padding:6px; box-sizing:border-box; cursor:pointer; border-radius:4px; -webkit-border-radius:4px; color:#659eb3; font-size:14px;
}
.SubMenuLink:hover{background-color:#101517; color:#8dc5d9;}
.selectmenu{width:auto; max-width:120px; float:right; padding:5px; outline:none; font-size:16px; display:block; overflow:hidden;}
.LEVEL1{color:#25aae1; padding-left:10px;}
.LEVEL2{font-size:12px; color:#25aae1; padding-left:10px;}
.selectmenu option{ font-size:12px;}
/* content side style*/
#CONTENTSIDE{width:auto; overflow:hidden; z-index:1; margin-left:300px; background-color:#FFFFFF;}
#CONTENTSIDEindent{width:100%; height:auto;}
.ContentSideSections{display:block; border-bottom:solid 1px #dde3e6; padding:30px; overflow:hidden;background-color:#f5f7f8;}
.MOBILE .ContentSideSections{padding:14px 24px;}
#PFTopLinksCover{background-color:#1976D2;}
#PFMobileTopLinksCover{ position:inherit;}
.PFTopLinks{width:80px; display:inline-block; text-align:center; padding:10px 5px; border-radius:5px; font-size:12px; -webkit-border-radius:5px; margin-top:-17px; background-color: rgb(246, 249, 251); margin-left: 5px;
-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; overflow:hidden;}
.PFTopLinks:hover, .PFTopLinksMobile:hover{background-color:rgba(255,255,255,0.8);
-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;}
.PFTopLinksMobile{width:20%; display:inline-block; text-align:center; padding:1%; border-radius:5px; font-size:11px; -webkit-border-radius:5px;
-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; overflow:hidden;}
.PFTopLinks img, .PFTopLinksMobile img{width:80%; height:30px;}
.PFGrayText{color:#aab7c1;}
.PFDarkText{color:#313b3f;}
#openMenuBtn{float:left; padding:10px; margin-top:-9px; border-radius:5px; display:none;}
#openMobileMenuBtn {float: left; padding: 10px 10px 5px 10px; margin-left: 23px; margin-top: 5px; border-radius: 5px; display: none;}
#openMenuBtn.active, #openMenuBtn:hover, #openMenuBtn:focus,
#openMobileMenuBtn:hover, #openMobileMenuBtn:focus{background-color:#2F88E0;}
#openMenuBtn img,
#openMobileMenuBtn img{width:30px;}
.PropertyBox{width:27%; height:280px; float:left; padding:3%; overflow:hidden; text-align:center; border-radius:5px; -webkit-border-radius:5px; display:block;
-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;}
.PropertyBox:hover, .MOBILE .PropertyBox:hover{background-color:#e0e5e9;
-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;}
.PropertyBox img{width:60%;}
.PropertyBox .PropertyTopic{display:block; color:#25aae1; font-size:18px; margin-bottom:10px;}
.PropertyBox .PropertyText{display:block; color:#414D52; font-size:14px; line-height: 22px;}
.MOBILE .PropertyBox{width:27%; height:250px; float:left; padding:3%; overflow:hidden; text-align:center; border-radius:5px; -webkit-border-radius:5px; display:block;
-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;}
.MOBILE .PropertyBox img{width:80%;}
.MOBILE .PropertyBox .PropertyTopic{display:block; color:#25aae1; font-size:12px;}
.MOBILE .PropertyBox .PropertyText{display:block; color:#8c9aa5; font-size:11px;}
.widgetsLink{width:90%; height:auto; background-image:url(../images/widgetIconCover.svg); background-position:top; background-repeat:no-repeat; background-size:contain; display:table;
text-align:center; padding:5%;}
.widgetsLink img{width:40%; height:auto; margin-top:5%;}
.widgetsLink span{ width:100%; margin-top:10px; overflow:hidden; height:50px; display:table; font-size:14px;}
.widgetsLink:hover span{color:#fdd106; -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;}
.MOBILE .widgetsLink img{width:40%; height:auto; margin-top:1%;}
.MOBILE .widgetsLink span{ width:100%; margin-top:0px; overflow:hidden; height:50px; display:table; font-size:11px;}
.BoxesIndent{width:85%; float:right; padding-top:30px;}
.brandLogo{ width:70px; height:70px; display:block;
margin:10px 10px 10px 0px; float:left;}
.MOBILE .BoxesIndent{width:85%; float:none; margin:0px auto; padding-top:30px;}
/** ThemeSwitcher **/
.navOverlay{width:200px; max-height:400px; overflow-y:auto; background-color:#eff3f6; border:solid 1px #bcc7cf; z-index:99999999999; position: absolute;
border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px; -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2); -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2); margin-left:-60px;}
.navOverlay a{display:block; padding:10px; border-bottom:solid 1px #bcc7cf; text-align:left; color:#87939B; overflow:hidden;}
.navOverlay a:hover{ color:#fdd106;}
.navOverlay a span.ui-theme{width:30px; height:27px; float:left; border:solid 1px #D7DCE0; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}
.navOverlay a span.ui-text{ display:inline-block; margin-top:7px; margin-left:10px; font-size: 14px;}
/* cursor */
.cursorPointer{cursor:pointer;}
/* OTHERS */
a{ text-decoration:none; outline:none;color: #25AAE1}
.dispBlock{display:block !important;}
.TextShadow{text-shadow: 0 1px 0 #ffffff}
.TextShadowNone{text-shadow:none;}
.underline{ text-decoration:underline;}
.fontSize34{font-size:34px;}
.fontSize30{font-size:30px;}
.fontSize24{font-size:24px;}
.fontSize21{font-size:21px;}
.fontSize18{font-size:18px;}
.fontSize14{font-size:14px;}
.ContentX{width:95% !important; margin-bottom:30px; text-align:center; -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;}
.ContentX .defaultText{font-size:16px;}
.ContentX .defaultTopic{font-size:34px; line-height:36px; text-align:center;}
.ContentX .PropertyBox{height:220px;}
.ContentX .PropertyBox .PropertyTopic{font-size:14px;}
.ContentX .PropertyBox .PropertyText{font-size:12px;}
.PFTopLinksCover{padding-top:130px !important; height:auto !important; min-height:60px !important; text-align:left !important; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease;}
.PFTopLinksCover .PFTopLinks{float:left !important; margin-top:0px; -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;}
.wid50{width:50px;}
.wid100{width:100%;}
.texAliCenter{text-align:center;}
/* margins */
.marginRight10{margin-right:10px;}
.marginRight20{margin-right:20px;}
.marginBottom20{margin-bottom:20px;}
.marLefRigAuto{ margin-left:auto !important; margin-right:auto !important;}
.bordersOfMenuSide{border-top:solid 1px #404a4e;}
.hiddenIcons{opacity:0; filter:alpha(opacity=0);margin-left:-30px}
.hiddenLogo{opacity:0; filter:alpha(opacity=0);}
.emptyBox{display:block; height:121px;}
/* display */
.dispBlock{ display:block;}
.dispTable{ display:table;}
.overHidden{ overflow:hidden;}
/* floating */
.floatRight{float:right;}
.floatLeft{float:left;}
/* content boxes*/
.Content33{width:33%; }
.Content50{width:50%; }
.Content66{width:65%; background-position:left top; background-repeat:no-repeat;}
.Content100{width:100%;}
/* general text styles */
.defaultText{font-size:16px; color:#404C51; line-height: 24px;}
.defaultTopic{font-size:46px; color:#DB2226; line-height:46px; padding:10px 0px 10px 0px;}
/* buttons */
.BigButton{width:90%; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; display:table; font-size:20px; font-family: 'exobolditalic', "Trebuchet MS", Arial, Helvetica, sans-serif; color:#312E1C; margin:10px 0px 10px 0px; cursor:pointer;
padding:20px; border-radius:5px; border-right:solid 60px #404c51;}
.BigButton img{ margin-right:-60px; height:23px;}
.YellowBtn{background-color:#fdd106; -webkit-box-shadow: 0px 2px 0px 0px rgba(231,191,9,1); -moz-box-shadow: 0px 2px 0px 0px rgba(231,191,9,1); box-shadow: 0px 2px 0px 0px rgba(231,191,9,1);}
.YellowBtn:hover{ background-color:#fcdb42;}
.OrangeBtn{background-color:#fba751; -webkit-box-shadow: 0px 2px 0px 0px rgba(212,135,56,1); -moz-box-shadow: 0px 2px 0px 0px rgba(212,135,56,1); box-shadow: 0px 2px 0px 0px rgba(212,135,56,1);}
.OrangeBtn:hover{ background-color:#feb66d;}
/* text colors */
.orange{color:#fca752;}
.gray{color:#84939f;}
.pink{color:#e26e61;}
.yellow{color:#fdd106;}
.green{color:#39b54a;}
.blue{color:#25aae1;}
.subitem{color:#84939f;}
.fixedTop{position:fixed !important; margin-top:0 !important;}
.animated{-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;}
input.searchInput {
padding-left: 30px;
}
/** ClearFix **/
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .clearfix { height:1%; }
.clearfix { display:block; }
/* override */
.ui-widget {
font-size: 90%;
}
.Implementation {
background-color:#FFFFFF;
overflow: visible;
}
.Implementation h3 {
margin-top: 30px;
color: #5C666A;
}
.Implementation h3.first {
margin-top: 0px !important;
}
.Implementation h4 {
color: #5C666A;
}
.SubSubMenu {
padding: 15px 30px;
}
.SubSubMenu ul {
margin: 0;
padding: 0;
width: 100%;
}
.SubSubMenu ul li {
list-style: none;
width: 20%;
float: left;
margin-top: 5px;
}
.SubSubMenu ul li a:hover {
color: #fdd106
}
.Source .ui-tabview-panel {
color: #404C51 !important;
}
.Source h3 {
margin-top: 25px;
margin-bottom: 0px;
font-size: 24px;
font-weight: normal;
}
.Source h4 {
margin-top: 25px;
margin-bottom: 0px;
font-size: 20px;
font-weight: normal;
}
.Source p {
font-size: 16px;
line-height: 24px;
margin: 10px 0;
opacity: .90;
}
.Source .doc-tablewrapper {
margin: 10px 0;
}
.Source a {
color: #0273D4;
}
/* Docs Table */
.doc-table {
border-collapse: collapse;
width: 100%;
}
.doc-table th {
background-color: #dae8ef;
color: #404C51;
border: solid 1px #C1D5DF;
padding: 5px;
font-size: 16px;
}
.doc-table tbody td {
color: #404C51;
padding: 4px 10px;
border: 1px solid #E5EBF0;
font-size: 15px;
opacity: .90;
}
.doc-table tbody tr:nth-child(even) {
background-color: #FBFCFD;
}
.doc-table tbody tr:nth-child(odd){
background-color: #F3F6F9;
}
/* Tabs Source */
.Source .ui-tabview {
background: none;
border: 0 none;
color: #5C666A;
font-weight:lighter;
-moz-border-radius: 4px !important;
-webkit-border-radius: 4px !important;
border-radius: 4px !important;
}
.Source .ui-tabview .ui-tabview-nav {
background:#1976D2;
margin-bottom: -1px;
padding:3px 3px 0px 3px !important;
border-top-right-radius: 4px !important;
border-top-left-radius: 4px !important;
border-bottom-right-radius:0px;
border-bottom-left-radius:0px;
}
.Source .ui-tabview .ui-tabview-nav li,
.Source .ui-tabview .ui-tabview-nav li.ui-state-hover {
border:0px none !important;
background:#3F94E9;
border-color:#3F94E9;
box-shadow: none !important;
border-top-right-radius: 4px !important;
border-top-left-radius: 4px !important;
}
.Source .ui-tabview .ui-tabview-nav li a{
padding: .5em 1em !important;
}
.Source .ui-tabview .ui-tabview-nav li.tab-doc {
margin-right: 0;
}
.Source .ui-tabview .ui-tabview-nav li.ui-state-hover.ui-state-default a {
color: #fff;
}
.Source .ui-tabview .ui-tabview-nav li.ui-state-default a {
color: #fff !important;
font-weight:normal !important;
text-shadow: none;
}
.Source .ui-tabview .ui-tabview-nav li.ui-state-active a {
color:#5C666A !important;
font-weight:normal !important;
}
.Source .ui-tabview .ui-tabview-nav li.ui-state-hover {
box-shadow: none;
}
.Source .ui-tabview .ui-tabview-nav li.ui-tabview-selected {
background:#F5F6F7;
}
.Source .ui-tabview .ui-tabview-panels {
border-top: 1px solid #F5F6F7;
color: #5C666A !important;
background: #F5F6F7;
}
.Source .ui-tabview.ui-tabview-top > .ui-tabview-nav li{top:0px !important;}
.Source .ui-tabview.ui-tabview-top .ui-tabview-nav.ui-widget-header{border-bottom:0px none !important;}
/** Responsive **/
@media (min-width: 961px) {
.PFTopLinks {
display: block
}
.selectmenu {
display: none;
}
.mobileLogoCover {
display: none;
}
.PFNextGen iframe {
margin-left: 100px;
}
}
@media (max-width: 1140px) {
#LOGOTEXTSIDE {
width: auto;
background: none;
}
#LOGOTEXTSIDE span {
font-size: 24px;
}
#PFTopLinksCover .PFTopLinks {
padding-left:0;
padding-right:0;
}
}
@media (max-width: 960px) {
.PFTopLinks {
display: none
}
#PFTopLinksCover {
padding: 15px 15px 15px 15px;
}
.selectmenu {
display: block;
}
.mobileLogoCover {
display: block
}
#MENUSIDE {
display: none;
overflow-y:auto;
z-index:999;
}
#MENUSIDE.active{
display:block;
width:100%;
height:100%;
overflow-y:auto;
z-index:999;
}
#CONTENTSIDE {
margin-left:0
}
#LOGOTEXTSIDE {
display: none
}
.ContentSideSections{
padding:14px 24px;
}
#openMenuBtn{display:inline-block; float:left; padding:10px; margin-top:-6px; margin-right: 5px; border-radius:5px; position:relative; z-index:1000;}
#openMenuBtn.active {display: none;}
#openMobileMenuBtn.active{display: inline-block; background-color:#1976D2;}
#openMenuBtn:hover, #openMenuBtn:focus,
#openMobileMenuBtn:hover, #openMobileMenuBtn:focus{background-color:#2F88E0;}
#openMenuBtn img,
#openMobileMenuBtn img{width:20px;}
.Content33 {
width: 100%;
}
.Content66 {
width: 100%;
}
.ui-tabview.ui-tabview-top > .ui-tabview-nav li {
width: 100%;
}
.BigButton {
width: 100%;
}
.PFNextGen iframe {
margin-left: 0;
}
.SubSubMenu ul li {
width: 50%
}
.PropertyBox{width:44%;}
.PropertyBox img{width:40%;}
}
@media (max-width: 768px) {
.doc-table tbody td {
word-break: break-word;
}
}
/* Themes */
.ui-theme {background: url("../images/themes.png") no-repeat top left;display: block;}
.ui-theme.ui-theme-afterdark{ background-position: 0 0; width: 30px; height: 25px; }
.ui-theme.ui-theme-afternoon{ background-position: 0 -75px; width: 30px; height: 25px; }
.ui-theme.ui-theme-afterwork{ background-position: 0 -150px; width: 30px; height: 25px; }
.ui-theme.ui-theme-aristo{ background-position: 0 -225px; width: 30px; height: 27px; }
.ui-theme.ui-theme-black-tie{ background-position: 0 -302px; width: 30px; height: 27px; }
.ui-theme.ui-theme-blitzer{ background-position: 0 -379px; width: 30px; height: 27px; }
.ui-theme.ui-theme-bluesky{ background-position: 0 -456px; width: 30px; height: 27px; }
.ui-theme.ui-theme-bootstrap{ background-position: 0 -533px; width: 30px; height: 26px; }
.ui-theme.ui-theme-casablanca{ background-position: 0 -609px; width: 30px; height: 27px; }
.ui-theme.ui-theme-cruze{ background-position: 0 -686px; width: 30px; height: 25px; }
.ui-theme.ui-theme-cupertino{ background-position: 0 -761px; width: 30px; height: 27px; }
.ui-theme.ui-theme-dark-hive{ background-position: 0 -838px; width: 30px; height: 27px; }
.ui-theme.ui-theme-delta{ background-position: 0 -915px; width: 30px; height: 30px; }
.ui-theme.ui-theme-dot-luv{ background-position: 0 -995px; width: 30px; height: 27px; }
.ui-theme.ui-theme-eggplant{ background-position: 0 -1072px; width: 30px; height: 27px; }
.ui-theme.ui-theme-excite-bike{ background-position: 0 -1149px; width: 30px; height: 27px; }
.ui-theme.ui-theme-flick{ background-position: 0 -1226px; width: 30px; height: 27px; }
.ui-theme.ui-theme-glass-x{ background-position: 0 -1303px; width: 30px; height: 27px; }
.ui-theme.ui-theme-home{ background-position: 0 -1380px; width: 30px; height: 27px; }
.ui-theme.ui-theme-hot-sneaks{ background-position: 0 -1457px; width: 30px; height: 27px; }
.ui-theme.ui-theme-humanity{ background-position: 0 -1534px; width: 30px; height: 27px; }
.ui-theme.ui-theme-le-frog{ background-position: 0 -1611px; width: 30px; height: 27px; }
.ui-theme.ui-theme-midnight{ background-position: 0 -1688px; width: 30px; height: 27px; }
.ui-theme.ui-theme-mint-choc{ background-position: 0 -1765px; width: 30px; height: 27px; }
.ui-theme.ui-theme-omega{ background-position: 0 -915px; width: 30px; height: 30px; }
.ui-theme.ui-theme-overcast{ background-position: 0 -1842px; width: 30px; height: 27px; }
.ui-theme.ui-theme-pepper-grinder{ background-position: 0 -1919px; width: 30px; height: 27px; }
.ui-theme.ui-theme-redmond{ background-position: -80px 0; width: 30px; height: 27px; }
.ui-theme.ui-theme-rocket{ background-position: -80px -77px; width: 30px; height: 27px; }
.ui-theme.ui-theme-sam{ background-position: -80px -154px; width: 30px; height: 27px; }
.ui-theme.ui-theme-smoothness{ background-position: -80px -231px; width: 30px; height: 27px; }
.ui-theme.ui-theme-south-street{ background-position: -80px -308px; width: 30px; height: 27px; }
.ui-theme.ui-theme-start{ background-position: -80px -385px; width: 30px; height: 27px; }
.ui-theme.ui-theme-sunny{ background-position: -80px -462px; width: 30px; height: 25px; }
.ui-theme.ui-theme-swanky-purse{ background-position: -80px -537px; width: 30px; height: 27px; }
.ui-theme.ui-theme-trontastic{ background-position: -80px -614px; width: 30px; height: 27px; }
.ui-theme.ui-theme-ui-darkness{ background-position: -80px -691px; width: 30px; height: 27px; }
.ui-theme.ui-theme-ui-lightness{ background-position: -80px -768px; width: 30px; height: 27px; }
.ui-theme.ui-theme-vader{ background-position: -80px -845px; width: 30px; height: 27px; }
.PFLayouts .Content33,
.PFLayouts .Content50 {
box-sizing: border-box;
padding-right: 15px;
}
.submenuhide {
overflow: hidden;
max-height: 0;
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
-moz-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
-moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.submenushow {
-moz-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
-moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
max-height: 500px;
}
/* Code Styles */
pre {
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
font-family: Courier, 'New Courier', monospace;
font-size: 14px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
padding: 1em;
background-color: #CFD8DC;
color: #404C51;
margin: 10px 0px;
}
.ui-tabview-left > .ui-tabview-nav {
height: 150px;
}
.col-button {
width: 10%;
text-align: center;
}
.col-icon {
width: 22px;
text-align: center;
} | 0.209874 | 0.071332 |
Author: 8cr14mov
Purpose: Darken, blend, and clean Rarbg to facilitate a more satisfying user experience.
*/
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("rarbg.to") {
body {
background: #17181A !important;
color: #797979;
}
* {
border: none !important;
}
td.header6, td.header5, td.header4, td.header3, td.header2, td.header1, input.pftext, input.pftext:hover, .searchTorrent, .btn-primary, #pager_links a {
background: #252525;
color: #797979;
border: none;
}
table.lista-rounded, #scrollspycomments > div:nth-child(1) > div:nth-child(1), input, td.lista:hover, td.lista:focus, #scrollspycomments > div:nth-child(1) > div:nth-child(1) {
background: #17181A;
color: #797979;
border: none;
}
a.anal, a.anal:link, td.block, td.header {
color: #797979;
text-decoration: none;
border: none;
}
td.lista, table.lista:nth-child(2) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2), h1, .black, table.lista tbody tr td.lista {
color: #797979;
border-bottom: none;
}
a:link {
color: #7B4895;
text-decoration: none;
}
#pager_links b {
background-color: #17181A;
color: #797979;
border: none;
}
#pager_links a:hover, .btn-primary:hover {
background-color: #7B4895;
color: #17181A;
}
td.header3.selected, td.header3.selected a.anal {
background-color: #353535;
color: #797979;
border: none;
}
td.lista {
background-color: #17181A;
border: none;
}
table.lista2t, table.lista2t tr.lista2 td {
border-left: 2px solid #252525;
border-bottom: 2px solid #252525;
border-right: 2px solid #252525;
border-top: 2px solid #252525;
}
td.header6:hover {
background-color: #353535;
}
td.lista2, #top_news, #top_news table, #top_news td, table.header2 {
background: #353535 !important;
color: #797979 !important;
border: none !important;
}
#scrollspycomments > div:nth-child(1) > div:nth-child(1) {
background-color: #17181A !important;
}
.btn, .btn:hover, .dropdown-menu {
background-color: #252525 !important;
color: #797979 !important;
}
.tvshowClick, .tvdivhidden, .tvdivshowed {
background: #17181A !important;
color: #797979 !important;
border: none !important;
}
.tvshowClickNotReleased, .tvdivnotreleased {
background: #252525 !important;
color: #797979 !important;
border: none !important;
}
hr {
color: #353535 !important;
border: 1px solid #353535 !important;
}
#mediainfo_container[style], #mediainfo_container {
/*color: #454545 !important; */
color: none !important;
}
/*** BEGIN STAR RATING SWAP ***
#unit_ul6d22063a2c5b14f50b0c117813604f7481a209bd {
background: url(https://u.pomf.is/ldfwxj.png) top left;
}
.unit-rating li.current-rating {
background: url(https://u.pomf.is/ldfwxj.png) left bottom repeat-x;
}
.unit-rating li a:hover {
background: url(https://u.pomf.is/ldfwxj.png) left center !important;
}
.unit-rating li a {
background: url(https://u.pomf.is/ldfwxj.png) left top !important;
}
/*** END STAR RATING SWAP ***/
.lista-rounded > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) > table:nth-child(7)[style] {
border: none !important;
}
} | data/usercss/132236.user.css | Author: 8cr14mov
Purpose: Darken, blend, and clean Rarbg to facilitate a more satisfying user experience.
*/
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("rarbg.to") {
body {
background: #17181A !important;
color: #797979;
}
* {
border: none !important;
}
td.header6, td.header5, td.header4, td.header3, td.header2, td.header1, input.pftext, input.pftext:hover, .searchTorrent, .btn-primary, #pager_links a {
background: #252525;
color: #797979;
border: none;
}
table.lista-rounded, #scrollspycomments > div:nth-child(1) > div:nth-child(1), input, td.lista:hover, td.lista:focus, #scrollspycomments > div:nth-child(1) > div:nth-child(1) {
background: #17181A;
color: #797979;
border: none;
}
a.anal, a.anal:link, td.block, td.header {
color: #797979;
text-decoration: none;
border: none;
}
td.lista, table.lista:nth-child(2) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2), h1, .black, table.lista tbody tr td.lista {
color: #797979;
border-bottom: none;
}
a:link {
color: #7B4895;
text-decoration: none;
}
#pager_links b {
background-color: #17181A;
color: #797979;
border: none;
}
#pager_links a:hover, .btn-primary:hover {
background-color: #7B4895;
color: #17181A;
}
td.header3.selected, td.header3.selected a.anal {
background-color: #353535;
color: #797979;
border: none;
}
td.lista {
background-color: #17181A;
border: none;
}
table.lista2t, table.lista2t tr.lista2 td {
border-left: 2px solid #252525;
border-bottom: 2px solid #252525;
border-right: 2px solid #252525;
border-top: 2px solid #252525;
}
td.header6:hover {
background-color: #353535;
}
td.lista2, #top_news, #top_news table, #top_news td, table.header2 {
background: #353535 !important;
color: #797979 !important;
border: none !important;
}
#scrollspycomments > div:nth-child(1) > div:nth-child(1) {
background-color: #17181A !important;
}
.btn, .btn:hover, .dropdown-menu {
background-color: #252525 !important;
color: #797979 !important;
}
.tvshowClick, .tvdivhidden, .tvdivshowed {
background: #17181A !important;
color: #797979 !important;
border: none !important;
}
.tvshowClickNotReleased, .tvdivnotreleased {
background: #252525 !important;
color: #797979 !important;
border: none !important;
}
hr {
color: #353535 !important;
border: 1px solid #353535 !important;
}
#mediainfo_container[style], #mediainfo_container {
/*color: #454545 !important; */
color: none !important;
}
/*** BEGIN STAR RATING SWAP ***
#unit_ul6d22063a2c5b14f50b0c117813604f7481a209bd {
background: url(https://u.pomf.is/ldfwxj.png) top left;
}
.unit-rating li.current-rating {
background: url(https://u.pomf.is/ldfwxj.png) left bottom repeat-x;
}
.unit-rating li a:hover {
background: url(https://u.pomf.is/ldfwxj.png) left center !important;
}
.unit-rating li a {
background: url(https://u.pomf.is/ldfwxj.png) left top !important;
}
/*** END STAR RATING SWAP ***/
.lista-rounded > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) > table:nth-child(7)[style] {
border: none !important;
}
} | 0.334263 | 0.140366 |
@import "../mixins/_focus.css";
@import "../mixins/_shadow.css";
:root {
--ck-widget-outline-thickness: 3px;
--ck-widget-handler-icon-size: 16px;
--ck-widget-handler-animation-duration: 200ms;
--ck-widget-handler-animation-curve: ease;
--ck-color-widget-blurred-border: hsl(0, 0%, 87%);
--ck-color-widget-hover-border: hsl(43, 100%, 62%);
--ck-color-widget-editable-focus-background: var(--ck-color-base-background);
--ck-color-widget-drag-handler-icon-color: var(--ck-color-base-background);
}
.ck .ck-widget {
outline-width: var(--ck-widget-outline-thickness);
outline-style: solid;
outline-color: transparent;
transition: outline-color var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);
&.ck-widget_selected,
&.ck-widget_selected:hover {
outline: var(--ck-widget-outline-thickness) solid var(--ck-color-focus-border);
}
&:hover {
outline-color: var(--ck-color-widget-hover-border);
}
}
.ck .ck-editor__nested-editable {
border: 1px solid transparent;
/* The :focus style is applied before .ck-editor__nested-editable_focused class is rendered in the view.
These styles show a different border for a blink of an eye, so `:focus` need to have same styles applied. */
&.ck-editor__nested-editable_focused,
&:focus {
@mixin ck-focus-ring;
@mixin ck-box-shadow var(--ck-inner-shadow);
background-color: var(--ck-color-widget-editable-focus-background);
}
}
.ck .ck-widget.ck-widget_with-selection-handle {
& .ck-widget__selection-handle {
padding: 4px;
box-sizing: border-box;
/* Background and opacity will be animated as the handler shows up or the widget gets selected. */
background-color: transparent;
opacity: 0;
/* Transition:
* background-color for the .ck-widget_selected state change,
* visibility for hiding the handler,
* opacity for the proper look of the icon when the handler disappears. */
transition:
background-color var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve),
visibility var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve),
opacity var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);
/* Make only top corners round. */
border-radius: var(--ck-border-radius) var(--ck-border-radius) 0 0;
/* Place the drag handler outside the widget wrapper. */
transform: translateY(-100%);
left: calc(0px - var(--ck-widget-outline-thickness));
top: 0;
& .ck-icon {
/* Make sure the dimensions of the icon are independent of the fon-size of the content. */
width: var(--ck-widget-handler-icon-size);
height: var(--ck-widget-handler-icon-size);
color: var(--ck-color-widget-drag-handler-icon-color);
/* The "selected" part of the icon is invisible by default */
& .ck-icon__selected-indicator {
opacity: 0;
/* Note: The animation is longer on purpose. Simply feels better. */
transition: opacity 300ms var(--ck-widget-handler-animation-curve);
}
}
/* Advertise using the look of the icon that once clicked the handler, the widget will be selected. */
&:hover .ck-icon .ck-icon__selected-indicator {
opacity: 1;
}
}
/* Show the selection handler on mouse hover over the widget, but not for nested widgets. */
&:hover > .ck-widget__selection-handle {
opacity: 1;
background-color: var(--ck-color-widget-hover-border);
}
/* Show the selection handler when the widget is selected, but not for nested widgets. */
&.ck-widget_selected,
&.ck-widget_selected:hover {
& > .ck-widget__selection-handle {
opacity: 1;
background-color: var(--ck-color-focus-border);
/* When the widget is selected, notify the user using the proper look of the icon. */
& .ck-icon .ck-icon__selected-indicator {
opacity: 1;
}
}
}
}
/* In a RTL environment, align the selection handler to the right side of the widget */
/* stylelint-disable-next-line no-descending-specificity */
.ck[dir="rtl"] .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle {
left: auto;
right: calc(0px - var(--ck-widget-outline-thickness));
}
/* https://github.com/ckeditor/ckeditor5/issues/6415 */
.ck.ck-editor__editable.ck-read-only .ck-widget {
/* Prevent the :hover outline from showing up because of the used outline-color transition. */
transition: none;
&:not(.ck-widget_selected) {
/* Disable visual effects of hover/active widget when CKEditor is in readOnly mode.
* See: https://github.com/ckeditor/ckeditor5/issues/1261
*
* Leave the unit because this custom property is used in calc() by other features.
* See: https://github.com/ckeditor/ckeditor5/issues/6775
*/
--ck-widget-outline-thickness: 0px;
}
&.ck-widget_with-selection-handle {
& .ck-widget__selection-handle,
& .ck-widget__selection-handle:hover {
background: var(--ck-color-widget-blurred-border);
}
}
}
/* Style the widget when it's selected but the editable it belongs to lost focus. */
/* stylelint-disable-next-line no-descending-specificity */
.ck.ck-editor__editable.ck-blurred .ck-widget {
&.ck-widget_selected,
&.ck-widget_selected:hover {
outline-color: var(--ck-color-widget-blurred-border);
&.ck-widget_with-selection-handle {
& > .ck-widget__selection-handle,
& > .ck-widget__selection-handle:hover {
background: var(--ck-color-widget-blurred-border);
}
}
}
}
.ck.ck-editor__editable > .ck-widget.ck-widget_with-selection-handle:first-child,
.ck.ck-editor__editable blockquote > .ck-widget.ck-widget_with-selection-handle:first-child {
/* Do not crop selection handler if a widget is a first-child in the blockquote or in the root editable.
In fact, anything with overflow: hidden.
https://github.com/ckeditor/ckeditor5-block-quote/issues/28
https://github.com/ckeditor/ckeditor5-widget/issues/44
https://github.com/ckeditor/ckeditor5-widget/issues/66 */
margin-top: calc(1em + var(--ck-widget-handler-icon-size));
} | packages/ckeditor5-theme-lark/theme/ckeditor5-widget/widget.css | @import "../mixins/_focus.css";
@import "../mixins/_shadow.css";
:root {
--ck-widget-outline-thickness: 3px;
--ck-widget-handler-icon-size: 16px;
--ck-widget-handler-animation-duration: 200ms;
--ck-widget-handler-animation-curve: ease;
--ck-color-widget-blurred-border: hsl(0, 0%, 87%);
--ck-color-widget-hover-border: hsl(43, 100%, 62%);
--ck-color-widget-editable-focus-background: var(--ck-color-base-background);
--ck-color-widget-drag-handler-icon-color: var(--ck-color-base-background);
}
.ck .ck-widget {
outline-width: var(--ck-widget-outline-thickness);
outline-style: solid;
outline-color: transparent;
transition: outline-color var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);
&.ck-widget_selected,
&.ck-widget_selected:hover {
outline: var(--ck-widget-outline-thickness) solid var(--ck-color-focus-border);
}
&:hover {
outline-color: var(--ck-color-widget-hover-border);
}
}
.ck .ck-editor__nested-editable {
border: 1px solid transparent;
/* The :focus style is applied before .ck-editor__nested-editable_focused class is rendered in the view.
These styles show a different border for a blink of an eye, so `:focus` need to have same styles applied. */
&.ck-editor__nested-editable_focused,
&:focus {
@mixin ck-focus-ring;
@mixin ck-box-shadow var(--ck-inner-shadow);
background-color: var(--ck-color-widget-editable-focus-background);
}
}
.ck .ck-widget.ck-widget_with-selection-handle {
& .ck-widget__selection-handle {
padding: 4px;
box-sizing: border-box;
/* Background and opacity will be animated as the handler shows up or the widget gets selected. */
background-color: transparent;
opacity: 0;
/* Transition:
* background-color for the .ck-widget_selected state change,
* visibility for hiding the handler,
* opacity for the proper look of the icon when the handler disappears. */
transition:
background-color var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve),
visibility var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve),
opacity var(--ck-widget-handler-animation-duration) var(--ck-widget-handler-animation-curve);
/* Make only top corners round. */
border-radius: var(--ck-border-radius) var(--ck-border-radius) 0 0;
/* Place the drag handler outside the widget wrapper. */
transform: translateY(-100%);
left: calc(0px - var(--ck-widget-outline-thickness));
top: 0;
& .ck-icon {
/* Make sure the dimensions of the icon are independent of the fon-size of the content. */
width: var(--ck-widget-handler-icon-size);
height: var(--ck-widget-handler-icon-size);
color: var(--ck-color-widget-drag-handler-icon-color);
/* The "selected" part of the icon is invisible by default */
& .ck-icon__selected-indicator {
opacity: 0;
/* Note: The animation is longer on purpose. Simply feels better. */
transition: opacity 300ms var(--ck-widget-handler-animation-curve);
}
}
/* Advertise using the look of the icon that once clicked the handler, the widget will be selected. */
&:hover .ck-icon .ck-icon__selected-indicator {
opacity: 1;
}
}
/* Show the selection handler on mouse hover over the widget, but not for nested widgets. */
&:hover > .ck-widget__selection-handle {
opacity: 1;
background-color: var(--ck-color-widget-hover-border);
}
/* Show the selection handler when the widget is selected, but not for nested widgets. */
&.ck-widget_selected,
&.ck-widget_selected:hover {
& > .ck-widget__selection-handle {
opacity: 1;
background-color: var(--ck-color-focus-border);
/* When the widget is selected, notify the user using the proper look of the icon. */
& .ck-icon .ck-icon__selected-indicator {
opacity: 1;
}
}
}
}
/* In a RTL environment, align the selection handler to the right side of the widget */
/* stylelint-disable-next-line no-descending-specificity */
.ck[dir="rtl"] .ck-widget.ck-widget_with-selection-handle .ck-widget__selection-handle {
left: auto;
right: calc(0px - var(--ck-widget-outline-thickness));
}
/* https://github.com/ckeditor/ckeditor5/issues/6415 */
.ck.ck-editor__editable.ck-read-only .ck-widget {
/* Prevent the :hover outline from showing up because of the used outline-color transition. */
transition: none;
&:not(.ck-widget_selected) {
/* Disable visual effects of hover/active widget when CKEditor is in readOnly mode.
* See: https://github.com/ckeditor/ckeditor5/issues/1261
*
* Leave the unit because this custom property is used in calc() by other features.
* See: https://github.com/ckeditor/ckeditor5/issues/6775
*/
--ck-widget-outline-thickness: 0px;
}
&.ck-widget_with-selection-handle {
& .ck-widget__selection-handle,
& .ck-widget__selection-handle:hover {
background: var(--ck-color-widget-blurred-border);
}
}
}
/* Style the widget when it's selected but the editable it belongs to lost focus. */
/* stylelint-disable-next-line no-descending-specificity */
.ck.ck-editor__editable.ck-blurred .ck-widget {
&.ck-widget_selected,
&.ck-widget_selected:hover {
outline-color: var(--ck-color-widget-blurred-border);
&.ck-widget_with-selection-handle {
& > .ck-widget__selection-handle,
& > .ck-widget__selection-handle:hover {
background: var(--ck-color-widget-blurred-border);
}
}
}
}
.ck.ck-editor__editable > .ck-widget.ck-widget_with-selection-handle:first-child,
.ck.ck-editor__editable blockquote > .ck-widget.ck-widget_with-selection-handle:first-child {
/* Do not crop selection handler if a widget is a first-child in the blockquote or in the root editable.
In fact, anything with overflow: hidden.
https://github.com/ckeditor/ckeditor5-block-quote/issues/28
https://github.com/ckeditor/ckeditor5-widget/issues/44
https://github.com/ckeditor/ckeditor5-widget/issues/66 */
margin-top: calc(1em + var(--ck-widget-handler-icon-size));
} | 0.580828 | 0.076236 |
a,
a:focus,
a:hover {
color: #fff;
}
/* Custom default button */
.btn-default {
color: #fff;
text-shadow: none;
/* Prevent inheritence from `body` */
background-color: transparent;
border: 2px solid #fff;
border-radius: 20px;
padding: 0.5rem 2rem;
}
.btn-default:hover,
.btn-default:focus {
background-color: rgba(255, 255, 255, 0.3);
}
/*
* Base structure
*/
html,
body {
height: 100%;
}
body {
background: url(../img/youth.jpg) no-repeat center center fixed;
background-size: cover;
color: #fff;
text-align: center;
font-family: 'Quicksand', sans-serif;
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
display: table;
width: 100%;
height: 100%;
/* For at least Firefox */
min-height: 100%;
background: rgba(48, 53, 70, 0.8);
box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}
.site-wrapper-inner {
display: table-cell;
vertical-align: top;
}
.cover-container {
margin-right: auto;
margin-left: auto;
}
/* Padding for spacing */
.inner {
padding: 30px;
}
/*
* Header
*/
.masthead-brand {
margin-top: 10px;
margin-bottom: 10px;
}
.nav-masthead {
text-align: center;
display: block;
}
.nav-masthead .nav-link {
display: inline-block;
}
@media (min-width: 768px) {
.masthead-brand {
float: left;
}
.nav-masthead {
float: right;
}
}
/*
* Cover
*/
.cover {
padding: 0 20px;
}
.cover .btn-notify {
padding: 10px 60px;
font-weight: 500;
text-transform: uppercase;
border-radius: 40px;
}
.cover-heading {
font-weight: 500;
text-transform: uppercase;
letter-spacing: 10px;
font-size: 2rem;
margin-bottom: 5rem;
}
@media (min-width: 768px) {
.cover-heading {
font-size: 3.4rem;
letter-spacing: 15px;
}
}
.cover-copy {
max-width: 500px;
margin: 0 auto 3rem;
}
/*
* Footer
*/
.mastfoot {
color: #999;
/* IE8 proofing */
color: rgba(255, 255, 255, 0.5);
}
/*
* Subscribe modal box
*/
#subscribeModal .modal-content {
background-color: #303546;
color: #fff;
text-align: left;
}
#subscribeModal .modal-header, #subscribeModal .modal-footer {
border: 0;
}
#subscribeModal .close {
color: #fff;
}
#subscribeModal .form-control {
margin-top: 1rem;
background: rgba(0, 0, 0, 0.4);
color: #fff;
}
#subscribeModal .form-control:focus {
border-color: #49506a;
}
/*
* Affix and center
*/
@media (min-width: 768px) {
/* Pull out the header and footer */
.masthead {
position: fixed;
top: 0;
}
.mastfoot {
position: fixed;
bottom: 0;
}
/* Start the vertical centering */
.site-wrapper-inner {
vertical-align: middle;
}
/* Handle the widths */
.masthead,
.mastfoot,
.cover-container {
width: 100%;
/* Must be percentage or pixels for horizontal alignment */
}
}
@media (min-width: 992px) {
.masthead,
.mastfoot,
.cover-container {
width: 1060px;
}
} | styles/main.css | a,
a:focus,
a:hover {
color: #fff;
}
/* Custom default button */
.btn-default {
color: #fff;
text-shadow: none;
/* Prevent inheritence from `body` */
background-color: transparent;
border: 2px solid #fff;
border-radius: 20px;
padding: 0.5rem 2rem;
}
.btn-default:hover,
.btn-default:focus {
background-color: rgba(255, 255, 255, 0.3);
}
/*
* Base structure
*/
html,
body {
height: 100%;
}
body {
background: url(../img/youth.jpg) no-repeat center center fixed;
background-size: cover;
color: #fff;
text-align: center;
font-family: 'Quicksand', sans-serif;
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
display: table;
width: 100%;
height: 100%;
/* For at least Firefox */
min-height: 100%;
background: rgba(48, 53, 70, 0.8);
box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}
.site-wrapper-inner {
display: table-cell;
vertical-align: top;
}
.cover-container {
margin-right: auto;
margin-left: auto;
}
/* Padding for spacing */
.inner {
padding: 30px;
}
/*
* Header
*/
.masthead-brand {
margin-top: 10px;
margin-bottom: 10px;
}
.nav-masthead {
text-align: center;
display: block;
}
.nav-masthead .nav-link {
display: inline-block;
}
@media (min-width: 768px) {
.masthead-brand {
float: left;
}
.nav-masthead {
float: right;
}
}
/*
* Cover
*/
.cover {
padding: 0 20px;
}
.cover .btn-notify {
padding: 10px 60px;
font-weight: 500;
text-transform: uppercase;
border-radius: 40px;
}
.cover-heading {
font-weight: 500;
text-transform: uppercase;
letter-spacing: 10px;
font-size: 2rem;
margin-bottom: 5rem;
}
@media (min-width: 768px) {
.cover-heading {
font-size: 3.4rem;
letter-spacing: 15px;
}
}
.cover-copy {
max-width: 500px;
margin: 0 auto 3rem;
}
/*
* Footer
*/
.mastfoot {
color: #999;
/* IE8 proofing */
color: rgba(255, 255, 255, 0.5);
}
/*
* Subscribe modal box
*/
#subscribeModal .modal-content {
background-color: #303546;
color: #fff;
text-align: left;
}
#subscribeModal .modal-header, #subscribeModal .modal-footer {
border: 0;
}
#subscribeModal .close {
color: #fff;
}
#subscribeModal .form-control {
margin-top: 1rem;
background: rgba(0, 0, 0, 0.4);
color: #fff;
}
#subscribeModal .form-control:focus {
border-color: #49506a;
}
/*
* Affix and center
*/
@media (min-width: 768px) {
/* Pull out the header and footer */
.masthead {
position: fixed;
top: 0;
}
.mastfoot {
position: fixed;
bottom: 0;
}
/* Start the vertical centering */
.site-wrapper-inner {
vertical-align: middle;
}
/* Handle the widths */
.masthead,
.mastfoot,
.cover-container {
width: 100%;
/* Must be percentage or pixels for horizontal alignment */
}
}
@media (min-width: 992px) {
.masthead,
.mastfoot,
.cover-container {
width: 1060px;
}
} | 0.507324 | 0.066146 |
@-moz-document url-prefix("https://www.google.com"), url-prefix("http://www.google.com"), url-prefix("https://www.google.co.il"), url-prefix("https://www.google.co.uk"), url-prefix("https://www.google.ru"), url-prefix("http://www.google.co.il"), url-prefix("http://www.google.co.uk"), url-prefix("http://www.google.ru"), url-prefix("https://www.google.com"), url-prefix("https://www.google.ca") {
/*
If you poke around in my code and find some bugs, consider emailing me to fix them.
Or even contribute to my CSS Styles through GitHub (EMAIL ME FOR THAT AS WELL).
*/
/* IMPORTING & SETING THE FONT */
/* IF YOU DONT WANT THE FONT JUST REMOVE LINE 9 (RIGHT BELOW) COMPLETELY
*/
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwZX5f-9o1vgP2EXwfjgl7AY.woff2) format('woff2');
}
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwaaRobkAwv3vxw3jMhVENGA.woff2) format('woff2');
}
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwT0LW-43aMEzIO6XUTLjad8.woff2) format('woff2');
}
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}
* {
font-family: Product Sans !important;
}
/* SETING KEYFRAMES FOR ANIMATIONS */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -15%, 0);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes elevate {
from {
box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0 0 0px rgba(0, 0, 0, 0);
}
to {}
}
/* APPLY THE ANIMATIONS */
.SDkEP {
animation-duration: 2s;
animation-fill-mode: both;
animation-name: fadeInUp;
}
img.lnXdpd {
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: fadeInDown;
animation-delay: 0s !important;
}
.RNNXgb {
animation-duration: 2s;
animation-fill-mode: both;
animation-name: fadeInUp;
}
.erkvQe {
animation-duration: 0.35s;
animation-fill-mode: both;
animation-name: fadeInDown;
visibility: visible;
animation-delay: 0s !important;
}
.sbibod {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
animation-duration: 0.5s;
animation-fill-mode: backwards;
animation-name: elevate;
animation-delay: 1.5s;
}
.sbibod:hover {
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
/* REMOVING ELEMENTS */
.fbar,
.gb_Ff.gb_ib,
.jhp input[type="submit"],
.gbqfba,
.gsri_a,
.KxwPGc SSwjIe,
#SIvCob,
div div center {
display: none !important;
}
} | data/usercss/197697.user.css | @-moz-document url-prefix("https://www.google.com"), url-prefix("http://www.google.com"), url-prefix("https://www.google.co.il"), url-prefix("https://www.google.co.uk"), url-prefix("https://www.google.ru"), url-prefix("http://www.google.co.il"), url-prefix("http://www.google.co.uk"), url-prefix("http://www.google.ru"), url-prefix("https://www.google.com"), url-prefix("https://www.google.ca") {
/*
If you poke around in my code and find some bugs, consider emailing me to fix them.
Or even contribute to my CSS Styles through GitHub (EMAIL ME FOR THAT AS WELL).
*/
/* IMPORTING & SETING THE FONT */
/* IF YOU DONT WANT THE FONT JUST REMOVE LINE 9 (RIGHT BELOW) COMPLETELY
*/
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwZX5f-9o1vgP2EXwfjgl7AY.woff2) format('woff2');
}
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwaaRobkAwv3vxw3jMhVENGA.woff2) format('woff2');
}
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwT0LW-43aMEzIO6XUTLjad8.woff2) format('woff2');
}
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v9/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}
* {
font-family: Product Sans !important;
}
/* SETING KEYFRAMES FOR ANIMATIONS */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -15%, 0);
}
to {
opacity: 1;
transform: none;
}
}
@keyframes elevate {
from {
box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0 0 0px rgba(0, 0, 0, 0);
}
to {}
}
/* APPLY THE ANIMATIONS */
.SDkEP {
animation-duration: 2s;
animation-fill-mode: both;
animation-name: fadeInUp;
}
img.lnXdpd {
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: fadeInDown;
animation-delay: 0s !important;
}
.RNNXgb {
animation-duration: 2s;
animation-fill-mode: both;
animation-name: fadeInUp;
}
.erkvQe {
animation-duration: 0.35s;
animation-fill-mode: both;
animation-name: fadeInDown;
visibility: visible;
animation-delay: 0s !important;
}
.sbibod {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
animation-duration: 0.5s;
animation-fill-mode: backwards;
animation-name: elevate;
animation-delay: 1.5s;
}
.sbibod:hover {
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
/* REMOVING ELEMENTS */
.fbar,
.gb_Ff.gb_ib,
.jhp input[type="submit"],
.gbqfba,
.gsri_a,
.KxwPGc SSwjIe,
#SIvCob,
div div center {
display: none !important;
}
} | 0.290578 | 0.334943 |
@font-face{
src: url("../fuentes/ballpark.ttf");
font-family: "ballpark";
}
@font-face{
src: url("../fuentes/dayrom.eot");
font-family: "dayrom";
}
body{
background-color: bisque;
}
#cabecera{
border: transparent;
width: 999px;
height: 150px;
}
h1{
font-family: "ballpark";
}
#maleta{
float: left;
width: 10%;
}
#menu{
border: transparent;
width: 500px;
height: 20px;
float: right;
margin-top: 30px;
margin-right: 200px;
}
a{
color: black;
}
#home{
display: inline-block;
margin-left: 30px;
}
#blog{
display: inline-block;
margin-left: 30px;
}
#viajes{
display: inline-block;
margin-left: 30px;
}
#contacto{
display: inline-block;
margin-left: 30px;
}
#imagen{
border: transparent;
width: 999px;
height: 200px;
}
#sanfrancisco{
width: 998px;
height: 199px;
border-radius: 15px;
}
#recuerdo{
border: transparent;
width: 550px;
height: 500px;
float: left;
}
#pinza{
width: 10%;
float: left;
}
h2{
font-family: "dayrom";
}
#tiempo{
border: transparent;
border-radius: 15px;
background-color: gray;
width: 400px;
height: 600px;
float: right;
margin-right: 330px;
}
#tiempoo{
border: transparent;
border-radius: 15px;
width: 20%;
height: 20%;
float: right;
margin-right: 300px;
top: 130%;
}
h3{
margin-left: 10px;
}
#flecha{
float: left;
margin-left: -12px;
margin-top: 80px;
}
#twitter{
margin-top: 90%;
margin-left: 12px;
}
#vimeo{
margin-top: 340px;
margin-left: 10px;
}
#facebook{
margin-top: 340px;
margin-left: 10px;
}
#flickr{
margin-top: 340px;
margin-left: 10px;
}
#footer{
border: solid black;
width: 999px;
height: 200px;
margin-top: 10px;
}
#fotos{
width: 300px;
height: 300px;
border: transparent;
display: inline-block;
margin-left: 10px;
margin-top: -200px;
}
#MIULTIMOTWEET{
font-size: 12px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
position:absolute;
top: 98%;
left: 50px;
bottom: 10px;
width: 390px;
height: 390px;
}
#Flecha{
font-size: 12px;
position:absolute;
top: 95.8%;
left: 400px;
bottom: 10px;
width: 390px;
height: 390px;
}
#MISFOTOGRAFIAS{
font-size: 12px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
position:absolute;
top: 98%;
left: 400px;
bottom: 10px;
width: 390px;
height: 390px;
}
#imagen1{
width: 10%;
display: inline-block;
margin-left: 30px;
border-radius: 40px;
margin-bottom: 40px;
}
#imagen2{
width: 10%;
display: inline-block;
margin-left: 30px;
}
#imagen3{
width: 10%;
display: inline-block;
margin-left: 10px;
}
#imagen4{
width: 10%;
display: inline-block;
margin-left: 30px;
}
#MISAMIGOS{
font-size: 12px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
position:absolute;
top: 99%;
left: 900px;
bottom: 10px;
width: 420px;
height: 390px;
right: 150%;
}
#PrimerosNombres{
font-size: 12px;
position:absolute;
top: 8%;
left: 150px;
bottom: 10px;
width: 390px;
height: 390px;
}
#SegundoNombre{
font-size: 12px;
position:absolute;
top: 101%;
left: 400px;
bottom: 10px;
width: 390px;
height: 390px;
}
hr{
border: solid black 2px;
width: 1500px;
margin-left: -650px;
}
#hr{
border: solid black 2px;
width: 1500px;
margin-left: -650px;
} | CSS/PracticaObligatoria.css | @font-face{
src: url("../fuentes/ballpark.ttf");
font-family: "ballpark";
}
@font-face{
src: url("../fuentes/dayrom.eot");
font-family: "dayrom";
}
body{
background-color: bisque;
}
#cabecera{
border: transparent;
width: 999px;
height: 150px;
}
h1{
font-family: "ballpark";
}
#maleta{
float: left;
width: 10%;
}
#menu{
border: transparent;
width: 500px;
height: 20px;
float: right;
margin-top: 30px;
margin-right: 200px;
}
a{
color: black;
}
#home{
display: inline-block;
margin-left: 30px;
}
#blog{
display: inline-block;
margin-left: 30px;
}
#viajes{
display: inline-block;
margin-left: 30px;
}
#contacto{
display: inline-block;
margin-left: 30px;
}
#imagen{
border: transparent;
width: 999px;
height: 200px;
}
#sanfrancisco{
width: 998px;
height: 199px;
border-radius: 15px;
}
#recuerdo{
border: transparent;
width: 550px;
height: 500px;
float: left;
}
#pinza{
width: 10%;
float: left;
}
h2{
font-family: "dayrom";
}
#tiempo{
border: transparent;
border-radius: 15px;
background-color: gray;
width: 400px;
height: 600px;
float: right;
margin-right: 330px;
}
#tiempoo{
border: transparent;
border-radius: 15px;
width: 20%;
height: 20%;
float: right;
margin-right: 300px;
top: 130%;
}
h3{
margin-left: 10px;
}
#flecha{
float: left;
margin-left: -12px;
margin-top: 80px;
}
#twitter{
margin-top: 90%;
margin-left: 12px;
}
#vimeo{
margin-top: 340px;
margin-left: 10px;
}
#facebook{
margin-top: 340px;
margin-left: 10px;
}
#flickr{
margin-top: 340px;
margin-left: 10px;
}
#footer{
border: solid black;
width: 999px;
height: 200px;
margin-top: 10px;
}
#fotos{
width: 300px;
height: 300px;
border: transparent;
display: inline-block;
margin-left: 10px;
margin-top: -200px;
}
#MIULTIMOTWEET{
font-size: 12px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
position:absolute;
top: 98%;
left: 50px;
bottom: 10px;
width: 390px;
height: 390px;
}
#Flecha{
font-size: 12px;
position:absolute;
top: 95.8%;
left: 400px;
bottom: 10px;
width: 390px;
height: 390px;
}
#MISFOTOGRAFIAS{
font-size: 12px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
position:absolute;
top: 98%;
left: 400px;
bottom: 10px;
width: 390px;
height: 390px;
}
#imagen1{
width: 10%;
display: inline-block;
margin-left: 30px;
border-radius: 40px;
margin-bottom: 40px;
}
#imagen2{
width: 10%;
display: inline-block;
margin-left: 30px;
}
#imagen3{
width: 10%;
display: inline-block;
margin-left: 10px;
}
#imagen4{
width: 10%;
display: inline-block;
margin-left: 30px;
}
#MISAMIGOS{
font-size: 12px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
position:absolute;
top: 99%;
left: 900px;
bottom: 10px;
width: 420px;
height: 390px;
right: 150%;
}
#PrimerosNombres{
font-size: 12px;
position:absolute;
top: 8%;
left: 150px;
bottom: 10px;
width: 390px;
height: 390px;
}
#SegundoNombre{
font-size: 12px;
position:absolute;
top: 101%;
left: 400px;
bottom: 10px;
width: 390px;
height: 390px;
}
hr{
border: solid black 2px;
width: 1500px;
margin-left: -650px;
}
#hr{
border: solid black 2px;
width: 1500px;
margin-left: -650px;
} | 0.210198 | 0.083367 |
---
extension: css
filter: erb
layout: nil # no layout
color:
background: "#FFFFFF"
foreground: "#000000"
border: "#ddd"
header: "#d00d1e"
# header: "#111111"
# link: "#125AA7"
link: "#d00d1e"
link-hover: "#000"
blockquote: "#666"
box-bg: "#eee"
highlight: "#B2CCFF"
quiet: "#666"
alt: "#666"
font_size: "100%"
code_font_size: "110%"
pre_font_size: "80%"
---
body {
font-family: Verdana, "Bitstream Vera Sans", sans-serif;
font-family: Georgia,Palatino,Times,'Times New Roman',sans-serif;
font-family: Palatino,sans-serif;
font-family: Cambria, Georgia, Times, Times New Roman, serif;
font-size: <%= @page.font_size %>;
color: <%= @page.color['foreground'] %>;
background-color: <%= @page.color['background'] %>;
}
pre,code,tt { font-family: 'andale mono', 'monotype.com', 'lucida console', monospace; }
p {
margin-top: 1em;
margin-bottom: 0.75em;
}
pre, code {
margin-top: 0em;
margin-right: 0pt;
margin-bottom: 0.75em;
margin-left: 0pt;
white-space: pre;
}
pre {
font-size: <%= @page.code_font_size %>;
}
pre.output {
font-size: <%= @page.pre_font_size %>;
padding: 1em;
}
div.tiny {
font-size: 90%;
}
.tinylogo {
line-height: inherit;
font-size: 0.3em;
vertical-align: 70%;
}
.missing {
background-color: red;
color: white;
}
/* Headings
* --------------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 { color: <%= @page.color['header'] %>; }
/* Text Elements
* --------------------------------------------------------------------- */
a { color: <%= @page.color['link'] %>; }
a:hover { color: <%= @page.color['link-hover'] %>; }
blockquote { color: <%= @page.color['blockquote'] %>; }
pre {
background: <%= @page.color['box-bg'] %>;
border: 1px solid <%= @page.color['border'] %>;
}
hr {
background: <%= @page.color['highlight'] %>;
color: <%= @page.color['highlight'] %>;
}
/* Tables
* --------------------------------------------------------------------- */
table {
border-top: 1px solid <%= @page.color['border'] %>;
border-left: 1px solid <%= @page.color['border'] %>;
}
th,td {
border-bottom: 1px solid <%= @page.color['border'] %>;
border-right: 1px solid <%= @page.color['border'] %>;
}
/* Default Classes
* --------------------------------------------------------------------- */
p.quiet { color: <%= @page.color['quiet'] %>; }
.alt { color: <%= @page.color['alt'] %>; }
p.title {
color: <%= @page.color['title'] %>;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: Georgia,Palatino,Times,'Times New Roman',sans-serif;
font-size: 2em;
margin-bottom: 0.75em;
}
#header p.title { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h1,h2,h3,h4,h5,h6 {
color: <%= @page.color['header'] %>;
font-family: Georgia,Palatino,Times,'Times New Roman',sans-serif;
font-weight: 400;
margin-top: 1em;
margin-bottom: 0.5em;
}
/* overrides */
h2 {
margin-top: 0em;
}
h5,h6 {
font-weight: bold;
}
a { text-decoration: none; }
em, dfn {
font-style: italic;
background-color: <%= @page.color['background'] %>;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
}
/* EOF */ | www/content/css/site.css | ---
extension: css
filter: erb
layout: nil # no layout
color:
background: "#FFFFFF"
foreground: "#000000"
border: "#ddd"
header: "#d00d1e"
# header: "#111111"
# link: "#125AA7"
link: "#d00d1e"
link-hover: "#000"
blockquote: "#666"
box-bg: "#eee"
highlight: "#B2CCFF"
quiet: "#666"
alt: "#666"
font_size: "100%"
code_font_size: "110%"
pre_font_size: "80%"
---
body {
font-family: Verdana, "Bitstream Vera Sans", sans-serif;
font-family: Georgia,Palatino,Times,'Times New Roman',sans-serif;
font-family: Palatino,sans-serif;
font-family: Cambria, Georgia, Times, Times New Roman, serif;
font-size: <%= @page.font_size %>;
color: <%= @page.color['foreground'] %>;
background-color: <%= @page.color['background'] %>;
}
pre,code,tt { font-family: 'andale mono', 'monotype.com', 'lucida console', monospace; }
p {
margin-top: 1em;
margin-bottom: 0.75em;
}
pre, code {
margin-top: 0em;
margin-right: 0pt;
margin-bottom: 0.75em;
margin-left: 0pt;
white-space: pre;
}
pre {
font-size: <%= @page.code_font_size %>;
}
pre.output {
font-size: <%= @page.pre_font_size %>;
padding: 1em;
}
div.tiny {
font-size: 90%;
}
.tinylogo {
line-height: inherit;
font-size: 0.3em;
vertical-align: 70%;
}
.missing {
background-color: red;
color: white;
}
/* Headings
* --------------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 { color: <%= @page.color['header'] %>; }
/* Text Elements
* --------------------------------------------------------------------- */
a { color: <%= @page.color['link'] %>; }
a:hover { color: <%= @page.color['link-hover'] %>; }
blockquote { color: <%= @page.color['blockquote'] %>; }
pre {
background: <%= @page.color['box-bg'] %>;
border: 1px solid <%= @page.color['border'] %>;
}
hr {
background: <%= @page.color['highlight'] %>;
color: <%= @page.color['highlight'] %>;
}
/* Tables
* --------------------------------------------------------------------- */
table {
border-top: 1px solid <%= @page.color['border'] %>;
border-left: 1px solid <%= @page.color['border'] %>;
}
th,td {
border-bottom: 1px solid <%= @page.color['border'] %>;
border-right: 1px solid <%= @page.color['border'] %>;
}
/* Default Classes
* --------------------------------------------------------------------- */
p.quiet { color: <%= @page.color['quiet'] %>; }
.alt { color: <%= @page.color['alt'] %>; }
p.title {
color: <%= @page.color['title'] %>;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: Georgia,Palatino,Times,'Times New Roman',sans-serif;
font-size: 2em;
margin-bottom: 0.75em;
}
#header p.title { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h1,h2,h3,h4,h5,h6 {
color: <%= @page.color['header'] %>;
font-family: Georgia,Palatino,Times,'Times New Roman',sans-serif;
font-weight: 400;
margin-top: 1em;
margin-bottom: 0.5em;
}
/* overrides */
h2 {
margin-top: 0em;
}
h5,h6 {
font-weight: bold;
}
a { text-decoration: none; }
em, dfn {
font-style: italic;
background-color: <%= @page.color['background'] %>;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
}
/* EOF */ | 0.316581 | 0.10793 |
body {
font-size:16px;
}
.App {
text-align: left;
}
h3 {
font-weight:normal !important;
}
.hidden-li {
list-style: none;
padding-left:0px;
}
.no-underline {
text-decoration: none;
}
.app-theme-choices li {
padding:10px 0;
}
.narrow-screen {
display:none;
}
.app-title {
font-size:1em;
}
.app-title-tiny {
margin:0px;
padding: 6px 6px 0px 6px;
font-size:0.8em;
display:flex;
justify-content:space-between;
}
.header-button {
padding-left:15px;
}
.app-subtitle {
font-size:.6em;
line-height:.6em;
}
.page {
padding:10px;
}
.header-clock-container {
width:100%;
display:flex;
flex-flow:row;
justify-content:center;
}
.header-clock-and-date {
padding-bottom:10px;
}
.header-row-item a {
text-decoration: none;
}
.browser-date {
text-align:center;
}
.browser-time {
text-align:center;
font-size:3em;
}
.bg-evening button {
color:white;
}
.bg-sunset button {
color:black;
}
.bg-night {
background-color:#282c34;
color:white;
}
.bg-night button {
color:white;
}
.navigation-links a {
font-size:1em;
color:black;
text-decoration: none;
}
.navigation-links a:visited {
color:black;
}
.navigation-links ul {
list-style-type: none;
display: flex;
flex-direction:column;
justify-content: right;
margin-right:30px;
}
.navigation-links ul li {
display: inline;
}
.clocks-quick-options {
display:flex;
flex-flow:row;
justify-content:right;
padding:10px;
gap:20px;
justify-content:space-between;
}
.clocks-row-container {
display: flex;
flex-flow:row wrap;
flex-direction: row;
justify-content: center;
gap:12px;
}
.clock-container {
height:300px;
width:300px;
justify-content:center;
border-radius:50%;
text-align:center;
padding-top:50px;
font-size:1.3em;
flex-basis:none;
}
.clock-top-row-container {
display:flex;
flex-direction:row;
justify-content:center;
}
.clock-display-date {
font-size:1em;
font-weight:normal;
}
.timezone-select-button {
padding:0px !important;
border:0px !important;
}
.time-col-container {
flex-direction: column;
padding:5px;
}
.clock-manage-button-container {
display:flex;
justify-content:center;
}
.modal-line {
min-height:42px;
}
.modal-label {
font-weight:bold;
}
.nickname-button {
padding:0 !important;
text-decoration:none !important;
}
.delete-clock-div {
display:flex;
justify-content:right;
}
.select-timezone {
color:black;
}
.edit-clock-name-row {
display:flex;
justify-content:space-between;
}
.edit-clock-name-buttons {
display:flex;
gap:10px;
}
.time-item {
flex-grow:1;
}
.timestamp {
font-variant-numeric: tabular-nums lining-nums;
}
.time-stamp-display {
font-size:4.4em;
}
.blue-border {
border: 1px solid blue;
}
.name-clock-link {
font-size:1.2em !important;
text-align:center !important;
border:none !important;
width:230px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-decoration: none !important;
}
.name-clock-link.btn.btn-sm {
font-size: 1em;
}
.App-header {
background-color: #282c34;
min-height: 10vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
.footer {
padding:10px;
display:flex;
justify-content:space-between;
}
.counter-container {
display:flex;
flex-direction:column;
}
.counter-item {
flex:1;
}
.red-btn {
color:red;
}
.calculator-container {
display:flex;
flex-direction:column;
justify-content:center;
margin: 10px;
}
.calculator-input {
width:80% !important;
}
.calculator-buttons-container {
display:flex;
justify-content:center;
align-items:center;
}
.calculator-result-item {
flex: 0 0 120px;
padding-left:6px;
line-height:32px;
}
.settings-container {
margin: 10px;
}
.previous-calculations-title {
margin-top:20px;
}
.timezone-modal {
height:456px;
}
.timezone-input::placeholder {
color:#282c34 !important;
}
.timezone-picker-list {
height:300px;
position:relative;
overflow-y:auto;
padding-left:0px;
border: 1px solid #e6ebec;
border-radius: 0 0 3px 3px;
background-color:white;
}
.timezone-picker-list-item {
padding: 3px 12px;
margin-left:0;
background:white;
}
.timezone-picker-list-item-focused {
background: #ececec;
}
.timezone-picker-list-item:hover {
background: #ececec;
}
.timezone-picker-list li {
list-style:none;
}
/* Two columns of clocks */
@media only screen and (max-width: 780px) {
.page {
padding:0;
}
.clocks-row-container {
justify-content: left;
gap:0px;
}
.clock-top-row-container {
display:flex;
flex-direction:row;
justify-content:space-between;
}
.clock-container {
width:100%;
height:120px;
border-radius:0%;
text-align:left;
padding-top:10px;
padding-left:10px;
font-size:0.8em;
flex-basis:50%;
}
.clock-container:hover {
filter: brightness(115%);
}
.name-clock-link {
text-align:left !important;
width:180px;
padding:0px !important;
}
.clock-manage-button-container {
justify-content:left;
}
.time-col-container {
padding-top:0px;
}
.time-stamp-display {
font-size:2.2em;
}
.navigation-links ul {
margin-right:2px;
}
.browser-time {
text-align:center;
font-size:2em;
}
}
.clock-display-preview-time {
font-size:.8em;
}
/* Two columns of clocks */
@media only screen and (max-width:450px) {
.name-clock-link {
width:160px;
}
}
/* Narrowest screen - clocks are 100% of screen width */
@media only screen and (max-width: 360px) {
.clock-container {
flex-basis:100%;
}
.name-clock-link {
text-align:left;
width:240px;
}
.clock-top-row-container {
justify-content:left;
}
} | src/App.css | body {
font-size:16px;
}
.App {
text-align: left;
}
h3 {
font-weight:normal !important;
}
.hidden-li {
list-style: none;
padding-left:0px;
}
.no-underline {
text-decoration: none;
}
.app-theme-choices li {
padding:10px 0;
}
.narrow-screen {
display:none;
}
.app-title {
font-size:1em;
}
.app-title-tiny {
margin:0px;
padding: 6px 6px 0px 6px;
font-size:0.8em;
display:flex;
justify-content:space-between;
}
.header-button {
padding-left:15px;
}
.app-subtitle {
font-size:.6em;
line-height:.6em;
}
.page {
padding:10px;
}
.header-clock-container {
width:100%;
display:flex;
flex-flow:row;
justify-content:center;
}
.header-clock-and-date {
padding-bottom:10px;
}
.header-row-item a {
text-decoration: none;
}
.browser-date {
text-align:center;
}
.browser-time {
text-align:center;
font-size:3em;
}
.bg-evening button {
color:white;
}
.bg-sunset button {
color:black;
}
.bg-night {
background-color:#282c34;
color:white;
}
.bg-night button {
color:white;
}
.navigation-links a {
font-size:1em;
color:black;
text-decoration: none;
}
.navigation-links a:visited {
color:black;
}
.navigation-links ul {
list-style-type: none;
display: flex;
flex-direction:column;
justify-content: right;
margin-right:30px;
}
.navigation-links ul li {
display: inline;
}
.clocks-quick-options {
display:flex;
flex-flow:row;
justify-content:right;
padding:10px;
gap:20px;
justify-content:space-between;
}
.clocks-row-container {
display: flex;
flex-flow:row wrap;
flex-direction: row;
justify-content: center;
gap:12px;
}
.clock-container {
height:300px;
width:300px;
justify-content:center;
border-radius:50%;
text-align:center;
padding-top:50px;
font-size:1.3em;
flex-basis:none;
}
.clock-top-row-container {
display:flex;
flex-direction:row;
justify-content:center;
}
.clock-display-date {
font-size:1em;
font-weight:normal;
}
.timezone-select-button {
padding:0px !important;
border:0px !important;
}
.time-col-container {
flex-direction: column;
padding:5px;
}
.clock-manage-button-container {
display:flex;
justify-content:center;
}
.modal-line {
min-height:42px;
}
.modal-label {
font-weight:bold;
}
.nickname-button {
padding:0 !important;
text-decoration:none !important;
}
.delete-clock-div {
display:flex;
justify-content:right;
}
.select-timezone {
color:black;
}
.edit-clock-name-row {
display:flex;
justify-content:space-between;
}
.edit-clock-name-buttons {
display:flex;
gap:10px;
}
.time-item {
flex-grow:1;
}
.timestamp {
font-variant-numeric: tabular-nums lining-nums;
}
.time-stamp-display {
font-size:4.4em;
}
.blue-border {
border: 1px solid blue;
}
.name-clock-link {
font-size:1.2em !important;
text-align:center !important;
border:none !important;
width:230px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-decoration: none !important;
}
.name-clock-link.btn.btn-sm {
font-size: 1em;
}
.App-header {
background-color: #282c34;
min-height: 10vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
.footer {
padding:10px;
display:flex;
justify-content:space-between;
}
.counter-container {
display:flex;
flex-direction:column;
}
.counter-item {
flex:1;
}
.red-btn {
color:red;
}
.calculator-container {
display:flex;
flex-direction:column;
justify-content:center;
margin: 10px;
}
.calculator-input {
width:80% !important;
}
.calculator-buttons-container {
display:flex;
justify-content:center;
align-items:center;
}
.calculator-result-item {
flex: 0 0 120px;
padding-left:6px;
line-height:32px;
}
.settings-container {
margin: 10px;
}
.previous-calculations-title {
margin-top:20px;
}
.timezone-modal {
height:456px;
}
.timezone-input::placeholder {
color:#282c34 !important;
}
.timezone-picker-list {
height:300px;
position:relative;
overflow-y:auto;
padding-left:0px;
border: 1px solid #e6ebec;
border-radius: 0 0 3px 3px;
background-color:white;
}
.timezone-picker-list-item {
padding: 3px 12px;
margin-left:0;
background:white;
}
.timezone-picker-list-item-focused {
background: #ececec;
}
.timezone-picker-list-item:hover {
background: #ececec;
}
.timezone-picker-list li {
list-style:none;
}
/* Two columns of clocks */
@media only screen and (max-width: 780px) {
.page {
padding:0;
}
.clocks-row-container {
justify-content: left;
gap:0px;
}
.clock-top-row-container {
display:flex;
flex-direction:row;
justify-content:space-between;
}
.clock-container {
width:100%;
height:120px;
border-radius:0%;
text-align:left;
padding-top:10px;
padding-left:10px;
font-size:0.8em;
flex-basis:50%;
}
.clock-container:hover {
filter: brightness(115%);
}
.name-clock-link {
text-align:left !important;
width:180px;
padding:0px !important;
}
.clock-manage-button-container {
justify-content:left;
}
.time-col-container {
padding-top:0px;
}
.time-stamp-display {
font-size:2.2em;
}
.navigation-links ul {
margin-right:2px;
}
.browser-time {
text-align:center;
font-size:2em;
}
}
.clock-display-preview-time {
font-size:.8em;
}
/* Two columns of clocks */
@media only screen and (max-width:450px) {
.name-clock-link {
width:160px;
}
}
/* Narrowest screen - clocks are 100% of screen width */
@media only screen and (max-width: 360px) {
.clock-container {
flex-basis:100%;
}
.name-clock-link {
text-align:left;
width:240px;
}
.clock-top-row-container {
justify-content:left;
}
} | 0.565299 | 0.081046 |
=========================================== */
@font-face {
font-family: "Noto Serif";
src:
url("src/NotoSerifJP-Medium.woff") format("woff"),
url("src/NotoSerifJP-Medium.otf") format("opentype");
font-weight: normal;
font-style : normal;
}
@font-face {
font-family: "Noto Sans";
src:
url("src/NotoSansJP-Medium.woff") format("woff"),
url("src/NotoSansJP-Medium.otf") format("opentype");
font-weight: normal;
font-style : normal;
}
/* ======================================== */
/* 通知
=========================================== */
.notification {
position : absolute;
top : 0;
left : 0;
right : 0;
bottom : 0;
margin : 20px auto;
background : #111;
color : white;
font-size : 17px;
width : 400px;
height : 40px;
border-radius: 10px;
line-height : 40px;
text-align : center;
}
/* ======================================== */
/* GLINK
=========================================== */
.glink_button.tempura_theme_dark {
color : white;
box-shadow : initial;
background : initial;
border : initial;
padding : 0;
}
.glink_button.tempura_theme_dark:hover {
text-shadow : 0px 0px 5px #F00, 0px 0px 5px #F00, 0px 0px 5px #F00;
}
/* ======================================== */
/* クリック待ち画像
=========================================== */
.img_next {
width: 24px;
animation: img_next 1.2s steps(1) 0s infinite;
-webkit-animation: img_next 1.2s steps(1) 0s infinite;
}
@-webkit-keyframes img_next {
0%, 100% {opacity: 0}
50% {opacity: 1}
}
@keyframes img_next {
0%, 100% {opacity: 0}
50% {opacity: 1}
}
/* ======================================== */
/* REMODAL
=========================================== */
.remodal-overlay {
background: initial;
}
.remodal {
padding: 50px;
color : white;
font-size : 24px;
background: black;
background: rgba(15,15,15,1);
background: -moz-linear-gradient(top, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(15,15,15,1)), color-stop(100%, rgba(61,61,61,0.8)));
background: -webkit-linear-gradient(top, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
background: -o-linear-gradient(top, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
background: -ms-linear-gradient(top, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
background: linear-gradient(to bottom, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f0f0f', endColorstr='#3d3d3d', GradientType=0 );
}
.remodal-confirm,
.remodal-confirm:hover,
.remodal-confirm:focus,
.remodal-cancel,
.remodal-cancel:hover,
.remodal-cancel:focus
{
background: initial;
}
.remodal-confirm {
margin-right: 60px;
}
.remodal-cancel {
}
.remodal-confirm:hover,
.remodal-cancel:hover
{
text-shadow: 0px 0px 5px #F00, 0px 0px 5px #F00, 0px 0px 5px #F00;
} | data/others/plugin/tempura_theme_dark/css/others.css | =========================================== */
@font-face {
font-family: "Noto Serif";
src:
url("src/NotoSerifJP-Medium.woff") format("woff"),
url("src/NotoSerifJP-Medium.otf") format("opentype");
font-weight: normal;
font-style : normal;
}
@font-face {
font-family: "Noto Sans";
src:
url("src/NotoSansJP-Medium.woff") format("woff"),
url("src/NotoSansJP-Medium.otf") format("opentype");
font-weight: normal;
font-style : normal;
}
/* ======================================== */
/* 通知
=========================================== */
.notification {
position : absolute;
top : 0;
left : 0;
right : 0;
bottom : 0;
margin : 20px auto;
background : #111;
color : white;
font-size : 17px;
width : 400px;
height : 40px;
border-radius: 10px;
line-height : 40px;
text-align : center;
}
/* ======================================== */
/* GLINK
=========================================== */
.glink_button.tempura_theme_dark {
color : white;
box-shadow : initial;
background : initial;
border : initial;
padding : 0;
}
.glink_button.tempura_theme_dark:hover {
text-shadow : 0px 0px 5px #F00, 0px 0px 5px #F00, 0px 0px 5px #F00;
}
/* ======================================== */
/* クリック待ち画像
=========================================== */
.img_next {
width: 24px;
animation: img_next 1.2s steps(1) 0s infinite;
-webkit-animation: img_next 1.2s steps(1) 0s infinite;
}
@-webkit-keyframes img_next {
0%, 100% {opacity: 0}
50% {opacity: 1}
}
@keyframes img_next {
0%, 100% {opacity: 0}
50% {opacity: 1}
}
/* ======================================== */
/* REMODAL
=========================================== */
.remodal-overlay {
background: initial;
}
.remodal {
padding: 50px;
color : white;
font-size : 24px;
background: black;
background: rgba(15,15,15,1);
background: -moz-linear-gradient(top, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(15,15,15,1)), color-stop(100%, rgba(61,61,61,0.8)));
background: -webkit-linear-gradient(top, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
background: -o-linear-gradient(top, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
background: -ms-linear-gradient(top, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
background: linear-gradient(to bottom, rgba(15,15,15,1) 0%, rgba(61,61,61,0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f0f0f', endColorstr='#3d3d3d', GradientType=0 );
}
.remodal-confirm,
.remodal-confirm:hover,
.remodal-confirm:focus,
.remodal-cancel,
.remodal-cancel:hover,
.remodal-cancel:focus
{
background: initial;
}
.remodal-confirm {
margin-right: 60px;
}
.remodal-cancel {
}
.remodal-confirm:hover,
.remodal-cancel:hover
{
text-shadow: 0px 0px 5px #F00, 0px 0px 5px #F00, 0px 0px 5px #F00;
} | 0.36625 | 0.10393 |
table.jCalendar {
border: 1px solid #383838;
background: #aaa;
border-collapse: separate;
border-spacing: 0;
width: 100%;
}
table.jCalendar th {
background-color: #f5f5f5;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f5f5), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(#f5f5f5, #ececec);
background-image: -moz-linear-gradient(#f5f5f5, #ececec);
background-image: -o-linear-gradient(#f5f5f5, #ececec);
background-image: linear-gradient(#f5f5f5, #ececec);
border-color: #BBBBBB;
border-style: none none solid none;
border-width: medium medium 1px medium;
color: #666666;
font-weight: normal;
padding: 3px 5px;
text-shadow: 0 1px 0 white;
}
table.jCalendar td {
background-color: #E7E7E7;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #E7E7E7), color-stop(100%, #D9D9D9));
background-image: -webkit-linear-gradient(#E7E7E7, #D9D9D9);
background-image: -moz-linear-gradient(#E7E7E7, #D9D9D9);
background-image: -o-linear-gradient(#E7E7E7, #D9D9D9);
background-image: linear-gradient(#E7E7E7, #D9D9D9);
border-color: #BBBBBB;
border-style: none none solid solid;
border-width: medium medium 1px 1px;
-webkit-box-shadow: 1px 1px 0 white inset;
-moz-box-shadow: 1px 1px 0 white inset;
box-shadow: 1px 1px 0 white inset;
color: #666666;
font-weight: bold;
padding: 5px;
text-align: center;
text-shadow: 0 1px 0 white;
}
table.jCalendar td.other-month {
background-color: #f5f5f5;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f5f5), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(#f5f5f5, #ececec);
background-image: -moz-linear-gradient(#f5f5f5, #ececec);
background-image: -o-linear-gradient(#f5f5f5, #ececec);
background-image: linear-gradient(#f5f5f5, #ececec);
color: #B0B0B0;
}
table.jCalendar td.today {
text-decoration: underline;
}
table.jCalendar td.selected {
background-color: #66B1C4;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #66B1C4), color-stop(100%, #58A1B2));
background-image: -webkit-linear-gradient(#66B1C4, #58A1B2);
background-image: -moz-linear-gradient(#66B1C4, #58A1B2);
background-image: -o-linear-gradient(#66B1C4, #58A1B2);
background-image: linear-gradient(#66B1C4, #58A1B2);
border-color: #54838B;
-webkit-box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
-moz-box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
color: #FFFFFF;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
}
table.jCalendar td.selected.dp-hover, table.jCalendar td.selected:hover
{
background: #f33;
color: #FFFFFF;
}
table.jCalendar td.dp-hover,
table.jCalendar td:hover,
table.jCalendar tr.activeWeekHover td {
background: #fff;
color: #000;
}
table.jCalendar tr.selectedWeek td {
background-color: #66B1C4;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #66B1C4), color-stop(100%, #58A1B2));
background-image: -webkit-linear-gradient(#66B1C4, #58A1B2);
background-image: -moz-linear-gradient(#66B1C4, #58A1B2);
background-image: -o-linear-gradient(#66B1C4, #58A1B2);
background-image: linear-gradient(#66B1C4, #58A1B2);
border-color: #54838B;
-webkit-box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
-moz-box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
color: #FFFFFF;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
}
table.jCalendar td.disabled, table.jCalendar td.disabled:hover, table.jCalendar td.disabled.dp-hover {
background: #fefefe;
color: #bbb;
}
table.jCalendar td.unselectable,
table.jCalendar td.unselectable:hover,
table.jCalendar td.unselectable.dp-hover {
background: #fefefe;
color: #bbb;
}
/* For the popup */
/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */
div.dp-popup {
position: relative;
background: #eee;
font-size: 10px;
font-family: arial, sans-serif;
padding: 2px;
width: 171px;
line-height: 1.2em;
}
div#dp-popup {
position: absolute;
z-index: 199;
}
div.dp-popup h2 {
background-color: #383838;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3A3A3A), color-stop(100%, #373737));
background-image: -webkit-linear-gradient(#3A3A3A, #373737);
background-image: -moz-linear-gradient(#3A3A3A, #373737);
background-image: -o-linear-gradient(#3A3A3A, #373737);
background-image: linear-gradient(#3A3A3A, #373737);
border: 1px solid #393939;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 1px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 1px rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 1px rgba(0, 0, 0, 0.3);
color: #E0E0E0;
font-size: 11px;
font-weight: bold;
height: 20px;
line-height: 20px;
margin: 0;
padding: 5px;
text-align: center;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.9);
}
a#dp-close {
font-size: 11px;
padding: 4px 0;
text-align: center;
display: block;
}
a#dp-close:hover {
text-decoration: underline;
}
div.dp-popup a {
color: #E0E0E0;
font-size: 11px;
height: 20px;
line-height: 20px;
padding: 5px 2px 0;
text-decoration: none;
}
div.dp-popup div.dp-nav-prev {
position: absolute;
top: 2px;
left: 4px;
width: 100px;
}
div.dp-popup div.dp-nav-prev a {
float: left;
}
/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
cursor: pointer;
}
div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
cursor: default;
}
div.dp-popup div.dp-nav-next {
position: absolute;
top: 2px;
right: 4px;
width: 100px;
}
div.dp-popup div.dp-nav-next a {
float: right;
}
div.dp-popup a.disabled {
cursor: default;
color: #aaa;
}
div.dp-popup td {
cursor: pointer;
}
div.dp-popup td.disabled {
cursor: default;
} | assets/datepicker/styles/datePicker.css | table.jCalendar {
border: 1px solid #383838;
background: #aaa;
border-collapse: separate;
border-spacing: 0;
width: 100%;
}
table.jCalendar th {
background-color: #f5f5f5;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f5f5), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(#f5f5f5, #ececec);
background-image: -moz-linear-gradient(#f5f5f5, #ececec);
background-image: -o-linear-gradient(#f5f5f5, #ececec);
background-image: linear-gradient(#f5f5f5, #ececec);
border-color: #BBBBBB;
border-style: none none solid none;
border-width: medium medium 1px medium;
color: #666666;
font-weight: normal;
padding: 3px 5px;
text-shadow: 0 1px 0 white;
}
table.jCalendar td {
background-color: #E7E7E7;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #E7E7E7), color-stop(100%, #D9D9D9));
background-image: -webkit-linear-gradient(#E7E7E7, #D9D9D9);
background-image: -moz-linear-gradient(#E7E7E7, #D9D9D9);
background-image: -o-linear-gradient(#E7E7E7, #D9D9D9);
background-image: linear-gradient(#E7E7E7, #D9D9D9);
border-color: #BBBBBB;
border-style: none none solid solid;
border-width: medium medium 1px 1px;
-webkit-box-shadow: 1px 1px 0 white inset;
-moz-box-shadow: 1px 1px 0 white inset;
box-shadow: 1px 1px 0 white inset;
color: #666666;
font-weight: bold;
padding: 5px;
text-align: center;
text-shadow: 0 1px 0 white;
}
table.jCalendar td.other-month {
background-color: #f5f5f5;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f5f5), color-stop(100%, #ececec));
background-image: -webkit-linear-gradient(#f5f5f5, #ececec);
background-image: -moz-linear-gradient(#f5f5f5, #ececec);
background-image: -o-linear-gradient(#f5f5f5, #ececec);
background-image: linear-gradient(#f5f5f5, #ececec);
color: #B0B0B0;
}
table.jCalendar td.today {
text-decoration: underline;
}
table.jCalendar td.selected {
background-color: #66B1C4;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #66B1C4), color-stop(100%, #58A1B2));
background-image: -webkit-linear-gradient(#66B1C4, #58A1B2);
background-image: -moz-linear-gradient(#66B1C4, #58A1B2);
background-image: -o-linear-gradient(#66B1C4, #58A1B2);
background-image: linear-gradient(#66B1C4, #58A1B2);
border-color: #54838B;
-webkit-box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
-moz-box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
color: #FFFFFF;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
}
table.jCalendar td.selected.dp-hover, table.jCalendar td.selected:hover
{
background: #f33;
color: #FFFFFF;
}
table.jCalendar td.dp-hover,
table.jCalendar td:hover,
table.jCalendar tr.activeWeekHover td {
background: #fff;
color: #000;
}
table.jCalendar tr.selectedWeek td {
background-color: #66B1C4;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #66B1C4), color-stop(100%, #58A1B2));
background-image: -webkit-linear-gradient(#66B1C4, #58A1B2);
background-image: -moz-linear-gradient(#66B1C4, #58A1B2);
background-image: -o-linear-gradient(#66B1C4, #58A1B2);
background-image: linear-gradient(#66B1C4, #58A1B2);
border-color: #54838B;
-webkit-box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
-moz-box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.2) inset;
color: #FFFFFF;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
}
table.jCalendar td.disabled, table.jCalendar td.disabled:hover, table.jCalendar td.disabled.dp-hover {
background: #fefefe;
color: #bbb;
}
table.jCalendar td.unselectable,
table.jCalendar td.unselectable:hover,
table.jCalendar td.unselectable.dp-hover {
background: #fefefe;
color: #bbb;
}
/* For the popup */
/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */
div.dp-popup {
position: relative;
background: #eee;
font-size: 10px;
font-family: arial, sans-serif;
padding: 2px;
width: 171px;
line-height: 1.2em;
}
div#dp-popup {
position: absolute;
z-index: 199;
}
div.dp-popup h2 {
background-color: #383838;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3A3A3A), color-stop(100%, #373737));
background-image: -webkit-linear-gradient(#3A3A3A, #373737);
background-image: -moz-linear-gradient(#3A3A3A, #373737);
background-image: -o-linear-gradient(#3A3A3A, #373737);
background-image: linear-gradient(#3A3A3A, #373737);
border: 1px solid #393939;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 1px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 1px rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 1px rgba(0, 0, 0, 0.3);
color: #E0E0E0;
font-size: 11px;
font-weight: bold;
height: 20px;
line-height: 20px;
margin: 0;
padding: 5px;
text-align: center;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.9);
}
a#dp-close {
font-size: 11px;
padding: 4px 0;
text-align: center;
display: block;
}
a#dp-close:hover {
text-decoration: underline;
}
div.dp-popup a {
color: #E0E0E0;
font-size: 11px;
height: 20px;
line-height: 20px;
padding: 5px 2px 0;
text-decoration: none;
}
div.dp-popup div.dp-nav-prev {
position: absolute;
top: 2px;
left: 4px;
width: 100px;
}
div.dp-popup div.dp-nav-prev a {
float: left;
}
/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
cursor: pointer;
}
div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
cursor: default;
}
div.dp-popup div.dp-nav-next {
position: absolute;
top: 2px;
right: 4px;
width: 100px;
}
div.dp-popup div.dp-nav-next a {
float: right;
}
div.dp-popup a.disabled {
cursor: default;
color: #aaa;
}
div.dp-popup td {
cursor: pointer;
}
div.dp-popup td.disabled {
cursor: default;
} | 0.290276 | 0.200851 |
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap');
* {
box-sizing: content-box;
padding: 0;
margin: 0;
}
body {
height: 100vh;
width: 100vw;
background-image: url("images/bg-pattern-desktop.svg");
background-repeat: no-repeat;
background-size: cover;
}
.container {
display: flex;
}
.hidden {
display: none;
}
#left-side-div {
display: flex;
flex-direction: column;
margin: 50px 100px;
}
.black-text {
color: hsl(0, 6%, 24%);
font-size: 3rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5em;
margin-bottom: 0.5em;
}
.were {
color: hsl(0, 36%, 70%);
font-size: 3rem;
text-transform: uppercase;
letter-spacing: 0.5em;
}
p {
color: hsl(0, 36%, 70%);
padding-bottom: 30px;
line-height: 1.2;
}
form {
width: 100%;
position: relative;
}
input {
background-color: transparent;
border: 1px solid hsl(0, 36%, 70%);
border-radius: 50px;
font-size: 16px;
padding: 15px 30px;
height: 25px;
width: 85%;
outline: none;
}
input::placeholder {
color: hsl(0, 36%, 70%);
}
.button {
background: linear-gradient(135deg, hsl(0, 80%, 86%), hsl(0, 36%, 70%));
border-radius: 50px;
padding: 10px;
width: 65px;
height: 35px;
position: absolute;
right: 0;
top: 0;
box-shadow: 0 10px 30px -5px hsl(0, 36, 70%);
border: 1px solid hsl(0, 36%, 70%);
outline: none;
cursor: pointer;
}
#text-div {
width: 100%;
padding: 100px 20px 0 0;
font-family: "Josefin Sans", sans-serif;
}
#img-div {
height: 100vh;
min-width: 50%;
background-image: url('images/hero-desktop.jpg');
background-size: cover;
background-repeat: no-repeat;
}
#error-message {
color: hsl(0, 93%, 68%);
padding: 10px 0 20px 30px;
}
#exclamation-point {
background: hsl(0, 93%, 68%);
position: absolute;
height: 25px;
width: 25px;
border-radius: 50%;
top: 15px;
right: 21%;
opacity: 0;
}
.display-block {
display: block;
}
.display-none {
display: none;
}
@media (max-width: 800px){
#img-div {
display: none;
overflow: hidden;
height: 0;
}
#left-side-div {
display: flex;
flex-direction: column;
margin: 20px 10px;
width: 100%;
}
#text-div {
width: 375px;
text-align: center;
margin: 10px 0px;
padding: 50px 0 0 0;
}
#text-div > p {
line-height: 1.2;
width: 300px;
padding: 10px 20px;
margin: 0px -20px;
}
input {
width: 225px;
margin-top: 10px;
margin-left: -60px;
}
.button {
width: 50px;
right: 75px;
top: 10px;
}
.display-none {
display: block;
margin: 20px -10px;
width: 375px;
}
.were, .black-text {
margin: 0px 80px 0px 0px;
letter-spacing: 0.2em;
}
#error-message {
padding: 10px 0 0px 30px;
text-align: left;
}
#exclamation-point {
background: hsl(0, 93%, 68%);
position: absolute;
height: 25px;
width: 25px;
border-radius: 50%;
top: 25px;
right: 40%;
opacity: 0;
}
} | style.css | @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap');
* {
box-sizing: content-box;
padding: 0;
margin: 0;
}
body {
height: 100vh;
width: 100vw;
background-image: url("images/bg-pattern-desktop.svg");
background-repeat: no-repeat;
background-size: cover;
}
.container {
display: flex;
}
.hidden {
display: none;
}
#left-side-div {
display: flex;
flex-direction: column;
margin: 50px 100px;
}
.black-text {
color: hsl(0, 6%, 24%);
font-size: 3rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5em;
margin-bottom: 0.5em;
}
.were {
color: hsl(0, 36%, 70%);
font-size: 3rem;
text-transform: uppercase;
letter-spacing: 0.5em;
}
p {
color: hsl(0, 36%, 70%);
padding-bottom: 30px;
line-height: 1.2;
}
form {
width: 100%;
position: relative;
}
input {
background-color: transparent;
border: 1px solid hsl(0, 36%, 70%);
border-radius: 50px;
font-size: 16px;
padding: 15px 30px;
height: 25px;
width: 85%;
outline: none;
}
input::placeholder {
color: hsl(0, 36%, 70%);
}
.button {
background: linear-gradient(135deg, hsl(0, 80%, 86%), hsl(0, 36%, 70%));
border-radius: 50px;
padding: 10px;
width: 65px;
height: 35px;
position: absolute;
right: 0;
top: 0;
box-shadow: 0 10px 30px -5px hsl(0, 36, 70%);
border: 1px solid hsl(0, 36%, 70%);
outline: none;
cursor: pointer;
}
#text-div {
width: 100%;
padding: 100px 20px 0 0;
font-family: "Josefin Sans", sans-serif;
}
#img-div {
height: 100vh;
min-width: 50%;
background-image: url('images/hero-desktop.jpg');
background-size: cover;
background-repeat: no-repeat;
}
#error-message {
color: hsl(0, 93%, 68%);
padding: 10px 0 20px 30px;
}
#exclamation-point {
background: hsl(0, 93%, 68%);
position: absolute;
height: 25px;
width: 25px;
border-radius: 50%;
top: 15px;
right: 21%;
opacity: 0;
}
.display-block {
display: block;
}
.display-none {
display: none;
}
@media (max-width: 800px){
#img-div {
display: none;
overflow: hidden;
height: 0;
}
#left-side-div {
display: flex;
flex-direction: column;
margin: 20px 10px;
width: 100%;
}
#text-div {
width: 375px;
text-align: center;
margin: 10px 0px;
padding: 50px 0 0 0;
}
#text-div > p {
line-height: 1.2;
width: 300px;
padding: 10px 20px;
margin: 0px -20px;
}
input {
width: 225px;
margin-top: 10px;
margin-left: -60px;
}
.button {
width: 50px;
right: 75px;
top: 10px;
}
.display-none {
display: block;
margin: 20px -10px;
width: 375px;
}
.were, .black-text {
margin: 0px 80px 0px 0px;
letter-spacing: 0.2em;
}
#error-message {
padding: 10px 0 0px 30px;
text-align: left;
}
#exclamation-point {
background: hsl(0, 93%, 68%);
position: absolute;
height: 25px;
width: 25px;
border-radius: 50%;
top: 25px;
right: 40%;
opacity: 0;
}
} | 0.337749 | 0.086016 |
.sns-board-page .sns-top-group .fui-cell {
padding:.3rem;
}
.sns-board-page .sns-top-group:before{
display: none;
}
.sns-board-page .sns-top-group .fui-cell:after {
display: none;
}
.sns-board-page .sns-top-group .fui-cell .fui-cell-info {
font-size:0.65rem;
}
.sns-board-page .fui-card{
margin:.5rem 0;
}
.sns-board-page .empty {
color:#999;
font-size:.75rem;
margin:.5rem;
text-align: center;
}
.sns-board-page .btn-add-post {
position: absolute;
bottom:2.2rem;
right:1.1rem;
width:2.8rem;
height:2.8rem;
-webkit-border-radius:2.8rem;
-moz-border-radius:2.8rem;
border-radius:2.8rem;
line-height:2.6rem;
}
.sns-board-page .btn-add-post .icon {
font-size:1.2rem;
font-weight:bold;;
}
.sns-board-post-page .cell-funcs .icon {
font-size:1.3rem;margin-right:.5rem;color:#999;
}
.sns-board-page .fui-card-content {
-ms-word-break: break-all;
word-break: break-all;
overflow:hidden;
}
.sns-board-page .fui-card-content .fui-card-content-title {
font-size:0.85rem;padding:0.2rem 0;display: block;
}
.sns-board-page .menu .item .icon {
font-size:.75rem;
}
.post-card .image img { border-radius:2.2rem;}
.sns-post-detail-page .fui-article {
padding-top:.5rem;
}
.sns-post-detail-page .fui-article .fui-article-title {
padding-top:.2rem;
font-size:1.1rem;
}
.sns-post-detail-page .fui-article .fui-article-subtitle {
color:#999;
font-size:.75rem;
padding:0.6rem 0;
}.sns-post-detail-page .fui-article .fui-article-subtitle.func {
padding-top:.5rem;
}
.sns-post-detail-page .fui-article .fui-article-content {
color:#333;
font-size:0.8rem;
line-height:22px;
}
.sns-post-detail-page .post-detail-avatar img {
width:2.2rem;height:2.2rem;
-webkit-border-radius:2.2rem;
-moz-border-radius:2.2rem;
border-radius:2.2rem;
}
.fui-card .fui-card-content {
display: block;
}
.fui-card .fui-card-info .text .title {
color:#333;
}
.fui-card .fui-card-images {
display: inline-block;
position: relative;
overflow: hidden;
width:100%;
padding:0 0.5rem;
}
.fui-card .fui-card-images img {
float: left;
overflow: hidden;
padding-bottom: 5.5rem; /* 关键就在这里 */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.fui-card .fui-card-images .num {
position: absolute;
right:.68rem;
top:0rem;
background:rgba(0,0,0,0.8);
color:#fff;
border-top-left-radius: 0rem;
border-bottom-left-radius: 0.2rem;
padding:0.2rem;
}
.link { color: #1c84c6}
.board-label {
display:inline-block;
border:1px solid #00a0e9;
color: #00a0e9;
border-radius: 2rem;padding:0 .5rem;
}
.sns-post-detail-page .fui-navbar .nav-item {
font-size:.7rem;
}
.sns-post-detail-page .empty {
padding:1rem 0;
padding-top:0;
display: none;
}
.post-func .icon { font-size:1.2rem; color:#999;margin-right:.2rem;}
.post-func .icon.selected { color:#00a0e9 }
.post-face {
border-top:1px solid #d9d9d9;
width:100%;
overflow: hidden;
background:#fff;
padding:.5rem .2rem;
padding-right:.4rem;
margin:0 .5rem;
display: none;
}
.post-face .item {
float:left; width:24px;height:24px; margin:.1rem;
}
.fui-cell.post-image { display: none}
.sns-post-detail-page .text-reply {
padding:.2rem 0;color:red; color:#333; font-size:.75rem; word-break: break-all;
}
.sns-post-detail-page .text-time {
color:red; color:#999; padding-top:.2rem;
}
.sns-post-detail-page .text-remark {
font-size:.6rem;
}
.sns-post-detail-page .text-time .link { color: #999; }
.sns-post-detail-page .text-time .link .icon { font-size:.6rem;}
.sns-post-detail-page .text-time .link.selected { color: #1c84c6}
.sns-post-detail-page .text-parent {
margin-left:.2rem;
margin-top:.2rem;
padding-bottom:.2rem;
}
.text-parent .org{color:#eb7350;}
.sns-post-detail-page .reply-list {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: start;
height:auto;
}
.sns-post-detail-page .reply-avatar {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: start;
height:auto;
}
.sns-post-detail-page .reply-avatar img {
width:2rem;height:2rem;
-webkit-border-radius:2rem;
-moz-border-radius:2rem;
border-radius:2rem;
}
.sns-post-detail-page .post-detail-avatar img {
width:2.2rem;height:2.2rem;
-webkit-border-radius:2.2rem;
-moz-border-radius:2.2rem;
border-radius:2.2rem;
}
.level-label { font-size:0.6rem;padding:0 0.2rem;height:0.8rem;line-height: 0.8rem;-webkit-border-radius: 0.1rem;border-radius: 0.1rem;vertical-align: top;}
.content-images img.emoji {
width:24px; max-width:24px; display: inline-block;;
}
.user-info-page .user-bg .back{position: absolute;top: 0.5rem;left: 0.5rem;height: 1.75rem;width: 1.75rem;background: rgba(0,0,0,0.3);border-radius: 1rem;color:#fff;text-align: center}
.user-info-page .user-bg .back i{font-size: 1.5rem;line-height: 1.75rem;}
.user-info-page .user-bg {
width:100%;position:relative;
height:auto;
}
.user-info-page .user-bg .bg {
width:100%;
}
.user-info-page .user-bg .head {
background:#fff;
height: 4rem; width: 4rem; border-radius: 3rem; position: absolute; left: 50%; margin-left: -2rem; bottom: -2rem;
border:2px solid #fafafa; padding:.05rem;
}
.user-info-page .user-info {
position:relative;
top:2.5rem;
text-align: center;
}
.user-info-page .user-info .nickname {
color:#000;font-size:1rem;
display:block;;
}.user-info-page .user-info .label {
display:block;
}
.user-info-page .user-info .post {
padding-top:.5rem;
display:block;
font-size:.7rem;
color:#22b2e4;
}
.user-info-page .user-info .sign {
display:block;
font-size:.75rem;
color:#666;
padding:.5rem;
}.user-info-page .user-info .sign .icon {
color:#333;
}
.user-info-page .fui-line {
font-size:.75rem; color: #999;
}
.user-info-page .user-history {
position: relative;
top:3rem;
}
.user-info-page .user-history .boards {
position: relative;
padding:.5rem;
text-align: center;
width:100%;
overflow: hidden;
}
.user-info-page .user-history .boards .board-item {
width:18%;
height:4rem;
text-align: center;
float:left;
margin-right:.2rem;
margin-bottom:.2rem;
}
.user-info-page .user-history .boards .board-item img {
width:2.5rem;height:2.5rem;
}
.user-info-page .user-history .boards .board-item .text {
text-align: center;
font-size:.7rem;color:#666;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width:100%;
}
.user-info-page .user-history .board-more {
display:block;
text-align:center;
color:#22b2e4;
font-size:.7rem;
width:100%;
float:left;
}
.user-info-page .user-history .fui-list-group:after,
.user-info-page .user-history .fui-list-group:before{
display:none;
}
.user-info-page .user-history .post-more {
display:block;
text-align:center;
color:#22b2e4;
font-size:.7rem;
}
.fui-navbar ~ .fui-content, .fui-content.navbar{padding:0;}
@media only screen and (min-width: 992px){
.fui-lg-1{width:8.333333333333332%;}
}
@media only screen and (min-width: 1200px){
.fui-md-2{width:16.666666666666664%;}
}
@media only screen and (max-width: 768px){
.fui-sm-3{width:25%;}
}
@media only screen and (max-width: 320px){
.fui-xs-4{width:33.33333333333333%;}
}
.complain-type > span{display: block;float:left;padding:0.2rem 0.4rem;}
.complain-type > span a{height:1.2rem;display: block;text-align: center;line-height: 1.2rem;font-size:0.6rem;color:#666;-webkit-border-radius: 0.2rem;border-radius: 0.2rem;border:1px solid #cacaca;}
.complain-type > span a.active{color:#fff;background: #f60;border:1px solid #f60;}
.complain-title{padding:0.5rem;font-size:0.7rem;}
.complain-type{padding:0 0 0.2rem 0;}
.complain-type p{padding:0.2rem 0.5rem;font-size:0.6rem;}
.fui-cell.complain-image{display: none;}
#post_member{color:#f60;}
.sns-index-back{position:fixed;top: 0.5rem;left: 0.5rem;height: 1.75rem;width: 1.75rem;background: rgba(0,0,0,0.3);border-radius: 1rem;color: #fff;text-align: center;z-index:10;
display: block;}
.sns-index-back .icon{width:1.75rem;height:1.75rem;line-height: 1.75rem;display: block;font-size:1.2rem;}
.btn-sns-submit{background: #f60;color:#fff;display: block;} | addons/ewei_shopv2/plugin/sns/template/mobile/default/images/common.css | .sns-board-page .sns-top-group .fui-cell {
padding:.3rem;
}
.sns-board-page .sns-top-group:before{
display: none;
}
.sns-board-page .sns-top-group .fui-cell:after {
display: none;
}
.sns-board-page .sns-top-group .fui-cell .fui-cell-info {
font-size:0.65rem;
}
.sns-board-page .fui-card{
margin:.5rem 0;
}
.sns-board-page .empty {
color:#999;
font-size:.75rem;
margin:.5rem;
text-align: center;
}
.sns-board-page .btn-add-post {
position: absolute;
bottom:2.2rem;
right:1.1rem;
width:2.8rem;
height:2.8rem;
-webkit-border-radius:2.8rem;
-moz-border-radius:2.8rem;
border-radius:2.8rem;
line-height:2.6rem;
}
.sns-board-page .btn-add-post .icon {
font-size:1.2rem;
font-weight:bold;;
}
.sns-board-post-page .cell-funcs .icon {
font-size:1.3rem;margin-right:.5rem;color:#999;
}
.sns-board-page .fui-card-content {
-ms-word-break: break-all;
word-break: break-all;
overflow:hidden;
}
.sns-board-page .fui-card-content .fui-card-content-title {
font-size:0.85rem;padding:0.2rem 0;display: block;
}
.sns-board-page .menu .item .icon {
font-size:.75rem;
}
.post-card .image img { border-radius:2.2rem;}
.sns-post-detail-page .fui-article {
padding-top:.5rem;
}
.sns-post-detail-page .fui-article .fui-article-title {
padding-top:.2rem;
font-size:1.1rem;
}
.sns-post-detail-page .fui-article .fui-article-subtitle {
color:#999;
font-size:.75rem;
padding:0.6rem 0;
}.sns-post-detail-page .fui-article .fui-article-subtitle.func {
padding-top:.5rem;
}
.sns-post-detail-page .fui-article .fui-article-content {
color:#333;
font-size:0.8rem;
line-height:22px;
}
.sns-post-detail-page .post-detail-avatar img {
width:2.2rem;height:2.2rem;
-webkit-border-radius:2.2rem;
-moz-border-radius:2.2rem;
border-radius:2.2rem;
}
.fui-card .fui-card-content {
display: block;
}
.fui-card .fui-card-info .text .title {
color:#333;
}
.fui-card .fui-card-images {
display: inline-block;
position: relative;
overflow: hidden;
width:100%;
padding:0 0.5rem;
}
.fui-card .fui-card-images img {
float: left;
overflow: hidden;
padding-bottom: 5.5rem; /* 关键就在这里 */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.fui-card .fui-card-images .num {
position: absolute;
right:.68rem;
top:0rem;
background:rgba(0,0,0,0.8);
color:#fff;
border-top-left-radius: 0rem;
border-bottom-left-radius: 0.2rem;
padding:0.2rem;
}
.link { color: #1c84c6}
.board-label {
display:inline-block;
border:1px solid #00a0e9;
color: #00a0e9;
border-radius: 2rem;padding:0 .5rem;
}
.sns-post-detail-page .fui-navbar .nav-item {
font-size:.7rem;
}
.sns-post-detail-page .empty {
padding:1rem 0;
padding-top:0;
display: none;
}
.post-func .icon { font-size:1.2rem; color:#999;margin-right:.2rem;}
.post-func .icon.selected { color:#00a0e9 }
.post-face {
border-top:1px solid #d9d9d9;
width:100%;
overflow: hidden;
background:#fff;
padding:.5rem .2rem;
padding-right:.4rem;
margin:0 .5rem;
display: none;
}
.post-face .item {
float:left; width:24px;height:24px; margin:.1rem;
}
.fui-cell.post-image { display: none}
.sns-post-detail-page .text-reply {
padding:.2rem 0;color:red; color:#333; font-size:.75rem; word-break: break-all;
}
.sns-post-detail-page .text-time {
color:red; color:#999; padding-top:.2rem;
}
.sns-post-detail-page .text-remark {
font-size:.6rem;
}
.sns-post-detail-page .text-time .link { color: #999; }
.sns-post-detail-page .text-time .link .icon { font-size:.6rem;}
.sns-post-detail-page .text-time .link.selected { color: #1c84c6}
.sns-post-detail-page .text-parent {
margin-left:.2rem;
margin-top:.2rem;
padding-bottom:.2rem;
}
.text-parent .org{color:#eb7350;}
.sns-post-detail-page .reply-list {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: start;
height:auto;
}
.sns-post-detail-page .reply-avatar {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: start;
height:auto;
}
.sns-post-detail-page .reply-avatar img {
width:2rem;height:2rem;
-webkit-border-radius:2rem;
-moz-border-radius:2rem;
border-radius:2rem;
}
.sns-post-detail-page .post-detail-avatar img {
width:2.2rem;height:2.2rem;
-webkit-border-radius:2.2rem;
-moz-border-radius:2.2rem;
border-radius:2.2rem;
}
.level-label { font-size:0.6rem;padding:0 0.2rem;height:0.8rem;line-height: 0.8rem;-webkit-border-radius: 0.1rem;border-radius: 0.1rem;vertical-align: top;}
.content-images img.emoji {
width:24px; max-width:24px; display: inline-block;;
}
.user-info-page .user-bg .back{position: absolute;top: 0.5rem;left: 0.5rem;height: 1.75rem;width: 1.75rem;background: rgba(0,0,0,0.3);border-radius: 1rem;color:#fff;text-align: center}
.user-info-page .user-bg .back i{font-size: 1.5rem;line-height: 1.75rem;}
.user-info-page .user-bg {
width:100%;position:relative;
height:auto;
}
.user-info-page .user-bg .bg {
width:100%;
}
.user-info-page .user-bg .head {
background:#fff;
height: 4rem; width: 4rem; border-radius: 3rem; position: absolute; left: 50%; margin-left: -2rem; bottom: -2rem;
border:2px solid #fafafa; padding:.05rem;
}
.user-info-page .user-info {
position:relative;
top:2.5rem;
text-align: center;
}
.user-info-page .user-info .nickname {
color:#000;font-size:1rem;
display:block;;
}.user-info-page .user-info .label {
display:block;
}
.user-info-page .user-info .post {
padding-top:.5rem;
display:block;
font-size:.7rem;
color:#22b2e4;
}
.user-info-page .user-info .sign {
display:block;
font-size:.75rem;
color:#666;
padding:.5rem;
}.user-info-page .user-info .sign .icon {
color:#333;
}
.user-info-page .fui-line {
font-size:.75rem; color: #999;
}
.user-info-page .user-history {
position: relative;
top:3rem;
}
.user-info-page .user-history .boards {
position: relative;
padding:.5rem;
text-align: center;
width:100%;
overflow: hidden;
}
.user-info-page .user-history .boards .board-item {
width:18%;
height:4rem;
text-align: center;
float:left;
margin-right:.2rem;
margin-bottom:.2rem;
}
.user-info-page .user-history .boards .board-item img {
width:2.5rem;height:2.5rem;
}
.user-info-page .user-history .boards .board-item .text {
text-align: center;
font-size:.7rem;color:#666;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width:100%;
}
.user-info-page .user-history .board-more {
display:block;
text-align:center;
color:#22b2e4;
font-size:.7rem;
width:100%;
float:left;
}
.user-info-page .user-history .fui-list-group:after,
.user-info-page .user-history .fui-list-group:before{
display:none;
}
.user-info-page .user-history .post-more {
display:block;
text-align:center;
color:#22b2e4;
font-size:.7rem;
}
.fui-navbar ~ .fui-content, .fui-content.navbar{padding:0;}
@media only screen and (min-width: 992px){
.fui-lg-1{width:8.333333333333332%;}
}
@media only screen and (min-width: 1200px){
.fui-md-2{width:16.666666666666664%;}
}
@media only screen and (max-width: 768px){
.fui-sm-3{width:25%;}
}
@media only screen and (max-width: 320px){
.fui-xs-4{width:33.33333333333333%;}
}
.complain-type > span{display: block;float:left;padding:0.2rem 0.4rem;}
.complain-type > span a{height:1.2rem;display: block;text-align: center;line-height: 1.2rem;font-size:0.6rem;color:#666;-webkit-border-radius: 0.2rem;border-radius: 0.2rem;border:1px solid #cacaca;}
.complain-type > span a.active{color:#fff;background: #f60;border:1px solid #f60;}
.complain-title{padding:0.5rem;font-size:0.7rem;}
.complain-type{padding:0 0 0.2rem 0;}
.complain-type p{padding:0.2rem 0.5rem;font-size:0.6rem;}
.fui-cell.complain-image{display: none;}
#post_member{color:#f60;}
.sns-index-back{position:fixed;top: 0.5rem;left: 0.5rem;height: 1.75rem;width: 1.75rem;background: rgba(0,0,0,0.3);border-radius: 1rem;color: #fff;text-align: center;z-index:10;
display: block;}
.sns-index-back .icon{width:1.75rem;height:1.75rem;line-height: 1.75rem;display: block;font-size:1.2rem;}
.btn-sns-submit{background: #f60;color:#fff;display: block;} | 0.530723 | 0.045058 |
html {
font-size: 62.5%;
background-color: #ddd1c1;
}
h2 {
font-size: 3.2rem;
}
h3 {
font-size: 2.8rem;
}
h4 {
font-size: 1.5rem;
}
h1 {
font-size: 3.6rem;
}
.NavBar {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
margin: 0% auto;
padding-top: 2%;
border-bottom: 1px solid black;
}
@media (max-width: 500px) {
.NavBar {
flex-direction: column;
}
}
.NavBar h1 {
margin: 2%;
}
.NavBar .Nav {
width: 90%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 2%;
}
@media (max-width: 500px) {
.NavBar .Nav {
margin: 0%;
}
}
@media (max-width: 500px) {
.NavBar .Nav {
flex-direction: column;
}
}
.NavBar .Nav #SignupButton {
width: 10rem;
background-color: #FFFFFF;
padding: 0%;
color: #2d3142;
border-radius: 10px;
outline: none;
font-size: 2rem;
height: 2rem;
border: 1px solid #2d3142;
font-weight: bold;
text-align: center;
padding-top: 1%;
padding-bottom: 1.3%;
}
.NavBar .Nav #SignupButton:hover {
background: whitesmoke;
color: #47311e;
border: 2px solid #47311e;
}
.NavBar .Nav a {
text-decoration: none;
color: black;
font-size: 2rem;
}
@media (max-width: 500px) {
.NavBar .Nav a {
margin-bottom: 3%;
}
}
footer {
width: 100%;
font-size: 1.5rem;
text-align: center;
}
.Container {
width: 100%;
}
@media (max-width: 500px) {
.Container #NotInMobile {
display: none;
}
.Container .Marketing .Prompt {
padding: 20%;
}
.Container .Marketing .Prompt .CenterButton {
display: flex;
justify-content: center;
}
}
.Container .Marketing {
margin-top: 5%;
}
.Container .Marketing .CallToAction {
display: flex;
justify-content: space-between;
}
.Container .Marketing .CallToAction .Prompt {
padding-top: 5%;
padding-bottom: 5%;
padding-right: 5%;
padding-left: 10%;
margin: 2% auto;
}
.Container .Marketing .CallToAction .Button {
width: 50%;
background-color: #2d3142;
padding: 3%;
color: #FFFFFF;
border-radius: 10px;
outline: none;
font-size: 1.5rem;
text-align: center;
}
.Container .Marketing .CallToAction .HoldImage {
width: 80%;
margin: auto 0%;
}
.Container .Marketing .CallToAction .HoldImage .image {
max-width: 80%;
align-content: center;
}
.Container .Marketing .Advertisement {
text-align: center;
}
.Container .Marketing .Features .Common {
display: flex;
justify-content: space-between;
}
.Container .Marketing .Features .Common .HoldImage {
width: 50%;
margin: 2% 0%;
}
@media (max-width: 500px) {
.Container .Marketing .Features .Common .HoldImage {
width: 100%;
}
}
.Container .Marketing .Features .Common .HoldImage .image {
max-width: 100%;
}
.Container .Marketing .Features .Common .Ad {
font-size: 3rem;
margin-left: 3%;
}
@media (max-width: 500px) {
.Container .Marketing .Features .Feature1 {
flex-direction: column;
align-items: center;
}
}
@media (max-width: 500px) {
.Container .Marketing .Features .Feature2 {
flex-direction: column-reverse;
align-items: center;
}
}
.Container .Marketing .CallToAction2 {
width: 70%;
margin: 0% auto;
text-align: center;
}
.Container .Marketing .CallToAction2 .Button {
width: 50%;
background-color: #2d3142;
padding: 3%;
color: #FFFFFF;
border-radius: 10px;
outline: none;
font-size: 2rem;
text-align: center;
}
@media (max-width: 500px) {
.Container .Marketing .CallToAction2 .Button {
width: 90%;
background-color: #2d3142;
padding: 3%;
color: #FFFFFF;
border-radius: 10px;
outline: none;
font-size: 2rem;
text-align: center;
}
} | css/index.css | html {
font-size: 62.5%;
background-color: #ddd1c1;
}
h2 {
font-size: 3.2rem;
}
h3 {
font-size: 2.8rem;
}
h4 {
font-size: 1.5rem;
}
h1 {
font-size: 3.6rem;
}
.NavBar {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
margin: 0% auto;
padding-top: 2%;
border-bottom: 1px solid black;
}
@media (max-width: 500px) {
.NavBar {
flex-direction: column;
}
}
.NavBar h1 {
margin: 2%;
}
.NavBar .Nav {
width: 90%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 2%;
}
@media (max-width: 500px) {
.NavBar .Nav {
margin: 0%;
}
}
@media (max-width: 500px) {
.NavBar .Nav {
flex-direction: column;
}
}
.NavBar .Nav #SignupButton {
width: 10rem;
background-color: #FFFFFF;
padding: 0%;
color: #2d3142;
border-radius: 10px;
outline: none;
font-size: 2rem;
height: 2rem;
border: 1px solid #2d3142;
font-weight: bold;
text-align: center;
padding-top: 1%;
padding-bottom: 1.3%;
}
.NavBar .Nav #SignupButton:hover {
background: whitesmoke;
color: #47311e;
border: 2px solid #47311e;
}
.NavBar .Nav a {
text-decoration: none;
color: black;
font-size: 2rem;
}
@media (max-width: 500px) {
.NavBar .Nav a {
margin-bottom: 3%;
}
}
footer {
width: 100%;
font-size: 1.5rem;
text-align: center;
}
.Container {
width: 100%;
}
@media (max-width: 500px) {
.Container #NotInMobile {
display: none;
}
.Container .Marketing .Prompt {
padding: 20%;
}
.Container .Marketing .Prompt .CenterButton {
display: flex;
justify-content: center;
}
}
.Container .Marketing {
margin-top: 5%;
}
.Container .Marketing .CallToAction {
display: flex;
justify-content: space-between;
}
.Container .Marketing .CallToAction .Prompt {
padding-top: 5%;
padding-bottom: 5%;
padding-right: 5%;
padding-left: 10%;
margin: 2% auto;
}
.Container .Marketing .CallToAction .Button {
width: 50%;
background-color: #2d3142;
padding: 3%;
color: #FFFFFF;
border-radius: 10px;
outline: none;
font-size: 1.5rem;
text-align: center;
}
.Container .Marketing .CallToAction .HoldImage {
width: 80%;
margin: auto 0%;
}
.Container .Marketing .CallToAction .HoldImage .image {
max-width: 80%;
align-content: center;
}
.Container .Marketing .Advertisement {
text-align: center;
}
.Container .Marketing .Features .Common {
display: flex;
justify-content: space-between;
}
.Container .Marketing .Features .Common .HoldImage {
width: 50%;
margin: 2% 0%;
}
@media (max-width: 500px) {
.Container .Marketing .Features .Common .HoldImage {
width: 100%;
}
}
.Container .Marketing .Features .Common .HoldImage .image {
max-width: 100%;
}
.Container .Marketing .Features .Common .Ad {
font-size: 3rem;
margin-left: 3%;
}
@media (max-width: 500px) {
.Container .Marketing .Features .Feature1 {
flex-direction: column;
align-items: center;
}
}
@media (max-width: 500px) {
.Container .Marketing .Features .Feature2 {
flex-direction: column-reverse;
align-items: center;
}
}
.Container .Marketing .CallToAction2 {
width: 70%;
margin: 0% auto;
text-align: center;
}
.Container .Marketing .CallToAction2 .Button {
width: 50%;
background-color: #2d3142;
padding: 3%;
color: #FFFFFF;
border-radius: 10px;
outline: none;
font-size: 2rem;
text-align: center;
}
@media (max-width: 500px) {
.Container .Marketing .CallToAction2 .Button {
width: 90%;
background-color: #2d3142;
padding: 3%;
color: #FFFFFF;
border-radius: 10px;
outline: none;
font-size: 2rem;
text-align: center;
}
} | 0.533884 | 0.103612 |
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
top: 8px;
bottom: auto;
font-family: "Google Roboto";
}
.table-tools .btn-group {
margin-top: 0;
}
.table-tools .label-floating {
padding-bottom: 0;
}
.row.table-tools {
margin-top: 10px;
}
.sorting_1, th.sorting_asc, th.sorting_desc {
font-weight: 600;
background-color: #e9e9e9;
}
tr:not(.selected).odd>td.sorting_1 {
font-weight: 600;
background-color: #efefe9;
}
tr.selected>td {
background-color: rgba(155, 199, 251, .77);
}
table.dataTable thead .sorting:after {
display: inline-block;
font-family: 'Font Awesome 5 Free';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
content: "\f0dc";
opacity: .15;
}
table.dataTable thead .sorting:hover:after {
opacity: .8;
}
table.dataTable thead .sorting_asc:after {
display: inline-block;
font-family: 'Font Awesome 5 Free';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
content: "\f160";
}
table.dataTable thead .sorting_desc:after {
display: inline-block;
font-family: 'Font Awesome 5 Free';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
content: "\f161";
}
div.dataTables_wrapper div.dataTables_filter {
float: right;
}
div.dataTables_wrapper div.dataTables_filter input {
margin-left: 0;
}
/**
* Responsive visibility with colspan
*/
th.responsive-date {
width: 65px;
}
th.responsive-user {
width: 150px;
}
th.responsive-datetime {
width: 150px;
}
@media (max-width: 767px) {
th.hidden-xs, td.hidden-xs, th.hidden-xs[class*="responsive-"] {
display: table-cell !important;
width: 0;
overflow: hidden;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-xs {
visibility: hidden;
line-height: 0 !important;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-xs * {
display: none;
}
}
@media (min-width: 768px) and (max-width: 991px) {
th.hidden-sm, td.hidden-sm, th.hidden-sm[class*="responsive-"] {
display: table-cell !important;
width: 0;
overflow: hidden;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-sm {
visibility: hidden;
line-height: 0 !important;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-sm * {
display: none;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
th.hidden-md, td.hidden-md, th.hidden-md[class*="responsive-"] {
display: table-cell !important;
width: 0;
overflow: hidden;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-md {
visibility: hidden;
line-height: 0 !important;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-md * {
display: none;
}
}
@media (min-width: 1200px) {
th.hidden-lg, td.hidden-lg, th.hidden-lg[class*="responsive-"] {
display: table-cell !important;
width: 0;
overflow: hidden;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-lg {
visibility: hidden;
line-height: 0 !important;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-lg * {
display: none;
}
}
.pagination>li>a, .pagination>li>span {
border: 0;
border-radius: 30px !important;
transition: all .3s;
padding: 0 11px;
margin: 0 3px;
min-width: 30px;
height: 30px;
line-height: 30px;
color: #999;
font-weight: 400;
font-size: 12px;
text-transform: uppercase;
background: transparent;
}
.pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>span:hover, .pagination>li>span:focus {
color: #999;
}
.pagination>.active>a, .pagination>.active>span {
color: #999;
text-align: center;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
background-color: #9c27b0;
border-color: #9c27b0;
color: #fff;
box-shadow: 0 4px 5px 0 rgba(156, 39, 176, .14), 0 1px 10px 0 rgba(156, 39, 176, .12), 0 2px 4px -1px rgba(156, 39, 176, .2);
}
#loading {
position: fixed;
top: 1px;
right: 1px;
z-index: 9999;
margin-left: 0;
left: auto;
}
.spin.centered {
position: fixed;
top: 50%;
}
.spin {
margin-left: 50%;
left: -.3em;
position: relative;
}
.spin:not(.text-warning):not(.text-danger) {
color: lightgrey;
}
/* Prevent tooltip getting event and triggering mouseleave from other components. */
/* Make tooltip visible even for items inside Select2 */
.tooltip {
pointer-events: none;
z-index: 10001;
}
.panel-group .form-actions, .panel-group form {
/* See http://localhost:8081/poc/#/primevere/instruction */
margin-bottom: 0;
margin-top: 0;
}
.navbar-text {
margin-left: 10px;
margin-right: 10px;
}
.nav>li>a.hide {
display: none;
}
.navbar .nav>li.disabled>a, .btn.disabled .caret {
color: #999;
}
.alert>h1, .alert>h2, .alert>h3, .alert>h4, .alert>h5, .alert>h6 {
margin-top: 0;
}
.form-horizontal>.alert {
margin-left: -15px;
margin-right: -15px;
margin-top: -9px;
}
.modal-body>.form-horizontal>.alert {
margin-left: -24px;
margin-right: -24px;
}
/* nested nav-list */
.nav.nav-stacked.nav-pills li>a {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-left: none;
}
.nav.nav-stacked.nav-pills>li>a {
margin-left: -15px;
}
.nav.nav-stacked.nav-pills .nav-pills>li>a {
margin-left: -15px;
padding-left: 30px;
}
.nav.nav-stacked.nav-pills .nav-pills .nav-pills>li>a {
margin-left: -15px;
padding-left: 45px;
}
.security-disabled {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
-ms-filter: grayscale(100%);
filter: grayscale(100%);
opacity: .4;
zoom: 1;
cursor: default;
}
.security-disabled *, .disabled *, .security-disabled, .disabled {
cursor: default;
pointer-events: none;
}
.form-control.year {
width: 60px;
}
.form-control.month {
width: 80px;
}
a:hover {
cursor: pointer;
text-decoration: none;
}
.placeholder {
color: #aaa;
}
/**
* Required flag (red star)
*/
.form-group.required label::after {
color: rgba(238, 51, 34, .47);
margin-left: 2px;
margin-top: 1px;
position: absolute;
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 7px;
content: "\f069";
}
/**
* Small margin for aligned fields
*/
.fieldset legend .input-append span {
/* See http://localhost:8081/poc/#/primevere/instruction */
vertical-align: top;
}
legend .pull-right.form-group {
margin-bottom: 0;
line-height: 0;
}
legend .form-group {
font-size: 14px;
}
/* date picker */
.input-daterange {
width: 226px;
}
.date input[disabled]+.input-group-addon, .date input[readonly]+.input-group-addon, [data-provide="datepicker"][readonly]+.input-group-addon, [data-provide="datepicker"][disabled]+.input-group-addon {
pointer-events: none;
}
/* editable grid */
.tablebtn {
margin-bottom: 2px;
}
.table-hover>tbody>tr, .table-row-collapse, .gantt-table .child {
cursor: pointer;
}
.table-hover>tbody>tr:hover {
background-color: #d9edf7;
}
table.justified {
table-layout: fixed;
}
table td>a, table td>.btn-group, table td>.btn, table td>.dropdown-toggle, table td>.btn-link {
padding-right: 0;
padding-left: 0;
}
table td>a:not(:first-child), table td>.btn-group:not(:first-child), table td>.btn:not(:first-child), table td>.dropdown-toggle:not(:first-child), table td>.btn-link:not(:first-child) {
padding-left: 4px;
}
body {
padding-top: 70px;
}
.dropdown-menu {
z-index: 1051;
/* Just over popups */
}
.nyi {
pointer-events: none;
}
.modal-body {
position: static;
padding-bottom: 18px;
}
@media (min-width: 768px) {
.modal.medium .modal-dialog {
width: 750px;
}
.modal.large .modal-dialog {
width: 750px;
}
}
@media (min-width: 1024px) {
.modal.large .modal-dialog {
width: 1010px;
}
}
.form-group.has-error option {
color: black;
}
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
background-color: #f2dede;
}
.form-group.has-info input, .form-group.has-info select, .form-group.has-info textarea {
background-color: #d9edf7;
}
.form-group.has-warn input, .form-group.has-warn select, .form-group.has-warn textarea {
background-color: #fcf8e3;
}
.form-group.has-success input, .form-group.has-success select, .form-group.has-success textarea {
background-color: #dff0d8;
}
.nav-tabs>li>a.error {
color: #b94a48;
}
.nav-tabs>.active>a.error {
background-color: #f2dede;
border-color: #b94a48;
}
.nav-tabs>li>a:hover.error, .nav-tabs>li>a:focus.error {
background-color: #f2dede;
border-color: #ffbfbd #ffbfbd #b94a48;
}
.nav-tabs.error {
border-bottom-color: #b94a48;
}
@media (max-width: 979px) {
.navbar .brand {
padding-right: 0;
padding-left: 0;
margin: 0;
}
}
.truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.inline {
display: inline;
}
.flex {
display: flex;
}
.toggle-visibility, .toggle-visibility .toggle-visibility-content {
cursor: pointer;
}
.toggle-visibility .toggle-visibility-content {
display: none;
}
.toggle-visibility.active .toggle-visibility-content {
display: inherit;
}
.nav li a i.icon-lock {
opacity: .2;
filter: alpha(opacity=20);
float: left;
margin-top: 3px;
margin-left: -16px;
}
.collapse>.form-horizontal {
margin-top: 5px;
}
/* new classes */
.form-control.input-mini {
width: 60px;
}
.form-control.input-small {
width: 100px;
}
.form-control.input-medium {
width: 150px;
}
.form-control.input-large {
width: 210px;
}
.form-control.input-xlarge {
width: 270px;
}
.form-control.input-xxlarge {
width: 530px;
}
.form-control.input-mini.time {
padding-right: 10px;
}
.form-control.input-mini+.input-group-addon, .form-control.input-small+.input-group-addon, .form-control.input-medium+.input-group-addon, .form-control.input-large+.input-group-addon, .form-control.input-xlarge+.input-group-addon, .form-control.input-xxlarge+.input-group-addon, .month+.input-group-addon, .year+.input-group-addon, .date .input-group-addon, .date .input-group-btn, .form-control.input-small+.input-group-btn, .form-control.input-mini+.input-group-btn, .form-control.input-medium+.input-group-btn {
width: auto;
}
.input-group .input-group-btn {
padding: 0;
}
.input-group-addon:not(:first-child):not(:last-child) {
border-right: none;
}
.input-group.prepend>:last-child {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.input-group.append>:first-child {
border-left: none;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
@media (max-width: 1199px) {
.form-control {
padding: 6px;
}
}
.form-actions {
padding: 19px 0 20px 0;
margin-top: 20px;
margin-bottom: 20px;
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
text-align: right;
}
.modal-header>h4 {
/* .modal-title */
margin: 0;
line-height: 1.42857143;
}
.form-horizontal .form-group:not(.label-floating) .control-label:not([class*="col-"]), .form-horizontal .form-group>div:not([class*="col-"]) {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
@media (min-width: 768px) {
.modal .form-horizontal .form-group:not(.label-floating) .control-label:not([class*="col-"]) {
/* .col-sm-4 */
float: left;
width: 33.33333333%;
}
.modal .form-horizontal .form-group>.control-label+div:not([class*="col-"]) {
/* .col-sm-6 */
float: left;
width: 50%;
}
.modal .form-horizontal .form-group>div:not([class*="col-"]):first-child {
/* .col-sm-offset-4 (checkbox, radio) */
margin-left: 33.33333333%;
}
.auto-col .form-horizontal div[class*="col-"] .form-group:not(.label-floating) .control-label:not([class*="col-"]) {
/* .col-sm-4 */
float: left;
width: 33.33333333%;
}
.auto-col .form-horizontal div[class*="col-"] .form-group>.control-label+div:not([class*="col-"]) {
/* .col-sm-8 */
float: left;
width: 66.66666667%;
}
.auto-col .form-horizontal div[class*="col-"] .form-group>div:not([class*="col-"]):first-child {
/* .col-sm-offset-4 (checkbox, radio) */
margin-left: 33.33333333%;
}
.form-horizontal .form-group:not(.label-floating) .control-label:not([class*="col-"]) {
/* .col-sm-2 */
float: left;
width: 16.66666667%;
}
.form-horizontal .form-group>.control-label+div:not([class*="col-"]) {
/* .col-sm-4 */
float: left;
width: 25%;
}
.form-horizontal .form-group>div:not([class*="col-"]):first-child {
/* .col-sm-offset-2 (checkbox, radio) */
margin-left: 16.66666667%;
}
}
/* fix middle addon, and middle button like spinner */
.input-group-addon:not(:first-child), .btn-group-vertical+.input-group-addon {
border-left: 0;
}
.input-group-addon:not(:last-child) {
border-right: 0;
}
.input-group-addon+.input-group-addon {
border-left: 1px solid #ccc;
}
/* fix last button */
.fileinput-new.input-group .btn-file, .fileinput-new .input-group .btn-file {
border-right: 1px solid #ccc;
}
.fileinput {
white-space: nowrap;
}
/* Icon sizes */
.fa-2 {
font-size: 2em;
}
.fa-3 {
font-size: 4em;
}
.fa-4 {
font-size: 7em;
}
.fa-5 {
font-size: 12em;
}
.fa-6 {
font-size: 20em;
}
/* bootstrap-doc */
.bs-callout-danger, .bs-callout-danger h4 {
border-left-color: #ce4844;
}
.bs-callout-warning, .bs-callout-warning h4 {
border-left-color: #aa6708;
}
.bs-callout-info, .bs-callout-info h4 {
border-left-color: #1b809e;
}
.bs-callout p:last-child {
margin-bottom: 0;
}
.bs-callout {
padding: 20px;
margin: 20px 0;
border: 1px solid #eee;
border-left-width: 5px;
border-radius: 3px;
}
.bs-callout+.bs-callout {
margin-top: -5px;
}
.bs-callout h4 {
margin-top: 0;
margin-bottom: 5px;
}
/*
* Icon before text inside a dropdown menu
*/
.menu-icon {
margin-right: 2px;
margin-left: -14px;
}
.nav-icon {
width: 20px;
margin-left: -7px;
}
img.nav-icon {
width: 16px;
margin-left: -10px;
margin-right: 4px;
}
@media (max-width: 767px) {
table.dataTable thead>tr>th.icon-xs, .icon-xs {
padding-left: 0;
}
table.dataTable thead>tr>th.sorting.icon-xs {
padding-right: 15px;
}
.icon-xs {
width: 20px;
}
}
@media (max-width: 1199px) {
table.dataTable thead>tr>th.icon-sm, .icon-sm {
padding-left: 0;
}
table.dataTable thead>tr>th.sorting.icon-sm {
padding-right: 15px;
}
.icon-sm {
width: 20px;
}
}
@media (max-width: 1023px) {
table.dataTable thead>tr>th.icon-md, .icon-md {
padding-left: 0;
}
table.dataTable thead>tr>th.sorting.icon-md {
padding-right: 15px;
}
.icon-md {
width: 20px;
}
}
.icon {
width: 16px;
}
.icon-x2 {
width: 32px;
}
.icon-x3 {
width: 48px;
}
.icon-xs .fa, .icon-xs .fas, .icon-xs .far,.icon-xs .fab, .icon-md .fa, .icon-md .fas, .icon-md .far, .icon-md .fab, .icon-sm .fa, .icon-sm .fas, .icon-sm .far, .icon-sm .fab {
width: 16px;
}
.form-group .form-control+.form-control-feedback {
top: 10px;
}
/**
* CRON trimming
*/
#CronGenMainDiv .hours, #CronGenMainDiv .minutes {
padding: 0 0 0 1px;
}
/**
* Vertival progress
*/
.progress.vertical {
margin-bottom: 0;
width: 60px;
}
.progress.vertical {
width: 20px;
height: 100%;
float: left;
margin-right: 20px;
}
.progress.vertical .progress-bar {
width: 100%;
height: 0;
-webkit-transition: height .6s ease;
-o-transition: height .6s ease;
transition: height .6s ease;
}
/*
* Unstyled add-on button
* http://stackoverflow.com/questions/24682421/put-search-icon-near-textbox-using-bootstrap
*/
.input-group.input-group-unstyled input.form-control {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.input-group-unstyled .input-group-addon {
border-radius: 4px;
border: 0;
background-color: transparent;
}
.input-help {
position: relative;
top: -35px;
float: right;
height: 0;
left: 20px;
padding: 0;
opacity: .1;
}
.input-help:hover {
cursor: pointer;
opacity: 1;
}
.retractable {
padding-right: 0;
-webkit-transition: 250ms cubic-bezier(.1,.57,.1,1);
-ms-transition: 250ms cubic-bezier(.1,.57,.1,1);
-moz-transition: 250ms cubic-bezier(.1,.57,.1,1);
-o-transition: 250ms cubic-bezier(.1,.57,.1,1);
transition: 250ms cubic-bezier(.1,.57,.1,1);
-webkit-transform: translate(0px,0) translateZ(0px);
-ms-transform: translate(0px,0) translateZ(0px);
-moz-transform: translate(0px,0) translateZ(0px);
-o-transform: translate(0px,0) translateZ(0px);
transform: translate(0px,0) translateZ(0px);
z-index: 1;
}
@media (min-width: 1px) {
.retractable .nav-pills>.active {
margin-right: -1px;
}
.retractable.retracted+[class*="col-"] {
margin-left: 0;
width: 100%;
padding-left: 40px;
}
.retractable .nav-pills li>a {
border-radius: 0;
}
.retract {
filter: alpha(opacity=20);
opacity: .2;
right: -1px;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
position: absolute;
cursor: pointer;
background-color: #3f51b5;
color: #fff;
border-bottom: 1px solid #302f2f;
padding: 7px;
transition: all .1s linear 0s;
}
.retracted .retract {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.retract i {
display: none;
line-height: 1;
}
.retract:hover {
filter: alpha(opacity=100);
opacity: 1;
padding-right: 12px;
}
.retractable.retracted .nav-stacked li {
white-space: nowrap;
}
.retractable.retracted .retract i.retract-open, .retractable:not(.retracted) .retract i.retract-close {
display: block;
}
.retractable.retracted .hidden-retracted, .retractable:not(.retracted) .visible-retracted {
display: none;
}
}
@media (min-width: 992px) {
.retractable {
height: 100%;
position: fixed;
background-color: #f8f8f8;
border-right: 1px solid #e3e3e3;
margin-top: -70px;
padding-top: 70px;
}
.retractable .nav-pills>.active {
margin-right: -1px;
}
.retractable.retracted+[class*="col-"] {
margin-left: 0;
width: 100%;
padding-left: 40px;
}
.retractable .nav-pills li>a {
border-radius: 0;
}
.retractable.retracted {
width: 30px;
z-index: 1;
overflow-x: hidden;
}
.retract {
filter: alpha(opacity=20);
opacity: .2;
right: -1px;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
position: absolute;
cursor: pointer;
background-color: #3f51b5;
color: #fff;
border-bottom: 1px solid #302f2f;
padding: 7px;
transition: all .1s linear 0s;
}
.retracted .retract {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
width: 100%;
}
.retract i {
display: none;
line-height: 1;
}
.retract:hover {
filter: alpha(opacity=100);
opacity: 1;
padding-right: 12px;
}
.retractable.retracted .nav-stacked li {
white-space: nowrap;
}
.retractable.retracted .retract i.retract-open, .retractable:not(.retracted) .retract i.retract-close {
display: block;
}
.retractable.retracted .hidden-retracted, .retractable:not(.retracted) .visible-retracted {
display: none;
}
}
/* Hidden FS */
:-webkit-full-screen .hidden-fs {
display: none;
}
:-moz-full-screen .hidden-fs {
display: none;
}
:-ms-fullscreen .hidden-fs {
display: none;
}
:fullscreen .hidden-fs {
display: none;
}
:-webkit-full-screen .col-fs-12 {
width: 100%;
margin-left: 0;
}
:-moz-full-screen .col-fs-12 {
width: 100%;
margin-left: 0;
}
:-ms-fullscreen .col-fs-12 {
width: 100%;
margin-left: 0;
}
:fullscreen .col-fs-12 {
width: 100%;
margin-left: 0;
}
.form-group.has-error[data-error-property]+.tooltip>.tooltip-arrow, .form-group.has-error[data-error-property]+.tooltip>.tooltip-inner {
background-color: #f00;
}
.form-horizontal .form-group.label-floating, .modal .form-group.label-floating {
margin-top: 28px;
}
.modal .form-group .btn-group {
margin-top: 0;
}
.form-horizontal .form-group:not(.label-floating) label.control-label {
font-size: 16px;
line-height: 1.42857143;
margin: 2px 0 0;
}
.popover-title {
background-color: inherit;
}
.popover-content .alert {
margin-left: -29px;
margin-right: -29px;
margin-top: -10px;
}
.popover-content .form-actions {
margin-left: -29px;
margin-right: -29px;
}
#toast-container>div, #toast-container>div.rtl {
padding: 15px;
}
#toast-container>div.alert-danger {
opacity: .9;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
filter: alpha(opacity=90);
}
/* Visible FS */
.visible-fs {
display: none;
}
:-webkit-full-screen .visible-fs {
display: inline-block;
}
:-moz-full-screen .visible-fs {
display: inline-block;
}
:-ms-fullscreen .visible-fs {
display: inline-block;
}
:fullscreen .visible-fs {
display: inline-block;
}
.dropdown-menu {
border: 0;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
}
.dropdown-menu .divider {
background-color: rgba(0, 0, 0, .12);
}
.dropdown-menu li>a {
font-size: 13px;
padding: 10px 20px;
margin: 0 5px;
border-radius: 2px;
-webkit-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
transition: all 150ms linear;
}
.dropdown-menu li>a:hover, .dropdown-menu li>a:focus {
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);
}
.dropdown-menu.dropdown-with-icons li>a {
padding: 12px 20px 12px 12px;
}
.dropdown-menu.dropdown-with-icons li>a .material-icons {
vertical-align: middle;
font-size: 24px;
position: relative;
margin-top: -4px;
top: 1px;
margin-right: 12px;
opacity: .5;
}
.dropdown-menu li {
position: relative;
}
.dropdown-menu .divider {
margin: 5px 0;
}
.nav-pills>li.active>a,
.nav-tabs > li.active > a,
.nav > li.active > a,
.dropdown-menu li a:active,
.nav-pills .pill:hover, .nav-pills .pill:focus, .nav-pills>li>a:hover, .nav-pills>li>a:focus,
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a,
.nav > li > a:hover, .nav > li > a:focus,
.dropdown-menu li.active a:hover, .dropdown-menu li.active a:focus,.dropdown-menu li a:hover, .dropdown-menu li a:focus, .dropdown-menu li a:active,
.dropdown-menu li a:active {
color: #fff;
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px rgba(156, 39, 176, .4);
}
.nav-pills>li.active>a,
.nav-tabs > li.active > a,
.nav > li.active > a,
.dropdown-menu li a:active {
background-color: rgba(156, 39, 176);
}
.nav-pills .pill:hover, .nav-pills .pill:focus, .nav-pills>li>a:hover, .nav-pills>li>a:focus,
.nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover,
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus,
.nav > li > a:hover, .nav > li > a:focus,
.dropdown-menu li.active a:hover, .dropdown-menu li.active a:focus,.dropdown-menu li a:hover, .dropdown-menu li a:focus, .dropdown-menu li a:active {
background-color: rgba(156, 39, 176, .8);
}
.nav-pills.navbar-inverse > li > a {
color : #d8d2d2
}
.nav-pills.navbar-inverse > li:hover > a, .nav-pills.navbar-inverse > li.active > a {
color: #fff;
}
.pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>span:hover, .pagination>li>span:focus {
color: #999;
}
.pagination>.active>a, .pagination>.active>span {
color: #999;
text-align: center;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
background-color: #9c27b0;
border-color: #9c27b0;
color: #fff;
box-shadow: 0 4px 5px 0 rgba(156, 39, 176, .14), 0 1px 10px 0 rgba(156, 39, 176, .12), 0 2px 4px -1px rgba(156, 39, 176, .2);
}
.dropdown .dropdown-menu, .timeline .dropdown .dropdown-menu, .dropdown-menu.bootstrap-datetimepicker-widget, .bootstrap-table .dropdown-menu {
-webkit-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
transition: all 150ms linear;
-webkit-transform: translate3d(0, -20px, 0);
-moz-transform: translate3d(0, -20px, 0);
-o-transform: translate3d(0, -20px, 0);
-ms-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
visibility: hidden;
display: block;
opacity: 0;
filter: alpha(opacity=0);
}
.dropdown.open .dropdown-menu, .dropdown-menu.bootstrap-datetimepicker-widget.open, .bootstrap-table .open .dropdown-menu {
opacity: 1;
filter: alpha(opacity=100);
visibility: visible;
-webkit-transform: translate3d(0, 15px, 0);
-moz-transform: translate3d(0, 15px, 0);
-o-transform: translate3d(0, 15px, 0);
-ms-transform: translate3d(0, 15px, 0);
transform: translate3d(0, 15px, 0);
}
.dropup .dropdown-menu {
-webkit-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
transition: all 150ms linear;
-webkit-transform: translate3d(0, 30px, 0);
-moz-transform: translate3d(0, 30px, 0);
-o-transform: translate3d(0, 30px, 0);
-ms-transform: translate3d(0, 30px, 0);
transform: translate3d(0, 30px, 0);
visibility: hidden;
display: block;
opacity: 0;
filter: alpha(opacity=0);
}
.dropup.open .dropdown-menu {
-webkit-transform: translate3d(0, -13px, 0);
-moz-transform: translate3d(0, -13px, 0);
-o-transform: translate3d(0, -13px, 0);
-ms-transform: translate3d(0, -13px, 0);
transform: translate3d(0, -13px, 0);
visibility: visible;
opacity: 1;
filter: alpha(opacity=100);
}
/* Select2 style+ */
.select2-highlighted a {
color: white;
}
.select2-highlighted a:hover {
color: wheat;
}
/* Visible FS */
.visible-fs {
display: none;
}
:-webkit-full-screen .visible-fs {
display: inline-block;
}
:-moz-full-screen .visible-fs {
display: inline-block;
}
:-ms-fullscreen .visible-fs {
display: inline-block;
}
:fullscreen .visible-fs {
display: inline-block;
}
.x-small {
font-size: 70%;
}
.xx-small {
font-size: 50%;
}
/* Datatable 1.6.0 regression */
.dt-button-collection.dropdown-menu li>a {
display: block;
clear: both;
font-weight: 400;
line-height: 1.42857143;
white-space: nowrap;
}
.dt-button-collection.dropdown-menu li>a:focus,
.dt-button-collection.dropdown-menu li>a:hover {
text-decoration: none;
} | app-ui/src/main/webapp/themes/bootstrap-material-design/css/bootstrap.mod.css | table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
top: 8px;
bottom: auto;
font-family: "Google Roboto";
}
.table-tools .btn-group {
margin-top: 0;
}
.table-tools .label-floating {
padding-bottom: 0;
}
.row.table-tools {
margin-top: 10px;
}
.sorting_1, th.sorting_asc, th.sorting_desc {
font-weight: 600;
background-color: #e9e9e9;
}
tr:not(.selected).odd>td.sorting_1 {
font-weight: 600;
background-color: #efefe9;
}
tr.selected>td {
background-color: rgba(155, 199, 251, .77);
}
table.dataTable thead .sorting:after {
display: inline-block;
font-family: 'Font Awesome 5 Free';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
content: "\f0dc";
opacity: .15;
}
table.dataTable thead .sorting:hover:after {
opacity: .8;
}
table.dataTable thead .sorting_asc:after {
display: inline-block;
font-family: 'Font Awesome 5 Free';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
content: "\f160";
}
table.dataTable thead .sorting_desc:after {
display: inline-block;
font-family: 'Font Awesome 5 Free';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
content: "\f161";
}
div.dataTables_wrapper div.dataTables_filter {
float: right;
}
div.dataTables_wrapper div.dataTables_filter input {
margin-left: 0;
}
/**
* Responsive visibility with colspan
*/
th.responsive-date {
width: 65px;
}
th.responsive-user {
width: 150px;
}
th.responsive-datetime {
width: 150px;
}
@media (max-width: 767px) {
th.hidden-xs, td.hidden-xs, th.hidden-xs[class*="responsive-"] {
display: table-cell !important;
width: 0;
overflow: hidden;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-xs {
visibility: hidden;
line-height: 0 !important;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-xs * {
display: none;
}
}
@media (min-width: 768px) and (max-width: 991px) {
th.hidden-sm, td.hidden-sm, th.hidden-sm[class*="responsive-"] {
display: table-cell !important;
width: 0;
overflow: hidden;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-sm {
visibility: hidden;
line-height: 0 !important;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-sm * {
display: none;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
th.hidden-md, td.hidden-md, th.hidden-md[class*="responsive-"] {
display: table-cell !important;
width: 0;
overflow: hidden;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-md {
visibility: hidden;
line-height: 0 !important;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-md * {
display: none;
}
}
@media (min-width: 1200px) {
th.hidden-lg, td.hidden-lg, th.hidden-lg[class*="responsive-"] {
display: table-cell !important;
width: 0;
overflow: hidden;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-lg {
visibility: hidden;
line-height: 0 !important;
padding: 0 !important;
max-width: 0;
border: none;
}
td.hidden-lg * {
display: none;
}
}
.pagination>li>a, .pagination>li>span {
border: 0;
border-radius: 30px !important;
transition: all .3s;
padding: 0 11px;
margin: 0 3px;
min-width: 30px;
height: 30px;
line-height: 30px;
color: #999;
font-weight: 400;
font-size: 12px;
text-transform: uppercase;
background: transparent;
}
.pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>span:hover, .pagination>li>span:focus {
color: #999;
}
.pagination>.active>a, .pagination>.active>span {
color: #999;
text-align: center;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
background-color: #9c27b0;
border-color: #9c27b0;
color: #fff;
box-shadow: 0 4px 5px 0 rgba(156, 39, 176, .14), 0 1px 10px 0 rgba(156, 39, 176, .12), 0 2px 4px -1px rgba(156, 39, 176, .2);
}
#loading {
position: fixed;
top: 1px;
right: 1px;
z-index: 9999;
margin-left: 0;
left: auto;
}
.spin.centered {
position: fixed;
top: 50%;
}
.spin {
margin-left: 50%;
left: -.3em;
position: relative;
}
.spin:not(.text-warning):not(.text-danger) {
color: lightgrey;
}
/* Prevent tooltip getting event and triggering mouseleave from other components. */
/* Make tooltip visible even for items inside Select2 */
.tooltip {
pointer-events: none;
z-index: 10001;
}
.panel-group .form-actions, .panel-group form {
/* See http://localhost:8081/poc/#/primevere/instruction */
margin-bottom: 0;
margin-top: 0;
}
.navbar-text {
margin-left: 10px;
margin-right: 10px;
}
.nav>li>a.hide {
display: none;
}
.navbar .nav>li.disabled>a, .btn.disabled .caret {
color: #999;
}
.alert>h1, .alert>h2, .alert>h3, .alert>h4, .alert>h5, .alert>h6 {
margin-top: 0;
}
.form-horizontal>.alert {
margin-left: -15px;
margin-right: -15px;
margin-top: -9px;
}
.modal-body>.form-horizontal>.alert {
margin-left: -24px;
margin-right: -24px;
}
/* nested nav-list */
.nav.nav-stacked.nav-pills li>a {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-left: none;
}
.nav.nav-stacked.nav-pills>li>a {
margin-left: -15px;
}
.nav.nav-stacked.nav-pills .nav-pills>li>a {
margin-left: -15px;
padding-left: 30px;
}
.nav.nav-stacked.nav-pills .nav-pills .nav-pills>li>a {
margin-left: -15px;
padding-left: 45px;
}
.security-disabled {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
-ms-filter: grayscale(100%);
filter: grayscale(100%);
opacity: .4;
zoom: 1;
cursor: default;
}
.security-disabled *, .disabled *, .security-disabled, .disabled {
cursor: default;
pointer-events: none;
}
.form-control.year {
width: 60px;
}
.form-control.month {
width: 80px;
}
a:hover {
cursor: pointer;
text-decoration: none;
}
.placeholder {
color: #aaa;
}
/**
* Required flag (red star)
*/
.form-group.required label::after {
color: rgba(238, 51, 34, .47);
margin-left: 2px;
margin-top: 1px;
position: absolute;
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 7px;
content: "\f069";
}
/**
* Small margin for aligned fields
*/
.fieldset legend .input-append span {
/* See http://localhost:8081/poc/#/primevere/instruction */
vertical-align: top;
}
legend .pull-right.form-group {
margin-bottom: 0;
line-height: 0;
}
legend .form-group {
font-size: 14px;
}
/* date picker */
.input-daterange {
width: 226px;
}
.date input[disabled]+.input-group-addon, .date input[readonly]+.input-group-addon, [data-provide="datepicker"][readonly]+.input-group-addon, [data-provide="datepicker"][disabled]+.input-group-addon {
pointer-events: none;
}
/* editable grid */
.tablebtn {
margin-bottom: 2px;
}
.table-hover>tbody>tr, .table-row-collapse, .gantt-table .child {
cursor: pointer;
}
.table-hover>tbody>tr:hover {
background-color: #d9edf7;
}
table.justified {
table-layout: fixed;
}
table td>a, table td>.btn-group, table td>.btn, table td>.dropdown-toggle, table td>.btn-link {
padding-right: 0;
padding-left: 0;
}
table td>a:not(:first-child), table td>.btn-group:not(:first-child), table td>.btn:not(:first-child), table td>.dropdown-toggle:not(:first-child), table td>.btn-link:not(:first-child) {
padding-left: 4px;
}
body {
padding-top: 70px;
}
.dropdown-menu {
z-index: 1051;
/* Just over popups */
}
.nyi {
pointer-events: none;
}
.modal-body {
position: static;
padding-bottom: 18px;
}
@media (min-width: 768px) {
.modal.medium .modal-dialog {
width: 750px;
}
.modal.large .modal-dialog {
width: 750px;
}
}
@media (min-width: 1024px) {
.modal.large .modal-dialog {
width: 1010px;
}
}
.form-group.has-error option {
color: black;
}
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
background-color: #f2dede;
}
.form-group.has-info input, .form-group.has-info select, .form-group.has-info textarea {
background-color: #d9edf7;
}
.form-group.has-warn input, .form-group.has-warn select, .form-group.has-warn textarea {
background-color: #fcf8e3;
}
.form-group.has-success input, .form-group.has-success select, .form-group.has-success textarea {
background-color: #dff0d8;
}
.nav-tabs>li>a.error {
color: #b94a48;
}
.nav-tabs>.active>a.error {
background-color: #f2dede;
border-color: #b94a48;
}
.nav-tabs>li>a:hover.error, .nav-tabs>li>a:focus.error {
background-color: #f2dede;
border-color: #ffbfbd #ffbfbd #b94a48;
}
.nav-tabs.error {
border-bottom-color: #b94a48;
}
@media (max-width: 979px) {
.navbar .brand {
padding-right: 0;
padding-left: 0;
margin: 0;
}
}
.truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.inline {
display: inline;
}
.flex {
display: flex;
}
.toggle-visibility, .toggle-visibility .toggle-visibility-content {
cursor: pointer;
}
.toggle-visibility .toggle-visibility-content {
display: none;
}
.toggle-visibility.active .toggle-visibility-content {
display: inherit;
}
.nav li a i.icon-lock {
opacity: .2;
filter: alpha(opacity=20);
float: left;
margin-top: 3px;
margin-left: -16px;
}
.collapse>.form-horizontal {
margin-top: 5px;
}
/* new classes */
.form-control.input-mini {
width: 60px;
}
.form-control.input-small {
width: 100px;
}
.form-control.input-medium {
width: 150px;
}
.form-control.input-large {
width: 210px;
}
.form-control.input-xlarge {
width: 270px;
}
.form-control.input-xxlarge {
width: 530px;
}
.form-control.input-mini.time {
padding-right: 10px;
}
.form-control.input-mini+.input-group-addon, .form-control.input-small+.input-group-addon, .form-control.input-medium+.input-group-addon, .form-control.input-large+.input-group-addon, .form-control.input-xlarge+.input-group-addon, .form-control.input-xxlarge+.input-group-addon, .month+.input-group-addon, .year+.input-group-addon, .date .input-group-addon, .date .input-group-btn, .form-control.input-small+.input-group-btn, .form-control.input-mini+.input-group-btn, .form-control.input-medium+.input-group-btn {
width: auto;
}
.input-group .input-group-btn {
padding: 0;
}
.input-group-addon:not(:first-child):not(:last-child) {
border-right: none;
}
.input-group.prepend>:last-child {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.input-group.append>:first-child {
border-left: none;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
@media (max-width: 1199px) {
.form-control {
padding: 6px;
}
}
.form-actions {
padding: 19px 0 20px 0;
margin-top: 20px;
margin-bottom: 20px;
background-color: #f5f5f5;
border-top: 1px solid #e5e5e5;
text-align: right;
}
.modal-header>h4 {
/* .modal-title */
margin: 0;
line-height: 1.42857143;
}
.form-horizontal .form-group:not(.label-floating) .control-label:not([class*="col-"]), .form-horizontal .form-group>div:not([class*="col-"]) {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
@media (min-width: 768px) {
.modal .form-horizontal .form-group:not(.label-floating) .control-label:not([class*="col-"]) {
/* .col-sm-4 */
float: left;
width: 33.33333333%;
}
.modal .form-horizontal .form-group>.control-label+div:not([class*="col-"]) {
/* .col-sm-6 */
float: left;
width: 50%;
}
.modal .form-horizontal .form-group>div:not([class*="col-"]):first-child {
/* .col-sm-offset-4 (checkbox, radio) */
margin-left: 33.33333333%;
}
.auto-col .form-horizontal div[class*="col-"] .form-group:not(.label-floating) .control-label:not([class*="col-"]) {
/* .col-sm-4 */
float: left;
width: 33.33333333%;
}
.auto-col .form-horizontal div[class*="col-"] .form-group>.control-label+div:not([class*="col-"]) {
/* .col-sm-8 */
float: left;
width: 66.66666667%;
}
.auto-col .form-horizontal div[class*="col-"] .form-group>div:not([class*="col-"]):first-child {
/* .col-sm-offset-4 (checkbox, radio) */
margin-left: 33.33333333%;
}
.form-horizontal .form-group:not(.label-floating) .control-label:not([class*="col-"]) {
/* .col-sm-2 */
float: left;
width: 16.66666667%;
}
.form-horizontal .form-group>.control-label+div:not([class*="col-"]) {
/* .col-sm-4 */
float: left;
width: 25%;
}
.form-horizontal .form-group>div:not([class*="col-"]):first-child {
/* .col-sm-offset-2 (checkbox, radio) */
margin-left: 16.66666667%;
}
}
/* fix middle addon, and middle button like spinner */
.input-group-addon:not(:first-child), .btn-group-vertical+.input-group-addon {
border-left: 0;
}
.input-group-addon:not(:last-child) {
border-right: 0;
}
.input-group-addon+.input-group-addon {
border-left: 1px solid #ccc;
}
/* fix last button */
.fileinput-new.input-group .btn-file, .fileinput-new .input-group .btn-file {
border-right: 1px solid #ccc;
}
.fileinput {
white-space: nowrap;
}
/* Icon sizes */
.fa-2 {
font-size: 2em;
}
.fa-3 {
font-size: 4em;
}
.fa-4 {
font-size: 7em;
}
.fa-5 {
font-size: 12em;
}
.fa-6 {
font-size: 20em;
}
/* bootstrap-doc */
.bs-callout-danger, .bs-callout-danger h4 {
border-left-color: #ce4844;
}
.bs-callout-warning, .bs-callout-warning h4 {
border-left-color: #aa6708;
}
.bs-callout-info, .bs-callout-info h4 {
border-left-color: #1b809e;
}
.bs-callout p:last-child {
margin-bottom: 0;
}
.bs-callout {
padding: 20px;
margin: 20px 0;
border: 1px solid #eee;
border-left-width: 5px;
border-radius: 3px;
}
.bs-callout+.bs-callout {
margin-top: -5px;
}
.bs-callout h4 {
margin-top: 0;
margin-bottom: 5px;
}
/*
* Icon before text inside a dropdown menu
*/
.menu-icon {
margin-right: 2px;
margin-left: -14px;
}
.nav-icon {
width: 20px;
margin-left: -7px;
}
img.nav-icon {
width: 16px;
margin-left: -10px;
margin-right: 4px;
}
@media (max-width: 767px) {
table.dataTable thead>tr>th.icon-xs, .icon-xs {
padding-left: 0;
}
table.dataTable thead>tr>th.sorting.icon-xs {
padding-right: 15px;
}
.icon-xs {
width: 20px;
}
}
@media (max-width: 1199px) {
table.dataTable thead>tr>th.icon-sm, .icon-sm {
padding-left: 0;
}
table.dataTable thead>tr>th.sorting.icon-sm {
padding-right: 15px;
}
.icon-sm {
width: 20px;
}
}
@media (max-width: 1023px) {
table.dataTable thead>tr>th.icon-md, .icon-md {
padding-left: 0;
}
table.dataTable thead>tr>th.sorting.icon-md {
padding-right: 15px;
}
.icon-md {
width: 20px;
}
}
.icon {
width: 16px;
}
.icon-x2 {
width: 32px;
}
.icon-x3 {
width: 48px;
}
.icon-xs .fa, .icon-xs .fas, .icon-xs .far,.icon-xs .fab, .icon-md .fa, .icon-md .fas, .icon-md .far, .icon-md .fab, .icon-sm .fa, .icon-sm .fas, .icon-sm .far, .icon-sm .fab {
width: 16px;
}
.form-group .form-control+.form-control-feedback {
top: 10px;
}
/**
* CRON trimming
*/
#CronGenMainDiv .hours, #CronGenMainDiv .minutes {
padding: 0 0 0 1px;
}
/**
* Vertival progress
*/
.progress.vertical {
margin-bottom: 0;
width: 60px;
}
.progress.vertical {
width: 20px;
height: 100%;
float: left;
margin-right: 20px;
}
.progress.vertical .progress-bar {
width: 100%;
height: 0;
-webkit-transition: height .6s ease;
-o-transition: height .6s ease;
transition: height .6s ease;
}
/*
* Unstyled add-on button
* http://stackoverflow.com/questions/24682421/put-search-icon-near-textbox-using-bootstrap
*/
.input-group.input-group-unstyled input.form-control {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.input-group-unstyled .input-group-addon {
border-radius: 4px;
border: 0;
background-color: transparent;
}
.input-help {
position: relative;
top: -35px;
float: right;
height: 0;
left: 20px;
padding: 0;
opacity: .1;
}
.input-help:hover {
cursor: pointer;
opacity: 1;
}
.retractable {
padding-right: 0;
-webkit-transition: 250ms cubic-bezier(.1,.57,.1,1);
-ms-transition: 250ms cubic-bezier(.1,.57,.1,1);
-moz-transition: 250ms cubic-bezier(.1,.57,.1,1);
-o-transition: 250ms cubic-bezier(.1,.57,.1,1);
transition: 250ms cubic-bezier(.1,.57,.1,1);
-webkit-transform: translate(0px,0) translateZ(0px);
-ms-transform: translate(0px,0) translateZ(0px);
-moz-transform: translate(0px,0) translateZ(0px);
-o-transform: translate(0px,0) translateZ(0px);
transform: translate(0px,0) translateZ(0px);
z-index: 1;
}
@media (min-width: 1px) {
.retractable .nav-pills>.active {
margin-right: -1px;
}
.retractable.retracted+[class*="col-"] {
margin-left: 0;
width: 100%;
padding-left: 40px;
}
.retractable .nav-pills li>a {
border-radius: 0;
}
.retract {
filter: alpha(opacity=20);
opacity: .2;
right: -1px;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
position: absolute;
cursor: pointer;
background-color: #3f51b5;
color: #fff;
border-bottom: 1px solid #302f2f;
padding: 7px;
transition: all .1s linear 0s;
}
.retracted .retract {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.retract i {
display: none;
line-height: 1;
}
.retract:hover {
filter: alpha(opacity=100);
opacity: 1;
padding-right: 12px;
}
.retractable.retracted .nav-stacked li {
white-space: nowrap;
}
.retractable.retracted .retract i.retract-open, .retractable:not(.retracted) .retract i.retract-close {
display: block;
}
.retractable.retracted .hidden-retracted, .retractable:not(.retracted) .visible-retracted {
display: none;
}
}
@media (min-width: 992px) {
.retractable {
height: 100%;
position: fixed;
background-color: #f8f8f8;
border-right: 1px solid #e3e3e3;
margin-top: -70px;
padding-top: 70px;
}
.retractable .nav-pills>.active {
margin-right: -1px;
}
.retractable.retracted+[class*="col-"] {
margin-left: 0;
width: 100%;
padding-left: 40px;
}
.retractable .nav-pills li>a {
border-radius: 0;
}
.retractable.retracted {
width: 30px;
z-index: 1;
overflow-x: hidden;
}
.retract {
filter: alpha(opacity=20);
opacity: .2;
right: -1px;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
position: absolute;
cursor: pointer;
background-color: #3f51b5;
color: #fff;
border-bottom: 1px solid #302f2f;
padding: 7px;
transition: all .1s linear 0s;
}
.retracted .retract {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
width: 100%;
}
.retract i {
display: none;
line-height: 1;
}
.retract:hover {
filter: alpha(opacity=100);
opacity: 1;
padding-right: 12px;
}
.retractable.retracted .nav-stacked li {
white-space: nowrap;
}
.retractable.retracted .retract i.retract-open, .retractable:not(.retracted) .retract i.retract-close {
display: block;
}
.retractable.retracted .hidden-retracted, .retractable:not(.retracted) .visible-retracted {
display: none;
}
}
/* Hidden FS */
:-webkit-full-screen .hidden-fs {
display: none;
}
:-moz-full-screen .hidden-fs {
display: none;
}
:-ms-fullscreen .hidden-fs {
display: none;
}
:fullscreen .hidden-fs {
display: none;
}
:-webkit-full-screen .col-fs-12 {
width: 100%;
margin-left: 0;
}
:-moz-full-screen .col-fs-12 {
width: 100%;
margin-left: 0;
}
:-ms-fullscreen .col-fs-12 {
width: 100%;
margin-left: 0;
}
:fullscreen .col-fs-12 {
width: 100%;
margin-left: 0;
}
.form-group.has-error[data-error-property]+.tooltip>.tooltip-arrow, .form-group.has-error[data-error-property]+.tooltip>.tooltip-inner {
background-color: #f00;
}
.form-horizontal .form-group.label-floating, .modal .form-group.label-floating {
margin-top: 28px;
}
.modal .form-group .btn-group {
margin-top: 0;
}
.form-horizontal .form-group:not(.label-floating) label.control-label {
font-size: 16px;
line-height: 1.42857143;
margin: 2px 0 0;
}
.popover-title {
background-color: inherit;
}
.popover-content .alert {
margin-left: -29px;
margin-right: -29px;
margin-top: -10px;
}
.popover-content .form-actions {
margin-left: -29px;
margin-right: -29px;
}
#toast-container>div, #toast-container>div.rtl {
padding: 15px;
}
#toast-container>div.alert-danger {
opacity: .9;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
filter: alpha(opacity=90);
}
/* Visible FS */
.visible-fs {
display: none;
}
:-webkit-full-screen .visible-fs {
display: inline-block;
}
:-moz-full-screen .visible-fs {
display: inline-block;
}
:-ms-fullscreen .visible-fs {
display: inline-block;
}
:fullscreen .visible-fs {
display: inline-block;
}
.dropdown-menu {
border: 0;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
}
.dropdown-menu .divider {
background-color: rgba(0, 0, 0, .12);
}
.dropdown-menu li>a {
font-size: 13px;
padding: 10px 20px;
margin: 0 5px;
border-radius: 2px;
-webkit-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
transition: all 150ms linear;
}
.dropdown-menu li>a:hover, .dropdown-menu li>a:focus {
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);
}
.dropdown-menu.dropdown-with-icons li>a {
padding: 12px 20px 12px 12px;
}
.dropdown-menu.dropdown-with-icons li>a .material-icons {
vertical-align: middle;
font-size: 24px;
position: relative;
margin-top: -4px;
top: 1px;
margin-right: 12px;
opacity: .5;
}
.dropdown-menu li {
position: relative;
}
.dropdown-menu .divider {
margin: 5px 0;
}
.nav-pills>li.active>a,
.nav-tabs > li.active > a,
.nav > li.active > a,
.dropdown-menu li a:active,
.nav-pills .pill:hover, .nav-pills .pill:focus, .nav-pills>li>a:hover, .nav-pills>li>a:focus,
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a,
.nav > li > a:hover, .nav > li > a:focus,
.dropdown-menu li.active a:hover, .dropdown-menu li.active a:focus,.dropdown-menu li a:hover, .dropdown-menu li a:focus, .dropdown-menu li a:active,
.dropdown-menu li a:active {
color: #fff;
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px rgba(156, 39, 176, .4);
}
.nav-pills>li.active>a,
.nav-tabs > li.active > a,
.nav > li.active > a,
.dropdown-menu li a:active {
background-color: rgba(156, 39, 176);
}
.nav-pills .pill:hover, .nav-pills .pill:focus, .nav-pills>li>a:hover, .nav-pills>li>a:focus,
.nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover,
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus,
.nav > li > a:hover, .nav > li > a:focus,
.dropdown-menu li.active a:hover, .dropdown-menu li.active a:focus,.dropdown-menu li a:hover, .dropdown-menu li a:focus, .dropdown-menu li a:active {
background-color: rgba(156, 39, 176, .8);
}
.nav-pills.navbar-inverse > li > a {
color : #d8d2d2
}
.nav-pills.navbar-inverse > li:hover > a, .nav-pills.navbar-inverse > li.active > a {
color: #fff;
}
.pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>span:hover, .pagination>li>span:focus {
color: #999;
}
.pagination>.active>a, .pagination>.active>span {
color: #999;
text-align: center;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
background-color: #9c27b0;
border-color: #9c27b0;
color: #fff;
box-shadow: 0 4px 5px 0 rgba(156, 39, 176, .14), 0 1px 10px 0 rgba(156, 39, 176, .12), 0 2px 4px -1px rgba(156, 39, 176, .2);
}
.dropdown .dropdown-menu, .timeline .dropdown .dropdown-menu, .dropdown-menu.bootstrap-datetimepicker-widget, .bootstrap-table .dropdown-menu {
-webkit-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
transition: all 150ms linear;
-webkit-transform: translate3d(0, -20px, 0);
-moz-transform: translate3d(0, -20px, 0);
-o-transform: translate3d(0, -20px, 0);
-ms-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
visibility: hidden;
display: block;
opacity: 0;
filter: alpha(opacity=0);
}
.dropdown.open .dropdown-menu, .dropdown-menu.bootstrap-datetimepicker-widget.open, .bootstrap-table .open .dropdown-menu {
opacity: 1;
filter: alpha(opacity=100);
visibility: visible;
-webkit-transform: translate3d(0, 15px, 0);
-moz-transform: translate3d(0, 15px, 0);
-o-transform: translate3d(0, 15px, 0);
-ms-transform: translate3d(0, 15px, 0);
transform: translate3d(0, 15px, 0);
}
.dropup .dropdown-menu {
-webkit-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
transition: all 150ms linear;
-webkit-transform: translate3d(0, 30px, 0);
-moz-transform: translate3d(0, 30px, 0);
-o-transform: translate3d(0, 30px, 0);
-ms-transform: translate3d(0, 30px, 0);
transform: translate3d(0, 30px, 0);
visibility: hidden;
display: block;
opacity: 0;
filter: alpha(opacity=0);
}
.dropup.open .dropdown-menu {
-webkit-transform: translate3d(0, -13px, 0);
-moz-transform: translate3d(0, -13px, 0);
-o-transform: translate3d(0, -13px, 0);
-ms-transform: translate3d(0, -13px, 0);
transform: translate3d(0, -13px, 0);
visibility: visible;
opacity: 1;
filter: alpha(opacity=100);
}
/* Select2 style+ */
.select2-highlighted a {
color: white;
}
.select2-highlighted a:hover {
color: wheat;
}
/* Visible FS */
.visible-fs {
display: none;
}
:-webkit-full-screen .visible-fs {
display: inline-block;
}
:-moz-full-screen .visible-fs {
display: inline-block;
}
:-ms-fullscreen .visible-fs {
display: inline-block;
}
:fullscreen .visible-fs {
display: inline-block;
}
.x-small {
font-size: 70%;
}
.xx-small {
font-size: 50%;
}
/* Datatable 1.6.0 regression */
.dt-button-collection.dropdown-menu li>a {
display: block;
clear: both;
font-weight: 400;
line-height: 1.42857143;
white-space: nowrap;
}
.dt-button-collection.dropdown-menu li>a:focus,
.dt-button-collection.dropdown-menu li>a:hover {
text-decoration: none;
} | 0.389895 | 0.137475 |
@charset 'UTF-8';body{font-family:Adobe Clean UI,Myriad Pro,Arial,sans-serif;font-size:12pt;margin:0;padding:0;}
body *{line-height:150%;}
form,#searching_message,.loadSearch,#mnemonic,#searchbar,#content_wrapper{font-size:67%;}
h1.contentHead{font-size:79%;}
div#content_wrapper div dl,div#content_wrapper div div,div#content_wrapper div div div,div#content_wrapper div div div p,div#content_wrapper div table{font-size:100%;}
div#content_wrapper div div,div#content_wrapper div li,div#content_wrapper div dl,div#content_wrapper div p{line-height:150%;}
h1{font-size:100%!important;font-weight:normal;line-height:150%;}
body{background-color:#f0f0f0;}
.keyword{font-style:italic;}
div#content_wrapper h1{color:#000;font-size:9px;font-weight:normal;margin:0;padding-left:10px;background-color:#444;}
div#content_wrapper p{color:#333;padding-left:25px;padding-top:10px;margin-top:10px;}
#results,#results p{background-color:#f0f0f0;color:#000;padding-left:10px;padding-top:0;padding-bottom:0;line-height:200%;list-style:none;}
#results a{color:#000;text-decoration:none;}
#results a:hover,#results a:visited{color:#6aa8e0;}
#search{padding-top:10px;display:inline;visibility:hidden;}
.searchresults{padding-top:5px;}
#search input.searchinput{position:absolute;margin:0;padding:0 0 0 3px;height:24px;background-color:#3c3c3c;border-style:none;font-size:12px;color:#000;border:ridge 1px #f0f0f0;}
#searchscope{position:absolute;padding:0;margin:0;}
#gsa{margin:4px 6px 0 0;}
.gsalabel{color:#000;vertical-align:15%;}
#search input.searchbutton{position:absolute;left:0;margin:0;padding:0;width:0;height:0;background-image:url(images/searchbutton.png);background-color:#DDD;background-repeat:no-repeat;border-style:inset 1px;cursor:pointer;}
#selectproduct{position:absolute;left:358px;}
#search_opation_table{margin-top:30px;padding-bottom:10px;font-size:100%;}
#search_opation_table td{color:#000;height:28px;}
#currentsite{color:#333;}
#searchlocation,#filterresults{font-size:9px;background-color:#5b5b5b;color:#000;}
div#content_wrapper ol{margin:15x;list-style:none;line-height:200%;}
ol{line-height:200%;}
div#content_wrapper ul ol li{margin:0;list-style-type:none;}
div#content_wrapper ol ol{list-style:none;list-style-type:none;line-height:200%;}
table,tbody,tr,td,ol,li{display:block;}
ol{padding-left:15px;}
li,p{word-break:normal;word-wrap:break-word;}
div#content_wrapper{padding-right:25px;} | specs/as3-language-reference/chcsearchlight.css | @charset 'UTF-8';body{font-family:Adobe Clean UI,Myriad Pro,Arial,sans-serif;font-size:12pt;margin:0;padding:0;}
body *{line-height:150%;}
form,#searching_message,.loadSearch,#mnemonic,#searchbar,#content_wrapper{font-size:67%;}
h1.contentHead{font-size:79%;}
div#content_wrapper div dl,div#content_wrapper div div,div#content_wrapper div div div,div#content_wrapper div div div p,div#content_wrapper div table{font-size:100%;}
div#content_wrapper div div,div#content_wrapper div li,div#content_wrapper div dl,div#content_wrapper div p{line-height:150%;}
h1{font-size:100%!important;font-weight:normal;line-height:150%;}
body{background-color:#f0f0f0;}
.keyword{font-style:italic;}
div#content_wrapper h1{color:#000;font-size:9px;font-weight:normal;margin:0;padding-left:10px;background-color:#444;}
div#content_wrapper p{color:#333;padding-left:25px;padding-top:10px;margin-top:10px;}
#results,#results p{background-color:#f0f0f0;color:#000;padding-left:10px;padding-top:0;padding-bottom:0;line-height:200%;list-style:none;}
#results a{color:#000;text-decoration:none;}
#results a:hover,#results a:visited{color:#6aa8e0;}
#search{padding-top:10px;display:inline;visibility:hidden;}
.searchresults{padding-top:5px;}
#search input.searchinput{position:absolute;margin:0;padding:0 0 0 3px;height:24px;background-color:#3c3c3c;border-style:none;font-size:12px;color:#000;border:ridge 1px #f0f0f0;}
#searchscope{position:absolute;padding:0;margin:0;}
#gsa{margin:4px 6px 0 0;}
.gsalabel{color:#000;vertical-align:15%;}
#search input.searchbutton{position:absolute;left:0;margin:0;padding:0;width:0;height:0;background-image:url(images/searchbutton.png);background-color:#DDD;background-repeat:no-repeat;border-style:inset 1px;cursor:pointer;}
#selectproduct{position:absolute;left:358px;}
#search_opation_table{margin-top:30px;padding-bottom:10px;font-size:100%;}
#search_opation_table td{color:#000;height:28px;}
#currentsite{color:#333;}
#searchlocation,#filterresults{font-size:9px;background-color:#5b5b5b;color:#000;}
div#content_wrapper ol{margin:15x;list-style:none;line-height:200%;}
ol{line-height:200%;}
div#content_wrapper ul ol li{margin:0;list-style-type:none;}
div#content_wrapper ol ol{list-style:none;list-style-type:none;line-height:200%;}
table,tbody,tr,td,ol,li{display:block;}
ol{padding-left:15px;}
li,p{word-break:normal;word-wrap:break-word;}
div#content_wrapper{padding-right:25px;} | 0.130106 | 0.034068 |
.effeckt-page-transition.effeckt-page-transition-animating {
visibility: visible;
}
.animation-delay-100 {
-webkit-animation-delay: 0.1s;
-o-animation-delay: 0.1s;
animation-delay: 0.1s;
}
.animation-delay-180 {
-webkit-animation-delay: 0.18s;
-o-animation-delay: 0.18s;
animation-delay: 0.18s;
}
.animation-delay-200 {
-webkit-animation-delay: 0.2s;
-o-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.animation-delay-300 {
-webkit-animation-delay: 0.3s;
-o-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.animation-delay-500 {
-webkit-animation-delay: 0.5s;
-o-animation-delay: 0.5s;
animation-delay: 0.5s;
}
.animation-delay-700 {
-webkit-animation-delay: 0.7s;
-o-animation-delay: 0.7s;
animation-delay: 0.7s;
}
.animation-delay-1000 {
-webkit-animation-delay: 1s;
-o-animation-delay: 1s;
animation-delay: 1s;
}
.effeckt-page-transition-left-slide-in {
-webkit-animation: slideInLeft 0.7s forwards ease-out;
-o-animation: slideInLeft 0.7s forwards ease-out;
animation: slideInLeft 0.7s forwards ease-out;
}
.effeckt-page-transition-right-slide-in {
-webkit-animation: slideInRight 0.7s forwards ease-out;
-o-animation: slideInRight 0.7s forwards ease-out;
animation: slideInRight 0.7s forwards ease-out;
}
.effeckt-page-transition-top-slide-in {
-webkit-animation: slideInTop 0.7s forwards ease-out;
-o-animation: slideInTop 0.7s forwards ease-out;
animation: slideInTop 0.7s forwards ease-out;
}
.effeckt-page-transition-bottom-slide-in {
-webkit-animation: slideInBottom 0.7s forwards ease-out;
-o-animation: slideInBottom 0.7s forwards ease-out;
animation: slideInBottom 0.7s forwards ease-out;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@-o-keyframes slideInLeft {
0% {
-o-transform: translateX(100%);
transform: translateX(100%);
}
100% {
-o-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@-o-keyframes slideInRight {
0% {
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
100% {
-o-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes slideInTop {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@-o-keyframes slideInTop {
0% {
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
100% {
-o-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInTop {
0% {
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
}
@-webkit-keyframes slideInBottom {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@-o-keyframes slideInBottom {
0% {
-o-transform: translateY(100%);
transform: translateY(100%);
}
100% {
-o-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInBottom {
0% {
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
}
.effeckt-page-transition-left-slide-out {
-webkit-animation: slideOutLeft 0.7s forwards ease-out;
-o-animation: slideOutLeft 0.7s forwards ease-out;
animation: slideOutLeft 0.7s forwards ease-out;
}
.effeckt-page-transition-right-slide-out {
-webkit-animation: slideOutRight 0.7s forwards ease-out;
-o-animation: slideOutRight 0.7s forwards ease-out;
animation: slideOutRight 0.7s forwards ease-out;
}
.effeckt-page-transition-top-slide-out {
-webkit-animation: slideOutTop 0.7s forwards ease-out;
-o-animation: slideOutTop 0.7s forwards ease-out;
animation: slideOutTop 0.7s forwards ease-out;
}
.effeckt-page-transition-bottom-slide-out {
-webkit-animation: slideOutBottom 0.7s forwards ease-out;
-o-animation: slideOutBottom 0.7s forwards ease-out;
animation: slideOutBottom 0.7s forwards ease-out;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
100% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-o-keyframes slideOutLeft {
0% {
-o-transform: translateX(0%);
transform: translateX(0%);
}
100% {
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
-o-transform: translateX(0%);
transform: translateX(0%);
}
100% {
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@-o-keyframes slideOutRight {
0% {
-o-transform: translateX(0);
transform: translateX(0);
}
100% {
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
100% {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@-webkit-keyframes slideOutTop {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@-o-keyframes slideOutTop {
0% {
-o-transform: translateY(0);
transform: translateY(0);
}
100% {
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes slideOutTop {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
@-webkit-keyframes slideOutBottom {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-o-keyframes slideOutBottom {
0% {
-o-transform: translateY(0);
transform: translateY(0);
}
100% {
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes slideOutBottom {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
.effeckt-page-transition-down-scale-out {
-webkit-animation: scaleDown 0.7s ease both;
-o-animation: scaleDown 0.7s ease both;
animation: scaleDown 0.7s ease both;
}
.effeckt-page-transition-up-scale-in {
-webkit-animation: scaleUp 0.7s ease both;
-o-animation: scaleUp 0.7s ease both;
animation: scaleUp 0.7s ease both;
}
@-webkit-keyframes scaleDown {
to {
opacity: 0;
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
}
@-o-keyframes scaleDown {
to {
opacity: 0;
-o-transform: scale(0.8);
transform: scale(0.8);
}
}
@keyframes scaleDown {
to {
opacity: 0;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
}
@-webkit-keyframes scaleUp {
from {
opacity: 0;
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
}
@-o-keyframes scaleUp {
from {
opacity: 0;
-o-transform: scale(0.8);
transform: scale(0.8);
}
}
@keyframes scaleUp {
from {
opacity: 0;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
}
.effeckt-page-transition-left-fade-in {
-webkit-animation: fadeLeftIn 0.7s ease both;
-o-animation: fadeLeftIn 0.7s ease both;
animation: fadeLeftIn 0.7s ease both;
}
.effeckt-page-transition-right-fade-in {
-webkit-animation: fadeRightIn 0.7s ease both;
-o-animation: fadeRightIn 0.7s ease both;
animation: fadeRightIn 0.7s ease both;
}
.effeckt-page-transition-top-fade-in {
-webkit-animation: fadeTopIn 0.7s ease both;
-o-animation: fadeTopIn 0.7s ease both;
animation: fadeTopIn 0.7s ease both;
}
.effeckt-page-transition-bottom-fade-in {
-webkit-animation: fadeBottomIn 0.7s ease both;
-o-animation: fadeBottomIn 0.7s ease both;
animation: fadeBottomIn 0.7s ease both;
}
@-webkit-keyframes fadeLeftIn {
to {
opacity: 0.3;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-o-keyframes fadeLeftIn {
to {
opacity: 0.3;
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes fadeLeftIn {
to {
opacity: 0.3;
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-webkit-keyframes fadeRightIn {
to {
opacity: 0.3;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@-o-keyframes fadeRightIn {
to {
opacity: 0.3;
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes fadeRightIn {
to {
opacity: 0.3;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@-webkit-keyframes fadeTopIn {
to {
opacity: 0.3;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-o-keyframes fadeTopIn {
to {
opacity: 0.3;
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes fadeTopIn {
to {
opacity: 0.3;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-webkit-keyframes fadeBottomIn {
to {
opacity: 0.3;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@-o-keyframes fadeBottomIn {
to {
opacity: 0.3;
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes fadeBottomIn {
to {
opacity: 0.3;
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
.effeckt-page-transition-left-fade-out {
-webkit-animation: fadeLeftOut 0.7s ease both;
-o-animation: fadeLeftOut 0.7s ease both;
animation: fadeLeftOut 0.7s ease both;
}
.effeckt-page-transition-right-fade-out {
-webkit-animation: fadeRightOut 0.7s ease both;
-o-animation: fadeRightOut 0.7s ease both;
animation: fadeRightOut 0.7s ease both;
}
.effeckt-page-transition-top-fade-out {
-webkit-animation: fadeTopOut 0.7s ease both;
-o-animation: fadeTopOut 0.7s ease both;
animation: fadeTopOut 0.7s ease both;
}
.effeckt-page-transition-bottom-fade-out {
-webkit-animation: fadeBottomOut 0.7s ease both;
-o-animation: fadeBottomOut 0.7s ease both;
animation: fadeBottomOut 0.7s ease both;
}
@-webkit-keyframes fadeLeftOut {
from {
opacity: 0.3;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-o-keyframes fadeLeftOut {
from {
opacity: 0.3;
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes fadeLeftOut {
from {
opacity: 0.3;
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-webkit-keyframes fadeRightOut {
from {
opacity: 0.3;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@-o-keyframes fadeRightOut {
from {
opacity: 0.3;
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes fadeRightOut {
from {
opacity: 0.3;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@-webkit-keyframes fadeTopOut {
from {
opacity: 0.3;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-o-keyframes fadeTopOut {
from {
opacity: 0.3;
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes fadeTopOut {
from {
opacity: 0.3;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-webkit-keyframes fadeBottomOut {
from {
opacity: 0.3;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@-o-keyframes fadeBottomOut {
from {
opacity: 0.3;
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes fadeBottomOut {
from {
opacity: 0.3;
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
.effeckt-page-transition-left-flip-in {
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInLeft 0.5s both ease-out;
-o-animation: flipInLeft 0.5s both ease-out;
animation: flipInLeft 0.5s both ease-out;
}
.effeckt-page-transition-right-flip-out {
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipOutRight 0.5s both ease-in;
-o-animation: flipOutRight 0.5s both ease-in;
animation: flipOutRight 0.5s both ease-in;
}
@-webkit-keyframes flipInLeft {
from {
opacity: 0.2;
-webkit-transform: translateZ(-1000px) rotateY(-90deg);
transform: translateZ(-1000px) rotateY(-90deg);
}
}
@-o-keyframes flipInLeft {
from {
opacity: 0.2;
-o-transform: translateZ(-1000px) rotateY(-90deg);
transform: translateZ(-1000px) rotateY(-90deg);
}
}
@keyframes flipInLeft {
from {
opacity: 0.2;
-webkit-transform: translateZ(-1000px) rotateY(-90deg);
-ms-transform: translateZ(-1000px) rotateY(-90deg);
-o-transform: translateZ(-1000px) rotateY(-90deg);
transform: translateZ(-1000px) rotateY(-90deg);
}
}
@-webkit-keyframes flipOutRight {
to {
opacity: 0.2;
-webkit-transform: translateZ(-1000px) rotateY(90deg);
transform: translateZ(-1000px) rotateY(90deg);
}
}
@-o-keyframes flipOutRight {
to {
opacity: 0.2;
-o-transform: translateZ(-1000px) rotateY(90deg);
transform: translateZ(-1000px) rotateY(90deg);
}
}
@keyframes flipOutRight {
to {
opacity: 0.2;
-webkit-transform: translateZ(-1000px) rotateY(90deg);
-ms-transform: translateZ(-1000px) rotateY(90deg);
-o-transform: translateZ(-1000px) rotateY(90deg);
transform: translateZ(-1000px) rotateY(90deg);
}
}
.effeckt-page-transition-newspaper-out {
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: rotateOutNewspaper 0.5s both ease-in;
-o-animation: rotateOutNewspaper 0.5s both ease-in;
animation: rotateOutNewspaper 0.5s both ease-in;
}
.effeckt-page-transition-newspaper-in {
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: rotateInNewspaper 0.5s both ease-out;
-o-animation: rotateInNewspaper 0.5s both ease-out;
animation: rotateInNewspaper 0.5s both ease-out;
}
@-webkit-keyframes rotateOutNewspaper {
to {
opacity: 1;
-webkit-transform: translateZ(-3000px) rotateZ(360deg);
transform: translateZ(-3000px) rotateZ(360deg);
}
}
@-o-keyframes rotateOutNewspaper {
to {
opacity: 1;
-o-transform: translateZ(-3000px) rotateZ(360deg);
transform: translateZ(-3000px) rotateZ(360deg);
}
}
@keyframes rotateOutNewspaper {
to {
opacity: 1;
-webkit-transform: translateZ(-3000px) rotateZ(360deg);
-ms-transform: translateZ(-3000px) rotateZ(360deg);
-o-transform: translateZ(-3000px) rotateZ(360deg);
transform: translateZ(-3000px) rotateZ(360deg);
}
}
@-webkit-keyframes rotateInNewspaper {
from {
opacity: 1;
-webkit-transform: translateZ(-3000px) rotateZ(-360deg);
transform: translateZ(-3000px) rotateZ(-360deg);
}
}
@-o-keyframes rotateInNewspaper {
from {
opacity: 1;
-o-transform: translateZ(-3000px) rotateZ(-360deg);
transform: translateZ(-3000px) rotateZ(-360deg);
}
}
@keyframes rotateInNewspaper {
from {
opacity: 1;
-webkit-transform: translateZ(-3000px) rotateZ(-360deg);
-ms-transform: translateZ(-3000px) rotateZ(-360deg);
-o-transform: translateZ(-3000px) rotateZ(-360deg);
transform: translateZ(-3000px) rotateZ(-360deg);
}
}
.effeckt-page-transition-left-rotate-push {
-webkit-transform-origin: 0% 50%;
-ms-transform-origin: 0% 50%;
-o-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-animation: rotatePushLeft 0.8s both ease;
-o-animation: rotatePushLeft 0.8s both ease;
animation: rotatePushLeft 0.8s both ease;
}
.effeckt-page-transition-right-rotate-push {
-webkit-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotatePushRight 0.8s both ease;
-o-animation: rotatePushRight 0.8s both ease;
animation: rotatePushRight 0.8s both ease;
}
.effeckt-page-transition-top-rotate-push {
-webkit-transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-o-transform-origin: 50% 0%;
transform-origin: 50% 0%;
-webkit-animation: rotatePushTop 0.8s both ease;
-o-animation: rotatePushTop 0.8s both ease;
animation: rotatePushTop 0.8s both ease;
}
.effeckt-page-transition-bottom-rotate-push {
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotatePushBottom 0.8s both ease;
-o-animation: rotatePushBottom 0.8s both ease;
animation: rotatePushBottom 0.8s both ease;
}
@-webkit-keyframes rotatePushLeft {
to {
opacity: 0;
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@-o-keyframes rotatePushLeft {
to {
opacity: 0;
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@keyframes rotatePushLeft {
to {
opacity: 0;
-webkit-transform: rotateY(90deg);
-ms-transform: rotateY(90deg);
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@-webkit-keyframes rotatePushRight {
to {
opacity: 0;
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@-o-keyframes rotatePushRight {
to {
opacity: 0;
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@keyframes rotatePushRight {
to {
opacity: 0;
-webkit-transform: rotateY(-90deg);
-ms-transform: rotateY(-90deg);
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@-webkit-keyframes rotatePushTop {
to {
opacity: 0;
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@-o-keyframes rotatePushTop {
to {
opacity: 0;
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@keyframes rotatePushTop {
to {
opacity: 0;
-webkit-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@-webkit-keyframes rotatePushBottom {
to {
opacity: 0;
-webkit-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
@-o-keyframes rotatePushBottom {
to {
opacity: 0;
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
@keyframes rotatePushBottom {
to {
opacity: 0;
-webkit-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
.effeckt-page-transition-left-rotate-pull {
-webkit-transform-origin: 0% 50%;
-ms-transform-origin: 0% 50%;
-o-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-animation: rotatePullLeft 0.5s both ease;
-o-animation: rotatePullLeft 0.5s both ease;
animation: rotatePullLeft 0.5s both ease;
}
.effeckt-page-transition-right-rotate-pull {
-webkit-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotatePullRight 0.5s both ease;
-o-animation: rotatePullRight 0.5s both ease;
animation: rotatePullRight 0.5s both ease;
}
.effeckt-page-transition-top-rotate-pull {
-webkit-transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-o-transform-origin: 50% 0%;
transform-origin: 50% 0%;
-webkit-animation: rotatePullTop 0.5s both ease;
-o-animation: rotatePullTop 0.5s both ease;
animation: rotatePullTop 0.5s both ease;
}
.effeckt-page-transition-bottom-rotate-pull {
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotatePullBottom 0.5s both ease;
-o-animation: rotatePullBottom 0.5s both ease;
animation: rotatePullBottom 0.5s both ease;
}
@-webkit-keyframes rotatePullLeft {
from {
opacity: 0;
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@-o-keyframes rotatePullLeft {
from {
opacity: 0;
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@keyframes rotatePullLeft {
from {
opacity: 0;
-webkit-transform: rotateY(90deg);
-ms-transform: rotateY(90deg);
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@-webkit-keyframes rotatePullRight {
from {
opacity: 0;
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@-o-keyframes rotatePullRight {
from {
opacity: 0;
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@keyframes rotatePullRight {
from {
opacity: 0;
-webkit-transform: rotateY(-90deg);
-ms-transform: rotateY(-90deg);
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@-webkit-keyframes rotatePullTop {
from {
opacity: 0;
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@-o-keyframes rotatePullTop {
from {
opacity: 0;
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@keyframes rotatePullTop {
from {
opacity: 0;
-webkit-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@-webkit-keyframes rotatePullBottom {
from {
opacity: 0;
-webkit-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
@-o-keyframes rotatePullBottom {
from {
opacity: 0;
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
@keyframes rotatePullBottom {
from {
opacity: 0;
-webkit-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
.effeckt-page-transition-left-rotate-fold {
-webkit-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotateFoldLeft 0.7s both ease;
-o-animation: rotateFoldLeft 0.7s both ease;
animation: rotateFoldLeft 0.7s both ease;
}
.effeckt-page-transition-right-rotate-fold {
-webkit-transform-origin: 0% 50%;
-ms-transform-origin: 0% 50%;
-o-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-animation: rotateFoldRight 0.7s both ease;
-o-animation: rotateFoldRight 0.7s both ease;
animation: rotateFoldRight 0.7s both ease;
}
.effeckt-page-transition-top-rotate-fold {
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotateFoldTop 0.7s both ease;
-o-animation: rotateFoldTop 0.7s both ease;
animation: rotateFoldTop 0.7s both ease;
}
.effeckt-page-transition-bottom-rotate-fold {
-webkit-transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-o-transform-origin: 50% 0%;
transform-origin: 50% 0%;
-webkit-animation: rotateFoldBottom 0.7s both ease;
-o-animation: rotateFoldBottom 0.7s both ease;
animation: rotateFoldBottom 0.7s both ease;
}
@-webkit-keyframes rotateFoldLeft {
to {
opacity: 0;
-webkit-transform: translateX(-100%) rotateY(-90deg);
transform: translateX(-100%) rotateY(-90deg);
}
}
@-o-keyframes rotateFoldLeft {
to {
opacity: 0;
-o-transform: translateX(-100%) rotateY(-90deg);
transform: translateX(-100%) rotateY(-90deg);
}
}
@keyframes rotateFoldLeft {
to {
opacity: 0;
-webkit-transform: translateX(-100%) rotateY(-90deg);
-ms-transform: translateX(-100%) rotateY(-90deg);
-o-transform: translateX(-100%) rotateY(-90deg);
transform: translateX(-100%) rotateY(-90deg);
}
}
@-webkit-keyframes rotateFoldRight {
to {
opacity: 0;
-webkit-transform: translateX(100%) rotateY(90deg);
transform: translateX(100%) rotateY(90deg);
}
}
@-o-keyframes rotateFoldRight {
to {
opacity: 0;
-o-transform: translateX(100%) rotateY(90deg);
transform: translateX(100%) rotateY(90deg);
}
}
@keyframes rotateFoldRight {
to {
opacity: 0;
-webkit-transform: translateX(100%) rotateY(90deg);
-ms-transform: translateX(100%) rotateY(90deg);
-o-transform: translateX(100%) rotateY(90deg);
transform: translateX(100%) rotateY(90deg);
}
}
@-webkit-keyframes rotateFoldTop {
to {
opacity: 0;
-webkit-transform: translateY(-100%) rotateX(90deg);
transform: translateY(-100%) rotateX(90deg);
}
}
@-o-keyframes rotateFoldTop {
to {
opacity: 0;
-o-transform: translateY(-100%) rotateX(90deg);
transform: translateY(-100%) rotateX(90deg);
}
}
@keyframes rotateFoldTop {
to {
opacity: 0;
-webkit-transform: translateY(-100%) rotateX(90deg);
-ms-transform: translateY(-100%) rotateX(90deg);
-o-transform: translateY(-100%) rotateX(90deg);
transform: translateY(-100%) rotateX(90deg);
}
}
@-webkit-keyframes rotateFoldBottom {
to {
opacity: 0;
-webkit-transform: translateY(100%) rotateX(-90deg);
transform: translateY(100%) rotateX(-90deg);
}
}
@-o-keyframes rotateFoldBottom {
to {
opacity: 0;
-o-transform: translateY(100%) rotateX(-90deg);
transform: translateY(100%) rotateX(-90deg);
}
}
@keyframes rotateFoldBottom {
to {
opacity: 0;
-webkit-transform: translateY(100%) rotateX(-90deg);
-ms-transform: translateY(100%) rotateX(-90deg);
-o-transform: translateY(100%) rotateX(-90deg);
transform: translateY(100%) rotateX(-90deg);
}
} | css/modules/page-transitions.autoprefixed.css | .effeckt-page-transition.effeckt-page-transition-animating {
visibility: visible;
}
.animation-delay-100 {
-webkit-animation-delay: 0.1s;
-o-animation-delay: 0.1s;
animation-delay: 0.1s;
}
.animation-delay-180 {
-webkit-animation-delay: 0.18s;
-o-animation-delay: 0.18s;
animation-delay: 0.18s;
}
.animation-delay-200 {
-webkit-animation-delay: 0.2s;
-o-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.animation-delay-300 {
-webkit-animation-delay: 0.3s;
-o-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.animation-delay-500 {
-webkit-animation-delay: 0.5s;
-o-animation-delay: 0.5s;
animation-delay: 0.5s;
}
.animation-delay-700 {
-webkit-animation-delay: 0.7s;
-o-animation-delay: 0.7s;
animation-delay: 0.7s;
}
.animation-delay-1000 {
-webkit-animation-delay: 1s;
-o-animation-delay: 1s;
animation-delay: 1s;
}
.effeckt-page-transition-left-slide-in {
-webkit-animation: slideInLeft 0.7s forwards ease-out;
-o-animation: slideInLeft 0.7s forwards ease-out;
animation: slideInLeft 0.7s forwards ease-out;
}
.effeckt-page-transition-right-slide-in {
-webkit-animation: slideInRight 0.7s forwards ease-out;
-o-animation: slideInRight 0.7s forwards ease-out;
animation: slideInRight 0.7s forwards ease-out;
}
.effeckt-page-transition-top-slide-in {
-webkit-animation: slideInTop 0.7s forwards ease-out;
-o-animation: slideInTop 0.7s forwards ease-out;
animation: slideInTop 0.7s forwards ease-out;
}
.effeckt-page-transition-bottom-slide-in {
-webkit-animation: slideInBottom 0.7s forwards ease-out;
-o-animation: slideInBottom 0.7s forwards ease-out;
animation: slideInBottom 0.7s forwards ease-out;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@-o-keyframes slideInLeft {
0% {
-o-transform: translateX(100%);
transform: translateX(100%);
}
100% {
-o-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@-o-keyframes slideInRight {
0% {
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
100% {
-o-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes slideInTop {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@-o-keyframes slideInTop {
0% {
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
100% {
-o-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInTop {
0% {
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
}
@-webkit-keyframes slideInBottom {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@-o-keyframes slideInBottom {
0% {
-o-transform: translateY(100%);
transform: translateY(100%);
}
100% {
-o-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInBottom {
0% {
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
}
.effeckt-page-transition-left-slide-out {
-webkit-animation: slideOutLeft 0.7s forwards ease-out;
-o-animation: slideOutLeft 0.7s forwards ease-out;
animation: slideOutLeft 0.7s forwards ease-out;
}
.effeckt-page-transition-right-slide-out {
-webkit-animation: slideOutRight 0.7s forwards ease-out;
-o-animation: slideOutRight 0.7s forwards ease-out;
animation: slideOutRight 0.7s forwards ease-out;
}
.effeckt-page-transition-top-slide-out {
-webkit-animation: slideOutTop 0.7s forwards ease-out;
-o-animation: slideOutTop 0.7s forwards ease-out;
animation: slideOutTop 0.7s forwards ease-out;
}
.effeckt-page-transition-bottom-slide-out {
-webkit-animation: slideOutBottom 0.7s forwards ease-out;
-o-animation: slideOutBottom 0.7s forwards ease-out;
animation: slideOutBottom 0.7s forwards ease-out;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
100% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-o-keyframes slideOutLeft {
0% {
-o-transform: translateX(0%);
transform: translateX(0%);
}
100% {
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
-o-transform: translateX(0%);
transform: translateX(0%);
}
100% {
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@-o-keyframes slideOutRight {
0% {
-o-transform: translateX(0);
transform: translateX(0);
}
100% {
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
100% {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@-webkit-keyframes slideOutTop {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@-o-keyframes slideOutTop {
0% {
-o-transform: translateY(0);
transform: translateY(0);
}
100% {
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes slideOutTop {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
@-webkit-keyframes slideOutBottom {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-o-keyframes slideOutBottom {
0% {
-o-transform: translateY(0);
transform: translateY(0);
}
100% {
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes slideOutBottom {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
.effeckt-page-transition-down-scale-out {
-webkit-animation: scaleDown 0.7s ease both;
-o-animation: scaleDown 0.7s ease both;
animation: scaleDown 0.7s ease both;
}
.effeckt-page-transition-up-scale-in {
-webkit-animation: scaleUp 0.7s ease both;
-o-animation: scaleUp 0.7s ease both;
animation: scaleUp 0.7s ease both;
}
@-webkit-keyframes scaleDown {
to {
opacity: 0;
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
}
@-o-keyframes scaleDown {
to {
opacity: 0;
-o-transform: scale(0.8);
transform: scale(0.8);
}
}
@keyframes scaleDown {
to {
opacity: 0;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
}
@-webkit-keyframes scaleUp {
from {
opacity: 0;
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
}
@-o-keyframes scaleUp {
from {
opacity: 0;
-o-transform: scale(0.8);
transform: scale(0.8);
}
}
@keyframes scaleUp {
from {
opacity: 0;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
}
.effeckt-page-transition-left-fade-in {
-webkit-animation: fadeLeftIn 0.7s ease both;
-o-animation: fadeLeftIn 0.7s ease both;
animation: fadeLeftIn 0.7s ease both;
}
.effeckt-page-transition-right-fade-in {
-webkit-animation: fadeRightIn 0.7s ease both;
-o-animation: fadeRightIn 0.7s ease both;
animation: fadeRightIn 0.7s ease both;
}
.effeckt-page-transition-top-fade-in {
-webkit-animation: fadeTopIn 0.7s ease both;
-o-animation: fadeTopIn 0.7s ease both;
animation: fadeTopIn 0.7s ease both;
}
.effeckt-page-transition-bottom-fade-in {
-webkit-animation: fadeBottomIn 0.7s ease both;
-o-animation: fadeBottomIn 0.7s ease both;
animation: fadeBottomIn 0.7s ease both;
}
@-webkit-keyframes fadeLeftIn {
to {
opacity: 0.3;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-o-keyframes fadeLeftIn {
to {
opacity: 0.3;
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes fadeLeftIn {
to {
opacity: 0.3;
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-webkit-keyframes fadeRightIn {
to {
opacity: 0.3;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@-o-keyframes fadeRightIn {
to {
opacity: 0.3;
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes fadeRightIn {
to {
opacity: 0.3;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@-webkit-keyframes fadeTopIn {
to {
opacity: 0.3;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-o-keyframes fadeTopIn {
to {
opacity: 0.3;
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes fadeTopIn {
to {
opacity: 0.3;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-webkit-keyframes fadeBottomIn {
to {
opacity: 0.3;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@-o-keyframes fadeBottomIn {
to {
opacity: 0.3;
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes fadeBottomIn {
to {
opacity: 0.3;
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
.effeckt-page-transition-left-fade-out {
-webkit-animation: fadeLeftOut 0.7s ease both;
-o-animation: fadeLeftOut 0.7s ease both;
animation: fadeLeftOut 0.7s ease both;
}
.effeckt-page-transition-right-fade-out {
-webkit-animation: fadeRightOut 0.7s ease both;
-o-animation: fadeRightOut 0.7s ease both;
animation: fadeRightOut 0.7s ease both;
}
.effeckt-page-transition-top-fade-out {
-webkit-animation: fadeTopOut 0.7s ease both;
-o-animation: fadeTopOut 0.7s ease both;
animation: fadeTopOut 0.7s ease both;
}
.effeckt-page-transition-bottom-fade-out {
-webkit-animation: fadeBottomOut 0.7s ease both;
-o-animation: fadeBottomOut 0.7s ease both;
animation: fadeBottomOut 0.7s ease both;
}
@-webkit-keyframes fadeLeftOut {
from {
opacity: 0.3;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-o-keyframes fadeLeftOut {
from {
opacity: 0.3;
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes fadeLeftOut {
from {
opacity: 0.3;
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@-webkit-keyframes fadeRightOut {
from {
opacity: 0.3;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@-o-keyframes fadeRightOut {
from {
opacity: 0.3;
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes fadeRightOut {
from {
opacity: 0.3;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
}
}
@-webkit-keyframes fadeTopOut {
from {
opacity: 0.3;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-o-keyframes fadeTopOut {
from {
opacity: 0.3;
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes fadeTopOut {
from {
opacity: 0.3;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@-webkit-keyframes fadeBottomOut {
from {
opacity: 0.3;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@-o-keyframes fadeBottomOut {
from {
opacity: 0.3;
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes fadeBottomOut {
from {
opacity: 0.3;
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
}
}
.effeckt-page-transition-left-flip-in {
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipInLeft 0.5s both ease-out;
-o-animation: flipInLeft 0.5s both ease-out;
animation: flipInLeft 0.5s both ease-out;
}
.effeckt-page-transition-right-flip-out {
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: flipOutRight 0.5s both ease-in;
-o-animation: flipOutRight 0.5s both ease-in;
animation: flipOutRight 0.5s both ease-in;
}
@-webkit-keyframes flipInLeft {
from {
opacity: 0.2;
-webkit-transform: translateZ(-1000px) rotateY(-90deg);
transform: translateZ(-1000px) rotateY(-90deg);
}
}
@-o-keyframes flipInLeft {
from {
opacity: 0.2;
-o-transform: translateZ(-1000px) rotateY(-90deg);
transform: translateZ(-1000px) rotateY(-90deg);
}
}
@keyframes flipInLeft {
from {
opacity: 0.2;
-webkit-transform: translateZ(-1000px) rotateY(-90deg);
-ms-transform: translateZ(-1000px) rotateY(-90deg);
-o-transform: translateZ(-1000px) rotateY(-90deg);
transform: translateZ(-1000px) rotateY(-90deg);
}
}
@-webkit-keyframes flipOutRight {
to {
opacity: 0.2;
-webkit-transform: translateZ(-1000px) rotateY(90deg);
transform: translateZ(-1000px) rotateY(90deg);
}
}
@-o-keyframes flipOutRight {
to {
opacity: 0.2;
-o-transform: translateZ(-1000px) rotateY(90deg);
transform: translateZ(-1000px) rotateY(90deg);
}
}
@keyframes flipOutRight {
to {
opacity: 0.2;
-webkit-transform: translateZ(-1000px) rotateY(90deg);
-ms-transform: translateZ(-1000px) rotateY(90deg);
-o-transform: translateZ(-1000px) rotateY(90deg);
transform: translateZ(-1000px) rotateY(90deg);
}
}
.effeckt-page-transition-newspaper-out {
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: rotateOutNewspaper 0.5s both ease-in;
-o-animation: rotateOutNewspaper 0.5s both ease-in;
animation: rotateOutNewspaper 0.5s both ease-in;
}
.effeckt-page-transition-newspaper-in {
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webkit-animation: rotateInNewspaper 0.5s both ease-out;
-o-animation: rotateInNewspaper 0.5s both ease-out;
animation: rotateInNewspaper 0.5s both ease-out;
}
@-webkit-keyframes rotateOutNewspaper {
to {
opacity: 1;
-webkit-transform: translateZ(-3000px) rotateZ(360deg);
transform: translateZ(-3000px) rotateZ(360deg);
}
}
@-o-keyframes rotateOutNewspaper {
to {
opacity: 1;
-o-transform: translateZ(-3000px) rotateZ(360deg);
transform: translateZ(-3000px) rotateZ(360deg);
}
}
@keyframes rotateOutNewspaper {
to {
opacity: 1;
-webkit-transform: translateZ(-3000px) rotateZ(360deg);
-ms-transform: translateZ(-3000px) rotateZ(360deg);
-o-transform: translateZ(-3000px) rotateZ(360deg);
transform: translateZ(-3000px) rotateZ(360deg);
}
}
@-webkit-keyframes rotateInNewspaper {
from {
opacity: 1;
-webkit-transform: translateZ(-3000px) rotateZ(-360deg);
transform: translateZ(-3000px) rotateZ(-360deg);
}
}
@-o-keyframes rotateInNewspaper {
from {
opacity: 1;
-o-transform: translateZ(-3000px) rotateZ(-360deg);
transform: translateZ(-3000px) rotateZ(-360deg);
}
}
@keyframes rotateInNewspaper {
from {
opacity: 1;
-webkit-transform: translateZ(-3000px) rotateZ(-360deg);
-ms-transform: translateZ(-3000px) rotateZ(-360deg);
-o-transform: translateZ(-3000px) rotateZ(-360deg);
transform: translateZ(-3000px) rotateZ(-360deg);
}
}
.effeckt-page-transition-left-rotate-push {
-webkit-transform-origin: 0% 50%;
-ms-transform-origin: 0% 50%;
-o-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-animation: rotatePushLeft 0.8s both ease;
-o-animation: rotatePushLeft 0.8s both ease;
animation: rotatePushLeft 0.8s both ease;
}
.effeckt-page-transition-right-rotate-push {
-webkit-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotatePushRight 0.8s both ease;
-o-animation: rotatePushRight 0.8s both ease;
animation: rotatePushRight 0.8s both ease;
}
.effeckt-page-transition-top-rotate-push {
-webkit-transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-o-transform-origin: 50% 0%;
transform-origin: 50% 0%;
-webkit-animation: rotatePushTop 0.8s both ease;
-o-animation: rotatePushTop 0.8s both ease;
animation: rotatePushTop 0.8s both ease;
}
.effeckt-page-transition-bottom-rotate-push {
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotatePushBottom 0.8s both ease;
-o-animation: rotatePushBottom 0.8s both ease;
animation: rotatePushBottom 0.8s both ease;
}
@-webkit-keyframes rotatePushLeft {
to {
opacity: 0;
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@-o-keyframes rotatePushLeft {
to {
opacity: 0;
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@keyframes rotatePushLeft {
to {
opacity: 0;
-webkit-transform: rotateY(90deg);
-ms-transform: rotateY(90deg);
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@-webkit-keyframes rotatePushRight {
to {
opacity: 0;
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@-o-keyframes rotatePushRight {
to {
opacity: 0;
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@keyframes rotatePushRight {
to {
opacity: 0;
-webkit-transform: rotateY(-90deg);
-ms-transform: rotateY(-90deg);
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@-webkit-keyframes rotatePushTop {
to {
opacity: 0;
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@-o-keyframes rotatePushTop {
to {
opacity: 0;
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@keyframes rotatePushTop {
to {
opacity: 0;
-webkit-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@-webkit-keyframes rotatePushBottom {
to {
opacity: 0;
-webkit-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
@-o-keyframes rotatePushBottom {
to {
opacity: 0;
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
@keyframes rotatePushBottom {
to {
opacity: 0;
-webkit-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
.effeckt-page-transition-left-rotate-pull {
-webkit-transform-origin: 0% 50%;
-ms-transform-origin: 0% 50%;
-o-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-animation: rotatePullLeft 0.5s both ease;
-o-animation: rotatePullLeft 0.5s both ease;
animation: rotatePullLeft 0.5s both ease;
}
.effeckt-page-transition-right-rotate-pull {
-webkit-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotatePullRight 0.5s both ease;
-o-animation: rotatePullRight 0.5s both ease;
animation: rotatePullRight 0.5s both ease;
}
.effeckt-page-transition-top-rotate-pull {
-webkit-transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-o-transform-origin: 50% 0%;
transform-origin: 50% 0%;
-webkit-animation: rotatePullTop 0.5s both ease;
-o-animation: rotatePullTop 0.5s both ease;
animation: rotatePullTop 0.5s both ease;
}
.effeckt-page-transition-bottom-rotate-pull {
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotatePullBottom 0.5s both ease;
-o-animation: rotatePullBottom 0.5s both ease;
animation: rotatePullBottom 0.5s both ease;
}
@-webkit-keyframes rotatePullLeft {
from {
opacity: 0;
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@-o-keyframes rotatePullLeft {
from {
opacity: 0;
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@keyframes rotatePullLeft {
from {
opacity: 0;
-webkit-transform: rotateY(90deg);
-ms-transform: rotateY(90deg);
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
}
}
@-webkit-keyframes rotatePullRight {
from {
opacity: 0;
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@-o-keyframes rotatePullRight {
from {
opacity: 0;
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@keyframes rotatePullRight {
from {
opacity: 0;
-webkit-transform: rotateY(-90deg);
-ms-transform: rotateY(-90deg);
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
}
}
@-webkit-keyframes rotatePullTop {
from {
opacity: 0;
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@-o-keyframes rotatePullTop {
from {
opacity: 0;
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@keyframes rotatePullTop {
from {
opacity: 0;
-webkit-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
}
}
@-webkit-keyframes rotatePullBottom {
from {
opacity: 0;
-webkit-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
@-o-keyframes rotatePullBottom {
from {
opacity: 0;
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
@keyframes rotatePullBottom {
from {
opacity: 0;
-webkit-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
}
}
.effeckt-page-transition-left-rotate-fold {
-webkit-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%;
-webkit-animation: rotateFoldLeft 0.7s both ease;
-o-animation: rotateFoldLeft 0.7s both ease;
animation: rotateFoldLeft 0.7s both ease;
}
.effeckt-page-transition-right-rotate-fold {
-webkit-transform-origin: 0% 50%;
-ms-transform-origin: 0% 50%;
-o-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-animation: rotateFoldRight 0.7s both ease;
-o-animation: rotateFoldRight 0.7s both ease;
animation: rotateFoldRight 0.7s both ease;
}
.effeckt-page-transition-top-rotate-fold {
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-animation: rotateFoldTop 0.7s both ease;
-o-animation: rotateFoldTop 0.7s both ease;
animation: rotateFoldTop 0.7s both ease;
}
.effeckt-page-transition-bottom-rotate-fold {
-webkit-transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-o-transform-origin: 50% 0%;
transform-origin: 50% 0%;
-webkit-animation: rotateFoldBottom 0.7s both ease;
-o-animation: rotateFoldBottom 0.7s both ease;
animation: rotateFoldBottom 0.7s both ease;
}
@-webkit-keyframes rotateFoldLeft {
to {
opacity: 0;
-webkit-transform: translateX(-100%) rotateY(-90deg);
transform: translateX(-100%) rotateY(-90deg);
}
}
@-o-keyframes rotateFoldLeft {
to {
opacity: 0;
-o-transform: translateX(-100%) rotateY(-90deg);
transform: translateX(-100%) rotateY(-90deg);
}
}
@keyframes rotateFoldLeft {
to {
opacity: 0;
-webkit-transform: translateX(-100%) rotateY(-90deg);
-ms-transform: translateX(-100%) rotateY(-90deg);
-o-transform: translateX(-100%) rotateY(-90deg);
transform: translateX(-100%) rotateY(-90deg);
}
}
@-webkit-keyframes rotateFoldRight {
to {
opacity: 0;
-webkit-transform: translateX(100%) rotateY(90deg);
transform: translateX(100%) rotateY(90deg);
}
}
@-o-keyframes rotateFoldRight {
to {
opacity: 0;
-o-transform: translateX(100%) rotateY(90deg);
transform: translateX(100%) rotateY(90deg);
}
}
@keyframes rotateFoldRight {
to {
opacity: 0;
-webkit-transform: translateX(100%) rotateY(90deg);
-ms-transform: translateX(100%) rotateY(90deg);
-o-transform: translateX(100%) rotateY(90deg);
transform: translateX(100%) rotateY(90deg);
}
}
@-webkit-keyframes rotateFoldTop {
to {
opacity: 0;
-webkit-transform: translateY(-100%) rotateX(90deg);
transform: translateY(-100%) rotateX(90deg);
}
}
@-o-keyframes rotateFoldTop {
to {
opacity: 0;
-o-transform: translateY(-100%) rotateX(90deg);
transform: translateY(-100%) rotateX(90deg);
}
}
@keyframes rotateFoldTop {
to {
opacity: 0;
-webkit-transform: translateY(-100%) rotateX(90deg);
-ms-transform: translateY(-100%) rotateX(90deg);
-o-transform: translateY(-100%) rotateX(90deg);
transform: translateY(-100%) rotateX(90deg);
}
}
@-webkit-keyframes rotateFoldBottom {
to {
opacity: 0;
-webkit-transform: translateY(100%) rotateX(-90deg);
transform: translateY(100%) rotateX(-90deg);
}
}
@-o-keyframes rotateFoldBottom {
to {
opacity: 0;
-o-transform: translateY(100%) rotateX(-90deg);
transform: translateY(100%) rotateX(-90deg);
}
}
@keyframes rotateFoldBottom {
to {
opacity: 0;
-webkit-transform: translateY(100%) rotateX(-90deg);
-ms-transform: translateY(100%) rotateX(-90deg);
-o-transform: translateY(100%) rotateX(-90deg);
transform: translateY(100%) rotateX(-90deg);
}
} | 0.533397 | 0.08292 |
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
width: 100%;
height: 100%;
position: relative;
font-family: "Varela Round";
}
.dFlex, nav, nav ul, .main_content, .main_content .card, .main_content .card .card_header, .btn, .footer, .footer .social, .footer .social .fa {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
height: 100%;
padding: 30px 50px 20px 50px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: #272b34;
}
nav {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
color: #fff;
}
nav .logo {
font-size: 30px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.7);
}
nav ul {
margin: 0;
padding: 0;
list-style-type: none;
}
nav ul li {
font-size: 14px;
margin-left: 15px;
padding: 10px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
}
nav .search {
color: rgba(255, 255, 255, 0.7);
}
nav .search .fa {
cursor: pointer;
}
nav .search .fa + .fa {
margin-left: 15px;
}
.main_content {
position: relative;
width: 70%;
height: 100%;
margin: 50px auto;
padding: 50px 0 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.main_content h3 {
position: absolute;
left: 0;
top: 0;
color: #2d343e;
font-size: 10.5vw;
}
.main_content .card {
width: 30%;
border-radius: 15px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
position: relative;
-webkit-transform: scale(0.8);
transform: scale(0.8);
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
margin-bottom: 50px;
}
.main_content .card .card_img {
margin-top: -5vw;
}
.main_content .card .card_img img {
width: 200px;
}
.main_content .card .card_header {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
color: #fff;
margin: 25px 0;
}
.main_content .card .card_header h2 {
font-size: 18px;
}
.main_content .card .card_header p {
font-size: 14px;
text-align: center;
color: rgba(255, 255, 255, 0.3);
margin: 8px 0;
}
.main_content .card .card_header .price {
font-size: 25px;
color: #fe8033;
}
.main_content .card .card_header .price span {
font-size: 15px;
display: inline-block;
vertical-align: top;
}
.main_content .card:hover {
background-color: #2b3039;
-webkit-transform: scale(1.1);
transform: scale(1.1);
cursor: pointer;
}
.main_content .card:hover .btn {
background-color: #fe8033;
color: #fff;
}
.btn {
width: 130px;
height: 35px;
font-size: 14px;
border-radius: 35px;
background-color: #2d343e;
color: rgba(255, 255, 255, 0.5);
cursor: pointer;
position: relative;
-webkit-transition: background-color .3s ease;
transition: background-color .3s ease;
overflow: hidden;
}
.footer {
width: 100%;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: auto;
color: rgba(255, 255, 255, 0.3);
font-size: 12px;
}
.footer .social .fa {
width: 50px;
height: 50px;
border-radius: 50px;
border: 1px solid rgba(255, 255, 255, 0.3);
font-size: 14px;
color: rgba(255, 255, 255, 0.3);
cursor: pointer;
}
.footer .social .fa + .fa {
margin-left: 15px;
}
/*# sourceMappingURL=App.css.map */ | src/App.css | * {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
width: 100%;
height: 100%;
position: relative;
font-family: "Varela Round";
}
.dFlex, nav, nav ul, .main_content, .main_content .card, .main_content .card .card_header, .btn, .footer, .footer .social, .footer .social .fa {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
height: 100%;
padding: 30px 50px 20px 50px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: #272b34;
}
nav {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
color: #fff;
}
nav .logo {
font-size: 30px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.7);
}
nav ul {
margin: 0;
padding: 0;
list-style-type: none;
}
nav ul li {
font-size: 14px;
margin-left: 15px;
padding: 10px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
}
nav .search {
color: rgba(255, 255, 255, 0.7);
}
nav .search .fa {
cursor: pointer;
}
nav .search .fa + .fa {
margin-left: 15px;
}
.main_content {
position: relative;
width: 70%;
height: 100%;
margin: 50px auto;
padding: 50px 0 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.main_content h3 {
position: absolute;
left: 0;
top: 0;
color: #2d343e;
font-size: 10.5vw;
}
.main_content .card {
width: 30%;
border-radius: 15px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
position: relative;
-webkit-transform: scale(0.8);
transform: scale(0.8);
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
margin-bottom: 50px;
}
.main_content .card .card_img {
margin-top: -5vw;
}
.main_content .card .card_img img {
width: 200px;
}
.main_content .card .card_header {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
color: #fff;
margin: 25px 0;
}
.main_content .card .card_header h2 {
font-size: 18px;
}
.main_content .card .card_header p {
font-size: 14px;
text-align: center;
color: rgba(255, 255, 255, 0.3);
margin: 8px 0;
}
.main_content .card .card_header .price {
font-size: 25px;
color: #fe8033;
}
.main_content .card .card_header .price span {
font-size: 15px;
display: inline-block;
vertical-align: top;
}
.main_content .card:hover {
background-color: #2b3039;
-webkit-transform: scale(1.1);
transform: scale(1.1);
cursor: pointer;
}
.main_content .card:hover .btn {
background-color: #fe8033;
color: #fff;
}
.btn {
width: 130px;
height: 35px;
font-size: 14px;
border-radius: 35px;
background-color: #2d343e;
color: rgba(255, 255, 255, 0.5);
cursor: pointer;
position: relative;
-webkit-transition: background-color .3s ease;
transition: background-color .3s ease;
overflow: hidden;
}
.footer {
width: 100%;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: auto;
color: rgba(255, 255, 255, 0.3);
font-size: 12px;
}
.footer .social .fa {
width: 50px;
height: 50px;
border-radius: 50px;
border: 1px solid rgba(255, 255, 255, 0.3);
font-size: 14px;
color: rgba(255, 255, 255, 0.3);
cursor: pointer;
}
.footer .social .fa + .fa {
margin-left: 15px;
}
/*# sourceMappingURL=App.css.map */ | 0.334155 | 0.042503 |
div.floating-action-menu > .action-menu {
visibility: hidden;
transform: translateY(65px);
opacity: 0;
max-height: 0;
overflow: hidden;
transition: all 300ms linear;
/* background-color: black; */
padding: 5px 0px 5px 5px; /*top,right,bottom,left*/
}
div.floating-action-menu.active > .action-menu {
visibility: visible;
transform: translate(0);
opacity: 0.9;
padding-bottom: 5px;
max-height: 1000px;
}
div.floating-action-menu > .action-menu > .floating-action a {
width: -moz-available; /* WebKit-based browsers will ignore this. */
width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
width: fill-available;
text-align: end;
}
/* div.floating-action-menu > .action-menu > .floating-action {
padding-right: 0.45rem;
} */
div.floating-action-menu > .action-menu .btn-floating,
div.floating-action-menu > .action-menu .badge {
transform: scale(0.4);
transition: all 500ms ease-in-out;
}
div.floating-action-menu.active > .action-menu .btn-floating,
div.floating-action-menu.active > .action-menu .badge {
transform: scale(1);
}
div.floating-action-menu > .action-button > .btn-floating {
transition: all 500ms linear;
cursor: pointer;
}
div.floating-action-menu.active > .action-button > .btn-floating {
/* background-color: black;
border-color: black; */
opacity: 0.9;
cursor: pointer;
}
div.floating-action-menu.active > .action-button > .btn-floating:hover {
/* background-color: grey;
border-color: black; */
opacity: 0.5;
cursor: pointer;
}
div.floating-action-menu > .action-button > .btn-floating > i {
transition: transform 500ms ease-in-out;
}
div.floating-action-menu.active > .action-button > .btn-floating > i {
transform: rotate(-540deg);
}
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
div.floating-action-menu > .action-menu {
background-color: black;
}
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
div.floating-action-menu > .action-menu {
background-color: black;
}
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
div.floating-action-menu > .action-menu {
background-color: black;
}
}
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}
/*
XX-Large devices (larger desktops)
No media query since the xxl breakpoint has no upper bound on its width */ | html/script/css/floatingActionMenu.css | div.floating-action-menu > .action-menu {
visibility: hidden;
transform: translateY(65px);
opacity: 0;
max-height: 0;
overflow: hidden;
transition: all 300ms linear;
/* background-color: black; */
padding: 5px 0px 5px 5px; /*top,right,bottom,left*/
}
div.floating-action-menu.active > .action-menu {
visibility: visible;
transform: translate(0);
opacity: 0.9;
padding-bottom: 5px;
max-height: 1000px;
}
div.floating-action-menu > .action-menu > .floating-action a {
width: -moz-available; /* WebKit-based browsers will ignore this. */
width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
width: fill-available;
text-align: end;
}
/* div.floating-action-menu > .action-menu > .floating-action {
padding-right: 0.45rem;
} */
div.floating-action-menu > .action-menu .btn-floating,
div.floating-action-menu > .action-menu .badge {
transform: scale(0.4);
transition: all 500ms ease-in-out;
}
div.floating-action-menu.active > .action-menu .btn-floating,
div.floating-action-menu.active > .action-menu .badge {
transform: scale(1);
}
div.floating-action-menu > .action-button > .btn-floating {
transition: all 500ms linear;
cursor: pointer;
}
div.floating-action-menu.active > .action-button > .btn-floating {
/* background-color: black;
border-color: black; */
opacity: 0.9;
cursor: pointer;
}
div.floating-action-menu.active > .action-button > .btn-floating:hover {
/* background-color: grey;
border-color: black; */
opacity: 0.5;
cursor: pointer;
}
div.floating-action-menu > .action-button > .btn-floating > i {
transition: transform 500ms ease-in-out;
}
div.floating-action-menu.active > .action-button > .btn-floating > i {
transform: rotate(-540deg);
}
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
div.floating-action-menu > .action-menu {
background-color: black;
}
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
div.floating-action-menu > .action-menu {
background-color: black;
}
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
div.floating-action-menu > .action-menu {
background-color: black;
}
}
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}
/*
XX-Large devices (larger desktops)
No media query since the xxl breakpoint has no upper bound on its width */ | 0.248808 | 0.071461 |
#admin{width:390px;height:288px;margin: 50px auto;}
#login #logo{display:block;width: 400px;height: 100px;background:url(../images/login.png) no-repeat left top;margin:0 auto;}
#logo h1{display:none;}
.login_form .user, .login_form .password{width:40px;height:40px;float:left;}
.login_form p{width:386px;margin:30px auto;line-height:40px;height:40px;text-align: right;}
p.submit label{font-size:0.8em;}
/** header **/
#header{margin:0 0 15px;}
#header #logo{display:block;width: 400px;height: 100px;background:url(../images/mail_logo.png) no-repeat left top;}
#logo a{display:block;height: 100px;}
#header #logout{height: 50px;background: url(../images/logout.png) no-repeat left;float: right;margin-top: 50px;line-height: 50px;padding-left: 30px;}
#header #stats{height: 50px;background: url(../images/stats.png) no-repeat left;float: right;margin: 50px 5px 0;line-height: 50px;padding-left: 35px;}
/** list **/
#join_list{margin:10px auto;width:100%;border-collapse:collapse;}
#join_list td, #join_list th{font-size:1em;border:1px solid #ddd;padding:3px 7px 2px 7px;white-space:nowrap;}
#join_list th{font-size:1.1em;text-align:center;padding-top:5px;padding-bottom:4px;background-color:#000;color:#ffffff;}
#join_list tr.alt td{color:#000000;background-color:#EEE;}
/** sprite **/
.newbook, .search, .logout, .user, .pending, .setting, .password, .booklist, .ebook{background:#000 url(../images/sprite.png) no-repeat;}
.newbook{background-position:0 0;}
.search{background-position:0 -40px;}
.logout{background-position:0 -80px;}
.user{background-position:0 -120px;}
.pending{background-position:0 -160px;}
.setting{background-position:0 -200px;}
.password{background-position:0 -240px;}
.booklist{background-position:0 -280px;}
.ebook{background-position:0 -320px;}
/** Form **/
label.text{display:block;float:left;width:120px;height:40px;background-color:#000;color:#fff;line-height:40px;text-align:center;}
input.text{border:none;width:330px;height:40px;line-height:20px;background-color:#DEDFE1;margin:0; padding: 0 0 0 10px;float:left;}
span.text_tail{float:left;height:40px;line-height:40px;background-color:#DEDFE1;padding:0 5px;}
.iconbtn{width:40px;height:40px;float:left;border:none;}
.btn{width: 80px;background:#000;border:none;color:#fff;height: 35px;margin: 0 10px;}
.btn:hover{cursor:pointer;}
.btn:active{width:78px;height:33px;margin:1px 11px;} | admin/style.css | #admin{width:390px;height:288px;margin: 50px auto;}
#login #logo{display:block;width: 400px;height: 100px;background:url(../images/login.png) no-repeat left top;margin:0 auto;}
#logo h1{display:none;}
.login_form .user, .login_form .password{width:40px;height:40px;float:left;}
.login_form p{width:386px;margin:30px auto;line-height:40px;height:40px;text-align: right;}
p.submit label{font-size:0.8em;}
/** header **/
#header{margin:0 0 15px;}
#header #logo{display:block;width: 400px;height: 100px;background:url(../images/mail_logo.png) no-repeat left top;}
#logo a{display:block;height: 100px;}
#header #logout{height: 50px;background: url(../images/logout.png) no-repeat left;float: right;margin-top: 50px;line-height: 50px;padding-left: 30px;}
#header #stats{height: 50px;background: url(../images/stats.png) no-repeat left;float: right;margin: 50px 5px 0;line-height: 50px;padding-left: 35px;}
/** list **/
#join_list{margin:10px auto;width:100%;border-collapse:collapse;}
#join_list td, #join_list th{font-size:1em;border:1px solid #ddd;padding:3px 7px 2px 7px;white-space:nowrap;}
#join_list th{font-size:1.1em;text-align:center;padding-top:5px;padding-bottom:4px;background-color:#000;color:#ffffff;}
#join_list tr.alt td{color:#000000;background-color:#EEE;}
/** sprite **/
.newbook, .search, .logout, .user, .pending, .setting, .password, .booklist, .ebook{background:#000 url(../images/sprite.png) no-repeat;}
.newbook{background-position:0 0;}
.search{background-position:0 -40px;}
.logout{background-position:0 -80px;}
.user{background-position:0 -120px;}
.pending{background-position:0 -160px;}
.setting{background-position:0 -200px;}
.password{background-position:0 -240px;}
.booklist{background-position:0 -280px;}
.ebook{background-position:0 -320px;}
/** Form **/
label.text{display:block;float:left;width:120px;height:40px;background-color:#000;color:#fff;line-height:40px;text-align:center;}
input.text{border:none;width:330px;height:40px;line-height:20px;background-color:#DEDFE1;margin:0; padding: 0 0 0 10px;float:left;}
span.text_tail{float:left;height:40px;line-height:40px;background-color:#DEDFE1;padding:0 5px;}
.iconbtn{width:40px;height:40px;float:left;border:none;}
.btn{width: 80px;background:#000;border:none;color:#fff;height: 35px;margin: 0 10px;}
.btn:hover{cursor:pointer;}
.btn:active{width:78px;height:33px;margin:1px 11px;} | 0.1679 | 0.070272 |
* {
margin: 0;
padding: 0;
text-decoration: none;
color: inherit;
}
body {
width: 100%;
min-width: 1080px;
font-family: "Poppins", sans-serif;
}
.section-aboutus {
width: 100%;
height: 700px;
background: linear-gradient(180deg, #151531 0%, #421a92 100%);
background-position: bottom;
position: relative;
overflow: hidden;
z-index: 0;
}
.title-aboutus {
text-align: center;
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 48px;
line-height: 72px;
padding-top: 80px;
margin-bottom: 20px;
color: #39beff;
}
.about-us-content {
display: flex;
flex-direction: row;
margin-left: 75px;
margin-top: 50px;
justify-content: center;
z-index: 2;
}
.about-us-left {
margin-top: 50px;
z-index: 2;
}
.about-us-text {
width: 600px;
height: fit-content;
font-family: "Poppins", sans-serif;
font-size: 26px;
font-style: normal;
font-weight: 400;
line-height: 40px;
letter-spacing: 0em;
text-align: left;
color: white;
}
.about-us-buttons {
display: flex;
flex-direction: row;
padding-top: 30px;
}
.about-us-button-text {
text-align: center;
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 36px;
color: white;
}
#button-register {
height: 50px;
width: 150px;
border-radius: 30px;
border: 0px solid black;
background: rgb(192, 81, 255);
background: linear-gradient(
90deg,
rgba(192, 81, 255, 1) 0%,
rgba(66, 26, 146, 1) 50%,
rgba(57, 190, 255, 1) 100%
);
margin-right: 36.68px;
outline: none;
}
#button-download-guide-book {
width: 300px;
height: 50px;
background-color: transparent;
border-radius: 30px;
border: 3px solid white;
outline: none;
}
#button-download-guide-book:hover, #button-download-sticky:hover{
cursor: pointer;
}
.about-us-pic {
width: 420px;
height: auto;
filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.25));
padding-left: 25px;
z-index: 2;
}
.guidebook {
width: 100%;
height: 80px;
background-color: #313166;
color: white;
position: fixed;
z-index: 999;
bottom: 0;
display: none;
}
.guidebook-content {
width: 100%;
height: fit-content;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding-top: 17px;
}
.guidebook-text {
color: white;
font-size: 18px;
font-family: "Poppins", sans-serif;
font-style: normal;
padding-right: 35px;
}
#button-download-sticky {
width: 300px;
height: 50px;
background-color: transparent;
border-radius: 30px;
border: 3px solid white;
outline: none;
}
#guidebook-close {
position: relative;
left: 350px;
color: white;
background: transparent;
border: none;
font-family: "Poppins", sans-serif;
font-size: 36px;
}
.guidebook-footer {
width: 100%;
height: 80px;
background-color: #313166;
color: white;
}
#guidebook-close:hover {
filter: brightness(50%);
}
.aboutus-circle1 {
position: absolute;
top: 50px;
right: 0px;
z-index: 1;
}
.aboutus-circle2 {
position: absolute;
left: 0px;
bottom: 5px;
z-index: 1;
} | public/css/aboutus.css | * {
margin: 0;
padding: 0;
text-decoration: none;
color: inherit;
}
body {
width: 100%;
min-width: 1080px;
font-family: "Poppins", sans-serif;
}
.section-aboutus {
width: 100%;
height: 700px;
background: linear-gradient(180deg, #151531 0%, #421a92 100%);
background-position: bottom;
position: relative;
overflow: hidden;
z-index: 0;
}
.title-aboutus {
text-align: center;
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 800;
font-size: 48px;
line-height: 72px;
padding-top: 80px;
margin-bottom: 20px;
color: #39beff;
}
.about-us-content {
display: flex;
flex-direction: row;
margin-left: 75px;
margin-top: 50px;
justify-content: center;
z-index: 2;
}
.about-us-left {
margin-top: 50px;
z-index: 2;
}
.about-us-text {
width: 600px;
height: fit-content;
font-family: "Poppins", sans-serif;
font-size: 26px;
font-style: normal;
font-weight: 400;
line-height: 40px;
letter-spacing: 0em;
text-align: left;
color: white;
}
.about-us-buttons {
display: flex;
flex-direction: row;
padding-top: 30px;
}
.about-us-button-text {
text-align: center;
font-family: "Poppins", sans-serif;
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 36px;
color: white;
}
#button-register {
height: 50px;
width: 150px;
border-radius: 30px;
border: 0px solid black;
background: rgb(192, 81, 255);
background: linear-gradient(
90deg,
rgba(192, 81, 255, 1) 0%,
rgba(66, 26, 146, 1) 50%,
rgba(57, 190, 255, 1) 100%
);
margin-right: 36.68px;
outline: none;
}
#button-download-guide-book {
width: 300px;
height: 50px;
background-color: transparent;
border-radius: 30px;
border: 3px solid white;
outline: none;
}
#button-download-guide-book:hover, #button-download-sticky:hover{
cursor: pointer;
}
.about-us-pic {
width: 420px;
height: auto;
filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.25));
padding-left: 25px;
z-index: 2;
}
.guidebook {
width: 100%;
height: 80px;
background-color: #313166;
color: white;
position: fixed;
z-index: 999;
bottom: 0;
display: none;
}
.guidebook-content {
width: 100%;
height: fit-content;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding-top: 17px;
}
.guidebook-text {
color: white;
font-size: 18px;
font-family: "Poppins", sans-serif;
font-style: normal;
padding-right: 35px;
}
#button-download-sticky {
width: 300px;
height: 50px;
background-color: transparent;
border-radius: 30px;
border: 3px solid white;
outline: none;
}
#guidebook-close {
position: relative;
left: 350px;
color: white;
background: transparent;
border: none;
font-family: "Poppins", sans-serif;
font-size: 36px;
}
.guidebook-footer {
width: 100%;
height: 80px;
background-color: #313166;
color: white;
}
#guidebook-close:hover {
filter: brightness(50%);
}
.aboutus-circle1 {
position: absolute;
top: 50px;
right: 0px;
z-index: 1;
}
.aboutus-circle2 {
position: absolute;
left: 0px;
bottom: 5px;
z-index: 1;
} | 0.61115 | 0.099208 |
.tab {height: 35px; margin:10px 0 0 0;background:#eee;border-bottom: 1px solid #d7dde6;}
.tab ul{ height: 35px;}
.tab ul li{ float:left; height:30px; border: 1px solid #d7dde6; background: #f6f6f6; font-size: 14px; line-height: 30px; margin: 4px 0 0 10px; display: inline; cursor: pointer; white-space: nowrap ; padding:0 18px}
.tab ul li.current{ background:#fff; font-weight:bold; line-height:28px; border-bottom:none; height:31px;padding:0 18px; cursor:default;}
.tab ul li.last{border:none; margin-left:50px; background:none;}
.oper{margin:20px 0; background:#f9fcff}
.oper a{height:18px; line-height:18px; margin: 0 20px 0 0; font-size:14px}
a.back{background:url(/tpl/User/default/common/images/icons/arrow_redo.png) no-repeat; padding:2px 0 2px 20px}
a.add{background:url(/tpl/User/default/common/images/icons/add.png) no-repeat; padding:0px 0 0px 20px}
a.taxis{background:url(/tpl/User/default/common/images/icons/arrow_switch.png) no-repeat; padding:2px 0 2px 20px}
a.delete{background:url(/tpl/User/default/common/images/icons/cross.png) no-repeat; padding:2px 0 2px 20px}
a.recommend{background:url(/tpl/User/default/common/images/icons/layers.png) no-repeat; padding:2px 0 2px 20px}
a.excel{background:url(/tpl/User/default/common/images/icons/page_excel.png) no-repeat; padding:2px 0 2px 20px}
a.handle{background:url(/tpl/User/default/common/images/icons/folder_database.png) no-repeat; padding:2px 0 2px 20px}
a.transfer{background:url(/tpl/User/default/common/images/icons/arrow_redo.png) no-repeat; padding:2px 0 2px 20px}
a.mp{background:url(/tpl/User/default/common/images/icons/phone.png) no-repeat; padding:2px 0 2px 20px}
a.help{background:url(/tpl/User/default/common/images/icons/help.png) no-repeat; padding:2px 0 2px 20px}
a.grade{background:url(/tpl/User/default/common/images/icons/photocat.gif) no-repeat; padding:2px 0 2px 20px}
input.error,textarea.error{ border:1px solid #f00; } label.error,option.error{ color:#f00; }
.ftip{background:#fefbe4 url(/tpl/User/default/common/images/icons/lightbulb.gif) no-repeat 10px 16px;border:1px solid #F3ECB9;padding:6px 20px 6px 36px;height:36px;font-size:14px; margin:10px; color:#993300; line-height:36px;}
.ftip a{font-size:12px; float:right}
.ftip a.normal{font-size:14px; float:none} | public/Public/static/weixin/css/cymain.css | .tab {height: 35px; margin:10px 0 0 0;background:#eee;border-bottom: 1px solid #d7dde6;}
.tab ul{ height: 35px;}
.tab ul li{ float:left; height:30px; border: 1px solid #d7dde6; background: #f6f6f6; font-size: 14px; line-height: 30px; margin: 4px 0 0 10px; display: inline; cursor: pointer; white-space: nowrap ; padding:0 18px}
.tab ul li.current{ background:#fff; font-weight:bold; line-height:28px; border-bottom:none; height:31px;padding:0 18px; cursor:default;}
.tab ul li.last{border:none; margin-left:50px; background:none;}
.oper{margin:20px 0; background:#f9fcff}
.oper a{height:18px; line-height:18px; margin: 0 20px 0 0; font-size:14px}
a.back{background:url(/tpl/User/default/common/images/icons/arrow_redo.png) no-repeat; padding:2px 0 2px 20px}
a.add{background:url(/tpl/User/default/common/images/icons/add.png) no-repeat; padding:0px 0 0px 20px}
a.taxis{background:url(/tpl/User/default/common/images/icons/arrow_switch.png) no-repeat; padding:2px 0 2px 20px}
a.delete{background:url(/tpl/User/default/common/images/icons/cross.png) no-repeat; padding:2px 0 2px 20px}
a.recommend{background:url(/tpl/User/default/common/images/icons/layers.png) no-repeat; padding:2px 0 2px 20px}
a.excel{background:url(/tpl/User/default/common/images/icons/page_excel.png) no-repeat; padding:2px 0 2px 20px}
a.handle{background:url(/tpl/User/default/common/images/icons/folder_database.png) no-repeat; padding:2px 0 2px 20px}
a.transfer{background:url(/tpl/User/default/common/images/icons/arrow_redo.png) no-repeat; padding:2px 0 2px 20px}
a.mp{background:url(/tpl/User/default/common/images/icons/phone.png) no-repeat; padding:2px 0 2px 20px}
a.help{background:url(/tpl/User/default/common/images/icons/help.png) no-repeat; padding:2px 0 2px 20px}
a.grade{background:url(/tpl/User/default/common/images/icons/photocat.gif) no-repeat; padding:2px 0 2px 20px}
input.error,textarea.error{ border:1px solid #f00; } label.error,option.error{ color:#f00; }
.ftip{background:#fefbe4 url(/tpl/User/default/common/images/icons/lightbulb.gif) no-repeat 10px 16px;border:1px solid #F3ECB9;padding:6px 20px 6px 36px;height:36px;font-size:14px; margin:10px; color:#993300; line-height:36px;}
.ftip a{font-size:12px; float:right}
.ftip a.normal{font-size:14px; float:none} | 0.250271 | 0.182899 |
@import url(https://fonts.googleapis.com/css?family=Lobster|Raleway);
.app {
background: #fafffd;
color: #342e37;
font: 400 1rem/1 "Raleway", sans-serif;
min-height: 100vh;
}
.app__header {
background: #342e37;
left: 0;
margin: 0 auto;
padding: 1.25rem 0;
position: fixed;
text-align: center;
top: 0;
width: 100%;
}
.app__header__h1 {
color: #a2d729;
font-family: "Lobster", cursive;
font-size: 1.5rem;
font-weight: 400;
margin: 0;
padding: 0 1rem;
}
.app__header__h1__a {
color: #3c91e6;
text-decoration: none;
}
.app__main {
padding: 4rem 0 0 0;
}
.app__main__nav {
padding: 1rem;
}
.app__main__nav__ul {
margin: 0;
padding: 0;
}
.app__main__nav__ul__li {
display: inline;
font-size: 0.75rem;
list-style: none;
padding: 0 0.5rem 0 0;
text-transform: uppercase;
}
.app__main__nav__ul__li::after {
content: "›";
padding: 0 0 0 0.5rem;
}
.app__main__nav__ul__li:last-child {
padding: 0;
}
.app__main__nav__ul__li:last-child::after {
content: "";
}
.app__main__nav__ul__li__a {
color: #3c91e6;
text-decoration: none;
}
.app__main__div {
padding: 0 1rem 1rem 1rem;
}
.app__main__div__a {
color: #3c91e6;
text-decoration: none;
text-transform: uppercase;
}
.app__main__div__section {
padding: 0 0 1rem 0;
}
.app__main__div__section__h2 {
font-size: 1.25rem;
font-weight: 400;
margin: 0;
text-transform: uppercase;
}
.app__main__div__section__input {
font-size: 0.75rem;
margin: 0.5rem 0 0 0;
text-transform: uppercase;
}
.app__main__div__section__ul {
padding: 0;
}
.app__main__div__section__ul__li {
list-style: none;
margin: 0;
}
.app__main__div__section__ul__li__div__h3 {
font-size: 1.125rem;
font-weight: 400;
margin: 0 0 0.5rem 0;
}
.app__main__div__section__p {
padding: 0;
}
.app__main__div__section__ul__li__div__div {
display: block;
}
.app__main__div__section__ul__li__div__h4 {
clear: left;
font-size: 1rem;
font-weight: 400;
margin: 0 0 0.5rem 0;
text-transform: uppercase;
}
.app__main__div__section__ul__li__div__select {
font-size: 0.75rem;
margin: 0 0 1rem 0;
text-transform: uppercase;
}
.app__footer {
margin: 0 auto;
padding: 1rem;
text-align: center;
}
.app__footer__p {
font-size: 0.75rem;
margin: 0;
}
.app__footer__p__a {
color: #3c91e6;
text-decoration: none;
}
.-abbr {
border-bottom: 0.0625rem #fa824c dashed !important; /* override Normalize.css */
cursor: help;
text-decoration: none !important; /* override Normalize.css */
} | src/containers/App.css | @import url(https://fonts.googleapis.com/css?family=Lobster|Raleway);
.app {
background: #fafffd;
color: #342e37;
font: 400 1rem/1 "Raleway", sans-serif;
min-height: 100vh;
}
.app__header {
background: #342e37;
left: 0;
margin: 0 auto;
padding: 1.25rem 0;
position: fixed;
text-align: center;
top: 0;
width: 100%;
}
.app__header__h1 {
color: #a2d729;
font-family: "Lobster", cursive;
font-size: 1.5rem;
font-weight: 400;
margin: 0;
padding: 0 1rem;
}
.app__header__h1__a {
color: #3c91e6;
text-decoration: none;
}
.app__main {
padding: 4rem 0 0 0;
}
.app__main__nav {
padding: 1rem;
}
.app__main__nav__ul {
margin: 0;
padding: 0;
}
.app__main__nav__ul__li {
display: inline;
font-size: 0.75rem;
list-style: none;
padding: 0 0.5rem 0 0;
text-transform: uppercase;
}
.app__main__nav__ul__li::after {
content: "›";
padding: 0 0 0 0.5rem;
}
.app__main__nav__ul__li:last-child {
padding: 0;
}
.app__main__nav__ul__li:last-child::after {
content: "";
}
.app__main__nav__ul__li__a {
color: #3c91e6;
text-decoration: none;
}
.app__main__div {
padding: 0 1rem 1rem 1rem;
}
.app__main__div__a {
color: #3c91e6;
text-decoration: none;
text-transform: uppercase;
}
.app__main__div__section {
padding: 0 0 1rem 0;
}
.app__main__div__section__h2 {
font-size: 1.25rem;
font-weight: 400;
margin: 0;
text-transform: uppercase;
}
.app__main__div__section__input {
font-size: 0.75rem;
margin: 0.5rem 0 0 0;
text-transform: uppercase;
}
.app__main__div__section__ul {
padding: 0;
}
.app__main__div__section__ul__li {
list-style: none;
margin: 0;
}
.app__main__div__section__ul__li__div__h3 {
font-size: 1.125rem;
font-weight: 400;
margin: 0 0 0.5rem 0;
}
.app__main__div__section__p {
padding: 0;
}
.app__main__div__section__ul__li__div__div {
display: block;
}
.app__main__div__section__ul__li__div__h4 {
clear: left;
font-size: 1rem;
font-weight: 400;
margin: 0 0 0.5rem 0;
text-transform: uppercase;
}
.app__main__div__section__ul__li__div__select {
font-size: 0.75rem;
margin: 0 0 1rem 0;
text-transform: uppercase;
}
.app__footer {
margin: 0 auto;
padding: 1rem;
text-align: center;
}
.app__footer__p {
font-size: 0.75rem;
margin: 0;
}
.app__footer__p__a {
color: #3c91e6;
text-decoration: none;
}
.-abbr {
border-bottom: 0.0625rem #fa824c dashed !important; /* override Normalize.css */
cursor: help;
text-decoration: none !important; /* override Normalize.css */
} | 0.277963 | 0.059565 |
.formErrors,
.formErrorsDisplay {
color: red;
border: 1px solid red;
}
.formErrors {
background: #fee;
display: none;
}
.fielderror {
border: 1px solid red;
background: #fee;
}
.fielderror-msg {
color: #f44167;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}
.hidden {
display: none;
}
.btn {
white-space: normal !important;
}
/* @import must be at top of file, otherwise CSS will not work */
/* @import url("//hello.myfonts.net/count/2b5e4e"); uncomment on live */
@font-face {
font-family: 'HelveticaNeueLTStd-Lt';
src: url('/fonts/2B5E4E_0_0.eot');
src: url('/fonts/2B5E4E_0_0.eot?#iefix') format('embedded-opentype'), url('/fonts/2B5E4E_0_0.woff') format('woff'), url('/fonts/2B5E4E_0_0.ttf') format('truetype');
}
@font-face {
font-family: 'icomoon';
src: url('/fonts/icomoon.eot?-lcj9le');
src: url('/fonts/icomoon.eot?#iefix-lcj9le') format('embedded-opentype'), url('/fonts/icomoon.woff?-lcj9le') format('woff'), url('/fonts/icomoon.ttf?-lcj9le') format('truetype'), url('/fonts/icomoon.svg?-lcj9le#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
#mySwipe ul li:before,
ul.checked li:before {
font-family: 'icomoon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
margin-left: -25px;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\e600";
padding-right: 20px;
}
#mySwipe ul li {
font-size: 28px;
line-height: 1.5;
padding-left: 45px;
text-indent: -18px;
}
.checked li {
line-height: 1.5;
padding-left: 45px;
text-indent: -18px;
}
#mySwipe ul,
.checked li {
list-style: none !important;
padding-left: 0;
}
.img-holder {
width: 484px;
margin: 40px auto;
}
@media (max-width: 521px) {
.img-holder {
width: auto;
}
}
/******************************/
.addthis_20x20_style .dummy .at300bs,
.addthis_20x20_style .at300bs,
.addthis_20x20_style .at15t {
background: url(../img/share-btn.png) no-repeat left;
overflow: hidden;
display: block;
height: 25px!important;
width: 25px!important;
line-height: 20px!important;
background-size: 103px 26px;
margin-right: 5px;
}
.addthis_20x20_style .at15t_facebook {
background-position: 0 0 !important;
}
.addthis_20x20_style .at15t_twitter {
background-position: -52px 0 !important;
}
.addthis_20x20_style .at15t_google_plusone_share {
background-position: -26px 0 !important;
}
.addthis_20x20_style .at15t_linkedin {
background-position: -77px 0 !important;
}
.news-article-follow {
border-top: 1px solid #d5d5d5;
padding-top: 20px;
}
.social-share-buttons {
border: 1px solid #ccc;
width: 230px;
overflow: auto;
border-radius: 20px;
padding: 5px 3px 2px 15px;
margin-bottom: 40px;
float: right;
}
div#atstbx {
float: right;
}
.sharing-title {
font-size: 12px;
text-transform: uppercase;
font-family: Garamond;
display: inline;
vertical-align: middle;
padding-top: 2px;
float: left;
}
/*
.news-article-follow ul {
padding: 0;
list-style: none;
display: inline-block;
vertical-align: middle;
border: 1px solid #ccc;
border-radius: 20px;
padding: 5px 5px 5px 14px;
margin: 20px 0 50px;
float: right;
}
.news-article-follow li:first-child {
font-size: 12px;
text-transform: uppercase;
font-family: Garamond;
display: inline;
vertical-align: middle;
padding-top: 2px;
}
.news-article-follow ul li {
float: left;
margin-right:8px;
}
#li_ui_li_gen_1405582922373_0 #li_ui_li_gen_1405583373907_0-logo {
background-image: url(http://revamp.mediaconcepts.com/img/na-linkedin.png) !important;
background-position: 0px 0 !important;
background-repeat: no-repeat !important;
background-size: 25px 25px !important;
cursor: pointer !important;
border: 0 !important;
text-indent: -9999em !important;
overflow: hidden !important;
padding: 0 !important;
margin: 0 !important;
position: static !important;
left: 0px !important;
top: 0px !important;
display: block !important;
width: 25px !important;
height: 25px !important;
float: right !important;
border-radius: 0 !important;
-webkit-border-radius: 0 !important;
border-top-right-radius: 2px !important;
border-bottom-right-radius: 2px !important;
-webkit-border-top-right-radius: 2px !important;
-webkit-border-bottom-right-radius: 2px !important;
}
*/
/******************************/
/* CUSTOM CSS */
html {
background-color: #4d4d4f;
}
body {
text-align: left;
color: #231f20;
font-family: 'HelveticaNeueLTStd-Lt', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
font-weight: 300;
}
a {
text-decoration: none;
color: #3a5897;
}
a:hover {
text-decoration: underline;
}
a:focus {
outline: 0;
}
h1 {
font-size: 45px;
line-height: 1.1em;
font-weight: 400;
font-family: 'Signika', sans-serif;
}
h2 {
font-weight: 600;
font-size: 27px;
line-height: 1.1em;
margin: 0 0 15px;
font-family: 'Signika', sans-serif;
}
h2 small {
font-size: 21px;
line-height: 1em;
font-weight: 400;
color: #231f20;
font-weight: 300;
}
header > h2 + p {
font-weight: 300;
font-size: 1em;
line-height: 1.2em;
height: 110px;
}
header#header {
height: 69px;
}
h3 {
color: #231f20;
font-size: 22px;
margin: 20px 0;
line-height: 1.1em;
font-weight: 600;
font-family: 'Signika', sans-serif;
}
p {
margin-bottom: 14px;
line-height: 1.4;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
outline: 0;
}
.blue {
color: #3a5897;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
outline: 0;
}
.btn-primary {
color: #ffffff;
background-color: #e8a73a;
border-color: #e8a73a;
background-image: none;
filter: none;
-webkit-box-shadow: none;
box-shadow: none;
text-shadow: none;
font-family: 'didot', serif;
font-weight: 400;
border-radius: 6px;
font-size: 18px;
padding: 11px 17px;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
background-color: #e8a73a;
border-color: #e8a73a;
filter: none;
}
.btn-primary:hover {
background-color: #eeb24e;
color: #ffffff;
border-color: #eeb24e;
filter: none;
}
.btn-lg {
font-size: 22px;
padding: 15px 22px;
border-radius: 6px;
}
.container {
max-width: 920px;
}
.navbar-collapse {
max-height: none;
}
.bg-white {
background-color: #ffffff;
}
.bg-grey-light {
background-color: #eeeeee;
}
.bg-grey-gradient {
background: #eeeeee url('../img/bg-gradient-grey.jpg') 0 0 repeat-x;
}
.bg-grey-dark {
background-color: #4d4d4f;
color: #ffffff;
}
.bg-grey-dark a {
color: #ffffff;
}
.btn-md {
padding-top: 3px;
padding-bottom: 3px;
border-radius: 10px;
}
@media (min-width: 1200px) {
.col-padding-50 {
padding-top: 50px;
}
header#header {
height: 110px !important;
}
}
.content {
font-size: 18px;
line-height: 1.15em;
background-color: #ffffff;
position: relative;
z-index: 1;
}
@media (min-width: 768px) {
.content {
font-size: 21px;
}
header#header {
height: 155px;
}
}
.content h1 {
font-size: 2.1429em;
}
.content h2 {
font-size: 1.2857em;
}
/* font-size: 27px */
.content h2 small {
font-size: 0.7778em;
font-family: 'HelveticaNeueLTStd-Lt', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
font-weight: 300;
}
.content h3 a {
color: #231f20;
}
.content-area {
padding: 50px 15px 35px;
float: left;
width: 100%;
}
@media (min-width: 768px) {
.content-area {
padding-left: 0;
padding-right: 0;
}
}
.content-center {
text-align: center;
}
.content-left {
text-align: left;
}
.content-right {
text-align: right;
}
.google-map {
position: relative;
padding-bottom: 75%;
height: 0;
overflow: hidden;
}
.google-map iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
iframe {
border: 0;
}
@media (min-width: 1200px) {
.img-responsive {
display: inline;
}
}
.left {
float: left;
}
.img-left {
margin-bottom: 10px;
}
@media (min-width: 1200px) {
.img-left {
float: left;
margin-top: 10px;
margin-right: 20px;
}
}
.no-padding {
padding: 0;
}
.right {
float: right;
}
.img-right {
margin-bottom: 10px;
}
@media (min-width: 1200px) {
.img-right {
float: right;
margin-top: 10px;
margin-left: 20px;
}
}
.row-padded {
padding-top: 50px;
padding-bottom: 40px;
}
.row-padded-top {
padding-top: 50px;
}
.row-padded-top + .content-area {
padding-top: 10px;
}
.row-padding-bottom {
padding-bottom: 40px;
}
.margin-extra {
margin-bottom: 2em;
}
@media (min-width: 1200px) {
.margin-extra {
margin-top: 24px;
margin-bottom: 50px;
}
}
.txt-blue {
color: #7e9dd1;
}
.txt-lavender {
color: #8e80b6;
}
.txt-orange {
color: #eea632;
}
.txt-green {
color: #94a43d;
}
.txt-sky-blue {
color: #67c1eb;
}
.txt-teal {
color: #6fc6c4;
}
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
margin-bottom: 10px;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media (min-width: 1200px) {
.video-container.margin-extra {
margin-top: 24px;
margin-bottom: 50px;
}
}
/*
.videoContainer{
width:900px;
width:640px;
margin:0 auto;
height:480px;
position:relative;
text-align:center;
padding:0px;
}
#example_video_1{
width:640px;
height:480px;
text-align:center;
margin:0 auto;
display:none;
}
#videoPlayImg{ cursor:pointer; }
#lastFrame{ display:none; cursor:pointer; text-align:center; }
*/
/* { TOOLBAR } */
#site-toolbar .navbar-default {
background: #4d4d4f;
color: #ffffff;
}
#site-toolbar .navbar-default .container {
max-width: 1060px;
}
#site-toolbar .navbar {
margin-bottom: 0;
min-height: 28px;
}
#site-toolbar .navbar-default {
-webkit-box-shadow: none;
box-shadow: none;
}
#site-toolbar .navbar-default a {
color: #ffffff;
text-transform: uppercase;
font-size: 12px;
line-height: 1em;
font-weight: 300;
font-family: 'Signika', sans-serif;
}
#site-toolbar .navbar-default a:focus {
outline: 0;
}
#site-toolbar .nav-pills > li > a {
border-radius: 0;
padding: 8px 18px;
}
#site-toolbar .nav-pills > li > a:hover,
#site-toolbar .nav-pills > li > a:focus {
background-color: #333333;
}
/**************start ***************/
#site-header .nav-main .menu .sub-menu a {
padding-left: 16px !important;
padding-right: 16px !important;
}
#site-toolbar .nav-pills {
margin: 0;
}
#site-toolbar .nav-pills li {
vertical-align: middle;
text-align: left;
}
#site-toolbar .nav-pills > li:hover,
#site-header .navbar-nav > li > a:hover {
background-color: #eee;
}
#site-toolbar .nav-pills > li.btn-exit span,
#site-header .nav-main .menu a {
line-height: 20px;
text-shadow: none;
color: #777777;
position: relative;
display: block;
cursor: pointer;
padding: 14px 18px;
}
#site-toolbar .nav-pills > li.btn-exit span {
background-color: #f7f7f7;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
line-height: 18px;
padding: 15px;
text-transform: uppercase;
font-weight: 600;
}
#site-toolbar li.has-children .sub-menu li > a:hover {
background-color: #333;
}
#site-toolbar .sub-menu {
display: none;
}
#site-toolbar .nav-pills .sub-menu .container {
padding: 0;
text-align: center;
position: relative;
}
#site-toolbar .sub-menu li a {
font-size: 12px !important;
}
#site-toolbar .nav-pills .sub-menu a {
color: #ffffff;
background-color: #818385;
display: block;
padding: 10px 18px;
}
#site-toolbar .sub-menu ul {
list-style-type: none;
margin: 0;
padding: 0;
display: block;
}
.no-js #site-toolbar .sub-menu {
display: block;
}
/*#site-toolbar .nav-main .menu ul a {padding-left:30px;}
#site-toolbar .nav-main .menu ul a:hover {text-decoration:none;}
.menu a:focus {outline:0;}*/
#site-toolbar li:hover > .sub-menu {
display: block;
}
#site-toolbar .nav-pills .sub-menu a {
color: #ffffff;
background-color: #818385;
display: block;
padding: 10px 18px;
}
#site-toolbar .nav-pills li:hover > .sub-menu {
display: inline-block;
}
#site-toolbar .nav-pills .sub-menu {
display: none;
position: absolute;
width: 100%;
text-align: right;
background-color: #818385;
z-index: 2;
width: 150px;
}
#site-toolbar .nav-pills .sub-menu a {
color: #ffffff;
background-color: #818385;
padding-left: 18px;
}
#site-toolbar .nav-pills li:hover > .sub-menu {
z-index: 3;
}
#site-toolbar .nav-pills .sub-menu ul:after {
clear: both;
content: ' ';
display: table;
}
#site-toolbar .nav-pills .sub-menu li {
display: block;
border-top: #777 1px dotted;
}
#site-toolbar .nav-pills > li:hover {
background-color: #333;
}
#site-toolbar .nav-pills .sub-menu li a:hover {
text-decoration: none;
}
/*******************end ***********************/
ul#sitemap {
padding: 0;
list-style: none;
width: 100%;
}
ul#sitemap h4,
ul#sitemap h4 a {
font-size: 16px;
color: #000;
font-family: "Signika", sans-serif;
}
ul#sitemap h4 a {
font-size: 16px;
text-decoration: underline;
color: #000;
font-family: "Signika", sans-serif;
}
li.sitemap-col {
width: 50%;
float: left;
}
ul#sitemap li > ul {
padding: 0 25px;
list-style: none;
}
ul#sitemap ul li a {
font-size: 14px;
}
ul#sitemap ul h4 a,
ul#sitemap ul h4 {
font-size: 16px;
}
ul#sitemap ul ul {
padding-left: 26px;
}
ul#sitemap ul ul li {
margin-bottom: 0;
line-height: 1;
}
ul#sitemap ul ul li a {
font-size: 14px;
}
ul#sitemap ul ul ul {
padding-left: 30px;
}
@media (min-width: 768px) {
/* {toolbar } */
#site-toolbar .navbar-default .container {
width: auto;
}
}
/* { PRIMARY NAV } */
#site-header {
position: fixed;
top: 0;
z-index: 3;
width: 100%;
}
#site-header .navbar-default {
background: #f7f9fa;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
border-color: #f7f9fa;
}
#site-header .navbar-default .container {
max-width: 1062px;
position: relative;
}
#site-header .navbar-default .container .navbar-header {
text-align: center;
z-index: 1;
}
#site-header .navbar {
margin-bottom: 0;
}
#site-header .navbar > .container .navbar-brand {
float: none;
margin-left: 0;
padding: 14px 10px;
display: inline-block;
height: auto;
position: relative;
z-index: 1;
}
.lt-ie8 #site-header .navbar > .container .navbar-brand {
height: auto;
}
#site-header .navbar-default .navbar-collapse {
width: 240px;
z-index: 2;
position: fixed;
top: 0;
left: 0;
bottom: 0;
margin-right: 0;
margin-left: 0;
padding-left: 0;
padding-right: 0;
background-color: #f3f3f3;
overflow-y: auto;
}
#site-header .navbar-nav {
margin: 0;
}
#site-header .navbar-nav li {
vertical-align: middle;
text-align: left;
}
#site-header .navbar-nav > li {
height: 87px;
}
#site-header .navbar-nav > li:hover,
#site-header .navbar-nav > li > a:hover {
background-color: #eee;
}
#site-header .navbar-nav > li.btn-exit span,
#site-header .nav-main .menu a {
line-height: 20px;
text-shadow: none;
color: #777777;
position: relative;
display: block;
cursor: pointer;
padding: 14px 18px;
}
#site-header .navbar-nav > li.btn-exit span {
background-color: #f7f7f7;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
line-height: 18px;
padding: 15px;
text-transform: uppercase;
font-weight: 600;
}
#site-header .nav-main .menu .container {
padding: 0;
}
#site-header .nav-main .menu a {
border-top: 1px solid #e4e4e4;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
line-height: 18px;
padding: 15px;
background-color: #f3f3f3;
text-transform: uppercase;
font-weight: 600;
}
#site-header .nav-main .menu li li a {
border-top: 0;
padding-top: 12px;
padding-bottom: 12px;
}
#site-header .nav-main .menu .highlighted a {
background-color: #535454;
color: #f6ad3a;
}
#site-header .nav-main .menu a.active {
background-color: #f6ae3a;
}
#site-header .nav-main .menu .has-children a {
padding-right: 56px;
}
#site-header .nav-main .menu .has-children a.active {
color: #777777;
}
#site-header li.has-children .sub-menu li > a:hover {
background-color: #333;
}
#site-header .nav-main .menu .caret {
color: #f6ae3a;
border: 0;
width: 48px;
height: 48px;
background: transparent url('../img/icn-menu-indicator.png') 50% 50% no-repeat;
margin: 0;
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
#site-header .nav-main .menu .sub-menu {
display: none;
}
#site-header .sub-menu li a {
font-size: 12px !important;
}
#site-header .nav-main .menu .sub-menu ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.no-js #site-header .nav-main .menu .sub-menu {
display: block;
}
#site-header .nav-main .menu ul a {
padding-left: 30px;
}
#site-header .nav-main .menu ul a:hover {
text-decoration: none;
}
.menu a:focus {
outline: 0;
}
/** { MENU BUTTON } */
#site-header .navbar-default {
position: relative;
}
#site-header .navbar-default .navbar-toggle {
padding: 18px 12px;
margin: 0;
border: 0;
float: left;
position: absolute;
z-index: 2;
left: 0;
top: 0;
}
#site-header .navbar-default .navbar-toggle:hover,
#site-header .navbar-default .navbar-toggle:focus {
background-color: transparent;
}
#menu-button {
background: transparent url('../img/icn-menu.png') 0 0 no-repeat;
width: 42px;
height: 25px;
display: inline-block;
}
.lt-ie8 #menu-button {
display: inline;
zoom: 1;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
#menu-button {
background-image: url('../img/icn-menu@2x.png');
background-size: 42px 25px;
}
}
@media (max-width: 768px) {
#site-header .navbar-nav > li {
height: auto;
}
#site-header .navbar-brand img {
width: 159px;
height: 38px;
}
}
@media (min-width: 768px) and (max-width: 1200px) {
#site-header .navbar-nav > li {
height: auto;
}
}
@media (min-width: 768px) {
/* { header } */
#site-header .navbar-default {
border: 0;
}
#site-header .navbar-default .container {
width: auto;
}
#site-header .nav-main {
padding-top: 28px;
}
#site-header .navbar-default .navbar-collapse {
display: block !important;
height: auto !important;
text-align: center;
width: auto;
position: static;
margin-right: -15px;
margin-left: -15px;
padding-left: 15px;
padding-right: 15px;
overflow-y: visible !important;
background-color: transparent;
line-height: 0;
font-size: 0;
}
/* { menu } */
#header-menu > ul {
margin: 0 auto;
float: none !important;
display: inline-block;
}
.lt-ie8 #header-menu > ul {
display: inline;
zoom: 1;
}
#site-header .nav-main .menu > li {
position: static;
}
#site-header .navbar-nav > li {
display: inline-block;
float: none;
}
.lt-ie8 #site-header .navbar-nav > li {
display: inline;
zoom: 1;
}
#site-header .nav-main .menu a {
padding-left: 8px;
padding-right: 8px;
background-color: #f7f9fa;
border-top: 0;
color: #818385;
font-size: 15px;
line-height: 1em;
font-weight: 300;
font-family: 'Signika', sans-serif;
transition: color 0.2s ease-in, background-color 0.2s ease-in;
transition: background-image 0.3s ease-in;
}
#site-header .nav-main .menu > li.has-children.viewing > a {
background: url('../img/bg-nav-sub-active.png') 50% 100% no-repeat;
}
#site-header .nav-main .menu:hover > li.has-children.viewing > a {
background: none;
}
#site-header .nav-main .menu > li.has-children:hover > a,
#site-header .nav-main .menu > li.has-children.viewing:hover > a {
background: url('../img/bg-nav-sub-active.png') 50% 100% no-repeat;
}
#site-header .nav-main .menu > li.viewing > .sub-menu,
#site-header .nav-main .menu > li:hover > .sub-menu {
display: inline-block;
}
#site-header .nav-main .menu a:hover,
#site-header .nav-main .menu a:focus {
color: #333333;
}
#site-header .nav-main .menu .highlighted a {
color: #818385;
background-color: #f7f9fa;
}
#site-header .nav-main .menu a.active {
background-color: #f7f9fa;
}
#site-header .nav-main .menu .has-children a {
padding-right: 8px;
}
#site-header .nav-main .menu .caret {
display: none;
}
#site-header .nav-main .menu .sub-menu {
text-align: left;
position: absolute;
top: 100%;
left: 0;
width: 220px;
}
#site-header .nav-main .menu > li:last-child > .sub-menu {
left: auto;
right: 0;
}
#site-header .nav-main .menu li:hover > .sub-menu {
display: block;
}
#site-header .nav-main .menu .sub-menu a {
color: #ffffff;
background-color: transparent;
padding-left: 18px;
}
#site-header .navbar-default .container {
position: static;
line-height: 0;
}
#site-header .nav-main .menu .sub-menu {
display: none;
position: absolute;
width: 100%;
text-align: right;
background-color: #818385;
z-index: 2;
}
#site-header .nav-main .menu li:hover > .sub-menu {
z-index: 3;
}
#site-header .nav-main .menu .sub-menu .container {
padding: 0 15px;
text-align: center;
position: relative;
}
#site-header .nav-main .menu .sub-menu ul {
display: inline-block;
}
#site-header .nav-main .menu .sub-menu ul:after {
clear: both;
content: ' ';
display: table;
}
#site-header .nav-main .menu .sub-menu li {
display: inline-block;
}
.lt-ie8 #site-header .nav-main .menu .sub-menu li {
display: inline;
zoom: 1;
}
}
@media (min-width: 900px) {
/* { header } */
#site-header .nav-main .menu a {
padding-left: 18px;
padding-right: 18px;
}
}
@media (min-width: 1200px) {
/* { header } */
#site-header .navbar-default .container {
text-align: left;
}
#site-header .navbar-default .container .navbar-header {
text-align: left;
}
#site-header .navbar > .container .navbar-brand {
padding-top: 17px;
padding-bottom: 23px;
float: left;
height: 84px;
}
/*#site-header .nav-main .menu .sub-menu ul {float:right;}*/
#site-header .navbar-nav.navbar-right:last-child {
margin: 0;
float: right !important;
display: block;
}
#site-header .nav-main .menu a {
padding: 36px 10px;
}
#site-header .nav-main .menu .has-children a {
padding-right: 18px;
}
}
/* { HERO } */
#page-hero {
position: relative;
z-index: 1;
/*padding-top:68px;*/
display: block;
height: auto;
overflow: hidden;
}
#page-hero .container {
width: 100%;
padding: 0;
margin: 0;
position: relative;
z-index: 1;
}
#page-hero .jumbotron {
padding: 0;
margin: 0;
text-align: center;
background-color: #ffffff;
}
#page-hero .jumbotron > .container {
margin: 0 auto;
}
#page-hero .cycle-slide {
width: 100%;
}
#page-hero .cycle-slideshow div a {
display: block;
}
#page-hero .cycle-slideshow img {
width: 100%;
height: auto;
}
#page-hero .cycle-pager {
text-align: center;
width: 100%;
z-index: 500;
position: absolute;
bottom: 0;
overflow: hidden;
display: none;
}
#page-hero .cycle-pager span {
font-family: arial;
font-size: 50px;
width: 16px;
height: 16px;
display: inline-block;
color: #fff;
cursor: pointer;
margin-right: 10px;
}
#page-hero .cycle-pager span.cycle-pager-active {
color: #e8a73a;
}
#page-hero .cycle-pager > * {
cursor: pointer;
}
@media (min-width: 500px) {
#page-hero .cycle-pager {
display: block;
}
}
/* { CONTENT } */
/* { CONTENT - generic - page heading } */
.content-internal-main .content-area {
padding: 50px 25px 55px;
}
.content-internal-main .content-area h1 {
margin: 0;
}
.content-internal-main .content-area h2 {
font-weight: 300;
font-size: 1.0952em;
line-height: 1.25em;
margin: 15px 0 0;
}
.content-internal-main h2.large {
font-size: 1.1904em;
}
.content-internal-main h2 br {
display: none;
}
@media (min-width: 1200px) {
.content-internal-main h2 br {
display: block;
}
}
.content-internal-main p {
font-size: 1em;
line-height: 1.4;
font-weight: 300;
margin: 20px 0 0;
}
.content-internal-main p br {
display: none;
}
@media (min-width: 1200px) {
.content-internal-main p br {
display: block;
}
}
/* { CONTENT - generic - call to action } */
.content-call-to-action {
font-size: 1.3333em;
}
/* based off 21px parent */
.content-call-to-action .content-area {
padding: 60px 0 40px;
}
.content-call-to-action h2 {
font-size: 1.3214em;
margin: 0 0 14px;
}
.content-call-to-action p {
margin: 0 0 1em;
}
.content-call-to-action .btn-lg {
font-size: 0.7857em;
}
/* { CONTENT - generic - news articles } */
.content-news-item h3 {
font-size: 1em;
font-weight: 700;
margin: 0;
font-family: 'HelveticaNeueLTStd-Lt', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
line-height: 1.5;
}
.content-news-item .date {
padding: 5px 0;
}
.content-news-item p {
padding-top: 10px;
}
/* { CONTENT - generic - read more } */
.link-read-more {
text-align: center;
font-weight: 600;
font-family: 'Signika', sans-serif;
font-size: 1.2857em;
}
p + .link-read-more {
margin-top: 40px;
}
.link-read-more a {
color: #130c0e;
display: inline-block;
vertical-align: middle;
}
.link-read-more img {
margin-top: 14px;
}
.link-read-more br {
display: block;
}
.dl {
background: url(../img/social_media.png) no-repeat;
background-size: 60px 210px;
width: 60px;
height: 60px;
background-position: 0 -150px;
display: inline-block;
vertical-align: middle;
margin-left: 10px;
}
@media (min-width: 768px) {
.link-read-more br {
display: none;
}
.link-read-more img {
margin-left: 14px;
margin-top: 0;
}
}
/* { CONTENT - homepage } */
.content-homepage-featured {
border-bottom: 2px solid #f0f0f0;
}
.content-homepage-featured .container {
padding-top: 40px;
}
.content-homepage-featured .container header {
margin-bottom: 1em;
}
@media (min-width: 768px) {
.content-homepage-featured .container header {
margin-bottom: 2em;
}
}
@media (min-width: 1200px) {
.content-homepage-featured .container header {
margin-bottom: 100px;
}
}
.content-homepage-featured .content-image-grid {
font-size: 0.8751em;
padding-bottom: 40px;
}
.content-homepage-featured .content-image-grid h3 {
font-size: 1.2222em;
}
@media (min-width: 1200px) {
/* { content } */
.content-featured .container header {
margin-bottom: 100px;
}
.content-featured .content-image-grid {
padding-left: 10px;
padding-right: 10px;
}
}
.content-homepage.content-image-left .container {
padding-top: 50px;
padding-bottom: 24px;
}
.content-homepage.content-image-left .text {
padding-top: 20px;
}
.content-homepage.content-image-left .text h2 {
line-height: 1em;
}
@media (min-width: 1200px) {
/* { content } */
.content-image-left .content-image {
padding-left: 114px;
}
.content-image-left .content-text {
padding-left: 50px;
padding-right: 70px;
}
}
.content-homepage-latest-news {
font-size: 0.8571em;
line-height: 1.2em;
}
/* base off 18px*/
.content-homepage-latest-news h2 {
font-size: 1.5em;
}
.content-homepage-latest-news .container {
padding-top: 50px;
padding-bottom: 35px;
}
.content-homepage-latest-news .img-responsive {
margin: 0 auto;
}
.content-homepage-news-feed .content-news-item {
margin-bottom: 24px;
}
.content-homepage-news-feed .content-news-item.last {
margin-bottom: 0;
}
.content-homepage-latest-news .content-news-item .content-text {
padding-left: 15px;
}
.content-homepage-latest-news .content-news-item .date {
margin: 0;
text-transform: uppercase;
font-weight: 300;
}
@media (min-width: 1200px) {
/* { content } */
.content-latest-news .content-center {
text-align: right;
margin-top: 0;
}
.content-latest-news .img-responsive {
margin: 0;
}
}
.content-homepage-our-clients {
font-size: 1em;
line-height: 1.2em;
}
.content-homepage-our-clients .container {
padding-top: 55px;
padding-bottom: 30px;
}
.content-homepage-our-clients .text {
padding-right: 30px;
}
.content-homepage-our-clients .content-images {
padding-bottom: 1em;
}
.content-homepage-our-clients .image {
text-align: center;
padding: 0 0 1em;
}
.content-homepage-our-clients .images > .row:first-child {
padding-top: 20px;
padding-bottom: 40px;
}
.content-homepage-our-clients .image img {
vertical-align: top;
}
.content-images img {
width: 100%;
}
@media (min-width: 768px) {
.content-homepage-our-clients .image {
padding: 20px 0 40px;
}
}
@media (min-width: 1200px) {
.content-homepage-our-clients .content-center {
text-align: right;
}
.content-homepage-our-clients .image {
text-align: center;
}
.content-homepage-our-clients .image.first {
padding-left: 15px;
text-align: left;
}
.content-homepage-our-clients .image.last {
padding-right: 15px;
text-align: right;
}
}
/* { CONTENT - news & articles } */
.content-news .container {
max-width: none;
width: 100%;
padding: 0;
}
.content-news .container .row {
padding: 0;
width: auto;
margin-left: 0;
margin-right: 0;
}
.content-news .side-menu {
background-color: #f3f3f3;
float: left;
width: 100%;
}
.content-news .side-menu ul.menu {
list-style-type: none;
margin: 0;
padding: 0;
float: right;
width: 100%;
border-top: 2px solid #d5d5d5;
}
.content-news .side-menu .menu li {
margin: 0;
padding: 0;
float: right;
width: 100%;
border-bottom: 2px solid #d5d5d5;
}
.content-news .side-menu .menu li.viewing {
background-color: #e5e5e5;
}
.content-news .side-menu .menu a {
display: block;
float: left;
width: 100%;
background: transparent url('../img/icn-raquo.png') 15px 50% no-repeat;
color: #231f20;
font-size: 0.9048em;
font-weight: 400;
padding: 35px 35px 35px 65px;
}
.content-news .side-menu .pagination {
margin: 0;
padding: 45px 15px;
display: block;
float: left;
width: 100%;
}
.content-news .side-menu .pagination ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
.content-news .side-menu .pagination li {
padding: 0 2px;
margin: 0;
display: inline-block;
vertical-align: bottom;
}
.content-news .side-menu .pagination a {
display: block;
}
.pagination a.active {
text-decoration: underline;
}
.content-news .content-wrapper {
float: left;
width: 100%;
}
.content-news .content-wrapper .content-area {
padding-top: 40px;
}
@media (max-width: 767px) {
.content-even-height {
min-height: 0 !important;
}
}
@media (min-width: 768px) {
.content-news .side-menu {
float: right;
width: 33.33%;
background: #ffffff url('../img/bg-gradient-grey-horizontal.jpg') 100% 0 repeat-y;
float: left;
}
.content-news .side-menu ul.menu {
border-top: 0;
padding-top: 20px;
}
.content-news .side-menu ul.menu li {
background: #ffffff url('../img/bg-gradient-grey-horizontal.jpg') 100% 0 repeat-y;
}
.content-news .side-menu ul.menu li.viewing {
background: #e5e5e5 url('../img/bg-gradient-grey-dark-horizontal.jpg') 100% 0 repeat-y;
}
.content-news .side-menu .menu a {
float: right;
max-width: 315px;
background-position: 15px 49px;
min-height: 140px;
padding: 40px 35px 30px 65px;
}
.content-news .side-menu .pagination {
float: right;
}
.content-news .side-menu .pagination {
max-width: 315px;
}
.content-news .side-menu .pagination ul {
text-align: left;
}
.content-news .content-wrapper {
float: right;
width: 66.67%;
}
.content-news .content-wrapper .content-area {
max-width: 600px;
padding-left: 55px;
padding-top: 60px;
}
}
@media (min-width: 1200px) {
.content-news .side-menu {
width: 39%;
}
.content-news .content-wrapper {
width: 61%;
}
.content-news .content-wrapper .content-area h2 {
margin-bottom: 20px;
}
.content-news .content-wrapper .content-area p {
margin: 0 0 2em;
}
}
/* { CONTENT - contact us } */
.content-contact.bg-white {
padding-top: 60px;
padding-bottom: 60px;
}
.content-contact img,
.content-contact iframe {
box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
}
.content-contact.bg-grey-light {
padding-top: 60px;
padding-bottom: 50px;
}
.content-contact form {
margin: 0;
max-width: 720px;
margin: 0 auto;
}
.content-contact .form-label {
display: block;
margin-right: auto;
margin-left: 3px;
font-family: 'Signika', sans-serif;
font-weight: 300;
font-size: 1em;
}
.content-contact .form-field {
width: 100%;
margin: 0;
height: 40px;
border: 2px solid #dbdbdb;
border-radius: 10px;
padding: 3px 15px;
}
.content-contact textarea.form-field {
min-height: 105px;
}
.content-contact form .btn-primary {
/*font-size:1.0476em;*/
width: 100%;
/*margin-bottom:14px;*/
background-color: #e8a73a;
border-color: #e8a73a;
background-image: none;
filter: none;
webkit-box-shadow: none;
box-shadow: none;
text-shadow: none;
font-family: 'didot', serif;
font-weight: 400;
border-radius: 6px;
font-size: 18px;
padding: 11px 17px;
text-transform: lowercase;
}
@media (min-width: 768px) {
.content-contact form .btn-primary {
margin-bottom: 0;
}
.content-contact form p {
margin: 0 0 1em;
}
}
@media (min-width: 1200px) {
.content-contact form .row {
padding-right: 20px;
padding-left: 20px;
margin-right: -20px;
margin-left: -20px;
}
.content-contact form .row .col-lg-6 {
padding-left: 20px;
padding-right: 20px;
}
}
/* { CONTENT - enterprise solutions } */
.content-enterprise-solutions .content-area {
padding-bottom: 40px;
}
/* { CONTENT - campaign management } */
@media (min-width: 1200px) {
.content-campaign-management .container {
max-width: 960px;
}
.content-campaign-management .image {
width: 570px;
}
.content-campaign-management .text {
width: 380px;
}
}
/* { CONTENT - online booking } */
@media (min-width: 1200px) {
.content-online-booking p + .link-read-more {
margin-top: 55px;
}
}
/* { CONTENT - mobile concierge } */
@media (min-width: 1200px) {
.content-mobile-concierge .row-padded-top + .content-area {
padding-top: 30px;
}
}
/* { CONTENT - clients } */
.content-clients .image {
text-align: center;
padding-bottom: 30px;
}
@media (min-width: 768px) {
.content-clients .image {
text-align: left;
}
}
@media (min-width: 1200px) {
.content-clients .image {
padding-bottom: 0;
}
}
/* { CONTENT - our team } */
.content-profile {
color: #5e5e5e;
}
.content-profile .image {
vertical-align: bottom;
padding-top: 70px;
padding-left: 15px;
padding-right: 15px;
text-align: center;
}
.content-profile .text {
padding-left: 15px;
padding-right: 15px;
padding-top: 60px;
}
@media (min-width: 1200px) {
.content-profile .text {
padding-top: 135px;
}
}
.content-profile .text h2 {
text-transform: uppercase;
margin: 0;
color: #231f20;
}
.content-profile .text h3 {
margin: 0 0 15px;
font-weight: 600;
font-size: 1.2857em;
line-height: 1.1em;
}
@media (min-width: 1200px) {
.content-profile .image {
float: left;
width: 324px;
padding-left: 0;
padding-right: 0;
}
.content-profile.bg-white .image {
text-align: left;
}
.content-profile.bg-grey-light .image {
text-align: right;
float: right;
}
.content-profile .text {
float: left;
width: 596px;
}
.content-profile.bg-white .text {
float: right;
}
}
/* { CONTENT - our soul } */
@media (min-width: 1200px) {
.content-our-soul .text {
width: 640px;
}
.content-our-soul .image {
width: 280px;
}
}
/* { CONTENT - our values } */
.content-our-values .content-area h2 {
margin: 0;
font-size: 1.4762em;
}
.content-our-values .content-area p {
margin: 0 0 25px;
}
.content-our-values .content-area hr {
background-color: #6f6d6e;
width: 45px;
height: 1px;
border: 0;
margin: 0 auto 25px;
padding: 0;
}
/* { FOOTER } */
#site-footer .container {
max-width: 920px;
padding-top: 10px;
padding-bottom: 10px;
}
#site-footer hr {
margin: 0;
padding: 0;
border-top: 1px solid #b1b1b2;
border-bottom: 1px solid #f4f4f4;
border-left: 0;
border-right: 0;
height: 0;
line-height: 0;
font-size: 0;
}
#site-footer .social {
font-family: didot,serif;
font-size: 21px;
line-height: 1em;
}
#site-footer .social span {
display: block;
margin-bottom: 8px;
}
#site-footer .social ul {
display: block;
list-style-type: none;
margin: 0 0 8px;
padding: 0;
}
#site-footer .social ul:after {
display: table;
content: ' ';
clear: both;
}
#site-footer .social li {
margin: 0 0 0 3px;
padding: 0;
float: left;
}
#site-footer .social li:first-child {
margin-left: 0;
}
#site-footer .social a {
display: block;
width: 30px;
height: 30px;
background-position: 0 0;
background-repeat: no-repeat;
}
#site-footer .follow {
background: url(../img/social_media.png) no-repeat;
background-size: 60px 210px;
width: 30px;
height: 30px;
}
#site-footer li.facebook {
background-position: 0 0;
}
#site-footer li.twitter {
background-position: 0 -30px;
}
#site-footer li.linked-in {
background-position: 0 -90px;
}
#site-footer li.google-plus {
background-position: 0 -60px;
}
#site-footer li.youtube {
background-position: 0 -120px;
}
#site-footer .social li a span {
display: none;
}
#site-footer .contact {
font-size: 12px;
line-height: 1em;
font-family: 'Signika', sans-serif;
font-weight: 300;
padding-top: 10px;
padding-bottom: 5px;
}
#site-footer .contact p {
margin: 0 0 8px;
}
#site-footer .quicklinks {
font-size: 12px;
line-height: 1em;
font-family: 'Signika', sans-serif;
font-weight: 300;
padding-top: 7px;
}
#site-footer .quicklinks ul {
list-style-type: none;
margin: 0 0 8px;
padding: 0;
}
#site-footer .quicklinks ul:after {
display: table;
clear: both;
content: ' ';
}
#site-footer .quicklinks li {
margin: 0 0 0 5px;
float: left;
padding: 0;
}
#site-footer .quicklinks li:first-child {
margin-left: 0;
}
#site-footer .copyright {
font-size: 12px;
line-height: 1em;
font-family: 'Signika', sans-serif;
font-weight: 300;
}
#site-footer .copyright p {
margin: 0;
}
@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5ddpx) {
#site-footer .follow {
background: url(../img/social_media@2x.png) no-repeat;
background-size: 30px 150px;
width: 30px;
height: 30px;
}
#site-footer li.facebook {
background-position: 0 0;
}
#site-footer li.twitter {
background-position: 0 -30px;
}
#site-footer li.linked-in {
background-position: 0 -90px;
}
#site-footer li.google-plus {
background-position: 0 -60px;
}
#site-footer li.youtube {
background-position: 0 -120px;
}
}
@media (min-width: 360px) {
/* { footer } */
#site-footer .social span {
padding: 0;
margin-bottom: 8px;
}
}
@media (min-width: 768px) {
/* { footer } */
#site-footer .social span {
display: inline-block;
padding: 20px 12px 20px 0;
vertical-align: middle;
margin-bottom: 0;
}
.lt-ie8 #site-footer .social span {
display: inline;
zoom: 1;
}
.lt-ie8 #site-footer .social li a span {
display: none;
}
#site-footer .social ul {
display: inline-block;
vertical-align: middle;
padding: 15px 0;
margin-bottom: 0;
}
.lt-ie8 #site-footer .social ul {
display: inline;
zoom: 1;
}
#site-footer .contact p {
margin-left: 5px;
}
#site-footer .quicklinks ul {
margin-bottom: 0;
padding-bottom: 5px;
}
#site-footer .copyright {
padding-top: 7px;
}
#site-footer .copyright p {
margin-left: 5px;
margin-bottom: 8px;
}
}
#banner-pagenotfound {
display: table;
}
.banner-pagenotfound-img {
float: left;
width: 60%;
}
.banner-pagenotfound-txt {
width: 40%;
display: table-cell;
vertical-align: middle;
}
p#options {
margin-bottom: 50px;
font-weight: 600;
font-family: "Signika", sans-serif;
}
/*************** CAROUSEL *****************************/
#page-hero {
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #e0e0e0));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* IE10+ */
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* W3C */
overflow: hidden;
margin-top: -15px;
}
#page-hero .wrapper {
margin: 0 auto;
font-size: 42px;
}
#mySwipe .row {
width: 1140px;
margin: 0 auto;
text-align: left;
}
#mySwipe .text {
font-family: "Signika", sans-serif;
}
#mySwipe h2 {
font-size: 48px;
line-height: 1.08;
}
#mySwipe .text p {
font-family: "Signika", sans-serif !important;
font-size: 42px;
font-weight: 300;
line-height: 1.1;
}
#mySwipe .row .text {
padding-left: 57px;
padding-right: 120px;
}
/* Swipe 2 required styles */
.swipe {
overflow: hidden;
visibility: hidden;
position: relative;
}
.swipe-wrap {
overflow: hidden;
position: relative;
}
.swipe-wrap > div {
float: left;
width: 100%;
position: relative;
}
/* END required styles */
.slick-slider {
position: relative;
overflow: hidden;
}
.slick-track {
position: relative;
}
.slick-list {
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.testimonials {
border-top: #d4d4d4 1px solid;
padding: 30px 10%;
}
.slick-dots {
margin: 0;
padding: 0;
list-style: none;
}
.slick-dots li {
display: inline-block;
}
.slick-dots button {
background: #b2b2b2;
color: #b2b2b2;
width: 15px;
height: 15px;
overflow: hidden;
border: 0;
border-radius: 50%;
margin: 0 5px;
}
.slick-dots .slick-active button {
background: #e8a73a;
color: #e8a73a;
}
.testimonials blockquote {
font-family: "Signika", sans-serif !important;
font-style: italic;
color: #777;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-slide {
float: left;
outline: none;
}
#mySwipe .swipe-wrap .wrapper {
display: table;
}
#mySwipe .swipe-wrap .image,
#mySwipe .swipe-wrap .text {
display: table-cell;
float: none;
}
#mySwipe .swipe-wrap .text {
height: 400px;
vertical-align: middle;
width: 48%;
}
#mySwipe .swipe-wrap .image {
width: 52%;
vertical-align: middle;
}
#mySwipe .row .image img {
float: right;
}
.uppercase {
text-transform: uppercase;
}
.txt-orange {
color: #ec7815;
}
.txt-grey {
color: #878787;
}
.bigger {
font-size: 86px !important;
}
.medium {
font-size: 54px !important;
}
#page-hero .banner-single .text {
position: absolute;
text-align: center;
width: 100%;
top: 90px;
}
.blue-green {
color: #29b3b3;
}
@media (max-width: 1732px) {
#mySwipe .row .image img {
width: 100%;
}
#mySwipe .row .text {
padding-right: 0;
}
}
@media (max-width: 1646px) {
.bigger {
font-size: 74px !important;
}
}
@media (max-width: 1462px) {
.bigger {
font-size: 64px !important;
}
}
@media (max-width: 1310px) {
.bigger {
font-size: 60px !important;
}
}
@media (max-width: 1169px) {
#mySwipe .row .text {
padding-right: 0;
/*padding-top:80px;*/
}
.bigger {
font-size: 74px !important;
}
}
@media (max-width: 1038px) {
#mySwipe .swipe-wrap .text {
/*padding-top:50px;*/
padding-right: 0;
}
#mySwipe .row .image img {
width: 100%;
}
.bigger {
font-size: 55px !important;
}
}
@media (max-width: 1199px) {
#page-hero {
/*padding-top:150px;*/
}
#mySwipe .row .text {
padding-right: 0;
}
#page-hero h2 {
font-size: 27px !important;
line-height: 1.2;
}
.bigger {
font-size: 42px !important;
}
.medium {
font-size: 38px !important;
}
#mySwipe .swipe-wrap .text p,
#mySwipe .swipe-wrap ul li {
font-size: 22px !important;
}
#page-hero .banner-single .text {
top: 60px;
}
}
@media (max-width: 1024px) {
#mySwipe .swipe-wrap .text {
/*padding-top:40px;*/
padding-left: 0;
padding-right: 0;
}
#page-hero h2 {
font-size: 27px !important;
line-height: 1.2;
}
.bigger {
font-size: 42px !important;
}
.medium {
font-size: 38px !important;
}
#mySwipe .swipe-wrap .text p,
#mySwipe .swipe-wrap ul li {
font-size: 22px !important;
}
.banner-single .text {
top: 40px !important;
}
}
@media (max-width: 767px) {
#page-hero {
height: auto;
}
.testimonials {
padding-left: 5%;
padding-right: 5%;
}
ul#sitemap li.sitemap-col {
width: 100%;
float: none;
}
ul#sitemap ul li h4 {
width: 100%;
}
#mySwipe .swipe-wrap .wrapper {
display: block;
}
#mySwipe .swipe-wrap .image {
display: block;
float: left;
width: 100%;
}
#mySwipe .swipe-wrap .text {
padding-top: 25px !important;
padding-bottom: 1em;
padding-left: 15px;
padding-right: 15px;
height: auto;
display: block;
float: left;
clear: both;
width: 100%;
}
#mySwipe .swipe-wrap .text p,
#mySwipe .swipe-wrap ul li {
font-size: 19px;
font-weight: 300;
padding-top: 0;
}
#page-hero h2 {
font-size: 23px !important;
}
.bigger {
font-size: 48px !important;
}
.banner-single .text {
top: 40px !important;
}
}
@media (max-width: 600px) {
.banner-single .text {
top: 18px !important;
left: 3px;
}
#page-hero .banner-single h2.medium {
font-size: 18px !important;
}
}
.epic-banner {
position: relative;
display: block;
width: 100%;
height: 300px;
overflow: hidden;
background-color: #ccc;
}
.epic-banner > ul {
display: block;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
list-style-type: none;
}
.epic-banner > ul > li {
position: absolute;
width: 100%;
margin: 0;
bottom: 0;
left: -100%;
font-size: 0;
}
.epic-banner > ul > li.active {
z-index: 1;
}
.epic-banner > ul > li img,
.epic-banner > ul > li video {
max-width: 100%;
height: auto;
margin: 0 auto;
width: 100%;
}
.epic-banner > ul > li > video {
position: relative !important;
}
.epic-banner > ul > li > .eb-mobile {
display: none;
}
.epic-banner > ul > li > .eb-slogan {
position: absolute;
width: 100%;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont {
display: block;
margin: 30px 90px;
padding: 15px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h1 {
font-size: 68px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h2 {
font-size: 58px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h3 {
font-size: 48px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h1,
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h2,
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h3 {
margin: 0;
padding: 0 0 15px 0;
color: #202020;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h1 a,
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h2 a,
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h3 a {
text-decoration: none;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont .eb-summary {
display: inline-block;
margin: 0;
padding: 0 0 15px 0;
color: #202020;
font-size: 26px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont .eb-summary > ul > li {
font-size: 30px;
text-align: left;
}
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont h1,
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont h2,
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont h3 {
color: #ffffff;
}
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont .eb-summary li,
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont .eb-summary p,
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont .eb-summary a {
color: #ffffff;
}
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont h1,
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont h2,
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont h3 {
text-shadow: 0 5px 40px #ffffff;
}
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont .eb-summary li,
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont .eb-summary p,
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont .eb-summary a {
text-shadow: 0 2px 30px #ffffff;
}
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont h1,
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont h2,
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont h3 {
text-shadow: 0 5px 40px #000000;
}
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont .eb-summary li,
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont .eb-summary p,
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont .eb-summary a {
text-shadow: 0 2px 30px #000000;
}
.epic-banner > ul > li > .eb-slogan .text-orange {
color: #ec7815;
}
.epic-banner > ul > li > .eb-slogan.position-top {
top: 0;
}
.epic-banner > ul > li > .eb-slogan.position-middle {
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
}
.epic-banner > ul > li > .eb-slogan.position-bottom {
bottom: 0;
}
.epic-banner > ul > li > .eb-slogan.position-left {
text-align: left;
}
.epic-banner > ul > li > .eb-slogan.position-center {
text-align: center;
}
.epic-banner > ul > li > .eb-slogan.position-right {
text-align: right;
}
.epic-banner > ul > li > .eb-slogan.position-right .eb-slogan-cont .eb-summary ul {
float: right;
}
.epic-banner .eb-navi-cont {
display: block;
width: 100%;
}
.epic-banner .eb-navi-cont .eb-next,
.epic-banner .eb-navi-cont .eb-prev {
position: absolute;
display: block;
width: 50px;
height: 50px;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
cursor: pointer;
text-align: center;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #e8a73a;
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
z-index: 2;
-webkit-transition: all 0.3s ease-out 0.3s;
-moz-transition: all 0.3s ease-out 0.3s;
-o-transition: all 0.3s ease-out 0.3s;
transition: all 0.3s ease-out 0.3s;
}
.epic-banner .eb-navi-cont .eb-next:before,
.epic-banner .eb-navi-cont .eb-prev:before {
display: block;
content: " ";
color: #ffffff;
font-family: "FontAwesome";
font-size: 32px;
line-height: 50px;
}
.epic-banner .eb-navi-cont .eb-next {
right: -50px;
}
.epic-banner .eb-navi-cont .eb-next:before {
content: "\f105";
}
.epic-banner .eb-navi-cont .eb-prev {
left: -50px;
}
.epic-banner .eb-navi-cont .eb-prev:before {
content: "\f104";
}
.epic-banner .eb-navi-cont .eb-pbar {
position: absolute;
width: 0%;
height: 2px;
top: 0;
background-color: rgba(128, 0, 0, 0.3);
z-index: 2;
}
.epic-banner .eb-navi-cont .eb-pagi {
position: absolute;
display: block;
padding: 10px;
bottom: 10px;
left: 50%;
opacity: 0;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transition: all 0.3s ease-out 0.3s;
-moz-transition: all 0.3s ease-out 0.3s;
-ms-transition: all 0.3s ease-out 0.3s;
-o-transition: all 0.3s ease-out 0.3s;
z-index: 2;
}
.epic-banner .eb-navi-cont .eb-pagi span {
display: block;
width: 10px;
height: 10px;
margin-right: 10px;
float: left;
cursor: pointer;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
background-color: #ffffff;
}
.epic-banner .eb-navi-cont .eb-pagi span:hover,
.epic-banner .eb-navi-cont .eb-pagi span.selected {
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
background-color: #e8a73a;
}
.epic-banner:hover .eb-navi-cont .eb-pagi,
.epic-banner.show_navi .eb-navi-cont .eb-pagi {
opacity: 1;
}
.epic-banner:hover .eb-navi-cont .eb-next,
.epic-banner.show_navi .eb-navi-cont .eb-next {
right: 30px;
}
.epic-banner:hover .eb-navi-cont .eb-prev,
.epic-banner.show_navi .eb-navi-cont .eb-prev {
left: 30px;
}
@media (max-width: 1199px) {
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h1 {
font-size: 46px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h2 {
font-size: 34px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h3 {
font-size: 26px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary p,
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary a,
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary ul li {
font-size: 18px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-cta a.btn {
font-size: 18px !important;
padding: 5px 15px !important;
border-radius: 6px !important;
}
}
@media (max-width: 768px) {
.epic-banner > ul > li .eb-slogan {
width: 100% !important;
top: 50% !important;
left: 50% !important;
bottom: auto !important;
right: auto !important;
-webkit-transform: translate(-50%, -50%) !important;
-moz-transform: translate(-50%, -50%) !important;
-ms-transform: translate(-50%, -50%) !important;
-o-transform: translate(-50%, -50%) !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont {
margin: 10px 60px;
padding: 15px;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h1 {
font-size: 34px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h2 {
font-size: 26px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h3 {
font-size: 18px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary {
display: none !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-cta a.btn {
font-size: 18px !important;
padding: 5px 15px !important;
border-radius: 6px !important;
}
.epic-banner > ul > li .eb-mobile {
display: block !important;
}
.epic-banner > ul > li .eb-screen {
display: none !important;
}
.epic-banner .eb-navi-cont .eb-next,
.epic-banner .eb-navi-cont .eb-prev {
display: none !important;
}
}
@media (max-width: 480px) {
.epic-banner > ul > li .eb-slogan .eb-slogan-cont {
margin: 0px 0px;
padding: 15px;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h1 {
font-size: 46px !important;
text-align: center;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h2 {
font-size: 34px !important;
text-align: center;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h3 {
font-size: 26px !important;
text-align: center;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary {
display: none !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-cta {
font-size: 18px !important;
text-align: center;
}
.epic-banner > ul > li .eb-mobile {
display: block !important;
}
.epic-banner > ul > li .eb-screen {
display: none !important;
}
.epic-banner .eb-navi-cont .eb-next,
.epic-banner .eb-navi-cont .eb-prev {
display: none !important;
}
}
.emailer-box {
display: block;
width: 100%;
background-color: #eea632;
}
.emailer-box:before,
.emailer-box:after {
display: table;
content: " ";
}
.emailer-box:after {
clear: both;
}
.emailer-box .emb-cont {
position: relative;
display: block;
float: right;
}
.emailer-box .emb-cont p {
display: block;
padding: 0 30px;
margin: 0;
float: left;
color: #202020;
font-size: 24px;
line-height: 48px;
white-space: nowrap;
}
.emailer-box .emb-cont input[type=text] {
display: block;
height: 48px;
padding: 0 15px;
float: left;
color: #202020;
font-size: 18px;
border: none;
outline: none;
background-color: #f5f5f5;
}
.emailer-box .emb-cont .emb-submit {
display: block;
width: 48px;
height: 48px;
float: left;
border: none;
color: #ffffff;
background-color: #808080;
}
.emailer-box .emb-cont .emb-submit:hover {
background-color: #454545;
}
.emailer-box .fielderror-msg {
position: absolute;
bottom: 100%;
left: 0;
width: 100%;
padding: 10px 48px 10px 30px;
background-color: #f5f5f5;
cursor: pointer;
}
.emailer-box .fielderror-msg.error {
background-color: #e97868 !important;
}
.emailer-box .fielderror-msg.error:before {
position: absolute;
display: block;
width: 48px;
height: 48px;
content: "\f00d";
top: 0;
right: 0;
color: #fff;
font-family: FontAwesome;
text-align: center;
line-height: 48px;
}
.emailer-box .fielderror-msg .fielderror-text {
color: #303030;
}
.emailer-box .fielderror-msg.error .fielderror-text {
color: #fff !important;
}
@media (max-width: 768px) {
.emailer-box .emb-cont p {
padding-left: 0;
}
.emailer-box .emb-cont input[type=text] {
padding: 0 63px 0 15px;
width: 100%;
}
.emailer-box .emb-cont button {
position: absolute;
top: 48px;
right: 0;
}
}
.mc-checked-list {
list-style-type: none;
padding-left: 1em;
}
.mc-checked-list li {
position: relative;
padding-left: 1.5em;
}
.mc-checked-list li:before {
position: absolute;
display: block;
content: "\f00c";
top: 0;
left: 0;
font-family: FontAwesome;
}
.partners-logo-bha {
display: inline-block;
width: 270px;
height: 80px;
margin: 0 15px;
background-image: url(/img/bha-logo.png);
background-repeat: no-repeat;
background-size: 270px 160px;
background-position: 0px 0px;
}
.partners-logo-bha:hover {
background-position: 0px -80px;
}
.partners-logo-htng {
display: inline-block;
width: 200px;
height: 120px;
margin: 0 15px;
background-image: url(/img/htng-logo.png);
background-repeat: no-repeat;
background-size: 200px 240px;
background-position: 0px 0px;
}
.partners-logo-htng:hover {
background-position: 0px -120px;
}
.push-10 {
margin-top: 10px;
}
.push-20 {
margin-top: 20px;
}
.push-30 {
margin-top: 30px;
}
.clear-10 {
margin-bottom: 10px;
}
.clear-20 {
margin-bottom: 20px;
}
.clear-30 {
margin-bottom: 30px;
}
.img-center {
margin: 0 auto;
}
.mc-alert.success h3 {
color: #0f5f4e !important;
}
.mc-alert.success {
color: #0f5f4e;
background-color: #1bbc9b;
}
.mc-video {
width: 640px;
height: 360px;
max-width: 640px;
max-height: 360px;
}
@media (max-width: 768px) {
.mc-video {
width: 320px;
height: 240px;
margin: 0 -30px;
}
} | www/css/main.css | .formErrors,
.formErrorsDisplay {
color: red;
border: 1px solid red;
}
.formErrors {
background: #fee;
display: none;
}
.fielderror {
border: 1px solid red;
background: #fee;
}
.fielderror-msg {
color: #f44167;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}
.hidden {
display: none;
}
.btn {
white-space: normal !important;
}
/* @import must be at top of file, otherwise CSS will not work */
/* @import url("//hello.myfonts.net/count/2b5e4e"); uncomment on live */
@font-face {
font-family: 'HelveticaNeueLTStd-Lt';
src: url('/fonts/2B5E4E_0_0.eot');
src: url('/fonts/2B5E4E_0_0.eot?#iefix') format('embedded-opentype'), url('/fonts/2B5E4E_0_0.woff') format('woff'), url('/fonts/2B5E4E_0_0.ttf') format('truetype');
}
@font-face {
font-family: 'icomoon';
src: url('/fonts/icomoon.eot?-lcj9le');
src: url('/fonts/icomoon.eot?#iefix-lcj9le') format('embedded-opentype'), url('/fonts/icomoon.woff?-lcj9le') format('woff'), url('/fonts/icomoon.ttf?-lcj9le') format('truetype'), url('/fonts/icomoon.svg?-lcj9le#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
#mySwipe ul li:before,
ul.checked li:before {
font-family: 'icomoon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
margin-left: -25px;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\e600";
padding-right: 20px;
}
#mySwipe ul li {
font-size: 28px;
line-height: 1.5;
padding-left: 45px;
text-indent: -18px;
}
.checked li {
line-height: 1.5;
padding-left: 45px;
text-indent: -18px;
}
#mySwipe ul,
.checked li {
list-style: none !important;
padding-left: 0;
}
.img-holder {
width: 484px;
margin: 40px auto;
}
@media (max-width: 521px) {
.img-holder {
width: auto;
}
}
/******************************/
.addthis_20x20_style .dummy .at300bs,
.addthis_20x20_style .at300bs,
.addthis_20x20_style .at15t {
background: url(../img/share-btn.png) no-repeat left;
overflow: hidden;
display: block;
height: 25px!important;
width: 25px!important;
line-height: 20px!important;
background-size: 103px 26px;
margin-right: 5px;
}
.addthis_20x20_style .at15t_facebook {
background-position: 0 0 !important;
}
.addthis_20x20_style .at15t_twitter {
background-position: -52px 0 !important;
}
.addthis_20x20_style .at15t_google_plusone_share {
background-position: -26px 0 !important;
}
.addthis_20x20_style .at15t_linkedin {
background-position: -77px 0 !important;
}
.news-article-follow {
border-top: 1px solid #d5d5d5;
padding-top: 20px;
}
.social-share-buttons {
border: 1px solid #ccc;
width: 230px;
overflow: auto;
border-radius: 20px;
padding: 5px 3px 2px 15px;
margin-bottom: 40px;
float: right;
}
div#atstbx {
float: right;
}
.sharing-title {
font-size: 12px;
text-transform: uppercase;
font-family: Garamond;
display: inline;
vertical-align: middle;
padding-top: 2px;
float: left;
}
/*
.news-article-follow ul {
padding: 0;
list-style: none;
display: inline-block;
vertical-align: middle;
border: 1px solid #ccc;
border-radius: 20px;
padding: 5px 5px 5px 14px;
margin: 20px 0 50px;
float: right;
}
.news-article-follow li:first-child {
font-size: 12px;
text-transform: uppercase;
font-family: Garamond;
display: inline;
vertical-align: middle;
padding-top: 2px;
}
.news-article-follow ul li {
float: left;
margin-right:8px;
}
#li_ui_li_gen_1405582922373_0 #li_ui_li_gen_1405583373907_0-logo {
background-image: url(http://revamp.mediaconcepts.com/img/na-linkedin.png) !important;
background-position: 0px 0 !important;
background-repeat: no-repeat !important;
background-size: 25px 25px !important;
cursor: pointer !important;
border: 0 !important;
text-indent: -9999em !important;
overflow: hidden !important;
padding: 0 !important;
margin: 0 !important;
position: static !important;
left: 0px !important;
top: 0px !important;
display: block !important;
width: 25px !important;
height: 25px !important;
float: right !important;
border-radius: 0 !important;
-webkit-border-radius: 0 !important;
border-top-right-radius: 2px !important;
border-bottom-right-radius: 2px !important;
-webkit-border-top-right-radius: 2px !important;
-webkit-border-bottom-right-radius: 2px !important;
}
*/
/******************************/
/* CUSTOM CSS */
html {
background-color: #4d4d4f;
}
body {
text-align: left;
color: #231f20;
font-family: 'HelveticaNeueLTStd-Lt', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
font-weight: 300;
}
a {
text-decoration: none;
color: #3a5897;
}
a:hover {
text-decoration: underline;
}
a:focus {
outline: 0;
}
h1 {
font-size: 45px;
line-height: 1.1em;
font-weight: 400;
font-family: 'Signika', sans-serif;
}
h2 {
font-weight: 600;
font-size: 27px;
line-height: 1.1em;
margin: 0 0 15px;
font-family: 'Signika', sans-serif;
}
h2 small {
font-size: 21px;
line-height: 1em;
font-weight: 400;
color: #231f20;
font-weight: 300;
}
header > h2 + p {
font-weight: 300;
font-size: 1em;
line-height: 1.2em;
height: 110px;
}
header#header {
height: 69px;
}
h3 {
color: #231f20;
font-size: 22px;
margin: 20px 0;
line-height: 1.1em;
font-weight: 600;
font-family: 'Signika', sans-serif;
}
p {
margin-bottom: 14px;
line-height: 1.4;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
outline: 0;
}
.blue {
color: #3a5897;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
outline: 0;
}
.btn-primary {
color: #ffffff;
background-color: #e8a73a;
border-color: #e8a73a;
background-image: none;
filter: none;
-webkit-box-shadow: none;
box-shadow: none;
text-shadow: none;
font-family: 'didot', serif;
font-weight: 400;
border-radius: 6px;
font-size: 18px;
padding: 11px 17px;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
background-color: #e8a73a;
border-color: #e8a73a;
filter: none;
}
.btn-primary:hover {
background-color: #eeb24e;
color: #ffffff;
border-color: #eeb24e;
filter: none;
}
.btn-lg {
font-size: 22px;
padding: 15px 22px;
border-radius: 6px;
}
.container {
max-width: 920px;
}
.navbar-collapse {
max-height: none;
}
.bg-white {
background-color: #ffffff;
}
.bg-grey-light {
background-color: #eeeeee;
}
.bg-grey-gradient {
background: #eeeeee url('../img/bg-gradient-grey.jpg') 0 0 repeat-x;
}
.bg-grey-dark {
background-color: #4d4d4f;
color: #ffffff;
}
.bg-grey-dark a {
color: #ffffff;
}
.btn-md {
padding-top: 3px;
padding-bottom: 3px;
border-radius: 10px;
}
@media (min-width: 1200px) {
.col-padding-50 {
padding-top: 50px;
}
header#header {
height: 110px !important;
}
}
.content {
font-size: 18px;
line-height: 1.15em;
background-color: #ffffff;
position: relative;
z-index: 1;
}
@media (min-width: 768px) {
.content {
font-size: 21px;
}
header#header {
height: 155px;
}
}
.content h1 {
font-size: 2.1429em;
}
.content h2 {
font-size: 1.2857em;
}
/* font-size: 27px */
.content h2 small {
font-size: 0.7778em;
font-family: 'HelveticaNeueLTStd-Lt', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
font-weight: 300;
}
.content h3 a {
color: #231f20;
}
.content-area {
padding: 50px 15px 35px;
float: left;
width: 100%;
}
@media (min-width: 768px) {
.content-area {
padding-left: 0;
padding-right: 0;
}
}
.content-center {
text-align: center;
}
.content-left {
text-align: left;
}
.content-right {
text-align: right;
}
.google-map {
position: relative;
padding-bottom: 75%;
height: 0;
overflow: hidden;
}
.google-map iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
iframe {
border: 0;
}
@media (min-width: 1200px) {
.img-responsive {
display: inline;
}
}
.left {
float: left;
}
.img-left {
margin-bottom: 10px;
}
@media (min-width: 1200px) {
.img-left {
float: left;
margin-top: 10px;
margin-right: 20px;
}
}
.no-padding {
padding: 0;
}
.right {
float: right;
}
.img-right {
margin-bottom: 10px;
}
@media (min-width: 1200px) {
.img-right {
float: right;
margin-top: 10px;
margin-left: 20px;
}
}
.row-padded {
padding-top: 50px;
padding-bottom: 40px;
}
.row-padded-top {
padding-top: 50px;
}
.row-padded-top + .content-area {
padding-top: 10px;
}
.row-padding-bottom {
padding-bottom: 40px;
}
.margin-extra {
margin-bottom: 2em;
}
@media (min-width: 1200px) {
.margin-extra {
margin-top: 24px;
margin-bottom: 50px;
}
}
.txt-blue {
color: #7e9dd1;
}
.txt-lavender {
color: #8e80b6;
}
.txt-orange {
color: #eea632;
}
.txt-green {
color: #94a43d;
}
.txt-sky-blue {
color: #67c1eb;
}
.txt-teal {
color: #6fc6c4;
}
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
margin-bottom: 10px;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media (min-width: 1200px) {
.video-container.margin-extra {
margin-top: 24px;
margin-bottom: 50px;
}
}
/*
.videoContainer{
width:900px;
width:640px;
margin:0 auto;
height:480px;
position:relative;
text-align:center;
padding:0px;
}
#example_video_1{
width:640px;
height:480px;
text-align:center;
margin:0 auto;
display:none;
}
#videoPlayImg{ cursor:pointer; }
#lastFrame{ display:none; cursor:pointer; text-align:center; }
*/
/* { TOOLBAR } */
#site-toolbar .navbar-default {
background: #4d4d4f;
color: #ffffff;
}
#site-toolbar .navbar-default .container {
max-width: 1060px;
}
#site-toolbar .navbar {
margin-bottom: 0;
min-height: 28px;
}
#site-toolbar .navbar-default {
-webkit-box-shadow: none;
box-shadow: none;
}
#site-toolbar .navbar-default a {
color: #ffffff;
text-transform: uppercase;
font-size: 12px;
line-height: 1em;
font-weight: 300;
font-family: 'Signika', sans-serif;
}
#site-toolbar .navbar-default a:focus {
outline: 0;
}
#site-toolbar .nav-pills > li > a {
border-radius: 0;
padding: 8px 18px;
}
#site-toolbar .nav-pills > li > a:hover,
#site-toolbar .nav-pills > li > a:focus {
background-color: #333333;
}
/**************start ***************/
#site-header .nav-main .menu .sub-menu a {
padding-left: 16px !important;
padding-right: 16px !important;
}
#site-toolbar .nav-pills {
margin: 0;
}
#site-toolbar .nav-pills li {
vertical-align: middle;
text-align: left;
}
#site-toolbar .nav-pills > li:hover,
#site-header .navbar-nav > li > a:hover {
background-color: #eee;
}
#site-toolbar .nav-pills > li.btn-exit span,
#site-header .nav-main .menu a {
line-height: 20px;
text-shadow: none;
color: #777777;
position: relative;
display: block;
cursor: pointer;
padding: 14px 18px;
}
#site-toolbar .nav-pills > li.btn-exit span {
background-color: #f7f7f7;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
line-height: 18px;
padding: 15px;
text-transform: uppercase;
font-weight: 600;
}
#site-toolbar li.has-children .sub-menu li > a:hover {
background-color: #333;
}
#site-toolbar .sub-menu {
display: none;
}
#site-toolbar .nav-pills .sub-menu .container {
padding: 0;
text-align: center;
position: relative;
}
#site-toolbar .sub-menu li a {
font-size: 12px !important;
}
#site-toolbar .nav-pills .sub-menu a {
color: #ffffff;
background-color: #818385;
display: block;
padding: 10px 18px;
}
#site-toolbar .sub-menu ul {
list-style-type: none;
margin: 0;
padding: 0;
display: block;
}
.no-js #site-toolbar .sub-menu {
display: block;
}
/*#site-toolbar .nav-main .menu ul a {padding-left:30px;}
#site-toolbar .nav-main .menu ul a:hover {text-decoration:none;}
.menu a:focus {outline:0;}*/
#site-toolbar li:hover > .sub-menu {
display: block;
}
#site-toolbar .nav-pills .sub-menu a {
color: #ffffff;
background-color: #818385;
display: block;
padding: 10px 18px;
}
#site-toolbar .nav-pills li:hover > .sub-menu {
display: inline-block;
}
#site-toolbar .nav-pills .sub-menu {
display: none;
position: absolute;
width: 100%;
text-align: right;
background-color: #818385;
z-index: 2;
width: 150px;
}
#site-toolbar .nav-pills .sub-menu a {
color: #ffffff;
background-color: #818385;
padding-left: 18px;
}
#site-toolbar .nav-pills li:hover > .sub-menu {
z-index: 3;
}
#site-toolbar .nav-pills .sub-menu ul:after {
clear: both;
content: ' ';
display: table;
}
#site-toolbar .nav-pills .sub-menu li {
display: block;
border-top: #777 1px dotted;
}
#site-toolbar .nav-pills > li:hover {
background-color: #333;
}
#site-toolbar .nav-pills .sub-menu li a:hover {
text-decoration: none;
}
/*******************end ***********************/
ul#sitemap {
padding: 0;
list-style: none;
width: 100%;
}
ul#sitemap h4,
ul#sitemap h4 a {
font-size: 16px;
color: #000;
font-family: "Signika", sans-serif;
}
ul#sitemap h4 a {
font-size: 16px;
text-decoration: underline;
color: #000;
font-family: "Signika", sans-serif;
}
li.sitemap-col {
width: 50%;
float: left;
}
ul#sitemap li > ul {
padding: 0 25px;
list-style: none;
}
ul#sitemap ul li a {
font-size: 14px;
}
ul#sitemap ul h4 a,
ul#sitemap ul h4 {
font-size: 16px;
}
ul#sitemap ul ul {
padding-left: 26px;
}
ul#sitemap ul ul li {
margin-bottom: 0;
line-height: 1;
}
ul#sitemap ul ul li a {
font-size: 14px;
}
ul#sitemap ul ul ul {
padding-left: 30px;
}
@media (min-width: 768px) {
/* {toolbar } */
#site-toolbar .navbar-default .container {
width: auto;
}
}
/* { PRIMARY NAV } */
#site-header {
position: fixed;
top: 0;
z-index: 3;
width: 100%;
}
#site-header .navbar-default {
background: #f7f9fa;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
border-color: #f7f9fa;
}
#site-header .navbar-default .container {
max-width: 1062px;
position: relative;
}
#site-header .navbar-default .container .navbar-header {
text-align: center;
z-index: 1;
}
#site-header .navbar {
margin-bottom: 0;
}
#site-header .navbar > .container .navbar-brand {
float: none;
margin-left: 0;
padding: 14px 10px;
display: inline-block;
height: auto;
position: relative;
z-index: 1;
}
.lt-ie8 #site-header .navbar > .container .navbar-brand {
height: auto;
}
#site-header .navbar-default .navbar-collapse {
width: 240px;
z-index: 2;
position: fixed;
top: 0;
left: 0;
bottom: 0;
margin-right: 0;
margin-left: 0;
padding-left: 0;
padding-right: 0;
background-color: #f3f3f3;
overflow-y: auto;
}
#site-header .navbar-nav {
margin: 0;
}
#site-header .navbar-nav li {
vertical-align: middle;
text-align: left;
}
#site-header .navbar-nav > li {
height: 87px;
}
#site-header .navbar-nav > li:hover,
#site-header .navbar-nav > li > a:hover {
background-color: #eee;
}
#site-header .navbar-nav > li.btn-exit span,
#site-header .nav-main .menu a {
line-height: 20px;
text-shadow: none;
color: #777777;
position: relative;
display: block;
cursor: pointer;
padding: 14px 18px;
}
#site-header .navbar-nav > li.btn-exit span {
background-color: #f7f7f7;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
line-height: 18px;
padding: 15px;
text-transform: uppercase;
font-weight: 600;
}
#site-header .nav-main .menu .container {
padding: 0;
}
#site-header .nav-main .menu a {
border-top: 1px solid #e4e4e4;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
line-height: 18px;
padding: 15px;
background-color: #f3f3f3;
text-transform: uppercase;
font-weight: 600;
}
#site-header .nav-main .menu li li a {
border-top: 0;
padding-top: 12px;
padding-bottom: 12px;
}
#site-header .nav-main .menu .highlighted a {
background-color: #535454;
color: #f6ad3a;
}
#site-header .nav-main .menu a.active {
background-color: #f6ae3a;
}
#site-header .nav-main .menu .has-children a {
padding-right: 56px;
}
#site-header .nav-main .menu .has-children a.active {
color: #777777;
}
#site-header li.has-children .sub-menu li > a:hover {
background-color: #333;
}
#site-header .nav-main .menu .caret {
color: #f6ae3a;
border: 0;
width: 48px;
height: 48px;
background: transparent url('../img/icn-menu-indicator.png') 50% 50% no-repeat;
margin: 0;
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
#site-header .nav-main .menu .sub-menu {
display: none;
}
#site-header .sub-menu li a {
font-size: 12px !important;
}
#site-header .nav-main .menu .sub-menu ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.no-js #site-header .nav-main .menu .sub-menu {
display: block;
}
#site-header .nav-main .menu ul a {
padding-left: 30px;
}
#site-header .nav-main .menu ul a:hover {
text-decoration: none;
}
.menu a:focus {
outline: 0;
}
/** { MENU BUTTON } */
#site-header .navbar-default {
position: relative;
}
#site-header .navbar-default .navbar-toggle {
padding: 18px 12px;
margin: 0;
border: 0;
float: left;
position: absolute;
z-index: 2;
left: 0;
top: 0;
}
#site-header .navbar-default .navbar-toggle:hover,
#site-header .navbar-default .navbar-toggle:focus {
background-color: transparent;
}
#menu-button {
background: transparent url('../img/icn-menu.png') 0 0 no-repeat;
width: 42px;
height: 25px;
display: inline-block;
}
.lt-ie8 #menu-button {
display: inline;
zoom: 1;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
#menu-button {
background-image: url('../img/icn-menu@2x.png');
background-size: 42px 25px;
}
}
@media (max-width: 768px) {
#site-header .navbar-nav > li {
height: auto;
}
#site-header .navbar-brand img {
width: 159px;
height: 38px;
}
}
@media (min-width: 768px) and (max-width: 1200px) {
#site-header .navbar-nav > li {
height: auto;
}
}
@media (min-width: 768px) {
/* { header } */
#site-header .navbar-default {
border: 0;
}
#site-header .navbar-default .container {
width: auto;
}
#site-header .nav-main {
padding-top: 28px;
}
#site-header .navbar-default .navbar-collapse {
display: block !important;
height: auto !important;
text-align: center;
width: auto;
position: static;
margin-right: -15px;
margin-left: -15px;
padding-left: 15px;
padding-right: 15px;
overflow-y: visible !important;
background-color: transparent;
line-height: 0;
font-size: 0;
}
/* { menu } */
#header-menu > ul {
margin: 0 auto;
float: none !important;
display: inline-block;
}
.lt-ie8 #header-menu > ul {
display: inline;
zoom: 1;
}
#site-header .nav-main .menu > li {
position: static;
}
#site-header .navbar-nav > li {
display: inline-block;
float: none;
}
.lt-ie8 #site-header .navbar-nav > li {
display: inline;
zoom: 1;
}
#site-header .nav-main .menu a {
padding-left: 8px;
padding-right: 8px;
background-color: #f7f9fa;
border-top: 0;
color: #818385;
font-size: 15px;
line-height: 1em;
font-weight: 300;
font-family: 'Signika', sans-serif;
transition: color 0.2s ease-in, background-color 0.2s ease-in;
transition: background-image 0.3s ease-in;
}
#site-header .nav-main .menu > li.has-children.viewing > a {
background: url('../img/bg-nav-sub-active.png') 50% 100% no-repeat;
}
#site-header .nav-main .menu:hover > li.has-children.viewing > a {
background: none;
}
#site-header .nav-main .menu > li.has-children:hover > a,
#site-header .nav-main .menu > li.has-children.viewing:hover > a {
background: url('../img/bg-nav-sub-active.png') 50% 100% no-repeat;
}
#site-header .nav-main .menu > li.viewing > .sub-menu,
#site-header .nav-main .menu > li:hover > .sub-menu {
display: inline-block;
}
#site-header .nav-main .menu a:hover,
#site-header .nav-main .menu a:focus {
color: #333333;
}
#site-header .nav-main .menu .highlighted a {
color: #818385;
background-color: #f7f9fa;
}
#site-header .nav-main .menu a.active {
background-color: #f7f9fa;
}
#site-header .nav-main .menu .has-children a {
padding-right: 8px;
}
#site-header .nav-main .menu .caret {
display: none;
}
#site-header .nav-main .menu .sub-menu {
text-align: left;
position: absolute;
top: 100%;
left: 0;
width: 220px;
}
#site-header .nav-main .menu > li:last-child > .sub-menu {
left: auto;
right: 0;
}
#site-header .nav-main .menu li:hover > .sub-menu {
display: block;
}
#site-header .nav-main .menu .sub-menu a {
color: #ffffff;
background-color: transparent;
padding-left: 18px;
}
#site-header .navbar-default .container {
position: static;
line-height: 0;
}
#site-header .nav-main .menu .sub-menu {
display: none;
position: absolute;
width: 100%;
text-align: right;
background-color: #818385;
z-index: 2;
}
#site-header .nav-main .menu li:hover > .sub-menu {
z-index: 3;
}
#site-header .nav-main .menu .sub-menu .container {
padding: 0 15px;
text-align: center;
position: relative;
}
#site-header .nav-main .menu .sub-menu ul {
display: inline-block;
}
#site-header .nav-main .menu .sub-menu ul:after {
clear: both;
content: ' ';
display: table;
}
#site-header .nav-main .menu .sub-menu li {
display: inline-block;
}
.lt-ie8 #site-header .nav-main .menu .sub-menu li {
display: inline;
zoom: 1;
}
}
@media (min-width: 900px) {
/* { header } */
#site-header .nav-main .menu a {
padding-left: 18px;
padding-right: 18px;
}
}
@media (min-width: 1200px) {
/* { header } */
#site-header .navbar-default .container {
text-align: left;
}
#site-header .navbar-default .container .navbar-header {
text-align: left;
}
#site-header .navbar > .container .navbar-brand {
padding-top: 17px;
padding-bottom: 23px;
float: left;
height: 84px;
}
/*#site-header .nav-main .menu .sub-menu ul {float:right;}*/
#site-header .navbar-nav.navbar-right:last-child {
margin: 0;
float: right !important;
display: block;
}
#site-header .nav-main .menu a {
padding: 36px 10px;
}
#site-header .nav-main .menu .has-children a {
padding-right: 18px;
}
}
/* { HERO } */
#page-hero {
position: relative;
z-index: 1;
/*padding-top:68px;*/
display: block;
height: auto;
overflow: hidden;
}
#page-hero .container {
width: 100%;
padding: 0;
margin: 0;
position: relative;
z-index: 1;
}
#page-hero .jumbotron {
padding: 0;
margin: 0;
text-align: center;
background-color: #ffffff;
}
#page-hero .jumbotron > .container {
margin: 0 auto;
}
#page-hero .cycle-slide {
width: 100%;
}
#page-hero .cycle-slideshow div a {
display: block;
}
#page-hero .cycle-slideshow img {
width: 100%;
height: auto;
}
#page-hero .cycle-pager {
text-align: center;
width: 100%;
z-index: 500;
position: absolute;
bottom: 0;
overflow: hidden;
display: none;
}
#page-hero .cycle-pager span {
font-family: arial;
font-size: 50px;
width: 16px;
height: 16px;
display: inline-block;
color: #fff;
cursor: pointer;
margin-right: 10px;
}
#page-hero .cycle-pager span.cycle-pager-active {
color: #e8a73a;
}
#page-hero .cycle-pager > * {
cursor: pointer;
}
@media (min-width: 500px) {
#page-hero .cycle-pager {
display: block;
}
}
/* { CONTENT } */
/* { CONTENT - generic - page heading } */
.content-internal-main .content-area {
padding: 50px 25px 55px;
}
.content-internal-main .content-area h1 {
margin: 0;
}
.content-internal-main .content-area h2 {
font-weight: 300;
font-size: 1.0952em;
line-height: 1.25em;
margin: 15px 0 0;
}
.content-internal-main h2.large {
font-size: 1.1904em;
}
.content-internal-main h2 br {
display: none;
}
@media (min-width: 1200px) {
.content-internal-main h2 br {
display: block;
}
}
.content-internal-main p {
font-size: 1em;
line-height: 1.4;
font-weight: 300;
margin: 20px 0 0;
}
.content-internal-main p br {
display: none;
}
@media (min-width: 1200px) {
.content-internal-main p br {
display: block;
}
}
/* { CONTENT - generic - call to action } */
.content-call-to-action {
font-size: 1.3333em;
}
/* based off 21px parent */
.content-call-to-action .content-area {
padding: 60px 0 40px;
}
.content-call-to-action h2 {
font-size: 1.3214em;
margin: 0 0 14px;
}
.content-call-to-action p {
margin: 0 0 1em;
}
.content-call-to-action .btn-lg {
font-size: 0.7857em;
}
/* { CONTENT - generic - news articles } */
.content-news-item h3 {
font-size: 1em;
font-weight: 700;
margin: 0;
font-family: 'HelveticaNeueLTStd-Lt', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
line-height: 1.5;
}
.content-news-item .date {
padding: 5px 0;
}
.content-news-item p {
padding-top: 10px;
}
/* { CONTENT - generic - read more } */
.link-read-more {
text-align: center;
font-weight: 600;
font-family: 'Signika', sans-serif;
font-size: 1.2857em;
}
p + .link-read-more {
margin-top: 40px;
}
.link-read-more a {
color: #130c0e;
display: inline-block;
vertical-align: middle;
}
.link-read-more img {
margin-top: 14px;
}
.link-read-more br {
display: block;
}
.dl {
background: url(../img/social_media.png) no-repeat;
background-size: 60px 210px;
width: 60px;
height: 60px;
background-position: 0 -150px;
display: inline-block;
vertical-align: middle;
margin-left: 10px;
}
@media (min-width: 768px) {
.link-read-more br {
display: none;
}
.link-read-more img {
margin-left: 14px;
margin-top: 0;
}
}
/* { CONTENT - homepage } */
.content-homepage-featured {
border-bottom: 2px solid #f0f0f0;
}
.content-homepage-featured .container {
padding-top: 40px;
}
.content-homepage-featured .container header {
margin-bottom: 1em;
}
@media (min-width: 768px) {
.content-homepage-featured .container header {
margin-bottom: 2em;
}
}
@media (min-width: 1200px) {
.content-homepage-featured .container header {
margin-bottom: 100px;
}
}
.content-homepage-featured .content-image-grid {
font-size: 0.8751em;
padding-bottom: 40px;
}
.content-homepage-featured .content-image-grid h3 {
font-size: 1.2222em;
}
@media (min-width: 1200px) {
/* { content } */
.content-featured .container header {
margin-bottom: 100px;
}
.content-featured .content-image-grid {
padding-left: 10px;
padding-right: 10px;
}
}
.content-homepage.content-image-left .container {
padding-top: 50px;
padding-bottom: 24px;
}
.content-homepage.content-image-left .text {
padding-top: 20px;
}
.content-homepage.content-image-left .text h2 {
line-height: 1em;
}
@media (min-width: 1200px) {
/* { content } */
.content-image-left .content-image {
padding-left: 114px;
}
.content-image-left .content-text {
padding-left: 50px;
padding-right: 70px;
}
}
.content-homepage-latest-news {
font-size: 0.8571em;
line-height: 1.2em;
}
/* base off 18px*/
.content-homepage-latest-news h2 {
font-size: 1.5em;
}
.content-homepage-latest-news .container {
padding-top: 50px;
padding-bottom: 35px;
}
.content-homepage-latest-news .img-responsive {
margin: 0 auto;
}
.content-homepage-news-feed .content-news-item {
margin-bottom: 24px;
}
.content-homepage-news-feed .content-news-item.last {
margin-bottom: 0;
}
.content-homepage-latest-news .content-news-item .content-text {
padding-left: 15px;
}
.content-homepage-latest-news .content-news-item .date {
margin: 0;
text-transform: uppercase;
font-weight: 300;
}
@media (min-width: 1200px) {
/* { content } */
.content-latest-news .content-center {
text-align: right;
margin-top: 0;
}
.content-latest-news .img-responsive {
margin: 0;
}
}
.content-homepage-our-clients {
font-size: 1em;
line-height: 1.2em;
}
.content-homepage-our-clients .container {
padding-top: 55px;
padding-bottom: 30px;
}
.content-homepage-our-clients .text {
padding-right: 30px;
}
.content-homepage-our-clients .content-images {
padding-bottom: 1em;
}
.content-homepage-our-clients .image {
text-align: center;
padding: 0 0 1em;
}
.content-homepage-our-clients .images > .row:first-child {
padding-top: 20px;
padding-bottom: 40px;
}
.content-homepage-our-clients .image img {
vertical-align: top;
}
.content-images img {
width: 100%;
}
@media (min-width: 768px) {
.content-homepage-our-clients .image {
padding: 20px 0 40px;
}
}
@media (min-width: 1200px) {
.content-homepage-our-clients .content-center {
text-align: right;
}
.content-homepage-our-clients .image {
text-align: center;
}
.content-homepage-our-clients .image.first {
padding-left: 15px;
text-align: left;
}
.content-homepage-our-clients .image.last {
padding-right: 15px;
text-align: right;
}
}
/* { CONTENT - news & articles } */
.content-news .container {
max-width: none;
width: 100%;
padding: 0;
}
.content-news .container .row {
padding: 0;
width: auto;
margin-left: 0;
margin-right: 0;
}
.content-news .side-menu {
background-color: #f3f3f3;
float: left;
width: 100%;
}
.content-news .side-menu ul.menu {
list-style-type: none;
margin: 0;
padding: 0;
float: right;
width: 100%;
border-top: 2px solid #d5d5d5;
}
.content-news .side-menu .menu li {
margin: 0;
padding: 0;
float: right;
width: 100%;
border-bottom: 2px solid #d5d5d5;
}
.content-news .side-menu .menu li.viewing {
background-color: #e5e5e5;
}
.content-news .side-menu .menu a {
display: block;
float: left;
width: 100%;
background: transparent url('../img/icn-raquo.png') 15px 50% no-repeat;
color: #231f20;
font-size: 0.9048em;
font-weight: 400;
padding: 35px 35px 35px 65px;
}
.content-news .side-menu .pagination {
margin: 0;
padding: 45px 15px;
display: block;
float: left;
width: 100%;
}
.content-news .side-menu .pagination ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
.content-news .side-menu .pagination li {
padding: 0 2px;
margin: 0;
display: inline-block;
vertical-align: bottom;
}
.content-news .side-menu .pagination a {
display: block;
}
.pagination a.active {
text-decoration: underline;
}
.content-news .content-wrapper {
float: left;
width: 100%;
}
.content-news .content-wrapper .content-area {
padding-top: 40px;
}
@media (max-width: 767px) {
.content-even-height {
min-height: 0 !important;
}
}
@media (min-width: 768px) {
.content-news .side-menu {
float: right;
width: 33.33%;
background: #ffffff url('../img/bg-gradient-grey-horizontal.jpg') 100% 0 repeat-y;
float: left;
}
.content-news .side-menu ul.menu {
border-top: 0;
padding-top: 20px;
}
.content-news .side-menu ul.menu li {
background: #ffffff url('../img/bg-gradient-grey-horizontal.jpg') 100% 0 repeat-y;
}
.content-news .side-menu ul.menu li.viewing {
background: #e5e5e5 url('../img/bg-gradient-grey-dark-horizontal.jpg') 100% 0 repeat-y;
}
.content-news .side-menu .menu a {
float: right;
max-width: 315px;
background-position: 15px 49px;
min-height: 140px;
padding: 40px 35px 30px 65px;
}
.content-news .side-menu .pagination {
float: right;
}
.content-news .side-menu .pagination {
max-width: 315px;
}
.content-news .side-menu .pagination ul {
text-align: left;
}
.content-news .content-wrapper {
float: right;
width: 66.67%;
}
.content-news .content-wrapper .content-area {
max-width: 600px;
padding-left: 55px;
padding-top: 60px;
}
}
@media (min-width: 1200px) {
.content-news .side-menu {
width: 39%;
}
.content-news .content-wrapper {
width: 61%;
}
.content-news .content-wrapper .content-area h2 {
margin-bottom: 20px;
}
.content-news .content-wrapper .content-area p {
margin: 0 0 2em;
}
}
/* { CONTENT - contact us } */
.content-contact.bg-white {
padding-top: 60px;
padding-bottom: 60px;
}
.content-contact img,
.content-contact iframe {
box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
}
.content-contact.bg-grey-light {
padding-top: 60px;
padding-bottom: 50px;
}
.content-contact form {
margin: 0;
max-width: 720px;
margin: 0 auto;
}
.content-contact .form-label {
display: block;
margin-right: auto;
margin-left: 3px;
font-family: 'Signika', sans-serif;
font-weight: 300;
font-size: 1em;
}
.content-contact .form-field {
width: 100%;
margin: 0;
height: 40px;
border: 2px solid #dbdbdb;
border-radius: 10px;
padding: 3px 15px;
}
.content-contact textarea.form-field {
min-height: 105px;
}
.content-contact form .btn-primary {
/*font-size:1.0476em;*/
width: 100%;
/*margin-bottom:14px;*/
background-color: #e8a73a;
border-color: #e8a73a;
background-image: none;
filter: none;
webkit-box-shadow: none;
box-shadow: none;
text-shadow: none;
font-family: 'didot', serif;
font-weight: 400;
border-radius: 6px;
font-size: 18px;
padding: 11px 17px;
text-transform: lowercase;
}
@media (min-width: 768px) {
.content-contact form .btn-primary {
margin-bottom: 0;
}
.content-contact form p {
margin: 0 0 1em;
}
}
@media (min-width: 1200px) {
.content-contact form .row {
padding-right: 20px;
padding-left: 20px;
margin-right: -20px;
margin-left: -20px;
}
.content-contact form .row .col-lg-6 {
padding-left: 20px;
padding-right: 20px;
}
}
/* { CONTENT - enterprise solutions } */
.content-enterprise-solutions .content-area {
padding-bottom: 40px;
}
/* { CONTENT - campaign management } */
@media (min-width: 1200px) {
.content-campaign-management .container {
max-width: 960px;
}
.content-campaign-management .image {
width: 570px;
}
.content-campaign-management .text {
width: 380px;
}
}
/* { CONTENT - online booking } */
@media (min-width: 1200px) {
.content-online-booking p + .link-read-more {
margin-top: 55px;
}
}
/* { CONTENT - mobile concierge } */
@media (min-width: 1200px) {
.content-mobile-concierge .row-padded-top + .content-area {
padding-top: 30px;
}
}
/* { CONTENT - clients } */
.content-clients .image {
text-align: center;
padding-bottom: 30px;
}
@media (min-width: 768px) {
.content-clients .image {
text-align: left;
}
}
@media (min-width: 1200px) {
.content-clients .image {
padding-bottom: 0;
}
}
/* { CONTENT - our team } */
.content-profile {
color: #5e5e5e;
}
.content-profile .image {
vertical-align: bottom;
padding-top: 70px;
padding-left: 15px;
padding-right: 15px;
text-align: center;
}
.content-profile .text {
padding-left: 15px;
padding-right: 15px;
padding-top: 60px;
}
@media (min-width: 1200px) {
.content-profile .text {
padding-top: 135px;
}
}
.content-profile .text h2 {
text-transform: uppercase;
margin: 0;
color: #231f20;
}
.content-profile .text h3 {
margin: 0 0 15px;
font-weight: 600;
font-size: 1.2857em;
line-height: 1.1em;
}
@media (min-width: 1200px) {
.content-profile .image {
float: left;
width: 324px;
padding-left: 0;
padding-right: 0;
}
.content-profile.bg-white .image {
text-align: left;
}
.content-profile.bg-grey-light .image {
text-align: right;
float: right;
}
.content-profile .text {
float: left;
width: 596px;
}
.content-profile.bg-white .text {
float: right;
}
}
/* { CONTENT - our soul } */
@media (min-width: 1200px) {
.content-our-soul .text {
width: 640px;
}
.content-our-soul .image {
width: 280px;
}
}
/* { CONTENT - our values } */
.content-our-values .content-area h2 {
margin: 0;
font-size: 1.4762em;
}
.content-our-values .content-area p {
margin: 0 0 25px;
}
.content-our-values .content-area hr {
background-color: #6f6d6e;
width: 45px;
height: 1px;
border: 0;
margin: 0 auto 25px;
padding: 0;
}
/* { FOOTER } */
#site-footer .container {
max-width: 920px;
padding-top: 10px;
padding-bottom: 10px;
}
#site-footer hr {
margin: 0;
padding: 0;
border-top: 1px solid #b1b1b2;
border-bottom: 1px solid #f4f4f4;
border-left: 0;
border-right: 0;
height: 0;
line-height: 0;
font-size: 0;
}
#site-footer .social {
font-family: didot,serif;
font-size: 21px;
line-height: 1em;
}
#site-footer .social span {
display: block;
margin-bottom: 8px;
}
#site-footer .social ul {
display: block;
list-style-type: none;
margin: 0 0 8px;
padding: 0;
}
#site-footer .social ul:after {
display: table;
content: ' ';
clear: both;
}
#site-footer .social li {
margin: 0 0 0 3px;
padding: 0;
float: left;
}
#site-footer .social li:first-child {
margin-left: 0;
}
#site-footer .social a {
display: block;
width: 30px;
height: 30px;
background-position: 0 0;
background-repeat: no-repeat;
}
#site-footer .follow {
background: url(../img/social_media.png) no-repeat;
background-size: 60px 210px;
width: 30px;
height: 30px;
}
#site-footer li.facebook {
background-position: 0 0;
}
#site-footer li.twitter {
background-position: 0 -30px;
}
#site-footer li.linked-in {
background-position: 0 -90px;
}
#site-footer li.google-plus {
background-position: 0 -60px;
}
#site-footer li.youtube {
background-position: 0 -120px;
}
#site-footer .social li a span {
display: none;
}
#site-footer .contact {
font-size: 12px;
line-height: 1em;
font-family: 'Signika', sans-serif;
font-weight: 300;
padding-top: 10px;
padding-bottom: 5px;
}
#site-footer .contact p {
margin: 0 0 8px;
}
#site-footer .quicklinks {
font-size: 12px;
line-height: 1em;
font-family: 'Signika', sans-serif;
font-weight: 300;
padding-top: 7px;
}
#site-footer .quicklinks ul {
list-style-type: none;
margin: 0 0 8px;
padding: 0;
}
#site-footer .quicklinks ul:after {
display: table;
clear: both;
content: ' ';
}
#site-footer .quicklinks li {
margin: 0 0 0 5px;
float: left;
padding: 0;
}
#site-footer .quicklinks li:first-child {
margin-left: 0;
}
#site-footer .copyright {
font-size: 12px;
line-height: 1em;
font-family: 'Signika', sans-serif;
font-weight: 300;
}
#site-footer .copyright p {
margin: 0;
}
@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5ddpx) {
#site-footer .follow {
background: url(../img/social_media@2x.png) no-repeat;
background-size: 30px 150px;
width: 30px;
height: 30px;
}
#site-footer li.facebook {
background-position: 0 0;
}
#site-footer li.twitter {
background-position: 0 -30px;
}
#site-footer li.linked-in {
background-position: 0 -90px;
}
#site-footer li.google-plus {
background-position: 0 -60px;
}
#site-footer li.youtube {
background-position: 0 -120px;
}
}
@media (min-width: 360px) {
/* { footer } */
#site-footer .social span {
padding: 0;
margin-bottom: 8px;
}
}
@media (min-width: 768px) {
/* { footer } */
#site-footer .social span {
display: inline-block;
padding: 20px 12px 20px 0;
vertical-align: middle;
margin-bottom: 0;
}
.lt-ie8 #site-footer .social span {
display: inline;
zoom: 1;
}
.lt-ie8 #site-footer .social li a span {
display: none;
}
#site-footer .social ul {
display: inline-block;
vertical-align: middle;
padding: 15px 0;
margin-bottom: 0;
}
.lt-ie8 #site-footer .social ul {
display: inline;
zoom: 1;
}
#site-footer .contact p {
margin-left: 5px;
}
#site-footer .quicklinks ul {
margin-bottom: 0;
padding-bottom: 5px;
}
#site-footer .copyright {
padding-top: 7px;
}
#site-footer .copyright p {
margin-left: 5px;
margin-bottom: 8px;
}
}
#banner-pagenotfound {
display: table;
}
.banner-pagenotfound-img {
float: left;
width: 60%;
}
.banner-pagenotfound-txt {
width: 40%;
display: table-cell;
vertical-align: middle;
}
p#options {
margin-bottom: 50px;
font-weight: 600;
font-family: "Signika", sans-serif;
}
/*************** CAROUSEL *****************************/
#page-hero {
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #e0e0e0));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* IE10+ */
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #e0e0e0 100%);
/* W3C */
overflow: hidden;
margin-top: -15px;
}
#page-hero .wrapper {
margin: 0 auto;
font-size: 42px;
}
#mySwipe .row {
width: 1140px;
margin: 0 auto;
text-align: left;
}
#mySwipe .text {
font-family: "Signika", sans-serif;
}
#mySwipe h2 {
font-size: 48px;
line-height: 1.08;
}
#mySwipe .text p {
font-family: "Signika", sans-serif !important;
font-size: 42px;
font-weight: 300;
line-height: 1.1;
}
#mySwipe .row .text {
padding-left: 57px;
padding-right: 120px;
}
/* Swipe 2 required styles */
.swipe {
overflow: hidden;
visibility: hidden;
position: relative;
}
.swipe-wrap {
overflow: hidden;
position: relative;
}
.swipe-wrap > div {
float: left;
width: 100%;
position: relative;
}
/* END required styles */
.slick-slider {
position: relative;
overflow: hidden;
}
.slick-track {
position: relative;
}
.slick-list {
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.testimonials {
border-top: #d4d4d4 1px solid;
padding: 30px 10%;
}
.slick-dots {
margin: 0;
padding: 0;
list-style: none;
}
.slick-dots li {
display: inline-block;
}
.slick-dots button {
background: #b2b2b2;
color: #b2b2b2;
width: 15px;
height: 15px;
overflow: hidden;
border: 0;
border-radius: 50%;
margin: 0 5px;
}
.slick-dots .slick-active button {
background: #e8a73a;
color: #e8a73a;
}
.testimonials blockquote {
font-family: "Signika", sans-serif !important;
font-style: italic;
color: #777;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-slide {
float: left;
outline: none;
}
#mySwipe .swipe-wrap .wrapper {
display: table;
}
#mySwipe .swipe-wrap .image,
#mySwipe .swipe-wrap .text {
display: table-cell;
float: none;
}
#mySwipe .swipe-wrap .text {
height: 400px;
vertical-align: middle;
width: 48%;
}
#mySwipe .swipe-wrap .image {
width: 52%;
vertical-align: middle;
}
#mySwipe .row .image img {
float: right;
}
.uppercase {
text-transform: uppercase;
}
.txt-orange {
color: #ec7815;
}
.txt-grey {
color: #878787;
}
.bigger {
font-size: 86px !important;
}
.medium {
font-size: 54px !important;
}
#page-hero .banner-single .text {
position: absolute;
text-align: center;
width: 100%;
top: 90px;
}
.blue-green {
color: #29b3b3;
}
@media (max-width: 1732px) {
#mySwipe .row .image img {
width: 100%;
}
#mySwipe .row .text {
padding-right: 0;
}
}
@media (max-width: 1646px) {
.bigger {
font-size: 74px !important;
}
}
@media (max-width: 1462px) {
.bigger {
font-size: 64px !important;
}
}
@media (max-width: 1310px) {
.bigger {
font-size: 60px !important;
}
}
@media (max-width: 1169px) {
#mySwipe .row .text {
padding-right: 0;
/*padding-top:80px;*/
}
.bigger {
font-size: 74px !important;
}
}
@media (max-width: 1038px) {
#mySwipe .swipe-wrap .text {
/*padding-top:50px;*/
padding-right: 0;
}
#mySwipe .row .image img {
width: 100%;
}
.bigger {
font-size: 55px !important;
}
}
@media (max-width: 1199px) {
#page-hero {
/*padding-top:150px;*/
}
#mySwipe .row .text {
padding-right: 0;
}
#page-hero h2 {
font-size: 27px !important;
line-height: 1.2;
}
.bigger {
font-size: 42px !important;
}
.medium {
font-size: 38px !important;
}
#mySwipe .swipe-wrap .text p,
#mySwipe .swipe-wrap ul li {
font-size: 22px !important;
}
#page-hero .banner-single .text {
top: 60px;
}
}
@media (max-width: 1024px) {
#mySwipe .swipe-wrap .text {
/*padding-top:40px;*/
padding-left: 0;
padding-right: 0;
}
#page-hero h2 {
font-size: 27px !important;
line-height: 1.2;
}
.bigger {
font-size: 42px !important;
}
.medium {
font-size: 38px !important;
}
#mySwipe .swipe-wrap .text p,
#mySwipe .swipe-wrap ul li {
font-size: 22px !important;
}
.banner-single .text {
top: 40px !important;
}
}
@media (max-width: 767px) {
#page-hero {
height: auto;
}
.testimonials {
padding-left: 5%;
padding-right: 5%;
}
ul#sitemap li.sitemap-col {
width: 100%;
float: none;
}
ul#sitemap ul li h4 {
width: 100%;
}
#mySwipe .swipe-wrap .wrapper {
display: block;
}
#mySwipe .swipe-wrap .image {
display: block;
float: left;
width: 100%;
}
#mySwipe .swipe-wrap .text {
padding-top: 25px !important;
padding-bottom: 1em;
padding-left: 15px;
padding-right: 15px;
height: auto;
display: block;
float: left;
clear: both;
width: 100%;
}
#mySwipe .swipe-wrap .text p,
#mySwipe .swipe-wrap ul li {
font-size: 19px;
font-weight: 300;
padding-top: 0;
}
#page-hero h2 {
font-size: 23px !important;
}
.bigger {
font-size: 48px !important;
}
.banner-single .text {
top: 40px !important;
}
}
@media (max-width: 600px) {
.banner-single .text {
top: 18px !important;
left: 3px;
}
#page-hero .banner-single h2.medium {
font-size: 18px !important;
}
}
.epic-banner {
position: relative;
display: block;
width: 100%;
height: 300px;
overflow: hidden;
background-color: #ccc;
}
.epic-banner > ul {
display: block;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
list-style-type: none;
}
.epic-banner > ul > li {
position: absolute;
width: 100%;
margin: 0;
bottom: 0;
left: -100%;
font-size: 0;
}
.epic-banner > ul > li.active {
z-index: 1;
}
.epic-banner > ul > li img,
.epic-banner > ul > li video {
max-width: 100%;
height: auto;
margin: 0 auto;
width: 100%;
}
.epic-banner > ul > li > video {
position: relative !important;
}
.epic-banner > ul > li > .eb-mobile {
display: none;
}
.epic-banner > ul > li > .eb-slogan {
position: absolute;
width: 100%;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont {
display: block;
margin: 30px 90px;
padding: 15px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h1 {
font-size: 68px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h2 {
font-size: 58px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h3 {
font-size: 48px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h1,
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h2,
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h3 {
margin: 0;
padding: 0 0 15px 0;
color: #202020;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h1 a,
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h2 a,
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont h3 a {
text-decoration: none;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont .eb-summary {
display: inline-block;
margin: 0;
padding: 0 0 15px 0;
color: #202020;
font-size: 26px;
}
.epic-banner > ul > li > .eb-slogan .eb-slogan-cont .eb-summary > ul > li {
font-size: 30px;
text-align: left;
}
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont h1,
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont h2,
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont h3 {
color: #ffffff;
}
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont .eb-summary li,
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont .eb-summary p,
.epic-banner > ul > li > .eb-slogan.eb-invert .eb-slogan-cont .eb-summary a {
color: #ffffff;
}
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont h1,
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont h2,
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont h3 {
text-shadow: 0 5px 40px #ffffff;
}
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont .eb-summary li,
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont .eb-summary p,
.epic-banner > ul > li > .eb-slogan.eb-shadow .eb-slogan-cont .eb-summary a {
text-shadow: 0 2px 30px #ffffff;
}
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont h1,
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont h2,
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont h3 {
text-shadow: 0 5px 40px #000000;
}
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont .eb-summary li,
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont .eb-summary p,
.epic-banner > ul > li > .eb-slogan.eb-invert.eb-shadow .eb-slogan-cont .eb-summary a {
text-shadow: 0 2px 30px #000000;
}
.epic-banner > ul > li > .eb-slogan .text-orange {
color: #ec7815;
}
.epic-banner > ul > li > .eb-slogan.position-top {
top: 0;
}
.epic-banner > ul > li > .eb-slogan.position-middle {
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
}
.epic-banner > ul > li > .eb-slogan.position-bottom {
bottom: 0;
}
.epic-banner > ul > li > .eb-slogan.position-left {
text-align: left;
}
.epic-banner > ul > li > .eb-slogan.position-center {
text-align: center;
}
.epic-banner > ul > li > .eb-slogan.position-right {
text-align: right;
}
.epic-banner > ul > li > .eb-slogan.position-right .eb-slogan-cont .eb-summary ul {
float: right;
}
.epic-banner .eb-navi-cont {
display: block;
width: 100%;
}
.epic-banner .eb-navi-cont .eb-next,
.epic-banner .eb-navi-cont .eb-prev {
position: absolute;
display: block;
width: 50px;
height: 50px;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
cursor: pointer;
text-align: center;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #e8a73a;
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
z-index: 2;
-webkit-transition: all 0.3s ease-out 0.3s;
-moz-transition: all 0.3s ease-out 0.3s;
-o-transition: all 0.3s ease-out 0.3s;
transition: all 0.3s ease-out 0.3s;
}
.epic-banner .eb-navi-cont .eb-next:before,
.epic-banner .eb-navi-cont .eb-prev:before {
display: block;
content: " ";
color: #ffffff;
font-family: "FontAwesome";
font-size: 32px;
line-height: 50px;
}
.epic-banner .eb-navi-cont .eb-next {
right: -50px;
}
.epic-banner .eb-navi-cont .eb-next:before {
content: "\f105";
}
.epic-banner .eb-navi-cont .eb-prev {
left: -50px;
}
.epic-banner .eb-navi-cont .eb-prev:before {
content: "\f104";
}
.epic-banner .eb-navi-cont .eb-pbar {
position: absolute;
width: 0%;
height: 2px;
top: 0;
background-color: rgba(128, 0, 0, 0.3);
z-index: 2;
}
.epic-banner .eb-navi-cont .eb-pagi {
position: absolute;
display: block;
padding: 10px;
bottom: 10px;
left: 50%;
opacity: 0;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transition: all 0.3s ease-out 0.3s;
-moz-transition: all 0.3s ease-out 0.3s;
-ms-transition: all 0.3s ease-out 0.3s;
-o-transition: all 0.3s ease-out 0.3s;
z-index: 2;
}
.epic-banner .eb-navi-cont .eb-pagi span {
display: block;
width: 10px;
height: 10px;
margin-right: 10px;
float: left;
cursor: pointer;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
background-color: #ffffff;
}
.epic-banner .eb-navi-cont .eb-pagi span:hover,
.epic-banner .eb-navi-cont .eb-pagi span.selected {
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
background-color: #e8a73a;
}
.epic-banner:hover .eb-navi-cont .eb-pagi,
.epic-banner.show_navi .eb-navi-cont .eb-pagi {
opacity: 1;
}
.epic-banner:hover .eb-navi-cont .eb-next,
.epic-banner.show_navi .eb-navi-cont .eb-next {
right: 30px;
}
.epic-banner:hover .eb-navi-cont .eb-prev,
.epic-banner.show_navi .eb-navi-cont .eb-prev {
left: 30px;
}
@media (max-width: 1199px) {
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h1 {
font-size: 46px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h2 {
font-size: 34px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h3 {
font-size: 26px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary p,
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary a,
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary ul li {
font-size: 18px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-cta a.btn {
font-size: 18px !important;
padding: 5px 15px !important;
border-radius: 6px !important;
}
}
@media (max-width: 768px) {
.epic-banner > ul > li .eb-slogan {
width: 100% !important;
top: 50% !important;
left: 50% !important;
bottom: auto !important;
right: auto !important;
-webkit-transform: translate(-50%, -50%) !important;
-moz-transform: translate(-50%, -50%) !important;
-ms-transform: translate(-50%, -50%) !important;
-o-transform: translate(-50%, -50%) !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont {
margin: 10px 60px;
padding: 15px;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h1 {
font-size: 34px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h2 {
font-size: 26px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h3 {
font-size: 18px !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary {
display: none !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-cta a.btn {
font-size: 18px !important;
padding: 5px 15px !important;
border-radius: 6px !important;
}
.epic-banner > ul > li .eb-mobile {
display: block !important;
}
.epic-banner > ul > li .eb-screen {
display: none !important;
}
.epic-banner .eb-navi-cont .eb-next,
.epic-banner .eb-navi-cont .eb-prev {
display: none !important;
}
}
@media (max-width: 480px) {
.epic-banner > ul > li .eb-slogan .eb-slogan-cont {
margin: 0px 0px;
padding: 15px;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h1 {
font-size: 46px !important;
text-align: center;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h2 {
font-size: 34px !important;
text-align: center;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont h3 {
font-size: 26px !important;
text-align: center;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-summary {
display: none !important;
}
.epic-banner > ul > li .eb-slogan .eb-slogan-cont .eb-cta {
font-size: 18px !important;
text-align: center;
}
.epic-banner > ul > li .eb-mobile {
display: block !important;
}
.epic-banner > ul > li .eb-screen {
display: none !important;
}
.epic-banner .eb-navi-cont .eb-next,
.epic-banner .eb-navi-cont .eb-prev {
display: none !important;
}
}
.emailer-box {
display: block;
width: 100%;
background-color: #eea632;
}
.emailer-box:before,
.emailer-box:after {
display: table;
content: " ";
}
.emailer-box:after {
clear: both;
}
.emailer-box .emb-cont {
position: relative;
display: block;
float: right;
}
.emailer-box .emb-cont p {
display: block;
padding: 0 30px;
margin: 0;
float: left;
color: #202020;
font-size: 24px;
line-height: 48px;
white-space: nowrap;
}
.emailer-box .emb-cont input[type=text] {
display: block;
height: 48px;
padding: 0 15px;
float: left;
color: #202020;
font-size: 18px;
border: none;
outline: none;
background-color: #f5f5f5;
}
.emailer-box .emb-cont .emb-submit {
display: block;
width: 48px;
height: 48px;
float: left;
border: none;
color: #ffffff;
background-color: #808080;
}
.emailer-box .emb-cont .emb-submit:hover {
background-color: #454545;
}
.emailer-box .fielderror-msg {
position: absolute;
bottom: 100%;
left: 0;
width: 100%;
padding: 10px 48px 10px 30px;
background-color: #f5f5f5;
cursor: pointer;
}
.emailer-box .fielderror-msg.error {
background-color: #e97868 !important;
}
.emailer-box .fielderror-msg.error:before {
position: absolute;
display: block;
width: 48px;
height: 48px;
content: "\f00d";
top: 0;
right: 0;
color: #fff;
font-family: FontAwesome;
text-align: center;
line-height: 48px;
}
.emailer-box .fielderror-msg .fielderror-text {
color: #303030;
}
.emailer-box .fielderror-msg.error .fielderror-text {
color: #fff !important;
}
@media (max-width: 768px) {
.emailer-box .emb-cont p {
padding-left: 0;
}
.emailer-box .emb-cont input[type=text] {
padding: 0 63px 0 15px;
width: 100%;
}
.emailer-box .emb-cont button {
position: absolute;
top: 48px;
right: 0;
}
}
.mc-checked-list {
list-style-type: none;
padding-left: 1em;
}
.mc-checked-list li {
position: relative;
padding-left: 1.5em;
}
.mc-checked-list li:before {
position: absolute;
display: block;
content: "\f00c";
top: 0;
left: 0;
font-family: FontAwesome;
}
.partners-logo-bha {
display: inline-block;
width: 270px;
height: 80px;
margin: 0 15px;
background-image: url(/img/bha-logo.png);
background-repeat: no-repeat;
background-size: 270px 160px;
background-position: 0px 0px;
}
.partners-logo-bha:hover {
background-position: 0px -80px;
}
.partners-logo-htng {
display: inline-block;
width: 200px;
height: 120px;
margin: 0 15px;
background-image: url(/img/htng-logo.png);
background-repeat: no-repeat;
background-size: 200px 240px;
background-position: 0px 0px;
}
.partners-logo-htng:hover {
background-position: 0px -120px;
}
.push-10 {
margin-top: 10px;
}
.push-20 {
margin-top: 20px;
}
.push-30 {
margin-top: 30px;
}
.clear-10 {
margin-bottom: 10px;
}
.clear-20 {
margin-bottom: 20px;
}
.clear-30 {
margin-bottom: 30px;
}
.img-center {
margin: 0 auto;
}
.mc-alert.success h3 {
color: #0f5f4e !important;
}
.mc-alert.success {
color: #0f5f4e;
background-color: #1bbc9b;
}
.mc-video {
width: 640px;
height: 360px;
max-width: 640px;
max-height: 360px;
}
@media (max-width: 768px) {
.mc-video {
width: 320px;
height: 240px;
margin: 0 -30px;
}
} | 0.273866 | 0.083778 |
.link-preview-container {
display: inline-block;
position: relative;
}
.link-preview-container img {
display: none;
position: absolute;
object-fit: cover;
border-radius: 2px;
top: 1.5em;
left: calc(50% - 200px);
width: 400px;
height: 300px;
z-index: 9;
border: 1px solid rgba(55, 53, 47, 0.16);
-webkit-box-shadow: 0px 2px 5px rgba(10, 20, 20, 0.2);
box-shadow: 0 2px 5px rgba(10, 20, 20, 0.2);
}
.link-preview-container:hover img {
display: block;
}
/* for link card */
.link-card-container {
cursor: pointer;
user-select: none;
transition: background 120ms ease-in 0s;
width: 100%;
display: flex;
align-items: stretch;
text-align: left;
overflow: hidden;
position: relative;
color: inherit;
fill: inherit;
border: 1px solid rgba(55, 53, 47, 0.16);
border-radius: 3px;
max-height: 120px;
}
.link-card-container:hover {
background-color: rgba(55, 53,47, 0.08);
}
.link-card-wrapper {
display: flex;
flex-direction: column;
flex: 4 1 180px;
padding: 12px 14px 14px;
width: calc(100% - 6px);
min-height: 60px;
}
.link-card-title {
font-size: 18px;
font-weight: bold;
line-height: 22px;
max-height: 22px;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 2px;
}
.link-card-description {
font-size: 14px;
line-height: 18px;
max-height: 36px;
overflow: hidden;
}
.link-card-text {
flex: 1;
}
.link-card-url {
display: flex;
margin-top: 6px;
}
.link-card-favicon {
width: 16px;
height: 16px;
min-width: 16px;
margin-right: 6px;
}
.link-card-link {
font-size: 12px;
line-height: 16px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.link-card-image-wrapper {
flex: 1 1 180px;
min-height: 80px;
display: block;
position: relative;
}
.link-card-image {
display: block;
object-fit: cover;
border-radius: 1px;
width: 100%;
height: 100%;
} | themes/notion.css | .link-preview-container {
display: inline-block;
position: relative;
}
.link-preview-container img {
display: none;
position: absolute;
object-fit: cover;
border-radius: 2px;
top: 1.5em;
left: calc(50% - 200px);
width: 400px;
height: 300px;
z-index: 9;
border: 1px solid rgba(55, 53, 47, 0.16);
-webkit-box-shadow: 0px 2px 5px rgba(10, 20, 20, 0.2);
box-shadow: 0 2px 5px rgba(10, 20, 20, 0.2);
}
.link-preview-container:hover img {
display: block;
}
/* for link card */
.link-card-container {
cursor: pointer;
user-select: none;
transition: background 120ms ease-in 0s;
width: 100%;
display: flex;
align-items: stretch;
text-align: left;
overflow: hidden;
position: relative;
color: inherit;
fill: inherit;
border: 1px solid rgba(55, 53, 47, 0.16);
border-radius: 3px;
max-height: 120px;
}
.link-card-container:hover {
background-color: rgba(55, 53,47, 0.08);
}
.link-card-wrapper {
display: flex;
flex-direction: column;
flex: 4 1 180px;
padding: 12px 14px 14px;
width: calc(100% - 6px);
min-height: 60px;
}
.link-card-title {
font-size: 18px;
font-weight: bold;
line-height: 22px;
max-height: 22px;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 2px;
}
.link-card-description {
font-size: 14px;
line-height: 18px;
max-height: 36px;
overflow: hidden;
}
.link-card-text {
flex: 1;
}
.link-card-url {
display: flex;
margin-top: 6px;
}
.link-card-favicon {
width: 16px;
height: 16px;
min-width: 16px;
margin-right: 6px;
}
.link-card-link {
font-size: 12px;
line-height: 16px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.link-card-image-wrapper {
flex: 1 1 180px;
min-height: 80px;
display: block;
position: relative;
}
.link-card-image {
display: block;
object-fit: cover;
border-radius: 1px;
width: 100%;
height: 100%;
} | 0.534855 | 0.096408 |
.stage, .stage .picture-wrapper .picture {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
body {
margin: 0; }
.stage {
background-color: #DAD3D1; }
.stage .picture-wrapper {
position: absolute;
top: 50%;
left: 50%;
width: 600px;
height: 300px;
transform: translate(-50%, -50%); }
.stage .picture-wrapper .picture {
background-image: url(./ogp.png);
background-size: cover;
background-position: center;
opacity: 0; }
.stage .picture-wrapper .picture:nth-child(1) {
clip: rect(0px, 30px, 30px, 0px); }
.stage .picture-wrapper .picture:nth-child(2) {
clip: rect(0px, 60px, 30px, 30px); }
.stage .picture-wrapper .picture:nth-child(3) {
clip: rect(0px, 90px, 30px, 60px); }
.stage .picture-wrapper .picture:nth-child(4) {
clip: rect(0px, 120px, 30px, 90px); }
.stage .picture-wrapper .picture:nth-child(5) {
clip: rect(0px, 150px, 30px, 120px); }
.stage .picture-wrapper .picture:nth-child(6) {
clip: rect(0px, 180px, 30px, 150px); }
.stage .picture-wrapper .picture:nth-child(7) {
clip: rect(0px, 210px, 30px, 180px); }
.stage .picture-wrapper .picture:nth-child(8) {
clip: rect(0px, 240px, 30px, 210px); }
.stage .picture-wrapper .picture:nth-child(9) {
clip: rect(0px, 270px, 30px, 240px); }
.stage .picture-wrapper .picture:nth-child(10) {
clip: rect(0px, 300px, 30px, 270px); }
.stage .picture-wrapper .picture:nth-child(11) {
clip: rect(0px, 330px, 30px, 300px); }
.stage .picture-wrapper .picture:nth-child(12) {
clip: rect(0px, 360px, 30px, 330px); }
.stage .picture-wrapper .picture:nth-child(13) {
clip: rect(0px, 390px, 30px, 360px); }
.stage .picture-wrapper .picture:nth-child(14) {
clip: rect(0px, 420px, 30px, 390px); }
.stage .picture-wrapper .picture:nth-child(15) {
clip: rect(0px, 450px, 30px, 420px); }
.stage .picture-wrapper .picture:nth-child(16) {
clip: rect(0px, 480px, 30px, 450px); }
.stage .picture-wrapper .picture:nth-child(17) {
clip: rect(0px, 510px, 30px, 480px); }
.stage .picture-wrapper .picture:nth-child(18) {
clip: rect(0px, 540px, 30px, 510px); }
.stage .picture-wrapper .picture:nth-child(19) {
clip: rect(0px, 570px, 30px, 540px); }
.stage .picture-wrapper .picture:nth-child(20) {
clip: rect(0px, 600px, 30px, 570px); }
.stage .picture-wrapper .picture:nth-child(21) {
clip: rect(30px, 30px, 60px, 0px); }
.stage .picture-wrapper .picture:nth-child(22) {
clip: rect(30px, 60px, 60px, 30px); }
.stage .picture-wrapper .picture:nth-child(23) {
clip: rect(30px, 90px, 60px, 60px); }
.stage .picture-wrapper .picture:nth-child(24) {
clip: rect(30px, 120px, 60px, 90px); }
.stage .picture-wrapper .picture:nth-child(25) {
clip: rect(30px, 150px, 60px, 120px); }
.stage .picture-wrapper .picture:nth-child(26) {
clip: rect(30px, 180px, 60px, 150px); }
.stage .picture-wrapper .picture:nth-child(27) {
clip: rect(30px, 210px, 60px, 180px); }
.stage .picture-wrapper .picture:nth-child(28) {
clip: rect(30px, 240px, 60px, 210px); }
.stage .picture-wrapper .picture:nth-child(29) {
clip: rect(30px, 270px, 60px, 240px); }
.stage .picture-wrapper .picture:nth-child(30) {
clip: rect(30px, 300px, 60px, 270px); }
.stage .picture-wrapper .picture:nth-child(31) {
clip: rect(30px, 330px, 60px, 300px); }
.stage .picture-wrapper .picture:nth-child(32) {
clip: rect(30px, 360px, 60px, 330px); }
.stage .picture-wrapper .picture:nth-child(33) {
clip: rect(30px, 390px, 60px, 360px); }
.stage .picture-wrapper .picture:nth-child(34) {
clip: rect(30px, 420px, 60px, 390px); }
.stage .picture-wrapper .picture:nth-child(35) {
clip: rect(30px, 450px, 60px, 420px); }
.stage .picture-wrapper .picture:nth-child(36) {
clip: rect(30px, 480px, 60px, 450px); }
.stage .picture-wrapper .picture:nth-child(37) {
clip: rect(30px, 510px, 60px, 480px); }
.stage .picture-wrapper .picture:nth-child(38) {
clip: rect(30px, 540px, 60px, 510px); }
.stage .picture-wrapper .picture:nth-child(39) {
clip: rect(30px, 570px, 60px, 540px); }
.stage .picture-wrapper .picture:nth-child(40) {
clip: rect(30px, 600px, 60px, 570px); }
.stage .picture-wrapper .picture:nth-child(41) {
clip: rect(60px, 30px, 90px, 0px); }
.stage .picture-wrapper .picture:nth-child(42) {
clip: rect(60px, 60px, 90px, 30px); }
.stage .picture-wrapper .picture:nth-child(43) {
clip: rect(60px, 90px, 90px, 60px); }
.stage .picture-wrapper .picture:nth-child(44) {
clip: rect(60px, 120px, 90px, 90px); }
.stage .picture-wrapper .picture:nth-child(45) {
clip: rect(60px, 150px, 90px, 120px); }
.stage .picture-wrapper .picture:nth-child(46) {
clip: rect(60px, 180px, 90px, 150px); }
.stage .picture-wrapper .picture:nth-child(47) {
clip: rect(60px, 210px, 90px, 180px); }
.stage .picture-wrapper .picture:nth-child(48) {
clip: rect(60px, 240px, 90px, 210px); }
.stage .picture-wrapper .picture:nth-child(49) {
clip: rect(60px, 270px, 90px, 240px); }
.stage .picture-wrapper .picture:nth-child(50) {
clip: rect(60px, 300px, 90px, 270px); }
.stage .picture-wrapper .picture:nth-child(51) {
clip: rect(60px, 330px, 90px, 300px); }
.stage .picture-wrapper .picture:nth-child(52) {
clip: rect(60px, 360px, 90px, 330px); }
.stage .picture-wrapper .picture:nth-child(53) {
clip: rect(60px, 390px, 90px, 360px); }
.stage .picture-wrapper .picture:nth-child(54) {
clip: rect(60px, 420px, 90px, 390px); }
.stage .picture-wrapper .picture:nth-child(55) {
clip: rect(60px, 450px, 90px, 420px); }
.stage .picture-wrapper .picture:nth-child(56) {
clip: rect(60px, 480px, 90px, 450px); }
.stage .picture-wrapper .picture:nth-child(57) {
clip: rect(60px, 510px, 90px, 480px); }
.stage .picture-wrapper .picture:nth-child(58) {
clip: rect(60px, 540px, 90px, 510px); }
.stage .picture-wrapper .picture:nth-child(59) {
clip: rect(60px, 570px, 90px, 540px); }
.stage .picture-wrapper .picture:nth-child(60) {
clip: rect(60px, 600px, 90px, 570px); }
.stage .picture-wrapper .picture:nth-child(61) {
clip: rect(90px, 30px, 120px, 0px); }
.stage .picture-wrapper .picture:nth-child(62) {
clip: rect(90px, 60px, 120px, 30px); }
.stage .picture-wrapper .picture:nth-child(63) {
clip: rect(90px, 90px, 120px, 60px); }
.stage .picture-wrapper .picture:nth-child(64) {
clip: rect(90px, 120px, 120px, 90px); }
.stage .picture-wrapper .picture:nth-child(65) {
clip: rect(90px, 150px, 120px, 120px); }
.stage .picture-wrapper .picture:nth-child(66) {
clip: rect(90px, 180px, 120px, 150px); }
.stage .picture-wrapper .picture:nth-child(67) {
clip: rect(90px, 210px, 120px, 180px); }
.stage .picture-wrapper .picture:nth-child(68) {
clip: rect(90px, 240px, 120px, 210px); }
.stage .picture-wrapper .picture:nth-child(69) {
clip: rect(90px, 270px, 120px, 240px); }
.stage .picture-wrapper .picture:nth-child(70) {
clip: rect(90px, 300px, 120px, 270px); }
.stage .picture-wrapper .picture:nth-child(71) {
clip: rect(90px, 330px, 120px, 300px); }
.stage .picture-wrapper .picture:nth-child(72) {
clip: rect(90px, 360px, 120px, 330px); }
.stage .picture-wrapper .picture:nth-child(73) {
clip: rect(90px, 390px, 120px, 360px); }
.stage .picture-wrapper .picture:nth-child(74) {
clip: rect(90px, 420px, 120px, 390px); }
.stage .picture-wrapper .picture:nth-child(75) {
clip: rect(90px, 450px, 120px, 420px); }
.stage .picture-wrapper .picture:nth-child(76) {
clip: rect(90px, 480px, 120px, 450px); }
.stage .picture-wrapper .picture:nth-child(77) {
clip: rect(90px, 510px, 120px, 480px); }
.stage .picture-wrapper .picture:nth-child(78) {
clip: rect(90px, 540px, 120px, 510px); }
.stage .picture-wrapper .picture:nth-child(79) {
clip: rect(90px, 570px, 120px, 540px); }
.stage .picture-wrapper .picture:nth-child(80) {
clip: rect(90px, 600px, 120px, 570px); }
.stage .picture-wrapper .picture:nth-child(81) {
clip: rect(120px, 30px, 150px, 0px); }
.stage .picture-wrapper .picture:nth-child(82) {
clip: rect(120px, 60px, 150px, 30px); }
.stage .picture-wrapper .picture:nth-child(83) {
clip: rect(120px, 90px, 150px, 60px); }
.stage .picture-wrapper .picture:nth-child(84) {
clip: rect(120px, 120px, 150px, 90px); }
.stage .picture-wrapper .picture:nth-child(85) {
clip: rect(120px, 150px, 150px, 120px); }
.stage .picture-wrapper .picture:nth-child(86) {
clip: rect(120px, 180px, 150px, 150px); }
.stage .picture-wrapper .picture:nth-child(87) {
clip: rect(120px, 210px, 150px, 180px); }
.stage .picture-wrapper .picture:nth-child(88) {
clip: rect(120px, 240px, 150px, 210px); }
.stage .picture-wrapper .picture:nth-child(89) {
clip: rect(120px, 270px, 150px, 240px); }
.stage .picture-wrapper .picture:nth-child(90) {
clip: rect(120px, 300px, 150px, 270px); }
.stage .picture-wrapper .picture:nth-child(91) {
clip: rect(120px, 330px, 150px, 300px); }
.stage .picture-wrapper .picture:nth-child(92) {
clip: rect(120px, 360px, 150px, 330px); }
.stage .picture-wrapper .picture:nth-child(93) {
clip: rect(120px, 390px, 150px, 360px); }
.stage .picture-wrapper .picture:nth-child(94) {
clip: rect(120px, 420px, 150px, 390px); }
.stage .picture-wrapper .picture:nth-child(95) {
clip: rect(120px, 450px, 150px, 420px); }
.stage .picture-wrapper .picture:nth-child(96) {
clip: rect(120px, 480px, 150px, 450px); }
.stage .picture-wrapper .picture:nth-child(97) {
clip: rect(120px, 510px, 150px, 480px); }
.stage .picture-wrapper .picture:nth-child(98) {
clip: rect(120px, 540px, 150px, 510px); }
.stage .picture-wrapper .picture:nth-child(99) {
clip: rect(120px, 570px, 150px, 540px); }
.stage .picture-wrapper .picture:nth-child(100) {
clip: rect(120px, 600px, 150px, 570px); }
.stage .picture-wrapper .picture:nth-child(101) {
clip: rect(150px, 30px, 180px, 0px); }
.stage .picture-wrapper .picture:nth-child(102) {
clip: rect(150px, 60px, 180px, 30px); }
.stage .picture-wrapper .picture:nth-child(103) {
clip: rect(150px, 90px, 180px, 60px); }
.stage .picture-wrapper .picture:nth-child(104) {
clip: rect(150px, 120px, 180px, 90px); }
.stage .picture-wrapper .picture:nth-child(105) {
clip: rect(150px, 150px, 180px, 120px); }
.stage .picture-wrapper .picture:nth-child(106) {
clip: rect(150px, 180px, 180px, 150px); }
.stage .picture-wrapper .picture:nth-child(107) {
clip: rect(150px, 210px, 180px, 180px); }
.stage .picture-wrapper .picture:nth-child(108) {
clip: rect(150px, 240px, 180px, 210px); }
.stage .picture-wrapper .picture:nth-child(109) {
clip: rect(150px, 270px, 180px, 240px); }
.stage .picture-wrapper .picture:nth-child(110) {
clip: rect(150px, 300px, 180px, 270px); }
.stage .picture-wrapper .picture:nth-child(111) {
clip: rect(150px, 330px, 180px, 300px); }
.stage .picture-wrapper .picture:nth-child(112) {
clip: rect(150px, 360px, 180px, 330px); }
.stage .picture-wrapper .picture:nth-child(113) {
clip: rect(150px, 390px, 180px, 360px); }
.stage .picture-wrapper .picture:nth-child(114) {
clip: rect(150px, 420px, 180px, 390px); }
.stage .picture-wrapper .picture:nth-child(115) {
clip: rect(150px, 450px, 180px, 420px); }
.stage .picture-wrapper .picture:nth-child(116) {
clip: rect(150px, 480px, 180px, 450px); }
.stage .picture-wrapper .picture:nth-child(117) {
clip: rect(150px, 510px, 180px, 480px); }
.stage .picture-wrapper .picture:nth-child(118) {
clip: rect(150px, 540px, 180px, 510px); }
.stage .picture-wrapper .picture:nth-child(119) {
clip: rect(150px, 570px, 180px, 540px); }
.stage .picture-wrapper .picture:nth-child(120) {
clip: rect(150px, 600px, 180px, 570px); }
.stage .picture-wrapper .picture:nth-child(121) {
clip: rect(180px, 30px, 210px, 0px); }
.stage .picture-wrapper .picture:nth-child(122) {
clip: rect(180px, 60px, 210px, 30px); }
.stage .picture-wrapper .picture:nth-child(123) {
clip: rect(180px, 90px, 210px, 60px); }
.stage .picture-wrapper .picture:nth-child(124) {
clip: rect(180px, 120px, 210px, 90px); }
.stage .picture-wrapper .picture:nth-child(125) {
clip: rect(180px, 150px, 210px, 120px); }
.stage .picture-wrapper .picture:nth-child(126) {
clip: rect(180px, 180px, 210px, 150px); }
.stage .picture-wrapper .picture:nth-child(127) {
clip: rect(180px, 210px, 210px, 180px); }
.stage .picture-wrapper .picture:nth-child(128) {
clip: rect(180px, 240px, 210px, 210px); }
.stage .picture-wrapper .picture:nth-child(129) {
clip: rect(180px, 270px, 210px, 240px); }
.stage .picture-wrapper .picture:nth-child(130) {
clip: rect(180px, 300px, 210px, 270px); }
.stage .picture-wrapper .picture:nth-child(131) {
clip: rect(180px, 330px, 210px, 300px); }
.stage .picture-wrapper .picture:nth-child(132) {
clip: rect(180px, 360px, 210px, 330px); }
.stage .picture-wrapper .picture:nth-child(133) {
clip: rect(180px, 390px, 210px, 360px); }
.stage .picture-wrapper .picture:nth-child(134) {
clip: rect(180px, 420px, 210px, 390px); }
.stage .picture-wrapper .picture:nth-child(135) {
clip: rect(180px, 450px, 210px, 420px); }
.stage .picture-wrapper .picture:nth-child(136) {
clip: rect(180px, 480px, 210px, 450px); }
.stage .picture-wrapper .picture:nth-child(137) {
clip: rect(180px, 510px, 210px, 480px); }
.stage .picture-wrapper .picture:nth-child(138) {
clip: rect(180px, 540px, 210px, 510px); }
.stage .picture-wrapper .picture:nth-child(139) {
clip: rect(180px, 570px, 210px, 540px); }
.stage .picture-wrapper .picture:nth-child(140) {
clip: rect(180px, 600px, 210px, 570px); }
.stage .picture-wrapper .picture:nth-child(141) {
clip: rect(210px, 30px, 240px, 0px); }
.stage .picture-wrapper .picture:nth-child(142) {
clip: rect(210px, 60px, 240px, 30px); }
.stage .picture-wrapper .picture:nth-child(143) {
clip: rect(210px, 90px, 240px, 60px); }
.stage .picture-wrapper .picture:nth-child(144) {
clip: rect(210px, 120px, 240px, 90px); }
.stage .picture-wrapper .picture:nth-child(145) {
clip: rect(210px, 150px, 240px, 120px); }
.stage .picture-wrapper .picture:nth-child(146) {
clip: rect(210px, 180px, 240px, 150px); }
.stage .picture-wrapper .picture:nth-child(147) {
clip: rect(210px, 210px, 240px, 180px); }
.stage .picture-wrapper .picture:nth-child(148) {
clip: rect(210px, 240px, 240px, 210px); }
.stage .picture-wrapper .picture:nth-child(149) {
clip: rect(210px, 270px, 240px, 240px); }
.stage .picture-wrapper .picture:nth-child(150) {
clip: rect(210px, 300px, 240px, 270px); }
.stage .picture-wrapper .picture:nth-child(151) {
clip: rect(210px, 330px, 240px, 300px); }
.stage .picture-wrapper .picture:nth-child(152) {
clip: rect(210px, 360px, 240px, 330px); }
.stage .picture-wrapper .picture:nth-child(153) {
clip: rect(210px, 390px, 240px, 360px); }
.stage .picture-wrapper .picture:nth-child(154) {
clip: rect(210px, 420px, 240px, 390px); }
.stage .picture-wrapper .picture:nth-child(155) {
clip: rect(210px, 450px, 240px, 420px); }
.stage .picture-wrapper .picture:nth-child(156) {
clip: rect(210px, 480px, 240px, 450px); }
.stage .picture-wrapper .picture:nth-child(157) {
clip: rect(210px, 510px, 240px, 480px); }
.stage .picture-wrapper .picture:nth-child(158) {
clip: rect(210px, 540px, 240px, 510px); }
.stage .picture-wrapper .picture:nth-child(159) {
clip: rect(210px, 570px, 240px, 540px); }
.stage .picture-wrapper .picture:nth-child(160) {
clip: rect(210px, 600px, 240px, 570px); }
.stage .picture-wrapper .picture:nth-child(161) {
clip: rect(240px, 30px, 270px, 0px); }
.stage .picture-wrapper .picture:nth-child(162) {
clip: rect(240px, 60px, 270px, 30px); }
.stage .picture-wrapper .picture:nth-child(163) {
clip: rect(240px, 90px, 270px, 60px); }
.stage .picture-wrapper .picture:nth-child(164) {
clip: rect(240px, 120px, 270px, 90px); }
.stage .picture-wrapper .picture:nth-child(165) {
clip: rect(240px, 150px, 270px, 120px); }
.stage .picture-wrapper .picture:nth-child(166) {
clip: rect(240px, 180px, 270px, 150px); }
.stage .picture-wrapper .picture:nth-child(167) {
clip: rect(240px, 210px, 270px, 180px); }
.stage .picture-wrapper .picture:nth-child(168) {
clip: rect(240px, 240px, 270px, 210px); }
.stage .picture-wrapper .picture:nth-child(169) {
clip: rect(240px, 270px, 270px, 240px); }
.stage .picture-wrapper .picture:nth-child(170) {
clip: rect(240px, 300px, 270px, 270px); }
.stage .picture-wrapper .picture:nth-child(171) {
clip: rect(240px, 330px, 270px, 300px); }
.stage .picture-wrapper .picture:nth-child(172) {
clip: rect(240px, 360px, 270px, 330px); }
.stage .picture-wrapper .picture:nth-child(173) {
clip: rect(240px, 390px, 270px, 360px); }
.stage .picture-wrapper .picture:nth-child(174) {
clip: rect(240px, 420px, 270px, 390px); }
.stage .picture-wrapper .picture:nth-child(175) {
clip: rect(240px, 450px, 270px, 420px); }
.stage .picture-wrapper .picture:nth-child(176) {
clip: rect(240px, 480px, 270px, 450px); }
.stage .picture-wrapper .picture:nth-child(177) {
clip: rect(240px, 510px, 270px, 480px); }
.stage .picture-wrapper .picture:nth-child(178) {
clip: rect(240px, 540px, 270px, 510px); }
.stage .picture-wrapper .picture:nth-child(179) {
clip: rect(240px, 570px, 270px, 540px); }
.stage .picture-wrapper .picture:nth-child(180) {
clip: rect(240px, 600px, 270px, 570px); }
.stage .picture-wrapper .picture:nth-child(181) {
clip: rect(270px, 30px, 300px, 0px); }
.stage .picture-wrapper .picture:nth-child(182) {
clip: rect(270px, 60px, 300px, 30px); }
.stage .picture-wrapper .picture:nth-child(183) {
clip: rect(270px, 90px, 300px, 60px); }
.stage .picture-wrapper .picture:nth-child(184) {
clip: rect(270px, 120px, 300px, 90px); }
.stage .picture-wrapper .picture:nth-child(185) {
clip: rect(270px, 150px, 300px, 120px); }
.stage .picture-wrapper .picture:nth-child(186) {
clip: rect(270px, 180px, 300px, 150px); }
.stage .picture-wrapper .picture:nth-child(187) {
clip: rect(270px, 210px, 300px, 180px); }
.stage .picture-wrapper .picture:nth-child(188) {
clip: rect(270px, 240px, 300px, 210px); }
.stage .picture-wrapper .picture:nth-child(189) {
clip: rect(270px, 270px, 300px, 240px); }
.stage .picture-wrapper .picture:nth-child(190) {
clip: rect(270px, 300px, 300px, 270px); }
.stage .picture-wrapper .picture:nth-child(191) {
clip: rect(270px, 330px, 300px, 300px); }
.stage .picture-wrapper .picture:nth-child(192) {
clip: rect(270px, 360px, 300px, 330px); }
.stage .picture-wrapper .picture:nth-child(193) {
clip: rect(270px, 390px, 300px, 360px); }
.stage .picture-wrapper .picture:nth-child(194) {
clip: rect(270px, 420px, 300px, 390px); }
.stage .picture-wrapper .picture:nth-child(195) {
clip: rect(270px, 450px, 300px, 420px); }
.stage .picture-wrapper .picture:nth-child(196) {
clip: rect(270px, 480px, 300px, 450px); }
.stage .picture-wrapper .picture:nth-child(197) {
clip: rect(270px, 510px, 300px, 480px); }
.stage .picture-wrapper .picture:nth-child(198) {
clip: rect(270px, 540px, 300px, 510px); }
.stage .picture-wrapper .picture:nth-child(199) {
clip: rect(270px, 570px, 300px, 540px); }
.stage .picture-wrapper .picture:nth-child(200) {
clip: rect(270px, 600px, 300px, 570px); }
.picture-wrapper .picture:nth-child(1) {
animation: fly1 1.14536s ease-in 0.6817s forwards; }
.picture-wrapper .picture:nth-child(2) {
animation: fly1 0.6227s ease-in 0.02837s forwards; }
.picture-wrapper .picture:nth-child(3) {
animation: fly1 1.05781s ease-in 0.57226s forwards; }
.picture-wrapper .picture:nth-child(4) {
animation: fly1 0.67005s ease-in 0.08756s forwards; }
.picture-wrapper .picture:nth-child(5) {
animation: fly1 1.01707s ease-in 0.52134s forwards; }
.picture-wrapper .picture:nth-child(6) {
animation: fly1 0.98132s ease-in 0.47665s forwards; }
.picture-wrapper .picture:nth-child(7) {
animation: fly1 1.22337s ease-in 0.77922s forwards; }
.picture-wrapper .picture:nth-child(8) {
animation: fly1 1.12197s ease-in 0.65247s forwards; }
.picture-wrapper .picture:nth-child(9) {
animation: fly1 1.22601s ease-in 0.78251s forwards; }
.picture-wrapper .picture:nth-child(10) {
animation: fly1 0.73133s ease-in 0.16417s forwards; }
.picture-wrapper .picture:nth-child(11) {
animation: fly1 0.78336s ease-in 0.2292s forwards; }
.picture-wrapper .picture:nth-child(12) {
animation: fly1 0.97718s ease-in 0.47148s forwards; }
.picture-wrapper .picture:nth-child(13) {
animation: fly1 0.98487s ease-in 0.48109s forwards; }
.picture-wrapper .picture:nth-child(14) {
animation: fly1 1.39152s ease-in 0.9894s forwards; }
.picture-wrapper .picture:nth-child(15) {
animation: fly1 1.10828s ease-in 0.63535s forwards; }
.picture-wrapper .picture:nth-child(16) {
animation: fly1 1.25787s ease-in 0.82234s forwards; }
.picture-wrapper .picture:nth-child(17) {
animation: fly1 0.66353s ease-in 0.07941s forwards; }
.picture-wrapper .picture:nth-child(18) {
animation: fly1 1.25088s ease-in 0.8136s forwards; }
.picture-wrapper .picture:nth-child(19) {
animation: fly1 1.11643s ease-in 0.64554s forwards; }
.picture-wrapper .picture:nth-child(20) {
animation: fly1 1.37517s ease-in 0.96896s forwards; }
.picture-wrapper .picture:nth-child(21) {
animation: fly1 1.0519s ease-in 0.56488s forwards; }
.picture-wrapper .picture:nth-child(22) {
animation: fly1 1.25652s ease-in 0.82065s forwards; }
.picture-wrapper .picture:nth-child(23) {
animation: fly1 0.93975s ease-in 0.42469s forwards; }
.picture-wrapper .picture:nth-child(24) {
animation: fly1 0.65625s ease-in 0.07031s forwards; }
.picture-wrapper .picture:nth-child(25) {
animation: fly1 0.6716s ease-in 0.08949s forwards; }
.picture-wrapper .picture:nth-child(26) {
animation: fly1 1.20809s ease-in 0.76012s forwards; }
.picture-wrapper .picture:nth-child(27) {
animation: fly1 0.61795s ease-in 0.02243s forwards; }
.picture-wrapper .picture:nth-child(28) {
animation: fly1 1.38279s ease-in 0.97849s forwards; }
.picture-wrapper .picture:nth-child(29) {
animation: fly1 0.81633s ease-in 0.27041s forwards; }
.picture-wrapper .picture:nth-child(30) {
animation: fly1 0.95465s ease-in 0.44332s forwards; }
.picture-wrapper .picture:nth-child(31) {
animation: fly1 0.73129s ease-in 0.16411s forwards; }
.picture-wrapper .picture:nth-child(32) {
animation: fly1 1.37422s ease-in 0.96778s forwards; }
.picture-wrapper .picture:nth-child(33) {
animation: fly1 1.17424s ease-in 0.7178s forwards; }
.picture-wrapper .picture:nth-child(34) {
animation: fly1 1.39425s ease-in 0.99282s forwards; }
.picture-wrapper .picture:nth-child(35) {
animation: fly1 0.67049s ease-in 0.08811s forwards; }
.picture-wrapper .picture:nth-child(36) {
animation: fly1 1.39829s ease-in 0.99786s forwards; }
.picture-wrapper .picture:nth-child(37) {
animation: fly1 0.8177s ease-in 0.27213s forwards; }
.picture-wrapper .picture:nth-child(38) {
animation: fly1 1.34033s ease-in 0.92541s forwards; }
.picture-wrapper .picture:nth-child(39) {
animation: fly1 0.9549s ease-in 0.44362s forwards; }
.picture-wrapper .picture:nth-child(40) {
animation: fly1 1.22621s ease-in 0.78277s forwards; }
.picture-wrapper .picture:nth-child(41) {
animation: fly1 0.91029s ease-in 0.38787s forwards; }
.picture-wrapper .picture:nth-child(42) {
animation: fly1 0.73366s ease-in 0.16707s forwards; }
.picture-wrapper .picture:nth-child(43) {
animation: fly1 0.94288s ease-in 0.4286s forwards; }
.picture-wrapper .picture:nth-child(44) {
animation: fly1 1.03996s ease-in 0.54994s forwards; }
.picture-wrapper .picture:nth-child(45) {
animation: fly1 1.29896s ease-in 0.8737s forwards; }
.picture-wrapper .picture:nth-child(46) {
animation: fly1 1.09233s ease-in 0.61542s forwards; }
.picture-wrapper .picture:nth-child(47) {
animation: fly1 1.22613s ease-in 0.78267s forwards; }
.picture-wrapper .picture:nth-child(48) {
animation: fly1 1.06134s ease-in 0.57667s forwards; }
.picture-wrapper .picture:nth-child(49) {
animation: fly1 0.81109s ease-in 0.26386s forwards; }
.picture-wrapper .picture:nth-child(50) {
animation: fly1 1.21483s ease-in 0.76853s forwards; }
.picture-wrapper .picture:nth-child(51) {
animation: fly1 1.2118s ease-in 0.76475s forwards; }
.picture-wrapper .picture:nth-child(52) {
animation: fly1 0.80873s ease-in 0.26091s forwards; }
.picture-wrapper .picture:nth-child(53) {
animation: fly1 1.38929s ease-in 0.98661s forwards; }
.picture-wrapper .picture:nth-child(54) {
animation: fly1 1.02092s ease-in 0.52615s forwards; }
.picture-wrapper .picture:nth-child(55) {
animation: fly1 0.99059s ease-in 0.48824s forwards; }
.picture-wrapper .picture:nth-child(56) {
animation: fly1 0.8868s ease-in 0.35849s forwards; }
.picture-wrapper .picture:nth-child(57) {
animation: fly1 0.69022s ease-in 0.11278s forwards; }
.picture-wrapper .picture:nth-child(58) {
animation: fly1 0.73505s ease-in 0.16881s forwards; }
.picture-wrapper .picture:nth-child(59) {
animation: fly1 1.38717s ease-in 0.98396s forwards; }
.picture-wrapper .picture:nth-child(60) {
animation: fly1 0.91326s ease-in 0.39158s forwards; }
.picture-wrapper .picture:nth-child(61) {
animation: fly1 0.94344s ease-in 0.4293s forwards; }
.picture-wrapper .picture:nth-child(62) {
animation: fly1 1.35341s ease-in 0.94176s forwards; }
.picture-wrapper .picture:nth-child(63) {
animation: fly1 0.97913s ease-in 0.47391s forwards; }
.picture-wrapper .picture:nth-child(64) {
animation: fly1 0.6801s ease-in 0.10013s forwards; }
.picture-wrapper .picture:nth-child(65) {
animation: fly1 1.0814s ease-in 0.60174s forwards; }
.picture-wrapper .picture:nth-child(66) {
animation: fly1 1.03001s ease-in 0.53751s forwards; }
.picture-wrapper .picture:nth-child(67) {
animation: fly1 0.68746s ease-in 0.10932s forwards; }
.picture-wrapper .picture:nth-child(68) {
animation: fly1 0.71726s ease-in 0.14657s forwards; }
.picture-wrapper .picture:nth-child(69) {
animation: fly1 0.87477s ease-in 0.34346s forwards; }
.picture-wrapper .picture:nth-child(70) {
animation: fly1 1.34236s ease-in 0.92795s forwards; }
.picture-wrapper .picture:nth-child(71) {
animation: fly1 1.36406s ease-in 0.95508s forwards; }
.picture-wrapper .picture:nth-child(72) {
animation: fly1 1.06365s ease-in 0.57957s forwards; }
.picture-wrapper .picture:nth-child(73) {
animation: fly1 1.14319s ease-in 0.67898s forwards; }
.picture-wrapper .picture:nth-child(74) {
animation: fly1 1.25016s ease-in 0.8127s forwards; }
.picture-wrapper .picture:nth-child(75) {
animation: fly1 1.07856s ease-in 0.59819s forwards; }
.picture-wrapper .picture:nth-child(76) {
animation: fly1 0.80014s ease-in 0.25017s forwards; }
.picture-wrapper .picture:nth-child(77) {
animation: fly1 0.83992s ease-in 0.2999s forwards; }
.picture-wrapper .picture:nth-child(78) {
animation: fly1 1.28083s ease-in 0.85104s forwards; }
.picture-wrapper .picture:nth-child(79) {
animation: fly1 1.14879s ease-in 0.68599s forwards; }
.picture-wrapper .picture:nth-child(80) {
animation: fly1 0.74222s ease-in 0.17778s forwards; }
.picture-wrapper .picture:nth-child(81) {
animation: fly1 0.94408s ease-in 0.4301s forwards; }
.picture-wrapper .picture:nth-child(82) {
animation: fly1 0.90349s ease-in 0.37937s forwards; }
.picture-wrapper .picture:nth-child(83) {
animation: fly1 0.69463s ease-in 0.11829s forwards; }
.picture-wrapper .picture:nth-child(84) {
animation: fly1 0.82163s ease-in 0.27704s forwards; }
.picture-wrapper .picture:nth-child(85) {
animation: fly1 0.89218s ease-in 0.36523s forwards; }
.picture-wrapper .picture:nth-child(86) {
animation: fly1 1.26777s ease-in 0.83471s forwards; }
.picture-wrapper .picture:nth-child(87) {
animation: fly1 0.90471s ease-in 0.38088s forwards; }
.picture-wrapper .picture:nth-child(88) {
animation: fly1 0.70917s ease-in 0.13646s forwards; }
.picture-wrapper .picture:nth-child(89) {
animation: fly1 0.62963s ease-in 0.03704s forwards; }
.picture-wrapper .picture:nth-child(90) {
animation: fly1 0.9239s ease-in 0.40487s forwards; }
.picture-wrapper .picture:nth-child(91) {
animation: fly1 0.73008s ease-in 0.1626s forwards; }
.picture-wrapper .picture:nth-child(92) {
animation: fly1 1.38869s ease-in 0.98586s forwards; }
.picture-wrapper .picture:nth-child(93) {
animation: fly1 1.35989s ease-in 0.94986s forwards; }
.picture-wrapper .picture:nth-child(94) {
animation: fly1 0.70021s ease-in 0.12526s forwards; }
.picture-wrapper .picture:nth-child(95) {
animation: fly1 1.07068s ease-in 0.58835s forwards; }
.picture-wrapper .picture:nth-child(96) {
animation: fly1 1.27888s ease-in 0.8486s forwards; }
.picture-wrapper .picture:nth-child(97) {
animation: fly1 1.12779s ease-in 0.65974s forwards; }
.picture-wrapper .picture:nth-child(98) {
animation: fly1 0.82191s ease-in 0.27739s forwards; }
.picture-wrapper .picture:nth-child(99) {
animation: fly1 0.60508s ease-in 0.00635s forwards; }
.picture-wrapper .picture:nth-child(100) {
animation: fly1 1.24088s ease-in 0.8011s forwards; }
.picture-wrapper .picture:nth-child(101) {
animation: fly1 0.79172s ease-in 0.23965s forwards; }
.picture-wrapper .picture:nth-child(102) {
animation: fly1 1.09453s ease-in 0.61816s forwards; }
.picture-wrapper .picture:nth-child(103) {
animation: fly1 1.06576s ease-in 0.5822s forwards; }
.picture-wrapper .picture:nth-child(104) {
animation: fly1 1.10875s ease-in 0.63594s forwards; }
.picture-wrapper .picture:nth-child(105) {
animation: fly1 1.3022s ease-in 0.87775s forwards; }
.picture-wrapper .picture:nth-child(106) {
animation: fly1 0.65971s ease-in 0.07464s forwards; }
.picture-wrapper .picture:nth-child(107) {
animation: fly1 0.66412s ease-in 0.08015s forwards; }
.picture-wrapper .picture:nth-child(108) {
animation: fly1 1.39097s ease-in 0.98872s forwards; }
.picture-wrapper .picture:nth-child(109) {
animation: fly1 1.16756s ease-in 0.70945s forwards; }
.picture-wrapper .picture:nth-child(110) {
animation: fly1 1.05124s ease-in 0.56405s forwards; }
.picture-wrapper .picture:nth-child(111) {
animation: fly1 1.37859s ease-in 0.97324s forwards; }
.picture-wrapper .picture:nth-child(112) {
animation: fly1 1.10903s ease-in 0.63629s forwards; }
.picture-wrapper .picture:nth-child(113) {
animation: fly1 1.12696s ease-in 0.6587s forwards; }
.picture-wrapper .picture:nth-child(114) {
animation: fly1 1.28316s ease-in 0.85396s forwards; }
.picture-wrapper .picture:nth-child(115) {
animation: fly1 0.85461s ease-in 0.31827s forwards; }
.picture-wrapper .picture:nth-child(116) {
animation: fly1 0.97241s ease-in 0.46551s forwards; }
.picture-wrapper .picture:nth-child(117) {
animation: fly1 0.92937s ease-in 0.41171s forwards; }
.picture-wrapper .picture:nth-child(118) {
animation: fly1 1.13247s ease-in 0.66559s forwards; }
.picture-wrapper .picture:nth-child(119) {
animation: fly1 1.3471s ease-in 0.93388s forwards; }
.picture-wrapper .picture:nth-child(120) {
animation: fly1 0.91713s ease-in 0.39641s forwards; }
.picture-wrapper .picture:nth-child(121) {
animation: fly1 0.63171s ease-in 0.03964s forwards; }
.picture-wrapper .picture:nth-child(122) {
animation: fly1 0.6469s ease-in 0.05863s forwards; }
.picture-wrapper .picture:nth-child(123) {
animation: fly1 1.12671s ease-in 0.65839s forwards; }
.picture-wrapper .picture:nth-child(124) {
animation: fly1 1.03836s ease-in 0.54795s forwards; }
.picture-wrapper .picture:nth-child(125) {
animation: fly1 1.33114s ease-in 0.91392s forwards; }
.picture-wrapper .picture:nth-child(126) {
animation: fly1 1.26996s ease-in 0.83745s forwards; }
.picture-wrapper .picture:nth-child(127) {
animation: fly1 0.7349s ease-in 0.16863s forwards; }
.picture-wrapper .picture:nth-child(128) {
animation: fly1 1.12425s ease-in 0.65531s forwards; }
.picture-wrapper .picture:nth-child(129) {
animation: fly1 1.03672s ease-in 0.5459s forwards; }
.picture-wrapper .picture:nth-child(130) {
animation: fly1 0.73569s ease-in 0.16961s forwards; }
.picture-wrapper .picture:nth-child(131) {
animation: fly1 1.21567s ease-in 0.76958s forwards; }
.picture-wrapper .picture:nth-child(132) {
animation: fly1 1.30429s ease-in 0.88036s forwards; }
.picture-wrapper .picture:nth-child(133) {
animation: fly1 1.1782s ease-in 0.72275s forwards; }
.picture-wrapper .picture:nth-child(134) {
animation: fly1 1.21674s ease-in 0.77092s forwards; }
.picture-wrapper .picture:nth-child(135) {
animation: fly1 0.6448s ease-in 0.056s forwards; }
.picture-wrapper .picture:nth-child(136) {
animation: fly1 1.22156s ease-in 0.77695s forwards; }
.picture-wrapper .picture:nth-child(137) {
animation: fly1 1.35138s ease-in 0.93923s forwards; }
.picture-wrapper .picture:nth-child(138) {
animation: fly1 0.88988s ease-in 0.36235s forwards; }
.picture-wrapper .picture:nth-child(139) {
animation: fly1 1.08328s ease-in 0.60411s forwards; }
.picture-wrapper .picture:nth-child(140) {
animation: fly1 1.36543s ease-in 0.95679s forwards; }
.picture-wrapper .picture:nth-child(141) {
animation: fly1 0.66551s ease-in 0.08189s forwards; }
.picture-wrapper .picture:nth-child(142) {
animation: fly1 1.12423s ease-in 0.65529s forwards; }
.picture-wrapper .picture:nth-child(143) {
animation: fly1 1.13763s ease-in 0.67204s forwards; }
.picture-wrapper .picture:nth-child(144) {
animation: fly1 1.39349s ease-in 0.99187s forwards; }
.picture-wrapper .picture:nth-child(145) {
animation: fly1 0.89927s ease-in 0.37409s forwards; }
.picture-wrapper .picture:nth-child(146) {
animation: fly1 0.79777s ease-in 0.24722s forwards; }
.picture-wrapper .picture:nth-child(147) {
animation: fly1 0.6966s ease-in 0.12075s forwards; }
.picture-wrapper .picture:nth-child(148) {
animation: fly1 0.93802s ease-in 0.42252s forwards; }
.picture-wrapper .picture:nth-child(149) {
animation: fly1 1.31071s ease-in 0.88838s forwards; }
.picture-wrapper .picture:nth-child(150) {
animation: fly1 0.61927s ease-in 0.02408s forwards; }
.picture-wrapper .picture:nth-child(151) {
animation: fly1 0.92832s ease-in 0.41041s forwards; }
.picture-wrapper .picture:nth-child(152) {
animation: fly1 0.89504s ease-in 0.3688s forwards; }
.picture-wrapper .picture:nth-child(153) {
animation: fly1 0.95916s ease-in 0.44895s forwards; }
.picture-wrapper .picture:nth-child(154) {
animation: fly1 0.9596s ease-in 0.4495s forwards; }
.picture-wrapper .picture:nth-child(155) {
animation: fly1 1.36646s ease-in 0.95808s forwards; }
.picture-wrapper .picture:nth-child(156) {
animation: fly1 0.7045s ease-in 0.13062s forwards; }
.picture-wrapper .picture:nth-child(157) {
animation: fly1 0.92435s ease-in 0.40544s forwards; }
.picture-wrapper .picture:nth-child(158) {
animation: fly1 0.93996s ease-in 0.42495s forwards; }
.picture-wrapper .picture:nth-child(159) {
animation: fly1 0.73197s ease-in 0.16496s forwards; }
.picture-wrapper .picture:nth-child(160) {
animation: fly1 0.60765s ease-in 0.00956s forwards; }
.picture-wrapper .picture:nth-child(161) {
animation: fly1 1.35586s ease-in 0.94482s forwards; }
.picture-wrapper .picture:nth-child(162) {
animation: fly1 0.9155s ease-in 0.39438s forwards; }
.picture-wrapper .picture:nth-child(163) {
animation: fly1 1.34214s ease-in 0.92767s forwards; }
.picture-wrapper .picture:nth-child(164) {
animation: fly1 1.00797s ease-in 0.50996s forwards; }
.picture-wrapper .picture:nth-child(165) {
animation: fly1 1.19914s ease-in 0.74892s forwards; }
.picture-wrapper .picture:nth-child(166) {
animation: fly1 1.05297s ease-in 0.56621s forwards; }
.picture-wrapper .picture:nth-child(167) {
animation: fly1 1.24697s ease-in 0.80871s forwards; }
.picture-wrapper .picture:nth-child(168) {
animation: fly1 0.78786s ease-in 0.23482s forwards; }
.picture-wrapper .picture:nth-child(169) {
animation: fly1 1.11847s ease-in 0.64809s forwards; }
.picture-wrapper .picture:nth-child(170) {
animation: fly1 1.26639s ease-in 0.83299s forwards; }
.picture-wrapper .picture:nth-child(171) {
animation: fly1 0.84503s ease-in 0.30628s forwards; }
.picture-wrapper .picture:nth-child(172) {
animation: fly1 1.1837s ease-in 0.72963s forwards; }
.picture-wrapper .picture:nth-child(173) {
animation: fly1 1.35165s ease-in 0.93956s forwards; }
.picture-wrapper .picture:nth-child(174) {
animation: fly1 0.75026s ease-in 0.18783s forwards; }
.picture-wrapper .picture:nth-child(175) {
animation: fly1 1.05766s ease-in 0.57207s forwards; }
.picture-wrapper .picture:nth-child(176) {
animation: fly1 1.19983s ease-in 0.74978s forwards; }
.picture-wrapper .picture:nth-child(177) {
animation: fly1 0.62923s ease-in 0.03654s forwards; }
.picture-wrapper .picture:nth-child(178) {
animation: fly1 1.39071s ease-in 0.98838s forwards; }
.picture-wrapper .picture:nth-child(179) {
animation: fly1 1.31535s ease-in 0.89419s forwards; }
.picture-wrapper .picture:nth-child(180) {
animation: fly1 1.08489s ease-in 0.60611s forwards; }
.picture-wrapper .picture:nth-child(181) {
animation: fly1 0.68549s ease-in 0.10686s forwards; }
.picture-wrapper .picture:nth-child(182) {
animation: fly1 0.83606s ease-in 0.29507s forwards; }
.picture-wrapper .picture:nth-child(183) {
animation: fly1 0.76083s ease-in 0.20104s forwards; }
.picture-wrapper .picture:nth-child(184) {
animation: fly1 1.00231s ease-in 0.50288s forwards; }
.picture-wrapper .picture:nth-child(185) {
animation: fly1 1.26626s ease-in 0.83282s forwards; }
.picture-wrapper .picture:nth-child(186) {
animation: fly1 1.02752s ease-in 0.5344s forwards; }
.picture-wrapper .picture:nth-child(187) {
animation: fly1 1.28782s ease-in 0.85978s forwards; }
.picture-wrapper .picture:nth-child(188) {
animation: fly1 0.66054s ease-in 0.07567s forwards; }
.picture-wrapper .picture:nth-child(189) {
animation: fly1 0.96231s ease-in 0.45289s forwards; }
.picture-wrapper .picture:nth-child(190) {
animation: fly1 0.60691s ease-in 0.00864s forwards; }
.picture-wrapper .picture:nth-child(191) {
animation: fly1 0.84885s ease-in 0.31106s forwards; }
.picture-wrapper .picture:nth-child(192) {
animation: fly1 1.35098s ease-in 0.93873s forwards; }
.picture-wrapper .picture:nth-child(193) {
animation: fly1 1.19262s ease-in 0.74077s forwards; }
.picture-wrapper .picture:nth-child(194) {
animation: fly1 1.20964s ease-in 0.76205s forwards; }
.picture-wrapper .picture:nth-child(195) {
animation: fly1 1.22819s ease-in 0.78524s forwards; }
.picture-wrapper .picture:nth-child(196) {
animation: fly1 1.24362s ease-in 0.80453s forwards; }
.picture-wrapper .picture:nth-child(197) {
animation: fly1 0.96002s ease-in 0.45003s forwards; }
.picture-wrapper .picture:nth-child(198) {
animation: fly1 1.35682s ease-in 0.94602s forwards; }
.picture-wrapper .picture:nth-child(199) {
animation: fly1 1.24808s ease-in 0.8101s forwards; }
.picture-wrapper .picture:nth-child(200) {
animation: fly1 0.99823s ease-in 0.49779s forwards; }
@keyframes fadein {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes bound {
0% {
transform: scale(0); }
40% {
transform: scale(1); }
50% {
transform: scale(0.9); }
60% {
transform: scale(1); }
70% {
transform: scale(0.95); }
80% {
transform: scale(1); }
90% {
transform: scale(0.975); }
100% {
transform: scale(1); } }
@keyframes bound- {
0% {
transform: scale(1); }
40% {
transform: scale(0); }
50% {
transform: scale(0.1); }
60% {
transform: scale(0); }
70% {
transform: scale(0.05); }
80% {
transform: scale(0); }
90% {
transform: scale(0.075); }
100% {
transform: scale(0); } }
@keyframes fly1 {
0% {
transform: rotate(0deg) scale(2);
opacity: 0; }
40% {
transform: rotate(360deg) scale(1);
opacity: 1; }
50% {
transform: rotate(360deg) scale(1.075);
opacity: 1; }
60% {
transform: rotate(360deg) scale(1);
opacity: 1; }
70% {
transform: rotate(360deg) scale(1.04);
opacity: 1; }
80% {
transform: rotate(360deg) scale(1);
opacity: 1; }
90% {
transform: rotate(360deg) scale(1.02);
opacity: 1; }
100% {
transform: rotate(360deg) scale(1);
opacity: 1; } } | public/content/picture/style.css | .stage, .stage .picture-wrapper .picture {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
body {
margin: 0; }
.stage {
background-color: #DAD3D1; }
.stage .picture-wrapper {
position: absolute;
top: 50%;
left: 50%;
width: 600px;
height: 300px;
transform: translate(-50%, -50%); }
.stage .picture-wrapper .picture {
background-image: url(./ogp.png);
background-size: cover;
background-position: center;
opacity: 0; }
.stage .picture-wrapper .picture:nth-child(1) {
clip: rect(0px, 30px, 30px, 0px); }
.stage .picture-wrapper .picture:nth-child(2) {
clip: rect(0px, 60px, 30px, 30px); }
.stage .picture-wrapper .picture:nth-child(3) {
clip: rect(0px, 90px, 30px, 60px); }
.stage .picture-wrapper .picture:nth-child(4) {
clip: rect(0px, 120px, 30px, 90px); }
.stage .picture-wrapper .picture:nth-child(5) {
clip: rect(0px, 150px, 30px, 120px); }
.stage .picture-wrapper .picture:nth-child(6) {
clip: rect(0px, 180px, 30px, 150px); }
.stage .picture-wrapper .picture:nth-child(7) {
clip: rect(0px, 210px, 30px, 180px); }
.stage .picture-wrapper .picture:nth-child(8) {
clip: rect(0px, 240px, 30px, 210px); }
.stage .picture-wrapper .picture:nth-child(9) {
clip: rect(0px, 270px, 30px, 240px); }
.stage .picture-wrapper .picture:nth-child(10) {
clip: rect(0px, 300px, 30px, 270px); }
.stage .picture-wrapper .picture:nth-child(11) {
clip: rect(0px, 330px, 30px, 300px); }
.stage .picture-wrapper .picture:nth-child(12) {
clip: rect(0px, 360px, 30px, 330px); }
.stage .picture-wrapper .picture:nth-child(13) {
clip: rect(0px, 390px, 30px, 360px); }
.stage .picture-wrapper .picture:nth-child(14) {
clip: rect(0px, 420px, 30px, 390px); }
.stage .picture-wrapper .picture:nth-child(15) {
clip: rect(0px, 450px, 30px, 420px); }
.stage .picture-wrapper .picture:nth-child(16) {
clip: rect(0px, 480px, 30px, 450px); }
.stage .picture-wrapper .picture:nth-child(17) {
clip: rect(0px, 510px, 30px, 480px); }
.stage .picture-wrapper .picture:nth-child(18) {
clip: rect(0px, 540px, 30px, 510px); }
.stage .picture-wrapper .picture:nth-child(19) {
clip: rect(0px, 570px, 30px, 540px); }
.stage .picture-wrapper .picture:nth-child(20) {
clip: rect(0px, 600px, 30px, 570px); }
.stage .picture-wrapper .picture:nth-child(21) {
clip: rect(30px, 30px, 60px, 0px); }
.stage .picture-wrapper .picture:nth-child(22) {
clip: rect(30px, 60px, 60px, 30px); }
.stage .picture-wrapper .picture:nth-child(23) {
clip: rect(30px, 90px, 60px, 60px); }
.stage .picture-wrapper .picture:nth-child(24) {
clip: rect(30px, 120px, 60px, 90px); }
.stage .picture-wrapper .picture:nth-child(25) {
clip: rect(30px, 150px, 60px, 120px); }
.stage .picture-wrapper .picture:nth-child(26) {
clip: rect(30px, 180px, 60px, 150px); }
.stage .picture-wrapper .picture:nth-child(27) {
clip: rect(30px, 210px, 60px, 180px); }
.stage .picture-wrapper .picture:nth-child(28) {
clip: rect(30px, 240px, 60px, 210px); }
.stage .picture-wrapper .picture:nth-child(29) {
clip: rect(30px, 270px, 60px, 240px); }
.stage .picture-wrapper .picture:nth-child(30) {
clip: rect(30px, 300px, 60px, 270px); }
.stage .picture-wrapper .picture:nth-child(31) {
clip: rect(30px, 330px, 60px, 300px); }
.stage .picture-wrapper .picture:nth-child(32) {
clip: rect(30px, 360px, 60px, 330px); }
.stage .picture-wrapper .picture:nth-child(33) {
clip: rect(30px, 390px, 60px, 360px); }
.stage .picture-wrapper .picture:nth-child(34) {
clip: rect(30px, 420px, 60px, 390px); }
.stage .picture-wrapper .picture:nth-child(35) {
clip: rect(30px, 450px, 60px, 420px); }
.stage .picture-wrapper .picture:nth-child(36) {
clip: rect(30px, 480px, 60px, 450px); }
.stage .picture-wrapper .picture:nth-child(37) {
clip: rect(30px, 510px, 60px, 480px); }
.stage .picture-wrapper .picture:nth-child(38) {
clip: rect(30px, 540px, 60px, 510px); }
.stage .picture-wrapper .picture:nth-child(39) {
clip: rect(30px, 570px, 60px, 540px); }
.stage .picture-wrapper .picture:nth-child(40) {
clip: rect(30px, 600px, 60px, 570px); }
.stage .picture-wrapper .picture:nth-child(41) {
clip: rect(60px, 30px, 90px, 0px); }
.stage .picture-wrapper .picture:nth-child(42) {
clip: rect(60px, 60px, 90px, 30px); }
.stage .picture-wrapper .picture:nth-child(43) {
clip: rect(60px, 90px, 90px, 60px); }
.stage .picture-wrapper .picture:nth-child(44) {
clip: rect(60px, 120px, 90px, 90px); }
.stage .picture-wrapper .picture:nth-child(45) {
clip: rect(60px, 150px, 90px, 120px); }
.stage .picture-wrapper .picture:nth-child(46) {
clip: rect(60px, 180px, 90px, 150px); }
.stage .picture-wrapper .picture:nth-child(47) {
clip: rect(60px, 210px, 90px, 180px); }
.stage .picture-wrapper .picture:nth-child(48) {
clip: rect(60px, 240px, 90px, 210px); }
.stage .picture-wrapper .picture:nth-child(49) {
clip: rect(60px, 270px, 90px, 240px); }
.stage .picture-wrapper .picture:nth-child(50) {
clip: rect(60px, 300px, 90px, 270px); }
.stage .picture-wrapper .picture:nth-child(51) {
clip: rect(60px, 330px, 90px, 300px); }
.stage .picture-wrapper .picture:nth-child(52) {
clip: rect(60px, 360px, 90px, 330px); }
.stage .picture-wrapper .picture:nth-child(53) {
clip: rect(60px, 390px, 90px, 360px); }
.stage .picture-wrapper .picture:nth-child(54) {
clip: rect(60px, 420px, 90px, 390px); }
.stage .picture-wrapper .picture:nth-child(55) {
clip: rect(60px, 450px, 90px, 420px); }
.stage .picture-wrapper .picture:nth-child(56) {
clip: rect(60px, 480px, 90px, 450px); }
.stage .picture-wrapper .picture:nth-child(57) {
clip: rect(60px, 510px, 90px, 480px); }
.stage .picture-wrapper .picture:nth-child(58) {
clip: rect(60px, 540px, 90px, 510px); }
.stage .picture-wrapper .picture:nth-child(59) {
clip: rect(60px, 570px, 90px, 540px); }
.stage .picture-wrapper .picture:nth-child(60) {
clip: rect(60px, 600px, 90px, 570px); }
.stage .picture-wrapper .picture:nth-child(61) {
clip: rect(90px, 30px, 120px, 0px); }
.stage .picture-wrapper .picture:nth-child(62) {
clip: rect(90px, 60px, 120px, 30px); }
.stage .picture-wrapper .picture:nth-child(63) {
clip: rect(90px, 90px, 120px, 60px); }
.stage .picture-wrapper .picture:nth-child(64) {
clip: rect(90px, 120px, 120px, 90px); }
.stage .picture-wrapper .picture:nth-child(65) {
clip: rect(90px, 150px, 120px, 120px); }
.stage .picture-wrapper .picture:nth-child(66) {
clip: rect(90px, 180px, 120px, 150px); }
.stage .picture-wrapper .picture:nth-child(67) {
clip: rect(90px, 210px, 120px, 180px); }
.stage .picture-wrapper .picture:nth-child(68) {
clip: rect(90px, 240px, 120px, 210px); }
.stage .picture-wrapper .picture:nth-child(69) {
clip: rect(90px, 270px, 120px, 240px); }
.stage .picture-wrapper .picture:nth-child(70) {
clip: rect(90px, 300px, 120px, 270px); }
.stage .picture-wrapper .picture:nth-child(71) {
clip: rect(90px, 330px, 120px, 300px); }
.stage .picture-wrapper .picture:nth-child(72) {
clip: rect(90px, 360px, 120px, 330px); }
.stage .picture-wrapper .picture:nth-child(73) {
clip: rect(90px, 390px, 120px, 360px); }
.stage .picture-wrapper .picture:nth-child(74) {
clip: rect(90px, 420px, 120px, 390px); }
.stage .picture-wrapper .picture:nth-child(75) {
clip: rect(90px, 450px, 120px, 420px); }
.stage .picture-wrapper .picture:nth-child(76) {
clip: rect(90px, 480px, 120px, 450px); }
.stage .picture-wrapper .picture:nth-child(77) {
clip: rect(90px, 510px, 120px, 480px); }
.stage .picture-wrapper .picture:nth-child(78) {
clip: rect(90px, 540px, 120px, 510px); }
.stage .picture-wrapper .picture:nth-child(79) {
clip: rect(90px, 570px, 120px, 540px); }
.stage .picture-wrapper .picture:nth-child(80) {
clip: rect(90px, 600px, 120px, 570px); }
.stage .picture-wrapper .picture:nth-child(81) {
clip: rect(120px, 30px, 150px, 0px); }
.stage .picture-wrapper .picture:nth-child(82) {
clip: rect(120px, 60px, 150px, 30px); }
.stage .picture-wrapper .picture:nth-child(83) {
clip: rect(120px, 90px, 150px, 60px); }
.stage .picture-wrapper .picture:nth-child(84) {
clip: rect(120px, 120px, 150px, 90px); }
.stage .picture-wrapper .picture:nth-child(85) {
clip: rect(120px, 150px, 150px, 120px); }
.stage .picture-wrapper .picture:nth-child(86) {
clip: rect(120px, 180px, 150px, 150px); }
.stage .picture-wrapper .picture:nth-child(87) {
clip: rect(120px, 210px, 150px, 180px); }
.stage .picture-wrapper .picture:nth-child(88) {
clip: rect(120px, 240px, 150px, 210px); }
.stage .picture-wrapper .picture:nth-child(89) {
clip: rect(120px, 270px, 150px, 240px); }
.stage .picture-wrapper .picture:nth-child(90) {
clip: rect(120px, 300px, 150px, 270px); }
.stage .picture-wrapper .picture:nth-child(91) {
clip: rect(120px, 330px, 150px, 300px); }
.stage .picture-wrapper .picture:nth-child(92) {
clip: rect(120px, 360px, 150px, 330px); }
.stage .picture-wrapper .picture:nth-child(93) {
clip: rect(120px, 390px, 150px, 360px); }
.stage .picture-wrapper .picture:nth-child(94) {
clip: rect(120px, 420px, 150px, 390px); }
.stage .picture-wrapper .picture:nth-child(95) {
clip: rect(120px, 450px, 150px, 420px); }
.stage .picture-wrapper .picture:nth-child(96) {
clip: rect(120px, 480px, 150px, 450px); }
.stage .picture-wrapper .picture:nth-child(97) {
clip: rect(120px, 510px, 150px, 480px); }
.stage .picture-wrapper .picture:nth-child(98) {
clip: rect(120px, 540px, 150px, 510px); }
.stage .picture-wrapper .picture:nth-child(99) {
clip: rect(120px, 570px, 150px, 540px); }
.stage .picture-wrapper .picture:nth-child(100) {
clip: rect(120px, 600px, 150px, 570px); }
.stage .picture-wrapper .picture:nth-child(101) {
clip: rect(150px, 30px, 180px, 0px); }
.stage .picture-wrapper .picture:nth-child(102) {
clip: rect(150px, 60px, 180px, 30px); }
.stage .picture-wrapper .picture:nth-child(103) {
clip: rect(150px, 90px, 180px, 60px); }
.stage .picture-wrapper .picture:nth-child(104) {
clip: rect(150px, 120px, 180px, 90px); }
.stage .picture-wrapper .picture:nth-child(105) {
clip: rect(150px, 150px, 180px, 120px); }
.stage .picture-wrapper .picture:nth-child(106) {
clip: rect(150px, 180px, 180px, 150px); }
.stage .picture-wrapper .picture:nth-child(107) {
clip: rect(150px, 210px, 180px, 180px); }
.stage .picture-wrapper .picture:nth-child(108) {
clip: rect(150px, 240px, 180px, 210px); }
.stage .picture-wrapper .picture:nth-child(109) {
clip: rect(150px, 270px, 180px, 240px); }
.stage .picture-wrapper .picture:nth-child(110) {
clip: rect(150px, 300px, 180px, 270px); }
.stage .picture-wrapper .picture:nth-child(111) {
clip: rect(150px, 330px, 180px, 300px); }
.stage .picture-wrapper .picture:nth-child(112) {
clip: rect(150px, 360px, 180px, 330px); }
.stage .picture-wrapper .picture:nth-child(113) {
clip: rect(150px, 390px, 180px, 360px); }
.stage .picture-wrapper .picture:nth-child(114) {
clip: rect(150px, 420px, 180px, 390px); }
.stage .picture-wrapper .picture:nth-child(115) {
clip: rect(150px, 450px, 180px, 420px); }
.stage .picture-wrapper .picture:nth-child(116) {
clip: rect(150px, 480px, 180px, 450px); }
.stage .picture-wrapper .picture:nth-child(117) {
clip: rect(150px, 510px, 180px, 480px); }
.stage .picture-wrapper .picture:nth-child(118) {
clip: rect(150px, 540px, 180px, 510px); }
.stage .picture-wrapper .picture:nth-child(119) {
clip: rect(150px, 570px, 180px, 540px); }
.stage .picture-wrapper .picture:nth-child(120) {
clip: rect(150px, 600px, 180px, 570px); }
.stage .picture-wrapper .picture:nth-child(121) {
clip: rect(180px, 30px, 210px, 0px); }
.stage .picture-wrapper .picture:nth-child(122) {
clip: rect(180px, 60px, 210px, 30px); }
.stage .picture-wrapper .picture:nth-child(123) {
clip: rect(180px, 90px, 210px, 60px); }
.stage .picture-wrapper .picture:nth-child(124) {
clip: rect(180px, 120px, 210px, 90px); }
.stage .picture-wrapper .picture:nth-child(125) {
clip: rect(180px, 150px, 210px, 120px); }
.stage .picture-wrapper .picture:nth-child(126) {
clip: rect(180px, 180px, 210px, 150px); }
.stage .picture-wrapper .picture:nth-child(127) {
clip: rect(180px, 210px, 210px, 180px); }
.stage .picture-wrapper .picture:nth-child(128) {
clip: rect(180px, 240px, 210px, 210px); }
.stage .picture-wrapper .picture:nth-child(129) {
clip: rect(180px, 270px, 210px, 240px); }
.stage .picture-wrapper .picture:nth-child(130) {
clip: rect(180px, 300px, 210px, 270px); }
.stage .picture-wrapper .picture:nth-child(131) {
clip: rect(180px, 330px, 210px, 300px); }
.stage .picture-wrapper .picture:nth-child(132) {
clip: rect(180px, 360px, 210px, 330px); }
.stage .picture-wrapper .picture:nth-child(133) {
clip: rect(180px, 390px, 210px, 360px); }
.stage .picture-wrapper .picture:nth-child(134) {
clip: rect(180px, 420px, 210px, 390px); }
.stage .picture-wrapper .picture:nth-child(135) {
clip: rect(180px, 450px, 210px, 420px); }
.stage .picture-wrapper .picture:nth-child(136) {
clip: rect(180px, 480px, 210px, 450px); }
.stage .picture-wrapper .picture:nth-child(137) {
clip: rect(180px, 510px, 210px, 480px); }
.stage .picture-wrapper .picture:nth-child(138) {
clip: rect(180px, 540px, 210px, 510px); }
.stage .picture-wrapper .picture:nth-child(139) {
clip: rect(180px, 570px, 210px, 540px); }
.stage .picture-wrapper .picture:nth-child(140) {
clip: rect(180px, 600px, 210px, 570px); }
.stage .picture-wrapper .picture:nth-child(141) {
clip: rect(210px, 30px, 240px, 0px); }
.stage .picture-wrapper .picture:nth-child(142) {
clip: rect(210px, 60px, 240px, 30px); }
.stage .picture-wrapper .picture:nth-child(143) {
clip: rect(210px, 90px, 240px, 60px); }
.stage .picture-wrapper .picture:nth-child(144) {
clip: rect(210px, 120px, 240px, 90px); }
.stage .picture-wrapper .picture:nth-child(145) {
clip: rect(210px, 150px, 240px, 120px); }
.stage .picture-wrapper .picture:nth-child(146) {
clip: rect(210px, 180px, 240px, 150px); }
.stage .picture-wrapper .picture:nth-child(147) {
clip: rect(210px, 210px, 240px, 180px); }
.stage .picture-wrapper .picture:nth-child(148) {
clip: rect(210px, 240px, 240px, 210px); }
.stage .picture-wrapper .picture:nth-child(149) {
clip: rect(210px, 270px, 240px, 240px); }
.stage .picture-wrapper .picture:nth-child(150) {
clip: rect(210px, 300px, 240px, 270px); }
.stage .picture-wrapper .picture:nth-child(151) {
clip: rect(210px, 330px, 240px, 300px); }
.stage .picture-wrapper .picture:nth-child(152) {
clip: rect(210px, 360px, 240px, 330px); }
.stage .picture-wrapper .picture:nth-child(153) {
clip: rect(210px, 390px, 240px, 360px); }
.stage .picture-wrapper .picture:nth-child(154) {
clip: rect(210px, 420px, 240px, 390px); }
.stage .picture-wrapper .picture:nth-child(155) {
clip: rect(210px, 450px, 240px, 420px); }
.stage .picture-wrapper .picture:nth-child(156) {
clip: rect(210px, 480px, 240px, 450px); }
.stage .picture-wrapper .picture:nth-child(157) {
clip: rect(210px, 510px, 240px, 480px); }
.stage .picture-wrapper .picture:nth-child(158) {
clip: rect(210px, 540px, 240px, 510px); }
.stage .picture-wrapper .picture:nth-child(159) {
clip: rect(210px, 570px, 240px, 540px); }
.stage .picture-wrapper .picture:nth-child(160) {
clip: rect(210px, 600px, 240px, 570px); }
.stage .picture-wrapper .picture:nth-child(161) {
clip: rect(240px, 30px, 270px, 0px); }
.stage .picture-wrapper .picture:nth-child(162) {
clip: rect(240px, 60px, 270px, 30px); }
.stage .picture-wrapper .picture:nth-child(163) {
clip: rect(240px, 90px, 270px, 60px); }
.stage .picture-wrapper .picture:nth-child(164) {
clip: rect(240px, 120px, 270px, 90px); }
.stage .picture-wrapper .picture:nth-child(165) {
clip: rect(240px, 150px, 270px, 120px); }
.stage .picture-wrapper .picture:nth-child(166) {
clip: rect(240px, 180px, 270px, 150px); }
.stage .picture-wrapper .picture:nth-child(167) {
clip: rect(240px, 210px, 270px, 180px); }
.stage .picture-wrapper .picture:nth-child(168) {
clip: rect(240px, 240px, 270px, 210px); }
.stage .picture-wrapper .picture:nth-child(169) {
clip: rect(240px, 270px, 270px, 240px); }
.stage .picture-wrapper .picture:nth-child(170) {
clip: rect(240px, 300px, 270px, 270px); }
.stage .picture-wrapper .picture:nth-child(171) {
clip: rect(240px, 330px, 270px, 300px); }
.stage .picture-wrapper .picture:nth-child(172) {
clip: rect(240px, 360px, 270px, 330px); }
.stage .picture-wrapper .picture:nth-child(173) {
clip: rect(240px, 390px, 270px, 360px); }
.stage .picture-wrapper .picture:nth-child(174) {
clip: rect(240px, 420px, 270px, 390px); }
.stage .picture-wrapper .picture:nth-child(175) {
clip: rect(240px, 450px, 270px, 420px); }
.stage .picture-wrapper .picture:nth-child(176) {
clip: rect(240px, 480px, 270px, 450px); }
.stage .picture-wrapper .picture:nth-child(177) {
clip: rect(240px, 510px, 270px, 480px); }
.stage .picture-wrapper .picture:nth-child(178) {
clip: rect(240px, 540px, 270px, 510px); }
.stage .picture-wrapper .picture:nth-child(179) {
clip: rect(240px, 570px, 270px, 540px); }
.stage .picture-wrapper .picture:nth-child(180) {
clip: rect(240px, 600px, 270px, 570px); }
.stage .picture-wrapper .picture:nth-child(181) {
clip: rect(270px, 30px, 300px, 0px); }
.stage .picture-wrapper .picture:nth-child(182) {
clip: rect(270px, 60px, 300px, 30px); }
.stage .picture-wrapper .picture:nth-child(183) {
clip: rect(270px, 90px, 300px, 60px); }
.stage .picture-wrapper .picture:nth-child(184) {
clip: rect(270px, 120px, 300px, 90px); }
.stage .picture-wrapper .picture:nth-child(185) {
clip: rect(270px, 150px, 300px, 120px); }
.stage .picture-wrapper .picture:nth-child(186) {
clip: rect(270px, 180px, 300px, 150px); }
.stage .picture-wrapper .picture:nth-child(187) {
clip: rect(270px, 210px, 300px, 180px); }
.stage .picture-wrapper .picture:nth-child(188) {
clip: rect(270px, 240px, 300px, 210px); }
.stage .picture-wrapper .picture:nth-child(189) {
clip: rect(270px, 270px, 300px, 240px); }
.stage .picture-wrapper .picture:nth-child(190) {
clip: rect(270px, 300px, 300px, 270px); }
.stage .picture-wrapper .picture:nth-child(191) {
clip: rect(270px, 330px, 300px, 300px); }
.stage .picture-wrapper .picture:nth-child(192) {
clip: rect(270px, 360px, 300px, 330px); }
.stage .picture-wrapper .picture:nth-child(193) {
clip: rect(270px, 390px, 300px, 360px); }
.stage .picture-wrapper .picture:nth-child(194) {
clip: rect(270px, 420px, 300px, 390px); }
.stage .picture-wrapper .picture:nth-child(195) {
clip: rect(270px, 450px, 300px, 420px); }
.stage .picture-wrapper .picture:nth-child(196) {
clip: rect(270px, 480px, 300px, 450px); }
.stage .picture-wrapper .picture:nth-child(197) {
clip: rect(270px, 510px, 300px, 480px); }
.stage .picture-wrapper .picture:nth-child(198) {
clip: rect(270px, 540px, 300px, 510px); }
.stage .picture-wrapper .picture:nth-child(199) {
clip: rect(270px, 570px, 300px, 540px); }
.stage .picture-wrapper .picture:nth-child(200) {
clip: rect(270px, 600px, 300px, 570px); }
.picture-wrapper .picture:nth-child(1) {
animation: fly1 1.14536s ease-in 0.6817s forwards; }
.picture-wrapper .picture:nth-child(2) {
animation: fly1 0.6227s ease-in 0.02837s forwards; }
.picture-wrapper .picture:nth-child(3) {
animation: fly1 1.05781s ease-in 0.57226s forwards; }
.picture-wrapper .picture:nth-child(4) {
animation: fly1 0.67005s ease-in 0.08756s forwards; }
.picture-wrapper .picture:nth-child(5) {
animation: fly1 1.01707s ease-in 0.52134s forwards; }
.picture-wrapper .picture:nth-child(6) {
animation: fly1 0.98132s ease-in 0.47665s forwards; }
.picture-wrapper .picture:nth-child(7) {
animation: fly1 1.22337s ease-in 0.77922s forwards; }
.picture-wrapper .picture:nth-child(8) {
animation: fly1 1.12197s ease-in 0.65247s forwards; }
.picture-wrapper .picture:nth-child(9) {
animation: fly1 1.22601s ease-in 0.78251s forwards; }
.picture-wrapper .picture:nth-child(10) {
animation: fly1 0.73133s ease-in 0.16417s forwards; }
.picture-wrapper .picture:nth-child(11) {
animation: fly1 0.78336s ease-in 0.2292s forwards; }
.picture-wrapper .picture:nth-child(12) {
animation: fly1 0.97718s ease-in 0.47148s forwards; }
.picture-wrapper .picture:nth-child(13) {
animation: fly1 0.98487s ease-in 0.48109s forwards; }
.picture-wrapper .picture:nth-child(14) {
animation: fly1 1.39152s ease-in 0.9894s forwards; }
.picture-wrapper .picture:nth-child(15) {
animation: fly1 1.10828s ease-in 0.63535s forwards; }
.picture-wrapper .picture:nth-child(16) {
animation: fly1 1.25787s ease-in 0.82234s forwards; }
.picture-wrapper .picture:nth-child(17) {
animation: fly1 0.66353s ease-in 0.07941s forwards; }
.picture-wrapper .picture:nth-child(18) {
animation: fly1 1.25088s ease-in 0.8136s forwards; }
.picture-wrapper .picture:nth-child(19) {
animation: fly1 1.11643s ease-in 0.64554s forwards; }
.picture-wrapper .picture:nth-child(20) {
animation: fly1 1.37517s ease-in 0.96896s forwards; }
.picture-wrapper .picture:nth-child(21) {
animation: fly1 1.0519s ease-in 0.56488s forwards; }
.picture-wrapper .picture:nth-child(22) {
animation: fly1 1.25652s ease-in 0.82065s forwards; }
.picture-wrapper .picture:nth-child(23) {
animation: fly1 0.93975s ease-in 0.42469s forwards; }
.picture-wrapper .picture:nth-child(24) {
animation: fly1 0.65625s ease-in 0.07031s forwards; }
.picture-wrapper .picture:nth-child(25) {
animation: fly1 0.6716s ease-in 0.08949s forwards; }
.picture-wrapper .picture:nth-child(26) {
animation: fly1 1.20809s ease-in 0.76012s forwards; }
.picture-wrapper .picture:nth-child(27) {
animation: fly1 0.61795s ease-in 0.02243s forwards; }
.picture-wrapper .picture:nth-child(28) {
animation: fly1 1.38279s ease-in 0.97849s forwards; }
.picture-wrapper .picture:nth-child(29) {
animation: fly1 0.81633s ease-in 0.27041s forwards; }
.picture-wrapper .picture:nth-child(30) {
animation: fly1 0.95465s ease-in 0.44332s forwards; }
.picture-wrapper .picture:nth-child(31) {
animation: fly1 0.73129s ease-in 0.16411s forwards; }
.picture-wrapper .picture:nth-child(32) {
animation: fly1 1.37422s ease-in 0.96778s forwards; }
.picture-wrapper .picture:nth-child(33) {
animation: fly1 1.17424s ease-in 0.7178s forwards; }
.picture-wrapper .picture:nth-child(34) {
animation: fly1 1.39425s ease-in 0.99282s forwards; }
.picture-wrapper .picture:nth-child(35) {
animation: fly1 0.67049s ease-in 0.08811s forwards; }
.picture-wrapper .picture:nth-child(36) {
animation: fly1 1.39829s ease-in 0.99786s forwards; }
.picture-wrapper .picture:nth-child(37) {
animation: fly1 0.8177s ease-in 0.27213s forwards; }
.picture-wrapper .picture:nth-child(38) {
animation: fly1 1.34033s ease-in 0.92541s forwards; }
.picture-wrapper .picture:nth-child(39) {
animation: fly1 0.9549s ease-in 0.44362s forwards; }
.picture-wrapper .picture:nth-child(40) {
animation: fly1 1.22621s ease-in 0.78277s forwards; }
.picture-wrapper .picture:nth-child(41) {
animation: fly1 0.91029s ease-in 0.38787s forwards; }
.picture-wrapper .picture:nth-child(42) {
animation: fly1 0.73366s ease-in 0.16707s forwards; }
.picture-wrapper .picture:nth-child(43) {
animation: fly1 0.94288s ease-in 0.4286s forwards; }
.picture-wrapper .picture:nth-child(44) {
animation: fly1 1.03996s ease-in 0.54994s forwards; }
.picture-wrapper .picture:nth-child(45) {
animation: fly1 1.29896s ease-in 0.8737s forwards; }
.picture-wrapper .picture:nth-child(46) {
animation: fly1 1.09233s ease-in 0.61542s forwards; }
.picture-wrapper .picture:nth-child(47) {
animation: fly1 1.22613s ease-in 0.78267s forwards; }
.picture-wrapper .picture:nth-child(48) {
animation: fly1 1.06134s ease-in 0.57667s forwards; }
.picture-wrapper .picture:nth-child(49) {
animation: fly1 0.81109s ease-in 0.26386s forwards; }
.picture-wrapper .picture:nth-child(50) {
animation: fly1 1.21483s ease-in 0.76853s forwards; }
.picture-wrapper .picture:nth-child(51) {
animation: fly1 1.2118s ease-in 0.76475s forwards; }
.picture-wrapper .picture:nth-child(52) {
animation: fly1 0.80873s ease-in 0.26091s forwards; }
.picture-wrapper .picture:nth-child(53) {
animation: fly1 1.38929s ease-in 0.98661s forwards; }
.picture-wrapper .picture:nth-child(54) {
animation: fly1 1.02092s ease-in 0.52615s forwards; }
.picture-wrapper .picture:nth-child(55) {
animation: fly1 0.99059s ease-in 0.48824s forwards; }
.picture-wrapper .picture:nth-child(56) {
animation: fly1 0.8868s ease-in 0.35849s forwards; }
.picture-wrapper .picture:nth-child(57) {
animation: fly1 0.69022s ease-in 0.11278s forwards; }
.picture-wrapper .picture:nth-child(58) {
animation: fly1 0.73505s ease-in 0.16881s forwards; }
.picture-wrapper .picture:nth-child(59) {
animation: fly1 1.38717s ease-in 0.98396s forwards; }
.picture-wrapper .picture:nth-child(60) {
animation: fly1 0.91326s ease-in 0.39158s forwards; }
.picture-wrapper .picture:nth-child(61) {
animation: fly1 0.94344s ease-in 0.4293s forwards; }
.picture-wrapper .picture:nth-child(62) {
animation: fly1 1.35341s ease-in 0.94176s forwards; }
.picture-wrapper .picture:nth-child(63) {
animation: fly1 0.97913s ease-in 0.47391s forwards; }
.picture-wrapper .picture:nth-child(64) {
animation: fly1 0.6801s ease-in 0.10013s forwards; }
.picture-wrapper .picture:nth-child(65) {
animation: fly1 1.0814s ease-in 0.60174s forwards; }
.picture-wrapper .picture:nth-child(66) {
animation: fly1 1.03001s ease-in 0.53751s forwards; }
.picture-wrapper .picture:nth-child(67) {
animation: fly1 0.68746s ease-in 0.10932s forwards; }
.picture-wrapper .picture:nth-child(68) {
animation: fly1 0.71726s ease-in 0.14657s forwards; }
.picture-wrapper .picture:nth-child(69) {
animation: fly1 0.87477s ease-in 0.34346s forwards; }
.picture-wrapper .picture:nth-child(70) {
animation: fly1 1.34236s ease-in 0.92795s forwards; }
.picture-wrapper .picture:nth-child(71) {
animation: fly1 1.36406s ease-in 0.95508s forwards; }
.picture-wrapper .picture:nth-child(72) {
animation: fly1 1.06365s ease-in 0.57957s forwards; }
.picture-wrapper .picture:nth-child(73) {
animation: fly1 1.14319s ease-in 0.67898s forwards; }
.picture-wrapper .picture:nth-child(74) {
animation: fly1 1.25016s ease-in 0.8127s forwards; }
.picture-wrapper .picture:nth-child(75) {
animation: fly1 1.07856s ease-in 0.59819s forwards; }
.picture-wrapper .picture:nth-child(76) {
animation: fly1 0.80014s ease-in 0.25017s forwards; }
.picture-wrapper .picture:nth-child(77) {
animation: fly1 0.83992s ease-in 0.2999s forwards; }
.picture-wrapper .picture:nth-child(78) {
animation: fly1 1.28083s ease-in 0.85104s forwards; }
.picture-wrapper .picture:nth-child(79) {
animation: fly1 1.14879s ease-in 0.68599s forwards; }
.picture-wrapper .picture:nth-child(80) {
animation: fly1 0.74222s ease-in 0.17778s forwards; }
.picture-wrapper .picture:nth-child(81) {
animation: fly1 0.94408s ease-in 0.4301s forwards; }
.picture-wrapper .picture:nth-child(82) {
animation: fly1 0.90349s ease-in 0.37937s forwards; }
.picture-wrapper .picture:nth-child(83) {
animation: fly1 0.69463s ease-in 0.11829s forwards; }
.picture-wrapper .picture:nth-child(84) {
animation: fly1 0.82163s ease-in 0.27704s forwards; }
.picture-wrapper .picture:nth-child(85) {
animation: fly1 0.89218s ease-in 0.36523s forwards; }
.picture-wrapper .picture:nth-child(86) {
animation: fly1 1.26777s ease-in 0.83471s forwards; }
.picture-wrapper .picture:nth-child(87) {
animation: fly1 0.90471s ease-in 0.38088s forwards; }
.picture-wrapper .picture:nth-child(88) {
animation: fly1 0.70917s ease-in 0.13646s forwards; }
.picture-wrapper .picture:nth-child(89) {
animation: fly1 0.62963s ease-in 0.03704s forwards; }
.picture-wrapper .picture:nth-child(90) {
animation: fly1 0.9239s ease-in 0.40487s forwards; }
.picture-wrapper .picture:nth-child(91) {
animation: fly1 0.73008s ease-in 0.1626s forwards; }
.picture-wrapper .picture:nth-child(92) {
animation: fly1 1.38869s ease-in 0.98586s forwards; }
.picture-wrapper .picture:nth-child(93) {
animation: fly1 1.35989s ease-in 0.94986s forwards; }
.picture-wrapper .picture:nth-child(94) {
animation: fly1 0.70021s ease-in 0.12526s forwards; }
.picture-wrapper .picture:nth-child(95) {
animation: fly1 1.07068s ease-in 0.58835s forwards; }
.picture-wrapper .picture:nth-child(96) {
animation: fly1 1.27888s ease-in 0.8486s forwards; }
.picture-wrapper .picture:nth-child(97) {
animation: fly1 1.12779s ease-in 0.65974s forwards; }
.picture-wrapper .picture:nth-child(98) {
animation: fly1 0.82191s ease-in 0.27739s forwards; }
.picture-wrapper .picture:nth-child(99) {
animation: fly1 0.60508s ease-in 0.00635s forwards; }
.picture-wrapper .picture:nth-child(100) {
animation: fly1 1.24088s ease-in 0.8011s forwards; }
.picture-wrapper .picture:nth-child(101) {
animation: fly1 0.79172s ease-in 0.23965s forwards; }
.picture-wrapper .picture:nth-child(102) {
animation: fly1 1.09453s ease-in 0.61816s forwards; }
.picture-wrapper .picture:nth-child(103) {
animation: fly1 1.06576s ease-in 0.5822s forwards; }
.picture-wrapper .picture:nth-child(104) {
animation: fly1 1.10875s ease-in 0.63594s forwards; }
.picture-wrapper .picture:nth-child(105) {
animation: fly1 1.3022s ease-in 0.87775s forwards; }
.picture-wrapper .picture:nth-child(106) {
animation: fly1 0.65971s ease-in 0.07464s forwards; }
.picture-wrapper .picture:nth-child(107) {
animation: fly1 0.66412s ease-in 0.08015s forwards; }
.picture-wrapper .picture:nth-child(108) {
animation: fly1 1.39097s ease-in 0.98872s forwards; }
.picture-wrapper .picture:nth-child(109) {
animation: fly1 1.16756s ease-in 0.70945s forwards; }
.picture-wrapper .picture:nth-child(110) {
animation: fly1 1.05124s ease-in 0.56405s forwards; }
.picture-wrapper .picture:nth-child(111) {
animation: fly1 1.37859s ease-in 0.97324s forwards; }
.picture-wrapper .picture:nth-child(112) {
animation: fly1 1.10903s ease-in 0.63629s forwards; }
.picture-wrapper .picture:nth-child(113) {
animation: fly1 1.12696s ease-in 0.6587s forwards; }
.picture-wrapper .picture:nth-child(114) {
animation: fly1 1.28316s ease-in 0.85396s forwards; }
.picture-wrapper .picture:nth-child(115) {
animation: fly1 0.85461s ease-in 0.31827s forwards; }
.picture-wrapper .picture:nth-child(116) {
animation: fly1 0.97241s ease-in 0.46551s forwards; }
.picture-wrapper .picture:nth-child(117) {
animation: fly1 0.92937s ease-in 0.41171s forwards; }
.picture-wrapper .picture:nth-child(118) {
animation: fly1 1.13247s ease-in 0.66559s forwards; }
.picture-wrapper .picture:nth-child(119) {
animation: fly1 1.3471s ease-in 0.93388s forwards; }
.picture-wrapper .picture:nth-child(120) {
animation: fly1 0.91713s ease-in 0.39641s forwards; }
.picture-wrapper .picture:nth-child(121) {
animation: fly1 0.63171s ease-in 0.03964s forwards; }
.picture-wrapper .picture:nth-child(122) {
animation: fly1 0.6469s ease-in 0.05863s forwards; }
.picture-wrapper .picture:nth-child(123) {
animation: fly1 1.12671s ease-in 0.65839s forwards; }
.picture-wrapper .picture:nth-child(124) {
animation: fly1 1.03836s ease-in 0.54795s forwards; }
.picture-wrapper .picture:nth-child(125) {
animation: fly1 1.33114s ease-in 0.91392s forwards; }
.picture-wrapper .picture:nth-child(126) {
animation: fly1 1.26996s ease-in 0.83745s forwards; }
.picture-wrapper .picture:nth-child(127) {
animation: fly1 0.7349s ease-in 0.16863s forwards; }
.picture-wrapper .picture:nth-child(128) {
animation: fly1 1.12425s ease-in 0.65531s forwards; }
.picture-wrapper .picture:nth-child(129) {
animation: fly1 1.03672s ease-in 0.5459s forwards; }
.picture-wrapper .picture:nth-child(130) {
animation: fly1 0.73569s ease-in 0.16961s forwards; }
.picture-wrapper .picture:nth-child(131) {
animation: fly1 1.21567s ease-in 0.76958s forwards; }
.picture-wrapper .picture:nth-child(132) {
animation: fly1 1.30429s ease-in 0.88036s forwards; }
.picture-wrapper .picture:nth-child(133) {
animation: fly1 1.1782s ease-in 0.72275s forwards; }
.picture-wrapper .picture:nth-child(134) {
animation: fly1 1.21674s ease-in 0.77092s forwards; }
.picture-wrapper .picture:nth-child(135) {
animation: fly1 0.6448s ease-in 0.056s forwards; }
.picture-wrapper .picture:nth-child(136) {
animation: fly1 1.22156s ease-in 0.77695s forwards; }
.picture-wrapper .picture:nth-child(137) {
animation: fly1 1.35138s ease-in 0.93923s forwards; }
.picture-wrapper .picture:nth-child(138) {
animation: fly1 0.88988s ease-in 0.36235s forwards; }
.picture-wrapper .picture:nth-child(139) {
animation: fly1 1.08328s ease-in 0.60411s forwards; }
.picture-wrapper .picture:nth-child(140) {
animation: fly1 1.36543s ease-in 0.95679s forwards; }
.picture-wrapper .picture:nth-child(141) {
animation: fly1 0.66551s ease-in 0.08189s forwards; }
.picture-wrapper .picture:nth-child(142) {
animation: fly1 1.12423s ease-in 0.65529s forwards; }
.picture-wrapper .picture:nth-child(143) {
animation: fly1 1.13763s ease-in 0.67204s forwards; }
.picture-wrapper .picture:nth-child(144) {
animation: fly1 1.39349s ease-in 0.99187s forwards; }
.picture-wrapper .picture:nth-child(145) {
animation: fly1 0.89927s ease-in 0.37409s forwards; }
.picture-wrapper .picture:nth-child(146) {
animation: fly1 0.79777s ease-in 0.24722s forwards; }
.picture-wrapper .picture:nth-child(147) {
animation: fly1 0.6966s ease-in 0.12075s forwards; }
.picture-wrapper .picture:nth-child(148) {
animation: fly1 0.93802s ease-in 0.42252s forwards; }
.picture-wrapper .picture:nth-child(149) {
animation: fly1 1.31071s ease-in 0.88838s forwards; }
.picture-wrapper .picture:nth-child(150) {
animation: fly1 0.61927s ease-in 0.02408s forwards; }
.picture-wrapper .picture:nth-child(151) {
animation: fly1 0.92832s ease-in 0.41041s forwards; }
.picture-wrapper .picture:nth-child(152) {
animation: fly1 0.89504s ease-in 0.3688s forwards; }
.picture-wrapper .picture:nth-child(153) {
animation: fly1 0.95916s ease-in 0.44895s forwards; }
.picture-wrapper .picture:nth-child(154) {
animation: fly1 0.9596s ease-in 0.4495s forwards; }
.picture-wrapper .picture:nth-child(155) {
animation: fly1 1.36646s ease-in 0.95808s forwards; }
.picture-wrapper .picture:nth-child(156) {
animation: fly1 0.7045s ease-in 0.13062s forwards; }
.picture-wrapper .picture:nth-child(157) {
animation: fly1 0.92435s ease-in 0.40544s forwards; }
.picture-wrapper .picture:nth-child(158) {
animation: fly1 0.93996s ease-in 0.42495s forwards; }
.picture-wrapper .picture:nth-child(159) {
animation: fly1 0.73197s ease-in 0.16496s forwards; }
.picture-wrapper .picture:nth-child(160) {
animation: fly1 0.60765s ease-in 0.00956s forwards; }
.picture-wrapper .picture:nth-child(161) {
animation: fly1 1.35586s ease-in 0.94482s forwards; }
.picture-wrapper .picture:nth-child(162) {
animation: fly1 0.9155s ease-in 0.39438s forwards; }
.picture-wrapper .picture:nth-child(163) {
animation: fly1 1.34214s ease-in 0.92767s forwards; }
.picture-wrapper .picture:nth-child(164) {
animation: fly1 1.00797s ease-in 0.50996s forwards; }
.picture-wrapper .picture:nth-child(165) {
animation: fly1 1.19914s ease-in 0.74892s forwards; }
.picture-wrapper .picture:nth-child(166) {
animation: fly1 1.05297s ease-in 0.56621s forwards; }
.picture-wrapper .picture:nth-child(167) {
animation: fly1 1.24697s ease-in 0.80871s forwards; }
.picture-wrapper .picture:nth-child(168) {
animation: fly1 0.78786s ease-in 0.23482s forwards; }
.picture-wrapper .picture:nth-child(169) {
animation: fly1 1.11847s ease-in 0.64809s forwards; }
.picture-wrapper .picture:nth-child(170) {
animation: fly1 1.26639s ease-in 0.83299s forwards; }
.picture-wrapper .picture:nth-child(171) {
animation: fly1 0.84503s ease-in 0.30628s forwards; }
.picture-wrapper .picture:nth-child(172) {
animation: fly1 1.1837s ease-in 0.72963s forwards; }
.picture-wrapper .picture:nth-child(173) {
animation: fly1 1.35165s ease-in 0.93956s forwards; }
.picture-wrapper .picture:nth-child(174) {
animation: fly1 0.75026s ease-in 0.18783s forwards; }
.picture-wrapper .picture:nth-child(175) {
animation: fly1 1.05766s ease-in 0.57207s forwards; }
.picture-wrapper .picture:nth-child(176) {
animation: fly1 1.19983s ease-in 0.74978s forwards; }
.picture-wrapper .picture:nth-child(177) {
animation: fly1 0.62923s ease-in 0.03654s forwards; }
.picture-wrapper .picture:nth-child(178) {
animation: fly1 1.39071s ease-in 0.98838s forwards; }
.picture-wrapper .picture:nth-child(179) {
animation: fly1 1.31535s ease-in 0.89419s forwards; }
.picture-wrapper .picture:nth-child(180) {
animation: fly1 1.08489s ease-in 0.60611s forwards; }
.picture-wrapper .picture:nth-child(181) {
animation: fly1 0.68549s ease-in 0.10686s forwards; }
.picture-wrapper .picture:nth-child(182) {
animation: fly1 0.83606s ease-in 0.29507s forwards; }
.picture-wrapper .picture:nth-child(183) {
animation: fly1 0.76083s ease-in 0.20104s forwards; }
.picture-wrapper .picture:nth-child(184) {
animation: fly1 1.00231s ease-in 0.50288s forwards; }
.picture-wrapper .picture:nth-child(185) {
animation: fly1 1.26626s ease-in 0.83282s forwards; }
.picture-wrapper .picture:nth-child(186) {
animation: fly1 1.02752s ease-in 0.5344s forwards; }
.picture-wrapper .picture:nth-child(187) {
animation: fly1 1.28782s ease-in 0.85978s forwards; }
.picture-wrapper .picture:nth-child(188) {
animation: fly1 0.66054s ease-in 0.07567s forwards; }
.picture-wrapper .picture:nth-child(189) {
animation: fly1 0.96231s ease-in 0.45289s forwards; }
.picture-wrapper .picture:nth-child(190) {
animation: fly1 0.60691s ease-in 0.00864s forwards; }
.picture-wrapper .picture:nth-child(191) {
animation: fly1 0.84885s ease-in 0.31106s forwards; }
.picture-wrapper .picture:nth-child(192) {
animation: fly1 1.35098s ease-in 0.93873s forwards; }
.picture-wrapper .picture:nth-child(193) {
animation: fly1 1.19262s ease-in 0.74077s forwards; }
.picture-wrapper .picture:nth-child(194) {
animation: fly1 1.20964s ease-in 0.76205s forwards; }
.picture-wrapper .picture:nth-child(195) {
animation: fly1 1.22819s ease-in 0.78524s forwards; }
.picture-wrapper .picture:nth-child(196) {
animation: fly1 1.24362s ease-in 0.80453s forwards; }
.picture-wrapper .picture:nth-child(197) {
animation: fly1 0.96002s ease-in 0.45003s forwards; }
.picture-wrapper .picture:nth-child(198) {
animation: fly1 1.35682s ease-in 0.94602s forwards; }
.picture-wrapper .picture:nth-child(199) {
animation: fly1 1.24808s ease-in 0.8101s forwards; }
.picture-wrapper .picture:nth-child(200) {
animation: fly1 0.99823s ease-in 0.49779s forwards; }
@keyframes fadein {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes bound {
0% {
transform: scale(0); }
40% {
transform: scale(1); }
50% {
transform: scale(0.9); }
60% {
transform: scale(1); }
70% {
transform: scale(0.95); }
80% {
transform: scale(1); }
90% {
transform: scale(0.975); }
100% {
transform: scale(1); } }
@keyframes bound- {
0% {
transform: scale(1); }
40% {
transform: scale(0); }
50% {
transform: scale(0.1); }
60% {
transform: scale(0); }
70% {
transform: scale(0.05); }
80% {
transform: scale(0); }
90% {
transform: scale(0.075); }
100% {
transform: scale(0); } }
@keyframes fly1 {
0% {
transform: rotate(0deg) scale(2);
opacity: 0; }
40% {
transform: rotate(360deg) scale(1);
opacity: 1; }
50% {
transform: rotate(360deg) scale(1.075);
opacity: 1; }
60% {
transform: rotate(360deg) scale(1);
opacity: 1; }
70% {
transform: rotate(360deg) scale(1.04);
opacity: 1; }
80% {
transform: rotate(360deg) scale(1);
opacity: 1; }
90% {
transform: rotate(360deg) scale(1.02);
opacity: 1; }
100% {
transform: rotate(360deg) scale(1);
opacity: 1; } } | 0.549157 | 0.063511 |
input.add-remove[type=checkbox]{
display:none;
}
input.add-remove[type=checkbox] + label{
width:16px;
height:16px;
display:inline-block;
position:relative;
}
input.add-remove[type=checkbox] + label:before {
content:"";
left: 50%;
width: 10%;
margin-left: -5%;
position:absolute;
z-index:-1;
height: 100%;
color: #ccc;
background:red;
font-style: italic;
-webkit-transition:-webkit-transform .3s;
transition:transform .3s;
}
input.add-remove[type=checkbox] + label:after {
content:"";
position:absolute;
top: 50%;
height: 10%;
margin-top: -5%;
width: 100%;
background:red;
z-index:-1;
color: #ccc;
font-style: italic;
-webkit-transition:-webkit-transform .3s;
transition:transform .3s;
}
input.add-remove[type=checkbox]:checked + label {
color: #f00;
font-style: normal;
}
input.add-remove[type=checkbox]:checked + label:before {
-webkit-transform:rotate(-45deg);
-ms-transform:rotate(-45deg);
transform:rotate(-45deg);
}
input.add-remove[type=checkbox]:checked + label:after {
-webkit-transform:rotate(135deg);
-ms-transform:rotate(135deg);
transform:rotate(135deg);
}
input.remove-add[type=checkbox]{
display:none;
}
input.remove-add[type=checkbox] + label{
width:16px;
height:16px;
display:inline-block;
position:relative;
}
input.remove-add[type=checkbox] + label:before {
content:"";
left: 50%;
width: 10%;
margin-left: -5%;
position:absolute;
z-index:-1;
height: 100%;
color: #ccc;
background:red;
font-style: italic;
-webkit-transform:rotate(-45deg);
-ms-transform:rotate(-45deg);
transform:rotate(-45deg);
-webkit-transition:-webkit-transform .3s;
transition:transform .3s;
}
input.remove-add[type=checkbox] + label:after {
content:"";
position:absolute;
top: 50%;
height: 10%;
margin-top: -5%;
width: 100%;
background:red;
z-index:-1;
color: #ccc;
font-style: italic;
-webkit-transform:rotate(135deg);
-ms-transform:rotate(135deg);
transform:rotate(135deg);
-webkit-transition:-webkit-transform .3s;
transition:transform .3s;
}
input.remove-add[type=checkbox]:checked + label {
color: #f00;
font-style: normal;
}
input.remove-add[type=checkbox]:checked + label:before {
-webkit-transform:rotate(0deg);
-ms-transform:rotate(0deg);
transform:rotate(0deg);
}
input.remove-add[type=checkbox]:checked + label:after {
-webkit-transform:rotate(0deg);
-ms-transform:rotate(0deg);
transform:rotate(0deg);
} | styles.css | input.add-remove[type=checkbox]{
display:none;
}
input.add-remove[type=checkbox] + label{
width:16px;
height:16px;
display:inline-block;
position:relative;
}
input.add-remove[type=checkbox] + label:before {
content:"";
left: 50%;
width: 10%;
margin-left: -5%;
position:absolute;
z-index:-1;
height: 100%;
color: #ccc;
background:red;
font-style: italic;
-webkit-transition:-webkit-transform .3s;
transition:transform .3s;
}
input.add-remove[type=checkbox] + label:after {
content:"";
position:absolute;
top: 50%;
height: 10%;
margin-top: -5%;
width: 100%;
background:red;
z-index:-1;
color: #ccc;
font-style: italic;
-webkit-transition:-webkit-transform .3s;
transition:transform .3s;
}
input.add-remove[type=checkbox]:checked + label {
color: #f00;
font-style: normal;
}
input.add-remove[type=checkbox]:checked + label:before {
-webkit-transform:rotate(-45deg);
-ms-transform:rotate(-45deg);
transform:rotate(-45deg);
}
input.add-remove[type=checkbox]:checked + label:after {
-webkit-transform:rotate(135deg);
-ms-transform:rotate(135deg);
transform:rotate(135deg);
}
input.remove-add[type=checkbox]{
display:none;
}
input.remove-add[type=checkbox] + label{
width:16px;
height:16px;
display:inline-block;
position:relative;
}
input.remove-add[type=checkbox] + label:before {
content:"";
left: 50%;
width: 10%;
margin-left: -5%;
position:absolute;
z-index:-1;
height: 100%;
color: #ccc;
background:red;
font-style: italic;
-webkit-transform:rotate(-45deg);
-ms-transform:rotate(-45deg);
transform:rotate(-45deg);
-webkit-transition:-webkit-transform .3s;
transition:transform .3s;
}
input.remove-add[type=checkbox] + label:after {
content:"";
position:absolute;
top: 50%;
height: 10%;
margin-top: -5%;
width: 100%;
background:red;
z-index:-1;
color: #ccc;
font-style: italic;
-webkit-transform:rotate(135deg);
-ms-transform:rotate(135deg);
transform:rotate(135deg);
-webkit-transition:-webkit-transform .3s;
transition:transform .3s;
}
input.remove-add[type=checkbox]:checked + label {
color: #f00;
font-style: normal;
}
input.remove-add[type=checkbox]:checked + label:before {
-webkit-transform:rotate(0deg);
-ms-transform:rotate(0deg);
transform:rotate(0deg);
}
input.remove-add[type=checkbox]:checked + label:after {
-webkit-transform:rotate(0deg);
-ms-transform:rotate(0deg);
transform:rotate(0deg);
} | 0.254139 | 0.062274 |
.u-section-1 {
background-image: none;
min-height: 822px;
}
.u-section-1 .u-shape-1 {
width: calc(((100% - 1140px) / 2) + 595px);
height: 831px;
margin: 1px auto 0 0;
}
.u-section-1 .u-layout-wrap-1 {
width: 1140px;
margin: -746px auto 47px calc(((100% - 1140px) / 2) + -12px);
}
.u-section-1 .u-layout-cell-1 {
min-height: 689px;
}
.u-section-1 .u-container-layout-1 {
padding: 30px;
}
.u-section-1 .u-shape-2 {
width: 418px;
height: 15px;
margin: 79px 31px 0 auto;
}
.u-section-1 .u-text-1 {
font-weight: 700;
font-size: 3.75rem;
line-height: 66px;
margin: -59px -25px 0 25px;
}
.u-section-1 .u-image-1 {
width: 480px;
height: 289px;
margin: 92px auto 0;
}
.u-section-1 .u-layout-cell-2 {
min-height: 572px;
}
.u-section-1 .u-container-layout-2 {
padding: 30px;
}
.u-section-1 .u-text-2 {
background-image: none;
font-family: Montserrat, sans-serif;
margin: 25px -7px 0 7px;
}
.u-section-1 .u-btn-1 {
border-style: none;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
background-image: none;
margin: 58px auto 0 30px;
}
@media (max-width: 1199px) {
.u-section-1 {
min-height: 701px;
}
.u-section-1 .u-shape-1 {
width: 630px;
margin-left: calc(((100% - 1140px) / 2) + 20px);
}
.u-section-1 .u-layout-wrap-1 {
width: 940px;
margin-left: calc(((100% - 1140px) / 2) + 100px);
}
.u-section-1 .u-layout-cell-1 {
min-height: 623px;
}
.u-section-1 .u-shape-2 {
width: 410px;
margin-top: 191px;
margin-right: 0;
}
.u-section-1 .u-text-1 {
margin-top: -106px;
margin-left: 0;
margin-right: 0;
}
.u-section-1 .u-image-1 {
width: 410px;
height: 247px;
margin-top: 85px;
}
.u-section-1 .u-layout-cell-2 {
min-height: 472px;
}
.u-section-1 .u-text-2 {
margin-top: -127px;
margin-left: 0;
margin-right: 0;
}
.u-section-1 .u-btn-1 {
margin-top: -102px;
margin-right: 247px;
margin-left: 0;
}
}
@media (max-width: 991px) {
.u-section-1 {
min-height: 233px;
}
.u-section-1 .u-shape-1 {
margin-left: calc(((100% - 1140px) / 2) + 130px);
}
.u-section-1 .u-layout-wrap-1 {
width: 720px;
margin-left: calc(((100% - 1140px) / 2) + 210px);
}
.u-section-1 .u-shape-2 {
width: 300px;
margin-top: 257px;
}
.u-section-1 .u-text-1 {
margin-top: -171px;
}
.u-section-1 .u-image-1 {
width: 300px;
height: 181px;
}
.u-section-1 .u-layout-cell-2 {
min-height: 100px;
}
.u-section-1 .u-btn-1 {
margin-top: -256px;
margin-right: 137px;
}
}
@media (max-width: 767px) {
.u-section-1 {
min-height: 333px;
}
.u-section-1 .u-shape-1 {
width: 540px;
margin-left: calc(((100% - 1140px) / 2) + 300px);
}
.u-section-1 .u-layout-wrap-1 {
width: 540px;
margin-left: calc(((100% - 1140px) / 2) + 300px);
}
.u-section-1 .u-layout-cell-1 {
min-height: 492px;
}
.u-section-1 .u-container-layout-1 {
padding-left: 10px;
padding-right: 10px;
}
.u-section-1 .u-shape-2 {
margin-top: 126px;
}
.u-section-1 .u-text-1 {
margin-top: -40px;
}
.u-section-1 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}
.u-section-1 .u-btn-1 {
margin-top: 0;
}
}
@media (max-width: 575px) {
.u-section-1 .u-shape-1 {
width: 340px;
margin-left: calc(((100% - 1140px) / 2) + 400px);
}
.u-section-1 .u-layout-wrap-1 {
width: 340px;
margin-left: calc(((100% - 1140px) / 2) + 400px);
}
.u-section-1 .u-layout-cell-1 {
min-height: 623px;
}
.u-section-1 .u-shape-2 {
margin-top: 257px;
}
.u-section-1 .u-text-1 {
margin-top: -171px;
}
.u-section-1 .u-btn-1 {
margin-top: -205px;
margin-right: 0;
}
}.u-section-2 {
background-image: none;
}
.u-section-2 .u-sheet-1 {
min-height: 1208px;
}
.u-section-2 .u-text-1 {
font-size: 4.5rem;
margin: 230px 666px 0 42px;
}
.u-section-2 .u-shape-1 {
width: 983px;
height: 19px;
margin: 0 auto 0 42px;
}
.u-section-2 .u-list-1 {
min-height: 610px;
grid-template-rows: auto auto;
height: auto;
margin: 86px auto 60px 0;
}
.u-section-2 .u-repeater-1 {
grid-auto-columns: calc(33.3333% - 6.66667px);
grid-template-columns: calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px);
grid-gap: 10px 10px;
grid-auto-rows: calc(50% - 5px);
}
.u-section-2 .u-container-layout-1 {
padding: 10px;
}
.u-section-2 .u-image-1 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-2 {
font-weight: 700;
margin: 20px 210px 0 0;
}
.u-section-2 .u-text-3 {
margin: 10px 261px 0 0;
}
.u-section-2 .u-container-layout-2 {
padding: 10px;
}
.u-section-2 .u-image-2 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-4 {
font-weight: 700;
margin: 20px 219px 0 0;
}
.u-section-2 .u-text-5 {
margin: 10px 272px 0 0;
}
.u-section-2 .u-container-layout-3 {
padding: 10px;
}
.u-section-2 .u-image-3 {
width: 180px;
height: 218px;
object-position: 50% 0%;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-6 {
font-weight: 700;
margin: 20px 204px 0 0;
}
.u-section-2 .u-text-7 {
margin: 10px 271px 0 0;
}
.u-section-2 .u-container-layout-4 {
padding: 10px;
}
.u-section-2 .u-image-4 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-8 {
font-weight: 700;
margin: 20px 249px 0 0;
}
.u-section-2 .u-text-9 {
margin: 10px 202px 0 0;
}
.u-section-2 .u-container-layout-5 {
padding: 10px;
}
.u-section-2 .u-image-5 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-10 {
font-weight: 700;
margin: 20px 241px 0 0;
}
.u-section-2 .u-text-11 {
margin: 10px 280px 0 0;
}
.u-section-2 .u-container-layout-6 {
padding: 10px;
}
.u-section-2 .u-image-6 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-12 {
font-weight: 700;
margin: 20px 201px 0 0;
}
.u-section-2 .u-text-13 {
margin: 10px 200px 0 0;
}
@media (max-width: 1199px) {
.u-section-2 .u-sheet-1 {
min-height: 1102px;
}
.u-section-2 .u-text-1 {
width: 219px;
margin-top: 50px;
margin-right: 370px;
margin-left: 0;
}
.u-section-2 .u-shape-1 {
width: 940px;
margin-top: -93px;
margin-left: 0;
}
.u-section-2 .u-list-1 {
min-height: 503px;
margin-top: 224px;
margin-right: initial;
margin-left: initial;
}
.u-section-2 .u-text-2 {
margin-right: 10px;
}
.u-section-2 .u-text-3 {
margin-right: 61px;
}
.u-section-2 .u-text-4 {
margin-right: 19px;
}
.u-section-2 .u-text-5 {
margin-right: 72px;
}
.u-section-2 .u-text-6 {
margin-right: 4px;
}
.u-section-2 .u-text-7 {
margin-right: 71px;
}
.u-section-2 .u-text-8 {
margin-right: 49px;
}
.u-section-2 .u-text-9 {
margin-right: 2px;
}
.u-section-2 .u-text-10 {
margin-right: 41px;
}
.u-section-2 .u-text-11 {
margin-right: 80px;
}
.u-section-2 .u-text-12 {
margin-right: 1px;
}
.u-section-2 .u-text-13 {
margin-right: 0;
}
}
@media (max-width: 991px) {
.u-section-2 .u-sheet-1 {
min-height: 2146px;
}
.u-section-2 .u-text-1 {
margin-right: 283px;
}
.u-section-2 .u-shape-1 {
width: 720px;
margin-top: 1141px;
}
.u-section-2 .u-list-1 {
margin-top: -99px;
margin-bottom: 0;
min-height: 867px;
margin-right: initial;
margin-left: initial;
}
.u-section-2 .u-repeater-1 {
grid-auto-columns: calc(50% - 5px);
grid-template-columns: calc(50% - 5px) calc(50% - 5px);
grid-auto-rows: calc(33.33% - 6.66667px);
}
.u-section-2 .u-text-2 {
margin-right: 0;
}
.u-section-2 .u-text-3 {
margin-right: 0;
}
.u-section-2 .u-text-4 {
margin-right: 0;
}
.u-section-2 .u-text-5 {
margin-right: 0;
}
.u-section-2 .u-text-6 {
margin-right: 0;
}
.u-section-2 .u-text-7 {
margin-right: 0;
}
.u-section-2 .u-text-8 {
margin-right: 0;
}
.u-section-2 .u-text-9 {
margin-right: 0;
}
.u-section-2 .u-text-10 {
margin-right: 0;
}
.u-section-2 .u-text-11 {
margin-right: 0;
}
.u-section-2 .u-text-12 {
margin-right: 0;
}
}
@media (max-width: 767px) {
.u-section-2 .u-sheet-1 {
min-height: 3199px;
}
.u-section-2 .u-text-1 {
margin-right: 212px;
}
.u-section-2 .u-shape-1 {
width: 540px;
margin-top: 2021px;
}
.u-section-2 .u-list-1 {
min-height: 1928px;
margin-top: -1070px;
margin-bottom: 60px;
margin-right: initial;
margin-left: initial;
}
.u-section-2 .u-repeater-1 {
grid-auto-columns: 100%;
grid-template-columns: 100%;
grid-auto-rows: calc(16.66% - 8.33333px);
}
.u-section-2 .u-image-1 {
margin-left: auto;
}
.u-section-2 .u-text-2 {
margin-left: auto;
}
.u-section-2 .u-text-3 {
margin-left: auto;
}
.u-section-2 .u-image-2 {
margin-left: auto;
}
.u-section-2 .u-text-4 {
margin-left: auto;
}
.u-section-2 .u-text-5 {
margin-left: auto;
}
.u-section-2 .u-image-3 {
margin-left: auto;
}
.u-section-2 .u-text-6 {
margin-left: auto;
}
.u-section-2 .u-text-7 {
margin-left: auto;
}
.u-section-2 .u-image-4 {
margin-left: auto;
}
.u-section-2 .u-text-8 {
margin-left: auto;
}
.u-section-2 .u-text-9 {
margin-left: auto;
}
.u-section-2 .u-image-5 {
margin-left: auto;
}
.u-section-2 .u-text-10 {
margin-left: auto;
}
.u-section-2 .u-text-11 {
margin-left: auto;
}
.u-section-2 .u-image-6 {
margin-left: auto;
}
.u-section-2 .u-text-12 {
margin-left: auto;
}
.u-section-2 .u-text-13 {
margin-left: auto;
}
}
@media (max-width: 575px) {
.u-section-2 .u-sheet-1 {
min-height: 3109px;
}
.u-section-2 .u-text-1 {
margin-right: 133px;
}
.u-section-2 .u-shape-1 {
width: 340px;
margin-top: 2103px;
}
.u-section-2 .u-list-1 {
margin-bottom: 1px;
min-height: 1638px;
margin-right: initial;
margin-left: initial;
}
.u-section-2 .u-repeater-1 {
grid-auto-rows: calc(16.66% - 8.333333333333334px);
}
}.u-section-3 {
background-image: none;
}
.u-section-3 .u-sheet-1 {
min-height: 50vw;
}
.u-section-3 .u-list-1 {
min-height: 610px;
grid-template-rows: auto auto;
height: auto;
margin: 1px auto 60px 0;
}
.u-section-3 .u-repeater-1 {
grid-auto-columns: calc(33.3333% - 6.66667px);
grid-template-columns: calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px);
grid-gap: 10px 10px;
grid-auto-rows: calc(50% - 5px);
}
.u-section-3 .u-container-layout-1 {
padding: 10px;
}
.u-section-3 .u-image-1 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-1 {
font-weight: 700;
margin: 20px 210px 0 0;
}
.u-section-3 .u-text-2 {
margin: 10px 261px 0 0;
}
.u-section-3 .u-container-layout-2 {
padding: 10px;
}
.u-section-3 .u-image-2 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-3 {
font-weight: 700;
margin: 20px 219px 0 0;
}
.u-section-3 .u-text-4 {
margin: 10px 272px 0 0;
}
.u-section-3 .u-container-layout-3 {
padding: 10px;
}
.u-section-3 .u-image-3 {
width: 180px;
height: 218px;
object-position: 50% 0%;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-5 {
font-weight: 700;
margin: 20px 204px 0 0;
}
.u-section-3 .u-text-6 {
margin: 10px 271px 0 0;
}
.u-section-3 .u-container-layout-4 {
padding: 10px;
}
.u-section-3 .u-image-4 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-7 {
font-weight: 700;
margin: 20px 249px 0 0;
}
.u-section-3 .u-text-8 {
margin: 10px 202px 0 0;
}
.u-section-3 .u-container-layout-5 {
padding: 10px;
}
.u-section-3 .u-image-5 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-9 {
font-weight: 700;
margin: 20px 241px 0 0;
}
.u-section-3 .u-text-10 {
margin: 10px 280px 0 0;
}
.u-section-3 .u-container-layout-6 {
padding: 10px;
}
.u-section-3 .u-image-6 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-11 {
font-weight: 700;
margin: 20px 201px 0 0;
}
.u-section-3 .u-text-12 {
margin: 10px 200px 0 0;
}
@media (max-width: 1199px) {
.u-section-3 .u-list-1 {
min-height: 503px;
margin-right: initial;
margin-left: initial;
}
.u-section-3 .u-text-1 {
margin-right: 10px;
}
.u-section-3 .u-text-2 {
margin-right: 61px;
}
.u-section-3 .u-text-3 {
margin-right: 19px;
}
.u-section-3 .u-text-4 {
margin-right: 72px;
}
.u-section-3 .u-text-5 {
margin-right: 4px;
}
.u-section-3 .u-text-6 {
margin-right: 71px;
}
.u-section-3 .u-text-7 {
margin-right: 49px;
}
.u-section-3 .u-text-8 {
margin-right: 2px;
}
.u-section-3 .u-text-9 {
margin-right: 41px;
}
.u-section-3 .u-text-10 {
margin-right: 80px;
}
.u-section-3 .u-text-11 {
margin-right: 1px;
}
.u-section-3 .u-text-12 {
margin-right: 0;
}
}
@media (max-width: 991px) {
.u-section-3 .u-list-1 {
margin-top: 613px;
min-height: 867px;
margin-right: initial;
margin-left: initial;
}
.u-section-3 .u-repeater-1 {
grid-auto-columns: calc(50% - 5px);
grid-template-columns: calc(50% - 5px) calc(50% - 5px);
grid-auto-rows: calc(33.33% - 6.66667px);
}
.u-section-3 .u-text-1 {
margin-right: 0;
}
.u-section-3 .u-text-2 {
margin-right: 0;
}
.u-section-3 .u-text-3 {
margin-right: 0;
}
.u-section-3 .u-text-4 {
margin-right: 0;
}
.u-section-3 .u-text-5 {
margin-right: 0;
}
.u-section-3 .u-text-6 {
margin-right: 0;
}
.u-section-3 .u-text-7 {
margin-right: 0;
}
.u-section-3 .u-text-8 {
margin-right: 0;
}
.u-section-3 .u-text-9 {
margin-right: 0;
}
.u-section-3 .u-text-10 {
margin-right: 0;
}
.u-section-3 .u-text-11 {
margin-right: 0;
}
}
@media (max-width: 767px) {
.u-section-3 .u-list-1 {
min-height: 1928px;
margin-top: 522px;
margin-right: initial;
margin-left: initial;
}
.u-section-3 .u-repeater-1 {
grid-auto-columns: 100%;
grid-template-columns: 100%;
grid-auto-rows: calc(16.66% - 8.33333px);
}
.u-section-3 .u-image-1 {
margin-left: auto;
}
.u-section-3 .u-text-1 {
margin-left: auto;
}
.u-section-3 .u-text-2 {
margin-left: auto;
}
.u-section-3 .u-image-2 {
margin-left: auto;
}
.u-section-3 .u-text-3 {
margin-left: auto;
}
.u-section-3 .u-text-4 {
margin-left: auto;
}
.u-section-3 .u-image-3 {
margin-left: auto;
}
.u-section-3 .u-text-5 {
margin-left: auto;
}
.u-section-3 .u-text-6 {
margin-left: auto;
}
.u-section-3 .u-image-4 {
margin-left: auto;
}
.u-section-3 .u-text-7 {
margin-left: auto;
}
.u-section-3 .u-text-8 {
margin-left: auto;
}
.u-section-3 .u-image-5 {
margin-left: auto;
}
.u-section-3 .u-text-9 {
margin-left: auto;
}
.u-section-3 .u-text-10 {
margin-left: auto;
}
.u-section-3 .u-image-6 {
margin-left: auto;
}
.u-section-3 .u-text-11 {
margin-left: auto;
}
.u-section-3 .u-text-12 {
margin-left: auto;
}
}
@media (max-width: 575px) {
.u-section-3 .u-list-1 {
margin-top: 551px;
min-height: 1638px;
margin-right: initial;
margin-left: initial;
}
.u-section-3 .u-repeater-1 {
grid-auto-rows: calc(16.66% - 8.333333333333334px);
}
} | public/About.css | .u-section-1 {
background-image: none;
min-height: 822px;
}
.u-section-1 .u-shape-1 {
width: calc(((100% - 1140px) / 2) + 595px);
height: 831px;
margin: 1px auto 0 0;
}
.u-section-1 .u-layout-wrap-1 {
width: 1140px;
margin: -746px auto 47px calc(((100% - 1140px) / 2) + -12px);
}
.u-section-1 .u-layout-cell-1 {
min-height: 689px;
}
.u-section-1 .u-container-layout-1 {
padding: 30px;
}
.u-section-1 .u-shape-2 {
width: 418px;
height: 15px;
margin: 79px 31px 0 auto;
}
.u-section-1 .u-text-1 {
font-weight: 700;
font-size: 3.75rem;
line-height: 66px;
margin: -59px -25px 0 25px;
}
.u-section-1 .u-image-1 {
width: 480px;
height: 289px;
margin: 92px auto 0;
}
.u-section-1 .u-layout-cell-2 {
min-height: 572px;
}
.u-section-1 .u-container-layout-2 {
padding: 30px;
}
.u-section-1 .u-text-2 {
background-image: none;
font-family: Montserrat, sans-serif;
margin: 25px -7px 0 7px;
}
.u-section-1 .u-btn-1 {
border-style: none;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
background-image: none;
margin: 58px auto 0 30px;
}
@media (max-width: 1199px) {
.u-section-1 {
min-height: 701px;
}
.u-section-1 .u-shape-1 {
width: 630px;
margin-left: calc(((100% - 1140px) / 2) + 20px);
}
.u-section-1 .u-layout-wrap-1 {
width: 940px;
margin-left: calc(((100% - 1140px) / 2) + 100px);
}
.u-section-1 .u-layout-cell-1 {
min-height: 623px;
}
.u-section-1 .u-shape-2 {
width: 410px;
margin-top: 191px;
margin-right: 0;
}
.u-section-1 .u-text-1 {
margin-top: -106px;
margin-left: 0;
margin-right: 0;
}
.u-section-1 .u-image-1 {
width: 410px;
height: 247px;
margin-top: 85px;
}
.u-section-1 .u-layout-cell-2 {
min-height: 472px;
}
.u-section-1 .u-text-2 {
margin-top: -127px;
margin-left: 0;
margin-right: 0;
}
.u-section-1 .u-btn-1 {
margin-top: -102px;
margin-right: 247px;
margin-left: 0;
}
}
@media (max-width: 991px) {
.u-section-1 {
min-height: 233px;
}
.u-section-1 .u-shape-1 {
margin-left: calc(((100% - 1140px) / 2) + 130px);
}
.u-section-1 .u-layout-wrap-1 {
width: 720px;
margin-left: calc(((100% - 1140px) / 2) + 210px);
}
.u-section-1 .u-shape-2 {
width: 300px;
margin-top: 257px;
}
.u-section-1 .u-text-1 {
margin-top: -171px;
}
.u-section-1 .u-image-1 {
width: 300px;
height: 181px;
}
.u-section-1 .u-layout-cell-2 {
min-height: 100px;
}
.u-section-1 .u-btn-1 {
margin-top: -256px;
margin-right: 137px;
}
}
@media (max-width: 767px) {
.u-section-1 {
min-height: 333px;
}
.u-section-1 .u-shape-1 {
width: 540px;
margin-left: calc(((100% - 1140px) / 2) + 300px);
}
.u-section-1 .u-layout-wrap-1 {
width: 540px;
margin-left: calc(((100% - 1140px) / 2) + 300px);
}
.u-section-1 .u-layout-cell-1 {
min-height: 492px;
}
.u-section-1 .u-container-layout-1 {
padding-left: 10px;
padding-right: 10px;
}
.u-section-1 .u-shape-2 {
margin-top: 126px;
}
.u-section-1 .u-text-1 {
margin-top: -40px;
}
.u-section-1 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}
.u-section-1 .u-btn-1 {
margin-top: 0;
}
}
@media (max-width: 575px) {
.u-section-1 .u-shape-1 {
width: 340px;
margin-left: calc(((100% - 1140px) / 2) + 400px);
}
.u-section-1 .u-layout-wrap-1 {
width: 340px;
margin-left: calc(((100% - 1140px) / 2) + 400px);
}
.u-section-1 .u-layout-cell-1 {
min-height: 623px;
}
.u-section-1 .u-shape-2 {
margin-top: 257px;
}
.u-section-1 .u-text-1 {
margin-top: -171px;
}
.u-section-1 .u-btn-1 {
margin-top: -205px;
margin-right: 0;
}
}.u-section-2 {
background-image: none;
}
.u-section-2 .u-sheet-1 {
min-height: 1208px;
}
.u-section-2 .u-text-1 {
font-size: 4.5rem;
margin: 230px 666px 0 42px;
}
.u-section-2 .u-shape-1 {
width: 983px;
height: 19px;
margin: 0 auto 0 42px;
}
.u-section-2 .u-list-1 {
min-height: 610px;
grid-template-rows: auto auto;
height: auto;
margin: 86px auto 60px 0;
}
.u-section-2 .u-repeater-1 {
grid-auto-columns: calc(33.3333% - 6.66667px);
grid-template-columns: calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px);
grid-gap: 10px 10px;
grid-auto-rows: calc(50% - 5px);
}
.u-section-2 .u-container-layout-1 {
padding: 10px;
}
.u-section-2 .u-image-1 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-2 {
font-weight: 700;
margin: 20px 210px 0 0;
}
.u-section-2 .u-text-3 {
margin: 10px 261px 0 0;
}
.u-section-2 .u-container-layout-2 {
padding: 10px;
}
.u-section-2 .u-image-2 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-4 {
font-weight: 700;
margin: 20px 219px 0 0;
}
.u-section-2 .u-text-5 {
margin: 10px 272px 0 0;
}
.u-section-2 .u-container-layout-3 {
padding: 10px;
}
.u-section-2 .u-image-3 {
width: 180px;
height: 218px;
object-position: 50% 0%;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-6 {
font-weight: 700;
margin: 20px 204px 0 0;
}
.u-section-2 .u-text-7 {
margin: 10px 271px 0 0;
}
.u-section-2 .u-container-layout-4 {
padding: 10px;
}
.u-section-2 .u-image-4 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-8 {
font-weight: 700;
margin: 20px 249px 0 0;
}
.u-section-2 .u-text-9 {
margin: 10px 202px 0 0;
}
.u-section-2 .u-container-layout-5 {
padding: 10px;
}
.u-section-2 .u-image-5 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-10 {
font-weight: 700;
margin: 20px 241px 0 0;
}
.u-section-2 .u-text-11 {
margin: 10px 280px 0 0;
}
.u-section-2 .u-container-layout-6 {
padding: 10px;
}
.u-section-2 .u-image-6 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-2 .u-text-12 {
font-weight: 700;
margin: 20px 201px 0 0;
}
.u-section-2 .u-text-13 {
margin: 10px 200px 0 0;
}
@media (max-width: 1199px) {
.u-section-2 .u-sheet-1 {
min-height: 1102px;
}
.u-section-2 .u-text-1 {
width: 219px;
margin-top: 50px;
margin-right: 370px;
margin-left: 0;
}
.u-section-2 .u-shape-1 {
width: 940px;
margin-top: -93px;
margin-left: 0;
}
.u-section-2 .u-list-1 {
min-height: 503px;
margin-top: 224px;
margin-right: initial;
margin-left: initial;
}
.u-section-2 .u-text-2 {
margin-right: 10px;
}
.u-section-2 .u-text-3 {
margin-right: 61px;
}
.u-section-2 .u-text-4 {
margin-right: 19px;
}
.u-section-2 .u-text-5 {
margin-right: 72px;
}
.u-section-2 .u-text-6 {
margin-right: 4px;
}
.u-section-2 .u-text-7 {
margin-right: 71px;
}
.u-section-2 .u-text-8 {
margin-right: 49px;
}
.u-section-2 .u-text-9 {
margin-right: 2px;
}
.u-section-2 .u-text-10 {
margin-right: 41px;
}
.u-section-2 .u-text-11 {
margin-right: 80px;
}
.u-section-2 .u-text-12 {
margin-right: 1px;
}
.u-section-2 .u-text-13 {
margin-right: 0;
}
}
@media (max-width: 991px) {
.u-section-2 .u-sheet-1 {
min-height: 2146px;
}
.u-section-2 .u-text-1 {
margin-right: 283px;
}
.u-section-2 .u-shape-1 {
width: 720px;
margin-top: 1141px;
}
.u-section-2 .u-list-1 {
margin-top: -99px;
margin-bottom: 0;
min-height: 867px;
margin-right: initial;
margin-left: initial;
}
.u-section-2 .u-repeater-1 {
grid-auto-columns: calc(50% - 5px);
grid-template-columns: calc(50% - 5px) calc(50% - 5px);
grid-auto-rows: calc(33.33% - 6.66667px);
}
.u-section-2 .u-text-2 {
margin-right: 0;
}
.u-section-2 .u-text-3 {
margin-right: 0;
}
.u-section-2 .u-text-4 {
margin-right: 0;
}
.u-section-2 .u-text-5 {
margin-right: 0;
}
.u-section-2 .u-text-6 {
margin-right: 0;
}
.u-section-2 .u-text-7 {
margin-right: 0;
}
.u-section-2 .u-text-8 {
margin-right: 0;
}
.u-section-2 .u-text-9 {
margin-right: 0;
}
.u-section-2 .u-text-10 {
margin-right: 0;
}
.u-section-2 .u-text-11 {
margin-right: 0;
}
.u-section-2 .u-text-12 {
margin-right: 0;
}
}
@media (max-width: 767px) {
.u-section-2 .u-sheet-1 {
min-height: 3199px;
}
.u-section-2 .u-text-1 {
margin-right: 212px;
}
.u-section-2 .u-shape-1 {
width: 540px;
margin-top: 2021px;
}
.u-section-2 .u-list-1 {
min-height: 1928px;
margin-top: -1070px;
margin-bottom: 60px;
margin-right: initial;
margin-left: initial;
}
.u-section-2 .u-repeater-1 {
grid-auto-columns: 100%;
grid-template-columns: 100%;
grid-auto-rows: calc(16.66% - 8.33333px);
}
.u-section-2 .u-image-1 {
margin-left: auto;
}
.u-section-2 .u-text-2 {
margin-left: auto;
}
.u-section-2 .u-text-3 {
margin-left: auto;
}
.u-section-2 .u-image-2 {
margin-left: auto;
}
.u-section-2 .u-text-4 {
margin-left: auto;
}
.u-section-2 .u-text-5 {
margin-left: auto;
}
.u-section-2 .u-image-3 {
margin-left: auto;
}
.u-section-2 .u-text-6 {
margin-left: auto;
}
.u-section-2 .u-text-7 {
margin-left: auto;
}
.u-section-2 .u-image-4 {
margin-left: auto;
}
.u-section-2 .u-text-8 {
margin-left: auto;
}
.u-section-2 .u-text-9 {
margin-left: auto;
}
.u-section-2 .u-image-5 {
margin-left: auto;
}
.u-section-2 .u-text-10 {
margin-left: auto;
}
.u-section-2 .u-text-11 {
margin-left: auto;
}
.u-section-2 .u-image-6 {
margin-left: auto;
}
.u-section-2 .u-text-12 {
margin-left: auto;
}
.u-section-2 .u-text-13 {
margin-left: auto;
}
}
@media (max-width: 575px) {
.u-section-2 .u-sheet-1 {
min-height: 3109px;
}
.u-section-2 .u-text-1 {
margin-right: 133px;
}
.u-section-2 .u-shape-1 {
width: 340px;
margin-top: 2103px;
}
.u-section-2 .u-list-1 {
margin-bottom: 1px;
min-height: 1638px;
margin-right: initial;
margin-left: initial;
}
.u-section-2 .u-repeater-1 {
grid-auto-rows: calc(16.66% - 8.333333333333334px);
}
}.u-section-3 {
background-image: none;
}
.u-section-3 .u-sheet-1 {
min-height: 50vw;
}
.u-section-3 .u-list-1 {
min-height: 610px;
grid-template-rows: auto auto;
height: auto;
margin: 1px auto 60px 0;
}
.u-section-3 .u-repeater-1 {
grid-auto-columns: calc(33.3333% - 6.66667px);
grid-template-columns: calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px) calc(33.3333% - 6.66667px);
grid-gap: 10px 10px;
grid-auto-rows: calc(50% - 5px);
}
.u-section-3 .u-container-layout-1 {
padding: 10px;
}
.u-section-3 .u-image-1 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-1 {
font-weight: 700;
margin: 20px 210px 0 0;
}
.u-section-3 .u-text-2 {
margin: 10px 261px 0 0;
}
.u-section-3 .u-container-layout-2 {
padding: 10px;
}
.u-section-3 .u-image-2 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-3 {
font-weight: 700;
margin: 20px 219px 0 0;
}
.u-section-3 .u-text-4 {
margin: 10px 272px 0 0;
}
.u-section-3 .u-container-layout-3 {
padding: 10px;
}
.u-section-3 .u-image-3 {
width: 180px;
height: 218px;
object-position: 50% 0%;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-5 {
font-weight: 700;
margin: 20px 204px 0 0;
}
.u-section-3 .u-text-6 {
margin: 10px 271px 0 0;
}
.u-section-3 .u-container-layout-4 {
padding: 10px;
}
.u-section-3 .u-image-4 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-7 {
font-weight: 700;
margin: 20px 249px 0 0;
}
.u-section-3 .u-text-8 {
margin: 10px 202px 0 0;
}
.u-section-3 .u-container-layout-5 {
padding: 10px;
}
.u-section-3 .u-image-5 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-9 {
font-weight: 700;
margin: 20px 241px 0 0;
}
.u-section-3 .u-text-10 {
margin: 10px 280px 0 0;
}
.u-section-3 .u-container-layout-6 {
padding: 10px;
}
.u-section-3 .u-image-6 {
width: 180px;
height: 218px;
margin: 0 auto 0 0;
}
.u-section-3 .u-text-11 {
font-weight: 700;
margin: 20px 201px 0 0;
}
.u-section-3 .u-text-12 {
margin: 10px 200px 0 0;
}
@media (max-width: 1199px) {
.u-section-3 .u-list-1 {
min-height: 503px;
margin-right: initial;
margin-left: initial;
}
.u-section-3 .u-text-1 {
margin-right: 10px;
}
.u-section-3 .u-text-2 {
margin-right: 61px;
}
.u-section-3 .u-text-3 {
margin-right: 19px;
}
.u-section-3 .u-text-4 {
margin-right: 72px;
}
.u-section-3 .u-text-5 {
margin-right: 4px;
}
.u-section-3 .u-text-6 {
margin-right: 71px;
}
.u-section-3 .u-text-7 {
margin-right: 49px;
}
.u-section-3 .u-text-8 {
margin-right: 2px;
}
.u-section-3 .u-text-9 {
margin-right: 41px;
}
.u-section-3 .u-text-10 {
margin-right: 80px;
}
.u-section-3 .u-text-11 {
margin-right: 1px;
}
.u-section-3 .u-text-12 {
margin-right: 0;
}
}
@media (max-width: 991px) {
.u-section-3 .u-list-1 {
margin-top: 613px;
min-height: 867px;
margin-right: initial;
margin-left: initial;
}
.u-section-3 .u-repeater-1 {
grid-auto-columns: calc(50% - 5px);
grid-template-columns: calc(50% - 5px) calc(50% - 5px);
grid-auto-rows: calc(33.33% - 6.66667px);
}
.u-section-3 .u-text-1 {
margin-right: 0;
}
.u-section-3 .u-text-2 {
margin-right: 0;
}
.u-section-3 .u-text-3 {
margin-right: 0;
}
.u-section-3 .u-text-4 {
margin-right: 0;
}
.u-section-3 .u-text-5 {
margin-right: 0;
}
.u-section-3 .u-text-6 {
margin-right: 0;
}
.u-section-3 .u-text-7 {
margin-right: 0;
}
.u-section-3 .u-text-8 {
margin-right: 0;
}
.u-section-3 .u-text-9 {
margin-right: 0;
}
.u-section-3 .u-text-10 {
margin-right: 0;
}
.u-section-3 .u-text-11 {
margin-right: 0;
}
}
@media (max-width: 767px) {
.u-section-3 .u-list-1 {
min-height: 1928px;
margin-top: 522px;
margin-right: initial;
margin-left: initial;
}
.u-section-3 .u-repeater-1 {
grid-auto-columns: 100%;
grid-template-columns: 100%;
grid-auto-rows: calc(16.66% - 8.33333px);
}
.u-section-3 .u-image-1 {
margin-left: auto;
}
.u-section-3 .u-text-1 {
margin-left: auto;
}
.u-section-3 .u-text-2 {
margin-left: auto;
}
.u-section-3 .u-image-2 {
margin-left: auto;
}
.u-section-3 .u-text-3 {
margin-left: auto;
}
.u-section-3 .u-text-4 {
margin-left: auto;
}
.u-section-3 .u-image-3 {
margin-left: auto;
}
.u-section-3 .u-text-5 {
margin-left: auto;
}
.u-section-3 .u-text-6 {
margin-left: auto;
}
.u-section-3 .u-image-4 {
margin-left: auto;
}
.u-section-3 .u-text-7 {
margin-left: auto;
}
.u-section-3 .u-text-8 {
margin-left: auto;
}
.u-section-3 .u-image-5 {
margin-left: auto;
}
.u-section-3 .u-text-9 {
margin-left: auto;
}
.u-section-3 .u-text-10 {
margin-left: auto;
}
.u-section-3 .u-image-6 {
margin-left: auto;
}
.u-section-3 .u-text-11 {
margin-left: auto;
}
.u-section-3 .u-text-12 {
margin-left: auto;
}
}
@media (max-width: 575px) {
.u-section-3 .u-list-1 {
margin-top: 551px;
min-height: 1638px;
margin-right: initial;
margin-left: initial;
}
.u-section-3 .u-repeater-1 {
grid-auto-rows: calc(16.66% - 8.333333333333334px);
}
} | 0.382718 | 0.08266 |
body{
background: #ecf0f4;
}
.mlr_15{
margin: 0px -15px;
}
@font-face {
font-family: 'CoHeadlineW23-ArabicBold';
src: url('CoHeadlineW23ArabicBold.ttf');
}
.ff-arabic{
font-family: "CoHeadlineW23-ArabicBold"!important;
text-shadow: 0px 0px 0px rgba(0,0,0,0.3);
}
.ff-tahoma{
font-family: "Tahoma", Sans-serif;
text-shadow: 0px 0px 0px rgba(0,0,0,0.3);
}
.ff-roboto{
font-family: 'Roboto', sans-serif;
}
.sd{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sd2{
box-shadow: 0px 1.5px 3px 0px rgba(0, 0, 0, 0.16);
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.bg_darkblue{
background: #1C2346;
}
.bg_lightgray{
background: #F5F7F8;
}
.bg_lightskyblue{
background: #E8F0FD;
}
.text_lightblue{
color: #547ead;
}
.text_darkblue{
color: #1C2346;
}
.text_lightgray{
color: #4b5156;
}
.fs-12{font-size: 12px!important;}
.fs-13{font-size: 13px!important;}
.fs-14{font-size: 14px!important;}
.fs-16{font-size: 16px!important;}
.fs-18{font-size: 18px!important;}
.fs-20{font-size: 20px!important;}
.fw-400{font-weight: 400;}
.fw-800{font-weight: 800;}
.fw-bold{font-weight: bold;}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
}
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #3fbbc0;
border-top-color: #ecf8f9;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*----------------------------------
header
-----------------------------------*/
.logo_left{
text-align: left;
}
.logo_center{
text-align: center;
}
.logo_right{
text-align: right;
}
@media (max-width: 767.98px){
.logo_left{
text-align: center;
}
.logo_left img{
height: 28px!important;
width: auto;
}
.logo_center h3{
text-align: center;
font-size: 16px;
}
.logo_right{
text-align: center;
}
.logo_right img{
height: 28px!important;
width: auto;
}
}
/*----------------------------------
main
-----------------------------------*/
.card1{
background-color: #ffffff;
background-image: url(../images/our-services-bg-01@3x.png);
background-position: top left;
background-repeat: no-repeat;
background-size: 70% auto;
}
.card2{
background-color: #ffffff;
background-image: url(../images/our-services-bg-02@3x.png);
background-position: bottom right;
background-repeat: no-repeat;
background-size: 70% auto;
}
.card3{
background-color: #ffffff;
background-image: url(../images/our-services-bg-03@3x.png);
background-position: top right;
background-repeat: no-repeat;
background-size: 70% auto;
}
/*--------------------------------------------------------------
#
--------------------------------------------------------------*/
/*
DEMO STYLE
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
font-family: "Roboto", sans-serif;
}
p {
font-family: 'Poppins', sans-serif;
font-size: 1.1em;
font-weight: 300;
line-height: 1.7em;
color: #999;
}
a,
a:hover,
a:focus {
color: inherit;
text-decoration: none;
transition: all 0.3s;
}
#content .navbar {
padding: 0px 10px;
background: #518CA3;
color: #fff;
border: none;
border-radius: 0;
margin: 0px -20px 0px -20px;
margin-bottom: 30px;
/*box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);*/
border: 2px solid transparent;
}
#content .navbar-btn {
box-shadow: none;
outline: none !important;
border: none;
}
.line {
width: 100%;
height: 1px;
border-bottom: 1px dashed #ddd;
margin: 40px 0;
}
i,
span {
display: inline-block;
}
/* ---------------------------------------------------
SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
display: flex;
align-items: stretch;
}
#sidebar {
min-width: 200px;
max-width: 200px;
background: #3A4B55;
color: #fff;
transition: all 0.3s;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}
#sidebar.active {
min-width: 80px;
max-width: 80px;
text-align: center;
}
#sidebar.active .sidebar-header h3,
#sidebar.active .CTAs {
display: none;
}
#sidebar.active .sidebar-header strong {
display: block;
}
#sidebar ul li a {
text-align: left;
}
#sidebar.active ul li a {
padding: 20px 10px;
text-align: center;
font-size: 0.70em;
}
#sidebar.active ul li a i {
margin-right: 0;
display: block;
font-size: 1.8em;
margin-bottom: 5px;
}
#sidebar.active ul ul a {
padding: 10px !important;
}
#sidebar.active .dropdown-toggle::after {
top: auto;
bottom: 10px;
right: 50%;
-webkit-transform: translateX(50%);
-ms-transform: translateX(50%);
transform: translateX(50%);
}
#sidebar .sidebar-header {
padding: 10px 20px;
background: #447f96;
}
#sidebar .sidebar-header strong {
display: none;
font-size: 1.8em;
}
#sidebar ul.components {
padding: 0px 0;
border-bottom: 1px solid #47748b;
}
#sidebar ul li a {
padding: 10px;
font-size: 0.80em;
display: block;
}
#sidebar ul li a:hover {
color: #fff;
border-left: 3px solid #EE8366;
background-color: #2C3A42;
}
#sidebar ul li a i {
margin-right: 10px;
}
#sidebar ul li.active>a,
a[aria-expanded="true"] {
color: #fff;
border-left: 3px solid #EE8366;
background-color: #2C3A42;
}
#sidebar ul li {
border-top: 1px solid #49565D;
position: relative;
}
a[data-toggle="collapse"] {
position: relative;
}
.dropdown-toggle::after {
display: block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
}
ul ul a {
font-size: 0.9em !important;
padding-left: 30px !important;
background: #cdcdcd;
}
ul.CTAs {
padding: 20px;
}
ul.CTAs a {
text-align: center;
font-size: 0.9em !important;
display: block;
border-radius: 5px;
margin-bottom: 5px;
}
a.download {
background: #fff;
color: #7386D5;
}
a.article,
a.article:hover {
background: #6d7fcc !important;
color: #fff !important;
}
/* ---------------------------------------------------
CONTENT STYLE
----------------------------------------------------- */
#content {
width: 100%;
padding: 0px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
}
/* ---------------------------------------------------
MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
#sidebar {
min-width: 80px;
max-width: 80px;
text-align: center;
margin-left: -80px !important;
}
.dropdown-toggle::after {
top: auto;
bottom: 10px;
right: 50%;
-webkit-transform: translateX(50%);
-ms-transform: translateX(50%);
transform: translateX(50%);
}
#sidebar.active {
margin-left: 0 !important;
}
#sidebar .sidebar-header h3,
#sidebar .CTAs {
display: none;
}
#sidebar .sidebar-header strong {
display: block;
}
#sidebar ul li a {
padding: 20px 10px;
}
#sidebar ul li a span {
font-size: 0.85em;
}
#sidebar ul li a i {
margin-right: 0;
display: block;
}
#sidebar ul ul a {
padding: 10px !important;
}
#sidebar ul li a i {
font-size: 1.3em;
}
#sidebar {
margin-left: 0;
}
#sidebarCollapse span {
display: none;
}
}
.sd{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#sidebarCollapse .rotate {
-moz-transition: all .5s linear;
-webkit-transition: all .5s linear;
transition: all .5s linear;
}
#sidebarCollapse .rotate.down {
-moz-transform:rotate(180deg);
-webkit-transform:rotate(180deg);
transform:rotate(180deg);
}
#sidebarCollapse{
padding: 0px!important;
}
#sidebarCollapse .rotate{
padding: .5rem 1.6rem;
font-weight: bold;
font-size: .80rem;
}
/*----------------------------------
table style
-----------------------------------*/
.main{
height: 58vh;
overflow-y: auto;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 28px rgba(0,0,0,.08);
}
.res_mainT{
padding: .10rem .45rem;
height: 49vh;
border-bottom: 1px solid #dee2e6;
}
.sub_T{
margin-bottom: 0px;
}
.res_mainT .sub_T td, .res_mainT .sub_T th {
padding: .15rem;
vertical-align: middle;
border-top: 1px solid #dee2e6;
text-align: center;
white-space: nowrap;
}
.sub_T thead tr:nth-child(1) th {
position: sticky;
top: 0px;
z-index: 999;
/*outline: 1px solid #8e8c8c;*/
font-size: 13px;
box-shadow: 0px 0px 2px 0px #8e8e8e;
}
.sub_T thead tr:nth-child(2) th {
position: sticky;
top: 25px;
z-index: 999;
/*outline: 1px solid #8e8c8c;*/
font-size: 13px;
box-shadow: 0px 0px 2px 0px #8e8e8e;
}
.sub_T .head_1 th{
background-color: rgb(243 237 222);
}
.sub_T .head_2 th {
background-color: rgb(243 237 222);
}
.sub_T td, .sub_T th {
border: 1px solid #c3c3c3;
}
.highcharts-figure, .highcharts-data-table table {
min-width: 320px;
max-width: 660px;
margin: 1em auto;
}
.highcharts-data-table table {
font-family: Verdana, sans-serif;
border-collapse: collapse;
border: 1px solid #EBEBEB;
margin: 10px auto;
text-align: center;
width: 100%;
max-width: 500px;
}
.highcharts-data-table caption {
padding: 1em 0;
font-size: 1.2em;
color: #555;
}
.highcharts-data-table th {
font-weight: 600;
padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
background: #f8f8f8;
}
.highcharts-data-table tr:hover {
background: #f1f7ff;
}
.highcharts-credits{
display: none;
} | assets/lib/style.css | body{
background: #ecf0f4;
}
.mlr_15{
margin: 0px -15px;
}
@font-face {
font-family: 'CoHeadlineW23-ArabicBold';
src: url('CoHeadlineW23ArabicBold.ttf');
}
.ff-arabic{
font-family: "CoHeadlineW23-ArabicBold"!important;
text-shadow: 0px 0px 0px rgba(0,0,0,0.3);
}
.ff-tahoma{
font-family: "Tahoma", Sans-serif;
text-shadow: 0px 0px 0px rgba(0,0,0,0.3);
}
.ff-roboto{
font-family: 'Roboto', sans-serif;
}
.sd{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sd2{
box-shadow: 0px 1.5px 3px 0px rgba(0, 0, 0, 0.16);
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.bg_darkblue{
background: #1C2346;
}
.bg_lightgray{
background: #F5F7F8;
}
.bg_lightskyblue{
background: #E8F0FD;
}
.text_lightblue{
color: #547ead;
}
.text_darkblue{
color: #1C2346;
}
.text_lightgray{
color: #4b5156;
}
.fs-12{font-size: 12px!important;}
.fs-13{font-size: 13px!important;}
.fs-14{font-size: 14px!important;}
.fs-16{font-size: 16px!important;}
.fs-18{font-size: 18px!important;}
.fs-20{font-size: 20px!important;}
.fw-400{font-weight: 400;}
.fw-800{font-weight: 800;}
.fw-bold{font-weight: bold;}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
}
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #3fbbc0;
border-top-color: #ecf8f9;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*----------------------------------
header
-----------------------------------*/
.logo_left{
text-align: left;
}
.logo_center{
text-align: center;
}
.logo_right{
text-align: right;
}
@media (max-width: 767.98px){
.logo_left{
text-align: center;
}
.logo_left img{
height: 28px!important;
width: auto;
}
.logo_center h3{
text-align: center;
font-size: 16px;
}
.logo_right{
text-align: center;
}
.logo_right img{
height: 28px!important;
width: auto;
}
}
/*----------------------------------
main
-----------------------------------*/
.card1{
background-color: #ffffff;
background-image: url(../images/our-services-bg-01@3x.png);
background-position: top left;
background-repeat: no-repeat;
background-size: 70% auto;
}
.card2{
background-color: #ffffff;
background-image: url(../images/our-services-bg-02@3x.png);
background-position: bottom right;
background-repeat: no-repeat;
background-size: 70% auto;
}
.card3{
background-color: #ffffff;
background-image: url(../images/our-services-bg-03@3x.png);
background-position: top right;
background-repeat: no-repeat;
background-size: 70% auto;
}
/*--------------------------------------------------------------
#
--------------------------------------------------------------*/
/*
DEMO STYLE
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
font-family: "Roboto", sans-serif;
}
p {
font-family: 'Poppins', sans-serif;
font-size: 1.1em;
font-weight: 300;
line-height: 1.7em;
color: #999;
}
a,
a:hover,
a:focus {
color: inherit;
text-decoration: none;
transition: all 0.3s;
}
#content .navbar {
padding: 0px 10px;
background: #518CA3;
color: #fff;
border: none;
border-radius: 0;
margin: 0px -20px 0px -20px;
margin-bottom: 30px;
/*box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);*/
border: 2px solid transparent;
}
#content .navbar-btn {
box-shadow: none;
outline: none !important;
border: none;
}
.line {
width: 100%;
height: 1px;
border-bottom: 1px dashed #ddd;
margin: 40px 0;
}
i,
span {
display: inline-block;
}
/* ---------------------------------------------------
SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
display: flex;
align-items: stretch;
}
#sidebar {
min-width: 200px;
max-width: 200px;
background: #3A4B55;
color: #fff;
transition: all 0.3s;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}
#sidebar.active {
min-width: 80px;
max-width: 80px;
text-align: center;
}
#sidebar.active .sidebar-header h3,
#sidebar.active .CTAs {
display: none;
}
#sidebar.active .sidebar-header strong {
display: block;
}
#sidebar ul li a {
text-align: left;
}
#sidebar.active ul li a {
padding: 20px 10px;
text-align: center;
font-size: 0.70em;
}
#sidebar.active ul li a i {
margin-right: 0;
display: block;
font-size: 1.8em;
margin-bottom: 5px;
}
#sidebar.active ul ul a {
padding: 10px !important;
}
#sidebar.active .dropdown-toggle::after {
top: auto;
bottom: 10px;
right: 50%;
-webkit-transform: translateX(50%);
-ms-transform: translateX(50%);
transform: translateX(50%);
}
#sidebar .sidebar-header {
padding: 10px 20px;
background: #447f96;
}
#sidebar .sidebar-header strong {
display: none;
font-size: 1.8em;
}
#sidebar ul.components {
padding: 0px 0;
border-bottom: 1px solid #47748b;
}
#sidebar ul li a {
padding: 10px;
font-size: 0.80em;
display: block;
}
#sidebar ul li a:hover {
color: #fff;
border-left: 3px solid #EE8366;
background-color: #2C3A42;
}
#sidebar ul li a i {
margin-right: 10px;
}
#sidebar ul li.active>a,
a[aria-expanded="true"] {
color: #fff;
border-left: 3px solid #EE8366;
background-color: #2C3A42;
}
#sidebar ul li {
border-top: 1px solid #49565D;
position: relative;
}
a[data-toggle="collapse"] {
position: relative;
}
.dropdown-toggle::after {
display: block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
}
ul ul a {
font-size: 0.9em !important;
padding-left: 30px !important;
background: #cdcdcd;
}
ul.CTAs {
padding: 20px;
}
ul.CTAs a {
text-align: center;
font-size: 0.9em !important;
display: block;
border-radius: 5px;
margin-bottom: 5px;
}
a.download {
background: #fff;
color: #7386D5;
}
a.article,
a.article:hover {
background: #6d7fcc !important;
color: #fff !important;
}
/* ---------------------------------------------------
CONTENT STYLE
----------------------------------------------------- */
#content {
width: 100%;
padding: 0px 20px 20px 20px;
min-height: 100vh;
transition: all 0.3s;
}
/* ---------------------------------------------------
MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
#sidebar {
min-width: 80px;
max-width: 80px;
text-align: center;
margin-left: -80px !important;
}
.dropdown-toggle::after {
top: auto;
bottom: 10px;
right: 50%;
-webkit-transform: translateX(50%);
-ms-transform: translateX(50%);
transform: translateX(50%);
}
#sidebar.active {
margin-left: 0 !important;
}
#sidebar .sidebar-header h3,
#sidebar .CTAs {
display: none;
}
#sidebar .sidebar-header strong {
display: block;
}
#sidebar ul li a {
padding: 20px 10px;
}
#sidebar ul li a span {
font-size: 0.85em;
}
#sidebar ul li a i {
margin-right: 0;
display: block;
}
#sidebar ul ul a {
padding: 10px !important;
}
#sidebar ul li a i {
font-size: 1.3em;
}
#sidebar {
margin-left: 0;
}
#sidebarCollapse span {
display: none;
}
}
.sd{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#sidebarCollapse .rotate {
-moz-transition: all .5s linear;
-webkit-transition: all .5s linear;
transition: all .5s linear;
}
#sidebarCollapse .rotate.down {
-moz-transform:rotate(180deg);
-webkit-transform:rotate(180deg);
transform:rotate(180deg);
}
#sidebarCollapse{
padding: 0px!important;
}
#sidebarCollapse .rotate{
padding: .5rem 1.6rem;
font-weight: bold;
font-size: .80rem;
}
/*----------------------------------
table style
-----------------------------------*/
.main{
height: 58vh;
overflow-y: auto;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 28px rgba(0,0,0,.08);
}
.res_mainT{
padding: .10rem .45rem;
height: 49vh;
border-bottom: 1px solid #dee2e6;
}
.sub_T{
margin-bottom: 0px;
}
.res_mainT .sub_T td, .res_mainT .sub_T th {
padding: .15rem;
vertical-align: middle;
border-top: 1px solid #dee2e6;
text-align: center;
white-space: nowrap;
}
.sub_T thead tr:nth-child(1) th {
position: sticky;
top: 0px;
z-index: 999;
/*outline: 1px solid #8e8c8c;*/
font-size: 13px;
box-shadow: 0px 0px 2px 0px #8e8e8e;
}
.sub_T thead tr:nth-child(2) th {
position: sticky;
top: 25px;
z-index: 999;
/*outline: 1px solid #8e8c8c;*/
font-size: 13px;
box-shadow: 0px 0px 2px 0px #8e8e8e;
}
.sub_T .head_1 th{
background-color: rgb(243 237 222);
}
.sub_T .head_2 th {
background-color: rgb(243 237 222);
}
.sub_T td, .sub_T th {
border: 1px solid #c3c3c3;
}
.highcharts-figure, .highcharts-data-table table {
min-width: 320px;
max-width: 660px;
margin: 1em auto;
}
.highcharts-data-table table {
font-family: Verdana, sans-serif;
border-collapse: collapse;
border: 1px solid #EBEBEB;
margin: 10px auto;
text-align: center;
width: 100%;
max-width: 500px;
}
.highcharts-data-table caption {
padding: 1em 0;
font-size: 1.2em;
color: #555;
}
.highcharts-data-table th {
font-weight: 600;
padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
background: #f8f8f8;
}
.highcharts-data-table tr:hover {
background: #f1f7ff;
}
.highcharts-credits{
display: none;
} | 0.307254 | 0.102439 |
.blog-container {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin: 1rem;
padding: 1rem;
}
.blog-listing {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
max-width: 40%;
}
.blog-container ul.blog-posts {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin: 0;
}
.blog-container ul.blog-posts li {
list-style-type: none;
padding: .75rem 1rem;
border: 1px solid rgba(0,0,0,.125);
cursor: pointer;
}
.blog-container ul.blog-posts li.active {
font-weight: 700;
}
.blog-container ul.blog-posts li:first-child {
border-top-left-radius: .25rem;
border-top-right-radius: .25rem;
}
.blog-search-container {
position: relative;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
}
.blog-search-container .blog-search-title {
color: #ffffff;
background-color: #343a40;
padding: .75rem 1.25rem;
margin: 0;
font-size: 1.5rem;
font-weight: 500;
}
.blog-search-container .blog-search-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 0;
padding: 1.25rem;
}
.blog-search-container .blog-search-body .form-control {
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
margin-top: 1rem;
}
.blog-search-container .blog-search-body .form-button {
margin-top: 1rem;
cursor: pointer;
color: #fff;
background-color: #343a40;
border-color: #343a40;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
} | react-blog-posts-redux/src/components/BlogPosts.css | .blog-container {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin: 1rem;
padding: 1rem;
}
.blog-listing {
-webkit-box-flex: 0;
-ms-flex: 0 0 40%;
flex: 0 0 40%;
max-width: 40%;
}
.blog-container ul.blog-posts {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin: 0;
}
.blog-container ul.blog-posts li {
list-style-type: none;
padding: .75rem 1rem;
border: 1px solid rgba(0,0,0,.125);
cursor: pointer;
}
.blog-container ul.blog-posts li.active {
font-weight: 700;
}
.blog-container ul.blog-posts li:first-child {
border-top-left-radius: .25rem;
border-top-right-radius: .25rem;
}
.blog-search-container {
position: relative;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
}
.blog-search-container .blog-search-title {
color: #ffffff;
background-color: #343a40;
padding: .75rem 1.25rem;
margin: 0;
font-size: 1.5rem;
font-weight: 500;
}
.blog-search-container .blog-search-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 0;
padding: 1.25rem;
}
.blog-search-container .blog-search-body .form-control {
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
margin-top: 1rem;
}
.blog-search-container .blog-search-body .form-button {
margin-top: 1rem;
cursor: pointer;
color: #fff;
background-color: #343a40;
border-color: #343a40;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
} | 0.271155 | 0.052376 |
/* We set !important because sometimes static is added inline */
position: relative !important;
padding-bottom: 92px;
}
.jetpack-sso .message {
margin-top: 20px;
}
.jetpack-sso #login .message:first-child,
.jetpack-sso #login h1 + .message {
margin-top: 0;
}
.jetpack-sso-repositioned #loginform {
padding-bottom: 26px;
}
#loginform #jetpack-sso-wrap,
#loginform #jetpack-sso-wrap * {
box-sizing: border-box;
}
#jetpack-sso-wrap__action,
#jetpack-sso-wrap__user{
display: none;
}
.jetpack-sso-form-display #jetpack-sso-wrap__action,
.jetpack-sso-form-display #jetpack-sso-wrap__user {
display: block;
}
#jetpack-sso-wrap {
position: absolute;
bottom: 20px;
padding: 0 24px;
margin-right: -24px;
margin-left: -24px;
width: 100%;
}
.jetpack-sso-repositioned #jetpack-sso-wrap {
position: relative;
bottom: auto;
padding: 0;
margin-top: 16px;
margin-right: 0;
margin-left: 0;
}
.jetpack-sso-form-display #jetpack-sso-wrap {
position: relative;
bottom: auto;
padding: 0;
margin-top: 0;
margin-right: 0;
margin-left: 0;
}
#loginform #jetpack-sso-wrap p {
color: #777777;
margin-bottom: 16px;
}
#jetpack-sso-wrap a {
display: block;
width: 100%;
text-align: center;
text-decoration: none;
}
#jetpack-sso-wrap .jetpack-sso-toggle.wpcom {
display: none;
}
.jetpack-sso-form-display #jetpack-sso-wrap .jetpack-sso-toggle.wpcom {
display: block;
}
.jetpack-sso-form-display #jetpack-sso-wrap .jetpack-sso-toggle.default {
display: none;
}
.jetpack-sso-form-display #loginform > p,
.jetpack-sso-form-display #loginform > div {
display: none;
}
.jetpack-sso-form-display #loginform #jetpack-sso-wrap {
display: block;
}
.jetpack-sso-form-display #loginform {
padding: 26px 24px;
}
.jetpack-sso-or {
margin-bottom: 16px;
position: relative;
text-align: center;
}
.jetpack-sso-or:before {
background: #E5E5E5;
content: '';
height: 1px;
position: absolute;
right: 0;
top: 50%;
width: 100%;
}
.jetpack-sso-or span {
background: #fff;
color: #777;
position: relative;
padding: 0 8px;
text-transform: uppercase
}
.jetpack-sso.button {
height: 36px;
line-height: 34px;
float: none;
margin-bottom: 16px;
position: relative;
width: 100%;
}
.jetpack-sso.button > span {
position: relative;
padding-right: 30px;
}
.jetpack-sso.button .genericon-wordpress {
position: absolute;
right: 0;
top: -3px;
font-size: 24px;
}
@media screen and ( max-width: 782px ) {
.jetpack-sso.button {
line-height: 22px;
}
}
#jetpack-sso-wrap__user img {
border-radius: 50%;
display: block;
margin: 0 auto 16px;
}
#jetpack-sso-wrap__user h2 {
font-size: 21px;
font-weight: 300;
margin-bottom: 16px;
text-align: center;
}
#jetpack-sso-wrap__user h2 span {
font-weight: bold;
}
.jetpack-sso-wrap__reauth {
margin-bottom: 16px;
}
.jetpack-sso-form-display #nav {
display: none;
}
.jetpack-sso-form-display #backtoblog {
margin: 24px 0 0;
} | plugins/jetpack/modules/sso/jetpack-sso-login-rtl.css | /* We set !important because sometimes static is added inline */
position: relative !important;
padding-bottom: 92px;
}
.jetpack-sso .message {
margin-top: 20px;
}
.jetpack-sso #login .message:first-child,
.jetpack-sso #login h1 + .message {
margin-top: 0;
}
.jetpack-sso-repositioned #loginform {
padding-bottom: 26px;
}
#loginform #jetpack-sso-wrap,
#loginform #jetpack-sso-wrap * {
box-sizing: border-box;
}
#jetpack-sso-wrap__action,
#jetpack-sso-wrap__user{
display: none;
}
.jetpack-sso-form-display #jetpack-sso-wrap__action,
.jetpack-sso-form-display #jetpack-sso-wrap__user {
display: block;
}
#jetpack-sso-wrap {
position: absolute;
bottom: 20px;
padding: 0 24px;
margin-right: -24px;
margin-left: -24px;
width: 100%;
}
.jetpack-sso-repositioned #jetpack-sso-wrap {
position: relative;
bottom: auto;
padding: 0;
margin-top: 16px;
margin-right: 0;
margin-left: 0;
}
.jetpack-sso-form-display #jetpack-sso-wrap {
position: relative;
bottom: auto;
padding: 0;
margin-top: 0;
margin-right: 0;
margin-left: 0;
}
#loginform #jetpack-sso-wrap p {
color: #777777;
margin-bottom: 16px;
}
#jetpack-sso-wrap a {
display: block;
width: 100%;
text-align: center;
text-decoration: none;
}
#jetpack-sso-wrap .jetpack-sso-toggle.wpcom {
display: none;
}
.jetpack-sso-form-display #jetpack-sso-wrap .jetpack-sso-toggle.wpcom {
display: block;
}
.jetpack-sso-form-display #jetpack-sso-wrap .jetpack-sso-toggle.default {
display: none;
}
.jetpack-sso-form-display #loginform > p,
.jetpack-sso-form-display #loginform > div {
display: none;
}
.jetpack-sso-form-display #loginform #jetpack-sso-wrap {
display: block;
}
.jetpack-sso-form-display #loginform {
padding: 26px 24px;
}
.jetpack-sso-or {
margin-bottom: 16px;
position: relative;
text-align: center;
}
.jetpack-sso-or:before {
background: #E5E5E5;
content: '';
height: 1px;
position: absolute;
right: 0;
top: 50%;
width: 100%;
}
.jetpack-sso-or span {
background: #fff;
color: #777;
position: relative;
padding: 0 8px;
text-transform: uppercase
}
.jetpack-sso.button {
height: 36px;
line-height: 34px;
float: none;
margin-bottom: 16px;
position: relative;
width: 100%;
}
.jetpack-sso.button > span {
position: relative;
padding-right: 30px;
}
.jetpack-sso.button .genericon-wordpress {
position: absolute;
right: 0;
top: -3px;
font-size: 24px;
}
@media screen and ( max-width: 782px ) {
.jetpack-sso.button {
line-height: 22px;
}
}
#jetpack-sso-wrap__user img {
border-radius: 50%;
display: block;
margin: 0 auto 16px;
}
#jetpack-sso-wrap__user h2 {
font-size: 21px;
font-weight: 300;
margin-bottom: 16px;
text-align: center;
}
#jetpack-sso-wrap__user h2 span {
font-weight: bold;
}
.jetpack-sso-wrap__reauth {
margin-bottom: 16px;
}
.jetpack-sso-form-display #nav {
display: none;
}
.jetpack-sso-form-display #backtoblog {
margin: 24px 0 0;
} | 0.247896 | 0.041269 |
.animation01{
position: absolute;
width: 100%;
height: 100%;
}
.border_box{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 15vw;
height: 15vw;
}
.line{
display: block;
position: absolute;
right: 0;
bottom: 0;
background-color: #845b46;
opacity: 0;
}
.line01{
top: 0;
left: 100%;
width: 0.15vw;
height: 15.15vw;
transform-origin: bottom;
animation: animation01_line01 0.2s linear 0.3s forwards;
}
.line03{
top: 0;
left: 0;
width: 0.15vw;
height: 15.15vw;
transform-origin: bottom;
animation: animation01_line01 0.2s linear 0.6s forwards;
}
@keyframes animation01_line01{
0%{
transform: scale3d(1,0,1);
opacity: 1;
}
100%{
transform: scale3d(1,1,1);
opacity: 1;
}
}
.line02{
top: 100%;
left: 0;
width: 15.15vw;
height: 0.15vw;
transform-origin: right;
animation: animation01_line02 0.2s linear 0.4s forwards;
}
.line04{
top: 0;
left: 0;
width: 15.15vw;
height: 0.15vw;
transform-origin: left;
animation: animation01_line02 0.2s linear 0.8s forwards;
}
@keyframes animation01_line02{
0%{
transform: scale3d(0,1,1);
opacity: 1;
}
100%{
transform: scale3d(1,1,1);
opacity: 1;
}
}
.circle{
display: block;
position: absolute;
right: 0;
bottom: 0;
width: 1.2vw;
height: 1.2vw;
border: 0.1vw solid #fff;
border-radius: 50%;
opacity: 0;
}
.circle01{
top: 96%;
left: 96%;
margin: 0 auto;
animation: animation01_circle 0.3s linear 0.3s forwards;
}
.circle02{
top: 96%;
left: -99%;
margin: 0 auto;
animation: animation01_circle 0.3s linear 0.45s forwards;
}
.circle03{
top: -4%;
left: -99%;
margin: 0 auto;
animation: animation01_circle 0.3s linear 0.65s forwards;
}
.circle04{
top: -4%;
left: 96%;
margin: 0 auto;
animation: animation01_circle 0.3s linear 0.85s forwards;
}
@keyframes animation01_circle{
0%{
transform: scale3d(0,0,1);
opacity: 1;
}
40%{
transform: scale3d(1,1,1);
opacity: 1;
}
60%{
transform: scale3d(1,1,1);
opacity: 1;
}
100%{
transform: scale3d(0,0,1);
opacity: 1;
}
}
.wave{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 13.5vw;
height: 13.5vw;
overflow: hidden;
}
.wave_wrapper{
width: 200%;
height: 150%;
position: absolute;
top: -25%;
right: 0;
bottom: 0;
left: -50%;
margin: 0 auto;
animation: animation01_wave_wrapper 1s linear 1s forwards;
}
@keyframes animation01_wave_wrapper{
0%{
transform: rotate(0);
}
25%{
transform: rotate(15deg);
}
50%{
transform: rotate(0);
}
75%{
transform: rotate(-15deg);
}
100%{
transform: rotate(0);
}
}
.wave_box{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: 0 auto;
width: 100%;
height: 100%;
background-color: #fff;
transform-origin: bottom;
animation: animation01_wave_box 1s linear 1s forwards;
opacity: 0;
}
@keyframes animation01_wave_box{
0%{
transform: scale3d(1,0,1);
opacity: 1;
}
100%{
transform: scale3d(1,1,1);
opacity: 1;
}
}
.animation_line{
position: absolute;
right: 0;
bottom: 0;
margin: 0 auto;
background-color: #fff;
opacity: 0;
}
.animation_line_wrapper{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: 0 auto;
width: 100%;
height: 100%;
}
.animation_line01{
top: -15%;
left: 0;
width: 0.2vw;
height: 0.7vw;
animation: animation_line01 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: top;
}
.animation_line02_wrapper{
transform: rotate(45deg)
}
.animation_line02{
top: -35%;
left: 0;
width: 0.2vw;
height: 0.7vw;
animation: animation_line01 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: top;
}
@keyframes animation_line01{
0%{
transform: translateY(0);
opacity: 1;
}
100%{
transform: translateY(-1.5vw);
opacity: 1;
}
}
.animation_line03{
top: 50%;
left: 110%;
width: 0.7vw;
height: 0.2vw;
animation: animation_line03 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: right;
}
.animation_line04_wrapper{
transform: rotate(45deg)
}
.animation_line04{
top: 50%;
left: 128%;
width: 0.7vw;
height: 0.2vw;
animation: animation_line03 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: right;
}
@keyframes animation_line03{
0%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(1.5vw);
opacity: 1;
}
}
.animation_line05{
top: 110%;
left: 0;
width: 0.2vw;
height: 0.7vw;
animation: animation_line05 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: bottom;
}
.animation_line06_wrapper{
transform: rotate(45deg)
}
.animation_line06{
top: 128%;
left: 0;
width: 0.2vw;
height: 0.7vw;
animation: animation_line05 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: bottom;
}
@keyframes animation_line05{
0%{
transform: translateY(0);
opacity: 1;
}
100%{
transform: translateY(1.5vw);
opacity: 1;
}
}
.animation_line07{
top: 50%;
left: -130%;
width: 0.7vw;
height: 0.2vw;
animation: animation_line07 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: left;
}
.animation_line08_wrapper{
transform: rotate(45deg)
}
.animation_line08{
top: 50%;
left: -162%;
width: 0.7vw;
height: 0.2vw;
animation: animation_line07 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: left;
}
@keyframes animation_line07{
0%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(-1.5vw);
opacity: 1;
}
}
.rhombus{
position: absolute;
width: 100%;
height: 100%;
animation: rhombus 0.2s linear 2.2s forwards;
}
@keyframes rhombus {
0%{
transform: rotate(0)
}
100%{
transform: rotate(45deg)
}
}
.rhombus_small{
position: absolute;
width: 100%;
height: 100%;
animation: rhombus_small 0.4s linear 2.55s forwards;
}
@keyframes rhombus_small {
0%{
transform: scale3d(1,1,1);
opacity: 1;
}
99%{
transform: scale3d(0.15,0.15,0.15);
opacity: 1;
}
100%{
transform: scale3d(0.15,0.15,0.15);
opacity: 0;
}
}
/*===================
animation02
====================*/
.animation02{
position: absolute;
width: 100%;
height: 100%;
}
.rhombus_box{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 40vw;
height: 40vw;
animation: rhombus_box 0.4s linear 3.55s forwards;
}
.rhombus_item_wrapper{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 2.1vw;
height: 2.1vw;
opacity: 0;
}
.rhombus_item{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 2.1vw;
height: 2.1vw;
background-color: #fff;
transform: rotate(45deg)
}
.rhombus_item01_wrapper{
animation: rhombus_item01 0.5s linear 2.95s forwards;
}
.rhombus_item02_wrapper{
animation: rhombus_item02 0.5s linear 2.95s forwards;
}
@keyframes rhombus_item01{
0%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(-18.5vw);
opacity: 1;
}
}
@keyframes rhombus_item02{
0%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(18.5vw);
opacity: 1;
}
}
@keyframes rhombus_box{
0%{
transform: rotate(0)
}
100%{
transform: rotate(360deg)
}
}
.double_content{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
}
.double_wrapper02{
position: relative;
width: 100%;
height: 100%;
animation: double_content forwards;
opacity: 0;
}
.double_wrapper01{
display: block;
position: absolute;
border-radius: 50%;
overflow: hidden;
}
.double_wrapper01::before {
content: "";
display: block;
position: absolute;
background: #212022;
z-index: 2;
}
.double_wrapper01::after {
content: "";
display: block;
position: absolute;
background: #212022;
z-index: 3;
}
/*============
dotted circle
============*/
.dotted02{
top: 0;
animation-delay: 4.2s;
}
.dotted_hide{
position: absolute;
width: 31vw;
height: 31vw;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
overflow: hidden;
}
.dotted01{
width: 30vw;
height: 30vw;
border: dotted 0.5vw #fff;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: visible;
}
.dotted_right::before{
content: "";
display: block;
position: absolute;
background: #212022;
z-index: 3;
}
.dotted_right::before{
top: 0;
left: 0;
width: 32vw;
height: 32vw;
transform-origin: left 16vw;
animation: rotate-circle-right 0.5s linear 4.2s forwards;
}
.dotted_right{
position: absolute;
width: 16vw;
height: 32vw;
z-index: 1;
top: 50%;
left: 75%;
transform: translate(-50%, -50%);
overflow: hidden;
}
.dotted01::after{
top: -1vw;
left: -17vw;
width: 32vw;
height: 32vw;
transform-origin: right 16vw;
animation: rotate-circle-left01 0.5s linear 4.2s forwards;
}
@keyframes rotate-circle-left01 {
0% {
transform: rotate(0deg);
background: #212022;
opacity: 1;
}
50% {
transform: rotate(-180deg);
background: #212022;
opacity: 1;
}
50.01% {
transform: rotate(0deg);
opacity: 0;
}
100% {
transform: rotate(0deg);
opacity: 0;
}
}
/*============
white circle
============*/
.white02{
top: -100%;
animation-delay: 4.7s;
}
.white01{
width: 29vw;
height: 29vw;
background: #fff;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.white01::before{
top: 0;
left: 14.5vw;
width: 29vw;
height: 29vw;
transform-origin: left 14.5vw;
animation: rotate-circle-right 0.3s linear 4.7s forwards;
}
.white01::after{
top: 0;
left: -14.5vw;
width: 29vw;
height: 29vw;
transform-origin: right 14.5vw;
animation: rotate-circle-left 0.3s linear 4.7s forwards;
}
@keyframes rotate-circle-left {
0% {
transform: rotate(0deg);
background: #212022;
}
50% {
transform: rotate(-180deg);
background: #212022;
}
50.01% {
transform: rotate(-360deg);
background: #fff;
}
100% {
transform: rotate(-360deg);
background: #fff;
}
}
/*============
gray circle
============*/
.gray02{
top: -200%;
animation-delay: 4.8s;
}
.gray01{
width: 8vw;
height: 8vw;
background: #808184;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.gray01::before{
top: 0;
left: 4vw;
width: 8vw;
height: 8vw;
background: #fff;
transform-origin: left 4vw;
animation: rotate-circle-right 0.5s linear 4.8s forwards;
}
.gray01::after{
top: 0;
left: -4vw;
width: 8vw;
height: 8vw;
background: #fff;
transform-origin: right 4vw;
animation: rotate-circle-left03 0.5s linear 4.8s forwards;
}
@keyframes rotate-circle-left03 {
0% {
transform: rotate(0deg);
background: #fff;
}
50% {
transform: rotate(-180deg);
background: #fff;
}
50.01% {
transform: rotate(-360deg);
background: #808184;
}
100% {
transform: rotate(-360deg);
background: #808184;
}
}
/*============
orange circle
============*/
.orange02{
top: -300%;
animation-delay: 5.3s;
}
.orange01{
width: 27vw;
height: 27vw;
background: #f47141;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.orange01::before{
top: 0;
left: 13.5vw;
width: 27vw;
height: 27vw;
background: #fff;
transform-origin: left 13.5vw;
animation: rotate-circle-right 0.5s linear 5.3s forwards;
}
.orange01::after{
top: 0;
left: -13.5vw;
width: 27vw;
height: 27vw;
background: #fff;
transform-origin: right 13.5vw;
animation: rotate-circle-left02 0.5s linear 5.3s forwards;
}
@keyframes rotate-circle-left02 {
0% {
transform: rotate(0deg);
background: #fff;
}
50% {
transform: rotate(-180deg);
background: #fff;
}
50.01% {
transform: rotate(-360deg);
background: #f47141;
}
100% {
transform: rotate(-360deg);
background: #f47141;
}
}
@keyframes double_content{
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
@keyframes rotate-circle-right {
0% { transform: rotate(0deg); }
50% { transform: rotate(0deg); }
100% { transform: rotate(-180deg); }
}
.name{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30vw;
height: 30vw;
animation: name 1.0s cubic-bezier(0.165, 0.84, 0.44, 1) 5.9s forwards;
opacity: 0;
}
.name p{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 2.0vw;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
letter-spacing: 0.1em;
}
.name_circle01{
position: absolute;
top: 50%;
left: 20%;
transform: translate(-50%, -50%);
background-color: #fff;
width: 2vw;
height: 2vw;
border-radius: 50%;
}
.name_circle02{
position: absolute;
top: 50%;
left: 80%;
transform: translate(-50%, -50%);
background-color: #fff;
width: 2vw;
height: 2vw;
border-radius: 50%;
}
@keyframes name {
0%{
opacity: 0;
}
100%{
opacity: 1;
}
} | css/splash.css | .animation01{
position: absolute;
width: 100%;
height: 100%;
}
.border_box{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 15vw;
height: 15vw;
}
.line{
display: block;
position: absolute;
right: 0;
bottom: 0;
background-color: #845b46;
opacity: 0;
}
.line01{
top: 0;
left: 100%;
width: 0.15vw;
height: 15.15vw;
transform-origin: bottom;
animation: animation01_line01 0.2s linear 0.3s forwards;
}
.line03{
top: 0;
left: 0;
width: 0.15vw;
height: 15.15vw;
transform-origin: bottom;
animation: animation01_line01 0.2s linear 0.6s forwards;
}
@keyframes animation01_line01{
0%{
transform: scale3d(1,0,1);
opacity: 1;
}
100%{
transform: scale3d(1,1,1);
opacity: 1;
}
}
.line02{
top: 100%;
left: 0;
width: 15.15vw;
height: 0.15vw;
transform-origin: right;
animation: animation01_line02 0.2s linear 0.4s forwards;
}
.line04{
top: 0;
left: 0;
width: 15.15vw;
height: 0.15vw;
transform-origin: left;
animation: animation01_line02 0.2s linear 0.8s forwards;
}
@keyframes animation01_line02{
0%{
transform: scale3d(0,1,1);
opacity: 1;
}
100%{
transform: scale3d(1,1,1);
opacity: 1;
}
}
.circle{
display: block;
position: absolute;
right: 0;
bottom: 0;
width: 1.2vw;
height: 1.2vw;
border: 0.1vw solid #fff;
border-radius: 50%;
opacity: 0;
}
.circle01{
top: 96%;
left: 96%;
margin: 0 auto;
animation: animation01_circle 0.3s linear 0.3s forwards;
}
.circle02{
top: 96%;
left: -99%;
margin: 0 auto;
animation: animation01_circle 0.3s linear 0.45s forwards;
}
.circle03{
top: -4%;
left: -99%;
margin: 0 auto;
animation: animation01_circle 0.3s linear 0.65s forwards;
}
.circle04{
top: -4%;
left: 96%;
margin: 0 auto;
animation: animation01_circle 0.3s linear 0.85s forwards;
}
@keyframes animation01_circle{
0%{
transform: scale3d(0,0,1);
opacity: 1;
}
40%{
transform: scale3d(1,1,1);
opacity: 1;
}
60%{
transform: scale3d(1,1,1);
opacity: 1;
}
100%{
transform: scale3d(0,0,1);
opacity: 1;
}
}
.wave{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 13.5vw;
height: 13.5vw;
overflow: hidden;
}
.wave_wrapper{
width: 200%;
height: 150%;
position: absolute;
top: -25%;
right: 0;
bottom: 0;
left: -50%;
margin: 0 auto;
animation: animation01_wave_wrapper 1s linear 1s forwards;
}
@keyframes animation01_wave_wrapper{
0%{
transform: rotate(0);
}
25%{
transform: rotate(15deg);
}
50%{
transform: rotate(0);
}
75%{
transform: rotate(-15deg);
}
100%{
transform: rotate(0);
}
}
.wave_box{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: 0 auto;
width: 100%;
height: 100%;
background-color: #fff;
transform-origin: bottom;
animation: animation01_wave_box 1s linear 1s forwards;
opacity: 0;
}
@keyframes animation01_wave_box{
0%{
transform: scale3d(1,0,1);
opacity: 1;
}
100%{
transform: scale3d(1,1,1);
opacity: 1;
}
}
.animation_line{
position: absolute;
right: 0;
bottom: 0;
margin: 0 auto;
background-color: #fff;
opacity: 0;
}
.animation_line_wrapper{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: 0 auto;
width: 100%;
height: 100%;
}
.animation_line01{
top: -15%;
left: 0;
width: 0.2vw;
height: 0.7vw;
animation: animation_line01 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: top;
}
.animation_line02_wrapper{
transform: rotate(45deg)
}
.animation_line02{
top: -35%;
left: 0;
width: 0.2vw;
height: 0.7vw;
animation: animation_line01 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: top;
}
@keyframes animation_line01{
0%{
transform: translateY(0);
opacity: 1;
}
100%{
transform: translateY(-1.5vw);
opacity: 1;
}
}
.animation_line03{
top: 50%;
left: 110%;
width: 0.7vw;
height: 0.2vw;
animation: animation_line03 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: right;
}
.animation_line04_wrapper{
transform: rotate(45deg)
}
.animation_line04{
top: 50%;
left: 128%;
width: 0.7vw;
height: 0.2vw;
animation: animation_line03 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: right;
}
@keyframes animation_line03{
0%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(1.5vw);
opacity: 1;
}
}
.animation_line05{
top: 110%;
left: 0;
width: 0.2vw;
height: 0.7vw;
animation: animation_line05 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: bottom;
}
.animation_line06_wrapper{
transform: rotate(45deg)
}
.animation_line06{
top: 128%;
left: 0;
width: 0.2vw;
height: 0.7vw;
animation: animation_line05 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: bottom;
}
@keyframes animation_line05{
0%{
transform: translateY(0);
opacity: 1;
}
100%{
transform: translateY(1.5vw);
opacity: 1;
}
}
.animation_line07{
top: 50%;
left: -130%;
width: 0.7vw;
height: 0.2vw;
animation: animation_line07 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: left;
}
.animation_line08_wrapper{
transform: rotate(45deg)
}
.animation_line08{
top: 50%;
left: -162%;
width: 0.7vw;
height: 0.2vw;
animation: animation_line07 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 1.9s;
transform-origin: left;
}
@keyframes animation_line07{
0%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(-1.5vw);
opacity: 1;
}
}
.rhombus{
position: absolute;
width: 100%;
height: 100%;
animation: rhombus 0.2s linear 2.2s forwards;
}
@keyframes rhombus {
0%{
transform: rotate(0)
}
100%{
transform: rotate(45deg)
}
}
.rhombus_small{
position: absolute;
width: 100%;
height: 100%;
animation: rhombus_small 0.4s linear 2.55s forwards;
}
@keyframes rhombus_small {
0%{
transform: scale3d(1,1,1);
opacity: 1;
}
99%{
transform: scale3d(0.15,0.15,0.15);
opacity: 1;
}
100%{
transform: scale3d(0.15,0.15,0.15);
opacity: 0;
}
}
/*===================
animation02
====================*/
.animation02{
position: absolute;
width: 100%;
height: 100%;
}
.rhombus_box{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 40vw;
height: 40vw;
animation: rhombus_box 0.4s linear 3.55s forwards;
}
.rhombus_item_wrapper{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 2.1vw;
height: 2.1vw;
opacity: 0;
}
.rhombus_item{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 2.1vw;
height: 2.1vw;
background-color: #fff;
transform: rotate(45deg)
}
.rhombus_item01_wrapper{
animation: rhombus_item01 0.5s linear 2.95s forwards;
}
.rhombus_item02_wrapper{
animation: rhombus_item02 0.5s linear 2.95s forwards;
}
@keyframes rhombus_item01{
0%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(-18.5vw);
opacity: 1;
}
}
@keyframes rhombus_item02{
0%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(18.5vw);
opacity: 1;
}
}
@keyframes rhombus_box{
0%{
transform: rotate(0)
}
100%{
transform: rotate(360deg)
}
}
.double_content{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
}
.double_wrapper02{
position: relative;
width: 100%;
height: 100%;
animation: double_content forwards;
opacity: 0;
}
.double_wrapper01{
display: block;
position: absolute;
border-radius: 50%;
overflow: hidden;
}
.double_wrapper01::before {
content: "";
display: block;
position: absolute;
background: #212022;
z-index: 2;
}
.double_wrapper01::after {
content: "";
display: block;
position: absolute;
background: #212022;
z-index: 3;
}
/*============
dotted circle
============*/
.dotted02{
top: 0;
animation-delay: 4.2s;
}
.dotted_hide{
position: absolute;
width: 31vw;
height: 31vw;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
overflow: hidden;
}
.dotted01{
width: 30vw;
height: 30vw;
border: dotted 0.5vw #fff;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: visible;
}
.dotted_right::before{
content: "";
display: block;
position: absolute;
background: #212022;
z-index: 3;
}
.dotted_right::before{
top: 0;
left: 0;
width: 32vw;
height: 32vw;
transform-origin: left 16vw;
animation: rotate-circle-right 0.5s linear 4.2s forwards;
}
.dotted_right{
position: absolute;
width: 16vw;
height: 32vw;
z-index: 1;
top: 50%;
left: 75%;
transform: translate(-50%, -50%);
overflow: hidden;
}
.dotted01::after{
top: -1vw;
left: -17vw;
width: 32vw;
height: 32vw;
transform-origin: right 16vw;
animation: rotate-circle-left01 0.5s linear 4.2s forwards;
}
@keyframes rotate-circle-left01 {
0% {
transform: rotate(0deg);
background: #212022;
opacity: 1;
}
50% {
transform: rotate(-180deg);
background: #212022;
opacity: 1;
}
50.01% {
transform: rotate(0deg);
opacity: 0;
}
100% {
transform: rotate(0deg);
opacity: 0;
}
}
/*============
white circle
============*/
.white02{
top: -100%;
animation-delay: 4.7s;
}
.white01{
width: 29vw;
height: 29vw;
background: #fff;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.white01::before{
top: 0;
left: 14.5vw;
width: 29vw;
height: 29vw;
transform-origin: left 14.5vw;
animation: rotate-circle-right 0.3s linear 4.7s forwards;
}
.white01::after{
top: 0;
left: -14.5vw;
width: 29vw;
height: 29vw;
transform-origin: right 14.5vw;
animation: rotate-circle-left 0.3s linear 4.7s forwards;
}
@keyframes rotate-circle-left {
0% {
transform: rotate(0deg);
background: #212022;
}
50% {
transform: rotate(-180deg);
background: #212022;
}
50.01% {
transform: rotate(-360deg);
background: #fff;
}
100% {
transform: rotate(-360deg);
background: #fff;
}
}
/*============
gray circle
============*/
.gray02{
top: -200%;
animation-delay: 4.8s;
}
.gray01{
width: 8vw;
height: 8vw;
background: #808184;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.gray01::before{
top: 0;
left: 4vw;
width: 8vw;
height: 8vw;
background: #fff;
transform-origin: left 4vw;
animation: rotate-circle-right 0.5s linear 4.8s forwards;
}
.gray01::after{
top: 0;
left: -4vw;
width: 8vw;
height: 8vw;
background: #fff;
transform-origin: right 4vw;
animation: rotate-circle-left03 0.5s linear 4.8s forwards;
}
@keyframes rotate-circle-left03 {
0% {
transform: rotate(0deg);
background: #fff;
}
50% {
transform: rotate(-180deg);
background: #fff;
}
50.01% {
transform: rotate(-360deg);
background: #808184;
}
100% {
transform: rotate(-360deg);
background: #808184;
}
}
/*============
orange circle
============*/
.orange02{
top: -300%;
animation-delay: 5.3s;
}
.orange01{
width: 27vw;
height: 27vw;
background: #f47141;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.orange01::before{
top: 0;
left: 13.5vw;
width: 27vw;
height: 27vw;
background: #fff;
transform-origin: left 13.5vw;
animation: rotate-circle-right 0.5s linear 5.3s forwards;
}
.orange01::after{
top: 0;
left: -13.5vw;
width: 27vw;
height: 27vw;
background: #fff;
transform-origin: right 13.5vw;
animation: rotate-circle-left02 0.5s linear 5.3s forwards;
}
@keyframes rotate-circle-left02 {
0% {
transform: rotate(0deg);
background: #fff;
}
50% {
transform: rotate(-180deg);
background: #fff;
}
50.01% {
transform: rotate(-360deg);
background: #f47141;
}
100% {
transform: rotate(-360deg);
background: #f47141;
}
}
@keyframes double_content{
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
@keyframes rotate-circle-right {
0% { transform: rotate(0deg); }
50% { transform: rotate(0deg); }
100% { transform: rotate(-180deg); }
}
.name{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30vw;
height: 30vw;
animation: name 1.0s cubic-bezier(0.165, 0.84, 0.44, 1) 5.9s forwards;
opacity: 0;
}
.name p{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 2.0vw;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
letter-spacing: 0.1em;
}
.name_circle01{
position: absolute;
top: 50%;
left: 20%;
transform: translate(-50%, -50%);
background-color: #fff;
width: 2vw;
height: 2vw;
border-radius: 50%;
}
.name_circle02{
position: absolute;
top: 50%;
left: 80%;
transform: translate(-50%, -50%);
background-color: #fff;
width: 2vw;
height: 2vw;
border-radius: 50%;
}
@keyframes name {
0%{
opacity: 0;
}
100%{
opacity: 1;
}
} | 0.884258 | 0.141163 |
:root{
--primary-color: #321f28;
--secondary-color: #734046;
--tertiary-color: #a05344;
--quaternary-color: #e79e4f;
--title-size: 4rem;
--subtitle-size: 2.2rem;
--body-size: 1.8rem;
--small-text-size: 1.4rem;
}
/* Establezco variables para utilizarlas mas adelante en la pagina web */
*{
box-sizing: border-box;
/* Border box permite que el contenido de la pagina se acople a la medida de la ventana que la contiene*/
margin: 0;
/* Sobreescribir los valores originales de margin y padding a 0 permite hacer calculos sin errores de distribucion de pantalla*/
padding: 0;
}
/* Escribo el selector universal para indicar margin, padding y box-sizing, todos estos puntos de buena practica en CSS */
html{
font-size: 62.5%;
}
/* Escribo el selector html para establecer el tamano root en 10px. Esto facilita los calculos de las medidas en rem */
.header-logo{
height: 15rem;
}
/* Establezco un tamano limite del contenedor. Esto me facilitara el recortar la imagen de fondo */
.header-logo-title{
position: absolute;
/* Permite encimar elementos y controlar en su totalidad la posicion */
color: white;
/* Color de letra a blanco */
display: inline-block;
/* Permite establecer medidas de padding en la figura, a la vez que colocar contenido en la misma linea que el elemento seleccionado */
font-size: 5rem;
/* Tamano de letra a 50px */
text-align: center;
/* Alineacion de texto en el centro */
width: 100%;
/* Ancho del elemento se igualara al ancho de toda la pantalla */
margin-top: 3rem;
/* establezco un margen de 30px */
font-family: Georgia, 'Times New Roman', Times, serif;
/* Cambio de la fuente de letra a Georgia */
}
.header-logo-title a{
color: white;
text-decoration: none;
/* Sobreescribo el subrayado de texto y el color morado que tienen los hiperenlaces para permitir establecer un boton mas discreto*/
}
.header-logo-figure{
width: 100%;
/* Indico al contenedor de la imagen que se acople al tamano completo de la ventana */
}
.header-logo-img{
width: 100%;
/* Indico a la imagen que se acople al tamano completo de su contenedor */
object-fit: none;
/* Permito el recorte de la imagen segun una medida establecida */
height: 15rem;
/* Establezco la medida a la que se recortara. En este caso, la medida de su altura */
}
.header-main-nav{
display: flex;
/* Establezco una forma de interaccion entre los elementos contenidos en esta etiqueta. Esta etiqueta permtira mejor interaccion con las caracteristicas de la ventana */
justify-content: center;
/* Indico al contenedor que coloque sus elementos contenidos en el centro de la ventana */
font-size: var(--subtitle-size);
/* Establezco un tamano de letra a los elementos de la barra de navegacion y lo igualo a una variable preestablecida en las primeras lineas de codigo (esto ayuda a ahorrar codigo, disminuir los errores y eficientar la escritura de codigo) */
}
.header-main-nav__list{
list-style: none;
/* Quito los bullets de la lista */
margin: 1rem;
/* Establezco un margen en todo alrededor de cada elemento de la lista de 10px */
}
.header-main-nav__item{
display: inline-block;
padding: 1rem 2rem;
background-color: var(--primary-color);
/* Establezco un color de fondo de un color preestablecido como una variable */
border-radius: 2rem;
/* Redondeo los bordes del elemento */
}
.header-main-nav__item a{
text-decoration: none;
color: white;
}
.header-sec-nav{
position: absolute;
width: 100%;
display: block;
text-align: right;
}
.header-sec-nav__list{
list-style: none;
margin: 1rem;
}
.header-sec-nav__item{
display: inline-block;
background-color: var(--tertiary-color);
padding: 1rem 2rem;
font-size: var(--body-size);
border-radius: 0.5rem;
}
.header-sec-nav__item a{
text-decoration: none;
color: white;
}
#reserve-now-button{
background-color: var(--quaternary-color);
font-size: var(--subtitle-size);
border-radius: 2rem;
}
.main-content{
margin-top: 1rem;
width: 60%;
margin: 0 auto;
background-color: #fbf2e9;
padding: 5rem;
border-radius: 1rem;
}
.main-habitaciones{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.main-img{
width: 45%;
}
.main-img img{
width: 100%;
}
.main-img figcaption{
text-align: center;
margin-top: 0.5rem;
}
.main-galeria{
display: flex;
justify-content: space-evenly;
width: 100%;
}
.galeria-img{
width: 30%;
}
.galeria-img img{
width: 100%;
object-fit: cover;
height: 20rem;
}
.title{
font-size: var(--title-size);
margin-top: 3rem;
margin-bottom: 1rem;
color: var(--primary-color);
}
.subtitle{
font-size: var(--subtitle-size);
margin: 2rem;
color: var(--secondary-color);
}
.main-body{
font-size: var(--body-size);
}
.main-list__item, .distancias__item, .main-tarifas__item, .main-telefonos__item{
font-size: var(--body-size);
margin-left: 5rem;
width: 100%;
}
footer{
width: 100%;
background-color: var(--quaternary-color);
border-radius: 2rem;
}
.main-footer{
text-align: center;
display: flex;
}
.main-footer__section{
width: 30%;
margin-bottom: 3rem;
margin: auto auto;
}
.footer-title{
font-size: 3rem;
text-align: center;
margin-top: 3rem;
padding: 3rem;
color: var(--tertiary-color);
}
.footer-subtitle{
font-size: var(--subtitle-size);
text-align: center;
color: var(--primary-color);
}
.footer-body{
font-size: var(--body-size);
}
.footer-copyright{
margin-left: 5rem;
font-size: var(--small-text-size);
margin-top: 5rem;
}
.footer-social-media{
display: flex;
justify-content: center;
}
.footer-social-media__list{
list-style: none;
}
.footer-social-media__item{
display: inline-block;
background-color: var(--tertiary-color);
padding: 1rem 3rem;
border-radius: 3rem;
font-size: var(--subtitle-size);
margin-bottom: 5rem;
}
.footer-social-media__item a{
color: white;
text-decoration: none;
} | codigo_comentado/style.css | :root{
--primary-color: #321f28;
--secondary-color: #734046;
--tertiary-color: #a05344;
--quaternary-color: #e79e4f;
--title-size: 4rem;
--subtitle-size: 2.2rem;
--body-size: 1.8rem;
--small-text-size: 1.4rem;
}
/* Establezco variables para utilizarlas mas adelante en la pagina web */
*{
box-sizing: border-box;
/* Border box permite que el contenido de la pagina se acople a la medida de la ventana que la contiene*/
margin: 0;
/* Sobreescribir los valores originales de margin y padding a 0 permite hacer calculos sin errores de distribucion de pantalla*/
padding: 0;
}
/* Escribo el selector universal para indicar margin, padding y box-sizing, todos estos puntos de buena practica en CSS */
html{
font-size: 62.5%;
}
/* Escribo el selector html para establecer el tamano root en 10px. Esto facilita los calculos de las medidas en rem */
.header-logo{
height: 15rem;
}
/* Establezco un tamano limite del contenedor. Esto me facilitara el recortar la imagen de fondo */
.header-logo-title{
position: absolute;
/* Permite encimar elementos y controlar en su totalidad la posicion */
color: white;
/* Color de letra a blanco */
display: inline-block;
/* Permite establecer medidas de padding en la figura, a la vez que colocar contenido en la misma linea que el elemento seleccionado */
font-size: 5rem;
/* Tamano de letra a 50px */
text-align: center;
/* Alineacion de texto en el centro */
width: 100%;
/* Ancho del elemento se igualara al ancho de toda la pantalla */
margin-top: 3rem;
/* establezco un margen de 30px */
font-family: Georgia, 'Times New Roman', Times, serif;
/* Cambio de la fuente de letra a Georgia */
}
.header-logo-title a{
color: white;
text-decoration: none;
/* Sobreescribo el subrayado de texto y el color morado que tienen los hiperenlaces para permitir establecer un boton mas discreto*/
}
.header-logo-figure{
width: 100%;
/* Indico al contenedor de la imagen que se acople al tamano completo de la ventana */
}
.header-logo-img{
width: 100%;
/* Indico a la imagen que se acople al tamano completo de su contenedor */
object-fit: none;
/* Permito el recorte de la imagen segun una medida establecida */
height: 15rem;
/* Establezco la medida a la que se recortara. En este caso, la medida de su altura */
}
.header-main-nav{
display: flex;
/* Establezco una forma de interaccion entre los elementos contenidos en esta etiqueta. Esta etiqueta permtira mejor interaccion con las caracteristicas de la ventana */
justify-content: center;
/* Indico al contenedor que coloque sus elementos contenidos en el centro de la ventana */
font-size: var(--subtitle-size);
/* Establezco un tamano de letra a los elementos de la barra de navegacion y lo igualo a una variable preestablecida en las primeras lineas de codigo (esto ayuda a ahorrar codigo, disminuir los errores y eficientar la escritura de codigo) */
}
.header-main-nav__list{
list-style: none;
/* Quito los bullets de la lista */
margin: 1rem;
/* Establezco un margen en todo alrededor de cada elemento de la lista de 10px */
}
.header-main-nav__item{
display: inline-block;
padding: 1rem 2rem;
background-color: var(--primary-color);
/* Establezco un color de fondo de un color preestablecido como una variable */
border-radius: 2rem;
/* Redondeo los bordes del elemento */
}
.header-main-nav__item a{
text-decoration: none;
color: white;
}
.header-sec-nav{
position: absolute;
width: 100%;
display: block;
text-align: right;
}
.header-sec-nav__list{
list-style: none;
margin: 1rem;
}
.header-sec-nav__item{
display: inline-block;
background-color: var(--tertiary-color);
padding: 1rem 2rem;
font-size: var(--body-size);
border-radius: 0.5rem;
}
.header-sec-nav__item a{
text-decoration: none;
color: white;
}
#reserve-now-button{
background-color: var(--quaternary-color);
font-size: var(--subtitle-size);
border-radius: 2rem;
}
.main-content{
margin-top: 1rem;
width: 60%;
margin: 0 auto;
background-color: #fbf2e9;
padding: 5rem;
border-radius: 1rem;
}
.main-habitaciones{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.main-img{
width: 45%;
}
.main-img img{
width: 100%;
}
.main-img figcaption{
text-align: center;
margin-top: 0.5rem;
}
.main-galeria{
display: flex;
justify-content: space-evenly;
width: 100%;
}
.galeria-img{
width: 30%;
}
.galeria-img img{
width: 100%;
object-fit: cover;
height: 20rem;
}
.title{
font-size: var(--title-size);
margin-top: 3rem;
margin-bottom: 1rem;
color: var(--primary-color);
}
.subtitle{
font-size: var(--subtitle-size);
margin: 2rem;
color: var(--secondary-color);
}
.main-body{
font-size: var(--body-size);
}
.main-list__item, .distancias__item, .main-tarifas__item, .main-telefonos__item{
font-size: var(--body-size);
margin-left: 5rem;
width: 100%;
}
footer{
width: 100%;
background-color: var(--quaternary-color);
border-radius: 2rem;
}
.main-footer{
text-align: center;
display: flex;
}
.main-footer__section{
width: 30%;
margin-bottom: 3rem;
margin: auto auto;
}
.footer-title{
font-size: 3rem;
text-align: center;
margin-top: 3rem;
padding: 3rem;
color: var(--tertiary-color);
}
.footer-subtitle{
font-size: var(--subtitle-size);
text-align: center;
color: var(--primary-color);
}
.footer-body{
font-size: var(--body-size);
}
.footer-copyright{
margin-left: 5rem;
font-size: var(--small-text-size);
margin-top: 5rem;
}
.footer-social-media{
display: flex;
justify-content: center;
}
.footer-social-media__list{
list-style: none;
}
.footer-social-media__item{
display: inline-block;
background-color: var(--tertiary-color);
padding: 1rem 3rem;
border-radius: 3rem;
font-size: var(--subtitle-size);
margin-bottom: 5rem;
}
.footer-social-media__item a{
color: white;
text-decoration: none;
} | 0.32306 | 0.219003 |
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-sizing: border-box;
scroll-behavior: smooth;
}
.nav-wrapper {
background: #085394;
width: 100%;
padding: 20px 100px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 24px;
text-align: right;
height: 80px;
}
.nav-wrapper a {
text-decoration: none;
color: #fff;
font-family: sans-serif;
font-size: 16px;
display: inline-block;
margin-right: 20px;
}
.logo img {
width: 80px;
height: 80px;
}
.nav-link a {
display: block;
padding: 1em;
transition: color 0.5s;
}
.nav-bar {
display: flex;
list-style: none;
align-items: center;
}
.nav-bar a:hover{
background: white;
color: black;
}
.main-wrapper {
text-align: center;
background: #eee;
}
.heading {
padding-top: 50px;
color: #444;
font-size: 15px;
width: 300px;
margin: auto;
line-height: 80px;
}
.team-wrapper {
max-width: 100%;
margin: auto;
padding: 50px 0;
display: flex;
flex-wrap: wrap;
}
.team {
margin: 20px;
padding: 25px;
max-width: 22%;
box-sizing: border-box;
cursor: pointer;
transition: 0.3s;
}
.team:hover {
background: #ddd;
}
.team img {
width: 130px;
height: 140px;
border: 1px solid #E1E0DE;
border-radius: 50%;
}
.name {
padding: 20px;
color: red;
font-size: 25px;
text-transform: uppercase;
}
.role {
font-style: italic;
font-size: 18px;
color: #726b6b;
}
.details {
margin: 20px 0;
text-align: justify;
font-weight: lighter;
line-height: 25px;
color: #4E4E4E;
}
.footer-wrapper {
padding: 30px 0 78px;
background-color:#fff;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.footer-wrapper h1 {
font-size: 15px;
}
.footer {
list-style: none;
display: flex;
}
.footer i {
padding: 12px 28px;
}
.social-icon1 i {
color: #1DA1F2;
}
.social-icon2 i {
color: #FF0000;
}
.social-icon3 i {
color: #000000;
}
.copy-right {
margin-top: 16px;
font-size: 25px;
font-weight: 500;
}
@media screen and (max-width: 980px) {
.team {
max-width: 45%;
}
}
@media screen and (max-width: 600px) {
.team .nav-bar {
max-width: 100%;
}
} | playground/twindleco/Twindle-web-Teampage/style.css | *,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-sizing: border-box;
scroll-behavior: smooth;
}
.nav-wrapper {
background: #085394;
width: 100%;
padding: 20px 100px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 24px;
text-align: right;
height: 80px;
}
.nav-wrapper a {
text-decoration: none;
color: #fff;
font-family: sans-serif;
font-size: 16px;
display: inline-block;
margin-right: 20px;
}
.logo img {
width: 80px;
height: 80px;
}
.nav-link a {
display: block;
padding: 1em;
transition: color 0.5s;
}
.nav-bar {
display: flex;
list-style: none;
align-items: center;
}
.nav-bar a:hover{
background: white;
color: black;
}
.main-wrapper {
text-align: center;
background: #eee;
}
.heading {
padding-top: 50px;
color: #444;
font-size: 15px;
width: 300px;
margin: auto;
line-height: 80px;
}
.team-wrapper {
max-width: 100%;
margin: auto;
padding: 50px 0;
display: flex;
flex-wrap: wrap;
}
.team {
margin: 20px;
padding: 25px;
max-width: 22%;
box-sizing: border-box;
cursor: pointer;
transition: 0.3s;
}
.team:hover {
background: #ddd;
}
.team img {
width: 130px;
height: 140px;
border: 1px solid #E1E0DE;
border-radius: 50%;
}
.name {
padding: 20px;
color: red;
font-size: 25px;
text-transform: uppercase;
}
.role {
font-style: italic;
font-size: 18px;
color: #726b6b;
}
.details {
margin: 20px 0;
text-align: justify;
font-weight: lighter;
line-height: 25px;
color: #4E4E4E;
}
.footer-wrapper {
padding: 30px 0 78px;
background-color:#fff;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.footer-wrapper h1 {
font-size: 15px;
}
.footer {
list-style: none;
display: flex;
}
.footer i {
padding: 12px 28px;
}
.social-icon1 i {
color: #1DA1F2;
}
.social-icon2 i {
color: #FF0000;
}
.social-icon3 i {
color: #000000;
}
.copy-right {
margin-top: 16px;
font-size: 25px;
font-weight: 500;
}
@media screen and (max-width: 980px) {
.team {
max-width: 45%;
}
}
@media screen and (max-width: 600px) {
.team .nav-bar {
max-width: 100%;
}
} | 0.453988 | 0.066691 |
@font-face {
font-family: 'HK-Grotesk';
src: url("./assets/HKGrotesk-Regular.otf") format('opentype');
}
body, html{
width: 100%;
height: 100%;
margin: 0px;
color: white;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
nav, footer{
position: fixed;
}
nav, footer{
display: flex;
width: 100%;
}
.leftNavLogo, .centerNavContainer, .rightNavHamburger{
flex: 1;
display: flex;
align-items: center;
margin-top: 10px;
}
.leftNavLogo{
font-family: "HK-Grotesk";
font-size: 24px;
justify-content: left;
margin-left: 30px;
color: white;
}
.centerNavContainer{
justify-content: flex-start;
justify-content: space-between;
}
.rightFooter{
text-transform: uppercase;
}
.centerNavItem, .rightFooterItem{
color: white;
padding-right: 5px;
}
.centerNavItem span, .rightFooterItem span {
display:inline-block;
border-bottom:1px solid #989898;
padding-bottom:2px;
}
.centerNavItem span:hover, .rightFooterItem span:hover {
border-bottom-color: white;
}
.rightNavHamburger{
justify-content: flex-end;
margin-right: 30px;
}
.header ul {
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
background-color: #fff;
}
.header li a {
display: block;
padding: 20px 20px;
border-right: 1px solid #f4f4f4;
text-decoration: none;
}
.header li a:hover,
.header .menu-btn:hover {
background-color: #f4f4f4;
}
.diffContainer2{
display: none;
position: fixed;
right: 10px;
top: 60px;
}
.diffContainer2 *{
display: block;
margin-top: 2px;
}
.hamburgerNavButtonContainer{
display: none;
width: 40px;
height: 45px;
position: relative;
margin-top: 30px;
margin-right: 10px;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}
.hamburgerNavButtonContainer span {
display: block;
position: absolute;
height: 3px;
width: 60%;
background: white;
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
.hamburgerNavButtonContainer span:nth-child(1) {
top: 0px;
}
.hamburgerNavButtonContainer span:nth-child(2),.hamburgerNavButtonContainer span:nth-child(3) {
top:8px;
}
.hamburgerNavButtonContainer span:nth-child(4) {
top: 16px;
}
.hamburgerNavButtonContainer.open span:nth-child(1) {
top: 10px;
width: 0%;
left: 50%;
}
.hamburgerNavButtonContainer.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.hamburgerNavButtonContainer.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.hamburgerNavButtonContainer.open span:nth-child(4) {
top: 5px;
width: 0%;
left: 50%;
}
.landing::after {
content: "";
background-image: url("./assets/craftmanship.jpg");
background-size: cover;
filter: opacity(40%);
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
html{
background: black;
}
.landingBody{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.leftLandingContainer, .rightLandingContainer{
flex: 1;
max-width: 50%;
padding: 100px;
}
.leftLandingContainer{
}
.leftHeader{
font-size: 45px;
}
.leftSubheader{
font-size: 18px;
font-weight: normal;
font-style: italic;
}
.leftSubheaderQuotationMarker{
color: #989898;
text-align: center;
font-size: 12px;
}
.rightFormHeader{
text-transform: uppercase;
text-align: center;
font-weight: bold;
font-size: 17px;
}
.rightForm input{
display: block;
width: calc( 100% - 24px);
padding: 15px 10px;
color: white;
background: rgba(128, 128, 128, 0.326);
}
.rightForm input::placeholder{
color: white;
}
.rightForm input:first-of-type {
border: 2px solid #756E6B;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom:none;
}
.rightForm input:not(:first-child){
border: 2px solid #756E6B;
border-top: 1px solid #756E6B;
border-bottom: none;
}
.rightFormSubmit{
cursor: pointer;
width: calc(100%);
padding: 10px;
background: #2C99ED;
border: 2px solid #2C99ED;
border-top-width: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
color: white;
}
.rightFormSubmit:hover{
background: rgb(28, 93, 143);
border-color: rgb(28, 93, 143);
}
.rightFormAgreement{
font-weight: normal;
font-size: 10px;
text-align: center;
color: #989898;
}
.rightFormAgreementLink{
color: white;
}
footer{
bottom: 10px;
display: flex;
justify-content: space-between;
}
.leftCopyright{
padding-left: 10px;
}
.rightFooter{
padding-right: 10px;
}
.active{
display: block;
}
@media(max-width: 900px){
.leftLandingContainer, .rightLandingContainer{
padding: 10px;
}
}
@media(max-width: 700px){
.landingBody{
display: block;
}
.leftHeader{
padding: 10px;
}
.leftLandingContainer, .rightLandingContainer{
flex: none;
max-width: 100%;
width: 100%;
padding: 0px;
text-align: center;
}
.leftLandingContainer{
padding-top: 150px;
}
.rightLandingContainer{
width: calc(100% - 30px);
display: block;
margin: 0 auto;
}
footer{
background: black;
bottom: 0px;
padding-bottom: 5px;
padding-top: 5px;
}
footer{
display: block;
text-align: center;
}
.rightFormAgreement{
padding-bottom: 70px;
}
.leftCopyright, .rightFooter{
width: 100%;
}
.diffContainer{
display: none;
}
.hamburgerNavButtonContainer{
display: block;
}
}
@media(min-width: 700px){
#diffContainer2{
display: none;
}
}
@media(max-width: 400px){
.landing::after {
display: none;
}
} | style.css | @font-face {
font-family: 'HK-Grotesk';
src: url("./assets/HKGrotesk-Regular.otf") format('opentype');
}
body, html{
width: 100%;
height: 100%;
margin: 0px;
color: white;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
nav, footer{
position: fixed;
}
nav, footer{
display: flex;
width: 100%;
}
.leftNavLogo, .centerNavContainer, .rightNavHamburger{
flex: 1;
display: flex;
align-items: center;
margin-top: 10px;
}
.leftNavLogo{
font-family: "HK-Grotesk";
font-size: 24px;
justify-content: left;
margin-left: 30px;
color: white;
}
.centerNavContainer{
justify-content: flex-start;
justify-content: space-between;
}
.rightFooter{
text-transform: uppercase;
}
.centerNavItem, .rightFooterItem{
color: white;
padding-right: 5px;
}
.centerNavItem span, .rightFooterItem span {
display:inline-block;
border-bottom:1px solid #989898;
padding-bottom:2px;
}
.centerNavItem span:hover, .rightFooterItem span:hover {
border-bottom-color: white;
}
.rightNavHamburger{
justify-content: flex-end;
margin-right: 30px;
}
.header ul {
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
background-color: #fff;
}
.header li a {
display: block;
padding: 20px 20px;
border-right: 1px solid #f4f4f4;
text-decoration: none;
}
.header li a:hover,
.header .menu-btn:hover {
background-color: #f4f4f4;
}
.diffContainer2{
display: none;
position: fixed;
right: 10px;
top: 60px;
}
.diffContainer2 *{
display: block;
margin-top: 2px;
}
.hamburgerNavButtonContainer{
display: none;
width: 40px;
height: 45px;
position: relative;
margin-top: 30px;
margin-right: 10px;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}
.hamburgerNavButtonContainer span {
display: block;
position: absolute;
height: 3px;
width: 60%;
background: white;
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
.hamburgerNavButtonContainer span:nth-child(1) {
top: 0px;
}
.hamburgerNavButtonContainer span:nth-child(2),.hamburgerNavButtonContainer span:nth-child(3) {
top:8px;
}
.hamburgerNavButtonContainer span:nth-child(4) {
top: 16px;
}
.hamburgerNavButtonContainer.open span:nth-child(1) {
top: 10px;
width: 0%;
left: 50%;
}
.hamburgerNavButtonContainer.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.hamburgerNavButtonContainer.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.hamburgerNavButtonContainer.open span:nth-child(4) {
top: 5px;
width: 0%;
left: 50%;
}
.landing::after {
content: "";
background-image: url("./assets/craftmanship.jpg");
background-size: cover;
filter: opacity(40%);
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
html{
background: black;
}
.landingBody{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.leftLandingContainer, .rightLandingContainer{
flex: 1;
max-width: 50%;
padding: 100px;
}
.leftLandingContainer{
}
.leftHeader{
font-size: 45px;
}
.leftSubheader{
font-size: 18px;
font-weight: normal;
font-style: italic;
}
.leftSubheaderQuotationMarker{
color: #989898;
text-align: center;
font-size: 12px;
}
.rightFormHeader{
text-transform: uppercase;
text-align: center;
font-weight: bold;
font-size: 17px;
}
.rightForm input{
display: block;
width: calc( 100% - 24px);
padding: 15px 10px;
color: white;
background: rgba(128, 128, 128, 0.326);
}
.rightForm input::placeholder{
color: white;
}
.rightForm input:first-of-type {
border: 2px solid #756E6B;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom:none;
}
.rightForm input:not(:first-child){
border: 2px solid #756E6B;
border-top: 1px solid #756E6B;
border-bottom: none;
}
.rightFormSubmit{
cursor: pointer;
width: calc(100%);
padding: 10px;
background: #2C99ED;
border: 2px solid #2C99ED;
border-top-width: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
color: white;
}
.rightFormSubmit:hover{
background: rgb(28, 93, 143);
border-color: rgb(28, 93, 143);
}
.rightFormAgreement{
font-weight: normal;
font-size: 10px;
text-align: center;
color: #989898;
}
.rightFormAgreementLink{
color: white;
}
footer{
bottom: 10px;
display: flex;
justify-content: space-between;
}
.leftCopyright{
padding-left: 10px;
}
.rightFooter{
padding-right: 10px;
}
.active{
display: block;
}
@media(max-width: 900px){
.leftLandingContainer, .rightLandingContainer{
padding: 10px;
}
}
@media(max-width: 700px){
.landingBody{
display: block;
}
.leftHeader{
padding: 10px;
}
.leftLandingContainer, .rightLandingContainer{
flex: none;
max-width: 100%;
width: 100%;
padding: 0px;
text-align: center;
}
.leftLandingContainer{
padding-top: 150px;
}
.rightLandingContainer{
width: calc(100% - 30px);
display: block;
margin: 0 auto;
}
footer{
background: black;
bottom: 0px;
padding-bottom: 5px;
padding-top: 5px;
}
footer{
display: block;
text-align: center;
}
.rightFormAgreement{
padding-bottom: 70px;
}
.leftCopyright, .rightFooter{
width: 100%;
}
.diffContainer{
display: none;
}
.hamburgerNavButtonContainer{
display: block;
}
}
@media(min-width: 700px){
#diffContainer2{
display: none;
}
}
@media(max-width: 400px){
.landing::after {
display: none;
}
} | 0.455925 | 0.097562 |
*,
::before,
::after {
box-sizing: border-box;
background-repeat: no-repeat;
}
::before,
::after {
vertical-align: inherit;
text-decoration: inherit;
}
a:active,
label:active {
background-color: transparent;
}
html {
font-size: 13px;
word-break: break-word;
cursor: default;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
text-rendering: optimizeLegibility;
text-underline-position: under;
background: #595959;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
@supports (-webkit-overflow-scrolling: touch) {
html {
cursor: pointer;
}
}
@-moz-document url-prefix() {
html {
color: transparent;
}
}
body {
min-height: 100vh;
margin: 0;
font-size: 1.0769230769rem;
line-height: 1.8571428571;
color: #6b6b6b;
background: white;
}
h1 {
margin: 0;
font-size: 2.2307692308rem;
}
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure {
margin: 0;
}
hr {
box-sizing: content-box;
flex-shrink: 0;
width: 100%;
height: 0;
margin: 0;
border: none;
overflow: visible;
}
main {
display: block;
}
ul,
ol,
dl,
dd {
margin: 0;
}
ul,
ol {
padding: 0;
}
nav ol,
nav ul {
list-style: none;
}
pre {
margin: 0;
font-size: 1em;
word-break: normal;
overflow: auto;
-webkit-overflow-scrolling: touch;
font-family: monospace, monospace;
}
a {
cursor: pointer;
background-color: transparent;
}
abbr[title] {
cursor: help;
text-decoration: underline dotted;
}
b,
strong {
font-weight: 700;
}
code,
kbd,
samp {
font-size: 1em;
font-family: monospace, monospace;
}
small {
font-size: 83.3333333333%;
}
::-moz-selection {
color: rgba(255, 255, 255, 0.9);
text-shadow: none;
background-color: #525252;
}
::selection {
color: rgba(255, 255, 255, 0.9);
text-shadow: none;
background-color: #525252;
}
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: top;
}
audio,
video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
img {
border-style: none;
}
iframe {
border: none;
}
svg {
fill: currentColor;
}
svg:not(:root) {
overflow: hidden;
}
table {
border-collapse: collapse;
}
th,
td {
padding: 0;
}
button,
input,
optgroup,
select,
textarea {
margin: 0;
}
button,
input,
select,
textarea {
font-size: inherit;
line-height: inherit;
color: inherit;
font-family: inherit;
border-radius: 0;
}
button,
input,
select,
textarea,
optgroup,
option {
word-break: normal;
}
button {
overflow: visible;
text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
-webkit-appearance: button;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
outline: 1px dotted ButtonText;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
fieldset {
padding: 0;
margin: 0;
border: none;
}
input {
overflow: visible;
}
legend {
box-sizing: border-box;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
color: inherit;
}
progress {
display: inline-block;
vertical-align: top;
}
select {
text-transform: none;
}
textarea {
overflow: auto;
-webkit-overflow-scrolling: touch;
resize: vertical;
}
[type=checkbox],
[type=radio] {
box-sizing: border-box;
padding: 0;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
height: auto;
}
[type=search] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
details {
display: block;
}
summary {
display: list-item;
}
canvas {
display: inline-block;
}
template {
display: none;
}
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
-ms-touch-action: manipulation;
touch-action: manipulation;
}
[hidden] {
display: none;
}
[aria-busy=true] {
cursor: progress;
}
[aria-controls] {
cursor: pointer;
}
[aria-disabled],
[disabled] {
cursor: not-allowed;
}
[aria-hidden=false][hidden]:not(:focus) {
display: inherit;
position: absolute;
clip: rect(0, 0, 0, 0);
}
[disabled] {
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
opacity: 0.618;
}
[disabled] [disabled] {
opacity: 1;
}
html:not([data-focus-disabled]) :focus {
outline: none;
}
html:not([data-focus-disabled]) .focus {
outline: dashed 2px #b8b8b8;
outline-offset: -2px;
}
[readonly] {
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
[data-readonly]:not([data-readonly=false]) {
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
opacity: 0.618;
}
[data-readonly] [data-readonly] {
opacity: 1;
}
[data-toggle-target]:not(.toggle-active) {
display: none;
}
.badge,
.badge-baseline {
display: inline-flex;
position: relative;
left: 0.4em;
align-items: center;
min-width: 1.2em;
height: 1.2em;
padding: 0.4em;
font-size: 0.8333333333em;
white-space: nowrap;
color: white;
background: #fa73a0;
border-radius: 9999px;
}
.badge {
top: -0.4em;
}
.baseline {
position: relative;
}
.baseline::after {
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 4;
pointer-events: none;
content: "";
background: linear-gradient(to bottom, #0ff 0, rgba(255, 255, 255, 0) 1px) left top/100% 1rem repeat-y;
}
.btn,
.btn-check,
.btn-radio,
.btn-file {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: inline-flex;
vertical-align: top;
flex: 0 0 auto;
max-width: 100%;
min-width: 3rem;
height: 3rem;
font-size: 1.0769230769rem;
line-height: normal;
white-space: nowrap;
cursor: pointer;
-ms-touch-action: manipulation;
touch-action: manipulation;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-decoration: none;
background: none;
}
@supports (-ms-ime-align: auto) {
input.btn {
display: inline-block;
text-align: center;
}
}
.btn,
.btn-check label,
.btn-radio label,
.btn-file label {
align-items: center;
justify-content: center;
padding: 0 1em;
border: solid 1px;
overflow: hidden;
border-radius: 0;
}
.btn-check label,
.btn-radio label,
.btn-file label {
display: flex;
width: 100%;
height: inherit;
}
.btn > *,
.btn-check label > *,
.btn-radio label > *,
.btn-file label > * {
flex: 0 0 auto;
}
.btn-check input,
.btn-radio input,
.btn-file input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 0.001px;
min-width: 100%;
height: 100%;
margin-right: -100%;
overflow: hidden;
cursor: pointer;
opacity: 0;
}
.btn-check input[disabled],
.btn-radio input[disabled],
.btn-file input[disabled] {
opacity: 0;
}
.btn-file ::-webkit-file-upload-button {
display: none;
}
.btn:-moz-focusring {
outline: none;
}
.btn.focus,
.btn-check input.focus ~ label,
.btn-radio input.focus ~ label,
.btn-file input.focus ~ label {
outline: dashed 2px #b8b8b8;
outline-offset: -2px;
}
.btn-fluid.btn,
.btn-fluid.btn-check,
.btn-fluid.btn-radio,
.btn-fluid.btn-file {
display: flex;
flex: 1 1 auto;
width: 100%;
}
.btn-small.btn,
.btn-small.btn-check,
.btn-small.btn-radio,
.btn-small.btn-file {
min-width: 2rem;
height: 2rem;
font-size: 0.9230769231rem;
}
.btn-large.btn,
.btn-large.btn-check,
.btn-large.btn-radio,
.btn-large.btn-file {
min-width: 4rem;
height: 4rem;
font-size: 1.3076923077rem;
}
.btn.btn-primary,
.btn-check.btn-primary label,
.btn-radio.btn-primary label,
.btn-file.btn-primary label {
color: rgba(255, 255, 255, 0.9);
background: #fa73a0;
border-color: transparent;
}
.btn.btn-primary:hover,
.btn-file.btn-primary input:hover ~ label {
background: #fa6999;
}
.btn.btn-primary:active,
.btn.btn-primary.btn-active,
.btn-file.btn-primary input:active ~ label,
.btn-check.btn-primary input:checked ~ label,
.btn-radio.btn-primary input:checked ~ label,
.btn-check.btn-primary.btn-active input ~ label,
.btn-radio.btn-primary.btn-active input ~ label,
.btn-file.btn-primary.btn-active input ~ label {
background: #f95f93;
}
.btn.btn-secondary,
.btn-check.btn-secondary label,
.btn-radio.btn-secondary label,
.btn-file.btn-secondary label {
color: #6b6b6b;
background: #dbdbdb;
border-color: transparent;
}
.btn.btn-secondary:hover,
.btn-file.btn-secondary input:hover ~ label {
background: #d6d6d6;
}
.btn.btn-secondary:active,
.btn.btn-secondary.btn-active,
.btn-file.btn-secondary input:active ~ label,
.btn-check.btn-secondary input:checked ~ label,
.btn-radio.btn-secondary input:checked ~ label,
.btn-check.btn-secondary.btn-active input ~ label,
.btn-radio.btn-secondary.btn-active input ~ label,
.btn-file.btn-secondary.btn-active input ~ label {
background: #d1d1d1;
}
.btn.btn-danger,
.btn-check.btn-danger label,
.btn-radio.btn-danger label,
.btn-file.btn-danger label {
color: rgba(255, 255, 255, 0.9);
background: #d12626;
border-color: transparent;
}
.btn.btn-danger:hover,
.btn-file.btn-danger input:hover ~ label {
background: #c82424;
}
.btn.btn-danger:active,
.btn.btn-danger.btn-active,
.btn-file.btn-danger input:active ~ label,
.btn-check.btn-danger input:checked ~ label,
.btn-radio.btn-danger input:checked ~ label,
.btn-check.btn-danger.btn-active input ~ label,
.btn-radio.btn-danger.btn-active input ~ label,
.btn-file.btn-danger.btn-active input ~ label {
background: #c02323;
}
.btn.btn-dark,
.btn-check.btn-dark label,
.btn-radio.btn-dark label,
.btn-file.btn-dark label {
color: rgba(255, 255, 255, 0.9);
background: #525252;
border-color: transparent;
}
.btn.btn-dark:hover,
.btn-file.btn-dark input:hover ~ label {
background: #4d4d4d;
}
.btn.btn-dark:active,
.btn.btn-dark.btn-active,
.btn-file.btn-dark input:active ~ label,
.btn-check.btn-dark input:checked ~ label,
.btn-radio.btn-dark input:checked ~ label,
.btn-check.btn-dark.btn-active input ~ label,
.btn-radio.btn-dark.btn-active input ~ label,
.btn-file.btn-dark.btn-active input ~ label {
background: #474747;
}
.btn.btn-light,
.btn-check.btn-light label,
.btn-radio.btn-light label,
.btn-file.btn-light label {
color: #525252;
background: white;
border-color: transparent;
}
.btn.btn-light:hover,
.btn-file.btn-light input:hover ~ label {
background: #fafafa;
}
.btn.btn-light:active,
.btn.btn-light.btn-active,
.btn-file.btn-light input:active ~ label,
.btn-check.btn-light input:checked ~ label,
.btn-radio.btn-light input:checked ~ label,
.btn-check.btn-light.btn-active input ~ label,
.btn-radio.btn-light.btn-active input ~ label,
.btn-file.btn-light.btn-active input ~ label {
background: whitesmoke;
}
.btn.btn-hollow-primary,
.btn-check.btn-hollow-primary label,
.btn-radio.btn-hollow-primary label,
.btn-file.btn-hollow-primary label {
color: #fa73a0;
border-color: #fa73a0;
}
.btn.btn-hollow-primary:hover,
.btn-file.btn-hollow-primary input:hover ~ label {
color: rgba(255, 255, 255, 0.9);
background: #fa6999;
border-color: transparent;
}
.btn.btn-hollow-primary:active,
.btn.btn-hollow-primary.btn-active,
.btn-file.btn-hollow-primary input:active ~ label,
.btn-check.btn-hollow-primary input:checked ~ label,
.btn-radio.btn-hollow-primary input:checked ~ label,
.btn-check.btn-hollow-primary.btn-active input ~ label,
.btn-radio.btn-hollow-primary.btn-active input ~ label,
.btn-file.btn-hollow-primary.btn-active input ~ label {
color: rgba(255, 255, 255, 0.9);
background: #f95f93;
border-color: transparent;
}
.btn.btn-hollow-secondary,
.btn-check.btn-hollow-secondary label,
.btn-radio.btn-hollow-secondary label,
.btn-file.btn-hollow-secondary label {
color: #6b6b6b;
border-color: #dbdbdb;
}
.btn.btn-hollow-secondary:hover,
.btn-file.btn-hollow-secondary input:hover ~ label {
color: #6b6b6b;
background: #d6d6d6;
border-color: transparent;
}
.btn.btn-hollow-secondary:active,
.btn.btn-hollow-secondary.btn-active,
.btn-file.btn-hollow-secondary input:active ~ label,
.btn-check.btn-hollow-secondary input:checked ~ label,
.btn-radio.btn-hollow-secondary input:checked ~ label,
.btn-check.btn-hollow-secondary.btn-active input ~ label,
.btn-radio.btn-hollow-secondary.btn-active input ~ label,
.btn-file.btn-hollow-secondary.btn-active input ~ label {
color: #6b6b6b;
background: #d1d1d1;
border-color: transparent;
}
.btn.btn-hollow-danger,
.btn-check.btn-hollow-danger label,
.btn-radio.btn-hollow-danger label,
.btn-file.btn-hollow-danger label {
color: #d12626;
border-color: #d12626;
}
.btn.btn-hollow-danger:hover,
.btn-file.btn-hollow-danger input:hover ~ label {
color: rgba(255, 255, 255, 0.9);
background: #c82424;
border-color: transparent;
}
.btn.btn-hollow-danger:active,
.btn.btn-hollow-danger.btn-active,
.btn-file.btn-hollow-danger input:active ~ label,
.btn-check.btn-hollow-danger input:checked ~ label,
.btn-radio.btn-hollow-danger input:checked ~ label,
.btn-check.btn-hollow-danger.btn-active input ~ label,
.btn-radio.btn-hollow-danger.btn-active input ~ label,
.btn-file.btn-hollow-danger.btn-active input ~ label {
color: rgba(255, 255, 255, 0.9);
background: #c02323;
border-color: transparent;
}
.btn.btn-hollow-dark,
.btn-check.btn-hollow-dark label,
.btn-radio.btn-hollow-dark label,
.btn-file.btn-hollow-dark label {
color: #525252;
border-color: #525252;
}
.btn.btn-hollow-dark:hover,
.btn-file.btn-hollow-dark input:hover ~ label {
color: rgba(255, 255, 255, 0.9);
background: #4d4d4d;
border-color: transparent;
}
.btn.btn-hollow-dark:active,
.btn.btn-hollow-dark.btn-active,
.btn-file.btn-hollow-dark input:active ~ label,
.btn-check.btn-hollow-dark input:checked ~ label,
.btn-radio.btn-hollow-dark input:checked ~ label,
.btn-check.btn-hollow-dark.btn-active input ~ label,
.btn-radio.btn-hollow-dark.btn-active input ~ label,
.btn-file.btn-hollow-dark.btn-active input ~ label {
color: rgba(255, 255, 255, 0.9);
background: #474747;
border-color: transparent;
}
.btn.btn-hollow-light,
.btn-check.btn-hollow-light label,
.btn-radio.btn-hollow-light label,
.btn-file.btn-hollow-light label {
color: white;
border-color: white;
}
.btn.btn-hollow-light:hover,
.btn-file.btn-hollow-light input:hover ~ label {
color: #525252;
background: #fafafa;
border-color: transparent;
}
.btn.btn-hollow-light:active,
.btn.btn-hollow-light.btn-active,
.btn-file.btn-hollow-light input:active ~ label,
.btn-check.btn-hollow-light input:checked ~ label,
.btn-radio.btn-hollow-light input:checked ~ label,
.btn-check.btn-hollow-light.btn-active input ~ label,
.btn-radio.btn-hollow-light.btn-active input ~ label,
.btn-file.btn-hollow-light.btn-active input ~ label {
color: #525252;
background: whitesmoke;
border-color: transparent;
}
.btn.btn-text-primary,
.btn-check.btn-text-primary,
.btn-radio.btn-text-primary,
.btn-file.btn-text-primary {
color: #fa73a0;
border-color: transparent;
}
.btn.btn-text-primary:hover,
.btn-file.btn-text-primary input:hover ~ label {
color: #f8427f;
}
.btn.btn-text-primary:active,
.btn.btn-text-primary.btn-active,
.btn-file.btn-text-primary input:active ~ label,
.btn-check.btn-text-primary input:checked ~ label,
.btn-radio.btn-text-primary input:checked ~ label,
.btn-check.btn-text-primary.btn-active input ~ label,
.btn-radio.btn-text-primary.btn-active input ~ label,
.btn-file.btn-text-primary.btn-active input ~ label {
color: #f8427f;
}
.btn.btn-text-secondary,
.btn-check.btn-text-secondary,
.btn-radio.btn-text-secondary,
.btn-file.btn-text-secondary {
color: #8f8f8f;
border-color: transparent;
}
.btn.btn-text-secondary:hover,
.btn-file.btn-text-secondary input:hover ~ label {
color: #757575;
}
.btn.btn-text-secondary:active,
.btn.btn-text-secondary.btn-active,
.btn-file.btn-text-secondary input:active ~ label,
.btn-check.btn-text-secondary input:checked ~ label,
.btn-radio.btn-text-secondary input:checked ~ label,
.btn-check.btn-text-secondary.btn-active input ~ label,
.btn-radio.btn-text-secondary.btn-active input ~ label,
.btn-file.btn-text-secondary.btn-active input ~ label {
color: #757575;
}
.btn.btn-text-danger,
.btn-check.btn-text-danger,
.btn-radio.btn-text-danger,
.btn-file.btn-text-danger {
color: #d12626;
border-color: transparent;
}
.btn.btn-text-danger:hover,
.btn-file.btn-text-danger input:hover ~ label {
color: #bb2222;
}
.btn.btn-text-danger:active,
.btn.btn-text-danger.btn-active,
.btn-file.btn-text-danger input:active ~ label,
.btn-check.btn-text-danger input:checked ~ label,
.btn-radio.btn-text-danger input:checked ~ label,
.btn-check.btn-text-danger.btn-active input ~ label,
.btn-radio.btn-text-danger.btn-active input ~ label,
.btn-file.btn-text-danger.btn-active input ~ label {
color: #bb2222;
}
.btn.btn-text-dark,
.btn-check.btn-text-dark,
.btn-radio.btn-text-dark,
.btn-file.btn-text-dark {
color: #6b6b6b;
border-color: transparent;
}
.btn.btn-text-dark:hover,
.btn-file.btn-text-dark input:hover ~ label {
color: #525252;
}
.btn.btn-text-dark:active,
.btn.btn-text-dark.btn-active,
.btn-file.btn-text-dark input:active ~ label,
.btn-check.btn-text-dark input:checked ~ label,
.btn-radio.btn-text-dark input:checked ~ label,
.btn-check.btn-text-dark.btn-active input ~ label,
.btn-radio.btn-text-dark.btn-active input ~ label,
.btn-file.btn-text-dark.btn-active input ~ label {
color: #525252;
}
.btn.btn-text-light,
.btn-check.btn-text-light,
.btn-radio.btn-text-light,
.btn-file.btn-text-light {
color: rgba(255, 255, 255, 0.618);
border-color: transparent;
}
.btn.btn-text-light:hover,
.btn-file.btn-text-light input:hover ~ label {
color: white;
}
.btn.btn-text-light:active,
.btn.btn-text-light.btn-active,
.btn-file.btn-text-light input:active ~ label,
.btn-check.btn-text-light input:checked ~ label,
.btn-radio.btn-text-light input:checked ~ label,
.btn-check.btn-text-light.btn-active input ~ label,
.btn-radio.btn-text-light.btn-active input ~ label,
.btn-file.btn-text-light.btn-active input ~ label {
color: white;
}
.container {
max-width: 105.076923rem;
min-width: 0;
padding: 2rem 1rem;
margin-right: auto;
margin-left: auto;
}
.fm-label {
padding-top: 0.5993846154rem;
padding-bottom: 0.4006153846rem;
font-size: 1.0769230769rem;
line-height: 2rem;
display: block;
color: #525252;
}
.fm-label-required.fm-label::after {
content: " | Required";
color: #d12626;
}
.fm-label-small.fm-label {
padding-top: 0.6566153846rem;
padding-bottom: 0.3433846154rem;
font-size: 0.9230769231rem;
line-height: 2rem;
}
.fm-label-large.fm-label {
padding-top: 0.5135384615rem;
padding-bottom: 0.4864615385rem;
font-size: 1.3076923077rem;
line-height: 2rem;
}
.fm ::-webkit-input-placeholder {
color: #d1d1d1;
}
.fm ::-moz-placeholder {
color: #d1d1d1;
}
.fm :-ms-input-placeholder {
color: #d1d1d1;
}
.fm[data-error]::after,
.fm[data-hint]::after {
display: block;
width: 100%;
font-size: 0.9230769231rem;
line-height: 2rem;
}
.fm[data-hint]::after {
content: attr(data-hint);
color: #d1d1d1;
}
.fm[data-error]::after,
.fm[data-hint][data-error]::after {
content: attr(data-error);
color: #d12626;
}
.fm-large.fm[data-hint]::after,
.fm-large.fm[data-error]::after {
font-size: 1.0769230769rem;
line-height: 2rem;
}
.fm {
display: flex;
flex-wrap: wrap;
font-size: 1.0769230769rem;
color: #6b6b6b;
}
.fm > * {
flex: 0 0 auto;
}
.fm input,
.fm select,
.fm textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: block;
}
html:not([data-focus-disabled]) .fm .focus {
outline: none;
}
.fm ::-webkit-inner-spin-button,
.fm ::-webkit-outer-spin-button {
display: none;
}
.fm [type=number] {
-moz-appearance: textfield;
}
.fm [type=range]::-moz-focus-outer {
border: none;
}
.fm :invalid {
box-shadow: none;
}
.fm select::-ms-expand {
display: none;
}
.fm ::-webkit-search-cancel-button {
-webkit-appearance: none;
}
.fm ::-webkit-calendar-picker-indicator {
display: none;
}
.fm ::-webkit-contacts-auto-fill-button {
display: none !important;
}
.fm ::-webkit-credentials-auto-fill-button {
display: none !important;
}
.fm ::-webkit-caps-lock-indicator {
display: none !important;
}
.fm-inline.fm {
display: inline-flex;
vertical-align: top;
}
.fm-small.fm {
font-size: 0.9230769231rem;
}
.fm-large.fm {
font-size: 1.3076923077rem;
}
.fm-inline.fm:not(.fm-check):not(.fm-radio) {
width: 18rem;
}
.fm-small.fm-inline.fm:not(.fm-check):not(.fm-radio) {
width: 14rem;
}
.fm-large.fm-inline.fm:not(.fm-check):not(.fm-radio) {
width: 22rem;
}
.fm-text input,
.fm-search input,
.fm-select input,
.fm-file input,
.fm-text textarea,
.fm-select select {
width: 100%;
border: solid 1px #ebebeb;
border-radius: 0;
}
.fm-text input,
.fm-search input,
.fm-select input,
.fm-file input,
.fm-select select:not([multiple]) {
height: 3rem;
line-height: normal;
}
.fm-text input,
.fm-select select:not([multiple]) {
padding: 0 1em;
background: white;
}
.fm-search input,
.fm-select input,
.fm-file input {
padding: 0 3.286em 0 1em;
}
.fm-search input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23ebebeb' d='M983.1,908.7L702.1,625.9c114.2-150.9,102.6-366.6-35-504.2c-150.3-150.3-394.1-150.3-544.4,0c-150.3,150.3-150.3,394,0,544.4c137.5,137.5,353.1,149.2,504,35.2l281,282.8c9.2,9.2,24.2,9.2,33.5,0l41.9-41.9C992.3,932.9,992.3,917.9,983.1,908.7L983.1,908.7z M194.1,596.9c-110.4-110.4-110.4-289.4,0-399.7c110.4-110.4,289.4-110.4,399.8,0c110.4,110.4,110.4,289.3,0,399.7C483.4,707.3,304.5,707.3,194.1,596.9L194.1,596.9z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-select input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23ebebeb' d='M2.16,6.246 C2.385,6.246 2.61,6.308 2.81,6.442 L9.039,10.598 L15.076,6.401 C15.617,6.042 16.346,6.188 16.705,6.729 C17.065,7.268 16.92,8 16.38,8.359 L9.692,12.989 C9.298,13.253 8.784,13.254 8.388,12.991 L1.508,8.402 C0.966,8.042 0.82,7.31 1.179,6.77 C1.407,6.429 1.78,6.246 2.16,6.246 L2.16,6.246 Z'%3E%3C/path%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-file input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-100 0 600 500'%3E%3Cpath fill='%23ebebeb' d='M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41C492,219.566,479.904,207.566,465.064,207.566z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-text textarea,
.fm-select select[multiple] {
height: 9rem;
min-height: 9rem;
padding: 0.5993846154rem 1em 0.4006153846rem;
line-height: 2rem;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: white;
}
.fm-text[data-error] input,
.fm-search[data-error] input,
.fm-select[data-error] input,
.fm-file[data-error] input,
.fm-text[data-error] textarea,
.fm-select[data-error] select[multiple] {
border-color: #d12626;
}
.fm-search[data-error] input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23d12626' d='M983.1,908.7L702.1,625.9c114.2-150.9,102.6-366.6-35-504.2c-150.3-150.3-394.1-150.3-544.4,0c-150.3,150.3-150.3,394,0,544.4c137.5,137.5,353.1,149.2,504,35.2l281,282.8c9.2,9.2,24.2,9.2,33.5,0l41.9-41.9C992.3,932.9,992.3,917.9,983.1,908.7L983.1,908.7z M194.1,596.9c-110.4-110.4-110.4-289.4,0-399.7c110.4-110.4,289.4-110.4,399.8,0c110.4,110.4,110.4,289.3,0,399.7C483.4,707.3,304.5,707.3,194.1,596.9L194.1,596.9z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-select[data-error] input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23d12626' d='M2.16,6.246 C2.385,6.246 2.61,6.308 2.81,6.442 L9.039,10.598 L15.076,6.401 C15.617,6.042 16.346,6.188 16.705,6.729 C17.065,7.268 16.92,8 16.38,8.359 L9.692,12.989 C9.298,13.253 8.784,13.254 8.388,12.991 L1.508,8.402 C0.966,8.042 0.82,7.31 1.179,6.77 C1.407,6.429 1.78,6.246 2.16,6.246 L2.16,6.246 Z'%3E%3C/path%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-file[data-error] input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-100 0 600 500'%3E%3Cpath fill='%23d12626' d='M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41C492,219.566,479.904,207.566,465.064,207.566z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm.fm-text input.focus,
.fm.fm-search input.focus,
.fm.fm-select .focus ~ input,
.fm.fm-select input.focus,
.fm.fm-file .focus ~ input,
.fm.fm-text textarea.focus,
.fm.fm-select select[multiple].focus {
border-color: #fa73a0;
}
.fm.fm-search input.focus {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23fa73a0' d='M983.1,908.7L702.1,625.9c114.2-150.9,102.6-366.6-35-504.2c-150.3-150.3-394.1-150.3-544.4,0c-150.3,150.3-150.3,394,0,544.4c137.5,137.5,353.1,149.2,504,35.2l281,282.8c9.2,9.2,24.2,9.2,33.5,0l41.9-41.9C992.3,932.9,992.3,917.9,983.1,908.7L983.1,908.7z M194.1,596.9c-110.4-110.4-110.4-289.4,0-399.7c110.4-110.4,289.4-110.4,399.8,0c110.4,110.4,110.4,289.3,0,399.7C483.4,707.3,304.5,707.3,194.1,596.9L194.1,596.9z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm.fm-select .focus ~ input,
.fm.fm-select input.focus {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23fa73a0' d='M2.16,6.246 C2.385,6.246 2.61,6.308 2.81,6.442 L9.039,10.598 L15.076,6.401 C15.617,6.042 16.346,6.188 16.705,6.729 C17.065,7.268 16.92,8 16.38,8.359 L9.692,12.989 C9.298,13.253 8.784,13.254 8.388,12.991 L1.508,8.402 C0.966,8.042 0.82,7.31 1.179,6.77 C1.407,6.429 1.78,6.246 2.16,6.246 L2.16,6.246 Z'%3E%3C/path%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm.fm-file .focus ~ input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-100 0 600 500'%3E%3Cpath fill='%23fa73a0' d='M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41C492,219.566,479.904,207.566,465.064,207.566z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-small.fm-text input,
.fm-small.fm-search input,
.fm-small.fm-select input,
.fm-small.fm-file input,
.fm-small.fm-select select:not([multiple]) {
height: 2rem;
}
.fm-small.fm-text textarea,
.fm-small.fm-select select[multiple] {
height: 6rem;
min-height: 6rem;
padding-top: 0.6566153846rem;
padding-bottom: 0.3433846154rem;
line-height: 2rem;
}
.fm-large.fm-text input,
.fm-large.fm-search input,
.fm-large.fm-select input,
.fm-large.fm-file input,
.fm-large.fm-select select:not([multiple]) {
height: 4rem;
}
.fm-large.fm-text textarea,
.fm-large.fm-select select[multiple] {
height: 12rem;
min-height: 12rem;
padding-top: 0.5135384615rem;
padding-bottom: 0.4864615385rem;
line-height: 2rem;
}
.fm-select select:not([multiple]),
.fm-file [type=file] {
width: 100%;
margin-bottom: -3rem;
}
.fm.fm-select select:not([multiple]),
.fm.fm-file [type=file] {
opacity: 0;
}
.fm-file [type=file] {
overflow: hidden;
}
.fm-small.fm-select select:not([multiple]),
.fm-small.fm-file [type=file] {
margin-bottom: -2rem;
}
.fm-large.fm-select select:not([multiple]),
.fm-large.fm-file [type=file] {
margin-bottom: -4rem;
}
.fm-select select[multiple] option {
display: flex;
align-items: center;
height: 2rem;
min-height: 0;
padding: 0;
}
.fm-small.fm-select select[multiple] option {
height: 2rem;
}
.fm-large.fm-select select[multiple] option {
height: 2rem;
}
.fm-select select[multiple] option.fm-select-multiple-placeholder:disabled {
overflow: hidden;
opacity: 1;
color: #d1d1d1;
text-overflow: ellipsis;
}
.fm-check label,
.fm-radio label {
flex: 0 1 auto;
padding-left: 1.8em;
line-height: 2rem;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.fm-check label:not(:last-child),
.fm-radio label:not(:last-child) {
margin-right: 1.2em;
}
.fm-check label input,
.fm-radio label input {
float: left;
margin: 0.2285714286em 0.4em 0 -1.8em;
}
.fm-check input,
.fm-radio input {
width: 1.4em;
height: 1.4em;
border: solid 1px #ebebeb;
background: white;
}
.fm-check input {
border-radius: 0;
transform: scale(0.9);
}
.fm-radio input {
border-radius: 100%;
}
.fm-check[data-error] input,
.fm-radio[data-error] input {
border-color: #d12626;
}
.fm.fm-check .focus,
.fm.fm-radio .focus {
border-color: #fa73a0;
}
.fm.fm-check input:checked,
.fm.fm-radio input:checked {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-150 -150 800 800'%3E%3Cpath fill='%236b6b6b' d='M487.75,78.125c-13-13-33-13-46,0l-272,272l-114-113c-13-13-33-13-46,0s-13,33,0,46l137,136c6,6,15,10,23,10s17-4,23-10l295-294C500.75,112.125,500.75,91.125,487.75,78.125z'/%3E%3C/svg%3E") center/contain no-repeat, white;
}
.fm-small.fm-check label,
.fm-small.fm-radio label {
line-height: 2rem;
}
.fm-large.fm-check label,
.fm-large.fm-radio label {
line-height: 2rem;
}
.fm-small.fm-check label input,
.fm-small.fm-radio label input {
margin-top: 0.3833333333em;
}
.fm-large.fm-check label input,
.fm-large.fm-radio label input {
margin-top: 0.0647058824em;
}
.fm-range input {
width: 100%;
height: 3rem;
background: none;
}
.fm-range ::-webkit-slider-runnable-track {
background: #ededed;
border-radius: 0;
height: 0.4em;
}
.fm-range ::-moz-range-track {
background: #ededed;
border-radius: 0;
height: 0.4em;
}
.fm-range ::-ms-track {
height: 0.4em;
color: transparent;
background: transparent;
}
.fm-range ::-ms-fill-lower {
background: #ededed;
border-radius: 0;
}
.fm-range ::-ms-fill-upper {
background: #ededed;
border-radius: 0;
}
.fm-range ::-webkit-slider-thumb {
width: 1.4em;
height: 1.4em;
border: solid 1px transparent;
background: #ededed;
border-radius: 100%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin-top: -0.5em;
}
@supports (-ms-ime-align: auto) {
.fm-range ::-webkit-slider-thumb {
margin-top: 0;
}
}
.fm-range ::-moz-range-thumb {
width: 1.4em;
height: 1.4em;
border: solid 1px transparent;
background: #ededed;
border-radius: 100%;
}
.fm-range ::-ms-thumb {
width: 1.4em;
height: 1.4em;
border: solid 1px transparent;
background: #ededed;
border-radius: 100%;
}
.fm-range ::-ms-tooltip {
display: none;
}
.fm-range[data-error] ::-webkit-slider-thumb {
border-color: #d12626;
}
.fm-range[data-error] ::-moz-range-thumb {
border-color: #d12626;
}
.fm-range[data-error] ::-ms-thumb {
border-color: #d12626;
}
.fm-range input.focus::-webkit-slider-thumb {
background: #fa73a0;
}
.fm-range input.focus::-moz-range-thumb {
background: #fa73a0;
}
.fm-range input.focus::-ms-thumb {
background: #fa73a0;
}
.fm-small.fm-range input {
height: 2rem;
}
.fm-large.fm-range input {
height: 4rem;
}
.grid,
.grid-edge {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
width: 100%;
}
[class*=col-] {
flex-grow: 0;
flex-shrink: 0;
}
.col-auto {
flex-basis: 0;
flex-grow: 1;
flex-shrink: 1;
max-width: 100%;
min-width: 1px;
}
.grid > [class*=col-] {
padding-right: 1rem;
padding-left: 1rem;
}
.grid [class*=col-] .grid {
width: auto;
margin-right: -1rem;
margin-left: -1rem;
}
.grid .grid-edge > [class*=col-] > .grid {
margin-right: 0;
margin-left: 0;
}
.col-1 {
flex-basis: 8.3333333333%;
max-width: 8.3333333333%;
}
.col-2 {
flex-basis: 16.6666666667%;
max-width: 16.6666666667%;
}
.col-3 {
flex-basis: 25%;
max-width: 25%;
}
.col-4 {
flex-basis: 33.3333333333%;
max-width: 33.3333333333%;
}
.col-5 {
flex-basis: 41.6666666667%;
max-width: 41.6666666667%;
}
.col-6 {
flex-basis: 50%;
max-width: 50%;
}
.col-7 {
flex-basis: 58.3333333333%;
max-width: 58.3333333333%;
}
.col-8 {
flex-basis: 66.6666666667%;
max-width: 66.6666666667%;
}
.col-9 {
flex-basis: 75%;
max-width: 75%;
}
.col-10 {
flex-basis: 83.3333333333%;
max-width: 83.3333333333%;
}
.col-11 {
flex-basis: 91.6666666667%;
max-width: 91.6666666667%;
}
.col-12 {
flex-basis: 100%;
max-width: 100%;
}
.offset-1 {
margin-left: 8.3333333333%;
}
.offset-2 {
margin-left: 16.6666666667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.3333333333%;
}
.offset-5 {
margin-left: 41.6666666667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.3333333333%;
}
.offset-8 {
margin-left: 66.6666666667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.3333333333%;
}
.offset-11 {
margin-left: 91.6666666667%;
}
@media (min-width:768px) {
.col-1-m {
flex-basis: 8.3333333333%;
max-width: 8.3333333333%;
}
.col-2-m {
flex-basis: 16.6666666667%;
max-width: 16.6666666667%;
}
.col-3-m {
flex-basis: 25%;
max-width: 25%;
}
.col-4-m {
flex-basis: 33.3333333333%;
max-width: 33.3333333333%;
}
.col-5-m {
flex-basis: 41.6666666667%;
max-width: 41.6666666667%;
}
.col-6-m {
flex-basis: 50%;
max-width: 50%;
}
.col-7-m {
flex-basis: 58.3333333333%;
max-width: 58.3333333333%;
}
.col-8-m {
flex-basis: 66.6666666667%;
max-width: 66.6666666667%;
}
.col-9-m {
flex-basis: 75%;
max-width: 75%;
}
.col-10-m {
flex-basis: 83.3333333333%;
max-width: 83.3333333333%;
}
.col-11-m {
flex-basis: 91.6666666667%;
max-width: 91.6666666667%;
}
.col-12-m {
flex-basis: 100%;
max-width: 100%;
}
.offset-1-m {
margin-left: 8.3333333333%;
}
.offset-2-m {
margin-left: 16.6666666667%;
}
.offset-3-m {
margin-left: 25%;
}
.offset-4-m {
margin-left: 33.3333333333%;
}
.offset-5-m {
margin-left: 41.6666666667%;
}
.offset-6-m {
margin-left: 50%;
}
.offset-7-m {
margin-left: 58.3333333333%;
}
.offset-8-m {
margin-left: 66.6666666667%;
}
.offset-9-m {
margin-left: 75%;
}
.offset-10-m {
margin-left: 83.3333333333%;
}
.offset-11-m {
margin-left: 91.6666666667%;
}
}
@media (min-width:1200px) {
.col-1-l {
flex-basis: 8.3333333333%;
max-width: 8.3333333333%;
}
.col-2-l {
flex-basis: 16.6666666667%;
max-width: 16.6666666667%;
}
.col-3-l {
flex-basis: 25%;
max-width: 25%;
}
.col-4-l {
flex-basis: 33.3333333333%;
max-width: 33.3333333333%;
}
.col-5-l {
flex-basis: 41.6666666667%;
max-width: 41.6666666667%;
}
.col-6-l {
flex-basis: 50%;
max-width: 50%;
}
.col-7-l {
flex-basis: 58.3333333333%;
max-width: 58.3333333333%;
}
.col-8-l {
flex-basis: 66.6666666667%;
max-width: 66.6666666667%;
}
.col-9-l {
flex-basis: 75%;
max-width: 75%;
}
.col-10-l {
flex-basis: 83.3333333333%;
max-width: 83.3333333333%;
}
.col-11-l {
flex-basis: 91.6666666667%;
max-width: 91.6666666667%;
}
.col-12-l {
flex-basis: 100%;
max-width: 100%;
}
.offset-1-l {
margin-left: 8.3333333333%;
}
.offset-2-l {
margin-left: 16.6666666667%;
}
.offset-3-l {
margin-left: 25%;
}
.offset-4-l {
margin-left: 33.3333333333%;
}
.offset-5-l {
margin-left: 41.6666666667%;
}
.offset-6-l {
margin-left: 50%;
}
.offset-7-l {
margin-left: 58.3333333333%;
}
.offset-8-l {
margin-left: 66.6666666667%;
}
.offset-9-l {
margin-left: 75%;
}
.offset-10-l {
margin-left: 83.3333333333%;
}
.offset-11-l {
margin-left: 91.6666666667%;
}
}
.ico {
display: inline-block;
vertical-align: text-bottom;
position: relative;
width: 1em;
height: 1em;
font-size: 1.15em;
line-height: normal;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
object-fit: contain;
object-position: center;
font-style: normal;
background-position: center;
background-size: contain;
}
@-moz-document url-prefix() {
.ico {
line-height: 1.11;
}
}
.ico::before,
.ico::after {
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.ico-left::before,
.ico-right::before,
.ico-up::before,
.ico-down::before {
width: 0.6em;
height: 0.6em;
border: 2px solid;
border-right: none;
border-bottom: none;
content: "";
}
.ico-left::before {
transform: translate(-25%, -50%) rotate(-45deg);
}
.ico-right::before {
transform: translate(-75%, -50%) rotate(135deg);
}
.ico-up::before {
transform: translate(-50%, -25%) rotate(45deg);
}
.ico-down::before {
transform: translate(-50%, -75%) rotate(225deg);
}
.ico-plus::before,
.ico-plus::after,
.ico-cross::before,
.ico-cross::after {
content: "";
background: currentColor;
}
.ico-plus::before,
.ico-cross::before {
width: 0.9em;
height: 2px;
}
.ico-plus::after,
.ico-cross::after {
width: 2px;
height: 0.9em;
}
.ico-cross::before,
.ico-cross::after {
transform: translate(-50%, -50%) rotate(45deg);
}
.ico-menu::before {
width: 0.9em;
height: 2px;
content: "";
background: currentColor;
box-shadow: 0 -0.35em, 0 0.35em;
}
.ico-search::before {
top: 5%;
left: 5%;
width: 0.75em;
height: 0.75em;
border: 2px solid;
content: "";
border-radius: 50%;
transform: translate(0, 0) rotate(45deg);
}
.ico-search::after {
top: 80%;
left: 80%;
width: 0.4em;
height: 2px;
content: "";
background: currentColor;
transform: translate(-50%, -50%) rotate(45deg);
}
.media {
display: inline-block;
vertical-align: top;
max-width: 100%;
}
.media img,
.media svg,
.media canvas,
.media video,
.media object,
.media embed,
[class*=media-content] {
display: block;
max-width: 100%;
margin: auto;
overflow: hidden;
object-fit: cover;
object-position: center;
background-color: #f7f7f7;
background-position: center;
background-size: cover;
border-radius: 0;
}
[class*=media-content] {
position: relative;
width: 100%;
padding-top: 56.25%;
}
.media [class*=media-content] > * {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
}
.media-content-1by1 {
padding-top: 100%;
}
.media-contain.media img,
.media-contain.media svg,
.media-contain.media video,
.media-contain.media [class*=media-content] {
object-fit: contain;
background-size: contain;
}
html:has(.overlay.toggle-active),
body:has(.overlay.toggle-active) {
overflow: hidden;
}
.overlay {
display: flex;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 4;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: rgba(82, 82, 82, 0.9);
}
.overlay-body {
margin: auto;
}
.progress {
display: flex;
height: 2rem;
background: #f7f7f7;
border-radius: 0;
}
.progress-bar {
display: flex;
align-items: center;
justify-content: flex-end;
min-width: 3em;
height: 100%;
padding: 0 0.5rem;
font-size: 0.9230769231rem;
white-space: nowrap;
overflow: hidden;
color: rgba(255, 255, 255, 0.9);
background: #fa73a0;
border-radius: 0;
}
@media (min-width:768px) {
html {
-ms-overflow-style: -ms-autohiding-scrollbar;
}
}
@media (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) and (min-width:768px) {
html {
overflow: overlay;
}
::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
::-webkit-scrollbar-thumb {
background: rgba(209, 209, 209, 0.382);
border-radius: 0.5rem;
}
::-webkit-scrollbar-corner {
display: none;
}
::-webkit-resizer {
display: none;
}
}
.table,
.table-border {
word-break: normal;
overflow: auto;
-webkit-overflow-scrolling: touch;
border-radius: 0;
}
.table table,
.table-border table {
min-width: 100%;
}
.table thead,
.table-border thead {
background: #f7f7f7;
}
.table tbody tr:nth-child(even),
.table-border tbody tr:nth-child(even) {
background: #f7f7f7;
}
.table tbody tr:nth-child(odd),
.table-border tbody tr:nth-child(odd) {
background: white;
}
.table th,
.table td,
.table-border th,
.table-border td {
vertical-align: top;
text-align: left;
}
.table th,
.table-border th {
color: #525252;
font-weight: 700;
}
.table td,
.table-border td {
color: #6b6b6b;
}
.table th,
.table td {
padding: 1rem;
}
.table-border {
border: solid 1px #ebebeb;
}
.table-border th,
.table-border td {
padding: calc(1rem - 1px) 1rem 1rem 1rem;
}
.table-border td {
border-top: solid 1px #ebebeb;
}
.table-border tbody tr:last-child td {
padding: calc(1rem - 1px) 1rem calc(1rem - 1px) 1rem;
}
.table-nowrap.table th,
.table-nowrap.table td,
.table-nowrap.table-border th,
.table-nowrap.table-border td {
vertical-align: middle;
white-space: nowrap;
}
.table-stripless.table thead,
.table-stripless.table-border thead {
background: none;
}
.table-stripless.table table tbody tr,
.table-stripless.table-border table tbody tr {
background: none;
}
.table-hover.table tbody tr:hover,
.table-hover.table-border tbody tr:hover {
background: #fedfe9;
}
.turbolinks-progress-bar {
height: 2px;
background: #fa73a0;
}
h1, .h1,
.p1 {
padding-top: 0.6701538462rem;
padding-bottom: 0.3298461538rem;
font-size: 2.2307692308rem;
line-height: 3rem;
display: block;
}
h2, .h2,
.p2 {
padding-top: 0.8132307692rem;
padding-bottom: 0.1867692308rem;
font-size: 1.8461538462rem;
line-height: 3rem;
display: block;
}
h3, .h3,
.p3 {
padding-top: 0.4276923077rem;
padding-bottom: 0.5723076923rem;
font-size: 1.5384615385rem;
line-height: 2rem;
display: block;
}
h4, .h4,
.p4 {
padding-top: 0.5135384615rem;
padding-bottom: 0.4864615385rem;
font-size: 1.3076923077rem;
line-height: 2rem;
display: block;
}
h5, .h5,
p, .p5 {
padding-top: 0.5993846154rem;
padding-bottom: 0.4006153846rem;
font-size: 1.0769230769rem;
line-height: 2rem;
display: block;
}
h6, .h6,
.p6 {
padding-top: 0.6566153846rem;
padding-bottom: 0.3433846154rem;
font-size: 0.9230769231rem;
line-height: 2rem;
display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
color: #525252;
font-weight: 700;
}
.typo-inline {
display: inline !important;
padding: 0 !important;
line-height: 0 !important;
}
code,
kbd,
samp {
padding: 0.1em 0.3em;
line-height: 0;
color: #6b6b6b;
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
background: #f7f7f7;
border-radius: 0;
}
.code {
padding: 0 2rem;
background: #f7f7f7;
border-radius: 0;
}
.code code,
.code samp,
.code kbd {
padding-top: 0.75436rem;
padding-bottom: 0.24564rem;
font-size: 0.9230769231rem;
line-height: 2rem;
display: block;
padding-right: 0;
padding-left: 0;
background: none;
border-radius: 0;
}
q,
.quote p {
font-style: italic;
}
q {
line-height: 0;
}
q::before {
padding: 0 0.3em;
content: '"';
}
q::after {
padding: 0 0.3em 0 0.2em;
content: '"';
}
q q::before {
content: "'";
}
q q::after {
content: "'";
}
cite {
color: #d1d1d1;
font-style: italic;
font-weight: 700;
}
.quote {
padding: 2rem;
}
.quote p {
padding-top: 0.5135384615rem;
padding-bottom: 0.4864615385rem;
font-size: 1.3076923077rem;
line-height: 2rem;
margin: 0 auto 1rem;
}
.quote p:first-child {
position: relative;
}
.quote p:first-child::before {
display: block;
position: absolute;
top: 0;
left: -2rem;
width: 2rem;
font-size: 3em;
text-align: center;
content: '"';
color: #d1d1d1;
}
.quote p:last-of-type {
margin-bottom: 0;
}
.quote footer {
color: #d1d1d1;
}
.quote footer::before {
display: inline-block;
vertical-align: middle;
width: 2em;
margin-right: 1em;
border-width: 1px 0 0;
content: "";
border-style: solid;
}
a:not(.btn) {
color: #6b6b6b;
text-decoration: underline;
}
a:not(.btn):hover {
color: #525252;
}
a.link-light:not(.btn) {
color: rgba(255, 255, 255, 0.9);
}
a.link-light:not(.btn):hover {
color: white;
}
mark {
padding: 0.1em 0.3em;
color: #fa73a0;
background: #fedfe9;
border-radius: 0;
}
ul,
ol {
list-style-position: outside;
}
ul ul,
ul ol,
ol ul,
ol ol {
padding: 0 0 0 2em;
}
dt {
font-weight: 700;
}
sub,
sup {
vertical-align: baseline;
position: relative;
font-size: 83.3333333333%;
line-height: 0;
}
sub {
bottom: -0.25em;
font-feature-settings: "subs" 1;
}
sup {
top: -0.5em;
font-feature-settings: "sups" 1;
}
.alert {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
overflow: hidden;
background: #525252;
border-radius: 0;
}
.alert-action {
flex: 0 0 auto;
order: 1;
margin-left: 1rem;
}
.alert-title {
padding: 0;
color: white;
}
.alert-content {
padding: 0;
color: rgba(255, 255, 255, 0.9);
}
.avatar-x,
.avatar-y {
display: inline-flex;
vertical-align: top;
align-items: center;
}
.avatar-x .media,
.avatar-y .media {
flex: 0 0 auto;
width: 3rem;
height: 3rem;
background-color: #f7f7f7;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23b8b8b8' d='M437.02,330.98c-27.883-27.882-61.071-48.523-97.281-61.018C378.521,243.251,404,198.548,404,148 C404,66.393,337.607,0,256,0S108,66.393,108,148c0,50.548,25.479,95.251,64.262,121.962 c-36.21,12.495-69.398,33.136-97.281,61.018C26.629,379.333,0,443.62,0,512h40c0-119.103,96.897-216,216-216s216,96.897,216,216 h40C512,443.62,485.371,379.333,437.02,330.98z M256,256c-59.551,0-108-48.448-108-108S196.449,40,256,40 c59.551,0,108,48.448,108,108S315.551,256,256,256z'/%3E%3C/svg%3E");
background-position: center;
background-size: 50% auto;
border-radius: 100%;
}
.avatar-x .media img,
.avatar-y .media img {
width: 100%;
height: 100%;
background: none;
border-radius: 100%;
}
.avatar-info {
flex: 0 0 auto;
height: 3rem;
}
.avatar-name,
.avatar-description {
padding: 0;
line-height: 1.35rem;
white-space: nowrap;
}
.avatar-name {
font-size: 1.0769230769rem;
color: #d1d1d1;
}
.avatar-description {
font-size: 0.9230769231rem;
color: #d1d1d1;
}
.avatar-x .avatar-info {
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 0.5rem;
}
.avatar-y {
flex-direction: column;
}
.avatar-y .avatar-info {
padding-top: 0.3rem;
text-align: center;
}
.avatar-large.avatar-x .media,
.avatar-large.avatar-y .media {
width: 6rem;
height: 6rem;
}
.avatar-large.avatar-x .avatar-info,
.avatar-large.avatar-y .avatar-info {
height: 4rem;
}
.avatar-large.avatar-y .avatar-info {
padding-top: 0.6rem;
}
.avatar-large.avatar-x .avatar-info {
padding-left: 1rem;
}
.avatar-large .avatar-name,
.avatar-large .avatar-description {
line-height: 1.7rem;
}
.avatar-large .avatar-name {
font-size: 1.3076923077rem;
}
.avatar-large .avatar-description {
font-size: 1.0769230769rem;
}
.avatar-small.avatar-x .media,
.avatar-small.avatar-y .media {
width: 2rem;
height: 2rem;
}
.avatar-small .avatar-name {
font-size: 0.9230769231rem;
}
.breadcrumb {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 1rem 0;
color: #d1d1d1;
}
.breadcrumb li:not(:first-child)::before {
padding: 0 0.5em;
content: "/";
}
.breadcrumb a {
text-decoration: none;
}
.breadcrumb a:hover {
text-decoration: underline;
}
[class*=btn-].btn-ico {
width: 0;
}
[class*=btn-]:not([class*=btn-text]).btn-ico .ico,
[class*=btn-]:not([class*=btn-text]).btn-ico-left .ico,
[class*=btn-]:not([class*=btn-text]).btn-ico-right .ico,
[class*=btn-]:not([class*=btn-text]).btn-ico-top .ico {
font-size: 1.286em;
pointer-events: none;
}
[class*=btn-].btn-ico-left .ico {
order: -1;
margin: 0 0.4em 0 0;
}
[class*=btn-].btn-ico-right .ico {
order: 1;
margin: 0 0 0 0.4em;
}
.btn.btn-ico-top,
.btn-check.btn-ico-top label,
.btn-radio.btn-ico-top label,
.btn-file.btn-ico-top label {
flex-direction: column;
}
[class*=btn-].btn-ico-top {
height: 4rem;
}
[class*=btn-].btn-ico-top .ico {
order: -1;
margin: 0 0 0.15em 0;
font-size: 1.5em;
}
.btn-large[class*=btn-].btn-ico-top {
height: 5rem;
}
.btn-small[class*=btn-].btn-ico-top {
height: 3rem;
}
.btns-x,
.btns-y {
display: inline-flex;
vertical-align: top;
max-width: 100%;
max-height: 100%;
}
.btns-x.btns-fluid,
.btns-y.btns-fluid {
display: flex;
width: 100%;
}
.btns-x.btns-margin,
.btns-y.btns-margin {
flex-wrap: wrap;
}
.btns-x.btns-margin [class*=btn-],
.btns-y.btns-margin [class*=btn-] {
margin: 0 1rem 1rem 0;
}
.btns-x:not(.btns-margin) .btn:not(:first-child),
.btns-x:not(.btns-margin) [class*=btn-]:not(:first-child) label {
border-left: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.btns-x:not(.btns-margin) .btn:not(:last-child),
.btns-x:not(.btns-margin) [class*=btn-]:not(:last-child) label {
border-right: none;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btns-x:not(.btns-margin) [class*=btn-][class*=btn-],
.btns-x:not(.btns-margin) [class*=btn-][class*=btn-] input ~ label,
.btns-y:not(.btns-margin) [class*=btn-][class*=btn-],
.btns-y:not(.btns-margin) [class*=btn-][class*=btn-] input ~ label {
box-shadow: none;
}
.btns-x:not(.btns-margin).btns-fluid [class*=btn-] {
flex: 1 1 auto;
}
.btns-y {
flex-direction: column;
}
.btns-y:not(.btns-margin) .btn:not(:first-child),
.btns-y:not(.btns-margin) [class*=btn-]:not(:first-child) label {
border-top: none;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.btns-y:not(.btns-margin) .btn:not(:last-child),
.btns-y:not(.btns-margin) [class*=btn-]:not(:last-child) label {
border-bottom: none;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btns-y .btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right),
.btns-y [class*=btn-]:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) label {
justify-content: flex-start;
}
.btns-y .btn.btn-ico-right,
.btns-y [class*=btn-].btn-ico-right label {
justify-content: space-between;
}
@supports (-ms-ime-align: auto) {
.btns-y input.btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) {
text-align: left;
}
}
.carousel {
display: block;
width: 100%;
background: #f7f7f7;
}
.carousel-box {
position: relative;
padding-top: 56.25%;
overflow: hidden;
}
.carousel-prev,
.carousel-next {
display: none;
}
.carousel-indicators {
display: flex;
position: absolute;
top: 1rem;
right: 1rem;
z-index: 2;
justify-content: center;
}
.carousel-indicators .btn {
height: 0.2rem;
font-size: 0;
opacity: 0.382;
outline-offset: 2px;
transition: opacity 0.5s ease;
}
.carousel-indicators.btns-x.btns-margin .btn:last-child {
margin-right: 0;
}
.carousel-indicators .btn[disabled] {
opacity: 0.9;
}
.carousel-item,
.carousel-figure {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
background-position: center;
background-size: cover;
}
.carousel-description {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
max-height: 100%;
padding: 1rem;
overflow: auto;
-webkit-overflow-scrolling: touch;
color: rgba(255, 255, 255, 0.9);
background: linear-gradient(180deg, transparent 0, rgba(82, 82, 82, 0.1) 2rem);
}
@media (min-width:768px) {
.carousel-prev,
.carousel-next {
display: inline-flex;
position: absolute;
top: 0;
bottom: 0;
z-index: 2;
margin: auto;
opacity: 0;
transition: opacity 0.5s ease;
}
.carousel-prev.btn-text-light,
.carousel-next.btn-text-light {
color: white;
}
.carousel-box:hover > .carousel-prev,
.carousel-box:hover > .carousel-next,
.carousel-prev.focus,
.carousel-next.focus {
opacity: 0.9;
}
.carousel-box:hover > .carousel-prev[disabled],
.carousel-box:hover > .carousel-next[disabled],
.carousel-prev.focus[disabled],
.carousel-next.focus[disabled] {
opacity: 0.382;
}
.carousel-prev {
left: 1rem;
}
.carousel-next {
right: 1rem;
}
.carousel-indicators {
top: 2rem;
right: 2rem;
}
.carousel-description {
padding: 2rem;
}
}
.carousel-item.carousel-item-active {
z-index: 1;
}
.carousel:not([class*=carousel-custom-]) .carousel-item {
transform: translate3d(0, 0, 0);
transition: transform 1s ease;
}
.carousel:not([class*=carousel-custom-]) .carousel-item.carousel-item-next {
transform: translate3d(100%, 0, 0);
}
.carousel:not([class*=carousel-custom-]) .carousel-item.carousel-item-prev {
transform: translate3d(-100%, 0, 0);
}
.carousel.carousel-custom-opacity .carousel-item {
opacity: 1;
transform: translate3d(0, 0, 0);
transition: opacity 1s ease;
}
.carousel.carousel-custom-opacity .carousel-item.carousel-item-prev,
.carousel.carousel-custom-opacity .carousel-item.carousel-item-next {
opacity: 0;
}
.dropdown-absolute,
.dropdown-static,
.dropdown-fixed {
display: inline-flex;
vertical-align: top;
flex-direction: column;
max-width: 100%;
-ms-touch-action: manipulation;
touch-action: manipulation;
}
.dropdown-menu {
display: none;
}
.dropdown-active > .dropdown-menu {
display: block;
}
.dropdown-items {
display: flex;
flex-direction: column;
min-width: 100%;
}
.dropdown-items > * {
flex: 0 0 auto;
}
.dropdown-items .btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right),
.dropdown-items [class*=btn-]:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) label {
justify-content: flex-start;
}
.dropdown-items .btn.btn-ico-right,
.dropdown-items [class*=btn-].btn-ico-right label {
justify-content: space-between;
}
.dropdown-menu .dropdown-items [class*=btn-][class*=btn-],
.dropdown-menu .dropdown-items [class*=btn-][class*=btn-] input ~ label {
box-shadow: none;
}
@supports (-ms-ime-align: auto) {
.dropdown-items input.btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) {
text-align: left;
}
}
.dropdown-static .dropdown-menu {
margin-left: 1rem;
}
.dropdown-fixed > .dropdown-menu {
display: flex;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 4;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: rgba(82, 82, 82, 0.9);
display: none;
}
.dropdown-fixed.dropdown-active > .dropdown-menu {
display: flex;
}
.dropdown-fixed > .dropdown-menu > .dropdown-items {
margin: auto;
margin-bottom: 0;
overflow: visible;
background: white;
}
.dropdown-absolute > .dropdown-menu {
position: relative;
z-index: 3;
margin: 0;
overflow: visible;
}
.dropdown-absolute.dropdown-active > .dropdown-menu {
display: block;
}
.dropdown-absolute > .dropdown-menu > .dropdown-items {
position: absolute;
max-height: 33rem;
margin: 0.5rem 0 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: white;
border-radius: 0;
}
.dropdown-absolute.dropdown-top > .dropdown-menu,
.dropdown-absolute.dropdown-left > .dropdown-menu,
.dropdown-absolute.dropdown-right > .dropdown-menu {
order: -1;
}
.dropdown-absolute.dropdown-top > .dropdown-menu > .dropdown-items {
bottom: 0;
margin: 0 0 0.5rem;
}
.dropdown-absolute.dropdown-align-right > .dropdown-menu > .dropdown-items {
right: 0;
}
.dropdown-absolute.dropdown-right > .dropdown-menu > .dropdown-items {
left: 100%;
margin: 0 0 0 0.5rem;
}
.dropdown-absolute.dropdown-left > .dropdown-menu > .dropdown-items {
right: 100%;
margin: 0 0.5rem 0 0;
}
@media (min-width:768px) {
.dropdown-absolute-m > .dropdown-menu {
position: relative;
z-index: 3;
margin: 0;
overflow: visible;
}
.dropdown-absolute-m.dropdown-active > .dropdown-menu {
display: block;
}
.dropdown-absolute-m > .dropdown-menu > .dropdown-items {
position: absolute;
max-height: 33rem;
margin: 0.5rem 0 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: white;
border-radius: 0;
}
.dropdown-absolute-m.dropdown-top > .dropdown-menu,
.dropdown-absolute-m.dropdown-left > .dropdown-menu,
.dropdown-absolute-m.dropdown-right > .dropdown-menu {
order: -1;
}
.dropdown-absolute-m.dropdown-top > .dropdown-menu > .dropdown-items {
bottom: 0;
margin: 0 0 0.5rem;
}
.dropdown-absolute-m.dropdown-align-right > .dropdown-menu > .dropdown-items {
right: 0;
}
.dropdown-absolute-m.dropdown-right > .dropdown-menu > .dropdown-items {
left: 100%;
margin: 0 0 0 0.5rem;
}
.dropdown-absolute-m.dropdown-left > .dropdown-menu > .dropdown-items {
right: 100%;
margin: 0 0.5rem 0 0;
}
}
.fm-dropdown.dropdown-absolute,
.fm-dropdown.dropdown-fixed {
width: 100%;
}
@media (min-width:768px) {
.fm-dropdown.dropdown-absolute-m:not(.dropdown-top) > .dropdown-menu {
order: -1;
}
.fm-dropdown.dropdown-absolute-m:not(.dropdown-top) > .dropdown-menu > .dropdown-items {
margin-top: 3.5rem;
}
.fm-dropdown.dropdown-absolute-m:not(.dropdown-top) > .fm-small ~ .dropdown-menu > .dropdown-items {
margin-top: 2.5rem;
}
.fm-dropdown.dropdown-absolute-m:not(.dropdown-top) > .fm-large ~ .dropdown-menu > .dropdown-items {
margin-top: 4.5rem;
}
}
.fm.fm-ico-left input,
.fm.fm-ico-left select[multiple],
.fm.fm-ico-left textarea {
padding-left: 3.286em;
}
.fm.fm-ico-right input,
.fm.fm-ico-right select[multiple],
.fm.fm-ico-right textarea {
padding-right: 3.286em;
}
.fm-select.fm-ico-right input,
.fm-file.fm-ico-right input,
.fm-search.fm-ico-right input {
background: white;
}
.fm-select.fm-ico-right[data-error] input,
.fm-file.fm-ico-right[data-error] input,
.fm-search.fm-ico-right[data-error] input {
background: white;
}
.fm.fm-select.fm-ico-right .focus ~ input,
.fm.fm-select.fm-ico-right input.focus,
.fm.fm-file.fm-ico-right .focus ~ input,
.fm.fm-search.fm-ico-right input.focus {
background: white;
}
.fm > .ico {
margin-top: -2.1924615385rem;
font-size: 1.286em;
pointer-events: none;
color: #ebebeb;
fill: #ebebeb;
}
.fm.fm-ico-left > .ico {
margin-left: 0.7776049767em;
}
.fm.fm-ico-right > .ico {
margin-right: 0.7776049767em;
margin-left: auto;
}
.fm-small.fm > .ico {
margin-top: -1.5935384615rem;
}
.fm-large.fm > .ico {
margin-top: -2.8408461538rem;
}
.fm[data-error] .ico {
color: #d12626;
fill: #d12626;
}
.fm.fm-ico-left .focus ~ .ico,
.fm.fm-ico-right .focus ~ .ico {
color: #fa73a0;
fill: #fa73a0;
}
.fm-group > .grid {
width: auto;
padding-right: 1rem;
margin-right: -1rem;
margin-left: -1rem;
}
.fm-group > .grid > [class*=col-] {
padding-right: 0;
}
.fm-group .fm-label-nowrap.fm-label,
.fm-group .fm-label-wrap.fm-label {
height: 3rem;
padding-top: 0;
padding-bottom: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.fm-group .fm-label-nowrap.fm-label {
line-height: 3rem;
white-space: nowrap;
}
.fm-group .fm-label-small.fm-label-nowrap.fm-label {
height: 2rem;
line-height: 2rem;
}
.fm-group .fm-label-large.fm-label-nowrap.fm-label {
height: 4rem;
line-height: 4rem;
}
.fm-group .fm-label-wrap.fm-label {
line-height: 1.5rem;
}
.fm-group .fm-label-small.fm-label-wrap.fm-label {
height: 2rem;
line-height: 1rem;
}
.fm-group .fm-label-large.fm-label-wrap.fm-label {
height: 4rem;
line-height: 2rem;
}
.fm-group .fm {
margin-bottom: 1rem;
}
.modal {
padding: 2rem;
overflow: hidden;
background: #f7f7f7;
border-radius: 0;
}
.overlay-body > .modal {
max-width: 46.153846rem;
min-width: 24.615384rem;
}
.nav-header,
.nav-aside {
display: flex;
align-items: center;
width: 100%;
padding: 0.5rem 1rem;
background: #525252;
}
.nav-logo {
flex: 0 0 auto;
margin: 0 1rem;
}
.nav-logo img,
.nav-logo svg {
height: 2rem;
object-fit: contain;
fill: white;
}
.nav-open {
flex: 0 0 auto;
margin: 0 0 0 auto;
}
.nav-open.btn-text-light,
.nav-close.btn-text-light {
color: white;
}
.nav-menu {
position: fixed;
top: 0;
left: 0;
z-index: 4;
flex-direction: column;
width: 100%;
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: #525252;
}
.nav-menu.toggle-active {
display: flex;
}
.nav-close {
flex: 0 0 auto;
margin: 1rem 1rem 0 auto;
}
.nav-search {
flex: 0 0 auto;
margin: 2rem;
}
.nav-items,
.nav-sub-items {
display: flex;
flex: 0 0 auto;
flex-direction: column;
}
.nav-items {
margin: 1rem;
}
.nav-sub-items {
margin: 1rem;
}
.nav-items .btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right),
.nav-sub-items .btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) {
justify-content: flex-start;
}
.nav-items .btn.btn-ico-right,
.nav-sub-items .btn.btn-ico-right {
justify-content: space-between;
}
@media (min-width:768px) {
.nav-header,
.nav-aside {
position: -webkit-sticky;
position: sticky;
top: 0;
}
.nav-open,
.nav-close {
display: none;
}
.nav-header .nav-menu,
.nav-aside .nav-menu {
display: flex;
position: relative;
z-index: 0;
background: none;
}
.nav-header {
z-index: 4;
}
.nav-header .nav-items,
.nav-header .nav-sub-items {
flex-direction: row;
align-items: center;
}
.nav-header .nav-menu {
flex: 1 1 100%;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
overflow: visible;
}
.nav-header .nav-search {
flex: 0 0 auto;
order: 1;
width: 16rem;
margin: 0 1rem;
}
.nav-header .nav-items {
margin: 0 auto 0 0;
}
.nav-header .nav-sub-items {
order: 2;
margin: 0;
}
.nav-header .dropdown-menu {
margin-left: 0;
}
.nav-header .dropdown-items:not([class*=dropdown-static]) {
background: #525252;
}
.nav-aside {
z-index: 3;
flex-direction: column;
width: 18rem;
max-width: 20rem;
min-width: 18rem;
height: 100vh;
padding: 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
box-shadow: none;
}
.nav-aside .nav-logo {
margin: 3rem 2rem 1rem;
}
.nav-aside .nav-logo img,
.nav-aside .nav-logo svg {
width: 9rem;
height: 7rem;
}
.nav-aside .nav-menu {
flex: 0 0 auto;
height: auto;
}
}
.search-bar {
display: flex;
}
.search-bar > .fm:not(.fm-select) {
flex-basis: 100%;
}
.search-bar > .fm:not(.fm-select) input {
border-right-width: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.search-bar .btn {
flex-shrink: 0;
order: 2;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.search-bar > .fm-dropdown,
.search-bar > .fm-select {
order: 1;
width: auto;
}
.search-bar .fm-dropdown .fm input,
.search-bar .fm-select select,
.search-bar .fm-select input {
border-right: none;
border-radius: 0;
}
.search-bar .fm-dropdown ~ .fm input.focus,
.search-bar .fm-dropdown ~ .fm[data-error] input,
.search-bar .fm-select ~ .fm input.focus,
.search-bar .fm-select ~ .fm[data-error] input {
border-right-width: 1px;
}
.tab-indicators {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.tab-panes {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.tab-pane {
display: none;
}
.tab-pane-active.tab-pane {
display: block;
}
.va-top {
vertical-align: top !important;
}
.va-middle {
vertical-align: middle !important;
}
.va-baseline {
vertical-align: baseline !important;
}
.va-bottom {
vertical-align: bottom !important;
}
.va-text-top {
vertical-align: text-top !important;
}
.va-text-bottom {
vertical-align: text-bottom !important;
}
.bc-primary {
background-color: #fa73a0 !important;
}
.bc-secondary {
background-color: #dbdbdb !important;
}
.bc-danger {
background-color: #d12626 !important;
}
.bc-dark {
background-color: #525252 !important;
}
.bc-light {
background-color: white !important;
}
.bc-emphasis {
background-color: #fedfe9 !important;
}
.bc-main {
background-color: white !important;
}
.bc-muted {
background-color: #f7f7f7 !important;
}
.bc-inverse-emphasis {
background-color: #fedfe9 !important;
}
.bc-inverse-main {
background-color: #525252 !important;
}
.bc-inverse-muted {
background-color: #595959 !important;
}
.bc-none {
background-color: transparent !important;
}
.bi-none {
background-image: none !important;
}
.bp-c {
background-position: center !important;
}
.bp-rc {
background-position: right center !important;
}
.bp-lc {
background-position: left center !important;
}
.bp-ct {
background-position: center top !important;
}
.bp-cb {
background-position: center bottom !important;
}
.bp-lt {
background-position: left top !important;
}
.bp-lb {
background-position: left bottom !important;
}
.bp-rt {
background-position: right top !important;
}
.bp-rb {
background-position: right bottom !important;
}
.bs-cover {
background-size: cover !important;
}
.bs-contain {
background-size: contain !important;
}
.bs-auto {
background-size: auto !important;
}
.bs-100-auto {
background-size: 100% auto !important;
}
.bs-auto-100 {
background-size: auto 100% !important;
}
.bd-none {
border: none !important;
}
.bd-t-none {
border-top: none !important;
}
.bd-r-none {
border-right: none !important;
}
.bd-b-none {
border-bottom: none !important;
}
.bd-l-none {
border-left: none !important;
}
.c-primary {
color: #fa73a0 !important;
}
.c-secondary {
color: #8f8f8f !important;
}
.c-danger {
color: #d12626 !important;
}
.c-dark {
color: #525252 !important;
}
.c-light {
color: white !important;
}
.c-emphasis {
color: #525252 !important;
}
.c-main {
color: #6b6b6b !important;
}
.c-muted {
color: #d1d1d1 !important;
}
.c-inverse-emphasis {
color: white !important;
}
.c-inverse-main {
color: rgba(255, 255, 255, 0.9) !important;
}
.c-inverse-muted {
color: rgba(255, 255, 255, 0.618) !important;
}
.c-none {
color: transparent !important;
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-block {
display: block !important;
}
.d-table {
display: table !important;
}
.d-table-cell {
display: table-cell !important;
}
.d-table-row {
display: table-row !important;
}
.d-flex {
display: flex !important;
}
.d-inline-flex {
display: inline-flex !important;
}
.d-none {
display: none !important;
}
@media (min-width:768px) {
.d-inline-m {
display: inline !important;
}
.d-inline-block-m {
display: inline-block !important;
}
.d-block-m {
display: block !important;
}
.d-table-m {
display: table !important;
}
.d-table-cell-m {
display: table-cell !important;
}
.d-table-row-m {
display: table-row !important;
}
.d-flex-m {
display: flex !important;
}
.d-inline-flex-m {
display: inline-flex !important;
}
.d-none-m {
display: none !important;
}
}
@media (min-width:1200px) {
.d-inline-l {
display: inline !important;
}
.d-inline-block-l {
display: inline-block !important;
}
.d-block-l {
display: block !important;
}
.d-table-l {
display: table !important;
}
.d-table-cell-l {
display: table-cell !important;
}
.d-table-row-l {
display: table-row !important;
}
.d-flex-l {
display: flex !important;
}
.d-inline-flex-l {
display: inline-flex !important;
}
.d-none-l {
display: none !important;
}
}
@media print {
.d-none-print {
display: none !important;
}
}
.fw-wrap {
flex-wrap: wrap !important;
}
.fw-nowrap {
flex-wrap: nowrap !important;
}
.fw-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.fd-row {
flex-direction: row !important;
}
.fd-column {
flex-direction: column !important;
}
.fd-row-reverse {
flex-direction: row-reverse !important;
}
.fd-column-reverse {
flex-direction: column-reverse !important;
}
.jc-start {
justify-content: flex-start !important;
}
.jc-center {
justify-content: center !important;
}
.jc-end {
justify-content: flex-end !important;
}
.jc-between {
justify-content: space-between !important;
}
.jc-around {
justify-content: space-around !important;
}
.ac-start {
align-content: flex-start !important;
}
.ac-center {
align-content: center !important;
}
.ac-end {
align-content: flex-end !important;
}
.ac-between {
align-content: space-between !important;
}
.ac-around {
align-content: space-around !important;
}
.ac-stretch {
align-content: stretch !important;
}
.ai-start {
align-items: flex-start !important;
}
.ai-end {
align-items: flex-end !important;
}
.ai-center {
align-items: center !important;
}
.ai-baseline {
align-items: baseline !important;
}
.ai-stretch {
align-items: stretch !important;
}
.as-start {
align-self: flex-start !important;
}
.as-center {
align-self: center !important;
}
.as-baseline {
align-self: baseline !important;
}
.as-end {
align-self: flex-end !important;
}
.as-stretch {
align-self: stretch !important;
}
.flex-growable {
flex-grow: 1 !important;
}
.flex-ungrowable {
flex-grow: 0 !important;
}
.flex-shrinkable {
flex-shrink: 1 !important;
}
.flex-unshrinkable {
flex-shrink: 0 !important;
}
.flex-auto {
flex: 1 1 auto !important;
}
.od-0 {
order: 0 !important;
}
.od-1 {
order: 1 !important;
}
.on-1 {
order: -1 !important;
}
.od-2 {
order: 2 !important;
}
.on-2 {
order: -2 !important;
}
.od-3 {
order: 3 !important;
}
.on-3 {
order: -3 !important;
}
.od-4 {
order: 4 !important;
}
.on-4 {
order: -4 !important;
}
.od-5 {
order: 5 !important;
}
.on-5 {
order: -5 !important;
}
.od-6 {
order: 6 !important;
}
.on-6 {
order: -6 !important;
}
@media (min-width:768px) {
.fw-wrap-m {
flex-wrap: wrap !important;
}
.fw-nowrap-m {
flex-wrap: nowrap !important;
}
.fw-wrap-reverse-m {
flex-wrap: wrap-reverse !important;
}
.fd-row-m {
flex-direction: row !important;
}
.fd-column-m {
flex-direction: column !important;
}
.fd-row-reverse-m {
flex-direction: row-reverse !important;
}
.fd-column-reverse-m {
flex-direction: column-reverse !important;
}
.jc-start-m {
justify-content: flex-start !important;
}
.jc-center-m {
justify-content: center !important;
}
.jc-end-m {
justify-content: flex-end !important;
}
.jc-between-m {
justify-content: space-between !important;
}
.jc-around-m {
justify-content: space-around !important;
}
.ac-start-m {
align-content: flex-start !important;
}
.ac-center-m {
align-content: center !important;
}
.ac-end-m {
align-content: flex-end !important;
}
.ac-between-m {
align-content: space-between !important;
}
.ac-around-m {
align-content: space-around !important;
}
.ac-stretch-m {
align-content: stretch !important;
}
.ai-start-m {
align-items: flex-start !important;
}
.ai-end-m {
align-items: flex-end !important;
}
.ai-center-m {
align-items: center !important;
}
.ai-baseline-m {
align-items: baseline !important;
}
.ai-stretch-m {
align-items: stretch !important;
}
.as-start-m {
align-self: flex-start !important;
}
.as-center-m {
align-self: center !important;
}
.as-baseline-m {
align-self: baseline !important;
}
.as-end-m {
align-self: flex-end !important;
}
.as-stretch-m {
align-self: stretch !important;
}
.flex-growable-m {
flex-grow: 1 !important;
}
.flex-ungrowable-m {
flex-grow: 0 !important;
}
.flex-shrinkable-m {
flex-shrink: 1 !important;
}
.flex-unshrinkable-m {
flex-shrink: 0 !important;
}
.flex-auto-m {
flex: 1 1 auto !important;
}
.od-0-m {
order: 0 !important;
}
.od-1-m {
order: 1 !important;
}
.on-1-m {
order: -1 !important;
}
.od-2-m {
order: 2 !important;
}
.on-2-m {
order: -2 !important;
}
.od-3-m {
order: 3 !important;
}
.on-3-m {
order: -3 !important;
}
.od-4-m {
order: 4 !important;
}
.on-4-m {
order: -4 !important;
}
.od-5-m {
order: 5 !important;
}
.on-5-m {
order: -5 !important;
}
.od-6-m {
order: 6 !important;
}
.on-6-m {
order: -6 !important;
}
}
@media (min-width:1200px) {
.fw-wrap-l {
flex-wrap: wrap !important;
}
.fw-nowrap-l {
flex-wrap: nowrap !important;
}
.fw-wrap-reverse-l {
flex-wrap: wrap-reverse !important;
}
.fd-row-l {
flex-direction: row !important;
}
.fd-column-l {
flex-direction: column !important;
}
.fd-row-reverse-l {
flex-direction: row-reverse !important;
}
.fd-column-reverse-l {
flex-direction: column-reverse !important;
}
.jc-start-l {
justify-content: flex-start !important;
}
.jc-center-l {
justify-content: center !important;
}
.jc-end-l {
justify-content: flex-end !important;
}
.jc-between-l {
justify-content: space-between !important;
}
.jc-around-l {
justify-content: space-around !important;
}
.ac-start-l {
align-content: flex-start !important;
}
.ac-center-l {
align-content: center !important;
}
.ac-end-l {
align-content: flex-end !important;
}
.ac-between-l {
align-content: space-between !important;
}
.ac-around-l {
align-content: space-around !important;
}
.ac-stretch-l {
align-content: stretch !important;
}
.ai-start-l {
align-items: flex-start !important;
}
.ai-end-l {
align-items: flex-end !important;
}
.ai-center-l {
align-items: center !important;
}
.ai-baseline-l {
align-items: baseline !important;
}
.ai-stretch-l {
align-items: stretch !important;
}
.as-start-l {
align-self: flex-start !important;
}
.as-center-l {
align-self: center !important;
}
.as-baseline-l {
align-self: baseline !important;
}
.as-end-l {
align-self: flex-end !important;
}
.as-stretch-l {
align-self: stretch !important;
}
.flex-growable-l {
flex-grow: 1 !important;
}
.flex-ungrowable-l {
flex-grow: 0 !important;
}
.flex-shrinkable-l {
flex-shrink: 1 !important;
}
.flex-unshrinkable-l {
flex-shrink: 0 !important;
}
.flex-auto-l {
flex: 1 1 auto !important;
}
.od-0-l {
order: 0 !important;
}
.od-1-l {
order: 1 !important;
}
.on-1-l {
order: -1 !important;
}
.od-2-l {
order: 2 !important;
}
.on-2-l {
order: -2 !important;
}
.od-3-l {
order: 3 !important;
}
.on-3-l {
order: -3 !important;
}
.od-4-l {
order: 4 !important;
}
.on-4-l {
order: -4 !important;
}
.od-5-l {
order: 5 !important;
}
.on-5-l {
order: -5 !important;
}
.od-6-l {
order: 6 !important;
}
.on-6-l {
order: -6 !important;
}
}
.clear::after {
display: block;
clear: both;
content: "";
}
.f-left {
float: left !important;
}
.f-right {
float: right !important;
}
.f-none {
float: none !important;
}
@media (min-width:768px) {
.f-left-m {
float: left !important;
}
.f-right-m {
float: right !important;
}
.f-none-m {
float: none !important;
}
}
@media (min-width:1200px) {
.f-left-l {
float: left !important;
}
.f-right-l {
float: right !important;
}
.f-none-l {
float: none !important;
}
}
.o-emphasis {
opacity: 1 !important;
}
.o-main {
opacity: 0.9 !important;
}
.o-muted {
opacity: 0.618 !important;
}
.o-more-muted {
opacity: 0.382 !important;
}
.o-most-muted {
opacity: 0.1 !important;
}
.o-transparent {
opacity: 0 !important;
}
.of-hidden {
overflow: hidden !important;
}
.of-visible {
overflow: visible !important;
}
.of-overlay {
overflow: overlay !important;
}
.of-auto {
overflow: auto !important;
-webkit-overflow-scrolling: touch !important;
}
.of-scroll {
overflow: scroll !important;
-webkit-overflow-scrolling: touch !important;
}
.sta {
position: static !important;
}
.rel {
position: relative !important;
}
.sti,
.sti-t,
.sti-l,
.sti-b,
.sti-r {
position: -webkit-sticky !important;
position: sticky !important;
}
.fix,
.fix-t,
.fix-b,
.fix-l,
.fix-r {
position: fixed !important;
}
.abs,
.abs-t,
.abs-b,
.abs-l,
.abs-r {
position: absolute !important;
}
.fix-t,
.abs-t,
.sti-t {
top: 0 !important;
}
.fix-b,
.sti-b,
.abs-b {
bottom: 0 !important;
}
.fix-l,
.abs-l,
.sti-l {
left: 0 !important;
}
.fix-r,
.sti-r,
.abs-r {
right: 0 !important;
}
.ml-auto,
.mx-auto,
.m-auto {
margin-left: auto !important;
}
.mr-auto,
.mx-auto,
.m-auto {
margin-right: auto !important;
}
.mt-auto,
.my-auto,
.m-auto {
margin-top: auto !important;
}
.mb-auto,
.my-auto,
.m-auto {
margin-bottom: auto !important;
}
.ml-none,
.mx-none,
.m-none {
margin-left: 0 !important;
}
.mr-none,
.mx-none,
.m-none {
margin-right: 0 !important;
}
.mt-none,
.my-none,
.m-none {
margin-top: 0 !important;
}
.mb-none,
.my-none,
.m-none {
margin-bottom: 0 !important;
}
.ml-tiny,
.mx-tiny,
.m-tiny {
margin-left: 0.5rem !important;
}
.mr-tiny,
.mx-tiny,
.m-tiny {
margin-right: 0.5rem !important;
}
.mt-tiny,
.my-tiny,
.m-tiny {
margin-top: 0.5rem !important;
}
.mb-tiny,
.my-tiny,
.m-tiny {
margin-bottom: 0.5rem !important;
}
.ml-small,
.mx-small,
.m-small {
margin-left: 1rem !important;
}
.mr-small,
.mx-small,
.m-small {
margin-right: 1rem !important;
}
.mt-small,
.my-small,
.m-small {
margin-top: 1rem !important;
}
.mb-small,
.my-small,
.m-small {
margin-bottom: 1rem !important;
}
.ml-medium,
.mx-medium,
.m-medium {
margin-left: 2rem !important;
}
.mr-medium,
.mx-medium,
.m-medium {
margin-right: 2rem !important;
}
.mt-medium,
.my-medium,
.m-medium {
margin-top: 2rem !important;
}
.mb-medium,
.my-medium,
.m-medium {
margin-bottom: 2rem !important;
}
.ml-large,
.mx-large,
.m-large {
margin-left: 4rem !important;
}
.mr-large,
.mx-large,
.m-large {
margin-right: 4rem !important;
}
.mt-large,
.my-large,
.m-large {
margin-top: 4rem !important;
}
.mb-large,
.my-large,
.m-large {
margin-bottom: 4rem !important;
}
.pl-none,
.px-none,
.p-none {
padding-left: 0 !important;
}
.pr-none,
.px-none,
.p-none {
padding-right: 0 !important;
}
.pt-none,
.py-none,
.p-none {
padding-top: 0 !important;
}
.pb-none,
.py-none,
.p-none {
padding-bottom: 0 !important;
}
.pl-tiny,
.px-tiny,
.p-tiny {
padding-left: 0.5rem !important;
}
.pr-tiny,
.px-tiny,
.p-tiny {
padding-right: 0.5rem !important;
}
.pt-tiny,
.py-tiny,
.p-tiny {
padding-top: 0.5rem !important;
}
.pb-tiny,
.py-tiny,
.p-tiny {
padding-bottom: 0.5rem !important;
}
.pl-small,
.px-small,
.p-small {
padding-left: 1rem !important;
}
.pr-small,
.px-small,
.p-small {
padding-right: 1rem !important;
}
.pt-small,
.py-small,
.p-small {
padding-top: 1rem !important;
}
.pb-small,
.py-small,
.p-small {
padding-bottom: 1rem !important;
}
.pl-medium,
.px-medium,
.p-medium {
padding-left: 2rem !important;
}
.pr-medium,
.px-medium,
.p-medium {
padding-right: 2rem !important;
}
.pt-medium,
.py-medium,
.p-medium {
padding-top: 2rem !important;
}
.pb-medium,
.py-medium,
.p-medium {
padding-bottom: 2rem !important;
}
.pl-large,
.px-large,
.p-large {
padding-left: 4rem !important;
}
.pr-large,
.px-large,
.p-large {
padding-right: 4rem !important;
}
.pt-large,
.py-large,
.p-large {
padding-top: 4rem !important;
}
.pb-large,
.py-large,
.p-large {
padding-bottom: 4rem !important;
}
@media (min-width:768px) {
.ml-auto-m,
.mx-auto-m,
.m-auto-m {
margin-left: auto !important;
}
.mr-auto-m,
.mx-auto-m,
.m-auto-m {
margin-right: auto !important;
}
.mt-auto-m,
.my-auto-m,
.m-auto-m {
margin-top: auto !important;
}
.mb-auto-m,
.my-auto-m,
.m-auto-m {
margin-bottom: auto !important;
}
.ml-none-m,
.mx-none-m,
.m-none-m {
margin-left: 0 !important;
}
.mr-none-m,
.mx-none-m,
.m-none-m {
margin-right: 0 !important;
}
.mt-none-m,
.my-none-m,
.m-none-m {
margin-top: 0 !important;
}
.mb-none-m,
.my-none-m,
.m-none-m {
margin-bottom: 0 !important;
}
.ml-tiny-m,
.mx-tiny-m,
.m-tiny-m {
margin-left: 0.5rem !important;
}
.mr-tiny-m,
.mx-tiny-m,
.m-tiny-m {
margin-right: 0.5rem !important;
}
.mt-tiny-m,
.my-tiny-m,
.m-tiny-m {
margin-top: 0.5rem !important;
}
.mb-tiny-m,
.my-tiny-m,
.m-tiny-m {
margin-bottom: 0.5rem !important;
}
.ml-small-m,
.mx-small-m,
.m-small-m {
margin-left: 1rem !important;
}
.mr-small-m,
.mx-small-m,
.m-small-m {
margin-right: 1rem !important;
}
.mt-small-m,
.my-small-m,
.m-small-m {
margin-top: 1rem !important;
}
.mb-small-m,
.my-small-m,
.m-small-m {
margin-bottom: 1rem !important;
}
.ml-medium-m,
.mx-medium-m,
.m-medium-m {
margin-left: 2rem !important;
}
.mr-medium-m,
.mx-medium-m,
.m-medium-m {
margin-right: 2rem !important;
}
.mt-medium-m,
.my-medium-m,
.m-medium-m {
margin-top: 2rem !important;
}
.mb-medium-m,
.my-medium-m,
.m-medium-m {
margin-bottom: 2rem !important;
}
.ml-large-m,
.mx-large-m,
.m-large-m {
margin-left: 4rem !important;
}
.mr-large-m,
.mx-large-m,
.m-large-m {
margin-right: 4rem !important;
}
.mt-large-m,
.my-large-m,
.m-large-m {
margin-top: 4rem !important;
}
.mb-large-m,
.my-large-m,
.m-large-m {
margin-bottom: 4rem !important;
}
.pl-none-m,
.px-none-m,
.p-none-m {
padding-left: 0 !important;
}
.pr-none-m,
.px-none-m,
.p-none-m {
padding-right: 0 !important;
}
.pt-none-m,
.py-none-m,
.p-none-m {
padding-top: 0 !important;
}
.pb-none-m,
.py-none-m,
.p-none-m {
padding-bottom: 0 !important;
}
.pl-tiny-m,
.px-tiny-m,
.p-tiny-m {
padding-left: 0.5rem !important;
}
.pr-tiny-m,
.px-tiny-m,
.p-tiny-m {
padding-right: 0.5rem !important;
}
.pt-tiny-m,
.py-tiny-m,
.p-tiny-m {
padding-top: 0.5rem !important;
}
.pb-tiny-m,
.py-tiny-m,
.p-tiny-m {
padding-bottom: 0.5rem !important;
}
.pl-small-m,
.px-small-m,
.p-small-m {
padding-left: 1rem !important;
}
.pr-small-m,
.px-small-m,
.p-small-m {
padding-right: 1rem !important;
}
.pt-small-m,
.py-small-m,
.p-small-m {
padding-top: 1rem !important;
}
.pb-small-m,
.py-small-m,
.p-small-m {
padding-bottom: 1rem !important;
}
.pl-medium-m,
.px-medium-m,
.p-medium-m {
padding-left: 2rem !important;
}
.pr-medium-m,
.px-medium-m,
.p-medium-m {
padding-right: 2rem !important;
}
.pt-medium-m,
.py-medium-m,
.p-medium-m {
padding-top: 2rem !important;
}
.pb-medium-m,
.py-medium-m,
.p-medium-m {
padding-bottom: 2rem !important;
}
.pl-large-m,
.px-large-m,
.p-large-m {
padding-left: 4rem !important;
}
.pr-large-m,
.px-large-m,
.p-large-m {
padding-right: 4rem !important;
}
.pt-large-m,
.py-large-m,
.p-large-m {
padding-top: 4rem !important;
}
.pb-large-m,
.py-large-m,
.p-large-m {
padding-bottom: 4rem !important;
}
}
@media (min-width:1200px) {
.ml-auto-l,
.mx-auto-l,
.m-auto-l {
margin-left: auto !important;
}
.mr-auto-l,
.mx-auto-l,
.m-auto-l {
margin-right: auto !important;
}
.mt-auto-l,
.my-auto-l,
.m-auto-l {
margin-top: auto !important;
}
.mb-auto-l,
.my-auto-l,
.m-auto-l {
margin-bottom: auto !important;
}
.ml-none-l,
.mx-none-l,
.m-none-l {
margin-left: 0 !important;
}
.mr-none-l,
.mx-none-l,
.m-none-l {
margin-right: 0 !important;
}
.mt-none-l,
.my-none-l,
.m-none-l {
margin-top: 0 !important;
}
.mb-none-l,
.my-none-l,
.m-none-l {
margin-bottom: 0 !important;
}
.ml-tiny-l,
.mx-tiny-l,
.m-tiny-l {
margin-left: 0.5rem !important;
}
.mr-tiny-l,
.mx-tiny-l,
.m-tiny-l {
margin-right: 0.5rem !important;
}
.mt-tiny-l,
.my-tiny-l,
.m-tiny-l {
margin-top: 0.5rem !important;
}
.mb-tiny-l,
.my-tiny-l,
.m-tiny-l {
margin-bottom: 0.5rem !important;
}
.ml-small-l,
.mx-small-l,
.m-small-l {
margin-left: 1rem !important;
}
.mr-small-l,
.mx-small-l,
.m-small-l {
margin-right: 1rem !important;
}
.mt-small-l,
.my-small-l,
.m-small-l {
margin-top: 1rem !important;
}
.mb-small-l,
.my-small-l,
.m-small-l {
margin-bottom: 1rem !important;
}
.ml-medium-l,
.mx-medium-l,
.m-medium-l {
margin-left: 2rem !important;
}
.mr-medium-l,
.mx-medium-l,
.m-medium-l {
margin-right: 2rem !important;
}
.mt-medium-l,
.my-medium-l,
.m-medium-l {
margin-top: 2rem !important;
}
.mb-medium-l,
.my-medium-l,
.m-medium-l {
margin-bottom: 2rem !important;
}
.ml-large-l,
.mx-large-l,
.m-large-l {
margin-left: 4rem !important;
}
.mr-large-l,
.mx-large-l,
.m-large-l {
margin-right: 4rem !important;
}
.mt-large-l,
.my-large-l,
.m-large-l {
margin-top: 4rem !important;
}
.mb-large-l,
.my-large-l,
.m-large-l {
margin-bottom: 4rem !important;
}
.pl-none-l,
.px-none-l,
.p-none-l {
padding-left: 0 !important;
}
.pr-none-l,
.px-none-l,
.p-none-l {
padding-right: 0 !important;
}
.pt-none-l,
.py-none-l,
.p-none-l {
padding-top: 0 !important;
}
.pb-none-l,
.py-none-l,
.p-none-l {
padding-bottom: 0 !important;
}
.pl-tiny-l,
.px-tiny-l,
.p-tiny-l {
padding-left: 0.5rem !important;
}
.pr-tiny-l,
.px-tiny-l,
.p-tiny-l {
padding-right: 0.5rem !important;
}
.pt-tiny-l,
.py-tiny-l,
.p-tiny-l {
padding-top: 0.5rem !important;
}
.pb-tiny-l,
.py-tiny-l,
.p-tiny-l {
padding-bottom: 0.5rem !important;
}
.pl-small-l,
.px-small-l,
.p-small-l {
padding-left: 1rem !important;
}
.pr-small-l,
.px-small-l,
.p-small-l {
padding-right: 1rem !important;
}
.pt-small-l,
.py-small-l,
.p-small-l {
padding-top: 1rem !important;
}
.pb-small-l,
.py-small-l,
.p-small-l {
padding-bottom: 1rem !important;
}
.pl-medium-l,
.px-medium-l,
.p-medium-l {
padding-left: 2rem !important;
}
.pr-medium-l,
.px-medium-l,
.p-medium-l {
padding-right: 2rem !important;
}
.pt-medium-l,
.py-medium-l,
.p-medium-l {
padding-top: 2rem !important;
}
.pb-medium-l,
.py-medium-l,
.p-medium-l {
padding-bottom: 2rem !important;
}
.pl-large-l,
.px-large-l,
.p-large-l {
padding-left: 4rem !important;
}
.pr-large-l,
.px-large-l,
.p-large-l {
padding-right: 4rem !important;
}
.pt-large-l,
.py-large-l,
.p-large-l {
padding-top: 4rem !important;
}
.pb-large-l,
.py-large-l,
.p-large-l {
padding-bottom: 4rem !important;
}
}
.sd-low {
box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08) !important;
}
.sd-normal {
box-shadow: 0 0.56rem 1.68rem rgba(0, 0, 0, 0.112) !important;
}
.sd-high {
box-shadow: 0 0.784rem 2.352rem rgba(0, 0, 0, 0.1568) !important;
}
.sd-none {
box-shadow: none !important;
}
.rounded-r {
border-top-right-radius: 2px !important;
border-bottom-right-radius: 2px !important;
}
.rounded-l {
border-top-left-radius: 2px !important;
border-bottom-left-radius: 2px !important;
}
.rounded-t {
border-top-right-radius: 2px !important;
border-top-left-radius: 2px !important;
}
.rounded-b {
border-bottom-right-radius: 2px !important;
border-bottom-left-radius: 2px !important;
}
.rounded {
border-radius: 2px !important;
}
.circle-r {
border-top-right-radius: 9999px !important;
border-bottom-right-radius: 9999px !important;
}
.circle-l {
border-top-left-radius: 9999px !important;
border-bottom-left-radius: 9999px !important;
}
.circle-t {
border-top-right-radius: 9999px !important;
border-top-left-radius: 9999px !important;
}
.circle-b {
border-bottom-right-radius: 9999px !important;
border-bottom-left-radius: 9999px !important;
}
.circle {
border-radius: 9999px !important;
}
.sharp-r {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
.sharp-l {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.sharp-t {
border-top-right-radius: 0 !important;
border-top-left-radius: 0 !important;
}
.sharp-b {
border-bottom-right-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.sharp {
border-radius: 0 !important;
}
.max-w-100 {
max-width: 100% !important;
}
.min-w-100 {
min-width: 100% !important;
}
.min-w-100vw {
min-width: 100vw !important;
}
.max-h-100 {
max-height: 100% !important;
}
.min-h-100 {
min-height: 100% !important;
}
.min-h-100vh {
min-height: 100vh !important;
}
.w-100 {
width: 100% !important;
}
.w-75 {
width: 75% !important;
}
.w-66 {
width: 66.6667% !important;
}
.w-50 {
width: 50% !important;
}
.w-33 {
width: 33.3333% !important;
}
.w-25 {
width: 25% !important;
}
.w-auto {
width: auto !important;
}
.h-100 {
height: 100% !important;
}
.h-75 {
height: 75% !important;
}
.h-66 {
height: 66.6667% !important;
}
.h-50 {
height: 50% !important;
}
.h-33 {
height: 33.3333% !important;
}
.h-25 {
height: 25% !important;
}
.h-auto {
height: auto !important;
}
@media (min-width:768px) {
.w-100-m {
width: 100% !important;
}
.w-75-m {
width: 75% !important;
}
.w-66-m {
width: 66.6667% !important;
}
.w-50-m {
width: 50% !important;
}
.w-33-m {
width: 33.3333% !important;
}
.w-25-m {
width: 25% !important;
}
.w-auto-m {
width: auto !important;
}
.h-100-m {
height: 100% !important;
}
.h-75-m {
height: 75% !important;
}
.h-66-m {
height: 66.6667% !important;
}
.h-50-m {
height: 50% !important;
}
.h-33-m {
height: 33.3333% !important;
}
.h-25-m {
height: 25% !important;
}
.h-auto-m {
height: auto !important;
}
}
@media (min-width:1200px) {
.w-100-l {
width: 100% !important;
}
.w-75-l {
width: 75% !important;
}
.w-66-l {
width: 66.6667% !important;
}
.w-50-l {
width: 50% !important;
}
.w-33-l {
width: 33.3333% !important;
}
.w-25-l {
width: 25% !important;
}
.w-auto-l {
width: auto !important;
}
.h-100-l {
height: 100% !important;
}
.h-75-l {
height: 75% !important;
}
.h-66-l {
height: 66.6667% !important;
}
.h-50-l {
height: 50% !important;
}
.h-33-l {
height: 33.3333% !important;
}
.h-25-l {
height: 25% !important;
}
.h-auto-l {
height: auto !important;
}
}
.fs-italic {
font-style: italic !important;
}
.fs-normal {
font-style: normal !important;
}
.fw-lightest {
font-weight: 100 !important;
}
.fw-lighter {
font-weight: 200 !important;
}
.fw-light {
font-weight: 300 !important;
}
.fw-regular {
font-weight: 400 !important;
}
.fw-medium {
font-weight: 500 !important;
}
.fw-semibold {
font-weight: 600 !important;
}
.fw-bold {
font-weight: 700 !important;
}
.fw-bolder {
font-weight: 800 !important;
}
.fw-boldest {
font-weight: 900 !important;
}
.tt-upper {
letter-spacing: 0.1em !important;
text-transform: uppercase !important;
}
.tt-lower {
text-transform: lowercase !important;
}
.tt-cap {
text-transform: capitalize !important;
}
.wb-all {
word-break: break-all !important;
}
.ws-normal {
white-space: normal !important;
}
.ws-nowrap {
white-space: nowrap !important;
}
.text-ellipsis {
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis;
}
.td-stroke {
text-decoration: line-through !important;
}
.td-underline {
text-decoration: underline !important;
}
.td-none {
text-decoration: none !important;
}
.ta-left {
text-align: left !important;
}
.ta-right {
text-align: right !important;
}
.ta-center {
text-align: center !important;
}
.ta-justify {
text-align: justify !important;
}
@media (min-width:768px) {
.ta-left-m {
text-align: left !important;
}
.ta-right-m {
text-align: right !important;
}
.ta-center-m {
text-align: center !important;
}
.ta-justify-m {
text-align: justify !important;
}
}
@media (min-width:1200px) {
.ta-left-l {
text-align: left !important;
}
.ta-right-l {
text-align: right !important;
}
.ta-center-l {
text-align: center !important;
}
.ta-justify-l {
text-align: justify !important;
}
}
.visible {
visibility: visible !important;
}
.invisible {
visibility: hidden !important;
}
@media print {
.invisible-print {
visibility: hidden !important;
}
}
.zi-low {
z-index: -1 !important;
}
.zi-normal {
z-index: 0 !important;
}
.zi-high {
z-index: 1 !important;
}
.zi-higher {
z-index: 2 !important;
}
.zi-much-higher {
z-index: 3 !important;
}
.zi-highest {
z-index: 4 !important;
}
/*# sourceMappingURL=luda-default.css.map */ | release/site/0.1.x/.dist/css/luda-default.css | *,
::before,
::after {
box-sizing: border-box;
background-repeat: no-repeat;
}
::before,
::after {
vertical-align: inherit;
text-decoration: inherit;
}
a:active,
label:active {
background-color: transparent;
}
html {
font-size: 13px;
word-break: break-word;
cursor: default;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
text-rendering: optimizeLegibility;
text-underline-position: under;
background: #595959;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
@supports (-webkit-overflow-scrolling: touch) {
html {
cursor: pointer;
}
}
@-moz-document url-prefix() {
html {
color: transparent;
}
}
body {
min-height: 100vh;
margin: 0;
font-size: 1.0769230769rem;
line-height: 1.8571428571;
color: #6b6b6b;
background: white;
}
h1 {
margin: 0;
font-size: 2.2307692308rem;
}
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure {
margin: 0;
}
hr {
box-sizing: content-box;
flex-shrink: 0;
width: 100%;
height: 0;
margin: 0;
border: none;
overflow: visible;
}
main {
display: block;
}
ul,
ol,
dl,
dd {
margin: 0;
}
ul,
ol {
padding: 0;
}
nav ol,
nav ul {
list-style: none;
}
pre {
margin: 0;
font-size: 1em;
word-break: normal;
overflow: auto;
-webkit-overflow-scrolling: touch;
font-family: monospace, monospace;
}
a {
cursor: pointer;
background-color: transparent;
}
abbr[title] {
cursor: help;
text-decoration: underline dotted;
}
b,
strong {
font-weight: 700;
}
code,
kbd,
samp {
font-size: 1em;
font-family: monospace, monospace;
}
small {
font-size: 83.3333333333%;
}
::-moz-selection {
color: rgba(255, 255, 255, 0.9);
text-shadow: none;
background-color: #525252;
}
::selection {
color: rgba(255, 255, 255, 0.9);
text-shadow: none;
background-color: #525252;
}
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: top;
}
audio,
video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
img {
border-style: none;
}
iframe {
border: none;
}
svg {
fill: currentColor;
}
svg:not(:root) {
overflow: hidden;
}
table {
border-collapse: collapse;
}
th,
td {
padding: 0;
}
button,
input,
optgroup,
select,
textarea {
margin: 0;
}
button,
input,
select,
textarea {
font-size: inherit;
line-height: inherit;
color: inherit;
font-family: inherit;
border-radius: 0;
}
button,
input,
select,
textarea,
optgroup,
option {
word-break: normal;
}
button {
overflow: visible;
text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
-webkit-appearance: button;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
outline: 1px dotted ButtonText;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
fieldset {
padding: 0;
margin: 0;
border: none;
}
input {
overflow: visible;
}
legend {
box-sizing: border-box;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
color: inherit;
}
progress {
display: inline-block;
vertical-align: top;
}
select {
text-transform: none;
}
textarea {
overflow: auto;
-webkit-overflow-scrolling: touch;
resize: vertical;
}
[type=checkbox],
[type=radio] {
box-sizing: border-box;
padding: 0;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
height: auto;
}
[type=search] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
details {
display: block;
}
summary {
display: list-item;
}
canvas {
display: inline-block;
}
template {
display: none;
}
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
-ms-touch-action: manipulation;
touch-action: manipulation;
}
[hidden] {
display: none;
}
[aria-busy=true] {
cursor: progress;
}
[aria-controls] {
cursor: pointer;
}
[aria-disabled],
[disabled] {
cursor: not-allowed;
}
[aria-hidden=false][hidden]:not(:focus) {
display: inherit;
position: absolute;
clip: rect(0, 0, 0, 0);
}
[disabled] {
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
opacity: 0.618;
}
[disabled] [disabled] {
opacity: 1;
}
html:not([data-focus-disabled]) :focus {
outline: none;
}
html:not([data-focus-disabled]) .focus {
outline: dashed 2px #b8b8b8;
outline-offset: -2px;
}
[readonly] {
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
[data-readonly]:not([data-readonly=false]) {
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
opacity: 0.618;
}
[data-readonly] [data-readonly] {
opacity: 1;
}
[data-toggle-target]:not(.toggle-active) {
display: none;
}
.badge,
.badge-baseline {
display: inline-flex;
position: relative;
left: 0.4em;
align-items: center;
min-width: 1.2em;
height: 1.2em;
padding: 0.4em;
font-size: 0.8333333333em;
white-space: nowrap;
color: white;
background: #fa73a0;
border-radius: 9999px;
}
.badge {
top: -0.4em;
}
.baseline {
position: relative;
}
.baseline::after {
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 4;
pointer-events: none;
content: "";
background: linear-gradient(to bottom, #0ff 0, rgba(255, 255, 255, 0) 1px) left top/100% 1rem repeat-y;
}
.btn,
.btn-check,
.btn-radio,
.btn-file {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: inline-flex;
vertical-align: top;
flex: 0 0 auto;
max-width: 100%;
min-width: 3rem;
height: 3rem;
font-size: 1.0769230769rem;
line-height: normal;
white-space: nowrap;
cursor: pointer;
-ms-touch-action: manipulation;
touch-action: manipulation;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-decoration: none;
background: none;
}
@supports (-ms-ime-align: auto) {
input.btn {
display: inline-block;
text-align: center;
}
}
.btn,
.btn-check label,
.btn-radio label,
.btn-file label {
align-items: center;
justify-content: center;
padding: 0 1em;
border: solid 1px;
overflow: hidden;
border-radius: 0;
}
.btn-check label,
.btn-radio label,
.btn-file label {
display: flex;
width: 100%;
height: inherit;
}
.btn > *,
.btn-check label > *,
.btn-radio label > *,
.btn-file label > * {
flex: 0 0 auto;
}
.btn-check input,
.btn-radio input,
.btn-file input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 0.001px;
min-width: 100%;
height: 100%;
margin-right: -100%;
overflow: hidden;
cursor: pointer;
opacity: 0;
}
.btn-check input[disabled],
.btn-radio input[disabled],
.btn-file input[disabled] {
opacity: 0;
}
.btn-file ::-webkit-file-upload-button {
display: none;
}
.btn:-moz-focusring {
outline: none;
}
.btn.focus,
.btn-check input.focus ~ label,
.btn-radio input.focus ~ label,
.btn-file input.focus ~ label {
outline: dashed 2px #b8b8b8;
outline-offset: -2px;
}
.btn-fluid.btn,
.btn-fluid.btn-check,
.btn-fluid.btn-radio,
.btn-fluid.btn-file {
display: flex;
flex: 1 1 auto;
width: 100%;
}
.btn-small.btn,
.btn-small.btn-check,
.btn-small.btn-radio,
.btn-small.btn-file {
min-width: 2rem;
height: 2rem;
font-size: 0.9230769231rem;
}
.btn-large.btn,
.btn-large.btn-check,
.btn-large.btn-radio,
.btn-large.btn-file {
min-width: 4rem;
height: 4rem;
font-size: 1.3076923077rem;
}
.btn.btn-primary,
.btn-check.btn-primary label,
.btn-radio.btn-primary label,
.btn-file.btn-primary label {
color: rgba(255, 255, 255, 0.9);
background: #fa73a0;
border-color: transparent;
}
.btn.btn-primary:hover,
.btn-file.btn-primary input:hover ~ label {
background: #fa6999;
}
.btn.btn-primary:active,
.btn.btn-primary.btn-active,
.btn-file.btn-primary input:active ~ label,
.btn-check.btn-primary input:checked ~ label,
.btn-radio.btn-primary input:checked ~ label,
.btn-check.btn-primary.btn-active input ~ label,
.btn-radio.btn-primary.btn-active input ~ label,
.btn-file.btn-primary.btn-active input ~ label {
background: #f95f93;
}
.btn.btn-secondary,
.btn-check.btn-secondary label,
.btn-radio.btn-secondary label,
.btn-file.btn-secondary label {
color: #6b6b6b;
background: #dbdbdb;
border-color: transparent;
}
.btn.btn-secondary:hover,
.btn-file.btn-secondary input:hover ~ label {
background: #d6d6d6;
}
.btn.btn-secondary:active,
.btn.btn-secondary.btn-active,
.btn-file.btn-secondary input:active ~ label,
.btn-check.btn-secondary input:checked ~ label,
.btn-radio.btn-secondary input:checked ~ label,
.btn-check.btn-secondary.btn-active input ~ label,
.btn-radio.btn-secondary.btn-active input ~ label,
.btn-file.btn-secondary.btn-active input ~ label {
background: #d1d1d1;
}
.btn.btn-danger,
.btn-check.btn-danger label,
.btn-radio.btn-danger label,
.btn-file.btn-danger label {
color: rgba(255, 255, 255, 0.9);
background: #d12626;
border-color: transparent;
}
.btn.btn-danger:hover,
.btn-file.btn-danger input:hover ~ label {
background: #c82424;
}
.btn.btn-danger:active,
.btn.btn-danger.btn-active,
.btn-file.btn-danger input:active ~ label,
.btn-check.btn-danger input:checked ~ label,
.btn-radio.btn-danger input:checked ~ label,
.btn-check.btn-danger.btn-active input ~ label,
.btn-radio.btn-danger.btn-active input ~ label,
.btn-file.btn-danger.btn-active input ~ label {
background: #c02323;
}
.btn.btn-dark,
.btn-check.btn-dark label,
.btn-radio.btn-dark label,
.btn-file.btn-dark label {
color: rgba(255, 255, 255, 0.9);
background: #525252;
border-color: transparent;
}
.btn.btn-dark:hover,
.btn-file.btn-dark input:hover ~ label {
background: #4d4d4d;
}
.btn.btn-dark:active,
.btn.btn-dark.btn-active,
.btn-file.btn-dark input:active ~ label,
.btn-check.btn-dark input:checked ~ label,
.btn-radio.btn-dark input:checked ~ label,
.btn-check.btn-dark.btn-active input ~ label,
.btn-radio.btn-dark.btn-active input ~ label,
.btn-file.btn-dark.btn-active input ~ label {
background: #474747;
}
.btn.btn-light,
.btn-check.btn-light label,
.btn-radio.btn-light label,
.btn-file.btn-light label {
color: #525252;
background: white;
border-color: transparent;
}
.btn.btn-light:hover,
.btn-file.btn-light input:hover ~ label {
background: #fafafa;
}
.btn.btn-light:active,
.btn.btn-light.btn-active,
.btn-file.btn-light input:active ~ label,
.btn-check.btn-light input:checked ~ label,
.btn-radio.btn-light input:checked ~ label,
.btn-check.btn-light.btn-active input ~ label,
.btn-radio.btn-light.btn-active input ~ label,
.btn-file.btn-light.btn-active input ~ label {
background: whitesmoke;
}
.btn.btn-hollow-primary,
.btn-check.btn-hollow-primary label,
.btn-radio.btn-hollow-primary label,
.btn-file.btn-hollow-primary label {
color: #fa73a0;
border-color: #fa73a0;
}
.btn.btn-hollow-primary:hover,
.btn-file.btn-hollow-primary input:hover ~ label {
color: rgba(255, 255, 255, 0.9);
background: #fa6999;
border-color: transparent;
}
.btn.btn-hollow-primary:active,
.btn.btn-hollow-primary.btn-active,
.btn-file.btn-hollow-primary input:active ~ label,
.btn-check.btn-hollow-primary input:checked ~ label,
.btn-radio.btn-hollow-primary input:checked ~ label,
.btn-check.btn-hollow-primary.btn-active input ~ label,
.btn-radio.btn-hollow-primary.btn-active input ~ label,
.btn-file.btn-hollow-primary.btn-active input ~ label {
color: rgba(255, 255, 255, 0.9);
background: #f95f93;
border-color: transparent;
}
.btn.btn-hollow-secondary,
.btn-check.btn-hollow-secondary label,
.btn-radio.btn-hollow-secondary label,
.btn-file.btn-hollow-secondary label {
color: #6b6b6b;
border-color: #dbdbdb;
}
.btn.btn-hollow-secondary:hover,
.btn-file.btn-hollow-secondary input:hover ~ label {
color: #6b6b6b;
background: #d6d6d6;
border-color: transparent;
}
.btn.btn-hollow-secondary:active,
.btn.btn-hollow-secondary.btn-active,
.btn-file.btn-hollow-secondary input:active ~ label,
.btn-check.btn-hollow-secondary input:checked ~ label,
.btn-radio.btn-hollow-secondary input:checked ~ label,
.btn-check.btn-hollow-secondary.btn-active input ~ label,
.btn-radio.btn-hollow-secondary.btn-active input ~ label,
.btn-file.btn-hollow-secondary.btn-active input ~ label {
color: #6b6b6b;
background: #d1d1d1;
border-color: transparent;
}
.btn.btn-hollow-danger,
.btn-check.btn-hollow-danger label,
.btn-radio.btn-hollow-danger label,
.btn-file.btn-hollow-danger label {
color: #d12626;
border-color: #d12626;
}
.btn.btn-hollow-danger:hover,
.btn-file.btn-hollow-danger input:hover ~ label {
color: rgba(255, 255, 255, 0.9);
background: #c82424;
border-color: transparent;
}
.btn.btn-hollow-danger:active,
.btn.btn-hollow-danger.btn-active,
.btn-file.btn-hollow-danger input:active ~ label,
.btn-check.btn-hollow-danger input:checked ~ label,
.btn-radio.btn-hollow-danger input:checked ~ label,
.btn-check.btn-hollow-danger.btn-active input ~ label,
.btn-radio.btn-hollow-danger.btn-active input ~ label,
.btn-file.btn-hollow-danger.btn-active input ~ label {
color: rgba(255, 255, 255, 0.9);
background: #c02323;
border-color: transparent;
}
.btn.btn-hollow-dark,
.btn-check.btn-hollow-dark label,
.btn-radio.btn-hollow-dark label,
.btn-file.btn-hollow-dark label {
color: #525252;
border-color: #525252;
}
.btn.btn-hollow-dark:hover,
.btn-file.btn-hollow-dark input:hover ~ label {
color: rgba(255, 255, 255, 0.9);
background: #4d4d4d;
border-color: transparent;
}
.btn.btn-hollow-dark:active,
.btn.btn-hollow-dark.btn-active,
.btn-file.btn-hollow-dark input:active ~ label,
.btn-check.btn-hollow-dark input:checked ~ label,
.btn-radio.btn-hollow-dark input:checked ~ label,
.btn-check.btn-hollow-dark.btn-active input ~ label,
.btn-radio.btn-hollow-dark.btn-active input ~ label,
.btn-file.btn-hollow-dark.btn-active input ~ label {
color: rgba(255, 255, 255, 0.9);
background: #474747;
border-color: transparent;
}
.btn.btn-hollow-light,
.btn-check.btn-hollow-light label,
.btn-radio.btn-hollow-light label,
.btn-file.btn-hollow-light label {
color: white;
border-color: white;
}
.btn.btn-hollow-light:hover,
.btn-file.btn-hollow-light input:hover ~ label {
color: #525252;
background: #fafafa;
border-color: transparent;
}
.btn.btn-hollow-light:active,
.btn.btn-hollow-light.btn-active,
.btn-file.btn-hollow-light input:active ~ label,
.btn-check.btn-hollow-light input:checked ~ label,
.btn-radio.btn-hollow-light input:checked ~ label,
.btn-check.btn-hollow-light.btn-active input ~ label,
.btn-radio.btn-hollow-light.btn-active input ~ label,
.btn-file.btn-hollow-light.btn-active input ~ label {
color: #525252;
background: whitesmoke;
border-color: transparent;
}
.btn.btn-text-primary,
.btn-check.btn-text-primary,
.btn-radio.btn-text-primary,
.btn-file.btn-text-primary {
color: #fa73a0;
border-color: transparent;
}
.btn.btn-text-primary:hover,
.btn-file.btn-text-primary input:hover ~ label {
color: #f8427f;
}
.btn.btn-text-primary:active,
.btn.btn-text-primary.btn-active,
.btn-file.btn-text-primary input:active ~ label,
.btn-check.btn-text-primary input:checked ~ label,
.btn-radio.btn-text-primary input:checked ~ label,
.btn-check.btn-text-primary.btn-active input ~ label,
.btn-radio.btn-text-primary.btn-active input ~ label,
.btn-file.btn-text-primary.btn-active input ~ label {
color: #f8427f;
}
.btn.btn-text-secondary,
.btn-check.btn-text-secondary,
.btn-radio.btn-text-secondary,
.btn-file.btn-text-secondary {
color: #8f8f8f;
border-color: transparent;
}
.btn.btn-text-secondary:hover,
.btn-file.btn-text-secondary input:hover ~ label {
color: #757575;
}
.btn.btn-text-secondary:active,
.btn.btn-text-secondary.btn-active,
.btn-file.btn-text-secondary input:active ~ label,
.btn-check.btn-text-secondary input:checked ~ label,
.btn-radio.btn-text-secondary input:checked ~ label,
.btn-check.btn-text-secondary.btn-active input ~ label,
.btn-radio.btn-text-secondary.btn-active input ~ label,
.btn-file.btn-text-secondary.btn-active input ~ label {
color: #757575;
}
.btn.btn-text-danger,
.btn-check.btn-text-danger,
.btn-radio.btn-text-danger,
.btn-file.btn-text-danger {
color: #d12626;
border-color: transparent;
}
.btn.btn-text-danger:hover,
.btn-file.btn-text-danger input:hover ~ label {
color: #bb2222;
}
.btn.btn-text-danger:active,
.btn.btn-text-danger.btn-active,
.btn-file.btn-text-danger input:active ~ label,
.btn-check.btn-text-danger input:checked ~ label,
.btn-radio.btn-text-danger input:checked ~ label,
.btn-check.btn-text-danger.btn-active input ~ label,
.btn-radio.btn-text-danger.btn-active input ~ label,
.btn-file.btn-text-danger.btn-active input ~ label {
color: #bb2222;
}
.btn.btn-text-dark,
.btn-check.btn-text-dark,
.btn-radio.btn-text-dark,
.btn-file.btn-text-dark {
color: #6b6b6b;
border-color: transparent;
}
.btn.btn-text-dark:hover,
.btn-file.btn-text-dark input:hover ~ label {
color: #525252;
}
.btn.btn-text-dark:active,
.btn.btn-text-dark.btn-active,
.btn-file.btn-text-dark input:active ~ label,
.btn-check.btn-text-dark input:checked ~ label,
.btn-radio.btn-text-dark input:checked ~ label,
.btn-check.btn-text-dark.btn-active input ~ label,
.btn-radio.btn-text-dark.btn-active input ~ label,
.btn-file.btn-text-dark.btn-active input ~ label {
color: #525252;
}
.btn.btn-text-light,
.btn-check.btn-text-light,
.btn-radio.btn-text-light,
.btn-file.btn-text-light {
color: rgba(255, 255, 255, 0.618);
border-color: transparent;
}
.btn.btn-text-light:hover,
.btn-file.btn-text-light input:hover ~ label {
color: white;
}
.btn.btn-text-light:active,
.btn.btn-text-light.btn-active,
.btn-file.btn-text-light input:active ~ label,
.btn-check.btn-text-light input:checked ~ label,
.btn-radio.btn-text-light input:checked ~ label,
.btn-check.btn-text-light.btn-active input ~ label,
.btn-radio.btn-text-light.btn-active input ~ label,
.btn-file.btn-text-light.btn-active input ~ label {
color: white;
}
.container {
max-width: 105.076923rem;
min-width: 0;
padding: 2rem 1rem;
margin-right: auto;
margin-left: auto;
}
.fm-label {
padding-top: 0.5993846154rem;
padding-bottom: 0.4006153846rem;
font-size: 1.0769230769rem;
line-height: 2rem;
display: block;
color: #525252;
}
.fm-label-required.fm-label::after {
content: " | Required";
color: #d12626;
}
.fm-label-small.fm-label {
padding-top: 0.6566153846rem;
padding-bottom: 0.3433846154rem;
font-size: 0.9230769231rem;
line-height: 2rem;
}
.fm-label-large.fm-label {
padding-top: 0.5135384615rem;
padding-bottom: 0.4864615385rem;
font-size: 1.3076923077rem;
line-height: 2rem;
}
.fm ::-webkit-input-placeholder {
color: #d1d1d1;
}
.fm ::-moz-placeholder {
color: #d1d1d1;
}
.fm :-ms-input-placeholder {
color: #d1d1d1;
}
.fm[data-error]::after,
.fm[data-hint]::after {
display: block;
width: 100%;
font-size: 0.9230769231rem;
line-height: 2rem;
}
.fm[data-hint]::after {
content: attr(data-hint);
color: #d1d1d1;
}
.fm[data-error]::after,
.fm[data-hint][data-error]::after {
content: attr(data-error);
color: #d12626;
}
.fm-large.fm[data-hint]::after,
.fm-large.fm[data-error]::after {
font-size: 1.0769230769rem;
line-height: 2rem;
}
.fm {
display: flex;
flex-wrap: wrap;
font-size: 1.0769230769rem;
color: #6b6b6b;
}
.fm > * {
flex: 0 0 auto;
}
.fm input,
.fm select,
.fm textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: block;
}
html:not([data-focus-disabled]) .fm .focus {
outline: none;
}
.fm ::-webkit-inner-spin-button,
.fm ::-webkit-outer-spin-button {
display: none;
}
.fm [type=number] {
-moz-appearance: textfield;
}
.fm [type=range]::-moz-focus-outer {
border: none;
}
.fm :invalid {
box-shadow: none;
}
.fm select::-ms-expand {
display: none;
}
.fm ::-webkit-search-cancel-button {
-webkit-appearance: none;
}
.fm ::-webkit-calendar-picker-indicator {
display: none;
}
.fm ::-webkit-contacts-auto-fill-button {
display: none !important;
}
.fm ::-webkit-credentials-auto-fill-button {
display: none !important;
}
.fm ::-webkit-caps-lock-indicator {
display: none !important;
}
.fm-inline.fm {
display: inline-flex;
vertical-align: top;
}
.fm-small.fm {
font-size: 0.9230769231rem;
}
.fm-large.fm {
font-size: 1.3076923077rem;
}
.fm-inline.fm:not(.fm-check):not(.fm-radio) {
width: 18rem;
}
.fm-small.fm-inline.fm:not(.fm-check):not(.fm-radio) {
width: 14rem;
}
.fm-large.fm-inline.fm:not(.fm-check):not(.fm-radio) {
width: 22rem;
}
.fm-text input,
.fm-search input,
.fm-select input,
.fm-file input,
.fm-text textarea,
.fm-select select {
width: 100%;
border: solid 1px #ebebeb;
border-radius: 0;
}
.fm-text input,
.fm-search input,
.fm-select input,
.fm-file input,
.fm-select select:not([multiple]) {
height: 3rem;
line-height: normal;
}
.fm-text input,
.fm-select select:not([multiple]) {
padding: 0 1em;
background: white;
}
.fm-search input,
.fm-select input,
.fm-file input {
padding: 0 3.286em 0 1em;
}
.fm-search input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23ebebeb' d='M983.1,908.7L702.1,625.9c114.2-150.9,102.6-366.6-35-504.2c-150.3-150.3-394.1-150.3-544.4,0c-150.3,150.3-150.3,394,0,544.4c137.5,137.5,353.1,149.2,504,35.2l281,282.8c9.2,9.2,24.2,9.2,33.5,0l41.9-41.9C992.3,932.9,992.3,917.9,983.1,908.7L983.1,908.7z M194.1,596.9c-110.4-110.4-110.4-289.4,0-399.7c110.4-110.4,289.4-110.4,399.8,0c110.4,110.4,110.4,289.3,0,399.7C483.4,707.3,304.5,707.3,194.1,596.9L194.1,596.9z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-select input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23ebebeb' d='M2.16,6.246 C2.385,6.246 2.61,6.308 2.81,6.442 L9.039,10.598 L15.076,6.401 C15.617,6.042 16.346,6.188 16.705,6.729 C17.065,7.268 16.92,8 16.38,8.359 L9.692,12.989 C9.298,13.253 8.784,13.254 8.388,12.991 L1.508,8.402 C0.966,8.042 0.82,7.31 1.179,6.77 C1.407,6.429 1.78,6.246 2.16,6.246 L2.16,6.246 Z'%3E%3C/path%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-file input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-100 0 600 500'%3E%3Cpath fill='%23ebebeb' d='M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41C492,219.566,479.904,207.566,465.064,207.566z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-text textarea,
.fm-select select[multiple] {
height: 9rem;
min-height: 9rem;
padding: 0.5993846154rem 1em 0.4006153846rem;
line-height: 2rem;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: white;
}
.fm-text[data-error] input,
.fm-search[data-error] input,
.fm-select[data-error] input,
.fm-file[data-error] input,
.fm-text[data-error] textarea,
.fm-select[data-error] select[multiple] {
border-color: #d12626;
}
.fm-search[data-error] input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23d12626' d='M983.1,908.7L702.1,625.9c114.2-150.9,102.6-366.6-35-504.2c-150.3-150.3-394.1-150.3-544.4,0c-150.3,150.3-150.3,394,0,544.4c137.5,137.5,353.1,149.2,504,35.2l281,282.8c9.2,9.2,24.2,9.2,33.5,0l41.9-41.9C992.3,932.9,992.3,917.9,983.1,908.7L983.1,908.7z M194.1,596.9c-110.4-110.4-110.4-289.4,0-399.7c110.4-110.4,289.4-110.4,399.8,0c110.4,110.4,110.4,289.3,0,399.7C483.4,707.3,304.5,707.3,194.1,596.9L194.1,596.9z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-select[data-error] input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23d12626' d='M2.16,6.246 C2.385,6.246 2.61,6.308 2.81,6.442 L9.039,10.598 L15.076,6.401 C15.617,6.042 16.346,6.188 16.705,6.729 C17.065,7.268 16.92,8 16.38,8.359 L9.692,12.989 C9.298,13.253 8.784,13.254 8.388,12.991 L1.508,8.402 C0.966,8.042 0.82,7.31 1.179,6.77 C1.407,6.429 1.78,6.246 2.16,6.246 L2.16,6.246 Z'%3E%3C/path%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-file[data-error] input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-100 0 600 500'%3E%3Cpath fill='%23d12626' d='M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41C492,219.566,479.904,207.566,465.064,207.566z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm.fm-text input.focus,
.fm.fm-search input.focus,
.fm.fm-select .focus ~ input,
.fm.fm-select input.focus,
.fm.fm-file .focus ~ input,
.fm.fm-text textarea.focus,
.fm.fm-select select[multiple].focus {
border-color: #fa73a0;
}
.fm.fm-search input.focus {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23fa73a0' d='M983.1,908.7L702.1,625.9c114.2-150.9,102.6-366.6-35-504.2c-150.3-150.3-394.1-150.3-544.4,0c-150.3,150.3-150.3,394,0,544.4c137.5,137.5,353.1,149.2,504,35.2l281,282.8c9.2,9.2,24.2,9.2,33.5,0l41.9-41.9C992.3,932.9,992.3,917.9,983.1,908.7L983.1,908.7z M194.1,596.9c-110.4-110.4-110.4-289.4,0-399.7c110.4-110.4,289.4-110.4,399.8,0c110.4,110.4,110.4,289.3,0,399.7C483.4,707.3,304.5,707.3,194.1,596.9L194.1,596.9z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm.fm-select .focus ~ input,
.fm.fm-select input.focus {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23fa73a0' d='M2.16,6.246 C2.385,6.246 2.61,6.308 2.81,6.442 L9.039,10.598 L15.076,6.401 C15.617,6.042 16.346,6.188 16.705,6.729 C17.065,7.268 16.92,8 16.38,8.359 L9.692,12.989 C9.298,13.253 8.784,13.254 8.388,12.991 L1.508,8.402 C0.966,8.042 0.82,7.31 1.179,6.77 C1.407,6.429 1.78,6.246 2.16,6.246 L2.16,6.246 Z'%3E%3C/path%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm.fm-file .focus ~ input {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-100 0 600 500'%3E%3Cpath fill='%23fa73a0' d='M465.064,207.566l0.028,0H284.436V27.25c0-14.84-12.016-27.248-26.856-27.248h-23.116c-14.836,0-26.904,12.408-26.904,27.248v180.316H26.908c-14.832,0-26.908,12-26.908,26.844v23.248c0,14.832,12.072,26.78,26.908,26.78h180.656v180.968c0,14.832,12.064,26.592,26.904,26.592h23.116c14.84,0,26.856-11.764,26.856-26.592V284.438h180.624c14.84,0,26.936-11.952,26.936-26.78V234.41C492,219.566,479.904,207.566,465.064,207.566z'/%3E%3C/svg%3E") right 1em center/1.286em no-repeat, white;
}
.fm-small.fm-text input,
.fm-small.fm-search input,
.fm-small.fm-select input,
.fm-small.fm-file input,
.fm-small.fm-select select:not([multiple]) {
height: 2rem;
}
.fm-small.fm-text textarea,
.fm-small.fm-select select[multiple] {
height: 6rem;
min-height: 6rem;
padding-top: 0.6566153846rem;
padding-bottom: 0.3433846154rem;
line-height: 2rem;
}
.fm-large.fm-text input,
.fm-large.fm-search input,
.fm-large.fm-select input,
.fm-large.fm-file input,
.fm-large.fm-select select:not([multiple]) {
height: 4rem;
}
.fm-large.fm-text textarea,
.fm-large.fm-select select[multiple] {
height: 12rem;
min-height: 12rem;
padding-top: 0.5135384615rem;
padding-bottom: 0.4864615385rem;
line-height: 2rem;
}
.fm-select select:not([multiple]),
.fm-file [type=file] {
width: 100%;
margin-bottom: -3rem;
}
.fm.fm-select select:not([multiple]),
.fm.fm-file [type=file] {
opacity: 0;
}
.fm-file [type=file] {
overflow: hidden;
}
.fm-small.fm-select select:not([multiple]),
.fm-small.fm-file [type=file] {
margin-bottom: -2rem;
}
.fm-large.fm-select select:not([multiple]),
.fm-large.fm-file [type=file] {
margin-bottom: -4rem;
}
.fm-select select[multiple] option {
display: flex;
align-items: center;
height: 2rem;
min-height: 0;
padding: 0;
}
.fm-small.fm-select select[multiple] option {
height: 2rem;
}
.fm-large.fm-select select[multiple] option {
height: 2rem;
}
.fm-select select[multiple] option.fm-select-multiple-placeholder:disabled {
overflow: hidden;
opacity: 1;
color: #d1d1d1;
text-overflow: ellipsis;
}
.fm-check label,
.fm-radio label {
flex: 0 1 auto;
padding-left: 1.8em;
line-height: 2rem;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.fm-check label:not(:last-child),
.fm-radio label:not(:last-child) {
margin-right: 1.2em;
}
.fm-check label input,
.fm-radio label input {
float: left;
margin: 0.2285714286em 0.4em 0 -1.8em;
}
.fm-check input,
.fm-radio input {
width: 1.4em;
height: 1.4em;
border: solid 1px #ebebeb;
background: white;
}
.fm-check input {
border-radius: 0;
transform: scale(0.9);
}
.fm-radio input {
border-radius: 100%;
}
.fm-check[data-error] input,
.fm-radio[data-error] input {
border-color: #d12626;
}
.fm.fm-check .focus,
.fm.fm-radio .focus {
border-color: #fa73a0;
}
.fm.fm-check input:checked,
.fm.fm-radio input:checked {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-150 -150 800 800'%3E%3Cpath fill='%236b6b6b' d='M487.75,78.125c-13-13-33-13-46,0l-272,272l-114-113c-13-13-33-13-46,0s-13,33,0,46l137,136c6,6,15,10,23,10s17-4,23-10l295-294C500.75,112.125,500.75,91.125,487.75,78.125z'/%3E%3C/svg%3E") center/contain no-repeat, white;
}
.fm-small.fm-check label,
.fm-small.fm-radio label {
line-height: 2rem;
}
.fm-large.fm-check label,
.fm-large.fm-radio label {
line-height: 2rem;
}
.fm-small.fm-check label input,
.fm-small.fm-radio label input {
margin-top: 0.3833333333em;
}
.fm-large.fm-check label input,
.fm-large.fm-radio label input {
margin-top: 0.0647058824em;
}
.fm-range input {
width: 100%;
height: 3rem;
background: none;
}
.fm-range ::-webkit-slider-runnable-track {
background: #ededed;
border-radius: 0;
height: 0.4em;
}
.fm-range ::-moz-range-track {
background: #ededed;
border-radius: 0;
height: 0.4em;
}
.fm-range ::-ms-track {
height: 0.4em;
color: transparent;
background: transparent;
}
.fm-range ::-ms-fill-lower {
background: #ededed;
border-radius: 0;
}
.fm-range ::-ms-fill-upper {
background: #ededed;
border-radius: 0;
}
.fm-range ::-webkit-slider-thumb {
width: 1.4em;
height: 1.4em;
border: solid 1px transparent;
background: #ededed;
border-radius: 100%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin-top: -0.5em;
}
@supports (-ms-ime-align: auto) {
.fm-range ::-webkit-slider-thumb {
margin-top: 0;
}
}
.fm-range ::-moz-range-thumb {
width: 1.4em;
height: 1.4em;
border: solid 1px transparent;
background: #ededed;
border-radius: 100%;
}
.fm-range ::-ms-thumb {
width: 1.4em;
height: 1.4em;
border: solid 1px transparent;
background: #ededed;
border-radius: 100%;
}
.fm-range ::-ms-tooltip {
display: none;
}
.fm-range[data-error] ::-webkit-slider-thumb {
border-color: #d12626;
}
.fm-range[data-error] ::-moz-range-thumb {
border-color: #d12626;
}
.fm-range[data-error] ::-ms-thumb {
border-color: #d12626;
}
.fm-range input.focus::-webkit-slider-thumb {
background: #fa73a0;
}
.fm-range input.focus::-moz-range-thumb {
background: #fa73a0;
}
.fm-range input.focus::-ms-thumb {
background: #fa73a0;
}
.fm-small.fm-range input {
height: 2rem;
}
.fm-large.fm-range input {
height: 4rem;
}
.grid,
.grid-edge {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
width: 100%;
}
[class*=col-] {
flex-grow: 0;
flex-shrink: 0;
}
.col-auto {
flex-basis: 0;
flex-grow: 1;
flex-shrink: 1;
max-width: 100%;
min-width: 1px;
}
.grid > [class*=col-] {
padding-right: 1rem;
padding-left: 1rem;
}
.grid [class*=col-] .grid {
width: auto;
margin-right: -1rem;
margin-left: -1rem;
}
.grid .grid-edge > [class*=col-] > .grid {
margin-right: 0;
margin-left: 0;
}
.col-1 {
flex-basis: 8.3333333333%;
max-width: 8.3333333333%;
}
.col-2 {
flex-basis: 16.6666666667%;
max-width: 16.6666666667%;
}
.col-3 {
flex-basis: 25%;
max-width: 25%;
}
.col-4 {
flex-basis: 33.3333333333%;
max-width: 33.3333333333%;
}
.col-5 {
flex-basis: 41.6666666667%;
max-width: 41.6666666667%;
}
.col-6 {
flex-basis: 50%;
max-width: 50%;
}
.col-7 {
flex-basis: 58.3333333333%;
max-width: 58.3333333333%;
}
.col-8 {
flex-basis: 66.6666666667%;
max-width: 66.6666666667%;
}
.col-9 {
flex-basis: 75%;
max-width: 75%;
}
.col-10 {
flex-basis: 83.3333333333%;
max-width: 83.3333333333%;
}
.col-11 {
flex-basis: 91.6666666667%;
max-width: 91.6666666667%;
}
.col-12 {
flex-basis: 100%;
max-width: 100%;
}
.offset-1 {
margin-left: 8.3333333333%;
}
.offset-2 {
margin-left: 16.6666666667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.3333333333%;
}
.offset-5 {
margin-left: 41.6666666667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.3333333333%;
}
.offset-8 {
margin-left: 66.6666666667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.3333333333%;
}
.offset-11 {
margin-left: 91.6666666667%;
}
@media (min-width:768px) {
.col-1-m {
flex-basis: 8.3333333333%;
max-width: 8.3333333333%;
}
.col-2-m {
flex-basis: 16.6666666667%;
max-width: 16.6666666667%;
}
.col-3-m {
flex-basis: 25%;
max-width: 25%;
}
.col-4-m {
flex-basis: 33.3333333333%;
max-width: 33.3333333333%;
}
.col-5-m {
flex-basis: 41.6666666667%;
max-width: 41.6666666667%;
}
.col-6-m {
flex-basis: 50%;
max-width: 50%;
}
.col-7-m {
flex-basis: 58.3333333333%;
max-width: 58.3333333333%;
}
.col-8-m {
flex-basis: 66.6666666667%;
max-width: 66.6666666667%;
}
.col-9-m {
flex-basis: 75%;
max-width: 75%;
}
.col-10-m {
flex-basis: 83.3333333333%;
max-width: 83.3333333333%;
}
.col-11-m {
flex-basis: 91.6666666667%;
max-width: 91.6666666667%;
}
.col-12-m {
flex-basis: 100%;
max-width: 100%;
}
.offset-1-m {
margin-left: 8.3333333333%;
}
.offset-2-m {
margin-left: 16.6666666667%;
}
.offset-3-m {
margin-left: 25%;
}
.offset-4-m {
margin-left: 33.3333333333%;
}
.offset-5-m {
margin-left: 41.6666666667%;
}
.offset-6-m {
margin-left: 50%;
}
.offset-7-m {
margin-left: 58.3333333333%;
}
.offset-8-m {
margin-left: 66.6666666667%;
}
.offset-9-m {
margin-left: 75%;
}
.offset-10-m {
margin-left: 83.3333333333%;
}
.offset-11-m {
margin-left: 91.6666666667%;
}
}
@media (min-width:1200px) {
.col-1-l {
flex-basis: 8.3333333333%;
max-width: 8.3333333333%;
}
.col-2-l {
flex-basis: 16.6666666667%;
max-width: 16.6666666667%;
}
.col-3-l {
flex-basis: 25%;
max-width: 25%;
}
.col-4-l {
flex-basis: 33.3333333333%;
max-width: 33.3333333333%;
}
.col-5-l {
flex-basis: 41.6666666667%;
max-width: 41.6666666667%;
}
.col-6-l {
flex-basis: 50%;
max-width: 50%;
}
.col-7-l {
flex-basis: 58.3333333333%;
max-width: 58.3333333333%;
}
.col-8-l {
flex-basis: 66.6666666667%;
max-width: 66.6666666667%;
}
.col-9-l {
flex-basis: 75%;
max-width: 75%;
}
.col-10-l {
flex-basis: 83.3333333333%;
max-width: 83.3333333333%;
}
.col-11-l {
flex-basis: 91.6666666667%;
max-width: 91.6666666667%;
}
.col-12-l {
flex-basis: 100%;
max-width: 100%;
}
.offset-1-l {
margin-left: 8.3333333333%;
}
.offset-2-l {
margin-left: 16.6666666667%;
}
.offset-3-l {
margin-left: 25%;
}
.offset-4-l {
margin-left: 33.3333333333%;
}
.offset-5-l {
margin-left: 41.6666666667%;
}
.offset-6-l {
margin-left: 50%;
}
.offset-7-l {
margin-left: 58.3333333333%;
}
.offset-8-l {
margin-left: 66.6666666667%;
}
.offset-9-l {
margin-left: 75%;
}
.offset-10-l {
margin-left: 83.3333333333%;
}
.offset-11-l {
margin-left: 91.6666666667%;
}
}
.ico {
display: inline-block;
vertical-align: text-bottom;
position: relative;
width: 1em;
height: 1em;
font-size: 1.15em;
line-height: normal;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
object-fit: contain;
object-position: center;
font-style: normal;
background-position: center;
background-size: contain;
}
@-moz-document url-prefix() {
.ico {
line-height: 1.11;
}
}
.ico::before,
.ico::after {
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.ico-left::before,
.ico-right::before,
.ico-up::before,
.ico-down::before {
width: 0.6em;
height: 0.6em;
border: 2px solid;
border-right: none;
border-bottom: none;
content: "";
}
.ico-left::before {
transform: translate(-25%, -50%) rotate(-45deg);
}
.ico-right::before {
transform: translate(-75%, -50%) rotate(135deg);
}
.ico-up::before {
transform: translate(-50%, -25%) rotate(45deg);
}
.ico-down::before {
transform: translate(-50%, -75%) rotate(225deg);
}
.ico-plus::before,
.ico-plus::after,
.ico-cross::before,
.ico-cross::after {
content: "";
background: currentColor;
}
.ico-plus::before,
.ico-cross::before {
width: 0.9em;
height: 2px;
}
.ico-plus::after,
.ico-cross::after {
width: 2px;
height: 0.9em;
}
.ico-cross::before,
.ico-cross::after {
transform: translate(-50%, -50%) rotate(45deg);
}
.ico-menu::before {
width: 0.9em;
height: 2px;
content: "";
background: currentColor;
box-shadow: 0 -0.35em, 0 0.35em;
}
.ico-search::before {
top: 5%;
left: 5%;
width: 0.75em;
height: 0.75em;
border: 2px solid;
content: "";
border-radius: 50%;
transform: translate(0, 0) rotate(45deg);
}
.ico-search::after {
top: 80%;
left: 80%;
width: 0.4em;
height: 2px;
content: "";
background: currentColor;
transform: translate(-50%, -50%) rotate(45deg);
}
.media {
display: inline-block;
vertical-align: top;
max-width: 100%;
}
.media img,
.media svg,
.media canvas,
.media video,
.media object,
.media embed,
[class*=media-content] {
display: block;
max-width: 100%;
margin: auto;
overflow: hidden;
object-fit: cover;
object-position: center;
background-color: #f7f7f7;
background-position: center;
background-size: cover;
border-radius: 0;
}
[class*=media-content] {
position: relative;
width: 100%;
padding-top: 56.25%;
}
.media [class*=media-content] > * {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
}
.media-content-1by1 {
padding-top: 100%;
}
.media-contain.media img,
.media-contain.media svg,
.media-contain.media video,
.media-contain.media [class*=media-content] {
object-fit: contain;
background-size: contain;
}
html:has(.overlay.toggle-active),
body:has(.overlay.toggle-active) {
overflow: hidden;
}
.overlay {
display: flex;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 4;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: rgba(82, 82, 82, 0.9);
}
.overlay-body {
margin: auto;
}
.progress {
display: flex;
height: 2rem;
background: #f7f7f7;
border-radius: 0;
}
.progress-bar {
display: flex;
align-items: center;
justify-content: flex-end;
min-width: 3em;
height: 100%;
padding: 0 0.5rem;
font-size: 0.9230769231rem;
white-space: nowrap;
overflow: hidden;
color: rgba(255, 255, 255, 0.9);
background: #fa73a0;
border-radius: 0;
}
@media (min-width:768px) {
html {
-ms-overflow-style: -ms-autohiding-scrollbar;
}
}
@media (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) and (min-width:768px) {
html {
overflow: overlay;
}
::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
}
::-webkit-scrollbar-thumb {
background: rgba(209, 209, 209, 0.382);
border-radius: 0.5rem;
}
::-webkit-scrollbar-corner {
display: none;
}
::-webkit-resizer {
display: none;
}
}
.table,
.table-border {
word-break: normal;
overflow: auto;
-webkit-overflow-scrolling: touch;
border-radius: 0;
}
.table table,
.table-border table {
min-width: 100%;
}
.table thead,
.table-border thead {
background: #f7f7f7;
}
.table tbody tr:nth-child(even),
.table-border tbody tr:nth-child(even) {
background: #f7f7f7;
}
.table tbody tr:nth-child(odd),
.table-border tbody tr:nth-child(odd) {
background: white;
}
.table th,
.table td,
.table-border th,
.table-border td {
vertical-align: top;
text-align: left;
}
.table th,
.table-border th {
color: #525252;
font-weight: 700;
}
.table td,
.table-border td {
color: #6b6b6b;
}
.table th,
.table td {
padding: 1rem;
}
.table-border {
border: solid 1px #ebebeb;
}
.table-border th,
.table-border td {
padding: calc(1rem - 1px) 1rem 1rem 1rem;
}
.table-border td {
border-top: solid 1px #ebebeb;
}
.table-border tbody tr:last-child td {
padding: calc(1rem - 1px) 1rem calc(1rem - 1px) 1rem;
}
.table-nowrap.table th,
.table-nowrap.table td,
.table-nowrap.table-border th,
.table-nowrap.table-border td {
vertical-align: middle;
white-space: nowrap;
}
.table-stripless.table thead,
.table-stripless.table-border thead {
background: none;
}
.table-stripless.table table tbody tr,
.table-stripless.table-border table tbody tr {
background: none;
}
.table-hover.table tbody tr:hover,
.table-hover.table-border tbody tr:hover {
background: #fedfe9;
}
.turbolinks-progress-bar {
height: 2px;
background: #fa73a0;
}
h1, .h1,
.p1 {
padding-top: 0.6701538462rem;
padding-bottom: 0.3298461538rem;
font-size: 2.2307692308rem;
line-height: 3rem;
display: block;
}
h2, .h2,
.p2 {
padding-top: 0.8132307692rem;
padding-bottom: 0.1867692308rem;
font-size: 1.8461538462rem;
line-height: 3rem;
display: block;
}
h3, .h3,
.p3 {
padding-top: 0.4276923077rem;
padding-bottom: 0.5723076923rem;
font-size: 1.5384615385rem;
line-height: 2rem;
display: block;
}
h4, .h4,
.p4 {
padding-top: 0.5135384615rem;
padding-bottom: 0.4864615385rem;
font-size: 1.3076923077rem;
line-height: 2rem;
display: block;
}
h5, .h5,
p, .p5 {
padding-top: 0.5993846154rem;
padding-bottom: 0.4006153846rem;
font-size: 1.0769230769rem;
line-height: 2rem;
display: block;
}
h6, .h6,
.p6 {
padding-top: 0.6566153846rem;
padding-bottom: 0.3433846154rem;
font-size: 0.9230769231rem;
line-height: 2rem;
display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
color: #525252;
font-weight: 700;
}
.typo-inline {
display: inline !important;
padding: 0 !important;
line-height: 0 !important;
}
code,
kbd,
samp {
padding: 0.1em 0.3em;
line-height: 0;
color: #6b6b6b;
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
background: #f7f7f7;
border-radius: 0;
}
.code {
padding: 0 2rem;
background: #f7f7f7;
border-radius: 0;
}
.code code,
.code samp,
.code kbd {
padding-top: 0.75436rem;
padding-bottom: 0.24564rem;
font-size: 0.9230769231rem;
line-height: 2rem;
display: block;
padding-right: 0;
padding-left: 0;
background: none;
border-radius: 0;
}
q,
.quote p {
font-style: italic;
}
q {
line-height: 0;
}
q::before {
padding: 0 0.3em;
content: '"';
}
q::after {
padding: 0 0.3em 0 0.2em;
content: '"';
}
q q::before {
content: "'";
}
q q::after {
content: "'";
}
cite {
color: #d1d1d1;
font-style: italic;
font-weight: 700;
}
.quote {
padding: 2rem;
}
.quote p {
padding-top: 0.5135384615rem;
padding-bottom: 0.4864615385rem;
font-size: 1.3076923077rem;
line-height: 2rem;
margin: 0 auto 1rem;
}
.quote p:first-child {
position: relative;
}
.quote p:first-child::before {
display: block;
position: absolute;
top: 0;
left: -2rem;
width: 2rem;
font-size: 3em;
text-align: center;
content: '"';
color: #d1d1d1;
}
.quote p:last-of-type {
margin-bottom: 0;
}
.quote footer {
color: #d1d1d1;
}
.quote footer::before {
display: inline-block;
vertical-align: middle;
width: 2em;
margin-right: 1em;
border-width: 1px 0 0;
content: "";
border-style: solid;
}
a:not(.btn) {
color: #6b6b6b;
text-decoration: underline;
}
a:not(.btn):hover {
color: #525252;
}
a.link-light:not(.btn) {
color: rgba(255, 255, 255, 0.9);
}
a.link-light:not(.btn):hover {
color: white;
}
mark {
padding: 0.1em 0.3em;
color: #fa73a0;
background: #fedfe9;
border-radius: 0;
}
ul,
ol {
list-style-position: outside;
}
ul ul,
ul ol,
ol ul,
ol ol {
padding: 0 0 0 2em;
}
dt {
font-weight: 700;
}
sub,
sup {
vertical-align: baseline;
position: relative;
font-size: 83.3333333333%;
line-height: 0;
}
sub {
bottom: -0.25em;
font-feature-settings: "subs" 1;
}
sup {
top: -0.5em;
font-feature-settings: "sups" 1;
}
.alert {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
overflow: hidden;
background: #525252;
border-radius: 0;
}
.alert-action {
flex: 0 0 auto;
order: 1;
margin-left: 1rem;
}
.alert-title {
padding: 0;
color: white;
}
.alert-content {
padding: 0;
color: rgba(255, 255, 255, 0.9);
}
.avatar-x,
.avatar-y {
display: inline-flex;
vertical-align: top;
align-items: center;
}
.avatar-x .media,
.avatar-y .media {
flex: 0 0 auto;
width: 3rem;
height: 3rem;
background-color: #f7f7f7;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23b8b8b8' d='M437.02,330.98c-27.883-27.882-61.071-48.523-97.281-61.018C378.521,243.251,404,198.548,404,148 C404,66.393,337.607,0,256,0S108,66.393,108,148c0,50.548,25.479,95.251,64.262,121.962 c-36.21,12.495-69.398,33.136-97.281,61.018C26.629,379.333,0,443.62,0,512h40c0-119.103,96.897-216,216-216s216,96.897,216,216 h40C512,443.62,485.371,379.333,437.02,330.98z M256,256c-59.551,0-108-48.448-108-108S196.449,40,256,40 c59.551,0,108,48.448,108,108S315.551,256,256,256z'/%3E%3C/svg%3E");
background-position: center;
background-size: 50% auto;
border-radius: 100%;
}
.avatar-x .media img,
.avatar-y .media img {
width: 100%;
height: 100%;
background: none;
border-radius: 100%;
}
.avatar-info {
flex: 0 0 auto;
height: 3rem;
}
.avatar-name,
.avatar-description {
padding: 0;
line-height: 1.35rem;
white-space: nowrap;
}
.avatar-name {
font-size: 1.0769230769rem;
color: #d1d1d1;
}
.avatar-description {
font-size: 0.9230769231rem;
color: #d1d1d1;
}
.avatar-x .avatar-info {
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 0.5rem;
}
.avatar-y {
flex-direction: column;
}
.avatar-y .avatar-info {
padding-top: 0.3rem;
text-align: center;
}
.avatar-large.avatar-x .media,
.avatar-large.avatar-y .media {
width: 6rem;
height: 6rem;
}
.avatar-large.avatar-x .avatar-info,
.avatar-large.avatar-y .avatar-info {
height: 4rem;
}
.avatar-large.avatar-y .avatar-info {
padding-top: 0.6rem;
}
.avatar-large.avatar-x .avatar-info {
padding-left: 1rem;
}
.avatar-large .avatar-name,
.avatar-large .avatar-description {
line-height: 1.7rem;
}
.avatar-large .avatar-name {
font-size: 1.3076923077rem;
}
.avatar-large .avatar-description {
font-size: 1.0769230769rem;
}
.avatar-small.avatar-x .media,
.avatar-small.avatar-y .media {
width: 2rem;
height: 2rem;
}
.avatar-small .avatar-name {
font-size: 0.9230769231rem;
}
.breadcrumb {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 1rem 0;
color: #d1d1d1;
}
.breadcrumb li:not(:first-child)::before {
padding: 0 0.5em;
content: "/";
}
.breadcrumb a {
text-decoration: none;
}
.breadcrumb a:hover {
text-decoration: underline;
}
[class*=btn-].btn-ico {
width: 0;
}
[class*=btn-]:not([class*=btn-text]).btn-ico .ico,
[class*=btn-]:not([class*=btn-text]).btn-ico-left .ico,
[class*=btn-]:not([class*=btn-text]).btn-ico-right .ico,
[class*=btn-]:not([class*=btn-text]).btn-ico-top .ico {
font-size: 1.286em;
pointer-events: none;
}
[class*=btn-].btn-ico-left .ico {
order: -1;
margin: 0 0.4em 0 0;
}
[class*=btn-].btn-ico-right .ico {
order: 1;
margin: 0 0 0 0.4em;
}
.btn.btn-ico-top,
.btn-check.btn-ico-top label,
.btn-radio.btn-ico-top label,
.btn-file.btn-ico-top label {
flex-direction: column;
}
[class*=btn-].btn-ico-top {
height: 4rem;
}
[class*=btn-].btn-ico-top .ico {
order: -1;
margin: 0 0 0.15em 0;
font-size: 1.5em;
}
.btn-large[class*=btn-].btn-ico-top {
height: 5rem;
}
.btn-small[class*=btn-].btn-ico-top {
height: 3rem;
}
.btns-x,
.btns-y {
display: inline-flex;
vertical-align: top;
max-width: 100%;
max-height: 100%;
}
.btns-x.btns-fluid,
.btns-y.btns-fluid {
display: flex;
width: 100%;
}
.btns-x.btns-margin,
.btns-y.btns-margin {
flex-wrap: wrap;
}
.btns-x.btns-margin [class*=btn-],
.btns-y.btns-margin [class*=btn-] {
margin: 0 1rem 1rem 0;
}
.btns-x:not(.btns-margin) .btn:not(:first-child),
.btns-x:not(.btns-margin) [class*=btn-]:not(:first-child) label {
border-left: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.btns-x:not(.btns-margin) .btn:not(:last-child),
.btns-x:not(.btns-margin) [class*=btn-]:not(:last-child) label {
border-right: none;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btns-x:not(.btns-margin) [class*=btn-][class*=btn-],
.btns-x:not(.btns-margin) [class*=btn-][class*=btn-] input ~ label,
.btns-y:not(.btns-margin) [class*=btn-][class*=btn-],
.btns-y:not(.btns-margin) [class*=btn-][class*=btn-] input ~ label {
box-shadow: none;
}
.btns-x:not(.btns-margin).btns-fluid [class*=btn-] {
flex: 1 1 auto;
}
.btns-y {
flex-direction: column;
}
.btns-y:not(.btns-margin) .btn:not(:first-child),
.btns-y:not(.btns-margin) [class*=btn-]:not(:first-child) label {
border-top: none;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.btns-y:not(.btns-margin) .btn:not(:last-child),
.btns-y:not(.btns-margin) [class*=btn-]:not(:last-child) label {
border-bottom: none;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btns-y .btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right),
.btns-y [class*=btn-]:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) label {
justify-content: flex-start;
}
.btns-y .btn.btn-ico-right,
.btns-y [class*=btn-].btn-ico-right label {
justify-content: space-between;
}
@supports (-ms-ime-align: auto) {
.btns-y input.btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) {
text-align: left;
}
}
.carousel {
display: block;
width: 100%;
background: #f7f7f7;
}
.carousel-box {
position: relative;
padding-top: 56.25%;
overflow: hidden;
}
.carousel-prev,
.carousel-next {
display: none;
}
.carousel-indicators {
display: flex;
position: absolute;
top: 1rem;
right: 1rem;
z-index: 2;
justify-content: center;
}
.carousel-indicators .btn {
height: 0.2rem;
font-size: 0;
opacity: 0.382;
outline-offset: 2px;
transition: opacity 0.5s ease;
}
.carousel-indicators.btns-x.btns-margin .btn:last-child {
margin-right: 0;
}
.carousel-indicators .btn[disabled] {
opacity: 0.9;
}
.carousel-item,
.carousel-figure {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
background-position: center;
background-size: cover;
}
.carousel-description {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
max-height: 100%;
padding: 1rem;
overflow: auto;
-webkit-overflow-scrolling: touch;
color: rgba(255, 255, 255, 0.9);
background: linear-gradient(180deg, transparent 0, rgba(82, 82, 82, 0.1) 2rem);
}
@media (min-width:768px) {
.carousel-prev,
.carousel-next {
display: inline-flex;
position: absolute;
top: 0;
bottom: 0;
z-index: 2;
margin: auto;
opacity: 0;
transition: opacity 0.5s ease;
}
.carousel-prev.btn-text-light,
.carousel-next.btn-text-light {
color: white;
}
.carousel-box:hover > .carousel-prev,
.carousel-box:hover > .carousel-next,
.carousel-prev.focus,
.carousel-next.focus {
opacity: 0.9;
}
.carousel-box:hover > .carousel-prev[disabled],
.carousel-box:hover > .carousel-next[disabled],
.carousel-prev.focus[disabled],
.carousel-next.focus[disabled] {
opacity: 0.382;
}
.carousel-prev {
left: 1rem;
}
.carousel-next {
right: 1rem;
}
.carousel-indicators {
top: 2rem;
right: 2rem;
}
.carousel-description {
padding: 2rem;
}
}
.carousel-item.carousel-item-active {
z-index: 1;
}
.carousel:not([class*=carousel-custom-]) .carousel-item {
transform: translate3d(0, 0, 0);
transition: transform 1s ease;
}
.carousel:not([class*=carousel-custom-]) .carousel-item.carousel-item-next {
transform: translate3d(100%, 0, 0);
}
.carousel:not([class*=carousel-custom-]) .carousel-item.carousel-item-prev {
transform: translate3d(-100%, 0, 0);
}
.carousel.carousel-custom-opacity .carousel-item {
opacity: 1;
transform: translate3d(0, 0, 0);
transition: opacity 1s ease;
}
.carousel.carousel-custom-opacity .carousel-item.carousel-item-prev,
.carousel.carousel-custom-opacity .carousel-item.carousel-item-next {
opacity: 0;
}
.dropdown-absolute,
.dropdown-static,
.dropdown-fixed {
display: inline-flex;
vertical-align: top;
flex-direction: column;
max-width: 100%;
-ms-touch-action: manipulation;
touch-action: manipulation;
}
.dropdown-menu {
display: none;
}
.dropdown-active > .dropdown-menu {
display: block;
}
.dropdown-items {
display: flex;
flex-direction: column;
min-width: 100%;
}
.dropdown-items > * {
flex: 0 0 auto;
}
.dropdown-items .btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right),
.dropdown-items [class*=btn-]:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) label {
justify-content: flex-start;
}
.dropdown-items .btn.btn-ico-right,
.dropdown-items [class*=btn-].btn-ico-right label {
justify-content: space-between;
}
.dropdown-menu .dropdown-items [class*=btn-][class*=btn-],
.dropdown-menu .dropdown-items [class*=btn-][class*=btn-] input ~ label {
box-shadow: none;
}
@supports (-ms-ime-align: auto) {
.dropdown-items input.btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) {
text-align: left;
}
}
.dropdown-static .dropdown-menu {
margin-left: 1rem;
}
.dropdown-fixed > .dropdown-menu {
display: flex;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 4;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: rgba(82, 82, 82, 0.9);
display: none;
}
.dropdown-fixed.dropdown-active > .dropdown-menu {
display: flex;
}
.dropdown-fixed > .dropdown-menu > .dropdown-items {
margin: auto;
margin-bottom: 0;
overflow: visible;
background: white;
}
.dropdown-absolute > .dropdown-menu {
position: relative;
z-index: 3;
margin: 0;
overflow: visible;
}
.dropdown-absolute.dropdown-active > .dropdown-menu {
display: block;
}
.dropdown-absolute > .dropdown-menu > .dropdown-items {
position: absolute;
max-height: 33rem;
margin: 0.5rem 0 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: white;
border-radius: 0;
}
.dropdown-absolute.dropdown-top > .dropdown-menu,
.dropdown-absolute.dropdown-left > .dropdown-menu,
.dropdown-absolute.dropdown-right > .dropdown-menu {
order: -1;
}
.dropdown-absolute.dropdown-top > .dropdown-menu > .dropdown-items {
bottom: 0;
margin: 0 0 0.5rem;
}
.dropdown-absolute.dropdown-align-right > .dropdown-menu > .dropdown-items {
right: 0;
}
.dropdown-absolute.dropdown-right > .dropdown-menu > .dropdown-items {
left: 100%;
margin: 0 0 0 0.5rem;
}
.dropdown-absolute.dropdown-left > .dropdown-menu > .dropdown-items {
right: 100%;
margin: 0 0.5rem 0 0;
}
@media (min-width:768px) {
.dropdown-absolute-m > .dropdown-menu {
position: relative;
z-index: 3;
margin: 0;
overflow: visible;
}
.dropdown-absolute-m.dropdown-active > .dropdown-menu {
display: block;
}
.dropdown-absolute-m > .dropdown-menu > .dropdown-items {
position: absolute;
max-height: 33rem;
margin: 0.5rem 0 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: white;
border-radius: 0;
}
.dropdown-absolute-m.dropdown-top > .dropdown-menu,
.dropdown-absolute-m.dropdown-left > .dropdown-menu,
.dropdown-absolute-m.dropdown-right > .dropdown-menu {
order: -1;
}
.dropdown-absolute-m.dropdown-top > .dropdown-menu > .dropdown-items {
bottom: 0;
margin: 0 0 0.5rem;
}
.dropdown-absolute-m.dropdown-align-right > .dropdown-menu > .dropdown-items {
right: 0;
}
.dropdown-absolute-m.dropdown-right > .dropdown-menu > .dropdown-items {
left: 100%;
margin: 0 0 0 0.5rem;
}
.dropdown-absolute-m.dropdown-left > .dropdown-menu > .dropdown-items {
right: 100%;
margin: 0 0.5rem 0 0;
}
}
.fm-dropdown.dropdown-absolute,
.fm-dropdown.dropdown-fixed {
width: 100%;
}
@media (min-width:768px) {
.fm-dropdown.dropdown-absolute-m:not(.dropdown-top) > .dropdown-menu {
order: -1;
}
.fm-dropdown.dropdown-absolute-m:not(.dropdown-top) > .dropdown-menu > .dropdown-items {
margin-top: 3.5rem;
}
.fm-dropdown.dropdown-absolute-m:not(.dropdown-top) > .fm-small ~ .dropdown-menu > .dropdown-items {
margin-top: 2.5rem;
}
.fm-dropdown.dropdown-absolute-m:not(.dropdown-top) > .fm-large ~ .dropdown-menu > .dropdown-items {
margin-top: 4.5rem;
}
}
.fm.fm-ico-left input,
.fm.fm-ico-left select[multiple],
.fm.fm-ico-left textarea {
padding-left: 3.286em;
}
.fm.fm-ico-right input,
.fm.fm-ico-right select[multiple],
.fm.fm-ico-right textarea {
padding-right: 3.286em;
}
.fm-select.fm-ico-right input,
.fm-file.fm-ico-right input,
.fm-search.fm-ico-right input {
background: white;
}
.fm-select.fm-ico-right[data-error] input,
.fm-file.fm-ico-right[data-error] input,
.fm-search.fm-ico-right[data-error] input {
background: white;
}
.fm.fm-select.fm-ico-right .focus ~ input,
.fm.fm-select.fm-ico-right input.focus,
.fm.fm-file.fm-ico-right .focus ~ input,
.fm.fm-search.fm-ico-right input.focus {
background: white;
}
.fm > .ico {
margin-top: -2.1924615385rem;
font-size: 1.286em;
pointer-events: none;
color: #ebebeb;
fill: #ebebeb;
}
.fm.fm-ico-left > .ico {
margin-left: 0.7776049767em;
}
.fm.fm-ico-right > .ico {
margin-right: 0.7776049767em;
margin-left: auto;
}
.fm-small.fm > .ico {
margin-top: -1.5935384615rem;
}
.fm-large.fm > .ico {
margin-top: -2.8408461538rem;
}
.fm[data-error] .ico {
color: #d12626;
fill: #d12626;
}
.fm.fm-ico-left .focus ~ .ico,
.fm.fm-ico-right .focus ~ .ico {
color: #fa73a0;
fill: #fa73a0;
}
.fm-group > .grid {
width: auto;
padding-right: 1rem;
margin-right: -1rem;
margin-left: -1rem;
}
.fm-group > .grid > [class*=col-] {
padding-right: 0;
}
.fm-group .fm-label-nowrap.fm-label,
.fm-group .fm-label-wrap.fm-label {
height: 3rem;
padding-top: 0;
padding-bottom: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.fm-group .fm-label-nowrap.fm-label {
line-height: 3rem;
white-space: nowrap;
}
.fm-group .fm-label-small.fm-label-nowrap.fm-label {
height: 2rem;
line-height: 2rem;
}
.fm-group .fm-label-large.fm-label-nowrap.fm-label {
height: 4rem;
line-height: 4rem;
}
.fm-group .fm-label-wrap.fm-label {
line-height: 1.5rem;
}
.fm-group .fm-label-small.fm-label-wrap.fm-label {
height: 2rem;
line-height: 1rem;
}
.fm-group .fm-label-large.fm-label-wrap.fm-label {
height: 4rem;
line-height: 2rem;
}
.fm-group .fm {
margin-bottom: 1rem;
}
.modal {
padding: 2rem;
overflow: hidden;
background: #f7f7f7;
border-radius: 0;
}
.overlay-body > .modal {
max-width: 46.153846rem;
min-width: 24.615384rem;
}
.nav-header,
.nav-aside {
display: flex;
align-items: center;
width: 100%;
padding: 0.5rem 1rem;
background: #525252;
}
.nav-logo {
flex: 0 0 auto;
margin: 0 1rem;
}
.nav-logo img,
.nav-logo svg {
height: 2rem;
object-fit: contain;
fill: white;
}
.nav-open {
flex: 0 0 auto;
margin: 0 0 0 auto;
}
.nav-open.btn-text-light,
.nav-close.btn-text-light {
color: white;
}
.nav-menu {
position: fixed;
top: 0;
left: 0;
z-index: 4;
flex-direction: column;
width: 100%;
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
background: #525252;
}
.nav-menu.toggle-active {
display: flex;
}
.nav-close {
flex: 0 0 auto;
margin: 1rem 1rem 0 auto;
}
.nav-search {
flex: 0 0 auto;
margin: 2rem;
}
.nav-items,
.nav-sub-items {
display: flex;
flex: 0 0 auto;
flex-direction: column;
}
.nav-items {
margin: 1rem;
}
.nav-sub-items {
margin: 1rem;
}
.nav-items .btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right),
.nav-sub-items .btn:not(.btn-ico):not(.btn-ico-top):not(.btn-ico-right) {
justify-content: flex-start;
}
.nav-items .btn.btn-ico-right,
.nav-sub-items .btn.btn-ico-right {
justify-content: space-between;
}
@media (min-width:768px) {
.nav-header,
.nav-aside {
position: -webkit-sticky;
position: sticky;
top: 0;
}
.nav-open,
.nav-close {
display: none;
}
.nav-header .nav-menu,
.nav-aside .nav-menu {
display: flex;
position: relative;
z-index: 0;
background: none;
}
.nav-header {
z-index: 4;
}
.nav-header .nav-items,
.nav-header .nav-sub-items {
flex-direction: row;
align-items: center;
}
.nav-header .nav-menu {
flex: 1 1 100%;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
overflow: visible;
}
.nav-header .nav-search {
flex: 0 0 auto;
order: 1;
width: 16rem;
margin: 0 1rem;
}
.nav-header .nav-items {
margin: 0 auto 0 0;
}
.nav-header .nav-sub-items {
order: 2;
margin: 0;
}
.nav-header .dropdown-menu {
margin-left: 0;
}
.nav-header .dropdown-items:not([class*=dropdown-static]) {
background: #525252;
}
.nav-aside {
z-index: 3;
flex-direction: column;
width: 18rem;
max-width: 20rem;
min-width: 18rem;
height: 100vh;
padding: 0;
overflow: auto;
-webkit-overflow-scrolling: touch;
box-shadow: none;
}
.nav-aside .nav-logo {
margin: 3rem 2rem 1rem;
}
.nav-aside .nav-logo img,
.nav-aside .nav-logo svg {
width: 9rem;
height: 7rem;
}
.nav-aside .nav-menu {
flex: 0 0 auto;
height: auto;
}
}
.search-bar {
display: flex;
}
.search-bar > .fm:not(.fm-select) {
flex-basis: 100%;
}
.search-bar > .fm:not(.fm-select) input {
border-right-width: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.search-bar .btn {
flex-shrink: 0;
order: 2;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.search-bar > .fm-dropdown,
.search-bar > .fm-select {
order: 1;
width: auto;
}
.search-bar .fm-dropdown .fm input,
.search-bar .fm-select select,
.search-bar .fm-select input {
border-right: none;
border-radius: 0;
}
.search-bar .fm-dropdown ~ .fm input.focus,
.search-bar .fm-dropdown ~ .fm[data-error] input,
.search-bar .fm-select ~ .fm input.focus,
.search-bar .fm-select ~ .fm[data-error] input {
border-right-width: 1px;
}
.tab-indicators {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.tab-panes {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.tab-pane {
display: none;
}
.tab-pane-active.tab-pane {
display: block;
}
.va-top {
vertical-align: top !important;
}
.va-middle {
vertical-align: middle !important;
}
.va-baseline {
vertical-align: baseline !important;
}
.va-bottom {
vertical-align: bottom !important;
}
.va-text-top {
vertical-align: text-top !important;
}
.va-text-bottom {
vertical-align: text-bottom !important;
}
.bc-primary {
background-color: #fa73a0 !important;
}
.bc-secondary {
background-color: #dbdbdb !important;
}
.bc-danger {
background-color: #d12626 !important;
}
.bc-dark {
background-color: #525252 !important;
}
.bc-light {
background-color: white !important;
}
.bc-emphasis {
background-color: #fedfe9 !important;
}
.bc-main {
background-color: white !important;
}
.bc-muted {
background-color: #f7f7f7 !important;
}
.bc-inverse-emphasis {
background-color: #fedfe9 !important;
}
.bc-inverse-main {
background-color: #525252 !important;
}
.bc-inverse-muted {
background-color: #595959 !important;
}
.bc-none {
background-color: transparent !important;
}
.bi-none {
background-image: none !important;
}
.bp-c {
background-position: center !important;
}
.bp-rc {
background-position: right center !important;
}
.bp-lc {
background-position: left center !important;
}
.bp-ct {
background-position: center top !important;
}
.bp-cb {
background-position: center bottom !important;
}
.bp-lt {
background-position: left top !important;
}
.bp-lb {
background-position: left bottom !important;
}
.bp-rt {
background-position: right top !important;
}
.bp-rb {
background-position: right bottom !important;
}
.bs-cover {
background-size: cover !important;
}
.bs-contain {
background-size: contain !important;
}
.bs-auto {
background-size: auto !important;
}
.bs-100-auto {
background-size: 100% auto !important;
}
.bs-auto-100 {
background-size: auto 100% !important;
}
.bd-none {
border: none !important;
}
.bd-t-none {
border-top: none !important;
}
.bd-r-none {
border-right: none !important;
}
.bd-b-none {
border-bottom: none !important;
}
.bd-l-none {
border-left: none !important;
}
.c-primary {
color: #fa73a0 !important;
}
.c-secondary {
color: #8f8f8f !important;
}
.c-danger {
color: #d12626 !important;
}
.c-dark {
color: #525252 !important;
}
.c-light {
color: white !important;
}
.c-emphasis {
color: #525252 !important;
}
.c-main {
color: #6b6b6b !important;
}
.c-muted {
color: #d1d1d1 !important;
}
.c-inverse-emphasis {
color: white !important;
}
.c-inverse-main {
color: rgba(255, 255, 255, 0.9) !important;
}
.c-inverse-muted {
color: rgba(255, 255, 255, 0.618) !important;
}
.c-none {
color: transparent !important;
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-block {
display: block !important;
}
.d-table {
display: table !important;
}
.d-table-cell {
display: table-cell !important;
}
.d-table-row {
display: table-row !important;
}
.d-flex {
display: flex !important;
}
.d-inline-flex {
display: inline-flex !important;
}
.d-none {
display: none !important;
}
@media (min-width:768px) {
.d-inline-m {
display: inline !important;
}
.d-inline-block-m {
display: inline-block !important;
}
.d-block-m {
display: block !important;
}
.d-table-m {
display: table !important;
}
.d-table-cell-m {
display: table-cell !important;
}
.d-table-row-m {
display: table-row !important;
}
.d-flex-m {
display: flex !important;
}
.d-inline-flex-m {
display: inline-flex !important;
}
.d-none-m {
display: none !important;
}
}
@media (min-width:1200px) {
.d-inline-l {
display: inline !important;
}
.d-inline-block-l {
display: inline-block !important;
}
.d-block-l {
display: block !important;
}
.d-table-l {
display: table !important;
}
.d-table-cell-l {
display: table-cell !important;
}
.d-table-row-l {
display: table-row !important;
}
.d-flex-l {
display: flex !important;
}
.d-inline-flex-l {
display: inline-flex !important;
}
.d-none-l {
display: none !important;
}
}
@media print {
.d-none-print {
display: none !important;
}
}
.fw-wrap {
flex-wrap: wrap !important;
}
.fw-nowrap {
flex-wrap: nowrap !important;
}
.fw-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.fd-row {
flex-direction: row !important;
}
.fd-column {
flex-direction: column !important;
}
.fd-row-reverse {
flex-direction: row-reverse !important;
}
.fd-column-reverse {
flex-direction: column-reverse !important;
}
.jc-start {
justify-content: flex-start !important;
}
.jc-center {
justify-content: center !important;
}
.jc-end {
justify-content: flex-end !important;
}
.jc-between {
justify-content: space-between !important;
}
.jc-around {
justify-content: space-around !important;
}
.ac-start {
align-content: flex-start !important;
}
.ac-center {
align-content: center !important;
}
.ac-end {
align-content: flex-end !important;
}
.ac-between {
align-content: space-between !important;
}
.ac-around {
align-content: space-around !important;
}
.ac-stretch {
align-content: stretch !important;
}
.ai-start {
align-items: flex-start !important;
}
.ai-end {
align-items: flex-end !important;
}
.ai-center {
align-items: center !important;
}
.ai-baseline {
align-items: baseline !important;
}
.ai-stretch {
align-items: stretch !important;
}
.as-start {
align-self: flex-start !important;
}
.as-center {
align-self: center !important;
}
.as-baseline {
align-self: baseline !important;
}
.as-end {
align-self: flex-end !important;
}
.as-stretch {
align-self: stretch !important;
}
.flex-growable {
flex-grow: 1 !important;
}
.flex-ungrowable {
flex-grow: 0 !important;
}
.flex-shrinkable {
flex-shrink: 1 !important;
}
.flex-unshrinkable {
flex-shrink: 0 !important;
}
.flex-auto {
flex: 1 1 auto !important;
}
.od-0 {
order: 0 !important;
}
.od-1 {
order: 1 !important;
}
.on-1 {
order: -1 !important;
}
.od-2 {
order: 2 !important;
}
.on-2 {
order: -2 !important;
}
.od-3 {
order: 3 !important;
}
.on-3 {
order: -3 !important;
}
.od-4 {
order: 4 !important;
}
.on-4 {
order: -4 !important;
}
.od-5 {
order: 5 !important;
}
.on-5 {
order: -5 !important;
}
.od-6 {
order: 6 !important;
}
.on-6 {
order: -6 !important;
}
@media (min-width:768px) {
.fw-wrap-m {
flex-wrap: wrap !important;
}
.fw-nowrap-m {
flex-wrap: nowrap !important;
}
.fw-wrap-reverse-m {
flex-wrap: wrap-reverse !important;
}
.fd-row-m {
flex-direction: row !important;
}
.fd-column-m {
flex-direction: column !important;
}
.fd-row-reverse-m {
flex-direction: row-reverse !important;
}
.fd-column-reverse-m {
flex-direction: column-reverse !important;
}
.jc-start-m {
justify-content: flex-start !important;
}
.jc-center-m {
justify-content: center !important;
}
.jc-end-m {
justify-content: flex-end !important;
}
.jc-between-m {
justify-content: space-between !important;
}
.jc-around-m {
justify-content: space-around !important;
}
.ac-start-m {
align-content: flex-start !important;
}
.ac-center-m {
align-content: center !important;
}
.ac-end-m {
align-content: flex-end !important;
}
.ac-between-m {
align-content: space-between !important;
}
.ac-around-m {
align-content: space-around !important;
}
.ac-stretch-m {
align-content: stretch !important;
}
.ai-start-m {
align-items: flex-start !important;
}
.ai-end-m {
align-items: flex-end !important;
}
.ai-center-m {
align-items: center !important;
}
.ai-baseline-m {
align-items: baseline !important;
}
.ai-stretch-m {
align-items: stretch !important;
}
.as-start-m {
align-self: flex-start !important;
}
.as-center-m {
align-self: center !important;
}
.as-baseline-m {
align-self: baseline !important;
}
.as-end-m {
align-self: flex-end !important;
}
.as-stretch-m {
align-self: stretch !important;
}
.flex-growable-m {
flex-grow: 1 !important;
}
.flex-ungrowable-m {
flex-grow: 0 !important;
}
.flex-shrinkable-m {
flex-shrink: 1 !important;
}
.flex-unshrinkable-m {
flex-shrink: 0 !important;
}
.flex-auto-m {
flex: 1 1 auto !important;
}
.od-0-m {
order: 0 !important;
}
.od-1-m {
order: 1 !important;
}
.on-1-m {
order: -1 !important;
}
.od-2-m {
order: 2 !important;
}
.on-2-m {
order: -2 !important;
}
.od-3-m {
order: 3 !important;
}
.on-3-m {
order: -3 !important;
}
.od-4-m {
order: 4 !important;
}
.on-4-m {
order: -4 !important;
}
.od-5-m {
order: 5 !important;
}
.on-5-m {
order: -5 !important;
}
.od-6-m {
order: 6 !important;
}
.on-6-m {
order: -6 !important;
}
}
@media (min-width:1200px) {
.fw-wrap-l {
flex-wrap: wrap !important;
}
.fw-nowrap-l {
flex-wrap: nowrap !important;
}
.fw-wrap-reverse-l {
flex-wrap: wrap-reverse !important;
}
.fd-row-l {
flex-direction: row !important;
}
.fd-column-l {
flex-direction: column !important;
}
.fd-row-reverse-l {
flex-direction: row-reverse !important;
}
.fd-column-reverse-l {
flex-direction: column-reverse !important;
}
.jc-start-l {
justify-content: flex-start !important;
}
.jc-center-l {
justify-content: center !important;
}
.jc-end-l {
justify-content: flex-end !important;
}
.jc-between-l {
justify-content: space-between !important;
}
.jc-around-l {
justify-content: space-around !important;
}
.ac-start-l {
align-content: flex-start !important;
}
.ac-center-l {
align-content: center !important;
}
.ac-end-l {
align-content: flex-end !important;
}
.ac-between-l {
align-content: space-between !important;
}
.ac-around-l {
align-content: space-around !important;
}
.ac-stretch-l {
align-content: stretch !important;
}
.ai-start-l {
align-items: flex-start !important;
}
.ai-end-l {
align-items: flex-end !important;
}
.ai-center-l {
align-items: center !important;
}
.ai-baseline-l {
align-items: baseline !important;
}
.ai-stretch-l {
align-items: stretch !important;
}
.as-start-l {
align-self: flex-start !important;
}
.as-center-l {
align-self: center !important;
}
.as-baseline-l {
align-self: baseline !important;
}
.as-end-l {
align-self: flex-end !important;
}
.as-stretch-l {
align-self: stretch !important;
}
.flex-growable-l {
flex-grow: 1 !important;
}
.flex-ungrowable-l {
flex-grow: 0 !important;
}
.flex-shrinkable-l {
flex-shrink: 1 !important;
}
.flex-unshrinkable-l {
flex-shrink: 0 !important;
}
.flex-auto-l {
flex: 1 1 auto !important;
}
.od-0-l {
order: 0 !important;
}
.od-1-l {
order: 1 !important;
}
.on-1-l {
order: -1 !important;
}
.od-2-l {
order: 2 !important;
}
.on-2-l {
order: -2 !important;
}
.od-3-l {
order: 3 !important;
}
.on-3-l {
order: -3 !important;
}
.od-4-l {
order: 4 !important;
}
.on-4-l {
order: -4 !important;
}
.od-5-l {
order: 5 !important;
}
.on-5-l {
order: -5 !important;
}
.od-6-l {
order: 6 !important;
}
.on-6-l {
order: -6 !important;
}
}
.clear::after {
display: block;
clear: both;
content: "";
}
.f-left {
float: left !important;
}
.f-right {
float: right !important;
}
.f-none {
float: none !important;
}
@media (min-width:768px) {
.f-left-m {
float: left !important;
}
.f-right-m {
float: right !important;
}
.f-none-m {
float: none !important;
}
}
@media (min-width:1200px) {
.f-left-l {
float: left !important;
}
.f-right-l {
float: right !important;
}
.f-none-l {
float: none !important;
}
}
.o-emphasis {
opacity: 1 !important;
}
.o-main {
opacity: 0.9 !important;
}
.o-muted {
opacity: 0.618 !important;
}
.o-more-muted {
opacity: 0.382 !important;
}
.o-most-muted {
opacity: 0.1 !important;
}
.o-transparent {
opacity: 0 !important;
}
.of-hidden {
overflow: hidden !important;
}
.of-visible {
overflow: visible !important;
}
.of-overlay {
overflow: overlay !important;
}
.of-auto {
overflow: auto !important;
-webkit-overflow-scrolling: touch !important;
}
.of-scroll {
overflow: scroll !important;
-webkit-overflow-scrolling: touch !important;
}
.sta {
position: static !important;
}
.rel {
position: relative !important;
}
.sti,
.sti-t,
.sti-l,
.sti-b,
.sti-r {
position: -webkit-sticky !important;
position: sticky !important;
}
.fix,
.fix-t,
.fix-b,
.fix-l,
.fix-r {
position: fixed !important;
}
.abs,
.abs-t,
.abs-b,
.abs-l,
.abs-r {
position: absolute !important;
}
.fix-t,
.abs-t,
.sti-t {
top: 0 !important;
}
.fix-b,
.sti-b,
.abs-b {
bottom: 0 !important;
}
.fix-l,
.abs-l,
.sti-l {
left: 0 !important;
}
.fix-r,
.sti-r,
.abs-r {
right: 0 !important;
}
.ml-auto,
.mx-auto,
.m-auto {
margin-left: auto !important;
}
.mr-auto,
.mx-auto,
.m-auto {
margin-right: auto !important;
}
.mt-auto,
.my-auto,
.m-auto {
margin-top: auto !important;
}
.mb-auto,
.my-auto,
.m-auto {
margin-bottom: auto !important;
}
.ml-none,
.mx-none,
.m-none {
margin-left: 0 !important;
}
.mr-none,
.mx-none,
.m-none {
margin-right: 0 !important;
}
.mt-none,
.my-none,
.m-none {
margin-top: 0 !important;
}
.mb-none,
.my-none,
.m-none {
margin-bottom: 0 !important;
}
.ml-tiny,
.mx-tiny,
.m-tiny {
margin-left: 0.5rem !important;
}
.mr-tiny,
.mx-tiny,
.m-tiny {
margin-right: 0.5rem !important;
}
.mt-tiny,
.my-tiny,
.m-tiny {
margin-top: 0.5rem !important;
}
.mb-tiny,
.my-tiny,
.m-tiny {
margin-bottom: 0.5rem !important;
}
.ml-small,
.mx-small,
.m-small {
margin-left: 1rem !important;
}
.mr-small,
.mx-small,
.m-small {
margin-right: 1rem !important;
}
.mt-small,
.my-small,
.m-small {
margin-top: 1rem !important;
}
.mb-small,
.my-small,
.m-small {
margin-bottom: 1rem !important;
}
.ml-medium,
.mx-medium,
.m-medium {
margin-left: 2rem !important;
}
.mr-medium,
.mx-medium,
.m-medium {
margin-right: 2rem !important;
}
.mt-medium,
.my-medium,
.m-medium {
margin-top: 2rem !important;
}
.mb-medium,
.my-medium,
.m-medium {
margin-bottom: 2rem !important;
}
.ml-large,
.mx-large,
.m-large {
margin-left: 4rem !important;
}
.mr-large,
.mx-large,
.m-large {
margin-right: 4rem !important;
}
.mt-large,
.my-large,
.m-large {
margin-top: 4rem !important;
}
.mb-large,
.my-large,
.m-large {
margin-bottom: 4rem !important;
}
.pl-none,
.px-none,
.p-none {
padding-left: 0 !important;
}
.pr-none,
.px-none,
.p-none {
padding-right: 0 !important;
}
.pt-none,
.py-none,
.p-none {
padding-top: 0 !important;
}
.pb-none,
.py-none,
.p-none {
padding-bottom: 0 !important;
}
.pl-tiny,
.px-tiny,
.p-tiny {
padding-left: 0.5rem !important;
}
.pr-tiny,
.px-tiny,
.p-tiny {
padding-right: 0.5rem !important;
}
.pt-tiny,
.py-tiny,
.p-tiny {
padding-top: 0.5rem !important;
}
.pb-tiny,
.py-tiny,
.p-tiny {
padding-bottom: 0.5rem !important;
}
.pl-small,
.px-small,
.p-small {
padding-left: 1rem !important;
}
.pr-small,
.px-small,
.p-small {
padding-right: 1rem !important;
}
.pt-small,
.py-small,
.p-small {
padding-top: 1rem !important;
}
.pb-small,
.py-small,
.p-small {
padding-bottom: 1rem !important;
}
.pl-medium,
.px-medium,
.p-medium {
padding-left: 2rem !important;
}
.pr-medium,
.px-medium,
.p-medium {
padding-right: 2rem !important;
}
.pt-medium,
.py-medium,
.p-medium {
padding-top: 2rem !important;
}
.pb-medium,
.py-medium,
.p-medium {
padding-bottom: 2rem !important;
}
.pl-large,
.px-large,
.p-large {
padding-left: 4rem !important;
}
.pr-large,
.px-large,
.p-large {
padding-right: 4rem !important;
}
.pt-large,
.py-large,
.p-large {
padding-top: 4rem !important;
}
.pb-large,
.py-large,
.p-large {
padding-bottom: 4rem !important;
}
@media (min-width:768px) {
.ml-auto-m,
.mx-auto-m,
.m-auto-m {
margin-left: auto !important;
}
.mr-auto-m,
.mx-auto-m,
.m-auto-m {
margin-right: auto !important;
}
.mt-auto-m,
.my-auto-m,
.m-auto-m {
margin-top: auto !important;
}
.mb-auto-m,
.my-auto-m,
.m-auto-m {
margin-bottom: auto !important;
}
.ml-none-m,
.mx-none-m,
.m-none-m {
margin-left: 0 !important;
}
.mr-none-m,
.mx-none-m,
.m-none-m {
margin-right: 0 !important;
}
.mt-none-m,
.my-none-m,
.m-none-m {
margin-top: 0 !important;
}
.mb-none-m,
.my-none-m,
.m-none-m {
margin-bottom: 0 !important;
}
.ml-tiny-m,
.mx-tiny-m,
.m-tiny-m {
margin-left: 0.5rem !important;
}
.mr-tiny-m,
.mx-tiny-m,
.m-tiny-m {
margin-right: 0.5rem !important;
}
.mt-tiny-m,
.my-tiny-m,
.m-tiny-m {
margin-top: 0.5rem !important;
}
.mb-tiny-m,
.my-tiny-m,
.m-tiny-m {
margin-bottom: 0.5rem !important;
}
.ml-small-m,
.mx-small-m,
.m-small-m {
margin-left: 1rem !important;
}
.mr-small-m,
.mx-small-m,
.m-small-m {
margin-right: 1rem !important;
}
.mt-small-m,
.my-small-m,
.m-small-m {
margin-top: 1rem !important;
}
.mb-small-m,
.my-small-m,
.m-small-m {
margin-bottom: 1rem !important;
}
.ml-medium-m,
.mx-medium-m,
.m-medium-m {
margin-left: 2rem !important;
}
.mr-medium-m,
.mx-medium-m,
.m-medium-m {
margin-right: 2rem !important;
}
.mt-medium-m,
.my-medium-m,
.m-medium-m {
margin-top: 2rem !important;
}
.mb-medium-m,
.my-medium-m,
.m-medium-m {
margin-bottom: 2rem !important;
}
.ml-large-m,
.mx-large-m,
.m-large-m {
margin-left: 4rem !important;
}
.mr-large-m,
.mx-large-m,
.m-large-m {
margin-right: 4rem !important;
}
.mt-large-m,
.my-large-m,
.m-large-m {
margin-top: 4rem !important;
}
.mb-large-m,
.my-large-m,
.m-large-m {
margin-bottom: 4rem !important;
}
.pl-none-m,
.px-none-m,
.p-none-m {
padding-left: 0 !important;
}
.pr-none-m,
.px-none-m,
.p-none-m {
padding-right: 0 !important;
}
.pt-none-m,
.py-none-m,
.p-none-m {
padding-top: 0 !important;
}
.pb-none-m,
.py-none-m,
.p-none-m {
padding-bottom: 0 !important;
}
.pl-tiny-m,
.px-tiny-m,
.p-tiny-m {
padding-left: 0.5rem !important;
}
.pr-tiny-m,
.px-tiny-m,
.p-tiny-m {
padding-right: 0.5rem !important;
}
.pt-tiny-m,
.py-tiny-m,
.p-tiny-m {
padding-top: 0.5rem !important;
}
.pb-tiny-m,
.py-tiny-m,
.p-tiny-m {
padding-bottom: 0.5rem !important;
}
.pl-small-m,
.px-small-m,
.p-small-m {
padding-left: 1rem !important;
}
.pr-small-m,
.px-small-m,
.p-small-m {
padding-right: 1rem !important;
}
.pt-small-m,
.py-small-m,
.p-small-m {
padding-top: 1rem !important;
}
.pb-small-m,
.py-small-m,
.p-small-m {
padding-bottom: 1rem !important;
}
.pl-medium-m,
.px-medium-m,
.p-medium-m {
padding-left: 2rem !important;
}
.pr-medium-m,
.px-medium-m,
.p-medium-m {
padding-right: 2rem !important;
}
.pt-medium-m,
.py-medium-m,
.p-medium-m {
padding-top: 2rem !important;
}
.pb-medium-m,
.py-medium-m,
.p-medium-m {
padding-bottom: 2rem !important;
}
.pl-large-m,
.px-large-m,
.p-large-m {
padding-left: 4rem !important;
}
.pr-large-m,
.px-large-m,
.p-large-m {
padding-right: 4rem !important;
}
.pt-large-m,
.py-large-m,
.p-large-m {
padding-top: 4rem !important;
}
.pb-large-m,
.py-large-m,
.p-large-m {
padding-bottom: 4rem !important;
}
}
@media (min-width:1200px) {
.ml-auto-l,
.mx-auto-l,
.m-auto-l {
margin-left: auto !important;
}
.mr-auto-l,
.mx-auto-l,
.m-auto-l {
margin-right: auto !important;
}
.mt-auto-l,
.my-auto-l,
.m-auto-l {
margin-top: auto !important;
}
.mb-auto-l,
.my-auto-l,
.m-auto-l {
margin-bottom: auto !important;
}
.ml-none-l,
.mx-none-l,
.m-none-l {
margin-left: 0 !important;
}
.mr-none-l,
.mx-none-l,
.m-none-l {
margin-right: 0 !important;
}
.mt-none-l,
.my-none-l,
.m-none-l {
margin-top: 0 !important;
}
.mb-none-l,
.my-none-l,
.m-none-l {
margin-bottom: 0 !important;
}
.ml-tiny-l,
.mx-tiny-l,
.m-tiny-l {
margin-left: 0.5rem !important;
}
.mr-tiny-l,
.mx-tiny-l,
.m-tiny-l {
margin-right: 0.5rem !important;
}
.mt-tiny-l,
.my-tiny-l,
.m-tiny-l {
margin-top: 0.5rem !important;
}
.mb-tiny-l,
.my-tiny-l,
.m-tiny-l {
margin-bottom: 0.5rem !important;
}
.ml-small-l,
.mx-small-l,
.m-small-l {
margin-left: 1rem !important;
}
.mr-small-l,
.mx-small-l,
.m-small-l {
margin-right: 1rem !important;
}
.mt-small-l,
.my-small-l,
.m-small-l {
margin-top: 1rem !important;
}
.mb-small-l,
.my-small-l,
.m-small-l {
margin-bottom: 1rem !important;
}
.ml-medium-l,
.mx-medium-l,
.m-medium-l {
margin-left: 2rem !important;
}
.mr-medium-l,
.mx-medium-l,
.m-medium-l {
margin-right: 2rem !important;
}
.mt-medium-l,
.my-medium-l,
.m-medium-l {
margin-top: 2rem !important;
}
.mb-medium-l,
.my-medium-l,
.m-medium-l {
margin-bottom: 2rem !important;
}
.ml-large-l,
.mx-large-l,
.m-large-l {
margin-left: 4rem !important;
}
.mr-large-l,
.mx-large-l,
.m-large-l {
margin-right: 4rem !important;
}
.mt-large-l,
.my-large-l,
.m-large-l {
margin-top: 4rem !important;
}
.mb-large-l,
.my-large-l,
.m-large-l {
margin-bottom: 4rem !important;
}
.pl-none-l,
.px-none-l,
.p-none-l {
padding-left: 0 !important;
}
.pr-none-l,
.px-none-l,
.p-none-l {
padding-right: 0 !important;
}
.pt-none-l,
.py-none-l,
.p-none-l {
padding-top: 0 !important;
}
.pb-none-l,
.py-none-l,
.p-none-l {
padding-bottom: 0 !important;
}
.pl-tiny-l,
.px-tiny-l,
.p-tiny-l {
padding-left: 0.5rem !important;
}
.pr-tiny-l,
.px-tiny-l,
.p-tiny-l {
padding-right: 0.5rem !important;
}
.pt-tiny-l,
.py-tiny-l,
.p-tiny-l {
padding-top: 0.5rem !important;
}
.pb-tiny-l,
.py-tiny-l,
.p-tiny-l {
padding-bottom: 0.5rem !important;
}
.pl-small-l,
.px-small-l,
.p-small-l {
padding-left: 1rem !important;
}
.pr-small-l,
.px-small-l,
.p-small-l {
padding-right: 1rem !important;
}
.pt-small-l,
.py-small-l,
.p-small-l {
padding-top: 1rem !important;
}
.pb-small-l,
.py-small-l,
.p-small-l {
padding-bottom: 1rem !important;
}
.pl-medium-l,
.px-medium-l,
.p-medium-l {
padding-left: 2rem !important;
}
.pr-medium-l,
.px-medium-l,
.p-medium-l {
padding-right: 2rem !important;
}
.pt-medium-l,
.py-medium-l,
.p-medium-l {
padding-top: 2rem !important;
}
.pb-medium-l,
.py-medium-l,
.p-medium-l {
padding-bottom: 2rem !important;
}
.pl-large-l,
.px-large-l,
.p-large-l {
padding-left: 4rem !important;
}
.pr-large-l,
.px-large-l,
.p-large-l {
padding-right: 4rem !important;
}
.pt-large-l,
.py-large-l,
.p-large-l {
padding-top: 4rem !important;
}
.pb-large-l,
.py-large-l,
.p-large-l {
padding-bottom: 4rem !important;
}
}
.sd-low {
box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08) !important;
}
.sd-normal {
box-shadow: 0 0.56rem 1.68rem rgba(0, 0, 0, 0.112) !important;
}
.sd-high {
box-shadow: 0 0.784rem 2.352rem rgba(0, 0, 0, 0.1568) !important;
}
.sd-none {
box-shadow: none !important;
}
.rounded-r {
border-top-right-radius: 2px !important;
border-bottom-right-radius: 2px !important;
}
.rounded-l {
border-top-left-radius: 2px !important;
border-bottom-left-radius: 2px !important;
}
.rounded-t {
border-top-right-radius: 2px !important;
border-top-left-radius: 2px !important;
}
.rounded-b {
border-bottom-right-radius: 2px !important;
border-bottom-left-radius: 2px !important;
}
.rounded {
border-radius: 2px !important;
}
.circle-r {
border-top-right-radius: 9999px !important;
border-bottom-right-radius: 9999px !important;
}
.circle-l {
border-top-left-radius: 9999px !important;
border-bottom-left-radius: 9999px !important;
}
.circle-t {
border-top-right-radius: 9999px !important;
border-top-left-radius: 9999px !important;
}
.circle-b {
border-bottom-right-radius: 9999px !important;
border-bottom-left-radius: 9999px !important;
}
.circle {
border-radius: 9999px !important;
}
.sharp-r {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
.sharp-l {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.sharp-t {
border-top-right-radius: 0 !important;
border-top-left-radius: 0 !important;
}
.sharp-b {
border-bottom-right-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.sharp {
border-radius: 0 !important;
}
.max-w-100 {
max-width: 100% !important;
}
.min-w-100 {
min-width: 100% !important;
}
.min-w-100vw {
min-width: 100vw !important;
}
.max-h-100 {
max-height: 100% !important;
}
.min-h-100 {
min-height: 100% !important;
}
.min-h-100vh {
min-height: 100vh !important;
}
.w-100 {
width: 100% !important;
}
.w-75 {
width: 75% !important;
}
.w-66 {
width: 66.6667% !important;
}
.w-50 {
width: 50% !important;
}
.w-33 {
width: 33.3333% !important;
}
.w-25 {
width: 25% !important;
}
.w-auto {
width: auto !important;
}
.h-100 {
height: 100% !important;
}
.h-75 {
height: 75% !important;
}
.h-66 {
height: 66.6667% !important;
}
.h-50 {
height: 50% !important;
}
.h-33 {
height: 33.3333% !important;
}
.h-25 {
height: 25% !important;
}
.h-auto {
height: auto !important;
}
@media (min-width:768px) {
.w-100-m {
width: 100% !important;
}
.w-75-m {
width: 75% !important;
}
.w-66-m {
width: 66.6667% !important;
}
.w-50-m {
width: 50% !important;
}
.w-33-m {
width: 33.3333% !important;
}
.w-25-m {
width: 25% !important;
}
.w-auto-m {
width: auto !important;
}
.h-100-m {
height: 100% !important;
}
.h-75-m {
height: 75% !important;
}
.h-66-m {
height: 66.6667% !important;
}
.h-50-m {
height: 50% !important;
}
.h-33-m {
height: 33.3333% !important;
}
.h-25-m {
height: 25% !important;
}
.h-auto-m {
height: auto !important;
}
}
@media (min-width:1200px) {
.w-100-l {
width: 100% !important;
}
.w-75-l {
width: 75% !important;
}
.w-66-l {
width: 66.6667% !important;
}
.w-50-l {
width: 50% !important;
}
.w-33-l {
width: 33.3333% !important;
}
.w-25-l {
width: 25% !important;
}
.w-auto-l {
width: auto !important;
}
.h-100-l {
height: 100% !important;
}
.h-75-l {
height: 75% !important;
}
.h-66-l {
height: 66.6667% !important;
}
.h-50-l {
height: 50% !important;
}
.h-33-l {
height: 33.3333% !important;
}
.h-25-l {
height: 25% !important;
}
.h-auto-l {
height: auto !important;
}
}
.fs-italic {
font-style: italic !important;
}
.fs-normal {
font-style: normal !important;
}
.fw-lightest {
font-weight: 100 !important;
}
.fw-lighter {
font-weight: 200 !important;
}
.fw-light {
font-weight: 300 !important;
}
.fw-regular {
font-weight: 400 !important;
}
.fw-medium {
font-weight: 500 !important;
}
.fw-semibold {
font-weight: 600 !important;
}
.fw-bold {
font-weight: 700 !important;
}
.fw-bolder {
font-weight: 800 !important;
}
.fw-boldest {
font-weight: 900 !important;
}
.tt-upper {
letter-spacing: 0.1em !important;
text-transform: uppercase !important;
}
.tt-lower {
text-transform: lowercase !important;
}
.tt-cap {
text-transform: capitalize !important;
}
.wb-all {
word-break: break-all !important;
}
.ws-normal {
white-space: normal !important;
}
.ws-nowrap {
white-space: nowrap !important;
}
.text-ellipsis {
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis;
}
.td-stroke {
text-decoration: line-through !important;
}
.td-underline {
text-decoration: underline !important;
}
.td-none {
text-decoration: none !important;
}
.ta-left {
text-align: left !important;
}
.ta-right {
text-align: right !important;
}
.ta-center {
text-align: center !important;
}
.ta-justify {
text-align: justify !important;
}
@media (min-width:768px) {
.ta-left-m {
text-align: left !important;
}
.ta-right-m {
text-align: right !important;
}
.ta-center-m {
text-align: center !important;
}
.ta-justify-m {
text-align: justify !important;
}
}
@media (min-width:1200px) {
.ta-left-l {
text-align: left !important;
}
.ta-right-l {
text-align: right !important;
}
.ta-center-l {
text-align: center !important;
}
.ta-justify-l {
text-align: justify !important;
}
}
.visible {
visibility: visible !important;
}
.invisible {
visibility: hidden !important;
}
@media print {
.invisible-print {
visibility: hidden !important;
}
}
.zi-low {
z-index: -1 !important;
}
.zi-normal {
z-index: 0 !important;
}
.zi-high {
z-index: 1 !important;
}
.zi-higher {
z-index: 2 !important;
}
.zi-much-higher {
z-index: 3 !important;
}
.zi-highest {
z-index: 4 !important;
}
/*# sourceMappingURL=luda-default.css.map */ | 0.413951 | 0.061059 |
a {
color: #e87722;
text-decoration: none;
-webkit-transition: color 0.5s ease-out;
-moz-transition: color 0.5s ease-out;
-o-transition: color 0.5s ease-out;
-ms-transition: color 0.5s ease-out;
transition: color 0.5s ease-out; }
a:visited {
color: #e87722; }
a:hover {
color: #479dff;
text-decoration: none !important; }
.btn-bold a, .btn-bold a:hover, header .header-logo a, header .header-logo a:visited, .scroll-to-top a {
color: white !important; }
.btn-bold a:hover, header .header-logo a:hover, .scroll-to-top a:hover {
color: white !important; }
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0; }
h3 {
font-weight: 600; }
p {
font-weight: 300;
color: #5c5c5c; }
body {
background-color: #fff;
font-family: "Source Sans Pro", sans-serif;
font-size: 16pt !important;
font-weight: 400;
color: #000; }
.background-white {
background-color: #fff; }
.background-dark, header, footer, #skills, .feature-banner {
background-color: #282828; }
.background-orange {
background-color: #e87722; }
header, footer {
color: white; }
.hidden {
display: none; }
.btn-bold {
margin: auto;
border-radius: 32px;
background-color: #26484c;
width: 300px;
height: 100px;
padding: 18px 0 14px;
text-align: center;
-webkit-transition: background-color 0.5s ease-out;
-moz-transition: background-color 0.5s ease-out;
-o-transition: background-color 0.5s ease-out;
-ms-transition: background-color 0.5s ease-out;
transition: background-color 0.5s ease-out; }
.btn-bold:hover {
background-color: #000; }
.btn-bold:hover #arrow {
font-size: 20pt; }
.btn-bold #arrow {
font-size: inherit; }
hr {
display: block;
height: 1px;
border-bottom: 1px solid #e87722; }
hr hr.light {
border-bottom: 1px solid #282828; }
.margin-t-20 {
height: 20px; }
.margin-t-60 {
height: 60px; }
.width-50 {
width: 80%;
margin: auto; }
.div-line-divider {
padding-right: 20px;
border-right: 1px solid #ccc; }
/* Layouts */
.large-wrapper, .small-wrapper {
padding: 30px; }
.large-wrapper {
margin: 0 40px 0 40px; }
/* Theme */
header {
padding: 50px 0 20px 0; }
header .header-logo {
font-size: 36pt;
line-height: 46pt; }
header .header-logo-slogan {
font-size: 21pt;
line-height: 21pt;
margin-top: 10px; }
header .header-logo-slogan span {
font-weight: bold; }
@media screen and (max-width: 720px) {
header {
text-align: center; }
header .logo-slogan {
text-align: center; }
header span {
font-weight: bold; } }
footer {
padding-bottom: 80px; }
footer p {
color: #969696;
line-height: 20px; }
footer span {
font-size: 10pt; }
#about, #companies, #projects {
padding: 0 0 60px 0; }
#about {
margin-top: 30px;
text-align: left; }
#about h2 {
margin-bottom: 30px; }
#about p {
margin-bottom: 20px; }
#about span {
margin: 30px 20px 0 0; }
#about span i {
margin-right: 10px; }
#about .mega-about {
border-radius: 10px;
padding: 10px;
margin: 20px 0 10px 0; }
#projects i {
margin-left: 10px;
font-size: 20pt; }
#projects .toolbar.mb2.mt2 button {
font-size: 1.5rem;
font-weight: normal;
text-decoration: none;
cursor: pointer;
display: inline-block;
line-height: normal;
padding: .5rem 1rem;
margin: 0 5px 0 0;
height: auto;
border: 1px solid #d3d3d3;
vertical-align: middle;
-webkit-appearance: none;
color: #555;
background-color: white;
margin-bottom: 7px !important;
-webkit-transition: background-color 0.8s ease-out;
-moz-transition: background-color 0.8s ease-out;
-o-transition: background-color 0.8s ease-out;
-ms-transition: background-color 0.8s ease-out;
transition: background-color 0.8s ease-out; }
#projects .toolbar.mb2.mt2 button:hover {
text-decoration: none;
background-color: #3a3a3a;
color: white;
border: 1px solid #d3d3d3; }
#projects .toolbar.mb2.mt2 button:focus {
outline: none;
border-color: var(--darken-2);
box-shadow: 0 0 0 3px var(--darken-3); }
#projects .toolbar.mb2.mt2 button ::-moz-focus-inner {
border: 0;
padding: 0; }
#projects #portfolio {
margin: 3rem 0;
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 3rem;
-moz-column-gap: 3rem;
column-gap: 3rem;
-webkit-column-width: 33.33333333333333%;
-moz-column-width: 33.33333333333333%;
column-width: 33.33333333333333%; }
@media screen and (max-width: 700px) {
#projects #portfolio {
column-count: 2 !important;
-webkit-column-count: 2 !important;
-moz-column-count: 2 !important; } }
@media screen and (max-width: 500px) {
#projects #portfolio {
column-count: 1 !important;
-webkit-column-count: 1 !important;
-moz-column-count: 1 !important; } }
#projects #portfolio .tile {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: all 350ms ease;
transition: all 350ms ease;
margin-bottom: 20px; }
#projects #portfolio .scale-anm {
transform: scale(1); }
#projects #portfolio .tile img {
max-width: 100%;
width: 100%;
height: auto;
margin-bottom: 1rem;
filter: grayscale(0%);
vertical-align: middle;
-webkit-transition: filter 0.5s ease-out;
-moz-transition: filter 0.5s ease-out;
-o-transition: filter 0.5s ease-out;
-ms-transition: filter 0.5s ease-out;
transition: filter 0.5s ease-out;
border: 1px solid #d3d3d3; }
#projects #portfolio .tile img:hover {
filter: grayscale(100%); }
#skills {
padding-top: 30px;
color: white; }
#skills .dev-tech-box span {
font-size: smaller;
font-weight: 300;
color: #7e7e7e; }
#skills .dev-tech-box p {
color: #ffffff; }
.feature-banner {
text-align: center;
width: 100%;
padding: 10px 0 10px 0; }
.feature-banner i {
font-size: 30pt;
margin: 30px 30px 30px 0; }
.feature-banner a {
color: white;
margin: 30px;
-webkit-transition: color 0.5s ease-out;
-moz-transition: color 0.5s ease-out;
-o-transition: color 0.5s ease-out;
-ms-transition: color 0.5s ease-out;
transition: color 0.5s ease-out; }
.feature-banner a:hover {
color: #e87722 !important; }
@media screen and (max-width: 720px) {
.feature-banner i {
font-size: 25pt;
margin: 10px; }
.feature-banner a {
margin: 10px; } }
.scroll-to-top {
width: 40px;
height: 40px;
position: fixed;
bottom: 50px;
right: 50px;
display: none;
background-color: rgba(105, 105, 105, 0.267);
border-bottom: 5px solid #f7f7f7;
color: #ffffff;
text-align: center;
font-size: 14pt;
-webkit-transition: font-size 0.5s ease-out;
-moz-transition: font-size 0.5s ease-out;
-o-transition: font-size 0.5s ease-out;
-ms-transition: font-size 0.5s ease-out;
transition: font-size 0.5s ease-out; }
.scroll-to-top:hover {
font-size: 16pt; }
.mini-social-bar i {
margin-right: 30px; }
/*
------
------
MODALS
------
------
*/
.modal-content-wrapper {
background-color: white;
padding: 30px;
font-size: 14pt;
font-weight: 300;
border-radius: 10px; }
.modal-content-wrapper .exit-btn {
float: right; }
.modal-content-wrapper img {
margin-bottom: 30px; }
.modal-content-wrapper h2 {
margin-bottom: 30px; } | main.css | a {
color: #e87722;
text-decoration: none;
-webkit-transition: color 0.5s ease-out;
-moz-transition: color 0.5s ease-out;
-o-transition: color 0.5s ease-out;
-ms-transition: color 0.5s ease-out;
transition: color 0.5s ease-out; }
a:visited {
color: #e87722; }
a:hover {
color: #479dff;
text-decoration: none !important; }
.btn-bold a, .btn-bold a:hover, header .header-logo a, header .header-logo a:visited, .scroll-to-top a {
color: white !important; }
.btn-bold a:hover, header .header-logo a:hover, .scroll-to-top a:hover {
color: white !important; }
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0; }
h3 {
font-weight: 600; }
p {
font-weight: 300;
color: #5c5c5c; }
body {
background-color: #fff;
font-family: "Source Sans Pro", sans-serif;
font-size: 16pt !important;
font-weight: 400;
color: #000; }
.background-white {
background-color: #fff; }
.background-dark, header, footer, #skills, .feature-banner {
background-color: #282828; }
.background-orange {
background-color: #e87722; }
header, footer {
color: white; }
.hidden {
display: none; }
.btn-bold {
margin: auto;
border-radius: 32px;
background-color: #26484c;
width: 300px;
height: 100px;
padding: 18px 0 14px;
text-align: center;
-webkit-transition: background-color 0.5s ease-out;
-moz-transition: background-color 0.5s ease-out;
-o-transition: background-color 0.5s ease-out;
-ms-transition: background-color 0.5s ease-out;
transition: background-color 0.5s ease-out; }
.btn-bold:hover {
background-color: #000; }
.btn-bold:hover #arrow {
font-size: 20pt; }
.btn-bold #arrow {
font-size: inherit; }
hr {
display: block;
height: 1px;
border-bottom: 1px solid #e87722; }
hr hr.light {
border-bottom: 1px solid #282828; }
.margin-t-20 {
height: 20px; }
.margin-t-60 {
height: 60px; }
.width-50 {
width: 80%;
margin: auto; }
.div-line-divider {
padding-right: 20px;
border-right: 1px solid #ccc; }
/* Layouts */
.large-wrapper, .small-wrapper {
padding: 30px; }
.large-wrapper {
margin: 0 40px 0 40px; }
/* Theme */
header {
padding: 50px 0 20px 0; }
header .header-logo {
font-size: 36pt;
line-height: 46pt; }
header .header-logo-slogan {
font-size: 21pt;
line-height: 21pt;
margin-top: 10px; }
header .header-logo-slogan span {
font-weight: bold; }
@media screen and (max-width: 720px) {
header {
text-align: center; }
header .logo-slogan {
text-align: center; }
header span {
font-weight: bold; } }
footer {
padding-bottom: 80px; }
footer p {
color: #969696;
line-height: 20px; }
footer span {
font-size: 10pt; }
#about, #companies, #projects {
padding: 0 0 60px 0; }
#about {
margin-top: 30px;
text-align: left; }
#about h2 {
margin-bottom: 30px; }
#about p {
margin-bottom: 20px; }
#about span {
margin: 30px 20px 0 0; }
#about span i {
margin-right: 10px; }
#about .mega-about {
border-radius: 10px;
padding: 10px;
margin: 20px 0 10px 0; }
#projects i {
margin-left: 10px;
font-size: 20pt; }
#projects .toolbar.mb2.mt2 button {
font-size: 1.5rem;
font-weight: normal;
text-decoration: none;
cursor: pointer;
display: inline-block;
line-height: normal;
padding: .5rem 1rem;
margin: 0 5px 0 0;
height: auto;
border: 1px solid #d3d3d3;
vertical-align: middle;
-webkit-appearance: none;
color: #555;
background-color: white;
margin-bottom: 7px !important;
-webkit-transition: background-color 0.8s ease-out;
-moz-transition: background-color 0.8s ease-out;
-o-transition: background-color 0.8s ease-out;
-ms-transition: background-color 0.8s ease-out;
transition: background-color 0.8s ease-out; }
#projects .toolbar.mb2.mt2 button:hover {
text-decoration: none;
background-color: #3a3a3a;
color: white;
border: 1px solid #d3d3d3; }
#projects .toolbar.mb2.mt2 button:focus {
outline: none;
border-color: var(--darken-2);
box-shadow: 0 0 0 3px var(--darken-3); }
#projects .toolbar.mb2.mt2 button ::-moz-focus-inner {
border: 0;
padding: 0; }
#projects #portfolio {
margin: 3rem 0;
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 3rem;
-moz-column-gap: 3rem;
column-gap: 3rem;
-webkit-column-width: 33.33333333333333%;
-moz-column-width: 33.33333333333333%;
column-width: 33.33333333333333%; }
@media screen and (max-width: 700px) {
#projects #portfolio {
column-count: 2 !important;
-webkit-column-count: 2 !important;
-moz-column-count: 2 !important; } }
@media screen and (max-width: 500px) {
#projects #portfolio {
column-count: 1 !important;
-webkit-column-count: 1 !important;
-moz-column-count: 1 !important; } }
#projects #portfolio .tile {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: all 350ms ease;
transition: all 350ms ease;
margin-bottom: 20px; }
#projects #portfolio .scale-anm {
transform: scale(1); }
#projects #portfolio .tile img {
max-width: 100%;
width: 100%;
height: auto;
margin-bottom: 1rem;
filter: grayscale(0%);
vertical-align: middle;
-webkit-transition: filter 0.5s ease-out;
-moz-transition: filter 0.5s ease-out;
-o-transition: filter 0.5s ease-out;
-ms-transition: filter 0.5s ease-out;
transition: filter 0.5s ease-out;
border: 1px solid #d3d3d3; }
#projects #portfolio .tile img:hover {
filter: grayscale(100%); }
#skills {
padding-top: 30px;
color: white; }
#skills .dev-tech-box span {
font-size: smaller;
font-weight: 300;
color: #7e7e7e; }
#skills .dev-tech-box p {
color: #ffffff; }
.feature-banner {
text-align: center;
width: 100%;
padding: 10px 0 10px 0; }
.feature-banner i {
font-size: 30pt;
margin: 30px 30px 30px 0; }
.feature-banner a {
color: white;
margin: 30px;
-webkit-transition: color 0.5s ease-out;
-moz-transition: color 0.5s ease-out;
-o-transition: color 0.5s ease-out;
-ms-transition: color 0.5s ease-out;
transition: color 0.5s ease-out; }
.feature-banner a:hover {
color: #e87722 !important; }
@media screen and (max-width: 720px) {
.feature-banner i {
font-size: 25pt;
margin: 10px; }
.feature-banner a {
margin: 10px; } }
.scroll-to-top {
width: 40px;
height: 40px;
position: fixed;
bottom: 50px;
right: 50px;
display: none;
background-color: rgba(105, 105, 105, 0.267);
border-bottom: 5px solid #f7f7f7;
color: #ffffff;
text-align: center;
font-size: 14pt;
-webkit-transition: font-size 0.5s ease-out;
-moz-transition: font-size 0.5s ease-out;
-o-transition: font-size 0.5s ease-out;
-ms-transition: font-size 0.5s ease-out;
transition: font-size 0.5s ease-out; }
.scroll-to-top:hover {
font-size: 16pt; }
.mini-social-bar i {
margin-right: 30px; }
/*
------
------
MODALS
------
------
*/
.modal-content-wrapper {
background-color: white;
padding: 30px;
font-size: 14pt;
font-weight: 300;
border-radius: 10px; }
.modal-content-wrapper .exit-btn {
float: right; }
.modal-content-wrapper img {
margin-bottom: 30px; }
.modal-content-wrapper h2 {
margin-bottom: 30px; } | 0.25174 | 0.106877 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www.google.com/notebook/"),
url-prefix("http://google.com/notebook/") {
/* removes all images of card edges, corners etc. */
.qa, .ra, .ua, .va, .wa, .na, .xa,
.gb, .hb, .ib, .jb, .kb, .lb, .mb {
background-image: none !important;
}
/* light border on all notes */
.ba {
border: 1px solid #E8E8E8 !important;
}
/* thicker border on selected note */
.hb, .lb, .kb {
height: 2px !important;
background-color: #CCCCCC !important;
}
.jb {
width: 2px !important;
background-color: #CCCCCC !important;
}
/* vertical bar on left of note */
a.xa:hover, .nb {
background-image: none !important;
background-color: #CCCCCC !important;
}
/* arrow on top-right of note */
a.sa, a.ib {
background-image: url('http://img58.imageshack.us/img58/5423/arrowzn5.png') !important;
background-position: center !important;
background-color: #E8E8E8 !important;
-moz-border-radius-bottomleft: 10px !important;
}
.xc, /* 'add comment' section */
.q, /* 'expand section' link */
#page_footer {
display: none !important;
}
}
/* THE CODE BELOW IS APPLIED ONLY TO THE FULLPAGE */
@-moz-document url("http://www.google.com/notebook/"),
url("http://google.com/notebook/")
url-prefix("http://www.google.com/notebook/#"),
url-prefix("http://google.com/notebook/#")
url-prefix("http://www.google.com/notebook/fullpage#"),
url-prefix("http://google.com/notebook/fullpage#") {
/* makes notes scroll down */
.n {
height: auto !important;
}
/* makes room for formatting toolbar */
#search_box {
display: block !important;
}
#gn_ph > tbody > tr > td:first-child {
vertical-align: middle !important;
}
/* formatting toolbar */
.tr_toolbar {
position: fixed !important;
top: 25px !important;
left: 500px !important;
padding: 2px !important;
background-color: #E8E8E8 !important;
border: 2px solid #CCCCCC !important;
z-index: 2000 !important;
}
.tr_toolbar:before {
content: "Formatting Toolbar: " !important;
font-weight: bold !important;
}
/* places title & source link at bottom of note */
.ec + div {
position: absolute !important;
bottom: 5px !important;
}
.ec {
position: absolute !important;
bottom: 20px !important;
}
.ec ~ .zb, .ec ~ .ac {
margin-bottom: 40px !important;
}
/* incr in steps of 15 to see more lines in the collapsed view, 25px for 2 lines, 40 for 3 & so on */
.ac {
height: 10px !important;
}
}
/* THE CODE BELOW IS APPLIED ONLY TO THE HTML BLOCK IN THE ADDON */
@-moz-document url-prefix("http://www.google.com/notebook/onpage?") {
/* makes menu-items in the note menu appear in single row */
.n > .ub > .vb {
display: inline !important;
padding: 0 5px 0 5px !important;
}
.ec {
position: absolute !important;
bottom: 5px !important;
}
.ec + .zb, .ec + .ac {
margin-bottom: 25px !important;
}
} | data/usercss/2149.user.css |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www.google.com/notebook/"),
url-prefix("http://google.com/notebook/") {
/* removes all images of card edges, corners etc. */
.qa, .ra, .ua, .va, .wa, .na, .xa,
.gb, .hb, .ib, .jb, .kb, .lb, .mb {
background-image: none !important;
}
/* light border on all notes */
.ba {
border: 1px solid #E8E8E8 !important;
}
/* thicker border on selected note */
.hb, .lb, .kb {
height: 2px !important;
background-color: #CCCCCC !important;
}
.jb {
width: 2px !important;
background-color: #CCCCCC !important;
}
/* vertical bar on left of note */
a.xa:hover, .nb {
background-image: none !important;
background-color: #CCCCCC !important;
}
/* arrow on top-right of note */
a.sa, a.ib {
background-image: url('http://img58.imageshack.us/img58/5423/arrowzn5.png') !important;
background-position: center !important;
background-color: #E8E8E8 !important;
-moz-border-radius-bottomleft: 10px !important;
}
.xc, /* 'add comment' section */
.q, /* 'expand section' link */
#page_footer {
display: none !important;
}
}
/* THE CODE BELOW IS APPLIED ONLY TO THE FULLPAGE */
@-moz-document url("http://www.google.com/notebook/"),
url("http://google.com/notebook/")
url-prefix("http://www.google.com/notebook/#"),
url-prefix("http://google.com/notebook/#")
url-prefix("http://www.google.com/notebook/fullpage#"),
url-prefix("http://google.com/notebook/fullpage#") {
/* makes notes scroll down */
.n {
height: auto !important;
}
/* makes room for formatting toolbar */
#search_box {
display: block !important;
}
#gn_ph > tbody > tr > td:first-child {
vertical-align: middle !important;
}
/* formatting toolbar */
.tr_toolbar {
position: fixed !important;
top: 25px !important;
left: 500px !important;
padding: 2px !important;
background-color: #E8E8E8 !important;
border: 2px solid #CCCCCC !important;
z-index: 2000 !important;
}
.tr_toolbar:before {
content: "Formatting Toolbar: " !important;
font-weight: bold !important;
}
/* places title & source link at bottom of note */
.ec + div {
position: absolute !important;
bottom: 5px !important;
}
.ec {
position: absolute !important;
bottom: 20px !important;
}
.ec ~ .zb, .ec ~ .ac {
margin-bottom: 40px !important;
}
/* incr in steps of 15 to see more lines in the collapsed view, 25px for 2 lines, 40 for 3 & so on */
.ac {
height: 10px !important;
}
}
/* THE CODE BELOW IS APPLIED ONLY TO THE HTML BLOCK IN THE ADDON */
@-moz-document url-prefix("http://www.google.com/notebook/onpage?") {
/* makes menu-items in the note menu appear in single row */
.n > .ub > .vb {
display: inline !important;
padding: 0 5px 0 5px !important;
}
.ec {
position: absolute !important;
bottom: 5px !important;
}
.ec + .zb, .ec + .ac {
margin-bottom: 25px !important;
}
} | 0.308815 | 0.074433 |
body{background:#f7f7f7;}
/*基本资料*/
.mydata,.basicWrapp{margin:100px auto 40px auto;overflow:hidden;zoom:1;}
.singleWrapper .mydata h3{text-align:center;}
.mydata,.basicWrapp .basicForm,.bindaccount{background:#fff;border:1px solid #e0e0e0;border-radius:3px;padding:15px;}
.basicWrapp h3,.farivate h3,.mydata h3{color:#303030;font-weight:bold;border-bottom:1px solid #ededed;padding-bottom:10px;text-align:left;}
.basicWrapp .basicForm,.bindaccount{float:left;min-width:933px;overflow:hidden;margin-left:20px;position:relative;padding:20px;}
.basicWrapp .basicForm .input_group{margin-top:20px;}
.basicWrapp .group{color:#7e7e7e;font-size:16px;letter-spacing:1px;position:relative;height:34px;line-height:32px;margin-bottom:20px;}
.basicWrapp .group.lines,.bindaccount .lines{border-bottom:1px dashed #e7e7e7;padding:0 0 20px 0;}
.basicWrapp .group .bform{position:absolute;left:100px;top:0;width:370px;}
.basicWrapp .group .bform .inputs{border:none;width:100%;height:32px;background:#f6f6f6;border:1px solid #ececec;padding:0 10px;}
.basicWrapp .group .bindPhone{color:#53afc3;text-decoration:underline;padding-left:10px;}
.basicWrapp .group.radiogrop{line-height:14px;height:15px;}
.basicWrapp .check-wrapp{margin-right:10px;}
.basicWrapp .group .radiowrap{float:left;margin-right:15px;}
.basicWrapp .group .radiowrap label{float:left;}
.basicWrapp .bform.selectwrap{width:400px;}
.basicWrapp .selectwrap label{margin:0 10px;}
.basicWrapp .group .select-content.csrq{width:80px;float:left;}
.basicWrapp .group .select-content.szd{float:left;margin-right:10px;}
.basicWrapp .group.sexsm{height:200px;margin-bottom:20px;}
.basicWrapp .group .tarea{width:500px;height:180px;overflow:hidden;resize:none;border:1px solid #ececec;padding:10px;}
.basicWrapp .group h4{font-size:13px;}
.basicWrapp .group h4 label{color:#ff0000;padding-right:10px;}
.basicWrapp .group .save{color:#000;background:#303030;color:#fff;border:none;padding:0 27px;cursor:pointer;}
.basicWrapp .group .save:hover{background:#db4828;}
.basicWrapp .uploadWrap{position:absolute;right:0px;top:80px;width:200px;padding-left:100px;background:#fff;}
.basicWrapp .uploadWrap .imgPanel{background:#f5f5f5;border:1px solid #ededed;width:180px;height:180px;overflow:hidden;}
.basicWrapp .uploadWrap .upbtn{color:#f3c6bc;background:#da4928;line-height:30px;width:180px;display:block;height:30px;position:relative;text-align:center;border:none;cursor:pointer;margin-top:10px;}
.basicWrapp .uploadWrap .upbtn input{position:absolute;width:180px;top:0;left:0;bottom:0;cursor:pointer;right:0;opacity:0;filter:alpha(opacity=0);}
.menuTool{width:200px;background:#e8e8e8;float:left;text-align:center;color:#303030;}
.menuTool .face{border:1px solid #e0e0e0;border-radius:3px;width:160px;box-sizing:border-box;padding:10px;height:160px;background:#fff;margin:20px auto;}
.menuTool .menu{margin:10px 0;min-height:300px;}
.menuTool .menu a{display:block;padding:15px 0;color:#303030;font-size:14px;}
.menuTool .menu a.dashed{border-bottom:1px dashed #d9d9d9;}
.menuTool .menu a.lines{border-bottom:1px solid #d4d4d4;}
.menuTool .menu a em{padding:10px 18px;background:url(../img/iconlist.png) no-repeat;}
.menuTool .menu a.binfo em{background-position:0 -156px;}
.menuTool .menu .binfo.select em{background-position:0 -113px;}
.menuTool .menu a.baccount em{background-position:-52px -157px;}
.menuTool .menu a.mfarvi em{background-position:-160px -157px;}
.menuTool .menu a.cpwd em{background-position:-107px -157px;}
.menuTool .menu .cpwd.select em{background-position:-107px -118px;}
.menuTool .menu a.select{background-color:#da4928;color:#fff;}
.menuTool .menu .baccount.select em{background-position:-52px -116px;}
.menuTool .menu .mfarvi.select em{background-position:-160px -119px;}
/*我的收藏*/
.farivate{float:left;position:relative;margin-left:20px;}
.farivate .queryStore{width:980px;overflow:hidden;}
.farivate .f_top{background:#fff;padding:10px 0 0 0;}
.farivate .f_top h3{padding-left:10px;}
.farivate .tab{margin-top:20px;padding-bottom:10px;border-bottom:1px solid #d0d0d0;}
.farivate .tab a{color:#303030;padding-bottom:10px;font-size:16px;font-weight:bold;}
.farivate .tab .selcted{border-bottom:1px solid #f86645;}
.farivate .tab .single{margin:0 30px 0 10px;}
.farivate .tab_price{padding:20px 10px;background:#efefef;position:relative;}
.farivate .tab_price .all{font-size:18px;color:#f88167;}
.farivate .tab_price a{color:#808080;font-size:14px;margin-right:20px;line-height:25px;}
.farivate .tab_price a:hover{text-decoration:underline;color:#f88167;}
.farivate .tab_price button{position:absolute;color:#fff;background:#f85300;padding:3px 13px;font-size:18px;top:30px;right:20px;cursor:pointer;border:none;}
/*搭调*/
.tune{margin:20px 0;text-align:center;}
.mydata{padding:15px 0;}
.mydata.editdata{width:100%;height:100%;overflow-y:scroll;padding:0;margin:0 auto;background:#f7f7f7;}
.mydata.editdata .epanel{margin:73px auto 0 auto;width:1200px;background:#fff;box-shadow:0 0 5px rgba(0,0,0,0.3);padding-bottom:10px;}
.mydata.editdata .epanel h3{padding:20px 0;}
.mydata .data_txt{padding:20px;background:#efefef;color:#525252;font-size:14px;border-bottom:1px solid #ededed;}
.mydata .data_txt span{padding-right:30px;}
.mydata .data_txt input{border:none;background:#fff;width:60px;height:27px;padding:0 3px;margin:0 5px;}
/*肤色*/
.mydata .skin,.mydata .bodytype,.mydata .outline,.mydata .sextype{overflow:hidden;zoom:1;padding:20px 40px;color:#737373;}
.mydata .title{font-size:18px;}
.mydata .skin_sel,.mydata .btype,.outline .oline,.face .face_sel{width:100px;float:left;text-align:center;margin:0 10px;}
.mydata .skin_sel em{background:url(../img/skin.png) no-repeat;width:80px;height:90px;display:inline-block;}
.mydata .skin_sel p.name,.mydata .btype p.name,.outline p.name,.face p.name{padding:10px 0;text-align:center;font-size:13px;}
.mydata .skin1 em{background-position:0 0;}
.mydata .skin2 em{background-position:-123px 0;}
.mydata .skin3 em{background-position:-246px 0;}
.mydata .skin4 em{background-position:-369px 0;}
.mydata .skin5 em{background-position:-492px 0;}
.mydata .skin6 em{background-position:-615px 0;}
.mydata .skin7 em{background-position:-738px 0;}
.mydata .skin8 em{background-position:-861px 0;}
/*脸部数据*/
.mydata .face{overflow:hidden;zoom:1;margin:20px 0;}
.mydata .face .face_sel{width:80px;}
.mydata .face_sel em{background:url(../img/face.jpg) no-repeat;width:55px;height:70px;display:inline-block;}
.mydata .face p.name{padding:0 0 10px 0;}
.mydata .face .title{font-size:14px;line-height:60px;}
.mydata .face1 em{background-position:0 0;}
/*身材类型*/
.mydata .bodytype,.mydata .outline,.mydata .sextype{border-top:1px dashed #b2b2b2;margin-top:10px;padding-top:20px;}
.mydata .btype{width:185px;}
.mydata .btype em{background:url(../img/bodytype.png) no-repeat;width:100px;height:295px;display:inline-block;}
.mydata .btype p.name{font-size:13px;}
.mydata .btype1 em{background-position:0 0;}
.mydata .btype2 em{background-position:-109px 0;}
.mydata .btype3 em{background-position:-236px 0;}
.mydata .btype4 em{background-position:-364px 0;}
.mydata .btype5 em{background-position:-464px 0;}
/*廓形感*/
.mydata .outline .oline{width:150px;}
.mydata .oline em{background:url(../img/outline.jpg) no-repeat;width:120px;height:316px;display:inline-block;}
.mydata .oline2 em{background-position:-141px 0;}
/*性格类型判定*/
.mydata .sextype .sexlist{width:100%;margin-top:20px;}
.mydata .sextype .sex{width:50%;float:left;position:relative;}
.mydata .sextype .sex .sex_xq{float:left;}
.mydata .sextype .sex .sexradio{margin:90px 15px;}
.mydata .sextype .sex .sexms{margin-top:76px;width:290px;font-size:13px;}
.mydata .goTune{margin:20px auto;width:220px;text-align:center;}
.mydata .goTune .btn{background:url(../img/godp.png) #da4928 188px center no-repeat;color:#fff;font-size:18px;height:57px;display:block;line-height:57px;border-radius:3px;text-align:center;margin:10px 0;}
.mydata .goTune .prefect{text-decoration:underline;color:#2c7b9f;letter-spacing:1px;}
/*完整数据*/
.alldata{background:url(../img/mydata_bg.jpg) #fff;background-position:center center;}
.alldata .data1{text-align:center;position:relative;width:330px;margin:0 auto;}
.alldata .data1 .model{margin:0px 0 10px 0;width:280px;}
.alldata .data1 .autoBg{display:block;width:140px;height:40px;border:none;margin:0 auto;background:#333333;color:#ffffff;font-size:14px;border-radius:5px;
box-shadow:2px 2px 20px rgba(0,0,0,0.8);-webkit-box-shadow:2px 2px 20px rgba(0,0,0,0.8);}
.alldata .data1 .data{position:absolute;cursor:pointer}
.alldata .data1 .data .now{display:none;}
.alldata .data1 .data_01{top:187px;right:52px;}
.alldata .data1 .data_02{top:370px;right:-59px;}
.alldata .data1 .data_03{bottom:137px;right:-25px;}
.alldata .data1 .data_04{top:157px;left:-34px;}
.alldata .data1 .data_05{top:354px;left:-116px;}
.alldata .data1 .data_06{bottom:196px;left:-102px;}
.alldata .data1 .txt{float:left;padding-left:10px;font-size:13px;color:#da4928;text-align:left;}
.alldata .data1 .txt.rtxt{padding:0 10px 0 0;text-align:right;}
.alldata .data1 .txt label{font-size:10px;color:#444444;}
.alldatas{position:relative;}
.alldatas .mask{background-color:rgba(0,0,0,0.7);position:absolute;top:0;bottom:0;left:0;right:0;z-index:10;}
.alldatas .data2{background:url(../img/report_bg.jpg) #000 0% 90%;height:100%;padding:80px 0 0 0;overflow-y:scroll; }
.alldatas .data2 .result{color:#fff;position:relative;z-index:13;text-align:center;}
.alldatas .data2 .result .reports{text-align:center;position:relative;}
.alldatas .data2 .result .reports .vertical{border-left:1px solid #fff;position:absolute;top:0px;left:50%;height:100%;}
.alldatas .report{position:relative;}
.alldatas .report .img{width:94px;height:94px;margin:30px auto;border-radius:94px;border:1px solid #fff;display:block;overflow:hidden;background:#414141;}
.alldatas .report .img img{width:87px;height:87px;border-radius:87px;margin:3px 3px 3px 2px;position:relative;}
.alldatas .report span.txt{position:absolute;top:16px;line-height:27px;}
.alldatas .report span.txt.rtxt{margin-left:63px;text-align:left;left:50%;}
.alldatas .report span.txt.ltxt{text-align:right;left:280px;}
.alldatas .report span.txt h4{color:#caaf43;}
.alldatas .data2 .result h4 span{background:#0a0a0a;padding:5px 15px;font-size:18px;box-shadow:0px 0px 25px #000;border-radius:5px;}
.alldatas .data2 .singleReport{background:rgba(131,131,131,0.7);padding-bottom:100px;}
.alldatas .data2 .singleReport h3{text-align:left;font-weight:bold;padding:20px 0 20px 10px;}
.alldatas .data2 .singleReport .queryStore{background:none;width:1200px;margin:0 auto;}
.alldatas .data2 .singleReport .datalist{margin:0;background:#fff;}
.alldatas .data2 .singleReport .datalist .item{height:360px;margin:0 12px;}
.popmask{background:rgba(0,0,0,0.7);position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;opacity:0;display:none;}
.popdata{position:absolute;min-width:740px;margin:0 auto;top:200px;left:50%;margin-left:-370px;padding:15px;border-radius:5px;background:#fff;z-index:20;}
.popdata h3{border-bottom:1px solid #e5e5e5;color:#565656;font-weight:bold;padding-bottom:10px;}
.popdata .group_btn{border-top:1px solid #e5e5e5;padding-top:10px;margin:20px 0 0 0;}
.popdata .group_btn button{border:none;border:1px solid #c64200;color:#f85300;width:80px;height:30px;background:#fff;margin:0 10px;}
.popdata .group_btn button:hover{background:#f85300;color:#fff;}
.popdata .wrap{overflow:hidden;zoom:1;padding:10px 0;min-height:70px;margin:15px 0 15px 54px;color:#505050;}
.popdata .wrap .title{float:left;padding-right:10px;}
.popdata .wrap_bar{height:20px;float:left;padding:0 10px;position:relative;border-radius:13px;border:1px solid #c3c3c3;background:none;}
.popdata .wrap_bar .scale{height:9px;position:relative;width:288px;background:url(../img/sliderbg.jpg);margin:7px auto;border-radius:5px;}
.popdata .wrap_bar .scale span{background:url("../img/hander.png");cursor:pointer;height:33px;left: -2px;position:absolute;top: -15px;width:40px;}
.popdata .wrap_bar .scale div{background:url("../img/sliderbg.jpg") 0 -8px;bottom: 0;height:9px;left: 0;position: absolute;width: 0;border-radius:0 5px; }
.popdata .wrap_bar label{position:absolute;top:34px;padding-top:5px;display:block;}
.popdata .wrap_bar label:after{content:"|";position:absolute;top:-18px;z-index:-1;}
.popdata .wrap_bar label.start:after{left:-1px;}
.popdata .wrap_bar label.end:after{right:10px;}
.popdata .wrap_bar label.center:after{right:30px;}
.popdata .wrap_bar .start{left:11px;}
.popdata .wrap_bar .end{right:2px;}
/*修改密码*/
.basicForm.cpwd label{color:#ff4040;padding-right:10px;}
.basicForm.cpwd .sub{text-align:center;}
.basicForm.cpwd .subpwd{background:#da4928;color:#fff;padding:5px 30px;border:none;}
.basicForm.cpwd .info{margin-left:422px;color:#ff0000;}
.bindaccount{text-align:center;}
.bindaccount .ms{color:#8e8e8e;font-size:16px;padding:10px 0;}
.bindaccount .bindlist{text-align:left;}
.bindaccount .bindlist .bind{height:65px;padding:20px 0;overflow:hidden;zoom:1;}
.bindaccount .bindlist .bind .name{color:#303030;font-weight:bold;line-height:65px;margin:0 40px;}
.bindaccount .bindlist .bind .status{color:#303030;line-height:65px;}
.bindaccount .bindlist .bind .bd{float:left;}
.bindaccount .bindlist .bind .rbd{float:right;}
.bindaccount .bindlist .bind .btn{background:#da4928;color:#fff;padding:6px 18px;margin-top:18px;cursor:pointer;}
.bindaccount .bindlist .icon{background:url(../img/login_icons.png) no-repeat;width:66px;height:66px;display:block;}
.bindaccount .bindlist .icon1{background-position:0 -233px;}
.bindaccount .bindlist .icon2{background-position:-78px -233px;}
.bindaccount .bindlist .icon3{background-position:0px -160px;}
.bindaccount .bindlist .icon4{background-position:-80px -160px;}
.bindaccount .bindlist .icon5{background-position:-159px -160px;}
.bindaccount .bindlist .icon6{background-position:-160px -233px;}
.unlink{margin:100px auto 0 auto;text-align:center;padding-top:50px;}
.unlink .link{margin:0 auto;width:320px;}
.unlink .link .txt{float:right;margin-top:13px;text-align: left;color: #313131;padding-left:15px;}
.unlink .link .txt h3{font-size:24px;}
.unlink .link .txt span{font-size:14px;}
.unlink .link .txt a{color:#5cb1e1;}
.unlink .l404{width:100%;overflow:hidden;zoom:1;}
.unlink .l404 .l4{width:45%;text-align:right;float:left;margin:20px 10px 0 0;}
.unlink .l404 .r4{text-align:left;width:45%;float:left;} | Public/css/basic.css | body{background:#f7f7f7;}
/*基本资料*/
.mydata,.basicWrapp{margin:100px auto 40px auto;overflow:hidden;zoom:1;}
.singleWrapper .mydata h3{text-align:center;}
.mydata,.basicWrapp .basicForm,.bindaccount{background:#fff;border:1px solid #e0e0e0;border-radius:3px;padding:15px;}
.basicWrapp h3,.farivate h3,.mydata h3{color:#303030;font-weight:bold;border-bottom:1px solid #ededed;padding-bottom:10px;text-align:left;}
.basicWrapp .basicForm,.bindaccount{float:left;min-width:933px;overflow:hidden;margin-left:20px;position:relative;padding:20px;}
.basicWrapp .basicForm .input_group{margin-top:20px;}
.basicWrapp .group{color:#7e7e7e;font-size:16px;letter-spacing:1px;position:relative;height:34px;line-height:32px;margin-bottom:20px;}
.basicWrapp .group.lines,.bindaccount .lines{border-bottom:1px dashed #e7e7e7;padding:0 0 20px 0;}
.basicWrapp .group .bform{position:absolute;left:100px;top:0;width:370px;}
.basicWrapp .group .bform .inputs{border:none;width:100%;height:32px;background:#f6f6f6;border:1px solid #ececec;padding:0 10px;}
.basicWrapp .group .bindPhone{color:#53afc3;text-decoration:underline;padding-left:10px;}
.basicWrapp .group.radiogrop{line-height:14px;height:15px;}
.basicWrapp .check-wrapp{margin-right:10px;}
.basicWrapp .group .radiowrap{float:left;margin-right:15px;}
.basicWrapp .group .radiowrap label{float:left;}
.basicWrapp .bform.selectwrap{width:400px;}
.basicWrapp .selectwrap label{margin:0 10px;}
.basicWrapp .group .select-content.csrq{width:80px;float:left;}
.basicWrapp .group .select-content.szd{float:left;margin-right:10px;}
.basicWrapp .group.sexsm{height:200px;margin-bottom:20px;}
.basicWrapp .group .tarea{width:500px;height:180px;overflow:hidden;resize:none;border:1px solid #ececec;padding:10px;}
.basicWrapp .group h4{font-size:13px;}
.basicWrapp .group h4 label{color:#ff0000;padding-right:10px;}
.basicWrapp .group .save{color:#000;background:#303030;color:#fff;border:none;padding:0 27px;cursor:pointer;}
.basicWrapp .group .save:hover{background:#db4828;}
.basicWrapp .uploadWrap{position:absolute;right:0px;top:80px;width:200px;padding-left:100px;background:#fff;}
.basicWrapp .uploadWrap .imgPanel{background:#f5f5f5;border:1px solid #ededed;width:180px;height:180px;overflow:hidden;}
.basicWrapp .uploadWrap .upbtn{color:#f3c6bc;background:#da4928;line-height:30px;width:180px;display:block;height:30px;position:relative;text-align:center;border:none;cursor:pointer;margin-top:10px;}
.basicWrapp .uploadWrap .upbtn input{position:absolute;width:180px;top:0;left:0;bottom:0;cursor:pointer;right:0;opacity:0;filter:alpha(opacity=0);}
.menuTool{width:200px;background:#e8e8e8;float:left;text-align:center;color:#303030;}
.menuTool .face{border:1px solid #e0e0e0;border-radius:3px;width:160px;box-sizing:border-box;padding:10px;height:160px;background:#fff;margin:20px auto;}
.menuTool .menu{margin:10px 0;min-height:300px;}
.menuTool .menu a{display:block;padding:15px 0;color:#303030;font-size:14px;}
.menuTool .menu a.dashed{border-bottom:1px dashed #d9d9d9;}
.menuTool .menu a.lines{border-bottom:1px solid #d4d4d4;}
.menuTool .menu a em{padding:10px 18px;background:url(../img/iconlist.png) no-repeat;}
.menuTool .menu a.binfo em{background-position:0 -156px;}
.menuTool .menu .binfo.select em{background-position:0 -113px;}
.menuTool .menu a.baccount em{background-position:-52px -157px;}
.menuTool .menu a.mfarvi em{background-position:-160px -157px;}
.menuTool .menu a.cpwd em{background-position:-107px -157px;}
.menuTool .menu .cpwd.select em{background-position:-107px -118px;}
.menuTool .menu a.select{background-color:#da4928;color:#fff;}
.menuTool .menu .baccount.select em{background-position:-52px -116px;}
.menuTool .menu .mfarvi.select em{background-position:-160px -119px;}
/*我的收藏*/
.farivate{float:left;position:relative;margin-left:20px;}
.farivate .queryStore{width:980px;overflow:hidden;}
.farivate .f_top{background:#fff;padding:10px 0 0 0;}
.farivate .f_top h3{padding-left:10px;}
.farivate .tab{margin-top:20px;padding-bottom:10px;border-bottom:1px solid #d0d0d0;}
.farivate .tab a{color:#303030;padding-bottom:10px;font-size:16px;font-weight:bold;}
.farivate .tab .selcted{border-bottom:1px solid #f86645;}
.farivate .tab .single{margin:0 30px 0 10px;}
.farivate .tab_price{padding:20px 10px;background:#efefef;position:relative;}
.farivate .tab_price .all{font-size:18px;color:#f88167;}
.farivate .tab_price a{color:#808080;font-size:14px;margin-right:20px;line-height:25px;}
.farivate .tab_price a:hover{text-decoration:underline;color:#f88167;}
.farivate .tab_price button{position:absolute;color:#fff;background:#f85300;padding:3px 13px;font-size:18px;top:30px;right:20px;cursor:pointer;border:none;}
/*搭调*/
.tune{margin:20px 0;text-align:center;}
.mydata{padding:15px 0;}
.mydata.editdata{width:100%;height:100%;overflow-y:scroll;padding:0;margin:0 auto;background:#f7f7f7;}
.mydata.editdata .epanel{margin:73px auto 0 auto;width:1200px;background:#fff;box-shadow:0 0 5px rgba(0,0,0,0.3);padding-bottom:10px;}
.mydata.editdata .epanel h3{padding:20px 0;}
.mydata .data_txt{padding:20px;background:#efefef;color:#525252;font-size:14px;border-bottom:1px solid #ededed;}
.mydata .data_txt span{padding-right:30px;}
.mydata .data_txt input{border:none;background:#fff;width:60px;height:27px;padding:0 3px;margin:0 5px;}
/*肤色*/
.mydata .skin,.mydata .bodytype,.mydata .outline,.mydata .sextype{overflow:hidden;zoom:1;padding:20px 40px;color:#737373;}
.mydata .title{font-size:18px;}
.mydata .skin_sel,.mydata .btype,.outline .oline,.face .face_sel{width:100px;float:left;text-align:center;margin:0 10px;}
.mydata .skin_sel em{background:url(../img/skin.png) no-repeat;width:80px;height:90px;display:inline-block;}
.mydata .skin_sel p.name,.mydata .btype p.name,.outline p.name,.face p.name{padding:10px 0;text-align:center;font-size:13px;}
.mydata .skin1 em{background-position:0 0;}
.mydata .skin2 em{background-position:-123px 0;}
.mydata .skin3 em{background-position:-246px 0;}
.mydata .skin4 em{background-position:-369px 0;}
.mydata .skin5 em{background-position:-492px 0;}
.mydata .skin6 em{background-position:-615px 0;}
.mydata .skin7 em{background-position:-738px 0;}
.mydata .skin8 em{background-position:-861px 0;}
/*脸部数据*/
.mydata .face{overflow:hidden;zoom:1;margin:20px 0;}
.mydata .face .face_sel{width:80px;}
.mydata .face_sel em{background:url(../img/face.jpg) no-repeat;width:55px;height:70px;display:inline-block;}
.mydata .face p.name{padding:0 0 10px 0;}
.mydata .face .title{font-size:14px;line-height:60px;}
.mydata .face1 em{background-position:0 0;}
/*身材类型*/
.mydata .bodytype,.mydata .outline,.mydata .sextype{border-top:1px dashed #b2b2b2;margin-top:10px;padding-top:20px;}
.mydata .btype{width:185px;}
.mydata .btype em{background:url(../img/bodytype.png) no-repeat;width:100px;height:295px;display:inline-block;}
.mydata .btype p.name{font-size:13px;}
.mydata .btype1 em{background-position:0 0;}
.mydata .btype2 em{background-position:-109px 0;}
.mydata .btype3 em{background-position:-236px 0;}
.mydata .btype4 em{background-position:-364px 0;}
.mydata .btype5 em{background-position:-464px 0;}
/*廓形感*/
.mydata .outline .oline{width:150px;}
.mydata .oline em{background:url(../img/outline.jpg) no-repeat;width:120px;height:316px;display:inline-block;}
.mydata .oline2 em{background-position:-141px 0;}
/*性格类型判定*/
.mydata .sextype .sexlist{width:100%;margin-top:20px;}
.mydata .sextype .sex{width:50%;float:left;position:relative;}
.mydata .sextype .sex .sex_xq{float:left;}
.mydata .sextype .sex .sexradio{margin:90px 15px;}
.mydata .sextype .sex .sexms{margin-top:76px;width:290px;font-size:13px;}
.mydata .goTune{margin:20px auto;width:220px;text-align:center;}
.mydata .goTune .btn{background:url(../img/godp.png) #da4928 188px center no-repeat;color:#fff;font-size:18px;height:57px;display:block;line-height:57px;border-radius:3px;text-align:center;margin:10px 0;}
.mydata .goTune .prefect{text-decoration:underline;color:#2c7b9f;letter-spacing:1px;}
/*完整数据*/
.alldata{background:url(../img/mydata_bg.jpg) #fff;background-position:center center;}
.alldata .data1{text-align:center;position:relative;width:330px;margin:0 auto;}
.alldata .data1 .model{margin:0px 0 10px 0;width:280px;}
.alldata .data1 .autoBg{display:block;width:140px;height:40px;border:none;margin:0 auto;background:#333333;color:#ffffff;font-size:14px;border-radius:5px;
box-shadow:2px 2px 20px rgba(0,0,0,0.8);-webkit-box-shadow:2px 2px 20px rgba(0,0,0,0.8);}
.alldata .data1 .data{position:absolute;cursor:pointer}
.alldata .data1 .data .now{display:none;}
.alldata .data1 .data_01{top:187px;right:52px;}
.alldata .data1 .data_02{top:370px;right:-59px;}
.alldata .data1 .data_03{bottom:137px;right:-25px;}
.alldata .data1 .data_04{top:157px;left:-34px;}
.alldata .data1 .data_05{top:354px;left:-116px;}
.alldata .data1 .data_06{bottom:196px;left:-102px;}
.alldata .data1 .txt{float:left;padding-left:10px;font-size:13px;color:#da4928;text-align:left;}
.alldata .data1 .txt.rtxt{padding:0 10px 0 0;text-align:right;}
.alldata .data1 .txt label{font-size:10px;color:#444444;}
.alldatas{position:relative;}
.alldatas .mask{background-color:rgba(0,0,0,0.7);position:absolute;top:0;bottom:0;left:0;right:0;z-index:10;}
.alldatas .data2{background:url(../img/report_bg.jpg) #000 0% 90%;height:100%;padding:80px 0 0 0;overflow-y:scroll; }
.alldatas .data2 .result{color:#fff;position:relative;z-index:13;text-align:center;}
.alldatas .data2 .result .reports{text-align:center;position:relative;}
.alldatas .data2 .result .reports .vertical{border-left:1px solid #fff;position:absolute;top:0px;left:50%;height:100%;}
.alldatas .report{position:relative;}
.alldatas .report .img{width:94px;height:94px;margin:30px auto;border-radius:94px;border:1px solid #fff;display:block;overflow:hidden;background:#414141;}
.alldatas .report .img img{width:87px;height:87px;border-radius:87px;margin:3px 3px 3px 2px;position:relative;}
.alldatas .report span.txt{position:absolute;top:16px;line-height:27px;}
.alldatas .report span.txt.rtxt{margin-left:63px;text-align:left;left:50%;}
.alldatas .report span.txt.ltxt{text-align:right;left:280px;}
.alldatas .report span.txt h4{color:#caaf43;}
.alldatas .data2 .result h4 span{background:#0a0a0a;padding:5px 15px;font-size:18px;box-shadow:0px 0px 25px #000;border-radius:5px;}
.alldatas .data2 .singleReport{background:rgba(131,131,131,0.7);padding-bottom:100px;}
.alldatas .data2 .singleReport h3{text-align:left;font-weight:bold;padding:20px 0 20px 10px;}
.alldatas .data2 .singleReport .queryStore{background:none;width:1200px;margin:0 auto;}
.alldatas .data2 .singleReport .datalist{margin:0;background:#fff;}
.alldatas .data2 .singleReport .datalist .item{height:360px;margin:0 12px;}
.popmask{background:rgba(0,0,0,0.7);position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;opacity:0;display:none;}
.popdata{position:absolute;min-width:740px;margin:0 auto;top:200px;left:50%;margin-left:-370px;padding:15px;border-radius:5px;background:#fff;z-index:20;}
.popdata h3{border-bottom:1px solid #e5e5e5;color:#565656;font-weight:bold;padding-bottom:10px;}
.popdata .group_btn{border-top:1px solid #e5e5e5;padding-top:10px;margin:20px 0 0 0;}
.popdata .group_btn button{border:none;border:1px solid #c64200;color:#f85300;width:80px;height:30px;background:#fff;margin:0 10px;}
.popdata .group_btn button:hover{background:#f85300;color:#fff;}
.popdata .wrap{overflow:hidden;zoom:1;padding:10px 0;min-height:70px;margin:15px 0 15px 54px;color:#505050;}
.popdata .wrap .title{float:left;padding-right:10px;}
.popdata .wrap_bar{height:20px;float:left;padding:0 10px;position:relative;border-radius:13px;border:1px solid #c3c3c3;background:none;}
.popdata .wrap_bar .scale{height:9px;position:relative;width:288px;background:url(../img/sliderbg.jpg);margin:7px auto;border-radius:5px;}
.popdata .wrap_bar .scale span{background:url("../img/hander.png");cursor:pointer;height:33px;left: -2px;position:absolute;top: -15px;width:40px;}
.popdata .wrap_bar .scale div{background:url("../img/sliderbg.jpg") 0 -8px;bottom: 0;height:9px;left: 0;position: absolute;width: 0;border-radius:0 5px; }
.popdata .wrap_bar label{position:absolute;top:34px;padding-top:5px;display:block;}
.popdata .wrap_bar label:after{content:"|";position:absolute;top:-18px;z-index:-1;}
.popdata .wrap_bar label.start:after{left:-1px;}
.popdata .wrap_bar label.end:after{right:10px;}
.popdata .wrap_bar label.center:after{right:30px;}
.popdata .wrap_bar .start{left:11px;}
.popdata .wrap_bar .end{right:2px;}
/*修改密码*/
.basicForm.cpwd label{color:#ff4040;padding-right:10px;}
.basicForm.cpwd .sub{text-align:center;}
.basicForm.cpwd .subpwd{background:#da4928;color:#fff;padding:5px 30px;border:none;}
.basicForm.cpwd .info{margin-left:422px;color:#ff0000;}
.bindaccount{text-align:center;}
.bindaccount .ms{color:#8e8e8e;font-size:16px;padding:10px 0;}
.bindaccount .bindlist{text-align:left;}
.bindaccount .bindlist .bind{height:65px;padding:20px 0;overflow:hidden;zoom:1;}
.bindaccount .bindlist .bind .name{color:#303030;font-weight:bold;line-height:65px;margin:0 40px;}
.bindaccount .bindlist .bind .status{color:#303030;line-height:65px;}
.bindaccount .bindlist .bind .bd{float:left;}
.bindaccount .bindlist .bind .rbd{float:right;}
.bindaccount .bindlist .bind .btn{background:#da4928;color:#fff;padding:6px 18px;margin-top:18px;cursor:pointer;}
.bindaccount .bindlist .icon{background:url(../img/login_icons.png) no-repeat;width:66px;height:66px;display:block;}
.bindaccount .bindlist .icon1{background-position:0 -233px;}
.bindaccount .bindlist .icon2{background-position:-78px -233px;}
.bindaccount .bindlist .icon3{background-position:0px -160px;}
.bindaccount .bindlist .icon4{background-position:-80px -160px;}
.bindaccount .bindlist .icon5{background-position:-159px -160px;}
.bindaccount .bindlist .icon6{background-position:-160px -233px;}
.unlink{margin:100px auto 0 auto;text-align:center;padding-top:50px;}
.unlink .link{margin:0 auto;width:320px;}
.unlink .link .txt{float:right;margin-top:13px;text-align: left;color: #313131;padding-left:15px;}
.unlink .link .txt h3{font-size:24px;}
.unlink .link .txt span{font-size:14px;}
.unlink .link .txt a{color:#5cb1e1;}
.unlink .l404{width:100%;overflow:hidden;zoom:1;}
.unlink .l404 .l4{width:45%;text-align:right;float:left;margin:20px 10px 0 0;}
.unlink .l404 .r4{text-align:left;width:45%;float:left;} | 0.126003 | 0.052449 |
@font-face {
font-family: "Sahitya-Regular";
src: url("/static/fonts/Sahitya-Regular.ttf") format("opentype");
}
@font-face {
font-family: "Sahitya-Bold";
src: url("/static/fonts/Sahitya-Bold.ttf") format("opentype");
font-weight: bold;
}
@font-face {
font-family: 'Sansation';
src: url(/static/fonts/Sansation_regular.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Light';
src: url(/static/fonts/Sansation_Light.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Bold';
src: url(/static/fonts/Sansation_Bold.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Italic';
src: url(/static/fonts/Sansation_Italic.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Bold-Italic';
src: url(/static/fonts/Sansation_Bold_Italic.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Light-Italic';
src: url(/static/fonts/Sansation_Light_Italic.ttf) format("opentype");
}
.heading, .labeled-dark-input label, .input-groups > div > label {
font-family: "Sahitya-Regular";
font-size: 14px;
color: #7F634C;
}
.heading-big {
font-family: "Sahitya-Bold";
font-size: 30px;
color: white;
}
.link {
font: "Sahitya" 18px;
color: white;
text-decoration: none;
}
.link:hover {
text-decoration: underline;
cursor: pointer;
}
.name-on-map {
margin: 0px;
font: "Sahitya" 10px;
color: white;
text-decoration: none;
}
.name-on-map:hover {
text-shadow: #929292 0px 0px 3px;
cursor: pointer;
}
p {
color: #fff;
font-family: "Sahitya-Regular";
}
a {
font-family: "Sahitya-Regular";
color: #F0B385;
text-decoration: none;
}
a:hover {
-webkit-text-decoration: underline #F0B385;
text-decoration: underline #F0B385;
color: #fff;
}
.f-column, .labeled-dark-input, .input-groups > div {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.f-row, .input-groups {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.button-common, .radio-group li label, .button-ornamented, .button-redcore-w {
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;
font-family: "Sahitya Regular";
background-size: 100% 100%;
background-repeat: no-repeat;
color: #929292;
text-decoration: none;
cursor: pointer;
}
.button-common:active, .radio-group li label:active, .button-ornamented:active, .button-redcore-w:active {
font-family: "Sahitya Bold";
color: #F0B385;
}
.button-common:active:hover, .radio-group li label:active:hover, .button-ornamented:active:hover, .button-redcore-w:active:hover {
text-shadow: 0px 0px 10px #F0B385;
}
.button-common, .radio-group li label {
height: 34px;
background-image: url("/static/images/buttons/common.png");
font-size: 18px;
}
.button-common:hover, .radio-group li label:hover {
background-image: url("/static/images/buttons/common-p.png");
}
.button-common:active, .radio-group li label:active {
background-image: url("/static/images/buttons/common-p.png");
}
.button-ornamented {
height: 52px;
width: 133px;
background-image: url("/static/images/buttons/ornamented.png");
font-size: 20px;
}
.button-ornamented:hover {
background-image: url("/static/images/buttons/ornamented-p.png");
}
.button-ornamented:active {
background-image: url("/static/images/buttons/ornamented-p.png");
}
.button-redcore-w {
height: 51px;
width: 267px;
background-image: url("/static/images/buttons/redcore-w.png");
color: white;
font-size: 20px;
}
.button-redcore-w:hover {
background-image: url("/static/images/buttons/redcore-w-p.png");
}
.button-redcore-w:active {
background-image: url("/static/images/buttons/redcore-w-p.png");
}
.not-logged {
width: 134px;
height: 51px;
background-image: url("/static/images/login_btn.png");
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}
.not-logged:hover {
background-image: url("/static/images/login_btn_hovered.png");
-ms-flex-negative: 0;
flex-shrink: 0;
background-position: center;
width: 154px;
height: 71px;
}
.not-logged:hover:active {
background-image: url("/static/images/login_btn_pressed.png");
width: 134px;
height: 51px;
}
.button-remove, .button-add, .button-ar-down, .button-ar-left, .button-ar-right, .button-ar-up, .button-calendar {
cursor: pointer;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 24px;
width: 24px;
}
.button-remove {
background-image: url("/static/images/buttons/remove-a.png");
}
.button-remove:hover {
background-image: url("/static/images/buttons/remove-h.png");
}
.button-remove:disabled {
background-image: url("/static/images/buttons/remove.png");
}
.button-add {
background-image: url("/static/images/buttons/add-a.png");
}
.button-add:hover {
background-image: url("/static/images/buttons/add-h.png");
}
.button-add:disabled {
background-image: url("/static/images/buttons/add.png");
}
.button-ar-down {
background-image: url("/static/images/buttons/ar-down-a.png");
}
.button-ar-down:hover {
background-image: url("/static/images/buttons/ar-down-h.png");
}
.button-ar-down:disabled {
background-image: url("/static/images/buttons/ar-down.png");
}
.button-ar-left {
background-image: url("/static/images/buttons/ar-left-a.png");
}
.button-ar-left:hover {
background-image: url("/static/images/buttons/ar-left-h.png");
}
.button-ar-left:disabled {
background-image: url("/static/images/buttons/ar-left.png");
}
.button-ar-right {
background-image: url("/static/images/buttons/ar-right-a.png");
}
.button-ar-right:hover {
background-image: url("/static/images/buttons/ar-right-h.png");
}
.button-ar-right:disabled {
background-image: url("/static/images/buttons/ar-right.png");
}
.button-ar-up {
background-image: url("/static/images/buttons/ar-up-a.png");
}
.button-ar-up:hover {
background-image: url("/static/images/buttons/ar-up-h.png");
}
.button-ar-up:disabled {
background-image: url("/static/images/buttons/ar-up.png");
}
.button-calendar {
background-image: url("/static/images/buttons/calendar-a.png");
}
.button-calendar:hover {
background-image: url("/static/images/buttons/calendar-h.png");
}
.button-calendar:disabled {
background-image: url("/static/images/buttons/calendar.png");
}
.stretch-for-text {
text-align: center;
width: fit-content(120%);
height: fit-content(120%);
}
.stretch-for-text div {
padding: 2px 10px;
}
.dark-input, .labeled-dark-input input, .input-groups > div > input {
background-image: url("/static/images/grey-input.png");
background-size: 100% 100%;
font-family: "Sansation-Italic";
font-size: 14px;
background-repeat: no-repeat;
color: #F0B385;
border: 1px solid #929292;
margin-left: 0px;
min-width: 50px;
padding: 10px;
}
.dark-input::-webkit-input-placeholder, .labeled-dark-input input::-webkit-input-placeholder, .input-groups > div > input::-webkit-input-placeholder {
font-size: 11px;
}
.dark-input:-ms-input-placeholder, .labeled-dark-input input:-ms-input-placeholder, .input-groups > div > input:-ms-input-placeholder {
font-size: 11px;
}
.dark-input::-ms-input-placeholder, .labeled-dark-input input::-ms-input-placeholder, .input-groups > div > input::-ms-input-placeholder {
font-size: 11px;
}
.dark-input::placeholder, .labeled-dark-input input::placeholder, .input-groups > div > input::placeholder {
font-size: 11px;
}
.dark-input:focus, .labeled-dark-input input:focus, .input-groups > div > input:focus {
border-color: #7F634C;
color: white;
outline: none;
}
.dropdown-menu {
background-color: #2F3136;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 150px;
position: absolute;
visibility: hidden;
font-family: "Sahitya-Regular";
font-size: 10px;
}
.dropdown-menu a {
background-image: url("/static/images/menu-item.png");
background-repeat: no-repeat;
color: #929292;
font-family: "Sahitya-Regular";
font-size: 14px;
text-decoration: none;
margin: 3px;
padding: 2px;
padding-left: 10px;
background-size: 100% 100%;
}
.dropdown-menu a:hover {
background-image: url("/static/images/menu-item-h.png");
background-size: 100% 100%;
color: #fff;
}
.dropdown-menu a:hover:active {
color: #F0B385;
}
.beautiful-text {
color: #F0B385;
font-size: 26px;
background-color: #fff;
}
.input-groups > div {
margin-bottom: 5px;
margin-top: 5px;
}
.input-groups > div > input {
margin: 0px;
}
.radio-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
list-style-type: none;
padding: 0px;
gap: 5px;
}
.radio-group li {
-webkit-box-flex: 1;
-ms-flex: 1 1 calc((100% / 3) - 5px);
flex: 1 1 calc((100% / 3) - 5px);
}
.radio-group li input[type="radio"] {
visibility: hidden;
}
.radio-group li label {
position: relative;
top: -35px;
margin: 0px 0px -35px 0px;
width: 100%;
}
.radio-group li label:checked {
font-family: "Sahitya-Bold";
}
.radio-group li input[type="radio"]:checked + label {
color: #F0B385;
background-image: url("/static/images/buttons/common-p.png");
}
.calendar-icon {
width: 24px;
height: 24px;
background-image: url("/static/images/icons/calendar.svg");
background-size: 100% 100%;
}
.calendar-icon:hover {
background-image: url("/static/images/icons/calendar-h.svg");
}
.calendar-icon:hover:active {
background-image: url("/static/images/icons/calendar-a.svg");
}
.image-container {
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
}
/*# sourceMappingURL=BasicStyle.css.map */ | static/styles/BasicStyle.css | @font-face {
font-family: "Sahitya-Regular";
src: url("/static/fonts/Sahitya-Regular.ttf") format("opentype");
}
@font-face {
font-family: "Sahitya-Bold";
src: url("/static/fonts/Sahitya-Bold.ttf") format("opentype");
font-weight: bold;
}
@font-face {
font-family: 'Sansation';
src: url(/static/fonts/Sansation_regular.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Light';
src: url(/static/fonts/Sansation_Light.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Bold';
src: url(/static/fonts/Sansation_Bold.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Italic';
src: url(/static/fonts/Sansation_Italic.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Bold-Italic';
src: url(/static/fonts/Sansation_Bold_Italic.ttf) format("opentype");
}
@font-face {
font-family: 'Sansation-Light-Italic';
src: url(/static/fonts/Sansation_Light_Italic.ttf) format("opentype");
}
.heading, .labeled-dark-input label, .input-groups > div > label {
font-family: "Sahitya-Regular";
font-size: 14px;
color: #7F634C;
}
.heading-big {
font-family: "Sahitya-Bold";
font-size: 30px;
color: white;
}
.link {
font: "Sahitya" 18px;
color: white;
text-decoration: none;
}
.link:hover {
text-decoration: underline;
cursor: pointer;
}
.name-on-map {
margin: 0px;
font: "Sahitya" 10px;
color: white;
text-decoration: none;
}
.name-on-map:hover {
text-shadow: #929292 0px 0px 3px;
cursor: pointer;
}
p {
color: #fff;
font-family: "Sahitya-Regular";
}
a {
font-family: "Sahitya-Regular";
color: #F0B385;
text-decoration: none;
}
a:hover {
-webkit-text-decoration: underline #F0B385;
text-decoration: underline #F0B385;
color: #fff;
}
.f-column, .labeled-dark-input, .input-groups > div {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.f-row, .input-groups {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.button-common, .radio-group li label, .button-ornamented, .button-redcore-w {
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;
font-family: "Sahitya Regular";
background-size: 100% 100%;
background-repeat: no-repeat;
color: #929292;
text-decoration: none;
cursor: pointer;
}
.button-common:active, .radio-group li label:active, .button-ornamented:active, .button-redcore-w:active {
font-family: "Sahitya Bold";
color: #F0B385;
}
.button-common:active:hover, .radio-group li label:active:hover, .button-ornamented:active:hover, .button-redcore-w:active:hover {
text-shadow: 0px 0px 10px #F0B385;
}
.button-common, .radio-group li label {
height: 34px;
background-image: url("/static/images/buttons/common.png");
font-size: 18px;
}
.button-common:hover, .radio-group li label:hover {
background-image: url("/static/images/buttons/common-p.png");
}
.button-common:active, .radio-group li label:active {
background-image: url("/static/images/buttons/common-p.png");
}
.button-ornamented {
height: 52px;
width: 133px;
background-image: url("/static/images/buttons/ornamented.png");
font-size: 20px;
}
.button-ornamented:hover {
background-image: url("/static/images/buttons/ornamented-p.png");
}
.button-ornamented:active {
background-image: url("/static/images/buttons/ornamented-p.png");
}
.button-redcore-w {
height: 51px;
width: 267px;
background-image: url("/static/images/buttons/redcore-w.png");
color: white;
font-size: 20px;
}
.button-redcore-w:hover {
background-image: url("/static/images/buttons/redcore-w-p.png");
}
.button-redcore-w:active {
background-image: url("/static/images/buttons/redcore-w-p.png");
}
.not-logged {
width: 134px;
height: 51px;
background-image: url("/static/images/login_btn.png");
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}
.not-logged:hover {
background-image: url("/static/images/login_btn_hovered.png");
-ms-flex-negative: 0;
flex-shrink: 0;
background-position: center;
width: 154px;
height: 71px;
}
.not-logged:hover:active {
background-image: url("/static/images/login_btn_pressed.png");
width: 134px;
height: 51px;
}
.button-remove, .button-add, .button-ar-down, .button-ar-left, .button-ar-right, .button-ar-up, .button-calendar {
cursor: pointer;
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
height: 24px;
width: 24px;
}
.button-remove {
background-image: url("/static/images/buttons/remove-a.png");
}
.button-remove:hover {
background-image: url("/static/images/buttons/remove-h.png");
}
.button-remove:disabled {
background-image: url("/static/images/buttons/remove.png");
}
.button-add {
background-image: url("/static/images/buttons/add-a.png");
}
.button-add:hover {
background-image: url("/static/images/buttons/add-h.png");
}
.button-add:disabled {
background-image: url("/static/images/buttons/add.png");
}
.button-ar-down {
background-image: url("/static/images/buttons/ar-down-a.png");
}
.button-ar-down:hover {
background-image: url("/static/images/buttons/ar-down-h.png");
}
.button-ar-down:disabled {
background-image: url("/static/images/buttons/ar-down.png");
}
.button-ar-left {
background-image: url("/static/images/buttons/ar-left-a.png");
}
.button-ar-left:hover {
background-image: url("/static/images/buttons/ar-left-h.png");
}
.button-ar-left:disabled {
background-image: url("/static/images/buttons/ar-left.png");
}
.button-ar-right {
background-image: url("/static/images/buttons/ar-right-a.png");
}
.button-ar-right:hover {
background-image: url("/static/images/buttons/ar-right-h.png");
}
.button-ar-right:disabled {
background-image: url("/static/images/buttons/ar-right.png");
}
.button-ar-up {
background-image: url("/static/images/buttons/ar-up-a.png");
}
.button-ar-up:hover {
background-image: url("/static/images/buttons/ar-up-h.png");
}
.button-ar-up:disabled {
background-image: url("/static/images/buttons/ar-up.png");
}
.button-calendar {
background-image: url("/static/images/buttons/calendar-a.png");
}
.button-calendar:hover {
background-image: url("/static/images/buttons/calendar-h.png");
}
.button-calendar:disabled {
background-image: url("/static/images/buttons/calendar.png");
}
.stretch-for-text {
text-align: center;
width: fit-content(120%);
height: fit-content(120%);
}
.stretch-for-text div {
padding: 2px 10px;
}
.dark-input, .labeled-dark-input input, .input-groups > div > input {
background-image: url("/static/images/grey-input.png");
background-size: 100% 100%;
font-family: "Sansation-Italic";
font-size: 14px;
background-repeat: no-repeat;
color: #F0B385;
border: 1px solid #929292;
margin-left: 0px;
min-width: 50px;
padding: 10px;
}
.dark-input::-webkit-input-placeholder, .labeled-dark-input input::-webkit-input-placeholder, .input-groups > div > input::-webkit-input-placeholder {
font-size: 11px;
}
.dark-input:-ms-input-placeholder, .labeled-dark-input input:-ms-input-placeholder, .input-groups > div > input:-ms-input-placeholder {
font-size: 11px;
}
.dark-input::-ms-input-placeholder, .labeled-dark-input input::-ms-input-placeholder, .input-groups > div > input::-ms-input-placeholder {
font-size: 11px;
}
.dark-input::placeholder, .labeled-dark-input input::placeholder, .input-groups > div > input::placeholder {
font-size: 11px;
}
.dark-input:focus, .labeled-dark-input input:focus, .input-groups > div > input:focus {
border-color: #7F634C;
color: white;
outline: none;
}
.dropdown-menu {
background-color: #2F3136;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 150px;
position: absolute;
visibility: hidden;
font-family: "Sahitya-Regular";
font-size: 10px;
}
.dropdown-menu a {
background-image: url("/static/images/menu-item.png");
background-repeat: no-repeat;
color: #929292;
font-family: "Sahitya-Regular";
font-size: 14px;
text-decoration: none;
margin: 3px;
padding: 2px;
padding-left: 10px;
background-size: 100% 100%;
}
.dropdown-menu a:hover {
background-image: url("/static/images/menu-item-h.png");
background-size: 100% 100%;
color: #fff;
}
.dropdown-menu a:hover:active {
color: #F0B385;
}
.beautiful-text {
color: #F0B385;
font-size: 26px;
background-color: #fff;
}
.input-groups > div {
margin-bottom: 5px;
margin-top: 5px;
}
.input-groups > div > input {
margin: 0px;
}
.radio-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
list-style-type: none;
padding: 0px;
gap: 5px;
}
.radio-group li {
-webkit-box-flex: 1;
-ms-flex: 1 1 calc((100% / 3) - 5px);
flex: 1 1 calc((100% / 3) - 5px);
}
.radio-group li input[type="radio"] {
visibility: hidden;
}
.radio-group li label {
position: relative;
top: -35px;
margin: 0px 0px -35px 0px;
width: 100%;
}
.radio-group li label:checked {
font-family: "Sahitya-Bold";
}
.radio-group li input[type="radio"]:checked + label {
color: #F0B385;
background-image: url("/static/images/buttons/common-p.png");
}
.calendar-icon {
width: 24px;
height: 24px;
background-image: url("/static/images/icons/calendar.svg");
background-size: 100% 100%;
}
.calendar-icon:hover {
background-image: url("/static/images/icons/calendar-h.svg");
}
.calendar-icon:hover:active {
background-image: url("/static/images/icons/calendar-a.svg");
}
.image-container {
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
}
/*# sourceMappingURL=BasicStyle.css.map */ | 0.26693 | 0.06486 |
.dashboard #content {
width: 500px;
}
.dashboard .module {
margin-bottom: 3px;
}
.dashboard .module:last-child {
margin-bottom: 0;
}
/* Dashboard Group Collapsible
------------------------------------------------------------------------------------------------------ */
.dashboard .group-collapsible {
position: relative;
margin: 0 0 7px;
padding: 2px;
-moz-border-radius: 7px; -webkit-border-radius: 7px;
}
.dashboard .group-collapsible.collapse-closed .module {
display: none;
}
.dashboard .group-collapsible.collapse-open,
.dashboard .group-collapsible.collapse-closed:hover {
border: 2px solid #d4d4d4 !important;
}
.dashboard .group-collapsible.collapse-closed {
border: 2px solid #e4e4e4 !important;
}
.dashboard .group-collapsible h2 {
margin: 0 0 3px;
padding: 7px 5px 6px 10px;
font-size: 12px; line-height: 16px; font-weight: bold;
border: 1px solid #ccc;
-moz-border-radius: 5px; -webkit-border-radius: 5px;
background-color: #e6e6e6;
}
.dashboard .group-collapsible.collapse-closed h2 {
margin: 0;
}
.dashboard .group-collapsible.collapse-closed h2.collapse-toggle {
text-shadow: 1px 1px #bcdfeb;
background-color: #a0d8eb;
background-color: #c0e1ec;
background-image: url('../img/icons/icon_fieldset_collapse-closed.png');
}
.dashboard .group-collapsible.collapse-closed h2.collapse-toggle:hover,
.dashboard .group-collapsible.collapse-open h2.collapse-toggle {
text-shadow: 1px 1px #bcdfeb;
background-color: #c0e1ec;
background-image: url('../img/icons/icon_fieldset_collapse-open.png');
}
.dashboard .group-collapsible table caption {
padding: 5px 10px;
}
/* Dashboard Table Settings
------------------------------------------------------------------------------------------------------ */
.dashboard .module table {
border-right: none;
}
.dashboard .module table + table {
border-top: 1px solid #e0e0e0;
}
.dashboard .module table th {
width: 100%;
}
.dashboard .module table th.application {
background: #e6e6e6;
}
.dashboard .module table tbody:only-child tr:first-child *:first-child {
-moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px;
}
.dashboard .module table tbody:only-child tr:first-child *:last-child {
-moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
}
.dashboard .module table td {
white-space: nowrap;
}
.dashboard .module table td a {
display: block;
padding-right: 0;
}
/* Navigation & Recent Actions (Content-Related & Content-Related-Extended)
------------------------------------------------------------------------------------------------------ */
#content-related, #content-related-extended {
color: #444; font-size: 11px;
}
#content-related h3, #content-related-extended h3,
#content-related h4, #content-related-extended h4 {
padding: 5px 10px;
font-size: 11px;
}
#content-related p,
#content-related-extended p {
border-top: 1px solid #ddd;
padding: 3px 10px 8px;
color: #999; font-style: italic;
}
.module ul.menulist,
.module ul.actionlist {
margin: 0; padding: 0;
border-top: 1px solid #ddd;
list-style-type: none;
}
.module ul.actionlist {
padding-bottom: 3px;
}
ul.menulist li:last-child {
border-bottom-color: #ddd;
}
ul.menulist:last-child li:last-child,
ul.actionlist:last-child li:last-child {
margin-bottom: 5px;
border-bottom: none;
}
/* Navigation ................................................... */
ul.menulist li {
margin: 0; padding: 3px 10px 3px 9px;
border-bottom: 1px solid #eee;
list-style-type: none;
}
ul.menulist li a {
padding-left: 12px;
font-weight: bold;
background-color: transparent;
background-position: 2px 50%;
background-repeat: no-repeat;
}
ul.menulist li a.external {
background-position: 0 3px;
}
ul.menulist li a.internal:link, ul.menulist li a.internal:visited {
background-image: url('../img/icons/icon-menulist_internal.png');
}
ul.menulist li a.internal:hover, ul.menulist li a.internal:active {
color: #666;
background-image: url('../img/icons/icon-menulist_internal-hover.png');
}
ul.menulist li a.external:link, ul.menulist li a.external:visited {
color: #83c3d9;
background-image: url('../img/icons/icon-menulist_external.png');
}
ul.menulist li a.external:hover, ul.menulist li a.external:active {
color: #666;
background-image: url('../img/icons/icon-menulist_external-hover.png');
}
/* Recent Actions ................................................... */
ul.actionlist li {
margin: 5px 0 0; padding: 2px 10px 0 25px;
line-height: 12px;
}
ul.actionlist li a {
margin-left: -14px; padding-left: 13px;
background-position: 0 50%;
background-repeat: no-repeat;
}
ul.actionlist li.addlink a:link, ul.actionlist li.addlink a:visited {
background-image:url('../img/icons/icon-actionlist_addlink.png');
}
ul.actionlist li.addlink a:hover, ul.actionlist li.addlink a:active {
background-image:url('../img/icons/icon-actionlist_addlink-hover.png');
}
ul.actionlist li.changelink a:link, ul.actionlist li.changelink a:visited {
background-image:url('../img/icons/icon-actionlist_changelink.png');
}
ul.actionlist li.changelink a:hover, ul.actionlist li.changelink a:active {
background-image:url('../img/icons/icon-actionlist_changelink-hover.png');
}
ul.actionlist li.deletelink {
color: #666; text-decoration: line-through;
background: url('../img/icons/icon-actionlist_deletelink.png') 11px 5px no-repeat;
} | grappelli/media/css/dashboard.css | .dashboard #content {
width: 500px;
}
.dashboard .module {
margin-bottom: 3px;
}
.dashboard .module:last-child {
margin-bottom: 0;
}
/* Dashboard Group Collapsible
------------------------------------------------------------------------------------------------------ */
.dashboard .group-collapsible {
position: relative;
margin: 0 0 7px;
padding: 2px;
-moz-border-radius: 7px; -webkit-border-radius: 7px;
}
.dashboard .group-collapsible.collapse-closed .module {
display: none;
}
.dashboard .group-collapsible.collapse-open,
.dashboard .group-collapsible.collapse-closed:hover {
border: 2px solid #d4d4d4 !important;
}
.dashboard .group-collapsible.collapse-closed {
border: 2px solid #e4e4e4 !important;
}
.dashboard .group-collapsible h2 {
margin: 0 0 3px;
padding: 7px 5px 6px 10px;
font-size: 12px; line-height: 16px; font-weight: bold;
border: 1px solid #ccc;
-moz-border-radius: 5px; -webkit-border-radius: 5px;
background-color: #e6e6e6;
}
.dashboard .group-collapsible.collapse-closed h2 {
margin: 0;
}
.dashboard .group-collapsible.collapse-closed h2.collapse-toggle {
text-shadow: 1px 1px #bcdfeb;
background-color: #a0d8eb;
background-color: #c0e1ec;
background-image: url('../img/icons/icon_fieldset_collapse-closed.png');
}
.dashboard .group-collapsible.collapse-closed h2.collapse-toggle:hover,
.dashboard .group-collapsible.collapse-open h2.collapse-toggle {
text-shadow: 1px 1px #bcdfeb;
background-color: #c0e1ec;
background-image: url('../img/icons/icon_fieldset_collapse-open.png');
}
.dashboard .group-collapsible table caption {
padding: 5px 10px;
}
/* Dashboard Table Settings
------------------------------------------------------------------------------------------------------ */
.dashboard .module table {
border-right: none;
}
.dashboard .module table + table {
border-top: 1px solid #e0e0e0;
}
.dashboard .module table th {
width: 100%;
}
.dashboard .module table th.application {
background: #e6e6e6;
}
.dashboard .module table tbody:only-child tr:first-child *:first-child {
-moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px;
}
.dashboard .module table tbody:only-child tr:first-child *:last-child {
-moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px;
}
.dashboard .module table td {
white-space: nowrap;
}
.dashboard .module table td a {
display: block;
padding-right: 0;
}
/* Navigation & Recent Actions (Content-Related & Content-Related-Extended)
------------------------------------------------------------------------------------------------------ */
#content-related, #content-related-extended {
color: #444; font-size: 11px;
}
#content-related h3, #content-related-extended h3,
#content-related h4, #content-related-extended h4 {
padding: 5px 10px;
font-size: 11px;
}
#content-related p,
#content-related-extended p {
border-top: 1px solid #ddd;
padding: 3px 10px 8px;
color: #999; font-style: italic;
}
.module ul.menulist,
.module ul.actionlist {
margin: 0; padding: 0;
border-top: 1px solid #ddd;
list-style-type: none;
}
.module ul.actionlist {
padding-bottom: 3px;
}
ul.menulist li:last-child {
border-bottom-color: #ddd;
}
ul.menulist:last-child li:last-child,
ul.actionlist:last-child li:last-child {
margin-bottom: 5px;
border-bottom: none;
}
/* Navigation ................................................... */
ul.menulist li {
margin: 0; padding: 3px 10px 3px 9px;
border-bottom: 1px solid #eee;
list-style-type: none;
}
ul.menulist li a {
padding-left: 12px;
font-weight: bold;
background-color: transparent;
background-position: 2px 50%;
background-repeat: no-repeat;
}
ul.menulist li a.external {
background-position: 0 3px;
}
ul.menulist li a.internal:link, ul.menulist li a.internal:visited {
background-image: url('../img/icons/icon-menulist_internal.png');
}
ul.menulist li a.internal:hover, ul.menulist li a.internal:active {
color: #666;
background-image: url('../img/icons/icon-menulist_internal-hover.png');
}
ul.menulist li a.external:link, ul.menulist li a.external:visited {
color: #83c3d9;
background-image: url('../img/icons/icon-menulist_external.png');
}
ul.menulist li a.external:hover, ul.menulist li a.external:active {
color: #666;
background-image: url('../img/icons/icon-menulist_external-hover.png');
}
/* Recent Actions ................................................... */
ul.actionlist li {
margin: 5px 0 0; padding: 2px 10px 0 25px;
line-height: 12px;
}
ul.actionlist li a {
margin-left: -14px; padding-left: 13px;
background-position: 0 50%;
background-repeat: no-repeat;
}
ul.actionlist li.addlink a:link, ul.actionlist li.addlink a:visited {
background-image:url('../img/icons/icon-actionlist_addlink.png');
}
ul.actionlist li.addlink a:hover, ul.actionlist li.addlink a:active {
background-image:url('../img/icons/icon-actionlist_addlink-hover.png');
}
ul.actionlist li.changelink a:link, ul.actionlist li.changelink a:visited {
background-image:url('../img/icons/icon-actionlist_changelink.png');
}
ul.actionlist li.changelink a:hover, ul.actionlist li.changelink a:active {
background-image:url('../img/icons/icon-actionlist_changelink-hover.png');
}
ul.actionlist li.deletelink {
color: #666; text-decoration: line-through;
background: url('../img/icons/icon-actionlist_deletelink.png') 11px 5px no-repeat;
} | 0.171928 | 0.111096 |
@charset "UTF-8";
.help-block {
color: red; }
#comic_user-error-character {
margin-top: 5px;
margin-bottom: 10px;
color: red; }
#comic_user-error-character-same {
margin-top: 5px;
margin-bottom: 10px;
color: red; }
.ajax_increase_quantity {
height: 42px;
background: transparent;
box-shadow: none;
border: solid 1px #cccccc;
border-right: 0;
width: 20px; }
.ajax_decrease_quantity {
height: 42px;
background: transparent;
box-shadow: none;
border: solid 1px #cccccc;
border-left: 0;
width: 20px; }
.hide-bullets {
list-style: none;
margin-left: -40px;
margin-top: 20px; }
.div-carousel-thumbnails {
background: #f5f5f0;
padding-top: 50px; }
.div-carousel-thumbnails #main_area #slider #carousel-bounding-box #myCarousel {
padding: 6px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px; }
.div-carousel-thumbnails #main_area #slider #carousel-bounding-box #myCarousel .carousel-control {
background: transparent; }
.div-carousel-thumbnails #main_area #slider-thumbs ul li a.thumbnail:hover {
background: #2CB492;
border: #2CB492; }
@-webkit-keyframes spaceboots {
0% {
-webkit-transform: translate(0px, 0px) rotate(0deg); }
10% {
-webkit-transform: translate(0px, 0px) rotate(0.5deg); }
20% {
-webkit-transform: translate(0px, 0px) rotate(0.5deg); } }
.Heidelberg-Page {
background: transparent !important;
/*background-image: url(//www.wonderbly.com/static/phoenix/2017-12-13/f89f518…/assets/images/book-loading-page-1200x886@2x.svg) !important;*/
background-size: cover !important; }
.form-search-top {
position: absolute;
z-index: 10;
width: 227px;
left: -14px; }
/*.shake:hover,
}
.shake:focus {
-webkit-animation-name: spaceboots;
-webkit-animation-duration: 3s;
-webkit-transform-origin: 50% 50%;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}*/
.preview-word-comic {
text-align: center;
padding-bottom: 30px; }
.preview-word-comic .jump, .preview-word-comic #previous, .preview-word-comic #next {
background: transparent;
border-radius: 50%;
border-color: transparent;
font-size: 17px;
margin: 10.5px; }
.preview-word-comic .jump:hover, .preview-word-comic #previous:hover, .preview-word-comic #next:hover {
background: rgba(240, 124, 19, 0.37); }
.preview-word-comic .word {
font-size: 18px; }
@-moz-document url-prefix() {
.preview-word-comic .jump, .preview-word-comic #previous, .preview-word-comic #next {
margin: 8px; } }
.thumbnails-comic-word {
display: flex;
justify-content: center;
margin: auto; }
.thumbnails-comic-word .img-thumbnails-word {
margin: 4px;
margin-right: 6px;
margin-left: 6px;
max-width: 40px;
max-height: 40px;
border: 2px solid transparent;
background: white !important;
border-radius: 5px;
padding: 2px; }
.thumbnails-comic-word .img-thumbnails-word:hover {
border: 2px solid rgba(240, 124, 19, 0.37);
border-radius: 5px; }
.thumbnails-comic-word .popover {
min-width: 250px; }
.thumbnails-comic-word .popover .popover-title {
text-align: center;
font-family: inherit;
font-size: 17px;
font-weight: 500; }
.thumbnails-comic-word .btn-change-story {
left: 0;
display: none;
position: absolute;
padding: 0;
border-radius: 3px;
z-index: 10;
font-size: 15px;
width: 90px;
height: 27px;
line-height: 27px;
background: #e07e26 !important; }
.thumbnails-comic-word .btn-change-story:hover {
text-decoration: none; }
.thumbnails-comic-word .ajax-change-story {
border-radius: 5px;
color: white;
border: 2px solid;
background: #5bc0de;
display: block;
width: 100%;
padding: 10px 13px; }
.thumbnails-comic-word .ajax-change-story:hover {
background: #1383de; }
.thumbnails-comic-word .ajax-present-story {
pointer-events: none;
background: #d8d4c7; }
.p-comic-end-story {
position: absolute;
color: black;
top: 31%;
font-size: 35px;
left: 65%;
word-wrap: break-word;
font-weight: 900; }
.p-comic-message {
position: absolute;
color: black;
top: 25%;
left: 10%;
font-size: 13px;
right: 60%;
display: flex;
white-space: pre-line;
word-break: initial;
background: transparent;
border: 0;
font-family: inherit; }
.fa-angle-right, .fa-angle-left {
color: #0CA2C0; }
.pre-comic-content {
white-space: pre-line;
word-break: initial;
background: transparent;
border: 0;
font-family: inherit;
font-size: 17px;
padding: 0; }
.item-detail ul li {
font-size: 17px; }
.item-detail ul li span {
font-size: 17px; }
.active-word {
background: rgba(240, 124, 19, 0.37) !important; }
.active-thumbnail {
border: 2px solid rgba(240, 124, 19, 0.37) !important;
border-radius: 5px; }
.background-hiden {
position: absolute;
height: 100%;
width: 100%;
top: 0;
background: #1f1c1c4a;
display: none; }
#info-preview-comic-message {
background: #F5F5F0;
padding: 4rem;
border-top: 1px solid #d8d4c7;
position: absolute;
bottom: 0;
width: 100%;
z-index: 11; }
#info-preview-comic-message .img-dear {
overflow: hidden;
margin-bottom: 15px;
max-height: 300px; }
#info-preview-comic-message .img-dear img {
width: 100%;
border-radius: 5px; }
#info-preview-comic-message .text-dear textarea {
margin-bottom: 15px; }
#info-preview-comic-message .text-dear button {
border: 0; }
#info-preview-comic-name {
position: absolute;
bottom: 0; }
.nav-info-preview-comic .info-preview-comic {
padding: 0;
border: 1px solid #d8d4c7;
background: white;
box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.03); }
.nav-info-preview-comic .info-preview-comic .info-preview-comic-name {
border-left: 1px solid #d8d4c7;
padding: 30px 15px;
text-align: center;
cursor: pointer; }
.nav-info-preview-comic .info-preview-comic .info-preview-comic-message {
border-left: 1px solid #d8d4c7;
border-right: 1px solid #d8d4c7;
padding: 30px 15px;
text-align: center;
cursor: pointer; }
.nav-info-preview-comic .info-preview-comic .info-preview-comic-button {
padding: 30px 15px;
cursor: pointer; }
.nav-info-preview-comic .info-preview-comic .fa-check-circle {
color: #FF870A;
font-size: 20px;
margin-right: 5px; }
.nav-info-preview-comic .info-preview-comic .fa-chevron-up {
color: #b5bcc3; }
.nav-info-preview-comic .info-preview-comic .fa-chevron-down {
color: #b5bcc3; }
.nav-info-preview-comic .info-preview-comic span {
color: #b5bcc3; }
.nav-info-preview-comic .info-preview-comic-mobile .info-preview-comic-name {
text-align: left; }
.nav-info-preview-comic .info-preview-comic-mobile .info-preview-comic-message {
text-align: left; }
.nav-info-preview-comic .info-preview-comic-button a {
display: block; }
.story-relative {
border-top: 1px solid #ddd;
background: #F5F5F0;
padding-top: 30px;
padding-bottom: 50px; }
.shopping-button-home {
background-size: 250px 65px;
width: 260px; }
@media (max-width: 414px) {
.preview-word-comic {
display: flex; }
.preview-word-comic .word {
margin: 0; }
.img-thumbnails-word {
width: 100%; }
.popover {
left: 0 !important; }
.popover .arrow {
left: 20% !important; }
.p-comic-message {
font-size: 5px; }
.p-comic-end-story {
font-size: 9px;
top: 34%; } }
/*# sourceMappingURL=style.css.map */ | public/theme/css/style.css | @charset "UTF-8";
.help-block {
color: red; }
#comic_user-error-character {
margin-top: 5px;
margin-bottom: 10px;
color: red; }
#comic_user-error-character-same {
margin-top: 5px;
margin-bottom: 10px;
color: red; }
.ajax_increase_quantity {
height: 42px;
background: transparent;
box-shadow: none;
border: solid 1px #cccccc;
border-right: 0;
width: 20px; }
.ajax_decrease_quantity {
height: 42px;
background: transparent;
box-shadow: none;
border: solid 1px #cccccc;
border-left: 0;
width: 20px; }
.hide-bullets {
list-style: none;
margin-left: -40px;
margin-top: 20px; }
.div-carousel-thumbnails {
background: #f5f5f0;
padding-top: 50px; }
.div-carousel-thumbnails #main_area #slider #carousel-bounding-box #myCarousel {
padding: 6px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px; }
.div-carousel-thumbnails #main_area #slider #carousel-bounding-box #myCarousel .carousel-control {
background: transparent; }
.div-carousel-thumbnails #main_area #slider-thumbs ul li a.thumbnail:hover {
background: #2CB492;
border: #2CB492; }
@-webkit-keyframes spaceboots {
0% {
-webkit-transform: translate(0px, 0px) rotate(0deg); }
10% {
-webkit-transform: translate(0px, 0px) rotate(0.5deg); }
20% {
-webkit-transform: translate(0px, 0px) rotate(0.5deg); } }
.Heidelberg-Page {
background: transparent !important;
/*background-image: url(//www.wonderbly.com/static/phoenix/2017-12-13/f89f518…/assets/images/book-loading-page-1200x886@2x.svg) !important;*/
background-size: cover !important; }
.form-search-top {
position: absolute;
z-index: 10;
width: 227px;
left: -14px; }
/*.shake:hover,
}
.shake:focus {
-webkit-animation-name: spaceboots;
-webkit-animation-duration: 3s;
-webkit-transform-origin: 50% 50%;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}*/
.preview-word-comic {
text-align: center;
padding-bottom: 30px; }
.preview-word-comic .jump, .preview-word-comic #previous, .preview-word-comic #next {
background: transparent;
border-radius: 50%;
border-color: transparent;
font-size: 17px;
margin: 10.5px; }
.preview-word-comic .jump:hover, .preview-word-comic #previous:hover, .preview-word-comic #next:hover {
background: rgba(240, 124, 19, 0.37); }
.preview-word-comic .word {
font-size: 18px; }
@-moz-document url-prefix() {
.preview-word-comic .jump, .preview-word-comic #previous, .preview-word-comic #next {
margin: 8px; } }
.thumbnails-comic-word {
display: flex;
justify-content: center;
margin: auto; }
.thumbnails-comic-word .img-thumbnails-word {
margin: 4px;
margin-right: 6px;
margin-left: 6px;
max-width: 40px;
max-height: 40px;
border: 2px solid transparent;
background: white !important;
border-radius: 5px;
padding: 2px; }
.thumbnails-comic-word .img-thumbnails-word:hover {
border: 2px solid rgba(240, 124, 19, 0.37);
border-radius: 5px; }
.thumbnails-comic-word .popover {
min-width: 250px; }
.thumbnails-comic-word .popover .popover-title {
text-align: center;
font-family: inherit;
font-size: 17px;
font-weight: 500; }
.thumbnails-comic-word .btn-change-story {
left: 0;
display: none;
position: absolute;
padding: 0;
border-radius: 3px;
z-index: 10;
font-size: 15px;
width: 90px;
height: 27px;
line-height: 27px;
background: #e07e26 !important; }
.thumbnails-comic-word .btn-change-story:hover {
text-decoration: none; }
.thumbnails-comic-word .ajax-change-story {
border-radius: 5px;
color: white;
border: 2px solid;
background: #5bc0de;
display: block;
width: 100%;
padding: 10px 13px; }
.thumbnails-comic-word .ajax-change-story:hover {
background: #1383de; }
.thumbnails-comic-word .ajax-present-story {
pointer-events: none;
background: #d8d4c7; }
.p-comic-end-story {
position: absolute;
color: black;
top: 31%;
font-size: 35px;
left: 65%;
word-wrap: break-word;
font-weight: 900; }
.p-comic-message {
position: absolute;
color: black;
top: 25%;
left: 10%;
font-size: 13px;
right: 60%;
display: flex;
white-space: pre-line;
word-break: initial;
background: transparent;
border: 0;
font-family: inherit; }
.fa-angle-right, .fa-angle-left {
color: #0CA2C0; }
.pre-comic-content {
white-space: pre-line;
word-break: initial;
background: transparent;
border: 0;
font-family: inherit;
font-size: 17px;
padding: 0; }
.item-detail ul li {
font-size: 17px; }
.item-detail ul li span {
font-size: 17px; }
.active-word {
background: rgba(240, 124, 19, 0.37) !important; }
.active-thumbnail {
border: 2px solid rgba(240, 124, 19, 0.37) !important;
border-radius: 5px; }
.background-hiden {
position: absolute;
height: 100%;
width: 100%;
top: 0;
background: #1f1c1c4a;
display: none; }
#info-preview-comic-message {
background: #F5F5F0;
padding: 4rem;
border-top: 1px solid #d8d4c7;
position: absolute;
bottom: 0;
width: 100%;
z-index: 11; }
#info-preview-comic-message .img-dear {
overflow: hidden;
margin-bottom: 15px;
max-height: 300px; }
#info-preview-comic-message .img-dear img {
width: 100%;
border-radius: 5px; }
#info-preview-comic-message .text-dear textarea {
margin-bottom: 15px; }
#info-preview-comic-message .text-dear button {
border: 0; }
#info-preview-comic-name {
position: absolute;
bottom: 0; }
.nav-info-preview-comic .info-preview-comic {
padding: 0;
border: 1px solid #d8d4c7;
background: white;
box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.03); }
.nav-info-preview-comic .info-preview-comic .info-preview-comic-name {
border-left: 1px solid #d8d4c7;
padding: 30px 15px;
text-align: center;
cursor: pointer; }
.nav-info-preview-comic .info-preview-comic .info-preview-comic-message {
border-left: 1px solid #d8d4c7;
border-right: 1px solid #d8d4c7;
padding: 30px 15px;
text-align: center;
cursor: pointer; }
.nav-info-preview-comic .info-preview-comic .info-preview-comic-button {
padding: 30px 15px;
cursor: pointer; }
.nav-info-preview-comic .info-preview-comic .fa-check-circle {
color: #FF870A;
font-size: 20px;
margin-right: 5px; }
.nav-info-preview-comic .info-preview-comic .fa-chevron-up {
color: #b5bcc3; }
.nav-info-preview-comic .info-preview-comic .fa-chevron-down {
color: #b5bcc3; }
.nav-info-preview-comic .info-preview-comic span {
color: #b5bcc3; }
.nav-info-preview-comic .info-preview-comic-mobile .info-preview-comic-name {
text-align: left; }
.nav-info-preview-comic .info-preview-comic-mobile .info-preview-comic-message {
text-align: left; }
.nav-info-preview-comic .info-preview-comic-button a {
display: block; }
.story-relative {
border-top: 1px solid #ddd;
background: #F5F5F0;
padding-top: 30px;
padding-bottom: 50px; }
.shopping-button-home {
background-size: 250px 65px;
width: 260px; }
@media (max-width: 414px) {
.preview-word-comic {
display: flex; }
.preview-word-comic .word {
margin: 0; }
.img-thumbnails-word {
width: 100%; }
.popover {
left: 0 !important; }
.popover .arrow {
left: 20% !important; }
.p-comic-message {
font-size: 5px; }
.p-comic-end-story {
font-size: 9px;
top: 34%; } }
/*# sourceMappingURL=style.css.map */ | 0.311951 | 0.053354 |
body{
width: 960px;
height: 100%
}
h1{
font-family: 'Indie Flower', cursive;
font-size: 50px;
margin: 20px;
text-align: center;
color: #00C1D4;
text-transform: uppercase;
padding: 20px;
font-weight: bold;
}
h3{
font-family: 'Caveat', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
font-size: 30px;
margin: 20px;
padding: 10px;
color: #787A91;
text-transform: capitalize;
}
.icon {
width: 100px;
height: 100px;
position: absolute;
/* bottom: 200px;
right: 344px; */
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
float: right ;
top: 50px;
right: 20px;
}
@keyframes example {
0% {left:0px; top:0px;}
25% { left:20px; top:0px;}
50% { left:20px; top:20px;}
75% {left:0px; top:20px;}
100% { left:0px; top:0px;}
}
.imgone{
position: absolute;
right: 150px;
top: 170px;
}
img{
display: inline-block;
width: 400px;
height: 300px;
border-radius: 20px;
display: block;
}
.imgone:hover .overlay {
bottom: 0;
height: 100%;
}
.overlay {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background-color: #FDEFEF;
overflow: hidden;
width: 100%;
height: 0;
transition: .5s ease;
border-radius: 20px;
}
.text {
white-space: nowrap;
color: rgb(54, 51, 54);
font-size: 30px;
position: absolute;
overflow: hidden;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
font-family: 'Indie Flower', cursive;
font-size: 20px;
margin: auto;
font-weight: bold;
}
.imgtow:hover .overlay {
bottom: 0;
height: 100%;
}
.imgone{
position: absolute;
right: 150px;
top: 170px;
}
.imgtow{
position: absolute;
right: 150px;
top: 600px;
}
.pmain{
font-size: 20px;
font-family: 'Caveat', cursive;
font-family: 'Courgette', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
line-height: 28px;
margin: 20px;
padding: 10px;
text-indent: 20px;
box-sizing: 300px 700px;
}
ul{
font-family: 'Caveat', cursive;
font-family: 'Courgette', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
margin: 10px;
text-transform: capitalize;
margin: 20px;
text-indent: 10px;
}
li {
line-height: 35px;
list-style-type: lower-roman;
color: rgb(65, 63, 64);
font-size: 20px;
margin-left: 20px;
}
a{
text-decoration: none;
margin-left: 10px;
}
a :hover{
cursor: pointer;
}
button{
position: relative;
left: 50px;}
.think{
position: relative;
left: 500px;
bottom:450px;
}
.think2{
position: relative;
left: 860px;
bottom:80px;
}
.think{
-webkit-animation: mover 2s infinite alternate;
animation: mover 2s infinite alternate;
}
@-webkit-keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
@keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
.think2:hover {
display: inline-block;
margin: 0 0.9rem;
animation: bounce; /* referring directly to the animation's @keyframe declaration */
animation-duration: 3s; /* don't forget to set a duration! */
}
fieldset{
padding: 20px;
border-radius: 20px;
margin: 20px;
border:outset; }
label{
display: block;
font-family: 'Caveat', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
font-size: 25px;
line-height: 59px;
}
legend{
font-family: 'Indie Flower', cursive;
font-size: 40px;
color: #464141;
}
fieldset {
position: relative;
top: 30px;
left: 10px;
border:solid ;
}
form{
margin: 10px;
padding: 10px;
color: #3d3a3a;
}
input{
width: 200px;
}
form p {
font-size: 30px;
color: rgb(27, 25, 27);
}
.pmain{
line-height: 30px;
text-indent: 20px;
}
h4{
font-family: 'Caveat', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
font-size: 25px;
margin: 10px;
padding: 10px;
color: #64515f;
text-transform: capitalize;
}
#vedio{
display: grid;
grid-template-columns: auto auto auto;
gap: 20px;
margin-left: 100px;
padding-top: 50px;
padding-bottom: 50px;
}
iframe{
border-radius: 50px;
}
#Watch{
position: relative;
top: 70px;
left: 150px;
letter-spacing: 10px;
font-weight: bolder;
}
.watch{
position: relative;
width: 100px;
height: 100px;
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
}
.water{
position: absolute;
left: 1050px;
bottom: -1500px;
-webkit-animation: mover 2s infinite alternate;
animation: mover 2s infinite alternate;
}
@-webkit-keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
@keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
.water:hover {
display: inline-block;
margin: 0 0.9rem;
animation: bounce; /* referring directly to the animation's @keyframe declaration */
animation-duration: 3s; /* don't forget to set a duration! */
} | css/page2new.css | body{
width: 960px;
height: 100%
}
h1{
font-family: 'Indie Flower', cursive;
font-size: 50px;
margin: 20px;
text-align: center;
color: #00C1D4;
text-transform: uppercase;
padding: 20px;
font-weight: bold;
}
h3{
font-family: 'Caveat', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
font-size: 30px;
margin: 20px;
padding: 10px;
color: #787A91;
text-transform: capitalize;
}
.icon {
width: 100px;
height: 100px;
position: absolute;
/* bottom: 200px;
right: 344px; */
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
float: right ;
top: 50px;
right: 20px;
}
@keyframes example {
0% {left:0px; top:0px;}
25% { left:20px; top:0px;}
50% { left:20px; top:20px;}
75% {left:0px; top:20px;}
100% { left:0px; top:0px;}
}
.imgone{
position: absolute;
right: 150px;
top: 170px;
}
img{
display: inline-block;
width: 400px;
height: 300px;
border-radius: 20px;
display: block;
}
.imgone:hover .overlay {
bottom: 0;
height: 100%;
}
.overlay {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background-color: #FDEFEF;
overflow: hidden;
width: 100%;
height: 0;
transition: .5s ease;
border-radius: 20px;
}
.text {
white-space: nowrap;
color: rgb(54, 51, 54);
font-size: 30px;
position: absolute;
overflow: hidden;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
font-family: 'Indie Flower', cursive;
font-size: 20px;
margin: auto;
font-weight: bold;
}
.imgtow:hover .overlay {
bottom: 0;
height: 100%;
}
.imgone{
position: absolute;
right: 150px;
top: 170px;
}
.imgtow{
position: absolute;
right: 150px;
top: 600px;
}
.pmain{
font-size: 20px;
font-family: 'Caveat', cursive;
font-family: 'Courgette', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
line-height: 28px;
margin: 20px;
padding: 10px;
text-indent: 20px;
box-sizing: 300px 700px;
}
ul{
font-family: 'Caveat', cursive;
font-family: 'Courgette', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
margin: 10px;
text-transform: capitalize;
margin: 20px;
text-indent: 10px;
}
li {
line-height: 35px;
list-style-type: lower-roman;
color: rgb(65, 63, 64);
font-size: 20px;
margin-left: 20px;
}
a{
text-decoration: none;
margin-left: 10px;
}
a :hover{
cursor: pointer;
}
button{
position: relative;
left: 50px;}
.think{
position: relative;
left: 500px;
bottom:450px;
}
.think2{
position: relative;
left: 860px;
bottom:80px;
}
.think{
-webkit-animation: mover 2s infinite alternate;
animation: mover 2s infinite alternate;
}
@-webkit-keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
@keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
.think2:hover {
display: inline-block;
margin: 0 0.9rem;
animation: bounce; /* referring directly to the animation's @keyframe declaration */
animation-duration: 3s; /* don't forget to set a duration! */
}
fieldset{
padding: 20px;
border-radius: 20px;
margin: 20px;
border:outset; }
label{
display: block;
font-family: 'Caveat', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
font-size: 25px;
line-height: 59px;
}
legend{
font-family: 'Indie Flower', cursive;
font-size: 40px;
color: #464141;
}
fieldset {
position: relative;
top: 30px;
left: 10px;
border:solid ;
}
form{
margin: 10px;
padding: 10px;
color: #3d3a3a;
}
input{
width: 200px;
}
form p {
font-size: 30px;
color: rgb(27, 25, 27);
}
.pmain{
line-height: 30px;
text-indent: 20px;
}
h4{
font-family: 'Caveat', cursive;
font-family: 'Indie Flower', cursive;
font-family: '<NAME>', cursive;
font-size: 25px;
margin: 10px;
padding: 10px;
color: #64515f;
text-transform: capitalize;
}
#vedio{
display: grid;
grid-template-columns: auto auto auto;
gap: 20px;
margin-left: 100px;
padding-top: 50px;
padding-bottom: 50px;
}
iframe{
border-radius: 50px;
}
#Watch{
position: relative;
top: 70px;
left: 150px;
letter-spacing: 10px;
font-weight: bolder;
}
.watch{
position: relative;
width: 100px;
height: 100px;
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
}
.water{
position: absolute;
left: 1050px;
bottom: -1500px;
-webkit-animation: mover 2s infinite alternate;
animation: mover 2s infinite alternate;
}
@-webkit-keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
@keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
.water:hover {
display: inline-block;
margin: 0 0.9rem;
animation: bounce; /* referring directly to the animation's @keyframe declaration */
animation-duration: 3s; /* don't forget to set a duration! */
} | 0.577376 | 0.111048 |
html, body {
height : 100%;
margin : 0;
padding : 0;
overflow : hidden;
}
body {
font-family : 'Trebuchet MS', Arial, Helvetica, sans-serif;
}
/* ==================================================
href
================================================== */
a {
text-decoration : underline;
color : #278ac7;
font-weight : bold;
}
a, a:link, a:visited {
}
a:hover, a:active {
text-decoration : none;
}
/* ==================================================
Content
================================================== */
#container {
height : 100%;
margin : 0;
padding : 0;
}
#container > div {
float : left;
width : 50%;
}
.input, #result {
display : block;
width : 100%;
height : 100%;
background-color : white;
outline : none;
border : 0px;
}
#result-container {
}
.input {
font-family : Monaco, Consolas, "Bitstream Vera Sans Mono", monospace;
overflow : auto;
padding : 10px;
background-color : #030500;
color : #f8ffee;
}
#result {
border : 0;
overflow : auto;
}
/* ==================================================
Text
================================================== */
#result h1 {
font-size : 190%;
font-family : "Century Gothic", "Trebuchet MS", sans-serif;
font-variant : small-caps;
border-bottom : 1px solid #0E0E10;
padding : 3px 10px;
font-weight : bold;
}
#result h2 {
font-size : 170%;
border-bottom : 1px dashed #0E0E10;
padding : 3px 10px;
font-weight : bold;
}
#result h3 {
font-size : 150%;
padding : 3px 10px;
font-weight : bold;
}
#result h4 {
font-size : 130%;
padding : 3px 10px;
font-weight : bold;
}
#result pre, #result code {
border : 1px solid #e2e2e2;
background-color : #ededed;
}
#result p {
padding : 4px 7px;
margin : 0;
}
#result pre {
padding : 4px 7px;
margin : 8px;
}
#result code {
margin-left : 3px;
margin-right : 3px;
padding-left : 3px;
padding-right : 3px;
}
/* http://coding.smashingmagazine.com/2008/08/13/top-10-css-table-designs/ */
#result table {
font-family : "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
background : #fff;
margin : 10px auto;
width : 80%;
border-collapse : collapse;
text-align : left;
}
#result th {
font-weight : bold;
color : #039;
padding : 6px 8px;
border-bottom : 2px solid #6678b1;
}
#result td {
border-bottom : 1px solid #ccc;
color : #212142;
padding : 6px 8px;
} | stub/editor/editor.css | html, body {
height : 100%;
margin : 0;
padding : 0;
overflow : hidden;
}
body {
font-family : 'Trebuchet MS', Arial, Helvetica, sans-serif;
}
/* ==================================================
href
================================================== */
a {
text-decoration : underline;
color : #278ac7;
font-weight : bold;
}
a, a:link, a:visited {
}
a:hover, a:active {
text-decoration : none;
}
/* ==================================================
Content
================================================== */
#container {
height : 100%;
margin : 0;
padding : 0;
}
#container > div {
float : left;
width : 50%;
}
.input, #result {
display : block;
width : 100%;
height : 100%;
background-color : white;
outline : none;
border : 0px;
}
#result-container {
}
.input {
font-family : Monaco, Consolas, "Bitstream Vera Sans Mono", monospace;
overflow : auto;
padding : 10px;
background-color : #030500;
color : #f8ffee;
}
#result {
border : 0;
overflow : auto;
}
/* ==================================================
Text
================================================== */
#result h1 {
font-size : 190%;
font-family : "Century Gothic", "Trebuchet MS", sans-serif;
font-variant : small-caps;
border-bottom : 1px solid #0E0E10;
padding : 3px 10px;
font-weight : bold;
}
#result h2 {
font-size : 170%;
border-bottom : 1px dashed #0E0E10;
padding : 3px 10px;
font-weight : bold;
}
#result h3 {
font-size : 150%;
padding : 3px 10px;
font-weight : bold;
}
#result h4 {
font-size : 130%;
padding : 3px 10px;
font-weight : bold;
}
#result pre, #result code {
border : 1px solid #e2e2e2;
background-color : #ededed;
}
#result p {
padding : 4px 7px;
margin : 0;
}
#result pre {
padding : 4px 7px;
margin : 8px;
}
#result code {
margin-left : 3px;
margin-right : 3px;
padding-left : 3px;
padding-right : 3px;
}
/* http://coding.smashingmagazine.com/2008/08/13/top-10-css-table-designs/ */
#result table {
font-family : "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
background : #fff;
margin : 10px auto;
width : 80%;
border-collapse : collapse;
text-align : left;
}
#result th {
font-weight : bold;
color : #039;
padding : 6px 8px;
border-bottom : 2px solid #6678b1;
}
#result td {
border-bottom : 1px solid #ccc;
color : #212142;
padding : 6px 8px;
} | 0.31321 | 0.099339 |
.mole-modal {
display: none;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 2;
padding: 0.5em 3em;
background-color: rgba(0, 0, 0, 0.7);
font-size: 0.9em;
}
.mole-modal p {
margin: 0 0 0.5em 0;
}
.mole-title-chunks {
position: relative;
top: -8em;
z-index: 1;
margin: 0;
padding: 0.3em 0;
color: #546269;
font-size: 1.5em;
text-shadow:
-1px -1px 0 #22282a,
1px -1px 0 #22282a,
-1px 1px 0 #22282a,
1px 1px 0 #22282a;
letter-spacing: 0.2em;
word-spacing: -0.4em;
transition: top 400ms cubic-bezier(0.36, 0, 0.66, -0.56);
}
.mole-title-toggle:checked + .mole-title .mole-title-chunks {
top: 0;
transition: none;
}
.mole-title-far-left, .mole-title-center-left {
display: inline-block;
transform-origin: bottom right;
}
.mole-title-center-right, .mole-title-far-right {
display: inline-block;
transform-origin: bottom left;
}
.mole-title-far-left {
transform: rotate(-20deg) translate(0.2em, 0.1em);
}
.mole-title-center-left {
transform: rotate(-10deg) translate(0.1em, -0.1em);
}
.mole-title-center-right {
transform: rotate(10deg) translate(-0.2em, 0);
}
.mole-title-far-right {
transform: rotate(20deg) translate(-0.3em, 0.3em);
}
.mole-start-button {
position: relative;
bottom: -8em;
transition: bottom 400ms cubic-bezier(0.36, 0, 0.66, -0.56);
}
.mole-title-toggle:checked + .mole-title .mole-start-button {
bottom: 0;
transition: none;
}
.mole-game {
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
opacity: 1;
transition: opacity 400ms 400ms;
}
.mole-title-toggle:checked + .mole-title + .mole-game {
top: -8em;
opacity: 0;
transition: none;
}
.mole-hole, .mole-mole {
display: block;
position: absolute;
cursor: crosshair;
}
.mole-hole {
width: 4.4em;
height: 2.7em;
border: 0.3em solid #30383b;
border-bottom-width: 0;
border-radius: 50%;
background-color: #22282a;
}
.mole-hole + .mole-hole {
display: none;
z-index: 1;
border-color: #444f55;
background-color: #30383b;
cursor: not-allowed;
}
.mole-hole-toggle:checked + .mole-hole {
display: none;
}
.mole-hole-toggle:checked + .mole-hole + .mole-hole {
display: block;
}
.mole-hole::before, .mole-hole::after, .mole-mole::before, .mole-mole::after,
.mole-mole:active::before, .mole-mole:active::after {
content: '';
display: block;
position: absolute;
border-radius: 0.5em;
transform: rotate(-30deg);
}
.mole-hole::before, .mole-mole:active::before {
top: -8em;
left: 4.5em;
width: 1em;
height: 4em;
background-color: #30383b;
transform-origin: bottom right;
}
.mole-hole::after, .mole-mole:active::after {
top: -8em;
left: 3em;
width: 4em;
height: 2em;
background-color: #444f55;
transform-origin: 2.5em 5.5em;
}
.mole-hole:active::before, .mole-hole:active::after,
.mole-mole:active::before, .mole-mole:active::after {
animation-name: hammer;
animation-duration: 200ms;
}
.mole-hole:active::before, .mole-mole:active::before {
top: -0.5em;
}
.mole-hole:active::after, .mole-mole:active::after {
top: -2em;
}
.mole-hole + .mole-hole::before, .mole-hole + .mole-hole::after {
display: block;
left: -0.3em;
width: 5.83em;
height: 0.3em;
background-color: #22282a;
}
.mole-hole + .mole-hole::before {
top: -0.3em;
transform: rotate(28deg);
transform-origin: top left;
animation-name: none;
}
.mole-hole + .mole-hole::after {
top: auto;
bottom: 0;
transform: rotate(-28deg);
transform-origin: bottom left;
animation-name: none;
}
.mole-hole-far-left, .mole-hole-center, .mole-hole-far-right {
top: 2.5em;
}
.mole-hole-center-left, .mole-hole-center-right {
top: 1em;
}
.mole-hole-far-left {
left: 5em;
}
.mole-hole-center-left {
left: 11em;
}
.mole-hole-center {
left: 17em;
}
.mole-hole-center-right {
left: 23em;
}
.mole-hole-far-right {
left: 29em;
}
.mole-mole:active {
animation-play-state: paused;
}
.mole-mole {
top: -8em;
left: 0;
width: 5em;
height: 3em;
animation-name: mole;
animation-duration: 300s;
animation-iteration-count: infinite;
animation-timing-function: step-end;
}
.mole-mole.mole-mole-1 {
animation-delay: -60s;
}
.mole-mole.mole-mole-2 {
animation-delay: -120s;
}
.mole-mole.mole-mole-3 {
animation-delay: -180s;
}
.mole-mole.mole-mole-4 {
animation-delay: -240s;
}
.mole-mole-toggle:checked + .mole-mole {
display: none;
}
.mole-mole::before, .mole-mole::after {
transform: none;
}
.mole-mole::before {
top: 0.25em;
left: 1.25em;
width: 2.5em;
height: 2.5em;
border-radius: 1em 1em 0.5em 0.5em;
background-color: #30383b;
}
.mole-mole::after {
content: '..';
top: 0.5em;
left: 1.75em;
width: 1.5em;
height: 1em;
border-radius: 0.5em;
background-color: #444f55;
font-weight: bold;
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~
.mole-hole-toggle:checked ~ .mole-loss-modal {
display: block;
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~
.mole-mole-toggle:checked ~ .mole-win-modal {
display: block;
}
.mole-score {
position: absolute;
top: 0.5em;
left: 0.5em;
margin: 0;
color: #30383b;
text-align: left;
font-weight: bold;
font-size: 0.9em;
line-height: 1;
}
.mole-score::after {
content: '000';
display: block;
font-size: 2em;
letter-spacing: 0.1em;
}
.mole-mole-toggle:checked ~ .mole-score::after {
content: '+10';
}
.mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 05';
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+20';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 10';
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+30';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+15';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '000';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 15';
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+40';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+25';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+10';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '\2212 05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 20';
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+50';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+35';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+20';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '\2212 10';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 25';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+45';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+30';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+15';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '000';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '\2212 15';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+40';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+25';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+10';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '\2212 05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+35';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+20';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+30';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+15';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+25';
}
.mole-help-button {
position: absolute;
top: 0.5em;
right: 0.5em;
}
.mole-help-toggle:checked + .mole-help-modal {
display: block;
}
body {
margin: 0;
background-color: #161819;
color: #617078;
text-align: center;
font: 20px/1.5 'Titillium Web', sans-serif;
}
.button {
display: inline-block;
border: 0.1em solid #444f55;
border-radius: 0.3em;
padding: 0.5em;
background-color: #617078;
color: #3d484c;
text-decoration: none;
font-size: 1em;
line-height: 1;
font-weight: bold;
cursor: pointer;
user-select: none;
}
.button-small {
padding: 0.3em;
font-size: 0.9em;
}
.button:hover {
background-color: #6f828b;
}
.button:active,
.timer-analog-toggle:checked ~ .timer-controls .timer-analog,
.timer-digital-toggle:checked ~ .timer-controls .timer-digital {
background-color: #546269;
}
.toggle {
display: none;
}
.demo-content {
position: relative;
width: 39em;
height: 7em;
overflow: hidden;
background-color: #546269;
}
@keyframes hammer {
0% {
transform: rotate(-30deg);
}
50% {
transform: rotate(-45deg);
}
100% {
transform: rotate(-30deg);
}
}
@keyframes mole {
1.11% {
top: 1em;
left: 23em;
}
1.34% {
top: -8em;
}
2.36% {
top: 2.5em;
left: 17em;
}
2.60% {
top: -8em;
}
3.75% {
top: 2.5em;
left: 17em;
}
3.90% {
top: -8em;
}
4.84% {
top: 2.5em;
left: 29em;
}
5.00% {
top: -8em;
}
5.72% {
top: 2.5em;
left: 5em;
}
5.91% {
top: -8em;
}
6.62% {
top: 2.5em;
left: 5em;
}
6.84% {
top: -8em;
}
7.76% {
top: 1em;
left: 23em;
}
7.96% {
top: -8em;
}
9.00% {
top: 2.5em;
left: 17em;
}
9.12% {
top: -8em;
}
10.07% {
top: 2.5em;
left: 29em;
}
10.21% {
top: -8em;
}
11.07% {
top: 2.5em;
left: 29em;
}
11.24% {
top: -8em;
}
12.44% {
top: 1em;
left: 23em;
}
12.64% {
top: -8em;
}
13.78% {
top: 2.5em;
left: 17em;
}
13.98% {
top: -8em;
}
14.76% {
top: 2.5em;
left: 17em;
}
14.90% {
top: -8em;
}
15.73% {
top: 2.5em;
left: 29em;
}
15.96% {
top: -8em;
}
16.56% {
top: 2.5em;
left: 5em;
}
16.78% {
top: -8em;
}
17.39% {
top: 1em;
left: 11em;
}
17.52% {
top: -8em;
}
18.29% {
top: 1em;
left: 11em;
}
18.51% {
top: -8em;
}
19.50% {
top: 2.5em;
left: 5em;
}
19.70% {
top: -8em;
}
21.05% {
top: 1em;
left: 11em;
}
21.24% {
top: -8em;
}
22.15% {
top: 2.5em;
left: 5em;
}
22.38% {
top: -8em;
}
23.27% {
top: 1em;
left: 23em;
}
23.47% {
top: -8em;
}
24.45% {
top: 1em;
left: 23em;
}
24.58% {
top: -8em;
}
25.78% {
top: 1em;
left: 23em;
}
25.94% {
top: -8em;
}
26.65% {
top: 2.5em;
left: 29em;
}
26.85% {
top: -8em;
}
27.76% {
top: 2.5em;
left: 17em;
}
27.89% {
top: -8em;
}
28.85% {
top: 2.5em;
left: 5em;
}
29.06% {
top: -8em;
}
30.02% {
top: 1em;
left: 23em;
}
30.23% {
top: -8em;
}
30.89% {
top: 2.5em;
left: 17em;
}
31.05% {
top: -8em;
}
31.76% {
top: 2.5em;
left: 5em;
}
31.98% {
top: -8em;
}
32.67% {
top: 2.5em;
left: 17em;
}
32.84% {
top: -8em;
}
33.83% {
top: 2.5em;
left: 29em;
}
34.07% {
top: -8em;
}
35.16% {
top: 2.5em;
left: 5em;
}
35.33% {
top: -8em;
}
35.96% {
top: 2.5em;
left: 5em;
}
36.14% {
top: -8em;
}
36.93% {
top: 1em;
left: 11em;
}
37.05% {
top: -8em;
}
38.24% {
top: 2.5em;
left: 5em;
}
38.39% {
top: -8em;
}
39.07% {
top: 2.5em;
left: 5em;
}
39.22% {
top: -8em;
}
40.85% {
top: 2.5em;
left: 17em;
}
41.09% {
top: -8em;
}
42.17% {
top: 2.5em;
left: 17em;
}
42.34% {
top: -8em;
}
43.13% {
top: 2.5em;
left: 5em;
}
43.34% {
top: -8em;
}
44.41% {
top: 1em;
left: 11em;
}
44.63% {
top: -8em;
}
45.52% {
top: 2.5em;
left: 29em;
}
45.71% {
top: -8em;
}
46.48% {
top: 1em;
left: 11em;
}
46.71% {
top: -8em;
}
47.81% {
top: 2.5em;
left: 29em;
}
47.94% {
top: -8em;
}
48.69% {
top: 1em;
left: 23em;
}
48.91% {
top: -8em;
}
49.85% {
top: 2.5em;
left: 17em;
}
50.07% {
top: -8em;
}
51.15% {
top: 2.5em;
left: 5em;
}
51.28% {
top: -8em;
}
52.43% {
top: 2.5em;
left: 17em;
}
52.56% {
top: -8em;
}
53.57% {
top: 2.5em;
left: 5em;
}
53.75% {
top: -8em;
}
54.56% {
top: 2.5em;
left: 5em;
}
54.68% {
top: -8em;
}
55.40% {
top: 1em;
left: 23em;
}
55.53% {
top: -8em;
}
56.55% {
top: 1em;
left: 23em;
}
56.69% {
top: -8em;
}
57.37% {
top: 2.5em;
left: 29em;
}
57.56% {
top: -8em;
}
58.75% {
top: 1em;
left: 11em;
}
58.90% {
top: -8em;
}
59.51% {
top: 1em;
left: 23em;
}
59.71% {
top: -8em;
}
60.76% {
top: 2.5em;
left: 5em;
}
60.89% {
top: -8em;
}
61.55% {
top: 2.5em;
left: 29em;
}
61.78% {
top: -8em;
}
62.56% {
top: 1em;
left: 23em;
}
62.69% {
top: -8em;
}
63.84% {
top: 2.5em;
left: 5em;
}
63.98% {
top: -8em;
}
64.73% {
top: 1em;
left: 23em;
}
64.91% {
top: -8em;
}
66.07% {
top: 2.5em;
left: 17em;
}
66.24% {
top: -8em;
}
66.90% {
top: 1em;
left: 11em;
}
67.12% {
top: -8em;
}
67.97% {
top: 2.5em;
left: 5em;
}
68.18% {
top: -8em;
}
68.88% {
top: 1em;
left: 11em;
}
69.00% {
top: -8em;
}
69.98% {
top: 1em;
left: 11em;
}
70.13% {
top: -8em;
}
70.74% {
top: 2.5em;
left: 17em;
}
70.87% {
top: -8em;
}
71.51% {
top: 2.5em;
left: 29em;
}
71.65% {
top: -8em;
}
72.66% {
top: 2.5em;
left: 29em;
}
72.89% {
top: -8em;
}
73.58% {
top: 1em;
left: 11em;
}
73.73% {
top: -8em;
}
74.90% {
top: 1em;
left: 11em;
}
75.10% {
top: -8em;
}
75.71% {
top: 1em;
left: 23em;
}
75.90% {
top: -8em;
}
76.86% {
top: 1em;
left: 23em;
}
77.02% {
top: -8em;
}
78.07% {
top: 1em;
left: 23em;
}
78.27% {
top: -8em;
}
79.14% {
top: 2.5em;
left: 17em;
}
79.33% {
top: -8em;
}
79.95% {
top: 1em;
left: 11em;
}
80.91% {
top: 2.5em;
left: 29em;
}
81.10% {
top: -8em;
}
82.29% {
top: 1em;
left: 11em;
}
82.45% {
top: -8em;
}
83.57% {
top: 2.5em;
left: 29em;
}
83.75% {
top: -8em;
}
84.55% {
top: 2.5em;
left: 17em;
}
84.77% {
top: -8em;
}
85.79% {
top: 1em;
left: 11em;
}
85.95% {
top: -8em;
}
86.92% {
top: 2.5em;
left: 29em;
}
87.14% {
top: -8em;
}
87.90% {
top: 2.5em;
left: 17em;
}
88.12% {
top: -8em;
}
88.95% {
top: 2.5em;
left: 29em;
}
89.14% {
top: -8em;
}
89.97% {
top: 2.5em;
left: 5em;
}
90.10% {
top: -8em;
}
91.26% {
top: 1em;
left: 11em;
}
91.41% {
top: -8em;
}
92.29% {
top: 1em;
left: 11em;
}
92.45% {
top: -8em;
}
93.06% {
top: 2.5em;
left: 5em;
}
93.24% {
top: -8em;
}
93.88% {
top: 2.5em;
left: 5em;
}
94.02% {
top: -8em;
}
95.07% {
top: 2.5em;
left: 29em;
}
95.29% {
top: -8em;
}
96.29% {
top: 1em;
left: 23em;
}
96.42% {
top: -8em;
}
97.51% {
top: 2.5em;
left: 17em;
}
97.74% {
top: -8em;
}
98.40% {
top: 2.5em;
left: 29em;
}
98.61% {
top: -8em;
}
99.28% {
top: 2.5em;
left: 29em;
}
99.51% {
top: -8em;
}
}
Resources | style.css | .mole-modal {
display: none;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 2;
padding: 0.5em 3em;
background-color: rgba(0, 0, 0, 0.7);
font-size: 0.9em;
}
.mole-modal p {
margin: 0 0 0.5em 0;
}
.mole-title-chunks {
position: relative;
top: -8em;
z-index: 1;
margin: 0;
padding: 0.3em 0;
color: #546269;
font-size: 1.5em;
text-shadow:
-1px -1px 0 #22282a,
1px -1px 0 #22282a,
-1px 1px 0 #22282a,
1px 1px 0 #22282a;
letter-spacing: 0.2em;
word-spacing: -0.4em;
transition: top 400ms cubic-bezier(0.36, 0, 0.66, -0.56);
}
.mole-title-toggle:checked + .mole-title .mole-title-chunks {
top: 0;
transition: none;
}
.mole-title-far-left, .mole-title-center-left {
display: inline-block;
transform-origin: bottom right;
}
.mole-title-center-right, .mole-title-far-right {
display: inline-block;
transform-origin: bottom left;
}
.mole-title-far-left {
transform: rotate(-20deg) translate(0.2em, 0.1em);
}
.mole-title-center-left {
transform: rotate(-10deg) translate(0.1em, -0.1em);
}
.mole-title-center-right {
transform: rotate(10deg) translate(-0.2em, 0);
}
.mole-title-far-right {
transform: rotate(20deg) translate(-0.3em, 0.3em);
}
.mole-start-button {
position: relative;
bottom: -8em;
transition: bottom 400ms cubic-bezier(0.36, 0, 0.66, -0.56);
}
.mole-title-toggle:checked + .mole-title .mole-start-button {
bottom: 0;
transition: none;
}
.mole-game {
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
opacity: 1;
transition: opacity 400ms 400ms;
}
.mole-title-toggle:checked + .mole-title + .mole-game {
top: -8em;
opacity: 0;
transition: none;
}
.mole-hole, .mole-mole {
display: block;
position: absolute;
cursor: crosshair;
}
.mole-hole {
width: 4.4em;
height: 2.7em;
border: 0.3em solid #30383b;
border-bottom-width: 0;
border-radius: 50%;
background-color: #22282a;
}
.mole-hole + .mole-hole {
display: none;
z-index: 1;
border-color: #444f55;
background-color: #30383b;
cursor: not-allowed;
}
.mole-hole-toggle:checked + .mole-hole {
display: none;
}
.mole-hole-toggle:checked + .mole-hole + .mole-hole {
display: block;
}
.mole-hole::before, .mole-hole::after, .mole-mole::before, .mole-mole::after,
.mole-mole:active::before, .mole-mole:active::after {
content: '';
display: block;
position: absolute;
border-radius: 0.5em;
transform: rotate(-30deg);
}
.mole-hole::before, .mole-mole:active::before {
top: -8em;
left: 4.5em;
width: 1em;
height: 4em;
background-color: #30383b;
transform-origin: bottom right;
}
.mole-hole::after, .mole-mole:active::after {
top: -8em;
left: 3em;
width: 4em;
height: 2em;
background-color: #444f55;
transform-origin: 2.5em 5.5em;
}
.mole-hole:active::before, .mole-hole:active::after,
.mole-mole:active::before, .mole-mole:active::after {
animation-name: hammer;
animation-duration: 200ms;
}
.mole-hole:active::before, .mole-mole:active::before {
top: -0.5em;
}
.mole-hole:active::after, .mole-mole:active::after {
top: -2em;
}
.mole-hole + .mole-hole::before, .mole-hole + .mole-hole::after {
display: block;
left: -0.3em;
width: 5.83em;
height: 0.3em;
background-color: #22282a;
}
.mole-hole + .mole-hole::before {
top: -0.3em;
transform: rotate(28deg);
transform-origin: top left;
animation-name: none;
}
.mole-hole + .mole-hole::after {
top: auto;
bottom: 0;
transform: rotate(-28deg);
transform-origin: bottom left;
animation-name: none;
}
.mole-hole-far-left, .mole-hole-center, .mole-hole-far-right {
top: 2.5em;
}
.mole-hole-center-left, .mole-hole-center-right {
top: 1em;
}
.mole-hole-far-left {
left: 5em;
}
.mole-hole-center-left {
left: 11em;
}
.mole-hole-center {
left: 17em;
}
.mole-hole-center-right {
left: 23em;
}
.mole-hole-far-right {
left: 29em;
}
.mole-mole:active {
animation-play-state: paused;
}
.mole-mole {
top: -8em;
left: 0;
width: 5em;
height: 3em;
animation-name: mole;
animation-duration: 300s;
animation-iteration-count: infinite;
animation-timing-function: step-end;
}
.mole-mole.mole-mole-1 {
animation-delay: -60s;
}
.mole-mole.mole-mole-2 {
animation-delay: -120s;
}
.mole-mole.mole-mole-3 {
animation-delay: -180s;
}
.mole-mole.mole-mole-4 {
animation-delay: -240s;
}
.mole-mole-toggle:checked + .mole-mole {
display: none;
}
.mole-mole::before, .mole-mole::after {
transform: none;
}
.mole-mole::before {
top: 0.25em;
left: 1.25em;
width: 2.5em;
height: 2.5em;
border-radius: 1em 1em 0.5em 0.5em;
background-color: #30383b;
}
.mole-mole::after {
content: '..';
top: 0.5em;
left: 1.75em;
width: 1.5em;
height: 1em;
border-radius: 0.5em;
background-color: #444f55;
font-weight: bold;
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~
.mole-hole-toggle:checked ~ .mole-loss-modal {
display: block;
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~
.mole-mole-toggle:checked ~ .mole-win-modal {
display: block;
}
.mole-score {
position: absolute;
top: 0.5em;
left: 0.5em;
margin: 0;
color: #30383b;
text-align: left;
font-weight: bold;
font-size: 0.9em;
line-height: 1;
}
.mole-score::after {
content: '000';
display: block;
font-size: 2em;
letter-spacing: 0.1em;
}
.mole-mole-toggle:checked ~ .mole-score::after {
content: '+10';
}
.mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 05';
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+20';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 10';
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+30';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+15';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '000';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 15';
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+40';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+25';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+10';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '\2212 05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 20';
}
.mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+50';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+35';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+20';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '\2212 10';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-score::after {
content: '\2212 25';
}
.mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+45';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+30';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+15';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '000';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '\2212 15';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+40';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+25';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+10';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '\2212 05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+35';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+20';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+05';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+30';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+15';
}
.mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-hole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-mole-toggle:checked ~ .mole-score::after {
content: '+25';
}
.mole-help-button {
position: absolute;
top: 0.5em;
right: 0.5em;
}
.mole-help-toggle:checked + .mole-help-modal {
display: block;
}
body {
margin: 0;
background-color: #161819;
color: #617078;
text-align: center;
font: 20px/1.5 'Titillium Web', sans-serif;
}
.button {
display: inline-block;
border: 0.1em solid #444f55;
border-radius: 0.3em;
padding: 0.5em;
background-color: #617078;
color: #3d484c;
text-decoration: none;
font-size: 1em;
line-height: 1;
font-weight: bold;
cursor: pointer;
user-select: none;
}
.button-small {
padding: 0.3em;
font-size: 0.9em;
}
.button:hover {
background-color: #6f828b;
}
.button:active,
.timer-analog-toggle:checked ~ .timer-controls .timer-analog,
.timer-digital-toggle:checked ~ .timer-controls .timer-digital {
background-color: #546269;
}
.toggle {
display: none;
}
.demo-content {
position: relative;
width: 39em;
height: 7em;
overflow: hidden;
background-color: #546269;
}
@keyframes hammer {
0% {
transform: rotate(-30deg);
}
50% {
transform: rotate(-45deg);
}
100% {
transform: rotate(-30deg);
}
}
@keyframes mole {
1.11% {
top: 1em;
left: 23em;
}
1.34% {
top: -8em;
}
2.36% {
top: 2.5em;
left: 17em;
}
2.60% {
top: -8em;
}
3.75% {
top: 2.5em;
left: 17em;
}
3.90% {
top: -8em;
}
4.84% {
top: 2.5em;
left: 29em;
}
5.00% {
top: -8em;
}
5.72% {
top: 2.5em;
left: 5em;
}
5.91% {
top: -8em;
}
6.62% {
top: 2.5em;
left: 5em;
}
6.84% {
top: -8em;
}
7.76% {
top: 1em;
left: 23em;
}
7.96% {
top: -8em;
}
9.00% {
top: 2.5em;
left: 17em;
}
9.12% {
top: -8em;
}
10.07% {
top: 2.5em;
left: 29em;
}
10.21% {
top: -8em;
}
11.07% {
top: 2.5em;
left: 29em;
}
11.24% {
top: -8em;
}
12.44% {
top: 1em;
left: 23em;
}
12.64% {
top: -8em;
}
13.78% {
top: 2.5em;
left: 17em;
}
13.98% {
top: -8em;
}
14.76% {
top: 2.5em;
left: 17em;
}
14.90% {
top: -8em;
}
15.73% {
top: 2.5em;
left: 29em;
}
15.96% {
top: -8em;
}
16.56% {
top: 2.5em;
left: 5em;
}
16.78% {
top: -8em;
}
17.39% {
top: 1em;
left: 11em;
}
17.52% {
top: -8em;
}
18.29% {
top: 1em;
left: 11em;
}
18.51% {
top: -8em;
}
19.50% {
top: 2.5em;
left: 5em;
}
19.70% {
top: -8em;
}
21.05% {
top: 1em;
left: 11em;
}
21.24% {
top: -8em;
}
22.15% {
top: 2.5em;
left: 5em;
}
22.38% {
top: -8em;
}
23.27% {
top: 1em;
left: 23em;
}
23.47% {
top: -8em;
}
24.45% {
top: 1em;
left: 23em;
}
24.58% {
top: -8em;
}
25.78% {
top: 1em;
left: 23em;
}
25.94% {
top: -8em;
}
26.65% {
top: 2.5em;
left: 29em;
}
26.85% {
top: -8em;
}
27.76% {
top: 2.5em;
left: 17em;
}
27.89% {
top: -8em;
}
28.85% {
top: 2.5em;
left: 5em;
}
29.06% {
top: -8em;
}
30.02% {
top: 1em;
left: 23em;
}
30.23% {
top: -8em;
}
30.89% {
top: 2.5em;
left: 17em;
}
31.05% {
top: -8em;
}
31.76% {
top: 2.5em;
left: 5em;
}
31.98% {
top: -8em;
}
32.67% {
top: 2.5em;
left: 17em;
}
32.84% {
top: -8em;
}
33.83% {
top: 2.5em;
left: 29em;
}
34.07% {
top: -8em;
}
35.16% {
top: 2.5em;
left: 5em;
}
35.33% {
top: -8em;
}
35.96% {
top: 2.5em;
left: 5em;
}
36.14% {
top: -8em;
}
36.93% {
top: 1em;
left: 11em;
}
37.05% {
top: -8em;
}
38.24% {
top: 2.5em;
left: 5em;
}
38.39% {
top: -8em;
}
39.07% {
top: 2.5em;
left: 5em;
}
39.22% {
top: -8em;
}
40.85% {
top: 2.5em;
left: 17em;
}
41.09% {
top: -8em;
}
42.17% {
top: 2.5em;
left: 17em;
}
42.34% {
top: -8em;
}
43.13% {
top: 2.5em;
left: 5em;
}
43.34% {
top: -8em;
}
44.41% {
top: 1em;
left: 11em;
}
44.63% {
top: -8em;
}
45.52% {
top: 2.5em;
left: 29em;
}
45.71% {
top: -8em;
}
46.48% {
top: 1em;
left: 11em;
}
46.71% {
top: -8em;
}
47.81% {
top: 2.5em;
left: 29em;
}
47.94% {
top: -8em;
}
48.69% {
top: 1em;
left: 23em;
}
48.91% {
top: -8em;
}
49.85% {
top: 2.5em;
left: 17em;
}
50.07% {
top: -8em;
}
51.15% {
top: 2.5em;
left: 5em;
}
51.28% {
top: -8em;
}
52.43% {
top: 2.5em;
left: 17em;
}
52.56% {
top: -8em;
}
53.57% {
top: 2.5em;
left: 5em;
}
53.75% {
top: -8em;
}
54.56% {
top: 2.5em;
left: 5em;
}
54.68% {
top: -8em;
}
55.40% {
top: 1em;
left: 23em;
}
55.53% {
top: -8em;
}
56.55% {
top: 1em;
left: 23em;
}
56.69% {
top: -8em;
}
57.37% {
top: 2.5em;
left: 29em;
}
57.56% {
top: -8em;
}
58.75% {
top: 1em;
left: 11em;
}
58.90% {
top: -8em;
}
59.51% {
top: 1em;
left: 23em;
}
59.71% {
top: -8em;
}
60.76% {
top: 2.5em;
left: 5em;
}
60.89% {
top: -8em;
}
61.55% {
top: 2.5em;
left: 29em;
}
61.78% {
top: -8em;
}
62.56% {
top: 1em;
left: 23em;
}
62.69% {
top: -8em;
}
63.84% {
top: 2.5em;
left: 5em;
}
63.98% {
top: -8em;
}
64.73% {
top: 1em;
left: 23em;
}
64.91% {
top: -8em;
}
66.07% {
top: 2.5em;
left: 17em;
}
66.24% {
top: -8em;
}
66.90% {
top: 1em;
left: 11em;
}
67.12% {
top: -8em;
}
67.97% {
top: 2.5em;
left: 5em;
}
68.18% {
top: -8em;
}
68.88% {
top: 1em;
left: 11em;
}
69.00% {
top: -8em;
}
69.98% {
top: 1em;
left: 11em;
}
70.13% {
top: -8em;
}
70.74% {
top: 2.5em;
left: 17em;
}
70.87% {
top: -8em;
}
71.51% {
top: 2.5em;
left: 29em;
}
71.65% {
top: -8em;
}
72.66% {
top: 2.5em;
left: 29em;
}
72.89% {
top: -8em;
}
73.58% {
top: 1em;
left: 11em;
}
73.73% {
top: -8em;
}
74.90% {
top: 1em;
left: 11em;
}
75.10% {
top: -8em;
}
75.71% {
top: 1em;
left: 23em;
}
75.90% {
top: -8em;
}
76.86% {
top: 1em;
left: 23em;
}
77.02% {
top: -8em;
}
78.07% {
top: 1em;
left: 23em;
}
78.27% {
top: -8em;
}
79.14% {
top: 2.5em;
left: 17em;
}
79.33% {
top: -8em;
}
79.95% {
top: 1em;
left: 11em;
}
80.91% {
top: 2.5em;
left: 29em;
}
81.10% {
top: -8em;
}
82.29% {
top: 1em;
left: 11em;
}
82.45% {
top: -8em;
}
83.57% {
top: 2.5em;
left: 29em;
}
83.75% {
top: -8em;
}
84.55% {
top: 2.5em;
left: 17em;
}
84.77% {
top: -8em;
}
85.79% {
top: 1em;
left: 11em;
}
85.95% {
top: -8em;
}
86.92% {
top: 2.5em;
left: 29em;
}
87.14% {
top: -8em;
}
87.90% {
top: 2.5em;
left: 17em;
}
88.12% {
top: -8em;
}
88.95% {
top: 2.5em;
left: 29em;
}
89.14% {
top: -8em;
}
89.97% {
top: 2.5em;
left: 5em;
}
90.10% {
top: -8em;
}
91.26% {
top: 1em;
left: 11em;
}
91.41% {
top: -8em;
}
92.29% {
top: 1em;
left: 11em;
}
92.45% {
top: -8em;
}
93.06% {
top: 2.5em;
left: 5em;
}
93.24% {
top: -8em;
}
93.88% {
top: 2.5em;
left: 5em;
}
94.02% {
top: -8em;
}
95.07% {
top: 2.5em;
left: 29em;
}
95.29% {
top: -8em;
}
96.29% {
top: 1em;
left: 23em;
}
96.42% {
top: -8em;
}
97.51% {
top: 2.5em;
left: 17em;
}
97.74% {
top: -8em;
}
98.40% {
top: 2.5em;
left: 29em;
}
98.61% {
top: -8em;
}
99.28% {
top: 2.5em;
left: 29em;
}
99.51% {
top: -8em;
}
}
Resources | 0.635901 | 0.124505 |
.users-av-wraper{
position: relative;
width: 630px;
min-height:100%;
background: #f7f7f7;
padding: 10px;
overflow-x: hidden;
overflow-y: auto;
font-size:13px
}
.users-av-wraper > form > div{
position: relative;
padding: 15px 0 0 15px
}
.users-av-wraper > form > div:first-child{
background-color: #efefef;
min-height:400px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
padding: 0
}
.users-avupload{
position: relative;
width: 100%;
height: 100%;
}
.users-avupload .upload-button{
display: table;
width: 100%;
height:380px;
cursor: pointer;
}
.users-avupload .upload-button > div{
display: table-row
}
.users-avupload .upload-button > div > span{
display: table-cell;
vertical-align: middle;
text-align:center
}
.users-avupload .upload-button > div > span > em{
display: inline-block;
width:100px;
height:100px;
font-size:40px;
text-align:center;
color:#fff;
background-color: #1182C8;
line-height:100px;
border-radius: 50px
}
.users-avupload .upload-button:hover em{
background-color: #205FA0;
}
.users-avupload .img-area{
position:relative;
width: 100%;
text-align:center;
padding:10px
}
.users-avupload .img-area img{
width:100%;
}
.users-av-wraper .guide{
padding:8px;
background: #D8EAF8;
border: 1px solid #ccc;
border-radius: 4px;
}
.users-av-wraper .exit-bt{
position: fixed;
top: 380px;
right: 30px
}
/* EDIT INFO */
#change-photo{
display: none;
}
.users-menu > li > a{
padding: 8px 10px !important;
}
/*Login-box*/
.login-box{
width:100%
}
@media (max-width:399px) {
.login-box{
width:100%
}
}
.openid-btns {
border-top: 1px #fff solid;
padding-top: 15px;
}
.openid-btns .btn-group {
display: flex;
width: 100%;
}
.openid-btns .btn-group button.btn {
width: 40px;
text-align: center;
}
.openid-btns .btn-group a.btn {
flex-grow: 1;
text-align: left;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.openid-google {
color: #ffffff !important;
background-color: #d9534f;
border-color: #d43f3a;
}
.openid-google:focus {
color: #ffffff;
background-color: #c9302c;
border-color: #761c19;
}
.openid-google:hover {
color: #ffffff;
background-color: #c9302c;
border-color: #ac2925;
}
.openid-google:active {
color: #ffffff;
background-color: #c9302c;
border-color: #ac2925;
}
.openid-google:active:hover,
.openid-google:active:focus {
color: #ffffff;
background-color: #ac2925;
border-color: #761c19;
}
.openid-google:active {
background-image: none;
}
.openid-google.disabled:hover,
.openid-google[disabled]:hover,
fieldset[disabled] .openid-google:hover,
.openid-google.disabled:focus,
.openid-google[disabled]:focus,
fieldset[disabled] .openid-google:focus {
background-color: #d9534f;
border-color: #d43f3a;
cursor: inherit;
}
.openid-facebook {
color: #ffffff !important;
background-color: #428bca;
border-color: #357ebd;
}
.openid-facebook:focus {
color: #ffffff;
background-color: #3071a9;
border-color: #193c5a;
}
.openid-facebook:hover {
color: #ffffff;
background-color: #3071a9;
border-color: #285e8e;
}
.openid-facebook:active {
color: #ffffff;
background-color: #3071a9;
border-color: #285e8e;
}
.openid-facebook:active:hover,
.openid-facebook:active:focus {
color: #ffffff;
background-color: #285e8e;
border-color: #193c5a;
}
.openid-facebook:active {
background-image: none;
}
.openid-facebook.disabled:hover,
.openid-facebook[disabled]:hover,
.openid-facebook.disabled:focus,
.openid-facebook[disabled]:focus,
fieldset[disabled] .openid-facebook:focus {
background-color: #428bca;
border-color: #357ebd;
cursor: inherit;
}
.openid-single-sign-on {
color: #ffffff !important;
background-color: #5cb85c;
border-color: #4cae4c;
}
.openid-single-sign-on:focus {
color: #ffffff;
background-color: #449d44;
border-color: #255625;
}
.openid-single-sign-on:hover {
color: #ffffff;
background-color: #449d44;
border-color: #398439;
}
.openid-single-sign-on:active {
color: #ffffff;
background-color: #449d44;
border-color: #398439;
}
.openid-single-sign-on:active:hover,
.openid-single-sign-on:active:focus {
color: #ffffff;
background-color: #398439;
border-color: #255625;
}
.openid-single-sign-on:active {
background-image: none;
}
.openid-single-sign-on.disabled:hover,
.openid-single-sign-on[disabled]:hover,
.openid-single-sign-on.disabled:focus,
.openid-single-sign-on[disabled]:focus,
fieldset[disabled] .openid-single-sign-on:focus {
background-color: #5cb85c;
border-color: #4cae4c;
cursor: inherit;
} | public/css/users.css | .users-av-wraper{
position: relative;
width: 630px;
min-height:100%;
background: #f7f7f7;
padding: 10px;
overflow-x: hidden;
overflow-y: auto;
font-size:13px
}
.users-av-wraper > form > div{
position: relative;
padding: 15px 0 0 15px
}
.users-av-wraper > form > div:first-child{
background-color: #efefef;
min-height:400px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
padding: 0
}
.users-avupload{
position: relative;
width: 100%;
height: 100%;
}
.users-avupload .upload-button{
display: table;
width: 100%;
height:380px;
cursor: pointer;
}
.users-avupload .upload-button > div{
display: table-row
}
.users-avupload .upload-button > div > span{
display: table-cell;
vertical-align: middle;
text-align:center
}
.users-avupload .upload-button > div > span > em{
display: inline-block;
width:100px;
height:100px;
font-size:40px;
text-align:center;
color:#fff;
background-color: #1182C8;
line-height:100px;
border-radius: 50px
}
.users-avupload .upload-button:hover em{
background-color: #205FA0;
}
.users-avupload .img-area{
position:relative;
width: 100%;
text-align:center;
padding:10px
}
.users-avupload .img-area img{
width:100%;
}
.users-av-wraper .guide{
padding:8px;
background: #D8EAF8;
border: 1px solid #ccc;
border-radius: 4px;
}
.users-av-wraper .exit-bt{
position: fixed;
top: 380px;
right: 30px
}
/* EDIT INFO */
#change-photo{
display: none;
}
.users-menu > li > a{
padding: 8px 10px !important;
}
/*Login-box*/
.login-box{
width:100%
}
@media (max-width:399px) {
.login-box{
width:100%
}
}
.openid-btns {
border-top: 1px #fff solid;
padding-top: 15px;
}
.openid-btns .btn-group {
display: flex;
width: 100%;
}
.openid-btns .btn-group button.btn {
width: 40px;
text-align: center;
}
.openid-btns .btn-group a.btn {
flex-grow: 1;
text-align: left;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.openid-google {
color: #ffffff !important;
background-color: #d9534f;
border-color: #d43f3a;
}
.openid-google:focus {
color: #ffffff;
background-color: #c9302c;
border-color: #761c19;
}
.openid-google:hover {
color: #ffffff;
background-color: #c9302c;
border-color: #ac2925;
}
.openid-google:active {
color: #ffffff;
background-color: #c9302c;
border-color: #ac2925;
}
.openid-google:active:hover,
.openid-google:active:focus {
color: #ffffff;
background-color: #ac2925;
border-color: #761c19;
}
.openid-google:active {
background-image: none;
}
.openid-google.disabled:hover,
.openid-google[disabled]:hover,
fieldset[disabled] .openid-google:hover,
.openid-google.disabled:focus,
.openid-google[disabled]:focus,
fieldset[disabled] .openid-google:focus {
background-color: #d9534f;
border-color: #d43f3a;
cursor: inherit;
}
.openid-facebook {
color: #ffffff !important;
background-color: #428bca;
border-color: #357ebd;
}
.openid-facebook:focus {
color: #ffffff;
background-color: #3071a9;
border-color: #193c5a;
}
.openid-facebook:hover {
color: #ffffff;
background-color: #3071a9;
border-color: #285e8e;
}
.openid-facebook:active {
color: #ffffff;
background-color: #3071a9;
border-color: #285e8e;
}
.openid-facebook:active:hover,
.openid-facebook:active:focus {
color: #ffffff;
background-color: #285e8e;
border-color: #193c5a;
}
.openid-facebook:active {
background-image: none;
}
.openid-facebook.disabled:hover,
.openid-facebook[disabled]:hover,
.openid-facebook.disabled:focus,
.openid-facebook[disabled]:focus,
fieldset[disabled] .openid-facebook:focus {
background-color: #428bca;
border-color: #357ebd;
cursor: inherit;
}
.openid-single-sign-on {
color: #ffffff !important;
background-color: #5cb85c;
border-color: #4cae4c;
}
.openid-single-sign-on:focus {
color: #ffffff;
background-color: #449d44;
border-color: #255625;
}
.openid-single-sign-on:hover {
color: #ffffff;
background-color: #449d44;
border-color: #398439;
}
.openid-single-sign-on:active {
color: #ffffff;
background-color: #449d44;
border-color: #398439;
}
.openid-single-sign-on:active:hover,
.openid-single-sign-on:active:focus {
color: #ffffff;
background-color: #398439;
border-color: #255625;
}
.openid-single-sign-on:active {
background-image: none;
}
.openid-single-sign-on.disabled:hover,
.openid-single-sign-on[disabled]:hover,
.openid-single-sign-on.disabled:focus,
.openid-single-sign-on[disabled]:focus,
fieldset[disabled] .openid-single-sign-on:focus {
background-color: #5cb85c;
border-color: #4cae4c;
cursor: inherit;
} | 0.343452 | 0.07353 |
.feedbacks{
position: relative;
z-index: 0;
padding: 100px 0;
min-width: $wrapper-width;
}
.feedbacks-list{
font-size: 0;
cursor: move;
padding: 0 100px;
&__txt{
display: inline-block;
vertical-align: middle;
font-size: 20px;
width: 500px;
}
&__img{
display: inline-block;
vertical-align: middle;
margin-right: 45px;
border-radius: 50%;
}
&__name{
font-size: 18px;
font-style: normal;
font-weight: 600;
color: $greyish-brown;
}
&__q{
margin: 0;
font-size: 14px;
color: $greyish-brown;
}
}
.feedbacks-all{
padding-top: 55px;
padding-bottom: 50px;
color:$greyish-brown;
text-align: center;
font-size: 0;
&__info{
display: inline-block;
vertical-align: top;
width: 30%;
font-size: 12px;
img{
width: 145px;
height: 145px;
border-radius: 50%;
border: 2px solid $gold;
}
}
&__txt{
display: inline-block;
vertical-align: top;
width: 70%;
}
blockquote{
margin: 0;
padding: 10px 0;
color: $greyish-brown;
border: 0;
p{
color: $greyish-brown;
text-align: left;
}
&:before{
content: "";
}
}
&__date{
margin-right: 20px;
display: inline-block;
vertical-align: middle;
font-size: 14px;
color: $gold;
&:before {
content: "\f073";
font: normal normal normal 14px/1 FontAwesome;
margin-right: 5px;
}
}
&__title{
@mixin title;
}
&__name{
margin-right: 20px;
display: inline-block;
vertical-align: middle;
font-style: normal;
font-size: 14px;
color: $gold;
&:before {
content: "\f007";
font: normal normal normal 14px/1 FontAwesome;
margin-right: 5px;
}
}
ul{
display: inline-block;
vertical-align: middle;
margin: 0;
padding: 0;
width: 70%;
list-style: none;
li{
margin-bottom: 20px;
min-height: 100px;
background-color: $white-three;
padding: 20px;
}
}
}
.owl-carousel .owl-item img {
display: inline-block;
vertical-align: middle;
max-height: 237px;
max-width: 237px;
}
.owl-carousel .owl-dot {
width: 14px;
height: 14px;
border:1px solid $pinkish-grey;
border-radius: 50%;
background-color: #fff;
margin: 0 7px;
display: inline-block;
vertical-align: middle;
}
.owl-carousel .owl-dot.active {
background-color: $pinkish-grey;
}
.owl-dots{
text-align: center;
}
.owl-nav{
font-size: 20px;
width: 100%;
position: absolute;
left: 0;
top: 45%;
font-size: 40px;
}
.owl-next, .owl-prev{
width: 55px;
height: 55px;
border-radius:50%;
background-color: #fff;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
background-image:url('../img/svg/chevron-right.svg');
background-repeat: no-repeat;
background-position: 50%;
}
.owl-prev{
position: absolute;
left: 10px;
transform: rotate(180deg);
}
.owl-next{
position: absolute;
right: 10px;
}
.owl-carousel .owl-stage-outer{
min-height: 240px;
} | generators/app/templates/src/css/modules/components/feedback.css | .feedbacks{
position: relative;
z-index: 0;
padding: 100px 0;
min-width: $wrapper-width;
}
.feedbacks-list{
font-size: 0;
cursor: move;
padding: 0 100px;
&__txt{
display: inline-block;
vertical-align: middle;
font-size: 20px;
width: 500px;
}
&__img{
display: inline-block;
vertical-align: middle;
margin-right: 45px;
border-radius: 50%;
}
&__name{
font-size: 18px;
font-style: normal;
font-weight: 600;
color: $greyish-brown;
}
&__q{
margin: 0;
font-size: 14px;
color: $greyish-brown;
}
}
.feedbacks-all{
padding-top: 55px;
padding-bottom: 50px;
color:$greyish-brown;
text-align: center;
font-size: 0;
&__info{
display: inline-block;
vertical-align: top;
width: 30%;
font-size: 12px;
img{
width: 145px;
height: 145px;
border-radius: 50%;
border: 2px solid $gold;
}
}
&__txt{
display: inline-block;
vertical-align: top;
width: 70%;
}
blockquote{
margin: 0;
padding: 10px 0;
color: $greyish-brown;
border: 0;
p{
color: $greyish-brown;
text-align: left;
}
&:before{
content: "";
}
}
&__date{
margin-right: 20px;
display: inline-block;
vertical-align: middle;
font-size: 14px;
color: $gold;
&:before {
content: "\f073";
font: normal normal normal 14px/1 FontAwesome;
margin-right: 5px;
}
}
&__title{
@mixin title;
}
&__name{
margin-right: 20px;
display: inline-block;
vertical-align: middle;
font-style: normal;
font-size: 14px;
color: $gold;
&:before {
content: "\f007";
font: normal normal normal 14px/1 FontAwesome;
margin-right: 5px;
}
}
ul{
display: inline-block;
vertical-align: middle;
margin: 0;
padding: 0;
width: 70%;
list-style: none;
li{
margin-bottom: 20px;
min-height: 100px;
background-color: $white-three;
padding: 20px;
}
}
}
.owl-carousel .owl-item img {
display: inline-block;
vertical-align: middle;
max-height: 237px;
max-width: 237px;
}
.owl-carousel .owl-dot {
width: 14px;
height: 14px;
border:1px solid $pinkish-grey;
border-radius: 50%;
background-color: #fff;
margin: 0 7px;
display: inline-block;
vertical-align: middle;
}
.owl-carousel .owl-dot.active {
background-color: $pinkish-grey;
}
.owl-dots{
text-align: center;
}
.owl-nav{
font-size: 20px;
width: 100%;
position: absolute;
left: 0;
top: 45%;
font-size: 40px;
}
.owl-next, .owl-prev{
width: 55px;
height: 55px;
border-radius:50%;
background-color: #fff;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
background-image:url('../img/svg/chevron-right.svg');
background-repeat: no-repeat;
background-position: 50%;
}
.owl-prev{
position: absolute;
left: 10px;
transform: rotate(180deg);
}
.owl-next{
position: absolute;
right: 10px;
}
.owl-carousel .owl-stage-outer{
min-height: 240px;
} | 0.605566 | 0.097347 |
* {
box-sizing: border-box;
font-family:'Times New Roman', Times, serif;
}
/* ====================================Known Talent Upper Section CCS==================================== */
.wave-container {
background-size: cover;
width: 100%;
position: relative;
overflow: hidden;
min-height: 25vh;
margin-bottom: 3em
/* text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8); */;
}
.wave-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.wave-container h2 {
color: #09ed9f;
background: #0150CC;
background: -webkit-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: -moz-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-top: 3em;
font-family:'Times New Roman', Times, serif;
}
/* ==========================Known Talent CSS====================== */
body {
background-color: #000000;
}
.section {
width: 100%;
height: 90vh;
background: #0b0c10;
}
/* Float four columns side by side */
.column {
float: left;
width: 25%;
padding: 20px;
}
/* Remove extra left and right margins, due to padding */
.row {
margin: 0 -5px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive columns */
@media screen and (max-width: 600px) {
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
.container {
padding: 2px 16px;
}
.container::before {
content: '';
position: absolute;
top: 0;
left: 10;
right: 0;
bottom: 0;
}
@media (min-width: 1200px) {
.container {
width: auto;
}
}
/* Style the tab */
/* Style the buttons inside the tab */
.button-area-line a{
margin-left: 2.5%;
text-align: center;
font-size: 17px;
border: 3px solid #09ed9f;
font-weight: 900;
background-color: azure;
color: #2196f3;
text-transform: uppercase;
overflow: hidden;
transition: 0.2s;
}
.button-area-line a:hover {
/*color: #09ed9f;*/
background: #0150CC;
background: -webkit-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: -moz-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
/*color: #255784;
background: #7cf50b;
box-shadow: 0 0 10px #09ED9F, 0 0 40px #09ED9F, 0 0 80px #09ED9F ;*/
transition-delay: 0.2s;
cursor: pointer;
font-weight: 900;
/*background-color: #7cf50b;*/
cursor: pointer;
}
.button-area-lines a {
margin-left: 2.5%;
text-align: center;
font-size: 17px;
border: 3px solid #09ed9f;
font-weight: 900;
background-color: azure;
color: #2196f3;
text-transform: uppercase;
overflow: hidden;
transition: 0.2s;
/*margin-left: 1%;
text-align: center;
font-size: 17px;
border: 4px solid rgb(122, 121, 121);
font-weight: 900;
background-color: rgb(255, 255, 255);
color: #111111;*/
}
.button-area-lines a:hover {
background: #0150CC;
background: -webkit-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: -moz-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
/*color: #255784;
background: #7cf50b;
box-shadow: 0 0 10px #09ED9F, 0 0 40px #09ED9F, 0 0 80px #09ED9F ;*/
transition-delay: 0.2s;
cursor: pointer;
font-weight: 900;
/*background-color: #7cf50b;*/
cursor: pointer;
}
@media screen and (min-width:700px) {
.button-area-lines a{
margin-left: 13%;}
}
.button-area-lines a:hover{
font-weight: 900;
background-color: rgb(161, 160, 160);
cursor: pointer;
}
#myDIV {
width: 100%;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid rgb(0, 0, 0);
border-top: none;
text-align: center;
}
.tabcontent h3 {
color: #ccc;
}
/* Style the box content */
.box{
overflow:hidden;
background: rgba(0,0,0, 0.8);
position: relative;
-webkit-transition: all .35s ease;
transition: all .35s ease;
border: 2px solid whitesmoke;
box-sizing: border-box;
text-align: center;
}
.box:after,
.box:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background:rgba(0,0,0, 0.8);
transform: scaleY(0);
transition: transform 0.5s;
border-left: 3px solid #fff;
border-right: 3px solid #fff;
opacity: .9;
z-index: 1;
}
.box img {
height: auto;
width: 100%
}
.box img {
-webkit-transition: all .35s ease;
transition: all .35s ease
}
.box:hover img {
opacity: .5
}
.box .box-content {
position: absolute;
top: 50%;
left: 50%;
opacity: 0;
z-index: 2;
-webkit-transform: translate(-50%, -50%) scale(.5);
transform: translate(-50%, -50%) scale(.5);
-webkit-transition: all .35s ease;
transition: all .35s ease
}
.box:hover .box-content {
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
opacity: 1
}
.box .post,
.box .title {
text-align:center;
font-family: 'Times New Roman', Times, serif;
font-size: 18px;
font-weight: 300;
letter-spacing: 1.7px;
text-transform: uppercase;
background: #3c3c3c8f;
border: 2px solid #fff;
color: #fff;
padding: 10px 10px;
margin: 0;
cursor: pointer;
}
.box .post{
text-transform: capitalize
}
.box .post {
display: block;
font-size: 14px;
font-weight: 400;
padding: 5px 10px;
margin-top: 15px
}
.button-area-line a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
margin-top: 3px;
color: #2196f3;
text-transform: uppercase;
overflow: hidden;
transition: 0.2s;
}
.button-area-lines a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
margin-top: 3px;
color: #2196f3;
text-transform: uppercase;
overflow: hidden;
transition: 0.2s;
}
a:hover {
background-color: #ddd;
color: black;
}
.previous {
background-color: rgb(29, 29, 29);
color: #f1f1f1;
}
.round {
border-radius: 50%;
} | css/talentknown.css | * {
box-sizing: border-box;
font-family:'Times New Roman', Times, serif;
}
/* ====================================Known Talent Upper Section CCS==================================== */
.wave-container {
background-size: cover;
width: 100%;
position: relative;
overflow: hidden;
min-height: 25vh;
margin-bottom: 3em
/* text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8); */;
}
.wave-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.wave-container h2 {
color: #09ed9f;
background: #0150CC;
background: -webkit-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: -moz-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-top: 3em;
font-family:'Times New Roman', Times, serif;
}
/* ==========================Known Talent CSS====================== */
body {
background-color: #000000;
}
.section {
width: 100%;
height: 90vh;
background: #0b0c10;
}
/* Float four columns side by side */
.column {
float: left;
width: 25%;
padding: 20px;
}
/* Remove extra left and right margins, due to padding */
.row {
margin: 0 -5px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive columns */
@media screen and (max-width: 600px) {
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
.container {
padding: 2px 16px;
}
.container::before {
content: '';
position: absolute;
top: 0;
left: 10;
right: 0;
bottom: 0;
}
@media (min-width: 1200px) {
.container {
width: auto;
}
}
/* Style the tab */
/* Style the buttons inside the tab */
.button-area-line a{
margin-left: 2.5%;
text-align: center;
font-size: 17px;
border: 3px solid #09ed9f;
font-weight: 900;
background-color: azure;
color: #2196f3;
text-transform: uppercase;
overflow: hidden;
transition: 0.2s;
}
.button-area-line a:hover {
/*color: #09ed9f;*/
background: #0150CC;
background: -webkit-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: -moz-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
/*color: #255784;
background: #7cf50b;
box-shadow: 0 0 10px #09ED9F, 0 0 40px #09ED9F, 0 0 80px #09ED9F ;*/
transition-delay: 0.2s;
cursor: pointer;
font-weight: 900;
/*background-color: #7cf50b;*/
cursor: pointer;
}
.button-area-lines a {
margin-left: 2.5%;
text-align: center;
font-size: 17px;
border: 3px solid #09ed9f;
font-weight: 900;
background-color: azure;
color: #2196f3;
text-transform: uppercase;
overflow: hidden;
transition: 0.2s;
/*margin-left: 1%;
text-align: center;
font-size: 17px;
border: 4px solid rgb(122, 121, 121);
font-weight: 900;
background-color: rgb(255, 255, 255);
color: #111111;*/
}
.button-area-lines a:hover {
background: #0150CC;
background: -webkit-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: -moz-linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
background: linear-gradient(to right, #0150CC 28%, #09ED9F 54%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
/*color: #255784;
background: #7cf50b;
box-shadow: 0 0 10px #09ED9F, 0 0 40px #09ED9F, 0 0 80px #09ED9F ;*/
transition-delay: 0.2s;
cursor: pointer;
font-weight: 900;
/*background-color: #7cf50b;*/
cursor: pointer;
}
@media screen and (min-width:700px) {
.button-area-lines a{
margin-left: 13%;}
}
.button-area-lines a:hover{
font-weight: 900;
background-color: rgb(161, 160, 160);
cursor: pointer;
}
#myDIV {
width: 100%;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid rgb(0, 0, 0);
border-top: none;
text-align: center;
}
.tabcontent h3 {
color: #ccc;
}
/* Style the box content */
.box{
overflow:hidden;
background: rgba(0,0,0, 0.8);
position: relative;
-webkit-transition: all .35s ease;
transition: all .35s ease;
border: 2px solid whitesmoke;
box-sizing: border-box;
text-align: center;
}
.box:after,
.box:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background:rgba(0,0,0, 0.8);
transform: scaleY(0);
transition: transform 0.5s;
border-left: 3px solid #fff;
border-right: 3px solid #fff;
opacity: .9;
z-index: 1;
}
.box img {
height: auto;
width: 100%
}
.box img {
-webkit-transition: all .35s ease;
transition: all .35s ease
}
.box:hover img {
opacity: .5
}
.box .box-content {
position: absolute;
top: 50%;
left: 50%;
opacity: 0;
z-index: 2;
-webkit-transform: translate(-50%, -50%) scale(.5);
transform: translate(-50%, -50%) scale(.5);
-webkit-transition: all .35s ease;
transition: all .35s ease
}
.box:hover .box-content {
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
opacity: 1
}
.box .post,
.box .title {
text-align:center;
font-family: 'Times New Roman', Times, serif;
font-size: 18px;
font-weight: 300;
letter-spacing: 1.7px;
text-transform: uppercase;
background: #3c3c3c8f;
border: 2px solid #fff;
color: #fff;
padding: 10px 10px;
margin: 0;
cursor: pointer;
}
.box .post{
text-transform: capitalize
}
.box .post {
display: block;
font-size: 14px;
font-weight: 400;
padding: 5px 10px;
margin-top: 15px
}
.button-area-line a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
margin-top: 3px;
color: #2196f3;
text-transform: uppercase;
overflow: hidden;
transition: 0.2s;
}
.button-area-lines a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
margin-top: 3px;
color: #2196f3;
text-transform: uppercase;
overflow: hidden;
transition: 0.2s;
}
a:hover {
background-color: #ddd;
color: black;
}
.previous {
background-color: rgb(29, 29, 29);
color: #f1f1f1;
}
.round {
border-radius: 50%;
} | 0.3512 | 0.086593 |
@import url("https://fonts.googleapis.com/css?family=Roboto:500");
.btn-share {
--btn-color: #275efe;
position: relative;
padding: 16px 32px;
font-family: Roboto, sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 1;
color: white;
background: none;
border: none;
outline: none;
overflow: hidden;
cursor: pointer;
filter: drop-shadow(0 2px 8px rgba(39, 94, 254, 0.32));
transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share::before {
position: absolute;
content: "";
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
background: var(--btn-color);
border-radius: 24px;
transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share .btn-text,
.btn-share .btn-icon {
display: inline-flex;
vertical-align: middle;
transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share .btn-text {
transition-delay: 0.05s;
}
.btn-share .btn-icon {
margin-left: 8px;
transition-delay: 0.1s;
}
.btn-share .social-icons {
position: absolute;
top: 50%;
left: 0;
right: 0;
display: flex;
margin: 0;
padding: 0;
list-style-type: none;
transform: translateY(-50%);
}
.btn-share .social-icons li {
flex: 1;
}
.btn-share .social-icons li a {
display: inline-flex;
vertical-align: middle;
color: #fff;
text-decoration: none;
transform: translateY(55px);
transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share .social-icons li a:hover {
opacity: 0.5;
}
.btn-share:hover::before {
transform: scale(1.2);
}
.btn-share:hover .btn-text,
.btn-share:hover .btn-icon {
transform: translateY(-55px);
}
.btn-share:hover .social-icons li a {
transform: translateY(0);
}
.btn-share:hover .social-icons li:nth-child(1) a {
transition-delay: 0.15s;
}
.btn-share:hover .social-icons li:nth-child(2) a {
transition-delay: 0.2s;
}
.btn-share:hover .social-icons li:nth-child(3) a {
transition-delay: 0.25s;
} | css/button.css | @import url("https://fonts.googleapis.com/css?family=Roboto:500");
.btn-share {
--btn-color: #275efe;
position: relative;
padding: 16px 32px;
font-family: Roboto, sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 1;
color: white;
background: none;
border: none;
outline: none;
overflow: hidden;
cursor: pointer;
filter: drop-shadow(0 2px 8px rgba(39, 94, 254, 0.32));
transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share::before {
position: absolute;
content: "";
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
background: var(--btn-color);
border-radius: 24px;
transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share .btn-text,
.btn-share .btn-icon {
display: inline-flex;
vertical-align: middle;
transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share .btn-text {
transition-delay: 0.05s;
}
.btn-share .btn-icon {
margin-left: 8px;
transition-delay: 0.1s;
}
.btn-share .social-icons {
position: absolute;
top: 50%;
left: 0;
right: 0;
display: flex;
margin: 0;
padding: 0;
list-style-type: none;
transform: translateY(-50%);
}
.btn-share .social-icons li {
flex: 1;
}
.btn-share .social-icons li a {
display: inline-flex;
vertical-align: middle;
color: #fff;
text-decoration: none;
transform: translateY(55px);
transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share .social-icons li a:hover {
opacity: 0.5;
}
.btn-share:hover::before {
transform: scale(1.2);
}
.btn-share:hover .btn-text,
.btn-share:hover .btn-icon {
transform: translateY(-55px);
}
.btn-share:hover .social-icons li a {
transform: translateY(0);
}
.btn-share:hover .social-icons li:nth-child(1) a {
transition-delay: 0.15s;
}
.btn-share:hover .social-icons li:nth-child(2) a {
transition-delay: 0.2s;
}
.btn-share:hover .social-icons li:nth-child(3) a {
transition-delay: 0.25s;
} | 0.412294 | 0.064183 |
margin-top: 56px;
}
button {
cursor: pointer;
}
.edit{
color: lightseagreen;
}
#sidebar-wrapper {
min-height: 100vh;
margin-left: -15rem;
-webkit-transition: margin .25s ease-out;
-moz-transition: margin .25s ease-out;
-o-transition: margin .25s ease-out;
transition: margin .25s ease-out;
}
#sidebar-wrapper .sidebar-heading {
padding: 0.875rem 1.25rem;
font-size: 1.2rem;
}
#sidebar-wrapper .list-group {
width: 15rem;
}
.toggle-btn{
position: absolute;
left: 150%;
top: 15px;
}
.toggle-btn span{
display: block;
background-color: black;
width:30px;
height:5px;
margin: 3px;
}
h4,h5{
color:white;
}
.single-blog {
box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
padding: 10px;
margin-top: 10px;
}
.single-blog.img-container {
height: 60%;
width: 100%;
background-color: lightseagreen;
}
.single-blog img {
width: 100%;
height: 400px;
}
.dropdown-menu {
align-items: center;
}
.blog-meta {
font-size: 14px;
margin-bottom: 2px;
}
.single-blog span {
float: right;
font-size: 12px;
color: cornflowerblue;
}
.blog-text {
font-size: 14px;
text-align: justify;
}
.single-blog h2 {
margin-top: 10px;
font-size: 16px;
color: #007bff;
}
.read-more-btn {
background-image: linear-gradient(to right, #1c03b5, #5c8bef);
padding: 5px 12px 8px;
border-radius: 20px;
line-height: 20px;
font-size: 14px;
color: #fff;
border: none !important;
}
.read-more-btn:hover {
background-image: linear-gradient(to right, #006417, #00b128);
text-decoration: none;
color: #fff;
}
.lec-div {
width: 100%;
height: 30vh;
padding: 40px;
margin-top: 10px;
background: linear-gradient(to right, gray, lightblue);
}
.icon {
width: 50%;
float: left;
}
.pdf {
color: red;
font-size: 100px;
}
.download {
width: 50%;
margin-top: 60px;
float: left;
}
.download a i{
font-size: 40px;
color: green;
float: right;
}
.hide {
opacity: 0;
}
@media (min-width: 767px) {
#sidebar-wrapper {
margin-left: 0px;
}
#page-content-wrapper {
min-width: 0;
width: 100%;
}
#wrapper.toggled #sidebar-wrapper {
margin-left: -15rem;
}
} | public/css/student.css | margin-top: 56px;
}
button {
cursor: pointer;
}
.edit{
color: lightseagreen;
}
#sidebar-wrapper {
min-height: 100vh;
margin-left: -15rem;
-webkit-transition: margin .25s ease-out;
-moz-transition: margin .25s ease-out;
-o-transition: margin .25s ease-out;
transition: margin .25s ease-out;
}
#sidebar-wrapper .sidebar-heading {
padding: 0.875rem 1.25rem;
font-size: 1.2rem;
}
#sidebar-wrapper .list-group {
width: 15rem;
}
.toggle-btn{
position: absolute;
left: 150%;
top: 15px;
}
.toggle-btn span{
display: block;
background-color: black;
width:30px;
height:5px;
margin: 3px;
}
h4,h5{
color:white;
}
.single-blog {
box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.2);
padding: 10px;
margin-top: 10px;
}
.single-blog.img-container {
height: 60%;
width: 100%;
background-color: lightseagreen;
}
.single-blog img {
width: 100%;
height: 400px;
}
.dropdown-menu {
align-items: center;
}
.blog-meta {
font-size: 14px;
margin-bottom: 2px;
}
.single-blog span {
float: right;
font-size: 12px;
color: cornflowerblue;
}
.blog-text {
font-size: 14px;
text-align: justify;
}
.single-blog h2 {
margin-top: 10px;
font-size: 16px;
color: #007bff;
}
.read-more-btn {
background-image: linear-gradient(to right, #1c03b5, #5c8bef);
padding: 5px 12px 8px;
border-radius: 20px;
line-height: 20px;
font-size: 14px;
color: #fff;
border: none !important;
}
.read-more-btn:hover {
background-image: linear-gradient(to right, #006417, #00b128);
text-decoration: none;
color: #fff;
}
.lec-div {
width: 100%;
height: 30vh;
padding: 40px;
margin-top: 10px;
background: linear-gradient(to right, gray, lightblue);
}
.icon {
width: 50%;
float: left;
}
.pdf {
color: red;
font-size: 100px;
}
.download {
width: 50%;
margin-top: 60px;
float: left;
}
.download a i{
font-size: 40px;
color: green;
float: right;
}
.hide {
opacity: 0;
}
@media (min-width: 767px) {
#sidebar-wrapper {
margin-left: 0px;
}
#page-content-wrapper {
min-width: 0;
width: 100%;
}
#wrapper.toggled #sidebar-wrapper {
margin-left: -15rem;
}
} | 0.348313 | 0.060808 |
.wrap {padding-bottom: 30px;position: relative;}
.dropdown-menu > li > a >span {margin-right: 5px;}
/* 边栏 */
.side .list-text{line-height:30px}
/* align the logout "link" (button in form) of the navbar */
.nav > li > form {padding: 8px;}
.nav > li > form > button:hover {text-decoration: none;}
@media(max-width:768px) {
.nav li > form {padding: 3px;}
}
/*话题模块*/
.widget-topic{position:relative;height:170px;overflow:hidden;border:1px solid #ddd;margin-bottom:14px}
.widget-topic h2{margin:12px;font-size:16px}
.widget-topic p{margin:12px;height:75px;overflow:hidden;font-size:13px}
.topic-list{margin-left:-7px;margin-right:-7px}
.widget-topic-action{position:absolute;bottom:0;width:100%;padding:8px 12px;background-color:#f6f6f6}
.widget-topic .h4 a{color:#333}
/* tag样式定义 */
.tag-header{background:#f6f6f6;box-shadow:0 1px 2px 0 rgba(0,0,0,.24);padding:15px;margin-bottom:20px}
.tag-header-title{margin-top:0;margin-right:15px;vertical-align:middle}
.tag-header-follow{display:inline-block}
.tag-header-summary{color:#666;margin-top:15px;margin-bottom:0}
.tag{display:inline-block;padding:0 8px;color:#017e66;background-color:#E7F2ED;height:24px;line-height:24px;font-weight:400;font-size:13px;text-align:center}
.tag[href]:focus,.tag[href]:hover{background-color:#017e66;color:#fff;text-decoration:none}
.tag-sm{padding:0 4px;height:18px;line-height:18px;font-size:12px}
.tag-lg{font-size:16px;font-weight:700;height:30px;line-height:28px}
.tag-link{background-color:transparent}
.tag-logo{padding-left:25px;background-repeat:no-repeat;background-position: 4px 2px;background-size:16px 16px;}
.taglist--block,.taglist-inline{list-style:none;padding:0;font-size:0}
.taglist--block li,.taglist-inline li{padding:0;font-size:13px}
.ib.taglist--block,.ib.taglist-inline{margin:0;display:inline-block}
.taglist-inline>li{display:inline-block;margin-right:5px}
.taglist-inline>li:last-child{margin-right:0}
.taglist-inline.multi>li{margin-bottom:5px}
.taglist--block>li{margin-bottom:8px}
/** 页面右侧小部件 **/
.widget-box {padding-top: 15px;border-top: 1px solid #eee;}
.widget-box .widget-box-title {margin: 0 0 15px;font-size: 20px;}
/*列表样式*/
.stream-list{margin-bottom:10px}
.stream-list.top-indent{margin-top:-10px}
.stream-list-item{margin:0;border-bottom:1px solid #eee;padding:10px 0}
.stream-list-item .author{margin-bottom:5px;color:#999;font-size:13px}
.stream-list-item .author small{color:#ddd}
.stream-list-item .author a{color:#999;}
.stream-list-item .title{display:inline;margin:0 5px 0 0;font-size:16px}
.stream-list-item .title a{color:#333}
.stream-list-item .title a:hover{color:#017e66}
.stream-list-item .title a:visited{font-weight:400}
.stream-list-item .small-title{margin:0 0 5px;font-size:16px;}
.stream-list-item .split:before{content:"·";color:#ddd;}
.stream-list-item .summary{overflow:auto;overflow-x:hidden}
.stream-list-item .excerpt{margin:5px 0 0;height:42px;color:#777;font-size:13px;line-height:1.6;overflow:hidden}
.stream-list-item.highlight{background:#FFF9EB}
/*回答模块*/
.widget-answers .media{border-bottom:1px solid #eee;}
.widget-answers .answer-time{float:right;}
.widget-answers .media-footer a{color:#999;}
.answer_login_tips{border: 1px solid #e4e4e4;background: #fbfbfb;padding: 45px 0;height:18px;line-height: 18px;text-align: center;color: #666;}
/*评论样式*/
.widget-comments {list-style: none;font-size: 13px;color: #444;padding:10px;border: 1px solid #ddd;border-radius: 2px;resize: none;min-height:32px}
.widget-comments .media{border-bottom:1px solid #eee;font-size: 13px;}
.media-footer{margin-bottom: 10px;}
.sn-inline{list-style:none;display:inline;margin:0;padding:0;vertical-align:text-bottom}
.sn-inline li{display:inline-block;margin-right:5px}
.sn-inline li a{text-indent:110%;white-space:nowrap;overflow:hidden;text-transform:capitalize}
/*消息菜单*/
.widget-messages {margin-bottom: 15px}
.widget-message-item {display: block;color: #666;margin-left: -10px;padding: 6px 10px;width: 100%;text-decoration: none}
.widget-message-item .badge {margin-left: 5px;padding: 2px 6px;font-weight: 400}
.widget-message-item.active, .widget-messages-item:hover {text-decoration: none;color: #008E59;background-color: #F6F6F6}
.widget-message-item.active .badge, .widget-message-item:hover .badge {background-color: #008E59}
/** 首页上部分 **/
.jumbotron {text-align: center; background-color: transparent;}
.jumbotron .btn {font-size: 21px;padding: 14px 24px;}
/* 页尾 */
.footer {height: 60px;background-color: #f5f5f5;border-top: 1px solid #ddd;padding-top: 20px;} | web/css/app.css | .wrap {padding-bottom: 30px;position: relative;}
.dropdown-menu > li > a >span {margin-right: 5px;}
/* 边栏 */
.side .list-text{line-height:30px}
/* align the logout "link" (button in form) of the navbar */
.nav > li > form {padding: 8px;}
.nav > li > form > button:hover {text-decoration: none;}
@media(max-width:768px) {
.nav li > form {padding: 3px;}
}
/*话题模块*/
.widget-topic{position:relative;height:170px;overflow:hidden;border:1px solid #ddd;margin-bottom:14px}
.widget-topic h2{margin:12px;font-size:16px}
.widget-topic p{margin:12px;height:75px;overflow:hidden;font-size:13px}
.topic-list{margin-left:-7px;margin-right:-7px}
.widget-topic-action{position:absolute;bottom:0;width:100%;padding:8px 12px;background-color:#f6f6f6}
.widget-topic .h4 a{color:#333}
/* tag样式定义 */
.tag-header{background:#f6f6f6;box-shadow:0 1px 2px 0 rgba(0,0,0,.24);padding:15px;margin-bottom:20px}
.tag-header-title{margin-top:0;margin-right:15px;vertical-align:middle}
.tag-header-follow{display:inline-block}
.tag-header-summary{color:#666;margin-top:15px;margin-bottom:0}
.tag{display:inline-block;padding:0 8px;color:#017e66;background-color:#E7F2ED;height:24px;line-height:24px;font-weight:400;font-size:13px;text-align:center}
.tag[href]:focus,.tag[href]:hover{background-color:#017e66;color:#fff;text-decoration:none}
.tag-sm{padding:0 4px;height:18px;line-height:18px;font-size:12px}
.tag-lg{font-size:16px;font-weight:700;height:30px;line-height:28px}
.tag-link{background-color:transparent}
.tag-logo{padding-left:25px;background-repeat:no-repeat;background-position: 4px 2px;background-size:16px 16px;}
.taglist--block,.taglist-inline{list-style:none;padding:0;font-size:0}
.taglist--block li,.taglist-inline li{padding:0;font-size:13px}
.ib.taglist--block,.ib.taglist-inline{margin:0;display:inline-block}
.taglist-inline>li{display:inline-block;margin-right:5px}
.taglist-inline>li:last-child{margin-right:0}
.taglist-inline.multi>li{margin-bottom:5px}
.taglist--block>li{margin-bottom:8px}
/** 页面右侧小部件 **/
.widget-box {padding-top: 15px;border-top: 1px solid #eee;}
.widget-box .widget-box-title {margin: 0 0 15px;font-size: 20px;}
/*列表样式*/
.stream-list{margin-bottom:10px}
.stream-list.top-indent{margin-top:-10px}
.stream-list-item{margin:0;border-bottom:1px solid #eee;padding:10px 0}
.stream-list-item .author{margin-bottom:5px;color:#999;font-size:13px}
.stream-list-item .author small{color:#ddd}
.stream-list-item .author a{color:#999;}
.stream-list-item .title{display:inline;margin:0 5px 0 0;font-size:16px}
.stream-list-item .title a{color:#333}
.stream-list-item .title a:hover{color:#017e66}
.stream-list-item .title a:visited{font-weight:400}
.stream-list-item .small-title{margin:0 0 5px;font-size:16px;}
.stream-list-item .split:before{content:"·";color:#ddd;}
.stream-list-item .summary{overflow:auto;overflow-x:hidden}
.stream-list-item .excerpt{margin:5px 0 0;height:42px;color:#777;font-size:13px;line-height:1.6;overflow:hidden}
.stream-list-item.highlight{background:#FFF9EB}
/*回答模块*/
.widget-answers .media{border-bottom:1px solid #eee;}
.widget-answers .answer-time{float:right;}
.widget-answers .media-footer a{color:#999;}
.answer_login_tips{border: 1px solid #e4e4e4;background: #fbfbfb;padding: 45px 0;height:18px;line-height: 18px;text-align: center;color: #666;}
/*评论样式*/
.widget-comments {list-style: none;font-size: 13px;color: #444;padding:10px;border: 1px solid #ddd;border-radius: 2px;resize: none;min-height:32px}
.widget-comments .media{border-bottom:1px solid #eee;font-size: 13px;}
.media-footer{margin-bottom: 10px;}
.sn-inline{list-style:none;display:inline;margin:0;padding:0;vertical-align:text-bottom}
.sn-inline li{display:inline-block;margin-right:5px}
.sn-inline li a{text-indent:110%;white-space:nowrap;overflow:hidden;text-transform:capitalize}
/*消息菜单*/
.widget-messages {margin-bottom: 15px}
.widget-message-item {display: block;color: #666;margin-left: -10px;padding: 6px 10px;width: 100%;text-decoration: none}
.widget-message-item .badge {margin-left: 5px;padding: 2px 6px;font-weight: 400}
.widget-message-item.active, .widget-messages-item:hover {text-decoration: none;color: #008E59;background-color: #F6F6F6}
.widget-message-item.active .badge, .widget-message-item:hover .badge {background-color: #008E59}
/** 首页上部分 **/
.jumbotron {text-align: center; background-color: transparent;}
.jumbotron .btn {font-size: 21px;padding: 14px 24px;}
/* 页尾 */
.footer {height: 60px;background-color: #f5f5f5;border-top: 1px solid #ddd;padding-top: 20px;} | 0.268749 | 0.052328 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: 'Noto Sans Bengali', 'Siyam Rupali', 'Kalpurush', 'SolaimanLipi';
unicode-range: U+0980-09FF
/* Bangla Range (source: http://www.unicode.org/charts/PDF/U0980.pdf) */
}
}
@layer utilities {
.text-85p {
font-size: 85%;
}
}
a {
@apply transition-colors
}
.article {
@apply font-serif
}
.article h1 {
@apply font-sans text-3xl font-bold border-b border-gray-300 dark:border-gray-700 pb-1.5 mt-6 mb-4
}
.article h2 {
@apply font-sans text-2xl font-bold border-b border-gray-300 dark:border-gray-700 pb-1.5 mt-6 mb-4
}
.article h3 {
@apply font-sans text-xl font-bold pb-1.5 mt-6 mb-4
}
.article h4 {
@apply font-sans text-base font-bold mt-6 mb-4
}
.article h5 {
@apply font-sans text-sm font-bold mt-6 mb-4
}
.article h6 {
@apply font-sans text-xs font-bold mt-6 mb-4
}
.article p {
@apply mt-0 mb-4
}
.article a {
@apply text-red-500 hover:underline
}
.article strong {
}
.article em {
}
.article ol {
@apply list-decimal pl-8 mb-4
}
.article ul {
@apply list-disc pl-8 mb-4
}
.article ul.task-list {
@apply pl-0
}
.article li.task-list-item {
@apply list-none
}
.article li input {
@apply ml-1 mr-2
}
.article blockquote {
@apply text-2xl border-l-4 border-gray-300 dark:border-gray-700 text-gray-600 dark:text-gray-400 mb-4 px-4 py-2
}
.article blockquote > :last-child {
@apply mb-0
}
.article blockquote cite {
@apply text-base
}
.article blockquote cite::before {
content: "—";
@apply mr-2
}
.article img {
@apply rounded-md mx-auto
}
.article hr {
@apply mt-8 mb-8 border-t-4 border-gray-300 dark:border-gray-700
}
.article code[class*=highlighter] {
@apply rounded-md text-85p bg-gray-200 dark:bg-gray-800 py-0.5 px-1.5
}
.article pre.highlight {
@apply overflow-x-auto
}
.article div.highlight {
@apply mb-4
}
.article pre.highlight {
@apply p-4 rounded-md text-sm bg-gray-200 dark:bg-gray-800
}
.article table {
@apply border-collapse border border-gray-300 dark:border-gray-700 table-auto w-full mb-4
}
.article th, .article td {
@apply border border-gray-300 dark:border-gray-700 py-2 px-4
}
.article thead {
@apply font-bold
}
/* ********************************
* Anchor
******************************** */
h1 .anchor, h2 .anchor, h3 .anchor, h4 .anchor, h5 .anchor, h6 .anchor {
@apply opacity-0
}
h1:hover .anchor, h2:hover .anchor, h3:hover .anchor, h4:hover .anchor, h5:hover .anchor, h6:hover .anchor {
@apply opacity-100
}
a.anchor {
margin-left: -1em;
padding-right: 0.5em;
@apply absolute transition text-gray-400 dark:text-gray-500 hover:text-red-500 dark:hover:text-red-500 hover:no-underline
}
/* ********************************
* General
******************************** */
.iw-link {
@apply transition-colors text-red-500 hover:text-red-700
}
svg.bi {
display: inline-block;
width: 1em;
height: 1em;
}
.iw-btn {
@apply transition-colors cursor-pointer bg-transparent border-2 border-red-500 hover:bg-red-500 hover:text-white
rounded text-gray-900 dark:text-gray-50 px-4 py-2 font-bold inline-block
}
/* ********************************
* Gallery
******************************** */
div.iw-gallery-2 {
@apply grid grid-cols-2 gap-4 my-8
}
img.img-viewer {
@apply cursor-pointer
} | src/tailwindcss/main.css | @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: 'Noto Sans Bengali', 'Siyam Rupali', 'Kalpurush', 'SolaimanLipi';
unicode-range: U+0980-09FF
/* Bangla Range (source: http://www.unicode.org/charts/PDF/U0980.pdf) */
}
}
@layer utilities {
.text-85p {
font-size: 85%;
}
}
a {
@apply transition-colors
}
.article {
@apply font-serif
}
.article h1 {
@apply font-sans text-3xl font-bold border-b border-gray-300 dark:border-gray-700 pb-1.5 mt-6 mb-4
}
.article h2 {
@apply font-sans text-2xl font-bold border-b border-gray-300 dark:border-gray-700 pb-1.5 mt-6 mb-4
}
.article h3 {
@apply font-sans text-xl font-bold pb-1.5 mt-6 mb-4
}
.article h4 {
@apply font-sans text-base font-bold mt-6 mb-4
}
.article h5 {
@apply font-sans text-sm font-bold mt-6 mb-4
}
.article h6 {
@apply font-sans text-xs font-bold mt-6 mb-4
}
.article p {
@apply mt-0 mb-4
}
.article a {
@apply text-red-500 hover:underline
}
.article strong {
}
.article em {
}
.article ol {
@apply list-decimal pl-8 mb-4
}
.article ul {
@apply list-disc pl-8 mb-4
}
.article ul.task-list {
@apply pl-0
}
.article li.task-list-item {
@apply list-none
}
.article li input {
@apply ml-1 mr-2
}
.article blockquote {
@apply text-2xl border-l-4 border-gray-300 dark:border-gray-700 text-gray-600 dark:text-gray-400 mb-4 px-4 py-2
}
.article blockquote > :last-child {
@apply mb-0
}
.article blockquote cite {
@apply text-base
}
.article blockquote cite::before {
content: "—";
@apply mr-2
}
.article img {
@apply rounded-md mx-auto
}
.article hr {
@apply mt-8 mb-8 border-t-4 border-gray-300 dark:border-gray-700
}
.article code[class*=highlighter] {
@apply rounded-md text-85p bg-gray-200 dark:bg-gray-800 py-0.5 px-1.5
}
.article pre.highlight {
@apply overflow-x-auto
}
.article div.highlight {
@apply mb-4
}
.article pre.highlight {
@apply p-4 rounded-md text-sm bg-gray-200 dark:bg-gray-800
}
.article table {
@apply border-collapse border border-gray-300 dark:border-gray-700 table-auto w-full mb-4
}
.article th, .article td {
@apply border border-gray-300 dark:border-gray-700 py-2 px-4
}
.article thead {
@apply font-bold
}
/* ********************************
* Anchor
******************************** */
h1 .anchor, h2 .anchor, h3 .anchor, h4 .anchor, h5 .anchor, h6 .anchor {
@apply opacity-0
}
h1:hover .anchor, h2:hover .anchor, h3:hover .anchor, h4:hover .anchor, h5:hover .anchor, h6:hover .anchor {
@apply opacity-100
}
a.anchor {
margin-left: -1em;
padding-right: 0.5em;
@apply absolute transition text-gray-400 dark:text-gray-500 hover:text-red-500 dark:hover:text-red-500 hover:no-underline
}
/* ********************************
* General
******************************** */
.iw-link {
@apply transition-colors text-red-500 hover:text-red-700
}
svg.bi {
display: inline-block;
width: 1em;
height: 1em;
}
.iw-btn {
@apply transition-colors cursor-pointer bg-transparent border-2 border-red-500 hover:bg-red-500 hover:text-white
rounded text-gray-900 dark:text-gray-50 px-4 py-2 font-bold inline-block
}
/* ********************************
* Gallery
******************************** */
div.iw-gallery-2 {
@apply grid grid-cols-2 gap-4 my-8
}
img.img-viewer {
@apply cursor-pointer
} | 0.591487 | 0.143487 |
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
margin: 0;
}
p {
font-size: 1.3em;
}
#generators-container {
float:left;
width: 100%;
margin-left: auto;
margin-right: auto;
}
svg > path {
fill: #fff;
}
.header {
float: left;
width: 100%;
color: #fff;
padding: 8px;
padding-bottom: 40px;
margin: 0;
margin-bottom: 40px;
text-align: center;
}
.header > h1 {
font-size: 2.9em;
color: #eeeeee;
text-align: center;
margin-left: auto;
margin-right: auto;
padding: 8px;
margin-bottom: 70px;
max-width: 700px;
}
@media (min-width: 750px) {
.header > h1 {
font-size: 3.9em;
color: #eeeeee;
text-align: center;
margin-left: auto;
margin-right: auto;
padding: 8px;
margin-bottom: 70px;
max-width: 900px;
}
}
.swagger, #profile, #help, #cog, #paypal, .logo, .counter {
border-radius: 80px;
margin-left: auto;
margin-right: auto;
}
.count {
margin-top: -100px;
float: right;
background-color: red;
border-radius: 10px;
font-size: 11px;
padding: 2px;
}
.outro > p, .header > p{
max-width: 600px;
margin-left: auto;
margin-right: auto;
padding: 8px;
}
.italic {
font-style: italic;
}
.outro, .error, .what-is-swagger, .what-is-it{
background-color: #444;
color: #fff;
padding: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-bottom: 60px;
text-align: center;
margin-top: -1px;
}
.what-is-it {
background-color: #1A262F;
}
.logo {
height: 150px;
background-image: url('../img/s.png');
background-position: center;
background-size: cover;
}
.error {
padding-top: 9px;
padding-bottom: 0px;
margin-bottom: 0px;
}
#main {
margin-top: -10px;
padding-top: 40px;
min-height: 450px;
}
#url {
display: block;
width: 80%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
height: 50px;
border-radius: 5px;
border: 1px solid #333;
padding: 8px;
font-size: 2em;
text-align: center;
background-color: #fff;
}
#preview-header, #preview-footer {
clear: both;
width: 80%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
padding: 2px;
border-top: 1px solid #333;
border-left: 1px solid #333;
border-right: 1px solid #333;
border-radius: 5px 5px 0px 0px;
text-align: center;
background-color: #333333;
color: #fff;
}
#preview-footer {
margin-top:0px;
border-radius: 0px 0px 5px 5px;
cursor: hand;
cursor: pointer;
margin-bottom: 60px;
}
#preview-header > h3, #preview-footer > div > h3 {
margin-top: 6px;
margin-bottom: 6px;
}
#preview {
width: 80%;
max-width: 1000px;
margin-top:-2px;
margin-left: auto;
margin-right: auto;
border: 1px solid #333;
padding: 8px;
background-color: #f8f8f8;
overflow: hidden;
font-family: "Courier New", Courier, monospace;
color: #333;
}
#preview pre {
border: none;
background-color: #f8f8f8;
padding: 0;
}
#preview a {
color: #444;
}
.expanded {
max-height: 10000px;
}
.collapsed {
max-height: 400px;
}
#generators {
width: 300px;
width: fit-content;
width: -moz-fit-content;
margin-right: auto;
margin-left: 55px;
margin-top: 40px;
margin-bottom: 20px;
}
#generators img:hover {
border: 2px solid #1A262F;
transform: scale(1.3);
}
@media (min-width: 450px) {
#generators {
width: 300px;
width: fit-content;
width: -moz-fit-content;
margin-right: auto;
margin-left: 50px;
margin-top: 40px;
margin-bottom: 20px;
}
}
@media (min-width: 750px) {
#generators {
width: 50%;
width: fit-content;
width: -moz-fit-content;
margin-left: auto;
}
.logo {
width: 600px;
}
}
.generator {
float:left;
width: 90px;
height: 140px;
margin: 4px;
padding: 0px;
cursor: hand;
cursor: pointer;
color: #fff;
}
.generator > div {
padding-top: 10px;
text-align: center;
margin-left: -11px;
}
.generator > a > img, .generator > img {
border-radius: 60px 60px 60px 60px;
}
.generator.coming {
opacity:0.2;
cursor: not-allowed;
}
.generator.coming:hover {
}
.generator:hover {
color: #fff;
text-decoration: underline;
}
.download-link {
margin-top: 30px;
}
.blue {
background-color: #3B88C3;
}
.blue a, .blue a:hover {
color: #fff;
font-weight: bold;
}
.grey {
background-color: #444;
}
.dark-grey {
background-color: #333;
background-color: #1A262F;
}
.clojure, .clojurescript, .swagger, #cog {
margin: 24px;
}
#cog {
margin-top: 40px;
background-color: #fff;
}
@keyframes pulse {
to {
opacity: 0;
transform: scale(1);
}
} | resources/public/css/style.css | body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
margin: 0;
}
p {
font-size: 1.3em;
}
#generators-container {
float:left;
width: 100%;
margin-left: auto;
margin-right: auto;
}
svg > path {
fill: #fff;
}
.header {
float: left;
width: 100%;
color: #fff;
padding: 8px;
padding-bottom: 40px;
margin: 0;
margin-bottom: 40px;
text-align: center;
}
.header > h1 {
font-size: 2.9em;
color: #eeeeee;
text-align: center;
margin-left: auto;
margin-right: auto;
padding: 8px;
margin-bottom: 70px;
max-width: 700px;
}
@media (min-width: 750px) {
.header > h1 {
font-size: 3.9em;
color: #eeeeee;
text-align: center;
margin-left: auto;
margin-right: auto;
padding: 8px;
margin-bottom: 70px;
max-width: 900px;
}
}
.swagger, #profile, #help, #cog, #paypal, .logo, .counter {
border-radius: 80px;
margin-left: auto;
margin-right: auto;
}
.count {
margin-top: -100px;
float: right;
background-color: red;
border-radius: 10px;
font-size: 11px;
padding: 2px;
}
.outro > p, .header > p{
max-width: 600px;
margin-left: auto;
margin-right: auto;
padding: 8px;
}
.italic {
font-style: italic;
}
.outro, .error, .what-is-swagger, .what-is-it{
background-color: #444;
color: #fff;
padding: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 60px;
padding-bottom: 60px;
text-align: center;
margin-top: -1px;
}
.what-is-it {
background-color: #1A262F;
}
.logo {
height: 150px;
background-image: url('../img/s.png');
background-position: center;
background-size: cover;
}
.error {
padding-top: 9px;
padding-bottom: 0px;
margin-bottom: 0px;
}
#main {
margin-top: -10px;
padding-top: 40px;
min-height: 450px;
}
#url {
display: block;
width: 80%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
height: 50px;
border-radius: 5px;
border: 1px solid #333;
padding: 8px;
font-size: 2em;
text-align: center;
background-color: #fff;
}
#preview-header, #preview-footer {
clear: both;
width: 80%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
padding: 2px;
border-top: 1px solid #333;
border-left: 1px solid #333;
border-right: 1px solid #333;
border-radius: 5px 5px 0px 0px;
text-align: center;
background-color: #333333;
color: #fff;
}
#preview-footer {
margin-top:0px;
border-radius: 0px 0px 5px 5px;
cursor: hand;
cursor: pointer;
margin-bottom: 60px;
}
#preview-header > h3, #preview-footer > div > h3 {
margin-top: 6px;
margin-bottom: 6px;
}
#preview {
width: 80%;
max-width: 1000px;
margin-top:-2px;
margin-left: auto;
margin-right: auto;
border: 1px solid #333;
padding: 8px;
background-color: #f8f8f8;
overflow: hidden;
font-family: "Courier New", Courier, monospace;
color: #333;
}
#preview pre {
border: none;
background-color: #f8f8f8;
padding: 0;
}
#preview a {
color: #444;
}
.expanded {
max-height: 10000px;
}
.collapsed {
max-height: 400px;
}
#generators {
width: 300px;
width: fit-content;
width: -moz-fit-content;
margin-right: auto;
margin-left: 55px;
margin-top: 40px;
margin-bottom: 20px;
}
#generators img:hover {
border: 2px solid #1A262F;
transform: scale(1.3);
}
@media (min-width: 450px) {
#generators {
width: 300px;
width: fit-content;
width: -moz-fit-content;
margin-right: auto;
margin-left: 50px;
margin-top: 40px;
margin-bottom: 20px;
}
}
@media (min-width: 750px) {
#generators {
width: 50%;
width: fit-content;
width: -moz-fit-content;
margin-left: auto;
}
.logo {
width: 600px;
}
}
.generator {
float:left;
width: 90px;
height: 140px;
margin: 4px;
padding: 0px;
cursor: hand;
cursor: pointer;
color: #fff;
}
.generator > div {
padding-top: 10px;
text-align: center;
margin-left: -11px;
}
.generator > a > img, .generator > img {
border-radius: 60px 60px 60px 60px;
}
.generator.coming {
opacity:0.2;
cursor: not-allowed;
}
.generator.coming:hover {
}
.generator:hover {
color: #fff;
text-decoration: underline;
}
.download-link {
margin-top: 30px;
}
.blue {
background-color: #3B88C3;
}
.blue a, .blue a:hover {
color: #fff;
font-weight: bold;
}
.grey {
background-color: #444;
}
.dark-grey {
background-color: #333;
background-color: #1A262F;
}
.clojure, .clojurescript, .swagger, #cog {
margin: 24px;
}
#cog {
margin-top: 40px;
background-color: #fff;
}
@keyframes pulse {
to {
opacity: 0;
transform: scale(1);
}
} | 0.564579 | 0.076649 |
*{margin: 0; padding: 0;}
body{
background-color: #9193ff;
}
#topo{
width: 100%;
height: auto;
}
#imagem_center{
width: 250px;
height: 200px;
margin-left: 35em;
margin-right: auto;
align-items: center;
}
#menu{
list-style: none ;
border: 1px solid rgb(0, 0, 0);
float: left;
padding-left: 4%;
}
#menu li{
position:relative;
float: left;
border-right: 1px solid black;
}
#menu li a{
font-family: Arial, Helvetica, sans-serif;
color: rgb(255, 255, 255);
text-decoration: none;
padding: 5px 10px;
display: block;
}
#menu li a:hover{
background-color: rgb(0, 0, 155);
transition: 1s;
}
/*submenu*/
#menu li ul{
position: absolute;
top: 25px;
left: 0;
background-color: rgb(155,0, 0);
display: none;
}
#menu li:hover ul{
display: block;
}
#menu li ul li{
border: 1px;
border-color: rgb(255, 255, 255);
display: block;
width: 180px;
}
#imagem_center_larga{
width: 650px;
height: 200px;
margin-left: 25em;
margin-right: auto;
align-items: center;
}
#imagem_center_comprida{
width: 250px;
height: 350px;
margin-left: 35em;
margin-right: auto;
align-items: center;
}
#conteudo{
width: 100%;
min-height: 700px;
}
section{
padding: 3%
}
nav{
width: 100%;
height: auto;
background-color: rgb(155, 0, 0);
float: left;
}
h1{
padding-top: 15px;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
#alinhamento{
padding-left: 15px;
padding-bottom: 15px;
}
#paragrafo{
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
text-align: justify;
min-height: 300px;
}
#rodape{
width: 100%;
height: 80px;
background-color:#000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color:rgb(255, 255, 255);
text-align: center;
padding-top: 2%;
}
input, select{
width: 40%;
height: 40px;
background-color: rgb(192, 192, 192);
color: #000000;
border-radius: 15px;
margin-left: 5px;
}
label, legend{
font-weight: bold;
font-size: 1.2em;
}
fieldset{
border-color: #500101;
border-radius: 15px;
}
textarea{
width: 40%;
padding: 5px;
margin-left: 5px;
}
input[type=submit]{
width: 15%;
height: 40px;
background-color: #500101;
color: white;
}
input[type=reset]{
width: 15%;
height: 40px;
background-color: #500101;
color: white;
}
.required::after{
content: " *";
color: red;
} | Fatec/Primeiro_Semestre/Web_desenvolvimento/Aula_9_HTML/css/estilo.css | *{margin: 0; padding: 0;}
body{
background-color: #9193ff;
}
#topo{
width: 100%;
height: auto;
}
#imagem_center{
width: 250px;
height: 200px;
margin-left: 35em;
margin-right: auto;
align-items: center;
}
#menu{
list-style: none ;
border: 1px solid rgb(0, 0, 0);
float: left;
padding-left: 4%;
}
#menu li{
position:relative;
float: left;
border-right: 1px solid black;
}
#menu li a{
font-family: Arial, Helvetica, sans-serif;
color: rgb(255, 255, 255);
text-decoration: none;
padding: 5px 10px;
display: block;
}
#menu li a:hover{
background-color: rgb(0, 0, 155);
transition: 1s;
}
/*submenu*/
#menu li ul{
position: absolute;
top: 25px;
left: 0;
background-color: rgb(155,0, 0);
display: none;
}
#menu li:hover ul{
display: block;
}
#menu li ul li{
border: 1px;
border-color: rgb(255, 255, 255);
display: block;
width: 180px;
}
#imagem_center_larga{
width: 650px;
height: 200px;
margin-left: 25em;
margin-right: auto;
align-items: center;
}
#imagem_center_comprida{
width: 250px;
height: 350px;
margin-left: 35em;
margin-right: auto;
align-items: center;
}
#conteudo{
width: 100%;
min-height: 700px;
}
section{
padding: 3%
}
nav{
width: 100%;
height: auto;
background-color: rgb(155, 0, 0);
float: left;
}
h1{
padding-top: 15px;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
#alinhamento{
padding-left: 15px;
padding-bottom: 15px;
}
#paragrafo{
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
text-align: justify;
min-height: 300px;
}
#rodape{
width: 100%;
height: 80px;
background-color:#000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color:rgb(255, 255, 255);
text-align: center;
padding-top: 2%;
}
input, select{
width: 40%;
height: 40px;
background-color: rgb(192, 192, 192);
color: #000000;
border-radius: 15px;
margin-left: 5px;
}
label, legend{
font-weight: bold;
font-size: 1.2em;
}
fieldset{
border-color: #500101;
border-radius: 15px;
}
textarea{
width: 40%;
padding: 5px;
margin-left: 5px;
}
input[type=submit]{
width: 15%;
height: 40px;
background-color: #500101;
color: white;
}
input[type=reset]{
width: 15%;
height: 40px;
background-color: #500101;
color: white;
}
.required::after{
content: " *";
color: red;
} | 0.336113 | 0.062388 |
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
:root {
--primary: #028090;
--secondary: #fafcff;
--danger: #f45b69;
--info: #114b5f;
}
body {
font-family: "Poppins", sans-serif;
}
.rounded-8 {
border-radius: 8px;
}
.background-home-50vh {
background: url(/static/images/beauty-girl.jpg);
width: 100%;
height: 50vh;
background-size: cover;
background-position: 30%;
}
.fit-cover {
object-fit: cover;
}
.background-overlay-50vh {
background-color: rgba(0, 0, 0, 0.6);
width: 100%;
height: 50vh;
position: absolute;
}
/* Input */
.input-container-bottom {
border-bottom: black solid 2px;
display: block;
}
.input-container-bottom > input,
.input-container-bottom > textarea {
outline: none !important;
border: none !important;
background: transparent;
}
/* Cards */
/* /* Dashboard */
.sidebar-container {
height: 100vh;
position: fixed;
width: 260px;
z-index: 10000;
overflow-y: autO;
left: 0;
transition: ease-in-out 0.2s;
}
@media (min-width: 0) and (max-width: 992px) {
.sidebar-container {
left: -260px;
}
.sidebar-container.active {
left: 0;
}
.overlay-bg {
background: rgba(0, 0, 0, 0.3);
position: fixed;
height: 100vh;
z-index: 0;
opacity: 0;
width: 100%;
}
.overlay-bg.active {
z-index: 9999;
opacity: 1;
}
}
.sidebar-container::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.sidebar-container::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
border-radius: 30px;
}
.sidebar-container::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
border-radius: 30px;
}
.sidebar-container:hover::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.4);
}
.side {
padding-left: 260px;
}
@media (min-width: 0) and (max-width: 992px) {
.side {
padding: 0;
}
}
aside > ul {
margin-bottom: 0 !important;
list-style-type: none;
padding: 0;
}
aside > ul li.active::before {
content: "";
width: 8px;
height: 28px;
left: 0;
position: absolute;
background-color: var(--primary);
color: var(--primary);
}
aside > ul li.active {
color: var(--primary);
} | static/css/styles.css | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
:root {
--primary: #028090;
--secondary: #fafcff;
--danger: #f45b69;
--info: #114b5f;
}
body {
font-family: "Poppins", sans-serif;
}
.rounded-8 {
border-radius: 8px;
}
.background-home-50vh {
background: url(/static/images/beauty-girl.jpg);
width: 100%;
height: 50vh;
background-size: cover;
background-position: 30%;
}
.fit-cover {
object-fit: cover;
}
.background-overlay-50vh {
background-color: rgba(0, 0, 0, 0.6);
width: 100%;
height: 50vh;
position: absolute;
}
/* Input */
.input-container-bottom {
border-bottom: black solid 2px;
display: block;
}
.input-container-bottom > input,
.input-container-bottom > textarea {
outline: none !important;
border: none !important;
background: transparent;
}
/* Cards */
/* /* Dashboard */
.sidebar-container {
height: 100vh;
position: fixed;
width: 260px;
z-index: 10000;
overflow-y: autO;
left: 0;
transition: ease-in-out 0.2s;
}
@media (min-width: 0) and (max-width: 992px) {
.sidebar-container {
left: -260px;
}
.sidebar-container.active {
left: 0;
}
.overlay-bg {
background: rgba(0, 0, 0, 0.3);
position: fixed;
height: 100vh;
z-index: 0;
opacity: 0;
width: 100%;
}
.overlay-bg.active {
z-index: 9999;
opacity: 1;
}
}
.sidebar-container::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.sidebar-container::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
border-radius: 30px;
}
.sidebar-container::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
border-radius: 30px;
}
.sidebar-container:hover::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.4);
}
.side {
padding-left: 260px;
}
@media (min-width: 0) and (max-width: 992px) {
.side {
padding: 0;
}
}
aside > ul {
margin-bottom: 0 !important;
list-style-type: none;
padding: 0;
}
aside > ul li.active::before {
content: "";
width: 8px;
height: 28px;
left: 0;
position: absolute;
background-color: var(--primary);
color: var(--primary);
}
aside > ul li.active {
color: var(--primary);
} | 0.314261 | 0.08218 |
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
body{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
line-height: 1.75;
}
h1, h2 {
font-weight: 700;
margin: 0;
padding: 5px;
}
h1 {font-size: 3rem; }
h2 {text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); }
header::before {
content: "";
background-image: url("img/bg.jpg"), linear-gradient(steelblue, firebrick);
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: multiply;
width: 100%;
height: 60vh;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
header {
max-width: 100%;
height: 60vh;
margin-bottom: 75px;
}
@media only screen and (max-width: 720px) {
header, header::before {
height: 100vh;
}
}
.header__container {
margin: 0 auto;
display: flex;
width: 50%;
height: 100%;
flex-direction: column;
align-items: center;
justify-content: center;
color: whitesmoke;
}
.header__img{
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.header__img img {
display: block;
width: 125px;
height: auto;
border-radius: 50%;
box-shadow: 0px 5px 25px 0px rgba(175, 149, 149, 0.6);
}
.icon-container {
width: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: -23px;
}
.icon {
width: 50px;
height: 50px;
font-size: 32px;
color: whitesmoke;
margin: 0 5px;
background-color: #888;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.4);
transition: transform 350ms;
}
.icon:hover {transform: scale(1.1); }
.icon-container a {
text-decoration: none;
color: inherit;
}
main {
width: 80%;
margin: 0 auto;
}
section {width: 100%; }
.card {
border-radius: 0.1875rem;
display: flex;
margin-bottom: 20px;
box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
padding: 20px;
}
@media only screen and (max-width: 720px) {
.about {
flex-direction: column;
}
}
section.card i {
font-size: 3rem;
margin-right: 10px;
float: left;
}
div i.small-icon {
font-size: 1rem;
margin-right: 10px;
margin-top: 5px;
float: left;
}
section div {padding: 0 15px; flex: 0 0 50%; }
table td{padding: 7px; }
table td:nth-child(1) {font-weight: 700; }
h5 {
font-size: 1.57em;
line-height: 1.4em;
margin-bottom: 15px;
font-weight: 400;
}
.text-center {
text-align: center;
margin-top: 75px;
margin-bottom: 30px;
}
.work{
padding: 0;
margin-bottom: 70px;
}
@media only screen and (max-width: 720px){
.work {
flex-direction: column;
}
}
.work div:nth-child(1) {
background-color: rgba(70, 130, 180, .15);
flex: 0 0 20%;
display: flex;
flex-direction: column;
align-items: center;
}
.work div:nth-child(2) {
flex-grow: 1;
padding: 20px;
}
.education {
padding: 10px;
display: flex;
flex-direction: column;
}
.education div {
flex: 0 0 100%;
padding: 20px;
display: flex;
align-items: baseline;
}
.links div {flex: 0 0 100%; }
.education div * { margin: 0 15px 0 0;}
.card ul {list-style: none; }
.card ul a {color:inherit; text-decoration: none; display: block; }
footer {padding: 24px 0;}
footer a {
color: #888;
text-decoration: none;
}
footer .container {
width: 100%;
display: inline-block;
margin-right: auto;
margin-left: auto;
text-align: center;
font-size: 1.5rem;
}
footer .container i {
margin: 0.5rem 0.7rem;
}
footer .name {
font-weight: 700;
font-size: 1.7rem;
text-align: center;
color: #888;
} | week1/resume.css | @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
body{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
line-height: 1.75;
}
h1, h2 {
font-weight: 700;
margin: 0;
padding: 5px;
}
h1 {font-size: 3rem; }
h2 {text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); }
header::before {
content: "";
background-image: url("img/bg.jpg"), linear-gradient(steelblue, firebrick);
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: multiply;
width: 100%;
height: 60vh;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
header {
max-width: 100%;
height: 60vh;
margin-bottom: 75px;
}
@media only screen and (max-width: 720px) {
header, header::before {
height: 100vh;
}
}
.header__container {
margin: 0 auto;
display: flex;
width: 50%;
height: 100%;
flex-direction: column;
align-items: center;
justify-content: center;
color: whitesmoke;
}
.header__img{
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.header__img img {
display: block;
width: 125px;
height: auto;
border-radius: 50%;
box-shadow: 0px 5px 25px 0px rgba(175, 149, 149, 0.6);
}
.icon-container {
width: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: -23px;
}
.icon {
width: 50px;
height: 50px;
font-size: 32px;
color: whitesmoke;
margin: 0 5px;
background-color: #888;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.4);
transition: transform 350ms;
}
.icon:hover {transform: scale(1.1); }
.icon-container a {
text-decoration: none;
color: inherit;
}
main {
width: 80%;
margin: 0 auto;
}
section {width: 100%; }
.card {
border-radius: 0.1875rem;
display: flex;
margin-bottom: 20px;
box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
padding: 20px;
}
@media only screen and (max-width: 720px) {
.about {
flex-direction: column;
}
}
section.card i {
font-size: 3rem;
margin-right: 10px;
float: left;
}
div i.small-icon {
font-size: 1rem;
margin-right: 10px;
margin-top: 5px;
float: left;
}
section div {padding: 0 15px; flex: 0 0 50%; }
table td{padding: 7px; }
table td:nth-child(1) {font-weight: 700; }
h5 {
font-size: 1.57em;
line-height: 1.4em;
margin-bottom: 15px;
font-weight: 400;
}
.text-center {
text-align: center;
margin-top: 75px;
margin-bottom: 30px;
}
.work{
padding: 0;
margin-bottom: 70px;
}
@media only screen and (max-width: 720px){
.work {
flex-direction: column;
}
}
.work div:nth-child(1) {
background-color: rgba(70, 130, 180, .15);
flex: 0 0 20%;
display: flex;
flex-direction: column;
align-items: center;
}
.work div:nth-child(2) {
flex-grow: 1;
padding: 20px;
}
.education {
padding: 10px;
display: flex;
flex-direction: column;
}
.education div {
flex: 0 0 100%;
padding: 20px;
display: flex;
align-items: baseline;
}
.links div {flex: 0 0 100%; }
.education div * { margin: 0 15px 0 0;}
.card ul {list-style: none; }
.card ul a {color:inherit; text-decoration: none; display: block; }
footer {padding: 24px 0;}
footer a {
color: #888;
text-decoration: none;
}
footer .container {
width: 100%;
display: inline-block;
margin-right: auto;
margin-left: auto;
text-align: center;
font-size: 1.5rem;
}
footer .container i {
margin: 0.5rem 0.7rem;
}
footer .name {
font-weight: 700;
font-size: 1.7rem;
text-align: center;
color: #888;
} | 0.429908 | 0.110952 |
body{
background-color: #F1B157;
}
/* navigation bar */
.navbar-nav{
text-align: center;
background-color: #8F1A24;
box-shadow: 0px -20px 5px 20px #333333;
padding: 10px;
font-size: 0;
position: sticky;
z-index: 2;
top:0;
}
.navbar-nav ul {
margin: 0;
padding-left: 0%;
text-align: left;
display: inline-block;
vertical-align: middle;
}
.navbar-nav ul li {
display: inline-block;
font-size: 16px;
}
.navbar-nav ul li a {
color: #f5f5f5;
text-decoration: none;
display: inline-block;
padding: 10px;
transition: color 0.5s;
}
.navbar-nav ul li .underline {
height: 3px;
background-color: transparent;
width: 0%;
transition: width 0.2s, background-color 0.5s;
margin: 0 auto;
}
.navbar-nav ul li.active-link .underline {
width: 100%;
background-color: #F1B157;
}
.navbar-nav ul li:hover .underline {
background-color: #F1B157;
width: 100%;
}
.navbar-nav ul li:hover a {
}
.navbar-nav ul li:active a {
transition: none;
color: rgba(255,255,255,0.76);
}
.navbar-container ul li:active .underline {
transition: none;
background-color: rgba(255,255,255,0.76);
}
.navbar-nav .nav-link{
padding-left: 7px;
}
/* make it mobile responsive */
.responsive{
width: 100%;
height: auto;
}
/* table */
table, td{
border: 1px solid #ddd;
padding-top: 2.5%;
padding-bottom: 2.5%;
}
th{
vertical-align: middle;
}
table#table1{
width: 80%;
margin-left: 10%;
margin-right: 15%;
margin-top: 20px;
background-color: #f1f1f1;
}
/* make table responsive */
@media(max-width: 360px){
#table1 thead{
display: none;
}
#table1, #table1 tbody, #table1 tr, #table1 td{
display: block;
width: 100%;
top:0;
}
#table1 tr{
margin-bottom: 15px;
}
#table1 td{
text-align: right;
padding-left: 50%;
text-align: right;
position: relative;
}
#table1 td::before{
content: attr(data-label);
position: absolute;
left: 0;
width: 50%;
padding-left: 15px;
font-size: 15px;
font-weight: bold;
text-align: left;
}
.navbar-nav ul li {
font-size: 12px;
}
}
/* remove button */
.btn{
background-color: darkred;
color: white;
padding: 8px 20px;
font-size: 16px;
border: none;
cursor: pointer;
}
.text-center{
text-align: center;
vertical-align: center;
}
.remove{
margin-right: 10px;
margin-bottom: 20px;
cursor: pointer;
}
.container {
text-align: center;
margin-top: 0px;
position: relative;
z-index: -1;
}
a, h1{
color: #26545C
}
#header{
text-align: center;
}
#borderLeftover {
border: 5px solid black;
}
.submit{
padding-left: 50%;
padding-top: 4%;
}
/* Pop up screens */
.bg-modal{
width: 100%;
height: 100%;
background-color: rbga(0,0,0,0.7);
position: absolute;
top: 0;
display: flex;
justify-content: center;
align-items: center;
display: none;
}
.modal-content{
width: 500px;
height: 300px;
background-color: white;
border-radius: 4px;
position: relative;
}
.login{
display: flex;
justify-content: left;
padding-left: 5%;
align-items: center;
}
/* buttons */
.button {
background-color: #26545C;
border: 2px solid white;
border-radius: 30px;
text-decoration: none;
padding: 10px 28px;
color: white;
margin-top: 10px;
display: inline-block;
&:hover {
background-color: white;
color: #26545C;
border: 2px #26545C;
}
}
#button{
position: fixed;
bottom: 10px;
right: 10px;
z-index: 1;
}
.close {
position: absolute;
top: 0;
right: 14px;
font-size: 42px;
transform: rotate(45deg);
cursor: pointer;
}
input {
width: 50%;
display: block;
margin: 10px auto;
}
.home{
text-align: center;
}
#name{
padding-left: 25%;
}
#name2{
padding-left: 28%;
}
#expenses{
padding-right: 35%;
}
#setting{
padding-right:45%;
}
#spendingHome{
padding-right: 40%
}
#plusSignMargin{
padding-left: 35%;
}
.budgetText h1{
text-align: center;
vertical-align: center;
}
span{
font-size: 50px;
text-align: center;
}
hr{
border: 2px solid black;
width: 30%
} | public/css/style.css | body{
background-color: #F1B157;
}
/* navigation bar */
.navbar-nav{
text-align: center;
background-color: #8F1A24;
box-shadow: 0px -20px 5px 20px #333333;
padding: 10px;
font-size: 0;
position: sticky;
z-index: 2;
top:0;
}
.navbar-nav ul {
margin: 0;
padding-left: 0%;
text-align: left;
display: inline-block;
vertical-align: middle;
}
.navbar-nav ul li {
display: inline-block;
font-size: 16px;
}
.navbar-nav ul li a {
color: #f5f5f5;
text-decoration: none;
display: inline-block;
padding: 10px;
transition: color 0.5s;
}
.navbar-nav ul li .underline {
height: 3px;
background-color: transparent;
width: 0%;
transition: width 0.2s, background-color 0.5s;
margin: 0 auto;
}
.navbar-nav ul li.active-link .underline {
width: 100%;
background-color: #F1B157;
}
.navbar-nav ul li:hover .underline {
background-color: #F1B157;
width: 100%;
}
.navbar-nav ul li:hover a {
}
.navbar-nav ul li:active a {
transition: none;
color: rgba(255,255,255,0.76);
}
.navbar-container ul li:active .underline {
transition: none;
background-color: rgba(255,255,255,0.76);
}
.navbar-nav .nav-link{
padding-left: 7px;
}
/* make it mobile responsive */
.responsive{
width: 100%;
height: auto;
}
/* table */
table, td{
border: 1px solid #ddd;
padding-top: 2.5%;
padding-bottom: 2.5%;
}
th{
vertical-align: middle;
}
table#table1{
width: 80%;
margin-left: 10%;
margin-right: 15%;
margin-top: 20px;
background-color: #f1f1f1;
}
/* make table responsive */
@media(max-width: 360px){
#table1 thead{
display: none;
}
#table1, #table1 tbody, #table1 tr, #table1 td{
display: block;
width: 100%;
top:0;
}
#table1 tr{
margin-bottom: 15px;
}
#table1 td{
text-align: right;
padding-left: 50%;
text-align: right;
position: relative;
}
#table1 td::before{
content: attr(data-label);
position: absolute;
left: 0;
width: 50%;
padding-left: 15px;
font-size: 15px;
font-weight: bold;
text-align: left;
}
.navbar-nav ul li {
font-size: 12px;
}
}
/* remove button */
.btn{
background-color: darkred;
color: white;
padding: 8px 20px;
font-size: 16px;
border: none;
cursor: pointer;
}
.text-center{
text-align: center;
vertical-align: center;
}
.remove{
margin-right: 10px;
margin-bottom: 20px;
cursor: pointer;
}
.container {
text-align: center;
margin-top: 0px;
position: relative;
z-index: -1;
}
a, h1{
color: #26545C
}
#header{
text-align: center;
}
#borderLeftover {
border: 5px solid black;
}
.submit{
padding-left: 50%;
padding-top: 4%;
}
/* Pop up screens */
.bg-modal{
width: 100%;
height: 100%;
background-color: rbga(0,0,0,0.7);
position: absolute;
top: 0;
display: flex;
justify-content: center;
align-items: center;
display: none;
}
.modal-content{
width: 500px;
height: 300px;
background-color: white;
border-radius: 4px;
position: relative;
}
.login{
display: flex;
justify-content: left;
padding-left: 5%;
align-items: center;
}
/* buttons */
.button {
background-color: #26545C;
border: 2px solid white;
border-radius: 30px;
text-decoration: none;
padding: 10px 28px;
color: white;
margin-top: 10px;
display: inline-block;
&:hover {
background-color: white;
color: #26545C;
border: 2px #26545C;
}
}
#button{
position: fixed;
bottom: 10px;
right: 10px;
z-index: 1;
}
.close {
position: absolute;
top: 0;
right: 14px;
font-size: 42px;
transform: rotate(45deg);
cursor: pointer;
}
input {
width: 50%;
display: block;
margin: 10px auto;
}
.home{
text-align: center;
}
#name{
padding-left: 25%;
}
#name2{
padding-left: 28%;
}
#expenses{
padding-right: 35%;
}
#setting{
padding-right:45%;
}
#spendingHome{
padding-right: 40%
}
#plusSignMargin{
padding-left: 35%;
}
.budgetText h1{
text-align: center;
vertical-align: center;
}
span{
font-size: 50px;
text-align: center;
}
hr{
border: 2px solid black;
width: 30%
} | 0.3027 | 0.065845 |
body
{
background: #FFF;
font-family: 'Open Sans', Microsoft YaHei, Arial, Verdana, sans-serif;
font-size: 18px;
position: relative;
}
/* start templatemo page container */
@media (min-width: 768px) {
.container { width: 700px; margin-top: 20px;}
}
@media (min-width: 992px) {
.container { width: 900px; margin-top: 30px;}
}
@media (min-width: 1200px) {
.container { width: 1000px; margin-top: 40px;}
}
/* end templatemo page container */
.blue {
color: #06C;
}
.green {
color: #090;
}
.copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
/* start templatemo navigation */
.navbar-default
{
background: #FFF;
border: none;
box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
margin: 0;
}
.navbar-default .navbar-brand
{
font-weight: 600;
font-size: 30px;
padding: 10px 0 0 0;
height: 65px;
line-height: 40px;
}
.navbar-default .navbar-brand:hover { color: #ffa400; }
.navbar-default .nav li a
{
color: #333;
font-size: 14px;
font-weight: 700;
height: 65px;
line-height: 38px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navbar-default .nav li a:hover
{
background-color: #ffa400;
color: #FFF;
}
.navbar-default .nav li a:focus { color: #303030; }
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #FFF;
background-color: #ffa400;
}
.navbar-default .navbar-toggle
{
border: none;
padding-top: 18px;
}
.navbar-default .navbar-toggle .icon-bar
{
background: #ffa400;
border-color: transparent;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { background-color: transparent }
/* end templatemo navigation */
/* start templatemo header background slideshow */
#home { padding-top: 65px; }
.flexslider {
margin: 0 0 60px;
background: #fff;
padding: 0;
position: relative;
zoom: 1;
background-color: #371604;
overflow: hidden;
margin: 0;
}
.flexslider .slides {
padding: 0;
zoom: 1;
}
.flexslider .slides img {
width: 100%;
min-width: 648px;
min-height: 270px;
display: block;
}
.flexslider .slides > li {
display: none;
padding: 0;
position: relative;
-webkit-backface-visibility: hidden;
}
.flexslider img {
position: relative;
width: 100%;
}
.slider-caption {
color:white;
margin: 0;
position: absolute;
top: 0;
left: 0;
text-transform: uppercase;
z-index: 7;
width: 100%;
height: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
/* start templatemo timeline */
.timeline
{
background: #F9F9F9;
border-bottom: 1px solid #f0f0f0;
padding: 60px 0 60px 0;
}
.timeline h2
{
font-weight: 600;
padding-bottom: 20px;
}
.timeline h3
{
font-weight: 400;
padding-bottom: 6px;
}
.timeline .fa
{
background: #ffa400;
border-radius: 50%;
color: #FFF;
font-size: 30px;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
margin-top: 30px;
margin-bottom: 10px;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.timeline .fa:hover
{
background: #303030;
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
/* end templatemo timeline */
/* start templatemo gain */
#gain
{
color: #333;
padding: 60px 0 60px 0;
}
#gain .col-md-12 { padding: 20px 0 0 0; }
#gain h2
{
font-weight: 600;
padding: 0 0 20px 0;
}
#gain p { margin-bottom: 30px; }
#gain h4
{
font-weight: 600;
padding-top: 6px;
padding-bottom: 10px;
}
#gain .skills { padding-top: 30px; }
#gain .info { padding-top: 20px; }
#gain img
{
cursor: pointer;
display: inline-block;
margin-top: 60px;
margin-bottom: 10px;
position: relative;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#gain img:hover
{
border-radius: 50%;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
opacity: 0.7;
}
/* end templatemo gain */
/* start templatemo challenge */
#challenge
{
background: #F9F9F9;
border-top: 1px solid #f0f0f0;
border-bottom: 1px solid #f0f0f0;
padding: 60px 0 60px 0;
}
#challenge .col-md-3 { margin-bottom: 20px; }
#challenge h2
{
font-weight: 600;
padding: 0 0 20px 0;
}
#challenge h3
{
background: #FFF;
color: #ffa400;
font-weight: 600;
padding: 10px;
}
#challenge .info { padding-top: 60px; }
#challenge img
{
cursor: pointer;
display: inline-block;
margin-top: 60px;
margin-bottom: 10px;
position: relative;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#challenge img:hover
{
border-radius: 50%;
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9);
opacity: 0.7;
}
#challenge p { margin-bottom: 30px; }
/* end templatemo challenge */
/* start templatemo summary */
#summary
{
text-align: center;
background: #F9F9F9;
padding: 60px 0 100px 0;
}
#summary h2
{
font-weight: 600;
padding: 0 0 30px 0;
}
#summary p { margin-bottom: 60px; }
#summary img
{
cursor: pointer;
display: inline-block;
margin-top: 60px;
margin-bottom: 10px;
position: relative;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#summary img:hover
{
border-radius: 50%;
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9);
opacity: 0.7;
}
/* start templatemo plan */
#plan
{
text-align: center;
padding: 60px 0 100px 0;
}
#plan h2
{
font-weight: 600;
padding: 0 0 20px 0;
}
#plan p {margin-bottom: 10px; }
#plan .col-md-3 { padding: 4px; }
#plan .col-md-12 h1 {
font-weight: 600;
margin: 60px;
}
#plan img
{
cursor: pointer;
display: inline-block;
margin-top: 60px;
margin-bottom: 10px;
position: relative;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#plan img:hover
{
border-radius: 50%;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
opacity: 0.7;
}
/* end templatemo plan */
a { color: #ffa400; }
a:hover, a:active
{
color: #ffd485;
text-decoration: none;
}
/* start templatemo footer */
footer
{
border-top: 1px solid #404040;
background: #202020;
color: #FFF;
padding: 80px 0 40px 0;
}
footer .social_icon a
{
border: 1px solid #FFF;
border-radius: 50%;
color: #FFF;
font-size: 16px;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
text-decoration: none;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
margin: 0 4px 24px 6px;
}
footer .social_icon a:hover
{
border-color: transparent;
background: #ffa400;
}
/* end templatemo footer */
/* starttemplatemo go top */
.go-top
{
background-color: #ffa400;
border-radius: 50%;
bottom: 2em;
right: 2em;
color: #FFF;
display: none;
position: fixed;
text-decoration: none;
width: 60px;
height: 60px;
line-height: 60px;
text-align: center;
}
.go-top:hover { color: #F9F9F9; }
/* end templatemo go top */
@media only screen and (max-width: 1199px) {
.flexslider h1 { font-size: 32px; }
.flexslider h2 { font-size: 26px; }
}
/* start templatemo 768 media quires */
@media only screen and ( max-width: 768px ) {
.navbar-default .navbar-brand { margin-left: 20px; }
.navbar-default .navbar-nav { margin: 0; }
.navbar-default .navbar-collapse
{
padding-left: 20px;
padding-right: 20px;
}
.flexslider h1 { font-size: 26px; }
.flexslider h2 { font-size: 18px; }
.templatemo-slider-btn {
margin-top: 10px;
width: 180px;
height: 40px;
padding-top: 8px;
}
}
/* end templatemo 768 media quires */
/* start templatemo 680 media quires */
@media only screen and ( max-width: 680px ) {
.navbar-default .navbar-nav li a { border-bottom: 1px solid #f6f6f6; line-height: normal; height: 40px; }
/* end templatemo 680 media quires */
/* start templatemo 600 media quires */
@media only screen and ( max-width: 640px ) {
.flexslider h1 { font-size: 20px; }
.flexslider h2 { font-size: 14px; }
.templatemo-slider-btn {
width: auto;
height: auto;
padding: 10px 20px;
margin-top: 10px;
}
}
/* end templatemo 600 media quires */ | remote/Summary/AnnualSummary/resources/css/main.css | body
{
background: #FFF;
font-family: 'Open Sans', Microsoft YaHei, Arial, Verdana, sans-serif;
font-size: 18px;
position: relative;
}
/* start templatemo page container */
@media (min-width: 768px) {
.container { width: 700px; margin-top: 20px;}
}
@media (min-width: 992px) {
.container { width: 900px; margin-top: 30px;}
}
@media (min-width: 1200px) {
.container { width: 1000px; margin-top: 40px;}
}
/* end templatemo page container */
.blue {
color: #06C;
}
.green {
color: #090;
}
.copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
/* start templatemo navigation */
.navbar-default
{
background: #FFF;
border: none;
box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
margin: 0;
}
.navbar-default .navbar-brand
{
font-weight: 600;
font-size: 30px;
padding: 10px 0 0 0;
height: 65px;
line-height: 40px;
}
.navbar-default .navbar-brand:hover { color: #ffa400; }
.navbar-default .nav li a
{
color: #333;
font-size: 14px;
font-weight: 700;
height: 65px;
line-height: 38px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.navbar-default .nav li a:hover
{
background-color: #ffa400;
color: #FFF;
}
.navbar-default .nav li a:focus { color: #303030; }
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #FFF;
background-color: #ffa400;
}
.navbar-default .navbar-toggle
{
border: none;
padding-top: 18px;
}
.navbar-default .navbar-toggle .icon-bar
{
background: #ffa400;
border-color: transparent;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { background-color: transparent }
/* end templatemo navigation */
/* start templatemo header background slideshow */
#home { padding-top: 65px; }
.flexslider {
margin: 0 0 60px;
background: #fff;
padding: 0;
position: relative;
zoom: 1;
background-color: #371604;
overflow: hidden;
margin: 0;
}
.flexslider .slides {
padding: 0;
zoom: 1;
}
.flexslider .slides img {
width: 100%;
min-width: 648px;
min-height: 270px;
display: block;
}
.flexslider .slides > li {
display: none;
padding: 0;
position: relative;
-webkit-backface-visibility: hidden;
}
.flexslider img {
position: relative;
width: 100%;
}
.slider-caption {
color:white;
margin: 0;
position: absolute;
top: 0;
left: 0;
text-transform: uppercase;
z-index: 7;
width: 100%;
height: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
/* start templatemo timeline */
.timeline
{
background: #F9F9F9;
border-bottom: 1px solid #f0f0f0;
padding: 60px 0 60px 0;
}
.timeline h2
{
font-weight: 600;
padding-bottom: 20px;
}
.timeline h3
{
font-weight: 400;
padding-bottom: 6px;
}
.timeline .fa
{
background: #ffa400;
border-radius: 50%;
color: #FFF;
font-size: 30px;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
margin-top: 30px;
margin-bottom: 10px;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.timeline .fa:hover
{
background: #303030;
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
/* end templatemo timeline */
/* start templatemo gain */
#gain
{
color: #333;
padding: 60px 0 60px 0;
}
#gain .col-md-12 { padding: 20px 0 0 0; }
#gain h2
{
font-weight: 600;
padding: 0 0 20px 0;
}
#gain p { margin-bottom: 30px; }
#gain h4
{
font-weight: 600;
padding-top: 6px;
padding-bottom: 10px;
}
#gain .skills { padding-top: 30px; }
#gain .info { padding-top: 20px; }
#gain img
{
cursor: pointer;
display: inline-block;
margin-top: 60px;
margin-bottom: 10px;
position: relative;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#gain img:hover
{
border-radius: 50%;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
opacity: 0.7;
}
/* end templatemo gain */
/* start templatemo challenge */
#challenge
{
background: #F9F9F9;
border-top: 1px solid #f0f0f0;
border-bottom: 1px solid #f0f0f0;
padding: 60px 0 60px 0;
}
#challenge .col-md-3 { margin-bottom: 20px; }
#challenge h2
{
font-weight: 600;
padding: 0 0 20px 0;
}
#challenge h3
{
background: #FFF;
color: #ffa400;
font-weight: 600;
padding: 10px;
}
#challenge .info { padding-top: 60px; }
#challenge img
{
cursor: pointer;
display: inline-block;
margin-top: 60px;
margin-bottom: 10px;
position: relative;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#challenge img:hover
{
border-radius: 50%;
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9);
opacity: 0.7;
}
#challenge p { margin-bottom: 30px; }
/* end templatemo challenge */
/* start templatemo summary */
#summary
{
text-align: center;
background: #F9F9F9;
padding: 60px 0 100px 0;
}
#summary h2
{
font-weight: 600;
padding: 0 0 30px 0;
}
#summary p { margin-bottom: 60px; }
#summary img
{
cursor: pointer;
display: inline-block;
margin-top: 60px;
margin-bottom: 10px;
position: relative;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#summary img:hover
{
border-radius: 50%;
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9);
opacity: 0.7;
}
/* start templatemo plan */
#plan
{
text-align: center;
padding: 60px 0 100px 0;
}
#plan h2
{
font-weight: 600;
padding: 0 0 20px 0;
}
#plan p {margin-bottom: 10px; }
#plan .col-md-3 { padding: 4px; }
#plan .col-md-12 h1 {
font-weight: 600;
margin: 60px;
}
#plan img
{
cursor: pointer;
display: inline-block;
margin-top: 60px;
margin-bottom: 10px;
position: relative;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#plan img:hover
{
border-radius: 50%;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
opacity: 0.7;
}
/* end templatemo plan */
a { color: #ffa400; }
a:hover, a:active
{
color: #ffd485;
text-decoration: none;
}
/* start templatemo footer */
footer
{
border-top: 1px solid #404040;
background: #202020;
color: #FFF;
padding: 80px 0 40px 0;
}
footer .social_icon a
{
border: 1px solid #FFF;
border-radius: 50%;
color: #FFF;
font-size: 16px;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
text-decoration: none;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
margin: 0 4px 24px 6px;
}
footer .social_icon a:hover
{
border-color: transparent;
background: #ffa400;
}
/* end templatemo footer */
/* starttemplatemo go top */
.go-top
{
background-color: #ffa400;
border-radius: 50%;
bottom: 2em;
right: 2em;
color: #FFF;
display: none;
position: fixed;
text-decoration: none;
width: 60px;
height: 60px;
line-height: 60px;
text-align: center;
}
.go-top:hover { color: #F9F9F9; }
/* end templatemo go top */
@media only screen and (max-width: 1199px) {
.flexslider h1 { font-size: 32px; }
.flexslider h2 { font-size: 26px; }
}
/* start templatemo 768 media quires */
@media only screen and ( max-width: 768px ) {
.navbar-default .navbar-brand { margin-left: 20px; }
.navbar-default .navbar-nav { margin: 0; }
.navbar-default .navbar-collapse
{
padding-left: 20px;
padding-right: 20px;
}
.flexslider h1 { font-size: 26px; }
.flexslider h2 { font-size: 18px; }
.templatemo-slider-btn {
margin-top: 10px;
width: 180px;
height: 40px;
padding-top: 8px;
}
}
/* end templatemo 768 media quires */
/* start templatemo 680 media quires */
@media only screen and ( max-width: 680px ) {
.navbar-default .navbar-nav li a { border-bottom: 1px solid #f6f6f6; line-height: normal; height: 40px; }
/* end templatemo 680 media quires */
/* start templatemo 600 media quires */
@media only screen and ( max-width: 640px ) {
.flexslider h1 { font-size: 20px; }
.flexslider h2 { font-size: 14px; }
.templatemo-slider-btn {
width: auto;
height: auto;
padding: 10px 20px;
margin-top: 10px;
}
}
/* end templatemo 600 media quires */ | 0.177241 | 0.042543 |
.Cal__Day__root {
display: inline-block;
box-sizing: border-box;
width: 14.28571%;
list-style: none;
font-size: 16px;
text-align: center;
cursor: pointer;
user-select: none; }
.Cal__Day__root.Cal__Day__enabled.Cal__Day__highlighted, .Cal__Day__root.Cal__Day__enabled:active, .Cal__Day__root.Cal__Day__enabled:hover {
position: relative;
z-index: 1; }
.Cal__Day__root.Cal__Day__enabled.Cal__Day__highlighted:before, .Cal__Day__root.Cal__Day__enabled:active:before, .Cal__Day__root.Cal__Day__enabled:hover:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 52px;
height: 52px;
margin-top: -26px;
margin-left: -26px;
border-radius: 50%;
background-color: #EFEFEF;
z-index: -1; }
.Cal__Day__root.Cal__Day__enabled:hover:before {
opacity: 0.5; }
.Cal__Day__root.Cal__Day__enabled.Cal__Day__highlighted:before, .Cal__Day__root.Cal__Day__enabled:active:before {
opacity: 1; }
.Cal__Day__root:first-child {
position: relative; }
.Cal__Day__root.Cal__Day__today, .Cal__Day__root.Cal__Day__event {
position: relative;
z-index: 2; }
.Cal__Day__root.Cal__Day__today > span, .Cal__Day__root.Cal__Day__event > span {
color: #3d3d3d; }
.Cal__Day__root.Cal__Day__today.Cal__Day__disabled > span, .Cal__Day__root.Cal__Day__event.Cal__Day__disabled > span {
color: #AAA; }
.Cal__Day__root.Cal__Day__today:before, .Cal__Day__root.Cal__Day__event:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 52px;
height: 52px;
margin-top: -26px;
margin-left: -26px;
border-radius: 50%;
box-shadow: inset 0 0 0 1px;
z-index: -1; }
.Cal__Day__root.Cal__Day__today.Cal__Day__disabled:before, .Cal__Day__root.Cal__Day__event.Cal__Day__disabled:before {
box-shadow: inset 0 0 0 1px #BBB; }
.Cal__Day__root.Cal__Day__selected {
position: relative; }
.Cal__Day__root.Cal__Day__selected > .Cal__Day__month, .Cal__Day__root.Cal__Day__selected > .Cal__Day__year {
display: none; }
.Cal__Day__root.Cal__Day__selected:before {
display: none; }
.Cal__Day__root.Cal__Day__selected .Cal__Day__selection {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 52px;
height: 52px;
margin-top: -26px;
margin-left: -26px;
border-radius: 50%;
line-height: 56px;
z-index: 2; }
.Cal__Day__root.Cal__Day__selected .Cal__Day__selection .Cal__Day__month {
top: 9px; }
.Cal__Day__root.Cal__Day__selected .Cal__Day__selection .Cal__Day__day {
position: relative;
top: 5px;
font-weight: bold;
font-size: 18px; }
.Cal__Day__root.Cal__Day__disabled {
color: #AAA;
cursor: not-allowed; }
.Cal__Day__month, .Cal__Day__year {
position: absolute;
left: 0;
right: 0;
font-size: 12px;
line-height: 12px;
text-transform: capitalize; }
.Cal__Day__month {
top: 5px; }
.Cal__Day__year {
bottom: 5px; }
/*
* Range selection styles
*/
.Cal__Day__range.Cal__Day__selected.Cal__Day__start:after, .Cal__Day__range.Cal__Day__selected.Cal__Day__end:after {
content: '';
position: absolute;
top: 50%;
width: 50%;
height: 52px;
margin-top: -26px;
box-shadow: inset 56px 56px; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__disabled .Cal__Day__selection.Cal__Day__selection {
background-color: #EEE !important; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__disabled .Cal__Day__selection.Cal__Day__selection .Cal__Day__day, .Cal__Day__range.Cal__Day__selected.Cal__Day__disabled .Cal__Day__selection.Cal__Day__selection .Cal__Day__month {
color: #AAA;
font-weight: 300; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__start .Cal__Day__selection {
border-top-left-radius: 50%;
border-bottom-left-radius: 50%; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__start:after {
right: 0; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__start.Cal__Day__end:after {
display: none; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__betweenRange .Cal__Day__selection {
left: 0;
right: 0;
width: 100%;
margin-left: 0;
display: flex;
justify-content: center;
align-items: center;
border-radius: 0; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__betweenRange .Cal__Day__day {
top: 0;
font-size: 16px; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__betweenRange .Cal__Day__month {
display: none; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__end:after {
left: 0; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__end .Cal__Day__selection {
border-top-right-radius: 50%;
border-bottom-right-radius: 50%;
color: inherit !important;
background-color: #FFF !important;
border: 2px solid;
box-sizing: border-box; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__end .Cal__Day__selection .Cal__Day__day {
top: 4px; }
.Cal__Container__root {
position: relative;
display: table;
z-index: 1;
font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.4em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-weight: 300;
outline: none;
text-align: left; }
.Cal__Container__root.Cal__Container__landscape {
display: flex;
flex-direction: row; }
.Cal__Container__root.Cal__Container__landscape .Cal__Container__wrapper {
position: relative;
flex-grow: 1;
overflow: hidden;
z-index: 1;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px; }
.Cal__Container__listWrapper {
position: relative;
overflow: hidden;
background-color: #FFF; }
.Cal__Header__root {
position: relative;
display: flex;
align-items: center;
box-sizing: border-box;
overflow: hidden;
min-height: 98px;
padding: 20px;
line-height: 1.3;
font-weight: 400;
border-top-left-radius: 3px;
border-top-right-radius: 3px; }
.Cal__Header__root.Cal__Header__landscape {
align-items: flex-start;
min-width: 200px;
border-top-right-radius: 0;
border-bottom-left-radius: 3px; }
.Cal__Header__root.Cal__Header__landscape .Cal__Header__dateWrapper.Cal__Header__day {
flex-grow: 1;
height: 76px; }
.Cal__Header__wrapper {
display: flex;
flex-direction: column;
flex-grow: 1;
cursor: pointer; }
.Cal__Header__wrapper.Cal__Header__blank {
height: 58px;
line-height: 58px;
color: rgba(255, 255, 255, 0.5);
font-size: 18px;
cursor: default; }
.Cal__Header__dateWrapper {
position: relative;
display: block;
overflow: hidden;
color: rgba(255, 255, 255, 0.5);
transition: color 0.3s ease; }
.Cal__Header__dateWrapper.Cal__Header__active {
color: white; }
.Cal__Header__dateWrapper.Cal__Header__day {
height: 38px;
font-size: 36px;
line-height: 36px;
text-transform: capitalize; }
.Cal__Header__dateWrapper.Cal__Header__year {
height: 20px;
font-size: 18px;
line-height: 18px; }
.Cal__Header__date {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.Cal__Header__range {
display: flex;
flex-grow: 1; }
.Cal__Header__range .Cal__Header__dateWrapper {
overflow: visible; }
.Cal__Header__range .Cal__Header__wrapper:first-child:before, .Cal__Header__range .Cal__Header__wrapper:first-child:after {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 0;
height: 0;
margin-top: -50px;
margin-left: -50px;
border-top: 100px solid transparent;
border-bottom: 100px solid transparent;
border-left: 60px solid; }
.Cal__Header__range .Cal__Header__wrapper:first-child:before {
color: rgba(255, 255, 255, 0.15);
transform: translateX(1px); }
.Cal__Header__range .Cal__Header__wrapper:last-child {
margin-left: 60px; }
.Cal__Header__range .Cal__Header__wrapper .Cal__Header__date {
white-space: nowrap;
z-index: 1; }
.Cal__Today__root {
position: absolute;
top: 0;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
height: 32px;
padding: 6px;
box-sizing: border-box;
transform: translate3d(0, -100%, 0);
font-weight: 500;
line-height: 0;
z-index: 10;
cursor: pointer;
transition: transform 0.3s ease;
transition-delay: 0.3s; }
.Cal__Today__root.Cal__Today__show {
transform: translate3d(0, 0, 0);
transition-delay: 0s; }
.Cal__Today__root.Cal__Today__show .Cal__Today__chevron {
transition: transform 0.3s ease; }
.Cal__Today__root .Cal__Today__chevron {
position: absolute;
top: 50%;
margin-top: -6px;
margin-left: 5px;
transform: rotate(270deg);
transition: transform 0.3s ease; }
.Cal__Today__root.Cal__Today__chevronUp .Cal__Today__chevron {
transform: rotate(180deg); }
.Cal__Today__root.Cal__Today__chevronDown .Cal__Today__chevron {
transform: rotate(360deg); }
.Cal__MonthList__root {
width: 100% !important;
background-color: #FFF;
-webkit-overflow-scrolling: touch; }
.Cal__MonthList__root.Cal__MonthList__scrolling > div {
pointer-events: none; }
.Cal__MonthList__root.Cal__MonthList__scrolling label {
opacity: 1; }
.Cal__Weekdays__root {
position: relative;
z-index: 5;
display: flex;
padding: 0;
margin: 0;
list-style: none;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.04); }
.Cal__Weekdays__day {
padding: 15px 0;
flex-basis: 14.28571%;
flex-grow: 1;
font-weight: 500;
text-align: center; }
.Cal__Years__root {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
background-color: #F9F9F9; }
.Cal__Years__root:before, .Cal__Years__root:after {
content: '';
position: absolute;
left: 0;
right: 0;
height: 50px;
pointer-events: none;
z-index: 1; }
.Cal__Years__root:before {
top: 0;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%); }
.Cal__Years__root:after {
bottom: 0;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%); }
.Cal__Years__list {
box-sizing: border-box; }
.Cal__Years__list.Cal__Years__center {
display: flex;
align-items: center;
justify-content: center; }
.Cal__Years__year {
display: flex;
padding: 0 20px;
height: 100%;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 500;
text-align: center;
cursor: pointer;
-webkit-user-select: none;
box-sizing: border-box; }
.Cal__Years__year.Cal__Years__withMonths {
border-bottom: 1px solid #E9E9E9; }
.Cal__Years__year.Cal__Years__withMonths label {
height: 88px;
padding-top: 12px;
box-sizing: border-box; }
.Cal__Years__year label {
flex-basis: 42%; }
.Cal__Years__year label span {
flex-shrink: 0;
color: #333; }
.Cal__Years__year ol {
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0;
font-size: 14px; }
.Cal__Years__year ol li {
display: flex;
width: 44px;
height: 44px;
flex-shrink: 0;
align-items: center;
justify-content: center;
list-style: none;
border-radius: 50%;
box-sizing: border-box;
color: #444;
font-weight: 400;
text-transform: capitalize; }
.Cal__Years__year ol li.Cal__Years__currentMonth {
border: 1px solid; }
.Cal__Years__year ol li.Cal__Years__selected {
position: relative;
z-index: 1;
background-color: blue;
color: #FFF !important;
border: 0; }
.Cal__Years__year ol li.Cal__Years__disabled {
cursor: not-allowed;
color: #AAA; }
.Cal__Years__year ol li.Cal__Years__disabled:hover {
background-color: inherit; }
.Cal__Years__year ol li:hover {
background-color: #EFEFEF; }
.Cal__Years__year:hover label > span, .Cal__Years__year.Cal__Years__active label > span {
color: inherit; }
.Cal__Years__year:hover, .Cal__Years__year.Cal__Years__active {
position: relative;
z-index: 2; }
.Cal__Years__year.Cal__Years__active {
font-size: 32px; }
.Cal__Years__year.Cal__Years__currentYear {
position: relative; }
.Cal__Years__year.Cal__Years__currentYear label > span {
min-width: 50px;
padding-bottom: 5px;
border-bottom: 3px solid; }
.Cal__Years__year.Cal__Years__currentYear.Cal__Years__active label > span {
min-width: 85px; }
.Cal__Years__year.Cal__Years__first {
padding-top: 40px; }
.Cal__Years__year.Cal__Years__last {
padding-bottom: 40px; }
.Cal__Animation__enter {
opacity: 0;
transform: translate3d(0, -100%, 0);
transition: 0.25s ease; }
.Cal__Animation__enter.Cal__Animation__enterActive {
opacity: 1;
transform: translate3d(0, 0, 0); }
.Cal__Animation__leave {
transform: translate3d(0, 0, 0);
transition: 0.25s ease; }
.Cal__Animation__leave.Cal__Animation__leaveActive {
opacity: 0;
transform: translate3d(0, 100%, 0); }
.Cal__Slider__root, .Cal__Slider__slide {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.Cal__Slider__root {
overflow: hidden; }
.Cal__Slider__slide {
padding: 20px 65px; }
.Cal__Slider__slide:first-child {
padding-left: 20px; }
.Cal__Slider__wrapper {
height: 100%;
transition: transform 0.3s ease; }
.Cal__Slider__arrow {
position: absolute;
top: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 100%;
opacity: 0.7;
cursor: pointer;
border-left: 1px solid rgba(255, 255, 255, 0.1); }
.Cal__Slider__arrow svg {
width: 15px; }
.Cal__Slider__arrow:hover {
opacity: 1; }
.Cal__Slider__arrowRight {
right: 0; }
.Cal__Slider__arrowLeft {
left: 0;
transform: scaleX(-1); }
.Cal__transition__enter {
opacity: 0; }
.Cal__transition__enterActive {
opacity: 1;
transition: opacity 0.3s ease; }
.Cal__transition__leave {
opacity: 1; }
.Cal__transition__leaveActive {
opacity: 0;
transition: opacity 0.3s ease; }
.Cal__Month__rows {
position: relative;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%); }
.Cal__Month__row {
padding: 0;
margin: 0; }
.Cal__Month__row:first-child {
text-align: right; }
.Cal__Month__row:first-child li {
background-color: #FFF;
box-shadow: 0 -1px 0 #E9E9E9; }
.Cal__Month__row:nth-child(2) {
box-shadow: 0 -1px 0 #E9E9E9; }
.Cal__Month__row.Cal__Month__partial:first-child li:first-child {
box-shadow: 0px -1px 0 #E9E9E9, inset 1px 0 0 #E9E9E9; }
.Cal__Month__row.Cal__Month__partial:last-of-type li {
position: relative;
z-index: 1; }
.Cal__Month__label {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0;
font-size: 30px;
font-weight: 500;
z-index: 3;
pointer-events: none;
background-color: rgba(255, 255, 255, 0.6);
opacity: 0;
transition: opacity 0.3s ease; }
.Cal__Month__label > span {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 56px;
display: flex;
align-items: center;
justify-content: center;
text-transform: capitalize; }
.Cal__Month__label.Cal__Month__partialFirstRow {
top: 56px; } | styles.css | .Cal__Day__root {
display: inline-block;
box-sizing: border-box;
width: 14.28571%;
list-style: none;
font-size: 16px;
text-align: center;
cursor: pointer;
user-select: none; }
.Cal__Day__root.Cal__Day__enabled.Cal__Day__highlighted, .Cal__Day__root.Cal__Day__enabled:active, .Cal__Day__root.Cal__Day__enabled:hover {
position: relative;
z-index: 1; }
.Cal__Day__root.Cal__Day__enabled.Cal__Day__highlighted:before, .Cal__Day__root.Cal__Day__enabled:active:before, .Cal__Day__root.Cal__Day__enabled:hover:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 52px;
height: 52px;
margin-top: -26px;
margin-left: -26px;
border-radius: 50%;
background-color: #EFEFEF;
z-index: -1; }
.Cal__Day__root.Cal__Day__enabled:hover:before {
opacity: 0.5; }
.Cal__Day__root.Cal__Day__enabled.Cal__Day__highlighted:before, .Cal__Day__root.Cal__Day__enabled:active:before {
opacity: 1; }
.Cal__Day__root:first-child {
position: relative; }
.Cal__Day__root.Cal__Day__today, .Cal__Day__root.Cal__Day__event {
position: relative;
z-index: 2; }
.Cal__Day__root.Cal__Day__today > span, .Cal__Day__root.Cal__Day__event > span {
color: #3d3d3d; }
.Cal__Day__root.Cal__Day__today.Cal__Day__disabled > span, .Cal__Day__root.Cal__Day__event.Cal__Day__disabled > span {
color: #AAA; }
.Cal__Day__root.Cal__Day__today:before, .Cal__Day__root.Cal__Day__event:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 52px;
height: 52px;
margin-top: -26px;
margin-left: -26px;
border-radius: 50%;
box-shadow: inset 0 0 0 1px;
z-index: -1; }
.Cal__Day__root.Cal__Day__today.Cal__Day__disabled:before, .Cal__Day__root.Cal__Day__event.Cal__Day__disabled:before {
box-shadow: inset 0 0 0 1px #BBB; }
.Cal__Day__root.Cal__Day__selected {
position: relative; }
.Cal__Day__root.Cal__Day__selected > .Cal__Day__month, .Cal__Day__root.Cal__Day__selected > .Cal__Day__year {
display: none; }
.Cal__Day__root.Cal__Day__selected:before {
display: none; }
.Cal__Day__root.Cal__Day__selected .Cal__Day__selection {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 52px;
height: 52px;
margin-top: -26px;
margin-left: -26px;
border-radius: 50%;
line-height: 56px;
z-index: 2; }
.Cal__Day__root.Cal__Day__selected .Cal__Day__selection .Cal__Day__month {
top: 9px; }
.Cal__Day__root.Cal__Day__selected .Cal__Day__selection .Cal__Day__day {
position: relative;
top: 5px;
font-weight: bold;
font-size: 18px; }
.Cal__Day__root.Cal__Day__disabled {
color: #AAA;
cursor: not-allowed; }
.Cal__Day__month, .Cal__Day__year {
position: absolute;
left: 0;
right: 0;
font-size: 12px;
line-height: 12px;
text-transform: capitalize; }
.Cal__Day__month {
top: 5px; }
.Cal__Day__year {
bottom: 5px; }
/*
* Range selection styles
*/
.Cal__Day__range.Cal__Day__selected.Cal__Day__start:after, .Cal__Day__range.Cal__Day__selected.Cal__Day__end:after {
content: '';
position: absolute;
top: 50%;
width: 50%;
height: 52px;
margin-top: -26px;
box-shadow: inset 56px 56px; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__disabled .Cal__Day__selection.Cal__Day__selection {
background-color: #EEE !important; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__disabled .Cal__Day__selection.Cal__Day__selection .Cal__Day__day, .Cal__Day__range.Cal__Day__selected.Cal__Day__disabled .Cal__Day__selection.Cal__Day__selection .Cal__Day__month {
color: #AAA;
font-weight: 300; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__start .Cal__Day__selection {
border-top-left-radius: 50%;
border-bottom-left-radius: 50%; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__start:after {
right: 0; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__start.Cal__Day__end:after {
display: none; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__betweenRange .Cal__Day__selection {
left: 0;
right: 0;
width: 100%;
margin-left: 0;
display: flex;
justify-content: center;
align-items: center;
border-radius: 0; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__betweenRange .Cal__Day__day {
top: 0;
font-size: 16px; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__betweenRange .Cal__Day__month {
display: none; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__end:after {
left: 0; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__end .Cal__Day__selection {
border-top-right-radius: 50%;
border-bottom-right-radius: 50%;
color: inherit !important;
background-color: #FFF !important;
border: 2px solid;
box-sizing: border-box; }
.Cal__Day__range.Cal__Day__selected.Cal__Day__end .Cal__Day__selection .Cal__Day__day {
top: 4px; }
.Cal__Container__root {
position: relative;
display: table;
z-index: 1;
font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.4em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-weight: 300;
outline: none;
text-align: left; }
.Cal__Container__root.Cal__Container__landscape {
display: flex;
flex-direction: row; }
.Cal__Container__root.Cal__Container__landscape .Cal__Container__wrapper {
position: relative;
flex-grow: 1;
overflow: hidden;
z-index: 1;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px; }
.Cal__Container__listWrapper {
position: relative;
overflow: hidden;
background-color: #FFF; }
.Cal__Header__root {
position: relative;
display: flex;
align-items: center;
box-sizing: border-box;
overflow: hidden;
min-height: 98px;
padding: 20px;
line-height: 1.3;
font-weight: 400;
border-top-left-radius: 3px;
border-top-right-radius: 3px; }
.Cal__Header__root.Cal__Header__landscape {
align-items: flex-start;
min-width: 200px;
border-top-right-radius: 0;
border-bottom-left-radius: 3px; }
.Cal__Header__root.Cal__Header__landscape .Cal__Header__dateWrapper.Cal__Header__day {
flex-grow: 1;
height: 76px; }
.Cal__Header__wrapper {
display: flex;
flex-direction: column;
flex-grow: 1;
cursor: pointer; }
.Cal__Header__wrapper.Cal__Header__blank {
height: 58px;
line-height: 58px;
color: rgba(255, 255, 255, 0.5);
font-size: 18px;
cursor: default; }
.Cal__Header__dateWrapper {
position: relative;
display: block;
overflow: hidden;
color: rgba(255, 255, 255, 0.5);
transition: color 0.3s ease; }
.Cal__Header__dateWrapper.Cal__Header__active {
color: white; }
.Cal__Header__dateWrapper.Cal__Header__day {
height: 38px;
font-size: 36px;
line-height: 36px;
text-transform: capitalize; }
.Cal__Header__dateWrapper.Cal__Header__year {
height: 20px;
font-size: 18px;
line-height: 18px; }
.Cal__Header__date {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.Cal__Header__range {
display: flex;
flex-grow: 1; }
.Cal__Header__range .Cal__Header__dateWrapper {
overflow: visible; }
.Cal__Header__range .Cal__Header__wrapper:first-child:before, .Cal__Header__range .Cal__Header__wrapper:first-child:after {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 0;
height: 0;
margin-top: -50px;
margin-left: -50px;
border-top: 100px solid transparent;
border-bottom: 100px solid transparent;
border-left: 60px solid; }
.Cal__Header__range .Cal__Header__wrapper:first-child:before {
color: rgba(255, 255, 255, 0.15);
transform: translateX(1px); }
.Cal__Header__range .Cal__Header__wrapper:last-child {
margin-left: 60px; }
.Cal__Header__range .Cal__Header__wrapper .Cal__Header__date {
white-space: nowrap;
z-index: 1; }
.Cal__Today__root {
position: absolute;
top: 0;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
height: 32px;
padding: 6px;
box-sizing: border-box;
transform: translate3d(0, -100%, 0);
font-weight: 500;
line-height: 0;
z-index: 10;
cursor: pointer;
transition: transform 0.3s ease;
transition-delay: 0.3s; }
.Cal__Today__root.Cal__Today__show {
transform: translate3d(0, 0, 0);
transition-delay: 0s; }
.Cal__Today__root.Cal__Today__show .Cal__Today__chevron {
transition: transform 0.3s ease; }
.Cal__Today__root .Cal__Today__chevron {
position: absolute;
top: 50%;
margin-top: -6px;
margin-left: 5px;
transform: rotate(270deg);
transition: transform 0.3s ease; }
.Cal__Today__root.Cal__Today__chevronUp .Cal__Today__chevron {
transform: rotate(180deg); }
.Cal__Today__root.Cal__Today__chevronDown .Cal__Today__chevron {
transform: rotate(360deg); }
.Cal__MonthList__root {
width: 100% !important;
background-color: #FFF;
-webkit-overflow-scrolling: touch; }
.Cal__MonthList__root.Cal__MonthList__scrolling > div {
pointer-events: none; }
.Cal__MonthList__root.Cal__MonthList__scrolling label {
opacity: 1; }
.Cal__Weekdays__root {
position: relative;
z-index: 5;
display: flex;
padding: 0;
margin: 0;
list-style: none;
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.04); }
.Cal__Weekdays__day {
padding: 15px 0;
flex-basis: 14.28571%;
flex-grow: 1;
font-weight: 500;
text-align: center; }
.Cal__Years__root {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
background-color: #F9F9F9; }
.Cal__Years__root:before, .Cal__Years__root:after {
content: '';
position: absolute;
left: 0;
right: 0;
height: 50px;
pointer-events: none;
z-index: 1; }
.Cal__Years__root:before {
top: 0;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%); }
.Cal__Years__root:after {
bottom: 0;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%); }
.Cal__Years__list {
box-sizing: border-box; }
.Cal__Years__list.Cal__Years__center {
display: flex;
align-items: center;
justify-content: center; }
.Cal__Years__year {
display: flex;
padding: 0 20px;
height: 100%;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 500;
text-align: center;
cursor: pointer;
-webkit-user-select: none;
box-sizing: border-box; }
.Cal__Years__year.Cal__Years__withMonths {
border-bottom: 1px solid #E9E9E9; }
.Cal__Years__year.Cal__Years__withMonths label {
height: 88px;
padding-top: 12px;
box-sizing: border-box; }
.Cal__Years__year label {
flex-basis: 42%; }
.Cal__Years__year label span {
flex-shrink: 0;
color: #333; }
.Cal__Years__year ol {
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0;
font-size: 14px; }
.Cal__Years__year ol li {
display: flex;
width: 44px;
height: 44px;
flex-shrink: 0;
align-items: center;
justify-content: center;
list-style: none;
border-radius: 50%;
box-sizing: border-box;
color: #444;
font-weight: 400;
text-transform: capitalize; }
.Cal__Years__year ol li.Cal__Years__currentMonth {
border: 1px solid; }
.Cal__Years__year ol li.Cal__Years__selected {
position: relative;
z-index: 1;
background-color: blue;
color: #FFF !important;
border: 0; }
.Cal__Years__year ol li.Cal__Years__disabled {
cursor: not-allowed;
color: #AAA; }
.Cal__Years__year ol li.Cal__Years__disabled:hover {
background-color: inherit; }
.Cal__Years__year ol li:hover {
background-color: #EFEFEF; }
.Cal__Years__year:hover label > span, .Cal__Years__year.Cal__Years__active label > span {
color: inherit; }
.Cal__Years__year:hover, .Cal__Years__year.Cal__Years__active {
position: relative;
z-index: 2; }
.Cal__Years__year.Cal__Years__active {
font-size: 32px; }
.Cal__Years__year.Cal__Years__currentYear {
position: relative; }
.Cal__Years__year.Cal__Years__currentYear label > span {
min-width: 50px;
padding-bottom: 5px;
border-bottom: 3px solid; }
.Cal__Years__year.Cal__Years__currentYear.Cal__Years__active label > span {
min-width: 85px; }
.Cal__Years__year.Cal__Years__first {
padding-top: 40px; }
.Cal__Years__year.Cal__Years__last {
padding-bottom: 40px; }
.Cal__Animation__enter {
opacity: 0;
transform: translate3d(0, -100%, 0);
transition: 0.25s ease; }
.Cal__Animation__enter.Cal__Animation__enterActive {
opacity: 1;
transform: translate3d(0, 0, 0); }
.Cal__Animation__leave {
transform: translate3d(0, 0, 0);
transition: 0.25s ease; }
.Cal__Animation__leave.Cal__Animation__leaveActive {
opacity: 0;
transform: translate3d(0, 100%, 0); }
.Cal__Slider__root, .Cal__Slider__slide {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.Cal__Slider__root {
overflow: hidden; }
.Cal__Slider__slide {
padding: 20px 65px; }
.Cal__Slider__slide:first-child {
padding-left: 20px; }
.Cal__Slider__wrapper {
height: 100%;
transition: transform 0.3s ease; }
.Cal__Slider__arrow {
position: absolute;
top: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 100%;
opacity: 0.7;
cursor: pointer;
border-left: 1px solid rgba(255, 255, 255, 0.1); }
.Cal__Slider__arrow svg {
width: 15px; }
.Cal__Slider__arrow:hover {
opacity: 1; }
.Cal__Slider__arrowRight {
right: 0; }
.Cal__Slider__arrowLeft {
left: 0;
transform: scaleX(-1); }
.Cal__transition__enter {
opacity: 0; }
.Cal__transition__enterActive {
opacity: 1;
transition: opacity 0.3s ease; }
.Cal__transition__leave {
opacity: 1; }
.Cal__transition__leaveActive {
opacity: 0;
transition: opacity 0.3s ease; }
.Cal__Month__rows {
position: relative;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%); }
.Cal__Month__row {
padding: 0;
margin: 0; }
.Cal__Month__row:first-child {
text-align: right; }
.Cal__Month__row:first-child li {
background-color: #FFF;
box-shadow: 0 -1px 0 #E9E9E9; }
.Cal__Month__row:nth-child(2) {
box-shadow: 0 -1px 0 #E9E9E9; }
.Cal__Month__row.Cal__Month__partial:first-child li:first-child {
box-shadow: 0px -1px 0 #E9E9E9, inset 1px 0 0 #E9E9E9; }
.Cal__Month__row.Cal__Month__partial:last-of-type li {
position: relative;
z-index: 1; }
.Cal__Month__label {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0;
font-size: 30px;
font-weight: 500;
z-index: 3;
pointer-events: none;
background-color: rgba(255, 255, 255, 0.6);
opacity: 0;
transition: opacity 0.3s ease; }
.Cal__Month__label > span {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 56px;
display: flex;
align-items: center;
justify-content: center;
text-transform: capitalize; }
.Cal__Month__label.Cal__Month__partialFirstRow {
top: 56px; } | 0.597256 | 0.059129 |
* {
margin: 0px;
padding: 0px;
list-style: none;
text-decoration: none;
color: black;
}
html {
background-color: snow;
}
img {
object-fit: contain;
}
/*헤더 시작*/
header {
display: flex;
flex-direction: column;
}
/*로그인 들어있는 div*/
.top {
display: flex;
background-color: coral;
justify-content: flex-end;
font-size: 13px;
}
.top a {
color: white;
outline: none;
}
.top li {
padding: 0px 20px;
}
/*로고랑 검색바 있는 div*/
.logo_search {
display: flex;
justify-content: center;
margin-top: 30px;
}
/*로고 시작*/
.logo {
display: flex;
}
.logo_search .logo i {
color: dimgray;
position: relative;
bottom: 5px;
}
/*검색바 시작*/
#search {
width: 400px;
height: 30px;
display: flex;
}
#search i {
position: relative;
left: -25px;
color: coral;
}
#search input {
border: none;
border-bottom: 5px solid coral;
width: 100%;
height: 100%;
font-size: 20px;
outline: none;
display: flex;
}
#search button {
position: relative;
right: 25px;
bottom: 3px;
background: transparent;
border: 0px;
outline: none;
padding: 0;
overflow: visible;
text-decoration-style: none;
}
#search button i {
position: relative;
left: 0px;
bottom: 3px;
}
#search button:hover {
cursor: pointer;
}
/*카테고리 div*/
.category {
display: flex;
justify-content: center;
margin-top: 50px;
}
.category ul {
display: flex;
border: 1px solid dimgray;
padding: 10px;
}
.category ul li {
width: 107px;
height: 20px;
display: flex;
justify-content: center;
margin-right: 10px;
color: dimgray;
}
/* 이벤트 베너 + 아이템들 */
/*GLOBALS*/
a{text-decoration:none; color:#666;}
a:hover{color:#1bc1a3;}
body, hmtl{background: #ecf0f1; font-family: 'Anton', sans-serif;}
#wrapper{
width:1070px;
margin:50px auto;
height:400px;
position:relative;
color:#fff;
text-shadow:rgba(0,0,0,0.1) 2px 2px 0px;
}
#slider-wrap{
width:1070px;
height:400px;
position:relative;
overflow:hidden;
}
#slider-wrap ul#slider{
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
}
#slider-wrap ul#slider li{
float:left;
position:relative;
width:1070px;
height:400px;
}
#slider-wrap ul#slider li > div{
position:absolute;
top:20px;
left:35px;
}
#slider-wrap ul#slider li > div h3{
font-size:36px;
text-transform:uppercase;
}
#slider-wrap ul#slider li > div span{
font-family: Neucha, Arial, sans serif;
font-size:21px;
}
#slider-wrap ul#slider li img{
display:block;
width:100%;
height: 100%;
cursor: pointer;
}
/*btns.*/
.btns{
position:absolute;
width:50px;
height:60px;
top:50%;
margin-top:-25px;
line-height:57px;
text-align:center;
cursor:pointer;
background:rgba(0,0,0,0.1);
z-index:100;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
-webkit-transition: all 0.1s ease;
-moz-transition: all 0.1s ease;
-o-transition: all 0.1s ease;
-ms-transition: all 0.1s ease;
transition: all 0.1s ease;
}
.btns:hover{
background:rgba(0,0,0,0.3);
}
#next{right:-50px; border-radius:7px 0px 0px 7px;}
#previous{left:-50px; border-radius:0px 7px 7px 0px;}
#counter{
top: 30px;
right:35px;
width:auto;
position:absolute;
}
#next i{
margin-top: 23px;
}
#previous i{
margin-top: 23px;
}
#slider-wrap.active #next{right:0px;}
#slider-wrap.active #previous{left:0px;}
/*bar*/
#pagination-wrap{
min-width:20px;
margin-top:350px;
margin-left: auto;
margin-right: auto;
height:15px;
position:relative;
text-align:center;
}
#pagination-wrap ul {
width:100%;
}
#pagination-wrap ul li{
margin: 0 4px;
display: inline-block;
width:5px;
height:5px;
border-radius:50%;
background:#fff;
opacity:0.5;
position:relative;
top:0;
}
#pagination-wrap ul li.active{
width:12px;
height:12px;
top:3px;
opacity:1;
box-shadow:rgba(0,0,0,0.1) 1px 1px 0px;
}
/*Header*/
h1, h2{text-shadow:none; text-align:center;}
h1{ color: #666; text-transform:uppercase; font-size:36px;}
h2{ color: #7f8c8d; font-family: Neucha, Arial, sans serif; font-size:18px; margin-bottom:30px;}
/*ANIMATION*/
#slider-wrap ul, #pagination-wrap ul li{
-webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-o-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);
transition: all 0.3s cubic-bezier(1,.01,.32,1);
}
/*Header*/
h1, h2{text-shadow:none; text-align:center;}
h1{ color: #666; text-transform:uppercase; font-size:36px;}
h2{ color: #7f8c8d; font-family: Neucha, Arial, sans serif; font-size:18px; margin-bottom:30px;}
/*ANIMATION*/
#slider-wrap ul, #pagination-wrap ul li{
-webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-o-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);
transition: all 0.3s cubic-bezier(1,.01,.32,1);
}
/*아이템들 div*/
.display2 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 50px;
}
.display2 .items {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 1100px;
}
p {
font-size: 20px;
}
.items .item_div {
width: 250px;
height: 300px;
}
.items .text_div {
width: 250px;
height: 30px;
text-align: center;
}
.items a {
display: flex;
width: 250px;
height: 330px;
justify-content: center;
flex-wrap: wrap;
margin-top: 15px;
margin-left: 20px;
border: 0px;
}
.items img {
width: 250px;
height: 300px;
border: 1px solid gainsboro;
}
/*footer*/
.others {
display: flex;
justify-content: center;
justify-content: space-around;
align-items: center;
margin-top: 50px;
height: 200px;
border-top: 1px solid black;
}
/*너비 줄어들면 어느순간 고정*/
@media screen and (max-width: 1100px) {
html {
width: 1100px;
}
} | public/css/index.css | * {
margin: 0px;
padding: 0px;
list-style: none;
text-decoration: none;
color: black;
}
html {
background-color: snow;
}
img {
object-fit: contain;
}
/*헤더 시작*/
header {
display: flex;
flex-direction: column;
}
/*로그인 들어있는 div*/
.top {
display: flex;
background-color: coral;
justify-content: flex-end;
font-size: 13px;
}
.top a {
color: white;
outline: none;
}
.top li {
padding: 0px 20px;
}
/*로고랑 검색바 있는 div*/
.logo_search {
display: flex;
justify-content: center;
margin-top: 30px;
}
/*로고 시작*/
.logo {
display: flex;
}
.logo_search .logo i {
color: dimgray;
position: relative;
bottom: 5px;
}
/*검색바 시작*/
#search {
width: 400px;
height: 30px;
display: flex;
}
#search i {
position: relative;
left: -25px;
color: coral;
}
#search input {
border: none;
border-bottom: 5px solid coral;
width: 100%;
height: 100%;
font-size: 20px;
outline: none;
display: flex;
}
#search button {
position: relative;
right: 25px;
bottom: 3px;
background: transparent;
border: 0px;
outline: none;
padding: 0;
overflow: visible;
text-decoration-style: none;
}
#search button i {
position: relative;
left: 0px;
bottom: 3px;
}
#search button:hover {
cursor: pointer;
}
/*카테고리 div*/
.category {
display: flex;
justify-content: center;
margin-top: 50px;
}
.category ul {
display: flex;
border: 1px solid dimgray;
padding: 10px;
}
.category ul li {
width: 107px;
height: 20px;
display: flex;
justify-content: center;
margin-right: 10px;
color: dimgray;
}
/* 이벤트 베너 + 아이템들 */
/*GLOBALS*/
a{text-decoration:none; color:#666;}
a:hover{color:#1bc1a3;}
body, hmtl{background: #ecf0f1; font-family: 'Anton', sans-serif;}
#wrapper{
width:1070px;
margin:50px auto;
height:400px;
position:relative;
color:#fff;
text-shadow:rgba(0,0,0,0.1) 2px 2px 0px;
}
#slider-wrap{
width:1070px;
height:400px;
position:relative;
overflow:hidden;
}
#slider-wrap ul#slider{
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
}
#slider-wrap ul#slider li{
float:left;
position:relative;
width:1070px;
height:400px;
}
#slider-wrap ul#slider li > div{
position:absolute;
top:20px;
left:35px;
}
#slider-wrap ul#slider li > div h3{
font-size:36px;
text-transform:uppercase;
}
#slider-wrap ul#slider li > div span{
font-family: Neucha, Arial, sans serif;
font-size:21px;
}
#slider-wrap ul#slider li img{
display:block;
width:100%;
height: 100%;
cursor: pointer;
}
/*btns.*/
.btns{
position:absolute;
width:50px;
height:60px;
top:50%;
margin-top:-25px;
line-height:57px;
text-align:center;
cursor:pointer;
background:rgba(0,0,0,0.1);
z-index:100;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
-webkit-transition: all 0.1s ease;
-moz-transition: all 0.1s ease;
-o-transition: all 0.1s ease;
-ms-transition: all 0.1s ease;
transition: all 0.1s ease;
}
.btns:hover{
background:rgba(0,0,0,0.3);
}
#next{right:-50px; border-radius:7px 0px 0px 7px;}
#previous{left:-50px; border-radius:0px 7px 7px 0px;}
#counter{
top: 30px;
right:35px;
width:auto;
position:absolute;
}
#next i{
margin-top: 23px;
}
#previous i{
margin-top: 23px;
}
#slider-wrap.active #next{right:0px;}
#slider-wrap.active #previous{left:0px;}
/*bar*/
#pagination-wrap{
min-width:20px;
margin-top:350px;
margin-left: auto;
margin-right: auto;
height:15px;
position:relative;
text-align:center;
}
#pagination-wrap ul {
width:100%;
}
#pagination-wrap ul li{
margin: 0 4px;
display: inline-block;
width:5px;
height:5px;
border-radius:50%;
background:#fff;
opacity:0.5;
position:relative;
top:0;
}
#pagination-wrap ul li.active{
width:12px;
height:12px;
top:3px;
opacity:1;
box-shadow:rgba(0,0,0,0.1) 1px 1px 0px;
}
/*Header*/
h1, h2{text-shadow:none; text-align:center;}
h1{ color: #666; text-transform:uppercase; font-size:36px;}
h2{ color: #7f8c8d; font-family: Neucha, Arial, sans serif; font-size:18px; margin-bottom:30px;}
/*ANIMATION*/
#slider-wrap ul, #pagination-wrap ul li{
-webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-o-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);
transition: all 0.3s cubic-bezier(1,.01,.32,1);
}
/*Header*/
h1, h2{text-shadow:none; text-align:center;}
h1{ color: #666; text-transform:uppercase; font-size:36px;}
h2{ color: #7f8c8d; font-family: Neucha, Arial, sans serif; font-size:18px; margin-bottom:30px;}
/*ANIMATION*/
#slider-wrap ul, #pagination-wrap ul li{
-webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-o-transition: all 0.3s cubic-bezier(1,.01,.32,1);
-ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);
transition: all 0.3s cubic-bezier(1,.01,.32,1);
}
/*아이템들 div*/
.display2 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 50px;
}
.display2 .items {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 1100px;
}
p {
font-size: 20px;
}
.items .item_div {
width: 250px;
height: 300px;
}
.items .text_div {
width: 250px;
height: 30px;
text-align: center;
}
.items a {
display: flex;
width: 250px;
height: 330px;
justify-content: center;
flex-wrap: wrap;
margin-top: 15px;
margin-left: 20px;
border: 0px;
}
.items img {
width: 250px;
height: 300px;
border: 1px solid gainsboro;
}
/*footer*/
.others {
display: flex;
justify-content: center;
justify-content: space-around;
align-items: center;
margin-top: 50px;
height: 200px;
border-top: 1px solid black;
}
/*너비 줄어들면 어느순간 고정*/
@media screen and (max-width: 1100px) {
html {
width: 1100px;
}
} | 0.210523 | 0.080466 |
body,
html {
min-height: 100%;
height: 100%;
margin: 0;
padding: 0; }
body {
background-color: #fff;
color: #555;
font: 400 14px Arial, Helvetica, sans-serif; }
a img {
border-width: 0; }
p code,
li code {
font-weight: 700;
color: #000; }
pre code {
background: transparent; }
header,
nav,
section,
article,
aside,
footer {
display: block; }
code,
em {
font-family: "Roboto Mono", "Ubuntu Mono", "Consolas", "Monaco", monospace; }
.TK-Hat {
padding-left: 15px;
padding-right: 15px;
border-bottom: 1px solid #eff0f1;
color: #4d4f52;
background: #ffffff;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999; }
.TK-Hat::after {
content: "";
clear: both;
display: block; }
.TK-Hat *,
.TK-Hat:after,
.TK-Hat:before {
box-sizing: border-box; }
.TK-Hat-Brand {
float: left;
width: 150px;
margin: 0; }
.TK-PRGS-Logo {
display: block;
outline: none !important;
text-decoration: none !important;
transition: color .1s linear, background .1s linear, opacity .1s linear; }
.TK-PRGS-Logo:focus,
.TK-PRGS-Logo:hover {
opacity: .75; }
.TK-PRGS-Logo svg {
position: relative;
display: inline-block;
vertical-align: middle; }
@media only screen and (max-width: 1100px) and (min-width: 880px) {
.TK-Hat-Brand {
width: 120px;
min-width: 120px; } }
@media only screen and (max-width: 880px) {
.TK-Hat-Brand {
width: 100px;
min-width: 100px; } }
/* Header */
#page-header {
width: 100%;
height: 77px;
box-sizing: border-box;
font-size: 12px;
top: 41px;
left: 0;
z-index: 100;
position: fixed;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
align-items: center; }
/* adjust anchors for fixed header*/
:target:before {
content: "";
display: block;
height: 125px;
margin: -125px 0 0; }
#page-header:after {
display: block;
content: "";
clear: both; }
#page-header a {
text-decoration: none; }
#page-edit-link {
transition: width .2s linear .3s;
position: absolute;
z-index: 10;
right: 36px;
top: 70px;
width: 26px;
height: 17px;
margin: 0;
padding: 9px 10px 10px 0;
text-decoration: none;
text-align: center;
border-radius: 0;
background-color: #fff;
color: #787878;
white-space: nowrap;
overflow: hidden;
border: 1px solid #e8ebef;
border-radius: 20px; }
#page-edit-link span {
padding: 0 8px 0 10px; }
#page-edit-link:hover {
transition: width .2s linear .3s;
width: 130px;
color: #000; }
#logo-bar {
-webkit-flex: 1;
flex: 1;
margin-left: 15px; }
.logo {
width: 262px;
max-width: 100%; }
.nav-buttons {
float: right;
padding-right: 15px;
padding-left: 15px; }
#page-header a.btn {
margin-left: .3em; }
/* Topic navigation */
#page-nav {
position: fixed;
top: 119px;
bottom: 0;
left: 0;
width: 18%;
min-width: 290px;
overflow: auto;
background: #f3f5f7;
border-right: 1px solid #e8ebef;
z-index: 10;
-webkit-overflow-scrolling: touch;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
#page-nav .k-item > .k-group {
/* simplifies scroll positioning */
position: static; }
#page-nav .new-navigation-item,
#page-nav .k-state-selected .new-navigation-item {
float: left;
font-size: 10px;
font-weight: bold;
margin: 12px 10px 12px 0;
padding: 0px 4px;
border-radius: 2px;
background-color: #00b312;
color: #ffffff; }
#page-nav .k-state-selected .new-navigation-item {
color: #00b312;
background-color: #ffffff; }
/* Table of contents */
#markdown-toc {
border-bottom: 1px solid #ebecee;
position: fixed;
background-color: #fff;
top: 118px;
z-index: 5;
right: 0;
font-size: 12px;
padding-left: 5.8em;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box; }
#markdown-toc ul {
margin: 0;
padding: 0;
list-style: none; }
#markdown-toc > ul > li {
display: inline-block;
position: relative; }
#markdown-toc li > ul {
position: absolute;
max-height: 400px;
width: 500px;
overflow: auto;
background: #fff;
box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
padding: 1em 0; }
#markdown-toc a {
padding: 0 14px;
text-decoration: none;
line-height: 1.8em; }
#markdown-toc a:hover {
text-decoration: underline; }
#markdown-toc code,
#markdown-toc em {
display: none; }
#markdown-toc .section > a {
line-height: 50px;
font-size: 1.1em;
font-weight: bold;
display: inline-block;
padding-right: 30px;
background: transparent url(../images/arrow.png) 90% 50% no-repeat; }
#markdown-toc .section > a:hover {
background-color: #f5f7f8;
text-decoration: none; }
#markdown-toc .section > a {
color: #e50870; }
/* Article pages */
#page-inner-content:after {
content: " ";
font-size: 0;
line-height: 0;
clear: both;
display: block; }
#page-article {
margin: 0;
padding: 30px 2em 4em 18%;
max-width: 100em;
box-sizing: border-box;
background-color: #ffffff;
font-family: Roboto, Helvetica, Arial, sans-serif;
line-height: 1.5;
-webkit-overflow-scrolling: touch; }
#markdown-toc {
left: 18%; }
#page-article article {
max-width: 930px;
margin: 30px 1em 4em 6em; }
#page-article img {
display: block;
max-width: 100%;
margin: 2em auto; }
a,
p a code,
li a code {
color: #1976d2;
text-decoration: none; }
a:hover,
p a:hover code,
li a:hover code {
color: #1565c0;
text-decoration: underline; }
h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: #000;
text-decoration: none;
letter-spacing: -0.04em; }
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
padding-left: 25px;
margin-left: -25px; }
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
text-decoration: none;
background: transparent url(../images/anchor.png) no-repeat 0 50%; }
h1 a.type-link,
h1 a.type-link:hover,
h3 a.type-link,
h3 a.type-link:hover,
h5 a.type-link,
h5 a.type-link:hover {
background: none;
padding: 0;
margin: 0; }
h1 span.type-link {
display: block;
font-size: 12px; }
h1 span.type-link a {
color: #666; }
a.type-link {
text-decoration: none; }
a.type-link:hover {
background: none;
padding: 0;
margin: 0; }
a.type-link code {
color: #1976d2;
font-size: .9em; }
p a.type-link code {
font-size: 1em; }
a.type-link:hover code,
h1 span.type-link a:hover {
color: #1565c0; }
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 400;
line-height: 1.2em;
margin-top: 30px;
margin-bottom: 12px; }
h1 {
font-size: 34px; }
h2 {
font-size: 26px;
font-weight: 500;
margin-top: 42px; }
h3 {
font-size: 18px;
font-weight: 500; }
h4 {
font-size: 16px;
font-weight: 500; }
h5 {
font-size: 15px;
font-weight: 500; }
h6 {
font-size: 12px;
text-transform: uppercase;
font-weight: 700; }
#markdown-toc + #page-article {
/* adjust for ToC fixed positioning */
padding-top: 80px; }
#markdown-toc + #page-article :target:before {
content: "";
display: block;
height: 175px;
margin: -175px 0 0; }
#markdown-toc + #page-article h1 {
margin: 0; }
#markdown-toc + #page-article h1 + p {
margin: 0; }
#markdown-toc + #page-article h3 {
margin-bottom: 3px;
font-size: 16px;
letter-spacing: normal; }
#markdown-toc + #page-article h3 a {
color: #e50870;
letter-spacing: normal; }
#markdown-toc + #page-article h3 + p,
#markdown-toc + #page-article h4 + p,
#markdown-toc + #page-article h5 + p {
margin-top: 0; }
#markdown-toc + #page-article h4 {
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
margin-top: 20px;
margin-bottom: 6px;
color: #333; }
#markdown-toc + #page-article h5 {
margin-top: 6px;
margin-bottom: 0; }
#markdown-toc + #page-article h5 code {
color: #3e526b; }
#markdown-toc + #page-article h5 a code {
color: #1976d2; }
h1 + p {
font-size: 18px; }
h3 code,
h3 em {
color: #666;
font-size: 14px; }
h3 code {
margin-left: 4px; }
h3 a:first-child + a code:before {
content: "-";
margin-right: 7px;
color: #ccc; }
h3 > code:first-child:before {
content: "|";
margin-right: 7px;
color: #ccc; }
h3 em {
font-style: normal;
font-weight: 500; }
p {
margin: 12px 0; }
ul,
ol {
margin: 12px 0 30px; }
blockquote {
padding: 10px 30px;
margin: 30px 0;
min-height: 70px;
position: relative;
box-sizing: border-box; }
blockquote table {
border: 0;
border-collapse: collapse; }
blockquote th,
blockquote td {
padding: .5em; }
.prettyprint {
font-size: 13px;
padding: 20px;
border: 1px solid transparent;
overflow: hidden;
word-break: break-word;
clear: both;
margin: 12px 0 30px; }
.prettyprint code {
display: block;
overflow-x: auto;
padding: 0;
line-height: 18px;
font-family: "Roboto Mono", "Ubuntu Mono", "Consolas", "Monaco", monospace;
font-weight: normal; }
.prettyprint code .hljs {
background-color: transparent; }
#page-article table {
width: 100%;
margin-top: 1.2em;
border: 1px solid #e1e5ea;
border-collapse: collapse;
border-spacing: 0; }
#page-article table tr {
background-color: #fff; }
#page-article table th,
#page-article table td {
padding: 3px 5px; }
#page-article table td {
background: #fff;
border: 1px solid #e1e5ea;
color: #555; }
#page-article table th {
background: #f3f5f7;
color: #000;
text-align: left; }
.tag-neutral,
.tag-success,
.tag-error,
.tag-warning {
display: inline-block;
min-width: 25px;
padding: 0 4px;
border-radius: 3px;
font-size: 13px;
text-align: center; }
.tag-neutral {
background-color: #ececec;
color: #000; }
.tag-success {
background-color: #00b312;
color: #fff; }
.tag-error {
background-color: #ff1744;
color: #fff; }
.tag-warning {
background-color: #ff9600;
color: #fff; }
#page-toc + ul {
padding-left: 0; }
#page-toc + ul li {
list-style: none;
margin-left: 0; }
#page-toc + ul li a {
text-decoration: none; }
#page-toc + ul li a:hover {
text-decoration: underline; }
#page-toc + ul > li {
margin-bottom: 7px; }
#page-toc + ul ul {
padding-left: 10px; }
#page-toc + ul ul > li {
margin-bottom: 0; }
/* Footer */
footer {
padding: 20px 0;
box-sizing: border-box;
border-top: 1px solid #ebecee; }
footer p {
margin: 0;
padding: 0;
font-size: 12px; }
/* Search */
#page-header #page-search {
margin: 0;
position: absolute;
top: 23px;
background-color: transparent;
padding: 0;
right: 435px;
text-align: right;
left: 18%;
margin-left: 85px;
max-width: 930px; }
#page-search > div {
text-align: left;
display: inline-block;
width: 100%; }
#page-search form {
margin-bottom: 0; }
#page-search table {
margin: 0;
padding: 0;
border: none; }
#page-search table td {
border: none; }
#page-search form {
box-shadow: 3px 3px 19px rgba(0, 0, 0, 0.1); }
#page-search .gsc-input-box {
box-shadow: none;
border: 0;
height: auto; }
#page-search .gsc-input td + td {
display: none; }
#page-search table.gsc-search-box td {
background-color: #fff;
padding: 0; }
#page-search table.gsc-search-box td.gsc-input {
background-color: #fff;
padding: 0 5px 0 10px; }
#page-search .gsc-control-cse {
background: none;
border: 0;
padding: 0; }
#page-search .gsc-input {
background-image: none !important;
padding-right: 2px; }
#page-search td.gsc-search-button {
background: transparent url(../images/search.png) no-repeat 50% 50%;
cursor: pointer; }
#page-search input.gsc-search-button {
border-radius: 0;
margin: 0;
border: 0;
background: none;
opacity: 0;
padding: 8px 7px 7px; }
.toggle-nav,
.show-search {
padding: 15px;
display: none;
cursor: pointer; }
#page-nav.nav-visibility {
display: block; }
#page-header #page-search.search-visibility {
display: block; }
.show-search {
display: none; }
.k-tabstrip {
border: 1px solid #ccc; }
.k-tabstrip .k-link {
padding: 0; }
.k-tabstrip .k-content,
.k-tabstrip .k-loading {
border: 0; }
.k-tabstrip .k-tabstrip-items {
padding: 0;
border-bottom: 1px solid; }
.k-tabstrip .k-item {
border-width: 0 1px 0 0;
border-style: solid;
font-weight: bold;
font-size: 14px;
padding: .72em 1.5em;
cursor: pointer;
transition-property: background-color, color;
transition-duration: 0.2s;
transition-timing-function: ease; }
.k-tabstrip .k-content pre {
border: 0;
padding: 0;
margin: 1em 0; }
/* Responsive styles */
@media (max-width: 1200px) {
body {
min-width: initial; }
.faux-columns {
background-image: none; }
#page-edit-link {
display: none; }
#markdown-toc {
left: 0;
padding-left: 1.3em; }
.nav-buttons,
#page-nav,
#page-tabs,
#page-top #page-search {
display: none; }
#page-nav {
min-width: 250px; }
#page-article {
margin-left: 0;
padding-left: 0; }
#page-article article {
margin-left: 2em;
margin-right: 2em; }
#page-article h1 {
margin-top: 1em; }
.toggle-nav {
display: inline-block; }
#logo-bar {
display: inline-block;
margin-left: 0; }
#page-header #page-search {
display: none;
left: 50px;
max-width: initial;
right: 15px;
margin: 0; }
#page-search > div {
padding: 0 3.83em 0 0; }
.show-search {
display: inline-block;
cursor: pointer; }
#page-header #page-search.search-visibility ~ #logo-bar,
#page-header #page-search.search-visibility ~ .show-search {
display: none; }
.gsc-results-wrapper-overlay {
width: 100% !important;
height: 100% !important;
top: 0 !important;
left: 0 !important;
box-sizing: border-box; }
.k-animation-container {
padding-right: 15px !important; } }
@media (max-width: 600px) {
#refine-search-label {
display: none; }
#refine-search-button .k-icon {
margin-left: 0 !important; } }
/* List of font icons */
.additional-icons {
list-style-type: none;
margin: 0;
padding: 0; }
.additional-icons:after {
content: "";
display: block;
clear: both;
height: 0; }
.additional-icons li {
float: left;
margin: 0;
padding: 8px 0px;
width: 296px;
text-align: left;
color: #787878;
font-size: 13px; }
.icon-preview {
display: inline-block;
width: 32px;
height: 32px;
text-decoration: none;
color: #333;
margin: 0 10px 0 0;
font-size: 16px;
line-height: 16px;
border: 1px solid #ebecee;
background-color: #f5f7f8;
text-align: center;
box-sizing: border-box;
padding: 5px; }
#page-inner-content {
box-sizing: border-box;
padding-top: 119px;
position: relative; }
#page-article {
margin-top: 0;
margin-bottom: 0;
padding-top: 30px;
padding-bottom: 4em; }
#page-edit-link {
margin-top: 120px; }
#res-type-container {
color: #000;
font-size: 11px;
font-family: Arial;
text-transform: uppercase;
width: 266px; }
#res-type-container .k-widget.k-dropdown {
width: initial; }
#res-type-container .k-dropdown-wrap {
border: none; }
#res-type-container .k-i-arrow-60-down::before {
content: "\e015" !important; }
.k-list-container.k-popup.k-group.k-reset {
background: #FFFFFF;
margin: 8px; }
#refine-search-popup ul {
margin: 0;
padding: 0;
background: #FFFFFF; }
#refine-search-popup li {
list-style: none; }
#refine-search-popup li:hover {
background-color: #00b312;
color: #FFFFFF; }
#refine-search-popup li label {
padding: 15px 23px 15px 15px;
cursor: pointer; }
#refine-search-popup li .k-icon {
color: #00b312; }
#refine-search-popup li:hover .k-icon {
color: #FFFFFF; }
#refine-search-popup {
font-size: 11px !important;
color: black;
border: none;
box-shadow: 3px 3px 19px rgba(0, 0, 0, 0.1); }
.custom-checkbox {
text-transform: uppercase;
display: block; }
.custom-checkbox input[type="checkbox"] {
display: none; }
.custom-checkbox span.k-icon {
opacity: 0; }
.custom-checkbox input[type="checkbox"]:checked ~ span.k-icon {
opacity: 1; }
.custom-checkbox .k-icon {
margin-right: 8px;
font-size: 13px; }
#refine-search-container {
width: 1px;
white-space: nowrap; }
#refine-search-button {
text-transform: uppercase;
color: black;
cursor: pointer;
padding: 7px;
line-height: normal; }
#refine-search-label {
font-size: 10px;
vertical-align: middle; }
#refine-search-button .k-icon {
margin-left: 10px; }
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.nav-buttons .btn {
padding: 6px 19px; }
.gsc-results-wrapper-nooverlay {
margin-top: 30px; }
.gsc-results-wrapper-nooverlay .gsc-orderby {
display: none; }
.gsc-results-wrapper-nooverlay .gsc-result-info {
padding: 8px 0; }
.gsc-results-wrapper-nooverlay .gsc-result div {
padding-left: 0;
padding-right: 0; }
.gsc-results-wrapper-nooverlay .gsc-result .gs-no-results-result div {
padding-left: 5px;
padding-right: 5px;
margin-left: 0;
margin-right: 0; }
#page-article .gsc-results-wrapper-nooverlay table th,
#page-article .gsc-results-wrapper-nooverlay table td {
padding-left: 0;
padding-right: 0; }
#page-search .gs-webResult div.gs-visibleUrl,
#page-search .gs-imageResult div.gs-visibleUrl {
color: #00b312; }
.gsc-results-wrapper-nooverlay .gsc-cursor-box {
margin-top: 30px;
text-align: center; }
.gsc-results-wrapper-nooverlay .gsc-cursor-box .gsc-cursor-page {
padding: 8px 15px; }
.gsc-results-wrapper-nooverlay .gsc-cursor-box .gsc-cursor-current-page {
padding: 8px 15px;
border-style: solid;
border-width: 1px; }
#page-search .gsc-results {
width: 100%; }
#page-search .gsc-above-wrapper-area {
border-bottom: none; }
#page-search .gsc-result-info {
display: none; }
#page-search #latest-articles {
margin: 0; }
.k-animation-container {
padding-left: 30px;
padding-right: 30px;
padding-bottom: 30px;
margin-left: 30px;
overflow: hidden !important; }
#page-header .k-icon {
font-size: 18px; }
.gsc-result .gs-title {
height: 1.4em !important; }
#feedback-section-dummy {
height: 50px;
color: #FFFFFF;
display: none; }
#feedback-section {
background-color: #1976d2;
color: #FFFFFF;
font-family: Roboto, Helvetica, Arial, sans-serif; }
#feedback-section.fixed {
position: fixed;
bottom: 0;
right: 0;
left: 0;
opacity: .9;
z-index: 1015; }
#close-button {
display: none;
right: 1.2em;
bottom: 9px;
position: absolute;
cursor: pointer; }
#feedback-section.fixed #close-button {
display: block;
height: 18px;
width: 18px; }
#close-button img {
width: 18px;
height: 18px; }
#feedback-section .side-title {
font-size: 14px;
margin-bottom: 0;
margin-right: 15px;
flex: 1; }
footer,
#feedback-menu-container {
margin-left: 18%;
padding: 13px 4em 13px 0;
padding-left: 6em; }
#feedback-menu-container {
max-width: 930px; }
@-webkit-keyframes hide-feedback-form-animation {
0% {
opacity: 1; }
100% {
opacity: 0;
height: 0; } }
@-moz-keyframes hide-feedback-form-animation {
0% {
opacity: 1; }
100% {
opacity: 0;
height: 0; } }
@-o-keyframes hide-feedback-form-animation {
0% {
opacity: 1; }
100% {
opacity: 0;
height: 0; } }
@keyframes hide-feedback-form-animation {
0% {
opacity: 1; }
100% {
opacity: 0;
height: 0; } }
.hide-feedback-form {
-webkit-animation: hide-feedback-form-animation 1s ease-out;
-moz-animation: hide-feedback-form-animation 1s ease-out;
-o-animation: hide-feedback-form-animation 1s ease-out;
animation: hide-feedback-form-animation 1s ease-out;
animation-fill-mode: forwards;
animation-delay: 2s; }
@media (max-width: 1200px) {
footer,
#feedback-menu-container {
margin-left: 0;
padding-left: 2em; }
#feedback-section.fixed {
position: static;
bottom: 0;
right: 0;
left: 0;
opacity: 1; }
#feedback-section-dummy {
display: none !important; } }
#helpful-buttons-container,
#feedback-submitted-container {
font-size: 14px;
width: 100%;
text-decoration: none;
display: flex;
align-items: center; }
#helpful-buttons-container .button {
text-transform: uppercase;
text-align: center;
color: #b4daff;
cursor: pointer;
transition-property: background-color, color;
transition-duration: 0.2s;
transition-timing-function: ease; }
#yesButton {
margin-right: 10px; }
#noButton {
margin-left: 10px; }
#helpful-buttons-container .button:hover {
text-decoration: none;
color: #FFFFFF; }
.k-widget.k-window.k-window-titleless {
width: 460px !important;
top: 50% !important;
left: 50% !important;
margin-left: -230px;
margin-top: -250px;
background-color: #FFFFFF;
border: none;
position: fixed;
box-sizing: border-box; }
@media (max-width: 460px) {
.k-widget.k-window.k-window-titleless {
padding: 0;
margin: 0;
width: 100% !important;
height: 100% !important;
top: 0 !important;
left: 0 !important; }
#feedback-form-window button {
margin-top: 15px !important; } }
#feedback-form-window {
max-height: 580px !important;
padding: 30px 15px 30px 30px;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column; }
#feedback-form-window > * {
padding-right: 15px; }
#feedback-form {
-webkit-flex: 1;
-moz-flex: 1;
overflow: auto; }
#feedback-form span.required-field:after {
content: "* required";
font-size: 11px;
float: right; }
#feedback-form-window input::-webkit-input-placeholder,
#feedback-form-window textarea::-webkit-input-placeholder,
#feedback-form-window input:-moz-placeholder,
#feedback-form-window textarea:-moz-placeholder,
#feedback-form-window input::-moz-placeholder,
#feedback-form-window textarea::-moz-placeholder,
#feedback-form-window input:-ms-input-placeholder,
#feedback-form-window textarea:-ms-input-placeholder {
color: #d9d9d9; }
#feedback-form-window .feedback-extw__title {
margin: 0;
font-size: 24px; }
#feedback-form-window .feedback-extw__subtitle {
margin-top: 0;
margin-bottom: 0;
font-size: 1.5em;
font-weight: bold;
color: #000;
text-decoration: none; }
#feedback-form-window p:nth-child(2) {
margin-top: 10px;
margin-bottom: 20px;
font-size: 1.12em;
font-weight: bold;
color: #000;
text-decoration: none; }
#feedback-form textarea {
margin: 12px 0 0px !important;
margin-top: 2px !important; }
#feedback-checkbox-area label {
display: block;
margin: 5px 0 0;
padding: 5px 0 0; }
#feedback-checkbox-area #feedback-email-input {
margin-top: 20px !important; }
#feedback-extw__checkbox:after {
content: "";
display: block;
clear: both; }
#feedback-form .checkbox__input {
float: left; }
#feedback-form .checkbox__text {
line-height: 18px;
margin-left: 5px; }
#feedback-form .feedback-extw__textarea,
#feedback-form .feedback-extw__input {
padding: 10px;
border: 1px solid #d9d9d9;
width: 100%;
box-sizing: border-box;
font: inherit;
font-style: italic; }
#feedback-form .feedback-extw__textarea {
resize: none; }
#feedback-form .feedback-extw__input,
#feedback-form .feedback-extw__textarea {
margin: 12px 0 6px; }
#feedback-form-window button {
margin-top: 30px;
line-height: 0.933em;
font-size: 15px;
font-weight: bold;
text-align: center;
border-radius: 2px;
padding: 0.667em 2.000em;
background-color: #015991;
color: #fff;
border-width: 0;
cursor: pointer;
background-clip: padding-box;
border: 1px solid #015991;
transition-property: background-color, color;
transition-duration: 0.2s;
transition-timing-function: ease; }
#feedback-form-window button:hover {
background-color: #013a5e; }
#form-submit-button {
margin-left: 5px; }
button#form-close-button {
background-color: #fff;
color: #555;
border: 1px solid #ccc; }
button#form-close-button:hover {
background-color: #ccc; }
#feedback-form span.k-tooltip {
border: 0;
color: #ff0000;
font-style: italic;
font-size: 12px;
padding: 0 0 6px !important; } | docs/_assets/stylesheets/styles.css | body,
html {
min-height: 100%;
height: 100%;
margin: 0;
padding: 0; }
body {
background-color: #fff;
color: #555;
font: 400 14px Arial, Helvetica, sans-serif; }
a img {
border-width: 0; }
p code,
li code {
font-weight: 700;
color: #000; }
pre code {
background: transparent; }
header,
nav,
section,
article,
aside,
footer {
display: block; }
code,
em {
font-family: "Roboto Mono", "Ubuntu Mono", "Consolas", "Monaco", monospace; }
.TK-Hat {
padding-left: 15px;
padding-right: 15px;
border-bottom: 1px solid #eff0f1;
color: #4d4f52;
background: #ffffff;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999; }
.TK-Hat::after {
content: "";
clear: both;
display: block; }
.TK-Hat *,
.TK-Hat:after,
.TK-Hat:before {
box-sizing: border-box; }
.TK-Hat-Brand {
float: left;
width: 150px;
margin: 0; }
.TK-PRGS-Logo {
display: block;
outline: none !important;
text-decoration: none !important;
transition: color .1s linear, background .1s linear, opacity .1s linear; }
.TK-PRGS-Logo:focus,
.TK-PRGS-Logo:hover {
opacity: .75; }
.TK-PRGS-Logo svg {
position: relative;
display: inline-block;
vertical-align: middle; }
@media only screen and (max-width: 1100px) and (min-width: 880px) {
.TK-Hat-Brand {
width: 120px;
min-width: 120px; } }
@media only screen and (max-width: 880px) {
.TK-Hat-Brand {
width: 100px;
min-width: 100px; } }
/* Header */
#page-header {
width: 100%;
height: 77px;
box-sizing: border-box;
font-size: 12px;
top: 41px;
left: 0;
z-index: 100;
position: fixed;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
align-items: center; }
/* adjust anchors for fixed header*/
:target:before {
content: "";
display: block;
height: 125px;
margin: -125px 0 0; }
#page-header:after {
display: block;
content: "";
clear: both; }
#page-header a {
text-decoration: none; }
#page-edit-link {
transition: width .2s linear .3s;
position: absolute;
z-index: 10;
right: 36px;
top: 70px;
width: 26px;
height: 17px;
margin: 0;
padding: 9px 10px 10px 0;
text-decoration: none;
text-align: center;
border-radius: 0;
background-color: #fff;
color: #787878;
white-space: nowrap;
overflow: hidden;
border: 1px solid #e8ebef;
border-radius: 20px; }
#page-edit-link span {
padding: 0 8px 0 10px; }
#page-edit-link:hover {
transition: width .2s linear .3s;
width: 130px;
color: #000; }
#logo-bar {
-webkit-flex: 1;
flex: 1;
margin-left: 15px; }
.logo {
width: 262px;
max-width: 100%; }
.nav-buttons {
float: right;
padding-right: 15px;
padding-left: 15px; }
#page-header a.btn {
margin-left: .3em; }
/* Topic navigation */
#page-nav {
position: fixed;
top: 119px;
bottom: 0;
left: 0;
width: 18%;
min-width: 290px;
overflow: auto;
background: #f3f5f7;
border-right: 1px solid #e8ebef;
z-index: 10;
-webkit-overflow-scrolling: touch;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
#page-nav .k-item > .k-group {
/* simplifies scroll positioning */
position: static; }
#page-nav .new-navigation-item,
#page-nav .k-state-selected .new-navigation-item {
float: left;
font-size: 10px;
font-weight: bold;
margin: 12px 10px 12px 0;
padding: 0px 4px;
border-radius: 2px;
background-color: #00b312;
color: #ffffff; }
#page-nav .k-state-selected .new-navigation-item {
color: #00b312;
background-color: #ffffff; }
/* Table of contents */
#markdown-toc {
border-bottom: 1px solid #ebecee;
position: fixed;
background-color: #fff;
top: 118px;
z-index: 5;
right: 0;
font-size: 12px;
padding-left: 5.8em;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box; }
#markdown-toc ul {
margin: 0;
padding: 0;
list-style: none; }
#markdown-toc > ul > li {
display: inline-block;
position: relative; }
#markdown-toc li > ul {
position: absolute;
max-height: 400px;
width: 500px;
overflow: auto;
background: #fff;
box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
padding: 1em 0; }
#markdown-toc a {
padding: 0 14px;
text-decoration: none;
line-height: 1.8em; }
#markdown-toc a:hover {
text-decoration: underline; }
#markdown-toc code,
#markdown-toc em {
display: none; }
#markdown-toc .section > a {
line-height: 50px;
font-size: 1.1em;
font-weight: bold;
display: inline-block;
padding-right: 30px;
background: transparent url(../images/arrow.png) 90% 50% no-repeat; }
#markdown-toc .section > a:hover {
background-color: #f5f7f8;
text-decoration: none; }
#markdown-toc .section > a {
color: #e50870; }
/* Article pages */
#page-inner-content:after {
content: " ";
font-size: 0;
line-height: 0;
clear: both;
display: block; }
#page-article {
margin: 0;
padding: 30px 2em 4em 18%;
max-width: 100em;
box-sizing: border-box;
background-color: #ffffff;
font-family: Roboto, Helvetica, Arial, sans-serif;
line-height: 1.5;
-webkit-overflow-scrolling: touch; }
#markdown-toc {
left: 18%; }
#page-article article {
max-width: 930px;
margin: 30px 1em 4em 6em; }
#page-article img {
display: block;
max-width: 100%;
margin: 2em auto; }
a,
p a code,
li a code {
color: #1976d2;
text-decoration: none; }
a:hover,
p a:hover code,
li a:hover code {
color: #1565c0;
text-decoration: underline; }
h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: #000;
text-decoration: none;
letter-spacing: -0.04em; }
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
padding-left: 25px;
margin-left: -25px; }
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
text-decoration: none;
background: transparent url(../images/anchor.png) no-repeat 0 50%; }
h1 a.type-link,
h1 a.type-link:hover,
h3 a.type-link,
h3 a.type-link:hover,
h5 a.type-link,
h5 a.type-link:hover {
background: none;
padding: 0;
margin: 0; }
h1 span.type-link {
display: block;
font-size: 12px; }
h1 span.type-link a {
color: #666; }
a.type-link {
text-decoration: none; }
a.type-link:hover {
background: none;
padding: 0;
margin: 0; }
a.type-link code {
color: #1976d2;
font-size: .9em; }
p a.type-link code {
font-size: 1em; }
a.type-link:hover code,
h1 span.type-link a:hover {
color: #1565c0; }
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 400;
line-height: 1.2em;
margin-top: 30px;
margin-bottom: 12px; }
h1 {
font-size: 34px; }
h2 {
font-size: 26px;
font-weight: 500;
margin-top: 42px; }
h3 {
font-size: 18px;
font-weight: 500; }
h4 {
font-size: 16px;
font-weight: 500; }
h5 {
font-size: 15px;
font-weight: 500; }
h6 {
font-size: 12px;
text-transform: uppercase;
font-weight: 700; }
#markdown-toc + #page-article {
/* adjust for ToC fixed positioning */
padding-top: 80px; }
#markdown-toc + #page-article :target:before {
content: "";
display: block;
height: 175px;
margin: -175px 0 0; }
#markdown-toc + #page-article h1 {
margin: 0; }
#markdown-toc + #page-article h1 + p {
margin: 0; }
#markdown-toc + #page-article h3 {
margin-bottom: 3px;
font-size: 16px;
letter-spacing: normal; }
#markdown-toc + #page-article h3 a {
color: #e50870;
letter-spacing: normal; }
#markdown-toc + #page-article h3 + p,
#markdown-toc + #page-article h4 + p,
#markdown-toc + #page-article h5 + p {
margin-top: 0; }
#markdown-toc + #page-article h4 {
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
margin-top: 20px;
margin-bottom: 6px;
color: #333; }
#markdown-toc + #page-article h5 {
margin-top: 6px;
margin-bottom: 0; }
#markdown-toc + #page-article h5 code {
color: #3e526b; }
#markdown-toc + #page-article h5 a code {
color: #1976d2; }
h1 + p {
font-size: 18px; }
h3 code,
h3 em {
color: #666;
font-size: 14px; }
h3 code {
margin-left: 4px; }
h3 a:first-child + a code:before {
content: "-";
margin-right: 7px;
color: #ccc; }
h3 > code:first-child:before {
content: "|";
margin-right: 7px;
color: #ccc; }
h3 em {
font-style: normal;
font-weight: 500; }
p {
margin: 12px 0; }
ul,
ol {
margin: 12px 0 30px; }
blockquote {
padding: 10px 30px;
margin: 30px 0;
min-height: 70px;
position: relative;
box-sizing: border-box; }
blockquote table {
border: 0;
border-collapse: collapse; }
blockquote th,
blockquote td {
padding: .5em; }
.prettyprint {
font-size: 13px;
padding: 20px;
border: 1px solid transparent;
overflow: hidden;
word-break: break-word;
clear: both;
margin: 12px 0 30px; }
.prettyprint code {
display: block;
overflow-x: auto;
padding: 0;
line-height: 18px;
font-family: "Roboto Mono", "Ubuntu Mono", "Consolas", "Monaco", monospace;
font-weight: normal; }
.prettyprint code .hljs {
background-color: transparent; }
#page-article table {
width: 100%;
margin-top: 1.2em;
border: 1px solid #e1e5ea;
border-collapse: collapse;
border-spacing: 0; }
#page-article table tr {
background-color: #fff; }
#page-article table th,
#page-article table td {
padding: 3px 5px; }
#page-article table td {
background: #fff;
border: 1px solid #e1e5ea;
color: #555; }
#page-article table th {
background: #f3f5f7;
color: #000;
text-align: left; }
.tag-neutral,
.tag-success,
.tag-error,
.tag-warning {
display: inline-block;
min-width: 25px;
padding: 0 4px;
border-radius: 3px;
font-size: 13px;
text-align: center; }
.tag-neutral {
background-color: #ececec;
color: #000; }
.tag-success {
background-color: #00b312;
color: #fff; }
.tag-error {
background-color: #ff1744;
color: #fff; }
.tag-warning {
background-color: #ff9600;
color: #fff; }
#page-toc + ul {
padding-left: 0; }
#page-toc + ul li {
list-style: none;
margin-left: 0; }
#page-toc + ul li a {
text-decoration: none; }
#page-toc + ul li a:hover {
text-decoration: underline; }
#page-toc + ul > li {
margin-bottom: 7px; }
#page-toc + ul ul {
padding-left: 10px; }
#page-toc + ul ul > li {
margin-bottom: 0; }
/* Footer */
footer {
padding: 20px 0;
box-sizing: border-box;
border-top: 1px solid #ebecee; }
footer p {
margin: 0;
padding: 0;
font-size: 12px; }
/* Search */
#page-header #page-search {
margin: 0;
position: absolute;
top: 23px;
background-color: transparent;
padding: 0;
right: 435px;
text-align: right;
left: 18%;
margin-left: 85px;
max-width: 930px; }
#page-search > div {
text-align: left;
display: inline-block;
width: 100%; }
#page-search form {
margin-bottom: 0; }
#page-search table {
margin: 0;
padding: 0;
border: none; }
#page-search table td {
border: none; }
#page-search form {
box-shadow: 3px 3px 19px rgba(0, 0, 0, 0.1); }
#page-search .gsc-input-box {
box-shadow: none;
border: 0;
height: auto; }
#page-search .gsc-input td + td {
display: none; }
#page-search table.gsc-search-box td {
background-color: #fff;
padding: 0; }
#page-search table.gsc-search-box td.gsc-input {
background-color: #fff;
padding: 0 5px 0 10px; }
#page-search .gsc-control-cse {
background: none;
border: 0;
padding: 0; }
#page-search .gsc-input {
background-image: none !important;
padding-right: 2px; }
#page-search td.gsc-search-button {
background: transparent url(../images/search.png) no-repeat 50% 50%;
cursor: pointer; }
#page-search input.gsc-search-button {
border-radius: 0;
margin: 0;
border: 0;
background: none;
opacity: 0;
padding: 8px 7px 7px; }
.toggle-nav,
.show-search {
padding: 15px;
display: none;
cursor: pointer; }
#page-nav.nav-visibility {
display: block; }
#page-header #page-search.search-visibility {
display: block; }
.show-search {
display: none; }
.k-tabstrip {
border: 1px solid #ccc; }
.k-tabstrip .k-link {
padding: 0; }
.k-tabstrip .k-content,
.k-tabstrip .k-loading {
border: 0; }
.k-tabstrip .k-tabstrip-items {
padding: 0;
border-bottom: 1px solid; }
.k-tabstrip .k-item {
border-width: 0 1px 0 0;
border-style: solid;
font-weight: bold;
font-size: 14px;
padding: .72em 1.5em;
cursor: pointer;
transition-property: background-color, color;
transition-duration: 0.2s;
transition-timing-function: ease; }
.k-tabstrip .k-content pre {
border: 0;
padding: 0;
margin: 1em 0; }
/* Responsive styles */
@media (max-width: 1200px) {
body {
min-width: initial; }
.faux-columns {
background-image: none; }
#page-edit-link {
display: none; }
#markdown-toc {
left: 0;
padding-left: 1.3em; }
.nav-buttons,
#page-nav,
#page-tabs,
#page-top #page-search {
display: none; }
#page-nav {
min-width: 250px; }
#page-article {
margin-left: 0;
padding-left: 0; }
#page-article article {
margin-left: 2em;
margin-right: 2em; }
#page-article h1 {
margin-top: 1em; }
.toggle-nav {
display: inline-block; }
#logo-bar {
display: inline-block;
margin-left: 0; }
#page-header #page-search {
display: none;
left: 50px;
max-width: initial;
right: 15px;
margin: 0; }
#page-search > div {
padding: 0 3.83em 0 0; }
.show-search {
display: inline-block;
cursor: pointer; }
#page-header #page-search.search-visibility ~ #logo-bar,
#page-header #page-search.search-visibility ~ .show-search {
display: none; }
.gsc-results-wrapper-overlay {
width: 100% !important;
height: 100% !important;
top: 0 !important;
left: 0 !important;
box-sizing: border-box; }
.k-animation-container {
padding-right: 15px !important; } }
@media (max-width: 600px) {
#refine-search-label {
display: none; }
#refine-search-button .k-icon {
margin-left: 0 !important; } }
/* List of font icons */
.additional-icons {
list-style-type: none;
margin: 0;
padding: 0; }
.additional-icons:after {
content: "";
display: block;
clear: both;
height: 0; }
.additional-icons li {
float: left;
margin: 0;
padding: 8px 0px;
width: 296px;
text-align: left;
color: #787878;
font-size: 13px; }
.icon-preview {
display: inline-block;
width: 32px;
height: 32px;
text-decoration: none;
color: #333;
margin: 0 10px 0 0;
font-size: 16px;
line-height: 16px;
border: 1px solid #ebecee;
background-color: #f5f7f8;
text-align: center;
box-sizing: border-box;
padding: 5px; }
#page-inner-content {
box-sizing: border-box;
padding-top: 119px;
position: relative; }
#page-article {
margin-top: 0;
margin-bottom: 0;
padding-top: 30px;
padding-bottom: 4em; }
#page-edit-link {
margin-top: 120px; }
#res-type-container {
color: #000;
font-size: 11px;
font-family: Arial;
text-transform: uppercase;
width: 266px; }
#res-type-container .k-widget.k-dropdown {
width: initial; }
#res-type-container .k-dropdown-wrap {
border: none; }
#res-type-container .k-i-arrow-60-down::before {
content: "\e015" !important; }
.k-list-container.k-popup.k-group.k-reset {
background: #FFFFFF;
margin: 8px; }
#refine-search-popup ul {
margin: 0;
padding: 0;
background: #FFFFFF; }
#refine-search-popup li {
list-style: none; }
#refine-search-popup li:hover {
background-color: #00b312;
color: #FFFFFF; }
#refine-search-popup li label {
padding: 15px 23px 15px 15px;
cursor: pointer; }
#refine-search-popup li .k-icon {
color: #00b312; }
#refine-search-popup li:hover .k-icon {
color: #FFFFFF; }
#refine-search-popup {
font-size: 11px !important;
color: black;
border: none;
box-shadow: 3px 3px 19px rgba(0, 0, 0, 0.1); }
.custom-checkbox {
text-transform: uppercase;
display: block; }
.custom-checkbox input[type="checkbox"] {
display: none; }
.custom-checkbox span.k-icon {
opacity: 0; }
.custom-checkbox input[type="checkbox"]:checked ~ span.k-icon {
opacity: 1; }
.custom-checkbox .k-icon {
margin-right: 8px;
font-size: 13px; }
#refine-search-container {
width: 1px;
white-space: nowrap; }
#refine-search-button {
text-transform: uppercase;
color: black;
cursor: pointer;
padding: 7px;
line-height: normal; }
#refine-search-label {
font-size: 10px;
vertical-align: middle; }
#refine-search-button .k-icon {
margin-left: 10px; }
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.nav-buttons .btn {
padding: 6px 19px; }
.gsc-results-wrapper-nooverlay {
margin-top: 30px; }
.gsc-results-wrapper-nooverlay .gsc-orderby {
display: none; }
.gsc-results-wrapper-nooverlay .gsc-result-info {
padding: 8px 0; }
.gsc-results-wrapper-nooverlay .gsc-result div {
padding-left: 0;
padding-right: 0; }
.gsc-results-wrapper-nooverlay .gsc-result .gs-no-results-result div {
padding-left: 5px;
padding-right: 5px;
margin-left: 0;
margin-right: 0; }
#page-article .gsc-results-wrapper-nooverlay table th,
#page-article .gsc-results-wrapper-nooverlay table td {
padding-left: 0;
padding-right: 0; }
#page-search .gs-webResult div.gs-visibleUrl,
#page-search .gs-imageResult div.gs-visibleUrl {
color: #00b312; }
.gsc-results-wrapper-nooverlay .gsc-cursor-box {
margin-top: 30px;
text-align: center; }
.gsc-results-wrapper-nooverlay .gsc-cursor-box .gsc-cursor-page {
padding: 8px 15px; }
.gsc-results-wrapper-nooverlay .gsc-cursor-box .gsc-cursor-current-page {
padding: 8px 15px;
border-style: solid;
border-width: 1px; }
#page-search .gsc-results {
width: 100%; }
#page-search .gsc-above-wrapper-area {
border-bottom: none; }
#page-search .gsc-result-info {
display: none; }
#page-search #latest-articles {
margin: 0; }
.k-animation-container {
padding-left: 30px;
padding-right: 30px;
padding-bottom: 30px;
margin-left: 30px;
overflow: hidden !important; }
#page-header .k-icon {
font-size: 18px; }
.gsc-result .gs-title {
height: 1.4em !important; }
#feedback-section-dummy {
height: 50px;
color: #FFFFFF;
display: none; }
#feedback-section {
background-color: #1976d2;
color: #FFFFFF;
font-family: Roboto, Helvetica, Arial, sans-serif; }
#feedback-section.fixed {
position: fixed;
bottom: 0;
right: 0;
left: 0;
opacity: .9;
z-index: 1015; }
#close-button {
display: none;
right: 1.2em;
bottom: 9px;
position: absolute;
cursor: pointer; }
#feedback-section.fixed #close-button {
display: block;
height: 18px;
width: 18px; }
#close-button img {
width: 18px;
height: 18px; }
#feedback-section .side-title {
font-size: 14px;
margin-bottom: 0;
margin-right: 15px;
flex: 1; }
footer,
#feedback-menu-container {
margin-left: 18%;
padding: 13px 4em 13px 0;
padding-left: 6em; }
#feedback-menu-container {
max-width: 930px; }
@-webkit-keyframes hide-feedback-form-animation {
0% {
opacity: 1; }
100% {
opacity: 0;
height: 0; } }
@-moz-keyframes hide-feedback-form-animation {
0% {
opacity: 1; }
100% {
opacity: 0;
height: 0; } }
@-o-keyframes hide-feedback-form-animation {
0% {
opacity: 1; }
100% {
opacity: 0;
height: 0; } }
@keyframes hide-feedback-form-animation {
0% {
opacity: 1; }
100% {
opacity: 0;
height: 0; } }
.hide-feedback-form {
-webkit-animation: hide-feedback-form-animation 1s ease-out;
-moz-animation: hide-feedback-form-animation 1s ease-out;
-o-animation: hide-feedback-form-animation 1s ease-out;
animation: hide-feedback-form-animation 1s ease-out;
animation-fill-mode: forwards;
animation-delay: 2s; }
@media (max-width: 1200px) {
footer,
#feedback-menu-container {
margin-left: 0;
padding-left: 2em; }
#feedback-section.fixed {
position: static;
bottom: 0;
right: 0;
left: 0;
opacity: 1; }
#feedback-section-dummy {
display: none !important; } }
#helpful-buttons-container,
#feedback-submitted-container {
font-size: 14px;
width: 100%;
text-decoration: none;
display: flex;
align-items: center; }
#helpful-buttons-container .button {
text-transform: uppercase;
text-align: center;
color: #b4daff;
cursor: pointer;
transition-property: background-color, color;
transition-duration: 0.2s;
transition-timing-function: ease; }
#yesButton {
margin-right: 10px; }
#noButton {
margin-left: 10px; }
#helpful-buttons-container .button:hover {
text-decoration: none;
color: #FFFFFF; }
.k-widget.k-window.k-window-titleless {
width: 460px !important;
top: 50% !important;
left: 50% !important;
margin-left: -230px;
margin-top: -250px;
background-color: #FFFFFF;
border: none;
position: fixed;
box-sizing: border-box; }
@media (max-width: 460px) {
.k-widget.k-window.k-window-titleless {
padding: 0;
margin: 0;
width: 100% !important;
height: 100% !important;
top: 0 !important;
left: 0 !important; }
#feedback-form-window button {
margin-top: 15px !important; } }
#feedback-form-window {
max-height: 580px !important;
padding: 30px 15px 30px 30px;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column; }
#feedback-form-window > * {
padding-right: 15px; }
#feedback-form {
-webkit-flex: 1;
-moz-flex: 1;
overflow: auto; }
#feedback-form span.required-field:after {
content: "* required";
font-size: 11px;
float: right; }
#feedback-form-window input::-webkit-input-placeholder,
#feedback-form-window textarea::-webkit-input-placeholder,
#feedback-form-window input:-moz-placeholder,
#feedback-form-window textarea:-moz-placeholder,
#feedback-form-window input::-moz-placeholder,
#feedback-form-window textarea::-moz-placeholder,
#feedback-form-window input:-ms-input-placeholder,
#feedback-form-window textarea:-ms-input-placeholder {
color: #d9d9d9; }
#feedback-form-window .feedback-extw__title {
margin: 0;
font-size: 24px; }
#feedback-form-window .feedback-extw__subtitle {
margin-top: 0;
margin-bottom: 0;
font-size: 1.5em;
font-weight: bold;
color: #000;
text-decoration: none; }
#feedback-form-window p:nth-child(2) {
margin-top: 10px;
margin-bottom: 20px;
font-size: 1.12em;
font-weight: bold;
color: #000;
text-decoration: none; }
#feedback-form textarea {
margin: 12px 0 0px !important;
margin-top: 2px !important; }
#feedback-checkbox-area label {
display: block;
margin: 5px 0 0;
padding: 5px 0 0; }
#feedback-checkbox-area #feedback-email-input {
margin-top: 20px !important; }
#feedback-extw__checkbox:after {
content: "";
display: block;
clear: both; }
#feedback-form .checkbox__input {
float: left; }
#feedback-form .checkbox__text {
line-height: 18px;
margin-left: 5px; }
#feedback-form .feedback-extw__textarea,
#feedback-form .feedback-extw__input {
padding: 10px;
border: 1px solid #d9d9d9;
width: 100%;
box-sizing: border-box;
font: inherit;
font-style: italic; }
#feedback-form .feedback-extw__textarea {
resize: none; }
#feedback-form .feedback-extw__input,
#feedback-form .feedback-extw__textarea {
margin: 12px 0 6px; }
#feedback-form-window button {
margin-top: 30px;
line-height: 0.933em;
font-size: 15px;
font-weight: bold;
text-align: center;
border-radius: 2px;
padding: 0.667em 2.000em;
background-color: #015991;
color: #fff;
border-width: 0;
cursor: pointer;
background-clip: padding-box;
border: 1px solid #015991;
transition-property: background-color, color;
transition-duration: 0.2s;
transition-timing-function: ease; }
#feedback-form-window button:hover {
background-color: #013a5e; }
#form-submit-button {
margin-left: 5px; }
button#form-close-button {
background-color: #fff;
color: #555;
border: 1px solid #ccc; }
button#form-close-button:hover {
background-color: #ccc; }
#feedback-form span.k-tooltip {
border: 0;
color: #ff0000;
font-style: italic;
font-size: 12px;
padding: 0 0 6px !important; } | 0.360377 | 0.063948 |
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
background: #ffffff url('../img/aurora.jpg'); /* Background pattern from Subtle Patterns */
/*background-size: auto 150%; */
font-family: 'Coda', cursive;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
font-family: 'Open Sans', sans-serif;
font-weight: 400;
background-color: white;
box-shadow: 0 0 13px 15px white;
padding: 0 10px 0 10px;
margin-top: 25px;
color: #2e3d49;
}
.score-panel {
font-size: 20px;
background-color: white;
box-shadow: 0 0 5px 5px white;
padding: 0 5px 0 5px;
margin-top: 25px;
color: #2e3d49;
}
/*
* Styles for the deck of cards
*/
.deck {
width: 660px;
min-height: 680px;
background: linear-gradient(160deg, #2e42b3 0%, #ffffff 100%);
padding: 32px;
border-radius: 10px;
box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.5);
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin: 0 0 3em;
}
.deck .card {
height: 125px;
width: 125px;
background: #2e3d49;
font-size: 0;
color: #ffffff;
border-radius: 8px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 5px 2px 20px 0 rgba(46, 61, 73, 0.5);
}
.deck .card.open {
transform: rotateY(0);
background: #02b3e4;
cursor: default;
}
.deck .card.show {
font-size: 33px;
}
.deck .card.match {
cursor: default;
background: #02ccba;
font-size: 33px;
}
/*
* Styles for the Score Panel
*/
.score-panel {
text-align: left;
width: 500px;
margin-bottom: 10px;
}
.score-panel .stars {
margin: 0;
padding: 0;
display: inline-block;
margin: 0 5px 0 0;
}
.score-panel .stars li {
list-style: none;
display: inline-block;
}
.congrats-star {
margin: 0;
padding: 3px;
margin: auto;
}
.score-panel .moves {
margin-left: 30px;
}
.score-panel .restart {
float: right;
cursor: pointer;
}
.score-panel .timer-text {
padding-left: 30px;
}
.score-panel .timer {
padding-left: 10px;
}
.congrats-message {
list-style: none;
text-align: center;
font-size: 30px;
font-weight: 500;
color: white;
}
.w3-animate-zoom {}
.card-shake {
animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
}
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
} | css/app.css | html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
background: #ffffff url('../img/aurora.jpg'); /* Background pattern from Subtle Patterns */
/*background-size: auto 150%; */
font-family: 'Coda', cursive;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
font-family: 'Open Sans', sans-serif;
font-weight: 400;
background-color: white;
box-shadow: 0 0 13px 15px white;
padding: 0 10px 0 10px;
margin-top: 25px;
color: #2e3d49;
}
.score-panel {
font-size: 20px;
background-color: white;
box-shadow: 0 0 5px 5px white;
padding: 0 5px 0 5px;
margin-top: 25px;
color: #2e3d49;
}
/*
* Styles for the deck of cards
*/
.deck {
width: 660px;
min-height: 680px;
background: linear-gradient(160deg, #2e42b3 0%, #ffffff 100%);
padding: 32px;
border-radius: 10px;
box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.5);
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin: 0 0 3em;
}
.deck .card {
height: 125px;
width: 125px;
background: #2e3d49;
font-size: 0;
color: #ffffff;
border-radius: 8px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 5px 2px 20px 0 rgba(46, 61, 73, 0.5);
}
.deck .card.open {
transform: rotateY(0);
background: #02b3e4;
cursor: default;
}
.deck .card.show {
font-size: 33px;
}
.deck .card.match {
cursor: default;
background: #02ccba;
font-size: 33px;
}
/*
* Styles for the Score Panel
*/
.score-panel {
text-align: left;
width: 500px;
margin-bottom: 10px;
}
.score-panel .stars {
margin: 0;
padding: 0;
display: inline-block;
margin: 0 5px 0 0;
}
.score-panel .stars li {
list-style: none;
display: inline-block;
}
.congrats-star {
margin: 0;
padding: 3px;
margin: auto;
}
.score-panel .moves {
margin-left: 30px;
}
.score-panel .restart {
float: right;
cursor: pointer;
}
.score-panel .timer-text {
padding-left: 30px;
}
.score-panel .timer {
padding-left: 10px;
}
.congrats-message {
list-style: none;
text-align: center;
font-size: 30px;
font-weight: 500;
color: white;
}
.w3-animate-zoom {}
.card-shake {
animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
}
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
} | 0.573798 | 0.122313 |
html, body, #cesium_container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
font-family: sans-serif;
background: #000;
}
.button_table {
position: absolute;
border-collapse: separate;
border-spacing: 7px;
width: 200px;
}
.logo {
position: relative;
z-index: 1000;
width: 100%;
}
.button_group {
position: relative;
z-index: 1000;
width: 100%;
height: 18px;
background-color: rgba(57, 62, 70, 0.85);
border-style: none;
}
.button_group_title {
position: relative;
z-index: 1000;
font-size: 1em;
font-weight: bold;
color: #fff;
top: -12px;
text-align: center;
}
.button {
position: relative;
z-index: 1000;
width: 100%;
font-size: 1em;
font-weight: bold;
padding: 10px 30px;
background-color: rgba(57, 62, 70, 0.85);
color: #fff;
border-style: none;
}
.button:disabled {
color: rgb(102, 102, 102);
}
.button:disabled:hover {
background-color: rgba(57, 62, 70, 0.85);
cursor: auto;
}
.button:hover {
background-color: rgba(0, 173, 181, 1.0);
cursor: pointer;
}
.button.selected {
background-color: rgba(0, 173, 181, 1.0);
}
.button.selected:hover {
cursor: pointer;
}
.message {
color: white;
font-size: 1em;
font-weight: bold;
}
.waypoint_edit {
position: absolute;
z-index: 1000;
bottom: 1em;
right: 0;
height:480px;
width: 200px;
background-color: rgba(57, 62, 70, 0.85);
color: white;
padding: 20px;
}
.waypoint_edit_button {
position: absolute;
bottom: 10px;
left: 0;
}
.waypoint_edit_heightscale {
position: relative;
bottom: 10px;
left: 0;
}
.waypoint_edit_height {
position: absolute;
bottom: 80px;
left: 10px;
}
.waypoint_edit_heightscale_input {
width: 4em;
}
.waypoint_edit_height_input {
width: 4em;
}
input[type=range] {
-webkit-appearance: none;
appearance: none;
background-color: #eaeaea;
height: 2px;
width: 100%;
border-radius: 6px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
cursor: pointer;
position: relative;
width: 22px;
height: 22px;
display: block;
background-color: rgba(0, 173, 181, 1.0);
border-radius: 50%;
-webkit-border-radius: 50%;
}
#waypointGroundHeightSlider {
position: relative;
top: 200px;
right: 98px;
transform: rotate(-90deg);
width: 300px;
}
/* .video_streaming {
position: absolute;
z-index: 1000;
top: 5em;
left: 20em;
height:240px;
width: 320px;
background-color: rgba(57, 62, 70, 0.85);
color: white;
padding: 20px;
} */
.video_streaming_wrapper {
position: relative;
height: 100%;
width: 100%;
}
.video_streaming_margin {
position: relative;
height: 100%
}
.video_streaming_button {
position: relative;
}
.video_streaming_button_table {
position: relative;
border-collapse: separate;
border-spacing: 10px;
width: 350px;
margin: 0 auto;
}
.video_streaming {
position: relative;
background-attachment: fixed;
background-position: center center;
background-size: cover;
top: 0;
left: 0;
width: 100%;
height: 100%;
} | client/index.css | html, body, #cesium_container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
font-family: sans-serif;
background: #000;
}
.button_table {
position: absolute;
border-collapse: separate;
border-spacing: 7px;
width: 200px;
}
.logo {
position: relative;
z-index: 1000;
width: 100%;
}
.button_group {
position: relative;
z-index: 1000;
width: 100%;
height: 18px;
background-color: rgba(57, 62, 70, 0.85);
border-style: none;
}
.button_group_title {
position: relative;
z-index: 1000;
font-size: 1em;
font-weight: bold;
color: #fff;
top: -12px;
text-align: center;
}
.button {
position: relative;
z-index: 1000;
width: 100%;
font-size: 1em;
font-weight: bold;
padding: 10px 30px;
background-color: rgba(57, 62, 70, 0.85);
color: #fff;
border-style: none;
}
.button:disabled {
color: rgb(102, 102, 102);
}
.button:disabled:hover {
background-color: rgba(57, 62, 70, 0.85);
cursor: auto;
}
.button:hover {
background-color: rgba(0, 173, 181, 1.0);
cursor: pointer;
}
.button.selected {
background-color: rgba(0, 173, 181, 1.0);
}
.button.selected:hover {
cursor: pointer;
}
.message {
color: white;
font-size: 1em;
font-weight: bold;
}
.waypoint_edit {
position: absolute;
z-index: 1000;
bottom: 1em;
right: 0;
height:480px;
width: 200px;
background-color: rgba(57, 62, 70, 0.85);
color: white;
padding: 20px;
}
.waypoint_edit_button {
position: absolute;
bottom: 10px;
left: 0;
}
.waypoint_edit_heightscale {
position: relative;
bottom: 10px;
left: 0;
}
.waypoint_edit_height {
position: absolute;
bottom: 80px;
left: 10px;
}
.waypoint_edit_heightscale_input {
width: 4em;
}
.waypoint_edit_height_input {
width: 4em;
}
input[type=range] {
-webkit-appearance: none;
appearance: none;
background-color: #eaeaea;
height: 2px;
width: 100%;
border-radius: 6px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
cursor: pointer;
position: relative;
width: 22px;
height: 22px;
display: block;
background-color: rgba(0, 173, 181, 1.0);
border-radius: 50%;
-webkit-border-radius: 50%;
}
#waypointGroundHeightSlider {
position: relative;
top: 200px;
right: 98px;
transform: rotate(-90deg);
width: 300px;
}
/* .video_streaming {
position: absolute;
z-index: 1000;
top: 5em;
left: 20em;
height:240px;
width: 320px;
background-color: rgba(57, 62, 70, 0.85);
color: white;
padding: 20px;
} */
.video_streaming_wrapper {
position: relative;
height: 100%;
width: 100%;
}
.video_streaming_margin {
position: relative;
height: 100%
}
.video_streaming_button {
position: relative;
}
.video_streaming_button_table {
position: relative;
border-collapse: separate;
border-spacing: 10px;
width: 350px;
margin: 0 auto;
}
.video_streaming {
position: relative;
background-attachment: fixed;
background-position: center center;
background-size: cover;
top: 0;
left: 0;
width: 100%;
height: 100%;
} | 0.617282 | 0.098252 |
@font-face {
font-family: Noway;
src: url(assets/noway-regular-webfont.woff);
}
@font-face {
font-family: "Gotham Bold";
src: url(assets/gotham_bold.woff2);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
svg {
pointer-events: none;
}
body {
height: 100vh;
margin: 0;
padding: 0;
width: 100vw;
}
a {
color: inherit;
}
#config-form {
background: #8dc3eb;
height: 100vh;
min-height: 785px;
}
#form-container {
position: relative;
width: 980px;
height: 682px;
margin: auto;
top: 70px;
}
#tooltips {
padding: 25px;
color: #df1b12;
font-family: Noway;
font-size: 14px;
line-height: 21px;
}
#tooltips span {
font-weight: bold;
}
#tooltips img {
width: 219px;
height: 131px;
margin-bottom: 25px;
}
.flex-container {
display: flex;
height: 545px;
}
#tooltips {
width: 273px;
margin-right: 1px;
background-color: #fff;
}
.tab {
flex-grow: 1;
padding: 79px 79px 0;
display: none;
background: #fff;
width: auto;
}
h1 {
font-family: Gotham Bold;
font-size: 20px;
}
.tab p {
font-family: Noway;
font-size: 16px;
margin: 35px 0 31px 0;
}
.tab label {
font-family: Gotham Bold;
font-size: 16px;
}
input.invalid {
background-color: #ffdddd;
}
input {
outline: none;
}
#progress {
position: relative;
}
#progress::after {
content: "";
clear: both;
display: table;
}
#progress hr {
position: absolute;
top: 50%;
right: 0;
left: 0;
border: 1px solid #fff;
}
.progress-icon {
position: relative;
width: 50px;
height: 50px;
float: left;
font-size: 24px;
font-family: Gotham Bold;
color: #fff;
text-align: center;
border-radius: 50%;
border: 1px solid #fff;
line-height: 50px;
background: #8dc3eb;
margin: 60px 138px;
}
.navigation-buttons button, #how-to-get-api-key, #gen-admin-key {
border: 0px;
font-family: Gotham Bold;
font-size: 14px;
text-transform: uppercase;
padding: 16px 25px;
}
#how-to-get-api-key {
background: #fff;
margin-top: 32px;
}
#how-to-get-api-key svg {
color: #df1b12;
}
.navigation-buttons {
position: absolute;
right: 50px;
bottom: 0px;
}
.tab button[id*="save"] {
background: #df1b12;
color: #fff;
}
.tab button[id*="back-to"] {
background: #e5e5e5;
margin-right: 12px;
}
.select-button {
padding: 13px;
margin-top: 40px;
font-family: Noway;
font-size: 14px;
color: #666;
border: none;
background: #fff;
}
.select-button.selected {
color: #000;
border-bottom: 5px solid #df1b12;
}
#admin-key-form hr {
margin-bottom: 40px;
border-width: 0 0 1px 0;
border-color: #e5e5e5;
}
label[for="secret"], label[for="generated-admin-key"] {
display: none;
}
#gen-admin-key {
background: #000;
color: #fff;
margin-top: 23px;
width: 100%;
}
label[for="generated-admin-key"] {
font-family: Noway;
font-size: 16px;
line-height: 21px;
}
#generated-admin-key {
font-weight: bold;
}
#map {
display: none;
height: 100vh;
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
width: 100vw;
}
#search-form,
#corridor-form {
display: none;
}
.tt-overlay-panel {
background-color: #ffffff;
border-radius: 1px;
box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.16);
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
z-index: 1;
}
.tt-overlay-panel__close {
background: none;
border: 1px solid transparent;
outline: none;
position: absolute;
right: 0;
top: 0;
}
.tt-overlay-panel__close:focus {
border: 1px solid #94b106;
}
.tt-overlay-panel__close:before {
content: "\D7";
display: block;
}
.tt-overlay-panel.-center {
left: 50%;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.tt-overlay-panel.-left-top {
background: none;
box-shadow: none;
left: 8px;
position: absolute;
top: 105px;
}
.tt-overlay-panel.-right-top {
position: absolute;
right: 16px;
top: 16px;
}
.tt-overlay-panel.-medium {
max-width: 300px;
}
.fence-choice {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.fence-choice__label {
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
font-size: 18px;
line-height: 1.22;
letter-spacing: -0.25px;
padding: 48px 0 13px 24px;
}
.fence-choice__content {
padding: 0 20px 24px 20px;
}
.btn-submit,
.fence-choice input[type="button"].btn-submit {
background: #8dc3eb;
border: none;
color: #fff;
height: 30px;
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
width: 100%;
-ms-flex-item-align: center;
align-self: center;
}
.btn,
.fence-choice input[type="button"].btn {
background: #fff no-repeat top center;
border: none;
border-radius: 0;
outline: none;
color: #000;
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
font-weight: lighter;
font-size: 0.95em;
height: 100px !important;
margin-top: 0;
width: 75px;
}
#config {
background: none;
border: none;
outline: none;
}
button#config:hover .icon-fill {
fill: #F2F2F2 !important;
}
.choice-button {
font-size: 12px;
font-family: Noway;
}
.fence-choice button.btn:hover .icon-fill {
fill: #61ade0;
}
.fence-choice button.btn:hover .icon-stroke {
stroke: #61ade0;
}
.fence-choice button.btn.active .icon-fill {
fill: #8dc3eb;
}
.fence-choice button.btn.active .icon-stroke {
stroke: #8dc3eb;
}
.fence-choice button.btn.active {
font-weight: bold;
}
.btn-submit--remove {
background-color: #d73131;
color: #fff;
}
.btn-submit--search {
box-shadow: none !important;
-webkit-box-shadow: none !important;
height: 40px !important;
-ms-flex-item-align: end;
align-self: flex-end;
}
.tt-search-box-input-container.-focused {
box-shadow: none !important;
border: 1px solid #ddd !important;
}
.form {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
font-size: 1.23em;
}
.form--borders {
border-top: 2px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
}
.form__row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 24px;
}
.form__row--compact {
padding: 5px;
}
.form__input {
border: 1px solid #ddd;
display: block;
font-family: Noway;
font-size: 16px;
margin-top: 5px;
padding: 10px 15px;
width: 100%;
color: #707070;
}
.form__label {
font-family: Gotham Bold;
font-size: 14px;
padding-bottom: 15px;
}
.toast {
display: none;
overflow: auto;
position: fixed;
z-index: 1100;
width: 450px;
right: 50px;
top: 50px;
padding: 16px;
}
.toast__text {
display: flex;
color: #fff;
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
}
.toast__text:before {
flex-shrink: 0;
position: relative;
bottom: -2px;
margin-right: 16px;
width: 16px;
height: 16px;
content: "";
background: url("assets/error-symbol.svg") no-repeat;
background-size: 16px 16px;
}
.toast.error {
background-color: #df1b12;
}
.toast.hint {
background-color: #8dc3eb;
}
.settings-modal {
display: "block";
}
.mapboxgl-popup .mapboxgl-popup-close-button {
color: #6b6b6b;
font-size: 18px;
padding-right: 7px;
padding-top: 3px;
} | style.css | @font-face {
font-family: Noway;
src: url(assets/noway-regular-webfont.woff);
}
@font-face {
font-family: "Gotham Bold";
src: url(assets/gotham_bold.woff2);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
svg {
pointer-events: none;
}
body {
height: 100vh;
margin: 0;
padding: 0;
width: 100vw;
}
a {
color: inherit;
}
#config-form {
background: #8dc3eb;
height: 100vh;
min-height: 785px;
}
#form-container {
position: relative;
width: 980px;
height: 682px;
margin: auto;
top: 70px;
}
#tooltips {
padding: 25px;
color: #df1b12;
font-family: Noway;
font-size: 14px;
line-height: 21px;
}
#tooltips span {
font-weight: bold;
}
#tooltips img {
width: 219px;
height: 131px;
margin-bottom: 25px;
}
.flex-container {
display: flex;
height: 545px;
}
#tooltips {
width: 273px;
margin-right: 1px;
background-color: #fff;
}
.tab {
flex-grow: 1;
padding: 79px 79px 0;
display: none;
background: #fff;
width: auto;
}
h1 {
font-family: Gotham Bold;
font-size: 20px;
}
.tab p {
font-family: Noway;
font-size: 16px;
margin: 35px 0 31px 0;
}
.tab label {
font-family: Gotham Bold;
font-size: 16px;
}
input.invalid {
background-color: #ffdddd;
}
input {
outline: none;
}
#progress {
position: relative;
}
#progress::after {
content: "";
clear: both;
display: table;
}
#progress hr {
position: absolute;
top: 50%;
right: 0;
left: 0;
border: 1px solid #fff;
}
.progress-icon {
position: relative;
width: 50px;
height: 50px;
float: left;
font-size: 24px;
font-family: Gotham Bold;
color: #fff;
text-align: center;
border-radius: 50%;
border: 1px solid #fff;
line-height: 50px;
background: #8dc3eb;
margin: 60px 138px;
}
.navigation-buttons button, #how-to-get-api-key, #gen-admin-key {
border: 0px;
font-family: Gotham Bold;
font-size: 14px;
text-transform: uppercase;
padding: 16px 25px;
}
#how-to-get-api-key {
background: #fff;
margin-top: 32px;
}
#how-to-get-api-key svg {
color: #df1b12;
}
.navigation-buttons {
position: absolute;
right: 50px;
bottom: 0px;
}
.tab button[id*="save"] {
background: #df1b12;
color: #fff;
}
.tab button[id*="back-to"] {
background: #e5e5e5;
margin-right: 12px;
}
.select-button {
padding: 13px;
margin-top: 40px;
font-family: Noway;
font-size: 14px;
color: #666;
border: none;
background: #fff;
}
.select-button.selected {
color: #000;
border-bottom: 5px solid #df1b12;
}
#admin-key-form hr {
margin-bottom: 40px;
border-width: 0 0 1px 0;
border-color: #e5e5e5;
}
label[for="secret"], label[for="generated-admin-key"] {
display: none;
}
#gen-admin-key {
background: #000;
color: #fff;
margin-top: 23px;
width: 100%;
}
label[for="generated-admin-key"] {
font-family: Noway;
font-size: 16px;
line-height: 21px;
}
#generated-admin-key {
font-weight: bold;
}
#map {
display: none;
height: 100vh;
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
width: 100vw;
}
#search-form,
#corridor-form {
display: none;
}
.tt-overlay-panel {
background-color: #ffffff;
border-radius: 1px;
box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.16);
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
z-index: 1;
}
.tt-overlay-panel__close {
background: none;
border: 1px solid transparent;
outline: none;
position: absolute;
right: 0;
top: 0;
}
.tt-overlay-panel__close:focus {
border: 1px solid #94b106;
}
.tt-overlay-panel__close:before {
content: "\D7";
display: block;
}
.tt-overlay-panel.-center {
left: 50%;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.tt-overlay-panel.-left-top {
background: none;
box-shadow: none;
left: 8px;
position: absolute;
top: 105px;
}
.tt-overlay-panel.-right-top {
position: absolute;
right: 16px;
top: 16px;
}
.tt-overlay-panel.-medium {
max-width: 300px;
}
.fence-choice {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.fence-choice__label {
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
font-size: 18px;
line-height: 1.22;
letter-spacing: -0.25px;
padding: 48px 0 13px 24px;
}
.fence-choice__content {
padding: 0 20px 24px 20px;
}
.btn-submit,
.fence-choice input[type="button"].btn-submit {
background: #8dc3eb;
border: none;
color: #fff;
height: 30px;
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
width: 100%;
-ms-flex-item-align: center;
align-self: center;
}
.btn,
.fence-choice input[type="button"].btn {
background: #fff no-repeat top center;
border: none;
border-radius: 0;
outline: none;
color: #000;
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
font-weight: lighter;
font-size: 0.95em;
height: 100px !important;
margin-top: 0;
width: 75px;
}
#config {
background: none;
border: none;
outline: none;
}
button#config:hover .icon-fill {
fill: #F2F2F2 !important;
}
.choice-button {
font-size: 12px;
font-family: Noway;
}
.fence-choice button.btn:hover .icon-fill {
fill: #61ade0;
}
.fence-choice button.btn:hover .icon-stroke {
stroke: #61ade0;
}
.fence-choice button.btn.active .icon-fill {
fill: #8dc3eb;
}
.fence-choice button.btn.active .icon-stroke {
stroke: #8dc3eb;
}
.fence-choice button.btn.active {
font-weight: bold;
}
.btn-submit--remove {
background-color: #d73131;
color: #fff;
}
.btn-submit--search {
box-shadow: none !important;
-webkit-box-shadow: none !important;
height: 40px !important;
-ms-flex-item-align: end;
align-self: flex-end;
}
.tt-search-box-input-container.-focused {
box-shadow: none !important;
border: 1px solid #ddd !important;
}
.form {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
font-size: 1.23em;
}
.form--borders {
border-top: 2px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
}
.form__row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding: 24px;
}
.form__row--compact {
padding: 5px;
}
.form__input {
border: 1px solid #ddd;
display: block;
font-family: Noway;
font-size: 16px;
margin-top: 5px;
padding: 10px 15px;
width: 100%;
color: #707070;
}
.form__label {
font-family: Gotham Bold;
font-size: 14px;
padding-bottom: 15px;
}
.toast {
display: none;
overflow: auto;
position: fixed;
z-index: 1100;
width: 450px;
right: 50px;
top: 50px;
padding: 16px;
}
.toast__text {
display: flex;
color: #fff;
font-family: Gotham Bold, Helvetica, Arial, sans-serif;
}
.toast__text:before {
flex-shrink: 0;
position: relative;
bottom: -2px;
margin-right: 16px;
width: 16px;
height: 16px;
content: "";
background: url("assets/error-symbol.svg") no-repeat;
background-size: 16px 16px;
}
.toast.error {
background-color: #df1b12;
}
.toast.hint {
background-color: #8dc3eb;
}
.settings-modal {
display: "block";
}
.mapboxgl-popup .mapboxgl-popup-close-button {
color: #6b6b6b;
font-size: 18px;
padding-right: 7px;
padding-top: 3px;
} | 0.312685 | 0.069985 |
*{
margin:0;
padding:0;
}
body{
font-size:12px;
color:#444444;
background-color:#ffffff;
}
ul{
list-style-type:none;
}
a:link, a:visited, a:hover, a:active{
text-decoration:none;
color:#444444;
}
.clear{
clear:both;
}
/*헤더*/
header{
height:140px;
width:100%;
}
/*header #top{
width:990px;
margin:0 auto;
}*/
header #main_menu #logo{
float:left;
margin:0px 0 0 0;
}
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {
width: 100%;
padding: 0;
}
}
@media screen and (max-width: 400px) {
#main_menu a, #subsub_menu a,{
float: none;
width: 100%;
}
}
/*검색*/
header #top_menu li{
display:inline;
margin-left:10px;
font-family: 'Noto Sans KR', sans-serif;
}
header #main_menu{
margin-top:0px;
background-color:#ffffff;
width:100%;
}
header #main_menu ul{
width:100%;
margin:auto;
padding: 15px;
font-size:13px;
font-family: 'Noto Sans KR', sans-serif;
text-align:center;
}
header #main_menu li{
display:inline;
margin:10px 0 10px 57px;
}
header #main_menu a:link{
color:#000000;
}
header #main_menu a:visited{
color:#000000;
}
header #main_menu a:hover{
color:#898989;
}
header #main_menu a:active{
color:#000000;
}
header #sub_menu {
width:100%;
margin-top: 0px;
background-color:#000000;
}
header #sub_menu ul{
width: 90%;
margin:auto;
padding:50px;
text-align:center;
font-family: 'Noto Sans KR', sans-serif;
}
header #sub_menu li{
display: inline;
margin:5px 0 0 57px;
}
header #sub_menu a:link{
color:#ffffff;
}
header #sub_menu a:visited{
color:#ffffff;
}
header #sub_menu a:hover{
color:#898989;
}
header #sub_menu a:active{
color:#ffffff;
}
section#main{
width:100%;
margin:auto;
float:left;
}
#main_img{
width: 100%;
margin:36px 0 0 0;
height:300px;
}
section#main_main {
width:100%;
float:left;
margin-top: -80px;
margin-left:0px;
margin-right:20px;
padding: 0px 0 0 0;
font-family: 'Noto Sans KR', sans-serif;
/* border:solid 3px #000000;*/
}
section#main_contents {
width:100%;
float:left;
margin-top: 25px;
margin-left:0px;
margin-right:20px;
padding: 30px 0 0 0;
font-family: 'Noto Sans KR', sans-serif;
/* border:solid 3px #000000;*/
}
section#main_contents h3{
margin-top: 30px;
margin-left:80px;
line-height: 150%;
text-decoration: underline;
font-size: 50px;
font-family: 'Noto Sans KR', sans-serif;
}
section#main_contents p{
margin-top: 30px;
margin-right:30px;
line-height: 180%;
margin-left:80px;
font-family: 'Noto Sans KR', sans-serif;
font-size: 14px;
}
section#main_contents li{
padding: 10px;
margin: 5px 0 0 0;
}
div.full{
display:inline-block;
width:100%;
}
div.full img{
display:inline-block;
width:100%;
}
div.tip{
display:inline-block;
margin-left:80px;
margin-right:20px;
}
div.tip img{
display:inline-block;
margin-top: 30px;
width:100%;
}
div.tip img:hover{
width:120%;
}
div.tip iframe{
margin-top:50px;
}
div.play{
width:80%;
margin-left:80px;
margin-top:30px;
}
div.web{
display:inline-block;
width:100%;
margin:20px;
}
div.web img{
width:70%;
margin-left:40px;
}
div.pro{
width:100%;
margin-left:80px;
}
div.pro iframe{
width:70%;
height:1000px;
margin:25px;
}
div.cap {
display:inline-block;
width:100%;
margin:20px;
}
div.cap img{
width:80%;
margin-left:40px;
}
div.cap img:hover{
width:100%;
}
footer{
height:200px;
margin-top:50px;
width:100%;
}
footer #footer_menu_box{
height:40px;
border-top:solid 1px #B7B7B7;
}
footer #footer_menu{
width:100%;
text-align: center;
padding-top:15px;
}
footer #footer_menu ul{
margin-left:20px;
font-family: 'Noto Sans KR', sans-serif;
}
footer #footer_menu li{
display:inline;
margin-left:20px;
font-size:13px;
}
footer #footer_menu a:link{
color:#000000;
}
footer #footer_menu a:hover{
color:#000000;
font-weight:bold;
}
footer #footer_menu a:visited{
color:#000000;
}
footer #footer_menu a:active{
color:#000000;
font-weight:bold;
}
footer #footer_box{
width:60%;
margin:auto;
}
footer #footer_box div{
float:left;
}
footer #footer_box #footer_logo{
margin:50px 0 0 100px;
float:left;
}
footer #footer_box #address{
margin:50px 0 0 90px;
line-height: 160%;
float:left;
}
footer #footer_box #footer_banner{
margin:50px 0 0 70px;
} | center.css | *{
margin:0;
padding:0;
}
body{
font-size:12px;
color:#444444;
background-color:#ffffff;
}
ul{
list-style-type:none;
}
a:link, a:visited, a:hover, a:active{
text-decoration:none;
color:#444444;
}
.clear{
clear:both;
}
/*헤더*/
header{
height:140px;
width:100%;
}
/*header #top{
width:990px;
margin:0 auto;
}*/
header #main_menu #logo{
float:left;
margin:0px 0 0 0;
}
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {
width: 100%;
padding: 0;
}
}
@media screen and (max-width: 400px) {
#main_menu a, #subsub_menu a,{
float: none;
width: 100%;
}
}
/*검색*/
header #top_menu li{
display:inline;
margin-left:10px;
font-family: 'Noto Sans KR', sans-serif;
}
header #main_menu{
margin-top:0px;
background-color:#ffffff;
width:100%;
}
header #main_menu ul{
width:100%;
margin:auto;
padding: 15px;
font-size:13px;
font-family: 'Noto Sans KR', sans-serif;
text-align:center;
}
header #main_menu li{
display:inline;
margin:10px 0 10px 57px;
}
header #main_menu a:link{
color:#000000;
}
header #main_menu a:visited{
color:#000000;
}
header #main_menu a:hover{
color:#898989;
}
header #main_menu a:active{
color:#000000;
}
header #sub_menu {
width:100%;
margin-top: 0px;
background-color:#000000;
}
header #sub_menu ul{
width: 90%;
margin:auto;
padding:50px;
text-align:center;
font-family: 'Noto Sans KR', sans-serif;
}
header #sub_menu li{
display: inline;
margin:5px 0 0 57px;
}
header #sub_menu a:link{
color:#ffffff;
}
header #sub_menu a:visited{
color:#ffffff;
}
header #sub_menu a:hover{
color:#898989;
}
header #sub_menu a:active{
color:#ffffff;
}
section#main{
width:100%;
margin:auto;
float:left;
}
#main_img{
width: 100%;
margin:36px 0 0 0;
height:300px;
}
section#main_main {
width:100%;
float:left;
margin-top: -80px;
margin-left:0px;
margin-right:20px;
padding: 0px 0 0 0;
font-family: 'Noto Sans KR', sans-serif;
/* border:solid 3px #000000;*/
}
section#main_contents {
width:100%;
float:left;
margin-top: 25px;
margin-left:0px;
margin-right:20px;
padding: 30px 0 0 0;
font-family: 'Noto Sans KR', sans-serif;
/* border:solid 3px #000000;*/
}
section#main_contents h3{
margin-top: 30px;
margin-left:80px;
line-height: 150%;
text-decoration: underline;
font-size: 50px;
font-family: 'Noto Sans KR', sans-serif;
}
section#main_contents p{
margin-top: 30px;
margin-right:30px;
line-height: 180%;
margin-left:80px;
font-family: 'Noto Sans KR', sans-serif;
font-size: 14px;
}
section#main_contents li{
padding: 10px;
margin: 5px 0 0 0;
}
div.full{
display:inline-block;
width:100%;
}
div.full img{
display:inline-block;
width:100%;
}
div.tip{
display:inline-block;
margin-left:80px;
margin-right:20px;
}
div.tip img{
display:inline-block;
margin-top: 30px;
width:100%;
}
div.tip img:hover{
width:120%;
}
div.tip iframe{
margin-top:50px;
}
div.play{
width:80%;
margin-left:80px;
margin-top:30px;
}
div.web{
display:inline-block;
width:100%;
margin:20px;
}
div.web img{
width:70%;
margin-left:40px;
}
div.pro{
width:100%;
margin-left:80px;
}
div.pro iframe{
width:70%;
height:1000px;
margin:25px;
}
div.cap {
display:inline-block;
width:100%;
margin:20px;
}
div.cap img{
width:80%;
margin-left:40px;
}
div.cap img:hover{
width:100%;
}
footer{
height:200px;
margin-top:50px;
width:100%;
}
footer #footer_menu_box{
height:40px;
border-top:solid 1px #B7B7B7;
}
footer #footer_menu{
width:100%;
text-align: center;
padding-top:15px;
}
footer #footer_menu ul{
margin-left:20px;
font-family: 'Noto Sans KR', sans-serif;
}
footer #footer_menu li{
display:inline;
margin-left:20px;
font-size:13px;
}
footer #footer_menu a:link{
color:#000000;
}
footer #footer_menu a:hover{
color:#000000;
font-weight:bold;
}
footer #footer_menu a:visited{
color:#000000;
}
footer #footer_menu a:active{
color:#000000;
font-weight:bold;
}
footer #footer_box{
width:60%;
margin:auto;
}
footer #footer_box div{
float:left;
}
footer #footer_box #footer_logo{
margin:50px 0 0 100px;
float:left;
}
footer #footer_box #address{
margin:50px 0 0 90px;
line-height: 160%;
float:left;
}
footer #footer_box #footer_banner{
margin:50px 0 0 70px;
} | 0.211091 | 0.064683 |
.rc-checkbox {
white-space: nowrap;
cursor: pointer;
outline: none;
display: inline-block;
position: relative;
line-height: 1;
vertical-align: middle;
}
.rc-checkbox:hover .rc-checkbox-inner,
.rc-checkbox-input:focus + .rc-checkbox-inner {
border-color: #3dbcf6;
}
.rc-checkbox-inner {
position: relative;
top: 0;
left: 0;
display: inline-block;
width: 14px;
height: 14px;
border-width: 1px;
border-style: solid;
border-radius: 3px;
border-color: #d9d9d9;
background-color: #ffffff;
transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.rc-checkbox-inner:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
border: 2px solid #ffffff;
border-top: 0;
border-left: 0;
content: ' ';
animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
animation-duration: 0.3s;
animation-name: amCheckboxOut;
}
.rc-checkbox-input {
position: absolute;
left: 0;
z-index: 9999;
cursor: pointer;
opacity: 0;
top: 0;
bottom: 0;
right: 0;
}
/* Checked state */
.rc-checkbox-checked:hover .rc-checkbox-inner {
border-color: #3dbcf6;
}
.rc-checkbox-checked .rc-checkbox-inner {
border-color: #3dbcf6;
background-color: #3dbcf6;
}
.rc-checkbox-checked .rc-checkbox-inner:after {
transform: rotate(45deg);
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
border: 2px solid #ffffff;
border-top: 0;
border-left: 0;
content: ' ';
animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
animation-duration: 0.3s;
animation-name: amCheckboxOut;
}
@media print {
.rc-checkbox-checked .rc-checkbox-inner {
box-shadow: inset 0 0 0 16px #3dbcf6;
}
}
.rc-checkbox-disabled.rc-checkbox-checked:hover .rc-checkbox-inner {
border-color: #d9d9d9;
}
.rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner {
background-color: #f3f3f3;
border-color: #d9d9d9;
}
.rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner:after {
animation-name: none;
border-color: #cccccc;
}
@media print {
.rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner {
box-shadow: inset 0 0 0 16px #f3f3f3;
}
}
.rc-checkbox-disabled:hover .rc-checkbox-inner {
border-color: #d9d9d9;
}
.rc-checkbox-disabled .rc-checkbox-inner {
border-color: #d9d9d9;
background-color: #f3f3f3;
}
.rc-checkbox-disabled .rc-checkbox-inner:after {
animation-name: none;
border-color: #f3f3f3;
}
.rc-checkbox-disabled .rc-checkbox-inner-input {
cursor: default;
}
@keyframes amCheckboxIn {
0% {
opacity: 0;
transform-origin: 50% 50%;
transform: scale(0, 0) rotate(45deg);
}
100% {
opacity: 1;
transform-origin: 50% 50%;
transform: scale(1, 1) rotate(45deg);
}
}
@keyframes amCheckboxOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
} | node_modules/rc-checkbox/assets/index.css | .rc-checkbox {
white-space: nowrap;
cursor: pointer;
outline: none;
display: inline-block;
position: relative;
line-height: 1;
vertical-align: middle;
}
.rc-checkbox:hover .rc-checkbox-inner,
.rc-checkbox-input:focus + .rc-checkbox-inner {
border-color: #3dbcf6;
}
.rc-checkbox-inner {
position: relative;
top: 0;
left: 0;
display: inline-block;
width: 14px;
height: 14px;
border-width: 1px;
border-style: solid;
border-radius: 3px;
border-color: #d9d9d9;
background-color: #ffffff;
transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.rc-checkbox-inner:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
border: 2px solid #ffffff;
border-top: 0;
border-left: 0;
content: ' ';
animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
animation-duration: 0.3s;
animation-name: amCheckboxOut;
}
.rc-checkbox-input {
position: absolute;
left: 0;
z-index: 9999;
cursor: pointer;
opacity: 0;
top: 0;
bottom: 0;
right: 0;
}
/* Checked state */
.rc-checkbox-checked:hover .rc-checkbox-inner {
border-color: #3dbcf6;
}
.rc-checkbox-checked .rc-checkbox-inner {
border-color: #3dbcf6;
background-color: #3dbcf6;
}
.rc-checkbox-checked .rc-checkbox-inner:after {
transform: rotate(45deg);
position: absolute;
left: 4px;
top: 1px;
display: table;
width: 5px;
height: 8px;
border: 2px solid #ffffff;
border-top: 0;
border-left: 0;
content: ' ';
animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
animation-duration: 0.3s;
animation-name: amCheckboxOut;
}
@media print {
.rc-checkbox-checked .rc-checkbox-inner {
box-shadow: inset 0 0 0 16px #3dbcf6;
}
}
.rc-checkbox-disabled.rc-checkbox-checked:hover .rc-checkbox-inner {
border-color: #d9d9d9;
}
.rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner {
background-color: #f3f3f3;
border-color: #d9d9d9;
}
.rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner:after {
animation-name: none;
border-color: #cccccc;
}
@media print {
.rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner {
box-shadow: inset 0 0 0 16px #f3f3f3;
}
}
.rc-checkbox-disabled:hover .rc-checkbox-inner {
border-color: #d9d9d9;
}
.rc-checkbox-disabled .rc-checkbox-inner {
border-color: #d9d9d9;
background-color: #f3f3f3;
}
.rc-checkbox-disabled .rc-checkbox-inner:after {
animation-name: none;
border-color: #f3f3f3;
}
.rc-checkbox-disabled .rc-checkbox-inner-input {
cursor: default;
}
@keyframes amCheckboxIn {
0% {
opacity: 0;
transform-origin: 50% 50%;
transform: scale(0, 0) rotate(45deg);
}
100% {
opacity: 1;
transform-origin: 50% 50%;
transform: scale(1, 1) rotate(45deg);
}
}
@keyframes amCheckboxOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
} | 0.48121 | 0.082475 |
body {
color: #9a9a9a;
font-family: "微软雅黑",Arial,sans-serif;
font-size: 12px;
line-height: 1.42857;
}
h1,h2{
color: #c30005;
font-family: "Advent Pro",sans-serif;
font-size: 18px;
font-weight: 700;
margin: 0 0 17px;
text-transform: uppercase;
}
#shipping-existing select{
height:100px;
}
.checkout-heading {
background: none repeat scroll 0 0 #0a0a0a;
border: 1px solid #000000;
color: #fff;
font-family: "Lato",sans-serif;
font-size: 13px;
font-weight: 700;
margin-bottom: 17px;
overflow: hidden;
padding: 10px 0 10px 21px;
position: relative;
text-transform: uppercase;
}
.checkout-heading span {
float: left;
}
.checkout-content {
display: none;
margin-bottom: 38px;
margin-top: 27px;
margin-left:10px;
overflow: hidden;
}
.checkout-content .left {
}
.checkout-content .right {
}
.checkout-content p {
color: #aaa;
font-size: 12px;
}
.checkout-content label, .checkout-content a.colorbox, .checkout-content a.colorbox b {
color: #aaa;
font-weight: 700;
}
.checkout-content label {
margin-bottom: 2px;
}
label {
cursor: default;
font-size: 12px;
margin-right: 7px;
}
.checkout-content b {
color: #141414;
}
input[type="text"], input[type="password"], select {
border: 1px solid #dcdcdc;
height: 33px;
line-height: 30px;
padding: 0 5px;
}
.checkout-content input[type="text"], .checkout-content select, .checkout-content input[type="password"] {
margin: 6px 0 8px;
width: 90%;
}
.checkout-content #login input.text {
margin: 6px 0 8px;
width: 90%;
}
.btn {
background-color: #dcdcdc;
border: medium none;
border-radius: 0;
color: #ffffff;
font-family: "Advent Pro",sans-serif;
font-size: 14px;
font-weight: 700;
padding: 10px 18px;
text-transform: uppercase;
transition: background 0.5s ease 0s;
}
.checkout-content input#button-account {
margin-top: 40px;
}
.btn-continue {
background-color: #c30005;
}
.btn-upload {
background-color: #0a0a0a;
}
.btn-primary:hover, .open .dropdown-toggle.btn-primary {
background-color: #c30005;
}
.btn-continue:hover {
background-color: #0a0a0a;
}
.checkout-heading a {
background-image: url("../images/checkout_arr.png");
background-position: 9px 11px;
background-repeat: no-repeat;
cursor: pointer;
display: block;
font-size: 14px;
font-weight: normal;
height: 31px;
margin-top: 2px;
position: absolute;
right: 0;
text-indent: -9999px;
top: 2px;
width: 31px;
}
.required {
color: #ff0000;
font-weight: bold;
}
.buttons .left {
float: left;
font-weight: 700;
text-align: left;
}
.checkout-content .error,.checkout-content .warning {
margin-bottom: 10px;
}
.error,.warning {
color: #ff0000;
display: block;
}
table.radio td input[type="radio"] {
margin:0;
padding-right:10px;
position:relative;
} | public/static/view_res/home/css/checkout.css | body {
color: #9a9a9a;
font-family: "微软雅黑",Arial,sans-serif;
font-size: 12px;
line-height: 1.42857;
}
h1,h2{
color: #c30005;
font-family: "Advent Pro",sans-serif;
font-size: 18px;
font-weight: 700;
margin: 0 0 17px;
text-transform: uppercase;
}
#shipping-existing select{
height:100px;
}
.checkout-heading {
background: none repeat scroll 0 0 #0a0a0a;
border: 1px solid #000000;
color: #fff;
font-family: "Lato",sans-serif;
font-size: 13px;
font-weight: 700;
margin-bottom: 17px;
overflow: hidden;
padding: 10px 0 10px 21px;
position: relative;
text-transform: uppercase;
}
.checkout-heading span {
float: left;
}
.checkout-content {
display: none;
margin-bottom: 38px;
margin-top: 27px;
margin-left:10px;
overflow: hidden;
}
.checkout-content .left {
}
.checkout-content .right {
}
.checkout-content p {
color: #aaa;
font-size: 12px;
}
.checkout-content label, .checkout-content a.colorbox, .checkout-content a.colorbox b {
color: #aaa;
font-weight: 700;
}
.checkout-content label {
margin-bottom: 2px;
}
label {
cursor: default;
font-size: 12px;
margin-right: 7px;
}
.checkout-content b {
color: #141414;
}
input[type="text"], input[type="password"], select {
border: 1px solid #dcdcdc;
height: 33px;
line-height: 30px;
padding: 0 5px;
}
.checkout-content input[type="text"], .checkout-content select, .checkout-content input[type="password"] {
margin: 6px 0 8px;
width: 90%;
}
.checkout-content #login input.text {
margin: 6px 0 8px;
width: 90%;
}
.btn {
background-color: #dcdcdc;
border: medium none;
border-radius: 0;
color: #ffffff;
font-family: "Advent Pro",sans-serif;
font-size: 14px;
font-weight: 700;
padding: 10px 18px;
text-transform: uppercase;
transition: background 0.5s ease 0s;
}
.checkout-content input#button-account {
margin-top: 40px;
}
.btn-continue {
background-color: #c30005;
}
.btn-upload {
background-color: #0a0a0a;
}
.btn-primary:hover, .open .dropdown-toggle.btn-primary {
background-color: #c30005;
}
.btn-continue:hover {
background-color: #0a0a0a;
}
.checkout-heading a {
background-image: url("../images/checkout_arr.png");
background-position: 9px 11px;
background-repeat: no-repeat;
cursor: pointer;
display: block;
font-size: 14px;
font-weight: normal;
height: 31px;
margin-top: 2px;
position: absolute;
right: 0;
text-indent: -9999px;
top: 2px;
width: 31px;
}
.required {
color: #ff0000;
font-weight: bold;
}
.buttons .left {
float: left;
font-weight: 700;
text-align: left;
}
.checkout-content .error,.checkout-content .warning {
margin-bottom: 10px;
}
.error,.warning {
color: #ff0000;
display: block;
}
table.radio td input[type="radio"] {
margin:0;
padding-right:10px;
position:relative;
} | 0.426322 | 0.109468 |
html, body {
height: 100%;
align-items: baseline;
}
.content{
padding-left: 200px;
}
#editor {
margin-left: 200px !important;
vertical-align: top;
padding-right: 14px;
padding-top: 80px;
padding-bottom: 84px;
}
#content{
min-height: 380px;
background-color: #fff;
border-right: 1px solid #f1f1f1;
min-height: calc(100vh);
-webkit-transition: opacity 250ms cubic-bezier(0.4,0,0.6,1);
transition: opacity 250ms
}
#agenda-view {
height: 100% !important;
border-style: groove;
vertical-align: top;
padding-left: 44px;
padding-right: 50px;
padding-top: 20px;
padding-bottom: inherit;
margin-right: 100px;
}
.scheduler {
position: absolute;
z-index: 1;
will-change: transform;
top: 100px;
transform: translate3d(210px, 20px, 0px);
}
.navbar-fixed-left {
height: 100%;
flex: 1;
position: absolute !important;
padding-bottom: inherit;
border-radius: 0;
height: 100%;
opacity: .9;
width: 150px;
background: #222;
z-index: 10000;
float: none;
}
.navbar-fixed-left .navbar-nav > li a {
height: 100%;
display: block;
text-decoration: none;
padding-bottom: 50px;
color: #999;
float: left;
width: 130px;
background: #252525;
border-top: 1px solid #373737;
border-bottom: 1px solid #1A1A1A;
}
.navbar-fixed-right {
float: right;
margin-bottom: 20px;
}
textarea
{
background-image: -webkit-linear-gradient(left, white 10px, transparent 10px), -webkit-linear-gradient(right, white 10px, transparent 10px), -webkit-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-image: -moz-linear-gradient(left, white 10px, transparent 10px), -moz-linear-gradient(right, white 10px, transparent 10px), -moz-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-image: -ms-linear-gradient(left, white 10px, transparent 10px), -ms-linear-gradient(right, white 10px, transparent 10px), -ms-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-image: -o-linear-gradient(left, white 10px, transparent 10px), -o-linear-gradient(right, white 10px, transparent 10px), -o-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-image: linear-gradient(left, white 10px, transparent 10px), linear-gradient(right, white 10px, transparent 10px), linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-size: 100% 100%, 100% 100%, 100% 31px;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
line-height: 31px;
font-family: Arial, Helvetica, Sans-serif;
padding: 8px;
width:300px;
height:500px;
} | app/public/style.css | html, body {
height: 100%;
align-items: baseline;
}
.content{
padding-left: 200px;
}
#editor {
margin-left: 200px !important;
vertical-align: top;
padding-right: 14px;
padding-top: 80px;
padding-bottom: 84px;
}
#content{
min-height: 380px;
background-color: #fff;
border-right: 1px solid #f1f1f1;
min-height: calc(100vh);
-webkit-transition: opacity 250ms cubic-bezier(0.4,0,0.6,1);
transition: opacity 250ms
}
#agenda-view {
height: 100% !important;
border-style: groove;
vertical-align: top;
padding-left: 44px;
padding-right: 50px;
padding-top: 20px;
padding-bottom: inherit;
margin-right: 100px;
}
.scheduler {
position: absolute;
z-index: 1;
will-change: transform;
top: 100px;
transform: translate3d(210px, 20px, 0px);
}
.navbar-fixed-left {
height: 100%;
flex: 1;
position: absolute !important;
padding-bottom: inherit;
border-radius: 0;
height: 100%;
opacity: .9;
width: 150px;
background: #222;
z-index: 10000;
float: none;
}
.navbar-fixed-left .navbar-nav > li a {
height: 100%;
display: block;
text-decoration: none;
padding-bottom: 50px;
color: #999;
float: left;
width: 130px;
background: #252525;
border-top: 1px solid #373737;
border-bottom: 1px solid #1A1A1A;
}
.navbar-fixed-right {
float: right;
margin-bottom: 20px;
}
textarea
{
background-image: -webkit-linear-gradient(left, white 10px, transparent 10px), -webkit-linear-gradient(right, white 10px, transparent 10px), -webkit-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-image: -moz-linear-gradient(left, white 10px, transparent 10px), -moz-linear-gradient(right, white 10px, transparent 10px), -moz-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-image: -ms-linear-gradient(left, white 10px, transparent 10px), -ms-linear-gradient(right, white 10px, transparent 10px), -ms-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-image: -o-linear-gradient(left, white 10px, transparent 10px), -o-linear-gradient(right, white 10px, transparent 10px), -o-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-image: linear-gradient(left, white 10px, transparent 10px), linear-gradient(right, white 10px, transparent 10px), linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
background-size: 100% 100%, 100% 100%, 100% 31px;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
line-height: 31px;
font-family: Arial, Helvetica, Sans-serif;
padding: 8px;
width:300px;
height:500px;
} | 0.508056 | 0.116915 |
body {
background-color: rgb(160, 177, 112);
color:black;
font-family: 'Josefin', sans-serif;
font-size: 14px;
line-height: 1.5rem;
margin: 5px;
padding: 5px;
border: 5px;
font-size: 100%;
vertical-align: middle;
}
p {
margin: 30px;
}
ul{
margin: 60px;
}
li {
display: inline;
margin: 30px;
padding: 5px;
border: 2px grey;
}
li img {
height: 250px;
width: 250px;
margin: 40px,20px,20px,10px;
}
h1{
font-family: 'Montserrat', sans-serif;
font-size: 22px;
color: black;
background: grey;
margin-top: 20px;
}
h2 {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
color: black;
margin-top: 20px;
margin-bottom: 40px;
}
.button-custom{
background:grey;
color: black;
}
.button-reset{
background: black;
color: grey;
}
/*
#refresh{
background:grey;
font-family: Georgia, serif;
font-size: 18px;
color: white;
padding:24px;
margin-bottom: 90px;
margin-right: 90px;
text-align: center;
}
#refresh:focus{
background: white;
color: gray;
}
*/
#chart{
margin: 30px;
font-size: 14px;
}
canvas{
background: white ;
}
/* table {
margin: 30px;
}
table.product-data {
empty-cells: hide;
font-family: 'Montserrat', sans-serif;
max-width: 100%;
border-collapse: separate;
margin: 30px;
}
td,tr {
padding: 15px;
margin: 10px;
border: .1px solid rgb(31, 27, 60);
}
tr{
background-color: white;
color: rgb(128, 128, 128);
}
tr td:first-child{
background-color: #f7f4f4;
color:rgb(119, 0, 255);
}
th {
background-color: white;
color: rgb(85, 80, 119);
border: 1px solid slategray;
padding: 10px;
margin: 5px;
}
section.footer {
background-color: white;
color: rgb(206, 73, 12);
font-family: 'Josefin Sans', sans-serif;
font-size: 12px;
padding: 10px;
text-align: center;
margin-top: 40px;
}
*/
/* kjj */
/* hkjhkjlkjlkl */ | css/style.css | body {
background-color: rgb(160, 177, 112);
color:black;
font-family: 'Josefin', sans-serif;
font-size: 14px;
line-height: 1.5rem;
margin: 5px;
padding: 5px;
border: 5px;
font-size: 100%;
vertical-align: middle;
}
p {
margin: 30px;
}
ul{
margin: 60px;
}
li {
display: inline;
margin: 30px;
padding: 5px;
border: 2px grey;
}
li img {
height: 250px;
width: 250px;
margin: 40px,20px,20px,10px;
}
h1{
font-family: 'Montserrat', sans-serif;
font-size: 22px;
color: black;
background: grey;
margin-top: 20px;
}
h2 {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
color: black;
margin-top: 20px;
margin-bottom: 40px;
}
.button-custom{
background:grey;
color: black;
}
.button-reset{
background: black;
color: grey;
}
/*
#refresh{
background:grey;
font-family: Georgia, serif;
font-size: 18px;
color: white;
padding:24px;
margin-bottom: 90px;
margin-right: 90px;
text-align: center;
}
#refresh:focus{
background: white;
color: gray;
}
*/
#chart{
margin: 30px;
font-size: 14px;
}
canvas{
background: white ;
}
/* table {
margin: 30px;
}
table.product-data {
empty-cells: hide;
font-family: 'Montserrat', sans-serif;
max-width: 100%;
border-collapse: separate;
margin: 30px;
}
td,tr {
padding: 15px;
margin: 10px;
border: .1px solid rgb(31, 27, 60);
}
tr{
background-color: white;
color: rgb(128, 128, 128);
}
tr td:first-child{
background-color: #f7f4f4;
color:rgb(119, 0, 255);
}
th {
background-color: white;
color: rgb(85, 80, 119);
border: 1px solid slategray;
padding: 10px;
margin: 5px;
}
section.footer {
background-color: white;
color: rgb(206, 73, 12);
font-family: 'Josefin Sans', sans-serif;
font-size: 12px;
padding: 10px;
text-align: center;
margin-top: 40px;
}
*/
/* kjj */
/* hkjhkjlkjlkl */ | 0.234407 | 0.048722 |
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Header
# Navigation
## Links
## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
## Posts and pages
## Asides
## Comments
# Infinite scroll
# Media
## Captions
## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
color: #404040;
font-size: 16px;
font-size: 1.6rem;
line-height: 1.5;
font-family:'open sans', Verdana, Geneva, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
clear: both;
font-weight: 800;
font-family: 'open sans', Verdana, Geneva, sans-serif;
}
p {
margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
font-style: italic;
}
blockquote {
margin: 0 1.5em;
}
address {
margin: 0 0 1.5em;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
font-size: 1.5rem;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
code,
kbd,
tt,
var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 15px;
font-size: 1.5rem;
}
abbr,
acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark,
ins {
background: #fff9c0;
text-decoration: none;
}
big {
font-size: 125%;
}
.home .entry-content p{
color:#ffffff;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
box-sizing: border-box;
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
box-sizing: inherit;
}
body {
background: #fff; /* Fallback for when there is no custom background color defined. */
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
}
blockquote,
q {
quotes: "" "";
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
ul,
ol {
margin: 0 0 1.5em 3em;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 1.5em;
}
dt {
font-weight: bold;
}
dd {
margin: 0 1.5em 1.5em;
}
img {
height: auto; /* Make sure images are scaled correctly. */
max-width: 100%; /* Adhere to container width. */
}
table {
margin: 0 0 1.5em;
width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border: 2px solid;
border-color: #000;
background: #fff;
color: rgba(0, 0, 0, .8);
font-size: 12px;
font-size: 1.2rem;
line-height: 1;
padding: .6em 1em .6em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
border-color: #000;
background:#000;
color:#fff;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
border-color: #aaa #bbb #bbb;
box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
color: #666;
border: 1px solid #ccc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
padding: 3px;
}
textarea {
padding-left: 3px;
width: 100%;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-branding{
float:left;
}
.site-header{
padding-top:10px;
padding-bottom:10px;
border-bottom:5px solid #d7d7d7;
width: 100%;
background-color: #fff;
min-height:120x;
}
.site-title{
margin:0;
}
.site-title a{
font-size: 60px;
color: #898989;
font-weight:bold;
}
.site-description{
margin-bottom:10px;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
color: #000;
text-decoration:none;
}
a:hover,
a:focus,
a:active {
color: #959595;
text-decoration:none;
}
a:focus {
outline:none;
}
a:hover,
a:active {
outline: 0;
text-decoration:none;
}
a.more{
color:#fff;
}
a.more:hover{
color: #959595;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
display: block;
float:right;
margin-top: 5px;
}
.main-navigation .fa{
font-size:16px;
}
.main-navigation ul {
display: none;
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation li {
padding:10px;
}
.main-navigation a {
display: block;
text-decoration: none;
}
.main-navigation ul ul a {
width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a,
.main-navigation li.focus > a {
}
.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}
.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
left: 100%;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
color: #959595;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
display: block;
}
@media screen and (min-width: 37.5em) {
.menu-toggle {
display: none;
}
.main-navigation ul {
display: block;
float:right;
}
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* 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. */
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
content: "";
display: table;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */
.widget select {
max-width: 100%;
}
/* Search widget. */
.widget_search .search-submit {
display: none;
}
h1.widget-title{
font-weight: 500;
font-size: 28px;
color: #000;
border-bottom: solid 1px #edebeb;
padding-bottom: 15px;
}
.widget ul{
line-height: 32px;
list-style-type: none;
margin-left: 30px;
}
.widget_iconwp_recent_posts ul{
margin-left:0;
}
.widget_iconwp_recent_posts ul li img{
margin:0 auto;
}
.widget ul li{
position: relative;
}
.widget ul li:before{
content: "";
position: absolute;
left: -15px;
width: 0;
height: 0;
border-style: solid;
border-width: 5.5px 0 5.5px 8px;
border-color: transparent transparent transparent #000000;
top: 11px;
}
.aside-container{
position: relative;
margin: 15px 0;
}
.abs-details{
position: absolute;
bottom: 0;
width: 100%;
background: rgba(0, 0, 0, .5);
padding: 5px 20px;
}
.abs-details a{
color: #fff;
}
.abs-details a:hover{
color: #ccc;
}
.abs-details h4, .post-details h4{
margin-bottom: 0;
}
.abs-details .meta-info-date{
color: #ccc;
}
.post-details{
background:#f1f1f1;
padding: 5px 20px;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
display: block;
}
.hentry {
margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
display: none;
}
.single .byline,
.group-blog .byline {
display: inline;
}
.page-content,
.entry-content,
.entry-summary {
margin: 1.5em 0 0;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
}
.page .entry-header{
}
.archive .entry-header h1{
margin-top:0;
margin-bottom: 10px;
}
.entry-header h1{
font-size:200%;
}
.thumbnail-holder{
background:#ccc;
}
.thumbnail-holder article{
}
.thumbnail-holder .entry-content{
margin:0;
height: 100%;
}
.thumbnail-holder .entry-content p{
margin-top: 70px;
padding: 50px;
}
.thumbnail-holder .entry-header{
position: absolute;
width:100%;
bottom:0;
text-align:center;
}
.thumbnail-holder .entry-header a{
color:#ffffff;
}
.thumbnail-holder .entry-header a:hover{
text-decoration:none;
}
#colophon{
background: #f4f4f4;
padding: 0;
margin-top: 30px;
}
.entry-header .container{
display: flex;
justify-content: center;
min-height: 350px;
}
#no-featured{
background-color: #000;
}
.inner-container{
align-self: center;
text-align: center;
background: rgba(0, 0, 0, .7);
padding: 20px 30px;
}
.title-container .entry-title{
font-size: 36px;
color: #fff;
font-weight: bold;
}
.home h1.entry-title{
padding-left:10px;
padding-right:10px;
}
h1.posts-title{
text-align:center;
font-size:400%;
margin:50px 0 30px;
}
.title-container .posted-on, .title-container .posted-on a{
color: #888888;
font-style:italic;
}
.taxonomy-description p{
color:#fff;
}
.site-info{
background-color: #363636;
}
.site-info a, .site-info{
color: #ccc;
padding:10px 0;
}
.site-info a:hover{
color: #fff;
}
.breadcrumb-container{
background-color: #f1f1f1;
border-bottom: solid 2px #e1e1e1;
margin-bottom: 20px;
}
#breadcrumbs {
list-style: none;
margin: 20px 0 10px;
overflow: hidden;
display: inline-block;
}
#breadcrumbs li {
float: left;
margin-right: 15px;
}
.btn-more{
font-size: 28px;
color: #23282f;
}
.read-more{
text-align:center;
}
.fa-angle-double-right{
padding-left: 5px;
font-size: 25px;
}
.no-top-margin{
margin-top: 0;
}
/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
display: none;
}
.widget_iconwp_recent_posts ul li:before{
border:none;
}
/*--------------------------------------------------------------
## footer
--------------------------------------------------------------*/
#footer-widget{
background:#f4f4f4;
padding: 20px 0;
}
#colophon:before{
width: 0;
height: 0;
border-style: solid;
border-width: 30px 30px 0 30px;
border-color: #fff transparent transparent transparent;
margin: 0 auto;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}
.left-box-comment input[type="text"]{
width: 100%;
padding: 12px;
}
::-webkit-input-placeholder {
font-style: italic;
font-weight:100;
}
.form-submit{
text-align:center;
}
.form-submit .submit{
background: none;
color: #000;
font-size: 24px;
text-transform: uppercase;
}
#reply-title{
font-weight: 400;
font-size: 36px;
color: #000;
text-align:center;
}
.comment-notes{
text-align:center;
}
.logged-in-as{
text-align: center;
}
.comment-metadata{
line-height: 24px;
font-size: 14px;
padding-left: 72px;
}
.comment-author img {
margin-right: 12px;
width: 50px;
}
.comment-list li.comment .comment-content, .comment-list li.comment .reply{
margin-left: 72px;
font-size: 14px;
}
.comment-list li.comment .comment-content p{
margin-bottom: 10px;
}
.comment-list article{
padding: 17px 20px 20px;
margin-bottom: 20px;
}
#comments ol {
list-style-type: none;
padding: 0;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
margin: 0 auto;
}
.wp-caption-text {
text-align: center;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-caption {
display: block;
}
.circle-img{
border-radius:50%;
overflow:hidden;
display:block;
max-width:500px;
margin:20px auto;
border: 10px solid #ffffff;
}
.btn-primary{
background-color:transparent;
border:2px solid #000000;
border-radius:0;
color:#000000;
}
.btn-primary:hover{
background-color:#000000;
border-color:#ffffff;
}
@media screen and (min-width: 600px) {
.main-navigation ul ul {
float: left;
position: absolute;
top: 30px;
left: -999em;
z-index: 99999;
background:#ffffff;
}
.main-navigation ul ul ul {
left: -999em;
top: 0;
}
.main-navigation li {
float: left;
position: relative;
}
}
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
html, body, #page, #home-slider {
height:calc(100% - 30px);
margin:0;
padding:0;
}
.carousel-content-bg{
background-color: rgba(0, 0, 0, 0.7);
background: rgba(0, 0, 0, 0.7);
position: absolute;
bottom: 0;
width: 100%;
padding-bottom: 40px;
}
.carousel, .item, .active{
height:calc(100% - 0px);
}
.carousel-inner {
height:calc(100% - 0px);
text-align: center;
}
.carousel-inner h1{
font-size:300%;
color:#ffffff;
}
.carousel-inner p{
font-size:18px;
color:#ffffff;
font-weight:300;
}
.carousel {
margin-bottom: 60px;
}
.carousel .item {
background-color: #777;
}
.carousel-indicators{
bottom:10px;
}
.carousel .carousel-inner .bg {
background-repeat:no-repeat;
background-size:cover;
}
.effect-container{
background-color: rgba(0, 0, 0, 0.7);
background: rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px){
.aside-container{
width: 400px;
margin: 15px auto;
}
}
@media (min-width: 992px){
.col-md-4 {
width: 33.3%;
}
.thumbnail-holder{
height:513px;
overflow:hidden;
padding: 0;
border: 1px solid #ffffff;
}
.effect-container{
height: 120px;
overflow: hidden;
position: absolute;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
background: rgba(0, 0, 0, 0.7);
transition:0.1s;
}
.effect-container:hover{
height:513px;
transition:0.5s;
}
}
@media (min-width: 768px){
.main-navigation {
margin-top: 28px;
}
}
@media (max-width: 480px){
.main-navigation, .site-branding{
float:none;
}
.carousel-inner h1{
font-size:200%;
}
.carousel-inner p{
display:none;
}
.thumbnail-holder .entry-header{
position:relative;
}
.entry-header{
padding-bottom:10px;
}
} | blog/wp-content/themes/icon-wp/style.css | >>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Header
# Navigation
## Links
## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
## Posts and pages
## Asides
## Comments
# Infinite scroll
# Media
## Captions
## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
color: #404040;
font-size: 16px;
font-size: 1.6rem;
line-height: 1.5;
font-family:'open sans', Verdana, Geneva, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
clear: both;
font-weight: 800;
font-family: 'open sans', Verdana, Geneva, sans-serif;
}
p {
margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
font-style: italic;
}
blockquote {
margin: 0 1.5em;
}
address {
margin: 0 0 1.5em;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
font-size: 1.5rem;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
code,
kbd,
tt,
var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 15px;
font-size: 1.5rem;
}
abbr,
acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark,
ins {
background: #fff9c0;
text-decoration: none;
}
big {
font-size: 125%;
}
.home .entry-content p{
color:#ffffff;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
box-sizing: border-box;
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
box-sizing: inherit;
}
body {
background: #fff; /* Fallback for when there is no custom background color defined. */
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
}
blockquote,
q {
quotes: "" "";
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
ul,
ol {
margin: 0 0 1.5em 3em;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 1.5em;
}
dt {
font-weight: bold;
}
dd {
margin: 0 1.5em 1.5em;
}
img {
height: auto; /* Make sure images are scaled correctly. */
max-width: 100%; /* Adhere to container width. */
}
table {
margin: 0 0 1.5em;
width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border: 2px solid;
border-color: #000;
background: #fff;
color: rgba(0, 0, 0, .8);
font-size: 12px;
font-size: 1.2rem;
line-height: 1;
padding: .6em 1em .6em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
border-color: #000;
background:#000;
color:#fff;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
border-color: #aaa #bbb #bbb;
box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
color: #666;
border: 1px solid #ccc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
padding: 3px;
}
textarea {
padding-left: 3px;
width: 100%;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-branding{
float:left;
}
.site-header{
padding-top:10px;
padding-bottom:10px;
border-bottom:5px solid #d7d7d7;
width: 100%;
background-color: #fff;
min-height:120x;
}
.site-title{
margin:0;
}
.site-title a{
font-size: 60px;
color: #898989;
font-weight:bold;
}
.site-description{
margin-bottom:10px;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
color: #000;
text-decoration:none;
}
a:hover,
a:focus,
a:active {
color: #959595;
text-decoration:none;
}
a:focus {
outline:none;
}
a:hover,
a:active {
outline: 0;
text-decoration:none;
}
a.more{
color:#fff;
}
a.more:hover{
color: #959595;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
display: block;
float:right;
margin-top: 5px;
}
.main-navigation .fa{
font-size:16px;
}
.main-navigation ul {
display: none;
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation li {
padding:10px;
}
.main-navigation a {
display: block;
text-decoration: none;
}
.main-navigation ul ul a {
width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a,
.main-navigation li.focus > a {
}
.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}
.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
left: 100%;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
color: #959595;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
display: block;
}
@media screen and (min-width: 37.5em) {
.menu-toggle {
display: none;
}
.main-navigation ul {
display: block;
float:right;
}
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* 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. */
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
content: "";
display: table;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */
.widget select {
max-width: 100%;
}
/* Search widget. */
.widget_search .search-submit {
display: none;
}
h1.widget-title{
font-weight: 500;
font-size: 28px;
color: #000;
border-bottom: solid 1px #edebeb;
padding-bottom: 15px;
}
.widget ul{
line-height: 32px;
list-style-type: none;
margin-left: 30px;
}
.widget_iconwp_recent_posts ul{
margin-left:0;
}
.widget_iconwp_recent_posts ul li img{
margin:0 auto;
}
.widget ul li{
position: relative;
}
.widget ul li:before{
content: "";
position: absolute;
left: -15px;
width: 0;
height: 0;
border-style: solid;
border-width: 5.5px 0 5.5px 8px;
border-color: transparent transparent transparent #000000;
top: 11px;
}
.aside-container{
position: relative;
margin: 15px 0;
}
.abs-details{
position: absolute;
bottom: 0;
width: 100%;
background: rgba(0, 0, 0, .5);
padding: 5px 20px;
}
.abs-details a{
color: #fff;
}
.abs-details a:hover{
color: #ccc;
}
.abs-details h4, .post-details h4{
margin-bottom: 0;
}
.abs-details .meta-info-date{
color: #ccc;
}
.post-details{
background:#f1f1f1;
padding: 5px 20px;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
display: block;
}
.hentry {
margin: 0 0 1.5em;
}
.byline,
.updated:not(.published) {
display: none;
}
.single .byline,
.group-blog .byline {
display: inline;
}
.page-content,
.entry-content,
.entry-summary {
margin: 1.5em 0 0;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
}
.page .entry-header{
}
.archive .entry-header h1{
margin-top:0;
margin-bottom: 10px;
}
.entry-header h1{
font-size:200%;
}
.thumbnail-holder{
background:#ccc;
}
.thumbnail-holder article{
}
.thumbnail-holder .entry-content{
margin:0;
height: 100%;
}
.thumbnail-holder .entry-content p{
margin-top: 70px;
padding: 50px;
}
.thumbnail-holder .entry-header{
position: absolute;
width:100%;
bottom:0;
text-align:center;
}
.thumbnail-holder .entry-header a{
color:#ffffff;
}
.thumbnail-holder .entry-header a:hover{
text-decoration:none;
}
#colophon{
background: #f4f4f4;
padding: 0;
margin-top: 30px;
}
.entry-header .container{
display: flex;
justify-content: center;
min-height: 350px;
}
#no-featured{
background-color: #000;
}
.inner-container{
align-self: center;
text-align: center;
background: rgba(0, 0, 0, .7);
padding: 20px 30px;
}
.title-container .entry-title{
font-size: 36px;
color: #fff;
font-weight: bold;
}
.home h1.entry-title{
padding-left:10px;
padding-right:10px;
}
h1.posts-title{
text-align:center;
font-size:400%;
margin:50px 0 30px;
}
.title-container .posted-on, .title-container .posted-on a{
color: #888888;
font-style:italic;
}
.taxonomy-description p{
color:#fff;
}
.site-info{
background-color: #363636;
}
.site-info a, .site-info{
color: #ccc;
padding:10px 0;
}
.site-info a:hover{
color: #fff;
}
.breadcrumb-container{
background-color: #f1f1f1;
border-bottom: solid 2px #e1e1e1;
margin-bottom: 20px;
}
#breadcrumbs {
list-style: none;
margin: 20px 0 10px;
overflow: hidden;
display: inline-block;
}
#breadcrumbs li {
float: left;
margin-right: 15px;
}
.btn-more{
font-size: 28px;
color: #23282f;
}
.read-more{
text-align:center;
}
.fa-angle-double-right{
padding-left: 5px;
font-size: 25px;
}
.no-top-margin{
margin-top: 0;
}
/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
display: none;
}
.widget_iconwp_recent_posts ul li:before{
border:none;
}
/*--------------------------------------------------------------
## footer
--------------------------------------------------------------*/
#footer-widget{
background:#f4f4f4;
padding: 20px 0;
}
#colophon:before{
width: 0;
height: 0;
border-style: solid;
border-width: 30px 30px 0 30px;
border-color: #fff transparent transparent transparent;
margin: 0 auto;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
word-wrap: break-word;
}
.bypostauthor {
display: block;
}
.left-box-comment input[type="text"]{
width: 100%;
padding: 12px;
}
::-webkit-input-placeholder {
font-style: italic;
font-weight:100;
}
.form-submit{
text-align:center;
}
.form-submit .submit{
background: none;
color: #000;
font-size: 24px;
text-transform: uppercase;
}
#reply-title{
font-weight: 400;
font-size: 36px;
color: #000;
text-align:center;
}
.comment-notes{
text-align:center;
}
.logged-in-as{
text-align: center;
}
.comment-metadata{
line-height: 24px;
font-size: 14px;
padding-left: 72px;
}
.comment-author img {
margin-right: 12px;
width: 50px;
}
.comment-list li.comment .comment-content, .comment-list li.comment .reply{
margin-left: 72px;
font-size: 14px;
}
.comment-list li.comment .comment-content p{
margin-bottom: 10px;
}
.comment-list article{
padding: 17px 20px 20px;
margin-bottom: 20px;
}
#comments ol {
list-style-type: none;
padding: 0;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
margin: 0 auto;
}
.wp-caption-text {
text-align: center;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-caption {
display: block;
}
.circle-img{
border-radius:50%;
overflow:hidden;
display:block;
max-width:500px;
margin:20px auto;
border: 10px solid #ffffff;
}
.btn-primary{
background-color:transparent;
border:2px solid #000000;
border-radius:0;
color:#000000;
}
.btn-primary:hover{
background-color:#000000;
border-color:#ffffff;
}
@media screen and (min-width: 600px) {
.main-navigation ul ul {
float: left;
position: absolute;
top: 30px;
left: -999em;
z-index: 99999;
background:#ffffff;
}
.main-navigation ul ul ul {
left: -999em;
top: 0;
}
.main-navigation li {
float: left;
position: relative;
}
}
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
html, body, #page, #home-slider {
height:calc(100% - 30px);
margin:0;
padding:0;
}
.carousel-content-bg{
background-color: rgba(0, 0, 0, 0.7);
background: rgba(0, 0, 0, 0.7);
position: absolute;
bottom: 0;
width: 100%;
padding-bottom: 40px;
}
.carousel, .item, .active{
height:calc(100% - 0px);
}
.carousel-inner {
height:calc(100% - 0px);
text-align: center;
}
.carousel-inner h1{
font-size:300%;
color:#ffffff;
}
.carousel-inner p{
font-size:18px;
color:#ffffff;
font-weight:300;
}
.carousel {
margin-bottom: 60px;
}
.carousel .item {
background-color: #777;
}
.carousel-indicators{
bottom:10px;
}
.carousel .carousel-inner .bg {
background-repeat:no-repeat;
background-size:cover;
}
.effect-container{
background-color: rgba(0, 0, 0, 0.7);
background: rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px){
.aside-container{
width: 400px;
margin: 15px auto;
}
}
@media (min-width: 992px){
.col-md-4 {
width: 33.3%;
}
.thumbnail-holder{
height:513px;
overflow:hidden;
padding: 0;
border: 1px solid #ffffff;
}
.effect-container{
height: 120px;
overflow: hidden;
position: absolute;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
background: rgba(0, 0, 0, 0.7);
transition:0.1s;
}
.effect-container:hover{
height:513px;
transition:0.5s;
}
}
@media (min-width: 768px){
.main-navigation {
margin-top: 28px;
}
}
@media (max-width: 480px){
.main-navigation, .site-branding{
float:none;
}
.carousel-inner h1{
font-size:200%;
}
.carousel-inner p{
display:none;
}
.thumbnail-holder .entry-header{
position:relative;
}
.entry-header{
padding-bottom:10px;
}
} | 0.312055 | 0.048025 |
.tabHeadings {
padding-top: 4px;
padding-bottom: 4px;
padding-bottom: 0px;
}
.tabs {
display: flex;
flex-direction: row;
align-items: flex-start;
}
.tab {
outline-style: solid;
outline-width: 2px;
outline-color: rgba(0,0,0,0);
}
.tab.active {
outline-color: rgba(255,255,255,0.7);
}
.tab.newScreen {
/* margin-top/bottom + padding is for vertically centering the
plus sign. */
margin-top: auto;
margin-bottom: auto;
padding-bottom: 6px;
padding-left: 20px;
padding-right: 20px;
color: rgb(173,173,173);
font-size: 20px;
}
.tab.newScreen:hover {
color: rgb(255,255,255);
}
.tabNameContainer {
width:97%;
margin-left: 2px;
margin-right: 2px;
}
.tabName {
font-size: 12px;
height: 14px;
margin-top: 6px;
color: var(--main-text-darker-color);
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(255,0,0,0);
padding-left:2px;
padding-right:2px;
}
.tabName:hover {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: var(--input-hover-outline-color);
}
.tabNameEditor {
font-size: 12px;
width: 100%;
height: 14px;
margin-top: 6px;
color: var(--main-text-darker-color);
}
.tabNameEditor input[type=text] {
font-size: 12px;
width: 100%;
box-sizing: border-box;
background-color: #252525;
color: var(--main-text-lighter-color);
border-style: none;
padding: 0px;
padding-left:2px;
padding-right:2px;
}
.tabNameEditor input[type=text]::selection {
background: #89a;
}
.tabNameEditor input[type=text]:focus {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(0,0,0,0);
}
.tabNameEditor input[type=text]:valid {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(0,0,0,0);
}
.tabNameEditor input[type=text]:invalid {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(255,32,32,0.6);
}
/*---------------------------------------------------------------*/
.screenDimContainer {
position: relative;
top: 0px;
left: -3px;
font-size: 12px;
width: 60px;
}
.screenDimText {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(255,0,0,0);
height: 14px;
margin-top: 6px;
color: var(--main-text-darker-color);
padding-left:2px;
padding-right:2px;
}
.screenDimText:hover {
outline-color: var(--input-hover-outline-color);
}
.screenDimContainer .tabNameEditor input[type=text] {
} | src/containers/FramebufferTabs.module.css | .tabHeadings {
padding-top: 4px;
padding-bottom: 4px;
padding-bottom: 0px;
}
.tabs {
display: flex;
flex-direction: row;
align-items: flex-start;
}
.tab {
outline-style: solid;
outline-width: 2px;
outline-color: rgba(0,0,0,0);
}
.tab.active {
outline-color: rgba(255,255,255,0.7);
}
.tab.newScreen {
/* margin-top/bottom + padding is for vertically centering the
plus sign. */
margin-top: auto;
margin-bottom: auto;
padding-bottom: 6px;
padding-left: 20px;
padding-right: 20px;
color: rgb(173,173,173);
font-size: 20px;
}
.tab.newScreen:hover {
color: rgb(255,255,255);
}
.tabNameContainer {
width:97%;
margin-left: 2px;
margin-right: 2px;
}
.tabName {
font-size: 12px;
height: 14px;
margin-top: 6px;
color: var(--main-text-darker-color);
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(255,0,0,0);
padding-left:2px;
padding-right:2px;
}
.tabName:hover {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: var(--input-hover-outline-color);
}
.tabNameEditor {
font-size: 12px;
width: 100%;
height: 14px;
margin-top: 6px;
color: var(--main-text-darker-color);
}
.tabNameEditor input[type=text] {
font-size: 12px;
width: 100%;
box-sizing: border-box;
background-color: #252525;
color: var(--main-text-lighter-color);
border-style: none;
padding: 0px;
padding-left:2px;
padding-right:2px;
}
.tabNameEditor input[type=text]::selection {
background: #89a;
}
.tabNameEditor input[type=text]:focus {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(0,0,0,0);
}
.tabNameEditor input[type=text]:valid {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(0,0,0,0);
}
.tabNameEditor input[type=text]:invalid {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(255,32,32,0.6);
}
/*---------------------------------------------------------------*/
.screenDimContainer {
position: relative;
top: 0px;
left: -3px;
font-size: 12px;
width: 60px;
}
.screenDimText {
outline: solid;
outline-width: var(--input-hover-outline-width);
outline-color: rgba(255,0,0,0);
height: 14px;
margin-top: 6px;
color: var(--main-text-darker-color);
padding-left:2px;
padding-right:2px;
}
.screenDimText:hover {
outline-color: var(--input-hover-outline-color);
}
.screenDimContainer .tabNameEditor input[type=text] {
} | 0.535098 | 0.098339 |
html,
body {
font-family: 'Poppins', sans-serif;
height: 100%;
}
body.refle-login {
background-color: #F7F9FB;
font-size: 14px;
}
.refle-login .title {
margin-top: 75px;
color: #A86CC1;
font-size: 64px;
text-transform: uppercase;
font-weight: 600;
}
.refle-login .card-wrapper {
width: 400px;
}
.refle-login .card {
margin-top: 185px;
border-color: transparent;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
}
.refle-login .card.fat {
margin-top: 9px;
padding: 10px;
}
.refle-login .card .card-title {
color: #CD8DE5;
text-transform: uppercase;
font-size: 28px;
font-weight: 600;
}
.refle-login .form-control {
color: #000;
background-color: rgba(102, 102, 102, 0.15);
}
.refle-login .text-info {
font-size: 12px;
}
.refle-login .forgot-password {
margin-top: -10px;
margin-bottom: 9px;
font-size: 12px;
}
.refle-login .btn.btn-block {
padding: 9px 10px;
}
.refle-login .register-section {
font-size: 12px;
}
.refle-login .footer {
margin: 41px 0;
color: #888;
text-align: center;
}
/* Link Color */
a {
color: #CD8DE5;
}
a:hover {
color: #A86CC1;
}
/* Button Color */
/* Primary Color */
.btn-primary {
background-color: #CD8DE5;
border-color: #CD8DE5;
}
.btn-primary:hover {
background-color: #A86CC1;
border-color: #A86CC1;
}
.btn-primary:focus,
.btn-primary:active {
background-color: #A86CC1 !important;
border-color: #A86CC1 !important;
}
.btn:focus,
.btn:active {
outline: none !important;
box-shadow: none !important;
}
@media screen and (max-width: 425px) {
.refle-login .card-wrapper {
width: 90%;
margin: 0 auto;
}
.refle-login .card {
margin-top: 135px;
}
}
@media screen and (max-width: 320px) {
.refle-login .card {
margin-top: 135px;
}
.refle-login .card.fat {
padding: 0;
}
.refle-login .card.fat .card-body {
padding: 15px;
}
} | css/refle.css | html,
body {
font-family: 'Poppins', sans-serif;
height: 100%;
}
body.refle-login {
background-color: #F7F9FB;
font-size: 14px;
}
.refle-login .title {
margin-top: 75px;
color: #A86CC1;
font-size: 64px;
text-transform: uppercase;
font-weight: 600;
}
.refle-login .card-wrapper {
width: 400px;
}
.refle-login .card {
margin-top: 185px;
border-color: transparent;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
}
.refle-login .card.fat {
margin-top: 9px;
padding: 10px;
}
.refle-login .card .card-title {
color: #CD8DE5;
text-transform: uppercase;
font-size: 28px;
font-weight: 600;
}
.refle-login .form-control {
color: #000;
background-color: rgba(102, 102, 102, 0.15);
}
.refle-login .text-info {
font-size: 12px;
}
.refle-login .forgot-password {
margin-top: -10px;
margin-bottom: 9px;
font-size: 12px;
}
.refle-login .btn.btn-block {
padding: 9px 10px;
}
.refle-login .register-section {
font-size: 12px;
}
.refle-login .footer {
margin: 41px 0;
color: #888;
text-align: center;
}
/* Link Color */
a {
color: #CD8DE5;
}
a:hover {
color: #A86CC1;
}
/* Button Color */
/* Primary Color */
.btn-primary {
background-color: #CD8DE5;
border-color: #CD8DE5;
}
.btn-primary:hover {
background-color: #A86CC1;
border-color: #A86CC1;
}
.btn-primary:focus,
.btn-primary:active {
background-color: #A86CC1 !important;
border-color: #A86CC1 !important;
}
.btn:focus,
.btn:active {
outline: none !important;
box-shadow: none !important;
}
@media screen and (max-width: 425px) {
.refle-login .card-wrapper {
width: 90%;
margin: 0 auto;
}
.refle-login .card {
margin-top: 135px;
}
}
@media screen and (max-width: 320px) {
.refle-login .card {
margin-top: 135px;
}
.refle-login .card.fat {
padding: 0;
}
.refle-login .card.fat .card-body {
padding: 15px;
}
} | 0.36557 | 0.060335 |
@-moz-document domain("twitch-viewerbot.com") {
body {
background-color: #282828;
background-image: url(https://wallpapers.wallhaven.cc/wallpapers/full/wallhaven-32873.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
.centerblockbig {
width: 650px;
height: 550px;
position: static;
top: 150px;
bottom: 0;
left: 0;
right: 0;
margin: auto;
padding-top: 100px;
}
.logodiv {
background-image: url(http://i.imgur.com/My6TBW6.png);
position: absolute;
top: 0;
left: 0;
right: 0;
background-size: contain;
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
margin-bottom: 10px;
}
.tb-tabs-framed .tab-content {
background: #333;
border-color: #333;
border-image: none;
border-right: none;
border-style: none;
border-width: 0;
padding: 20px;
border-top: none;
color: #e5eef4;
overflow: auto;
border-radius: 5px;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.regulartextbox {
border-radius: 2px;
}
.nav-tabs > li.inactive {
background: #333;
background-color: #333;
text-decoration: none;
margin-left: 0px;
color: #E8EFF4;
margin-right: 3px;
border-radius: 5px 5px 0 0;
}
.nav-tabs > li > a {
border: 0px solid transparent;
border-radius: 5px 5px 0 0;
line-height: 1.42857;
}
.nav-tabs > li > a:hover {
border-color: #fff #fff #fff;
}
.navtabs> li > a:hover,
.nav > li > a:focus {
background-color: #fff;
transition: all 0.4s ease 0s;
text-decoration: none;
color: #000;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
background-position: 30% 20%;
background: #fff;
border-color: #000 #000 transparent;
border-image: none;
border-style: none;
border-width: 1px;
color: #000;
cursor: default;
margin-left: 0px;
margin-right: 3px;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}
.navtabs {
list-style-type: none;
margin-bottom: 0;
padding-left: 0px;
font-family: 'Play', sans-serif;
width: 100%;
}
.alert-yellow {
background-color: #F2DEDE;
border-color: #EED3D7;
color: #AA4342;
}
.regulartextbox {
width: 100%;
text-align: center;
}
.tab-content h3 {
color: #fff;
font-weight: 700;
line-height: 1;
margin: 10px 0;
cursor: default;
text-rendering: optimizelegibility;
text-align: center;
}
/*
.stopbuttonfloat .buttongray {
background: rgba(230, 190, 190, .75);
border: 1px solid #d1a0a0;
border-radius: 4px;
color: #000;
cursor: pointer;
display: inline-block;
font-size: 14px;
transition: background-color .25s, width .5s, height .5s;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.stopbuttonfloat .buttongray:hover {
background-color: #e4aaaa;
text-decoration: none;
}
.fleft .buttongray {
background: rgba(190, 230, 190, .75);
border: 1px solid #a0d1a0;
border-radius: 4px;
color: #000;
cursor: pointer;
display: inline-block;
font-size: 14px;
transition: background-color .25s, width .5s, height .5s;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.fleft .buttongray:hover {
background-color: #aae4aa;
text-decoration: none;
}
*/
[value*="Start"] {
background: rgba(190, 230, 190, .75);
border: 1px solid #a0d1a0;
border-radius: 4px;
color: #3c763d;
cursor: pointer;
display: inline-block;
font-size: 13px;
transition: background-color .25s, width .5s, height .5s;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
font-family: "Lucida Sans","Lucida Grande","Lucida Sans Unicode",sans-serif;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.0);
}
[value*="Start"]:hover {
background-color: #aae4aa;
text-decoration: none;
}
[value*="Stop"] {
background: rgba(230, 190, 190, .75);
border: 1px solid #d1a0a0;
border-radius: 4px;
color: #AA4342;
cursor: pointer;
display: inline-block;
font-size: 13px;
transition: background-color .25s, width .5s, height .5s;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
font-family: "Lucida Sans","Lucida Grande","Lucida Sans Unicode",sans-serif;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.0);
}
[value*="Stop"]:hover {
background-color: #e4aaaa;
text-decoration: none;
}
} | data/usercss/138424.user.css | @-moz-document domain("twitch-viewerbot.com") {
body {
background-color: #282828;
background-image: url(https://wallpapers.wallhaven.cc/wallpapers/full/wallhaven-32873.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
.centerblockbig {
width: 650px;
height: 550px;
position: static;
top: 150px;
bottom: 0;
left: 0;
right: 0;
margin: auto;
padding-top: 100px;
}
.logodiv {
background-image: url(http://i.imgur.com/My6TBW6.png);
position: absolute;
top: 0;
left: 0;
right: 0;
background-size: contain;
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
margin-bottom: 10px;
}
.tb-tabs-framed .tab-content {
background: #333;
border-color: #333;
border-image: none;
border-right: none;
border-style: none;
border-width: 0;
padding: 20px;
border-top: none;
color: #e5eef4;
overflow: auto;
border-radius: 5px;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.regulartextbox {
border-radius: 2px;
}
.nav-tabs > li.inactive {
background: #333;
background-color: #333;
text-decoration: none;
margin-left: 0px;
color: #E8EFF4;
margin-right: 3px;
border-radius: 5px 5px 0 0;
}
.nav-tabs > li > a {
border: 0px solid transparent;
border-radius: 5px 5px 0 0;
line-height: 1.42857;
}
.nav-tabs > li > a:hover {
border-color: #fff #fff #fff;
}
.navtabs> li > a:hover,
.nav > li > a:focus {
background-color: #fff;
transition: all 0.4s ease 0s;
text-decoration: none;
color: #000;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
background-position: 30% 20%;
background: #fff;
border-color: #000 #000 transparent;
border-image: none;
border-style: none;
border-width: 1px;
color: #000;
cursor: default;
margin-left: 0px;
margin-right: 3px;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}
.navtabs {
list-style-type: none;
margin-bottom: 0;
padding-left: 0px;
font-family: 'Play', sans-serif;
width: 100%;
}
.alert-yellow {
background-color: #F2DEDE;
border-color: #EED3D7;
color: #AA4342;
}
.regulartextbox {
width: 100%;
text-align: center;
}
.tab-content h3 {
color: #fff;
font-weight: 700;
line-height: 1;
margin: 10px 0;
cursor: default;
text-rendering: optimizelegibility;
text-align: center;
}
/*
.stopbuttonfloat .buttongray {
background: rgba(230, 190, 190, .75);
border: 1px solid #d1a0a0;
border-radius: 4px;
color: #000;
cursor: pointer;
display: inline-block;
font-size: 14px;
transition: background-color .25s, width .5s, height .5s;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.stopbuttonfloat .buttongray:hover {
background-color: #e4aaaa;
text-decoration: none;
}
.fleft .buttongray {
background: rgba(190, 230, 190, .75);
border: 1px solid #a0d1a0;
border-radius: 4px;
color: #000;
cursor: pointer;
display: inline-block;
font-size: 14px;
transition: background-color .25s, width .5s, height .5s;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.fleft .buttongray:hover {
background-color: #aae4aa;
text-decoration: none;
}
*/
[value*="Start"] {
background: rgba(190, 230, 190, .75);
border: 1px solid #a0d1a0;
border-radius: 4px;
color: #3c763d;
cursor: pointer;
display: inline-block;
font-size: 13px;
transition: background-color .25s, width .5s, height .5s;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
font-family: "Lucida Sans","Lucida Grande","Lucida Sans Unicode",sans-serif;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.0);
}
[value*="Start"]:hover {
background-color: #aae4aa;
text-decoration: none;
}
[value*="Stop"] {
background: rgba(230, 190, 190, .75);
border: 1px solid #d1a0a0;
border-radius: 4px;
color: #AA4342;
cursor: pointer;
display: inline-block;
font-size: 13px;
transition: background-color .25s, width .5s, height .5s;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
font-family: "Lucida Sans","Lucida Grande","Lucida Sans Unicode",sans-serif;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.0);
}
[value*="Stop"]:hover {
background-color: #e4aaaa;
text-decoration: none;
}
} | 0.533154 | 0.103477 |
body {
margin: 0;
mso-line-height-rule: exactly;
padding: 0;
min-width: 100%;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td {
padding: 0;
vertical-align: top;
}
.spacer,
.border {
font-size: 1px;
line-height: 1px;
}
.spacer {
width: 100%;
}
img {
border: 0;
-ms-interpolation-mode: bicubic;
}
.image {
font-size: 12px;
Margin-bottom: 24px;
mso-line-height-rule: at-least;
}
.image img {
display: block;
}
.logo {
mso-line-height-rule: at-least;
}
.logo img {
display: block;
}
strong {
font-weight: bold;
}
h1,
h2,
h3,
p,
ol,
ul,
li {
Margin-top: 0;
}
ol,
ul,
li {
padding-left: 0;
}
blockquote {
Margin-top: 0;
Margin-right: 0;
Margin-bottom: 0;
padding-right: 0;
}
.column-top {
font-size: 32px;
line-height: 32px;
}
.column-bottom {
font-size: 8px;
line-height: 8px;
}
.column {
text-align: left;
}
.contents {
table-layout: fixed;
width: 100%;
}
.padded {
padding-left: 32px;
padding-right: 32px;
word-break: break-word;
word-wrap: break-word;
}
.wrapper {
display: table;
table-layout: fixed;
width: 100%;
min-width: 620px;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
table.wrapper {
table-layout: fixed;
}
.one-col,
.two-col,
.three-col {
Margin-left: auto;
Margin-right: auto;
width: 600px;
}
.centered {
Margin-left: auto;
Margin-right: auto;
}
.two-col .image {
Margin-bottom: 23px;
}
.two-col .column-bottom {
font-size: 9px;
line-height: 9px;
}
.two-col .column {
width: 300px;
}
.three-col .image {
Margin-bottom: 21px;
}
.three-col .column-bottom {
font-size: 11px;
line-height: 11px;
}
.three-col .column {
width: 200px;
}
.three-col .first .padded {
padding-left: 32px;
padding-right: 16px;
}
.three-col .second .padded {
padding-left: 24px;
padding-right: 24px;
}
.three-col .third .padded {
padding-left: 16px;
padding-right: 32px;
}
@media only screen and (min-width: 0) {
.wrapper {
text-rendering: optimizeLegibility;
}
}
@media only screen and (max-width: 620px) {
[class=wrapper] {
min-width: 318px !important;
width: 100% !important;
}
[class=wrapper] .one-col,
[class=wrapper] .two-col,
[class=wrapper] .three-col {
width: 318px !important;
}
[class=wrapper] .column,
[class=wrapper] .gutter {
display: block;
float: left;
width: 318px !important;
}
[class=wrapper] .padded {
padding-left: 32px !important;
padding-right: 32px !important;
}
[class=wrapper] .block {
display: block !important;
}
[class=wrapper] .hide {
display: none !important;
}
[class=wrapper] .image {
margin-bottom: 24px !important;
}
[class=wrapper] .image img {
height: auto !important;
width: 100% !important;
}
}
.wrapper h1 {
font-weight: 700;
}
.wrapper h2 {
font-style: italic;
font-weight: normal;
}
.wrapper h3 {
font-weight: normal;
}
.one-col blockquote,
.two-col blockquote,
.three-col blockquote {
font-style: italic;
}
.one-col-feature h1 {
font-weight: normal;
}
.one-col-feature h2 {
font-style: normal;
font-weight: bold;
}
.one-col-feature h3 {
font-style: italic;
}
td.border {
width: 1px;
}
tr.border {
background-color: #e9e9e9;
height: 1px;
}
tr.border td {
line-height: 1px;
}
.one-col,
.two-col,
.three-col,
.one-col-feature {
background-color: #ffffff;
font-size: 14px;
table-layout: fixed;
}
.one-col,
.two-col,
.three-col,
.one-col-feature,
.preheader,
.header,
.footer {
Margin-left: auto;
Margin-right: auto;
}
.preheader table {
width: 602px;
}
.preheader .title,
.preheader .webversion {
padding-top: 10px;
padding-bottom: 12px;
font-size: 12px;
line-height: 21px;
}
.preheader .title {
text-align: left;
}
.preheader .webversion {
text-align: right;
width: 300px;
}
.header {
width: 602px;
}
.header .logo {
padding: 32px 0;
}
.header .logo div {
font-size: 26px;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 32px;
}
.header .logo div a {
text-decoration: none;
}
.header .logo div.logo-center {
text-align: center;
}
.header .logo div.logo-center img {
Margin-left: auto;
Margin-right: auto;
}
.gmail {
width: 650px;
min-width: 650px;
}
.gmail td {
font-size: 1px;
line-height: 1px;
}
.wrapper a {
text-decoration: underline;
transition: all .2s;
}
.wrapper h1 {
font-size: 36px;
Margin-bottom: 18px;
}
.wrapper h2 {
font-size: 26px;
line-height: 32px;
Margin-bottom: 20px;
}
.wrapper h3 {
font-size: 18px;
line-height: 22px;
Margin-bottom: 16px;
}
.wrapper h1 a,
.wrapper h2 a,
.wrapper h3 a {
text-decoration: none;
}
.one-col blockquote,
.two-col blockquote,
.three-col blockquote {
font-size: 14px;
border-left: 2px solid #e9e9e9;
Margin-left: 0;
padding-left: 16px;
}
table.divider {
width: 100%;
}
.divider .inner {
padding-bottom: 24px;
}
.divider table {
background-color: #e9e9e9;
font-size: 2px;
line-height: 2px;
width: 60px;
}
.wrapper .gray {
background-color: #f7f7f7;
}
.wrapper .gray blockquote {
border-left-color: #dddddd;
}
.wrapper .gray .divider table {
background-color: #dddddd;
}
.padded .image {
font-size: 0;
}
.image-frame {
padding: 8px;
}
.image-background {
display: inline-block;
font-size: 12px;
}
.btn {
Margin-bottom: 24px;
padding: 2px;
}
.btn a {
border: 1px solid #ffffff;
display: inline-block;
font-size: 13px;
font-weight: bold;
line-height: 15px;
outline-style: solid;
outline-width: 2px;
padding: 10px 30px;
text-align: center;
text-decoration: none !important;
}
.one-col .column table:nth-last-child(2) td h1:last-child,
.one-col .column table:nth-last-child(2) td h2:last-child,
.one-col .column table:nth-last-child(2) td h3:last-child,
.one-col .column table:nth-last-child(2) td p:last-child,
.one-col .column table:nth-last-child(2) td ol:last-child,
.one-col .column table:nth-last-child(2) td ul:last-child {
Margin-bottom: 24px;
}
.one-col p,
.one-col ol,
.one-col ul {
font-size: 16px;
line-height: 24px;
}
.one-col ol,
.one-col ul {
Margin-left: 18px;
}
.two-col .column table:nth-last-child(2) td h1:last-child,
.two-col .column table:nth-last-child(2) td h2:last-child,
.two-col .column table:nth-last-child(2) td h3:last-child,
.two-col .column table:nth-last-child(2) td p:last-child,
.two-col .column table:nth-last-child(2) td ol:last-child,
.two-col .column table:nth-last-child(2) td ul:last-child {
Margin-bottom: 23px;
}
.two-col .image-frame {
padding: 6px;
}
.two-col h1 {
font-size: 26px;
line-height: 32px;
Margin-bottom: 16px;
}
.two-col h2 {
font-size: 20px;
line-height: 26px;
Margin-bottom: 18px;
}
.two-col h3 {
font-size: 16px;
line-height: 20px;
Margin-bottom: 14px;
}
.two-col p,
.two-col ol,
.two-col ul {
font-size: 14px;
line-height: 23px;
}
.two-col ol,
.two-col ul {
Margin-left: 16px;
}
.two-col li {
padding-left: 5px;
}
.two-col .divider .inner {
padding-bottom: 23px;
}
.two-col .btn {
Margin-bottom: 23px;
}
.two-col blockquote {
padding-left: 16px;
}
.three-col .column table:nth-last-child(2) td h1:last-child,
.three-col .column table:nth-last-child(2) td h2:last-child,
.three-col .column table:nth-last-child(2) td h3:last-child,
.three-col .column table:nth-last-child(2) td p:last-child,
.three-col .column table:nth-last-child(2) td ol:last-child,
.three-col .column table:nth-last-child(2) td ul:last-child {
Margin-bottom: 21px;
}
.three-col .image-frame {
padding: 4px;
}
.three-col h1 {
font-size: 20px;
line-height: 26px;
Margin-bottom: 12px;
}
.three-col h2 {
font-size: 16px;
line-height: 22px;
Margin-bottom: 14px;
}
.three-col h3 {
font-size: 14px;
line-height: 18px;
Margin-bottom: 10px;
}
.three-col p,
.three-col ol,
.three-col ul {
font-size: 12px;
line-height: 21px;
}
.three-col ol,
.three-col ul {
Margin-left: 14px;
}
.three-col li {
padding-left: 6px;
}
.three-col .divider .inner {
padding-bottom: 21px;
}
.three-col .btn {
Margin-bottom: 21px;
}
.three-col .btn a {
font-size: 12px;
line-height: 14px;
padding: 8px 19px;
}
.three-col blockquote {
padding-left: 16px;
}
.one-col-feature .column-top {
font-size: 36px;
line-height: 36px;
}
.one-col-feature .column-bottom {
font-size: 4px;
line-height: 4px;
}
.one-col-feature .column {
text-align: center;
width: 600px;
}
.one-col-feature .image {
Margin-bottom: 32px;
}
.one-col-feature .column table:nth-last-child(2) td h1:last-child,
.one-col-feature .column table:nth-last-child(2) td h2:last-child,
.one-col-feature .column table:nth-last-child(2) td h3:last-child,
.one-col-feature .column table:nth-last-child(2) td p:last-child,
.one-col-feature .column table:nth-last-child(2) td ol:last-child,
.one-col-feature .column table:nth-last-child(2) td ul:last-child {
Margin-bottom: 32px;
}
.one-col-feature h1,
.one-col-feature h2,
.one-col-feature h3 {
text-align: center;
}
.one-col-feature h1 {
font-size: 52px;
Margin-bottom: 22px;
}
.one-col-feature h2 {
font-size: 42px;
Margin-bottom: 20px;
}
.one-col-feature h3 {
font-size: 32px;
line-height: 42px;
Margin-bottom: 20px;
}
.one-col-feature p,
.one-col-feature ol,
.one-col-feature ul {
font-size: 21px;
line-height: 32px;
Margin-bottom: 32px;
}
.one-col-feature p a,
.one-col-feature ol a,
.one-col-feature ul a {
text-decoration: none;
}
.one-col-feature p {
text-align: center;
}
.one-col-feature ol,
.one-col-feature ul {
Margin-left: 40px;
text-align: left;
}
.one-col-feature li {
padding-left: 3px;
}
.one-col-feature .btn {
Margin-bottom: 32px;
text-align: center;
}
.one-col-feature .divider .inner {
padding-bottom: 32px;
}
.one-col-feature blockquote {
border-bottom: 2px solid #e9e9e9;
border-left-color: #ffffff;
border-left-width: 0;
border-left-style: none;
border-top: 2px solid #e9e9e9;
Margin-bottom: 32px;
Margin-left: 0;
padding-bottom: 42px;
padding-left: 0;
padding-top: 42px;
position: relative;
}
.one-col-feature blockquote:before,
.one-col-feature blockquote:after {
background: -moz-linear-gradient(left, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
background: -webkit-gradient(linear, left top, right top, color-stop(25%, #ffffff), color-stop(25%, #e9e9e9), color-stop(75%, #e9e9e9), color-stop(75%, #ffffff));
background: -webkit-linear-gradient(left, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
background: -o-linear-gradient(left, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
background: -ms-linear-gradient(left, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
background: linear-gradient(to right, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
content: '';
display: block;
height: 2px;
left: 0;
outline: 1px solid #ffffff;
position: absolute;
right: 0;
}
.one-col-feature blockquote:before {
top: -2px;
}
.one-col-feature blockquote:after {
bottom: -2px;
}
.one-col-feature blockquote p,
.one-col-feature blockquote ol,
.one-col-feature blockquote ul {
font-size: 42px;
line-height: 48px;
Margin-bottom: 48px;
}
.one-col-feature blockquote p:last-child,
.one-col-feature blockquote ol:last-child,
.one-col-feature blockquote ul:last-child {
Margin-bottom: 0 !important;
}
.footer {
width: 602px;
}
.footer .padded {
font-size: 12px;
line-height: 20px;
}
.social {
padding-top: 32px;
padding-bottom: 22px;
}
.social img {
display: block;
}
.social .divider {
font-family: sans-serif;
font-size: 10px;
line-height: 21px;
text-align: center;
padding-left: 14px;
padding-right: 14px;
}
.social .social-text {
height: 21px;
vertical-align: middle !important;
font-size: 10px;
font-weight: bold;
text-decoration: none;
text-transform: uppercase;
}
.social .social-text a {
text-decoration: none;
}
.address {
width: 250px;
}
.address .padded {
text-align: left;
padding-left: 0;
padding-right: 10px;
}
.subscription {
width: 350px;
}
.subscription .padded {
text-align: right;
padding-right: 0;
padding-left: 10px;
}
.address,
.subscription {
padding-top: 32px;
padding-bottom: 64px;
}
.address a,
.subscription a {
font-weight: bold;
text-decoration: none;
}
.address table,
.subscription table {
width: 100%;
}
@media only screen and (max-width: 651px) {
.gmail {
display: none !important;
}
}
@media only screen and (max-width: 620px) {
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td h1:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td h1:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td h1:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td h1:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td h2:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td h2:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td h2:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td h2:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td h3:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td h3:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td h3:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td h3:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td p:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td p:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td p:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td p:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td ol:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td ol:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td ol:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td ol:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td ul:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td ul:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td ul:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td ul:last-child {
Margin-bottom: 24px !important;
}
[class=wrapper] .address,
[class=wrapper] .subscription {
display: block;
float: left;
width: 318px !important;
text-align: center !important;
}
[class=wrapper] .address {
padding-bottom: 0 !important;
}
[class=wrapper] .subscription {
padding-top: 0 !important;
}
[class=wrapper] h1 {
font-size: 36px !important;
line-height: 42px !important;
Margin-bottom: 18px !important;
}
[class=wrapper] h2 {
font-size: 26px !important;
line-height: 32px !important;
Margin-bottom: 20px !important;
}
[class=wrapper] h3 {
font-size: 18px !important;
line-height: 22px !important;
Margin-bottom: 16px !important;
}
[class=wrapper] p,
[class=wrapper] ol,
[class=wrapper] ul {
font-size: 16px !important;
line-height: 24px !important;
Margin-bottom: 24px !important;
}
[class=wrapper] ol,
[class=wrapper] ul {
Margin-left: 18px !important;
}
[class=wrapper] li {
padding-left: 2px !important;
}
[class=wrapper] blockquote {
padding-left: 16px !important;
}
[class=wrapper] .two-col .column:nth-child(n + 3) {
border-top: 1px solid #e9e9e9;
}
[class=wrapper] .btn {
margin-bottom: 24px !important;
}
[class=wrapper] .btn a {
display: block !important;
font-size: 13px !important;
font-weight: bold !important;
line-height: 15px !important;
padding: 10px 30px !important;
}
[class=wrapper] .column-bottom {
font-size: 8px !important;
line-height: 8px !important;
}
[class=wrapper] .first .column-bottom,
[class=wrapper] .three-col .second .column-bottom {
display: none;
}
[class=wrapper] .second .column-top,
[class=wrapper] .third .column-top {
display: none;
}
[class=wrapper] .image-frame {
padding: 4px !important;
}
[class=wrapper] .header .logo {
padding-left: 10px !important;
padding-right: 10px !important;
}
[class=wrapper] .header .logo div {
font-size: 26px !important;
line-height: 32px !important;
}
[class=wrapper] .header .logo div img {
display: inline-block !important;
max-width: 280px !important;
height: auto !important;
}
[class=wrapper] table.border,
[class=wrapper] .header,
[class=wrapper] .webversion,
[class=wrapper] .footer {
width: 320px !important;
}
[class=wrapper] .preheader .webversion,
[class=wrapper] .header .logo a {
text-align: center !important;
}
[class=wrapper] .preheader table,
[class=wrapper] .border td {
width: 318px !important;
}
[class=wrapper] .border td.border {
width: 1px !important;
}
[class=wrapper] .image .border td {
width: auto !important;
}
[class=wrapper] .title {
display: none;
}
[class=wrapper] .footer .padded {
text-align: center !important;
}
[class=wrapper] .footer .subscription .padded {
padding-top: 20px !important;
}
[class=wrapper] .footer .social-link {
display: block !important;
}
[class=wrapper] .footer .social-link table {
margin: 0 auto 10px !important;
}
[class=wrapper] .footer .divider {
display: none !important;
}
[class=wrapper] .one-col-feature .btn {
margin-bottom: 28px !important;
}
[class=wrapper] .one-col-feature .image {
margin-bottom: 28px !important;
}
[class=wrapper] .one-col-feature .divider .inner {
padding-bottom: 28px !important;
}
[class=wrapper] .one-col-feature h1 {
font-size: 42px !important;
line-height: 48px !important;
margin-bottom: 20px !important;
}
[class=wrapper] .one-col-feature h2 {
font-size: 32px !important;
line-height: 36px !important;
margin-bottom: 18px !important;
}
[class=wrapper] .one-col-feature h3 {
font-size: 26px !important;
line-height: 32px !important;
margin-bottom: 20px !important;
}
[class=wrapper] .one-col-feature p,
[class=wrapper] .one-col-feature ol,
[class=wrapper] .one-col-feature ul {
font-size: 20px !important;
line-height: 28px !important;
margin-bottom: 28px !important;
}
[class=wrapper] .one-col-feature blockquote {
font-size: 18px !important;
line-height: 26px !important;
margin-bottom: 28px !important;
padding-bottom: 26px !important;
padding-left: 0 !important;
padding-top: 26px !important;
}
[class=wrapper] .one-col-feature blockquote p,
[class=wrapper] .one-col-feature blockquote ol,
[class=wrapper] .one-col-feature blockquote ul {
font-size: 26px !important;
line-height: 32px !important;
}
[class=wrapper] .one-col-feature blockquote p:last-child,
[class=wrapper] .one-col-feature blockquote ol:last-child,
[class=wrapper] .one-col-feature blockquote ul:last-child {
margin-bottom: 0 !important;
}
[class=wrapper] .one-col-feature .column table:last-of-type h1:last-child,
[class=wrapper] .one-col-feature .column table:last-of-type h2:last-child,
[class=wrapper] .one-col-feature .column table:last-of-type h3:last-child {
margin-bottom: 28px !important;
}
}
@media only screen and (max-width: 320px) {
[class=wrapper] td.border {
display: none;
}
[class=wrapper] table.border,
[class=wrapper] .header,
[class=wrapper] .webversion,
[class=wrapper] .footer {
width: 318px !important;
}
} | public/stylesheets/email.css | body {
margin: 0;
mso-line-height-rule: exactly;
padding: 0;
min-width: 100%;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td {
padding: 0;
vertical-align: top;
}
.spacer,
.border {
font-size: 1px;
line-height: 1px;
}
.spacer {
width: 100%;
}
img {
border: 0;
-ms-interpolation-mode: bicubic;
}
.image {
font-size: 12px;
Margin-bottom: 24px;
mso-line-height-rule: at-least;
}
.image img {
display: block;
}
.logo {
mso-line-height-rule: at-least;
}
.logo img {
display: block;
}
strong {
font-weight: bold;
}
h1,
h2,
h3,
p,
ol,
ul,
li {
Margin-top: 0;
}
ol,
ul,
li {
padding-left: 0;
}
blockquote {
Margin-top: 0;
Margin-right: 0;
Margin-bottom: 0;
padding-right: 0;
}
.column-top {
font-size: 32px;
line-height: 32px;
}
.column-bottom {
font-size: 8px;
line-height: 8px;
}
.column {
text-align: left;
}
.contents {
table-layout: fixed;
width: 100%;
}
.padded {
padding-left: 32px;
padding-right: 32px;
word-break: break-word;
word-wrap: break-word;
}
.wrapper {
display: table;
table-layout: fixed;
width: 100%;
min-width: 620px;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
table.wrapper {
table-layout: fixed;
}
.one-col,
.two-col,
.three-col {
Margin-left: auto;
Margin-right: auto;
width: 600px;
}
.centered {
Margin-left: auto;
Margin-right: auto;
}
.two-col .image {
Margin-bottom: 23px;
}
.two-col .column-bottom {
font-size: 9px;
line-height: 9px;
}
.two-col .column {
width: 300px;
}
.three-col .image {
Margin-bottom: 21px;
}
.three-col .column-bottom {
font-size: 11px;
line-height: 11px;
}
.three-col .column {
width: 200px;
}
.three-col .first .padded {
padding-left: 32px;
padding-right: 16px;
}
.three-col .second .padded {
padding-left: 24px;
padding-right: 24px;
}
.three-col .third .padded {
padding-left: 16px;
padding-right: 32px;
}
@media only screen and (min-width: 0) {
.wrapper {
text-rendering: optimizeLegibility;
}
}
@media only screen and (max-width: 620px) {
[class=wrapper] {
min-width: 318px !important;
width: 100% !important;
}
[class=wrapper] .one-col,
[class=wrapper] .two-col,
[class=wrapper] .three-col {
width: 318px !important;
}
[class=wrapper] .column,
[class=wrapper] .gutter {
display: block;
float: left;
width: 318px !important;
}
[class=wrapper] .padded {
padding-left: 32px !important;
padding-right: 32px !important;
}
[class=wrapper] .block {
display: block !important;
}
[class=wrapper] .hide {
display: none !important;
}
[class=wrapper] .image {
margin-bottom: 24px !important;
}
[class=wrapper] .image img {
height: auto !important;
width: 100% !important;
}
}
.wrapper h1 {
font-weight: 700;
}
.wrapper h2 {
font-style: italic;
font-weight: normal;
}
.wrapper h3 {
font-weight: normal;
}
.one-col blockquote,
.two-col blockquote,
.three-col blockquote {
font-style: italic;
}
.one-col-feature h1 {
font-weight: normal;
}
.one-col-feature h2 {
font-style: normal;
font-weight: bold;
}
.one-col-feature h3 {
font-style: italic;
}
td.border {
width: 1px;
}
tr.border {
background-color: #e9e9e9;
height: 1px;
}
tr.border td {
line-height: 1px;
}
.one-col,
.two-col,
.three-col,
.one-col-feature {
background-color: #ffffff;
font-size: 14px;
table-layout: fixed;
}
.one-col,
.two-col,
.three-col,
.one-col-feature,
.preheader,
.header,
.footer {
Margin-left: auto;
Margin-right: auto;
}
.preheader table {
width: 602px;
}
.preheader .title,
.preheader .webversion {
padding-top: 10px;
padding-bottom: 12px;
font-size: 12px;
line-height: 21px;
}
.preheader .title {
text-align: left;
}
.preheader .webversion {
text-align: right;
width: 300px;
}
.header {
width: 602px;
}
.header .logo {
padding: 32px 0;
}
.header .logo div {
font-size: 26px;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 32px;
}
.header .logo div a {
text-decoration: none;
}
.header .logo div.logo-center {
text-align: center;
}
.header .logo div.logo-center img {
Margin-left: auto;
Margin-right: auto;
}
.gmail {
width: 650px;
min-width: 650px;
}
.gmail td {
font-size: 1px;
line-height: 1px;
}
.wrapper a {
text-decoration: underline;
transition: all .2s;
}
.wrapper h1 {
font-size: 36px;
Margin-bottom: 18px;
}
.wrapper h2 {
font-size: 26px;
line-height: 32px;
Margin-bottom: 20px;
}
.wrapper h3 {
font-size: 18px;
line-height: 22px;
Margin-bottom: 16px;
}
.wrapper h1 a,
.wrapper h2 a,
.wrapper h3 a {
text-decoration: none;
}
.one-col blockquote,
.two-col blockquote,
.three-col blockquote {
font-size: 14px;
border-left: 2px solid #e9e9e9;
Margin-left: 0;
padding-left: 16px;
}
table.divider {
width: 100%;
}
.divider .inner {
padding-bottom: 24px;
}
.divider table {
background-color: #e9e9e9;
font-size: 2px;
line-height: 2px;
width: 60px;
}
.wrapper .gray {
background-color: #f7f7f7;
}
.wrapper .gray blockquote {
border-left-color: #dddddd;
}
.wrapper .gray .divider table {
background-color: #dddddd;
}
.padded .image {
font-size: 0;
}
.image-frame {
padding: 8px;
}
.image-background {
display: inline-block;
font-size: 12px;
}
.btn {
Margin-bottom: 24px;
padding: 2px;
}
.btn a {
border: 1px solid #ffffff;
display: inline-block;
font-size: 13px;
font-weight: bold;
line-height: 15px;
outline-style: solid;
outline-width: 2px;
padding: 10px 30px;
text-align: center;
text-decoration: none !important;
}
.one-col .column table:nth-last-child(2) td h1:last-child,
.one-col .column table:nth-last-child(2) td h2:last-child,
.one-col .column table:nth-last-child(2) td h3:last-child,
.one-col .column table:nth-last-child(2) td p:last-child,
.one-col .column table:nth-last-child(2) td ol:last-child,
.one-col .column table:nth-last-child(2) td ul:last-child {
Margin-bottom: 24px;
}
.one-col p,
.one-col ol,
.one-col ul {
font-size: 16px;
line-height: 24px;
}
.one-col ol,
.one-col ul {
Margin-left: 18px;
}
.two-col .column table:nth-last-child(2) td h1:last-child,
.two-col .column table:nth-last-child(2) td h2:last-child,
.two-col .column table:nth-last-child(2) td h3:last-child,
.two-col .column table:nth-last-child(2) td p:last-child,
.two-col .column table:nth-last-child(2) td ol:last-child,
.two-col .column table:nth-last-child(2) td ul:last-child {
Margin-bottom: 23px;
}
.two-col .image-frame {
padding: 6px;
}
.two-col h1 {
font-size: 26px;
line-height: 32px;
Margin-bottom: 16px;
}
.two-col h2 {
font-size: 20px;
line-height: 26px;
Margin-bottom: 18px;
}
.two-col h3 {
font-size: 16px;
line-height: 20px;
Margin-bottom: 14px;
}
.two-col p,
.two-col ol,
.two-col ul {
font-size: 14px;
line-height: 23px;
}
.two-col ol,
.two-col ul {
Margin-left: 16px;
}
.two-col li {
padding-left: 5px;
}
.two-col .divider .inner {
padding-bottom: 23px;
}
.two-col .btn {
Margin-bottom: 23px;
}
.two-col blockquote {
padding-left: 16px;
}
.three-col .column table:nth-last-child(2) td h1:last-child,
.three-col .column table:nth-last-child(2) td h2:last-child,
.three-col .column table:nth-last-child(2) td h3:last-child,
.three-col .column table:nth-last-child(2) td p:last-child,
.three-col .column table:nth-last-child(2) td ol:last-child,
.three-col .column table:nth-last-child(2) td ul:last-child {
Margin-bottom: 21px;
}
.three-col .image-frame {
padding: 4px;
}
.three-col h1 {
font-size: 20px;
line-height: 26px;
Margin-bottom: 12px;
}
.three-col h2 {
font-size: 16px;
line-height: 22px;
Margin-bottom: 14px;
}
.three-col h3 {
font-size: 14px;
line-height: 18px;
Margin-bottom: 10px;
}
.three-col p,
.three-col ol,
.three-col ul {
font-size: 12px;
line-height: 21px;
}
.three-col ol,
.three-col ul {
Margin-left: 14px;
}
.three-col li {
padding-left: 6px;
}
.three-col .divider .inner {
padding-bottom: 21px;
}
.three-col .btn {
Margin-bottom: 21px;
}
.three-col .btn a {
font-size: 12px;
line-height: 14px;
padding: 8px 19px;
}
.three-col blockquote {
padding-left: 16px;
}
.one-col-feature .column-top {
font-size: 36px;
line-height: 36px;
}
.one-col-feature .column-bottom {
font-size: 4px;
line-height: 4px;
}
.one-col-feature .column {
text-align: center;
width: 600px;
}
.one-col-feature .image {
Margin-bottom: 32px;
}
.one-col-feature .column table:nth-last-child(2) td h1:last-child,
.one-col-feature .column table:nth-last-child(2) td h2:last-child,
.one-col-feature .column table:nth-last-child(2) td h3:last-child,
.one-col-feature .column table:nth-last-child(2) td p:last-child,
.one-col-feature .column table:nth-last-child(2) td ol:last-child,
.one-col-feature .column table:nth-last-child(2) td ul:last-child {
Margin-bottom: 32px;
}
.one-col-feature h1,
.one-col-feature h2,
.one-col-feature h3 {
text-align: center;
}
.one-col-feature h1 {
font-size: 52px;
Margin-bottom: 22px;
}
.one-col-feature h2 {
font-size: 42px;
Margin-bottom: 20px;
}
.one-col-feature h3 {
font-size: 32px;
line-height: 42px;
Margin-bottom: 20px;
}
.one-col-feature p,
.one-col-feature ol,
.one-col-feature ul {
font-size: 21px;
line-height: 32px;
Margin-bottom: 32px;
}
.one-col-feature p a,
.one-col-feature ol a,
.one-col-feature ul a {
text-decoration: none;
}
.one-col-feature p {
text-align: center;
}
.one-col-feature ol,
.one-col-feature ul {
Margin-left: 40px;
text-align: left;
}
.one-col-feature li {
padding-left: 3px;
}
.one-col-feature .btn {
Margin-bottom: 32px;
text-align: center;
}
.one-col-feature .divider .inner {
padding-bottom: 32px;
}
.one-col-feature blockquote {
border-bottom: 2px solid #e9e9e9;
border-left-color: #ffffff;
border-left-width: 0;
border-left-style: none;
border-top: 2px solid #e9e9e9;
Margin-bottom: 32px;
Margin-left: 0;
padding-bottom: 42px;
padding-left: 0;
padding-top: 42px;
position: relative;
}
.one-col-feature blockquote:before,
.one-col-feature blockquote:after {
background: -moz-linear-gradient(left, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
background: -webkit-gradient(linear, left top, right top, color-stop(25%, #ffffff), color-stop(25%, #e9e9e9), color-stop(75%, #e9e9e9), color-stop(75%, #ffffff));
background: -webkit-linear-gradient(left, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
background: -o-linear-gradient(left, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
background: -ms-linear-gradient(left, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
background: linear-gradient(to right, #ffffff 25%, #e9e9e9 25%, #e9e9e9 75%, #ffffff 75%);
content: '';
display: block;
height: 2px;
left: 0;
outline: 1px solid #ffffff;
position: absolute;
right: 0;
}
.one-col-feature blockquote:before {
top: -2px;
}
.one-col-feature blockquote:after {
bottom: -2px;
}
.one-col-feature blockquote p,
.one-col-feature blockquote ol,
.one-col-feature blockquote ul {
font-size: 42px;
line-height: 48px;
Margin-bottom: 48px;
}
.one-col-feature blockquote p:last-child,
.one-col-feature blockquote ol:last-child,
.one-col-feature blockquote ul:last-child {
Margin-bottom: 0 !important;
}
.footer {
width: 602px;
}
.footer .padded {
font-size: 12px;
line-height: 20px;
}
.social {
padding-top: 32px;
padding-bottom: 22px;
}
.social img {
display: block;
}
.social .divider {
font-family: sans-serif;
font-size: 10px;
line-height: 21px;
text-align: center;
padding-left: 14px;
padding-right: 14px;
}
.social .social-text {
height: 21px;
vertical-align: middle !important;
font-size: 10px;
font-weight: bold;
text-decoration: none;
text-transform: uppercase;
}
.social .social-text a {
text-decoration: none;
}
.address {
width: 250px;
}
.address .padded {
text-align: left;
padding-left: 0;
padding-right: 10px;
}
.subscription {
width: 350px;
}
.subscription .padded {
text-align: right;
padding-right: 0;
padding-left: 10px;
}
.address,
.subscription {
padding-top: 32px;
padding-bottom: 64px;
}
.address a,
.subscription a {
font-weight: bold;
text-decoration: none;
}
.address table,
.subscription table {
width: 100%;
}
@media only screen and (max-width: 651px) {
.gmail {
display: none !important;
}
}
@media only screen and (max-width: 620px) {
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td h1:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td h1:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td h1:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td h1:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td h2:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td h2:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td h2:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td h2:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td h3:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td h3:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td h3:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td h3:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td p:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td p:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td p:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td p:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td ol:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td ol:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td ol:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td ol:last-child,
[class=wrapper] .one-col .column:last-child table:nth-last-child(2) td ul:last-child,
[class=wrapper] .two-col .column:last-child table:nth-last-child(2) td ul:last-child,
[class=wrapper] .three-col .column:last-child table:nth-last-child(2) td ul:last-child,
[class=wrapper] .one-col-feature .column:last-child table:nth-last-child(2) td ul:last-child {
Margin-bottom: 24px !important;
}
[class=wrapper] .address,
[class=wrapper] .subscription {
display: block;
float: left;
width: 318px !important;
text-align: center !important;
}
[class=wrapper] .address {
padding-bottom: 0 !important;
}
[class=wrapper] .subscription {
padding-top: 0 !important;
}
[class=wrapper] h1 {
font-size: 36px !important;
line-height: 42px !important;
Margin-bottom: 18px !important;
}
[class=wrapper] h2 {
font-size: 26px !important;
line-height: 32px !important;
Margin-bottom: 20px !important;
}
[class=wrapper] h3 {
font-size: 18px !important;
line-height: 22px !important;
Margin-bottom: 16px !important;
}
[class=wrapper] p,
[class=wrapper] ol,
[class=wrapper] ul {
font-size: 16px !important;
line-height: 24px !important;
Margin-bottom: 24px !important;
}
[class=wrapper] ol,
[class=wrapper] ul {
Margin-left: 18px !important;
}
[class=wrapper] li {
padding-left: 2px !important;
}
[class=wrapper] blockquote {
padding-left: 16px !important;
}
[class=wrapper] .two-col .column:nth-child(n + 3) {
border-top: 1px solid #e9e9e9;
}
[class=wrapper] .btn {
margin-bottom: 24px !important;
}
[class=wrapper] .btn a {
display: block !important;
font-size: 13px !important;
font-weight: bold !important;
line-height: 15px !important;
padding: 10px 30px !important;
}
[class=wrapper] .column-bottom {
font-size: 8px !important;
line-height: 8px !important;
}
[class=wrapper] .first .column-bottom,
[class=wrapper] .three-col .second .column-bottom {
display: none;
}
[class=wrapper] .second .column-top,
[class=wrapper] .third .column-top {
display: none;
}
[class=wrapper] .image-frame {
padding: 4px !important;
}
[class=wrapper] .header .logo {
padding-left: 10px !important;
padding-right: 10px !important;
}
[class=wrapper] .header .logo div {
font-size: 26px !important;
line-height: 32px !important;
}
[class=wrapper] .header .logo div img {
display: inline-block !important;
max-width: 280px !important;
height: auto !important;
}
[class=wrapper] table.border,
[class=wrapper] .header,
[class=wrapper] .webversion,
[class=wrapper] .footer {
width: 320px !important;
}
[class=wrapper] .preheader .webversion,
[class=wrapper] .header .logo a {
text-align: center !important;
}
[class=wrapper] .preheader table,
[class=wrapper] .border td {
width: 318px !important;
}
[class=wrapper] .border td.border {
width: 1px !important;
}
[class=wrapper] .image .border td {
width: auto !important;
}
[class=wrapper] .title {
display: none;
}
[class=wrapper] .footer .padded {
text-align: center !important;
}
[class=wrapper] .footer .subscription .padded {
padding-top: 20px !important;
}
[class=wrapper] .footer .social-link {
display: block !important;
}
[class=wrapper] .footer .social-link table {
margin: 0 auto 10px !important;
}
[class=wrapper] .footer .divider {
display: none !important;
}
[class=wrapper] .one-col-feature .btn {
margin-bottom: 28px !important;
}
[class=wrapper] .one-col-feature .image {
margin-bottom: 28px !important;
}
[class=wrapper] .one-col-feature .divider .inner {
padding-bottom: 28px !important;
}
[class=wrapper] .one-col-feature h1 {
font-size: 42px !important;
line-height: 48px !important;
margin-bottom: 20px !important;
}
[class=wrapper] .one-col-feature h2 {
font-size: 32px !important;
line-height: 36px !important;
margin-bottom: 18px !important;
}
[class=wrapper] .one-col-feature h3 {
font-size: 26px !important;
line-height: 32px !important;
margin-bottom: 20px !important;
}
[class=wrapper] .one-col-feature p,
[class=wrapper] .one-col-feature ol,
[class=wrapper] .one-col-feature ul {
font-size: 20px !important;
line-height: 28px !important;
margin-bottom: 28px !important;
}
[class=wrapper] .one-col-feature blockquote {
font-size: 18px !important;
line-height: 26px !important;
margin-bottom: 28px !important;
padding-bottom: 26px !important;
padding-left: 0 !important;
padding-top: 26px !important;
}
[class=wrapper] .one-col-feature blockquote p,
[class=wrapper] .one-col-feature blockquote ol,
[class=wrapper] .one-col-feature blockquote ul {
font-size: 26px !important;
line-height: 32px !important;
}
[class=wrapper] .one-col-feature blockquote p:last-child,
[class=wrapper] .one-col-feature blockquote ol:last-child,
[class=wrapper] .one-col-feature blockquote ul:last-child {
margin-bottom: 0 !important;
}
[class=wrapper] .one-col-feature .column table:last-of-type h1:last-child,
[class=wrapper] .one-col-feature .column table:last-of-type h2:last-child,
[class=wrapper] .one-col-feature .column table:last-of-type h3:last-child {
margin-bottom: 28px !important;
}
}
@media only screen and (max-width: 320px) {
[class=wrapper] td.border {
display: none;
}
[class=wrapper] table.border,
[class=wrapper] .header,
[class=wrapper] .webversion,
[class=wrapper] .footer {
width: 318px !important;
}
} | 0.551091 | 0.141163 |
body{
margin: 0px;
font-family: Arial;
color: rgba(153, 157, 163,.90);
}
.box-before {
}
.logo{
height: 50px;
width: 200px;
display: block;
margin: 20px auto 20px auto;
}
.line-1{
font-size: 30px;
text-align: center;
}
.line-2{
font-size: 20;
text-align: center;
}
.login-box{
border: 1px solid transparent;
border-radius: 2px;
width: 400px;
height: 300px;
background-color: rgb(227, 232, 239);
box-shadow: 0 3px rgba(0,0,0,.20);
display: block;
margin: auto;
}
.photo{
width: 85px;
height: 85px;
display: block;
margin: 40px auto 30px;
}
.type-email{
background-color: #fcf7c4;
height: 30px;
width: 200px;
display: block;
margin: 0px auto 0px;
}
.button-next{
color: white;
background-color: rgb(63, 159, 244);
height: 30px;
width: 205px;
display: block;
margin: 5px auto 5px;
border: 1px solid #0980ea;
border-radius: 2px;
font-weight: bold;
}
a.need-help{
display: block;
margin-right: 24%;
text-align: right;
text-decoration: none;
}
.box-after{
height: 120px;
width: 400px;
display: block;
margin: 20px auto;
}
div.box-after{
margin: 20px auto 15px;
}
a.create-account{
text-align: center;
margin: 35%;
text-decoration: none;
}
.one-boogle{
text-align: center;
}
.icons{
display: block;
margin-left: 25%;
}
.boogle{
height: 20px;
width: 20px;
}
.mail{
height: 20px;
width: 20px;
}
.maps{
height: 20px;
width: 20px;
}
.youtube{
height: 20px;
width: 20px;
}
.drive{
height: 20px;
width: 20px;
}
.photos{
height: 20px;
width: 20px;
}
.store{
height: 20px;
width: 20px;
}
.chrome{
height: 20px;
width: 20px;
}
.bottom-bar{
border: 1px solid transparent;
height: 40px;
position: absolute;
width: 100%;
padding: 1%;
box-sizing: border-box;
}
.text{
float: left;
}
.about-google{
padding-left: 40px;
text-decoration: none;
}
.privacy{
padding-left: 15px;
text-decoration: none;
}
.terms{
padding-left: 15px;
text-decoration: none;
}
.help{
padding-left: 15px;
text-decoration: none;
}
.language{
float: right;
}
.language-icon{
width: 20px;
height: 20px;
}
.language-select{
} | templates/Boogle_Login.css | body{
margin: 0px;
font-family: Arial;
color: rgba(153, 157, 163,.90);
}
.box-before {
}
.logo{
height: 50px;
width: 200px;
display: block;
margin: 20px auto 20px auto;
}
.line-1{
font-size: 30px;
text-align: center;
}
.line-2{
font-size: 20;
text-align: center;
}
.login-box{
border: 1px solid transparent;
border-radius: 2px;
width: 400px;
height: 300px;
background-color: rgb(227, 232, 239);
box-shadow: 0 3px rgba(0,0,0,.20);
display: block;
margin: auto;
}
.photo{
width: 85px;
height: 85px;
display: block;
margin: 40px auto 30px;
}
.type-email{
background-color: #fcf7c4;
height: 30px;
width: 200px;
display: block;
margin: 0px auto 0px;
}
.button-next{
color: white;
background-color: rgb(63, 159, 244);
height: 30px;
width: 205px;
display: block;
margin: 5px auto 5px;
border: 1px solid #0980ea;
border-radius: 2px;
font-weight: bold;
}
a.need-help{
display: block;
margin-right: 24%;
text-align: right;
text-decoration: none;
}
.box-after{
height: 120px;
width: 400px;
display: block;
margin: 20px auto;
}
div.box-after{
margin: 20px auto 15px;
}
a.create-account{
text-align: center;
margin: 35%;
text-decoration: none;
}
.one-boogle{
text-align: center;
}
.icons{
display: block;
margin-left: 25%;
}
.boogle{
height: 20px;
width: 20px;
}
.mail{
height: 20px;
width: 20px;
}
.maps{
height: 20px;
width: 20px;
}
.youtube{
height: 20px;
width: 20px;
}
.drive{
height: 20px;
width: 20px;
}
.photos{
height: 20px;
width: 20px;
}
.store{
height: 20px;
width: 20px;
}
.chrome{
height: 20px;
width: 20px;
}
.bottom-bar{
border: 1px solid transparent;
height: 40px;
position: absolute;
width: 100%;
padding: 1%;
box-sizing: border-box;
}
.text{
float: left;
}
.about-google{
padding-left: 40px;
text-decoration: none;
}
.privacy{
padding-left: 15px;
text-decoration: none;
}
.terms{
padding-left: 15px;
text-decoration: none;
}
.help{
padding-left: 15px;
text-decoration: none;
}
.language{
float: right;
}
.language-icon{
width: 20px;
height: 20px;
}
.language-select{
} | 0.273963 | 0.096791 |
@import url('https://fonts.googleapis.com/css?family=Muli:300,900');
body{
margin: 0;
padding: 0;
background-color: lightskyblue;
}
.top-container {
background-color: #30e3cb;
height: 40px;
background-size: 2000px 1100px;
text-align: center;
}
.section-bar {
text-align: center;
}
.section-bar ul li {
list-style: none;
}
.section-bar h1 {
color: aqua;
}
.img {
width: 300px;
height: 300px;
border-radius: 20px;
}
hr{
height: 5px;
border-radius: 7px;
background-color: tan;
}
/* styling the about me page */
.columns {
columns: 250px 2;
column-rule: 1px dotted #ccc;
column-gap: 3em;
}
.about {
column-span: all;
text-align: center;
}
/* styling the about me page ends here*/
/* styling the contacts page */
form {
padding:20px;
font-family: Mallanna, sans-serif;
font-size: 1.5rem;
line-height: 1.8rem;
}
.col-containerweb {
display: flex; /* just trying out flex a bit */
width: 100%;
border: 1px; solid black;
}
.colweb{
width:25%;
display flex: 1;
background:#E6E5E5;
padding-bottom:20px;
}
.col-wrap h3{
padding: 0 5px 0 5px;
}
.col-wrap h2{
text-transform: uppercase;
line-height: 2.2rem;
margin-bottom: 0;
}
.col-wrap p{
margin-top: 0;
line-height: 1.5rem;
padding-top: 10px;
}
.col-wrap{
margin: 10px auto;
max-width: 80%;
max-height:80%;
color:#777371;
font-family: Mallanna, sans-serif;
font-size: 1.5rem;
text-align: center; overflow: scroll;
overflow: scroll;
max-height: 300px;
}
.colweb-image{
padding-top: 40px;
margin-bottom: 0px;
display:block;
width:100%;
}
.box{
width: 350px;
height: 30px;
font-size: 1rem;
}
.boxarea{
width: 350px;
height: 130px;
font-size: 1rem;
}
/* styling the contacts page ends here*/
.project-header {
color: brown;
text-align: center;
}
a {
text-decoration: #11999E;
padding: 5px 15px;
color: #ffff;
font-family: 'Ubuntu', sans-serif;
font-size: 1.5rem;
background-color: chartreuse;
border-radius:20px;
}
.bottom-container {
padding: 25px 0 12px;
background-color: red;
text-align: center;
}
.footer-link {
color: #11999E;
font-family: 'Montserrat', sans-serif;
margin: 10px 20px;
text-decoration: none;
text-align: center;
}
/* active links for the footer link */
.footer-link a:visited{
background-color: deeppink;
}
.copyright {
color: #ffff;
text-align: center;
color: black;
} | css/style.css | @import url('https://fonts.googleapis.com/css?family=Muli:300,900');
body{
margin: 0;
padding: 0;
background-color: lightskyblue;
}
.top-container {
background-color: #30e3cb;
height: 40px;
background-size: 2000px 1100px;
text-align: center;
}
.section-bar {
text-align: center;
}
.section-bar ul li {
list-style: none;
}
.section-bar h1 {
color: aqua;
}
.img {
width: 300px;
height: 300px;
border-radius: 20px;
}
hr{
height: 5px;
border-radius: 7px;
background-color: tan;
}
/* styling the about me page */
.columns {
columns: 250px 2;
column-rule: 1px dotted #ccc;
column-gap: 3em;
}
.about {
column-span: all;
text-align: center;
}
/* styling the about me page ends here*/
/* styling the contacts page */
form {
padding:20px;
font-family: Mallanna, sans-serif;
font-size: 1.5rem;
line-height: 1.8rem;
}
.col-containerweb {
display: flex; /* just trying out flex a bit */
width: 100%;
border: 1px; solid black;
}
.colweb{
width:25%;
display flex: 1;
background:#E6E5E5;
padding-bottom:20px;
}
.col-wrap h3{
padding: 0 5px 0 5px;
}
.col-wrap h2{
text-transform: uppercase;
line-height: 2.2rem;
margin-bottom: 0;
}
.col-wrap p{
margin-top: 0;
line-height: 1.5rem;
padding-top: 10px;
}
.col-wrap{
margin: 10px auto;
max-width: 80%;
max-height:80%;
color:#777371;
font-family: Mallanna, sans-serif;
font-size: 1.5rem;
text-align: center; overflow: scroll;
overflow: scroll;
max-height: 300px;
}
.colweb-image{
padding-top: 40px;
margin-bottom: 0px;
display:block;
width:100%;
}
.box{
width: 350px;
height: 30px;
font-size: 1rem;
}
.boxarea{
width: 350px;
height: 130px;
font-size: 1rem;
}
/* styling the contacts page ends here*/
.project-header {
color: brown;
text-align: center;
}
a {
text-decoration: #11999E;
padding: 5px 15px;
color: #ffff;
font-family: 'Ubuntu', sans-serif;
font-size: 1.5rem;
background-color: chartreuse;
border-radius:20px;
}
.bottom-container {
padding: 25px 0 12px;
background-color: red;
text-align: center;
}
.footer-link {
color: #11999E;
font-family: 'Montserrat', sans-serif;
margin: 10px 20px;
text-decoration: none;
text-align: center;
}
/* active links for the footer link */
.footer-link a:visited{
background-color: deeppink;
}
.copyright {
color: #ffff;
text-align: center;
color: black;
} | 0.301259 | 0.081556 |
@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
font-family: 'Roboto', sans-serif;
}
.main-wrapper {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 70%;
display: flex;
margin-left: 15%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
min-height: 500px;
}
.left-wrapper {
flex: 1;
background: url('../assets/images/background.png') no-repeat top center;
background-size: cover;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.right-wrapper {
flex: 1;
padding: 60px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
.sign-up-form {
display: flex;
max-width: 600px;
margin: 0 auto;
}
.input-fields-1 {
margin-right: 10%;
display: flex;
flex-direction: column;
width: 100%;
}
.head {
color: #00796B;
font-size: 24px;
font-weight: bold;
}
.title {
font-size: 30px;
font-weight: bold;
padding-top: 50px;
margin-top: 10px;
margin-bottom: 10px;
color: black;
}
.welcome-text {
text-align: center;
margin-top: 40px;
margin-bottom: 40px;
}
.input-fields-1 input[type="email"],
input[type="password"] {
margin-bottom: 20px;
margin-top: 20px;
padding: 10px;
color: #808080;
border-radius: 10px;
border: 2px solid whitesmoke;
width: 100%;
font-size: 1rem;
}
.welcome-text {
color: white;
text-align: center;
}
.welcome-sign-in input[type="submit"] {
width: 200px;
background: #00796B;
border-radius: 20px;
border: 0px;
color: white;
padding: 15px;
width: 80%;
cursor: pointer;
}
.welcome-sign-in input[type="submit"]:hover {
background-color: black;
color: white;
}
@media only screen and (max-width: 900px) {
.main-wrapper {
background-color: white;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 90%;
display: flex;
margin-left: 5%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
min-height: 500px;
}
@media only screen and (max-width: 600px) {
* {
padding: 0;
box-sizing: border-box;
outline: none;
font-family: 'Roboto', sans-serif;
}
.main-wrapper {
transform: initial;
margin-top: 10px;
margin-bottom: 10px;
position: unset;
background-color: white;
width: 90%;
margin-left: 5%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.left-wrapper {
background: url('../assets/images/background.png') no-repeat top center;
background-size: cover;
width: 100%;
flex: 1;
padding-bottom: 10%;
min-height: 300px;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.right-wrapper {
flex: 2;
}
.sign-up-form {
width: 100%;
display: flex;
flex-direction: column;
}
.input-fields-1 {
flex: 1;
width: 100%;
}
.head {
color: #00796B;
font-size: 24px;
font-weight: bold;
}
.title {
font-size: 30px;
font-weight: bold;
padding-top: 50px;
margin-top: 10px;
margin-bottom: 10px;
}
.welcome-text {
text-align: center;
margin-top: 40px;
margin-bottom: 40px;
}
}
} | UI/css/sign-in.css | @import url('https://fonts.googleapis.com/css?family=Roboto');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
font-family: 'Roboto', sans-serif;
}
.main-wrapper {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 70%;
display: flex;
margin-left: 15%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
min-height: 500px;
}
.left-wrapper {
flex: 1;
background: url('../assets/images/background.png') no-repeat top center;
background-size: cover;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.right-wrapper {
flex: 1;
padding: 60px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
.sign-up-form {
display: flex;
max-width: 600px;
margin: 0 auto;
}
.input-fields-1 {
margin-right: 10%;
display: flex;
flex-direction: column;
width: 100%;
}
.head {
color: #00796B;
font-size: 24px;
font-weight: bold;
}
.title {
font-size: 30px;
font-weight: bold;
padding-top: 50px;
margin-top: 10px;
margin-bottom: 10px;
color: black;
}
.welcome-text {
text-align: center;
margin-top: 40px;
margin-bottom: 40px;
}
.input-fields-1 input[type="email"],
input[type="password"] {
margin-bottom: 20px;
margin-top: 20px;
padding: 10px;
color: #808080;
border-radius: 10px;
border: 2px solid whitesmoke;
width: 100%;
font-size: 1rem;
}
.welcome-text {
color: white;
text-align: center;
}
.welcome-sign-in input[type="submit"] {
width: 200px;
background: #00796B;
border-radius: 20px;
border: 0px;
color: white;
padding: 15px;
width: 80%;
cursor: pointer;
}
.welcome-sign-in input[type="submit"]:hover {
background-color: black;
color: white;
}
@media only screen and (max-width: 900px) {
.main-wrapper {
background-color: white;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 90%;
display: flex;
margin-left: 5%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
min-height: 500px;
}
@media only screen and (max-width: 600px) {
* {
padding: 0;
box-sizing: border-box;
outline: none;
font-family: 'Roboto', sans-serif;
}
.main-wrapper {
transform: initial;
margin-top: 10px;
margin-bottom: 10px;
position: unset;
background-color: white;
width: 90%;
margin-left: 5%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.left-wrapper {
background: url('../assets/images/background.png') no-repeat top center;
background-size: cover;
width: 100%;
flex: 1;
padding-bottom: 10%;
min-height: 300px;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.right-wrapper {
flex: 2;
}
.sign-up-form {
width: 100%;
display: flex;
flex-direction: column;
}
.input-fields-1 {
flex: 1;
width: 100%;
}
.head {
color: #00796B;
font-size: 24px;
font-weight: bold;
}
.title {
font-size: 30px;
font-weight: bold;
padding-top: 50px;
margin-top: 10px;
margin-bottom: 10px;
}
.welcome-text {
text-align: center;
margin-top: 40px;
margin-bottom: 40px;
}
}
} | 0.324449 | 0.135175 |
body {
padding-right: 0px;
padding-left: 0px;
background-color: #fff;
font-family: 'Open Sans', sans-serif;
color: rgba(0, 0, 0, .87);
font-size: 18px;
line-height: 28px;
font-weight: 400;
}
h1 {
margin-top: 0px;
margin-bottom: 20px;
padding-top: 100px;
color: rgba(0, 0, 0, .87);
font-size: 40px;
line-height: 48px;
font-weight: 500;
letter-spacing: 0.4px;
}
h2 {
border-bottom: 1px solid #000;
font-family: Lato, sans-serif;
font-size: 18px;
line-height: 28px;
font-weight: 300;
text-transform: uppercase;
}
h3 {
display: block;
margin: 10px auto;
padding-left: 20px;
color: dimgrey;
font-size: 12px;
line-height: 20px;
font-weight: 300;
text-align: left;
text-transform: uppercase;
}
h4 {
margin-top: 10px;
margin-bottom: 20px;
padding-right: 15px;
padding-left: 15px;
color: #0d0d17;
font-size: 20px;
line-height: 28px;
font-weight: 500;
}
h5 {
width: 100%;
margin-top: 15px;
margin-bottom: 10px;
padding-right: 15px;
padding-bottom: 5px;
padding-left: 15px;
border-bottom: 1px none #d1d1d1;
color: #5c5c5c;
font-size: 12px;
line-height: 20px;
font-weight: 300;
text-transform: uppercase;
}
p {
font-family: Lato, sans-serif;
font-size: 18px;
line-height: 28px;
font-weight: 300;
letter-spacing: 0px;
}
a {
color: #ff0085;
text-decoration: none;
cursor: pointer;
}
a:hover {
text-decoration: underline;
}
ul {
margin-top: 0px;
margin-bottom: 0px;
padding-left: 40px;
}
li {
background-image: none;
}
strong {
font-weight: 400;
}
blockquote {
padding: 10px 20px;
border-left: 5px solid #e2e2e2;
color: #aaa;
font-size: 18px;
line-height: 28px;
font-weight: 300;
letter-spacing: 0px;
}
.paper {
display: block;
margin: 25px auto 35px;
padding: 10px 30px;
border-radius: 3px;
background-color: #fff;
box-shadow: 0 3px 20px -13px #000;
}
.paper.paper-execute {
margin-top: -10px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
background-color: transparent;
box-shadow: none;
}
.paper.paper-execute.disabled {
opacity: 0.97;
}
.paper.paper-comment {
position: relative;
width: 100%;
margin-top: 5px;
margin-bottom: 5px;
padding: 0px;
background-color: transparent;
box-shadow: none;
}
.paper.paper-empty {
margin-bottom: 0px;
padding-bottom: 0px;
background-color: transparent;
box-shadow: none;
}
.kind {
position: absolute;
left: 0px;
top: 0px;
display: none;
width: 120px;
padding: 10px;
float: right;
border-bottom: 1px none #000;
border-radius: 3px 0px;
background-color: #e6f9f4;
box-shadow: none;
font-family: Lato, sans-serif;
font-size: 10px;
text-align: center;
text-transform: uppercase;
}
.kind:hover {
border-bottom-style: none;
text-decoration: underline;
}
.contract {
position: relative;
display: block;
max-width: 750px;
margin-right: auto;
margin-left: auto;
}
.icon {
width: 32px;
height: 32px;
margin-top: 5px;
margin-bottom: 5px;
}
.declaration {
position: relative;
display: inline;
line-height: 45px;
}
.declaration:hover {
background-color: rgba(0, 191, 143, .1);
}
.label.bitcoin-address {
margin-top: -10px;
font-size: 10px;
}
.label.title {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color: #00c091;
color: #fff;
font-size: 10px;
text-transform: uppercase;
}
.label.label-corner {
margin-top: 6px;
float: left;
font-size: 12px;
line-height: 15px;
}
.description {
font-family: Lato, sans-serif;
font-weight: 300;
}
.description.date {
margin-top: 15px;
text-align: left;
}
.description.editor {
height: 80px;
max-width: 100%;
margin-bottom: 10px;
padding: 10px;
border: 1px none #00c091;
border-radius: 5px;
background-color: rgba(0, 191, 143, .1);
box-shadow: none;
font-size: 18px;
line-height: 28px;
}
.description.input {
height: 100px;
font-size: 14px;
line-height: 22px;
}
.section {
clear: both;
}
.section.rights {
margin-right: -30px;
margin-left: -30px;
padding-top: 10px;
padding-right: 30px;
padding-left: 30px;
background-color: #fafafa;
box-shadow: inset 0 0 14px 0 #000;
}
.section.section-mobile {
padding: 5px 8px;
}
.section.section-mobile.section-mobile-feed {
margin-right: -10px;
margin-left: -10px;
}
.section.section-editor {
margin: 0px -15px;
padding: 0px 0px 0px 5px;
}
.card {
position: static;
right: 10px;
display: inline-block;
overflow: hidden;
width: 100%;
padding: 10px;
border-style: solid;
border-width: 1px;
border-color: #f3f3f3 #e0e0e0 #e0e0e0 #f3f3f3;
border-radius: 5px;
background-color: #eaeaea;
box-shadow: 0 6px 20px 4px rgba(0, 0, 0, .13);
color: #000;
}
.card.temporal {
position: fixed;
left: 30%;
right: 0px;
width: 40%;
}
.fingerprint {
display: block;
width: 120px;
margin-right: auto;
margin-bottom: 20px;
margin-left: auto;
}
.power {
width: 50%;
padding: 10px;
float: left;
border-bottom: 1px none #000;
text-align: center;
}
.power.hundred {
width: 100%;
}
.power.hundred.power-election {
padding-top: 0px;
padding-bottom: 10px;
}
.power.hundred.float-left {
float: left;
}
.power.power-small {
width: 25%;
max-width: 200px;
padding: 0px;
text-align: left;
}
.detail {
font-family: Lato, sans-serif;
color: #000;
font-size: 14px;
font-weight: 300;
}
.text {
display: inline-block;
padding-right: 10px;
}
.text.setting-label {
overflow: hidden;
max-width: 75%;
float: left;
clear: both;
font-size: 16px;
line-height: 40px;
}
.calendar-menu {
padding-right: 5px;
padding-left: 5px;
border-radius: 3px;
background-color: #00bf8f;
color: #fff;
cursor: pointer;
}
.calendar-menu:active {
background-color: #00c091;
color: #fff;
}
.calendar-menu:focus {
background-color: #00c091;
color: #fff;
}
.calendar-menu.w--open {
background-color: #e6f9f4;
color: #00bf8f;
}
.calendar-menu.calendar-menu-active {
background-color: #e6f9f4;
color: #00bf8f;
}
.setting {
display: block;
overflow: hidden;
height: auto;
margin: 5px;
padding: 5px 5px 5px 10px;
border-radius: 3px;
background-color: #f7f7f7;
}
.dropdown {
margin-top: 5px;
}
.dropdown.combo {
display: inline-block;
max-width: 120px;
margin-top: 0px;
border: 1px solid #e6f9f4;
border-radius: 3px;
background-color: #e6f9f4;
color: #00bf8f;
font-size: 18px;
}
.dropdown.combo:focus {
border-color: #00bf8f;
}
.dropdown.combo.combo-day {
max-width: 80px;
}
.dropdown-link {
padding-top: 5px;
padding-bottom: 5px;
border-bottom: 1px none #000;
border-radius: 3px;
color: #00c091;
}
.dropdown-link.calendar {
padding-right: 0px;
padding-left: 5px;
font-size: 14px;
text-align: center;
}
.dropdown-list {
background-color: #00c091;
}
.dropdown-list.w--open {
padding-right: 0px;
padding-left: 5px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
background-color: #e6f9f4;
box-shadow: 0 3px 13px -9px #000;
}
.qr-code {
border: 5px solid #fff;
text-align: center;
}
.qr-code.qr-sign {
display: block;
max-width: 160px;
margin: 10px auto;
border-style: solid;
border-radius: 2px;
}
.bitcoin {
display: block;
margin: 10px 20px;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
.amount {
display: block;
margin-top: 10px;
margin-bottom: 10px;
font-size: 40px;
}
.parameter {
margin: 20px;
}
.kind-label {
font-weight: 700;
}
.symbol {
height: 120px;
margin-top: 10px;
margin-bottom: 10px;
}
.symbol.profile-pic {
width: 60px;
height: 60px;
margin-top: 10px;
margin-bottom: 10px;
float: left;
border: 1px solid #7d849f;
border-radius: 100px;
background-color: #f2f2f5;
}
.symbol.profile-pic.profile-pic-navbar {
width: 40px;
height: 40px;
margin: 3px 0px;
float: right;
border-color: transparent;
background-color: transparent;
box-shadow: none;
}
.symbol.profile-pic.tag-delegate {
width: 50px;
height: 50px;
margin-right: 10px;
}
.symbol.profile-pic.tag-delegate.off {
opacity: 0.3;
}
.symbol.profile-pic.id-profile {
display: block;
width: 250px;
height: 250px;
margin: 10px auto;
float: none;
border-radius: 250px;
}
.symbol.profile-pic.kind-identity {
display: none;
}
.symbol.profile-pic.profile-thumb {
width: auto;
border-radius: 10px;
}
.symbol.profile-pic.profile-sign {
width: auto;
height: 60px;
margin-left: 35%;
border-style: solid;
border-color: #00bf8f;
background-color: #00bf8f;
text-decoration: none;
}
.symbol.profile-pic.profile-sign.profile-active {
border-color: #00bf8f;
background-color: #00bf8f;
}
.symbol.profile-pic.profile-sign.profile-sign-active {
background-color: #e6f9f4;
}
.symbol.profile-pic.profile-pic-edit {
width: 80px;
height: 80px;
margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
float: left;
border-radius: 100px;
}
.symbol.profile-pic.profile-edit {
position: absolute;
padding-top: 21px;
padding-bottom: 21px;
opacity: 0;
color: #fff;
font-size: 12px;
line-height: 16px;
font-weight: 300;
text-align: center;
text-transform: uppercase;
}
.symbol.profile-pic.profile-edit:hover {
background-color: rgba(255, 133, 165, .6);
opacity: 1;
}
.symbol.profile-pic.small {
width: 50px;
height: 50px;
margin-top: 0px;
margin-right: 5px;
margin-bottom: 0px;
}
.symbol.profile-pic.identity-small {
width: 36px;
height: 36px;
margin-top: 0px;
margin-bottom: 0px;
}
.symbol.profile-pic.identity-small.identity-delegate {
margin-right: -5px;
}
.symbol.profile-pic.identity-small.profile-pic-placeholder {
border-style: none;
}
.symbol.profile-pic.profile-pic-disabled {
cursor: default;
}
.symbol.profile-pic.profile-pic-disabled:hover {
border-color: #e6f9f4;
}
.symbol.profile-pic.profile-pic-disabled.profile-pic-login {
margin-top: -1px;
margin-right: -3px;
margin-bottom: -5px;
}
.symbol.profile-pic.pending {
opacity: 0.25;
}
.symbol.profile-pic.profile-inbox {
width: 24px;
height: 24px;
margin: 1px 8px 0px 0px;
}
.symbol.profile-pic.profile-inbox:hover {
border-color: #e6f9f4;
}
.symbol.profile-pic.profile-adhoc {
width: 32px;
height: 32px;
margin-top: 7px;
float: right;
}
.symbol.profile-pic.profile-pic-placeholder {
border-style: none;
background-color: #f2f2f5;
}
.semantics {
display: inline-block;
margin-top: 0px;
margin-bottom: 5px;
padding-top: 0px;
border-top: 1px none #ccc;
}
.tag {
margin: 5px;
padding: 10px 15px 10px 10px;
float: left;
border-bottom-style: none;
border-radius: 3px;
background-color: #e6f9f4;
color: #00c091;
font-size: 16px;
line-height: 22px;
cursor: -webkit-grab;
cursor: grab;
}
.tag.input {
width: 250px;
height: 44px;
margin: 5px -10px 0px 0px;
padding: 10px 50px 10px 42px;
border: 1px dotted #00bf8f;
border-radius: 3px;
background-color: #fff;
font-size: 18px;
line-height: 40px;
text-transform: none;
cursor: text;
}
.tag.input:active {
color: #00c091;
}
.tag.input.custom-tag {
width: auto;
margin-bottom: 5px;
}
.tag.unauthorized {
border-bottom-color: #f10000;
background-color: #fae6e6;
color: #ff2752;
text-transform: none;
}
.tag.off {
opacity: 0.5;
}
.tag.ui-sortable-helper {
box-shadow: 0 1px 3px -2px #000;
}
.tag.tag-placeholder {
height: 42px;
border-style: dashed;
border-width: 1px;
border-color: rgba(0, 191, 143, .32);
background-color: transparent;
}
.tag.tag-empty {
display: inline-block;
margin-right: 0px;
margin-left: 0px;
float: none;
background-color: #f5f5f5;
color: hsla(0, 0%, 100%, .7);
cursor: default;
}
.tag.tag-navbar {
display: none;
margin-top: -35px;
float: right;
box-shadow: inset 0 0 2px 0 #000;
font-size: 16px;
}
.tag.tag-empty {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-right: 10px;
float: none;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
border: 1px dashed #00bf8f;
background-color: transparent;
}
.tag.tag-no-grab {
cursor: default;
}
.hash-icon {
width: 20px;
height: 20px;
margin-top: 2px;
margin-right: 10px;
float: left;
}
.hash-icon.hash-icon-custom {
position: absolute;
margin-top: 15px;
margin-left: 10px;
}
.hash-tag {
display: inline-block;
}
.hash-tag.hash-tag-empty {
color: #aaa;
}
.selector {
position: static;
display: block;
overflow: auto;
height: 115px;
margin-right: 5px;
margin-bottom: 10px;
margin-left: 5px;
padding: 5px;
clear: both;
border-radius: 0px 0px 5px 5px;
background-color: #e6e6e6;
box-shadow: inset 0 -1px 7px -4px #000;
}
.selector.identity-list {
height: 76px;
padding: 10px;
}
.selector.selector-proposals {
height: 350px;
padding: 15px;
}
.cover {
display: none;
height: 300px;
margin: -30px -30px 20px;
padding: 30px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
background-image: url('../images/Screen-Shot-2015-11-17-at-6.03.27-PM.png');
background-position: 50% 0px;
background-size: cover;
box-shadow: inset 0 0 40px -20px #000;
}
.button {
margin: 5px;
padding: 9px 14px;
border-radius: 6px;
background-color: #580074;
font-family: Lato, sans-serif;
color: #fff;
font-size: 14px;
font-weight: 500;
text-align: center;
text-transform: uppercase;
cursor: pointer;
}
.button.execute {
display: block;
margin: 0px auto;
font-size: 24px;
line-height: 45px;
font-weight: 300;
text-align: center;
text-transform: none;
cursor: pointer;
}
.button.execute:active {
border: 1px solid #f04;
background-color: transparent;
color: #f04;
}
.button.execute.disabled {
border-color: #00bf8f;
background-color: transparent;
opacity: 1;
color: #00bf8f;
cursor: default;
}
.button.execute.button-small {
padding: 10px;
font-size: 20px;
line-height: 30px;
}
.button.execute.button-small.button-remove {
padding-top: 9px;
padding-bottom: 9px;
border-color: #ff2752;
background-color: #fae6e6;
color: #ff2752;
}
.button.execute.button-small.button-remove:active {
background-color: #ff2752;
color: #fae6e6;
}
.button.execute.executed {
background-color: transparent;
color: #00bf8f;
cursor: default;
}
.button.execute.confirm {
width: 50%;
float: left;
}
.button.execute.reject {
border-color: #ff2752;
background-color: #ff2752;
}
.button.execute.reject:active {
border-color: #ff2752;
background-color: transparent;
color: #ff2752;
}
.button.login-button {
width: 100%;
margin-right: 0px;
margin-left: 0px;
border: 1px solid #580074;
font-size: 14px;
}
.button.login-button:hover {
border-style: solid;
border-color: #ff0085;
background-color: #ff0085;
color: #fff;
}
.button.login-button:active {
border: 1px solid #580074;
background-color: transparent;
color: #580074;
}
.button.login-button.button-secondary {
padding-top: 9px;
padding-bottom: 9px;
border: 1px solid #84849e;
background-color: transparent;
color: #5a0075;
}
.button.login-button.button-secondary:hover {
padding-top: 10px;
padding-bottom: 10px;
border-style: none;
border-color: #ff0085;
background-color: #ff0085;
color: #fff;
}
.button.login-button.button-half {
width: 100%;
margin-right: 0px;
margin-left: 0px;
float: left;
}
.button.login-button.button-half.button-remove {
border-color: #ff2752;
background-color: #ff2752;
}
.button.login-button.button-half.button-remove:active {
background-color: transparent;
color: #ff2752;
}
.button.login-button.button-half.mobile-button {
line-height: 18px;
}
.button.login-button.button-half.mobile-button.mobile-button-disabled {
border-color: #bbb;
background-color: transparent;
color: #bbb;
}
.button.login-button.button-half.button-disabled {
border-color: #aaa;
background-color: transparent;
color: #aaa;
}
.button.login-button.facebook {
margin-bottom: 5px;
background-color: #3c5b96;
text-align: center;
}
.button.login-button.facebook:active {
border-color: #3c5b96;
background-color: transparent;
color: #f5f5f5;
}
.button.login-button.facebook.half {
width: 50%;
margin-right: 0px;
margin-left: 0px;
float: left;
}
.button.login-button.blockstack {
border-color: #270e34;
background-color: #270e34;
}
.button.login-button.blockstack:active {
background-color: transparent;
color: #fff;
}
.button.facebook {
border-color: #3c5b96;
background-color: #3c5b96;
}
.button.facebook.button-social {
width: 50%;
}
.button.twitter {
border-color: #2ba3ef;
background-color: #2ba3ef;
}
.button.button-social {
width: 125px;
margin-right: 5px;
margin-left: 5px;
float: left;
font-size: 16px;
}
.button.button-social.twitter:active {
background-color: transparent;
}
.button.button-social.facebook {
width: 125px;
}
.button.button-social.facebook:active {
background-color: transparent;
}
.button.button-upload {
display: inline-block;
margin-top: 10px;
margin-bottom: 10px;
padding: 5px 10px;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
border-style: solid;
border-width: 1px;
border-color: rgba(88, 16, 115, .18);
background-color: transparent;
color: #581073;
font-size: 14px;
text-transform: none;
}
.button.button-upload:hover {
border-color: #ff0085;
}
.button.button-upload:active {
background-color: rgba(255, 0, 133, .07);
}
.button.button-cta {
width: 40%;
height: 40px;
margin: 0px;
padding-top: 8px;
padding-bottom: 10px;
float: left;
clear: none;
border-radius: 0px 5px 5px 0px;
font-size: 14px;
text-align: center;
}
.button.button-cta:hover {
border-color: #fe6580;
background-color: #ff0085;
}
.button.button-menu {
margin-right: -5px;
margin-left: -5px;
background-color: #dedcdc;
color: #4b4b4b;
text-align: left;
text-transform: none;
}
.button.button-menu:hover {
background-color: rgba(93, 0, 119, .07);
color: #561072;
}
.button-label {
float: left;
}
.button-icon {
width: 24px;
height: 24px;
margin: 2px -17px -10px -7px;
float: left;
}
.button-icon.execute-icon {
width: 32px;
height: 32px;
margin-right: 0px;
float: right;
}
.button-icon.execute-icon.execute-icon-hover {
margin-left: -32px;
}
.button-icon.execute-icon.only-icon {
position: relative;
display: inline-block;
float: none;
}
.button-icon.execute-icon.execute-icon-menu {
margin-top: -2px;
margin-right: -10px;
margin-left: 0px;
}
.extra {
display: block;
margin-right: -5px;
margin-left: -5px;
}
.extra.identity-list {
margin-top: 10px;
clear: both;
}
.extra.extra-ten {
margin: -5px -10px;
}
.extra.extra-score {
text-align: left;
}
.location {
margin: 10px;
}
.map {
display: block;
width: 300px;
height: 300px;
margin: 10px auto;
border-radius: 5px;
}
.signature {
margin-bottom: 10px;
}
.handwrite {
height: 150px;
margin-right: -20px;
margin-left: -20px;
padding: 10px;
border-bottom: 2px solid #00c091;
background-color: #f5f5f5;
font-family: Inconsolata, monospace;
color: #c3c3c3;
font-size: 12px;
text-align: center;
}
.highlight {
position: static;
left: 0px;
display: inline-block;
margin-top: 20px;
margin-right: 10px;
margin-left: -40px;
padding-right: 10px;
padding-left: 10px;
float: left;
border-radius: 5px;
background-color: #ffe079;
box-shadow: 0 2px 10px -6px #000;
font-family: Lato, sans-serif;
color: #000;
font-size: 16px;
line-height: 36px;
font-weight: 300;
}
.arrow {
width: 0px;
height: 0px;
margin-top: 12px;
margin-left: 10px;
float: right;
border-style: solid;
border-width: 7px 0px 7px 14px;
border-color: transparent #000 transparent #af8d1e;
}
.highlight-label {
float: left;
color: #af8d1e;
font-size: 14px;
}
.vote {
display: block;
width: 100%;
margin: 1px 0px;
padding: 5px 5px 5px 10px;
float: left;
border: 1px solid #ececec;
border-radius: 50px;
color: #6c5b7c;
text-align: left;
}
.vote.vote-authorize {
display: block;
background-color: #fff;
}
.vote.vote-authorize.vote-mini {
width: 100%;
margin-top: 5px;
margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
border-style: none;
border-radius: 25px;
background-color: rgba(230, 249, 244, .15);
color: #fff;
}
.vote.vote-edit {
padding: 10px;
border: 1px dotted #00bf8f;
border-radius: 3px;
}
.vote.vote-edit.vote-custom {
border: 1px solid #fff;
border-radius: 3px;
}
.vote.vote-edit.vote-custom:hover {
background-color: hsla(0, 0%, 95%, .5);
}
.vote.vote-edit.vote-custom.unauthorized {
border-color: #ff2752;
}
.vote.vote-edit.vote-custom.vote-rejected {
border-color: #ff2752;
}
.vote.vote-alternative {
background-color: #fff;
box-shadow: inset 0 0 1px 0 #d3d3d3;
cursor: -webkit-grab;
cursor: grab;
}
.vote.vote-alternative:hover {
background-color: #f9f9f9;
}
.vote.vote-alternative.unauthorized {
background-color: #fae6e6;
}
.vote.vote-alternative.unauthorized.vote-result {
background-color: transparent;
}
.vote.vote-alternative.vote-authorize:hover {
background-color: #e6f9f4;
}
.vote.vote-alternative.vote-search {
width: 100%;
margin: 0px 0px 1px;
padding-top: 0px;
padding-bottom: 0px;
border-style: none;
border-color: #f8f8f8;
border-radius: 0px;
background-color: #f5f5f5;
box-shadow: inset 0 0 1px 0 #dfdfdf;
cursor: default;
}
.vote.vote-alternative.ui-sortable-helper {
margin-top: 5px;
margin-bottom: 5px;
border-style: none;
border-radius: 3px;
background-color: #f9f9f9;
box-shadow: inset 0 0 1px 0 #dfdfdf, 0 2px 14px -7px #000;
}
.vote.vote-alternative.vote-nondrag {
cursor: default;
}
.vote.vote-alternative.vote-nondrag:hover {
background-color: #fff;
}
.vote.vote-alternative.vote-result {
padding: 0px;
box-shadow: none;
cursor: default;
}
.vote.vote-alternative.vote-result:hover {
background-color: transparent;
}
.vote.vote-alternative.vote-mini {
margin-top: 5px;
margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
border-style: none;
border-radius: 5px;
background-color: hsla(0, 0%, 100%, .15);
box-shadow: none;
color: #00bf8f;
cursor: default;
}
.vote.vote-custom {
width: 100%;
clear: both;
background-color: #e6e6e6;
box-shadow: inset 0 0 4px -2px #000;
}
.vote.vote-search {
display: inline-block;
overflow: hidden;
width: 100%;
padding: 15px;
border: 5px solid #f5f5f5;
border-radius: 8px;
background-color: #fff;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(64%, #fff), to(#ececec));
background-image: linear-gradient(180deg, #fff 64%, #ececec);
box-shadow: inset 0 0 1px 0 #dfdfdf, 0 5px 20px -10px #838383;
}
.vote.vote-search.vote-feed {
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
border-style: solid;
border-width: 1px;
border-color: rgba(0, 0, 0, .02);
border-radius: 8px;
background-image: none;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
color: #7d849f;
cursor: pointer;
}
.vote.vote-search.vote-feed:hover {
margin-top: -4px;
margin-bottom: 25px;
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
color: #0d0d17;
}
.vote.vote-search.vote-feed.vote-empty {
border-style: none;
border-width: 1px;
border-color: hsla(0, 0%, 90%, .72);
background-color: transparent;
box-shadow: none;
}
.vote.vote-search.vote-feed.vote-delegation {
overflow: hidden;
margin-right: 10px;
margin-bottom: 2px;
padding: 5px 10px;
float: left;
clear: both;
border-style: none none solid;
border-bottom-width: 1px;
border-bottom-color: rgba(0, 0, 0, .1);
border-radius: 5px;
background-color: #f3f3f3;
background-image: none;
box-shadow: none;
-webkit-transition-property: none;
transition-property: none;
cursor: pointer;
}
.vote.vote-search.vote-feed.vote-delegation:hover {
margin-top: 1px;
background-image: none;
}
.vote.vote-search.vote-feed.vote-delegation-card {
width: auto;
margin-bottom: 0px;
padding-right: 5px;
padding-left: 0px;
border-radius: 0px;
background-color: transparent;
}
.vote.vote-search.vote-feed.vote-editor {
margin-bottom: 20px;
-webkit-transition-property: none;
transition-property: none;
cursor: default;
}
.vote.vote-search.vote-feed.vote-editor:hover {
margin-top: 1px;
margin-bottom: 20px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}
.vote.vote-search.vote-feed.vote-editor-compressed {
margin-bottom: 20px;
}
.vote.vote-search.vote-feed.vote-editor-compressed:hover {
margin-bottom: 25px;
}
.vote.vote-placeholder {
width: 50%;
height: 70px;
margin-top: 5px;
margin-bottom: 5px;
background-color: #e6e6e6;
box-shadow: inset 0 0 7px -3px #000;
}
.option {
display: block;
width: 26px;
height: 26px;
margin-top: 1px;
margin-right: 0px;
margin-left: 10px;
float: right;
border: 1px solid #6e5b7e;
border-radius: 100px;
background-color: #fff;
box-shadow: 0 1px 9px -5px #000;
cursor: pointer;
}
.option.unauthorized {
border-color: #6e5b7e;
}
.option.disabled {
border-color: #aaa;
cursor: default;
}
.option.kind-decision {
display: inline-block;
margin-right: auto;
margin-left: auto;
}
.option.option-mini {
margin-top: 5px;
margin-right: -1px;
margin-bottom: 2px;
background-color: #fff;
cursor: default;
}
.option-title {
display: inline-block;
max-width: 100%;
margin-top: 0px;
font-size: 12px;
line-height: 20px;
text-align: left;
letter-spacing: 0px;
text-transform: none;
}
.option-title.input {
width: 80%;
height: 60px;
margin-bottom: 0px;
padding: 0px;
float: left;
border-style: none;
color: #00bf8f;
text-align: left;
}
.option-title.input.option-input {
background-color: #fff;
font-size: 32px;
line-height: 40px;
}
.option-title.option-link {
display: inline-block;
float: left;
text-align: left;
}
.option-title.option-link.option-edit {
color: #000;
}
.option-title.option-link.option-edit.unauthorized {
color: #ff2752;
}
.option-title.option-link.option-edit.unauthorized:hover {
border-bottom-color: #ff2752;
}
.option-title.option-link.option-edit.option-title-long {
margin-top: 0px;
font-size: 20px;
line-height: 25px;
}
.option-title.option-link.unauthorized {
color: #ff2752;
}
.option-title.option-link.unauthorized.option-result {
color: #8c001c;
}
.option-title.option-link.option-long {
margin-top: 0px;
padding-right: 120px;
font-size: 16px;
line-height: 24px;
}
.option-title.option-link.option-long.option-longest {
padding-right: 0px;
}
.option-title.option-link.option-search {
display: inline-block;
max-width: 100%;
border-bottom-style: none;
line-height: 30px;
}
.option-title.option-link.option-search.option-nolink {
cursor: default;
}
.option-title.option-link.option-search.option-nolink:hover {
text-decoration: none;
}
.option-title.option-link.option-search.option-editor {
min-height: 80px;
cursor: text;
}
.option-title.option-link.option-result {
border-bottom-style: none;
}
.option-title.option-link.option-result:hover {
text-decoration: none;
}
.option-title.option-title-mini {
padding-top: 8px;
}
.option-title.option-result {
color: #028061;
}
.checkbox {
display: block;
margin-top: -1px;
margin-bottom: 1px;
}
.checkbox.checkbox-custom {
display: inline-block;
width: 100%;
margin-bottom: 5px;
border-radius: 3px;
box-shadow: none;
}
.checkbox.checkbox-result {
margin: -5px -5px -5px -10px;
padding: 5px 5px 5px 10px;
border-radius: 50px;
background-image: -webkit-gradient(linear, left top, right top, color-stop(48%, #b7f3e1), color-stop(0, transparent));
background-image: linear-gradient(90deg, #b7f3e1 48%, transparent 0);
}
.checkbox.checkbox-result.unauthorized {
background-image: -webkit-gradient(linear, left top, right top, color-stop(48%, #fdc5c5), color-stop(0, transparent));
background-image: linear-gradient(90deg, #fdc5c5 48%, transparent 0);
}
.date {
display: inline-block;
text-align: center;
}
.tick {
display: inline-block;
width: 16px;
height: 16px;
margin: 4px;
border-radius: 100px;
background-color: #fff;
}
.tick.unathorized {
background-color: #6e5b7e;
}
.tick.unathorized:hover {
background-color: #ff2752;
}
.tick.unauthorized {
background-color: #ff2752;
}
.tick.tick-mini {
background-color: transparent;
}
.tick.tick-active {
background-color: #6c5b7c;
}
.tick.tick-disabled {
background-color: #dfdfdf;
}
.tick-image {
display: block;
width: 28px;
height: 28px;
border-radius: 100px;
}
.tick-image.hover {
background-color: #fff;
cursor: pointer;
}
.tick-image.hover:hover {
background-color: #fff;
}
.tick-image.tick-disabled {
background-color: #dfdfdf;
}
.tick-image.tick-active {
background-color: #6c5b7c;
}
.tick-image.tick-active:hover {
background-color: #6c5b7c;
}
.tick-image.tick-active-unauthorized {
background-color: #6e5b7e;
}
.tick-image.tick-active-unauthorized:hover {
background-color: #6e5b7e;
}
.tick-image.tick-image-mini {
width: 26px;
height: 26px;
opacity: 1;
}
.execution {
display: block;
margin: 10px 0px;
}
.block {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
box-shadow: none;
text-align: left;
}
.block.block-list {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding: 0px;
border-top: 0px solid #e6f9f4;
background-color: transparent;
}
.block.block-menu {
margin-right: -15px;
margin-left: -15px;
}
.field {
display: inline-block;
width: 50%;
margin-top: 0px;
margin-bottom: 20px;
border-style: none;
border-width: 0px 5px;
border-color: #fff;
}
.field.headline-field {
width: 100%;
max-width: 100%;
margin-bottom: 0px;
}
.field.headline-field.split {
padding-right: 110px;
}
.field.split {
border-right: 0px solid #fff;
border-left: 20px solid #fff;
}
.field.bio {
width: 100%;
border-left: 20px solid #fff;
}
.search-custom {
position: relative;
left: 0px;
right: 0px;
z-index: 2000;
display: block;
margin-top: 10px;
margin-right: 5px;
margin-left: 5px;
padding: 10px;
border-bottom: 1px none #dadada;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: #fff;
box-shadow: inset 0 1px 10px -5px #000, 0 2px 4px -4px #000;
color: #aaa;
font-size: 16px;
line-height: 30px;
cursor: text;
}
.search-custom:focus {
color: #000;
}
.search-custom.search-active {
background-color: #fff;
box-shadow: inset 0 1px 10px -5px #000, 0 2px 4px -4px #000;
opacity: 1;
color: #000;
}
.editor {
margin-bottom: 0px;
}
.status {
display: block;
height: 65px;
max-width: 1000px;
margin: -3px auto 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
.progress {
height: 25px;
margin-top: 15px;
margin-bottom: -15px;
border-radius: 3px;
background-color: rgba(0, 0, 0, .25);
}
.milestone {
display: inline-block;
width: 35px;
height: 35px;
padding-top: 1px;
float: none;
border: 2px solid #00bf8f;
border-radius: 100px;
background-color: #00bf8f;
font-family: Inconsolata, monospace;
color: #fff;
font-weight: 400;
text-align: center;
}
.milestone.disabled {
border-color: silver;
background-color: silver;
}
.milestone.current {
background-color: rgba(0, 191, 143, .1);
color: #00bf8f;
}
.milestone.milestone-tick-white {
margin-top: 10px;
margin-left: 5px;
border: 1px none #fff;
background-color: transparent;
color: #fff;
font-size: 23px;
}
.progress-bar {
display: inline-block;
width: 20%;
height: 5px;
border-top: 2px dotted silver;
}
.progress-bar.completed {
border-top: 2px solid #00bf8f;
}
.milestone-text {
position: absolute;
width: 70px;
margin-top: 2px;
margin-left: -20px;
font-family: Lato, sans-serif;
color: #000;
font-size: 10px;
font-weight: 300;
}
.input {
height: 50px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 5px;
border-style: none none solid;
border-bottom-width: 2px;
border-bottom-color: rgba(0, 191, 143, .1);
background-color: #e6f9f4;
font-family: Lato, sans-serif;
font-size: 20px;
line-height: 45px;
}
.input:focus {
border-bottom-color: #00bf8f;
}
.input.headline-input {
height: auto;
min-height: 65px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
font-size: 45px;
line-height: 60px;
font-weight: 400;
}
.input.headline-input.input-active {
display: inline-block;
margin-bottom: 0px;
margin-left: -30px;
border-left: 5px solid #fff;
font-weight: 300;
letter-spacing: -1px;
cursor: text;
}
.input.headline-input.input-active:hover {
border-left-color: #e6f9f4;
}
.input.headline-input.input-active:focus {
border-left-color: #00bf8f;
}
.input.input-active {
border-bottom: 1px none #00bf8f;
background-color: #fff;
cursor: pointer;
}
.input.monetary {
width: 80px;
height: 38px;
margin-right: -5px;
padding-right: 15px;
float: left;
border: 1px solid #00bf8f;
border-radius: 5px;
color: #00bf8f;
font-size: 14px;
line-height: 16px;
font-weight: 400;
text-align: right;
}
.action {
display: inline-block;
width: 44px;
height: 44px;
margin: -10px -15px -10px 10px;
padding: 10px 10px 0px;
float: right;
border-style: none none none solid;
border-width: 1px;
border-left-color: rgba(0, 191, 143, .1);
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
background-color: #e6f9f4;
color: #00bf8f;
text-align: center;
cursor: pointer;
}
.action:hover {
background-color: #00bf8f;
color: #fff;
}
.action.undefined {
background-color: #fae6e6;
color: #ff2752;
}
.action.undefined:hover {
background-color: #ff2752;
color: #fff;
}
.action.hash-action {
margin-top: 5px;
margin-left: 0px;
padding-top: 8px;
float: left;
border-top: 1px dotted #00bf8f;
border-right: 1px dotted #00bf8f;
border-bottom: 1px dotted #00bf8f;
}
.action.vote-action {
width: 40px;
height: 40px;
margin: -25px -25px 0px 0px;
padding-top: 0px;
border-radius: 100px;
font-size: 18px;
line-height: 38px;
}
.action.vote-action:hover {
background-color: #00bf8f;
}
.action.vote-action.undefined:hover {
background-color: #ff2752;
}
.action.action-search {
position: relative;
width: 50px;
height: 50px;
margin-top: 3px;
margin-right: -1px;
margin-left: 0px;
padding-top: 2px;
border-style: solid;
border-color: #00bf8f;
border-radius: 50px;
background-color: transparent;
box-shadow: 1px 1px 9px -5px #000;
font-size: 50px;
line-height: 40px;
font-weight: 200;
}
.action.action-search:hover {
background-color: #00bf8f;
}
.action.action-search.action-search-disabled {
border-color: #ccc;
color: #ccc;
}
.action.action-search.action-search-disabled:hover {
background-color: #fff;
}
.hash-link {
border-bottom: 0px none #000;
}
.hash-link:hover {
margin-bottom: -1px;
border-bottom: 1px solid #00bf8f;
}
.hash-link.undefined {
border-bottom-color: #ff2752;
color: #ff2752;
}
.hash-link.twitter-link:hover {
border-bottom-color: #fff;
}
.hash-link.facebook-link:hover {
border-bottom-color: #fff;
}
.hash-link.bitcoin-fund {
float: none;
}
.warning {
display: inline;
overflow: hidden;
width: 100%;
margin: 0px 5px 5px 0px;
padding: 10px;
border-radius: 5px;
background-color: #e2e2e6;
color: #7d8499;
font-size: 14px;
line-height: 30px;
}
.warning.score-label {
margin-bottom: 0px;
background-color: #00bf8f;
color: #fff;
}
.warning.awaiting {
width: 100%;
margin-right: 0px;
margin-left: 0px;
background-color: #fae6e6;
color: #ff2752;
text-align: center;
}
.warning.authorized {
width: 100%;
margin-top: 10px;
margin-right: 0px;
margin-left: 0px;
background-color: #e6f9f4;
color: #00bf8f;
text-align: center;
}
.warning.annotation {
background-color: #e6f9f4;
color: #000;
}
.warning.forbidden {
background-color: #ff2752;
color: #fff;
}
.warning.download {
border-radius: 25px;
background-color: #f5f5f5;
color: #b9b9b9;
}
.navbar {
position: absolute;
left: 320px;
top: 0px;
right: 0px;
z-index: 14000;
height: 60px;
padding-right: 10px;
padding-left: 0px;
float: left;
border-bottom: 1px solid #ddd;
background-color: #fff;
color: #442f58;
}
.navlink {
border-bottom: 0px none #000;
font-family: Lato, sans-serif;
color: #fff;
font-size: 17px;
line-height: 19px;
font-weight: 300;
text-align: right;
}
.navcontainer {
display: inline;
}
.logo-pic {
height: 45px;
max-width: 45px;
margin-right: 10px;
float: left;
}
.logo {
display: inline-block;
width: 50px;
height: 60px;
padding-top: 7px;
padding-bottom: 7px;
border-bottom: 0px none #000;
text-align: center;
cursor: pointer;
}
.logo.logo-path {
display: inline;
width: auto;
height: 35px;
min-width: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
.main {
position: relative;
display: inline-block;
height: 60px;
min-width: 400px;
margin-right: 10px;
margin-left: -40px;
padding-top: 10px;
padding-bottom: 10px;
float: right;
font-family: Lato, sans-serif;
}
.settings {
overflow: hidden;
clear: both;
}
.value {
float: right;
text-transform: none;
}
.value.value-avatar {
margin-top: 0px;
margin-bottom: 0px;
}
.control {
margin-right: 5px;
float: left;
font-size: 16px;
}
.toggle {
width: 80px;
height: 40px;
float: right;
border-radius: 100px;
background-color: #ccc;
cursor: pointer;
}
.toggle.toggle-activated {
background-color: #00bf8f;
}
.toggle-button {
width: 36px;
height: 36px;
margin: 2px;
border-radius: 100px;
background-color: #fff;
}
.toggle-button.toggle-activated {
width: 36px;
height: 36px;
margin: 2px;
float: right;
border-style: none;
border-color: #00bf8f;
}
.identity {
display: inline-block;
margin: 0px 20px 0px 5px;
padding-left: 0px;
float: left;
border-radius: 5px;
text-align: left;
}
.identity.facebook {
background-color: #256bd5;
}
.identity.twitter {
background-color: #08bdff;
}
.identity.twitter.identity-logged {
padding-right: 0px;
padding-left: 0px;
}
.identity.identity-navbar {
margin: 5px;
float: right;
}
.identity.identity-sign {
border-radius: 0px;
}
.identity.identity-center {
display: inline-block;
margin-right: auto;
margin-left: auto;
float: none;
}
.identity.identity-awaiting {
opacity: 0.25;
}
.identity.float-right {
float: right;
}
.identity.identity-transaction {
display: inline-block;
overflow: hidden;
height: 40px;
margin-top: -3px;
margin-right: 0px;
margin-left: 0px;
}
.identity.identity-transaction.float-right {
margin-right: 0px;
float: left;
}
.identity-label {
display: inline-block;
color: #5a0075;
font-size: 16px;
line-height: 22px;
text-decoration: none;
cursor: pointer;
}
.identity-label:hover {
line-height: 24px;
}
.identity-label.twitter-link {
color: #fff;
}
.identity-label.facebook-link {
color: #fff;
cursor: pointer;
}
.identity-label.facebook-link:hover {
border-bottom: 1px none #fff;
}
.identity-label.hash-link {
cursor: pointer;
}
.identity-label.identity-label-navbar {
margin-top: 4px;
font-size: 16px;
line-height: 24px;
}
.identity-label.identity-label-sign {
margin-top: 10px;
font-style: italic;
}
.identity-label.identity-label-small {
margin-top: 8px;
font-size: 16px;
line-height: 20px;
}
.identity-label.identity-label-micro {
font-size: 12px;
line-height: 12px;
}
.identity-label.identity-label-micro.identity-label-post {
display: inline;
overflow: hidden;
}
.option-link:hover {
border-bottom-style: none;
}
.profile {
display: none;
width: 270px;
margin-left: 10px;
float: left;
}
.portrait-pic {
width: 200px;
height: 200px;
max-width: 200px;
margin-bottom: 10px;
padding-top: 20px;
float: left;
border-bottom: 1px none #000;
border-radius: 5px;
background-color: #e6f9f4;
text-align: center;
}
.credentials {
margin-top: 15px;
}
.user {
max-width: 740px;
padding-right: 0px;
float: left;
}
.portrait-icon {
width: 150px;
}
.verifier {
margin-top: 5px;
padding-left: 0px;
clear: both;
color: #7d849f;
font-size: 12px;
line-height: 20px;
}
.verifier.verifier-live {
display: inline-block;
}
.verifier.verifier-live.verifier-feed {
text-decoration: none;
cursor: pointer;
}
.verifier.verifier-live.verifier-feed:hover {
border-style: none;
text-decoration: underline;
}
.verifier.verifier-live.verifier-feed.no-link {
cursor: default;
}
.verifier.verifier-live.verifier-feed.no-link:hover {
text-decoration: none;
}
.verifier.verifier-live.verifier-feed.verifier-mini {
display: block;
margin-left: 5px;
float: right;
font-size: 10px;
}
.available {
margin-right: 2px;
margin-left: 2px;
padding-right: 5px;
padding-left: 5px;
border-radius: 3px;
background-color: #00bf8f;
color: #fff;
font-weight: 300;
}
.portrait {
width: 200px;
margin-bottom: 20px;
float: left;
text-align: center;
}
.mask {
display: none;
}
.score-bar {
display: inline-block;
width: 100%;
margin-bottom: 5px;
float: left;
}
.score-bar.score-bar-default {
width: 250px;
margin-bottom: 0px;
}
.score-bar.score-bar-default.hide {
display: none;
}
.score-block {
width: 9%;
height: 10px;
margin-right: 1%;
float: left;
border: 1px solid rgba(0, 191, 143, .1);
background-color: rgba(0, 191, 143, .1);
}
.score-block.score-complete {
border-color: #00bf8f;
background-color: #00bf8f;
}
.score {
margin-top: 20px;
margin-bottom: 20px;
text-align: left;
}
.score.score-block {
margin-top: 0px;
margin-bottom: 0px;
}
.score.score-vote {
display: inline-block;
margin-top: 5px;
margin-bottom: 0px;
float: left;
}
.score-board {
width: 60px;
height: 60px;
float: right;
border: 1px solid #00bf8f;
border-radius: 5px;
color: #00bf8f;
font-size: 22px;
text-align: center;
}
.capital {
display: block;
width: 100%;
margin-bottom: -5px;
clear: both;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
background-color: hsla(0, 0%, 100%, .5);
}
.capital-field {
padding: 5px 10px;
font-size: 16px;
line-height: 22px;
}
.capital-value {
display: block;
float: right;
color: #fff;
}
.capital-label {
float: left;
}
.capital-scores {
padding-top: 5px;
padding-bottom: 5px;
}
.identity-list {
margin-top: -5px;
margin-left: -10px;
padding: 0px 5px 10px;
}
.identity-list.identity-list-delegates {
margin: 0px -30px 0px 0px;
padding-bottom: 0px;
float: right;
}
.identity-list.identity-feed-item {
padding: 0px;
}
.budget {
margin-top: 10px;
margin-bottom: 10px;
}
.vote-capital-label {
font-size: 10px;
font-weight: 300;
}
.search {
width: 100%;
height: 40px;
padding: 5px;
border-radius: 50px;
background-color: rgba(136, 114, 156, .65);
box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, .5);
color: #fff;
font-size: 16px;
line-height: 30px;
font-weight: 300;
}
.search.search-blur {
color: hsla(0, 0%, 100%, .5);
cursor: text;
}
.search.search-blur.hide {
display: none;
}
.rich-text {
margin-bottom: 0px;
margin-left: -30px;
padding-bottom: 0px;
padding-left: 25px;
clear: both;
}
.rich-text:hover {
border-left: 5px solid #e6f9f4;
}
.rich-text:focus {
border-left-color: #00bf8f;
}
.rich-text.editor-draft {
border-left: 5px solid #fff;
}
.rich-text.editor-draft:hover {
border-left-style: solid;
border-left-color: #e6f9f4;
}
.rich-text.editor-draft:focus {
border-left-style: solid;
border-left-color: #00bf8f;
}
.rich-text.rich-text-preview {
margin-top: 0px;
margin-bottom: 10px;
margin-left: 0px;
padding-left: 0px;
font-size: 16px;
line-height: 26px;
}
.rich-text.rich-text-preview:hover {
border-left-style: none;
}
.rich-text.highlight-feature {
display: inline-block;
margin-top: 5px;
margin-bottom: 15px;
margin-left: -15px;
padding-top: 10px;
padding-right: 5px;
padding-left: 5px;
background-color: rgba(255, 224, 121, .6);
background-image: linear-gradient(45deg, #ffe079, hsla(44, 82%, 94%, 0) 45%);
-webkit-transform: skew(-3deg, 0deg);
-ms-transform: skew(-3deg, 0deg);
transform: skew(-3deg, 0deg);
font-style: italic;
}
.rich-text.highlight-feature:hover {
border-left-style: none;
border-left-width: 0px;
}
.rich-text.highlight-feature.highlight-missing {
display: block;
float: none;
border-radius: 3px;
background-color: #eee;
background-image: none;
box-shadow: inset 0 0 5px -1px rgba(0, 0, 0, .5);
-webkit-transform: none;
-ms-transform: none;
transform: none;
color: #000;
font-style: normal;
}
.tag-bitcoin {
display: none;
margin: -4px -5px -5px 10px;
padding: 5px 10px;
float: left;
border-radius: 3px;
background-color: #00bf8f;
color: #f5f5f5;
font-size: 16px;
}
.tag-bitcoin.unauthorized {
background-color: #ff2752;
text-transform: none;
}
.result {
height: 32px;
margin-top: 10px;
border: 1px solid #2dbd90;
border-radius: 5px;
background-color: hsla(0, 0%, 100%, .5);
box-shadow: none;
}
.result.score-bar {
max-width: 250px;
min-width: 250px;
margin-top: 0px;
margin-bottom: 0px;
}
.result.vote-bar {
width: 100%;
height: 20px;
margin-top: 20px;
margin-bottom: 10px;
border-style: none;
border-radius: 25px;
background-color: #d1d1d1;
box-shadow: inset 0 3px 7px -3px rgba(0, 0, 0, .5);
}
.result.vote-bar.token-bar {
display: inline-block;
height: 10px;
margin-top: 5px;
clear: both;
}
.result.result-unauthorized {
border-color: #ff2752;
}
.result-bar {
width: 0%;
height: 30px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
background-color: rgba(0, 191, 143, .6);
line-height: 30px;
}
.result-bar.unauthorized {
background-color: rgba(255, 39, 82, .6);
}
.result-bar.result-hundred {
border-radius: 4px;
}
.result-bar.vote-bar {
width: 0%;
height: 100%;
border-top-left-radius: 25px;
border-bottom-left-radius: 25px;
background-color: #00bf8f;
box-shadow: inset 0 1px 11px -5px hsla(0, 0%, 100%, .5);
}
.result-bar.vote-bar.vote-bar-allocated {
position: absolute;
right: 0px;
display: none;
width: 0%;
height: 20px;
margin-top: -20px;
float: right;
border-radius: 0px 25px 25px 0px;
background-color: #ccc;
background-image: url('../images/pattern-pinstripes-diagonal-green.png');
background-position: 100% 0px;
background-size: 50px;
background-repeat: repeat-x;
}
.result-bar.vote-bar.vote-bar-allocated.vote-bar-allocated-placed {
width: 50%;
height: 1px;
margin-top: 0px;
float: left;
border-radius: 3px 0px 0px 3px;
background-color: transparent;
background-image: none;
box-shadow: none;
}
.result-bar.vote-bar.vote-bar-allocated.unanimous {
border-top-left-radius: 25px;
border-bottom-left-radius: 25px;
}
.result-bar.vote-bar.vote-bar-allocated.vote-bar-fixed {
background-color: #e6f9f4;
background-image: none;
background-size: auto;
background-repeat: repeat;
}
.result-bar.vote-bar.vote-bar-fixed {
background-color: #e6f9f4;
}
.result-bar.result-unanimous {
width: 100%;
border-radius: 3px;
background-color: #78d8bc;
}
.result-total {
position: relative;
display: block;
margin-top: 5px;
margin-right: 5px;
float: right;
font-size: 10px;
line-height: 21px;
text-transform: uppercase;
}
.result-total.result-right {
margin-right: 10px;
float: right;
font-weight: 400;
}
.result-percentage {
margin-right: 10px;
font-weight: 700;
}
.result-score {
position: static;
display: block;
width: 100%;
margin-top: 10px;
}
.result-score.result-percentage {
position: relative;
display: block;
float: right;
}
.result-score.result-right {
position: static;
display: inline-block;
float: right;
}
.election {
display: inline-block;
margin-right: 20px;
margin-left: 20px;
float: none;
}
.fact {
display: inline-block;
height: 60px;
margin-top: 5px;
margin-bottom: 0px;
padding: 5px 10px;
float: left;
border-radius: 5px;
background-color: rgba(0, 191, 143, .1);
box-shadow: none;
color: #00bf8f;
text-align: center;
}
.fact.fact-timer {
margin-top: 5px;
padding-right: 6px;
padding-left: 6px;
font-size: 28px;
font-weight: 300;
}
.fact.fact-timer.vote-value {
position: absolute;
height: 60px;
margin-top: -35px;
margin-left: -105px;
float: right;
}
.fact.fact-identity {
margin-right: -15px;
margin-left: -5px;
padding: 0px;
float: left;
background-color: transparent;
}
.fact.fact-delegation {
margin-bottom: -5px;
padding-left: 20px;
background-color: transparent;
}
.stat-label {
display: block;
margin-top: 8px;
font-size: 9px;
line-height: 12px;
font-weight: 400;
text-transform: uppercase;
}
.election-label {
display: block;
margin-bottom: 5px;
float: none;
color: #000;
font-size: 12px;
line-height: 20px;
font-weight: 300;
text-align: left;
text-transform: uppercase;
}
.identity-nation {
display: block;
margin-top: 0px;
padding-top: 0px;
clear: both;
font-size: 12px;
line-height: 16px;
}
.identity-nation.identity-label-small {
font-size: 12px;
}
.identity-nation.collective-stat {
display: inline-block;
margin-top: 15px;
margin-right: 15px;
margin-bottom: 0px;
}
.identity-peer {
margin-top: 6px;
margin-left: 10px;
float: left;
}
.identity-peer.identity-small {
margin-top: 0px;
}
.identity-peer.pending {
opacity: 0.25;
}
.identity-peer.identity-peer-flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
overflow: hidden;
height: 12px;
margin-top: 16px;
margin-left: 30px;
float: none;
}
.identity-peer.identity-post {
margin-left: 0px;
}
.fact-votes {
margin-right: 10px;
margin-left: 10px;
float: left;
}
.fact-tags {
display: block;
}
.stat-data {
margin-top: 3px;
margin-bottom: -3px;
font-size: 28px;
}
.stat-taglist {
margin-top: -2px;
padding-left: 0px;
}
.delegation {
float: right;
}
.delegation-icon {
width: 40px;
height: 40px;
}
.navmenu {
margin-top: 5px;
margin-bottom: 5px;
}
.stat {
margin-right: 15px;
margin-left: 15px;
float: left;
}
.stat.stat-votes {
display: block;
margin-right: auto;
margin-left: auto;
float: none;
}
.score-details {
clear: both;
}
.score-icon {
width: 20px;
height: 20px;
margin-top: 5px;
margin-right: 5px;
float: left;
}
.score-agreement {
display: inline-block;
margin-top: 5px;
float: left;
clear: both;
font-size: 14px;
line-height: 20px;
}
.score-agreement:hover {
text-decoration: underline;
}
.identity-verified {
position: absolute;
display: inline-block;
width: 16px;
height: 16px;
margin-left: -15px;
border-radius: 100px;
background-color: #6bccfa;
box-shadow: 0 2px 4px -2px rgba(0, 0, 0, .33);
}
.identity-verified.identity-verified-navbar {
margin-top: 30px;
margin-left: 35px;
}
.identity-verified.identity-verified-navbar.invisible {
display: none;
}
.identity-verified-tick {
width: 8px;
height: 8px;
margin-top: -17px;
margin-left: 4px;
}
.modal {
position: fixed;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
z-index: 25000;
display: inline-block;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .3);
}
.modal.hide {
display: none;
overflow: scroll;
padding-top: 10px;
background-color: #fff;
text-align: center;
}
.param {
display: inline-block;
padding-right: 10px;
padding-left: 10px;
text-align: left;
}
.command {
display: block;
max-width: 1000px;
margin-right: auto;
margin-left: auto;
text-align: left;
}
.awaiting {
display: inline-block;
background-color: #ff2752;
}
.delegates {
display: inline-block;
margin: 5px;
}
.politics {
margin-bottom: 0px;
padding-right: 10px;
padding-left: 10px;
border: 0px solid #000;
}
.rosca {
display: inline-block;
width: 100%;
margin-top: 5px;
font-size: 14px;
}
.rosca.rosca-id {
margin-top: -10px;
}
.rosca.rosca-feed {
margin-top: -15px;
margin-bottom: -10px;
}
.avatar {
width: 120px;
margin: 0px;
float: left;
color: hsla(0, 0%, 100%, .7);
font-size: 9px;
line-height: 30px;
text-align: center;
text-transform: uppercase;
}
.id-card {
position: static;
display: block;
margin-top: 10px;
margin-right: auto;
margin-left: auto;
background-color: #fff;
text-align: center;
}
.id-card.hide {
display: none;
}
.title {
padding-right: 20px;
padding-left: 20px;
}
.handle {
position: relative;
z-index: 999;
width: 35px;
height: 35px;
margin-top: -8px;
margin-right: -28px;
float: right;
border: 6px solid #fff;
border-radius: 100px;
background-color: #e6f9f4;
box-shadow: 0 1px 3px -2px #000, inset 0 0 1px 0 #52d4b4;
cursor: -webkit-grab;
cursor: grab;
}
.handle:hover {
background-color: #e6f9f4;
}
.handle:active {
background-color: #00bf8f;
cursor: -webkit-grabbing;
cursor: grabbing;
}
.close {
width: 40px;
height: 40px;
margin-top: 67px;
margin-right: 5px;
padding: 5px;
float: right;
opacity: 0.5;
font-size: 8px;
line-height: 8px;
text-align: center;
text-transform: uppercase;
}
.close:hover {
opacity: 1;
}
.setup {
padding-top: 10px;
}
.vote-available {
display: inline-block;
text-align: left;
}
.vote-available.label-votes {
margin-bottom: 6px;
float: left;
font-size: 11px;
}
.vote-allocated {
display: inline-block;
}
.vote-allocated.label-votes {
margin-right: -10px;
font-size: 11px;
}
.vote-count {
display: block;
width: 120px;
height: 65px;
margin-top: -85px;
margin-left: -47px;
padding-top: 3px;
padding-bottom: 5px;
border: 3px solid #fff;
border-radius: 5px;
background-color: #fff;
box-shadow: 0 0 8px -4px #000;
color: #00bf8f;
font-weight: 200;
text-align: center;
}
.rosca-connector {
width: 3px;
height: 13px;
margin-left: 11px;
background-color: #fff;
box-shadow: 0 0 2px -1px #000;
}
.vote-logic {
margin: 20px -5px 15px;
}
.vote-action {
margin-bottom: 20px;
padding-right: 20px;
padding-left: 20px;
}
.os-icon {
width: 30px;
height: 30px;
margin-top: -3px;
margin-right: 5px;
float: left;
}
.os-download {
display: block;
margin-top: 15px;
margin-bottom: 10px;
line-height: 30px;
}
.link:hover {
padding-bottom: 1px;
border-bottom-style: solid;
}
.kind-icon {
display: inline-block;
width: 60px;
height: 60px;
margin-right: auto;
margin-left: auto;
}
.kind-value {
display: block;
width: 60px;
height: 60px;
margin: 10px auto;
text-align: center;
}
.url-icon {
width: 16px;
height: 16px;
}
.data {
display: inline-block;
margin-right: 10px;
margin-bottom: 5px;
}
.data.data-feed {
margin-top: 6px;
margin-right: 0px;
margin-bottom: 5px;
float: right;
}
.data.data-feed.data-identity {
margin-left: -15px;
float: left;
}
.data.data-feed.data-transaction {
margin: 3px 4px 7px 3px;
float: left;
}
.data.data-feed.data-ledger {
margin: -5px 0px -4px 7px;
float: left;
line-height: 20px;
}
.contract-collapse {
position: absolute;
top: 0px;
right: 0px;
margin: 5px;
}
.contract-win-icon {
width: 30px;
}
.contract-win {
opacity: 0.5;
}
.contract-win:hover {
opacity: 1;
}
.stage {
display: inline-block;
margin-top: 3px;
margin-right: 10px;
margin-bottom: 3px;
padding: 0px 10px 5px;
float: left;
border-style: solid;
border-width: 0px;
border-radius: 25px;
background-color: transparent;
color: #581073;
font-size: 10px;
text-transform: uppercase;
}
.stage.stage-live {
border-style: solid;
border-color: #f5d059;
color: #f5d059;
}
.stage.stage-live.stage-list {
margin-top: 0px;
margin-right: 25px;
}
.stage.stage-finish-approved {
border-style: solid;
border-color: #00bf8f;
color: #00bf8f;
}
.stage.stage-finish-approved.stage-card {
margin-right: 5px;
}
.stage.stage-finish-approved.stage-card.stage-anon {
border-style: dashed;
border-color: #fff;
background-color: transparent;
opacity: 0.7;
}
.stage.stage-finish-approved.stage-card.button {
cursor: pointer;
}
.stage.stage-finish-approved.stage-card.button:active {
background-color: transparent;
color: #00bf8f;
}
.stage.stage-finish-approved.stage-finished-inballot {
border-style: solid;
border-color: #000;
}
.stage.stage-finish-alternative {
border-style: solid;
border-color: #e6f9f4;
background-color: #e6f9f4;
color: #00bf8f;
}
.stage.stage-finish-rejected {
display: inline-block;
border-color: #ff2752;
color: #ff2752;
}
.stage.stage-card {
margin-top: 4px;
margin-right: -5px;
margin-bottom: 0px;
float: right;
}
.stage.stage-list {
margin-top: 1px;
}
.stage.stage-placed {
border-style: solid;
border-color: #00bf8f;
}
.stage.stage-inballot {
border-style: solid;
border-color: #00bf8f;
background-color: #e6f9f4;
}
.stage.stage-remove {
border-color: #ff8979;
background-color: #ff8979;
color: #fff;
}
.stage.stage-delegated {
border-style: solid;
border-color: rgba(0, 191, 143, 0);
background-color: #e6f9f4;
color: #00bf8f;
}
.stage.stage-vote-totals {
border-style: solid;
border-color: #9e6fcc;
color: #9e6fcc;
}
.stage.stage-vote-totals-available {
border-style: solid;
border-color: #46dfb8 #9e6fcc #9e6fcc;
background-color: transparent;
color: #46dfb8;
}
.stage.stage-vote {
min-width: 60px;
border-style: solid;
border-color: #ccbcda;
background-color: #ccbcda;
color: #6c5b7c;
text-transform: none;
}
.stage.stage-vote.stage-revoke {
margin-right: 0px;
margin-left: 10px;
}
.stage.stage-vote.stage-loosing {
border-color: #e6e6e6;
background-color: #e6e6e6;
}
.stage.stage-vote.stage-single {
min-width: 0px;
padding-top: 1px;
padding-right: 0px;
padding-left: 11px;
border-width: 0px;
}
.stage.stage-compressed {
margin-top: 1px;
margin-left: 10px;
}
.profile-thumb {
height: 60px;
opacity: 0.75;
}
.profile-thumb.profile-thumb-active {
opacity: 1;
}
.meta {
display: inline-block;
margin-bottom: 10px;
clear: both;
}
.meta.meta-search {
display: block;
overflow: hidden;
height: 55px;
margin: -10px -15px 0px;
padding-right: 15px;
padding-left: 15px;
clear: both;
color: #9c9c9c;
}
.meta.meta-search.meta-search-new {
opacity: 1;
}
.meta.meta-search.meta-compressed {
padding-left: 5px;
}
.state {
display: inline-block;
margin-right: 2px;
margin-left: 2px;
padding: 0px 5px;
border-radius: 3px;
font-weight: 300;
}
.state.verifying {
background-color: #ffe079;
color: #af8d1e;
font-weight: 300;
}
.state.unavailable {
background-color: #ff2752;
color: #fff;
}
.state.invisible {
display: none;
}
.context {
position: fixed;
left: 265px;
top: 5px;
z-index: 15000;
display: block;
overflow: hidden;
padding: 3px 10px;
border-bottom: 2px solid #ffe079;
border-radius: 5px;
background-color: rgba(0, 0, 0, .7);
opacity: 0;
color: #fff;
font-size: 14px;
line-height: 30px;
text-align: center;
}
.search-icon {
width: 30px;
height: 30px;
margin-right: 5px;
float: left;
opacity: 0.66;
}
.search-input {
padding-left: 35px;
}
.sample {
display: block;
color: #cacaca;
}
.tag-label {
display: inline-block;
}
.selector-modal {
position: absolute;
left: 30px;
right: 30px;
display: block;
height: 115px;
margin-top: -5px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 0px 0px 5px 5px;
background-color: #e6e6e6;
box-shadow: inset 0 0 4px -2px #000;
color: #000;
font-size: 12px;
text-align: center;
}
.selector-modal.selector-proposals-modal {
z-index: 500;
display: block;
height: 350px;
margin-top: -15px;
padding: 15px;
}
.selector-modal.selector-proposals-modal.hide {
display: none;
}
.selector-warning {
display: inline-block;
text-transform: uppercase;
}
.selector-warning.selector-warning-large {
margin-top: 110px;
margin-bottom: 110px;
}
.icon-trash {
width: 55px;
height: 55px;
}
.icon-trash.icon-trash-large {
width: 80px;
height: 80px;
}
.selector-create {
padding-left: 10px;
text-align: left;
}
.selector-create.selector-create-modal {
padding-left: 0px;
}
.selector-modal-label {
margin-bottom: 10px;
color: #777;
font-size: 14px;
}
.references {
position: absolute;
left: 0px;
top: 0px;
margin: 5px 5px 5px 30px;
float: left;
color: #d1d1d1;
font-size: 10px;
line-height: 28px;
text-transform: uppercase;
}
.options {
display: block;
overflow: auto;
margin-right: -5px;
margin-bottom: 5px;
margin-left: -5px;
padding-right: 0px;
padding-left: 0px;
}
.options.options-voted {
margin-right: -30px;
margin-left: -30px;
}
.options.options-mini {
margin: 15px 5px 0px;
padding: 0px 10px 5px;
border-radius: 5px;
}
.calendar-icon {
width: 30px;
height: 30px;
margin: 4px 4px 4px 0px;
float: left;
opacity: 0.75;
}
.calendar-icon.calendar-icon-active {
opacity: 1;
}
.calendar {
position: absolute;
right: 118px;
display: block;
padding: 10px 0px 10px 10px;
border-radius: 3px 0px 3px 3px;
background-color: #e6f9f4;
color: #00bf8f;
font-size: 14px;
line-height: 22px;
}
.proposal {
display: inline-block;
width: 100%;
padding: 0px 10px 10px;
}
.vote-placeholder {
display: inline-block;
width: 100%;
}
.option-proposal {
display: block;
}
.option-proposal:hover {
border-bottom-style: none;
}
.title-input {
display: block;
width: 100%;
margin-bottom: 0px;
margin-left: 0px;
padding: 0px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
line-height: 24px;
}
.title-input.title-comment {
border-left-style: none;
font-size: 23px;
line-height: 32px;
letter-spacing: -0.5px;
}
.title-input.title-comment:hover {
border-left-style: none;
}
.title-input.title-input-mini {
margin: 0px 0px 15px;
padding: 0px;
border-left-style: none;
opacity: 0.75;
font-size: 14px;
line-height: 18px;
font-style: italic;
letter-spacing: 0px;
}
.title-input.title-input-read:hover {
border-left-color: #fff;
}
.title-input.title-input-void {
position: absolute;
color: #ccc;
}
.title-input.title-input-void.title-input-compressed {
margin-top: 10px;
margin-left: 50px;
}
.title-input.title-feed {
margin-top: 5px;
margin-bottom: 5px;
border-style: none;
}
.title-input.title-feed:hover {
border-style: none;
}
.title-input.title-feed.title-thread {
font-size: 22px;
line-height: 32px;
}
.paper-header {
margin: 0px;
padding: 6px 0px;
border-radius: 3px;
background-color: transparent;
color: dimgrey;
font-size: 14px;
line-height: 30px;
}
.paper-header.card-header {
margin: -10px -10px 5px;
padding: 10px 10px 10px 20px;
background-color: transparent;
box-shadow: none;
}
.paper-header.paper-header-list {
padding-top: 10px;
padding-bottom: 5px;
font-size: 10px;
}
.paper-header.paper-header-empty {
border-radius: 3px;
box-shadow: 0 3px 20px -13px #000;
}
.shadow-fake {
position: absolute;
left: 33px;
right: 33px;
height: 10px;
margin-top: -10px;
background-color: #fff;
box-shadow: 0 -3px 3px -2px rgba(0, 0, 0, .15);
}
.section-icon {
width: 30px;
height: 30px;
margin-right: 5px;
margin-bottom: -5px;
margin-left: -10px;
float: left;
}
.section-icon.section-icon-small {
width: 20px;
height: 20px;
margin-top: 5px;
}
.section-icon.section-icon-active {
cursor: pointer;
}
.warning-list {
min-height: 15px;
margin-top: 5px;
margin-bottom: 5px;
}
.path {
position: absolute;
left: 20px;
right: 130px;
overflow: hidden;
height: 28px;
margin-top: 15px;
margin-bottom: 15px;
float: left;
font-size: 16px;
}
.authentication {
float: right;
}
.authentication.nav-button {
margin-top: 7px;
margin-bottom: 10px;
padding: 0px 5px;
border-radius: 3px;
}
.login {
width: 100%;
padding: 5px 5px 0px;
float: left;
font-size: 14px;
text-align: center;
}
.login-input {
width: 100%;
height: 44px;
margin-bottom: 0px;
padding: 0px 0px 5px 30px;
border-style: none none solid;
border-width: 0px 0px 1px;
border-color: #000 #000 #c7b7cc;
background-color: transparent;
box-shadow: none;
color: #5a0075;
font-size: 16px;
font-weight: 300;
text-align: left;
}
.login-input:focus {
border-bottom-width: 1px;
border-bottom-color: #ff0085;
}
.login-input.login-input-split {
width: 50%;
padding-left: 0px;
float: left;
}
.login-input.login-input-split.login-input-split-right {
padding-left: 0px;
}
.face {
display: none;
margin-right: 5px;
margin-left: 5px;
}
.login-label {
margin-top: 0px;
margin-bottom: 0px;
font-size: 11px;
line-height: 22px;
font-weight: 300;
text-transform: uppercase;
}
.login-label.login-label-form {
text-align: left;
}
.login-label.login-label-form.login-label-split {
width: 50%;
float: left;
}
.login-label.title-label {
margin: 5px -20px 10px;
padding: 5px 20px;
border-bottom: 1px dotted #6c5b7c;
text-align: left;
}
.authenticate {
display: inline-block;
margin-right: auto;
margin-left: auto;
color: hsla(0, 0%, 100%, .7);
font-size: 11px;
line-height: 35px;
text-align: center;
text-transform: uppercase;
}
.tabs {
display: block;
overflow: hidden;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
border: 1px solid #00bf8f;
border-radius: 5px;
text-align: center;
}
.tab {
display: block;
width: 50%;
padding-top: 0px;
padding-bottom: 0px;
float: left;
border-radius: 0px;
color: #00bf8f;
font-size: 14px;
line-height: 32px;
text-align: center;
cursor: pointer;
}
.tab.tab-active {
border-radius: 3px;
background-color: #00bf8f;
box-shadow: 2px 2px 16px -7px #000;
color: #fff;
}
.pointer-up {
position: relative;
display: block;
width: 0px;
height: 0px;
border-style: solid;
border-width: 0px 10px 15px;
border-color: transparent transparent rgba(49, 38, 59, .95);
background-color: transparent;
}
.pointer-up.pointer-agora {
margin-bottom: -1px;
margin-left: 8px;
padding-top: 4px;
border-right-width: 9px;
border-bottom-width: 12px;
border-bottom-color: #e7e7e7;
border-left-width: 9px;
background-color: transparent;
}
.pointer-up.pointer-agora.pointer-agora-inner {
margin-left: -9px;
padding-top: 2px;
border-right-width: 9px;
border-bottom-width: 11px;
border-bottom-color: #f0f0f0;
border-left-width: 9px;
background-color: transparent;
}
.popup {
position: fixed;
z-index: 12900;
display: block;
min-width: 300px;
margin-top: -10000px;
opacity: 0;
}
.popup.invisible {
display: inline-block;
}
.popup.popup-test {
top: -25px;
right: 5px;
margin-top: 90px;
opacity: 1;
}
.popup.popup-test.hide {
display: none;
}
.navbar-button {
display: inline-block;
height: 45px;
margin-top: 7px;
margin-bottom: 7px;
padding-right: 5px;
padding-left: 5px;
border-radius: 5px;
color: #fff;
}
.navbar-button.navbar-button-active {
background-color: #580074;
}
.navbar-button.navbar-button-active.navbar-button-action {
font-size: 16px;
line-height: 18px;
cursor: pointer;
}
.navbar-button.navbar-button-active.navbar-button-action:hover {
background-color: #ff0085;
}
.navbar-button.navbar-button-active.navbar-button-action.navbar-button-action-disabled {
border: 1px solid #aaa;
background-color: transparent;
color: #999;
}
.navbar-button.navbar-button-active.navbar-button-action.navbar-button-action-disabled:hover {
background-image: none;
}
.tab-content {
display: block;
}
.tab-content.invisible {
display: inline-block;
width: 100%;
text-align: center;
}
.login-line {
height: 1px;
margin-bottom: 15px;
border-top: 1px dotted #6c5b7c;
background-color: transparent;
}
.login-line.login-line-active {
border-top-style: solid;
border-top-color: #00bf8f;
background-image: none;
}
.login-icon {
position: absolute;
display: block;
width: 20px;
height: 20px;
margin-top: 10px;
float: left;
}
.login-icon.login-icon-split-view {
margin-top: 32px;
}
.login-field {
margin-bottom: 20px;
text-align: left;
}
.login-field.login-field-last {
margin-bottom: 10px;
}
.signup {
margin-top: 15px;
margin-bottom: 0px;
font-size: 14px;
text-align: center;
}
.id.id-logged {
font-size: 14px;
text-align: center;
}
.avatar-editor {
text-align: left;
}
.suggest {
overflow: scroll;
height: 110px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
background-color: #f3f3f3;
box-shadow: inset 0 0 3px -1px #000;
}
.suggest-item {
padding-right: 10px;
padding-left: 10px;
font-size: 14px;
line-height: 36px;
cursor: pointer;
}
.suggest-item:hover {
background-color: rgba(255, 0, 133, .06);
}
.suggest-item:active {
background-color: #ff0085;
color: #fff;
}
.suggest-item.suggest-token {
margin: 7px 5px 5px -5px;
padding: 0px 5px 1px;
float: left;
border-radius: 5px;
background-color: #9793c5;
color: #fff;
font-size: 10px;
line-height: 20px;
font-weight: 400;
}
.suggest-item.suggest-token.suggest-token-inline {
display: inline;
margin-right: 2px;
margin-left: 2px;
padding-top: 3px;
padding-bottom: 3px;
float: none;
}
.suggest-item.suggest-token.suggest-token-sidebar {
margin-top: 5px;
padding-bottom: 0px;
}
.plus {
font-size: 18px;
font-weight: 700;
}
.avatar-description {
overflow: auto;
width: 150px;
margin-top: 12px;
margin-left: 5px;
float: left;
font-size: 12px;
line-height: 20px;
}
.upload-icon {
width: 20px;
height: 20px;
margin-right: 5px;
float: left;
}
.upload-button-label {
display: inline-block;
}
.logout {
display: block;
width: 12px;
height: 12px;
margin-top: 7px;
margin-right: -1px;
margin-left: 4px;
float: right;
}
.left {
position: fixed;
top: 0px;
bottom: 0px;
z-index: 12500;
display: inline-block;
overflow: hidden;
width: 0px;
margin-left: -10000px;
float: left;
background-color: #f2f2f8;
text-align: left;
}
.left.left-edit {
width: 260px;
margin-left: 0px;
}
.vote-label {
margin-left: 3px;
letter-spacing: 0.3px;
text-transform: uppercase;
}
.credential {
width: 125px;
margin: 5px;
padding: 5px 10px;
float: left;
border: 1px solid #fff;
border-radius: 3px;
text-align: left;
}
.memberships {
margin-top: 10px;
}
.alert {
display: block;
overflow: hidden;
max-width: 400px;
margin-top: 20%;
margin-right: auto;
margin-left: auto;
padding: 18px 12px;
border-color: #f3f3f3 #e0e0e0 #e0e0e0 #f3f3f3;
border-top-style: solid;
border-top-width: 1px;
border-left-style: solid;
border-left-width: 1px;
border-radius: 5px;
background-color: #eaeaea;
box-shadow: 0 6px 20px 4px rgba(0, 0, 0, .13);
font-size: 16px;
text-align: center;
}
.alert-header {
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
}
.alert-header.alert-header-subtitle {
margin: 20px -15px 10px;
padding-top: 10px;
border-top: 1px dotted #6c5b7c;
color: #d8d8d8;
font-size: 11px;
}
.alert-icon {
width: 30px;
height: 30px;
margin-top: 20px;
margin-bottom: 5px;
}
.alert-title {
text-transform: uppercase;
}
.modal-container {
position: relative;
left: 0px;
right: 0px;
bottom: 0px;
}
.type {
margin-top: 0px;
padding-top: 10px;
padding-bottom: 0px;
border-radius: 3px;
background-color: transparent;
box-shadow: none;
}
.metadata {
margin-top: -10px;
margin-right: -15px;
float: left;
}
.vote-metrics {
margin: -5px 5px;
}
.vote-cta {
width: 50%;
float: right;
}
.vote-cta.vote-edit {
position: absolute;
left: 100px;
right: 10px;
width: auto;
}
.polis {
width: 50%;
float: left;
}
.polis.remove {
width: 100px;
}
.execution-label {
display: inline-block;
}
.feed-head {
display: inline-block;
width: 100%;
padding: 10px 25px;
color: dimgrey;
font-size: 14px;
line-height: 30px;
text-transform: uppercase;
}
.cast {
position: fixed;
right: 15px;
bottom: 15px;
z-index: 8500;
width: 70px;
height: 70px;
border-radius: 50px;
background-color: #00d9ff;
box-shadow: 0 2px 20px -5px #000;
color: #fff;
font-weight: 200;
text-align: center;
cursor: pointer;
}
.cast:active {
bottom: 13px;
box-shadow: 0 0 20px -7px #000;
}
.cast.cast-cancel {
background-color: #9793c5;
}
.menu {
margin-top: 0px;
margin-bottom: 10px;
border-bottom: 1px none #bbb;
font-size: 15px;
line-height: 28px;
text-align: left;
}
.menu.menu-empty {
padding: 10px 5px;
clear: both;
border-radius: 5px;
color: #6c5b7c;
font-size: 10px;
line-height: 16px;
text-align: center;
text-transform: uppercase;
}
.menu.menu-empty.menu-crypto {
margin-right: 0px;
margin-left: 0px;
}
.menu.menu-empty.menu-footer {
position: absolute;
left: 0px;
right: 0px;
bottom: 0px;
display: block;
margin-bottom: 0px;
padding-right: 15px;
padding-bottom: 20px;
padding-left: 15px;
background-color: #f2f2f8;
box-shadow: 0 0 20px 10px #f2f2f8;
text-align: left;
}
.menu-item {
min-width: 100%;
margin-top: 3px;
margin-bottom: 3px;
padding: 1px 0px 1px 5px;
border-radius: 3px;
color: #0d0d17;
font-size: 13px;
line-height: 30px;
text-align: left;
cursor: pointer;
}
.menu-item:hover {
background-color: #e6e0ee;
}
.menu-item.cast-action {
position: absolute;
top: 50%;
right: 100%;
margin-top: -25%;
margin-right: 15px;
background-color: transparent;
box-shadow: none;
text-align: right;
text-shadow: 0 2px 13px rgba(0, 0, 0, .7);
}
.menu-item.menu-item-selected {
background-color: #5a0075;
color: #fff;
}
.signal {
width: 30px;
height: 30px;
margin-right: 5px;
padding-top: 1px;
float: right;
border-radius: 15px;
background-color: rgba(255, 39, 82, .71);
font-size: 12px;
text-align: center;
}
.signal.void {
background-color: transparent;
color: #333;
}
.signal.void.signal-selected {
color: #fff;
}
.signal.signal-on {
background-color: #ff2752;
color: #fff;
}
.action-icon {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
width: 100%;
height: 100%;
}
.feed {
position: relative;
display: block;
width: 100%;
margin-right: auto;
margin-left: auto;
}
.sidebar {
position: absolute;
top: 0px;
bottom: 0px;
display: inline-block;
overflow: scroll;
width: 100%;
padding: 0px 10px 10px;
box-shadow: none;
text-align: center;
}
.content {
display: inline-block;
min-width: 100%;
margin-right: auto;
margin-left: auto;
padding: 60px 15px 15px;
}
.content.content-feed {
padding: 10px 10px 10px 15px;
-webkit-transition: opacity 892ms ease;
transition: opacity 892ms ease;
}
.content.content-agora {
position: relative;
width: 100%;
min-width: 200px;
margin-bottom: -15px;
padding-top: 10px;
padding-right: 15px;
padding-left: 10px;
}
.action-label {
position: absolute;
overflow: hidden;
min-width: 120px;
margin-top: 20px;
margin-left: -115px;
border-radius: 3px;
background-color: rgba(0, 0, 0, .4);
opacity: 0;
font-size: 14px;
line-height: 30px;
font-weight: 300;
text-align: center;
text-shadow: none;
cursor: default;
}
.separator {
margin-right: -10px;
margin-bottom: 5px;
margin-left: -10px;
padding: 5px 20px 5px 13px;
box-shadow: none;
color: #6c5b7c;
font-size: 10px;
line-height: 22px;
font-weight: 500;
text-align: left;
text-transform: uppercase;
}
.separator.agora-separator {
opacity: 0;
}
.icon-inbox {
width: 22px;
height: 22px;
margin-top: 3px;
margin-right: 10px;
float: left;
}
.half {
width: 50%;
}
.half.float-left.transaction-half {
text-align: center;
}
.tutorial {
margin-top: 10px;
margin-bottom: 10px;
}
.micro-button {
display: inline-block;
overflow: hidden;
margin: 10px auto;
padding: 0px 10px 0px 5px;
border-radius: 5px;
color: #7d849f;
font-size: 12px;
line-height: 28px;
text-align: center;
cursor: pointer;
}
.micro-button:hover {
color: #f04;
}
.micro-button:active {
background-color: #f2f2f5;
}
.micro-button.micro-button-remove {
color: #ff2752;
}
.micro-button.micro-button-remove:active {
background-color: transparent;
}
.micro-button.disabled {
opacity: 0.35;
cursor: default;
}
.micro-button.agora-button {
margin: 5px 15px 0px -7px;
}
.micro-button.agora-button:active {
background-color: #e9e9e9;
}
.micro-button.agora-button.agora-time {
margin-top: 5px;
margin-right: 0px;
padding-right: 0px;
float: right;
text-align: right;
}
.micro-button.agora-button.agora-time:active {
background-color: transparent;
}
.micro-button.micro-button-header {
overflow: visible;
margin: 0px;
padding: 0px;
border-radius: 0px;
text-align: left;
}
.micro-button.micro-button-feed {
display: block;
margin: 5px 0px 0px 10px;
float: left;
}
.micro-button.micro-button-feed.micro-button-disabled {
color: #e2e2e2;
cursor: default;
}
.micro-button.micro-button-feed.micro-button-disabled:active {
background-color: transparent;
}
.micro-button.micro-button-disabled {
color: #e2e2e2;
cursor: default;
}
.micro-icon {
width: 24px;
height: 24px;
margin-top: -2px;
}
.micro-label {
display: inline-block;
}
.micro {
display: inline-block;
margin-right: 10px;
margin-left: 10px;
text-align: center;
}
.micro.micro-half {
display: inline;
}
.micro-menu {
width: 100%;
margin-right: auto;
margin-left: auto;
text-align: center;
}
.micro-menu.micro-menu-thread {
display: inline-block;
margin: 0px 0px -10px;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.modal-buttons {
display: inline-block;
width: 100%;
margin-top: 20px;
margin-bottom: -10px;
}
.collective {
display: inline-block;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px 10px 0px;
border-radius: 5px;
color: #333;
font-size: 12px;
line-height: 18px;
cursor: pointer;
}
.collective:hover {
background-color: #e6e0ee;
}
.collective.collective-selected {
background-color: #5a0075;
color: #fff;
}
.collective-icon {
max-height: 40px;
max-width: 90%;
margin-right: 10px;
float: left;
border-radius: 5px;
box-shadow: none;
cursor: pointer;
}
.collective-icon.collective-icon-small {
width: 25px;
height: 25px;
margin-top: 9px;
margin-bottom: 0px;
}
.menu-button {
width: 40px;
height: 40px;
margin-top: 3px;
margin-bottom: 3px;
opacity: 0;
}
.collective-title {
margin-top: 5px;
margin-bottom: 5px;
font-size: 14px;
line-height: 18px;
font-weight: 400;
text-shadow: none;
}
.collective-stat {
display: block;
margin-right: auto;
margin-bottom: 10px;
margin-left: auto;
border: 1px none #00bf8f;
border-radius: 2px;
color: #00bf8f;
}
.collective-stat-icon {
width: 22px;
height: 22px;
margin-right: 10px;
float: left;
}
.collective-info {
display: inline;
margin-top: 15px;
clear: both;
font-size: 15px;
}
.paper-header-title {
float: left;
}
.micro-vote-power {
margin-top: 0px;
margin-bottom: 0px;
padding-bottom: 5px;
}
.trojan {
display: block;
width: 180px;
margin-right: auto;
margin-left: auto;
background-color: #949494;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.transition {
position: fixed;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
margin-top: 0px;
padding-top: 70px;
padding-bottom: 0px;
background-color: #ddd;
}
.spinner {
display: block;
width: 100px;
height: 100px;
margin-right: auto;
margin-left: auto;
opacity: 0.5;
}
.right {
position: absolute;
left: 250px;
top: 0px;
right: 0px;
bottom: 0px;
overflow: scroll;
}
.right.show {
left: 0px;
}
.right.right-hero {
top: 400px;
}
.float-left {
float: left;
}
.card-title {
margin-top: 3px;
font-size: 20px;
font-weight: 500;
}
.non-draggable {
cursor: default;
}
.agora {
position: absolute;
top: 0px;
bottom: 0px;
width: 100%;
margin: 0px;
padding-top: 0px;
}
.mobile-editor {
position: fixed;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
z-index: 14600;
margin-top: 60px;
padding-top: 10px;
background-color: #fff;
}
.mobile-editor.hide {
display: none;
}
.event {
position: static;
left: 0px;
right: 0px;
display: block;
margin-bottom: 0px;
margin-left: 0px;
clear: both;
}
.event.event-main {
margin-bottom: 10px;
}
.event.event-reply {
margin-top: 15px;
}
.cards {
display: block;
margin-top: 5px;
margin-left: 3px;
float: left;
clear: both;
color: #999;
font-size: 10px;
line-height: 22px;
text-transform: uppercase;
}
.cards.transaction-score {
width: 100%;
margin-top: 0px;
margin-left: 0px;
font-size: 9px;
text-align: center;
}
.cards.transaction-score.transaction-label {
margin-top: 3px;
margin-bottom: 0px;
border-bottom: 1px solid #e0e0e0;
text-align: left;
}
.sort {
position: absolute;
z-index: 7500;
display: inline-block;
width: 40px;
height: 92px;
margin-top: -5px;
margin-left: 0px;
padding-top: 0px;
float: left;
background-color: #f5f5f5;
}
.argument {
margin-top: 5px;
margin-left: 38px;
padding-left: 10px;
float: none;
border-left: 1px none #e9e9e9;
}
.argument.no-children {
border-left-style: solid;
border-left-color: #f5f5f5;
}
.sort-button {
display: block;
width: 40px;
height: 40px;
border-radius: 3px;
text-align: center;
cursor: pointer;
}
.sort-button:active {
display: inline-block;
margin-top: 1px;
margin-bottom: -1px;
}
.sort-button.sort-button-active {
background-color: #00bf8f;
}
.sort-button.sort-button-disabled {
cursor: default;
}
.sort-score {
width: 40px;
margin-top: -10px;
margin-bottom: -10px;
color: #00bf8f;
font-size: 16px;
line-height: 32px;
text-align: center;
}
.sort-score.transaction-score {
display: inline-block;
width: 100%;
margin-top: 10px;
margin-bottom: 5px;
font-size: 36px;
text-align: center;
}
.speak {
width: 100%;
margin-bottom: 35px;
}
.agora-speak {
margin-bottom: 40px;
padding-right: 25px;
padding-left: 25px;
}
.split {
position: absolute;
top: 0px;
bottom: 0px;
display: inline-block;
width: 50%;
padding-right: 15px;
padding-left: 15px;
float: left;
}
.split.split-right {
position: absolute;
left: 60%;
right: 0px;
width: 40%;
padding-right: 0px;
padding-left: 0px;
border-left: 1px none hsla(0, 0%, 41%, 0);
}
.split.split-left {
width: 60%;
padding-right: 0px;
padding-left: 0px;
}
.comment {
display: block;
padding: 10px;
border: 1px solid #e7e7e7;
border-radius: 3px;
background-color: #f0f0f0;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
line-height: 26px;
}
.comment.quote {
display: inline-block;
margin-bottom: 10px;
padding: 3px 5px;
border-color: #fae9b1;
border-radius: 0px;
background-color: #fae9b1;
}
.comment.comment-post {
display: block;
min-height: 60px;
margin-top: 10px;
margin-bottom: 20px;
padding: 5px 10px;
float: none;
border-style: none;
border-radius: 3px;
background-color: #fff;
box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, .5);
}
.comment.comment-post.comment-disabled {
color: #ccc;
}
.comment-post {
float: left;
}
.comment-post-left {
width: 70px;
float: left;
}
.comment-post-right {
position: relative;
display: block;
margin-left: 70px;
}
.tooltip {
margin-top: -15px;
color: #aaa;
font-size: 10px;
text-align: center;
}
.pointer-down {
position: relative;
width: 0px;
height: 0px;
margin-top: -8px;
border-style: solid;
border-width: 15px 10px 0px;
border-color: rgba(49, 38, 59, .95) transparent transparent;
background-color: transparent;
}
.agora-logger {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 0px;
margin-bottom: 10px;
text-align: center;
}
.button-wrap-half {
width: 50%;
padding-right: 5px;
padding-left: 5px;
float: left;
}
.agora-separator {
height: 10px;
}
.dynamic-text {
padding: 5px;
border-radius: 3px;
background-color: #e6f9f4;
font-weight: 200;
}
.signature-role {
display: block;
min-width: 200px;
margin-top: 85px;
margin-bottom: 20px;
padding-right: 10px;
padding-left: 10px;
clear: both;
border: 1px solid #f5f5f5;
border-radius: 50px;
background-color: #f5f5f5;
font-size: 10px;
text-align: center;
text-transform: uppercase;
}
.signature-role.signature-confirmed {
border: 1px solid #e6f9f4;
background-color: #e6f9f4;
}
.signature-role.signature-rejected {
border-color: #fae6e6;
background-color: #fae6e6;
}
.signature-role.signature-role-mobile {
min-width: 100px;
margin-top: 4px;
margin-bottom: 4px;
float: right;
clear: none;
}
.shadow-bar {
margin-right: -10px;
margin-left: -10px;
}
.signature-remove {
display: block;
width: 24px;
height: 24px;
margin-top: 2px;
margin-right: -8px;
float: right;
border-radius: 50px;
background-image: url('../images/cross-green.png');
background-position: 50% 50%;
background-size: 14px 14px;
background-repeat: no-repeat;
cursor: pointer;
}
.smart {
width: 75%;
float: left;
}
.resize {
position: fixed;
top: 0px;
bottom: 0px;
display: block;
width: 5px;
float: left;
border-left-style: none;
cursor: ew-resize;
}
.authenticity {
margin-top: 10px;
margin-bottom: 10px;
}
.authenticity-score {
width: 75%;
float: left;
text-align: left;
}
.authenticity-role {
width: 55px;
margin-top: -15px;
float: right;
text-align: center;
}
.authenticity-label {
display: block;
font-size: 11px;
line-height: 20px;
}
.checkpoint {
width: 24px;
height: 24px;
margin-right: 10px;
float: left;
border: 1px solid #00bf8f;
border-radius: 50px;
background-color: rgba(0, 191, 143, 0);
cursor: pointer;
}
.checkpoint.checkpoint-selected {
background-color: #00bf8f;
cursor: pointer;
}
.checkpoint-icon {
display: inline-block;
width: 25px;
height: 25px;
margin-top: -10px;
}
.authenticity-bar {
display: block;
width: 100%;
height: 20px;
clear: both;
}
.authenticity-bar-scale {
width: 20%;
height: 20px;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
float: left;
opacity: 0.2;
}
.authenticity-bar-scale.authenticity-bar-selected {
opacity: 1;
}
.authenticate-defcon {
display: block;
width: 100%;
height: 100%;
border-radius: 2px;
background-color: #ff2752;
opacity: 0.75;
}
.authenticate-defcon.defcon-2 {
background-color: #ff8979;
}
.authenticate-defcon.defcon-3 {
background-color: #ffe079;
}
.authenticate-defcon.defcon-4 {
background-color: #46dfb8;
}
.authenticate-defcon.defcon-5 {
background-color: #00bf8f;
}
.checkpoints {
margin-bottom: 8px;
}
.proposal-feed {
padding-right: 15px;
padding-left: 15px;
}
.delegate {
width: 60px;
height: 60px;
border: 1px none #00bf8f;
border-radius: 5px;
background-color: transparent;
box-shadow: none;
color: #00bf8f;
font-size: 36px;
line-height: 50px;
text-align: center;
cursor: pointer;
}
.delegate-label {
font-size: 8px;
line-height: 8px;
text-transform: uppercase;
}
.transaction {
position: relative;
display: inline-block;
width: 100px;
margin-top: -77px;
float: right;
}
.transaction-wrapper {
float: right;
}
.currency {
width: 32px;
height: 32px;
margin-top: -6px;
margin-left: -5px;
}
.currency-label {
display: inline-block;
}
.ticket-trim {
height: 7px;
margin-top: -1px;
margin-right: -15px;
margin-left: -15px;
background-image: url('../images/ticket-trim-up_1ticket-trim-up.png');
background-position: 0px 0px;
background-size: 6px;
background-repeat: repeat-x;
}
.ticket-trim.ticket-trim-down {
height: 7px;
margin-top: 3px;
margin-bottom: -4px;
clear: both;
background-image: url('../images/ticket-trim-down_1ticket-trim-down.png');
background-position: 0px 1px;
background-size: 6px;
}
.transaction-actors {
display: block;
}
.transaction-direction {
width: 24px;
height: 24px;
}
.arrow-down {
width: 0px;
height: 0px;
float: right;
border-style: solid;
border-width: 8px 5px 0px;
border-color: #00bf8f transparent;
background-color: transparent;
}
.arrow-down.arrow-down-inner {
margin-top: -7px;
margin-right: -3px;
border-top-width: 5px;
border-top-color: #e6f9f4;
border-right-width: 3px;
border-left-width: 3px;
}
.arrow-up {
width: 0px;
height: 0px;
border-style: solid;
border-width: 0px 5px 8px;
border-color: #000 transparent #00bf8f;
background-color: transparent;
}
.arrow-up.arrow-up-inner {
display: block;
margin-left: -3px;
padding-top: 2px;
border-right-width: 3px;
border-bottom-width: 5px;
border-bottom-color: #e6f9f4;
border-left-width: 3px;
}
.arrow-wrapper {
display: inline-block;
width: 10px;
height: 8px;
margin-right: -5px;
margin-left: -10px;
float: right;
}
.arrow-wrapper.arrow-wrapper-top {
margin-top: 10px;
}
.arrow-wrapper.arrow-wrapper-bottom {
margin-top: 37px;
}
.rosca-absolute {
position: absolute;
}
.vote-quantity {
position: relative;
top: -2px;
display: inline-block;
margin: 1px 3px -4px;
padding-right: 10px;
padding-left: 10px;
border: 1px solid #ffe079;
border-radius: 25px;
background-color: #ffe079;
color: #af8d1e;
font-size: 10px;
line-height: 24px;
text-transform: uppercase;
}
.subfeed-title {
padding-bottom: 0px;
border-bottom: 1px solid #cacaca;
background-color: #d6d6d6;
background-image: -webkit-gradient(linear, left bottom, left top, from(#d6d6d6), color-stop(65%, #ddd));
background-image: linear-gradient(0deg, #d6d6d6, #ddd 65%);
}
.subfeed-title.subfeed-title-main {
margin-top: 70px;
margin-bottom: 10px;
}
.subfeed-title.subfeed-title-secondary {
margin-bottom: 10px;
}
.bar-labels {
overflow: hidden;
height: 35px;
}
.card-element {
margin-top: 10px;
}
.user-logger {
width: 40px;
height: 60px;
}
.unanimous {
border-radius: 25px;
}
.votes {
height: 60px;
border: 1px solid #00bf8f;
border-radius: 3px;
background-color: transparent;
color: #00bf8f;
}
.modal-buttons-padder {
width: 50%;
margin-bottom: -9px;
float: left;
}
.modal-buttons-padder.modal-buttons-padder-left {
padding-right: 5px;
}
.modal-buttons-padder.modal-buttons-padder-right {
padding-left: 5px;
}
.modal-title {
margin-top: 10px;
margin-bottom: 10px;
font-weight: 600;
}
.timestamp {
margin-top: -20px;
float: right;
}
.mobile-menu {
position: fixed;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 20000;
height: 56px;
border-top: 1px solid #000;
background-color: #000;
text-align: center;
}
.mobile-menu.mobile-menu-toolbar {
z-index: 20001;
padding: 3px 10px;
border-top-color: #ddd;
background-color: #f8f8f8;
}
.mobile-menu-button {
width: 25%;
padding-top: 10px;
padding-bottom: 10px;
float: left;
color: #fff;
font-size: 8px;
line-height: 22px;
text-transform: uppercase;
}
.menu-button-icon {
width: 24px;
height: 24px;
margin-bottom: 1px;
}
.inhibitor {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
z-index: 20500;
overflow: hidden;
background-color: rgba(0, 0, 0, .07);
}
.body {
overflow: hidden;
}
.mobile-editor-close {
width: 32px;
height: 32px;
margin-top: -5px;
margin-right: -10px;
padding: 3px 6px;
float: right;
}
.mobile-editor-close:active {
margin-top: -3px;
margin-bottom: -2px;
}
.close-icon {
width: 20px;
height: 20px;
}
.mobile-editor-authors {
float: left;
}
.toolbar {
position: fixed;
}
.mobile-menu-action {
width: 100px;
float: right;
}
.counter {
padding: 15px 10px;
float: right;
color: #aaa;
font-size: 18px;
font-weight: 100;
}
.counter.counter-excess {
color: #ff2752;
}
.toolbar-icon {
width: 24px;
height: 24px;
}
.editor-button {
overflow: hidden;
height: 30px;
margin: 3px 5px;
padding: 0px 5px;
float: left;
border: 1px solid #f0eef2;
border-radius: 5px;
background-color: #f0eef2;
color: #6d5c7d;
font-size: 12px;
line-height: 29px;
cursor: pointer;
}
.editor-button.editor-button-disabled {
border-color: #ccc;
}
.editor-button.editor-button-active {
border-color: #5a0075;
background-color: #5a0075;
color: #fff;
}
.editor-button.editor-button-enabled {
color: #6d5c7d;
}
.editor-button.editor-button-readonly {
margin: 4px 10px -5px;
padding-right: 0px;
float: right;
border-style: none;
background-color: transparent;
cursor: default;
}
.editor-button.editor-button-reject-enabled {
border-color: #ff2752;
color: #ff2752;
}
.section-editor-separator {
margin: 10px;
border-top: 1px dotted #00bf8f;
}
.navbar-button-action-label {
margin-top: 12px;
margin-right: 15px;
margin-left: 10px;
float: left;
font-family: 'Open Sans', sans-serif;
}
.avatar-wrapper {
margin-top: -4px;
margin-right: -8px;
float: right;
}
.calendar-button {
display: inline-block;
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
padding: 5px 10px;
float: right;
border: 1px solid #00bf8f;
border-radius: 5px;
background-color: transparent;
color: #00bf8f;
}
.calendar-button.calendar-button-selected {
background-color: #00bf8f;
color: #f5f5f5;
}
.logo-navbar {
position: absolute;
left: 0px;
right: 130px;
display: block;
overflow: visible;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 130px;
text-align: center;
}
.feed-footer {
margin-top: 15px;
margin-bottom: 15px;
opacity: 0.4;
color: #000;
font-size: 10px;
text-align: center;
text-transform: uppercase;
cursor: pointer;
}
.feed-footer:active {
opacity: 0.75;
}
.back-top {
width: 20px;
height: 20px;
}
.separator-count {
font-weight: 400;
}
.sidebar-tag {
margin-top: 8px;
margin-right: 3px;
margin-left: 5px;
padding: 0px 4px;
float: right;
border-radius: 3px;
background-color: #ccbcda;
color: #6c5b7c;
font-size: 7px;
line-height: 14px;
font-weight: 400;
text-transform: uppercase;
}
.sidebar-tag.sidebar-stat {
margin-top: 0px;
margin-right: 5px;
margin-left: 0px;
float: left;
border-radius: 3px;
font-size: 10px;
line-height: 22px;
font-weight: 300;
}
.sidebar-tag.sidebar-stat.sidebar-crypto {
margin-top: 0px;
margin-bottom: 5px;
}
.sidebar-tag.sidebar-stat.sidebar-crypto.sidebar-title {
padding-left: 0px;
clear: right;
background-color: transparent;
}
.sidebar-tag.sidebar-address {
float: left;
font-size: 9px;
}
.sidebar-label {
float: left;
}
.post-button {
margin: 2px 10px -5px;
float: right;
color: #fff;
}
.page {
width: 100%;
float: left;
clear: both;
}
.popup-text {
margin-top: 10px;
margin-bottom: 20px;
}
.actor {
padding-right: 0px;
text-align: center;
}
.actor.actor-arrow {
min-width: 50px;
}
.actor.actor-score {
margin-right: -10px;
padding-right: 0px;
float: right;
}
.actor.actor-score.actor-score-ballot {
margin-right: 10px;
}
.transaction-data {
max-width: auto;
margin-right: 7px;
float: left;
clear: none;
}
.transaction-value {
margin-top: 2px;
margin-right: -15px;
margin-left: auto;
float: right;
}
.avatar-icon-box {
max-width: 24px;
margin: -9px 5px -15px -3px;
float: left;
}
.option-placeholder {
height: 20px;
min-width: 100px;
margin-bottom: 15px;
border-radius: 25px;
background-color: #f2f2f5;
}
.option-placeholder.fifty {
width: 50%;
}
.option-placeholder.identity-placeholder {
height: 15px;
margin-top: 8px;
background-color: #f2f2f5;
}
.option-placeholder.short {
height: 15px;
margin-top: 5px;
}
.white-link {
border-bottom-color: #fff;
color: #fff;
}
.bottom-10 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-bottom: 10px;
}
.transaction-date {
margin-top: 3px;
margin-bottom: 10px;
margin-left: -4px;
}
.checkbox-mini {
width: 17px;
height: 17px;
margin-top: -2px;
margin-right: 5px;
margin-left: -6px;
padding: 8%;
float: left;
border: 1px solid #6c5b7c;
border-radius: 25px;
background-color: #fff;
}
.foot {
margin-top: 20px;
font-size: 10px;
text-align: center;
text-transform: uppercase;
}
.foot-note {
display: inline-block;
margin-right: 20px;
}
.foot-note-dot {
width: 10px;
height: 10px;
margin: 9px 5px;
float: left;
border-radius: 25px;
background-color: #00bf8f;
}
.foot-note-dot.revoke {
background-color: #ff2752;
}
.foot-note-dot.grant {
background-color: #9b73ca;
}
.foot-note-label {
float: left;
}
.stage-card {
margin-top: 0px;
margin-left: 10px;
}
.max100 {
max-width: 100%;
}
.extra-warning {
width: 100%;
margin-top: -15px;
margin-bottom: 15px;
text-align: left;
}
.collective-profile {
margin-top: -6px;
margin-bottom: 10px;
float: left;
font-size: 12px;
line-height: 16px;
text-align: left;
}
.collective-profile.collective-crypto {
margin-top: 0px;
font-size: 10px;
}
.crypto-address {
max-height: 80px;
max-width: 90%;
margin-right: 10px;
float: left;
border: 1px solid #d6d2d9;
border-radius: 5px;
opacity: 0.6;
cursor: pointer;
}
.crypto-address:hover {
opacity: 1;
}
.text-block {
text-align: center;
}
.crypto-menu {
margin-top: 10px;
margin-bottom: 10px;
}
.crypto-address-label {
font-size: 9px;
text-align: left;
text-transform: none;
}
.heading {
color: #888;
}
.ledger {
display: inline-block;
width: 100%;
}
.vote-reply {
display: inline-block;
width: 100%;
}
.thread {
display: block;
width: 2px;
height: 19px;
margin-right: auto;
margin-left: 10px;
border-right: 1px solid #c9c9c9;
}
.thread.thread-inside {
display: block;
height: 50px;
margin-bottom: -50px;
margin-left: -20px;
}
.ledger-title {
margin-right: -15px;
margin-bottom: 10px;
margin-left: -15px;
}
.inline-block {
display: inline-block;
}
.constituency {
height: 32px;
margin: 7px;
padding-top: 2px;
padding-right: 10px;
padding-left: 10px;
float: right;
border-radius: 5px;
background-color: #e7f9f4;
color: #1ebf92;
font-size: 11px;
text-transform: uppercase;
}
.constituency.constituency-outcast {
background-color: #f5f5f5;
color: #ff2752;
}
.staking-editor {
margin: 0px 10px 5px;
}
.chain-address {
padding-right: 3px;
padding-left: 3px;
float: left;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
color: #888;
font-size: 7px;
line-height: 13px;
}
.chain-ticker {
float: left;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
color: #8a8a8a;
font-size: 7px;
line-height: 13px;
font-weight: 600;
}
.chain {
margin-top: 5px;
cursor: copy;
}
.token {
margin-top: 0px;
color: #fff;
}
.token.token-ledger {
margin-top: 10px;
margin-bottom: 10px;
float: right;
}
.token.token-ledger.token-button {
margin-top: 5px;
margin-bottom: 0px;
margin-left: 5px;
}
.token.token-editor {
margin-top: 5px;
margin-left: 5px;
float: right;
}
.token-ticker {
min-width: 35px;
padding: 3px;
float: left;
border: 1px solid #9696c1;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
background-color: #9695c3;
font-size: 10px;
line-height: 10px;
font-weight: 400;
text-align: center;
}
.token-ticker.token-editor {
margin-top: 7px;
margin-left: 5px;
float: right;
}
.token-balance {
display: inline;
min-width: 35px;
padding: 3px 5px;
float: left;
border: 1px solid #9696c1;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
font-size: 10px;
line-height: 10px;
font-weight: 400;
text-align: right;
text-transform: uppercase;
}
.token-bar {
height: 10px;
margin-top: 10px;
border-radius: 5px;
background-color: #6b6b6b;
}
.token-stake {
margin-top: 2px;
float: right;
color: #aaa;
font-size: 10px;
line-height: 15px;
}
.text-span {
color: #f3f3f3;
}
.token-stake-value {
color: #ddd;
}
.token-list {
display: inline-block;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
}
.float-right {
float: right;
}
.clock-icon {
width: 10px;
height: 10px;
}
.vote-thread {
position: relative;
display: inline-block;
width: 100%;
margin-top: -10px;
margin-bottom: -8px;
margin-left: 3px;
padding: 10px 3px 0px 10px;
border-left: 1px solid #f2f2f5;
}
.vote-thread.vote-thread-context {
border-left-color: transparent;
}
.vote-thread.vote-thread-main {
margin-left: 17px;
padding-right: 17px;
}
.thread-sub {
position: absolute;
display: block;
width: 12px;
height: 100%;
margin-top: -20px;
margin-right: auto;
margin-left: -11px;
float: left;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.thread-needle {
position: absolute;
top: 50%;
width: 10px;
height: 10px;
margin-top: 10px;
margin-left: 1px;
}
.thread-needle.thread-last {
bottom: -10px;
width: 1px;
margin-right: 0px;
margin-left: 0px;
background-color: #ddd;
background-image: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), color-stop(70%, #ddd));
background-image: linear-gradient(180deg, #e6e6e6, #ddd 70%);
}
.thread-needle.thread-reply {
width: 20px;
height: 20px;
margin-top: 0px;
margin-left: -10px;
border-top-style: none;
}
.meta-compressed {
padding-left: 5px;
}
.token-wrapper {
margin-top: 5px;
margin-left: 5px;
}
.margin-top {
margin-top: 10px;
}
.margin-both {
margin-right: 5px;
margin-left: 5px;
float: left;
}
.editor-menu {
margin-top: 20px;
margin-bottom: 8px;
float: left;
}
.electorate-rule {
margin-top: 1px;
margin-right: 2px;
float: left;
font-size: 9px;
text-transform: uppercase;
}
.dropdown-buttons {
display: inline-block;
width: 100%;
margin-top: -5px;
}
.margin-bottom-dead {
margin-bottom: -10px;
}
.margin-top-minus-three {
margin-top: -3px;
}
.token-pending {
display: inline-block;
margin: -1px -3px -1px 5px;
padding: 3px 3px 1px;
float: right;
border-radius: 3px;
background-color: #f9d55b;
color: #8f6e00;
font-size: 8px;
line-height: 8px;
text-transform: uppercase;
}
.token-score {
float: right;
}
.token-wrap {
display: inline-block;
margin-right: 10px;
float: left;
}
.video-tutorial {
margin-top: 15px;
}
.login-button-last {
margin-bottom: 20px;
}
.hero {
display: inline-block;
width: 100%;
min-height: 65px;
padding-bottom: 50px;
background-color: #f2f2f8;
font-size: 18px;
line-height: 26px;
}
.no-underline:hover {
text-decoration: none;
}
.split-landing {
position: absolute;
top: 400px;
}
.hero-background {
display: block;
width: 100%;
height: 100%;
background-color: #6d5c7d;
}
.hero-title {
width: 50%;
max-width: 550px;
margin-bottom: 40px;
margin-left: 5%;
float: left;
text-align: left;
}
.hero-wrapper {
display: block;
margin-right: auto;
margin-left: auto;
}
.hero-call-to-action {
height: 40px;
min-width: 250px;
margin-left: 5%;
padding-right: 30px;
clear: both;
}
.hero-cta-input {
display: block;
width: 60%;
height: 40px;
padding-left: 10px;
float: left;
border: 1px solid transparent;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
background-color: #fff;
color: #000;
font-size: 16px;
}
.hero-cta-input:focus {
border-style: none;
}
.hero-cta-alternative {
margin-top: 8px;
margin-left: 5px;
float: left;
font-size: 14px;
}
.hero-cta-box {
display: inline-block;
height: 40px;
min-width: 340px;
float: left;
border-top-left-radius: 5px;
box-shadow: 0 4px 23px -10px #000;
}
.hero-menu {
display: block;
width: 80%;
margin-right: auto;
margin-left: auto;
float: left;
}
.hero-logo {
max-height: 32px;
margin: 12px 10px;
float: left;
}
.hero-logo:active {
margin-top: 14px;
margin-bottom: 10px;
}
.hero-button {
display: inline-block;
margin-right: 15px;
margin-left: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
.hero-button.hero-button-mobile.hero-signin {
padding-bottom: 0px;
float: right;
cursor: pointer;
}
.hero-button.hero-signin:hover {
border-color: #fff;
}
.hero-menu-link {
color: #7d8499;
font-size: 13px;
line-height: 22px;
font-weight: 400;
text-transform: uppercase;
}
.hero-menu-link:hover {
color: #181f33;
text-decoration: none;
}
.hero-menu-link.hero-menu-link-selected {
color: #0d0d17;
font-weight: 700;
cursor: default;
}
.hero-menu-link.hero-menu-link-signin {
padding: 5px 10px;
border: 1px solid #7d8499;
border-radius: 5px;
}
.hero-menu-link.hero-menu-link-signin.hero-menu-link-signin-active {
border-color: #561072;
background-color: #561072;
color: #fff;
}
.hero-navbar {
position: absolute;
z-index: 10;
overflow: hidden;
width: 100%;
height: 60px;
}
.hero-navbar.hero-navbar-scroller {
border-bottom: 1px solid #e8e8e8;
background-color: #f2f2f8;
}
.hero-demo {
position: absolute;
left: 60%;
width: 400px;
float: right;
text-align: center;
}
.hero-signin {
float: right;
}
.login-button-first {
margin-top: 20px;
}
.body-2 {
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cecece));
background-image: linear-gradient(180deg, #fff, #cecece);
}
.split-post-landing {
position: absolute;
top: 70px;
}
.heading-3 {
font-weight: 500;
}
.walleticon {
display: block;
width: 180px;
height: 180px;
margin: 0px auto 20px;
padding-top: 60px;
padding-bottom: 60px;
border-radius: 90px;
background-color: #f2f2f5;
}
.card-login-label {
font-size: 14px;
line-height: 22px;
}
.padding-left-zero {
padding-left: 0px;
}
@media (max-width: 991px) {
.contract {
margin-right: 15px;
margin-left: 15px;
}
.power {
width: 100%;
}
.power.hundred.power-election {
margin-left: -5px;
text-align: left;
}
.power.power-auto {
width: 100%;
}
.extra.extra-ten {
margin: -10px -5px;
text-align: left;
}
.vote.vote-alternative {
width: 100%;
}
.vote.vote-custom {
width: 100%;
}
.vote.vote-search {
width: 100%;
}
.vote.vote-placeholder {
display: block;
width: 100%;
}
.option-title.input {
max-width: 75%;
}
.option-title.input.option-input {
font-size: 28px;
}
.option-title.option-link {
display: inline-block;
max-width: 100%;
}
.option-title.option-link.option-edit.option-title-long {
max-width: 85%;
}
.option-title.option-link.option-long {
max-width: 90%;
}
.progress-bar {
width: 15%;
}
.main {
min-width: 350px;
margin-left: 0px;
float: right;
}
.option-link {
max-width: 70%;
}
.profile {
position: absolute;
left: 230px;
right: 30px;
float: left;
}
.user {
position: relative;
max-width: 100%;
float: left;
}
.portrait {
width: 200px;
}
.mask {
display: block;
width: 100%;
height: 450px;
background-color: #fff;
}
.mask.interest-profile {
height: 350px;
}
.election {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 5px;
clear: both;
}
.fact {
font-weight: 300;
}
.modal.hide {
display: none;
}
.cast {
right: 15px;
bottom: 15px;
}
.sidebar {
top: 0px;
z-index: 15000;
display: block;
}
.content {
left: 0px;
right: 0px;
padding-right: 0px;
padding-left: 0px;
}
.content.content-agora {
margin-top: 0px;
padding-top: 5px;
box-shadow: none;
}
.half.float-left.transaction-half {
display: block;
}
.agora {
margin-top: -30px;
margin-right: 0px;
margin-left: 0px;
padding-top: 0px;
}
.mobile-editor.hide {
display: none;
}
.event {
margin-left: 0px;
}
.feed-events {
margin-left: 0px;
}
.split {
position: static;
width: 100%;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
float: none;
}
.split.split-right {
position: relative;
left: 0%;
overflow: visible;
width: 100%;
background-color: #f5f5f5;
}
.split.split-left {
width: 100%;
}
.smart {
display: block;
width: 100%;
margin-right: auto;
margin-left: auto;
float: none;
}
.resize {
display: none;
}
.transaction {
display: block;
width: 100%;
margin-top: 0px;
padding-bottom: 10px;
border-top: 1px solid #dbdbdb;
}
.transaction-wrapper {
float: left;
}
.ticket-trim.ticket-trim-down {
height: 3px;
background-color: #f1f1f1;
}
.transaction-actors {
margin-right: 0px;
}
.mobile-editor-topbar {
position: fixed;
background-color: #fff;
}
.hero-title {
width: 80%;
}
.hero-cta-box {
margin-bottom: 10px;
}
.hero-demo {
display: none;
}
}
@media (max-width: 767px) {
body {
padding-bottom: 0px;
}
h1 {
padding-top: 90px;
}
h2 {
font-size: 14px;
font-weight: 400;
}
h3 {
padding-left: 15px;
}
h5 {
font-weight: 400;
}
p {
font-weight: 400;
}
a {
font-weight: 400;
}
blockquote {
font-weight: 400;
}
.paper {
border-radius: 0px;
box-shadow: none;
}
.paper.paper-execute {
border-radius: 0px;
}
.paper.paper-editor {
position: relative;
margin-top: 0px;
margin-right: -15px;
margin-left: -15px;
padding: 0px;
}
.kind {
width: 100px;
}
.icon {
width: 30px;
height: 30px;
}
.declaration {
line-height: 40px;
}
.section.mobile-section {
overflow: scroll;
margin-bottom: 20px;
padding: 6px 12px;
}
.power {
width: 100%;
padding-right: 0px;
padding-left: 0px;
}
.calendar-menu.calendar-menu-active {
margin-bottom: -1px;
}
.symbol.profile-pic {
border-color: #dfdfdf;
}
.symbol.profile-pic:hover {
border-color: #dfdfdf;
}
.symbol.profile-pic:active {
margin-top: 12px;
margin-bottom: 8px;
}
.symbol.profile-pic.profile-pic-navbar:hover {
border-style: solid;
border-color: transparent;
}
.symbol.profile-pic.profile-pic-navbar:active {
margin-top: 3px;
margin-bottom: 3px;
}
.symbol.profile-pic.profile-sign {
margin-left: 0px;
}
.symbol.profile-pic.profile-sign:hover {
border-style: solid;
border-color: #00bf8f;
}
.symbol.profile-pic.profile-sign:active {
box-shadow: none;
}
.symbol.profile-pic.identity-small:active {
margin-top: 1px;
margin-bottom: -1px;
}
.extra.identity-list.avatar-editor {
padding-bottom: 0px;
}
.vote {
width: 100%;
}
.vote.vote-search {
box-shadow: none;
}
.vote.vote-search.vote-feed:hover {
margin-top: 0px;
margin-bottom: 20px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}
.vote.vote-search.vote-feed.vote-delegation {
box-shadow: none;
}
.option {
box-shadow: none;
}
.option-title.option-link {
max-width: 100%;
}
.option-title.option-link.option-edit {
max-width: 295px;
}
.option-title.option-link.option-edit.option-title-long {
max-width: 85%;
}
.option-title.option-link.option-long {
max-width: 80%;
}
.field.headline-field.split {
padding-right: 0px;
}
.field.split {
border-left-width: 0px;
}
.field.split.field-left {
padding-right: 5px;
}
.field.split.field-right {
padding-left: 5px;
}
.field.bio {
border-left: 1px none #000;
}
.input.headline-input {
font-size: 36px;
}
.input.headline-input.input-active {
line-height: 50px;
}
.navbar {
left: 0px;
box-shadow: none;
}
.logo {
padding-left: 0px;
}
.main {
display: none;
width: 40px;
float: right;
}
.option-link {
max-width: 85%;
}
.profile {
position: static;
width: 100%;
text-align: center;
}
.portrait-pic {
width: 200px;
float: none;
}
.user {
width: 100%;
max-width: 100%;
float: none;
clear: both;
text-align: left;
}
.verifier {
font-size: 12px;
line-height: 20px;
}
.portrait {
display: block;
width: auto;
margin-right: auto;
margin-left: auto;
float: none;
}
.mask {
display: none;
}
.score-block {
height: 15px;
}
.search.search-blur {
overflow: hidden;
width: 40px;
float: right;
}
.result.vote-bar {
box-shadow: none;
}
.election {
float: left;
text-align: center;
}
.election-label {
float: none;
}
.modal.hide {
display: none;
}
.rosca.rosca-setter {
margin-top: 5px;
}
.handle {
box-shadow: 0 0 0 1px #cff0e7, inset 0 0 1px 0 #52d4b4;
}
.data {
display: inline-block;
margin-right: 0px;
}
.stage.stage-card {
margin-top: 6px;
}
.context {
left: 10px;
top: auto;
bottom: 10px;
}
.selector-modal {
left: 20px;
right: 20px;
}
.references {
margin-left: 20px;
}
.calendar {
right: 28px;
box-shadow: none;
}
.title-input {
border-left-style: none;
border-left-width: 0px;
}
.title-input.title-input-read {
border-left-style: none;
border-left-width: 0px;
}
.title-input.title-input-void {
width: 90%;
}
.paper-header {
box-shadow: none;
}
.shadow-fake {
left: 25px;
right: 25px;
}
.warning-list {
margin-bottom: 10px;
}
.path {
left: 50px;
}
.authentication {
padding-right: 0px;
}
.popup {
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
width: 100%;
}
.navbar-button.navbar-button-active.navbar-button-action:active {
background-color: transparent;
color: #00bf8f;
}
.avatar-editor {
margin-bottom: 0px;
padding-bottom: 0px;
}
.left {
background-color: #fff;
}
.alert {
width: 90%;
max-width: 360px;
padding-top: 5px;
padding-bottom: 5px;
}
.type.content {
padding-top: 40px;
}
.vote-cta {
width: 100%;
}
.vote-cta.vote-edit {
width: 100%;
}
.polis {
width: 100%;
}
.polis.remove {
width: 100%;
}
.cast {
right: 5px;
bottom: 10px;
width: 60px;
height: 60px;
}
.cast:active {
bottom: 9px;
}
.menu.menu-empty {
font-weight: 400;
}
.menu.menu-empty.menu-footer {
background-color: #fff;
box-shadow: 0 0 20px 10px #fff;
}
.menu-item {
font-weight: 400;
}
.menu-item:hover {
background-color: transparent;
}
.menu-item.menu-item-selected:hover {
background-color: #6d5c7d;
}
.content.content-feed {
padding-right: 10px;
padding-left: 10px;
}
.content.content-agora {
min-width: 0px;
margin-top: -50px;
padding-right: 10px;
padding-left: 10px;
box-shadow: 0 0 0 0 #000;
}
.micro-button.agora-button {
margin-bottom: 5px;
}
.modal-buttons {
margin-bottom: 5px;
}
.menu-button {
opacity: 1;
}
.menu-button:active {
margin-top: 5px;
margin-bottom: 1px;
}
.paper-header-title {
padding-top: 5px;
font-size: 16px;
text-transform: none;
}
.spinner {
padding-left: 0px;
}
.card-title {
margin-top: 5px;
}
.agora {
margin-top: -15px;
}
.mobile-editor {
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
overflow: scroll;
padding-top: 0px;
}
.mobile-editor.hide {
display: none;
}
.split.split-right {
top: 35px;
}
.proposal-feed {
padding-right: 10px;
padding-left: 10px;
}
.vote-quantity {
font-size: 12px;
}
.subfeed-title {
margin-right: 0px;
margin-left: 0px;
}
.modal-title {
font-weight: 700;
}
.mobile-menu.mobile-menu-toolbar {
padding-left: 5px;
}
.mobile-editor-topbar {
position: fixed;
z-index: 20001;
overflow: hidden;
width: 100%;
height: 56px;
margin-top: 0px;
padding-top: 10px;
padding-right: 15px;
padding-left: 15px;
}
.mobile-editor-wrapper {
overflow: scroll;
width: 100%;
padding-top: 10px;
padding-bottom: 20px;
}
.mobile-menu-toolbar-toggle {
width: 50px;
height: 50px;
padding-top: 6px;
padding-bottom: 6px;
float: left;
}
.section-editor-separator {
margin-right: 5px;
margin-left: 5px;
}
.calendar-button:active {
background-color: #00bf8f;
color: #f5f5f5;
}
.actor.actor-score {
right: 0px;
}
.avatar-icon-box {
max-height: 24px;
}
.margin-bottom-dead {
margin-bottom: 0px;
}
.login-button-last {
margin-top: 15px;
margin-bottom: 15px;
}
.hero-title {
margin-left: 40px;
}
.hero-call-to-action {
margin-left: 40px;
}
.hero-cta-box {
box-shadow: none;
}
.hero-menu {
padding-right: 0px;
padding-left: 0px;
}
.hero-button {
display: none;
}
.hero-button.hero-button-mobile {
display: inline-block;
margin-right: 0px;
margin-left: 0px;
float: left;
}
.hero-button.hero-button-mobile.hero-signin {
margin-right: 15px;
}
}
@media (max-width: 479px) {
body {
padding-right: 0px;
padding-left: 0px;
font-size: 16px;
}
p {
font-size: 16px;
line-height: 26px;
}
.paper {
margin-top: 10px;
margin-right: -20px;
margin-left: -20px;
padding: 0px 15px 10px;
box-shadow: none;
}
.paper.paper-comment {
margin-right: 0px;
margin-left: 0px;
}
.kind {
width: 50px;
padding: 5px;
box-shadow: 0 2px 18px -13px #000;
}
.declaration {
position: static;
display: inline;
font-size: 26px;
line-height: 32px;
}
.description.editor {
font-size: 16px;
}
.description.input {
height: 100px;
font-size: 14px;
line-height: 22px;
}
.card {
right: 0px;
width: 100%;
}
.amount {
font-size: 32px;
}
.symbol.profile-pic.tag-delegate {
margin-top: 5px;
margin-bottom: 5px;
}
.semantics {
width: 100%;
}
.tag.input {
font-size: 16px;
}
.tag.input.custom-tag {
max-width: 211px;
}
.selector {
position: relative;
height: 200px;
}
.button {
clear: both;
}
.button.execute {
padding-top: 15px;
padding-bottom: 15px;
font-size: 22px;
line-height: 32px;
}
.button-icon.execute-icon {
width: 32px;
height: 32px;
}
.handwrite {
height: 160px;
}
.highlight {
margin-top: 30px;
margin-left: -10px;
padding-right: 10px;
padding-left: 10px;
font-size: 12px;
line-height: 36px;
}
.vote.vote-search {
box-shadow: none;
}
.vote.vote-search.vote-feed.vote-delegation {
width: 100%;
}
.option-title.input {
height: 40px;
max-width: 75%;
}
.option-title.input.option-input {
font-size: 20px;
}
.option-title.option-link.option-edit {
max-width: 80%;
}
.option-title.option-link.option-edit.option-title-long {
font-size: 16px;
}
.option-title.option-link.option-search {
font-size: 22px;
}
.checkbox.checkbox-custom {
width: 100%;
}
.field.split {
width: 100%;
border-left: 1px none #000;
}
.field.split.field-left {
padding-right: 0px;
}
.status {
overflow: hidden;
}
.progress-bar {
width: 11%;
}
.input {
height: 45px;
}
.input.headline-input {
height: 50px;
font-size: 30px;
}
.input.headline-input.input-active {
line-height: 40px;
}
.action.hash-action {
margin-left: -30px;
}
.action.vote-action {
width: 30px;
height: 30px;
max-width: 45px;
margin-right: -20px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 10px;
font-size: 14px;
line-height: 30px;
}
.navbar {
left: 0px;
}
.identity-label {
font-size: 15px;
}
.option-link {
margin-bottom: -5px;
}
.user {
margin-left: 0px;
}
.rich-text.editor-draft {
border-left-color: transparent;
}
.rich-text.editor-draft:hover {
border-left-color: transparent;
}
.election {
margin-bottom: 10px;
font-size: 22px;
}
.fact {
font-size: 20px;
}
.fact.fact-timer {
float: left;
}
.election-label {
float: none;
clear: both;
}
.identity-nation {
font-size: 12px;
}
.score-details {
margin-top: 20px;
}
.modal.hide {
display: none;
}
.selector-modal {
left: 0px;
right: 0px;
height: 200px;
}
.selector-warning {
margin-top: 60px;
margin-bottom: 60px;
}
.references {
margin-left: 15px;
}
.title-input {
border-left: 0px none transparent;
}
.title-input:hover {
border-left-color: transparent;
}
.title-input.title-feed {
margin-bottom: 10px;
}
.paper-header.paper-header-empty {
box-shadow: none;
}
.shadow-fake {
left: 20px;
}
.tabs {
display: inline-block;
}
.popup.popup-test.hide {
display: none;
}
.left.hide {
display: none;
}
.type {
padding-right: 0px;
padding-left: 0px;
}
.feed {
padding-right: 0px;
padding-left: 0px;
}
.content.content-agora {
margin-top: -20px;
}
.half {
width: 100%;
}
.micro-menu {
width: 100%;
}
.right.show {
margin-left: 0px;
}
.agora {
margin-top: -45px;
}
.mobile-editor.hide {
display: inline;
}
.mobile-widget-wrapper {
padding-top: 15px;
}
.section-editor-separator {
margin: 10px 5px;
border-top: 1px dotted #00bf8f;
}
.actor {
padding-right: 0px;
}
.transaction-data {
max-width: 100%;
clear: left;
}
} | public/templates/sovereign/sovereign.css | body {
padding-right: 0px;
padding-left: 0px;
background-color: #fff;
font-family: 'Open Sans', sans-serif;
color: rgba(0, 0, 0, .87);
font-size: 18px;
line-height: 28px;
font-weight: 400;
}
h1 {
margin-top: 0px;
margin-bottom: 20px;
padding-top: 100px;
color: rgba(0, 0, 0, .87);
font-size: 40px;
line-height: 48px;
font-weight: 500;
letter-spacing: 0.4px;
}
h2 {
border-bottom: 1px solid #000;
font-family: Lato, sans-serif;
font-size: 18px;
line-height: 28px;
font-weight: 300;
text-transform: uppercase;
}
h3 {
display: block;
margin: 10px auto;
padding-left: 20px;
color: dimgrey;
font-size: 12px;
line-height: 20px;
font-weight: 300;
text-align: left;
text-transform: uppercase;
}
h4 {
margin-top: 10px;
margin-bottom: 20px;
padding-right: 15px;
padding-left: 15px;
color: #0d0d17;
font-size: 20px;
line-height: 28px;
font-weight: 500;
}
h5 {
width: 100%;
margin-top: 15px;
margin-bottom: 10px;
padding-right: 15px;
padding-bottom: 5px;
padding-left: 15px;
border-bottom: 1px none #d1d1d1;
color: #5c5c5c;
font-size: 12px;
line-height: 20px;
font-weight: 300;
text-transform: uppercase;
}
p {
font-family: Lato, sans-serif;
font-size: 18px;
line-height: 28px;
font-weight: 300;
letter-spacing: 0px;
}
a {
color: #ff0085;
text-decoration: none;
cursor: pointer;
}
a:hover {
text-decoration: underline;
}
ul {
margin-top: 0px;
margin-bottom: 0px;
padding-left: 40px;
}
li {
background-image: none;
}
strong {
font-weight: 400;
}
blockquote {
padding: 10px 20px;
border-left: 5px solid #e2e2e2;
color: #aaa;
font-size: 18px;
line-height: 28px;
font-weight: 300;
letter-spacing: 0px;
}
.paper {
display: block;
margin: 25px auto 35px;
padding: 10px 30px;
border-radius: 3px;
background-color: #fff;
box-shadow: 0 3px 20px -13px #000;
}
.paper.paper-execute {
margin-top: -10px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
background-color: transparent;
box-shadow: none;
}
.paper.paper-execute.disabled {
opacity: 0.97;
}
.paper.paper-comment {
position: relative;
width: 100%;
margin-top: 5px;
margin-bottom: 5px;
padding: 0px;
background-color: transparent;
box-shadow: none;
}
.paper.paper-empty {
margin-bottom: 0px;
padding-bottom: 0px;
background-color: transparent;
box-shadow: none;
}
.kind {
position: absolute;
left: 0px;
top: 0px;
display: none;
width: 120px;
padding: 10px;
float: right;
border-bottom: 1px none #000;
border-radius: 3px 0px;
background-color: #e6f9f4;
box-shadow: none;
font-family: Lato, sans-serif;
font-size: 10px;
text-align: center;
text-transform: uppercase;
}
.kind:hover {
border-bottom-style: none;
text-decoration: underline;
}
.contract {
position: relative;
display: block;
max-width: 750px;
margin-right: auto;
margin-left: auto;
}
.icon {
width: 32px;
height: 32px;
margin-top: 5px;
margin-bottom: 5px;
}
.declaration {
position: relative;
display: inline;
line-height: 45px;
}
.declaration:hover {
background-color: rgba(0, 191, 143, .1);
}
.label.bitcoin-address {
margin-top: -10px;
font-size: 10px;
}
.label.title {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color: #00c091;
color: #fff;
font-size: 10px;
text-transform: uppercase;
}
.label.label-corner {
margin-top: 6px;
float: left;
font-size: 12px;
line-height: 15px;
}
.description {
font-family: Lato, sans-serif;
font-weight: 300;
}
.description.date {
margin-top: 15px;
text-align: left;
}
.description.editor {
height: 80px;
max-width: 100%;
margin-bottom: 10px;
padding: 10px;
border: 1px none #00c091;
border-radius: 5px;
background-color: rgba(0, 191, 143, .1);
box-shadow: none;
font-size: 18px;
line-height: 28px;
}
.description.input {
height: 100px;
font-size: 14px;
line-height: 22px;
}
.section {
clear: both;
}
.section.rights {
margin-right: -30px;
margin-left: -30px;
padding-top: 10px;
padding-right: 30px;
padding-left: 30px;
background-color: #fafafa;
box-shadow: inset 0 0 14px 0 #000;
}
.section.section-mobile {
padding: 5px 8px;
}
.section.section-mobile.section-mobile-feed {
margin-right: -10px;
margin-left: -10px;
}
.section.section-editor {
margin: 0px -15px;
padding: 0px 0px 0px 5px;
}
.card {
position: static;
right: 10px;
display: inline-block;
overflow: hidden;
width: 100%;
padding: 10px;
border-style: solid;
border-width: 1px;
border-color: #f3f3f3 #e0e0e0 #e0e0e0 #f3f3f3;
border-radius: 5px;
background-color: #eaeaea;
box-shadow: 0 6px 20px 4px rgba(0, 0, 0, .13);
color: #000;
}
.card.temporal {
position: fixed;
left: 30%;
right: 0px;
width: 40%;
}
.fingerprint {
display: block;
width: 120px;
margin-right: auto;
margin-bottom: 20px;
margin-left: auto;
}
.power {
width: 50%;
padding: 10px;
float: left;
border-bottom: 1px none #000;
text-align: center;
}
.power.hundred {
width: 100%;
}
.power.hundred.power-election {
padding-top: 0px;
padding-bottom: 10px;
}
.power.hundred.float-left {
float: left;
}
.power.power-small {
width: 25%;
max-width: 200px;
padding: 0px;
text-align: left;
}
.detail {
font-family: Lato, sans-serif;
color: #000;
font-size: 14px;
font-weight: 300;
}
.text {
display: inline-block;
padding-right: 10px;
}
.text.setting-label {
overflow: hidden;
max-width: 75%;
float: left;
clear: both;
font-size: 16px;
line-height: 40px;
}
.calendar-menu {
padding-right: 5px;
padding-left: 5px;
border-radius: 3px;
background-color: #00bf8f;
color: #fff;
cursor: pointer;
}
.calendar-menu:active {
background-color: #00c091;
color: #fff;
}
.calendar-menu:focus {
background-color: #00c091;
color: #fff;
}
.calendar-menu.w--open {
background-color: #e6f9f4;
color: #00bf8f;
}
.calendar-menu.calendar-menu-active {
background-color: #e6f9f4;
color: #00bf8f;
}
.setting {
display: block;
overflow: hidden;
height: auto;
margin: 5px;
padding: 5px 5px 5px 10px;
border-radius: 3px;
background-color: #f7f7f7;
}
.dropdown {
margin-top: 5px;
}
.dropdown.combo {
display: inline-block;
max-width: 120px;
margin-top: 0px;
border: 1px solid #e6f9f4;
border-radius: 3px;
background-color: #e6f9f4;
color: #00bf8f;
font-size: 18px;
}
.dropdown.combo:focus {
border-color: #00bf8f;
}
.dropdown.combo.combo-day {
max-width: 80px;
}
.dropdown-link {
padding-top: 5px;
padding-bottom: 5px;
border-bottom: 1px none #000;
border-radius: 3px;
color: #00c091;
}
.dropdown-link.calendar {
padding-right: 0px;
padding-left: 5px;
font-size: 14px;
text-align: center;
}
.dropdown-list {
background-color: #00c091;
}
.dropdown-list.w--open {
padding-right: 0px;
padding-left: 5px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
background-color: #e6f9f4;
box-shadow: 0 3px 13px -9px #000;
}
.qr-code {
border: 5px solid #fff;
text-align: center;
}
.qr-code.qr-sign {
display: block;
max-width: 160px;
margin: 10px auto;
border-style: solid;
border-radius: 2px;
}
.bitcoin {
display: block;
margin: 10px 20px;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
.amount {
display: block;
margin-top: 10px;
margin-bottom: 10px;
font-size: 40px;
}
.parameter {
margin: 20px;
}
.kind-label {
font-weight: 700;
}
.symbol {
height: 120px;
margin-top: 10px;
margin-bottom: 10px;
}
.symbol.profile-pic {
width: 60px;
height: 60px;
margin-top: 10px;
margin-bottom: 10px;
float: left;
border: 1px solid #7d849f;
border-radius: 100px;
background-color: #f2f2f5;
}
.symbol.profile-pic.profile-pic-navbar {
width: 40px;
height: 40px;
margin: 3px 0px;
float: right;
border-color: transparent;
background-color: transparent;
box-shadow: none;
}
.symbol.profile-pic.tag-delegate {
width: 50px;
height: 50px;
margin-right: 10px;
}
.symbol.profile-pic.tag-delegate.off {
opacity: 0.3;
}
.symbol.profile-pic.id-profile {
display: block;
width: 250px;
height: 250px;
margin: 10px auto;
float: none;
border-radius: 250px;
}
.symbol.profile-pic.kind-identity {
display: none;
}
.symbol.profile-pic.profile-thumb {
width: auto;
border-radius: 10px;
}
.symbol.profile-pic.profile-sign {
width: auto;
height: 60px;
margin-left: 35%;
border-style: solid;
border-color: #00bf8f;
background-color: #00bf8f;
text-decoration: none;
}
.symbol.profile-pic.profile-sign.profile-active {
border-color: #00bf8f;
background-color: #00bf8f;
}
.symbol.profile-pic.profile-sign.profile-sign-active {
background-color: #e6f9f4;
}
.symbol.profile-pic.profile-pic-edit {
width: 80px;
height: 80px;
margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
float: left;
border-radius: 100px;
}
.symbol.profile-pic.profile-edit {
position: absolute;
padding-top: 21px;
padding-bottom: 21px;
opacity: 0;
color: #fff;
font-size: 12px;
line-height: 16px;
font-weight: 300;
text-align: center;
text-transform: uppercase;
}
.symbol.profile-pic.profile-edit:hover {
background-color: rgba(255, 133, 165, .6);
opacity: 1;
}
.symbol.profile-pic.small {
width: 50px;
height: 50px;
margin-top: 0px;
margin-right: 5px;
margin-bottom: 0px;
}
.symbol.profile-pic.identity-small {
width: 36px;
height: 36px;
margin-top: 0px;
margin-bottom: 0px;
}
.symbol.profile-pic.identity-small.identity-delegate {
margin-right: -5px;
}
.symbol.profile-pic.identity-small.profile-pic-placeholder {
border-style: none;
}
.symbol.profile-pic.profile-pic-disabled {
cursor: default;
}
.symbol.profile-pic.profile-pic-disabled:hover {
border-color: #e6f9f4;
}
.symbol.profile-pic.profile-pic-disabled.profile-pic-login {
margin-top: -1px;
margin-right: -3px;
margin-bottom: -5px;
}
.symbol.profile-pic.pending {
opacity: 0.25;
}
.symbol.profile-pic.profile-inbox {
width: 24px;
height: 24px;
margin: 1px 8px 0px 0px;
}
.symbol.profile-pic.profile-inbox:hover {
border-color: #e6f9f4;
}
.symbol.profile-pic.profile-adhoc {
width: 32px;
height: 32px;
margin-top: 7px;
float: right;
}
.symbol.profile-pic.profile-pic-placeholder {
border-style: none;
background-color: #f2f2f5;
}
.semantics {
display: inline-block;
margin-top: 0px;
margin-bottom: 5px;
padding-top: 0px;
border-top: 1px none #ccc;
}
.tag {
margin: 5px;
padding: 10px 15px 10px 10px;
float: left;
border-bottom-style: none;
border-radius: 3px;
background-color: #e6f9f4;
color: #00c091;
font-size: 16px;
line-height: 22px;
cursor: -webkit-grab;
cursor: grab;
}
.tag.input {
width: 250px;
height: 44px;
margin: 5px -10px 0px 0px;
padding: 10px 50px 10px 42px;
border: 1px dotted #00bf8f;
border-radius: 3px;
background-color: #fff;
font-size: 18px;
line-height: 40px;
text-transform: none;
cursor: text;
}
.tag.input:active {
color: #00c091;
}
.tag.input.custom-tag {
width: auto;
margin-bottom: 5px;
}
.tag.unauthorized {
border-bottom-color: #f10000;
background-color: #fae6e6;
color: #ff2752;
text-transform: none;
}
.tag.off {
opacity: 0.5;
}
.tag.ui-sortable-helper {
box-shadow: 0 1px 3px -2px #000;
}
.tag.tag-placeholder {
height: 42px;
border-style: dashed;
border-width: 1px;
border-color: rgba(0, 191, 143, .32);
background-color: transparent;
}
.tag.tag-empty {
display: inline-block;
margin-right: 0px;
margin-left: 0px;
float: none;
background-color: #f5f5f5;
color: hsla(0, 0%, 100%, .7);
cursor: default;
}
.tag.tag-navbar {
display: none;
margin-top: -35px;
float: right;
box-shadow: inset 0 0 2px 0 #000;
font-size: 16px;
}
.tag.tag-empty {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-right: 10px;
float: none;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
border: 1px dashed #00bf8f;
background-color: transparent;
}
.tag.tag-no-grab {
cursor: default;
}
.hash-icon {
width: 20px;
height: 20px;
margin-top: 2px;
margin-right: 10px;
float: left;
}
.hash-icon.hash-icon-custom {
position: absolute;
margin-top: 15px;
margin-left: 10px;
}
.hash-tag {
display: inline-block;
}
.hash-tag.hash-tag-empty {
color: #aaa;
}
.selector {
position: static;
display: block;
overflow: auto;
height: 115px;
margin-right: 5px;
margin-bottom: 10px;
margin-left: 5px;
padding: 5px;
clear: both;
border-radius: 0px 0px 5px 5px;
background-color: #e6e6e6;
box-shadow: inset 0 -1px 7px -4px #000;
}
.selector.identity-list {
height: 76px;
padding: 10px;
}
.selector.selector-proposals {
height: 350px;
padding: 15px;
}
.cover {
display: none;
height: 300px;
margin: -30px -30px 20px;
padding: 30px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
background-image: url('../images/Screen-Shot-2015-11-17-at-6.03.27-PM.png');
background-position: 50% 0px;
background-size: cover;
box-shadow: inset 0 0 40px -20px #000;
}
.button {
margin: 5px;
padding: 9px 14px;
border-radius: 6px;
background-color: #580074;
font-family: Lato, sans-serif;
color: #fff;
font-size: 14px;
font-weight: 500;
text-align: center;
text-transform: uppercase;
cursor: pointer;
}
.button.execute {
display: block;
margin: 0px auto;
font-size: 24px;
line-height: 45px;
font-weight: 300;
text-align: center;
text-transform: none;
cursor: pointer;
}
.button.execute:active {
border: 1px solid #f04;
background-color: transparent;
color: #f04;
}
.button.execute.disabled {
border-color: #00bf8f;
background-color: transparent;
opacity: 1;
color: #00bf8f;
cursor: default;
}
.button.execute.button-small {
padding: 10px;
font-size: 20px;
line-height: 30px;
}
.button.execute.button-small.button-remove {
padding-top: 9px;
padding-bottom: 9px;
border-color: #ff2752;
background-color: #fae6e6;
color: #ff2752;
}
.button.execute.button-small.button-remove:active {
background-color: #ff2752;
color: #fae6e6;
}
.button.execute.executed {
background-color: transparent;
color: #00bf8f;
cursor: default;
}
.button.execute.confirm {
width: 50%;
float: left;
}
.button.execute.reject {
border-color: #ff2752;
background-color: #ff2752;
}
.button.execute.reject:active {
border-color: #ff2752;
background-color: transparent;
color: #ff2752;
}
.button.login-button {
width: 100%;
margin-right: 0px;
margin-left: 0px;
border: 1px solid #580074;
font-size: 14px;
}
.button.login-button:hover {
border-style: solid;
border-color: #ff0085;
background-color: #ff0085;
color: #fff;
}
.button.login-button:active {
border: 1px solid #580074;
background-color: transparent;
color: #580074;
}
.button.login-button.button-secondary {
padding-top: 9px;
padding-bottom: 9px;
border: 1px solid #84849e;
background-color: transparent;
color: #5a0075;
}
.button.login-button.button-secondary:hover {
padding-top: 10px;
padding-bottom: 10px;
border-style: none;
border-color: #ff0085;
background-color: #ff0085;
color: #fff;
}
.button.login-button.button-half {
width: 100%;
margin-right: 0px;
margin-left: 0px;
float: left;
}
.button.login-button.button-half.button-remove {
border-color: #ff2752;
background-color: #ff2752;
}
.button.login-button.button-half.button-remove:active {
background-color: transparent;
color: #ff2752;
}
.button.login-button.button-half.mobile-button {
line-height: 18px;
}
.button.login-button.button-half.mobile-button.mobile-button-disabled {
border-color: #bbb;
background-color: transparent;
color: #bbb;
}
.button.login-button.button-half.button-disabled {
border-color: #aaa;
background-color: transparent;
color: #aaa;
}
.button.login-button.facebook {
margin-bottom: 5px;
background-color: #3c5b96;
text-align: center;
}
.button.login-button.facebook:active {
border-color: #3c5b96;
background-color: transparent;
color: #f5f5f5;
}
.button.login-button.facebook.half {
width: 50%;
margin-right: 0px;
margin-left: 0px;
float: left;
}
.button.login-button.blockstack {
border-color: #270e34;
background-color: #270e34;
}
.button.login-button.blockstack:active {
background-color: transparent;
color: #fff;
}
.button.facebook {
border-color: #3c5b96;
background-color: #3c5b96;
}
.button.facebook.button-social {
width: 50%;
}
.button.twitter {
border-color: #2ba3ef;
background-color: #2ba3ef;
}
.button.button-social {
width: 125px;
margin-right: 5px;
margin-left: 5px;
float: left;
font-size: 16px;
}
.button.button-social.twitter:active {
background-color: transparent;
}
.button.button-social.facebook {
width: 125px;
}
.button.button-social.facebook:active {
background-color: transparent;
}
.button.button-upload {
display: inline-block;
margin-top: 10px;
margin-bottom: 10px;
padding: 5px 10px;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
border-style: solid;
border-width: 1px;
border-color: rgba(88, 16, 115, .18);
background-color: transparent;
color: #581073;
font-size: 14px;
text-transform: none;
}
.button.button-upload:hover {
border-color: #ff0085;
}
.button.button-upload:active {
background-color: rgba(255, 0, 133, .07);
}
.button.button-cta {
width: 40%;
height: 40px;
margin: 0px;
padding-top: 8px;
padding-bottom: 10px;
float: left;
clear: none;
border-radius: 0px 5px 5px 0px;
font-size: 14px;
text-align: center;
}
.button.button-cta:hover {
border-color: #fe6580;
background-color: #ff0085;
}
.button.button-menu {
margin-right: -5px;
margin-left: -5px;
background-color: #dedcdc;
color: #4b4b4b;
text-align: left;
text-transform: none;
}
.button.button-menu:hover {
background-color: rgba(93, 0, 119, .07);
color: #561072;
}
.button-label {
float: left;
}
.button-icon {
width: 24px;
height: 24px;
margin: 2px -17px -10px -7px;
float: left;
}
.button-icon.execute-icon {
width: 32px;
height: 32px;
margin-right: 0px;
float: right;
}
.button-icon.execute-icon.execute-icon-hover {
margin-left: -32px;
}
.button-icon.execute-icon.only-icon {
position: relative;
display: inline-block;
float: none;
}
.button-icon.execute-icon.execute-icon-menu {
margin-top: -2px;
margin-right: -10px;
margin-left: 0px;
}
.extra {
display: block;
margin-right: -5px;
margin-left: -5px;
}
.extra.identity-list {
margin-top: 10px;
clear: both;
}
.extra.extra-ten {
margin: -5px -10px;
}
.extra.extra-score {
text-align: left;
}
.location {
margin: 10px;
}
.map {
display: block;
width: 300px;
height: 300px;
margin: 10px auto;
border-radius: 5px;
}
.signature {
margin-bottom: 10px;
}
.handwrite {
height: 150px;
margin-right: -20px;
margin-left: -20px;
padding: 10px;
border-bottom: 2px solid #00c091;
background-color: #f5f5f5;
font-family: Inconsolata, monospace;
color: #c3c3c3;
font-size: 12px;
text-align: center;
}
.highlight {
position: static;
left: 0px;
display: inline-block;
margin-top: 20px;
margin-right: 10px;
margin-left: -40px;
padding-right: 10px;
padding-left: 10px;
float: left;
border-radius: 5px;
background-color: #ffe079;
box-shadow: 0 2px 10px -6px #000;
font-family: Lato, sans-serif;
color: #000;
font-size: 16px;
line-height: 36px;
font-weight: 300;
}
.arrow {
width: 0px;
height: 0px;
margin-top: 12px;
margin-left: 10px;
float: right;
border-style: solid;
border-width: 7px 0px 7px 14px;
border-color: transparent #000 transparent #af8d1e;
}
.highlight-label {
float: left;
color: #af8d1e;
font-size: 14px;
}
.vote {
display: block;
width: 100%;
margin: 1px 0px;
padding: 5px 5px 5px 10px;
float: left;
border: 1px solid #ececec;
border-radius: 50px;
color: #6c5b7c;
text-align: left;
}
.vote.vote-authorize {
display: block;
background-color: #fff;
}
.vote.vote-authorize.vote-mini {
width: 100%;
margin-top: 5px;
margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
border-style: none;
border-radius: 25px;
background-color: rgba(230, 249, 244, .15);
color: #fff;
}
.vote.vote-edit {
padding: 10px;
border: 1px dotted #00bf8f;
border-radius: 3px;
}
.vote.vote-edit.vote-custom {
border: 1px solid #fff;
border-radius: 3px;
}
.vote.vote-edit.vote-custom:hover {
background-color: hsla(0, 0%, 95%, .5);
}
.vote.vote-edit.vote-custom.unauthorized {
border-color: #ff2752;
}
.vote.vote-edit.vote-custom.vote-rejected {
border-color: #ff2752;
}
.vote.vote-alternative {
background-color: #fff;
box-shadow: inset 0 0 1px 0 #d3d3d3;
cursor: -webkit-grab;
cursor: grab;
}
.vote.vote-alternative:hover {
background-color: #f9f9f9;
}
.vote.vote-alternative.unauthorized {
background-color: #fae6e6;
}
.vote.vote-alternative.unauthorized.vote-result {
background-color: transparent;
}
.vote.vote-alternative.vote-authorize:hover {
background-color: #e6f9f4;
}
.vote.vote-alternative.vote-search {
width: 100%;
margin: 0px 0px 1px;
padding-top: 0px;
padding-bottom: 0px;
border-style: none;
border-color: #f8f8f8;
border-radius: 0px;
background-color: #f5f5f5;
box-shadow: inset 0 0 1px 0 #dfdfdf;
cursor: default;
}
.vote.vote-alternative.ui-sortable-helper {
margin-top: 5px;
margin-bottom: 5px;
border-style: none;
border-radius: 3px;
background-color: #f9f9f9;
box-shadow: inset 0 0 1px 0 #dfdfdf, 0 2px 14px -7px #000;
}
.vote.vote-alternative.vote-nondrag {
cursor: default;
}
.vote.vote-alternative.vote-nondrag:hover {
background-color: #fff;
}
.vote.vote-alternative.vote-result {
padding: 0px;
box-shadow: none;
cursor: default;
}
.vote.vote-alternative.vote-result:hover {
background-color: transparent;
}
.vote.vote-alternative.vote-mini {
margin-top: 5px;
margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
border-style: none;
border-radius: 5px;
background-color: hsla(0, 0%, 100%, .15);
box-shadow: none;
color: #00bf8f;
cursor: default;
}
.vote.vote-custom {
width: 100%;
clear: both;
background-color: #e6e6e6;
box-shadow: inset 0 0 4px -2px #000;
}
.vote.vote-search {
display: inline-block;
overflow: hidden;
width: 100%;
padding: 15px;
border: 5px solid #f5f5f5;
border-radius: 8px;
background-color: #fff;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(64%, #fff), to(#ececec));
background-image: linear-gradient(180deg, #fff 64%, #ececec);
box-shadow: inset 0 0 1px 0 #dfdfdf, 0 5px 20px -10px #838383;
}
.vote.vote-search.vote-feed {
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
border-style: solid;
border-width: 1px;
border-color: rgba(0, 0, 0, .02);
border-radius: 8px;
background-image: none;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
color: #7d849f;
cursor: pointer;
}
.vote.vote-search.vote-feed:hover {
margin-top: -4px;
margin-bottom: 25px;
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
color: #0d0d17;
}
.vote.vote-search.vote-feed.vote-empty {
border-style: none;
border-width: 1px;
border-color: hsla(0, 0%, 90%, .72);
background-color: transparent;
box-shadow: none;
}
.vote.vote-search.vote-feed.vote-delegation {
overflow: hidden;
margin-right: 10px;
margin-bottom: 2px;
padding: 5px 10px;
float: left;
clear: both;
border-style: none none solid;
border-bottom-width: 1px;
border-bottom-color: rgba(0, 0, 0, .1);
border-radius: 5px;
background-color: #f3f3f3;
background-image: none;
box-shadow: none;
-webkit-transition-property: none;
transition-property: none;
cursor: pointer;
}
.vote.vote-search.vote-feed.vote-delegation:hover {
margin-top: 1px;
background-image: none;
}
.vote.vote-search.vote-feed.vote-delegation-card {
width: auto;
margin-bottom: 0px;
padding-right: 5px;
padding-left: 0px;
border-radius: 0px;
background-color: transparent;
}
.vote.vote-search.vote-feed.vote-editor {
margin-bottom: 20px;
-webkit-transition-property: none;
transition-property: none;
cursor: default;
}
.vote.vote-search.vote-feed.vote-editor:hover {
margin-top: 1px;
margin-bottom: 20px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}
.vote.vote-search.vote-feed.vote-editor-compressed {
margin-bottom: 20px;
}
.vote.vote-search.vote-feed.vote-editor-compressed:hover {
margin-bottom: 25px;
}
.vote.vote-placeholder {
width: 50%;
height: 70px;
margin-top: 5px;
margin-bottom: 5px;
background-color: #e6e6e6;
box-shadow: inset 0 0 7px -3px #000;
}
.option {
display: block;
width: 26px;
height: 26px;
margin-top: 1px;
margin-right: 0px;
margin-left: 10px;
float: right;
border: 1px solid #6e5b7e;
border-radius: 100px;
background-color: #fff;
box-shadow: 0 1px 9px -5px #000;
cursor: pointer;
}
.option.unauthorized {
border-color: #6e5b7e;
}
.option.disabled {
border-color: #aaa;
cursor: default;
}
.option.kind-decision {
display: inline-block;
margin-right: auto;
margin-left: auto;
}
.option.option-mini {
margin-top: 5px;
margin-right: -1px;
margin-bottom: 2px;
background-color: #fff;
cursor: default;
}
.option-title {
display: inline-block;
max-width: 100%;
margin-top: 0px;
font-size: 12px;
line-height: 20px;
text-align: left;
letter-spacing: 0px;
text-transform: none;
}
.option-title.input {
width: 80%;
height: 60px;
margin-bottom: 0px;
padding: 0px;
float: left;
border-style: none;
color: #00bf8f;
text-align: left;
}
.option-title.input.option-input {
background-color: #fff;
font-size: 32px;
line-height: 40px;
}
.option-title.option-link {
display: inline-block;
float: left;
text-align: left;
}
.option-title.option-link.option-edit {
color: #000;
}
.option-title.option-link.option-edit.unauthorized {
color: #ff2752;
}
.option-title.option-link.option-edit.unauthorized:hover {
border-bottom-color: #ff2752;
}
.option-title.option-link.option-edit.option-title-long {
margin-top: 0px;
font-size: 20px;
line-height: 25px;
}
.option-title.option-link.unauthorized {
color: #ff2752;
}
.option-title.option-link.unauthorized.option-result {
color: #8c001c;
}
.option-title.option-link.option-long {
margin-top: 0px;
padding-right: 120px;
font-size: 16px;
line-height: 24px;
}
.option-title.option-link.option-long.option-longest {
padding-right: 0px;
}
.option-title.option-link.option-search {
display: inline-block;
max-width: 100%;
border-bottom-style: none;
line-height: 30px;
}
.option-title.option-link.option-search.option-nolink {
cursor: default;
}
.option-title.option-link.option-search.option-nolink:hover {
text-decoration: none;
}
.option-title.option-link.option-search.option-editor {
min-height: 80px;
cursor: text;
}
.option-title.option-link.option-result {
border-bottom-style: none;
}
.option-title.option-link.option-result:hover {
text-decoration: none;
}
.option-title.option-title-mini {
padding-top: 8px;
}
.option-title.option-result {
color: #028061;
}
.checkbox {
display: block;
margin-top: -1px;
margin-bottom: 1px;
}
.checkbox.checkbox-custom {
display: inline-block;
width: 100%;
margin-bottom: 5px;
border-radius: 3px;
box-shadow: none;
}
.checkbox.checkbox-result {
margin: -5px -5px -5px -10px;
padding: 5px 5px 5px 10px;
border-radius: 50px;
background-image: -webkit-gradient(linear, left top, right top, color-stop(48%, #b7f3e1), color-stop(0, transparent));
background-image: linear-gradient(90deg, #b7f3e1 48%, transparent 0);
}
.checkbox.checkbox-result.unauthorized {
background-image: -webkit-gradient(linear, left top, right top, color-stop(48%, #fdc5c5), color-stop(0, transparent));
background-image: linear-gradient(90deg, #fdc5c5 48%, transparent 0);
}
.date {
display: inline-block;
text-align: center;
}
.tick {
display: inline-block;
width: 16px;
height: 16px;
margin: 4px;
border-radius: 100px;
background-color: #fff;
}
.tick.unathorized {
background-color: #6e5b7e;
}
.tick.unathorized:hover {
background-color: #ff2752;
}
.tick.unauthorized {
background-color: #ff2752;
}
.tick.tick-mini {
background-color: transparent;
}
.tick.tick-active {
background-color: #6c5b7c;
}
.tick.tick-disabled {
background-color: #dfdfdf;
}
.tick-image {
display: block;
width: 28px;
height: 28px;
border-radius: 100px;
}
.tick-image.hover {
background-color: #fff;
cursor: pointer;
}
.tick-image.hover:hover {
background-color: #fff;
}
.tick-image.tick-disabled {
background-color: #dfdfdf;
}
.tick-image.tick-active {
background-color: #6c5b7c;
}
.tick-image.tick-active:hover {
background-color: #6c5b7c;
}
.tick-image.tick-active-unauthorized {
background-color: #6e5b7e;
}
.tick-image.tick-active-unauthorized:hover {
background-color: #6e5b7e;
}
.tick-image.tick-image-mini {
width: 26px;
height: 26px;
opacity: 1;
}
.execution {
display: block;
margin: 10px 0px;
}
.block {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
box-shadow: none;
text-align: left;
}
.block.block-list {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding: 0px;
border-top: 0px solid #e6f9f4;
background-color: transparent;
}
.block.block-menu {
margin-right: -15px;
margin-left: -15px;
}
.field {
display: inline-block;
width: 50%;
margin-top: 0px;
margin-bottom: 20px;
border-style: none;
border-width: 0px 5px;
border-color: #fff;
}
.field.headline-field {
width: 100%;
max-width: 100%;
margin-bottom: 0px;
}
.field.headline-field.split {
padding-right: 110px;
}
.field.split {
border-right: 0px solid #fff;
border-left: 20px solid #fff;
}
.field.bio {
width: 100%;
border-left: 20px solid #fff;
}
.search-custom {
position: relative;
left: 0px;
right: 0px;
z-index: 2000;
display: block;
margin-top: 10px;
margin-right: 5px;
margin-left: 5px;
padding: 10px;
border-bottom: 1px none #dadada;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: #fff;
box-shadow: inset 0 1px 10px -5px #000, 0 2px 4px -4px #000;
color: #aaa;
font-size: 16px;
line-height: 30px;
cursor: text;
}
.search-custom:focus {
color: #000;
}
.search-custom.search-active {
background-color: #fff;
box-shadow: inset 0 1px 10px -5px #000, 0 2px 4px -4px #000;
opacity: 1;
color: #000;
}
.editor {
margin-bottom: 0px;
}
.status {
display: block;
height: 65px;
max-width: 1000px;
margin: -3px auto 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
.progress {
height: 25px;
margin-top: 15px;
margin-bottom: -15px;
border-radius: 3px;
background-color: rgba(0, 0, 0, .25);
}
.milestone {
display: inline-block;
width: 35px;
height: 35px;
padding-top: 1px;
float: none;
border: 2px solid #00bf8f;
border-radius: 100px;
background-color: #00bf8f;
font-family: Inconsolata, monospace;
color: #fff;
font-weight: 400;
text-align: center;
}
.milestone.disabled {
border-color: silver;
background-color: silver;
}
.milestone.current {
background-color: rgba(0, 191, 143, .1);
color: #00bf8f;
}
.milestone.milestone-tick-white {
margin-top: 10px;
margin-left: 5px;
border: 1px none #fff;
background-color: transparent;
color: #fff;
font-size: 23px;
}
.progress-bar {
display: inline-block;
width: 20%;
height: 5px;
border-top: 2px dotted silver;
}
.progress-bar.completed {
border-top: 2px solid #00bf8f;
}
.milestone-text {
position: absolute;
width: 70px;
margin-top: 2px;
margin-left: -20px;
font-family: Lato, sans-serif;
color: #000;
font-size: 10px;
font-weight: 300;
}
.input {
height: 50px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 5px;
border-style: none none solid;
border-bottom-width: 2px;
border-bottom-color: rgba(0, 191, 143, .1);
background-color: #e6f9f4;
font-family: Lato, sans-serif;
font-size: 20px;
line-height: 45px;
}
.input:focus {
border-bottom-color: #00bf8f;
}
.input.headline-input {
height: auto;
min-height: 65px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
font-size: 45px;
line-height: 60px;
font-weight: 400;
}
.input.headline-input.input-active {
display: inline-block;
margin-bottom: 0px;
margin-left: -30px;
border-left: 5px solid #fff;
font-weight: 300;
letter-spacing: -1px;
cursor: text;
}
.input.headline-input.input-active:hover {
border-left-color: #e6f9f4;
}
.input.headline-input.input-active:focus {
border-left-color: #00bf8f;
}
.input.input-active {
border-bottom: 1px none #00bf8f;
background-color: #fff;
cursor: pointer;
}
.input.monetary {
width: 80px;
height: 38px;
margin-right: -5px;
padding-right: 15px;
float: left;
border: 1px solid #00bf8f;
border-radius: 5px;
color: #00bf8f;
font-size: 14px;
line-height: 16px;
font-weight: 400;
text-align: right;
}
.action {
display: inline-block;
width: 44px;
height: 44px;
margin: -10px -15px -10px 10px;
padding: 10px 10px 0px;
float: right;
border-style: none none none solid;
border-width: 1px;
border-left-color: rgba(0, 191, 143, .1);
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
background-color: #e6f9f4;
color: #00bf8f;
text-align: center;
cursor: pointer;
}
.action:hover {
background-color: #00bf8f;
color: #fff;
}
.action.undefined {
background-color: #fae6e6;
color: #ff2752;
}
.action.undefined:hover {
background-color: #ff2752;
color: #fff;
}
.action.hash-action {
margin-top: 5px;
margin-left: 0px;
padding-top: 8px;
float: left;
border-top: 1px dotted #00bf8f;
border-right: 1px dotted #00bf8f;
border-bottom: 1px dotted #00bf8f;
}
.action.vote-action {
width: 40px;
height: 40px;
margin: -25px -25px 0px 0px;
padding-top: 0px;
border-radius: 100px;
font-size: 18px;
line-height: 38px;
}
.action.vote-action:hover {
background-color: #00bf8f;
}
.action.vote-action.undefined:hover {
background-color: #ff2752;
}
.action.action-search {
position: relative;
width: 50px;
height: 50px;
margin-top: 3px;
margin-right: -1px;
margin-left: 0px;
padding-top: 2px;
border-style: solid;
border-color: #00bf8f;
border-radius: 50px;
background-color: transparent;
box-shadow: 1px 1px 9px -5px #000;
font-size: 50px;
line-height: 40px;
font-weight: 200;
}
.action.action-search:hover {
background-color: #00bf8f;
}
.action.action-search.action-search-disabled {
border-color: #ccc;
color: #ccc;
}
.action.action-search.action-search-disabled:hover {
background-color: #fff;
}
.hash-link {
border-bottom: 0px none #000;
}
.hash-link:hover {
margin-bottom: -1px;
border-bottom: 1px solid #00bf8f;
}
.hash-link.undefined {
border-bottom-color: #ff2752;
color: #ff2752;
}
.hash-link.twitter-link:hover {
border-bottom-color: #fff;
}
.hash-link.facebook-link:hover {
border-bottom-color: #fff;
}
.hash-link.bitcoin-fund {
float: none;
}
.warning {
display: inline;
overflow: hidden;
width: 100%;
margin: 0px 5px 5px 0px;
padding: 10px;
border-radius: 5px;
background-color: #e2e2e6;
color: #7d8499;
font-size: 14px;
line-height: 30px;
}
.warning.score-label {
margin-bottom: 0px;
background-color: #00bf8f;
color: #fff;
}
.warning.awaiting {
width: 100%;
margin-right: 0px;
margin-left: 0px;
background-color: #fae6e6;
color: #ff2752;
text-align: center;
}
.warning.authorized {
width: 100%;
margin-top: 10px;
margin-right: 0px;
margin-left: 0px;
background-color: #e6f9f4;
color: #00bf8f;
text-align: center;
}
.warning.annotation {
background-color: #e6f9f4;
color: #000;
}
.warning.forbidden {
background-color: #ff2752;
color: #fff;
}
.warning.download {
border-radius: 25px;
background-color: #f5f5f5;
color: #b9b9b9;
}
.navbar {
position: absolute;
left: 320px;
top: 0px;
right: 0px;
z-index: 14000;
height: 60px;
padding-right: 10px;
padding-left: 0px;
float: left;
border-bottom: 1px solid #ddd;
background-color: #fff;
color: #442f58;
}
.navlink {
border-bottom: 0px none #000;
font-family: Lato, sans-serif;
color: #fff;
font-size: 17px;
line-height: 19px;
font-weight: 300;
text-align: right;
}
.navcontainer {
display: inline;
}
.logo-pic {
height: 45px;
max-width: 45px;
margin-right: 10px;
float: left;
}
.logo {
display: inline-block;
width: 50px;
height: 60px;
padding-top: 7px;
padding-bottom: 7px;
border-bottom: 0px none #000;
text-align: center;
cursor: pointer;
}
.logo.logo-path {
display: inline;
width: auto;
height: 35px;
min-width: 35px;
padding-top: 0px;
padding-bottom: 0px;
}
.main {
position: relative;
display: inline-block;
height: 60px;
min-width: 400px;
margin-right: 10px;
margin-left: -40px;
padding-top: 10px;
padding-bottom: 10px;
float: right;
font-family: Lato, sans-serif;
}
.settings {
overflow: hidden;
clear: both;
}
.value {
float: right;
text-transform: none;
}
.value.value-avatar {
margin-top: 0px;
margin-bottom: 0px;
}
.control {
margin-right: 5px;
float: left;
font-size: 16px;
}
.toggle {
width: 80px;
height: 40px;
float: right;
border-radius: 100px;
background-color: #ccc;
cursor: pointer;
}
.toggle.toggle-activated {
background-color: #00bf8f;
}
.toggle-button {
width: 36px;
height: 36px;
margin: 2px;
border-radius: 100px;
background-color: #fff;
}
.toggle-button.toggle-activated {
width: 36px;
height: 36px;
margin: 2px;
float: right;
border-style: none;
border-color: #00bf8f;
}
.identity {
display: inline-block;
margin: 0px 20px 0px 5px;
padding-left: 0px;
float: left;
border-radius: 5px;
text-align: left;
}
.identity.facebook {
background-color: #256bd5;
}
.identity.twitter {
background-color: #08bdff;
}
.identity.twitter.identity-logged {
padding-right: 0px;
padding-left: 0px;
}
.identity.identity-navbar {
margin: 5px;
float: right;
}
.identity.identity-sign {
border-radius: 0px;
}
.identity.identity-center {
display: inline-block;
margin-right: auto;
margin-left: auto;
float: none;
}
.identity.identity-awaiting {
opacity: 0.25;
}
.identity.float-right {
float: right;
}
.identity.identity-transaction {
display: inline-block;
overflow: hidden;
height: 40px;
margin-top: -3px;
margin-right: 0px;
margin-left: 0px;
}
.identity.identity-transaction.float-right {
margin-right: 0px;
float: left;
}
.identity-label {
display: inline-block;
color: #5a0075;
font-size: 16px;
line-height: 22px;
text-decoration: none;
cursor: pointer;
}
.identity-label:hover {
line-height: 24px;
}
.identity-label.twitter-link {
color: #fff;
}
.identity-label.facebook-link {
color: #fff;
cursor: pointer;
}
.identity-label.facebook-link:hover {
border-bottom: 1px none #fff;
}
.identity-label.hash-link {
cursor: pointer;
}
.identity-label.identity-label-navbar {
margin-top: 4px;
font-size: 16px;
line-height: 24px;
}
.identity-label.identity-label-sign {
margin-top: 10px;
font-style: italic;
}
.identity-label.identity-label-small {
margin-top: 8px;
font-size: 16px;
line-height: 20px;
}
.identity-label.identity-label-micro {
font-size: 12px;
line-height: 12px;
}
.identity-label.identity-label-micro.identity-label-post {
display: inline;
overflow: hidden;
}
.option-link:hover {
border-bottom-style: none;
}
.profile {
display: none;
width: 270px;
margin-left: 10px;
float: left;
}
.portrait-pic {
width: 200px;
height: 200px;
max-width: 200px;
margin-bottom: 10px;
padding-top: 20px;
float: left;
border-bottom: 1px none #000;
border-radius: 5px;
background-color: #e6f9f4;
text-align: center;
}
.credentials {
margin-top: 15px;
}
.user {
max-width: 740px;
padding-right: 0px;
float: left;
}
.portrait-icon {
width: 150px;
}
.verifier {
margin-top: 5px;
padding-left: 0px;
clear: both;
color: #7d849f;
font-size: 12px;
line-height: 20px;
}
.verifier.verifier-live {
display: inline-block;
}
.verifier.verifier-live.verifier-feed {
text-decoration: none;
cursor: pointer;
}
.verifier.verifier-live.verifier-feed:hover {
border-style: none;
text-decoration: underline;
}
.verifier.verifier-live.verifier-feed.no-link {
cursor: default;
}
.verifier.verifier-live.verifier-feed.no-link:hover {
text-decoration: none;
}
.verifier.verifier-live.verifier-feed.verifier-mini {
display: block;
margin-left: 5px;
float: right;
font-size: 10px;
}
.available {
margin-right: 2px;
margin-left: 2px;
padding-right: 5px;
padding-left: 5px;
border-radius: 3px;
background-color: #00bf8f;
color: #fff;
font-weight: 300;
}
.portrait {
width: 200px;
margin-bottom: 20px;
float: left;
text-align: center;
}
.mask {
display: none;
}
.score-bar {
display: inline-block;
width: 100%;
margin-bottom: 5px;
float: left;
}
.score-bar.score-bar-default {
width: 250px;
margin-bottom: 0px;
}
.score-bar.score-bar-default.hide {
display: none;
}
.score-block {
width: 9%;
height: 10px;
margin-right: 1%;
float: left;
border: 1px solid rgba(0, 191, 143, .1);
background-color: rgba(0, 191, 143, .1);
}
.score-block.score-complete {
border-color: #00bf8f;
background-color: #00bf8f;
}
.score {
margin-top: 20px;
margin-bottom: 20px;
text-align: left;
}
.score.score-block {
margin-top: 0px;
margin-bottom: 0px;
}
.score.score-vote {
display: inline-block;
margin-top: 5px;
margin-bottom: 0px;
float: left;
}
.score-board {
width: 60px;
height: 60px;
float: right;
border: 1px solid #00bf8f;
border-radius: 5px;
color: #00bf8f;
font-size: 22px;
text-align: center;
}
.capital {
display: block;
width: 100%;
margin-bottom: -5px;
clear: both;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
background-color: hsla(0, 0%, 100%, .5);
}
.capital-field {
padding: 5px 10px;
font-size: 16px;
line-height: 22px;
}
.capital-value {
display: block;
float: right;
color: #fff;
}
.capital-label {
float: left;
}
.capital-scores {
padding-top: 5px;
padding-bottom: 5px;
}
.identity-list {
margin-top: -5px;
margin-left: -10px;
padding: 0px 5px 10px;
}
.identity-list.identity-list-delegates {
margin: 0px -30px 0px 0px;
padding-bottom: 0px;
float: right;
}
.identity-list.identity-feed-item {
padding: 0px;
}
.budget {
margin-top: 10px;
margin-bottom: 10px;
}
.vote-capital-label {
font-size: 10px;
font-weight: 300;
}
.search {
width: 100%;
height: 40px;
padding: 5px;
border-radius: 50px;
background-color: rgba(136, 114, 156, .65);
box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, .5);
color: #fff;
font-size: 16px;
line-height: 30px;
font-weight: 300;
}
.search.search-blur {
color: hsla(0, 0%, 100%, .5);
cursor: text;
}
.search.search-blur.hide {
display: none;
}
.rich-text {
margin-bottom: 0px;
margin-left: -30px;
padding-bottom: 0px;
padding-left: 25px;
clear: both;
}
.rich-text:hover {
border-left: 5px solid #e6f9f4;
}
.rich-text:focus {
border-left-color: #00bf8f;
}
.rich-text.editor-draft {
border-left: 5px solid #fff;
}
.rich-text.editor-draft:hover {
border-left-style: solid;
border-left-color: #e6f9f4;
}
.rich-text.editor-draft:focus {
border-left-style: solid;
border-left-color: #00bf8f;
}
.rich-text.rich-text-preview {
margin-top: 0px;
margin-bottom: 10px;
margin-left: 0px;
padding-left: 0px;
font-size: 16px;
line-height: 26px;
}
.rich-text.rich-text-preview:hover {
border-left-style: none;
}
.rich-text.highlight-feature {
display: inline-block;
margin-top: 5px;
margin-bottom: 15px;
margin-left: -15px;
padding-top: 10px;
padding-right: 5px;
padding-left: 5px;
background-color: rgba(255, 224, 121, .6);
background-image: linear-gradient(45deg, #ffe079, hsla(44, 82%, 94%, 0) 45%);
-webkit-transform: skew(-3deg, 0deg);
-ms-transform: skew(-3deg, 0deg);
transform: skew(-3deg, 0deg);
font-style: italic;
}
.rich-text.highlight-feature:hover {
border-left-style: none;
border-left-width: 0px;
}
.rich-text.highlight-feature.highlight-missing {
display: block;
float: none;
border-radius: 3px;
background-color: #eee;
background-image: none;
box-shadow: inset 0 0 5px -1px rgba(0, 0, 0, .5);
-webkit-transform: none;
-ms-transform: none;
transform: none;
color: #000;
font-style: normal;
}
.tag-bitcoin {
display: none;
margin: -4px -5px -5px 10px;
padding: 5px 10px;
float: left;
border-radius: 3px;
background-color: #00bf8f;
color: #f5f5f5;
font-size: 16px;
}
.tag-bitcoin.unauthorized {
background-color: #ff2752;
text-transform: none;
}
.result {
height: 32px;
margin-top: 10px;
border: 1px solid #2dbd90;
border-radius: 5px;
background-color: hsla(0, 0%, 100%, .5);
box-shadow: none;
}
.result.score-bar {
max-width: 250px;
min-width: 250px;
margin-top: 0px;
margin-bottom: 0px;
}
.result.vote-bar {
width: 100%;
height: 20px;
margin-top: 20px;
margin-bottom: 10px;
border-style: none;
border-radius: 25px;
background-color: #d1d1d1;
box-shadow: inset 0 3px 7px -3px rgba(0, 0, 0, .5);
}
.result.vote-bar.token-bar {
display: inline-block;
height: 10px;
margin-top: 5px;
clear: both;
}
.result.result-unauthorized {
border-color: #ff2752;
}
.result-bar {
width: 0%;
height: 30px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
background-color: rgba(0, 191, 143, .6);
line-height: 30px;
}
.result-bar.unauthorized {
background-color: rgba(255, 39, 82, .6);
}
.result-bar.result-hundred {
border-radius: 4px;
}
.result-bar.vote-bar {
width: 0%;
height: 100%;
border-top-left-radius: 25px;
border-bottom-left-radius: 25px;
background-color: #00bf8f;
box-shadow: inset 0 1px 11px -5px hsla(0, 0%, 100%, .5);
}
.result-bar.vote-bar.vote-bar-allocated {
position: absolute;
right: 0px;
display: none;
width: 0%;
height: 20px;
margin-top: -20px;
float: right;
border-radius: 0px 25px 25px 0px;
background-color: #ccc;
background-image: url('../images/pattern-pinstripes-diagonal-green.png');
background-position: 100% 0px;
background-size: 50px;
background-repeat: repeat-x;
}
.result-bar.vote-bar.vote-bar-allocated.vote-bar-allocated-placed {
width: 50%;
height: 1px;
margin-top: 0px;
float: left;
border-radius: 3px 0px 0px 3px;
background-color: transparent;
background-image: none;
box-shadow: none;
}
.result-bar.vote-bar.vote-bar-allocated.unanimous {
border-top-left-radius: 25px;
border-bottom-left-radius: 25px;
}
.result-bar.vote-bar.vote-bar-allocated.vote-bar-fixed {
background-color: #e6f9f4;
background-image: none;
background-size: auto;
background-repeat: repeat;
}
.result-bar.vote-bar.vote-bar-fixed {
background-color: #e6f9f4;
}
.result-bar.result-unanimous {
width: 100%;
border-radius: 3px;
background-color: #78d8bc;
}
.result-total {
position: relative;
display: block;
margin-top: 5px;
margin-right: 5px;
float: right;
font-size: 10px;
line-height: 21px;
text-transform: uppercase;
}
.result-total.result-right {
margin-right: 10px;
float: right;
font-weight: 400;
}
.result-percentage {
margin-right: 10px;
font-weight: 700;
}
.result-score {
position: static;
display: block;
width: 100%;
margin-top: 10px;
}
.result-score.result-percentage {
position: relative;
display: block;
float: right;
}
.result-score.result-right {
position: static;
display: inline-block;
float: right;
}
.election {
display: inline-block;
margin-right: 20px;
margin-left: 20px;
float: none;
}
.fact {
display: inline-block;
height: 60px;
margin-top: 5px;
margin-bottom: 0px;
padding: 5px 10px;
float: left;
border-radius: 5px;
background-color: rgba(0, 191, 143, .1);
box-shadow: none;
color: #00bf8f;
text-align: center;
}
.fact.fact-timer {
margin-top: 5px;
padding-right: 6px;
padding-left: 6px;
font-size: 28px;
font-weight: 300;
}
.fact.fact-timer.vote-value {
position: absolute;
height: 60px;
margin-top: -35px;
margin-left: -105px;
float: right;
}
.fact.fact-identity {
margin-right: -15px;
margin-left: -5px;
padding: 0px;
float: left;
background-color: transparent;
}
.fact.fact-delegation {
margin-bottom: -5px;
padding-left: 20px;
background-color: transparent;
}
.stat-label {
display: block;
margin-top: 8px;
font-size: 9px;
line-height: 12px;
font-weight: 400;
text-transform: uppercase;
}
.election-label {
display: block;
margin-bottom: 5px;
float: none;
color: #000;
font-size: 12px;
line-height: 20px;
font-weight: 300;
text-align: left;
text-transform: uppercase;
}
.identity-nation {
display: block;
margin-top: 0px;
padding-top: 0px;
clear: both;
font-size: 12px;
line-height: 16px;
}
.identity-nation.identity-label-small {
font-size: 12px;
}
.identity-nation.collective-stat {
display: inline-block;
margin-top: 15px;
margin-right: 15px;
margin-bottom: 0px;
}
.identity-peer {
margin-top: 6px;
margin-left: 10px;
float: left;
}
.identity-peer.identity-small {
margin-top: 0px;
}
.identity-peer.pending {
opacity: 0.25;
}
.identity-peer.identity-peer-flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
overflow: hidden;
height: 12px;
margin-top: 16px;
margin-left: 30px;
float: none;
}
.identity-peer.identity-post {
margin-left: 0px;
}
.fact-votes {
margin-right: 10px;
margin-left: 10px;
float: left;
}
.fact-tags {
display: block;
}
.stat-data {
margin-top: 3px;
margin-bottom: -3px;
font-size: 28px;
}
.stat-taglist {
margin-top: -2px;
padding-left: 0px;
}
.delegation {
float: right;
}
.delegation-icon {
width: 40px;
height: 40px;
}
.navmenu {
margin-top: 5px;
margin-bottom: 5px;
}
.stat {
margin-right: 15px;
margin-left: 15px;
float: left;
}
.stat.stat-votes {
display: block;
margin-right: auto;
margin-left: auto;
float: none;
}
.score-details {
clear: both;
}
.score-icon {
width: 20px;
height: 20px;
margin-top: 5px;
margin-right: 5px;
float: left;
}
.score-agreement {
display: inline-block;
margin-top: 5px;
float: left;
clear: both;
font-size: 14px;
line-height: 20px;
}
.score-agreement:hover {
text-decoration: underline;
}
.identity-verified {
position: absolute;
display: inline-block;
width: 16px;
height: 16px;
margin-left: -15px;
border-radius: 100px;
background-color: #6bccfa;
box-shadow: 0 2px 4px -2px rgba(0, 0, 0, .33);
}
.identity-verified.identity-verified-navbar {
margin-top: 30px;
margin-left: 35px;
}
.identity-verified.identity-verified-navbar.invisible {
display: none;
}
.identity-verified-tick {
width: 8px;
height: 8px;
margin-top: -17px;
margin-left: 4px;
}
.modal {
position: fixed;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
z-index: 25000;
display: inline-block;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .3);
}
.modal.hide {
display: none;
overflow: scroll;
padding-top: 10px;
background-color: #fff;
text-align: center;
}
.param {
display: inline-block;
padding-right: 10px;
padding-left: 10px;
text-align: left;
}
.command {
display: block;
max-width: 1000px;
margin-right: auto;
margin-left: auto;
text-align: left;
}
.awaiting {
display: inline-block;
background-color: #ff2752;
}
.delegates {
display: inline-block;
margin: 5px;
}
.politics {
margin-bottom: 0px;
padding-right: 10px;
padding-left: 10px;
border: 0px solid #000;
}
.rosca {
display: inline-block;
width: 100%;
margin-top: 5px;
font-size: 14px;
}
.rosca.rosca-id {
margin-top: -10px;
}
.rosca.rosca-feed {
margin-top: -15px;
margin-bottom: -10px;
}
.avatar {
width: 120px;
margin: 0px;
float: left;
color: hsla(0, 0%, 100%, .7);
font-size: 9px;
line-height: 30px;
text-align: center;
text-transform: uppercase;
}
.id-card {
position: static;
display: block;
margin-top: 10px;
margin-right: auto;
margin-left: auto;
background-color: #fff;
text-align: center;
}
.id-card.hide {
display: none;
}
.title {
padding-right: 20px;
padding-left: 20px;
}
.handle {
position: relative;
z-index: 999;
width: 35px;
height: 35px;
margin-top: -8px;
margin-right: -28px;
float: right;
border: 6px solid #fff;
border-radius: 100px;
background-color: #e6f9f4;
box-shadow: 0 1px 3px -2px #000, inset 0 0 1px 0 #52d4b4;
cursor: -webkit-grab;
cursor: grab;
}
.handle:hover {
background-color: #e6f9f4;
}
.handle:active {
background-color: #00bf8f;
cursor: -webkit-grabbing;
cursor: grabbing;
}
.close {
width: 40px;
height: 40px;
margin-top: 67px;
margin-right: 5px;
padding: 5px;
float: right;
opacity: 0.5;
font-size: 8px;
line-height: 8px;
text-align: center;
text-transform: uppercase;
}
.close:hover {
opacity: 1;
}
.setup {
padding-top: 10px;
}
.vote-available {
display: inline-block;
text-align: left;
}
.vote-available.label-votes {
margin-bottom: 6px;
float: left;
font-size: 11px;
}
.vote-allocated {
display: inline-block;
}
.vote-allocated.label-votes {
margin-right: -10px;
font-size: 11px;
}
.vote-count {
display: block;
width: 120px;
height: 65px;
margin-top: -85px;
margin-left: -47px;
padding-top: 3px;
padding-bottom: 5px;
border: 3px solid #fff;
border-radius: 5px;
background-color: #fff;
box-shadow: 0 0 8px -4px #000;
color: #00bf8f;
font-weight: 200;
text-align: center;
}
.rosca-connector {
width: 3px;
height: 13px;
margin-left: 11px;
background-color: #fff;
box-shadow: 0 0 2px -1px #000;
}
.vote-logic {
margin: 20px -5px 15px;
}
.vote-action {
margin-bottom: 20px;
padding-right: 20px;
padding-left: 20px;
}
.os-icon {
width: 30px;
height: 30px;
margin-top: -3px;
margin-right: 5px;
float: left;
}
.os-download {
display: block;
margin-top: 15px;
margin-bottom: 10px;
line-height: 30px;
}
.link:hover {
padding-bottom: 1px;
border-bottom-style: solid;
}
.kind-icon {
display: inline-block;
width: 60px;
height: 60px;
margin-right: auto;
margin-left: auto;
}
.kind-value {
display: block;
width: 60px;
height: 60px;
margin: 10px auto;
text-align: center;
}
.url-icon {
width: 16px;
height: 16px;
}
.data {
display: inline-block;
margin-right: 10px;
margin-bottom: 5px;
}
.data.data-feed {
margin-top: 6px;
margin-right: 0px;
margin-bottom: 5px;
float: right;
}
.data.data-feed.data-identity {
margin-left: -15px;
float: left;
}
.data.data-feed.data-transaction {
margin: 3px 4px 7px 3px;
float: left;
}
.data.data-feed.data-ledger {
margin: -5px 0px -4px 7px;
float: left;
line-height: 20px;
}
.contract-collapse {
position: absolute;
top: 0px;
right: 0px;
margin: 5px;
}
.contract-win-icon {
width: 30px;
}
.contract-win {
opacity: 0.5;
}
.contract-win:hover {
opacity: 1;
}
.stage {
display: inline-block;
margin-top: 3px;
margin-right: 10px;
margin-bottom: 3px;
padding: 0px 10px 5px;
float: left;
border-style: solid;
border-width: 0px;
border-radius: 25px;
background-color: transparent;
color: #581073;
font-size: 10px;
text-transform: uppercase;
}
.stage.stage-live {
border-style: solid;
border-color: #f5d059;
color: #f5d059;
}
.stage.stage-live.stage-list {
margin-top: 0px;
margin-right: 25px;
}
.stage.stage-finish-approved {
border-style: solid;
border-color: #00bf8f;
color: #00bf8f;
}
.stage.stage-finish-approved.stage-card {
margin-right: 5px;
}
.stage.stage-finish-approved.stage-card.stage-anon {
border-style: dashed;
border-color: #fff;
background-color: transparent;
opacity: 0.7;
}
.stage.stage-finish-approved.stage-card.button {
cursor: pointer;
}
.stage.stage-finish-approved.stage-card.button:active {
background-color: transparent;
color: #00bf8f;
}
.stage.stage-finish-approved.stage-finished-inballot {
border-style: solid;
border-color: #000;
}
.stage.stage-finish-alternative {
border-style: solid;
border-color: #e6f9f4;
background-color: #e6f9f4;
color: #00bf8f;
}
.stage.stage-finish-rejected {
display: inline-block;
border-color: #ff2752;
color: #ff2752;
}
.stage.stage-card {
margin-top: 4px;
margin-right: -5px;
margin-bottom: 0px;
float: right;
}
.stage.stage-list {
margin-top: 1px;
}
.stage.stage-placed {
border-style: solid;
border-color: #00bf8f;
}
.stage.stage-inballot {
border-style: solid;
border-color: #00bf8f;
background-color: #e6f9f4;
}
.stage.stage-remove {
border-color: #ff8979;
background-color: #ff8979;
color: #fff;
}
.stage.stage-delegated {
border-style: solid;
border-color: rgba(0, 191, 143, 0);
background-color: #e6f9f4;
color: #00bf8f;
}
.stage.stage-vote-totals {
border-style: solid;
border-color: #9e6fcc;
color: #9e6fcc;
}
.stage.stage-vote-totals-available {
border-style: solid;
border-color: #46dfb8 #9e6fcc #9e6fcc;
background-color: transparent;
color: #46dfb8;
}
.stage.stage-vote {
min-width: 60px;
border-style: solid;
border-color: #ccbcda;
background-color: #ccbcda;
color: #6c5b7c;
text-transform: none;
}
.stage.stage-vote.stage-revoke {
margin-right: 0px;
margin-left: 10px;
}
.stage.stage-vote.stage-loosing {
border-color: #e6e6e6;
background-color: #e6e6e6;
}
.stage.stage-vote.stage-single {
min-width: 0px;
padding-top: 1px;
padding-right: 0px;
padding-left: 11px;
border-width: 0px;
}
.stage.stage-compressed {
margin-top: 1px;
margin-left: 10px;
}
.profile-thumb {
height: 60px;
opacity: 0.75;
}
.profile-thumb.profile-thumb-active {
opacity: 1;
}
.meta {
display: inline-block;
margin-bottom: 10px;
clear: both;
}
.meta.meta-search {
display: block;
overflow: hidden;
height: 55px;
margin: -10px -15px 0px;
padding-right: 15px;
padding-left: 15px;
clear: both;
color: #9c9c9c;
}
.meta.meta-search.meta-search-new {
opacity: 1;
}
.meta.meta-search.meta-compressed {
padding-left: 5px;
}
.state {
display: inline-block;
margin-right: 2px;
margin-left: 2px;
padding: 0px 5px;
border-radius: 3px;
font-weight: 300;
}
.state.verifying {
background-color: #ffe079;
color: #af8d1e;
font-weight: 300;
}
.state.unavailable {
background-color: #ff2752;
color: #fff;
}
.state.invisible {
display: none;
}
.context {
position: fixed;
left: 265px;
top: 5px;
z-index: 15000;
display: block;
overflow: hidden;
padding: 3px 10px;
border-bottom: 2px solid #ffe079;
border-radius: 5px;
background-color: rgba(0, 0, 0, .7);
opacity: 0;
color: #fff;
font-size: 14px;
line-height: 30px;
text-align: center;
}
.search-icon {
width: 30px;
height: 30px;
margin-right: 5px;
float: left;
opacity: 0.66;
}
.search-input {
padding-left: 35px;
}
.sample {
display: block;
color: #cacaca;
}
.tag-label {
display: inline-block;
}
.selector-modal {
position: absolute;
left: 30px;
right: 30px;
display: block;
height: 115px;
margin-top: -5px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 0px 0px 5px 5px;
background-color: #e6e6e6;
box-shadow: inset 0 0 4px -2px #000;
color: #000;
font-size: 12px;
text-align: center;
}
.selector-modal.selector-proposals-modal {
z-index: 500;
display: block;
height: 350px;
margin-top: -15px;
padding: 15px;
}
.selector-modal.selector-proposals-modal.hide {
display: none;
}
.selector-warning {
display: inline-block;
text-transform: uppercase;
}
.selector-warning.selector-warning-large {
margin-top: 110px;
margin-bottom: 110px;
}
.icon-trash {
width: 55px;
height: 55px;
}
.icon-trash.icon-trash-large {
width: 80px;
height: 80px;
}
.selector-create {
padding-left: 10px;
text-align: left;
}
.selector-create.selector-create-modal {
padding-left: 0px;
}
.selector-modal-label {
margin-bottom: 10px;
color: #777;
font-size: 14px;
}
.references {
position: absolute;
left: 0px;
top: 0px;
margin: 5px 5px 5px 30px;
float: left;
color: #d1d1d1;
font-size: 10px;
line-height: 28px;
text-transform: uppercase;
}
.options {
display: block;
overflow: auto;
margin-right: -5px;
margin-bottom: 5px;
margin-left: -5px;
padding-right: 0px;
padding-left: 0px;
}
.options.options-voted {
margin-right: -30px;
margin-left: -30px;
}
.options.options-mini {
margin: 15px 5px 0px;
padding: 0px 10px 5px;
border-radius: 5px;
}
.calendar-icon {
width: 30px;
height: 30px;
margin: 4px 4px 4px 0px;
float: left;
opacity: 0.75;
}
.calendar-icon.calendar-icon-active {
opacity: 1;
}
.calendar {
position: absolute;
right: 118px;
display: block;
padding: 10px 0px 10px 10px;
border-radius: 3px 0px 3px 3px;
background-color: #e6f9f4;
color: #00bf8f;
font-size: 14px;
line-height: 22px;
}
.proposal {
display: inline-block;
width: 100%;
padding: 0px 10px 10px;
}
.vote-placeholder {
display: inline-block;
width: 100%;
}
.option-proposal {
display: block;
}
.option-proposal:hover {
border-bottom-style: none;
}
.title-input {
display: block;
width: 100%;
margin-bottom: 0px;
margin-left: 0px;
padding: 0px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
line-height: 24px;
}
.title-input.title-comment {
border-left-style: none;
font-size: 23px;
line-height: 32px;
letter-spacing: -0.5px;
}
.title-input.title-comment:hover {
border-left-style: none;
}
.title-input.title-input-mini {
margin: 0px 0px 15px;
padding: 0px;
border-left-style: none;
opacity: 0.75;
font-size: 14px;
line-height: 18px;
font-style: italic;
letter-spacing: 0px;
}
.title-input.title-input-read:hover {
border-left-color: #fff;
}
.title-input.title-input-void {
position: absolute;
color: #ccc;
}
.title-input.title-input-void.title-input-compressed {
margin-top: 10px;
margin-left: 50px;
}
.title-input.title-feed {
margin-top: 5px;
margin-bottom: 5px;
border-style: none;
}
.title-input.title-feed:hover {
border-style: none;
}
.title-input.title-feed.title-thread {
font-size: 22px;
line-height: 32px;
}
.paper-header {
margin: 0px;
padding: 6px 0px;
border-radius: 3px;
background-color: transparent;
color: dimgrey;
font-size: 14px;
line-height: 30px;
}
.paper-header.card-header {
margin: -10px -10px 5px;
padding: 10px 10px 10px 20px;
background-color: transparent;
box-shadow: none;
}
.paper-header.paper-header-list {
padding-top: 10px;
padding-bottom: 5px;
font-size: 10px;
}
.paper-header.paper-header-empty {
border-radius: 3px;
box-shadow: 0 3px 20px -13px #000;
}
.shadow-fake {
position: absolute;
left: 33px;
right: 33px;
height: 10px;
margin-top: -10px;
background-color: #fff;
box-shadow: 0 -3px 3px -2px rgba(0, 0, 0, .15);
}
.section-icon {
width: 30px;
height: 30px;
margin-right: 5px;
margin-bottom: -5px;
margin-left: -10px;
float: left;
}
.section-icon.section-icon-small {
width: 20px;
height: 20px;
margin-top: 5px;
}
.section-icon.section-icon-active {
cursor: pointer;
}
.warning-list {
min-height: 15px;
margin-top: 5px;
margin-bottom: 5px;
}
.path {
position: absolute;
left: 20px;
right: 130px;
overflow: hidden;
height: 28px;
margin-top: 15px;
margin-bottom: 15px;
float: left;
font-size: 16px;
}
.authentication {
float: right;
}
.authentication.nav-button {
margin-top: 7px;
margin-bottom: 10px;
padding: 0px 5px;
border-radius: 3px;
}
.login {
width: 100%;
padding: 5px 5px 0px;
float: left;
font-size: 14px;
text-align: center;
}
.login-input {
width: 100%;
height: 44px;
margin-bottom: 0px;
padding: 0px 0px 5px 30px;
border-style: none none solid;
border-width: 0px 0px 1px;
border-color: #000 #000 #c7b7cc;
background-color: transparent;
box-shadow: none;
color: #5a0075;
font-size: 16px;
font-weight: 300;
text-align: left;
}
.login-input:focus {
border-bottom-width: 1px;
border-bottom-color: #ff0085;
}
.login-input.login-input-split {
width: 50%;
padding-left: 0px;
float: left;
}
.login-input.login-input-split.login-input-split-right {
padding-left: 0px;
}
.face {
display: none;
margin-right: 5px;
margin-left: 5px;
}
.login-label {
margin-top: 0px;
margin-bottom: 0px;
font-size: 11px;
line-height: 22px;
font-weight: 300;
text-transform: uppercase;
}
.login-label.login-label-form {
text-align: left;
}
.login-label.login-label-form.login-label-split {
width: 50%;
float: left;
}
.login-label.title-label {
margin: 5px -20px 10px;
padding: 5px 20px;
border-bottom: 1px dotted #6c5b7c;
text-align: left;
}
.authenticate {
display: inline-block;
margin-right: auto;
margin-left: auto;
color: hsla(0, 0%, 100%, .7);
font-size: 11px;
line-height: 35px;
text-align: center;
text-transform: uppercase;
}
.tabs {
display: block;
overflow: hidden;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
border: 1px solid #00bf8f;
border-radius: 5px;
text-align: center;
}
.tab {
display: block;
width: 50%;
padding-top: 0px;
padding-bottom: 0px;
float: left;
border-radius: 0px;
color: #00bf8f;
font-size: 14px;
line-height: 32px;
text-align: center;
cursor: pointer;
}
.tab.tab-active {
border-radius: 3px;
background-color: #00bf8f;
box-shadow: 2px 2px 16px -7px #000;
color: #fff;
}
.pointer-up {
position: relative;
display: block;
width: 0px;
height: 0px;
border-style: solid;
border-width: 0px 10px 15px;
border-color: transparent transparent rgba(49, 38, 59, .95);
background-color: transparent;
}
.pointer-up.pointer-agora {
margin-bottom: -1px;
margin-left: 8px;
padding-top: 4px;
border-right-width: 9px;
border-bottom-width: 12px;
border-bottom-color: #e7e7e7;
border-left-width: 9px;
background-color: transparent;
}
.pointer-up.pointer-agora.pointer-agora-inner {
margin-left: -9px;
padding-top: 2px;
border-right-width: 9px;
border-bottom-width: 11px;
border-bottom-color: #f0f0f0;
border-left-width: 9px;
background-color: transparent;
}
.popup {
position: fixed;
z-index: 12900;
display: block;
min-width: 300px;
margin-top: -10000px;
opacity: 0;
}
.popup.invisible {
display: inline-block;
}
.popup.popup-test {
top: -25px;
right: 5px;
margin-top: 90px;
opacity: 1;
}
.popup.popup-test.hide {
display: none;
}
.navbar-button {
display: inline-block;
height: 45px;
margin-top: 7px;
margin-bottom: 7px;
padding-right: 5px;
padding-left: 5px;
border-radius: 5px;
color: #fff;
}
.navbar-button.navbar-button-active {
background-color: #580074;
}
.navbar-button.navbar-button-active.navbar-button-action {
font-size: 16px;
line-height: 18px;
cursor: pointer;
}
.navbar-button.navbar-button-active.navbar-button-action:hover {
background-color: #ff0085;
}
.navbar-button.navbar-button-active.navbar-button-action.navbar-button-action-disabled {
border: 1px solid #aaa;
background-color: transparent;
color: #999;
}
.navbar-button.navbar-button-active.navbar-button-action.navbar-button-action-disabled:hover {
background-image: none;
}
.tab-content {
display: block;
}
.tab-content.invisible {
display: inline-block;
width: 100%;
text-align: center;
}
.login-line {
height: 1px;
margin-bottom: 15px;
border-top: 1px dotted #6c5b7c;
background-color: transparent;
}
.login-line.login-line-active {
border-top-style: solid;
border-top-color: #00bf8f;
background-image: none;
}
.login-icon {
position: absolute;
display: block;
width: 20px;
height: 20px;
margin-top: 10px;
float: left;
}
.login-icon.login-icon-split-view {
margin-top: 32px;
}
.login-field {
margin-bottom: 20px;
text-align: left;
}
.login-field.login-field-last {
margin-bottom: 10px;
}
.signup {
margin-top: 15px;
margin-bottom: 0px;
font-size: 14px;
text-align: center;
}
.id.id-logged {
font-size: 14px;
text-align: center;
}
.avatar-editor {
text-align: left;
}
.suggest {
overflow: scroll;
height: 110px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
background-color: #f3f3f3;
box-shadow: inset 0 0 3px -1px #000;
}
.suggest-item {
padding-right: 10px;
padding-left: 10px;
font-size: 14px;
line-height: 36px;
cursor: pointer;
}
.suggest-item:hover {
background-color: rgba(255, 0, 133, .06);
}
.suggest-item:active {
background-color: #ff0085;
color: #fff;
}
.suggest-item.suggest-token {
margin: 7px 5px 5px -5px;
padding: 0px 5px 1px;
float: left;
border-radius: 5px;
background-color: #9793c5;
color: #fff;
font-size: 10px;
line-height: 20px;
font-weight: 400;
}
.suggest-item.suggest-token.suggest-token-inline {
display: inline;
margin-right: 2px;
margin-left: 2px;
padding-top: 3px;
padding-bottom: 3px;
float: none;
}
.suggest-item.suggest-token.suggest-token-sidebar {
margin-top: 5px;
padding-bottom: 0px;
}
.plus {
font-size: 18px;
font-weight: 700;
}
.avatar-description {
overflow: auto;
width: 150px;
margin-top: 12px;
margin-left: 5px;
float: left;
font-size: 12px;
line-height: 20px;
}
.upload-icon {
width: 20px;
height: 20px;
margin-right: 5px;
float: left;
}
.upload-button-label {
display: inline-block;
}
.logout {
display: block;
width: 12px;
height: 12px;
margin-top: 7px;
margin-right: -1px;
margin-left: 4px;
float: right;
}
.left {
position: fixed;
top: 0px;
bottom: 0px;
z-index: 12500;
display: inline-block;
overflow: hidden;
width: 0px;
margin-left: -10000px;
float: left;
background-color: #f2f2f8;
text-align: left;
}
.left.left-edit {
width: 260px;
margin-left: 0px;
}
.vote-label {
margin-left: 3px;
letter-spacing: 0.3px;
text-transform: uppercase;
}
.credential {
width: 125px;
margin: 5px;
padding: 5px 10px;
float: left;
border: 1px solid #fff;
border-radius: 3px;
text-align: left;
}
.memberships {
margin-top: 10px;
}
.alert {
display: block;
overflow: hidden;
max-width: 400px;
margin-top: 20%;
margin-right: auto;
margin-left: auto;
padding: 18px 12px;
border-color: #f3f3f3 #e0e0e0 #e0e0e0 #f3f3f3;
border-top-style: solid;
border-top-width: 1px;
border-left-style: solid;
border-left-width: 1px;
border-radius: 5px;
background-color: #eaeaea;
box-shadow: 0 6px 20px 4px rgba(0, 0, 0, .13);
font-size: 16px;
text-align: center;
}
.alert-header {
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
}
.alert-header.alert-header-subtitle {
margin: 20px -15px 10px;
padding-top: 10px;
border-top: 1px dotted #6c5b7c;
color: #d8d8d8;
font-size: 11px;
}
.alert-icon {
width: 30px;
height: 30px;
margin-top: 20px;
margin-bottom: 5px;
}
.alert-title {
text-transform: uppercase;
}
.modal-container {
position: relative;
left: 0px;
right: 0px;
bottom: 0px;
}
.type {
margin-top: 0px;
padding-top: 10px;
padding-bottom: 0px;
border-radius: 3px;
background-color: transparent;
box-shadow: none;
}
.metadata {
margin-top: -10px;
margin-right: -15px;
float: left;
}
.vote-metrics {
margin: -5px 5px;
}
.vote-cta {
width: 50%;
float: right;
}
.vote-cta.vote-edit {
position: absolute;
left: 100px;
right: 10px;
width: auto;
}
.polis {
width: 50%;
float: left;
}
.polis.remove {
width: 100px;
}
.execution-label {
display: inline-block;
}
.feed-head {
display: inline-block;
width: 100%;
padding: 10px 25px;
color: dimgrey;
font-size: 14px;
line-height: 30px;
text-transform: uppercase;
}
.cast {
position: fixed;
right: 15px;
bottom: 15px;
z-index: 8500;
width: 70px;
height: 70px;
border-radius: 50px;
background-color: #00d9ff;
box-shadow: 0 2px 20px -5px #000;
color: #fff;
font-weight: 200;
text-align: center;
cursor: pointer;
}
.cast:active {
bottom: 13px;
box-shadow: 0 0 20px -7px #000;
}
.cast.cast-cancel {
background-color: #9793c5;
}
.menu {
margin-top: 0px;
margin-bottom: 10px;
border-bottom: 1px none #bbb;
font-size: 15px;
line-height: 28px;
text-align: left;
}
.menu.menu-empty {
padding: 10px 5px;
clear: both;
border-radius: 5px;
color: #6c5b7c;
font-size: 10px;
line-height: 16px;
text-align: center;
text-transform: uppercase;
}
.menu.menu-empty.menu-crypto {
margin-right: 0px;
margin-left: 0px;
}
.menu.menu-empty.menu-footer {
position: absolute;
left: 0px;
right: 0px;
bottom: 0px;
display: block;
margin-bottom: 0px;
padding-right: 15px;
padding-bottom: 20px;
padding-left: 15px;
background-color: #f2f2f8;
box-shadow: 0 0 20px 10px #f2f2f8;
text-align: left;
}
.menu-item {
min-width: 100%;
margin-top: 3px;
margin-bottom: 3px;
padding: 1px 0px 1px 5px;
border-radius: 3px;
color: #0d0d17;
font-size: 13px;
line-height: 30px;
text-align: left;
cursor: pointer;
}
.menu-item:hover {
background-color: #e6e0ee;
}
.menu-item.cast-action {
position: absolute;
top: 50%;
right: 100%;
margin-top: -25%;
margin-right: 15px;
background-color: transparent;
box-shadow: none;
text-align: right;
text-shadow: 0 2px 13px rgba(0, 0, 0, .7);
}
.menu-item.menu-item-selected {
background-color: #5a0075;
color: #fff;
}
.signal {
width: 30px;
height: 30px;
margin-right: 5px;
padding-top: 1px;
float: right;
border-radius: 15px;
background-color: rgba(255, 39, 82, .71);
font-size: 12px;
text-align: center;
}
.signal.void {
background-color: transparent;
color: #333;
}
.signal.void.signal-selected {
color: #fff;
}
.signal.signal-on {
background-color: #ff2752;
color: #fff;
}
.action-icon {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
width: 100%;
height: 100%;
}
.feed {
position: relative;
display: block;
width: 100%;
margin-right: auto;
margin-left: auto;
}
.sidebar {
position: absolute;
top: 0px;
bottom: 0px;
display: inline-block;
overflow: scroll;
width: 100%;
padding: 0px 10px 10px;
box-shadow: none;
text-align: center;
}
.content {
display: inline-block;
min-width: 100%;
margin-right: auto;
margin-left: auto;
padding: 60px 15px 15px;
}
.content.content-feed {
padding: 10px 10px 10px 15px;
-webkit-transition: opacity 892ms ease;
transition: opacity 892ms ease;
}
.content.content-agora {
position: relative;
width: 100%;
min-width: 200px;
margin-bottom: -15px;
padding-top: 10px;
padding-right: 15px;
padding-left: 10px;
}
.action-label {
position: absolute;
overflow: hidden;
min-width: 120px;
margin-top: 20px;
margin-left: -115px;
border-radius: 3px;
background-color: rgba(0, 0, 0, .4);
opacity: 0;
font-size: 14px;
line-height: 30px;
font-weight: 300;
text-align: center;
text-shadow: none;
cursor: default;
}
.separator {
margin-right: -10px;
margin-bottom: 5px;
margin-left: -10px;
padding: 5px 20px 5px 13px;
box-shadow: none;
color: #6c5b7c;
font-size: 10px;
line-height: 22px;
font-weight: 500;
text-align: left;
text-transform: uppercase;
}
.separator.agora-separator {
opacity: 0;
}
.icon-inbox {
width: 22px;
height: 22px;
margin-top: 3px;
margin-right: 10px;
float: left;
}
.half {
width: 50%;
}
.half.float-left.transaction-half {
text-align: center;
}
.tutorial {
margin-top: 10px;
margin-bottom: 10px;
}
.micro-button {
display: inline-block;
overflow: hidden;
margin: 10px auto;
padding: 0px 10px 0px 5px;
border-radius: 5px;
color: #7d849f;
font-size: 12px;
line-height: 28px;
text-align: center;
cursor: pointer;
}
.micro-button:hover {
color: #f04;
}
.micro-button:active {
background-color: #f2f2f5;
}
.micro-button.micro-button-remove {
color: #ff2752;
}
.micro-button.micro-button-remove:active {
background-color: transparent;
}
.micro-button.disabled {
opacity: 0.35;
cursor: default;
}
.micro-button.agora-button {
margin: 5px 15px 0px -7px;
}
.micro-button.agora-button:active {
background-color: #e9e9e9;
}
.micro-button.agora-button.agora-time {
margin-top: 5px;
margin-right: 0px;
padding-right: 0px;
float: right;
text-align: right;
}
.micro-button.agora-button.agora-time:active {
background-color: transparent;
}
.micro-button.micro-button-header {
overflow: visible;
margin: 0px;
padding: 0px;
border-radius: 0px;
text-align: left;
}
.micro-button.micro-button-feed {
display: block;
margin: 5px 0px 0px 10px;
float: left;
}
.micro-button.micro-button-feed.micro-button-disabled {
color: #e2e2e2;
cursor: default;
}
.micro-button.micro-button-feed.micro-button-disabled:active {
background-color: transparent;
}
.micro-button.micro-button-disabled {
color: #e2e2e2;
cursor: default;
}
.micro-icon {
width: 24px;
height: 24px;
margin-top: -2px;
}
.micro-label {
display: inline-block;
}
.micro {
display: inline-block;
margin-right: 10px;
margin-left: 10px;
text-align: center;
}
.micro.micro-half {
display: inline;
}
.micro-menu {
width: 100%;
margin-right: auto;
margin-left: auto;
text-align: center;
}
.micro-menu.micro-menu-thread {
display: inline-block;
margin: 0px 0px -10px;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.modal-buttons {
display: inline-block;
width: 100%;
margin-top: 20px;
margin-bottom: -10px;
}
.collective {
display: inline-block;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px 10px 0px;
border-radius: 5px;
color: #333;
font-size: 12px;
line-height: 18px;
cursor: pointer;
}
.collective:hover {
background-color: #e6e0ee;
}
.collective.collective-selected {
background-color: #5a0075;
color: #fff;
}
.collective-icon {
max-height: 40px;
max-width: 90%;
margin-right: 10px;
float: left;
border-radius: 5px;
box-shadow: none;
cursor: pointer;
}
.collective-icon.collective-icon-small {
width: 25px;
height: 25px;
margin-top: 9px;
margin-bottom: 0px;
}
.menu-button {
width: 40px;
height: 40px;
margin-top: 3px;
margin-bottom: 3px;
opacity: 0;
}
.collective-title {
margin-top: 5px;
margin-bottom: 5px;
font-size: 14px;
line-height: 18px;
font-weight: 400;
text-shadow: none;
}
.collective-stat {
display: block;
margin-right: auto;
margin-bottom: 10px;
margin-left: auto;
border: 1px none #00bf8f;
border-radius: 2px;
color: #00bf8f;
}
.collective-stat-icon {
width: 22px;
height: 22px;
margin-right: 10px;
float: left;
}
.collective-info {
display: inline;
margin-top: 15px;
clear: both;
font-size: 15px;
}
.paper-header-title {
float: left;
}
.micro-vote-power {
margin-top: 0px;
margin-bottom: 0px;
padding-bottom: 5px;
}
.trojan {
display: block;
width: 180px;
margin-right: auto;
margin-left: auto;
background-color: #949494;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.transition {
position: fixed;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
margin-top: 0px;
padding-top: 70px;
padding-bottom: 0px;
background-color: #ddd;
}
.spinner {
display: block;
width: 100px;
height: 100px;
margin-right: auto;
margin-left: auto;
opacity: 0.5;
}
.right {
position: absolute;
left: 250px;
top: 0px;
right: 0px;
bottom: 0px;
overflow: scroll;
}
.right.show {
left: 0px;
}
.right.right-hero {
top: 400px;
}
.float-left {
float: left;
}
.card-title {
margin-top: 3px;
font-size: 20px;
font-weight: 500;
}
.non-draggable {
cursor: default;
}
.agora {
position: absolute;
top: 0px;
bottom: 0px;
width: 100%;
margin: 0px;
padding-top: 0px;
}
.mobile-editor {
position: fixed;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
z-index: 14600;
margin-top: 60px;
padding-top: 10px;
background-color: #fff;
}
.mobile-editor.hide {
display: none;
}
.event {
position: static;
left: 0px;
right: 0px;
display: block;
margin-bottom: 0px;
margin-left: 0px;
clear: both;
}
.event.event-main {
margin-bottom: 10px;
}
.event.event-reply {
margin-top: 15px;
}
.cards {
display: block;
margin-top: 5px;
margin-left: 3px;
float: left;
clear: both;
color: #999;
font-size: 10px;
line-height: 22px;
text-transform: uppercase;
}
.cards.transaction-score {
width: 100%;
margin-top: 0px;
margin-left: 0px;
font-size: 9px;
text-align: center;
}
.cards.transaction-score.transaction-label {
margin-top: 3px;
margin-bottom: 0px;
border-bottom: 1px solid #e0e0e0;
text-align: left;
}
.sort {
position: absolute;
z-index: 7500;
display: inline-block;
width: 40px;
height: 92px;
margin-top: -5px;
margin-left: 0px;
padding-top: 0px;
float: left;
background-color: #f5f5f5;
}
.argument {
margin-top: 5px;
margin-left: 38px;
padding-left: 10px;
float: none;
border-left: 1px none #e9e9e9;
}
.argument.no-children {
border-left-style: solid;
border-left-color: #f5f5f5;
}
.sort-button {
display: block;
width: 40px;
height: 40px;
border-radius: 3px;
text-align: center;
cursor: pointer;
}
.sort-button:active {
display: inline-block;
margin-top: 1px;
margin-bottom: -1px;
}
.sort-button.sort-button-active {
background-color: #00bf8f;
}
.sort-button.sort-button-disabled {
cursor: default;
}
.sort-score {
width: 40px;
margin-top: -10px;
margin-bottom: -10px;
color: #00bf8f;
font-size: 16px;
line-height: 32px;
text-align: center;
}
.sort-score.transaction-score {
display: inline-block;
width: 100%;
margin-top: 10px;
margin-bottom: 5px;
font-size: 36px;
text-align: center;
}
.speak {
width: 100%;
margin-bottom: 35px;
}
.agora-speak {
margin-bottom: 40px;
padding-right: 25px;
padding-left: 25px;
}
.split {
position: absolute;
top: 0px;
bottom: 0px;
display: inline-block;
width: 50%;
padding-right: 15px;
padding-left: 15px;
float: left;
}
.split.split-right {
position: absolute;
left: 60%;
right: 0px;
width: 40%;
padding-right: 0px;
padding-left: 0px;
border-left: 1px none hsla(0, 0%, 41%, 0);
}
.split.split-left {
width: 60%;
padding-right: 0px;
padding-left: 0px;
}
.comment {
display: block;
padding: 10px;
border: 1px solid #e7e7e7;
border-radius: 3px;
background-color: #f0f0f0;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
line-height: 26px;
}
.comment.quote {
display: inline-block;
margin-bottom: 10px;
padding: 3px 5px;
border-color: #fae9b1;
border-radius: 0px;
background-color: #fae9b1;
}
.comment.comment-post {
display: block;
min-height: 60px;
margin-top: 10px;
margin-bottom: 20px;
padding: 5px 10px;
float: none;
border-style: none;
border-radius: 3px;
background-color: #fff;
box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, .5);
}
.comment.comment-post.comment-disabled {
color: #ccc;
}
.comment-post {
float: left;
}
.comment-post-left {
width: 70px;
float: left;
}
.comment-post-right {
position: relative;
display: block;
margin-left: 70px;
}
.tooltip {
margin-top: -15px;
color: #aaa;
font-size: 10px;
text-align: center;
}
.pointer-down {
position: relative;
width: 0px;
height: 0px;
margin-top: -8px;
border-style: solid;
border-width: 15px 10px 0px;
border-color: rgba(49, 38, 59, .95) transparent transparent;
background-color: transparent;
}
.agora-logger {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 0px;
margin-bottom: 10px;
text-align: center;
}
.button-wrap-half {
width: 50%;
padding-right: 5px;
padding-left: 5px;
float: left;
}
.agora-separator {
height: 10px;
}
.dynamic-text {
padding: 5px;
border-radius: 3px;
background-color: #e6f9f4;
font-weight: 200;
}
.signature-role {
display: block;
min-width: 200px;
margin-top: 85px;
margin-bottom: 20px;
padding-right: 10px;
padding-left: 10px;
clear: both;
border: 1px solid #f5f5f5;
border-radius: 50px;
background-color: #f5f5f5;
font-size: 10px;
text-align: center;
text-transform: uppercase;
}
.signature-role.signature-confirmed {
border: 1px solid #e6f9f4;
background-color: #e6f9f4;
}
.signature-role.signature-rejected {
border-color: #fae6e6;
background-color: #fae6e6;
}
.signature-role.signature-role-mobile {
min-width: 100px;
margin-top: 4px;
margin-bottom: 4px;
float: right;
clear: none;
}
.shadow-bar {
margin-right: -10px;
margin-left: -10px;
}
.signature-remove {
display: block;
width: 24px;
height: 24px;
margin-top: 2px;
margin-right: -8px;
float: right;
border-radius: 50px;
background-image: url('../images/cross-green.png');
background-position: 50% 50%;
background-size: 14px 14px;
background-repeat: no-repeat;
cursor: pointer;
}
.smart {
width: 75%;
float: left;
}
.resize {
position: fixed;
top: 0px;
bottom: 0px;
display: block;
width: 5px;
float: left;
border-left-style: none;
cursor: ew-resize;
}
.authenticity {
margin-top: 10px;
margin-bottom: 10px;
}
.authenticity-score {
width: 75%;
float: left;
text-align: left;
}
.authenticity-role {
width: 55px;
margin-top: -15px;
float: right;
text-align: center;
}
.authenticity-label {
display: block;
font-size: 11px;
line-height: 20px;
}
.checkpoint {
width: 24px;
height: 24px;
margin-right: 10px;
float: left;
border: 1px solid #00bf8f;
border-radius: 50px;
background-color: rgba(0, 191, 143, 0);
cursor: pointer;
}
.checkpoint.checkpoint-selected {
background-color: #00bf8f;
cursor: pointer;
}
.checkpoint-icon {
display: inline-block;
width: 25px;
height: 25px;
margin-top: -10px;
}
.authenticity-bar {
display: block;
width: 100%;
height: 20px;
clear: both;
}
.authenticity-bar-scale {
width: 20%;
height: 20px;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
float: left;
opacity: 0.2;
}
.authenticity-bar-scale.authenticity-bar-selected {
opacity: 1;
}
.authenticate-defcon {
display: block;
width: 100%;
height: 100%;
border-radius: 2px;
background-color: #ff2752;
opacity: 0.75;
}
.authenticate-defcon.defcon-2 {
background-color: #ff8979;
}
.authenticate-defcon.defcon-3 {
background-color: #ffe079;
}
.authenticate-defcon.defcon-4 {
background-color: #46dfb8;
}
.authenticate-defcon.defcon-5 {
background-color: #00bf8f;
}
.checkpoints {
margin-bottom: 8px;
}
.proposal-feed {
padding-right: 15px;
padding-left: 15px;
}
.delegate {
width: 60px;
height: 60px;
border: 1px none #00bf8f;
border-radius: 5px;
background-color: transparent;
box-shadow: none;
color: #00bf8f;
font-size: 36px;
line-height: 50px;
text-align: center;
cursor: pointer;
}
.delegate-label {
font-size: 8px;
line-height: 8px;
text-transform: uppercase;
}
.transaction {
position: relative;
display: inline-block;
width: 100px;
margin-top: -77px;
float: right;
}
.transaction-wrapper {
float: right;
}
.currency {
width: 32px;
height: 32px;
margin-top: -6px;
margin-left: -5px;
}
.currency-label {
display: inline-block;
}
.ticket-trim {
height: 7px;
margin-top: -1px;
margin-right: -15px;
margin-left: -15px;
background-image: url('../images/ticket-trim-up_1ticket-trim-up.png');
background-position: 0px 0px;
background-size: 6px;
background-repeat: repeat-x;
}
.ticket-trim.ticket-trim-down {
height: 7px;
margin-top: 3px;
margin-bottom: -4px;
clear: both;
background-image: url('../images/ticket-trim-down_1ticket-trim-down.png');
background-position: 0px 1px;
background-size: 6px;
}
.transaction-actors {
display: block;
}
.transaction-direction {
width: 24px;
height: 24px;
}
.arrow-down {
width: 0px;
height: 0px;
float: right;
border-style: solid;
border-width: 8px 5px 0px;
border-color: #00bf8f transparent;
background-color: transparent;
}
.arrow-down.arrow-down-inner {
margin-top: -7px;
margin-right: -3px;
border-top-width: 5px;
border-top-color: #e6f9f4;
border-right-width: 3px;
border-left-width: 3px;
}
.arrow-up {
width: 0px;
height: 0px;
border-style: solid;
border-width: 0px 5px 8px;
border-color: #000 transparent #00bf8f;
background-color: transparent;
}
.arrow-up.arrow-up-inner {
display: block;
margin-left: -3px;
padding-top: 2px;
border-right-width: 3px;
border-bottom-width: 5px;
border-bottom-color: #e6f9f4;
border-left-width: 3px;
}
.arrow-wrapper {
display: inline-block;
width: 10px;
height: 8px;
margin-right: -5px;
margin-left: -10px;
float: right;
}
.arrow-wrapper.arrow-wrapper-top {
margin-top: 10px;
}
.arrow-wrapper.arrow-wrapper-bottom {
margin-top: 37px;
}
.rosca-absolute {
position: absolute;
}
.vote-quantity {
position: relative;
top: -2px;
display: inline-block;
margin: 1px 3px -4px;
padding-right: 10px;
padding-left: 10px;
border: 1px solid #ffe079;
border-radius: 25px;
background-color: #ffe079;
color: #af8d1e;
font-size: 10px;
line-height: 24px;
text-transform: uppercase;
}
.subfeed-title {
padding-bottom: 0px;
border-bottom: 1px solid #cacaca;
background-color: #d6d6d6;
background-image: -webkit-gradient(linear, left bottom, left top, from(#d6d6d6), color-stop(65%, #ddd));
background-image: linear-gradient(0deg, #d6d6d6, #ddd 65%);
}
.subfeed-title.subfeed-title-main {
margin-top: 70px;
margin-bottom: 10px;
}
.subfeed-title.subfeed-title-secondary {
margin-bottom: 10px;
}
.bar-labels {
overflow: hidden;
height: 35px;
}
.card-element {
margin-top: 10px;
}
.user-logger {
width: 40px;
height: 60px;
}
.unanimous {
border-radius: 25px;
}
.votes {
height: 60px;
border: 1px solid #00bf8f;
border-radius: 3px;
background-color: transparent;
color: #00bf8f;
}
.modal-buttons-padder {
width: 50%;
margin-bottom: -9px;
float: left;
}
.modal-buttons-padder.modal-buttons-padder-left {
padding-right: 5px;
}
.modal-buttons-padder.modal-buttons-padder-right {
padding-left: 5px;
}
.modal-title {
margin-top: 10px;
margin-bottom: 10px;
font-weight: 600;
}
.timestamp {
margin-top: -20px;
float: right;
}
.mobile-menu {
position: fixed;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 20000;
height: 56px;
border-top: 1px solid #000;
background-color: #000;
text-align: center;
}
.mobile-menu.mobile-menu-toolbar {
z-index: 20001;
padding: 3px 10px;
border-top-color: #ddd;
background-color: #f8f8f8;
}
.mobile-menu-button {
width: 25%;
padding-top: 10px;
padding-bottom: 10px;
float: left;
color: #fff;
font-size: 8px;
line-height: 22px;
text-transform: uppercase;
}
.menu-button-icon {
width: 24px;
height: 24px;
margin-bottom: 1px;
}
.inhibitor {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
z-index: 20500;
overflow: hidden;
background-color: rgba(0, 0, 0, .07);
}
.body {
overflow: hidden;
}
.mobile-editor-close {
width: 32px;
height: 32px;
margin-top: -5px;
margin-right: -10px;
padding: 3px 6px;
float: right;
}
.mobile-editor-close:active {
margin-top: -3px;
margin-bottom: -2px;
}
.close-icon {
width: 20px;
height: 20px;
}
.mobile-editor-authors {
float: left;
}
.toolbar {
position: fixed;
}
.mobile-menu-action {
width: 100px;
float: right;
}
.counter {
padding: 15px 10px;
float: right;
color: #aaa;
font-size: 18px;
font-weight: 100;
}
.counter.counter-excess {
color: #ff2752;
}
.toolbar-icon {
width: 24px;
height: 24px;
}
.editor-button {
overflow: hidden;
height: 30px;
margin: 3px 5px;
padding: 0px 5px;
float: left;
border: 1px solid #f0eef2;
border-radius: 5px;
background-color: #f0eef2;
color: #6d5c7d;
font-size: 12px;
line-height: 29px;
cursor: pointer;
}
.editor-button.editor-button-disabled {
border-color: #ccc;
}
.editor-button.editor-button-active {
border-color: #5a0075;
background-color: #5a0075;
color: #fff;
}
.editor-button.editor-button-enabled {
color: #6d5c7d;
}
.editor-button.editor-button-readonly {
margin: 4px 10px -5px;
padding-right: 0px;
float: right;
border-style: none;
background-color: transparent;
cursor: default;
}
.editor-button.editor-button-reject-enabled {
border-color: #ff2752;
color: #ff2752;
}
.section-editor-separator {
margin: 10px;
border-top: 1px dotted #00bf8f;
}
.navbar-button-action-label {
margin-top: 12px;
margin-right: 15px;
margin-left: 10px;
float: left;
font-family: 'Open Sans', sans-serif;
}
.avatar-wrapper {
margin-top: -4px;
margin-right: -8px;
float: right;
}
.calendar-button {
display: inline-block;
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
padding: 5px 10px;
float: right;
border: 1px solid #00bf8f;
border-radius: 5px;
background-color: transparent;
color: #00bf8f;
}
.calendar-button.calendar-button-selected {
background-color: #00bf8f;
color: #f5f5f5;
}
.logo-navbar {
position: absolute;
left: 0px;
right: 130px;
display: block;
overflow: visible;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 130px;
text-align: center;
}
.feed-footer {
margin-top: 15px;
margin-bottom: 15px;
opacity: 0.4;
color: #000;
font-size: 10px;
text-align: center;
text-transform: uppercase;
cursor: pointer;
}
.feed-footer:active {
opacity: 0.75;
}
.back-top {
width: 20px;
height: 20px;
}
.separator-count {
font-weight: 400;
}
.sidebar-tag {
margin-top: 8px;
margin-right: 3px;
margin-left: 5px;
padding: 0px 4px;
float: right;
border-radius: 3px;
background-color: #ccbcda;
color: #6c5b7c;
font-size: 7px;
line-height: 14px;
font-weight: 400;
text-transform: uppercase;
}
.sidebar-tag.sidebar-stat {
margin-top: 0px;
margin-right: 5px;
margin-left: 0px;
float: left;
border-radius: 3px;
font-size: 10px;
line-height: 22px;
font-weight: 300;
}
.sidebar-tag.sidebar-stat.sidebar-crypto {
margin-top: 0px;
margin-bottom: 5px;
}
.sidebar-tag.sidebar-stat.sidebar-crypto.sidebar-title {
padding-left: 0px;
clear: right;
background-color: transparent;
}
.sidebar-tag.sidebar-address {
float: left;
font-size: 9px;
}
.sidebar-label {
float: left;
}
.post-button {
margin: 2px 10px -5px;
float: right;
color: #fff;
}
.page {
width: 100%;
float: left;
clear: both;
}
.popup-text {
margin-top: 10px;
margin-bottom: 20px;
}
.actor {
padding-right: 0px;
text-align: center;
}
.actor.actor-arrow {
min-width: 50px;
}
.actor.actor-score {
margin-right: -10px;
padding-right: 0px;
float: right;
}
.actor.actor-score.actor-score-ballot {
margin-right: 10px;
}
.transaction-data {
max-width: auto;
margin-right: 7px;
float: left;
clear: none;
}
.transaction-value {
margin-top: 2px;
margin-right: -15px;
margin-left: auto;
float: right;
}
.avatar-icon-box {
max-width: 24px;
margin: -9px 5px -15px -3px;
float: left;
}
.option-placeholder {
height: 20px;
min-width: 100px;
margin-bottom: 15px;
border-radius: 25px;
background-color: #f2f2f5;
}
.option-placeholder.fifty {
width: 50%;
}
.option-placeholder.identity-placeholder {
height: 15px;
margin-top: 8px;
background-color: #f2f2f5;
}
.option-placeholder.short {
height: 15px;
margin-top: 5px;
}
.white-link {
border-bottom-color: #fff;
color: #fff;
}
.bottom-10 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-bottom: 10px;
}
.transaction-date {
margin-top: 3px;
margin-bottom: 10px;
margin-left: -4px;
}
.checkbox-mini {
width: 17px;
height: 17px;
margin-top: -2px;
margin-right: 5px;
margin-left: -6px;
padding: 8%;
float: left;
border: 1px solid #6c5b7c;
border-radius: 25px;
background-color: #fff;
}
.foot {
margin-top: 20px;
font-size: 10px;
text-align: center;
text-transform: uppercase;
}
.foot-note {
display: inline-block;
margin-right: 20px;
}
.foot-note-dot {
width: 10px;
height: 10px;
margin: 9px 5px;
float: left;
border-radius: 25px;
background-color: #00bf8f;
}
.foot-note-dot.revoke {
background-color: #ff2752;
}
.foot-note-dot.grant {
background-color: #9b73ca;
}
.foot-note-label {
float: left;
}
.stage-card {
margin-top: 0px;
margin-left: 10px;
}
.max100 {
max-width: 100%;
}
.extra-warning {
width: 100%;
margin-top: -15px;
margin-bottom: 15px;
text-align: left;
}
.collective-profile {
margin-top: -6px;
margin-bottom: 10px;
float: left;
font-size: 12px;
line-height: 16px;
text-align: left;
}
.collective-profile.collective-crypto {
margin-top: 0px;
font-size: 10px;
}
.crypto-address {
max-height: 80px;
max-width: 90%;
margin-right: 10px;
float: left;
border: 1px solid #d6d2d9;
border-radius: 5px;
opacity: 0.6;
cursor: pointer;
}
.crypto-address:hover {
opacity: 1;
}
.text-block {
text-align: center;
}
.crypto-menu {
margin-top: 10px;
margin-bottom: 10px;
}
.crypto-address-label {
font-size: 9px;
text-align: left;
text-transform: none;
}
.heading {
color: #888;
}
.ledger {
display: inline-block;
width: 100%;
}
.vote-reply {
display: inline-block;
width: 100%;
}
.thread {
display: block;
width: 2px;
height: 19px;
margin-right: auto;
margin-left: 10px;
border-right: 1px solid #c9c9c9;
}
.thread.thread-inside {
display: block;
height: 50px;
margin-bottom: -50px;
margin-left: -20px;
}
.ledger-title {
margin-right: -15px;
margin-bottom: 10px;
margin-left: -15px;
}
.inline-block {
display: inline-block;
}
.constituency {
height: 32px;
margin: 7px;
padding-top: 2px;
padding-right: 10px;
padding-left: 10px;
float: right;
border-radius: 5px;
background-color: #e7f9f4;
color: #1ebf92;
font-size: 11px;
text-transform: uppercase;
}
.constituency.constituency-outcast {
background-color: #f5f5f5;
color: #ff2752;
}
.staking-editor {
margin: 0px 10px 5px;
}
.chain-address {
padding-right: 3px;
padding-left: 3px;
float: left;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
color: #888;
font-size: 7px;
line-height: 13px;
}
.chain-ticker {
float: left;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
color: #8a8a8a;
font-size: 7px;
line-height: 13px;
font-weight: 600;
}
.chain {
margin-top: 5px;
cursor: copy;
}
.token {
margin-top: 0px;
color: #fff;
}
.token.token-ledger {
margin-top: 10px;
margin-bottom: 10px;
float: right;
}
.token.token-ledger.token-button {
margin-top: 5px;
margin-bottom: 0px;
margin-left: 5px;
}
.token.token-editor {
margin-top: 5px;
margin-left: 5px;
float: right;
}
.token-ticker {
min-width: 35px;
padding: 3px;
float: left;
border: 1px solid #9696c1;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
background-color: #9695c3;
font-size: 10px;
line-height: 10px;
font-weight: 400;
text-align: center;
}
.token-ticker.token-editor {
margin-top: 7px;
margin-left: 5px;
float: right;
}
.token-balance {
display: inline;
min-width: 35px;
padding: 3px 5px;
float: left;
border: 1px solid #9696c1;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
font-size: 10px;
line-height: 10px;
font-weight: 400;
text-align: right;
text-transform: uppercase;
}
.token-bar {
height: 10px;
margin-top: 10px;
border-radius: 5px;
background-color: #6b6b6b;
}
.token-stake {
margin-top: 2px;
float: right;
color: #aaa;
font-size: 10px;
line-height: 15px;
}
.text-span {
color: #f3f3f3;
}
.token-stake-value {
color: #ddd;
}
.token-list {
display: inline-block;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
}
.float-right {
float: right;
}
.clock-icon {
width: 10px;
height: 10px;
}
.vote-thread {
position: relative;
display: inline-block;
width: 100%;
margin-top: -10px;
margin-bottom: -8px;
margin-left: 3px;
padding: 10px 3px 0px 10px;
border-left: 1px solid #f2f2f5;
}
.vote-thread.vote-thread-context {
border-left-color: transparent;
}
.vote-thread.vote-thread-main {
margin-left: 17px;
padding-right: 17px;
}
.thread-sub {
position: absolute;
display: block;
width: 12px;
height: 100%;
margin-top: -20px;
margin-right: auto;
margin-left: -11px;
float: left;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.thread-needle {
position: absolute;
top: 50%;
width: 10px;
height: 10px;
margin-top: 10px;
margin-left: 1px;
}
.thread-needle.thread-last {
bottom: -10px;
width: 1px;
margin-right: 0px;
margin-left: 0px;
background-color: #ddd;
background-image: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), color-stop(70%, #ddd));
background-image: linear-gradient(180deg, #e6e6e6, #ddd 70%);
}
.thread-needle.thread-reply {
width: 20px;
height: 20px;
margin-top: 0px;
margin-left: -10px;
border-top-style: none;
}
.meta-compressed {
padding-left: 5px;
}
.token-wrapper {
margin-top: 5px;
margin-left: 5px;
}
.margin-top {
margin-top: 10px;
}
.margin-both {
margin-right: 5px;
margin-left: 5px;
float: left;
}
.editor-menu {
margin-top: 20px;
margin-bottom: 8px;
float: left;
}
.electorate-rule {
margin-top: 1px;
margin-right: 2px;
float: left;
font-size: 9px;
text-transform: uppercase;
}
.dropdown-buttons {
display: inline-block;
width: 100%;
margin-top: -5px;
}
.margin-bottom-dead {
margin-bottom: -10px;
}
.margin-top-minus-three {
margin-top: -3px;
}
.token-pending {
display: inline-block;
margin: -1px -3px -1px 5px;
padding: 3px 3px 1px;
float: right;
border-radius: 3px;
background-color: #f9d55b;
color: #8f6e00;
font-size: 8px;
line-height: 8px;
text-transform: uppercase;
}
.token-score {
float: right;
}
.token-wrap {
display: inline-block;
margin-right: 10px;
float: left;
}
.video-tutorial {
margin-top: 15px;
}
.login-button-last {
margin-bottom: 20px;
}
.hero {
display: inline-block;
width: 100%;
min-height: 65px;
padding-bottom: 50px;
background-color: #f2f2f8;
font-size: 18px;
line-height: 26px;
}
.no-underline:hover {
text-decoration: none;
}
.split-landing {
position: absolute;
top: 400px;
}
.hero-background {
display: block;
width: 100%;
height: 100%;
background-color: #6d5c7d;
}
.hero-title {
width: 50%;
max-width: 550px;
margin-bottom: 40px;
margin-left: 5%;
float: left;
text-align: left;
}
.hero-wrapper {
display: block;
margin-right: auto;
margin-left: auto;
}
.hero-call-to-action {
height: 40px;
min-width: 250px;
margin-left: 5%;
padding-right: 30px;
clear: both;
}
.hero-cta-input {
display: block;
width: 60%;
height: 40px;
padding-left: 10px;
float: left;
border: 1px solid transparent;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
background-color: #fff;
color: #000;
font-size: 16px;
}
.hero-cta-input:focus {
border-style: none;
}
.hero-cta-alternative {
margin-top: 8px;
margin-left: 5px;
float: left;
font-size: 14px;
}
.hero-cta-box {
display: inline-block;
height: 40px;
min-width: 340px;
float: left;
border-top-left-radius: 5px;
box-shadow: 0 4px 23px -10px #000;
}
.hero-menu {
display: block;
width: 80%;
margin-right: auto;
margin-left: auto;
float: left;
}
.hero-logo {
max-height: 32px;
margin: 12px 10px;
float: left;
}
.hero-logo:active {
margin-top: 14px;
margin-bottom: 10px;
}
.hero-button {
display: inline-block;
margin-right: 15px;
margin-left: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
.hero-button.hero-button-mobile.hero-signin {
padding-bottom: 0px;
float: right;
cursor: pointer;
}
.hero-button.hero-signin:hover {
border-color: #fff;
}
.hero-menu-link {
color: #7d8499;
font-size: 13px;
line-height: 22px;
font-weight: 400;
text-transform: uppercase;
}
.hero-menu-link:hover {
color: #181f33;
text-decoration: none;
}
.hero-menu-link.hero-menu-link-selected {
color: #0d0d17;
font-weight: 700;
cursor: default;
}
.hero-menu-link.hero-menu-link-signin {
padding: 5px 10px;
border: 1px solid #7d8499;
border-radius: 5px;
}
.hero-menu-link.hero-menu-link-signin.hero-menu-link-signin-active {
border-color: #561072;
background-color: #561072;
color: #fff;
}
.hero-navbar {
position: absolute;
z-index: 10;
overflow: hidden;
width: 100%;
height: 60px;
}
.hero-navbar.hero-navbar-scroller {
border-bottom: 1px solid #e8e8e8;
background-color: #f2f2f8;
}
.hero-demo {
position: absolute;
left: 60%;
width: 400px;
float: right;
text-align: center;
}
.hero-signin {
float: right;
}
.login-button-first {
margin-top: 20px;
}
.body-2 {
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cecece));
background-image: linear-gradient(180deg, #fff, #cecece);
}
.split-post-landing {
position: absolute;
top: 70px;
}
.heading-3 {
font-weight: 500;
}
.walleticon {
display: block;
width: 180px;
height: 180px;
margin: 0px auto 20px;
padding-top: 60px;
padding-bottom: 60px;
border-radius: 90px;
background-color: #f2f2f5;
}
.card-login-label {
font-size: 14px;
line-height: 22px;
}
.padding-left-zero {
padding-left: 0px;
}
@media (max-width: 991px) {
.contract {
margin-right: 15px;
margin-left: 15px;
}
.power {
width: 100%;
}
.power.hundred.power-election {
margin-left: -5px;
text-align: left;
}
.power.power-auto {
width: 100%;
}
.extra.extra-ten {
margin: -10px -5px;
text-align: left;
}
.vote.vote-alternative {
width: 100%;
}
.vote.vote-custom {
width: 100%;
}
.vote.vote-search {
width: 100%;
}
.vote.vote-placeholder {
display: block;
width: 100%;
}
.option-title.input {
max-width: 75%;
}
.option-title.input.option-input {
font-size: 28px;
}
.option-title.option-link {
display: inline-block;
max-width: 100%;
}
.option-title.option-link.option-edit.option-title-long {
max-width: 85%;
}
.option-title.option-link.option-long {
max-width: 90%;
}
.progress-bar {
width: 15%;
}
.main {
min-width: 350px;
margin-left: 0px;
float: right;
}
.option-link {
max-width: 70%;
}
.profile {
position: absolute;
left: 230px;
right: 30px;
float: left;
}
.user {
position: relative;
max-width: 100%;
float: left;
}
.portrait {
width: 200px;
}
.mask {
display: block;
width: 100%;
height: 450px;
background-color: #fff;
}
.mask.interest-profile {
height: 350px;
}
.election {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 5px;
clear: both;
}
.fact {
font-weight: 300;
}
.modal.hide {
display: none;
}
.cast {
right: 15px;
bottom: 15px;
}
.sidebar {
top: 0px;
z-index: 15000;
display: block;
}
.content {
left: 0px;
right: 0px;
padding-right: 0px;
padding-left: 0px;
}
.content.content-agora {
margin-top: 0px;
padding-top: 5px;
box-shadow: none;
}
.half.float-left.transaction-half {
display: block;
}
.agora {
margin-top: -30px;
margin-right: 0px;
margin-left: 0px;
padding-top: 0px;
}
.mobile-editor.hide {
display: none;
}
.event {
margin-left: 0px;
}
.feed-events {
margin-left: 0px;
}
.split {
position: static;
width: 100%;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
float: none;
}
.split.split-right {
position: relative;
left: 0%;
overflow: visible;
width: 100%;
background-color: #f5f5f5;
}
.split.split-left {
width: 100%;
}
.smart {
display: block;
width: 100%;
margin-right: auto;
margin-left: auto;
float: none;
}
.resize {
display: none;
}
.transaction {
display: block;
width: 100%;
margin-top: 0px;
padding-bottom: 10px;
border-top: 1px solid #dbdbdb;
}
.transaction-wrapper {
float: left;
}
.ticket-trim.ticket-trim-down {
height: 3px;
background-color: #f1f1f1;
}
.transaction-actors {
margin-right: 0px;
}
.mobile-editor-topbar {
position: fixed;
background-color: #fff;
}
.hero-title {
width: 80%;
}
.hero-cta-box {
margin-bottom: 10px;
}
.hero-demo {
display: none;
}
}
@media (max-width: 767px) {
body {
padding-bottom: 0px;
}
h1 {
padding-top: 90px;
}
h2 {
font-size: 14px;
font-weight: 400;
}
h3 {
padding-left: 15px;
}
h5 {
font-weight: 400;
}
p {
font-weight: 400;
}
a {
font-weight: 400;
}
blockquote {
font-weight: 400;
}
.paper {
border-radius: 0px;
box-shadow: none;
}
.paper.paper-execute {
border-radius: 0px;
}
.paper.paper-editor {
position: relative;
margin-top: 0px;
margin-right: -15px;
margin-left: -15px;
padding: 0px;
}
.kind {
width: 100px;
}
.icon {
width: 30px;
height: 30px;
}
.declaration {
line-height: 40px;
}
.section.mobile-section {
overflow: scroll;
margin-bottom: 20px;
padding: 6px 12px;
}
.power {
width: 100%;
padding-right: 0px;
padding-left: 0px;
}
.calendar-menu.calendar-menu-active {
margin-bottom: -1px;
}
.symbol.profile-pic {
border-color: #dfdfdf;
}
.symbol.profile-pic:hover {
border-color: #dfdfdf;
}
.symbol.profile-pic:active {
margin-top: 12px;
margin-bottom: 8px;
}
.symbol.profile-pic.profile-pic-navbar:hover {
border-style: solid;
border-color: transparent;
}
.symbol.profile-pic.profile-pic-navbar:active {
margin-top: 3px;
margin-bottom: 3px;
}
.symbol.profile-pic.profile-sign {
margin-left: 0px;
}
.symbol.profile-pic.profile-sign:hover {
border-style: solid;
border-color: #00bf8f;
}
.symbol.profile-pic.profile-sign:active {
box-shadow: none;
}
.symbol.profile-pic.identity-small:active {
margin-top: 1px;
margin-bottom: -1px;
}
.extra.identity-list.avatar-editor {
padding-bottom: 0px;
}
.vote {
width: 100%;
}
.vote.vote-search {
box-shadow: none;
}
.vote.vote-search.vote-feed:hover {
margin-top: 0px;
margin-bottom: 20px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}
.vote.vote-search.vote-feed.vote-delegation {
box-shadow: none;
}
.option {
box-shadow: none;
}
.option-title.option-link {
max-width: 100%;
}
.option-title.option-link.option-edit {
max-width: 295px;
}
.option-title.option-link.option-edit.option-title-long {
max-width: 85%;
}
.option-title.option-link.option-long {
max-width: 80%;
}
.field.headline-field.split {
padding-right: 0px;
}
.field.split {
border-left-width: 0px;
}
.field.split.field-left {
padding-right: 5px;
}
.field.split.field-right {
padding-left: 5px;
}
.field.bio {
border-left: 1px none #000;
}
.input.headline-input {
font-size: 36px;
}
.input.headline-input.input-active {
line-height: 50px;
}
.navbar {
left: 0px;
box-shadow: none;
}
.logo {
padding-left: 0px;
}
.main {
display: none;
width: 40px;
float: right;
}
.option-link {
max-width: 85%;
}
.profile {
position: static;
width: 100%;
text-align: center;
}
.portrait-pic {
width: 200px;
float: none;
}
.user {
width: 100%;
max-width: 100%;
float: none;
clear: both;
text-align: left;
}
.verifier {
font-size: 12px;
line-height: 20px;
}
.portrait {
display: block;
width: auto;
margin-right: auto;
margin-left: auto;
float: none;
}
.mask {
display: none;
}
.score-block {
height: 15px;
}
.search.search-blur {
overflow: hidden;
width: 40px;
float: right;
}
.result.vote-bar {
box-shadow: none;
}
.election {
float: left;
text-align: center;
}
.election-label {
float: none;
}
.modal.hide {
display: none;
}
.rosca.rosca-setter {
margin-top: 5px;
}
.handle {
box-shadow: 0 0 0 1px #cff0e7, inset 0 0 1px 0 #52d4b4;
}
.data {
display: inline-block;
margin-right: 0px;
}
.stage.stage-card {
margin-top: 6px;
}
.context {
left: 10px;
top: auto;
bottom: 10px;
}
.selector-modal {
left: 20px;
right: 20px;
}
.references {
margin-left: 20px;
}
.calendar {
right: 28px;
box-shadow: none;
}
.title-input {
border-left-style: none;
border-left-width: 0px;
}
.title-input.title-input-read {
border-left-style: none;
border-left-width: 0px;
}
.title-input.title-input-void {
width: 90%;
}
.paper-header {
box-shadow: none;
}
.shadow-fake {
left: 25px;
right: 25px;
}
.warning-list {
margin-bottom: 10px;
}
.path {
left: 50px;
}
.authentication {
padding-right: 0px;
}
.popup {
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
width: 100%;
}
.navbar-button.navbar-button-active.navbar-button-action:active {
background-color: transparent;
color: #00bf8f;
}
.avatar-editor {
margin-bottom: 0px;
padding-bottom: 0px;
}
.left {
background-color: #fff;
}
.alert {
width: 90%;
max-width: 360px;
padding-top: 5px;
padding-bottom: 5px;
}
.type.content {
padding-top: 40px;
}
.vote-cta {
width: 100%;
}
.vote-cta.vote-edit {
width: 100%;
}
.polis {
width: 100%;
}
.polis.remove {
width: 100%;
}
.cast {
right: 5px;
bottom: 10px;
width: 60px;
height: 60px;
}
.cast:active {
bottom: 9px;
}
.menu.menu-empty {
font-weight: 400;
}
.menu.menu-empty.menu-footer {
background-color: #fff;
box-shadow: 0 0 20px 10px #fff;
}
.menu-item {
font-weight: 400;
}
.menu-item:hover {
background-color: transparent;
}
.menu-item.menu-item-selected:hover {
background-color: #6d5c7d;
}
.content.content-feed {
padding-right: 10px;
padding-left: 10px;
}
.content.content-agora {
min-width: 0px;
margin-top: -50px;
padding-right: 10px;
padding-left: 10px;
box-shadow: 0 0 0 0 #000;
}
.micro-button.agora-button {
margin-bottom: 5px;
}
.modal-buttons {
margin-bottom: 5px;
}
.menu-button {
opacity: 1;
}
.menu-button:active {
margin-top: 5px;
margin-bottom: 1px;
}
.paper-header-title {
padding-top: 5px;
font-size: 16px;
text-transform: none;
}
.spinner {
padding-left: 0px;
}
.card-title {
margin-top: 5px;
}
.agora {
margin-top: -15px;
}
.mobile-editor {
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
overflow: scroll;
padding-top: 0px;
}
.mobile-editor.hide {
display: none;
}
.split.split-right {
top: 35px;
}
.proposal-feed {
padding-right: 10px;
padding-left: 10px;
}
.vote-quantity {
font-size: 12px;
}
.subfeed-title {
margin-right: 0px;
margin-left: 0px;
}
.modal-title {
font-weight: 700;
}
.mobile-menu.mobile-menu-toolbar {
padding-left: 5px;
}
.mobile-editor-topbar {
position: fixed;
z-index: 20001;
overflow: hidden;
width: 100%;
height: 56px;
margin-top: 0px;
padding-top: 10px;
padding-right: 15px;
padding-left: 15px;
}
.mobile-editor-wrapper {
overflow: scroll;
width: 100%;
padding-top: 10px;
padding-bottom: 20px;
}
.mobile-menu-toolbar-toggle {
width: 50px;
height: 50px;
padding-top: 6px;
padding-bottom: 6px;
float: left;
}
.section-editor-separator {
margin-right: 5px;
margin-left: 5px;
}
.calendar-button:active {
background-color: #00bf8f;
color: #f5f5f5;
}
.actor.actor-score {
right: 0px;
}
.avatar-icon-box {
max-height: 24px;
}
.margin-bottom-dead {
margin-bottom: 0px;
}
.login-button-last {
margin-top: 15px;
margin-bottom: 15px;
}
.hero-title {
margin-left: 40px;
}
.hero-call-to-action {
margin-left: 40px;
}
.hero-cta-box {
box-shadow: none;
}
.hero-menu {
padding-right: 0px;
padding-left: 0px;
}
.hero-button {
display: none;
}
.hero-button.hero-button-mobile {
display: inline-block;
margin-right: 0px;
margin-left: 0px;
float: left;
}
.hero-button.hero-button-mobile.hero-signin {
margin-right: 15px;
}
}
@media (max-width: 479px) {
body {
padding-right: 0px;
padding-left: 0px;
font-size: 16px;
}
p {
font-size: 16px;
line-height: 26px;
}
.paper {
margin-top: 10px;
margin-right: -20px;
margin-left: -20px;
padding: 0px 15px 10px;
box-shadow: none;
}
.paper.paper-comment {
margin-right: 0px;
margin-left: 0px;
}
.kind {
width: 50px;
padding: 5px;
box-shadow: 0 2px 18px -13px #000;
}
.declaration {
position: static;
display: inline;
font-size: 26px;
line-height: 32px;
}
.description.editor {
font-size: 16px;
}
.description.input {
height: 100px;
font-size: 14px;
line-height: 22px;
}
.card {
right: 0px;
width: 100%;
}
.amount {
font-size: 32px;
}
.symbol.profile-pic.tag-delegate {
margin-top: 5px;
margin-bottom: 5px;
}
.semantics {
width: 100%;
}
.tag.input {
font-size: 16px;
}
.tag.input.custom-tag {
max-width: 211px;
}
.selector {
position: relative;
height: 200px;
}
.button {
clear: both;
}
.button.execute {
padding-top: 15px;
padding-bottom: 15px;
font-size: 22px;
line-height: 32px;
}
.button-icon.execute-icon {
width: 32px;
height: 32px;
}
.handwrite {
height: 160px;
}
.highlight {
margin-top: 30px;
margin-left: -10px;
padding-right: 10px;
padding-left: 10px;
font-size: 12px;
line-height: 36px;
}
.vote.vote-search {
box-shadow: none;
}
.vote.vote-search.vote-feed.vote-delegation {
width: 100%;
}
.option-title.input {
height: 40px;
max-width: 75%;
}
.option-title.input.option-input {
font-size: 20px;
}
.option-title.option-link.option-edit {
max-width: 80%;
}
.option-title.option-link.option-edit.option-title-long {
font-size: 16px;
}
.option-title.option-link.option-search {
font-size: 22px;
}
.checkbox.checkbox-custom {
width: 100%;
}
.field.split {
width: 100%;
border-left: 1px none #000;
}
.field.split.field-left {
padding-right: 0px;
}
.status {
overflow: hidden;
}
.progress-bar {
width: 11%;
}
.input {
height: 45px;
}
.input.headline-input {
height: 50px;
font-size: 30px;
}
.input.headline-input.input-active {
line-height: 40px;
}
.action.hash-action {
margin-left: -30px;
}
.action.vote-action {
width: 30px;
height: 30px;
max-width: 45px;
margin-right: -20px;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 10px;
font-size: 14px;
line-height: 30px;
}
.navbar {
left: 0px;
}
.identity-label {
font-size: 15px;
}
.option-link {
margin-bottom: -5px;
}
.user {
margin-left: 0px;
}
.rich-text.editor-draft {
border-left-color: transparent;
}
.rich-text.editor-draft:hover {
border-left-color: transparent;
}
.election {
margin-bottom: 10px;
font-size: 22px;
}
.fact {
font-size: 20px;
}
.fact.fact-timer {
float: left;
}
.election-label {
float: none;
clear: both;
}
.identity-nation {
font-size: 12px;
}
.score-details {
margin-top: 20px;
}
.modal.hide {
display: none;
}
.selector-modal {
left: 0px;
right: 0px;
height: 200px;
}
.selector-warning {
margin-top: 60px;
margin-bottom: 60px;
}
.references {
margin-left: 15px;
}
.title-input {
border-left: 0px none transparent;
}
.title-input:hover {
border-left-color: transparent;
}
.title-input.title-feed {
margin-bottom: 10px;
}
.paper-header.paper-header-empty {
box-shadow: none;
}
.shadow-fake {
left: 20px;
}
.tabs {
display: inline-block;
}
.popup.popup-test.hide {
display: none;
}
.left.hide {
display: none;
}
.type {
padding-right: 0px;
padding-left: 0px;
}
.feed {
padding-right: 0px;
padding-left: 0px;
}
.content.content-agora {
margin-top: -20px;
}
.half {
width: 100%;
}
.micro-menu {
width: 100%;
}
.right.show {
margin-left: 0px;
}
.agora {
margin-top: -45px;
}
.mobile-editor.hide {
display: inline;
}
.mobile-widget-wrapper {
padding-top: 15px;
}
.section-editor-separator {
margin: 10px 5px;
border-top: 1px dotted #00bf8f;
}
.actor {
padding-right: 0px;
}
.transaction-data {
max-width: 100%;
clear: left;
}
} | 0.502686 | 0.065217 |
@import url(https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Orbitron:900);
li {
font-family: 'Lato', sans-serif;
font-size: 18px;
color: #FFFFFF;
list-style-type: none;
}
a {
cursor: pointer;
}
.sub {
font-size: 10px !important;
text-align: center;
color: #FFF;
}
.listz {
margin-left: 25%;
margin-right: 25%;
}
.listz a {
color: #FFF;
background: #DF0030;
padding: 20px;
font-size: 21px;
padding-left: 40px;
padding-right: 40px;
position: absolute;
width: 50%;
text-align: center;
}
.listz a:hover {
background: #F00;
text-decoration: none;
}
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: block;
position: absolute;
background-color: #DF0030;
min-width: 160px;
border: 0;
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: #FFF;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #F00}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #454545;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
margin-bottom: 20px;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #DF0030;
float: right;
font-size: 28px;
font-weight: bold;
font-family: 'Lato', sans-serif;
opacity: 1;
}
.close:hover,
.close:focus {
color: #FF0000;
text-decoration: none;
cursor: pointer;
opacity: 1;
}
/* Add Animation */
@keyframes animatetop {
from {top: -300px; opacity: 0}
to {top: 0; opacity: 1}
}
table, th, td {
border: 3px solid #DF0030;
}
th {
text-align: center;
padding: 7px;
text-transform: uppercase;
}
td {
padding: 10px;
text-align: center;
height: 300%;
cursor: pointer;
}
.teacher-selection {
font-size: 21px;
font-family: 'Lato', sans-serif;
}
body {
font-family: 'Lato', sans-serif;
background: #353535;
}
@media all and (device-width: 768px) and (device-height: 1024px) {
body {
font-family: 'Lato', sans-serif;
background: #353535;
cursor: pointer;
}
}
button {
background-color: Transparent;
background-repeat:no-repeat;
border: none;
cursor:pointer;
overflow: hidden;
outline:none;
}
.big p {
font-family: 'Orbitron', sans-serif;
font-size: 50px;
color: #DF0030;
text-align: center;
}
.container p {
font-family: 'Lato', sans-serif;
font-size: 37px;
color: #FFFFFF;
text-align: center;
}
.plus {
color: #DF0030;
font-size: 75px;
margin: 0;
padding: 0;
}
.plus:hover {
color: #DF0030;
}
.selection {
font-size: 4pt;
}
/*the container must be positioned relative:*/
.custom-select {
position: relative;
font-family: Arial;
}
.custom-select select {
display: none; /*hide original SELECT element:*/
}
.select-selected {
background-color: #DB2929;
}
/*style the arrow inside the select element:*/
.select-selected:after {
position: absolute;
content: "";
top: 14px;
right: 10px;
width: 0;
height: 0;
border: 6px solid transparent;
border-color: #fff transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
border-color: transparent transparent #fff transparent;
top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
color: #ffffff;
padding: 8px 16px;
border: 1px solid transparent;
border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
cursor: pointer;
}
/*style items (options):*/
.select-items {
position: absolute;
background-color: rgb(158, 29, 29);
top: 100%;
left: 0;
right: 0;
z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
display: none;
}
.select-items div:hover {
background-color: rgba(0, 0, 0, 0.1);
}
body {
font-family: 'Lato', sans-serif;
background: #353535;
color: #FFF;
}
.jumbotron h1 {
color: #353535;
}
footer {
margin-bottom: 0 !important;
margin-top: 80px;
}
footer p {
margin: 0;
padding: 0;
}
span.icon {
margin: 0 5px;
color: #D64541;
}
h2 {
color: #BDC3C7;
text-transform: uppercase;
letter-spacing: 1px;
}
.mrng-60-top {
margin-top: 60px;
}
/* Global Button Styles */
a.animated-button:link, a.animated-button:visited {
position: relative;
display: block;
margin: 30px auto 0;
padding: 14px 15px;
color: #fff;
font-size:14px;
font-weight: bold;
text-align: center;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
letter-spacing: .08em;
border-radius: 0;
text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
a.animated-button:link:after, a.animated-button:visited:after {
content: "";
position: absolute;
height: 0%;
left: 50%;
top: 50%;
width: 150%;
z-index: -1;
-webkit-transition: all 0.75s ease;
-moz-transition: all 0.75s ease;
-o-transition: all 0.75s ease;
transition: all 0.75s ease;
}
a.animated-button:link:hover, a.animated-button:visited:hover {
color: #FFF;
text-shadow: none;
}
a.animated-button:link:hover:after, a.animated-button:visited:hover:after {
height: 450%;
}
a.animated-button:link, a.animated-button:visited {
position: relative;
display: block;
margin: 30px auto 0;
padding: 14px 15px;
color: #fff;
font-size:14px;
border-radius: 0;
font-weight: bold;
text-align: center;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
letter-spacing: .08em;
text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
/* Victoria Buttons */
a.animated-button.victoria-one {
border: 2px solid #D24D57;
}
a.animated-button.victoria-one:after {
background: #D24D57;
-moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}
a.animated-button.victoria-two {
border: 2px solid #D24D57;
}
a.animated-button.victoria-two:after {
background: #D24D57;
-moz-transform: translateX(-50%) translateY(-50%) rotate(25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(25deg);
transform: translateX(-50%) translateY(-50%) rotate(25deg);
}
a.animated-button.victoria-three {
border: 2px solid #D24D57;
}
a.animated-button.victoria-three:after {
background: #D24D57;
opacity: .5;
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
a.animated-button.victoria-three:hover:after {
height: 140%;
opacity: 1;
}
a.animated-button.victoria-four {
border: 2px solid #C00909;
}
a.animated-button.victoria-four:after {
background: #C00909;
opacity: .5;
-moz-transform: translateY(-50%) translateX(-50%) rotate(90deg);
-ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
-webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
a.animated-button.victoria-four:hover:after {
opacity: 1;
height: 600% !important;
}
/* Sandy Buttons */
a.animated-button.sandy-one {
border: 2px solid #AEA8D3;
color: #FFF;
}
a.animated-button.sandy-one:after {
border: 3px solid #AEA8D3;
opacity: 0;
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
a.animated-button.sandy-one:hover:after {
height: 120% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.sandy-two {
border: 2px solid #AEA8D3;
color: #FFF;
}
a.animated-button.sandy-two:after {
border: 3px solid #AEA8D3;
opacity: 0;
-moz-transform: translateY(-50%) translateX(-50%) rotate(90deg);
-ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
-webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
a.animated-button.sandy-two:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.sandy-three {
border: 2px solid #AEA8D3;
color: #FFF;
}
a.animated-button.sandy-three:after {
border: 3px solid #AEA8D3;
opacity: 0;
-moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}
a.animated-button.sandy-three:hover:after {
height: 400% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.sandy-four {
border: 2px solid #AEA8D3;
color: #FFF;
}
a.animated-button.sandy-four:after {
border: 3px solid #AEA8D3;
opacity: 0;
-moz-transform: translateY(-50%) translateX(-50%) rotate(25deg);
-ms-transform: translateY(-50%) translateX(-50%) rotate(25deg);
-webkit-transform: translateY(-50%) translateX(-50%) rotate(25deg);
transform: translateY(-50%) translateX(-50%) rotate(25deg);
}
a.animated-button.sandy-four:hover:after {
height: 400% !important;
opacity: 1;
color: #FFF;
}
/* Gibson Buttons */
a.animated-button.gibson-one {
border: 2px solid #65b37a;
color: #FFF;
}
a.animated-button.gibson-one:after {
opacity: 0;
background-image: -webkit-linear-gradient( transparent 50%, rgba(101,179,122,0.2) 50%);
background-image: -moz-linear-gradient(transparent 50%, rgba(101,179,122,0.2) 50%);
background-size: 10px 10px;
-moz-transform: translateX(-50%) translateY(-50%) rotate(25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(25deg);
transform: translateX(-50%) translateY(-50%) rotate(25deg);
}
a.animated-button.gibson-one:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.gibson-two {
border: 2px solid #65b37a;
color: #FFF;
}
a.animated-button.gibson-two:after {
opacity: 0;
background-image: -webkit-linear-gradient( transparent 50%, rgba(101,179,122,0.2) 50%);
background-image: -moz-linear-gradient(transparent 50%, rgba(101,179,122,0.2) 50%);
background-size: 10px 10px;
-moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}
a.animated-button.gibson-two:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.gibson-three {
border: 2px solid #65b37a;
color: #FFF;
}
a.animated-button.gibson-three:after {
opacity: 0;
background-image: -webkit-linear-gradient( transparent 50%, rgba(101,179,122,0.2) 50%);
background-image: -moz-linear-gradient(transparent 50%, rgba(101,179,122,0.2) 50%);
background-size: 10px 10px;
-moz-transform: translateX(-50%) translateY(-50%) rotate(90deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
a.animated-button.gibson-three:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.gibson-four {
border: 2px solid #65b37a;
color: #FFF;
}
a.animated-button.gibson-four:after {
opacity: 0;
background-image: -webkit-linear-gradient( transparent 50%, rgba(101,179,122,0.2) 50%);
background-image: -moz-linear-gradient(transparent 50%, rgba(101,179,122,0.2) 50%);
background-size: 10px 10px;
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
a.animated-button.gibson-four:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
/* Thar Buttons */
a.animated-button.thar-one {
color: #fff;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}
a.animated-button.thar-one:hover {
color: #000 !important;
background-color: transparent;
text-shadow: none;
}
a.animated-button.thar-one:hover:before {
bottom: 0%;
top: auto;
height: 100%;
}
a.animated-button.thar-one:before {
display: block;
position: absolute;
left: 0px;
top: 0px;
height: 0px;
width: 100%;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}
a.animated-button.thar-two {
color: #fff;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}
a.animated-button.thar-two:hover {
color: #000 !important;
background-color: transparent;
text-shadow: ntwo;
}
a.animated-button.thar-two:hover:before {
top: 0%;
bottom: auto;
height: 100%;
}
a.animated-button.thar-two:before {
display: block;
position: absolute;
left: 0px;
bottom: 0px;
height: 0px;
width: 100%;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}
a.animated-button.thar-three {
color: #fff;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-button.thar-three:hover {
color: #000 !important;
background-color: transparent;
text-shadow: nthree;
}
a.animated-button.thar-three:hover:before {
left: 0%;
right: auto;
width: 100%;
}
a.animated-button.thar-three:before {
display: block;
position: absolute;
top: 0px;
right: 0px;
height: 100%;
width: 0px;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-button.thar-four {
color: #fff;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-button.thar-four:hover {
color: #000 !important;
background-color: transparent;
text-shadow: nfour;
}
a.animated-button.thar-four:hover:before {
right: 0%;
left: auto;
width: 100%;
}
a.animated-button.thar-four:before {
display: block;
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 0px;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
} | style.css | @import url(https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Orbitron:900);
li {
font-family: 'Lato', sans-serif;
font-size: 18px;
color: #FFFFFF;
list-style-type: none;
}
a {
cursor: pointer;
}
.sub {
font-size: 10px !important;
text-align: center;
color: #FFF;
}
.listz {
margin-left: 25%;
margin-right: 25%;
}
.listz a {
color: #FFF;
background: #DF0030;
padding: 20px;
font-size: 21px;
padding-left: 40px;
padding-right: 40px;
position: absolute;
width: 50%;
text-align: center;
}
.listz a:hover {
background: #F00;
text-decoration: none;
}
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: block;
position: absolute;
background-color: #DF0030;
min-width: 160px;
border: 0;
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: #FFF;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #F00}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
background-color: #454545;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
margin-bottom: 20px;
width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
color: #DF0030;
float: right;
font-size: 28px;
font-weight: bold;
font-family: 'Lato', sans-serif;
opacity: 1;
}
.close:hover,
.close:focus {
color: #FF0000;
text-decoration: none;
cursor: pointer;
opacity: 1;
}
/* Add Animation */
@keyframes animatetop {
from {top: -300px; opacity: 0}
to {top: 0; opacity: 1}
}
table, th, td {
border: 3px solid #DF0030;
}
th {
text-align: center;
padding: 7px;
text-transform: uppercase;
}
td {
padding: 10px;
text-align: center;
height: 300%;
cursor: pointer;
}
.teacher-selection {
font-size: 21px;
font-family: 'Lato', sans-serif;
}
body {
font-family: 'Lato', sans-serif;
background: #353535;
}
@media all and (device-width: 768px) and (device-height: 1024px) {
body {
font-family: 'Lato', sans-serif;
background: #353535;
cursor: pointer;
}
}
button {
background-color: Transparent;
background-repeat:no-repeat;
border: none;
cursor:pointer;
overflow: hidden;
outline:none;
}
.big p {
font-family: 'Orbitron', sans-serif;
font-size: 50px;
color: #DF0030;
text-align: center;
}
.container p {
font-family: 'Lato', sans-serif;
font-size: 37px;
color: #FFFFFF;
text-align: center;
}
.plus {
color: #DF0030;
font-size: 75px;
margin: 0;
padding: 0;
}
.plus:hover {
color: #DF0030;
}
.selection {
font-size: 4pt;
}
/*the container must be positioned relative:*/
.custom-select {
position: relative;
font-family: Arial;
}
.custom-select select {
display: none; /*hide original SELECT element:*/
}
.select-selected {
background-color: #DB2929;
}
/*style the arrow inside the select element:*/
.select-selected:after {
position: absolute;
content: "";
top: 14px;
right: 10px;
width: 0;
height: 0;
border: 6px solid transparent;
border-color: #fff transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
border-color: transparent transparent #fff transparent;
top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
color: #ffffff;
padding: 8px 16px;
border: 1px solid transparent;
border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
cursor: pointer;
}
/*style items (options):*/
.select-items {
position: absolute;
background-color: rgb(158, 29, 29);
top: 100%;
left: 0;
right: 0;
z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
display: none;
}
.select-items div:hover {
background-color: rgba(0, 0, 0, 0.1);
}
body {
font-family: 'Lato', sans-serif;
background: #353535;
color: #FFF;
}
.jumbotron h1 {
color: #353535;
}
footer {
margin-bottom: 0 !important;
margin-top: 80px;
}
footer p {
margin: 0;
padding: 0;
}
span.icon {
margin: 0 5px;
color: #D64541;
}
h2 {
color: #BDC3C7;
text-transform: uppercase;
letter-spacing: 1px;
}
.mrng-60-top {
margin-top: 60px;
}
/* Global Button Styles */
a.animated-button:link, a.animated-button:visited {
position: relative;
display: block;
margin: 30px auto 0;
padding: 14px 15px;
color: #fff;
font-size:14px;
font-weight: bold;
text-align: center;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
letter-spacing: .08em;
border-radius: 0;
text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
a.animated-button:link:after, a.animated-button:visited:after {
content: "";
position: absolute;
height: 0%;
left: 50%;
top: 50%;
width: 150%;
z-index: -1;
-webkit-transition: all 0.75s ease;
-moz-transition: all 0.75s ease;
-o-transition: all 0.75s ease;
transition: all 0.75s ease;
}
a.animated-button:link:hover, a.animated-button:visited:hover {
color: #FFF;
text-shadow: none;
}
a.animated-button:link:hover:after, a.animated-button:visited:hover:after {
height: 450%;
}
a.animated-button:link, a.animated-button:visited {
position: relative;
display: block;
margin: 30px auto 0;
padding: 14px 15px;
color: #fff;
font-size:14px;
border-radius: 0;
font-weight: bold;
text-align: center;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
letter-spacing: .08em;
text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
/* Victoria Buttons */
a.animated-button.victoria-one {
border: 2px solid #D24D57;
}
a.animated-button.victoria-one:after {
background: #D24D57;
-moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}
a.animated-button.victoria-two {
border: 2px solid #D24D57;
}
a.animated-button.victoria-two:after {
background: #D24D57;
-moz-transform: translateX(-50%) translateY(-50%) rotate(25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(25deg);
transform: translateX(-50%) translateY(-50%) rotate(25deg);
}
a.animated-button.victoria-three {
border: 2px solid #D24D57;
}
a.animated-button.victoria-three:after {
background: #D24D57;
opacity: .5;
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
a.animated-button.victoria-three:hover:after {
height: 140%;
opacity: 1;
}
a.animated-button.victoria-four {
border: 2px solid #C00909;
}
a.animated-button.victoria-four:after {
background: #C00909;
opacity: .5;
-moz-transform: translateY(-50%) translateX(-50%) rotate(90deg);
-ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
-webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
a.animated-button.victoria-four:hover:after {
opacity: 1;
height: 600% !important;
}
/* Sandy Buttons */
a.animated-button.sandy-one {
border: 2px solid #AEA8D3;
color: #FFF;
}
a.animated-button.sandy-one:after {
border: 3px solid #AEA8D3;
opacity: 0;
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
a.animated-button.sandy-one:hover:after {
height: 120% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.sandy-two {
border: 2px solid #AEA8D3;
color: #FFF;
}
a.animated-button.sandy-two:after {
border: 3px solid #AEA8D3;
opacity: 0;
-moz-transform: translateY(-50%) translateX(-50%) rotate(90deg);
-ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
-webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
a.animated-button.sandy-two:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.sandy-three {
border: 2px solid #AEA8D3;
color: #FFF;
}
a.animated-button.sandy-three:after {
border: 3px solid #AEA8D3;
opacity: 0;
-moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}
a.animated-button.sandy-three:hover:after {
height: 400% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.sandy-four {
border: 2px solid #AEA8D3;
color: #FFF;
}
a.animated-button.sandy-four:after {
border: 3px solid #AEA8D3;
opacity: 0;
-moz-transform: translateY(-50%) translateX(-50%) rotate(25deg);
-ms-transform: translateY(-50%) translateX(-50%) rotate(25deg);
-webkit-transform: translateY(-50%) translateX(-50%) rotate(25deg);
transform: translateY(-50%) translateX(-50%) rotate(25deg);
}
a.animated-button.sandy-four:hover:after {
height: 400% !important;
opacity: 1;
color: #FFF;
}
/* Gibson Buttons */
a.animated-button.gibson-one {
border: 2px solid #65b37a;
color: #FFF;
}
a.animated-button.gibson-one:after {
opacity: 0;
background-image: -webkit-linear-gradient( transparent 50%, rgba(101,179,122,0.2) 50%);
background-image: -moz-linear-gradient(transparent 50%, rgba(101,179,122,0.2) 50%);
background-size: 10px 10px;
-moz-transform: translateX(-50%) translateY(-50%) rotate(25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(25deg);
transform: translateX(-50%) translateY(-50%) rotate(25deg);
}
a.animated-button.gibson-one:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.gibson-two {
border: 2px solid #65b37a;
color: #FFF;
}
a.animated-button.gibson-two:after {
opacity: 0;
background-image: -webkit-linear-gradient( transparent 50%, rgba(101,179,122,0.2) 50%);
background-image: -moz-linear-gradient(transparent 50%, rgba(101,179,122,0.2) 50%);
background-size: 10px 10px;
-moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}
a.animated-button.gibson-two:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.gibson-three {
border: 2px solid #65b37a;
color: #FFF;
}
a.animated-button.gibson-three:after {
opacity: 0;
background-image: -webkit-linear-gradient( transparent 50%, rgba(101,179,122,0.2) 50%);
background-image: -moz-linear-gradient(transparent 50%, rgba(101,179,122,0.2) 50%);
background-size: 10px 10px;
-moz-transform: translateX(-50%) translateY(-50%) rotate(90deg);
-ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
a.animated-button.gibson-three:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
a.animated-button.gibson-four {
border: 2px solid #65b37a;
color: #FFF;
}
a.animated-button.gibson-four:after {
opacity: 0;
background-image: -webkit-linear-gradient( transparent 50%, rgba(101,179,122,0.2) 50%);
background-image: -moz-linear-gradient(transparent 50%, rgba(101,179,122,0.2) 50%);
background-size: 10px 10px;
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
a.animated-button.gibson-four:hover:after {
height: 600% !important;
opacity: 1;
color: #FFF;
}
/* Thar Buttons */
a.animated-button.thar-one {
color: #fff;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}
a.animated-button.thar-one:hover {
color: #000 !important;
background-color: transparent;
text-shadow: none;
}
a.animated-button.thar-one:hover:before {
bottom: 0%;
top: auto;
height: 100%;
}
a.animated-button.thar-one:before {
display: block;
position: absolute;
left: 0px;
top: 0px;
height: 0px;
width: 100%;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}
a.animated-button.thar-two {
color: #fff;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}
a.animated-button.thar-two:hover {
color: #000 !important;
background-color: transparent;
text-shadow: ntwo;
}
a.animated-button.thar-two:hover:before {
top: 0%;
bottom: auto;
height: 100%;
}
a.animated-button.thar-two:before {
display: block;
position: absolute;
left: 0px;
bottom: 0px;
height: 0px;
width: 100%;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}
a.animated-button.thar-three {
color: #fff;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-button.thar-three:hover {
color: #000 !important;
background-color: transparent;
text-shadow: nthree;
}
a.animated-button.thar-three:hover:before {
left: 0%;
right: auto;
width: 100%;
}
a.animated-button.thar-three:before {
display: block;
position: absolute;
top: 0px;
right: 0px;
height: 100%;
width: 0px;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-button.thar-four {
color: #fff;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-button.thar-four:hover {
color: #000 !important;
background-color: transparent;
text-shadow: nfour;
}
a.animated-button.thar-four:hover:before {
right: 0%;
left: auto;
width: 100%;
}
a.animated-button.thar-four:before {
display: block;
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 0px;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
} | 0.455199 | 0.084417 |
@import url('https://fonts.googleapis.com/css2?family=Hubballi&family=Montserrat&family=Poppins:wght@300;400&family=Roboto:wght@300&display=swap');
body{
margin:0; /*Removing browser's padding & margin */
padding:0;
line-height:1.2;
font-family: 'Poppins', sans-serif;
background-color: #ffbaa9;
}
*{
box-sizing: border-box;
margin:0;
}
/* Navbar */
nav{
position:fixed;
top:0;
right:0;
left:0;
font-family: 'Hubballi', cursive;
padding:0.4rem;
z-index: 8;
width: 100vw;
height:3.5rem;
background-color: #FF5C58;
}
nav .brand-name{
float:left;
width:40%;
height:100%;
padding:1rem 0 1rem 1rem;
display: flex;
align-items: center;
font-size: 1.6rem;
font-weight:bolder;
color:#ffffff;
}
nav .nav-links{
display:flex;
justify-content: center;
align-items: center;
float: right;
padding:0;
width:60%;
height: 100%;
}
nav .nav-links li{
list-style: none;
margin:0 0 0 3rem;
padding: 0;
}
nav .nav-links a{
text-decoration: none;
display: block;
font-size: 1.4rem;
font-weight:600;
padding:0.4rem;
margin: 0;
color: white;
}
nav .nav-links a:hover{
color:#feda3a;
transform:scale(1.15);
}
/* Hamburger menu */
#hamburger{
position:absolute;
top:-6.25rem;
}
nav .hamburger-icon{
position:absolute;
right:0;
top:0;
transform:translate(-50%);
display:none;
}
nav .hamburger-icon .line{
width:1.875rem;
height:0.3125rem;
background-color: rgb(255, 255, 255);
margin:0.3125rem;
border-radius:0.1875rem;
}
/* Making navbar responsive */
@media screen and (max-width:768px){
nav .brand-name{
width:auto;
justify-content: center;
float:none;
}
nav .nav-links{
float:none;
position:fixed;
z-index:10;
left:0;
right:0;
top:3.48rem;
bottom:100%;
background-color:rgba(250, 148, 123, 0.8);
background-color: rgba(255, 209, 110, 0.7);
flex-direction:column ;
justify-content: center;
line-height: 4rem;
width:auto;
height: auto;
overflow:hidden;
transition:all 0.5s ease-in-out;
}
nav .hamburger-icon{
display:block;
margin-top: 0.6rem;
}
nav .nav-links a{
font-size: 1.6rem;
font-weight: bolder;
}
nav .hamburger-icon{
display: block;
}
nav :checked ~ .nav-links{
bottom:0;
}
}
/* Navbar end */
/* Cards section */
img{
max-width:100%;
max-height:80%;
vertical-align: middle;
border:0.25rem solid rgb(255, 255, 255,0.85);
}
.recipe-title{
max-width: 100%;
max-height:20%;
height:5.5rem;
background-color: #ffffff;
opacity: 0.8;
text-align: center;
padding-top:1.5rem;
border-radius:0 0 0.5rem 0.5rem;
}
.recipe-title-name{
color:rgb(46, 45, 46) ;
font-size: 1.4rem;
font-weight: 600;
background-color: rgba(255, 253, 143, 0.8);
}
.row{
display: flex;
flex-wrap: wrap;
}
.container{
max-width:65rem;
margin:auto;
margin-top:3rem;
}
.main-card{
min-height: 100vh;
padding: 100px 0;
}
.main-card .card-content{
flex:0 0 calc(33.33% - 30px);
margin:0 15px 30px;
perspective: 1000px; /*for 3d effect*/
}
.main-card .card-content-inner{
box-shadow: 0 0 10px #be8797;
position: relative;
transform-style: preserve-3d;
transition: all 1.5s ease;
width:auto;
border-radius:0.5rem;
}
.main-card .card-content-front img{
width: 100%;
border-radius:0.5rem 0.5rem 0 0;
}
.main-card .card-content-front,
.main-card .card-content-back{
backface-visibility: hidden;
}
.main-card .card-content-back{
background-color: #feffc3;
position: absolute;
left:0;
top:0;
padding: 0.75rem;
width: 100%;
height: 100%;
border-radius: 0.5rem;
display: flex;
transform: rotateY(180deg);
}
.main-card .card-content-back h3{
font-size: 1.25rem;
color: #313030;
margin:0 0 0.25rem;
}
.main-card .card-content-back p{
font-size: 0.9rem;
color: #fd4444;
margin:0;
}
.card-content-back hr{
border:1.5px solid rgb(255, 255, 255);
}
.main-card .card-content:hover .card-content-inner{
transform: rotateY(180deg);
}
#pear-para{
font-size: 0.7rem;
}
#pear-li{
font-size:0.7rem;
list-style-type: disc;
color: rgb(43, 41, 41);
}
/* Making cards responsive*/
@media(max-width: 991px){
.main-card .card-content {
flex: 0 0 calc(50% - 30px);
}
}
@media(max-width: 767px){
.main-card .card-content {
flex: 0 0 calc(100% - 30px);
}
}
/* About-section */
#About{
display: flex;
justify-content: center;
text-align: center;
padding:1.8rem;
margin:0.6rem;
font-size:1.1rem;
color:#f70b07;
line-height:1.8rem;
backdrop-filter:blur(0.8rem);
background-color: rgb(255,255,255,0.9);
border-radius:0.4rem;
}
/* Footer section */
footer{
padding: 1rem;
margin-top:1rem;
bottom:0;
width:100%;
height:5rem;
text-align:center;
background-color:#76fadb;
color:rgb(31, 16, 2);
line-height:1.5rem;
font-size: 1.1rem;
}
footer hr{
margin:0;
padding:0;
background-color: #ffffff;
border:none;
width: 100%;
height:0.2rem;
}
footer p{
padding:1rem 0 0.8rem 0;
color:#4d4545;
} | Web Development/Basic/Drinks Recipe Website(FruitNotBooze)/style.css | @import url('https://fonts.googleapis.com/css2?family=Hubballi&family=Montserrat&family=Poppins:wght@300;400&family=Roboto:wght@300&display=swap');
body{
margin:0; /*Removing browser's padding & margin */
padding:0;
line-height:1.2;
font-family: 'Poppins', sans-serif;
background-color: #ffbaa9;
}
*{
box-sizing: border-box;
margin:0;
}
/* Navbar */
nav{
position:fixed;
top:0;
right:0;
left:0;
font-family: 'Hubballi', cursive;
padding:0.4rem;
z-index: 8;
width: 100vw;
height:3.5rem;
background-color: #FF5C58;
}
nav .brand-name{
float:left;
width:40%;
height:100%;
padding:1rem 0 1rem 1rem;
display: flex;
align-items: center;
font-size: 1.6rem;
font-weight:bolder;
color:#ffffff;
}
nav .nav-links{
display:flex;
justify-content: center;
align-items: center;
float: right;
padding:0;
width:60%;
height: 100%;
}
nav .nav-links li{
list-style: none;
margin:0 0 0 3rem;
padding: 0;
}
nav .nav-links a{
text-decoration: none;
display: block;
font-size: 1.4rem;
font-weight:600;
padding:0.4rem;
margin: 0;
color: white;
}
nav .nav-links a:hover{
color:#feda3a;
transform:scale(1.15);
}
/* Hamburger menu */
#hamburger{
position:absolute;
top:-6.25rem;
}
nav .hamburger-icon{
position:absolute;
right:0;
top:0;
transform:translate(-50%);
display:none;
}
nav .hamburger-icon .line{
width:1.875rem;
height:0.3125rem;
background-color: rgb(255, 255, 255);
margin:0.3125rem;
border-radius:0.1875rem;
}
/* Making navbar responsive */
@media screen and (max-width:768px){
nav .brand-name{
width:auto;
justify-content: center;
float:none;
}
nav .nav-links{
float:none;
position:fixed;
z-index:10;
left:0;
right:0;
top:3.48rem;
bottom:100%;
background-color:rgba(250, 148, 123, 0.8);
background-color: rgba(255, 209, 110, 0.7);
flex-direction:column ;
justify-content: center;
line-height: 4rem;
width:auto;
height: auto;
overflow:hidden;
transition:all 0.5s ease-in-out;
}
nav .hamburger-icon{
display:block;
margin-top: 0.6rem;
}
nav .nav-links a{
font-size: 1.6rem;
font-weight: bolder;
}
nav .hamburger-icon{
display: block;
}
nav :checked ~ .nav-links{
bottom:0;
}
}
/* Navbar end */
/* Cards section */
img{
max-width:100%;
max-height:80%;
vertical-align: middle;
border:0.25rem solid rgb(255, 255, 255,0.85);
}
.recipe-title{
max-width: 100%;
max-height:20%;
height:5.5rem;
background-color: #ffffff;
opacity: 0.8;
text-align: center;
padding-top:1.5rem;
border-radius:0 0 0.5rem 0.5rem;
}
.recipe-title-name{
color:rgb(46, 45, 46) ;
font-size: 1.4rem;
font-weight: 600;
background-color: rgba(255, 253, 143, 0.8);
}
.row{
display: flex;
flex-wrap: wrap;
}
.container{
max-width:65rem;
margin:auto;
margin-top:3rem;
}
.main-card{
min-height: 100vh;
padding: 100px 0;
}
.main-card .card-content{
flex:0 0 calc(33.33% - 30px);
margin:0 15px 30px;
perspective: 1000px; /*for 3d effect*/
}
.main-card .card-content-inner{
box-shadow: 0 0 10px #be8797;
position: relative;
transform-style: preserve-3d;
transition: all 1.5s ease;
width:auto;
border-radius:0.5rem;
}
.main-card .card-content-front img{
width: 100%;
border-radius:0.5rem 0.5rem 0 0;
}
.main-card .card-content-front,
.main-card .card-content-back{
backface-visibility: hidden;
}
.main-card .card-content-back{
background-color: #feffc3;
position: absolute;
left:0;
top:0;
padding: 0.75rem;
width: 100%;
height: 100%;
border-radius: 0.5rem;
display: flex;
transform: rotateY(180deg);
}
.main-card .card-content-back h3{
font-size: 1.25rem;
color: #313030;
margin:0 0 0.25rem;
}
.main-card .card-content-back p{
font-size: 0.9rem;
color: #fd4444;
margin:0;
}
.card-content-back hr{
border:1.5px solid rgb(255, 255, 255);
}
.main-card .card-content:hover .card-content-inner{
transform: rotateY(180deg);
}
#pear-para{
font-size: 0.7rem;
}
#pear-li{
font-size:0.7rem;
list-style-type: disc;
color: rgb(43, 41, 41);
}
/* Making cards responsive*/
@media(max-width: 991px){
.main-card .card-content {
flex: 0 0 calc(50% - 30px);
}
}
@media(max-width: 767px){
.main-card .card-content {
flex: 0 0 calc(100% - 30px);
}
}
/* About-section */
#About{
display: flex;
justify-content: center;
text-align: center;
padding:1.8rem;
margin:0.6rem;
font-size:1.1rem;
color:#f70b07;
line-height:1.8rem;
backdrop-filter:blur(0.8rem);
background-color: rgb(255,255,255,0.9);
border-radius:0.4rem;
}
/* Footer section */
footer{
padding: 1rem;
margin-top:1rem;
bottom:0;
width:100%;
height:5rem;
text-align:center;
background-color:#76fadb;
color:rgb(31, 16, 2);
line-height:1.5rem;
font-size: 1.1rem;
}
footer hr{
margin:0;
padding:0;
background-color: #ffffff;
border:none;
width: 100%;
height:0.2rem;
}
footer p{
padding:1rem 0 0.8rem 0;
color:#4d4545;
} | 0.266739 | 0.042503 |
body {
/* height: 100%; */
margin: 0;
padding: 0;
width: 100vw;
overflow-y: hidden;
background-color: #FDF2DF;
height: 100vh;
font-size: 18px;
font-family: '<NAME>', cursive;
}
p {
font-size: 18px;
font-family: '<NAME>', cursive;
}
a {
font-size: 18px;
font-family: '<NAME>', cursive;
}
li {
font-size: 18px;
font-family: '<NAME>', cursive;
}
#map {
height: 92vh;
/* display: initial; */
/* z-index: -1; */
}
input[type=range]+.thumb {
background-color: #e6920c;
}
span {
color: black;
}
label {
color: black;
font-size: 18px;
}
.mapboxgl-popup {
max-width: 400px;
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.loader {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
/* background-repeat: no-repeat; */
background-color: orange;
/* background-position: center; */
}
.loader:before, .loader:after {
content: "";
width: 40px;
height: 40px;
border: 8px solid rgba(255, 255, 255, 0.5);
border-radius: 10px;
position: absolute;
top: 50%;
left: 50%;
}
.loader:before {
-webkit-animation: animate 2s infinite linear;
animation: animate 2s infinite linear;
}
.loader:after {
-webkit-animation: animate2 2s infinite linear;
animation: animate2 2s infinite linear;
}
@-webkit-keyframes animate {
100% {
-webkit-transform: rotate(180deg) skew(360deg);
transform: rotate(180deg) skew(360deg);
}
}
@keyframes animate {
100% {
-webkit-transform: rotate(180deg) skew(360deg);
transform: rotate(180deg) skew(360deg);
}
}
@-webkit-keyframes animate2 {
100% {
-webkit-transform: rotate(-180deg) skew(-360deg);
transform: rotate(-180deg) skew(-360deg);
}
}
@keyframes animate2 {
100% {
-webkit-transform: rotate(-180deg) skew(-360deg);
transform: rotate(-180deg) skew(-360deg);
}
}
#layergroup {
background: #fff;
position: absolute;
z-index: 1;
top: 80px;
right: 10px;
border-radius: 3px;
width: 120px;
box-shadow: 2px 4px rgba(15, 15, 15, 0.582);
/* border: 1px solid rgba(0, 0, 0, 0.4); */
font-family: 'Open Sans', sans-serif;
}
#layergroup a {
font-size: 13px;
color: #404040;
display: block;
margin: 0;
padding: 0;
padding: 10px;
text-decoration: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
text-align: center;
}
#layergroup a:last-child {
border: none;
}
#layergroup a:hover {
background-color: #f8f8f8;
color: #404040;
}
#layergroup a.active {
background-color: #d4772a;
color: #ffffff;
}
#layergroup a.active:hover {
background: #be863c;
} | css/style.css | body {
/* height: 100%; */
margin: 0;
padding: 0;
width: 100vw;
overflow-y: hidden;
background-color: #FDF2DF;
height: 100vh;
font-size: 18px;
font-family: '<NAME>', cursive;
}
p {
font-size: 18px;
font-family: '<NAME>', cursive;
}
a {
font-size: 18px;
font-family: '<NAME>', cursive;
}
li {
font-size: 18px;
font-family: '<NAME>', cursive;
}
#map {
height: 92vh;
/* display: initial; */
/* z-index: -1; */
}
input[type=range]+.thumb {
background-color: #e6920c;
}
span {
color: black;
}
label {
color: black;
font-size: 18px;
}
.mapboxgl-popup {
max-width: 400px;
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.loader {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
/* background-repeat: no-repeat; */
background-color: orange;
/* background-position: center; */
}
.loader:before, .loader:after {
content: "";
width: 40px;
height: 40px;
border: 8px solid rgba(255, 255, 255, 0.5);
border-radius: 10px;
position: absolute;
top: 50%;
left: 50%;
}
.loader:before {
-webkit-animation: animate 2s infinite linear;
animation: animate 2s infinite linear;
}
.loader:after {
-webkit-animation: animate2 2s infinite linear;
animation: animate2 2s infinite linear;
}
@-webkit-keyframes animate {
100% {
-webkit-transform: rotate(180deg) skew(360deg);
transform: rotate(180deg) skew(360deg);
}
}
@keyframes animate {
100% {
-webkit-transform: rotate(180deg) skew(360deg);
transform: rotate(180deg) skew(360deg);
}
}
@-webkit-keyframes animate2 {
100% {
-webkit-transform: rotate(-180deg) skew(-360deg);
transform: rotate(-180deg) skew(-360deg);
}
}
@keyframes animate2 {
100% {
-webkit-transform: rotate(-180deg) skew(-360deg);
transform: rotate(-180deg) skew(-360deg);
}
}
#layergroup {
background: #fff;
position: absolute;
z-index: 1;
top: 80px;
right: 10px;
border-radius: 3px;
width: 120px;
box-shadow: 2px 4px rgba(15, 15, 15, 0.582);
/* border: 1px solid rgba(0, 0, 0, 0.4); */
font-family: 'Open Sans', sans-serif;
}
#layergroup a {
font-size: 13px;
color: #404040;
display: block;
margin: 0;
padding: 0;
padding: 10px;
text-decoration: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
text-align: center;
}
#layergroup a:last-child {
border: none;
}
#layergroup a:hover {
background-color: #f8f8f8;
color: #404040;
}
#layergroup a.active {
background-color: #d4772a;
color: #ffffff;
}
#layergroup a.active:hover {
background: #be863c;
} | 0.49585 | 0.102619 |
* {
margin: 0;
padding: 0;
}
body {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
letter-spacing: 3px;
padding: 0;
margin: 0;
background: #f8e5f9;
background: -webkit-gradient(linear, left bottom, left top, from(#f8e5f9), to(#ffdddb));
background: linear-gradient(to top, #f8e5f9 0%, #ffdddb 100%);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#app {
position: relative;
}
header {
position: fixed;
width: 100%;
z-index: 2;
background: rgba(255, 255, 255, 0.5);
}
.topnav {
overflow: hidden;
padding: 0;
z-index: 1;
-webkit-box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.topnav .topnav-left {
float: left;
display: none;
}
.topnav .topnav-left-button {
font-weight: bold;
display: inline-block;
color: #333333;
text-align: center;
padding: 40px 25px;
text-decoration: none;
font-size: 18px;
text-transform: uppercase;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.topnav .topnav-left-button:hover {
color: #98286a;
}
.topnav .topnav-right {
float: right;
}
.topnav .topnav-right-button {
font-weight: bold;
float: left;
color: #fff;
text-align: center;
padding: 18px 40px;
text-decoration: none;
font-size: 18px;
background: #a8ecff;
background: -webkit-gradient(linear, left bottom, left top, from(#81e0ff), color-stop(50%, #a8ecff));
background: linear-gradient(to top, #81e0ff 0%, #a8ecff 50%);
border-radius: 500px;
margin: 20px;
text-transform: uppercase;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.topnav .topnav-right-button:hover {
background: -webkit-gradient(linear, left bottom, left top, from(#81e0ff), to(#a8ecff));
background: linear-gradient(to top, #81e0ff 0%, #a8ecff 100%);
}
.topnav #toggle {
float: left;
width: 40px;
height: 20px;
position: relative;
margin: 40px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}
.topnav #toggle span {
display: block;
position: absolute;
height: 6px;
width: 100%;
background: rgba(145, 47, 91, 0.5);
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
.topnav #toggle span:nth-child(1) {
top: 0px;
-webkit-transform-origin: left center;
transform-origin: left center;
}
.topnav #toggle span:nth-child(2) {
top: 12px;
-webkit-transform-origin: left center;
transform-origin: left center;
}
.topnav #toggle span:nth-child(3) {
top: 24px;
-webkit-transform-origin: left center;
transform-origin: left center;
}
.topnav #toggle:hover span {
background: #98286a;
}
.topnav #toggle:hover span:nth-child(1) {
top: -4px;
}
.topnav #toggle:hover span:nth-child(2) {
top: 12px;
}
.topnav #toggle:hover span:nth-child(3) {
top: 28px;
}
@media screen and (min-width: 980px) {
.topnav {
padding: 0 110px;
}
.topnav .topnav-left {
display: block;
}
.topnav #toggle {
display: none;
}
}
section {
padding: 100px 0;
width: 100%;
height: 100vh;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.carousel {
height: 444px;
position: relative;
-webkit-perspective: 1000px;
perspective: 1000px;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.carousel [type=radio] {
display: none;
}
.carousel label {
margin: auto;
width: 100%;
height: 420px;
border-radius: 0;
position: absolute;
left: 0;
right: 0;
cursor: pointer;
-webkit-transition: -webkit-transform 0.4s ease;
transition: -webkit-transform 0.4s ease;
transition: transform 0.4s ease;
transition: transform 0.4s ease, -webkit-transform 0.4s ease;
background-position: center;
background-size: cover;
}
.carousel #s1:checked~#slide1,
.carousel #s2:checked~#slide2,
.carousel #s3:checked~#slide3 {
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
.carousel #s1:checked~#slide3,
.carousel #s2:checked~#slide1,
.carousel #s3:checked~#slide2 {
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
-webkit-transform: translate3d(-17%, 0, -200px);
transform: translate3d(-17%, 0, -200px);
opacity: 0.2;
}
.carousel #s1:checked~#slide2,
.carousel #s2:checked~#slide3,
.carousel #s3:checked~#slide1 {
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
-webkit-transform: translate3d(17%, 0, -200px);
transform: translate3d(17%, 0, -200px);
opacity: 0.2;
}
.carousel #slide1 {
background-color: #d18cab;
background-image: url(https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=8de568b8cb2422928f77cd3a99d51d95);
}
.carousel #slide2 {
background-color: #9ab4f1;
background-image: url(https://images.unsplash.com/photo-1529686342540-1b43aec0df75?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=cc515f0702d3538c0d2c215026996c20);
}
.carousel #slide3 {
background-color: #b83d51;
background-image: url(https://images.unsplash.com/photo-1532298488760-970ff6decf61?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=566a4e265519b0ce20097d637792c07d);
}
@media screen and (min-width: 980px) {
section {
padding: 300px 0;
}
.carousel {
position: relative;
}
.carousel label {
margin: auto;
width: 780px;
height: 420px;
border-radius: 20px;
}
}
.flippers {
width: 95%;
position: absolute;
top: 300px;
-webkit-transform: translateY(-43%);
transform: translateY(-43%);
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 1;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.flippers .flipper {
background: #fdf1f5;
border-radius: 50%;
width: 50px;
height: 50px;
position: relative;
cursor: pointer;
opacity: 0.75;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
}
.flippers .flipper:hover {
opacity: 1;
}
.flippers .flipper:before {
content: '';
position: absolute;
top: 30%;
-webkit-transform: translateY(-40%);
transform: translateY(-40%);
left: 45%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 12px;
height: 12px;
border: 4px solid #98286a;
border-width: 0 4px 4px 0;
}
.flippers .flipper.left {
float: left;
-webkit-transform: rotate(135deg);
transform: rotate(135deg);
}
.flippers .flipper.right {
float: right;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
@media screen and (min-width: 980px) {
.flippers {
width: 1026px;
top: 500px;
}
.flippers .flipper:before {
border: 4px solid #fae3ed;
border-width: 0 4px 4px 0;
}
}
.pagination {
display: block;
text-align: center;
}
.pagination ul {
position: relative;
display: inline-block;
margin: 0;
padding: 0;
list-style: none;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.pagination li {
float: left;
position: relative;
display: block;
margin: 16px 8px;
width: 16px;
height: 16px;
cursor: pointer;
border: none;
}
.pagination li a {
background-color: transparent;
-webkit-box-shadow: inset 0 0 0 2px white;
box-shadow: inset 0 0 0 2px white;
transition: box-shadow 0.3s linear, -webkit-box-shadow 0.3s linear;
top: 0;
left: 0;
width: 100%;
height: 100%;
outline: none;
padding: 0;
border-radius: 100%;
text-indent: -999em;
cursor: pointer;
position: absolute;
border: none;
vertical-align: middle;
font-size: 1rem;
float: left;
color: #66686D;
}
.pagination li.current {
border: none;
}
.pagination li.current a {
-webkit-box-shadow: inset 0 0 0 8px white;
box-shadow: inset 0 0 0 8px white;
color: white;
font-weight: bold;
pointer-events: none;
text-decoration: none !important;
}
.pagination:after {
content: "";
display: table;
clear: both;
}
/*# sourceMappingURL=style.css.map */ | carousel/style.css | * {
margin: 0;
padding: 0;
}
body {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
letter-spacing: 3px;
padding: 0;
margin: 0;
background: #f8e5f9;
background: -webkit-gradient(linear, left bottom, left top, from(#f8e5f9), to(#ffdddb));
background: linear-gradient(to top, #f8e5f9 0%, #ffdddb 100%);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#app {
position: relative;
}
header {
position: fixed;
width: 100%;
z-index: 2;
background: rgba(255, 255, 255, 0.5);
}
.topnav {
overflow: hidden;
padding: 0;
z-index: 1;
-webkit-box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.topnav .topnav-left {
float: left;
display: none;
}
.topnav .topnav-left-button {
font-weight: bold;
display: inline-block;
color: #333333;
text-align: center;
padding: 40px 25px;
text-decoration: none;
font-size: 18px;
text-transform: uppercase;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.topnav .topnav-left-button:hover {
color: #98286a;
}
.topnav .topnav-right {
float: right;
}
.topnav .topnav-right-button {
font-weight: bold;
float: left;
color: #fff;
text-align: center;
padding: 18px 40px;
text-decoration: none;
font-size: 18px;
background: #a8ecff;
background: -webkit-gradient(linear, left bottom, left top, from(#81e0ff), color-stop(50%, #a8ecff));
background: linear-gradient(to top, #81e0ff 0%, #a8ecff 50%);
border-radius: 500px;
margin: 20px;
text-transform: uppercase;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.topnav .topnav-right-button:hover {
background: -webkit-gradient(linear, left bottom, left top, from(#81e0ff), to(#a8ecff));
background: linear-gradient(to top, #81e0ff 0%, #a8ecff 100%);
}
.topnav #toggle {
float: left;
width: 40px;
height: 20px;
position: relative;
margin: 40px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
}
.topnav #toggle span {
display: block;
position: absolute;
height: 6px;
width: 100%;
background: rgba(145, 47, 91, 0.5);
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
.topnav #toggle span:nth-child(1) {
top: 0px;
-webkit-transform-origin: left center;
transform-origin: left center;
}
.topnav #toggle span:nth-child(2) {
top: 12px;
-webkit-transform-origin: left center;
transform-origin: left center;
}
.topnav #toggle span:nth-child(3) {
top: 24px;
-webkit-transform-origin: left center;
transform-origin: left center;
}
.topnav #toggle:hover span {
background: #98286a;
}
.topnav #toggle:hover span:nth-child(1) {
top: -4px;
}
.topnav #toggle:hover span:nth-child(2) {
top: 12px;
}
.topnav #toggle:hover span:nth-child(3) {
top: 28px;
}
@media screen and (min-width: 980px) {
.topnav {
padding: 0 110px;
}
.topnav .topnav-left {
display: block;
}
.topnav #toggle {
display: none;
}
}
section {
padding: 100px 0;
width: 100%;
height: 100vh;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.carousel {
height: 444px;
position: relative;
-webkit-perspective: 1000px;
perspective: 1000px;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.carousel [type=radio] {
display: none;
}
.carousel label {
margin: auto;
width: 100%;
height: 420px;
border-radius: 0;
position: absolute;
left: 0;
right: 0;
cursor: pointer;
-webkit-transition: -webkit-transform 0.4s ease;
transition: -webkit-transform 0.4s ease;
transition: transform 0.4s ease;
transition: transform 0.4s ease, -webkit-transform 0.4s ease;
background-position: center;
background-size: cover;
}
.carousel #s1:checked~#slide1,
.carousel #s2:checked~#slide2,
.carousel #s3:checked~#slide3 {
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
.carousel #s1:checked~#slide3,
.carousel #s2:checked~#slide1,
.carousel #s3:checked~#slide2 {
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
-webkit-transform: translate3d(-17%, 0, -200px);
transform: translate3d(-17%, 0, -200px);
opacity: 0.2;
}
.carousel #s1:checked~#slide2,
.carousel #s2:checked~#slide3,
.carousel #s3:checked~#slide1 {
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1);
-webkit-transform: translate3d(17%, 0, -200px);
transform: translate3d(17%, 0, -200px);
opacity: 0.2;
}
.carousel #slide1 {
background-color: #d18cab;
background-image: url(https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=8de568b8cb2422928f77cd3a99d51d95);
}
.carousel #slide2 {
background-color: #9ab4f1;
background-image: url(https://images.unsplash.com/photo-1529686342540-1b43aec0df75?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=cc515f0702d3538c0d2c215026996c20);
}
.carousel #slide3 {
background-color: #b83d51;
background-image: url(https://images.unsplash.com/photo-1532298488760-970ff6decf61?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=566a4e265519b0ce20097d637792c07d);
}
@media screen and (min-width: 980px) {
section {
padding: 300px 0;
}
.carousel {
position: relative;
}
.carousel label {
margin: auto;
width: 780px;
height: 420px;
border-radius: 20px;
}
}
.flippers {
width: 95%;
position: absolute;
top: 300px;
-webkit-transform: translateY(-43%);
transform: translateY(-43%);
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 1;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.flippers .flipper {
background: #fdf1f5;
border-radius: 50%;
width: 50px;
height: 50px;
position: relative;
cursor: pointer;
opacity: 0.75;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
}
.flippers .flipper:hover {
opacity: 1;
}
.flippers .flipper:before {
content: '';
position: absolute;
top: 30%;
-webkit-transform: translateY(-40%);
transform: translateY(-40%);
left: 45%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 12px;
height: 12px;
border: 4px solid #98286a;
border-width: 0 4px 4px 0;
}
.flippers .flipper.left {
float: left;
-webkit-transform: rotate(135deg);
transform: rotate(135deg);
}
.flippers .flipper.right {
float: right;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
@media screen and (min-width: 980px) {
.flippers {
width: 1026px;
top: 500px;
}
.flippers .flipper:before {
border: 4px solid #fae3ed;
border-width: 0 4px 4px 0;
}
}
.pagination {
display: block;
text-align: center;
}
.pagination ul {
position: relative;
display: inline-block;
margin: 0;
padding: 0;
list-style: none;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.pagination li {
float: left;
position: relative;
display: block;
margin: 16px 8px;
width: 16px;
height: 16px;
cursor: pointer;
border: none;
}
.pagination li a {
background-color: transparent;
-webkit-box-shadow: inset 0 0 0 2px white;
box-shadow: inset 0 0 0 2px white;
transition: box-shadow 0.3s linear, -webkit-box-shadow 0.3s linear;
top: 0;
left: 0;
width: 100%;
height: 100%;
outline: none;
padding: 0;
border-radius: 100%;
text-indent: -999em;
cursor: pointer;
position: absolute;
border: none;
vertical-align: middle;
font-size: 1rem;
float: left;
color: #66686D;
}
.pagination li.current {
border: none;
}
.pagination li.current a {
-webkit-box-shadow: inset 0 0 0 8px white;
box-shadow: inset 0 0 0 8px white;
color: white;
font-weight: bold;
pointer-events: none;
text-decoration: none !important;
}
.pagination:after {
content: "";
display: table;
clear: both;
}
/*# sourceMappingURL=style.css.map */ | 0.30965 | 0.08152 |
*{
font-size:14px;
}
body {
font-family:verdana,helvetica,arial,sans-serif;
margin:0;
}
h1,
h2,
h3,
h4,
h5,
h6{
margin:0;
padding:0;
border:0;
outline:0;
font-weight:bold;
vertical-align:baseline;
}
h1{
font-size : 30px;
}
h2{
font-size : 25px;
}
h3{
font-size : 20px;
}
h4{
font-size : 15px;
}
h5{
font-size : 10px;
}
.tg {
border-collapse:collapse;border-spacing:0;border-color:#aabcfe;margin-bottom:5px;
border-spacing: 0;
}
.tg td{
font-family:Arial, sans-serif;
font-size:14px;
padding:10px 5px;
border-style:solid;
border-width:1px;
overflow:hidden;
word-break:normal;
border-color:#aabcfe;
color:#669;
}
.tg th{
font-family:Arial, sans-serif;
font-size:14px;
font-weight:normal;
padding:10px 5px;
border-style:solid;
border-width:1px;
overflow:hidden;
word-break:normal;
border-color:#aabcfe;
color:#039;
background-color:#b9c9fe;
}
.tg tbody td:last-child, thead th:last-child {
border-right: none;
}
.loading{
background: url('../images/loading.gif') center center no-repeat!important;
min-height:50px;
min-width:50px;
}
legend {
background-color: #CBDDF3;
background-image: -moz-linear-gradient(center top , #DAE7F6, #CDDEF3 45%, #ABC7EC 46%, #ABC7EC 50%, #B8CFEE 51%, #CBDDF3);
border-color: #99BCE8;
border-style: solid;
border-width: 1px;
box-shadow: 3px 3px 3px 0px #333333;
font-size: 11px;
line-height: 15px;
border-radius: 4px 4px 4px 4px;
color: #333333;
font-size: 11pt;
font-weight: bold;
margin: 0px;
/*min-width: 150px;*/
padding: 7px 17px;
width: 235px;
}
fieldset {
background-attachment: scroll !important;
background-clip: border-box !important;
background-color: #F6F6F6;
background-image: -moz-linear-gradient(center top , #DAE7F6, #FFFFFF 100%, #ABC7EC 99%, #ABC7EC 100%, #B8CFEE 100%, #CBDDF3) !important;
background-origin: padding-box !important;
background-position: 0 0 !important;
background-repeat: repeat-x !important;
background-size: auto auto !important;
border: 1px outset #99BCE8;
border-radius: 4px 4px 4px 4px;
padding:9px;
margin-bottom:5px;
}
label {
display:inline-block;
}
.tombol-menu-awal{
width:100px;
height:100px;
background:#FDBF82;
margin-right:50px;
margin-bottom:10px;
left: 50%;
top:30%;
font-size:14px;
border-radius: 15px;
}
.tombol-meja{
float:left;
width:100px;
height:100px;
margin-right:20px;
margin-bottom:10px;
left: 50%;
top:30%;
font-size:14px;
border-radius: 15px;
}
.tombol-kasir{
width:100px;
height:80px;
background:#FDBF82;
margin-right:10px;
margin-bottom:10px;
left: 50%;
top:30%;
font-size:14px;
border-radius: 15px;
}
.boxkecil{
background:#FDFCFB;
width:auto;
padding:5px;
border:1px solid #C0854C;
border-radius: 5px;
}
#menu-utama{
background:#FFF6ED;
width:100%;
height:100%;
border:1px solid #C0854C;
border-radius: 15px;
text-align:center;
}
#kasir-utama{
padding:10px;
background:#FFF6ED;
width:100%;
height:100%;
border:1px solid #C0854C;
border-radius: 15px;
overflow-x: hidden;
overflow-y: auto;
} | __assets/css/main.css | *{
font-size:14px;
}
body {
font-family:verdana,helvetica,arial,sans-serif;
margin:0;
}
h1,
h2,
h3,
h4,
h5,
h6{
margin:0;
padding:0;
border:0;
outline:0;
font-weight:bold;
vertical-align:baseline;
}
h1{
font-size : 30px;
}
h2{
font-size : 25px;
}
h3{
font-size : 20px;
}
h4{
font-size : 15px;
}
h5{
font-size : 10px;
}
.tg {
border-collapse:collapse;border-spacing:0;border-color:#aabcfe;margin-bottom:5px;
border-spacing: 0;
}
.tg td{
font-family:Arial, sans-serif;
font-size:14px;
padding:10px 5px;
border-style:solid;
border-width:1px;
overflow:hidden;
word-break:normal;
border-color:#aabcfe;
color:#669;
}
.tg th{
font-family:Arial, sans-serif;
font-size:14px;
font-weight:normal;
padding:10px 5px;
border-style:solid;
border-width:1px;
overflow:hidden;
word-break:normal;
border-color:#aabcfe;
color:#039;
background-color:#b9c9fe;
}
.tg tbody td:last-child, thead th:last-child {
border-right: none;
}
.loading{
background: url('../images/loading.gif') center center no-repeat!important;
min-height:50px;
min-width:50px;
}
legend {
background-color: #CBDDF3;
background-image: -moz-linear-gradient(center top , #DAE7F6, #CDDEF3 45%, #ABC7EC 46%, #ABC7EC 50%, #B8CFEE 51%, #CBDDF3);
border-color: #99BCE8;
border-style: solid;
border-width: 1px;
box-shadow: 3px 3px 3px 0px #333333;
font-size: 11px;
line-height: 15px;
border-radius: 4px 4px 4px 4px;
color: #333333;
font-size: 11pt;
font-weight: bold;
margin: 0px;
/*min-width: 150px;*/
padding: 7px 17px;
width: 235px;
}
fieldset {
background-attachment: scroll !important;
background-clip: border-box !important;
background-color: #F6F6F6;
background-image: -moz-linear-gradient(center top , #DAE7F6, #FFFFFF 100%, #ABC7EC 99%, #ABC7EC 100%, #B8CFEE 100%, #CBDDF3) !important;
background-origin: padding-box !important;
background-position: 0 0 !important;
background-repeat: repeat-x !important;
background-size: auto auto !important;
border: 1px outset #99BCE8;
border-radius: 4px 4px 4px 4px;
padding:9px;
margin-bottom:5px;
}
label {
display:inline-block;
}
.tombol-menu-awal{
width:100px;
height:100px;
background:#FDBF82;
margin-right:50px;
margin-bottom:10px;
left: 50%;
top:30%;
font-size:14px;
border-radius: 15px;
}
.tombol-meja{
float:left;
width:100px;
height:100px;
margin-right:20px;
margin-bottom:10px;
left: 50%;
top:30%;
font-size:14px;
border-radius: 15px;
}
.tombol-kasir{
width:100px;
height:80px;
background:#FDBF82;
margin-right:10px;
margin-bottom:10px;
left: 50%;
top:30%;
font-size:14px;
border-radius: 15px;
}
.boxkecil{
background:#FDFCFB;
width:auto;
padding:5px;
border:1px solid #C0854C;
border-radius: 5px;
}
#menu-utama{
background:#FFF6ED;
width:100%;
height:100%;
border:1px solid #C0854C;
border-radius: 15px;
text-align:center;
}
#kasir-utama{
padding:10px;
background:#FFF6ED;
width:100%;
height:100%;
border:1px solid #C0854C;
border-radius: 15px;
overflow-x: hidden;
overflow-y: auto;
} | 0.200323 | 0.0464 |
.nav {
height: 75px !important;
}
.midas-top-bar {
padding-top: 3px;
padding-bottom: 3px;
}
.banner-height {
height: 300px;
}
.loader {
position: absolute;
top: 40%;
left: 47%;
}
.side-content {
padding: 3px;
}
#f-message {
position: absolute;
z-index: 10;
top: 20px;
right: 20px;
width: 300px;
height: 50px;
border-radius: 3px 3px 3px 3px;
}
.myfooter {
background-image: url(/images/bg.jpg?057781f722782298bdf5827be2ff29f8);
background-size: cover;
background-position: top;
}
.user-profiles {
-webkit-box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
}
.side-section-detail {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.profile {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-right: 1.5px solid #0091ea;
border-bottom: 1px solid #0091ea;
}
.profile__heading {
font-size: 0.8rem;
text-transform: uppercase;
}
.profile__user-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.profile__photo {
height: 4.4rem;
width: 4.4rem;
border-radius: 50%;
}
.profile__user-name {
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 0.4rem;
}
.profile__manage-mode {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.sub-profile {
font-size: 0.65rem;
text-transform: uppercase;
}
.subject-header {
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;
}
.side-section-inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 3px;
margin-bottom: 6px;
}
.add-more {
color: grey !important;
font-size: 1.3rem;
text-align: center;
}
.add-more a {
text-decoration: none;
}
.add-more a:visited {
text-decoration: none;
}
.add-more-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 7px 7px 7px 7px;
}
.search_bar {
text-align: center;
}
.customsearch {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
}
.customsearch__item {
margin: 5px;
}
.customsearch__select {
background-color: #f4f2f2;
border: none;
padding: 0.7rem 2rem;
border-radius: 100px;
width: 20%;
}
.customsearch__button {
background-color: #f4f2f2;
border: none;
padding: 0.7rem 2rem;
border-radius: 100px;
width: 20%;
}
.custom-input {
background-color: #f4f2f2 !important;
border: none !important;
padding: 0.7rem 2rem !important;
border-radius: 100px !important;
}
.custom-width {
width: 70%;
}
.guarantor_photo {
height: 1.9rem;
width: 1.9rem;
border-radius: 50%;
}
.guarantor_count {
font-size: 1.2rem;
color: #911937;
font-weight: bold;
} | public/css/midas-styles.css | .nav {
height: 75px !important;
}
.midas-top-bar {
padding-top: 3px;
padding-bottom: 3px;
}
.banner-height {
height: 300px;
}
.loader {
position: absolute;
top: 40%;
left: 47%;
}
.side-content {
padding: 3px;
}
#f-message {
position: absolute;
z-index: 10;
top: 20px;
right: 20px;
width: 300px;
height: 50px;
border-radius: 3px 3px 3px 3px;
}
.myfooter {
background-image: url(/images/bg.jpg?057781f722782298bdf5827be2ff29f8);
background-size: cover;
background-position: top;
}
.user-profiles {
-webkit-box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
}
.side-section-detail {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.profile {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-right: 1.5px solid #0091ea;
border-bottom: 1px solid #0091ea;
}
.profile__heading {
font-size: 0.8rem;
text-transform: uppercase;
}
.profile__user-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.profile__photo {
height: 4.4rem;
width: 4.4rem;
border-radius: 50%;
}
.profile__user-name {
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 0.4rem;
}
.profile__manage-mode {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.sub-profile {
font-size: 0.65rem;
text-transform: uppercase;
}
.subject-header {
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;
}
.side-section-inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 3px;
margin-bottom: 6px;
}
.add-more {
color: grey !important;
font-size: 1.3rem;
text-align: center;
}
.add-more a {
text-decoration: none;
}
.add-more a:visited {
text-decoration: none;
}
.add-more-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 7px 7px 7px 7px;
}
.search_bar {
text-align: center;
}
.customsearch {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
}
.customsearch__item {
margin: 5px;
}
.customsearch__select {
background-color: #f4f2f2;
border: none;
padding: 0.7rem 2rem;
border-radius: 100px;
width: 20%;
}
.customsearch__button {
background-color: #f4f2f2;
border: none;
padding: 0.7rem 2rem;
border-radius: 100px;
width: 20%;
}
.custom-input {
background-color: #f4f2f2 !important;
border: none !important;
padding: 0.7rem 2rem !important;
border-radius: 100px !important;
}
.custom-width {
width: 70%;
}
.guarantor_photo {
height: 1.9rem;
width: 1.9rem;
border-radius: 50%;
}
.guarantor_count {
font-size: 1.2rem;
color: #911937;
font-weight: bold;
} | 0.387922 | 0.071235 |
.source-view-enabled {
height: 100%;
}
.design-view-container {
height: 100%;
display: flex;
}
.toggle-controls-container {
position: absolute;
bottom: 2%;
right: 2%;
z-index: 23;
}
.toggle-view-button {
transition: 0.15s;
font-weight: bold;
color: #333;
background-color: #f57e30;
}
.toggle-view-button:hover {
color: #fff;
transition: 0.15s;
}
.toggle-button-text {
padding-left: 5px;
}
.grid-container {
/* Temp */
width: calc(100% - 67px);
position: relative;
overflow: auto;
background: linear-gradient(-90deg, rgba(0, 0, 0, .001) 1px, transparent 1px),
linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
linear-gradient(-90deg, rgba(0, 0, 0, .001) 1px, transparent 1px),
linear-gradient(rgba(0, 0, 0, .001) 1px, transparent 1px),
linear-gradient(transparent 3px, transparent 3px, transparent 78px, transparent 78px),
linear-gradient(-90deg, transparent 1px, transparent 1px),
linear-gradient(-90deg, transparent 3px, transparent 3px, transparent 78px, transparent 78px),
linear-gradient(transparent 1px, transparent 1px), transparent;
background-size: 10px 10px,
10px 10px,
10px 10px,
10px 10px,
10px 10px,
10px 10px,
10px 10px,
10px 10px;
background-color: #e7eaeb;
}
.sourceDrop {
background-image: url("../images/source.svg");
}
.sinkDrop {
background-image: url("../images/sink.svg");
}
.streamDrop {
background-image: url("../images/streams.svg");
}
.tableDrop {
background-image: url("../images/table.svg");
}
.windowDrop {
background-image: url("../images/window.svg");
}
.triggerDrop {
background-image: url("../images/trigger.svg");
}
.aggregationDrop {
background-image: url("../images/aggregate.svg");
}
.functionDrop {
background-image: url("../images/function.svg");
}
.projectionQueryDrop {
background-image: url("../images/query.svg");
}
.filterQueryDrop {
background-image: url("../images/filter-query.svg");
}
.windowQueryDrop {
background-image: url("../images/window-query.svg");
}
.functionQueryDrop {
background-image: url("../images/function-query.svg");
}
.joinQueryDrop {
background-image: url("../images/join-query.svg");
}
.patternQueryDrop {
background-image: url("../images/pattern-query.svg");
}
.sequenceQueryDrop {
background-image: url("../images/sequence-query.svg");
}
/*
Dropped Elements corresponding to their toolbox elements
*/
.streamDrop, .tableDrop, .windowDrop, .triggerDrop, .aggregationDrop, .projectionQueryDrop, .filterQueryDrop,
.windowQueryDrop, .functionQueryDrop, .joinQueryDrop, .patternQueryDrop, .sequenceQueryDrop, .sourceDrop, .sinkDrop,
.functionDrop {
opacity: 1;
width: 60px;
height: 60px;
cursor: pointer;
text-align: center;
z-index: 20;
position: absolute;
background-color: #fff;
background-size: 40px 40px;
background-repeat: no-repeat;
background-position: 10px 10px;
color: black;
font-family: helvetica, sans-serif;
font-size: 0.9em;
-webkit-transition: -webkit-box-shadow 0.15s ease-in;
-moz-transition: -moz-box-shadow 0.15s ease-in;
-o-transition: -o-box-shadow 0.15s ease-in;
transition: box-shadow 0.15s ease-in;
border: 1px solid #ccc;
}
.partitionDrop {
border: 1px solid #346789;
width: 250px;
height: 250px;
border-radius: 0.5em;
opacity: 1;
cursor: move;
text-align: center;
z-index: 1;
position: absolute;
background-color: transparent;
color: black;
font-family: helvetica, sans-serif;
font-size: 0.9em;
-webkit-transition: -webkit-box-shadow 0.15s ease-in;
-moz-transition: -moz-box-shadow 0.15s ease-in;
-o-transition: -o-box-shadow 0.15s ease-in;
transition: box-shadow 0.15s ease-in;
box-sizing: border-box;
}
/*
Element Divisions added as classes when the element is appended
*/
.title {
padding: 10px;
cursor: move;
}
.connection {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
font-size: 10px;
text-align: center;
cursor: pointer;
width: 10px;
height: 10px;
margin-left: -10px;
border: 1px solid #000;
background-color: #424242;
}
.property {
float: left;
margin-top: 10px;
background: #f4f4f4;
border: 1px solid #aaaaaa;
height: 800px;
overflow-y: scroll;
overflow-x: scroll;
}
/*
*Styles for the configuration icons
*/
.element-prop-icon, .element-close-icon {
float: right;
width: 26px;
height: 26px;
margin-top: -95px;
cursor: pointer;
color: #616161;
border-radius: 40px;
font-size: 14px;
}
.element-prop-icon {
margin-right: 25px;
}
.element-close-icon {
margin-right: 5px;
}
input {
. form-control input-md;
font-family: inherit;
font-size: inherit;
color: inherit;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.disableContainer {
pointer-events: none;
}
table {
border: 2px solid transparent;
}
td {
padding: 5px;
border: 1px solid transparent;
}
.queryDiv {
margin: 20px 0 20px 0;
width: 600px;
box-shadow: 3px 4px 5px 6px #707070;
}
.simpleQueryLabel, .windowStreamLabel {
background-color: #565656;
text-align: center;
margin: 20px 0 20px 0;
color: transparent;
text-shadow: 0 2px 3px rgba(255, 255, 255, 0.3);
-webkit-background-clip: text;
}
.connectorInStream, .connectorInTable, .connectorInWindow, .connectorInTrigger, .connectorInAggregation,
.connectorInQuery, .connectorInPatternQuery, .connectorInSequenceQuery, .connectorInJoinQuery, .connectorInSink,
.connectorInSource {
float: left;
margin-top: -53px;
margin-left: -5px;
}
.connectorOutStream, .connectorOutTable, .connectorOutWindow, .connectorOutTrigger, .connectorOutAggregation,
.connectorOutQuery, .connectorOutPatternQuery, .connectorOutSequenceQuery, .connectorOutJoinQuery, .connectorOutSource,
.connectorOutSink {
float: right;
margin-top: -53px;
margin-right: -5px;
}
.connectorIn {
float: left;
margin-top: -47%;
margin-left: -13px;
}
.connectorOut {
float: right;
margin-top: -47%;
margin-right: -13px;
}
.partition-connector-in-part {
margin-left: -5px;
margin-top: 20px;
width: 15px;
height: 15px;
border: 1px solid #424242;
background-color: #424242;
}
.connectorStream {
float: right;
margin-top: 25%;
margin-right: -10%;
}
.aggregationNameNode, .triggerNameNode, .windowNameNode, .tableNameNode, .streamNameNode, .queryNameNode,
.patternQueryNameNode, .joinQueryNameNode, .sequenceQueryNameNode, .sourceNameNode, .sinkNameNode, .functionNameNode {
font-weight: 600;
width: 120px;
margin-left: -30px;
margin-top: 60px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.streamDrop:hover .streamNameNode, .windowDrop:hover .windowNameNode, .sequenceQueryDrop:hover .sequenceQueryNameNode,
.triggerDrop:hover .triggerNameNode, .aggregationDrop:hover .aggregationNameNode, .functionDrop:hover .functionNameNode,
.projectionQueryDrop:hover .queryNameNode, .filterQueryDrop:hover .queryNameNode, .windowQueryDrop:hover .queryNameNode,
.joinQueryDrop:hover .joinQueryNameNode, .patternQueryDrop:hover .patternQueryNameNode, .tableDrop:hover .tableNameNode,
.sourceDrop:hover .sourceNameNode, .sinkDrop:hover .sinkNameNode, .functionQueryDrop:hover .queryNameNode {
overflow: initial;
}
.partition-element-prop-icon, .partition {
float: right;
width: 20px;
height: 20px;
margin-top: 10px;
cursor: pointer;
color: #616161;
font-size: 14px;
}
.partition-element-prop-icon {
margin-right: 0;
}
.partition {
margin-right: 6px;
}
/* Window Stream */
.checkboxStyleWindow {
float: right;
width: 20px;
height: 20px;
background-color: transparent;
border: 1px solid transparent;
margin-top: -82px;
margin-right: 0;
cursor: pointer;
color: red;
border-radius: 40px;
padding-left: 10px;
padding-top: 4px;
}
.design-view-form-content .well {
background: transparent;
padding: 0;
}
.design-view-form-content {
padding: 10px;
}
select.form-control,
.btn-group > div {
background: #2f2f2f !important;
}
.design-view-form-content th {
color: #BDBDBD;
}
.grid-container > div {
opacity: 1;
}
.design-view-form-content button i {
font-size: 1.1rem;
}
.section-seperator {
border-bottom: 1px solid #424242;
}
.query-form-actions {
margin-top: 10px;
}
.design-view-form-content .table-bordered > tbody > tr > td,
.design-view-form-content .table-bordered,
.design-view-form-content .table-bordered > thead > tr > th {
border: 0;
}
.design-view-form-content,
h3,
.control-label {
color: #BDBDBD;
}
.frm-qry {
margin-bottom: 20px;
}
.frm-agr thead tr th:nth-of-type(2) {
width: 30%;
}
.frm-agr table {
width: 100% !important;
}
.form-control[disabled] {
opacity: 0.3;
}
.loading-screen {
position: absolute;
width: 100%;
height: 100%;
z-index: 22;
background-color: #282828;
color: #fff;
font-size: 40px;
text-align: center;
padding: 20% 0;
}
.app-annotations-button {
position: fixed;
top: 79px;
right: 15px;
font-size: 20px;
color: #757575;
transition: 0.15s;
}
.app-annotations-button:hover {
color: black;
}
.siddhi-app-name-node {
position: fixed;
right: 60px;
top: 77px;
opacity: 1 !important;
font-size: 16px;
}
#siddhi-app-desc-node {
position: fixed;
right: 60px;
top: 97px;
opacity: 1 !important;
font-size: 14px;
}
.design-view-form-content h3 {
font-size: 14px;
}
.design-view-form-content h4 {
font-size: 12px;
}
.design-view-form-content .form-control {
max-width: 500px;
}
.list-group-item {
background: #37474F;
color: #E0E0E0;
border: 0;
margin-bottom: 0;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
background: #9E9E9E;
border: 0;
color: #212121;
font-weight: 500;;
}
a.list-group-item, button.list-group-item {
color: #E0E0E0;
}
.design-view-form-content .btn {
font-size: 12px;
}
.design-view-form-content select,
.design-view-form-content p {
font-size: 12px;
}
/* JSONEditor overrides */
/* Set widths */
.define-appconfig [data-schemapath="root.annotations"] table,
.define-source [data-schemapath="root.annotationOptions"] table,
.define-source [data-schemapath="root.map.annotationOptions"] table,
.define-source [data-schemapath="root.map.attributeValues"] table,
.define-sink [data-schemapath="root.annotationOptions"] table,
.define-sink [data-schemapath="root.map.annotationOptions"] table,
.define-source [data-schemapath="root.map.attributeValues"] table,
.define-stream [data-schemapath="root.annotations"] table,
.define-stream [data-schemapath="root.attributes"] table,
.define-table [data-schemapath="root.annotations"] table,
.define-table [data-schemapath="root.storeAnnotation.storeOptions"] table,
.define-table [data-schemapath="root.attributes"] table,
.define-window [data-schemapath="root.annotations"] table,
.define-window [data-schemapath="root.attributes"] table,
.define-window [data-schemapath="root.parameters"] table,
.define-trigger [data-schemapath="root.annotations"] table,
.define-partition [data-schemapath="root.annotations"] table,
.define-partition [data-schemapath="root.partitionKeys"] table {
width: 650px;
}
/* 1 column */
.define-appconfig [data-schemapath="root.annotations"] table tr td:first-child,
.define-source [data-schemapath="root.annotationOptions"] table tr td:first-child,
.define-source [data-schemapath="root.map.annotationOptions"] table tr td:first-child,
.define-sink [data-schemapath="root.annotationOptions"] table tr td:first-child,
.define-sink [data-schemapath="root.map.annotationOptions"] table tr td:first-child,
.define-stream [data-schemapath="root.annotations"] table tr td:first-child,
.define-table [data-schemapath="root.annotations"] table tr td:first-child,
.define-window [data-schemapath="root.annotations"] table tr td:first-child,
.define-window [data-schemapath="root.parameters"] table tr td:first-child,
.define-trigger [data-schemapath="root.annotations"] table tr td:first-child,
.define-partition [data-schemapath="root.annotations"] table tr td:first-child {
width: 508px;
}
/* 2 column */
.define-source [data-schemapath="root.map.attributeValues"] table tr td:nth-child(1),
.define-source [data-schemapath="root.map.attributeValues"] table tr td:nth-child(2),
.define-sink [data-schemapath="root.map.attributeOrPayloadValues"] table tr td:nth-child(1),
.define-sink [data-schemapath="root.map.attributeOrPayloadValues"] table tr td:nth-child(2),
.define-table [data-schemapath="root.storeAnnotation.storeOptions"] table tr td:nth-child(1),
.define-table [data-schemapath="root.storeAnnotation.storeOptions"] table tr td:nth-child(2),
.define-trigger [data-schemapath="root.annotations"] table tr td:nth-child(1),
.define-trigger [data-schemapath="root.annotations"] table tr td:nth-child(2),
.define-partition [data-schemapath="root.partitionKeys"] table tr td:nth-child(1),
.define-partition [data-schemapath="root.partitionKeys"] table tr td:nth-child(2) {
width: 254px;
}
/* 2 column with type field */
.define-stream [data-schemapath="root.attributes"] table tr td:nth-child(1),
.define-table [data-schemapath="root.attributes"] table tr td:nth-child(1),
.define-window [data-schemapath="root.attributes"] table tr td:nth-child(1) {
width: 428px;
}
.define-stream [data-schemapath="root.attributes"] table tr td:nth-child(2),
.define-table [data-schemapath="root.attributes"] table tr td:nth-child(2),
.define-window [data-schemapath="root.attributes"] table tr td:nth-child(2) {
width: 80px;
}
/* Hide duplicate labels */
.define-appconfig [data-schemapath="root.annotations"] table thead,
.define-source [data-schemapath="root.annotationOptions"] table thead,
.define-source [data-schemapath="root.map.annotationOptions"] table thead,
.define-sink [data-schemapath="root.annotationOptions"] table thead,
.define-sink [data-schemapath="root.map.annotationOptions"] table thead,
.define-stream [data-schemapath="root.annotations"] table thead,
.define-table [data-schemapath="root.annotations"] table thead,
.define-window [data-schemapath="root.annotations"] table thead,
.define-window [data-schemapath="root.parameters"] table thead,
.define-trigger [data-schemapath="root.annotations"] table thead,
.define-partition [data-schemapath="root.annotations"] table thead,
.define-windowFilterProjection-query [data-schemapath="root.annotations"] table thead,
.define-windowFilterProjection-query [data-schemapath="root.streamHandlerList.0.streamHandler.parameters"] table thead,
.define-aggregation [data-schemapath="root.annotations"] table thead,
.define-aggregation [data-schemapath="root.aggregateByTimePeriod"] table thead,
.define-pattern-query [data-schemapath="root.annotations"] table thead,
.define-sequence-query [data-schemapath="root.annotations"] table thead {
display: none;
}
.incomplete-element {
border: 1px solid yellow;
box-shadow: 0 0 1px 2px yellow;
}
.error-element {
border: 1px solid #FF0000;
box-shadow: 0 0 1px 2px #FF0000;
}
.js-tree-error-node {
border: 1px solid red;
background: red;
}
.design-view-form-content input[type="text"].required-input-field,
.design-view-form-content textarea.required-input-field {
border: 1px solid #FF0000;
}
.design-view-form-content .error-message {
color: red;
padding-top: 3px;
}
.design-view-form-content .customized-options .error-message,
.design-view-form-content .source-sink-map-options .customized-options .error-message {
margin-left: 75px;
}
.design-view-form-content .partition-form-container #partition-by-stream-name-label {
margin-left: 120px;
}
.design-view-form-content .partition-form-container .partition-by-expression {
margin-right: 10px;
}
.source-sink-form-container .source-sink-map-options .error-message,
.table-form-container #store-options .error-message,
.table-form-container #define-predefined-annotations .error-message,
.window-form-container #defineFunctionParameters .error-message {
margin-left: 20px;
}
.design-view-form-content input[type="text"],
.design-view-form-content textarea {
border: 1px solid #716e6e;
line-height: 20px;
padding: 0 5px;
color: #ccc;
background: #424242;
}
.design-view-form-content input[type="text"].option-value,
.window-form-container input[type="text"].parameter-value {
width: calc(90% - 30px);
margin-bottom: 2px;
margin-left: 20px;
}
.trigger-form-container #trigger-criteria-content .description {
font-size: 12px;
margin-left: 5px;
color: #ccc;
}
.table-form-container input[type="text"].annotation-value {
margin-bottom: 2px;
margin-left: 20px;
}
.design-view-form-content .attr-nav {
margin-left: 10px;
}
.design-view-form-content .attribute .attr-nav a {
float: left;
display: inline-block;
height: 22px;
padding: 0 5px;
margin-left: 3px;
margin-top: 2px;
background: #424242;
color: #ccc;
border: 1px solid #716e6e;
}
.design-view-form-content .btn-del-option,
.window-form-container .btn-del-parameter,
.table-form-container .btn-del-annot-value {
display: inline-block;
height: 21px;
padding: 0 8px;
background: #424242;
margin-left: 3px;
border: 1px solid #716e6e;
}
.source-sink-form-container input[type="text"].readonly-attr,
.source-sink-form-container #attributeMap-type:disabled,
.table-form-container #store-type:disabled,
.partition-form-container #define-partition-keys .partition-by-stream-name {
cursor: not-allowed;
background: #1d1d1d;
border: 1px solid #545353;
}
.design-view-form-content .attribute .attr-nav a .fw-sort-down {
font-size: 16px;
margin-top: -3px;
color: #ccc;
}
.design-view-form-content .attribute .attr-nav a .fw-sort-up {
font-size: 16px;
margin-top: 6px;
color: #ccc;
}
.clearfix {
display: block;
content: "";
clear: both;
}
.design-view-form-content .fw-delete {
font-size: 12px;
margin-top: 3px;
color: #ccc;
}
.design-view-form-content .attr-nav,
.design-view-form-content .attr-content {
display: inline-block;
float: left;
}
.design-view-form-content .attribute {
margin-bottom: 5px;
}
.design-view-form-content .annotation > a > i.jstree-checkbox,
.design-view-form-content .annotation > .jstree-clicked > i.jstree-checkbox,
.design-view-form-content .annotation > i.jstree-checkbox {
display: none;
}
.design-view-form-content .annotation-key > a > i.jstree-checkbox,
.design-view-form-content .annotation-key > .jstree-clicked > i.jstree-checkbox,
.design-view-form-content .annotation-key > i.jstree-checkbox {
display: none;
}
.design-view-form-content .annotation-value > a > i.jstree-checkbox,
.design-view-form-content .annotation-value > .jstree-clicked > i.jstree-checkbox,
.design-view-form-content .annotation-value > i.jstree-checkbox {
display: none;
}
.design-view-form-content .mandatory-key > a > i.jstree-checkbox,
.design-view-form-content .mandatory-key > .jstree-clicked > i.jstree-checkbox {
display: none;
}
.design-view-form-content .mandatory-annotation > a > i.jstree-checkbox,
.design-view-form-content .mandatory-annotation > .jstree-clicked > i.jstree-checkbox {
display: none;
}
.design-view-form-content .mandatory-annotation > a.jstree-hovered,
.design-view-form-content .optional-key > a.jstree-hovered,
.design-view-form-content .annotation-value > a.jstree-hovered {
cursor: context;
color: #ccc;
background: transparent;
border-radius: 0px;
}
.design-view-form-content .optional-annotation > a.jstree-hovered,
.design-view-form-content .mandatory-key > a.jstree-hovered {
cursor: default;
color: #ccc;
background: transparent;
border-radius: 0px;
}
.design-view-form-content .jstree-clicked {
background: #5F5B5A;
color: black;
border-radius: 2px;
box-shadow: inset 0 0 1px #999999;
}
.design-view-form-content .jstree-hovered {
background: transparent;
}
.design-view-form-content .stream-form-container #define-annotation {
margin-top: 10px;
color: #ccc;
}
.design-view-form-content .cust-option-key {
margin-left: 20px;
}
.design-view-form-content .cust-option-value {
margin-left: 10px;
}
.stream-form-container {
width: 50%;
}
.partition-form-container {
width: 40%;
}
.stream-form-container,
.source-sink-form-container,
.table-form-container,
.window-form-container,
.trigger-form-container,
.function-form-container,
.partition-form-container {
float: left;
display: inline-block;
padding: 5px;
}
.window-form-container,
.trigger-form-container,
.function-form-container {
width: 25%;
}
.trigger-form-container #define-trigger-criteria {
margin-top: -3px;
margin-bottom: 10px;
}
.window-form-container #defineFunctionName,
.window-form-container #defineOutputEvents,
.window-form-container #define-annotation {
margin-top: 18px;
}
.design-view-form-content .source-div,
.design-view-form-content .sink-div {
width: 45%;
}
.design-view-form-content .table-div {
width: 25%;
}
.design-view-form-content .mapper-div {
width: 25%;
}
.design-view-form-content .store-div {
width: 40%;
margin-top: 20px;
}
.design-view-form-content .define-table-annotation {
width: 30%;
margin-top: 10px;
margin-left: 20px;
}
.table-form-container #table-annotations .table-annotation {
margin-bottom: 10px;
}
.design-view-form-content .attribute-map-div {
width: 30%;
margin-top: 48px;
}
.table-form-container #store-options,
.source-sink-form-container #source-options,
.source-sink-form-container #sink-options {
display: flex;
}
.table-form-container .sub-store-options-div,
.source-sink-form-container .sub-source-options-div,
.source-sink-form-container .sub-sink-options-div {
width: 50%;
}
.design-view-form-content #btn-submit,
.design-view-form-content #btn-cancel {
margin-top: 15px;
margin-right: 10px;
}
.design-view-form-content input[type="checkbox"],
.design-view-form-content input[type="radio"] {
margin: 0px 5px 0px 0;
vertical-align: middle;
}
.design-view-form-content #attribute-key-label {
margin-left: 75px;
margin-right: 100px;
}
.design-view-form-content .fw-info {
font-size: 10px;
margin-left: 3px;
color: #b7f1eb;
}
.design-view-form-content .trigger-form-container .fw-info {
font-size: 12px;
}
.design-view-form-content .cust-options .option {
margin-bottom: 2px;
}
.design-view-form-content .source-sink-form-container #stream-attributes {
margin-top: 10px;
}
.design-view-form-content .option .option-desc-content,
.design-view-form-content .parameter .parameter-desc-content,
.trigger-form-container #define-trigger-criteria .criteria-description {
font-family: Arial;
background: #252525;
width: 250px;
color: #eee;
text-align: left;
border-radius: 6px;
padding: 5 5px;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.design-view-form-content .btn-default {
color: #ccc;
background: #2c2c2c;
margin-top: 15px;
}
.table-form-container #table-annotations .btn-add-annot-value {
margin-top: 0px;
margin-bottom: 10px;
margin-left: 160px;
}
.design-view-form-content .mandatory-option-symbol,
.design-view-form-content .mandatory-parameter-symbol {
margin-right: 12px;
}
.design-view-form-content select {
color: #ccc;
background: #424242;
border: 1px solid #716e6e;
height: 22px;
margin-top: 2px;
}
.design-view-form-content .optional-option:hover,
.design-view-form-content .optional-parameter:hover,
.source-sink-form-container #attribute-map-label:hover,
.table-form-container .rdbms-type,
.table-form-container #table-annotations .annotation-name {
cursor: pointer;
}
.source-sink-form-container .attribute-labels {
margin-top: 10px;
}
.design-view-form-content label {
word-break: break-all;
}
.table-form-container .rdbms-type {
margin-right: 10px;
margin-top: 10px;
}
.selector {
position: absolute;
background: rgba(0, 0, 255, 0.1) none repeat scroll 0% 0%;
border: 1px solid rgba(0, 0, 255, 0.45);
display: none;
pointer-events: none;
left: 0px;
top: 0px;
}
textarea {
width: 95%;
background: #424242;
min-height: 65px;
}
.focused-container {
border-color: #4af;
box-shadow: 0 0 1px 2px #4af !important;
}
.selected-container {
border-color: #4af;
box-shadow: 0 0 1px 1px #4af;
}
.selected-button {
color: #ffffff !important;
transition: 0.15s !important;
} | tooling/components/io.siddhi.distribution.editor.core/src/main/resources/web/css/design-view.css | .source-view-enabled {
height: 100%;
}
.design-view-container {
height: 100%;
display: flex;
}
.toggle-controls-container {
position: absolute;
bottom: 2%;
right: 2%;
z-index: 23;
}
.toggle-view-button {
transition: 0.15s;
font-weight: bold;
color: #333;
background-color: #f57e30;
}
.toggle-view-button:hover {
color: #fff;
transition: 0.15s;
}
.toggle-button-text {
padding-left: 5px;
}
.grid-container {
/* Temp */
width: calc(100% - 67px);
position: relative;
overflow: auto;
background: linear-gradient(-90deg, rgba(0, 0, 0, .001) 1px, transparent 1px),
linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
linear-gradient(-90deg, rgba(0, 0, 0, .001) 1px, transparent 1px),
linear-gradient(rgba(0, 0, 0, .001) 1px, transparent 1px),
linear-gradient(transparent 3px, transparent 3px, transparent 78px, transparent 78px),
linear-gradient(-90deg, transparent 1px, transparent 1px),
linear-gradient(-90deg, transparent 3px, transparent 3px, transparent 78px, transparent 78px),
linear-gradient(transparent 1px, transparent 1px), transparent;
background-size: 10px 10px,
10px 10px,
10px 10px,
10px 10px,
10px 10px,
10px 10px,
10px 10px,
10px 10px;
background-color: #e7eaeb;
}
.sourceDrop {
background-image: url("../images/source.svg");
}
.sinkDrop {
background-image: url("../images/sink.svg");
}
.streamDrop {
background-image: url("../images/streams.svg");
}
.tableDrop {
background-image: url("../images/table.svg");
}
.windowDrop {
background-image: url("../images/window.svg");
}
.triggerDrop {
background-image: url("../images/trigger.svg");
}
.aggregationDrop {
background-image: url("../images/aggregate.svg");
}
.functionDrop {
background-image: url("../images/function.svg");
}
.projectionQueryDrop {
background-image: url("../images/query.svg");
}
.filterQueryDrop {
background-image: url("../images/filter-query.svg");
}
.windowQueryDrop {
background-image: url("../images/window-query.svg");
}
.functionQueryDrop {
background-image: url("../images/function-query.svg");
}
.joinQueryDrop {
background-image: url("../images/join-query.svg");
}
.patternQueryDrop {
background-image: url("../images/pattern-query.svg");
}
.sequenceQueryDrop {
background-image: url("../images/sequence-query.svg");
}
/*
Dropped Elements corresponding to their toolbox elements
*/
.streamDrop, .tableDrop, .windowDrop, .triggerDrop, .aggregationDrop, .projectionQueryDrop, .filterQueryDrop,
.windowQueryDrop, .functionQueryDrop, .joinQueryDrop, .patternQueryDrop, .sequenceQueryDrop, .sourceDrop, .sinkDrop,
.functionDrop {
opacity: 1;
width: 60px;
height: 60px;
cursor: pointer;
text-align: center;
z-index: 20;
position: absolute;
background-color: #fff;
background-size: 40px 40px;
background-repeat: no-repeat;
background-position: 10px 10px;
color: black;
font-family: helvetica, sans-serif;
font-size: 0.9em;
-webkit-transition: -webkit-box-shadow 0.15s ease-in;
-moz-transition: -moz-box-shadow 0.15s ease-in;
-o-transition: -o-box-shadow 0.15s ease-in;
transition: box-shadow 0.15s ease-in;
border: 1px solid #ccc;
}
.partitionDrop {
border: 1px solid #346789;
width: 250px;
height: 250px;
border-radius: 0.5em;
opacity: 1;
cursor: move;
text-align: center;
z-index: 1;
position: absolute;
background-color: transparent;
color: black;
font-family: helvetica, sans-serif;
font-size: 0.9em;
-webkit-transition: -webkit-box-shadow 0.15s ease-in;
-moz-transition: -moz-box-shadow 0.15s ease-in;
-o-transition: -o-box-shadow 0.15s ease-in;
transition: box-shadow 0.15s ease-in;
box-sizing: border-box;
}
/*
Element Divisions added as classes when the element is appended
*/
.title {
padding: 10px;
cursor: move;
}
.connection {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
font-size: 10px;
text-align: center;
cursor: pointer;
width: 10px;
height: 10px;
margin-left: -10px;
border: 1px solid #000;
background-color: #424242;
}
.property {
float: left;
margin-top: 10px;
background: #f4f4f4;
border: 1px solid #aaaaaa;
height: 800px;
overflow-y: scroll;
overflow-x: scroll;
}
/*
*Styles for the configuration icons
*/
.element-prop-icon, .element-close-icon {
float: right;
width: 26px;
height: 26px;
margin-top: -95px;
cursor: pointer;
color: #616161;
border-radius: 40px;
font-size: 14px;
}
.element-prop-icon {
margin-right: 25px;
}
.element-close-icon {
margin-right: 5px;
}
input {
. form-control input-md;
font-family: inherit;
font-size: inherit;
color: inherit;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.disableContainer {
pointer-events: none;
}
table {
border: 2px solid transparent;
}
td {
padding: 5px;
border: 1px solid transparent;
}
.queryDiv {
margin: 20px 0 20px 0;
width: 600px;
box-shadow: 3px 4px 5px 6px #707070;
}
.simpleQueryLabel, .windowStreamLabel {
background-color: #565656;
text-align: center;
margin: 20px 0 20px 0;
color: transparent;
text-shadow: 0 2px 3px rgba(255, 255, 255, 0.3);
-webkit-background-clip: text;
}
.connectorInStream, .connectorInTable, .connectorInWindow, .connectorInTrigger, .connectorInAggregation,
.connectorInQuery, .connectorInPatternQuery, .connectorInSequenceQuery, .connectorInJoinQuery, .connectorInSink,
.connectorInSource {
float: left;
margin-top: -53px;
margin-left: -5px;
}
.connectorOutStream, .connectorOutTable, .connectorOutWindow, .connectorOutTrigger, .connectorOutAggregation,
.connectorOutQuery, .connectorOutPatternQuery, .connectorOutSequenceQuery, .connectorOutJoinQuery, .connectorOutSource,
.connectorOutSink {
float: right;
margin-top: -53px;
margin-right: -5px;
}
.connectorIn {
float: left;
margin-top: -47%;
margin-left: -13px;
}
.connectorOut {
float: right;
margin-top: -47%;
margin-right: -13px;
}
.partition-connector-in-part {
margin-left: -5px;
margin-top: 20px;
width: 15px;
height: 15px;
border: 1px solid #424242;
background-color: #424242;
}
.connectorStream {
float: right;
margin-top: 25%;
margin-right: -10%;
}
.aggregationNameNode, .triggerNameNode, .windowNameNode, .tableNameNode, .streamNameNode, .queryNameNode,
.patternQueryNameNode, .joinQueryNameNode, .sequenceQueryNameNode, .sourceNameNode, .sinkNameNode, .functionNameNode {
font-weight: 600;
width: 120px;
margin-left: -30px;
margin-top: 60px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.streamDrop:hover .streamNameNode, .windowDrop:hover .windowNameNode, .sequenceQueryDrop:hover .sequenceQueryNameNode,
.triggerDrop:hover .triggerNameNode, .aggregationDrop:hover .aggregationNameNode, .functionDrop:hover .functionNameNode,
.projectionQueryDrop:hover .queryNameNode, .filterQueryDrop:hover .queryNameNode, .windowQueryDrop:hover .queryNameNode,
.joinQueryDrop:hover .joinQueryNameNode, .patternQueryDrop:hover .patternQueryNameNode, .tableDrop:hover .tableNameNode,
.sourceDrop:hover .sourceNameNode, .sinkDrop:hover .sinkNameNode, .functionQueryDrop:hover .queryNameNode {
overflow: initial;
}
.partition-element-prop-icon, .partition {
float: right;
width: 20px;
height: 20px;
margin-top: 10px;
cursor: pointer;
color: #616161;
font-size: 14px;
}
.partition-element-prop-icon {
margin-right: 0;
}
.partition {
margin-right: 6px;
}
/* Window Stream */
.checkboxStyleWindow {
float: right;
width: 20px;
height: 20px;
background-color: transparent;
border: 1px solid transparent;
margin-top: -82px;
margin-right: 0;
cursor: pointer;
color: red;
border-radius: 40px;
padding-left: 10px;
padding-top: 4px;
}
.design-view-form-content .well {
background: transparent;
padding: 0;
}
.design-view-form-content {
padding: 10px;
}
select.form-control,
.btn-group > div {
background: #2f2f2f !important;
}
.design-view-form-content th {
color: #BDBDBD;
}
.grid-container > div {
opacity: 1;
}
.design-view-form-content button i {
font-size: 1.1rem;
}
.section-seperator {
border-bottom: 1px solid #424242;
}
.query-form-actions {
margin-top: 10px;
}
.design-view-form-content .table-bordered > tbody > tr > td,
.design-view-form-content .table-bordered,
.design-view-form-content .table-bordered > thead > tr > th {
border: 0;
}
.design-view-form-content,
h3,
.control-label {
color: #BDBDBD;
}
.frm-qry {
margin-bottom: 20px;
}
.frm-agr thead tr th:nth-of-type(2) {
width: 30%;
}
.frm-agr table {
width: 100% !important;
}
.form-control[disabled] {
opacity: 0.3;
}
.loading-screen {
position: absolute;
width: 100%;
height: 100%;
z-index: 22;
background-color: #282828;
color: #fff;
font-size: 40px;
text-align: center;
padding: 20% 0;
}
.app-annotations-button {
position: fixed;
top: 79px;
right: 15px;
font-size: 20px;
color: #757575;
transition: 0.15s;
}
.app-annotations-button:hover {
color: black;
}
.siddhi-app-name-node {
position: fixed;
right: 60px;
top: 77px;
opacity: 1 !important;
font-size: 16px;
}
#siddhi-app-desc-node {
position: fixed;
right: 60px;
top: 97px;
opacity: 1 !important;
font-size: 14px;
}
.design-view-form-content h3 {
font-size: 14px;
}
.design-view-form-content h4 {
font-size: 12px;
}
.design-view-form-content .form-control {
max-width: 500px;
}
.list-group-item {
background: #37474F;
color: #E0E0E0;
border: 0;
margin-bottom: 0;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
background: #9E9E9E;
border: 0;
color: #212121;
font-weight: 500;;
}
a.list-group-item, button.list-group-item {
color: #E0E0E0;
}
.design-view-form-content .btn {
font-size: 12px;
}
.design-view-form-content select,
.design-view-form-content p {
font-size: 12px;
}
/* JSONEditor overrides */
/* Set widths */
.define-appconfig [data-schemapath="root.annotations"] table,
.define-source [data-schemapath="root.annotationOptions"] table,
.define-source [data-schemapath="root.map.annotationOptions"] table,
.define-source [data-schemapath="root.map.attributeValues"] table,
.define-sink [data-schemapath="root.annotationOptions"] table,
.define-sink [data-schemapath="root.map.annotationOptions"] table,
.define-source [data-schemapath="root.map.attributeValues"] table,
.define-stream [data-schemapath="root.annotations"] table,
.define-stream [data-schemapath="root.attributes"] table,
.define-table [data-schemapath="root.annotations"] table,
.define-table [data-schemapath="root.storeAnnotation.storeOptions"] table,
.define-table [data-schemapath="root.attributes"] table,
.define-window [data-schemapath="root.annotations"] table,
.define-window [data-schemapath="root.attributes"] table,
.define-window [data-schemapath="root.parameters"] table,
.define-trigger [data-schemapath="root.annotations"] table,
.define-partition [data-schemapath="root.annotations"] table,
.define-partition [data-schemapath="root.partitionKeys"] table {
width: 650px;
}
/* 1 column */
.define-appconfig [data-schemapath="root.annotations"] table tr td:first-child,
.define-source [data-schemapath="root.annotationOptions"] table tr td:first-child,
.define-source [data-schemapath="root.map.annotationOptions"] table tr td:first-child,
.define-sink [data-schemapath="root.annotationOptions"] table tr td:first-child,
.define-sink [data-schemapath="root.map.annotationOptions"] table tr td:first-child,
.define-stream [data-schemapath="root.annotations"] table tr td:first-child,
.define-table [data-schemapath="root.annotations"] table tr td:first-child,
.define-window [data-schemapath="root.annotations"] table tr td:first-child,
.define-window [data-schemapath="root.parameters"] table tr td:first-child,
.define-trigger [data-schemapath="root.annotations"] table tr td:first-child,
.define-partition [data-schemapath="root.annotations"] table tr td:first-child {
width: 508px;
}
/* 2 column */
.define-source [data-schemapath="root.map.attributeValues"] table tr td:nth-child(1),
.define-source [data-schemapath="root.map.attributeValues"] table tr td:nth-child(2),
.define-sink [data-schemapath="root.map.attributeOrPayloadValues"] table tr td:nth-child(1),
.define-sink [data-schemapath="root.map.attributeOrPayloadValues"] table tr td:nth-child(2),
.define-table [data-schemapath="root.storeAnnotation.storeOptions"] table tr td:nth-child(1),
.define-table [data-schemapath="root.storeAnnotation.storeOptions"] table tr td:nth-child(2),
.define-trigger [data-schemapath="root.annotations"] table tr td:nth-child(1),
.define-trigger [data-schemapath="root.annotations"] table tr td:nth-child(2),
.define-partition [data-schemapath="root.partitionKeys"] table tr td:nth-child(1),
.define-partition [data-schemapath="root.partitionKeys"] table tr td:nth-child(2) {
width: 254px;
}
/* 2 column with type field */
.define-stream [data-schemapath="root.attributes"] table tr td:nth-child(1),
.define-table [data-schemapath="root.attributes"] table tr td:nth-child(1),
.define-window [data-schemapath="root.attributes"] table tr td:nth-child(1) {
width: 428px;
}
.define-stream [data-schemapath="root.attributes"] table tr td:nth-child(2),
.define-table [data-schemapath="root.attributes"] table tr td:nth-child(2),
.define-window [data-schemapath="root.attributes"] table tr td:nth-child(2) {
width: 80px;
}
/* Hide duplicate labels */
.define-appconfig [data-schemapath="root.annotations"] table thead,
.define-source [data-schemapath="root.annotationOptions"] table thead,
.define-source [data-schemapath="root.map.annotationOptions"] table thead,
.define-sink [data-schemapath="root.annotationOptions"] table thead,
.define-sink [data-schemapath="root.map.annotationOptions"] table thead,
.define-stream [data-schemapath="root.annotations"] table thead,
.define-table [data-schemapath="root.annotations"] table thead,
.define-window [data-schemapath="root.annotations"] table thead,
.define-window [data-schemapath="root.parameters"] table thead,
.define-trigger [data-schemapath="root.annotations"] table thead,
.define-partition [data-schemapath="root.annotations"] table thead,
.define-windowFilterProjection-query [data-schemapath="root.annotations"] table thead,
.define-windowFilterProjection-query [data-schemapath="root.streamHandlerList.0.streamHandler.parameters"] table thead,
.define-aggregation [data-schemapath="root.annotations"] table thead,
.define-aggregation [data-schemapath="root.aggregateByTimePeriod"] table thead,
.define-pattern-query [data-schemapath="root.annotations"] table thead,
.define-sequence-query [data-schemapath="root.annotations"] table thead {
display: none;
}
.incomplete-element {
border: 1px solid yellow;
box-shadow: 0 0 1px 2px yellow;
}
.error-element {
border: 1px solid #FF0000;
box-shadow: 0 0 1px 2px #FF0000;
}
.js-tree-error-node {
border: 1px solid red;
background: red;
}
.design-view-form-content input[type="text"].required-input-field,
.design-view-form-content textarea.required-input-field {
border: 1px solid #FF0000;
}
.design-view-form-content .error-message {
color: red;
padding-top: 3px;
}
.design-view-form-content .customized-options .error-message,
.design-view-form-content .source-sink-map-options .customized-options .error-message {
margin-left: 75px;
}
.design-view-form-content .partition-form-container #partition-by-stream-name-label {
margin-left: 120px;
}
.design-view-form-content .partition-form-container .partition-by-expression {
margin-right: 10px;
}
.source-sink-form-container .source-sink-map-options .error-message,
.table-form-container #store-options .error-message,
.table-form-container #define-predefined-annotations .error-message,
.window-form-container #defineFunctionParameters .error-message {
margin-left: 20px;
}
.design-view-form-content input[type="text"],
.design-view-form-content textarea {
border: 1px solid #716e6e;
line-height: 20px;
padding: 0 5px;
color: #ccc;
background: #424242;
}
.design-view-form-content input[type="text"].option-value,
.window-form-container input[type="text"].parameter-value {
width: calc(90% - 30px);
margin-bottom: 2px;
margin-left: 20px;
}
.trigger-form-container #trigger-criteria-content .description {
font-size: 12px;
margin-left: 5px;
color: #ccc;
}
.table-form-container input[type="text"].annotation-value {
margin-bottom: 2px;
margin-left: 20px;
}
.design-view-form-content .attr-nav {
margin-left: 10px;
}
.design-view-form-content .attribute .attr-nav a {
float: left;
display: inline-block;
height: 22px;
padding: 0 5px;
margin-left: 3px;
margin-top: 2px;
background: #424242;
color: #ccc;
border: 1px solid #716e6e;
}
.design-view-form-content .btn-del-option,
.window-form-container .btn-del-parameter,
.table-form-container .btn-del-annot-value {
display: inline-block;
height: 21px;
padding: 0 8px;
background: #424242;
margin-left: 3px;
border: 1px solid #716e6e;
}
.source-sink-form-container input[type="text"].readonly-attr,
.source-sink-form-container #attributeMap-type:disabled,
.table-form-container #store-type:disabled,
.partition-form-container #define-partition-keys .partition-by-stream-name {
cursor: not-allowed;
background: #1d1d1d;
border: 1px solid #545353;
}
.design-view-form-content .attribute .attr-nav a .fw-sort-down {
font-size: 16px;
margin-top: -3px;
color: #ccc;
}
.design-view-form-content .attribute .attr-nav a .fw-sort-up {
font-size: 16px;
margin-top: 6px;
color: #ccc;
}
.clearfix {
display: block;
content: "";
clear: both;
}
.design-view-form-content .fw-delete {
font-size: 12px;
margin-top: 3px;
color: #ccc;
}
.design-view-form-content .attr-nav,
.design-view-form-content .attr-content {
display: inline-block;
float: left;
}
.design-view-form-content .attribute {
margin-bottom: 5px;
}
.design-view-form-content .annotation > a > i.jstree-checkbox,
.design-view-form-content .annotation > .jstree-clicked > i.jstree-checkbox,
.design-view-form-content .annotation > i.jstree-checkbox {
display: none;
}
.design-view-form-content .annotation-key > a > i.jstree-checkbox,
.design-view-form-content .annotation-key > .jstree-clicked > i.jstree-checkbox,
.design-view-form-content .annotation-key > i.jstree-checkbox {
display: none;
}
.design-view-form-content .annotation-value > a > i.jstree-checkbox,
.design-view-form-content .annotation-value > .jstree-clicked > i.jstree-checkbox,
.design-view-form-content .annotation-value > i.jstree-checkbox {
display: none;
}
.design-view-form-content .mandatory-key > a > i.jstree-checkbox,
.design-view-form-content .mandatory-key > .jstree-clicked > i.jstree-checkbox {
display: none;
}
.design-view-form-content .mandatory-annotation > a > i.jstree-checkbox,
.design-view-form-content .mandatory-annotation > .jstree-clicked > i.jstree-checkbox {
display: none;
}
.design-view-form-content .mandatory-annotation > a.jstree-hovered,
.design-view-form-content .optional-key > a.jstree-hovered,
.design-view-form-content .annotation-value > a.jstree-hovered {
cursor: context;
color: #ccc;
background: transparent;
border-radius: 0px;
}
.design-view-form-content .optional-annotation > a.jstree-hovered,
.design-view-form-content .mandatory-key > a.jstree-hovered {
cursor: default;
color: #ccc;
background: transparent;
border-radius: 0px;
}
.design-view-form-content .jstree-clicked {
background: #5F5B5A;
color: black;
border-radius: 2px;
box-shadow: inset 0 0 1px #999999;
}
.design-view-form-content .jstree-hovered {
background: transparent;
}
.design-view-form-content .stream-form-container #define-annotation {
margin-top: 10px;
color: #ccc;
}
.design-view-form-content .cust-option-key {
margin-left: 20px;
}
.design-view-form-content .cust-option-value {
margin-left: 10px;
}
.stream-form-container {
width: 50%;
}
.partition-form-container {
width: 40%;
}
.stream-form-container,
.source-sink-form-container,
.table-form-container,
.window-form-container,
.trigger-form-container,
.function-form-container,
.partition-form-container {
float: left;
display: inline-block;
padding: 5px;
}
.window-form-container,
.trigger-form-container,
.function-form-container {
width: 25%;
}
.trigger-form-container #define-trigger-criteria {
margin-top: -3px;
margin-bottom: 10px;
}
.window-form-container #defineFunctionName,
.window-form-container #defineOutputEvents,
.window-form-container #define-annotation {
margin-top: 18px;
}
.design-view-form-content .source-div,
.design-view-form-content .sink-div {
width: 45%;
}
.design-view-form-content .table-div {
width: 25%;
}
.design-view-form-content .mapper-div {
width: 25%;
}
.design-view-form-content .store-div {
width: 40%;
margin-top: 20px;
}
.design-view-form-content .define-table-annotation {
width: 30%;
margin-top: 10px;
margin-left: 20px;
}
.table-form-container #table-annotations .table-annotation {
margin-bottom: 10px;
}
.design-view-form-content .attribute-map-div {
width: 30%;
margin-top: 48px;
}
.table-form-container #store-options,
.source-sink-form-container #source-options,
.source-sink-form-container #sink-options {
display: flex;
}
.table-form-container .sub-store-options-div,
.source-sink-form-container .sub-source-options-div,
.source-sink-form-container .sub-sink-options-div {
width: 50%;
}
.design-view-form-content #btn-submit,
.design-view-form-content #btn-cancel {
margin-top: 15px;
margin-right: 10px;
}
.design-view-form-content input[type="checkbox"],
.design-view-form-content input[type="radio"] {
margin: 0px 5px 0px 0;
vertical-align: middle;
}
.design-view-form-content #attribute-key-label {
margin-left: 75px;
margin-right: 100px;
}
.design-view-form-content .fw-info {
font-size: 10px;
margin-left: 3px;
color: #b7f1eb;
}
.design-view-form-content .trigger-form-container .fw-info {
font-size: 12px;
}
.design-view-form-content .cust-options .option {
margin-bottom: 2px;
}
.design-view-form-content .source-sink-form-container #stream-attributes {
margin-top: 10px;
}
.design-view-form-content .option .option-desc-content,
.design-view-form-content .parameter .parameter-desc-content,
.trigger-form-container #define-trigger-criteria .criteria-description {
font-family: Arial;
background: #252525;
width: 250px;
color: #eee;
text-align: left;
border-radius: 6px;
padding: 5 5px;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.design-view-form-content .btn-default {
color: #ccc;
background: #2c2c2c;
margin-top: 15px;
}
.table-form-container #table-annotations .btn-add-annot-value {
margin-top: 0px;
margin-bottom: 10px;
margin-left: 160px;
}
.design-view-form-content .mandatory-option-symbol,
.design-view-form-content .mandatory-parameter-symbol {
margin-right: 12px;
}
.design-view-form-content select {
color: #ccc;
background: #424242;
border: 1px solid #716e6e;
height: 22px;
margin-top: 2px;
}
.design-view-form-content .optional-option:hover,
.design-view-form-content .optional-parameter:hover,
.source-sink-form-container #attribute-map-label:hover,
.table-form-container .rdbms-type,
.table-form-container #table-annotations .annotation-name {
cursor: pointer;
}
.source-sink-form-container .attribute-labels {
margin-top: 10px;
}
.design-view-form-content label {
word-break: break-all;
}
.table-form-container .rdbms-type {
margin-right: 10px;
margin-top: 10px;
}
.selector {
position: absolute;
background: rgba(0, 0, 255, 0.1) none repeat scroll 0% 0%;
border: 1px solid rgba(0, 0, 255, 0.45);
display: none;
pointer-events: none;
left: 0px;
top: 0px;
}
textarea {
width: 95%;
background: #424242;
min-height: 65px;
}
.focused-container {
border-color: #4af;
box-shadow: 0 0 1px 2px #4af !important;
}
.selected-container {
border-color: #4af;
box-shadow: 0 0 1px 1px #4af;
}
.selected-button {
color: #ffffff !important;
transition: 0.15s !important;
} | 0.457379 | 0.154121 |
body {
font-family: "Century Gothic", "Gill Sans", Arial, sans-serif;
font-size: 62.5%;
margin: 0;
padding: 0;
background-color: #FFFFFF;
}
p,h1,h2,h3,h4,h5,h5,ol,ul {
margin: 0px;
padding: 0px;
}
/*********************/
/* BANNER STYLES */
/*********************/
#banner {
background: url(../images/bg/banner_bg.jpg) repeat-x left top;
position: relative;
border: 1px solid black;
}
/*********************/
/* MAIN NAV */
/*********************/
#nav {
margin-bottom: 0px;
position: absolute;
top: 75px;
left: 5px;
}
#nav li {
list-style-type: none;
padding: 0px;
margin: 0;
float: left;
}
#nav a {
display: block;
font-size: 11px;
color: #D6ECAE;
text-decoration: none;
background-color: #294E56;
padding: 2px 2px 2px 3px;
width: 8em;
margin-left: 2px;
border-right: 1px solid #73AFB7;
border-bottom: 1px solid #73AFB7;
font-weight: bold;
margin-bottom: 2px;
}
#nav a:hover {
background: #73AFB7;
border-right: 1px solid #14556B;
border-bottom: 1px solid #14556B;
color: #FBEF99;
}
/*highlight "you are here" buttons*/
#home #nav a#homeLink,
#feature #nav a#featureLink {
background: #73AFB7;
border-right: 1px solid #14556B;
border-bottom: 1px solid #14556B;
color: #FBEF99;
}
#logo {
background: url(../images/bg/banner_flower.jpg) no-repeat right top;
height: 100px;
}
/*********************/
/* SIDEBAR */
/*********************/
#news {
margin: 0px;
padding: 0px;
list-style: none;
font-size: 1.2em;
border-top: 1px dashed #294E56;
border-right: 1px dashed #294E56;
}
#news li {
display: inline;
}
#news .title {
font-weight: bold;
display: block;
color: #666666;
}
#news a {
text-decoration: none;
display: block;
padding: 5px;
border-bottom: 1px dashed #294E56;
color: #73AFB7;
line-height: 110%;
background: #FFFFFF url(../images/bg/bg_link.png) no-repeat right top;
}
/* hack for IE 6 < to make entire block clickable */
* html #news a {
height: 1px;
}
#news a:hover {
color: #000000;
background-image: url(../images/bg/bg_link_h.png);
}
/*********************/
/* MAIN */
/*********************/
h1 {
color: #294E56;
margin-top: 10px;
font-size: 2.4em;
border-top: 4px solid #294E56;
line-height: 100%;
}
.section {
display: inline;
color: #999999;
font-weight: normal;
}
.floatRight {
float: right;
margin: 5px 10px 2px 15px;
}
img.floatRight {
border: 2px solid #000000;
}
p {
color: #666666;
font-size: 1.6em;
}
h2 {
color: #F4BE04;
font-size: 1.9em;
margin-top: 10px;
overflow: hidden;
padding-top: 0px;
background: url(../images/bg/bg_h2.gif) repeat-x left bottom;
}
/*********************/
/* FOOTER */
/*********************/
#footer {
margin-top: 15px;
border-top: 1px dashed #666666;
padding: 5px 0 0 5px;
margin-right: 200px;
text-align:center
} | server/src/main/webapp/css/start.css |
body {
font-family: "Century Gothic", "Gill Sans", Arial, sans-serif;
font-size: 62.5%;
margin: 0;
padding: 0;
background-color: #FFFFFF;
}
p,h1,h2,h3,h4,h5,h5,ol,ul {
margin: 0px;
padding: 0px;
}
/*********************/
/* BANNER STYLES */
/*********************/
#banner {
background: url(../images/bg/banner_bg.jpg) repeat-x left top;
position: relative;
border: 1px solid black;
}
/*********************/
/* MAIN NAV */
/*********************/
#nav {
margin-bottom: 0px;
position: absolute;
top: 75px;
left: 5px;
}
#nav li {
list-style-type: none;
padding: 0px;
margin: 0;
float: left;
}
#nav a {
display: block;
font-size: 11px;
color: #D6ECAE;
text-decoration: none;
background-color: #294E56;
padding: 2px 2px 2px 3px;
width: 8em;
margin-left: 2px;
border-right: 1px solid #73AFB7;
border-bottom: 1px solid #73AFB7;
font-weight: bold;
margin-bottom: 2px;
}
#nav a:hover {
background: #73AFB7;
border-right: 1px solid #14556B;
border-bottom: 1px solid #14556B;
color: #FBEF99;
}
/*highlight "you are here" buttons*/
#home #nav a#homeLink,
#feature #nav a#featureLink {
background: #73AFB7;
border-right: 1px solid #14556B;
border-bottom: 1px solid #14556B;
color: #FBEF99;
}
#logo {
background: url(../images/bg/banner_flower.jpg) no-repeat right top;
height: 100px;
}
/*********************/
/* SIDEBAR */
/*********************/
#news {
margin: 0px;
padding: 0px;
list-style: none;
font-size: 1.2em;
border-top: 1px dashed #294E56;
border-right: 1px dashed #294E56;
}
#news li {
display: inline;
}
#news .title {
font-weight: bold;
display: block;
color: #666666;
}
#news a {
text-decoration: none;
display: block;
padding: 5px;
border-bottom: 1px dashed #294E56;
color: #73AFB7;
line-height: 110%;
background: #FFFFFF url(../images/bg/bg_link.png) no-repeat right top;
}
/* hack for IE 6 < to make entire block clickable */
* html #news a {
height: 1px;
}
#news a:hover {
color: #000000;
background-image: url(../images/bg/bg_link_h.png);
}
/*********************/
/* MAIN */
/*********************/
h1 {
color: #294E56;
margin-top: 10px;
font-size: 2.4em;
border-top: 4px solid #294E56;
line-height: 100%;
}
.section {
display: inline;
color: #999999;
font-weight: normal;
}
.floatRight {
float: right;
margin: 5px 10px 2px 15px;
}
img.floatRight {
border: 2px solid #000000;
}
p {
color: #666666;
font-size: 1.6em;
}
h2 {
color: #F4BE04;
font-size: 1.9em;
margin-top: 10px;
overflow: hidden;
padding-top: 0px;
background: url(../images/bg/bg_h2.gif) repeat-x left bottom;
}
/*********************/
/* FOOTER */
/*********************/
#footer {
margin-top: 15px;
border-top: 1px dashed #666666;
padding: 5px 0 0 5px;
margin-right: 200px;
text-align:center
} | 0.242206 | 0.07353 |
.primary-color {
color: white;
}
.secondary-color {
color: #3F4531;
}
.primary-background-color {
background-color: rgb(48,103,120);
}
.secondary-background-color {
background-color: #fed547;
}
.process-step .step-base {
height: 6em;
-webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 3em, 90% 6em, 0% 6em, 10% 3em);
clip-path: polygon(0% 0%, 90% 0%, 100% 3em, 90% 6em, 0% 6em, 10% 3em);
padding: 1em 15% 1em 15%;
}
.process-step:last-child .step-base {
height: 6em;
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 6em, 10% 3em);
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 6em, 10% 3em);
padding: 1em 15% 1em 15%;
}
.process-step:last-child .step-caption {
width: 100%;
}
.process-step:first-child .step-base {
height: 6em;
-webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 3em, 90% 6em, 0% 6em);
clip-path: polygon(0% 0%, 90% 0%, 100% 3em, 90% 6em, 0% 6em);
padding: 1em 15% 1em 15%;
}
.process-step {
padding: 0px;
margin-bottom: 1.5em;
font-size: 16px;
}
.steps-container {
padding-top: 1.5em;
}
@media only screen and (min-width: 900px) {
.steps-container{
padding-left: 25vw;
}
}
.step-caption {
position: absolute;
z-index: 10;
top: 100%;
width: 90%;
left: 0px;
max-height: 0px;
display: inline-block;
overflow: hidden;
transition: all .5s ease;
}
.step-caption .caption-content {
position: relative;
top: 0%;
width: 100%;
left: 0px;
min-height: 7.5em;
/*padding: .5em 1rem;*/
margin: 0px;
}
.step-caption .caption-content > * {
max-width: 100%;
padding: .5em 1rem;
}
.step-caption .caption-content > img {
max-width: 100%;
padding: 0px;
}
.process-step:hover .step-caption {
display: block;
max-height: 15em;
}
.process-step:hover .step-caption .caption-content {
top: 0%;
}
.primary-color {
color: white;
}
.secondary-color {
color: #3F4531;
}
.primary-background-color {
background-color: rgb(48,103,120);
}
.secondary-background-color {
background-color: #fed547;
} | static/Process-Steps.css | .primary-color {
color: white;
}
.secondary-color {
color: #3F4531;
}
.primary-background-color {
background-color: rgb(48,103,120);
}
.secondary-background-color {
background-color: #fed547;
}
.process-step .step-base {
height: 6em;
-webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 3em, 90% 6em, 0% 6em, 10% 3em);
clip-path: polygon(0% 0%, 90% 0%, 100% 3em, 90% 6em, 0% 6em, 10% 3em);
padding: 1em 15% 1em 15%;
}
.process-step:last-child .step-base {
height: 6em;
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 6em, 10% 3em);
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 6em, 10% 3em);
padding: 1em 15% 1em 15%;
}
.process-step:last-child .step-caption {
width: 100%;
}
.process-step:first-child .step-base {
height: 6em;
-webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 3em, 90% 6em, 0% 6em);
clip-path: polygon(0% 0%, 90% 0%, 100% 3em, 90% 6em, 0% 6em);
padding: 1em 15% 1em 15%;
}
.process-step {
padding: 0px;
margin-bottom: 1.5em;
font-size: 16px;
}
.steps-container {
padding-top: 1.5em;
}
@media only screen and (min-width: 900px) {
.steps-container{
padding-left: 25vw;
}
}
.step-caption {
position: absolute;
z-index: 10;
top: 100%;
width: 90%;
left: 0px;
max-height: 0px;
display: inline-block;
overflow: hidden;
transition: all .5s ease;
}
.step-caption .caption-content {
position: relative;
top: 0%;
width: 100%;
left: 0px;
min-height: 7.5em;
/*padding: .5em 1rem;*/
margin: 0px;
}
.step-caption .caption-content > * {
max-width: 100%;
padding: .5em 1rem;
}
.step-caption .caption-content > img {
max-width: 100%;
padding: 0px;
}
.process-step:hover .step-caption {
display: block;
max-height: 15em;
}
.process-step:hover .step-caption .caption-content {
top: 0%;
}
.primary-color {
color: white;
}
.secondary-color {
color: #3F4531;
}
.primary-background-color {
background-color: rgb(48,103,120);
}
.secondary-background-color {
background-color: #fed547;
} | 0.567098 | 0.14072 |
* {
margin: 0;
padding: 0;
-webkit-overflow-scrolling: touch;
}
.mw-dialog-opened, .mw-dialog-opened body {
overflow: hidden !important;
}
body {
font-feature-settings: 'liga';
cursor: default;
}
.mw-defaults {
line-height: normal;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.mw-defaults * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: Verdana, Geneva, sans-serif;
}
.mw-defaults li {
line-height: 22px;
}
.mw-defaults {
font-size: 12px;
color: #212121;
}
.mw-defaults li, .mw-defaults ol, .mw-defaults ul {
margin: 0;
padding: 0;
}
#mw_toolbar_back_to_live_edit {
position: fixed;
top: 0;
left: 50%;
margin-left: -75px;
z-index: 99999;
/*border-radius: 0 0 3px 3px;*/
border-top-right-radius: 0;
border-top-left-radius: 0;
font-family: 'Open Sans', sans-serif !important;
background-color: #0084d8;
border-color: #0084d8;
padding: 0 12px;
font-size: 12px;
color: #fff;
height: 32px;
line-height: 30px;
}
#mw_toolbar_back_to_live_edit:hover {
background-color: #fff;
border-color: #fff;
color: #212121;
border-top-right-radius: 0;
border-top-left-radius: 0;
text-decoration: none;
}
#mw_toolbar_back_to_live_edit i {
font-family: 'Open Sans', sans-serif !important;
font-size: 21px;
margin-right: 3px;
}
body.mw-preview {
-moz-transform: scale(0.36);
-moz-transform-origin: 0 0;
-o-transform: scale(0.36);
-o-transform-origin: 0 0;
-webkit-transform: scale(0.36);
-webkit-transform-origin: 0 0;
transform: scale(0.36);
transform-origin: 0 0;
}
.mw-empty {
display: none;
}
.mw-empty-element:empty {
display: none;
}
img[src*=pixum_img] {
background: #e8e8e8;
}
.autoscale {
min-width: 100%;
max-width: 100%;
width: 100%;
min-height: 100%;
max-height: 100%;
height: 100%;
display: block;
}
.autoscale-x {
min-width: 100%;
max-width: 100%;
width: 100%;
height: auto;
display: block;
}
.autoscale-y {
min-height: 100%;
max-height: 100%;
height: 100%;
width: auto;
display: block;
}
.mw-hide {
display: none !important;
}
.mw-row {
margin-top: 10px;
margin-bottom: 10px;
display: table !important;
table-layout: fixed;
width: 100%;
max-width: 100%;
zoom: 1;
}
/*.mw-col, .mw-row, .element {
position: relative;
}*/
body.state-element .mw-row .element {
z-index: 91;
}
.element, .edit .module {
clear: both;
-moz-transition: none !important;
-webkit-transition: none !important;
-o-transition: color 0 ease-in !important;
transition: none !important;
}
.mw-live-edit .module {
min-height: 20px;
}
img[align='center'],
img[align='middle'] {
margin-left: auto;
margin-right: auto;
display: block;
}
.element, .mw-col, .mw_item {
-ms-transform-origin: 50% 50%;
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.mw-col-container > h1:first-child,
.mw-col-container > h2:first-child,
.mw-col-container > h3:first-child,
.mw-col-container > h4:first-child,
.mw-col-container > h5:first-child,
.mw-col-container > p:first-child,
.mw-ui-col-container > h1:first-child,
.mw-ui-col-container > h2:first-child,
.mw-ui-col-container > h3:first-child,
.mw-ui-col-container > h4:first-child,
.mw-ui-col-container > h5:first-child,
.mw-ui-col-container > p:first-child {
margin-top: 0;
}
.mw-col-container img.element:first-child,
.mw-col-container .picture:first-child img.element {
margin-top: 0;
}
.mw-col-container img.element:last-child,
.mw-col-container .picture:last-child img.element {
margin-bottom: 0;
}
/***************** Grids *******************/
.mw-col {
display: table-cell;
margin: 0;
padding: 0;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.edit, .mw-col {
/*position: relative;*/
vertical-align: top;
}
.mw-live-edit.dragStart div.edit, .mw-live-edit.dragStart div.mw-col {
min-height: 50px;
}
/*.edit:after, .mw-col:after, .element:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}*/
.mw-live-edit .element:empty {
min-height: 20px;
}
.mw-col + br, .mw-col + p {
display: none !important;
}
.mw-col-container {
padding-left: 10px;
padding-right: 10px;
max-width: 100%;
min-height: 30px;
position: relative;
vertical-align: top;
}
.mw-ui-col:first-child > .mw-col-container {
padding-left: 0
}
.mw-ui-col:last-child > .mw-col-container {
padding-right: 0
}
html[dir="rtl"] .mw-ui-col:first-child > .mw-col-container {
padding-left: 10px;
padding-right: 10px;
}
html[dir="rtl"] .mw-ui-col:last-child > .mw-col-container {
padding-right: 10px;
padding-left: 10px;
}
.mw-col-container:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.mw-row > .mw-col:first-child > .mw-col-container {
padding-left: 0;
}
.mw-row > .mw-col:last-child > .mw-col-container {
padding-right: 0;
}
.mw-col img {
height: auto !important;
max-width: 100%;
}
.free-element {
position: relative;
min-height: 300px;
}
@media (max-width: 767px) {
.mw-row {
display: block;
}
.mw-col {
width: auto !important;
float: none;
display: block !important;
}
.mw-col > .ui-resizable-e {
display: none;
}
.mw-row .mw-col .mw-col-container {
padding-left: 0px;
padding-right: 0px;
}
}
/* Static Grid */
.mw-ui-row, .mw-ui-row-nodrop {
display: table !important;
table-layout: fixed;
width: 100%;
}
.mw-ui-row-fixed {
table-layout: fixed;
}
.mw-ui-col, .mw-ui-row-nodrop .mw-ui-col {
display: table-cell;
vertical-align: top;
}
.mw-ui-col-container {
position: relative;
display: block;
clear: both;
padding-left: 10px;
padding-right: 10px;
}
.mw-ui-row > .mw-ui-col:only-child > .mw-ui-col-container, .mw-ui-row-nodrop > .mw-ui-col:only-child > .mw-ui-col-container {
padding: 0px;
}
.mw-ui-row > .mw-ui-col:first-child > .mw-ui-col-container, .mw-ui-row-nodrop > .mw-ui-col:first-child > .mw-ui-col-container {
padding-left: 0
}
.mw-ui-row > .mw-ui-col:last-child > .mw-ui-col-container, .mw-ui-row-nodrop > .mw-ui-col:last-child > .mw-ui-col-container {
padding-right: 0;
}
.mw-ui-col-container:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.vertical-middle,
.vertical-middle > *,
.vertical-middle > .mw-ui-col > .mw-ui-col-container,
.vertical-middle > .mw-ui-col > .mw-ui-col-container > * {
vertical-align: middle;
}
@media (max-width: 1024px) {
.mw-ui-row-drop-on-1024 > .mw-ui-col {
display: block !important;
clear: both;
width: auto !important;
}
.mw-ui-row-drop-on-1024 > .mw-ui-col > .mw-ui-col-container {
padding-left: 0;
padding-right: 0;
}
}
@media (max-width: 768px) {
.mw-ui-row, .mw-ui-row > .mw-ui-col {
display: block !important;
clear: both;
width: auto !important;
}
.mw-ui-row > .mw-ui-col > .mw-ui-col-container {
padding-left: 0 !important;
padding-right: 0 !important;
}
}
/***************** /Grids *******************/
.layout-element {
clear: both;
float: none;
}
.mw-embed-iframe, .mwembed {
padding: 12px 0;
min-height: 200px;
position: relative;
}
.mwembed {
min-height: 20px;
}
.mw-embed-iframe iframe,
.mwembed video,
.mwembed audio,
.mwembed iframe {
max-width: 100%;
max-height: 100%;
}
body.dragStart .mwembed:after,
body.Resizing .mwembed:after {
position: absolute;
display: block;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9;
background: transparent;
}
.mw-embed-embed {
padding: 12px 0;
}
.mw-embed-embed embed, .mw-embed-embed object {
max-width: 100%;
}
.mw-uploaded-file {
font-size: 12px;
text-decoration: underline;
color: #4688EC;
display: inline-block;
margin-right: 7px;
}
.mw-uploaded-file:hover {
text-decoration: none;
}
.mw_clear {
display: block;
height: 1px;
overflow: hidden;
clear: both;
}
.mw-uploader {
position: absolute;
top: 0;
left: 0;
z-index: 9;
width: 100%;
height: 100%;
}
.mw-uploader iframe {
min-height: 100%;
}
.notransition {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
-ms-transition: none !important;
transition: none !important;
}
.relative {
position: relative;
}
.inline-block {
display: inline-block;
}
.mw-vspace {
padding: 12px 0;
}
.vSpace {
clear: both;
display: block;
padding-bottom: 6px;
padding-top: 6px;
}
#mw-html-info {
position: absolute;
left: -9999px;
top: -9999px;
}
.free-item {
position: absolute;
}
.edit .module-video, .edit .module-pictures {
padding: 10px 0;
}
/* Tables */
table[class*='mw-wysiwyg-table'] {
width: 100%;
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
max-width: 100%;
table-layout: fixed;
}
table[class*='mw-wysiwyg-table'] td {
padding: 6px;
vertical-align: top;
}
table[class*='mw-wysiwyg-table'].valign td {
vertical-align: middle;
}
.mw-wysiwyg-table > tbody > tr > td {
border: 1px solid #DDDDDD;
}
/* Borderless */
.mw-wysiwyg-table-simple > tbody > tr > td {
border-width: 0px 0px 1px;
border-style: none none solid;
border-color: #DDDDDD;
}
/* Zebra */
.mw-wysiwyg-table-zebra > tbody > tr > td {
border: 1px solid #DDDDDD;
background-color: #F3F3F3;
}
.mw-wysiwyg-table-zebra > tbody > tr:nth-child(2n+1) > td {
background-color: #EDEDED;
}
/* Borderless Zebra */
.mw-wysiwyg-table-simple-zebra > tbody > tr > td {
border-width: 0px 0px 1px;
border-style: none none solid;
border-color: #DDDDDD;
background-color: #F3F3F3;
}
.mw-wysiwyg-table-simple-zebra > tbody > tr:nth-child(2n+1) > td {
background-color: #EDEDED;
}
.well {
display: block;
}
.valign {
display: table;
table-layout: fixed;
width: 100%;
height: 100%;
}
.valign-cell {
display: table-cell;
vertical-align: middle;
width: 100%;
height: 100%;
}
.valign-cell > * {
vertical-align: middle;
}
.img-polaroid, .img-rounded {
display: inline-block;
}
[class*="span"] {
margin-bottom: 20px;
}
/* /Tables */
#mw-inline-tableControl {
display: none;
}
.mw-live-edit #mw-inline-tableControl {
display: block;
}
.mw-cancel {
font-size: 11px;
color: #188DE7;
text-align: center;
cursor: pointer;
padding: 5px 19px;
border: 1px solid transparent;
}
.mw-cancel:hover {
background: #F3F3F3;
border-color: #D7D7D7;
}
.semi_hidden {
position: absolute !important;
left: -9999px !important;
top: -9999px !important;
}
.mw-span-font-size > * {
font-size: inherit;
}
.pagination-holder > ul {
margin: 10px 0;
}
.pagination-holder li {
list-style: none;
display: inline;
}
.mw-defaults img {
border: none;
max-width: 100%;
}
.mw-captcha-img {
min-width: 75px;
vertical-align: middle;
}
/* Overwriting clearing for elements that are columns */
.element[class*='col-'] {
clear: none;
}
/* Title is hidden in admin panel */
.mw-admin-view [rel='content'][field='title'] {
display: none !important;
}
span.mw-powered-by {
display: inline !important;
}
.mw-ui-btn-nav-tabs .mw-ui-btn .mw-icon-module,
.mw-ui-btn-nav-tabs .mw-ui-btn .mw-icon-template,
#create-menu-btn .mw-icon-plus {
/*float: left;*/
margin-right: 5px;
}
.mw-image-holder {
position: relative;
}
.mw-image-holder > img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
opacity: 0;
}
.mw-image-holder-content {
position: relative;
z-index: 1;
}
.mw-image-holder-overlay {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
pointer-events: none;
}
/* TODO */
.control-group select.mw-ui-field.form-control,
.module-contact-form select.mw-ui-field,
.module-contact-form select.form-control,
.module-contact-form select {
height: auto;
}
.gateway-selector img {
max-width: 100px;
width: fit-content;
}
.mw-padding-top-1 {
padding-top: 0px
}
.mw-padding-top-2 {
padding-top: 20px
}
.mw-padding-top-3 {
padding-top: 40px
}
.mw-padding-top-4 {
padding-top: 60px
}
.mw-padding-top-5 {
padding-top: 80px
}
.mw-padding-bottom-1 {
padding-bottom: 0px
}
.mw-padding-bottom-2 {
padding-bottom: 20px
}
.mw-padding-bottom-3 {
padding-bottom: 40px
}
.mw-padding-bottom-4 {
padding-bottom: 60px
}
.mw-padding-bottom-5 {
padding-bottom: 80px
}
.module-google-maps {
position: relative;
}
#category-parent-selector.mw-tree-nav-skin-default .mw-tree-item-title {
width: auto;
}
.mw-modal-confirm-actions {
text-align: center;
}
.mw-modal-confirm-actions .mw-ui-btn {
min-width: 100px;
vertical-align: top;
}
.gateway-selector li {
list-style-type: none;
}
.css-preset-dropdown {
border: 0 !important;
line-height: 1.2 !important;
padding: 0 !important;
}
.css-preset-dropdown:after {
margin-left: 0 !important;
font-size: 20px;
} | userfiles/modules/microweber/microweber.css | * {
margin: 0;
padding: 0;
-webkit-overflow-scrolling: touch;
}
.mw-dialog-opened, .mw-dialog-opened body {
overflow: hidden !important;
}
body {
font-feature-settings: 'liga';
cursor: default;
}
.mw-defaults {
line-height: normal;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.mw-defaults * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: Verdana, Geneva, sans-serif;
}
.mw-defaults li {
line-height: 22px;
}
.mw-defaults {
font-size: 12px;
color: #212121;
}
.mw-defaults li, .mw-defaults ol, .mw-defaults ul {
margin: 0;
padding: 0;
}
#mw_toolbar_back_to_live_edit {
position: fixed;
top: 0;
left: 50%;
margin-left: -75px;
z-index: 99999;
/*border-radius: 0 0 3px 3px;*/
border-top-right-radius: 0;
border-top-left-radius: 0;
font-family: 'Open Sans', sans-serif !important;
background-color: #0084d8;
border-color: #0084d8;
padding: 0 12px;
font-size: 12px;
color: #fff;
height: 32px;
line-height: 30px;
}
#mw_toolbar_back_to_live_edit:hover {
background-color: #fff;
border-color: #fff;
color: #212121;
border-top-right-radius: 0;
border-top-left-radius: 0;
text-decoration: none;
}
#mw_toolbar_back_to_live_edit i {
font-family: 'Open Sans', sans-serif !important;
font-size: 21px;
margin-right: 3px;
}
body.mw-preview {
-moz-transform: scale(0.36);
-moz-transform-origin: 0 0;
-o-transform: scale(0.36);
-o-transform-origin: 0 0;
-webkit-transform: scale(0.36);
-webkit-transform-origin: 0 0;
transform: scale(0.36);
transform-origin: 0 0;
}
.mw-empty {
display: none;
}
.mw-empty-element:empty {
display: none;
}
img[src*=pixum_img] {
background: #e8e8e8;
}
.autoscale {
min-width: 100%;
max-width: 100%;
width: 100%;
min-height: 100%;
max-height: 100%;
height: 100%;
display: block;
}
.autoscale-x {
min-width: 100%;
max-width: 100%;
width: 100%;
height: auto;
display: block;
}
.autoscale-y {
min-height: 100%;
max-height: 100%;
height: 100%;
width: auto;
display: block;
}
.mw-hide {
display: none !important;
}
.mw-row {
margin-top: 10px;
margin-bottom: 10px;
display: table !important;
table-layout: fixed;
width: 100%;
max-width: 100%;
zoom: 1;
}
/*.mw-col, .mw-row, .element {
position: relative;
}*/
body.state-element .mw-row .element {
z-index: 91;
}
.element, .edit .module {
clear: both;
-moz-transition: none !important;
-webkit-transition: none !important;
-o-transition: color 0 ease-in !important;
transition: none !important;
}
.mw-live-edit .module {
min-height: 20px;
}
img[align='center'],
img[align='middle'] {
margin-left: auto;
margin-right: auto;
display: block;
}
.element, .mw-col, .mw_item {
-ms-transform-origin: 50% 50%;
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.mw-col-container > h1:first-child,
.mw-col-container > h2:first-child,
.mw-col-container > h3:first-child,
.mw-col-container > h4:first-child,
.mw-col-container > h5:first-child,
.mw-col-container > p:first-child,
.mw-ui-col-container > h1:first-child,
.mw-ui-col-container > h2:first-child,
.mw-ui-col-container > h3:first-child,
.mw-ui-col-container > h4:first-child,
.mw-ui-col-container > h5:first-child,
.mw-ui-col-container > p:first-child {
margin-top: 0;
}
.mw-col-container img.element:first-child,
.mw-col-container .picture:first-child img.element {
margin-top: 0;
}
.mw-col-container img.element:last-child,
.mw-col-container .picture:last-child img.element {
margin-bottom: 0;
}
/***************** Grids *******************/
.mw-col {
display: table-cell;
margin: 0;
padding: 0;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.edit, .mw-col {
/*position: relative;*/
vertical-align: top;
}
.mw-live-edit.dragStart div.edit, .mw-live-edit.dragStart div.mw-col {
min-height: 50px;
}
/*.edit:after, .mw-col:after, .element:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}*/
.mw-live-edit .element:empty {
min-height: 20px;
}
.mw-col + br, .mw-col + p {
display: none !important;
}
.mw-col-container {
padding-left: 10px;
padding-right: 10px;
max-width: 100%;
min-height: 30px;
position: relative;
vertical-align: top;
}
.mw-ui-col:first-child > .mw-col-container {
padding-left: 0
}
.mw-ui-col:last-child > .mw-col-container {
padding-right: 0
}
html[dir="rtl"] .mw-ui-col:first-child > .mw-col-container {
padding-left: 10px;
padding-right: 10px;
}
html[dir="rtl"] .mw-ui-col:last-child > .mw-col-container {
padding-right: 10px;
padding-left: 10px;
}
.mw-col-container:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.mw-row > .mw-col:first-child > .mw-col-container {
padding-left: 0;
}
.mw-row > .mw-col:last-child > .mw-col-container {
padding-right: 0;
}
.mw-col img {
height: auto !important;
max-width: 100%;
}
.free-element {
position: relative;
min-height: 300px;
}
@media (max-width: 767px) {
.mw-row {
display: block;
}
.mw-col {
width: auto !important;
float: none;
display: block !important;
}
.mw-col > .ui-resizable-e {
display: none;
}
.mw-row .mw-col .mw-col-container {
padding-left: 0px;
padding-right: 0px;
}
}
/* Static Grid */
.mw-ui-row, .mw-ui-row-nodrop {
display: table !important;
table-layout: fixed;
width: 100%;
}
.mw-ui-row-fixed {
table-layout: fixed;
}
.mw-ui-col, .mw-ui-row-nodrop .mw-ui-col {
display: table-cell;
vertical-align: top;
}
.mw-ui-col-container {
position: relative;
display: block;
clear: both;
padding-left: 10px;
padding-right: 10px;
}
.mw-ui-row > .mw-ui-col:only-child > .mw-ui-col-container, .mw-ui-row-nodrop > .mw-ui-col:only-child > .mw-ui-col-container {
padding: 0px;
}
.mw-ui-row > .mw-ui-col:first-child > .mw-ui-col-container, .mw-ui-row-nodrop > .mw-ui-col:first-child > .mw-ui-col-container {
padding-left: 0
}
.mw-ui-row > .mw-ui-col:last-child > .mw-ui-col-container, .mw-ui-row-nodrop > .mw-ui-col:last-child > .mw-ui-col-container {
padding-right: 0;
}
.mw-ui-col-container:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.vertical-middle,
.vertical-middle > *,
.vertical-middle > .mw-ui-col > .mw-ui-col-container,
.vertical-middle > .mw-ui-col > .mw-ui-col-container > * {
vertical-align: middle;
}
@media (max-width: 1024px) {
.mw-ui-row-drop-on-1024 > .mw-ui-col {
display: block !important;
clear: both;
width: auto !important;
}
.mw-ui-row-drop-on-1024 > .mw-ui-col > .mw-ui-col-container {
padding-left: 0;
padding-right: 0;
}
}
@media (max-width: 768px) {
.mw-ui-row, .mw-ui-row > .mw-ui-col {
display: block !important;
clear: both;
width: auto !important;
}
.mw-ui-row > .mw-ui-col > .mw-ui-col-container {
padding-left: 0 !important;
padding-right: 0 !important;
}
}
/***************** /Grids *******************/
.layout-element {
clear: both;
float: none;
}
.mw-embed-iframe, .mwembed {
padding: 12px 0;
min-height: 200px;
position: relative;
}
.mwembed {
min-height: 20px;
}
.mw-embed-iframe iframe,
.mwembed video,
.mwembed audio,
.mwembed iframe {
max-width: 100%;
max-height: 100%;
}
body.dragStart .mwembed:after,
body.Resizing .mwembed:after {
position: absolute;
display: block;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9;
background: transparent;
}
.mw-embed-embed {
padding: 12px 0;
}
.mw-embed-embed embed, .mw-embed-embed object {
max-width: 100%;
}
.mw-uploaded-file {
font-size: 12px;
text-decoration: underline;
color: #4688EC;
display: inline-block;
margin-right: 7px;
}
.mw-uploaded-file:hover {
text-decoration: none;
}
.mw_clear {
display: block;
height: 1px;
overflow: hidden;
clear: both;
}
.mw-uploader {
position: absolute;
top: 0;
left: 0;
z-index: 9;
width: 100%;
height: 100%;
}
.mw-uploader iframe {
min-height: 100%;
}
.notransition {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
-ms-transition: none !important;
transition: none !important;
}
.relative {
position: relative;
}
.inline-block {
display: inline-block;
}
.mw-vspace {
padding: 12px 0;
}
.vSpace {
clear: both;
display: block;
padding-bottom: 6px;
padding-top: 6px;
}
#mw-html-info {
position: absolute;
left: -9999px;
top: -9999px;
}
.free-item {
position: absolute;
}
.edit .module-video, .edit .module-pictures {
padding: 10px 0;
}
/* Tables */
table[class*='mw-wysiwyg-table'] {
width: 100%;
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
max-width: 100%;
table-layout: fixed;
}
table[class*='mw-wysiwyg-table'] td {
padding: 6px;
vertical-align: top;
}
table[class*='mw-wysiwyg-table'].valign td {
vertical-align: middle;
}
.mw-wysiwyg-table > tbody > tr > td {
border: 1px solid #DDDDDD;
}
/* Borderless */
.mw-wysiwyg-table-simple > tbody > tr > td {
border-width: 0px 0px 1px;
border-style: none none solid;
border-color: #DDDDDD;
}
/* Zebra */
.mw-wysiwyg-table-zebra > tbody > tr > td {
border: 1px solid #DDDDDD;
background-color: #F3F3F3;
}
.mw-wysiwyg-table-zebra > tbody > tr:nth-child(2n+1) > td {
background-color: #EDEDED;
}
/* Borderless Zebra */
.mw-wysiwyg-table-simple-zebra > tbody > tr > td {
border-width: 0px 0px 1px;
border-style: none none solid;
border-color: #DDDDDD;
background-color: #F3F3F3;
}
.mw-wysiwyg-table-simple-zebra > tbody > tr:nth-child(2n+1) > td {
background-color: #EDEDED;
}
.well {
display: block;
}
.valign {
display: table;
table-layout: fixed;
width: 100%;
height: 100%;
}
.valign-cell {
display: table-cell;
vertical-align: middle;
width: 100%;
height: 100%;
}
.valign-cell > * {
vertical-align: middle;
}
.img-polaroid, .img-rounded {
display: inline-block;
}
[class*="span"] {
margin-bottom: 20px;
}
/* /Tables */
#mw-inline-tableControl {
display: none;
}
.mw-live-edit #mw-inline-tableControl {
display: block;
}
.mw-cancel {
font-size: 11px;
color: #188DE7;
text-align: center;
cursor: pointer;
padding: 5px 19px;
border: 1px solid transparent;
}
.mw-cancel:hover {
background: #F3F3F3;
border-color: #D7D7D7;
}
.semi_hidden {
position: absolute !important;
left: -9999px !important;
top: -9999px !important;
}
.mw-span-font-size > * {
font-size: inherit;
}
.pagination-holder > ul {
margin: 10px 0;
}
.pagination-holder li {
list-style: none;
display: inline;
}
.mw-defaults img {
border: none;
max-width: 100%;
}
.mw-captcha-img {
min-width: 75px;
vertical-align: middle;
}
/* Overwriting clearing for elements that are columns */
.element[class*='col-'] {
clear: none;
}
/* Title is hidden in admin panel */
.mw-admin-view [rel='content'][field='title'] {
display: none !important;
}
span.mw-powered-by {
display: inline !important;
}
.mw-ui-btn-nav-tabs .mw-ui-btn .mw-icon-module,
.mw-ui-btn-nav-tabs .mw-ui-btn .mw-icon-template,
#create-menu-btn .mw-icon-plus {
/*float: left;*/
margin-right: 5px;
}
.mw-image-holder {
position: relative;
}
.mw-image-holder > img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
opacity: 0;
}
.mw-image-holder-content {
position: relative;
z-index: 1;
}
.mw-image-holder-overlay {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
pointer-events: none;
}
/* TODO */
.control-group select.mw-ui-field.form-control,
.module-contact-form select.mw-ui-field,
.module-contact-form select.form-control,
.module-contact-form select {
height: auto;
}
.gateway-selector img {
max-width: 100px;
width: fit-content;
}
.mw-padding-top-1 {
padding-top: 0px
}
.mw-padding-top-2 {
padding-top: 20px
}
.mw-padding-top-3 {
padding-top: 40px
}
.mw-padding-top-4 {
padding-top: 60px
}
.mw-padding-top-5 {
padding-top: 80px
}
.mw-padding-bottom-1 {
padding-bottom: 0px
}
.mw-padding-bottom-2 {
padding-bottom: 20px
}
.mw-padding-bottom-3 {
padding-bottom: 40px
}
.mw-padding-bottom-4 {
padding-bottom: 60px
}
.mw-padding-bottom-5 {
padding-bottom: 80px
}
.module-google-maps {
position: relative;
}
#category-parent-selector.mw-tree-nav-skin-default .mw-tree-item-title {
width: auto;
}
.mw-modal-confirm-actions {
text-align: center;
}
.mw-modal-confirm-actions .mw-ui-btn {
min-width: 100px;
vertical-align: top;
}
.gateway-selector li {
list-style-type: none;
}
.css-preset-dropdown {
border: 0 !important;
line-height: 1.2 !important;
padding: 0 !important;
}
.css-preset-dropdown:after {
margin-left: 0 !important;
font-size: 20px;
} | 0.371251 | 0.079104 |
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;
font-size:100%;
font: inherit;
vertical-align:baseline;
}
body{/*body 태그의 폰트와 배경, 글자 행간 속성 설정*/
font-family: Sans-serif, Helvetica;
line-height:1;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{ /*HTML5 태그들이 정상 작동하도록*/
display:block;
}
ol, ul, li{/*ul, li 목록 스타일 초기화*/
list-style:none;
}
a{/*a 태그 초기화*/
margin:0;
padding:0;
font-size:100%;
text-decoration:none;
vertical-align:baseline;
color:rgb(0, 0, 0);
background:transparent;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
img{/*간격을 없애기 위해*/
vertical-align:top;
}
table{/*간격을 없애기 위해*/
border-collapse:collapse;
border-spacing:0;
}
input{/*input 태그 초기화*/
margin:0;
padding:0;
vertical-align:top;
appearance:none;
border-radius:0;
}
button{
background-color: transparent;
border:1px solid #eaeaea;
border-radius: 1.7px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
}
::-moz-placeholder { /* Firefox 19+ */
}
:-ms-input-placeholder { /* IE 10+ */
}
:-moz-placeholder { /* Firefox 18- */
}
/* Box Model */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
}
/* h tag */
h1,h2,h3,h4,h5{
line-height: 150%;
margin-bottom: 5px;
}
h1,h2,h3{
font-weight: 600;
}
h1{
font-size:2.5rem;
}
h2{
font-size:2.2rem;
}
h3{
font-size:1.8rem;
}
h4{
font-size:1.4rem;
}
h5{
font-size:1.2rem;
}
h6{
font-size:1.1rem;
} | page/public/css/reset.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;
font-size:100%;
font: inherit;
vertical-align:baseline;
}
body{/*body 태그의 폰트와 배경, 글자 행간 속성 설정*/
font-family: Sans-serif, Helvetica;
line-height:1;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{ /*HTML5 태그들이 정상 작동하도록*/
display:block;
}
ol, ul, li{/*ul, li 목록 스타일 초기화*/
list-style:none;
}
a{/*a 태그 초기화*/
margin:0;
padding:0;
font-size:100%;
text-decoration:none;
vertical-align:baseline;
color:rgb(0, 0, 0);
background:transparent;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
img{/*간격을 없애기 위해*/
vertical-align:top;
}
table{/*간격을 없애기 위해*/
border-collapse:collapse;
border-spacing:0;
}
input{/*input 태그 초기화*/
margin:0;
padding:0;
vertical-align:top;
appearance:none;
border-radius:0;
}
button{
background-color: transparent;
border:1px solid #eaeaea;
border-radius: 1.7px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
}
::-moz-placeholder { /* Firefox 19+ */
}
:-ms-input-placeholder { /* IE 10+ */
}
:-moz-placeholder { /* Firefox 18- */
}
/* Box Model */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
}
/* h tag */
h1,h2,h3,h4,h5{
line-height: 150%;
margin-bottom: 5px;
}
h1,h2,h3{
font-weight: 600;
}
h1{
font-size:2.5rem;
}
h2{
font-size:2.2rem;
}
h3{
font-size:1.8rem;
}
h4{
font-size:1.4rem;
}
h5{
font-size:1.2rem;
}
h6{
font-size:1.1rem;
} | 0.328422 | 0.10393 |
.reader_entity_title {
font-family: "Merriweather";
margin: 25px 50px;
text-align: center;
font-size: 23pt;
line-height: 1;
color: #3A3326;
font-weight: 600; }
.reader_entity_actions {
text-align: center; }
.reader_entity_actions .oo_icon {
margin: 0 5px;
color: #AD9F76;
cursor: pointer; }
.reader_entity_actions .oo_icon:hover {
color: #564e34; }
.reader_entity_actions .oo_icon:active {
transform: scale(0.8); }
.reader_entity_actions .oo_icon.oo_icon-selected {
color: #5D583F; }
.reader_entity_actions .oo_icon.oo_icon-selected:hover {
color: #3f3b2a; }
.reader_entity_body {
padding: 20px;
font-family: "Merriweather"; }
.reader_entity_list {
margin-bottom: 30px; }
.reader_entity_list_empty {
margin: 0;
color: #D8D3B8;
font-style: italic;
text-align: center;
font-size: 14px;
font-weight: 200; }
.reader_entity_header {
text-align: center;
color: #B7B09A;
font-size: 16px;
line-height: 1;
margin: 10px 0 20px;
text-transform: uppercase;
letter-spacing: .5px; }
.reader_entity_item {
margin: 10px auto;
max-width: 600px;
padding-bottom: 10px; }
.reader_entity_item:hover .oo_icon {
color: #AD9F76; }
.reader_entity_item .oo_icon:hover {
color: #564e34; }
.reader_entity_item_text {
position: relative;
margin: 0 0 0 25px;
font-weight: 400;
color: #3A3326; }
.reader_entity_item_text:before {
content: '\e902';
position: absolute;
margin: -5px 0 0 -28px;
font-size: 20px;
font-family: 'OnlineObjects';
font-weight: 400;
line-height: 1em;
top: 4px;
color: #E2DBC5; }
.reader_entity_item_text .oo_icon {
font-weight: normal;
margin: -2px 0 0 6px;
color: #D8D3B8;
cursor: pointer; }
.reader_entity_item_info {
margin: 10px 0 0 20%;
text-align: right;
font-size: 12px;
font-weight: 400;
font-family: "Inter", "Helvetica Neue", "Helvetica", Arial, sans-serif;
color: #D8D3B8; }
.reader_entity_item_link {
color: inherit;
text-decoration: none;
margin: 0 3px;
color: #D8D3B8; }
.reader_entity_item:hover .reader_entity_item_link {
color: #AD9F76;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); }
.reader_entity_item:hover .reader_entity_item_link:hover {
color: #564e34; } | src/main/webapp/WEB-INF/apps/knowledge/web/css/reader_entity.css | .reader_entity_title {
font-family: "Merriweather";
margin: 25px 50px;
text-align: center;
font-size: 23pt;
line-height: 1;
color: #3A3326;
font-weight: 600; }
.reader_entity_actions {
text-align: center; }
.reader_entity_actions .oo_icon {
margin: 0 5px;
color: #AD9F76;
cursor: pointer; }
.reader_entity_actions .oo_icon:hover {
color: #564e34; }
.reader_entity_actions .oo_icon:active {
transform: scale(0.8); }
.reader_entity_actions .oo_icon.oo_icon-selected {
color: #5D583F; }
.reader_entity_actions .oo_icon.oo_icon-selected:hover {
color: #3f3b2a; }
.reader_entity_body {
padding: 20px;
font-family: "Merriweather"; }
.reader_entity_list {
margin-bottom: 30px; }
.reader_entity_list_empty {
margin: 0;
color: #D8D3B8;
font-style: italic;
text-align: center;
font-size: 14px;
font-weight: 200; }
.reader_entity_header {
text-align: center;
color: #B7B09A;
font-size: 16px;
line-height: 1;
margin: 10px 0 20px;
text-transform: uppercase;
letter-spacing: .5px; }
.reader_entity_item {
margin: 10px auto;
max-width: 600px;
padding-bottom: 10px; }
.reader_entity_item:hover .oo_icon {
color: #AD9F76; }
.reader_entity_item .oo_icon:hover {
color: #564e34; }
.reader_entity_item_text {
position: relative;
margin: 0 0 0 25px;
font-weight: 400;
color: #3A3326; }
.reader_entity_item_text:before {
content: '\e902';
position: absolute;
margin: -5px 0 0 -28px;
font-size: 20px;
font-family: 'OnlineObjects';
font-weight: 400;
line-height: 1em;
top: 4px;
color: #E2DBC5; }
.reader_entity_item_text .oo_icon {
font-weight: normal;
margin: -2px 0 0 6px;
color: #D8D3B8;
cursor: pointer; }
.reader_entity_item_info {
margin: 10px 0 0 20%;
text-align: right;
font-size: 12px;
font-weight: 400;
font-family: "Inter", "Helvetica Neue", "Helvetica", Arial, sans-serif;
color: #D8D3B8; }
.reader_entity_item_link {
color: inherit;
text-decoration: none;
margin: 0 3px;
color: #D8D3B8; }
.reader_entity_item:hover .reader_entity_item_link {
color: #AD9F76;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); }
.reader_entity_item:hover .reader_entity_item_link:hover {
color: #564e34; } | 0.46563 | 0.108661 |
#search_page_body{
background-image: url("../../images/search-background.jpeg");
width: 100%;
height: 100%;
background-position: center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
#search_form_parent{
width: 500px;
background-color: rgba(78, 78, 104, 0.5);
height: 100%;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
@media(min-width:900px){
#search_form_parent{
width: 900px;
}
}
/* ======================================================================= */
/* ========================== Drop Down Styling ========================== */
/* ======================================================================= */
#search_form_type{
width: 80%;
height: 5%;
background-color: rgba(240, 248, 255, 0.7);
box-shadow: 10px 10px 8px black;
border-radius: 5px;
margin-top: 20px;
display: flex;
justify-content: center;
align-items: center;
}
#search_by_label{
width: 175px;
}
#search_page_dropdown{
width: 175px;
margin-left: -100px;
}
/* ======================================================================= */
/* ========================= Search Form Styling ========================= */
/* ======================================================================= */
#search_form_dish, #search_form_ingredients{
width: 60%;
height: 80%;
background-color: rgba(240, 248, 255, 0.7);
box-shadow: 10px 10px 8px black;
border-radius: 5px;
margin-top: 20px;
text-align: center;
}
#search_form_ingredients{
display: none;
}
/* ======================================================================= */
/* ==================== Universal Search Form Styling ==================== */
/* ======================================================================= */
.dish_search_elements, .ingredients_search_elements{
width: 80%;
height: 20px;
}
#dish_form_label, #ingredients_form_label{
height: 40px;
margin-top: 60px;
margin-left: 10%;
margin-bottom: 10px;
display: block;
font-size: x-large;
font-weight: bold;
}
#dish_form_button, #ingredients_form_button{
width: 60%;
}
/* ======================================================================= */
/* ====================== Dish Search Form Styling ======================= */
/* ======================================================================= */
#dish_form_input{
margin-bottom: 10px;
}
@media(min-width:900px){
#dish_form_label{
height: 20px;
}
#dish_form_button{
width: 30%;
}
}
@media(min-width:470px){
#dish_form_button{
width: 50%;
}
}
/* ======================================================================= */
/* =================== Ingredients Search Form Styling =================== */
/* ======================================================================= */
#ingredients_form_label{
margin-bottom: 20px;
}
#add_remove_buttons{
width: 100%;
}
#add_ingredients_button, #remove_ingredients_button{
width: 135px;
margin-bottom: 20px;
}
.search_form_ingred_section{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.ingredients_search_label{
width: 100px;
margin-bottom: 5px;
}
.ingredients_search_input{
width: 40%;
margin-bottom: 5px;
margin-left: 3px;
}
#ingredients_form_button{
width: 135px;
}
@media(min-width:900px){
#ingredients_form_label{
margin-bottom: 0;
}
}
#inside_search_page{
display: none;
}
/* ======================================================================= */
/* ========================= Alert Form Styling ========================== */
/* ======================================================================= */
/* taken directly from w3schools.com */
#search_page_alert_modal{
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 45%;
top: 45%;
width: 192px; /* Full width */
height: 108px; /* Full height */
background-color: silver;
border: black solid 5px;
}
#search_page_alert_form{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
#search_page_alert_msg{
width: 100%;
font-size: 1.1em;
font-weight: bolder;
text-align: center;
}
#search_page_alert_button{
width: 50%;
} | public/styles/modules/search.css |
#search_page_body{
background-image: url("../../images/search-background.jpeg");
width: 100%;
height: 100%;
background-position: center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
#search_form_parent{
width: 500px;
background-color: rgba(78, 78, 104, 0.5);
height: 100%;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
@media(min-width:900px){
#search_form_parent{
width: 900px;
}
}
/* ======================================================================= */
/* ========================== Drop Down Styling ========================== */
/* ======================================================================= */
#search_form_type{
width: 80%;
height: 5%;
background-color: rgba(240, 248, 255, 0.7);
box-shadow: 10px 10px 8px black;
border-radius: 5px;
margin-top: 20px;
display: flex;
justify-content: center;
align-items: center;
}
#search_by_label{
width: 175px;
}
#search_page_dropdown{
width: 175px;
margin-left: -100px;
}
/* ======================================================================= */
/* ========================= Search Form Styling ========================= */
/* ======================================================================= */
#search_form_dish, #search_form_ingredients{
width: 60%;
height: 80%;
background-color: rgba(240, 248, 255, 0.7);
box-shadow: 10px 10px 8px black;
border-radius: 5px;
margin-top: 20px;
text-align: center;
}
#search_form_ingredients{
display: none;
}
/* ======================================================================= */
/* ==================== Universal Search Form Styling ==================== */
/* ======================================================================= */
.dish_search_elements, .ingredients_search_elements{
width: 80%;
height: 20px;
}
#dish_form_label, #ingredients_form_label{
height: 40px;
margin-top: 60px;
margin-left: 10%;
margin-bottom: 10px;
display: block;
font-size: x-large;
font-weight: bold;
}
#dish_form_button, #ingredients_form_button{
width: 60%;
}
/* ======================================================================= */
/* ====================== Dish Search Form Styling ======================= */
/* ======================================================================= */
#dish_form_input{
margin-bottom: 10px;
}
@media(min-width:900px){
#dish_form_label{
height: 20px;
}
#dish_form_button{
width: 30%;
}
}
@media(min-width:470px){
#dish_form_button{
width: 50%;
}
}
/* ======================================================================= */
/* =================== Ingredients Search Form Styling =================== */
/* ======================================================================= */
#ingredients_form_label{
margin-bottom: 20px;
}
#add_remove_buttons{
width: 100%;
}
#add_ingredients_button, #remove_ingredients_button{
width: 135px;
margin-bottom: 20px;
}
.search_form_ingred_section{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.ingredients_search_label{
width: 100px;
margin-bottom: 5px;
}
.ingredients_search_input{
width: 40%;
margin-bottom: 5px;
margin-left: 3px;
}
#ingredients_form_button{
width: 135px;
}
@media(min-width:900px){
#ingredients_form_label{
margin-bottom: 0;
}
}
#inside_search_page{
display: none;
}
/* ======================================================================= */
/* ========================= Alert Form Styling ========================== */
/* ======================================================================= */
/* taken directly from w3schools.com */
#search_page_alert_modal{
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 45%;
top: 45%;
width: 192px; /* Full width */
height: 108px; /* Full height */
background-color: silver;
border: black solid 5px;
}
#search_page_alert_form{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
#search_page_alert_msg{
width: 100%;
font-size: 1.1em;
font-weight: bolder;
text-align: center;
}
#search_page_alert_button{
width: 50%;
} | 0.273283 | 0.046508 |
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-thin.woff2') format('woff2'), url('ttf/iosevka-term-thin.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedthin.woff2') format('woff2'), url('ttf/iosevka-term-extendedthin.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-thinoblique.woff2') format('woff2'), url('ttf/iosevka-term-thinoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 100;
font-stretch: normal;
src: url('woff2/iosevka-term-thinoblique.woff2') format('woff2'), url('ttf/iosevka-term-thinoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedthinoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedthinoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 100;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedthinoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedthinoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-thinitalic.woff2') format('woff2'), url('ttf/iosevka-term-thinitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedthinitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedthinitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-extralight.woff2') format('woff2'), url('ttf/iosevka-term-extralight.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedextralight.woff2') format('woff2'), url('ttf/iosevka-term-extendedextralight.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-extralightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extralightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 200;
font-stretch: normal;
src: url('woff2/iosevka-term-extralightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extralightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedextralightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedextralightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 200;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedextralightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedextralightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-extralightitalic.woff2') format('woff2'), url('ttf/iosevka-term-extralightitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedextralightitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedextralightitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-light.woff2') format('woff2'), url('ttf/iosevka-term-light.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedlight.woff2') format('woff2'), url('ttf/iosevka-term-extendedlight.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-lightoblique.woff2') format('woff2'), url('ttf/iosevka-term-lightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 300;
font-stretch: normal;
src: url('woff2/iosevka-term-lightoblique.woff2') format('woff2'), url('ttf/iosevka-term-lightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedlightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedlightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 300;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedlightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedlightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-lightitalic.woff2') format('woff2'), url('ttf/iosevka-term-lightitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedlightitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedlightitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-regular.woff2') format('woff2'), url('ttf/iosevka-term-regular.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extended.woff2') format('woff2'), url('ttf/iosevka-term-extended.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-oblique.woff2') format('woff2'), url('ttf/iosevka-term-oblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 400;
font-stretch: normal;
src: url('woff2/iosevka-term-oblique.woff2') format('woff2'), url('ttf/iosevka-term-oblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 400;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-italic.woff2') format('woff2'), url('ttf/iosevka-term-italic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendeditalic.woff2') format('woff2'), url('ttf/iosevka-term-extendeditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-medium.woff2') format('woff2'), url('ttf/iosevka-term-medium.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedmedium.woff2') format('woff2'), url('ttf/iosevka-term-extendedmedium.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-mediumoblique.woff2') format('woff2'), url('ttf/iosevka-term-mediumoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 500;
font-stretch: normal;
src: url('woff2/iosevka-term-mediumoblique.woff2') format('woff2'), url('ttf/iosevka-term-mediumoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedmediumoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedmediumoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 500;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedmediumoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedmediumoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-mediumitalic.woff2') format('woff2'), url('ttf/iosevka-term-mediumitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedmediumitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedmediumitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-semibold.woff2') format('woff2'), url('ttf/iosevka-term-semibold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedsemibold.woff2') format('woff2'), url('ttf/iosevka-term-extendedsemibold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-semiboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-semiboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 600;
font-stretch: normal;
src: url('woff2/iosevka-term-semiboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-semiboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedsemiboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedsemiboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 600;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedsemiboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedsemiboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-semibolditalic.woff2') format('woff2'), url('ttf/iosevka-term-semibolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedsemibolditalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedsemibolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-bold.woff2') format('woff2'), url('ttf/iosevka-term-bold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedbold.woff2') format('woff2'), url('ttf/iosevka-term-extendedbold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-boldoblique.woff2') format('woff2'), url('ttf/iosevka-term-boldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 700;
font-stretch: normal;
src: url('woff2/iosevka-term-boldoblique.woff2') format('woff2'), url('ttf/iosevka-term-boldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 700;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-bolditalic.woff2') format('woff2'), url('ttf/iosevka-term-bolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedbolditalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedbolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-extrabold.woff2') format('woff2'), url('ttf/iosevka-term-extrabold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedextrabold.woff2') format('woff2'), url('ttf/iosevka-term-extendedextrabold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-extraboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extraboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 800;
font-stretch: normal;
src: url('woff2/iosevka-term-extraboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extraboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedextraboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedextraboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 800;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedextraboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedextraboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-extrabolditalic.woff2') format('woff2'), url('ttf/iosevka-term-extrabolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedextrabolditalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedextrabolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-heavy.woff2') format('woff2'), url('ttf/iosevka-term-heavy.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedheavy.woff2') format('woff2'), url('ttf/iosevka-term-extendedheavy.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-heavyoblique.woff2') format('woff2'), url('ttf/iosevka-term-heavyoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 900;
font-stretch: normal;
src: url('woff2/iosevka-term-heavyoblique.woff2') format('woff2'), url('ttf/iosevka-term-heavyoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedheavyoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedheavyoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 900;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedheavyoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedheavyoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-heavyitalic.woff2') format('woff2'), url('ttf/iosevka-term-heavyitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedheavyitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedheavyitalic.ttf') format('truetype');
} | assets/fonts/webfont-iosevka-term-4.0.0-beta.3/iosevka-term.css | @font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-thin.woff2') format('woff2'), url('ttf/iosevka-term-thin.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedthin.woff2') format('woff2'), url('ttf/iosevka-term-extendedthin.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-thinoblique.woff2') format('woff2'), url('ttf/iosevka-term-thinoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 100;
font-stretch: normal;
src: url('woff2/iosevka-term-thinoblique.woff2') format('woff2'), url('ttf/iosevka-term-thinoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedthinoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedthinoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 100;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedthinoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedthinoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-thinitalic.woff2') format('woff2'), url('ttf/iosevka-term-thinitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 100;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedthinitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedthinitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-extralight.woff2') format('woff2'), url('ttf/iosevka-term-extralight.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedextralight.woff2') format('woff2'), url('ttf/iosevka-term-extendedextralight.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-extralightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extralightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 200;
font-stretch: normal;
src: url('woff2/iosevka-term-extralightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extralightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedextralightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedextralightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 200;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedextralightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedextralightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-extralightitalic.woff2') format('woff2'), url('ttf/iosevka-term-extralightitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 200;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedextralightitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedextralightitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-light.woff2') format('woff2'), url('ttf/iosevka-term-light.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedlight.woff2') format('woff2'), url('ttf/iosevka-term-extendedlight.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-lightoblique.woff2') format('woff2'), url('ttf/iosevka-term-lightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 300;
font-stretch: normal;
src: url('woff2/iosevka-term-lightoblique.woff2') format('woff2'), url('ttf/iosevka-term-lightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedlightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedlightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 300;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedlightoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedlightoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-lightitalic.woff2') format('woff2'), url('ttf/iosevka-term-lightitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 300;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedlightitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedlightitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-regular.woff2') format('woff2'), url('ttf/iosevka-term-regular.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extended.woff2') format('woff2'), url('ttf/iosevka-term-extended.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-oblique.woff2') format('woff2'), url('ttf/iosevka-term-oblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 400;
font-stretch: normal;
src: url('woff2/iosevka-term-oblique.woff2') format('woff2'), url('ttf/iosevka-term-oblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 400;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-italic.woff2') format('woff2'), url('ttf/iosevka-term-italic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 400;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendeditalic.woff2') format('woff2'), url('ttf/iosevka-term-extendeditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-medium.woff2') format('woff2'), url('ttf/iosevka-term-medium.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedmedium.woff2') format('woff2'), url('ttf/iosevka-term-extendedmedium.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-mediumoblique.woff2') format('woff2'), url('ttf/iosevka-term-mediumoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 500;
font-stretch: normal;
src: url('woff2/iosevka-term-mediumoblique.woff2') format('woff2'), url('ttf/iosevka-term-mediumoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedmediumoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedmediumoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 500;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedmediumoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedmediumoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-mediumitalic.woff2') format('woff2'), url('ttf/iosevka-term-mediumitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 500;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedmediumitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedmediumitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-semibold.woff2') format('woff2'), url('ttf/iosevka-term-semibold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedsemibold.woff2') format('woff2'), url('ttf/iosevka-term-extendedsemibold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-semiboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-semiboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 600;
font-stretch: normal;
src: url('woff2/iosevka-term-semiboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-semiboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedsemiboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedsemiboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 600;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedsemiboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedsemiboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-semibolditalic.woff2') format('woff2'), url('ttf/iosevka-term-semibolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 600;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedsemibolditalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedsemibolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-bold.woff2') format('woff2'), url('ttf/iosevka-term-bold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedbold.woff2') format('woff2'), url('ttf/iosevka-term-extendedbold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-boldoblique.woff2') format('woff2'), url('ttf/iosevka-term-boldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 700;
font-stretch: normal;
src: url('woff2/iosevka-term-boldoblique.woff2') format('woff2'), url('ttf/iosevka-term-boldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 700;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-bolditalic.woff2') format('woff2'), url('ttf/iosevka-term-bolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 700;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedbolditalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedbolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-extrabold.woff2') format('woff2'), url('ttf/iosevka-term-extrabold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedextrabold.woff2') format('woff2'), url('ttf/iosevka-term-extendedextrabold.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-extraboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extraboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 800;
font-stretch: normal;
src: url('woff2/iosevka-term-extraboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extraboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedextraboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedextraboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 800;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedextraboldoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedextraboldoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-extrabolditalic.woff2') format('woff2'), url('ttf/iosevka-term-extrabolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 800;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedextrabolditalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedextrabolditalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: normal;
font-style: normal;
src: url('woff2/iosevka-term-heavy.woff2') format('woff2'), url('ttf/iosevka-term-heavy.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: expanded;
font-style: normal;
src: url('woff2/iosevka-term-extendedheavy.woff2') format('woff2'), url('ttf/iosevka-term-extendedheavy.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: normal;
font-style: oblique;
src: url('woff2/iosevka-term-heavyoblique.woff2') format('woff2'), url('ttf/iosevka-term-heavyoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 900;
font-stretch: normal;
src: url('woff2/iosevka-term-heavyoblique.woff2') format('woff2'), url('ttf/iosevka-term-heavyoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: expanded;
font-style: oblique;
src: url('woff2/iosevka-term-extendedheavyoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedheavyoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web Oblique';
font-display: swap;
font-weight: 900;
font-stretch: expanded;
src: url('woff2/iosevka-term-extendedheavyoblique.woff2') format('woff2'), url('ttf/iosevka-term-extendedheavyoblique.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: normal;
font-style: italic;
src: url('woff2/iosevka-term-heavyitalic.woff2') format('woff2'), url('ttf/iosevka-term-heavyitalic.ttf') format('truetype');
}
@font-face {
font-family: 'Iosevka Term Web';
font-display: swap;
font-weight: 900;
font-stretch: expanded;
font-style: italic;
src: url('woff2/iosevka-term-extendedheavyitalic.woff2') format('woff2'), url('ttf/iosevka-term-extendedheavyitalic.ttf') format('truetype');
} | 0.323594 | 0.037964 |
@import url(http://fonts.googleapis.com/css?family=Noto+Sans:400,700);
@import url(http://fonts.googleapis.com/css?family=Anonymous+Pro:400,400italic,700);
body
{
background-color: white;
color: black;
margin: 0;
}
body, table, div, p, dl
{
color: #444;
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-size: 12px;
font-weight: normal;
line-height: 140%;
}
body
{
margin: 10px;
}
p
{
margin-top: 0.75em;
margin-bottom: 0.75em;
}
h1, h2, h3, h4, h5
{
font-family: 'Noto Sans', Helvetica, Arial, Sans, sans-serif;
font-weight: 700;
margin-top: 1em;
margin-bottom: 0.5em;
color: #383838;
line-height: 120%;
}
h1
{
font-size: 15pt;
}
h2, h2 a
{
font-size: 13pt;
font-weight: 700;
margin-top: 0.5em;
padding-top: 0.5em;
color: #383838;
line-height: 120%;
}
h2
{
padding-bottom: 2px;
}
h2 code
{
font-size: 18px;
padding-left: 3px;
padding-right: 3px;
}
/* This is for the words "Detailed Description" in Doxygen class pages. */
h2.groupheader {
font-size: 16pt;
}
h2 a.anchor,
h3 a.anchor,
h4 a.anchor,
h2 a.anchor:hover,
h3 a.anchor:hover,
h4 a.anchor:hover
{
color: #383838;
text-decoration: none;
}
h3, h3 a
{
font-size: 12pt;
font-style: italic;
font-weight: 700;
padding-bottom: 3px;
}
h3 code
{
font-size: 14pt;
/* Margin adjustment bc the font is italic and the letters get too close. */
margin-left: 1pt;
}
h4, h4 a
{
color: #383838;
font-style: italic;
font-size: 11pt;
font-weight: 700;
}
h4 code
{
font-size: 12pt;
/* Margin adjustment bc the font is italic and the letters get too close. */
margin-left: 1pt;
}
/* The margin-right adjustment is because Noto Sans doesn't seem to
do the right thing when transitioning from italic back to regular font.
The spacing is too tight. This improves it, and yet doesn't look too
wrong even when we fall back to other fonts. */
em
{
font-family: 'Noto Sans', Helvetica, Arial, Sans, sans-serif;
font-style: italic;
margin-right: 1px;
}
strong, b
{
font-weight: 700;
}
ul, ol
{
margin-top: 0.75em;
margin-bottom: 0.75em;
padding: 0;
}
ul li,
ol li
{
margin-top: 0.75em;
margin-bottom: 0.75em;
margin-left: 2.5em;
}
.tabs ul li,
.tabs2 ul li,
.tabs3 ul li,
.tabs4 ul li
{
margin-left: 0;
}
ul li p,
ul li p
{
margin: 0px;
padding: 0px;
}
dl
{
margin-left: 0px;
}
tt
{
width: 92%;
padding-left: 5px;
margin: 7px;
padding-top: 10px;
padding-bottom: 10px;
}
pre, code
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-size: 13px;
padding-left: 1px;
padding-right: 0px;
color: black;
margin-top: 1em;
margin-bottom: 1em;
}
.code
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700 !important;;
font-size: 10pt !important;
color: black;
}
pre a
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-size: 10pt;
}
dt
{
font-weight: 700;
}
blockquote
{
background-color: #F7F8FB;
border-left: 2px solid #9CAFD4;
margin: 4px 24px 0 4px;
padding: 2px 12px 2px 16px;
}
address
{
font-style: normal;
color: #2A3D61;
}
hr
{
height: 0px;
border: none;
border-top: 1px solid #443;
}
table
{
margin-top: 0.5em;
margin-bottom: 0.5em;
}
table th
{
font-weight: 700;
}
body > table
{
margin-top: 1.5em;
}
body center table
{
margin: 1em auto;
}
caption, figcaption
{
font-style: italic;
font-size: 11px;
margin-top: 0.5em;
}
span.legend
{
font-size: 70%;
text-align: center;
}
a
{
color: #1133a9;
font-weight: normal;
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}
/* LibSBML-specific style classes. */
.normal-font
{
font-size: 12px;
}
.small-font
{
font-size: 11px;
}
.tight-spacing
{
letter-spacing: -1px;
}
.tight-list li
{
margin-top: 0;
margin-bottom: 0.25em;
}
.regular-text,
.regular-text p,
.regular-text a.el {
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-size: 12px;
}
.small-text,
.small-text p,
.small-text a.el {
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-size: 10px;
}
ul ul {
margin-left: 1.5em;
}
.placeholder
{
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-weight: normal;
font-style: italic;
font-size: 12px;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #ffeaba;
border-left: 3px solid #ffeaba;
border-right: 3px solid #ffeaba;
}
.placeholder-nospace
{
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-weight: normal;
font-style: italic;
font-size: 12px;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #ffeaba;
border-left: 1px solid #ffeaba;
border-right: 1px solid #ffeaba;
}
.code-placeholder
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-style: italic;
font-size: 13px;
color: black;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #ffeaba;
border-left: 3px solid #ffeaba;
border-right: 3px solid #ffeaba;
}
.code-placeholder-nospace
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-style: italic;
font-size: 13px;
color: black;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #ffeaba;
border-left: 1px solid #ffeaba;
border-right: 1px solid #ffeaba;
}
.code-placeholder2
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-style: italic;
font-size: 13px;
color: black;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #d0eed0;
border-left: 3px solid #d0eed0;
border-right: 3px solid #d0eed0;
}
.code-placeholder2-nospace
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-style: italic;
font-size: 13px;
color: black;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #d0eed0;
border-left: 1px solid #d0eed0;
border-right: 1px solid #d0eed0;
}
.screenshot
{
-moz-box-shadow: 5px 5px 5px #d0d0d0;
-webkit-box-shadow: 5px 5px 5px #d0d0d0;
}
.centered
{
margin-left: auto;
margin-right: auto;
}
img.centered
{
display: block;
margin-left: auto;
margin-right: auto;
}
object.centered
{
display: block;
margin-left: auto;
margin-right: auto;
}
.center img
{
margin-bottom: 10px;
}
.top-caption
{
padding-top: 0.5em;
padding-bottom: 0.5em;
caption-side: top;
}
.bottom-caption
{
padding-top: 0.5em;
padding-bottom: 0.5em;
caption-side: bottom;
}
.text-table
{
font-size: 12px;
border-top: 1px solid #aaa;
border-bottom: 1px solid #aaa;
border-collapse: collapse;
padding-top: 0em;
margin-top: 1em;
margin-bottom: 1.5em;
margin-left: auto;
margin-right: auto;
}
.text-table th
{
font-size: 12px;
background-color: #dfdfdf;
padding: 3px 0.5em 0.5em 0.5em;
border-bottom: 1px solid #bbb;
vertical-align: bottom;
}
.text-table td
{
padding: 2px 0.5em;
line-height: 140%;
}
.width80
{
width: 80%;
}
.bigger-row-spacing td
{
padding-top: 0.35em !important;
padding-bottom: 0.35em !important;
}
.papers
{
border: 1px solid #cbb;
padding: 4px;
margin: 1em 4em 1em 4em;
text-align: left;
background-color: #fee;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
}
pre.fragment
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-size: 9pt;
font-weight: 700;
border: 1px solid #fdcba6;
background-color: #f0f0f0;
color: black;
padding: 5px;
padding-top: 0.5em;
padding-left: 0.75em;
margin: 0.75em 1em;
overflow: auto;
word-wrap: break-word;
line-height: 125%;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
}
div.fragment
{
word-wrap: break-word;
line-height: 125%;
border: 1px solid #fdcba6;
background-color: #f0f0f0;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
padding-top: 0.5em;
padding: 5px;
}
.borderless
{
border: none;
}
.warning
{
color: #9b0000;
}
/* Google prettify */
code.language-java .com
{
color: #777;
font-weight: normal;
}
code.language-java .kwd
{
color: #e08000;
}
code.language-java .pln
{
color: #444;
}
code.language-java .str
{
color: 002080
}
/* Marker for packages, used by common-text/pkg-marker-comp.html etc. */
.pkg-marker
{
padding: 0px 3px 1px 2px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
font-size: 90%;
font-style: italic;
}
.pkg-marker > a
{
color: #333 !important;
min-width: 40px;
width: 40px;
display: inline-block;
text-align: center;
}
/*
* Multicolumn list solution found here:
* http://weedygarden.net/2012/04/css3-multi-column-lists/
*/
.columnlist
{
margin: 1em 0px;
padding-left: auto;
padding-right: auto;
display: inline-block;
*display: inline;
*zoom: 1;
width: 95%;
}
.list3
{
column-count: 3;
-moz-column-count: 3;
-moz-column-gap: 1.5em;
-webkit-column-count: 3;
-webkit-column-gap: 1.5em;
column-gap: 1.5em;
}
/* Color codes used in common-text/sbmlerror-table.html. */
td.s-fatal {
background-color: darkred !important;
color: white;
font-weight: 700;
text-align: center;
letter-spacing: -1px;
padding: 0px;
}
td.s-fatal:before {
content: "F";
}
td.s-error {
background-color: #dc143c !important;
color: white;
font-weight: 700;
text-align: center;
letter-spacing: -1px;
padding: 0px;
}
td.s-error:before {
content: "E";
}
td.s-warning {
background-color: gold !important;
color: white;
font-weight: 700;
text-align: center;
letter-spacing: -1px;
padding: 0px;
}
td.s-warning:before {
content: "W";
}
td.s-na {
font-weight: 700;
text-align: center;
letter-spacing: -1px;
padding: 0px;
}
td.s-na:before {
content: "NA";
}
td.s-info {
background-color: #4c4 !important;
font-weight: 700;
text-align: center;
padding: 0px;
}
td.code {
font-size: 8pt;
}
td.meaning {
font-size: 8pt;
}
td.meaning code {
letter-spacing: -1px;
}
#sbmlerror-table td,
#sbmlerror-table th {
border: none;
padding: 1px;
}
#sbmlerror-table th {
border-bottom: 1px solid #ccc;
}
#sbmlerror-table td {
border-bottom: 1px solid white;
}
#sbmlerror-table tr:last-child > td {
border-bottom: none;
}
/* Subset of the Pygments stylesheet */
.highlight .cp { color: #700070; } /* Comment.Preproc */
.highlight .s { color: #2aa198; font-weight: normal } /* Literal.String */
.highlight .na { color: black } /* Name.Attribute */
.highlight .nt { color: #0040a0; font-weight: bold } /* Name.Tag */ | third_party/libSBML-5.11.0-Source/docs/src/css/libsbml-base-stylesheet.css | @import url(http://fonts.googleapis.com/css?family=Noto+Sans:400,700);
@import url(http://fonts.googleapis.com/css?family=Anonymous+Pro:400,400italic,700);
body
{
background-color: white;
color: black;
margin: 0;
}
body, table, div, p, dl
{
color: #444;
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-size: 12px;
font-weight: normal;
line-height: 140%;
}
body
{
margin: 10px;
}
p
{
margin-top: 0.75em;
margin-bottom: 0.75em;
}
h1, h2, h3, h4, h5
{
font-family: 'Noto Sans', Helvetica, Arial, Sans, sans-serif;
font-weight: 700;
margin-top: 1em;
margin-bottom: 0.5em;
color: #383838;
line-height: 120%;
}
h1
{
font-size: 15pt;
}
h2, h2 a
{
font-size: 13pt;
font-weight: 700;
margin-top: 0.5em;
padding-top: 0.5em;
color: #383838;
line-height: 120%;
}
h2
{
padding-bottom: 2px;
}
h2 code
{
font-size: 18px;
padding-left: 3px;
padding-right: 3px;
}
/* This is for the words "Detailed Description" in Doxygen class pages. */
h2.groupheader {
font-size: 16pt;
}
h2 a.anchor,
h3 a.anchor,
h4 a.anchor,
h2 a.anchor:hover,
h3 a.anchor:hover,
h4 a.anchor:hover
{
color: #383838;
text-decoration: none;
}
h3, h3 a
{
font-size: 12pt;
font-style: italic;
font-weight: 700;
padding-bottom: 3px;
}
h3 code
{
font-size: 14pt;
/* Margin adjustment bc the font is italic and the letters get too close. */
margin-left: 1pt;
}
h4, h4 a
{
color: #383838;
font-style: italic;
font-size: 11pt;
font-weight: 700;
}
h4 code
{
font-size: 12pt;
/* Margin adjustment bc the font is italic and the letters get too close. */
margin-left: 1pt;
}
/* The margin-right adjustment is because Noto Sans doesn't seem to
do the right thing when transitioning from italic back to regular font.
The spacing is too tight. This improves it, and yet doesn't look too
wrong even when we fall back to other fonts. */
em
{
font-family: 'Noto Sans', Helvetica, Arial, Sans, sans-serif;
font-style: italic;
margin-right: 1px;
}
strong, b
{
font-weight: 700;
}
ul, ol
{
margin-top: 0.75em;
margin-bottom: 0.75em;
padding: 0;
}
ul li,
ol li
{
margin-top: 0.75em;
margin-bottom: 0.75em;
margin-left: 2.5em;
}
.tabs ul li,
.tabs2 ul li,
.tabs3 ul li,
.tabs4 ul li
{
margin-left: 0;
}
ul li p,
ul li p
{
margin: 0px;
padding: 0px;
}
dl
{
margin-left: 0px;
}
tt
{
width: 92%;
padding-left: 5px;
margin: 7px;
padding-top: 10px;
padding-bottom: 10px;
}
pre, code
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-size: 13px;
padding-left: 1px;
padding-right: 0px;
color: black;
margin-top: 1em;
margin-bottom: 1em;
}
.code
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700 !important;;
font-size: 10pt !important;
color: black;
}
pre a
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-size: 10pt;
}
dt
{
font-weight: 700;
}
blockquote
{
background-color: #F7F8FB;
border-left: 2px solid #9CAFD4;
margin: 4px 24px 0 4px;
padding: 2px 12px 2px 16px;
}
address
{
font-style: normal;
color: #2A3D61;
}
hr
{
height: 0px;
border: none;
border-top: 1px solid #443;
}
table
{
margin-top: 0.5em;
margin-bottom: 0.5em;
}
table th
{
font-weight: 700;
}
body > table
{
margin-top: 1.5em;
}
body center table
{
margin: 1em auto;
}
caption, figcaption
{
font-style: italic;
font-size: 11px;
margin-top: 0.5em;
}
span.legend
{
font-size: 70%;
text-align: center;
}
a
{
color: #1133a9;
font-weight: normal;
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}
/* LibSBML-specific style classes. */
.normal-font
{
font-size: 12px;
}
.small-font
{
font-size: 11px;
}
.tight-spacing
{
letter-spacing: -1px;
}
.tight-list li
{
margin-top: 0;
margin-bottom: 0.25em;
}
.regular-text,
.regular-text p,
.regular-text a.el {
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-size: 12px;
}
.small-text,
.small-text p,
.small-text a.el {
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-size: 10px;
}
ul ul {
margin-left: 1.5em;
}
.placeholder
{
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-weight: normal;
font-style: italic;
font-size: 12px;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #ffeaba;
border-left: 3px solid #ffeaba;
border-right: 3px solid #ffeaba;
}
.placeholder-nospace
{
font-family: 'Noto Sans', Verdana, Helvetica, Arial, Sans, sans-serif;
font-weight: normal;
font-style: italic;
font-size: 12px;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #ffeaba;
border-left: 1px solid #ffeaba;
border-right: 1px solid #ffeaba;
}
.code-placeholder
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-style: italic;
font-size: 13px;
color: black;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #ffeaba;
border-left: 3px solid #ffeaba;
border-right: 3px solid #ffeaba;
}
.code-placeholder-nospace
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-style: italic;
font-size: 13px;
color: black;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #ffeaba;
border-left: 1px solid #ffeaba;
border-right: 1px solid #ffeaba;
}
.code-placeholder2
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-style: italic;
font-size: 13px;
color: black;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #d0eed0;
border-left: 3px solid #d0eed0;
border-right: 3px solid #d0eed0;
}
.code-placeholder2-nospace
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-weight: 700;
font-style: italic;
font-size: 13px;
color: black;
margin-left: -1px;
margin-right: -1px;
padding-right: 0px;
padding-left: 0px;
background-color: #d0eed0;
border-left: 1px solid #d0eed0;
border-right: 1px solid #d0eed0;
}
.screenshot
{
-moz-box-shadow: 5px 5px 5px #d0d0d0;
-webkit-box-shadow: 5px 5px 5px #d0d0d0;
}
.centered
{
margin-left: auto;
margin-right: auto;
}
img.centered
{
display: block;
margin-left: auto;
margin-right: auto;
}
object.centered
{
display: block;
margin-left: auto;
margin-right: auto;
}
.center img
{
margin-bottom: 10px;
}
.top-caption
{
padding-top: 0.5em;
padding-bottom: 0.5em;
caption-side: top;
}
.bottom-caption
{
padding-top: 0.5em;
padding-bottom: 0.5em;
caption-side: bottom;
}
.text-table
{
font-size: 12px;
border-top: 1px solid #aaa;
border-bottom: 1px solid #aaa;
border-collapse: collapse;
padding-top: 0em;
margin-top: 1em;
margin-bottom: 1.5em;
margin-left: auto;
margin-right: auto;
}
.text-table th
{
font-size: 12px;
background-color: #dfdfdf;
padding: 3px 0.5em 0.5em 0.5em;
border-bottom: 1px solid #bbb;
vertical-align: bottom;
}
.text-table td
{
padding: 2px 0.5em;
line-height: 140%;
}
.width80
{
width: 80%;
}
.bigger-row-spacing td
{
padding-top: 0.35em !important;
padding-bottom: 0.35em !important;
}
.papers
{
border: 1px solid #cbb;
padding: 4px;
margin: 1em 4em 1em 4em;
text-align: left;
background-color: #fee;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
}
pre.fragment
{
font-family: 'Anonymous Pro', 'Courier New', Courier, monospace, fixed;
font-size: 9pt;
font-weight: 700;
border: 1px solid #fdcba6;
background-color: #f0f0f0;
color: black;
padding: 5px;
padding-top: 0.5em;
padding-left: 0.75em;
margin: 0.75em 1em;
overflow: auto;
word-wrap: break-word;
line-height: 125%;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
}
div.fragment
{
word-wrap: break-word;
line-height: 125%;
border: 1px solid #fdcba6;
background-color: #f0f0f0;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
padding-top: 0.5em;
padding: 5px;
}
.borderless
{
border: none;
}
.warning
{
color: #9b0000;
}
/* Google prettify */
code.language-java .com
{
color: #777;
font-weight: normal;
}
code.language-java .kwd
{
color: #e08000;
}
code.language-java .pln
{
color: #444;
}
code.language-java .str
{
color: 002080
}
/* Marker for packages, used by common-text/pkg-marker-comp.html etc. */
.pkg-marker
{
padding: 0px 3px 1px 2px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
font-size: 90%;
font-style: italic;
}
.pkg-marker > a
{
color: #333 !important;
min-width: 40px;
width: 40px;
display: inline-block;
text-align: center;
}
/*
* Multicolumn list solution found here:
* http://weedygarden.net/2012/04/css3-multi-column-lists/
*/
.columnlist
{
margin: 1em 0px;
padding-left: auto;
padding-right: auto;
display: inline-block;
*display: inline;
*zoom: 1;
width: 95%;
}
.list3
{
column-count: 3;
-moz-column-count: 3;
-moz-column-gap: 1.5em;
-webkit-column-count: 3;
-webkit-column-gap: 1.5em;
column-gap: 1.5em;
}
/* Color codes used in common-text/sbmlerror-table.html. */
td.s-fatal {
background-color: darkred !important;
color: white;
font-weight: 700;
text-align: center;
letter-spacing: -1px;
padding: 0px;
}
td.s-fatal:before {
content: "F";
}
td.s-error {
background-color: #dc143c !important;
color: white;
font-weight: 700;
text-align: center;
letter-spacing: -1px;
padding: 0px;
}
td.s-error:before {
content: "E";
}
td.s-warning {
background-color: gold !important;
color: white;
font-weight: 700;
text-align: center;
letter-spacing: -1px;
padding: 0px;
}
td.s-warning:before {
content: "W";
}
td.s-na {
font-weight: 700;
text-align: center;
letter-spacing: -1px;
padding: 0px;
}
td.s-na:before {
content: "NA";
}
td.s-info {
background-color: #4c4 !important;
font-weight: 700;
text-align: center;
padding: 0px;
}
td.code {
font-size: 8pt;
}
td.meaning {
font-size: 8pt;
}
td.meaning code {
letter-spacing: -1px;
}
#sbmlerror-table td,
#sbmlerror-table th {
border: none;
padding: 1px;
}
#sbmlerror-table th {
border-bottom: 1px solid #ccc;
}
#sbmlerror-table td {
border-bottom: 1px solid white;
}
#sbmlerror-table tr:last-child > td {
border-bottom: none;
}
/* Subset of the Pygments stylesheet */
.highlight .cp { color: #700070; } /* Comment.Preproc */
.highlight .s { color: #2aa198; font-weight: normal } /* Literal.String */
.highlight .na { color: black } /* Name.Attribute */
.highlight .nt { color: #0040a0; font-weight: bold } /* Name.Tag */ | 0.447219 | 0.119075 |
.flex {
display: flex;
flex-wrap: wrap;
}
.a-start {
align-items: flex-start;
}
.a-center {
align-items: center;
}
.j-between {
justify-content: space-between;
}
.Admin {
font-family: 'Roboto', sans-serif;
display: flex;
width: 100%;
height: 1100px;
}
.Admin h1,
.Admin h2,
.Admin h3,
.Admin h4,
.Admin h5,
.Admin h6 {
font-family: 'Raleway', sans-serif;
}
.Admin .container {
max-width: 1330px;
margin: 0 auto;
padding: 0 15px;
}
.Admin section#sidebar {
width: 20%;
height: auto;
height: 100%;
color: #fff;
background: #eb5;
}
.Admin section#sidebar .sidebar-brand {
width: 100%;
height: 250px;
padding: 0 40px 50px;
}
.Admin section#sidebar .sidebar-brand img {
width: 80%;
}
.Admin section#sidebar .sidebar-menu {
width: 100%;
margin-top: 30px;
}
.Admin section#sidebar .sidebar-menu ul {
display: block;
}
.Admin section#sidebar .sidebar-menu ul li {
list-style: all .5s ease;
}
.Admin section#sidebar .sidebar-menu ul li a {
font-size: 16px;
display: flex;
margin-left: 20px;
padding: 10px 40px;
text-align: center;
color: #333;
justify-content: space-arround;
align-items: center;
}
.Admin section#sidebar .sidebar-menu ul li a span {
margin-left: 30px;
}
.Admin section#sidebar .sidebar-menu ul li a i {
color: #857d73;
}
.Admin section#sidebar .sidebar-menu ul li:hover {
background: sandybrown;
}
.Admin section#main-content {
float: right;
width: 80%;
height: auto;
background: #dae4eb;
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content header {
font-size: 20px;
}
.Admin section#main-content header .header-left {
float: left;
width: 33%;
padding: 20px;
}
.Admin section#main-content header .header-left p {
color: #bbb;
}
.Admin section#main-content header .header-left h2 {
font-family: nexa !important;
font-size: 25px;
font-weight: bold;
}
.Admin section#main-content header .header-left h2 i {
margin-right: 10px;
}
.Admin section#main-content header .header-left input.search-bar {
font-size: 16px;
font-style: italic;
width: 50%;
padding: 8px 12px;
transition: width 1s ease;
border: 2px solid #bbb;
border-radius: 20px;
}
.Admin section#main-content header .header-left input.search-bar:focus {
width: 95%;
border: 2px solid #fd5a5e;
outline: none;
}
.Admin section#main-content header .header-left .search {
line-height: 35px;
width: 35px;
height: 35px;
margin-left: -35px;
text-align: center;
color: #fff;
border-top-right-radius: 50px 50px;
border-bottom-right-radius: 50px 50px;
background: #fd5a5e;
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content header .header-left .search:hover {
background: #9fbbdf;
}
.Admin section#main-content .main-content-info .card-box {
font-size: 25px;
float: left;
width: 21%;
margin-top: 50px;
margin-right: 2%;
margin-left: 2%;
padding: 25px;
color: #fff;
border-radius: 10px;
background: linear-gradient(45deg, #cf2f2f 0%, #eb5 100%);
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content .main-content-info .card-box:hover {
opacity: .7;
}
.Admin section#main-content .main-content-info .card-box .cus-num {
color: #fff;
}
.Admin section#main-content .main-content-info .card-box .cus-h {
position: relative;
}
.Admin section#main-content .main-content-info .card-box .cus-h::after {
font-family: 'FONTAWESOME';
position: absolute;
right: 0;
content: '\f0c0';
color: #fff;
}
.Admin section#main-content .main-content-info .card-box .cus-ord {
position: relative;
}
.Admin section#main-content .main-content-info .card-box .cus-ord::after {
font-family: 'FONTAWESOME';
position: absolute;
right: 0;
content: '\f0a3';
color: #fff;
}
.Admin section#main-content .main-content-info .card-box .cus-pro {
position: relative;
}
.Admin section#main-content .main-content-info .card-box .cus-pro::after {
font-family: 'FONTAWESOME';
position: absolute;
right: 0;
content: '\f15b';
color: #fff;
}
.Admin section#main-content .main-content-info .card-box .cus-inc {
position: relative;
}
.Admin section#main-content .main-content-info .card-box .cus-inc::after {
font-family: 'FONTAWESOME';
position: absolute;
right: 0;
content: '\f155';
color: #fff;
}
.Admin section#main-content .content-pro-par {
height: auto;
}
.Admin section#main-content .content-pro-par .borderfull {
height: auto;
margin: 50px 0;
padding: 20px;
border: 2px solid sandybrown;
border-radius: 20px;
}
.Admin section#main-content .content-pro-par .title h1 {
font-size: 30px;
font-weight: 600;
margin-bottom: 10px;
letter-spacing: 1px;
color: #616161;
}
.Admin section#main-content .content-pro-par .title h1:hover {
color: #9fbbdf;
}
.Admin section#main-content .content-pro-par .title button {
width: 100px;
height: 35px;
border-radius: 5px;
background: linear-gradient(45deg, #cf2f2f 0%, #eb5 100%);
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content .content-pro-par .title button a {
font-size: 15px;
font-weight: bold;
color: #fff;
}
.Admin section#main-content .content-pro-par .title button:hover {
background: linear-gradient(45deg, #055ed3 0%, #616161 100%);
}
.Admin section#main-content .content-pro-par .title button:hover a {
color: #fed700;
}
.Admin section#main-content .content-pro-par .pro-table {
float: left;
width: 63%;
background: #fff;
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers {
font-size: 1.2em;
display: block;
width: auto;
width: 100%;
margin: auto;
padding-bottom: 50px;
border-collapse: collapse;
color: #444;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th {
font-weight: bold;
padding: 8px 0;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th.first {
width: 10%;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th.second {
width: 20%;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th.third {
width: 30%;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th.fourth {
width: 20%;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers tbody .Table-customer-content {
line-height: 65px;
width: 100%;
height: 65px;
border-bottom: 1px solid #fed700;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers tbody .Table-customer-content td {
margin-top: 4px;
text-align: center;
text-align: center;
color: #616161;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers tbody .Table-customer-content td.user-cart a {
padding: 5px;
cursor: pointer;
color: #333;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
}
.Admin section#main-content .content-pro-par .pro-table table#Customers tbody .Table-customer-content td.user-cart a:hover {
color: #9fbbdf;
}
.Admin section#main-content .content-pro-par .cus-table {
float: right;
width: 35%;
margin-top: 50px;
background: #fff;
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order {
font-size: 1.2em;
display: block;
width: auto;
width: 100%;
margin: auto;
margin-left: 20px;
padding-bottom: 50px;
border-collapse: collapse;
color: #444;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order thead tr th {
font-weight: bold;
padding: 8px 0;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order thead tr th.first {
width: 33%;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order thead tr th.second {
width: 33%;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order thead tr th.third {
width: 33%;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order tbody .Table-Order-content {
line-height: 65px;
width: 100%;
height: 65px;
border-bottom: 1px solid #fed700;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order tbody .Table-Order-content td {
margin-top: 4px;
text-align: center;
text-align: center;
color: #616161;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order tbody .Table-Order-content td.user-cart a {
padding: 5px;
cursor: pointer;
color: #333;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order tbody .Table-Order-content td.user-cart a:hover {
color: #9fbbdf;
} | static/css/adminPage.css | .flex {
display: flex;
flex-wrap: wrap;
}
.a-start {
align-items: flex-start;
}
.a-center {
align-items: center;
}
.j-between {
justify-content: space-between;
}
.Admin {
font-family: 'Roboto', sans-serif;
display: flex;
width: 100%;
height: 1100px;
}
.Admin h1,
.Admin h2,
.Admin h3,
.Admin h4,
.Admin h5,
.Admin h6 {
font-family: 'Raleway', sans-serif;
}
.Admin .container {
max-width: 1330px;
margin: 0 auto;
padding: 0 15px;
}
.Admin section#sidebar {
width: 20%;
height: auto;
height: 100%;
color: #fff;
background: #eb5;
}
.Admin section#sidebar .sidebar-brand {
width: 100%;
height: 250px;
padding: 0 40px 50px;
}
.Admin section#sidebar .sidebar-brand img {
width: 80%;
}
.Admin section#sidebar .sidebar-menu {
width: 100%;
margin-top: 30px;
}
.Admin section#sidebar .sidebar-menu ul {
display: block;
}
.Admin section#sidebar .sidebar-menu ul li {
list-style: all .5s ease;
}
.Admin section#sidebar .sidebar-menu ul li a {
font-size: 16px;
display: flex;
margin-left: 20px;
padding: 10px 40px;
text-align: center;
color: #333;
justify-content: space-arround;
align-items: center;
}
.Admin section#sidebar .sidebar-menu ul li a span {
margin-left: 30px;
}
.Admin section#sidebar .sidebar-menu ul li a i {
color: #857d73;
}
.Admin section#sidebar .sidebar-menu ul li:hover {
background: sandybrown;
}
.Admin section#main-content {
float: right;
width: 80%;
height: auto;
background: #dae4eb;
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content header {
font-size: 20px;
}
.Admin section#main-content header .header-left {
float: left;
width: 33%;
padding: 20px;
}
.Admin section#main-content header .header-left p {
color: #bbb;
}
.Admin section#main-content header .header-left h2 {
font-family: nexa !important;
font-size: 25px;
font-weight: bold;
}
.Admin section#main-content header .header-left h2 i {
margin-right: 10px;
}
.Admin section#main-content header .header-left input.search-bar {
font-size: 16px;
font-style: italic;
width: 50%;
padding: 8px 12px;
transition: width 1s ease;
border: 2px solid #bbb;
border-radius: 20px;
}
.Admin section#main-content header .header-left input.search-bar:focus {
width: 95%;
border: 2px solid #fd5a5e;
outline: none;
}
.Admin section#main-content header .header-left .search {
line-height: 35px;
width: 35px;
height: 35px;
margin-left: -35px;
text-align: center;
color: #fff;
border-top-right-radius: 50px 50px;
border-bottom-right-radius: 50px 50px;
background: #fd5a5e;
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content header .header-left .search:hover {
background: #9fbbdf;
}
.Admin section#main-content .main-content-info .card-box {
font-size: 25px;
float: left;
width: 21%;
margin-top: 50px;
margin-right: 2%;
margin-left: 2%;
padding: 25px;
color: #fff;
border-radius: 10px;
background: linear-gradient(45deg, #cf2f2f 0%, #eb5 100%);
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content .main-content-info .card-box:hover {
opacity: .7;
}
.Admin section#main-content .main-content-info .card-box .cus-num {
color: #fff;
}
.Admin section#main-content .main-content-info .card-box .cus-h {
position: relative;
}
.Admin section#main-content .main-content-info .card-box .cus-h::after {
font-family: 'FONTAWESOME';
position: absolute;
right: 0;
content: '\f0c0';
color: #fff;
}
.Admin section#main-content .main-content-info .card-box .cus-ord {
position: relative;
}
.Admin section#main-content .main-content-info .card-box .cus-ord::after {
font-family: 'FONTAWESOME';
position: absolute;
right: 0;
content: '\f0a3';
color: #fff;
}
.Admin section#main-content .main-content-info .card-box .cus-pro {
position: relative;
}
.Admin section#main-content .main-content-info .card-box .cus-pro::after {
font-family: 'FONTAWESOME';
position: absolute;
right: 0;
content: '\f15b';
color: #fff;
}
.Admin section#main-content .main-content-info .card-box .cus-inc {
position: relative;
}
.Admin section#main-content .main-content-info .card-box .cus-inc::after {
font-family: 'FONTAWESOME';
position: absolute;
right: 0;
content: '\f155';
color: #fff;
}
.Admin section#main-content .content-pro-par {
height: auto;
}
.Admin section#main-content .content-pro-par .borderfull {
height: auto;
margin: 50px 0;
padding: 20px;
border: 2px solid sandybrown;
border-radius: 20px;
}
.Admin section#main-content .content-pro-par .title h1 {
font-size: 30px;
font-weight: 600;
margin-bottom: 10px;
letter-spacing: 1px;
color: #616161;
}
.Admin section#main-content .content-pro-par .title h1:hover {
color: #9fbbdf;
}
.Admin section#main-content .content-pro-par .title button {
width: 100px;
height: 35px;
border-radius: 5px;
background: linear-gradient(45deg, #cf2f2f 0%, #eb5 100%);
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content .content-pro-par .title button a {
font-size: 15px;
font-weight: bold;
color: #fff;
}
.Admin section#main-content .content-pro-par .title button:hover {
background: linear-gradient(45deg, #055ed3 0%, #616161 100%);
}
.Admin section#main-content .content-pro-par .title button:hover a {
color: #fed700;
}
.Admin section#main-content .content-pro-par .pro-table {
float: left;
width: 63%;
background: #fff;
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers {
font-size: 1.2em;
display: block;
width: auto;
width: 100%;
margin: auto;
padding-bottom: 50px;
border-collapse: collapse;
color: #444;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th {
font-weight: bold;
padding: 8px 0;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th.first {
width: 10%;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th.second {
width: 20%;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th.third {
width: 30%;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers thead tr th.fourth {
width: 20%;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers tbody .Table-customer-content {
line-height: 65px;
width: 100%;
height: 65px;
border-bottom: 1px solid #fed700;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers tbody .Table-customer-content td {
margin-top: 4px;
text-align: center;
text-align: center;
color: #616161;
}
.Admin section#main-content .content-pro-par .pro-table table#Customers tbody .Table-customer-content td.user-cart a {
padding: 5px;
cursor: pointer;
color: #333;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
}
.Admin section#main-content .content-pro-par .pro-table table#Customers tbody .Table-customer-content td.user-cart a:hover {
color: #9fbbdf;
}
.Admin section#main-content .content-pro-par .cus-table {
float: right;
width: 35%;
margin-top: 50px;
background: #fff;
box-shadow: 10px 10px 20px #bbb;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order {
font-size: 1.2em;
display: block;
width: auto;
width: 100%;
margin: auto;
margin-left: 20px;
padding-bottom: 50px;
border-collapse: collapse;
color: #444;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order thead tr th {
font-weight: bold;
padding: 8px 0;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order thead tr th.first {
width: 33%;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order thead tr th.second {
width: 33%;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order thead tr th.third {
width: 33%;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order tbody .Table-Order-content {
line-height: 65px;
width: 100%;
height: 65px;
border-bottom: 1px solid #fed700;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order tbody .Table-Order-content td {
margin-top: 4px;
text-align: center;
text-align: center;
color: #616161;
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order tbody .Table-Order-content td.user-cart a {
padding: 5px;
cursor: pointer;
color: #333;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
}
.Admin section#main-content .content-pro-par .cus-table table#product-Order tbody .Table-Order-content td.user-cart a:hover {
color: #9fbbdf;
} | 0.393618 | 0.052522 |
/*
COPYRIGHT (C) <NAME> 2014
ALL RIGHTS RESERVED
*/
/* GLOBAL
********************/
body { overflow-y: scroll; background-color: rgb(221,221,221); background-image: url("header-bg2.png"); margin: 0; padding: 0; font-family: Segoe UI, Calibri, Arial, Sans-Serif; }
#page { }
#header { background-color: rgb(31,31,31); padding: 0 5% 0 5%; opacity: 0.8; min-height: 100px; color: rgb(250, 250, 250); }
#menu { margin: 0 auto; max-width: 800px; padding: 0 5% 0 5%; margin-top: 5%; }
#content { margin: 0 auto; max-width: 800px; width: 90%; padding: 0 5% 0 5%; clear: both; }
h1 { clear: both; font-weight: normal; font-size: 30px; padding: 0; border: 0; margin: 0; margin-top: 20px; color: rgb(64,64,64); }
.clear { clear: both; }
/* CONTAINERS
********************/
.container { display: none; background-color: rgba(221,221,221,0.9); padding: 20px 50px 50px 50px; margin-bottom: 50px; }
#div-about { border-left: 5px solid rgb(59,101,156); }
/* #div-portfolio { border-left: 5px solid rgb(102,128,0); }*/
#div-site { border-left: 5px solid rgb(204,51,51); }
#div-contacts { border-left: 5px solid rgb(159,88,192); }
#div-skills { border-left: 5px solid rgb(235,141,1); }
/* HEADER
********************/
#header > div { position: relative; margin: 0 auto; max-width: 800px; min-height: 100px; }
#header .name { float: left; cursor: default; font-size: 32px; width: 320px; height: 100%; padding: 10px 0 10px 0; }
#header img { float: left; width: 80px; margin-right: 10px; height: 80px; background-color: rgb(240,240,240); }
#header .desc { font-size: 14px; }
#header .phone { font-size: 14px; position: absolute; bottom: 5px; right: 130px; }
#header .email { font-size: 14px; position: absolute; bottom: 5px; right: 10px; }
/* COLORS
********************/
.blue { background-color: rgba(59,101,156,0.9); }
.green { background-color: rgba(102,128,0,0.9); }
.red { background-color: rgba(204,51,51,0.9); }
.gray { background-color: rgba(59,80,101,0.9); }
.blue-2 { background-color: rgba(56,147,202,0.9); }
.purple { background-color: rgba(159,88,192,0.9); }
.orange { background-color: rgba(235,141,1,0.9); }
/* TILE
********************/
.tile { float: left; position: relative; margin: 0 10px 10px 0; color: rgb(250,250,250); width: 150px; height: 150px; font-size: 150px; text-align: center; }
.tile:hover { opacity: 0.8; }
.tile .icon { font-size: 55%; text-align: center; margin-top: 5%; }
.tile .title { font-size: 20%; cursor: default; height: 33%; width: 100%; background-color: rgba(255,255,255,0.2); position: absolute; bottom: 0; left: 0; }
.tile-2x1 { width: 310px; height: 150px; }
.tile-2x2 { width: 310px; height: 310px; font-size: 310px; }
.tile-mini { margin: 0 5px 30px 0; width: 100px; height: 100px; font-size: 100px; }
.tile-mini-active { margin-bottom: 10px; height: 120px; }
/* PORTFOLIO
********************/
#div-portfolio { background-color: inherit; padding:0 }
#div-portfolio .port{border-left: 5px solid rgb(102,128,0); padding:50px; background-color: rgb(221,221,221); margin: 0 0 10px 0;}
#div-portfolio .image { float: left; background: rgba(200,200,200,0.9); margin: 10px 20px 10px 0; width: 100%; max-width: 400px; border-left: 4px solid rgb(56,147,202); margin-right: 10px; }
#div-portfolio .image img { float: left; width: 48%; border: 0; margin: 1%; padding: 0; }
#div-portfolio .image img:hover { opacity: 0.8; }
#div-portfolio p { clear: both; }
#div-portfolio a { text-decoration: none; }
#div-portfolio a:active { text-decoration: none; }
#div-portfolio a:hover { opacity: 0.8; }
#div-portfolio .details { float: left; }
/* CONTACTS
********************/
#div-contacts { font-size: 18px; }
#div-contacts i { width: 22px; text-align: center; }
#div-contacts img { background-color: red; width: 100%; max-width: 400px; height: 300px; float: left; margin: 10px 30px 20px 0; }
#div-contacts .cnt { max-width: 220px; float: left; }
/* SKILLS
********************/
.skill { width: 330px; height: 100px; line-height: 100px; float: left; margin: 5px; }
.skill .icon { cursor: default; font-weight: bold; color: #FFFFFF; height: 80px; width: 80px; margin: 10px; line-height: 80px; text-align: center; font-size: 20px; margin-right: 5px; }
.skill div { display: block; float: left; height: 30px; line-height: 30px; }
.skill .title { padding-left: 10px; width: 130px; border-bottom: 1px solid gray; margin-top: 15px; }
.skill .stars { color: rgb(235,141,1); margin-top: 15px; border-bottom: 1px solid gray; }
.skill .exp { padding-left: 10px; font-size: 14px; margin-bottom: 15px; color: rgb(64,64,64); }
/* MOBILE
********************/
@media only screen and (max-width: 48em) {
h1 { font-size: 24px; }
#header .name { font-size: 28px; width: 280px; }
#header .desc { font-size: 12px; }
#header .phone { font-size: 12px; }
#header .phone { display: none; }
#menu { width: 220px; }
.tile { width: 100px; height: 100px; font-size: 100px; }
.tile-2x1 { width: 210px; height: 100px; }
.tile-2x2 { width: 210px; height: 210px; font-size: 210px; }
.tile-mini { width: 50px; height: 50px; font-size: 50px; margin-bottom: 20px; }
.tile-mini-active { margin-bottom: 10px; height: 60px; }
.container { padding: 20px; }
.skill { width: 250px; height: 60px; }
.skill .icon { width: 60px; height: 60px; font-size: 60px; }
.skill .title { width: 150px; height: 20px; line-height: 20px; }
.skill .stars { color: rgb(235,141,1); height: 20px; line-height: 20px; }
.skill .exp { font-size: 12px; }
} | styles/Main.css | /*
COPYRIGHT (C) <NAME> 2014
ALL RIGHTS RESERVED
*/
/* GLOBAL
********************/
body { overflow-y: scroll; background-color: rgb(221,221,221); background-image: url("header-bg2.png"); margin: 0; padding: 0; font-family: Segoe UI, Calibri, Arial, Sans-Serif; }
#page { }
#header { background-color: rgb(31,31,31); padding: 0 5% 0 5%; opacity: 0.8; min-height: 100px; color: rgb(250, 250, 250); }
#menu { margin: 0 auto; max-width: 800px; padding: 0 5% 0 5%; margin-top: 5%; }
#content { margin: 0 auto; max-width: 800px; width: 90%; padding: 0 5% 0 5%; clear: both; }
h1 { clear: both; font-weight: normal; font-size: 30px; padding: 0; border: 0; margin: 0; margin-top: 20px; color: rgb(64,64,64); }
.clear { clear: both; }
/* CONTAINERS
********************/
.container { display: none; background-color: rgba(221,221,221,0.9); padding: 20px 50px 50px 50px; margin-bottom: 50px; }
#div-about { border-left: 5px solid rgb(59,101,156); }
/* #div-portfolio { border-left: 5px solid rgb(102,128,0); }*/
#div-site { border-left: 5px solid rgb(204,51,51); }
#div-contacts { border-left: 5px solid rgb(159,88,192); }
#div-skills { border-left: 5px solid rgb(235,141,1); }
/* HEADER
********************/
#header > div { position: relative; margin: 0 auto; max-width: 800px; min-height: 100px; }
#header .name { float: left; cursor: default; font-size: 32px; width: 320px; height: 100%; padding: 10px 0 10px 0; }
#header img { float: left; width: 80px; margin-right: 10px; height: 80px; background-color: rgb(240,240,240); }
#header .desc { font-size: 14px; }
#header .phone { font-size: 14px; position: absolute; bottom: 5px; right: 130px; }
#header .email { font-size: 14px; position: absolute; bottom: 5px; right: 10px; }
/* COLORS
********************/
.blue { background-color: rgba(59,101,156,0.9); }
.green { background-color: rgba(102,128,0,0.9); }
.red { background-color: rgba(204,51,51,0.9); }
.gray { background-color: rgba(59,80,101,0.9); }
.blue-2 { background-color: rgba(56,147,202,0.9); }
.purple { background-color: rgba(159,88,192,0.9); }
.orange { background-color: rgba(235,141,1,0.9); }
/* TILE
********************/
.tile { float: left; position: relative; margin: 0 10px 10px 0; color: rgb(250,250,250); width: 150px; height: 150px; font-size: 150px; text-align: center; }
.tile:hover { opacity: 0.8; }
.tile .icon { font-size: 55%; text-align: center; margin-top: 5%; }
.tile .title { font-size: 20%; cursor: default; height: 33%; width: 100%; background-color: rgba(255,255,255,0.2); position: absolute; bottom: 0; left: 0; }
.tile-2x1 { width: 310px; height: 150px; }
.tile-2x2 { width: 310px; height: 310px; font-size: 310px; }
.tile-mini { margin: 0 5px 30px 0; width: 100px; height: 100px; font-size: 100px; }
.tile-mini-active { margin-bottom: 10px; height: 120px; }
/* PORTFOLIO
********************/
#div-portfolio { background-color: inherit; padding:0 }
#div-portfolio .port{border-left: 5px solid rgb(102,128,0); padding:50px; background-color: rgb(221,221,221); margin: 0 0 10px 0;}
#div-portfolio .image { float: left; background: rgba(200,200,200,0.9); margin: 10px 20px 10px 0; width: 100%; max-width: 400px; border-left: 4px solid rgb(56,147,202); margin-right: 10px; }
#div-portfolio .image img { float: left; width: 48%; border: 0; margin: 1%; padding: 0; }
#div-portfolio .image img:hover { opacity: 0.8; }
#div-portfolio p { clear: both; }
#div-portfolio a { text-decoration: none; }
#div-portfolio a:active { text-decoration: none; }
#div-portfolio a:hover { opacity: 0.8; }
#div-portfolio .details { float: left; }
/* CONTACTS
********************/
#div-contacts { font-size: 18px; }
#div-contacts i { width: 22px; text-align: center; }
#div-contacts img { background-color: red; width: 100%; max-width: 400px; height: 300px; float: left; margin: 10px 30px 20px 0; }
#div-contacts .cnt { max-width: 220px; float: left; }
/* SKILLS
********************/
.skill { width: 330px; height: 100px; line-height: 100px; float: left; margin: 5px; }
.skill .icon { cursor: default; font-weight: bold; color: #FFFFFF; height: 80px; width: 80px; margin: 10px; line-height: 80px; text-align: center; font-size: 20px; margin-right: 5px; }
.skill div { display: block; float: left; height: 30px; line-height: 30px; }
.skill .title { padding-left: 10px; width: 130px; border-bottom: 1px solid gray; margin-top: 15px; }
.skill .stars { color: rgb(235,141,1); margin-top: 15px; border-bottom: 1px solid gray; }
.skill .exp { padding-left: 10px; font-size: 14px; margin-bottom: 15px; color: rgb(64,64,64); }
/* MOBILE
********************/
@media only screen and (max-width: 48em) {
h1 { font-size: 24px; }
#header .name { font-size: 28px; width: 280px; }
#header .desc { font-size: 12px; }
#header .phone { font-size: 12px; }
#header .phone { display: none; }
#menu { width: 220px; }
.tile { width: 100px; height: 100px; font-size: 100px; }
.tile-2x1 { width: 210px; height: 100px; }
.tile-2x2 { width: 210px; height: 210px; font-size: 210px; }
.tile-mini { width: 50px; height: 50px; font-size: 50px; margin-bottom: 20px; }
.tile-mini-active { margin-bottom: 10px; height: 60px; }
.container { padding: 20px; }
.skill { width: 250px; height: 60px; }
.skill .icon { width: 60px; height: 60px; font-size: 60px; }
.skill .title { width: 150px; height: 20px; line-height: 20px; }
.skill .stars { color: rgb(235,141,1); height: 20px; line-height: 20px; }
.skill .exp { font-size: 12px; }
} | 0.343562 | 0.135289 |
@charset "UTF-8";
/*!
* Fort v0.0.1
*
* Licensed under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
* Original work Copyright 2015 Bigfish
* Modified work Copyright 2016 <NAME>
*/
/*
* Normalize
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; }
body {
margin: 0; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block; }
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline; }
audio:not([controls]) {
display: none;
height: 0; }
[hidden],
template {
display: none; }
a {
background-color: transparent; }
a:active {
outline: 0; }
a:hover {
outline: 0; }
abbr[title] {
border-bottom: 1px dotted; }
b,
strong {
font-weight: bold; }
dfn {
font-style: italic; }
h1 {
font-size: 2em;
margin: 0.67em 0; }
mark {
background: #ff0;
color: #000; }
small {
font-size: 80%; }
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sup {
top: -0.5em; }
sub {
bottom: -0.25em; }
img {
border: 0; }
svg:not(:root) {
overflow: hidden; }
figure {
margin: 1em 40px; }
hr {
box-sizing: content-box;
height: 0; }
pre {
overflow: auto; }
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em; }
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0; }
button {
overflow: visible; }
button,
select {
text-transform: none; }
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer; }
button[disabled],
html input[disabled] {
cursor: default; }
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
input {
line-height: normal; }
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto; }
input[type="search"] {
-webkit-appearance: textfield;
box-sizing: content-box; }
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
legend {
border: 0;
padding: 0; }
textarea {
overflow: auto; }
optgroup {
font-weight: bold; }
table {
border-collapse: collapse;
border-spacing: 0; }
td,
th {
padding: 0; }
html {
box-sizing: border-box; }
*,
*::before,
*::after {
box-sizing: inherit; }
@-moz-viewport {
width: device-width; }
@-ms-viewport {
width: device-width; }
@-o-viewport {
width: device-width; }
@-webkit-viewport {
width: device-width; }
@viewport {
width: device-width; }
html {
font-size: 16px;
-webkit-tap-highlight-color: transparent; }
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
line-height: 1.5;
color: #373a3c;
background-color: #fff; }
[tabindex="-1"]:focus {
outline: none !important; }
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: .5rem; }
p {
margin-top: 0;
margin-bottom: 1rem; }
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #818a91; }
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit; }
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem; }
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0; }
dt {
font-weight: bold; }
dd {
margin-bottom: .5rem;
margin-left: 0; }
blockquote {
margin: 0 0 1rem; }
a {
color: #0275d8;
text-decoration: none; }
a:focus, a:hover {
color: #014c8c;
text-decoration: underline; }
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
pre {
margin-top: 0;
margin-bottom: 1rem; }
figure {
margin: 0 0 1rem; }
img {
vertical-align: middle; }
[role="button"] {
cursor: pointer; }
a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
touch-action: manipulation; }
table {
background-color: transparent; }
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #818a91;
text-align: left;
caption-side: bottom; }
th {
text-align: left; }
label {
display: inline-block;
margin-bottom: .5rem; }
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color; }
input,
button,
select,
textarea {
margin: 0;
line-height: inherit;
border-radius: 0; }
textarea {
resize: vertical; }
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0; }
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit; }
input[type="search"] {
box-sizing: inherit;
-webkit-appearance: none; }
output {
display: inline-block; }
[hidden] {
display: none !important; }
/*
* Mixins
*/
/*
* General Mixins
*/
/*
* Button
*/
/*
* Input
*/
/*
* Select
*/
/*
* Font
*/
/*
* Border Radius
*/
/*
* Backgrounds
*/
/*
* Placeholder
*/
/*
* Arrows
*/
/*
* Transitions
*/
/*
* Transformations
*/
/*
* Animations
*/
/*
* Filters
*/
/*
* Flexbox
* via: https://gist.github.com/jayj
* url: https://gist.github.com/jayj/4012969
*/
/*
* Grid
*/
/*
* Base
*/
/*
* Breakpoints
*/
/*
* Global
*/
/*
* Definitions
*/
/*
* Root Size
*/
:root {
font-size: 10px; }
@media (min-width: 1280px) {
:root {
font-size: 10px; } }
@media (min-width: 1024px) and (max-width: 1279px) {
:root {
font-size: 10px; } }
@media (min-width: 768px) and (max-width: 1023px) {
:root {
font-size: 9px; } }
@media (max-width: 767px) {
:root {
font-size: 9px; } }
/*
* Definitions
*/
/*
* Definitions
*/
/*
* Body
*/
html * {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
:focus {
outline: 0; }
html {
-webkit-tap-highlight-color: transparent; }
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
color: #2B303B;
line-height: 1.35;
letter-spacing: 0.02rem;
background: #FFFFFF; }
/*
* Definitions
*/
/*
* Link
*/
a {
color: #bf616a;
text-decoration: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
a:not(.button):hover, a:not(.button):focus {
color: #2B303B;
text-decoration: underline; }
/*
* Definitions
*/
/*
* Image
*/
img {
vertical-align: bottom; }
img.rounded {
border-radius: 8px; }
img.circle {
border-radius: 50%; }
img.responsive {
width: 100%;
height: auto; }
/*
* Definitions
*/
/*
* Print
*/
@page {
size: A4;
margin: 1.5cm 2cm; }
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000000 !important;
box-shadow: none !important;
text-shadow: none !important; }
a,
a:visited {
text-decoration: underline; }
a[href]:after {
content: '("attr(href)")'; }
a[href^="#"]:after {
content: ''; }
abbr[title]:after {
content: '("attr(title)")'; }
pre,
blockquote {
border: 1px solid #999999;
page-break-inside: avoid; }
thead {
display: table-header-group; }
tr,
img {
page-break-inside: avoid; }
img {
max-width: 100% !important; }
p,
h2,
h3 {
orphans: 3;
widows: 3; }
h2,
h3 {
page-break-after: avoid; }
table {
border-collapse: collapse !important; }
table td,
table th {
background-color: #FFFFFF !important; } }
/*
* Typography
*/
/*
* Definitions
*/
/*
* Headings
*/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
margin: 0 0 2rem 0;
padding: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500;
color: #2B303B;
line-height: 1.2;
display: block; }
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500;
font-size: 0.6em;
color: #3A4150; }
h1, .h1 {
font-size: 3.6rem; }
h2, .h2 {
font-size: 2.8rem; }
h3, .h3 {
font-size: 1.8rem; }
h4, .h4 {
font-size: 1.6rem; }
h5, .h5 {
font-size: 1.4rem; }
h6, .h6 {
font-size: 1.2rem; }
/*
* Definitions
*/
/*
* Paragraph
*/
p {
margin: 2rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B;
line-height: 1.35; }
/*
* Definitions
*/
/*
* Lead
*/
.lead {
margin: 0 0 2rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
font-size: 2rem;
color: #2B303B;
line-height: 1.35; }
/*
* Definitions
*/
/*
* Strong
*/
strong {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700; }
/*
* Definitions
*/
/*
* Emphasis
*/
em {
font-style: italic; }
/*
* Definitions
*/
/*
* Horizontal Rule
*/
hr {
clear: both;
margin: 3.5rem auto;
border: 0;
height: 1px;
background: #CCCCCC; }
/*
* Definitions
*/
/*
* Blockquote
*/
blockquote {
margin: 3.5rem 0;
padding: 0 3rem; }
blockquote p {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
font-size: 2rem;
font-style: normal;
line-height: 1.35;
color: #2B303B; }
blockquote cite {
display: block;
margin: 1rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
font-style: normal;
color: #2B303B;
text-align: right; }
/*
* Definitions
*/
/*
* Pullout
*/
.pullout {
margin: 3.5rem 0;
padding: 0 3rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
font-size: 2rem;
color: #2B303B;
border: solid #bf616a;
border-width: 0 0 0 0.5rem; }
/*
* Definitions
*/
/*
* Lists
*/
ul,
ol {
margin: 2rem 0;
padding: 0; }
ul li,
ol li {
margin: 1rem 0 1rem 2rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B; }
ul li ul,
ol li ul {
margin: 1rem 0;
padding: 0; }
ul li ul li,
ol li ul li {
margin: 1rem 0 1rem 2rem; }
ul {
list-style: disc; }
ul li ul {
list-style: disc; }
.list-unstyled {
list-style: none; }
.list-unstyled li {
margin-left: 0; }
.list-inline li {
display: inline-block; }
/*
* Definitions
*/
/*
* Definition List
*/
dl {
margin: 2rem 0;
padding: 0; }
dt {
margin: 1rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
font-size: 1.4rem;
color: #2B303B; }
dd {
margin: 0 0 2rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B; }
/*
* Definitions
*/
/*
* Code
*/
code {
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
font-weight: normal;
font-size: 1.2rem;
color: #a3be8c; }
/*
* Definitions
*/
/*
* Code
*/
pre {
margin: 2rem 0;
padding: 1rem;
overflow: auto;
color: #2B303B;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
background: #ECEFF1;
border: 1px solid #ECEFF1; }
pre code {
color: #2B303B; }
/*
* Definitions
*/
/*
* Kbd
*/
kbd {
margin: 0 0.5rem;
padding: 0.4rem;
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
font-weight: normal;
font-size: 1.2rem;
color: #a3be8c;
background: #ECEFF1;
border: 1px solid #ECEFF1; }
/*
* Definitions
*/
/*
* Text Message
*/
.alert {
margin: 1.5rem 0;
padding: 1rem 1.5rem;
font-size: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.2rem;
color: #2B303B;
line-height: 1.35;
border: 1px solid #2B303B; }
.alert.error {
color: #e86e6e;
border: 1px solid #EF9A9A;
background: #fdf2f2; }
.alert.warning {
color: #caa502;
border: 1px solid #FDD835;
background: #fef0b3; }
.alert.success {
color: #76ac39;
border: 1px solid #9CCC65;
background: #daecc5; }
.alert.info {
color: #1eb2f5;
border: 1px solid #4FC3F7;
background: #c9edfd; }
/*
* Grid
*/
/*
* Definitions
*/
/*
* Gutter
*/
.no-gutter {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; }
@media (min-width: 1280px) {
.no-gutter-large {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.no-gutter-medium {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; } }
@media (min-width: 768px) and (max-width: 1023px) {
.no-gutter-small {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; } }
@media (max-width: 767px) {
.no-gutter-mobile {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; } }
/*
* Definitions
*/
/*
* Container
*/
.container {
position: relative;
margin: 0 auto;
width: 100%;
*zoom: 1; }
.container:before, .container:after {
content: " ";
display: table; }
.container:after {
clear: both; }
@media (min-width: 1280px) {
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 1280px; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 1024px; } }
@media (min-width: 768px) and (max-width: 1023px) {
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 100%; } }
@media (max-width: 767px) {
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 100%; } }
/*
* Row
*/
.row {
margin-left: -1.5rem;
margin-right: -1.5rem;
*zoom: 1; }
.row:before, .row:after {
content: " ";
display: table; }
.row:after {
clear: both; }
.row.no-gutter {
margin-left: 0;
margin-right: 0; }
@media (min-width: 1280px) {
.row {
margin-left: -1.5rem;
margin-right: -1.5rem; }
.row.no-gutter-large {
margin-left: 0;
margin-right: 0; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.row {
margin-left: -1.5rem;
margin-right: -1.5rem; }
.row.no-gutter-medium {
margin-left: 0;
margin-right: 0; } }
@media (min-width: 768px) and (max-width: 1023px) {
.row {
margin-left: -1.5rem;
margin-right: -1.5rem; }
.row.no-gutter-small {
margin-left: 0;
margin-right: 0; } }
@media (max-width: 767px) {
.row {
margin-left: -1.5rem;
margin-right: -1.5rem; }
.row.no-gutter-mobile {
margin-left: 0;
margin-right: 0; } }
/*
* Definitions
*/
/*
* Columns
*/
[class*='column-'] {
float: left;
position: relative;
min-height: 1px;
padding-left: 1.5rem;
padding-right: 1.5rem; }
[class*='column-'].column-center {
float: none;
margin-left: auto;
margin-right: auto; }
@media (min-width: 1280px) {
[class*='column-'] {
padding-left: 1.5rem;
padding-right: 1.5rem; } }
@media (min-width: 1024px) and (max-width: 1279px) {
[class*='column-'] {
padding-left: 1.5rem;
padding-right: 1.5rem; } }
@media (min-width: 768px) and (max-width: 1023px) {
[class*='column-'] {
padding-left: 1.5rem;
padding-right: 1.5rem; } }
@media (max-width: 767px) {
[class*='column-'] {
padding-left: 1.5rem;
padding-right: 1.5rem; } }
.column-1-1 {
width: 100%; }
.column-1-2 {
width: 50%; }
.column-1-3 {
width: 33.3333%; }
.column-1-4 {
width: 25%; }
.column-1-5 {
width: 20%; }
.column-1-6 {
width: 16.6667%; }
.column-1-7 {
width: 14.2857%; }
.column-1-8 {
width: 12.5%; }
.column-1-9 {
width: 11.1111%; }
.column-1-10 {
width: 10%; }
.column-1-11 {
width: 9.0909%; }
.column-1-12 {
width: 8.3333%; }
.column-2-12 {
width: 16.6667%; }
.column-3-12 {
width: 25%; }
.column-4-12 {
width: 33.3333%; }
.column-5-12 {
width: 41.6667%; }
.column-6-12 {
width: 50%; }
.column-7-12 {
width: 58.3333%; }
.column-8-12 {
width: 66.6667%; }
.column-9-12 {
width: 75%; }
.column-10-12 {
width: 83.3333%; }
.column-11-12 {
width: 91.6667%; }
.column-offset-1-1 {
margin-left: 100%; }
.column-offset-1-2 {
margin-left: 50%; }
.column-offset-1-3 {
margin-left: 33.3333%; }
.column-offset-1-4 {
margin-left: 25%; }
.column-offset-1-5 {
margin-left: 20%; }
.column-offset-1-6 {
margin-left: 16.6667%; }
.column-offset-1-7 {
margin-left: 14.2857%; }
.column-offset-1-8 {
margin-left: 12.5%; }
.column-offset-1-9 {
margin-left: 11.1111%; }
.column-offset-1-10 {
margin-left: 10%; }
.column-offset-1-11 {
margin-left: 9.0909%; }
.column-offset-1-12 {
margin-left: 8.3333%; }
.column-offset-2-12 {
margin-left: 16.6667%; }
.column-offset-3-12 {
margin-left: 25%; }
.column-offset-4-12 {
margin-left: 33.3333%; }
.column-offset-5-12 {
margin-left: 41.6667%; }
.column-offset-6-12 {
margin-left: 50%; }
.column-offset-7-12 {
margin-left: 58.3333%; }
.column-offset-8-12 {
margin-left: 66.6667%; }
.column-offset-9-12 {
margin-left: 75%; }
.column-offset-10-12 {
margin-left: 83.3333%; }
.column-offset-11-12 {
margin-left: 91.6667%; }
.column-push-1-1 {
left: 100%; }
.column-push-1-2 {
left: 50%; }
.column-push-1-3 {
left: 33.3333%; }
.column-push-1-4 {
left: 25%; }
.column-push-1-5 {
left: 20%; }
.column-push-1-6 {
left: 16.6667%; }
.column-push-1-7 {
left: 14.2857%; }
.column-push-1-8 {
left: 12.5%; }
.column-push-1-9 {
left: 11.1111%; }
.column-push-1-10 {
left: 10%; }
.column-push-1-11 {
left: 9.0909%; }
.column-push-1-12 {
left: 8.3333%; }
.column-push-2-12 {
left: 16.6667%; }
.column-push-3-12 {
left: 25%; }
.column-push-4-12 {
left: 33.3333%; }
.column-push-5-12 {
left: 41.6667%; }
.column-push-6-12 {
left: 50%; }
.column-push-7-12 {
left: 58.3333%; }
.column-push-8-12 {
left: 66.6667%; }
.column-push-9-12 {
left: 75%; }
.column-push-10-12 {
left: 83.3333%; }
.column-push-11-12 {
left: 91.6667%; }
.column-pull-1-1 {
right: 100%; }
.column-pull-1-2 {
right: 50%; }
.column-pull-1-3 {
right: 33.3333%; }
.column-pull-1-4 {
right: 25%; }
.column-pull-1-5 {
right: 20%; }
.column-pull-1-6 {
right: 16.6667%; }
.column-pull-1-7 {
right: 14.2857%; }
.column-pull-1-8 {
right: 12.5%; }
.column-pull-1-9 {
right: 11.1111%; }
.column-pull-1-10 {
right: 10%; }
.column-pull-1-11 {
right: 9.0909%; }
.column-pull-1-12 {
right: 8.3333%; }
.column-pull-2-12 {
right: 16.6667%; }
.column-pull-3-12 {
right: 25%; }
.column-pull-4-12 {
right: 33.3333%; }
.column-pull-5-12 {
right: 41.6667%; }
.column-pull-6-12 {
right: 50%; }
.column-pull-7-12 {
right: 58.3333%; }
.column-pull-8-12 {
right: 66.6667%; }
.column-pull-9-12 {
right: 75%; }
.column-pull-10-12 {
right: 83.3333%; }
.column-pull-11-12 {
right: 91.6667%; }
/*
* Column Media Query Classes
*/
@media (min-width: 1280px) {
.column-large-1-1 {
width: 100%; }
.column-large-1-2 {
width: 50%; }
.column-large-1-3 {
width: 33.3333%; }
.column-large-1-4 {
width: 25%; }
.column-large-1-5 {
width: 20%; }
.column-large-1-6 {
width: 16.6667%; }
.column-large-1-7 {
width: 14.2857%; }
.column-large-1-8 {
width: 12.5%; }
.column-large-1-9 {
width: 11.1111%; }
.column-large-1-10 {
width: 10%; }
.column-large-1-11 {
width: 9.0909%; }
.column-large-1-12 {
width: 8.3333%; }
.column-large-2-12 {
width: 16.6667%; }
.column-large-3-12 {
width: 25%; }
.column-large-4-12 {
width: 33.3333%; }
.column-large-5-12 {
width: 41.6667%; }
.column-large-6-12 {
width: 50%; }
.column-large-7-12 {
width: 58.3333%; }
.column-large-8-12 {
width: 66.6667%; }
.column-large-9-12 {
width: 75%; }
.column-large-10-12 {
width: 83.3333%; }
.column-large-11-12 {
width: 91.6667%; }
.column-offset-large-1-1 {
margin-left: 100%; }
.column-offset-large-1-2 {
margin-left: 50%; }
.column-offset-large-1-3 {
margin-left: 33.3333%; }
.column-offset-large-1-4 {
margin-left: 25%; }
.column-offset-large-1-5 {
margin-left: 20%; }
.column-offset-large-1-6 {
margin-left: 16.6667%; }
.column-offset-large-1-7 {
margin-left: 14.2857%; }
.column-offset-large-1-8 {
margin-left: 12.5%; }
.column-offset-large-1-9 {
margin-left: 11.1111%; }
.column-offset-large-1-10 {
margin-left: 10%; }
.column-offset-large-1-11 {
margin-left: 9.0909%; }
.column-offset-large-1-12 {
margin-left: 8.3333%; }
.column-offset-large-2-12 {
margin-left: 16.6667%; }
.column-offset-large-3-12 {
margin-left: 25%; }
.column-offset-large-4-12 {
margin-left: 33.3333%; }
.column-offset-large-5-12 {
margin-left: 41.6667%; }
.column-offset-large-6-12 {
margin-left: 50%; }
.column-offset-large-7-12 {
margin-left: 58.3333%; }
.column-offset-large-8-12 {
margin-left: 66.6667%; }
.column-offset-large-9-12 {
margin-left: 75%; }
.column-offset-large-10-12 {
margin-left: 83.3333%; }
.column-offset-large-11-12 {
margin-left: 91.6667%; }
.column-push-large-1-1 {
left: 100%; }
.column-push-large-1-2 {
left: 50%; }
.column-push-large-1-3 {
left: 33.3333%; }
.column-push-large-1-4 {
left: 25%; }
.column-push-large-1-5 {
left: 20%; }
.column-push-large-1-6 {
left: 16.6667%; }
.column-push-large-1-7 {
left: 14.2857%; }
.column-push-large-1-8 {
left: 12.5%; }
.column-push-large-1-9 {
left: 11.1111%; }
.column-push-large-1-10 {
left: 10%; }
.column-push-large-1-11 {
left: 9.0909%; }
.column-push-large-1-12 {
left: 8.3333%; }
.column-push-large-2-12 {
left: 16.6667%; }
.column-push-large-3-12 {
left: 25%; }
.column-push-large-4-12 {
left: 33.3333%; }
.column-push-large-5-12 {
left: 41.6667%; }
.column-push-large-6-12 {
left: 50%; }
.column-push-large-7-12 {
left: 58.3333%; }
.column-push-large-8-12 {
left: 66.6667%; }
.column-push-large-9-12 {
left: 75%; }
.column-push-large-10-12 {
left: 83.3333%; }
.column-push-large-11-12 {
left: 91.6667%; }
.column-pull-large-1-1 {
right: 100%; }
.column-pull-large-1-2 {
right: 50%; }
.column-pull-large-1-3 {
right: 33.3333%; }
.column-pull-large-1-4 {
right: 25%; }
.column-pull-large-1-5 {
right: 20%; }
.column-pull-large-1-6 {
right: 16.6667%; }
.column-pull-large-1-7 {
right: 14.2857%; }
.column-pull-large-1-8 {
right: 12.5%; }
.column-pull-large-1-9 {
right: 11.1111%; }
.column-pull-large-1-10 {
right: 10%; }
.column-pull-large-1-11 {
right: 9.0909%; }
.column-pull-large-1-12 {
right: 8.3333%; }
.column-pull-large-2-12 {
right: 16.6667%; }
.column-pull-large-3-12 {
right: 25%; }
.column-pull-large-4-12 {
right: 33.3333%; }
.column-pull-large-5-12 {
right: 41.6667%; }
.column-pull-large-6-12 {
right: 50%; }
.column-pull-large-7-12 {
right: 58.3333%; }
.column-pull-large-8-12 {
right: 66.6667%; }
.column-pull-large-9-12 {
right: 75%; }
.column-pull-large-10-12 {
right: 83.3333%; }
.column-pull-large-11-12 {
right: 91.6667%; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.column-medium-1-1 {
width: 100%; }
.column-medium-1-2 {
width: 50%; }
.column-medium-1-3 {
width: 33.3333%; }
.column-medium-1-4 {
width: 25%; }
.column-medium-1-5 {
width: 20%; }
.column-medium-1-6 {
width: 16.6667%; }
.column-medium-1-7 {
width: 14.2857%; }
.column-medium-1-8 {
width: 12.5%; }
.column-medium-1-9 {
width: 11.1111%; }
.column-medium-1-10 {
width: 10%; }
.column-medium-1-11 {
width: 9.0909%; }
.column-medium-1-12 {
width: 8.3333%; }
.column-medium-2-12 {
width: 16.6667%; }
.column-medium-3-12 {
width: 25%; }
.column-medium-4-12 {
width: 33.3333%; }
.column-medium-5-12 {
width: 41.6667%; }
.column-medium-6-12 {
width: 50%; }
.column-medium-7-12 {
width: 58.3333%; }
.column-medium-8-12 {
width: 66.6667%; }
.column-medium-9-12 {
width: 75%; }
.column-medium-10-12 {
width: 83.3333%; }
.column-medium-11-12 {
width: 91.6667%; }
.column-offset-medium-1-1 {
margin-left: 100%; }
.column-offset-medium-1-2 {
margin-left: 50%; }
.column-offset-medium-1-3 {
margin-left: 33.3333%; }
.column-offset-medium-1-4 {
margin-left: 25%; }
.column-offset-medium-1-5 {
margin-left: 20%; }
.column-offset-medium-1-6 {
margin-left: 16.6667%; }
.column-offset-medium-1-7 {
margin-left: 14.2857%; }
.column-offset-medium-1-8 {
margin-left: 12.5%; }
.column-offset-medium-1-9 {
margin-left: 11.1111%; }
.column-offset-medium-1-10 {
margin-left: 10%; }
.column-offset-medium-1-11 {
margin-left: 9.0909%; }
.column-offset-medium-1-12 {
margin-left: 8.3333%; }
.column-offset-medium-2-12 {
margin-left: 16.6667%; }
.column-offset-medium-3-12 {
margin-left: 25%; }
.column-offset-medium-4-12 {
margin-left: 33.3333%; }
.column-offset-medium-5-12 {
margin-left: 41.6667%; }
.column-offset-medium-6-12 {
margin-left: 50%; }
.column-offset-medium-7-12 {
margin-left: 58.3333%; }
.column-offset-medium-8-12 {
margin-left: 66.6667%; }
.column-offset-medium-9-12 {
margin-left: 75%; }
.column-offset-medium-10-12 {
margin-left: 83.3333%; }
.column-offset-medium-11-12 {
margin-left: 91.6667%; }
.column-push-medium-1-1 {
left: 100%; }
.column-push-medium-1-2 {
left: 50%; }
.column-push-medium-1-3 {
left: 33.3333%; }
.column-push-medium-1-4 {
left: 25%; }
.column-push-medium-1-5 {
left: 20%; }
.column-push-medium-1-6 {
left: 16.6667%; }
.column-push-medium-1-7 {
left: 14.2857%; }
.column-push-medium-1-8 {
left: 12.5%; }
.column-push-medium-1-9 {
left: 11.1111%; }
.column-push-medium-1-10 {
left: 10%; }
.column-push-medium-1-11 {
left: 9.0909%; }
.column-push-medium-1-12 {
left: 8.3333%; }
.column-push-medium-2-12 {
left: 16.6667%; }
.column-push-medium-3-12 {
left: 25%; }
.column-push-medium-4-12 {
left: 33.3333%; }
.column-push-medium-5-12 {
left: 41.6667%; }
.column-push-medium-6-12 {
left: 50%; }
.column-push-medium-7-12 {
left: 58.3333%; }
.column-push-medium-8-12 {
left: 66.6667%; }
.column-push-medium-9-12 {
left: 75%; }
.column-push-medium-10-12 {
left: 83.3333%; }
.column-push-medium-11-12 {
left: 91.6667%; }
.column-pull-medium-1-1 {
right: 100%; }
.column-pull-medium-1-2 {
right: 50%; }
.column-pull-medium-1-3 {
right: 33.3333%; }
.column-pull-medium-1-4 {
right: 25%; }
.column-pull-medium-1-5 {
right: 20%; }
.column-pull-medium-1-6 {
right: 16.6667%; }
.column-pull-medium-1-7 {
right: 14.2857%; }
.column-pull-medium-1-8 {
right: 12.5%; }
.column-pull-medium-1-9 {
right: 11.1111%; }
.column-pull-medium-1-10 {
right: 10%; }
.column-pull-medium-1-11 {
right: 9.0909%; }
.column-pull-medium-1-12 {
right: 8.3333%; }
.column-pull-medium-2-12 {
right: 16.6667%; }
.column-pull-medium-3-12 {
right: 25%; }
.column-pull-medium-4-12 {
right: 33.3333%; }
.column-pull-medium-5-12 {
right: 41.6667%; }
.column-pull-medium-6-12 {
right: 50%; }
.column-pull-medium-7-12 {
right: 58.3333%; }
.column-pull-medium-8-12 {
right: 66.6667%; }
.column-pull-medium-9-12 {
right: 75%; }
.column-pull-medium-10-12 {
right: 83.3333%; }
.column-pull-medium-11-12 {
right: 91.6667%; } }
@media (min-width: 768px) and (max-width: 1023px) {
.column-small-1-1 {
width: 100%; }
.column-small-1-2 {
width: 50%; }
.column-small-1-3 {
width: 33.3333%; }
.column-small-1-4 {
width: 25%; }
.column-small-1-5 {
width: 20%; }
.column-small-1-6 {
width: 16.6667%; }
.column-small-1-7 {
width: 14.2857%; }
.column-small-1-8 {
width: 12.5%; }
.column-small-1-9 {
width: 11.1111%; }
.column-small-1-10 {
width: 10%; }
.column-small-1-11 {
width: 9.0909%; }
.column-small-1-12 {
width: 8.3333%; }
.column-small-2-12 {
width: 16.6667%; }
.column-small-3-12 {
width: 25%; }
.column-small-4-12 {
width: 33.3333%; }
.column-small-5-12 {
width: 41.6667%; }
.column-small-6-12 {
width: 50%; }
.column-small-7-12 {
width: 58.3333%; }
.column-small-8-12 {
width: 66.6667%; }
.column-small-9-12 {
width: 75%; }
.column-small-10-12 {
width: 83.3333%; }
.column-small-11-12 {
width: 91.6667%; }
.column-offset-small-1-1 {
margin-left: 100%; }
.column-offset-small-1-2 {
margin-left: 50%; }
.column-offset-small-1-3 {
margin-left: 33.3333%; }
.column-offset-small-1-4 {
margin-left: 25%; }
.column-offset-small-1-5 {
margin-left: 20%; }
.column-offset-small-1-6 {
margin-left: 16.6667%; }
.column-offset-small-1-7 {
margin-left: 14.2857%; }
.column-offset-small-1-8 {
margin-left: 12.5%; }
.column-offset-small-1-9 {
margin-left: 11.1111%; }
.column-offset-small-1-10 {
margin-left: 10%; }
.column-offset-small-1-11 {
margin-left: 9.0909%; }
.column-offset-small-1-12 {
margin-left: 8.3333%; }
.column-offset-small-2-12 {
margin-left: 16.6667%; }
.column-offset-small-3-12 {
margin-left: 25%; }
.column-offset-small-4-12 {
margin-left: 33.3333%; }
.column-offset-small-5-12 {
margin-left: 41.6667%; }
.column-offset-small-6-12 {
margin-left: 50%; }
.column-offset-small-7-12 {
margin-left: 58.3333%; }
.column-offset-small-8-12 {
margin-left: 66.6667%; }
.column-offset-small-9-12 {
margin-left: 75%; }
.column-offset-small-10-12 {
margin-left: 83.3333%; }
.column-offset-small-11-12 {
margin-left: 91.6667%; }
.column-push-small-1-1 {
left: 100%; }
.column-push-small-1-2 {
left: 50%; }
.column-push-small-1-3 {
left: 33.3333%; }
.column-push-small-1-4 {
left: 25%; }
.column-push-small-1-5 {
left: 20%; }
.column-push-small-1-6 {
left: 16.6667%; }
.column-push-small-1-7 {
left: 14.2857%; }
.column-push-small-1-8 {
left: 12.5%; }
.column-push-small-1-9 {
left: 11.1111%; }
.column-push-small-1-10 {
left: 10%; }
.column-push-small-1-11 {
left: 9.0909%; }
.column-push-small-1-12 {
left: 8.3333%; }
.column-push-small-2-12 {
left: 16.6667%; }
.column-push-small-3-12 {
left: 25%; }
.column-push-small-4-12 {
left: 33.3333%; }
.column-push-small-5-12 {
left: 41.6667%; }
.column-push-small-6-12 {
left: 50%; }
.column-push-small-7-12 {
left: 58.3333%; }
.column-push-small-8-12 {
left: 66.6667%; }
.column-push-small-9-12 {
left: 75%; }
.column-push-small-10-12 {
left: 83.3333%; }
.column-push-small-11-12 {
left: 91.6667%; }
.column-pull-small-1-1 {
right: 100%; }
.column-pull-small-1-2 {
right: 50%; }
.column-pull-small-1-3 {
right: 33.3333%; }
.column-pull-small-1-4 {
right: 25%; }
.column-pull-small-1-5 {
right: 20%; }
.column-pull-small-1-6 {
right: 16.6667%; }
.column-pull-small-1-7 {
right: 14.2857%; }
.column-pull-small-1-8 {
right: 12.5%; }
.column-pull-small-1-9 {
right: 11.1111%; }
.column-pull-small-1-10 {
right: 10%; }
.column-pull-small-1-11 {
right: 9.0909%; }
.column-pull-small-1-12 {
right: 8.3333%; }
.column-pull-small-2-12 {
right: 16.6667%; }
.column-pull-small-3-12 {
right: 25%; }
.column-pull-small-4-12 {
right: 33.3333%; }
.column-pull-small-5-12 {
right: 41.6667%; }
.column-pull-small-6-12 {
right: 50%; }
.column-pull-small-7-12 {
right: 58.3333%; }
.column-pull-small-8-12 {
right: 66.6667%; }
.column-pull-small-9-12 {
right: 75%; }
.column-pull-small-10-12 {
right: 83.3333%; }
.column-pull-small-11-12 {
right: 91.6667%; } }
@media (max-width: 767px) {
[class*='column-'] {
width: 100%; }
.column-mobile-1-1 {
width: 100%; }
.column-mobile-1-2 {
width: 50%; }
.column-mobile-1-3 {
width: 33.3333%; }
.column-mobile-1-4 {
width: 25%; }
.column-mobile-1-5 {
width: 20%; }
.column-mobile-1-6 {
width: 16.6667%; }
.column-mobile-1-7 {
width: 14.2857%; }
.column-mobile-1-8 {
width: 12.5%; }
.column-mobile-1-9 {
width: 11.1111%; }
.column-mobile-1-10 {
width: 10%; }
.column-mobile-1-11 {
width: 9.0909%; }
.column-mobile-1-12 {
width: 8.3333%; }
.column-mobile-2-12 {
width: 16.6667%; }
.column-mobile-3-12 {
width: 25%; }
.column-mobile-4-12 {
width: 33.3333%; }
.column-mobile-5-12 {
width: 41.6667%; }
.column-mobile-6-12 {
width: 50%; }
.column-mobile-7-12 {
width: 58.3333%; }
.column-mobile-8-12 {
width: 66.6667%; }
.column-mobile-9-12 {
width: 75%; }
.column-mobile-10-12 {
width: 83.3333%; }
.column-mobile-11-12 {
width: 91.6667%; }
.column-offset-mobile-1-1 {
margin-left: 100%; }
.column-offset-mobile-1-2 {
margin-left: 50%; }
.column-offset-mobile-1-3 {
margin-left: 33.3333%; }
.column-offset-mobile-1-4 {
margin-left: 25%; }
.column-offset-mobile-1-5 {
margin-left: 20%; }
.column-offset-mobile-1-6 {
margin-left: 16.6667%; }
.column-offset-mobile-1-7 {
margin-left: 14.2857%; }
.column-offset-mobile-1-8 {
margin-left: 12.5%; }
.column-offset-mobile-1-9 {
margin-left: 11.1111%; }
.column-offset-mobile-1-10 {
margin-left: 10%; }
.column-offset-mobile-1-11 {
margin-left: 9.0909%; }
.column-offset-mobile-1-12 {
margin-left: 8.3333%; }
.column-offset-mobile-2-12 {
margin-left: 16.6667%; }
.column-offset-mobile-3-12 {
margin-left: 25%; }
.column-offset-mobile-4-12 {
margin-left: 33.3333%; }
.column-offset-mobile-5-12 {
margin-left: 41.6667%; }
.column-offset-mobile-6-12 {
margin-left: 50%; }
.column-offset-mobile-7-12 {
margin-left: 58.3333%; }
.column-offset-mobile-8-12 {
margin-left: 66.6667%; }
.column-offset-mobile-9-12 {
margin-left: 75%; }
.column-offset-mobile-10-12 {
margin-left: 83.3333%; }
.column-offset-mobile-11-12 {
margin-left: 91.6667%; }
.column-push-mobile-1-1 {
left: 100%; }
.column-push-mobile-1-2 {
left: 50%; }
.column-push-mobile-1-3 {
left: 33.3333%; }
.column-push-mobile-1-4 {
left: 25%; }
.column-push-mobile-1-5 {
left: 20%; }
.column-push-mobile-1-6 {
left: 16.6667%; }
.column-push-mobile-1-7 {
left: 14.2857%; }
.column-push-mobile-1-8 {
left: 12.5%; }
.column-push-mobile-1-9 {
left: 11.1111%; }
.column-push-mobile-1-10 {
left: 10%; }
.column-push-mobile-1-11 {
left: 9.0909%; }
.column-push-mobile-1-12 {
left: 8.3333%; }
.column-push-mobile-2-12 {
left: 16.6667%; }
.column-push-mobile-3-12 {
left: 25%; }
.column-push-mobile-4-12 {
left: 33.3333%; }
.column-push-mobile-5-12 {
left: 41.6667%; }
.column-push-mobile-6-12 {
left: 50%; }
.column-push-mobile-7-12 {
left: 58.3333%; }
.column-push-mobile-8-12 {
left: 66.6667%; }
.column-push-mobile-9-12 {
left: 75%; }
.column-push-mobile-10-12 {
left: 83.3333%; }
.column-push-mobile-11-12 {
left: 91.6667%; }
.column-pull-mobile-1-1 {
right: 100%; }
.column-pull-mobile-1-2 {
right: 50%; }
.column-pull-mobile-1-3 {
right: 33.3333%; }
.column-pull-mobile-1-4 {
right: 25%; }
.column-pull-mobile-1-5 {
right: 20%; }
.column-pull-mobile-1-6 {
right: 16.6667%; }
.column-pull-mobile-1-7 {
right: 14.2857%; }
.column-pull-mobile-1-8 {
right: 12.5%; }
.column-pull-mobile-1-9 {
right: 11.1111%; }
.column-pull-mobile-1-10 {
right: 10%; }
.column-pull-mobile-1-11 {
right: 9.0909%; }
.column-pull-mobile-1-12 {
right: 8.3333%; }
.column-pull-mobile-2-12 {
right: 16.6667%; }
.column-pull-mobile-3-12 {
right: 25%; }
.column-pull-mobile-4-12 {
right: 33.3333%; }
.column-pull-mobile-5-12 {
right: 41.6667%; }
.column-pull-mobile-6-12 {
right: 50%; }
.column-pull-mobile-7-12 {
right: 58.3333%; }
.column-pull-mobile-8-12 {
right: 66.6667%; }
.column-pull-mobile-9-12 {
right: 75%; }
.column-pull-mobile-10-12 {
right: 83.3333%; }
.column-pull-mobile-11-12 {
right: 91.6667%; } }
/*
* Elements
*/
/*
* Definitions
*/
/*
* Button
*/
button,
.button {
display: inline-block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
line-height: 1;
text-align: center;
text-transform: none;
white-space: nowrap;
cursor: pointer;
border-radius: 2px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
padding: 1.2rem 1.6rem;
height: 4rem;
font-size: 1.4rem;
color: #2B303B;
background: #FFFFFF;
border: 1px solid #CCCCCC; }
button:not(:disabled):hover, button:not(:disabled):focus,
.button:not(:disabled):hover,
.button:not(:disabled):focus {
color: #2B303B;
background: #e6e6e6;
border: 1px solid #b3b3b3;
text-decoration: none;
outline: 0; }
button:disabled {
cursor: no-drop;
opacity: 0.5; }
[role="button"] {
cursor: pointer; }
/*
* Button Modifiers
*/
.button-block {
display: block;
width: 100%;
text-align: center; }
.button-center {
display: inline-block;
margin: 0 auto; }
/*
* Definitions
*/
/*
* Button Styles
*/
.button-inverse {
color: #ECEFF1;
background: #2B303B;
border: 1px solid #20242c; }
.button-inverse:not(:disabled):hover, .button-inverse:not(:disabled):focus {
color: #ECEFF1;
background: #16181e;
border: 1px solid #0b0c0f;
text-decoration: none;
outline: 0; }
.button-text {
color: #2B303B;
background: transparent;
border: none; }
.button-text:not(:disabled):hover, .button-text:not(:disabled):focus {
color: #bf616a;
background: transparent;
border: none;
text-decoration: none;
outline: 0; }
.button-primary {
color: #FFFFFF;
background: #bf616a;
border: 1px solid #b84f59; }
.button-primary:not(:disabled):hover, .button-primary:not(:disabled):focus {
color: #FFFFFF;
background: #a9444e;
border: 1px solid #973d46;
text-decoration: none;
outline: 0; }
.button-secondary {
color: #FFFFFF;
background: #5D9CEC;
border: 1px solid #468ee9; }
.button-secondary:not(:disabled):hover, .button-secondary:not(:disabled):focus {
color: #FFFFFF;
background: #2f80e7;
border: 1px solid #1b72e2;
text-decoration: none;
outline: 0; }
.button-tertiary {
color: #FFFFFF;
background: #a3be8c;
border: 1px solid #96b57c; }
.button-tertiary:not(:disabled):hover, .button-tertiary:not(:disabled):focus {
color: #FFFFFF;
background: #89ac6b;
border: 1px solid #96b57c;
text-decoration: none;
outline: 0; }
.button-border {
color: #2B303B;
background: transparent;
border: 1px solid #2B303B; }
.button-border:not(:disabled):hover, .button-border:not(:disabled):focus {
color: #FFFFFF;
background: #2B303B;
border: 1px solid #2B303B;
text-decoration: none;
outline: 0; }
/*
* Definitions
*/
/*
* Button Indicators
*/
button.error,
.button.error {
color: #FFFFFF;
background: #EF9A9A;
border: 1px solid #e55858; }
button.error:not(:disabled):hover, button.error:not(:disabled):focus,
.button.error:not(:disabled):hover,
.button.error:not(:disabled):focus {
color: #FFFFFF;
background: #e55858;
border: 1px solid #de2c2c;
text-decoration: none;
outline: 0; }
button.warning,
.button.warning {
color: #FFFFFF;
background: #FDD835;
border: 1px solid #e3ba02; }
button.warning:not(:disabled):hover, button.warning:not(:disabled):focus,
.button.warning:not(:disabled):hover,
.button.warning:not(:disabled):focus {
color: #FFFFFF;
background: #e3ba02;
border: 1px solid #caa502;
text-decoration: none;
outline: 0; }
button.success,
.button.success {
color: #FFFFFF;
background: #9CCC65;
border: 1px solid #76ac39; }
button.success:not(:disabled):hover, button.success:not(:disabled):focus,
.button.success:not(:disabled):hover,
.button.success:not(:disabled):focus {
color: #FFFFFF;
background: #76ac39;
border: 1px solid #5c852c;
text-decoration: none;
outline: 0; }
button.info,
.button.info {
color: #FFFFFF;
background: #4FC3F7;
border: 1px solid #0ba8ef; }
button.info:not(:disabled):hover, button.info:not(:disabled):focus,
.button.info:not(:disabled):hover,
.button.info:not(:disabled):focus {
color: #FFFFFF;
background: #0ba8ef;
border: 1px solid #0986be;
text-decoration: none;
outline: 0; }
/*
* Definitions
*/
/*
* Button Sizes
*/
.button-xlarge {
padding: 2rem 3rem;
height: 6.5rem;
font-size: 1.8rem; }
.button-large {
padding: 1.5rem 2.5rem;
height: 5rem;
font-size: 1.6rem; }
.button-medium {
padding: 1.2rem 1.6rem;
height: 4rem;
font-size: 1.4rem; }
.button-small {
padding: 0.8rem 1.2rem;
height: 3rem;
font-size: 1.2rem; }
.button-xsmall {
padding: 0.4rem 0.8rem;
height: 2rem;
font-size: 1rem; }
/*
* Button Group
*/
.button-group {
position: relative;
display: inline-block;
vertical-align: middle; }
.button-group > button,
.button-group > .button {
position: relative;
float: left; }
.button-group > button:hover, .button-group > button:focus, .button-group > button:active, .button-group > button.active,
.button-group > .button:hover,
.button-group > .button:focus,
.button-group > .button:active,
.button-group > .button.active {
z-index: 2; }
.button-group button + button,
.button-group .button + .button,
.button-group button + .button-group,
.button-group .button + .button-group,
.button-group .button-group + button,
.button-group .button-group + .button,
.button-group .button-group + .button-group {
margin-left: -1px; }
.button-group > .button-group {
float: left; }
.button-group button:not(:first-child):not(:last-child),
.button-group .button:not(:first-child):not(:last-child),
.button-group .button-group:not(:first-child):not(:last-child) > button,
.button-group .button-group:not(:first-child):not(:last-child) > .button {
border-radius: 0; }
.button-group > .button-group:first-child > button:last-child,
.button-group > .button-group:first-child > .button:last-child {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.button-group > .button-group:last-child > button:first-child,
.button-group > .button-group:last-child > .button:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.button-group > button:first-child,
.button-group > .button:first-child {
margin-left: 0; }
.button-group > button:first-child:not(:last-child),
.button-group > .button:first-child:not(:last-child) {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.button-group > button:last-child:not(:first-child),
.button-group > .button:last-child:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.button-group-block {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate; }
.button-group-block > button,
.button-group-block > .button,
.button-group-block > .button-group {
float: none;
display: table-cell;
width: 1%; }
.button-group-block > .button-group .button,
.button-group-block > .button-group button {
width: 100%; }
/*
* Definitions
*/
/*
* Figure
*/
figure {
display: block;
margin: 0;
padding: 1rem;
border: 1px solid #CCCCCC; }
figcaption {
margin: 1rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B;
text-align: center; }
/*
* Definitions
*/
/*
* Media
*/
.media {
display: block;
position: relative;
overflow: hidden;
background: #ECEFF1; }
.media > svg,
.media > img,
.media > video,
.media > iframe,
.media > .media-inner {
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%; }
.media-1-2 {
padding-top: 200%; }
.media-9-16 {
padding-top: 177.77778%; }
.media-9-14 {
padding-top: 155.55556%; }
.media-2-3 {
padding-top: 150%; }
.media-3-4 {
padding-top: 133.33333%; }
.media-1 {
padding-top: 100%; }
.media-4-3 {
padding-top: 75%; }
.media-3-2 {
padding-top: 66.66667%; }
.media-16-9 {
padding-top: 56.25%; }
.media-2-1 {
padding-top: 50%; }
/*
* Definitions
*/
/*
* Nav
*/
nav ul,
.nav ul {
margin: 0;
list-style: none; }
nav ul li,
.nav ul li {
margin: 1rem 0; }
.nav-inline ul li {
display: inline-block;
margin: 0 1rem; }
/*
* Definitions
*/
/*
* Table
*/
table {
background: none;
border-radius: 2px; }
table caption {
margin: 0.5rem 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
font-size: 1.4rem;
color: #2B303B;
text-align: left; }
th {
padding: 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
font-size: 1.4rem;
color: #2B303B;
text-align: left;
text-transform: none; }
td {
padding: 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B;
line-height: 1.35;
vertical-align: middle; }
.table-bordered th,
.table-bordered td {
border: solid #CCCCCC;
border-width: 1px; }
.table-block {
width: 100%; }
.table-block th {
background: #ECEFF1; }
@media (max-width: 1023px) {
.table-responsive table, .table-responsive thead, .table-responsive tbody, .table-responsive th, .table-responsive td, .table-responsive tr {
display: block; }
.table-responsive thead tr {
position: absolute;
top: -9999px;
left: -9999px; }
.table-responsive tr {
margin: 2rem 0;
border: solid #ECEFF1;
border-width: 1px; }
.table-responsive td {
position: relative;
padding: 1rem;
border: none; } }
/*
* Form
*/
/*
* Definitions
*/
/*
* Label
*/
label {
display: block;
margin: 1.5rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
font-size: 1.2rem;
color: #2B303B;
line-height: 1.35; }
/*
* Definitions
*/
/*
* Fieldset
*/
fieldset {
display: block;
margin: 0;
padding: 2rem;
border: 1px solid #3A4150; }
fieldset legend {
display: inline-block;
width: auto;
margin: 0;
padding: 1rem;
font-size: 1.4rem;
color: #3A4150; }
fieldset legend + label {
margin-top: 0; }
/*
* Definitions
*/
/*
* Form Message
*/
.form-message {
margin: 1.5rem 0;
font-size: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.2rem;
color: #2B303B;
line-height: 1.35; }
.form-message.error {
color: #e86e6e; }
.form-message.warning {
color: #caa502; }
.form-message.success {
color: #76ac39; }
.form-message.info {
color: #1eb2f5; }
/*
* Definitions
*/
/*
* Input
*/
input,
textarea {
display: block;
margin: 1.5rem 0;
width: 100%;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
color: #2B303B;
line-height: 1.35;
border: 1px solid #CCCCCC;
background: #FFFFFF;
border-radius: 2px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0 1.6rem;
height: 4rem;
font-size: 1.4rem;
color: #2B303B;
background: #FFFFFF;
border: 1px solid #CCCCCC; }
input:focus,
textarea:focus {
color: #2B303B;
background: #fafafa;
border: 1px solid #b3b3b3; }
input::-moz-placeholder,
textarea::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
input:disabled,
textarea:disabled {
cursor: no-drop;
color: #ECEFF1;
background: #ECEFF1;
border: 1px solid #cfd6db; }
/*
* Textarea
*/
textarea {
max-width: 100%;
-webkit-transition: none;
transition: none; }
/*
* Input Styles
*/
.input-inverse {
color: #FFFFFF;
background: #2B303B;
border: none; }
.input-inverse:focus {
color: #FFFFFF;
background: #272b35;
border: none; }
.input-inverse::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: #FFFFFF;
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-inverse:focus::-moz-placeholder {
color: fade(#FFFFFF, 25%); }
.input-inverse:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: #FFFFFF;
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-inverse:focus:-ms-input-placeholder {
color: fade(#FFFFFF, 25%); }
.input-inverse::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: #FFFFFF;
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-inverse:focus::-webkit-input-placeholder {
color: fade(#FFFFFF, 25%); }
/*
* Input Search
*/
input[type="search"] {
border-radius: 2rem;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/*
* Input File
*/
input[type="file"] {
padding: 0;
height: auto;
background: transparent;
border: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/*
* Checkbox and Radio
*/
input[type="checkbox"],
input[type="radio"] {
display: inline-block;
margin-right: 10px;
width: auto;
height: auto; }
input[type="checkbox"] + p,
input[type="radio"] + p {
margin: 0;
display: inline-block; }
input[type="checkbox"] + label,
input[type="radio"] + label {
display: inline-block; }
input[type="checkbox"] {
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
appearance: checkbox; }
input[type="radio"] {
-webkit-appearance: radio;
-moz-appearance: radio;
appearance: radio; }
/*
* Textarea
*/
textarea {
padding: 1.2rem 1.6rem;
height: auto;
line-height: 1.35; }
/*
* Definitions
*/
/*
* Input Indicators
*/
input.error,
textarea.error {
color: #EF9A9A;
border-color: #EF9A9A; }
input.warning,
textarea.warning {
color: #FDD835;
border-color: #FDD835; }
input.success,
textarea.success {
color: #9CCC65;
border-color: #9CCC65; }
input.info,
textarea.info {
color: #4FC3F7;
border-color: #4FC3F7; }
/*
* Definitions
*/
/*
* Input Sizes
*/
.input-xlarge {
padding: 0 3rem;
height: 6.5rem;
font-size: 1.8rem; }
.input-xlarge::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.8rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xlarge:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xlarge:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.8rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xlarge:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xlarge::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.8rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xlarge:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-large {
padding: 0 2.5rem;
height: 5rem;
font-size: 1.6rem; }
.input-large::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.6rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-large:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-large:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.6rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-large:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-large::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.6rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-large:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-medium {
padding: 0 1.6rem;
height: 4rem;
font-size: 1.4rem; }
.input-medium::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-medium:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-medium:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-medium:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-medium::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-medium:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-small {
padding: 0 1.2rem;
height: 3rem;
font-size: 1.2rem; }
.input-small::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.2rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-small:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-small:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.2rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-small:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-small::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.2rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-small:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xsmall {
padding: 0 0.8rem;
height: 2rem;
font-size: 1rem; }
.input-xsmall::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xsmall:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xsmall:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xsmall:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xsmall::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xsmall:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
/*
* Input Group
*/
.input-group {
position: relative;
display: table;
margin: 1.5rem 0;
border-collapse: separate; }
.input-group.input-inline {
float: left; }
.input-group input {
margin: 0;
border-radius: 2px 0 0 2px;
background-clip: padding-box; }
.input-group[class*="column-"] {
float: none;
padding-left: 0;
padding-right: 0; }
.input-group .input-group-button,
.input-group .input-group .form-input {
display: table-cell; }
.input-group-button {
position: relative;
font-size: 0rem;
width: 1%;
white-space: nowrap;
vertical-align: middle; }
.input-group-button > button,
.input-group-button > .button {
position: relative;
border-radius: 0 2px 2px 0;
background-clip: padding-box; }
.input-group-button > button + .button,
.input-group-button > .button + .button {
margin-left: -1px; }
.input-group-button > button:hover, .input-group-button > button:focus, .input-group-button > button:active,
.input-group-button > .button:hover,
.input-group-button > .button:focus,
.input-group-button > .button:active {
z-index: 2; }
.input-group-button:first-child > .button {
margin-right: -1px; }
.input-group-button:last-child > .button {
margin-left: -1px; }
.input-group-search {
border-radius: 2rem;
overflow: hidden; }
.input-group-search input[type="search"] {
padding-left: 2rem;
border-radius: 2rem 0 0 2rem;
background-clip: padding-box; }
.input-group-search button,
.input-group-search .button {
border-radius: 0 2rem 2rem 0;
background-clip: padding-box; }
/*
* Input Group Sizes
*/
.input-group-button-xlarge > button,
.input-group-button-xlarge > .button {
padding: 2rem 3rem;
height: 6.5rem;
min-width: 6.5rem;
font-size: 1.8rem; }
.input-group-button-large > button,
.input-group-button-large > .button {
padding: 1.5rem 2.5rem;
height: 5rem;
min-width: 5rem;
font-size: 1.6rem; }
.input-group-button-medium > button,
.input-group-button-medium > .button {
padding: 1.2rem 1.6rem;
height: 4rem;
min-width: 4rem;
font-size: 1.4rem; }
.input-group-button-small > button,
.input-group-button-small > .button {
padding: 0.8rem 1.2rem;
height: 3rem;
min-width: 3rem;
font-size: 1.2rem; }
.input-group-button-xsmall > button,
.input-group-button-xsmall > .button {
padding: 0.4rem 0.8rem;
height: 2rem;
min-width: 2rem;
font-size: 1rem; }
/*
* Definitions
*/
/*
* Controls (Radio + Checkbox)
*/
.control {
position: relative;
display: block;
margin: 1.5rem 0;
padding: 0 0 0 1.5rem;
color: #2B303B;
cursor: pointer; }
.control.control-inline {
display: inline-block;
margin-right: 2rem; }
.control input {
z-index: -1;
position: absolute;
opacity: 0; }
.control input:checked ~ .control-indicator {
background: #bf616a;
border: 1px solid #bf616a; }
.control input:checked ~ .control-label {
color: #2B303B; }
.control.checkbox .control-indicator {
border-radius: none; }
.control.checkbox input:checked ~ .control-indicator {
background: #bf616a no-repeat 50% 50% url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL<KEY>"); }
.control.radio .control-indicator {
border-radius: 50%; }
.control.radio input:checked ~ .control-indicator:before {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: #FFFFFF;
content: '';
width: 0.5em;
height: 0.5em;
border-radius: 50%; }
.control-indicator {
position: absolute;
top: 0;
left: 0;
display: block;
width: 1.6rem;
height: 1.6rem;
line-height: 1rem;
color: #bf616a;
text-align: center;
background-color: #FFFFFF;
background-size: 50% 50%;
background-position: center center;
background-repeat: no-repeat;
border: 1px solid #CCCCCC;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.control-label {
display: block;
margin: 0 0 0 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.2rem;
color: #2B303B;
line-height: 1.35;
pointer-events: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
/*
* Definitions
*/
/*
* Select
*/
select {
display: block;
width: 100%; }
.select {
position: relative;
display: block;
margin: 1.5rem 0; }
.select select {
margin: 0;
padding: 0 1.6rem;
height: 4rem;
line-height: auto;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B;
cursor: pointer;
outline: 0;
background: #FFFFFF;
border: 1px solid #CCCCCC;
border-radius: 2px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.select select::-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000; }
.select select::-ms-expand {
display: none; }
.select:after {
position: absolute;
top: 50%;
right: 15px;
margin-top: -0.25rem;
width: 0;
height: 0;
content: '';
pointer-events: none;
border-left: 0.5rem solid transparent;
border-right: 0.5rem solid transparent;
border-top: 0.5rem solid #2B303B; }
/*
* Select Inverse
*/
.select-inverse select {
color: #FFFFFF;
border: none;
background: #2B303B; }
.select-inverse:after {
border-top: 0.5rem solid #FFFFFF; }
@media screen and (min-width: 0�) {
.select select {
padding: 0.5em; }
.select:before, .select:after {
display: none; } }
@-moz-document url-prefix() {
.select select {
text-indent: 0.01px;
text-overflow: '';
padding-right: 1rem; }
.select:before {
z-index: 2;
position: absolute;
top: 0;
right: 0;
bottom: 0;
content: '';
pointer-events: none;
width: 1em;
border: 1px solid #CCCCCC;
border-width: 1px 1px 1px 0px;
background: #FFFFFF;
border-radius: 0 2px 2px 0;
background-clip: padding-box; }
.select.large:before {
width: 1.5em; }
.select.select-inverse:before {
border: none;
background: #2B303B; } }
/*
* Definitions
*/
/*
* Select Sizes
*/
.select-xlarge select {
padding: 0 3rem;
height: 6.5rem;
font-size: 1.8rem;
line-height: 6.5rem; }
.select-large select {
padding: 0 2.5rem;
height: 5rem;
font-size: 1.6rem;
line-height: 5rem; }
.select-medium select {
padding: 0 1.6rem;
height: 4rem;
font-size: 1.4rem;
line-height: 4rem; }
.select-small select {
padding: 0 1.2rem;
height: 3rem;
font-size: 1.2rem;
line-height: 3rem; }
.select-xsmall select {
padding: 0 0.8rem;
height: 2rem;
font-size: 1rem;
line-height: 2rem; }
/*
* Utilities
*/
/*
* Utility Classes
*/
.clearfix {
*zoom: 1; }
.clearfix:before, .clearfix:after {
content: " ";
display: table; }
.clearfix:after {
clear: both; }
.center-block {
display: block;
margin-left: auto;
margin-right: auto; }
.full-height {
height: 100%; }
.fixed {
position: fixed; }
.pointer {
cursor: pointer; }
.no-margin {
margin: 0 !important; }
.no-padding {
padding: 0 !important; }
.no-border {
border: none !important; }
/*
* Visibility
*/
.hide {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
.show {
display: block !important;
visibility: visible !important;
opacity: 1 !important; }
.visible {
visibility: visible; }
.invisible {
visibility: hidden; }
.hide-text {
font: "0/0 a";
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0; }
.hide-visually {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px; }
/*
* Print & Screen
*/
@media print {
.hidden-print {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media screen {
.hidden-screen {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
.visible-print {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media print {
.visible-print {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-screen {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media screen {
.visible-screen {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
/*
* Hidden Breakpoints
*/
@media (min-width: 1280px) {
.hidden-large {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.hidden-medium {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (min-width: 1024px) {
.hidden-medium-up {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (max-width: 1279px) {
.hidden-medium-down {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (min-width: 768px) and (max-width: 1023px) {
.hidden-small {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (min-width: 768px) {
.hidden-small-up {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (max-width: 1023px) {
.hidden-small-down {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (max-width: 767px) {
.hidden-mobile {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
/*
* Visible Breakpoints
*/
.visible-large {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 1280px) {
.visible-large {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-medium {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 1024px) and (max-width: 1279px) {
.visible-medium {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-medium-up {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 1024px) {
.visible-medium-up {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-medium-down {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (max-width: 1279px) {
.visible-medium-down {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-small {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 768px) and (max-width: 1023px) {
.visible-small {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-small-up {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 768px) {
.visible-small-up {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-small-down {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (max-width: 1023px) {
.visible-small-down {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-mobile {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (max-width: 767px) {
.visible-mobile {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
/*
* Display
*/
.display-block {
display: block; }
.display-inline-block {
display: inline-block; }
.display-table {
display: table; }
.display-table-cell {
display: table-cell;
vertical-align: middle; }
/*
* Position
*/
.position-top-left {
position: absolute !important;
top: 0;
left: 0; }
.position-top-left.gutter {
top: 1.5rem;
left: 1.5rem; }
.position-top-right {
position: absolute !important;
top: 0;
right: 0; }
.position-top-right.gutter {
top: 1.5rem;
right: 1.5rem; }
.position-bottom-left {
position: absolute !important;
bottom: 0;
left: 0; }
.position-bottom-left.gutter {
bottom: 1.5rem;
left: 1.5rem; }
.position-bottom-right {
position: absolute !important;
bottom: 0;
right: 0; }
.position-bottom-right.gutter {
bottom: 1.5rem;
right: 1.5rem; }
.position-left-center {
position: absolute !important;
top: 50%;
left: 0;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
.position-left-center.gutter {
left: 1.5rem; }
.position-right-center {
position: absolute !important;
top: 50%;
right: 0;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
.position-right-center.gutter {
right: 1.5rem; }
.position-center {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); }
/*
* Flex
*/
.flex {
display: flex;
align-items: center; }
.flex-left {
display: flex;
flex: 1; }
.flex-right {
display: flex;
flex: 0 0 auto; }
/*
* Float
*/
.right {
float: right !important; }
@media (min-width: 1280px) {
.clear-right-large {
float: none !important; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.clear-right-medium {
float: none !important; } }
@media (min-width: 768px) and (max-width: 1023px) {
.clear-right-small {
float: none !important; } }
@media (max-width: 767px) {
.clear-right-mobile {
float: none !important; } }
.left {
float: left !important; }
@media (min-width: 1280px) {
.clear-left-large {
float: none !important; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.clear-left-medium {
float: none !important; } }
@media (min-width: 768px) and (max-width: 1023px) {
.clear-left-small {
float: none !important; } }
@media (max-width: 767px) {
.clear-left-mobile {
float: none !important; } }
/*
* Max Width
*/
.max-width-xlarge {
max-width: 1280px; }
.max-width-large {
max-width: 1024px; }
.max-width-medium {
max-width: 800px; }
.max-width-small {
max-width: 600px; }
.max-width-xsmall {
max-width: 450px; }
/*
* Margin
*/
.margin-xlarge {
margin: 10rem; }
.margin-large {
margin: 6.5rem; }
.margin-medium {
margin: 5rem; }
.margin-small {
margin: 3.5rem; }
.margin-xsmall {
margin: 2rem; }
.margin-top-xlarge {
margin-top: 10rem; }
.margin-top-large {
margin-top: 6.5rem; }
.margin-top-medium {
margin-top: 5rem; }
.margin-top-small {
margin-top: 3.5rem; }
.margin-top-xsmall {
margin-top: 2rem; }
.margin-bottom-xlarge {
margin-bottom: 10rem; }
.margin-bottom-large {
margin-bottom: 6.5rem; }
.margin-bottom-medium {
margin-bottom: 5rem; }
.margin-bottom-small {
margin-bottom: 3.5rem; }
.margin-bottom-xsmall {
margin-bottom: 2rem; }
.margin-left-xlarge {
margin-left: 10rem; }
.margin-left-large {
margin-left: 6.5rem; }
.margin-left-medium {
margin-left: 5rem; }
.margin-left-small {
margin-left: 3.5rem; }
.margin-left-xsmall {
margin-left: 2rem; }
.margin-right-xlarge {
margin-right: 10rem; }
.margin-right-large {
margin-right: 6.5rem; }
.margin-right-medium {
margin-right: 5rem; }
.margin-right-small {
margin-right: 3.5rem; }
.margin-right-xsmall {
margin-right: 2rem; }
/*
* Padding
*/
.padding-xlarge {
padding: 10rem; }
.padding-large {
padding: 6.5rem; }
.padding-medium {
padding: 5rem; }
.padding-small {
padding: 3.5rem; }
.padding-xsmall {
padding: 2rem; }
.padding-top-xlarge {
padding-top: 10rem; }
.padding-top-large {
padding-top: 6.5rem; }
.padding-top-medium {
padding-top: 5rem; }
.padding-top-small {
padding-top: 3.5rem; }
.padding-top-xsmall {
padding-top: 2rem; }
.padding-bottom-xlarge {
padding-bottom: 10rem; }
.padding-bottom-large {
padding-bottom: 6.5rem; }
.padding-bottom-medium {
padding-bottom: 5rem; }
.padding-bottom-small {
padding-bottom: 3.5rem; }
.padding-bottom-xsmall {
padding-bottom: 2rem; }
.padding-left-xlarge {
padding-left: 10rem; }
.padding-left-large {
padding-left: 6.5rem; }
.padding-left-medium {
padding-left: 5rem; }
.padding-left-small {
padding-left: 3.5rem; }
.padding-left-xsmall {
padding-left: 2rem; }
.padding-right-xlarge {
padding-right: 10rem; }
.padding-right-large {
padding-right: 6.5rem; }
.padding-right-medium {
padding-right: 5rem; }
.padding-right-small {
padding-right: 3.5rem; }
.padding-right-xsmall {
padding-right: 2rem; }
/*
* Font Family
*/
.sans-serif-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
.serif-font {
font-family: Georgia, "Times New Roman", Times, serif; }
.monospace-font {
font-family: Monaco, Menlo, Consolas, "Courier New", monospace; }
.thin-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
font-style: normal; }
.regular-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-style: normal; }
.medium-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500;
font-style: normal; }
.semibold-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
font-style: normal; }
.bold-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
font-style: normal; }
/*
* Font Size
*/
.font-size-xlarge {
font-size: 1.8rem; }
.font-size-large {
font-size: 1.6rem; }
.font-size-medium {
font-size: 1.4rem; }
.font-size-small {
font-size: 1.2rem; }
.font-size-xsmall {
font-size: 1rem; }
/*
* Text
*/
.text-left {
text-align: left; }
.text-right {
text-align: right; }
.text-justify {
text-align: justify; }
.text-center {
text-align: center; }
.truncate {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.text-hide {
font: "0/0 a";
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0; }
.uppercase {
text-transform: uppercase; }
.lowercase {
text-transform: lowercase; }
.capitalize {
text-transform: capitalize; }
/*
* Text Color
*/
.text-white {
color: #FFFFFF !important; }
.text-light-grey {
color: #CCCCCC !important; }
.text-grey {
color: #3A4150 !important; }
.text-dark-grey {
color: #2B303B !important; }
.text-black {
color: #000000 !important; }
.text-error {
color: #EF9A9A !important; }
.text-warning {
color: #FDD835 !important; }
.text-success {
color: #9CCC65 !important; }
.text-info {
color: #4FC3F7 !important; }
.text-primary {
color: #bf616a !important; }
.text-secondary {
color: #5D9CEC !important; }
.text-tertiary {
color: #a3be8c !important; }
.text-dark {
color: #2B303B !important; }
.text-light {
color: #ECEFF1 !important; }
/*
* Background
*/
.background-transparent {
background: transparent !important; }
.background-white {
background: #FFFFFF !important; }
.background-light-grey {
background: #CCCCCC !important; }
.background-grey {
background: #3A4150 !important; }
.background-dark-grey {
background: #2B303B !important; }
.background-black {
background: #000000 !important; }
.background-error {
background: #EF9A9A !important; }
.background-warning {
background: #FDD835 !important; }
.background-success {
background: #9CCC65 !important; }
.background-info {
background: #4FC3F7 !important; }
.background-primary {
background: #bf616a !important; }
.background-secondary {
background: #5D9CEC !important; }
.background-tertiary {
background: #a3be8c !important; }
.background-dark {
background: #2B303B !important; }
.background-light {
background: #ECEFF1 !important; }
/*
* Accessibility
*/
/*
* Screen Reader
*/
.screen-reader {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0; }
.screen-reader-focusable:active, .screen-reader-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto; } | dist/fort.css | @charset "UTF-8";
/*!
* Fort v0.0.1
*
* Licensed under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
* Original work Copyright 2015 Bigfish
* Modified work Copyright 2016 <NAME>
*/
/*
* Normalize
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; }
body {
margin: 0; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block; }
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline; }
audio:not([controls]) {
display: none;
height: 0; }
[hidden],
template {
display: none; }
a {
background-color: transparent; }
a:active {
outline: 0; }
a:hover {
outline: 0; }
abbr[title] {
border-bottom: 1px dotted; }
b,
strong {
font-weight: bold; }
dfn {
font-style: italic; }
h1 {
font-size: 2em;
margin: 0.67em 0; }
mark {
background: #ff0;
color: #000; }
small {
font-size: 80%; }
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sup {
top: -0.5em; }
sub {
bottom: -0.25em; }
img {
border: 0; }
svg:not(:root) {
overflow: hidden; }
figure {
margin: 1em 40px; }
hr {
box-sizing: content-box;
height: 0; }
pre {
overflow: auto; }
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em; }
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0; }
button {
overflow: visible; }
button,
select {
text-transform: none; }
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer; }
button[disabled],
html input[disabled] {
cursor: default; }
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
input {
line-height: normal; }
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto; }
input[type="search"] {
-webkit-appearance: textfield;
box-sizing: content-box; }
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
legend {
border: 0;
padding: 0; }
textarea {
overflow: auto; }
optgroup {
font-weight: bold; }
table {
border-collapse: collapse;
border-spacing: 0; }
td,
th {
padding: 0; }
html {
box-sizing: border-box; }
*,
*::before,
*::after {
box-sizing: inherit; }
@-moz-viewport {
width: device-width; }
@-ms-viewport {
width: device-width; }
@-o-viewport {
width: device-width; }
@-webkit-viewport {
width: device-width; }
@viewport {
width: device-width; }
html {
font-size: 16px;
-webkit-tap-highlight-color: transparent; }
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
line-height: 1.5;
color: #373a3c;
background-color: #fff; }
[tabindex="-1"]:focus {
outline: none !important; }
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: .5rem; }
p {
margin-top: 0;
margin-bottom: 1rem; }
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #818a91; }
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit; }
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem; }
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0; }
dt {
font-weight: bold; }
dd {
margin-bottom: .5rem;
margin-left: 0; }
blockquote {
margin: 0 0 1rem; }
a {
color: #0275d8;
text-decoration: none; }
a:focus, a:hover {
color: #014c8c;
text-decoration: underline; }
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
pre {
margin-top: 0;
margin-bottom: 1rem; }
figure {
margin: 0 0 1rem; }
img {
vertical-align: middle; }
[role="button"] {
cursor: pointer; }
a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
touch-action: manipulation; }
table {
background-color: transparent; }
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #818a91;
text-align: left;
caption-side: bottom; }
th {
text-align: left; }
label {
display: inline-block;
margin-bottom: .5rem; }
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color; }
input,
button,
select,
textarea {
margin: 0;
line-height: inherit;
border-radius: 0; }
textarea {
resize: vertical; }
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0; }
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit; }
input[type="search"] {
box-sizing: inherit;
-webkit-appearance: none; }
output {
display: inline-block; }
[hidden] {
display: none !important; }
/*
* Mixins
*/
/*
* General Mixins
*/
/*
* Button
*/
/*
* Input
*/
/*
* Select
*/
/*
* Font
*/
/*
* Border Radius
*/
/*
* Backgrounds
*/
/*
* Placeholder
*/
/*
* Arrows
*/
/*
* Transitions
*/
/*
* Transformations
*/
/*
* Animations
*/
/*
* Filters
*/
/*
* Flexbox
* via: https://gist.github.com/jayj
* url: https://gist.github.com/jayj/4012969
*/
/*
* Grid
*/
/*
* Base
*/
/*
* Breakpoints
*/
/*
* Global
*/
/*
* Definitions
*/
/*
* Root Size
*/
:root {
font-size: 10px; }
@media (min-width: 1280px) {
:root {
font-size: 10px; } }
@media (min-width: 1024px) and (max-width: 1279px) {
:root {
font-size: 10px; } }
@media (min-width: 768px) and (max-width: 1023px) {
:root {
font-size: 9px; } }
@media (max-width: 767px) {
:root {
font-size: 9px; } }
/*
* Definitions
*/
/*
* Definitions
*/
/*
* Body
*/
html * {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
:focus {
outline: 0; }
html {
-webkit-tap-highlight-color: transparent; }
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
color: #2B303B;
line-height: 1.35;
letter-spacing: 0.02rem;
background: #FFFFFF; }
/*
* Definitions
*/
/*
* Link
*/
a {
color: #bf616a;
text-decoration: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
a:not(.button):hover, a:not(.button):focus {
color: #2B303B;
text-decoration: underline; }
/*
* Definitions
*/
/*
* Image
*/
img {
vertical-align: bottom; }
img.rounded {
border-radius: 8px; }
img.circle {
border-radius: 50%; }
img.responsive {
width: 100%;
height: auto; }
/*
* Definitions
*/
/*
* Print
*/
@page {
size: A4;
margin: 1.5cm 2cm; }
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000000 !important;
box-shadow: none !important;
text-shadow: none !important; }
a,
a:visited {
text-decoration: underline; }
a[href]:after {
content: '("attr(href)")'; }
a[href^="#"]:after {
content: ''; }
abbr[title]:after {
content: '("attr(title)")'; }
pre,
blockquote {
border: 1px solid #999999;
page-break-inside: avoid; }
thead {
display: table-header-group; }
tr,
img {
page-break-inside: avoid; }
img {
max-width: 100% !important; }
p,
h2,
h3 {
orphans: 3;
widows: 3; }
h2,
h3 {
page-break-after: avoid; }
table {
border-collapse: collapse !important; }
table td,
table th {
background-color: #FFFFFF !important; } }
/*
* Typography
*/
/*
* Definitions
*/
/*
* Headings
*/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
margin: 0 0 2rem 0;
padding: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500;
color: #2B303B;
line-height: 1.2;
display: block; }
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500;
font-size: 0.6em;
color: #3A4150; }
h1, .h1 {
font-size: 3.6rem; }
h2, .h2 {
font-size: 2.8rem; }
h3, .h3 {
font-size: 1.8rem; }
h4, .h4 {
font-size: 1.6rem; }
h5, .h5 {
font-size: 1.4rem; }
h6, .h6 {
font-size: 1.2rem; }
/*
* Definitions
*/
/*
* Paragraph
*/
p {
margin: 2rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B;
line-height: 1.35; }
/*
* Definitions
*/
/*
* Lead
*/
.lead {
margin: 0 0 2rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
font-size: 2rem;
color: #2B303B;
line-height: 1.35; }
/*
* Definitions
*/
/*
* Strong
*/
strong {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700; }
/*
* Definitions
*/
/*
* Emphasis
*/
em {
font-style: italic; }
/*
* Definitions
*/
/*
* Horizontal Rule
*/
hr {
clear: both;
margin: 3.5rem auto;
border: 0;
height: 1px;
background: #CCCCCC; }
/*
* Definitions
*/
/*
* Blockquote
*/
blockquote {
margin: 3.5rem 0;
padding: 0 3rem; }
blockquote p {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
font-size: 2rem;
font-style: normal;
line-height: 1.35;
color: #2B303B; }
blockquote cite {
display: block;
margin: 1rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
font-style: normal;
color: #2B303B;
text-align: right; }
/*
* Definitions
*/
/*
* Pullout
*/
.pullout {
margin: 3.5rem 0;
padding: 0 3rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
font-size: 2rem;
color: #2B303B;
border: solid #bf616a;
border-width: 0 0 0 0.5rem; }
/*
* Definitions
*/
/*
* Lists
*/
ul,
ol {
margin: 2rem 0;
padding: 0; }
ul li,
ol li {
margin: 1rem 0 1rem 2rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B; }
ul li ul,
ol li ul {
margin: 1rem 0;
padding: 0; }
ul li ul li,
ol li ul li {
margin: 1rem 0 1rem 2rem; }
ul {
list-style: disc; }
ul li ul {
list-style: disc; }
.list-unstyled {
list-style: none; }
.list-unstyled li {
margin-left: 0; }
.list-inline li {
display: inline-block; }
/*
* Definitions
*/
/*
* Definition List
*/
dl {
margin: 2rem 0;
padding: 0; }
dt {
margin: 1rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
font-size: 1.4rem;
color: #2B303B; }
dd {
margin: 0 0 2rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B; }
/*
* Definitions
*/
/*
* Code
*/
code {
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
font-weight: normal;
font-size: 1.2rem;
color: #a3be8c; }
/*
* Definitions
*/
/*
* Code
*/
pre {
margin: 2rem 0;
padding: 1rem;
overflow: auto;
color: #2B303B;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
background: #ECEFF1;
border: 1px solid #ECEFF1; }
pre code {
color: #2B303B; }
/*
* Definitions
*/
/*
* Kbd
*/
kbd {
margin: 0 0.5rem;
padding: 0.4rem;
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
font-weight: normal;
font-size: 1.2rem;
color: #a3be8c;
background: #ECEFF1;
border: 1px solid #ECEFF1; }
/*
* Definitions
*/
/*
* Text Message
*/
.alert {
margin: 1.5rem 0;
padding: 1rem 1.5rem;
font-size: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.2rem;
color: #2B303B;
line-height: 1.35;
border: 1px solid #2B303B; }
.alert.error {
color: #e86e6e;
border: 1px solid #EF9A9A;
background: #fdf2f2; }
.alert.warning {
color: #caa502;
border: 1px solid #FDD835;
background: #fef0b3; }
.alert.success {
color: #76ac39;
border: 1px solid #9CCC65;
background: #daecc5; }
.alert.info {
color: #1eb2f5;
border: 1px solid #4FC3F7;
background: #c9edfd; }
/*
* Grid
*/
/*
* Definitions
*/
/*
* Gutter
*/
.no-gutter {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; }
@media (min-width: 1280px) {
.no-gutter-large {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.no-gutter-medium {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; } }
@media (min-width: 768px) and (max-width: 1023px) {
.no-gutter-small {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; } }
@media (max-width: 767px) {
.no-gutter-mobile {
padding: 0 !important; }
.gutter-top {
padding-top: 1.5rem !important; }
.gutter-bottom {
padding-bottom: 1.5rem !important; }
.gutter-left {
padding-left: 1.5rem !important; }
.gutter-right {
padding-right: 1.5rem !important; } }
/*
* Definitions
*/
/*
* Container
*/
.container {
position: relative;
margin: 0 auto;
width: 100%;
*zoom: 1; }
.container:before, .container:after {
content: " ";
display: table; }
.container:after {
clear: both; }
@media (min-width: 1280px) {
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 1280px; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 1024px; } }
@media (min-width: 768px) and (max-width: 1023px) {
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 100%; } }
@media (max-width: 767px) {
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 100%; } }
/*
* Row
*/
.row {
margin-left: -1.5rem;
margin-right: -1.5rem;
*zoom: 1; }
.row:before, .row:after {
content: " ";
display: table; }
.row:after {
clear: both; }
.row.no-gutter {
margin-left: 0;
margin-right: 0; }
@media (min-width: 1280px) {
.row {
margin-left: -1.5rem;
margin-right: -1.5rem; }
.row.no-gutter-large {
margin-left: 0;
margin-right: 0; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.row {
margin-left: -1.5rem;
margin-right: -1.5rem; }
.row.no-gutter-medium {
margin-left: 0;
margin-right: 0; } }
@media (min-width: 768px) and (max-width: 1023px) {
.row {
margin-left: -1.5rem;
margin-right: -1.5rem; }
.row.no-gutter-small {
margin-left: 0;
margin-right: 0; } }
@media (max-width: 767px) {
.row {
margin-left: -1.5rem;
margin-right: -1.5rem; }
.row.no-gutter-mobile {
margin-left: 0;
margin-right: 0; } }
/*
* Definitions
*/
/*
* Columns
*/
[class*='column-'] {
float: left;
position: relative;
min-height: 1px;
padding-left: 1.5rem;
padding-right: 1.5rem; }
[class*='column-'].column-center {
float: none;
margin-left: auto;
margin-right: auto; }
@media (min-width: 1280px) {
[class*='column-'] {
padding-left: 1.5rem;
padding-right: 1.5rem; } }
@media (min-width: 1024px) and (max-width: 1279px) {
[class*='column-'] {
padding-left: 1.5rem;
padding-right: 1.5rem; } }
@media (min-width: 768px) and (max-width: 1023px) {
[class*='column-'] {
padding-left: 1.5rem;
padding-right: 1.5rem; } }
@media (max-width: 767px) {
[class*='column-'] {
padding-left: 1.5rem;
padding-right: 1.5rem; } }
.column-1-1 {
width: 100%; }
.column-1-2 {
width: 50%; }
.column-1-3 {
width: 33.3333%; }
.column-1-4 {
width: 25%; }
.column-1-5 {
width: 20%; }
.column-1-6 {
width: 16.6667%; }
.column-1-7 {
width: 14.2857%; }
.column-1-8 {
width: 12.5%; }
.column-1-9 {
width: 11.1111%; }
.column-1-10 {
width: 10%; }
.column-1-11 {
width: 9.0909%; }
.column-1-12 {
width: 8.3333%; }
.column-2-12 {
width: 16.6667%; }
.column-3-12 {
width: 25%; }
.column-4-12 {
width: 33.3333%; }
.column-5-12 {
width: 41.6667%; }
.column-6-12 {
width: 50%; }
.column-7-12 {
width: 58.3333%; }
.column-8-12 {
width: 66.6667%; }
.column-9-12 {
width: 75%; }
.column-10-12 {
width: 83.3333%; }
.column-11-12 {
width: 91.6667%; }
.column-offset-1-1 {
margin-left: 100%; }
.column-offset-1-2 {
margin-left: 50%; }
.column-offset-1-3 {
margin-left: 33.3333%; }
.column-offset-1-4 {
margin-left: 25%; }
.column-offset-1-5 {
margin-left: 20%; }
.column-offset-1-6 {
margin-left: 16.6667%; }
.column-offset-1-7 {
margin-left: 14.2857%; }
.column-offset-1-8 {
margin-left: 12.5%; }
.column-offset-1-9 {
margin-left: 11.1111%; }
.column-offset-1-10 {
margin-left: 10%; }
.column-offset-1-11 {
margin-left: 9.0909%; }
.column-offset-1-12 {
margin-left: 8.3333%; }
.column-offset-2-12 {
margin-left: 16.6667%; }
.column-offset-3-12 {
margin-left: 25%; }
.column-offset-4-12 {
margin-left: 33.3333%; }
.column-offset-5-12 {
margin-left: 41.6667%; }
.column-offset-6-12 {
margin-left: 50%; }
.column-offset-7-12 {
margin-left: 58.3333%; }
.column-offset-8-12 {
margin-left: 66.6667%; }
.column-offset-9-12 {
margin-left: 75%; }
.column-offset-10-12 {
margin-left: 83.3333%; }
.column-offset-11-12 {
margin-left: 91.6667%; }
.column-push-1-1 {
left: 100%; }
.column-push-1-2 {
left: 50%; }
.column-push-1-3 {
left: 33.3333%; }
.column-push-1-4 {
left: 25%; }
.column-push-1-5 {
left: 20%; }
.column-push-1-6 {
left: 16.6667%; }
.column-push-1-7 {
left: 14.2857%; }
.column-push-1-8 {
left: 12.5%; }
.column-push-1-9 {
left: 11.1111%; }
.column-push-1-10 {
left: 10%; }
.column-push-1-11 {
left: 9.0909%; }
.column-push-1-12 {
left: 8.3333%; }
.column-push-2-12 {
left: 16.6667%; }
.column-push-3-12 {
left: 25%; }
.column-push-4-12 {
left: 33.3333%; }
.column-push-5-12 {
left: 41.6667%; }
.column-push-6-12 {
left: 50%; }
.column-push-7-12 {
left: 58.3333%; }
.column-push-8-12 {
left: 66.6667%; }
.column-push-9-12 {
left: 75%; }
.column-push-10-12 {
left: 83.3333%; }
.column-push-11-12 {
left: 91.6667%; }
.column-pull-1-1 {
right: 100%; }
.column-pull-1-2 {
right: 50%; }
.column-pull-1-3 {
right: 33.3333%; }
.column-pull-1-4 {
right: 25%; }
.column-pull-1-5 {
right: 20%; }
.column-pull-1-6 {
right: 16.6667%; }
.column-pull-1-7 {
right: 14.2857%; }
.column-pull-1-8 {
right: 12.5%; }
.column-pull-1-9 {
right: 11.1111%; }
.column-pull-1-10 {
right: 10%; }
.column-pull-1-11 {
right: 9.0909%; }
.column-pull-1-12 {
right: 8.3333%; }
.column-pull-2-12 {
right: 16.6667%; }
.column-pull-3-12 {
right: 25%; }
.column-pull-4-12 {
right: 33.3333%; }
.column-pull-5-12 {
right: 41.6667%; }
.column-pull-6-12 {
right: 50%; }
.column-pull-7-12 {
right: 58.3333%; }
.column-pull-8-12 {
right: 66.6667%; }
.column-pull-9-12 {
right: 75%; }
.column-pull-10-12 {
right: 83.3333%; }
.column-pull-11-12 {
right: 91.6667%; }
/*
* Column Media Query Classes
*/
@media (min-width: 1280px) {
.column-large-1-1 {
width: 100%; }
.column-large-1-2 {
width: 50%; }
.column-large-1-3 {
width: 33.3333%; }
.column-large-1-4 {
width: 25%; }
.column-large-1-5 {
width: 20%; }
.column-large-1-6 {
width: 16.6667%; }
.column-large-1-7 {
width: 14.2857%; }
.column-large-1-8 {
width: 12.5%; }
.column-large-1-9 {
width: 11.1111%; }
.column-large-1-10 {
width: 10%; }
.column-large-1-11 {
width: 9.0909%; }
.column-large-1-12 {
width: 8.3333%; }
.column-large-2-12 {
width: 16.6667%; }
.column-large-3-12 {
width: 25%; }
.column-large-4-12 {
width: 33.3333%; }
.column-large-5-12 {
width: 41.6667%; }
.column-large-6-12 {
width: 50%; }
.column-large-7-12 {
width: 58.3333%; }
.column-large-8-12 {
width: 66.6667%; }
.column-large-9-12 {
width: 75%; }
.column-large-10-12 {
width: 83.3333%; }
.column-large-11-12 {
width: 91.6667%; }
.column-offset-large-1-1 {
margin-left: 100%; }
.column-offset-large-1-2 {
margin-left: 50%; }
.column-offset-large-1-3 {
margin-left: 33.3333%; }
.column-offset-large-1-4 {
margin-left: 25%; }
.column-offset-large-1-5 {
margin-left: 20%; }
.column-offset-large-1-6 {
margin-left: 16.6667%; }
.column-offset-large-1-7 {
margin-left: 14.2857%; }
.column-offset-large-1-8 {
margin-left: 12.5%; }
.column-offset-large-1-9 {
margin-left: 11.1111%; }
.column-offset-large-1-10 {
margin-left: 10%; }
.column-offset-large-1-11 {
margin-left: 9.0909%; }
.column-offset-large-1-12 {
margin-left: 8.3333%; }
.column-offset-large-2-12 {
margin-left: 16.6667%; }
.column-offset-large-3-12 {
margin-left: 25%; }
.column-offset-large-4-12 {
margin-left: 33.3333%; }
.column-offset-large-5-12 {
margin-left: 41.6667%; }
.column-offset-large-6-12 {
margin-left: 50%; }
.column-offset-large-7-12 {
margin-left: 58.3333%; }
.column-offset-large-8-12 {
margin-left: 66.6667%; }
.column-offset-large-9-12 {
margin-left: 75%; }
.column-offset-large-10-12 {
margin-left: 83.3333%; }
.column-offset-large-11-12 {
margin-left: 91.6667%; }
.column-push-large-1-1 {
left: 100%; }
.column-push-large-1-2 {
left: 50%; }
.column-push-large-1-3 {
left: 33.3333%; }
.column-push-large-1-4 {
left: 25%; }
.column-push-large-1-5 {
left: 20%; }
.column-push-large-1-6 {
left: 16.6667%; }
.column-push-large-1-7 {
left: 14.2857%; }
.column-push-large-1-8 {
left: 12.5%; }
.column-push-large-1-9 {
left: 11.1111%; }
.column-push-large-1-10 {
left: 10%; }
.column-push-large-1-11 {
left: 9.0909%; }
.column-push-large-1-12 {
left: 8.3333%; }
.column-push-large-2-12 {
left: 16.6667%; }
.column-push-large-3-12 {
left: 25%; }
.column-push-large-4-12 {
left: 33.3333%; }
.column-push-large-5-12 {
left: 41.6667%; }
.column-push-large-6-12 {
left: 50%; }
.column-push-large-7-12 {
left: 58.3333%; }
.column-push-large-8-12 {
left: 66.6667%; }
.column-push-large-9-12 {
left: 75%; }
.column-push-large-10-12 {
left: 83.3333%; }
.column-push-large-11-12 {
left: 91.6667%; }
.column-pull-large-1-1 {
right: 100%; }
.column-pull-large-1-2 {
right: 50%; }
.column-pull-large-1-3 {
right: 33.3333%; }
.column-pull-large-1-4 {
right: 25%; }
.column-pull-large-1-5 {
right: 20%; }
.column-pull-large-1-6 {
right: 16.6667%; }
.column-pull-large-1-7 {
right: 14.2857%; }
.column-pull-large-1-8 {
right: 12.5%; }
.column-pull-large-1-9 {
right: 11.1111%; }
.column-pull-large-1-10 {
right: 10%; }
.column-pull-large-1-11 {
right: 9.0909%; }
.column-pull-large-1-12 {
right: 8.3333%; }
.column-pull-large-2-12 {
right: 16.6667%; }
.column-pull-large-3-12 {
right: 25%; }
.column-pull-large-4-12 {
right: 33.3333%; }
.column-pull-large-5-12 {
right: 41.6667%; }
.column-pull-large-6-12 {
right: 50%; }
.column-pull-large-7-12 {
right: 58.3333%; }
.column-pull-large-8-12 {
right: 66.6667%; }
.column-pull-large-9-12 {
right: 75%; }
.column-pull-large-10-12 {
right: 83.3333%; }
.column-pull-large-11-12 {
right: 91.6667%; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.column-medium-1-1 {
width: 100%; }
.column-medium-1-2 {
width: 50%; }
.column-medium-1-3 {
width: 33.3333%; }
.column-medium-1-4 {
width: 25%; }
.column-medium-1-5 {
width: 20%; }
.column-medium-1-6 {
width: 16.6667%; }
.column-medium-1-7 {
width: 14.2857%; }
.column-medium-1-8 {
width: 12.5%; }
.column-medium-1-9 {
width: 11.1111%; }
.column-medium-1-10 {
width: 10%; }
.column-medium-1-11 {
width: 9.0909%; }
.column-medium-1-12 {
width: 8.3333%; }
.column-medium-2-12 {
width: 16.6667%; }
.column-medium-3-12 {
width: 25%; }
.column-medium-4-12 {
width: 33.3333%; }
.column-medium-5-12 {
width: 41.6667%; }
.column-medium-6-12 {
width: 50%; }
.column-medium-7-12 {
width: 58.3333%; }
.column-medium-8-12 {
width: 66.6667%; }
.column-medium-9-12 {
width: 75%; }
.column-medium-10-12 {
width: 83.3333%; }
.column-medium-11-12 {
width: 91.6667%; }
.column-offset-medium-1-1 {
margin-left: 100%; }
.column-offset-medium-1-2 {
margin-left: 50%; }
.column-offset-medium-1-3 {
margin-left: 33.3333%; }
.column-offset-medium-1-4 {
margin-left: 25%; }
.column-offset-medium-1-5 {
margin-left: 20%; }
.column-offset-medium-1-6 {
margin-left: 16.6667%; }
.column-offset-medium-1-7 {
margin-left: 14.2857%; }
.column-offset-medium-1-8 {
margin-left: 12.5%; }
.column-offset-medium-1-9 {
margin-left: 11.1111%; }
.column-offset-medium-1-10 {
margin-left: 10%; }
.column-offset-medium-1-11 {
margin-left: 9.0909%; }
.column-offset-medium-1-12 {
margin-left: 8.3333%; }
.column-offset-medium-2-12 {
margin-left: 16.6667%; }
.column-offset-medium-3-12 {
margin-left: 25%; }
.column-offset-medium-4-12 {
margin-left: 33.3333%; }
.column-offset-medium-5-12 {
margin-left: 41.6667%; }
.column-offset-medium-6-12 {
margin-left: 50%; }
.column-offset-medium-7-12 {
margin-left: 58.3333%; }
.column-offset-medium-8-12 {
margin-left: 66.6667%; }
.column-offset-medium-9-12 {
margin-left: 75%; }
.column-offset-medium-10-12 {
margin-left: 83.3333%; }
.column-offset-medium-11-12 {
margin-left: 91.6667%; }
.column-push-medium-1-1 {
left: 100%; }
.column-push-medium-1-2 {
left: 50%; }
.column-push-medium-1-3 {
left: 33.3333%; }
.column-push-medium-1-4 {
left: 25%; }
.column-push-medium-1-5 {
left: 20%; }
.column-push-medium-1-6 {
left: 16.6667%; }
.column-push-medium-1-7 {
left: 14.2857%; }
.column-push-medium-1-8 {
left: 12.5%; }
.column-push-medium-1-9 {
left: 11.1111%; }
.column-push-medium-1-10 {
left: 10%; }
.column-push-medium-1-11 {
left: 9.0909%; }
.column-push-medium-1-12 {
left: 8.3333%; }
.column-push-medium-2-12 {
left: 16.6667%; }
.column-push-medium-3-12 {
left: 25%; }
.column-push-medium-4-12 {
left: 33.3333%; }
.column-push-medium-5-12 {
left: 41.6667%; }
.column-push-medium-6-12 {
left: 50%; }
.column-push-medium-7-12 {
left: 58.3333%; }
.column-push-medium-8-12 {
left: 66.6667%; }
.column-push-medium-9-12 {
left: 75%; }
.column-push-medium-10-12 {
left: 83.3333%; }
.column-push-medium-11-12 {
left: 91.6667%; }
.column-pull-medium-1-1 {
right: 100%; }
.column-pull-medium-1-2 {
right: 50%; }
.column-pull-medium-1-3 {
right: 33.3333%; }
.column-pull-medium-1-4 {
right: 25%; }
.column-pull-medium-1-5 {
right: 20%; }
.column-pull-medium-1-6 {
right: 16.6667%; }
.column-pull-medium-1-7 {
right: 14.2857%; }
.column-pull-medium-1-8 {
right: 12.5%; }
.column-pull-medium-1-9 {
right: 11.1111%; }
.column-pull-medium-1-10 {
right: 10%; }
.column-pull-medium-1-11 {
right: 9.0909%; }
.column-pull-medium-1-12 {
right: 8.3333%; }
.column-pull-medium-2-12 {
right: 16.6667%; }
.column-pull-medium-3-12 {
right: 25%; }
.column-pull-medium-4-12 {
right: 33.3333%; }
.column-pull-medium-5-12 {
right: 41.6667%; }
.column-pull-medium-6-12 {
right: 50%; }
.column-pull-medium-7-12 {
right: 58.3333%; }
.column-pull-medium-8-12 {
right: 66.6667%; }
.column-pull-medium-9-12 {
right: 75%; }
.column-pull-medium-10-12 {
right: 83.3333%; }
.column-pull-medium-11-12 {
right: 91.6667%; } }
@media (min-width: 768px) and (max-width: 1023px) {
.column-small-1-1 {
width: 100%; }
.column-small-1-2 {
width: 50%; }
.column-small-1-3 {
width: 33.3333%; }
.column-small-1-4 {
width: 25%; }
.column-small-1-5 {
width: 20%; }
.column-small-1-6 {
width: 16.6667%; }
.column-small-1-7 {
width: 14.2857%; }
.column-small-1-8 {
width: 12.5%; }
.column-small-1-9 {
width: 11.1111%; }
.column-small-1-10 {
width: 10%; }
.column-small-1-11 {
width: 9.0909%; }
.column-small-1-12 {
width: 8.3333%; }
.column-small-2-12 {
width: 16.6667%; }
.column-small-3-12 {
width: 25%; }
.column-small-4-12 {
width: 33.3333%; }
.column-small-5-12 {
width: 41.6667%; }
.column-small-6-12 {
width: 50%; }
.column-small-7-12 {
width: 58.3333%; }
.column-small-8-12 {
width: 66.6667%; }
.column-small-9-12 {
width: 75%; }
.column-small-10-12 {
width: 83.3333%; }
.column-small-11-12 {
width: 91.6667%; }
.column-offset-small-1-1 {
margin-left: 100%; }
.column-offset-small-1-2 {
margin-left: 50%; }
.column-offset-small-1-3 {
margin-left: 33.3333%; }
.column-offset-small-1-4 {
margin-left: 25%; }
.column-offset-small-1-5 {
margin-left: 20%; }
.column-offset-small-1-6 {
margin-left: 16.6667%; }
.column-offset-small-1-7 {
margin-left: 14.2857%; }
.column-offset-small-1-8 {
margin-left: 12.5%; }
.column-offset-small-1-9 {
margin-left: 11.1111%; }
.column-offset-small-1-10 {
margin-left: 10%; }
.column-offset-small-1-11 {
margin-left: 9.0909%; }
.column-offset-small-1-12 {
margin-left: 8.3333%; }
.column-offset-small-2-12 {
margin-left: 16.6667%; }
.column-offset-small-3-12 {
margin-left: 25%; }
.column-offset-small-4-12 {
margin-left: 33.3333%; }
.column-offset-small-5-12 {
margin-left: 41.6667%; }
.column-offset-small-6-12 {
margin-left: 50%; }
.column-offset-small-7-12 {
margin-left: 58.3333%; }
.column-offset-small-8-12 {
margin-left: 66.6667%; }
.column-offset-small-9-12 {
margin-left: 75%; }
.column-offset-small-10-12 {
margin-left: 83.3333%; }
.column-offset-small-11-12 {
margin-left: 91.6667%; }
.column-push-small-1-1 {
left: 100%; }
.column-push-small-1-2 {
left: 50%; }
.column-push-small-1-3 {
left: 33.3333%; }
.column-push-small-1-4 {
left: 25%; }
.column-push-small-1-5 {
left: 20%; }
.column-push-small-1-6 {
left: 16.6667%; }
.column-push-small-1-7 {
left: 14.2857%; }
.column-push-small-1-8 {
left: 12.5%; }
.column-push-small-1-9 {
left: 11.1111%; }
.column-push-small-1-10 {
left: 10%; }
.column-push-small-1-11 {
left: 9.0909%; }
.column-push-small-1-12 {
left: 8.3333%; }
.column-push-small-2-12 {
left: 16.6667%; }
.column-push-small-3-12 {
left: 25%; }
.column-push-small-4-12 {
left: 33.3333%; }
.column-push-small-5-12 {
left: 41.6667%; }
.column-push-small-6-12 {
left: 50%; }
.column-push-small-7-12 {
left: 58.3333%; }
.column-push-small-8-12 {
left: 66.6667%; }
.column-push-small-9-12 {
left: 75%; }
.column-push-small-10-12 {
left: 83.3333%; }
.column-push-small-11-12 {
left: 91.6667%; }
.column-pull-small-1-1 {
right: 100%; }
.column-pull-small-1-2 {
right: 50%; }
.column-pull-small-1-3 {
right: 33.3333%; }
.column-pull-small-1-4 {
right: 25%; }
.column-pull-small-1-5 {
right: 20%; }
.column-pull-small-1-6 {
right: 16.6667%; }
.column-pull-small-1-7 {
right: 14.2857%; }
.column-pull-small-1-8 {
right: 12.5%; }
.column-pull-small-1-9 {
right: 11.1111%; }
.column-pull-small-1-10 {
right: 10%; }
.column-pull-small-1-11 {
right: 9.0909%; }
.column-pull-small-1-12 {
right: 8.3333%; }
.column-pull-small-2-12 {
right: 16.6667%; }
.column-pull-small-3-12 {
right: 25%; }
.column-pull-small-4-12 {
right: 33.3333%; }
.column-pull-small-5-12 {
right: 41.6667%; }
.column-pull-small-6-12 {
right: 50%; }
.column-pull-small-7-12 {
right: 58.3333%; }
.column-pull-small-8-12 {
right: 66.6667%; }
.column-pull-small-9-12 {
right: 75%; }
.column-pull-small-10-12 {
right: 83.3333%; }
.column-pull-small-11-12 {
right: 91.6667%; } }
@media (max-width: 767px) {
[class*='column-'] {
width: 100%; }
.column-mobile-1-1 {
width: 100%; }
.column-mobile-1-2 {
width: 50%; }
.column-mobile-1-3 {
width: 33.3333%; }
.column-mobile-1-4 {
width: 25%; }
.column-mobile-1-5 {
width: 20%; }
.column-mobile-1-6 {
width: 16.6667%; }
.column-mobile-1-7 {
width: 14.2857%; }
.column-mobile-1-8 {
width: 12.5%; }
.column-mobile-1-9 {
width: 11.1111%; }
.column-mobile-1-10 {
width: 10%; }
.column-mobile-1-11 {
width: 9.0909%; }
.column-mobile-1-12 {
width: 8.3333%; }
.column-mobile-2-12 {
width: 16.6667%; }
.column-mobile-3-12 {
width: 25%; }
.column-mobile-4-12 {
width: 33.3333%; }
.column-mobile-5-12 {
width: 41.6667%; }
.column-mobile-6-12 {
width: 50%; }
.column-mobile-7-12 {
width: 58.3333%; }
.column-mobile-8-12 {
width: 66.6667%; }
.column-mobile-9-12 {
width: 75%; }
.column-mobile-10-12 {
width: 83.3333%; }
.column-mobile-11-12 {
width: 91.6667%; }
.column-offset-mobile-1-1 {
margin-left: 100%; }
.column-offset-mobile-1-2 {
margin-left: 50%; }
.column-offset-mobile-1-3 {
margin-left: 33.3333%; }
.column-offset-mobile-1-4 {
margin-left: 25%; }
.column-offset-mobile-1-5 {
margin-left: 20%; }
.column-offset-mobile-1-6 {
margin-left: 16.6667%; }
.column-offset-mobile-1-7 {
margin-left: 14.2857%; }
.column-offset-mobile-1-8 {
margin-left: 12.5%; }
.column-offset-mobile-1-9 {
margin-left: 11.1111%; }
.column-offset-mobile-1-10 {
margin-left: 10%; }
.column-offset-mobile-1-11 {
margin-left: 9.0909%; }
.column-offset-mobile-1-12 {
margin-left: 8.3333%; }
.column-offset-mobile-2-12 {
margin-left: 16.6667%; }
.column-offset-mobile-3-12 {
margin-left: 25%; }
.column-offset-mobile-4-12 {
margin-left: 33.3333%; }
.column-offset-mobile-5-12 {
margin-left: 41.6667%; }
.column-offset-mobile-6-12 {
margin-left: 50%; }
.column-offset-mobile-7-12 {
margin-left: 58.3333%; }
.column-offset-mobile-8-12 {
margin-left: 66.6667%; }
.column-offset-mobile-9-12 {
margin-left: 75%; }
.column-offset-mobile-10-12 {
margin-left: 83.3333%; }
.column-offset-mobile-11-12 {
margin-left: 91.6667%; }
.column-push-mobile-1-1 {
left: 100%; }
.column-push-mobile-1-2 {
left: 50%; }
.column-push-mobile-1-3 {
left: 33.3333%; }
.column-push-mobile-1-4 {
left: 25%; }
.column-push-mobile-1-5 {
left: 20%; }
.column-push-mobile-1-6 {
left: 16.6667%; }
.column-push-mobile-1-7 {
left: 14.2857%; }
.column-push-mobile-1-8 {
left: 12.5%; }
.column-push-mobile-1-9 {
left: 11.1111%; }
.column-push-mobile-1-10 {
left: 10%; }
.column-push-mobile-1-11 {
left: 9.0909%; }
.column-push-mobile-1-12 {
left: 8.3333%; }
.column-push-mobile-2-12 {
left: 16.6667%; }
.column-push-mobile-3-12 {
left: 25%; }
.column-push-mobile-4-12 {
left: 33.3333%; }
.column-push-mobile-5-12 {
left: 41.6667%; }
.column-push-mobile-6-12 {
left: 50%; }
.column-push-mobile-7-12 {
left: 58.3333%; }
.column-push-mobile-8-12 {
left: 66.6667%; }
.column-push-mobile-9-12 {
left: 75%; }
.column-push-mobile-10-12 {
left: 83.3333%; }
.column-push-mobile-11-12 {
left: 91.6667%; }
.column-pull-mobile-1-1 {
right: 100%; }
.column-pull-mobile-1-2 {
right: 50%; }
.column-pull-mobile-1-3 {
right: 33.3333%; }
.column-pull-mobile-1-4 {
right: 25%; }
.column-pull-mobile-1-5 {
right: 20%; }
.column-pull-mobile-1-6 {
right: 16.6667%; }
.column-pull-mobile-1-7 {
right: 14.2857%; }
.column-pull-mobile-1-8 {
right: 12.5%; }
.column-pull-mobile-1-9 {
right: 11.1111%; }
.column-pull-mobile-1-10 {
right: 10%; }
.column-pull-mobile-1-11 {
right: 9.0909%; }
.column-pull-mobile-1-12 {
right: 8.3333%; }
.column-pull-mobile-2-12 {
right: 16.6667%; }
.column-pull-mobile-3-12 {
right: 25%; }
.column-pull-mobile-4-12 {
right: 33.3333%; }
.column-pull-mobile-5-12 {
right: 41.6667%; }
.column-pull-mobile-6-12 {
right: 50%; }
.column-pull-mobile-7-12 {
right: 58.3333%; }
.column-pull-mobile-8-12 {
right: 66.6667%; }
.column-pull-mobile-9-12 {
right: 75%; }
.column-pull-mobile-10-12 {
right: 83.3333%; }
.column-pull-mobile-11-12 {
right: 91.6667%; } }
/*
* Elements
*/
/*
* Definitions
*/
/*
* Button
*/
button,
.button {
display: inline-block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
line-height: 1;
text-align: center;
text-transform: none;
white-space: nowrap;
cursor: pointer;
border-radius: 2px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
padding: 1.2rem 1.6rem;
height: 4rem;
font-size: 1.4rem;
color: #2B303B;
background: #FFFFFF;
border: 1px solid #CCCCCC; }
button:not(:disabled):hover, button:not(:disabled):focus,
.button:not(:disabled):hover,
.button:not(:disabled):focus {
color: #2B303B;
background: #e6e6e6;
border: 1px solid #b3b3b3;
text-decoration: none;
outline: 0; }
button:disabled {
cursor: no-drop;
opacity: 0.5; }
[role="button"] {
cursor: pointer; }
/*
* Button Modifiers
*/
.button-block {
display: block;
width: 100%;
text-align: center; }
.button-center {
display: inline-block;
margin: 0 auto; }
/*
* Definitions
*/
/*
* Button Styles
*/
.button-inverse {
color: #ECEFF1;
background: #2B303B;
border: 1px solid #20242c; }
.button-inverse:not(:disabled):hover, .button-inverse:not(:disabled):focus {
color: #ECEFF1;
background: #16181e;
border: 1px solid #0b0c0f;
text-decoration: none;
outline: 0; }
.button-text {
color: #2B303B;
background: transparent;
border: none; }
.button-text:not(:disabled):hover, .button-text:not(:disabled):focus {
color: #bf616a;
background: transparent;
border: none;
text-decoration: none;
outline: 0; }
.button-primary {
color: #FFFFFF;
background: #bf616a;
border: 1px solid #b84f59; }
.button-primary:not(:disabled):hover, .button-primary:not(:disabled):focus {
color: #FFFFFF;
background: #a9444e;
border: 1px solid #973d46;
text-decoration: none;
outline: 0; }
.button-secondary {
color: #FFFFFF;
background: #5D9CEC;
border: 1px solid #468ee9; }
.button-secondary:not(:disabled):hover, .button-secondary:not(:disabled):focus {
color: #FFFFFF;
background: #2f80e7;
border: 1px solid #1b72e2;
text-decoration: none;
outline: 0; }
.button-tertiary {
color: #FFFFFF;
background: #a3be8c;
border: 1px solid #96b57c; }
.button-tertiary:not(:disabled):hover, .button-tertiary:not(:disabled):focus {
color: #FFFFFF;
background: #89ac6b;
border: 1px solid #96b57c;
text-decoration: none;
outline: 0; }
.button-border {
color: #2B303B;
background: transparent;
border: 1px solid #2B303B; }
.button-border:not(:disabled):hover, .button-border:not(:disabled):focus {
color: #FFFFFF;
background: #2B303B;
border: 1px solid #2B303B;
text-decoration: none;
outline: 0; }
/*
* Definitions
*/
/*
* Button Indicators
*/
button.error,
.button.error {
color: #FFFFFF;
background: #EF9A9A;
border: 1px solid #e55858; }
button.error:not(:disabled):hover, button.error:not(:disabled):focus,
.button.error:not(:disabled):hover,
.button.error:not(:disabled):focus {
color: #FFFFFF;
background: #e55858;
border: 1px solid #de2c2c;
text-decoration: none;
outline: 0; }
button.warning,
.button.warning {
color: #FFFFFF;
background: #FDD835;
border: 1px solid #e3ba02; }
button.warning:not(:disabled):hover, button.warning:not(:disabled):focus,
.button.warning:not(:disabled):hover,
.button.warning:not(:disabled):focus {
color: #FFFFFF;
background: #e3ba02;
border: 1px solid #caa502;
text-decoration: none;
outline: 0; }
button.success,
.button.success {
color: #FFFFFF;
background: #9CCC65;
border: 1px solid #76ac39; }
button.success:not(:disabled):hover, button.success:not(:disabled):focus,
.button.success:not(:disabled):hover,
.button.success:not(:disabled):focus {
color: #FFFFFF;
background: #76ac39;
border: 1px solid #5c852c;
text-decoration: none;
outline: 0; }
button.info,
.button.info {
color: #FFFFFF;
background: #4FC3F7;
border: 1px solid #0ba8ef; }
button.info:not(:disabled):hover, button.info:not(:disabled):focus,
.button.info:not(:disabled):hover,
.button.info:not(:disabled):focus {
color: #FFFFFF;
background: #0ba8ef;
border: 1px solid #0986be;
text-decoration: none;
outline: 0; }
/*
* Definitions
*/
/*
* Button Sizes
*/
.button-xlarge {
padding: 2rem 3rem;
height: 6.5rem;
font-size: 1.8rem; }
.button-large {
padding: 1.5rem 2.5rem;
height: 5rem;
font-size: 1.6rem; }
.button-medium {
padding: 1.2rem 1.6rem;
height: 4rem;
font-size: 1.4rem; }
.button-small {
padding: 0.8rem 1.2rem;
height: 3rem;
font-size: 1.2rem; }
.button-xsmall {
padding: 0.4rem 0.8rem;
height: 2rem;
font-size: 1rem; }
/*
* Button Group
*/
.button-group {
position: relative;
display: inline-block;
vertical-align: middle; }
.button-group > button,
.button-group > .button {
position: relative;
float: left; }
.button-group > button:hover, .button-group > button:focus, .button-group > button:active, .button-group > button.active,
.button-group > .button:hover,
.button-group > .button:focus,
.button-group > .button:active,
.button-group > .button.active {
z-index: 2; }
.button-group button + button,
.button-group .button + .button,
.button-group button + .button-group,
.button-group .button + .button-group,
.button-group .button-group + button,
.button-group .button-group + .button,
.button-group .button-group + .button-group {
margin-left: -1px; }
.button-group > .button-group {
float: left; }
.button-group button:not(:first-child):not(:last-child),
.button-group .button:not(:first-child):not(:last-child),
.button-group .button-group:not(:first-child):not(:last-child) > button,
.button-group .button-group:not(:first-child):not(:last-child) > .button {
border-radius: 0; }
.button-group > .button-group:first-child > button:last-child,
.button-group > .button-group:first-child > .button:last-child {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.button-group > .button-group:last-child > button:first-child,
.button-group > .button-group:last-child > .button:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.button-group > button:first-child,
.button-group > .button:first-child {
margin-left: 0; }
.button-group > button:first-child:not(:last-child),
.button-group > .button:first-child:not(:last-child) {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
.button-group > button:last-child:not(:first-child),
.button-group > .button:last-child:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
.button-group-block {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate; }
.button-group-block > button,
.button-group-block > .button,
.button-group-block > .button-group {
float: none;
display: table-cell;
width: 1%; }
.button-group-block > .button-group .button,
.button-group-block > .button-group button {
width: 100%; }
/*
* Definitions
*/
/*
* Figure
*/
figure {
display: block;
margin: 0;
padding: 1rem;
border: 1px solid #CCCCCC; }
figcaption {
margin: 1rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B;
text-align: center; }
/*
* Definitions
*/
/*
* Media
*/
.media {
display: block;
position: relative;
overflow: hidden;
background: #ECEFF1; }
.media > svg,
.media > img,
.media > video,
.media > iframe,
.media > .media-inner {
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%; }
.media-1-2 {
padding-top: 200%; }
.media-9-16 {
padding-top: 177.77778%; }
.media-9-14 {
padding-top: 155.55556%; }
.media-2-3 {
padding-top: 150%; }
.media-3-4 {
padding-top: 133.33333%; }
.media-1 {
padding-top: 100%; }
.media-4-3 {
padding-top: 75%; }
.media-3-2 {
padding-top: 66.66667%; }
.media-16-9 {
padding-top: 56.25%; }
.media-2-1 {
padding-top: 50%; }
/*
* Definitions
*/
/*
* Nav
*/
nav ul,
.nav ul {
margin: 0;
list-style: none; }
nav ul li,
.nav ul li {
margin: 1rem 0; }
.nav-inline ul li {
display: inline-block;
margin: 0 1rem; }
/*
* Definitions
*/
/*
* Table
*/
table {
background: none;
border-radius: 2px; }
table caption {
margin: 0.5rem 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
font-size: 1.4rem;
color: #2B303B;
text-align: left; }
th {
padding: 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
font-size: 1.4rem;
color: #2B303B;
text-align: left;
text-transform: none; }
td {
padding: 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B;
line-height: 1.35;
vertical-align: middle; }
.table-bordered th,
.table-bordered td {
border: solid #CCCCCC;
border-width: 1px; }
.table-block {
width: 100%; }
.table-block th {
background: #ECEFF1; }
@media (max-width: 1023px) {
.table-responsive table, .table-responsive thead, .table-responsive tbody, .table-responsive th, .table-responsive td, .table-responsive tr {
display: block; }
.table-responsive thead tr {
position: absolute;
top: -9999px;
left: -9999px; }
.table-responsive tr {
margin: 2rem 0;
border: solid #ECEFF1;
border-width: 1px; }
.table-responsive td {
position: relative;
padding: 1rem;
border: none; } }
/*
* Form
*/
/*
* Definitions
*/
/*
* Label
*/
label {
display: block;
margin: 1.5rem 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
font-size: 1.2rem;
color: #2B303B;
line-height: 1.35; }
/*
* Definitions
*/
/*
* Fieldset
*/
fieldset {
display: block;
margin: 0;
padding: 2rem;
border: 1px solid #3A4150; }
fieldset legend {
display: inline-block;
width: auto;
margin: 0;
padding: 1rem;
font-size: 1.4rem;
color: #3A4150; }
fieldset legend + label {
margin-top: 0; }
/*
* Definitions
*/
/*
* Form Message
*/
.form-message {
margin: 1.5rem 0;
font-size: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.2rem;
color: #2B303B;
line-height: 1.35; }
.form-message.error {
color: #e86e6e; }
.form-message.warning {
color: #caa502; }
.form-message.success {
color: #76ac39; }
.form-message.info {
color: #1eb2f5; }
/*
* Definitions
*/
/*
* Input
*/
input,
textarea {
display: block;
margin: 1.5rem 0;
width: 100%;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
color: #2B303B;
line-height: 1.35;
border: 1px solid #CCCCCC;
background: #FFFFFF;
border-radius: 2px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0 1.6rem;
height: 4rem;
font-size: 1.4rem;
color: #2B303B;
background: #FFFFFF;
border: 1px solid #CCCCCC; }
input:focus,
textarea:focus {
color: #2B303B;
background: #fafafa;
border: 1px solid #b3b3b3; }
input::-moz-placeholder,
textarea::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
input:disabled,
textarea:disabled {
cursor: no-drop;
color: #ECEFF1;
background: #ECEFF1;
border: 1px solid #cfd6db; }
/*
* Textarea
*/
textarea {
max-width: 100%;
-webkit-transition: none;
transition: none; }
/*
* Input Styles
*/
.input-inverse {
color: #FFFFFF;
background: #2B303B;
border: none; }
.input-inverse:focus {
color: #FFFFFF;
background: #272b35;
border: none; }
.input-inverse::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: #FFFFFF;
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-inverse:focus::-moz-placeholder {
color: fade(#FFFFFF, 25%); }
.input-inverse:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: #FFFFFF;
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-inverse:focus:-ms-input-placeholder {
color: fade(#FFFFFF, 25%); }
.input-inverse::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: #FFFFFF;
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-inverse:focus::-webkit-input-placeholder {
color: fade(#FFFFFF, 25%); }
/*
* Input Search
*/
input[type="search"] {
border-radius: 2rem;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/*
* Input File
*/
input[type="file"] {
padding: 0;
height: auto;
background: transparent;
border: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/*
* Checkbox and Radio
*/
input[type="checkbox"],
input[type="radio"] {
display: inline-block;
margin-right: 10px;
width: auto;
height: auto; }
input[type="checkbox"] + p,
input[type="radio"] + p {
margin: 0;
display: inline-block; }
input[type="checkbox"] + label,
input[type="radio"] + label {
display: inline-block; }
input[type="checkbox"] {
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
appearance: checkbox; }
input[type="radio"] {
-webkit-appearance: radio;
-moz-appearance: radio;
appearance: radio; }
/*
* Textarea
*/
textarea {
padding: 1.2rem 1.6rem;
height: auto;
line-height: 1.35; }
/*
* Definitions
*/
/*
* Input Indicators
*/
input.error,
textarea.error {
color: #EF9A9A;
border-color: #EF9A9A; }
input.warning,
textarea.warning {
color: #FDD835;
border-color: #FDD835; }
input.success,
textarea.success {
color: #9CCC65;
border-color: #9CCC65; }
input.info,
textarea.info {
color: #4FC3F7;
border-color: #4FC3F7; }
/*
* Definitions
*/
/*
* Input Sizes
*/
.input-xlarge {
padding: 0 3rem;
height: 6.5rem;
font-size: 1.8rem; }
.input-xlarge::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.8rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xlarge:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xlarge:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.8rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xlarge:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xlarge::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.8rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xlarge:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-large {
padding: 0 2.5rem;
height: 5rem;
font-size: 1.6rem; }
.input-large::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.6rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-large:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-large:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.6rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-large:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-large::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.6rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-large:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-medium {
padding: 0 1.6rem;
height: 4rem;
font-size: 1.4rem; }
.input-medium::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-medium:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-medium:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-medium:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-medium::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.4rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-medium:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-small {
padding: 0 1.2rem;
height: 3rem;
font-size: 1.2rem; }
.input-small::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.2rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-small:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-small:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.2rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-small:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-small::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.2rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-small:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xsmall {
padding: 0 0.8rem;
height: 2rem;
font-size: 1rem; }
.input-xsmall::-moz-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xsmall:focus::-moz-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xsmall:-ms-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xsmall:focus:-ms-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
.input-xsmall::-webkit-input-placeholder {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1rem;
color: fade(#2B303B, 50%);
letter-spacing: 0px;
text-transform: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
.input-xsmall:focus::-webkit-input-placeholder {
color: fade(fade(#2B303B, 50%), 25%); }
/*
* Input Group
*/
.input-group {
position: relative;
display: table;
margin: 1.5rem 0;
border-collapse: separate; }
.input-group.input-inline {
float: left; }
.input-group input {
margin: 0;
border-radius: 2px 0 0 2px;
background-clip: padding-box; }
.input-group[class*="column-"] {
float: none;
padding-left: 0;
padding-right: 0; }
.input-group .input-group-button,
.input-group .input-group .form-input {
display: table-cell; }
.input-group-button {
position: relative;
font-size: 0rem;
width: 1%;
white-space: nowrap;
vertical-align: middle; }
.input-group-button > button,
.input-group-button > .button {
position: relative;
border-radius: 0 2px 2px 0;
background-clip: padding-box; }
.input-group-button > button + .button,
.input-group-button > .button + .button {
margin-left: -1px; }
.input-group-button > button:hover, .input-group-button > button:focus, .input-group-button > button:active,
.input-group-button > .button:hover,
.input-group-button > .button:focus,
.input-group-button > .button:active {
z-index: 2; }
.input-group-button:first-child > .button {
margin-right: -1px; }
.input-group-button:last-child > .button {
margin-left: -1px; }
.input-group-search {
border-radius: 2rem;
overflow: hidden; }
.input-group-search input[type="search"] {
padding-left: 2rem;
border-radius: 2rem 0 0 2rem;
background-clip: padding-box; }
.input-group-search button,
.input-group-search .button {
border-radius: 0 2rem 2rem 0;
background-clip: padding-box; }
/*
* Input Group Sizes
*/
.input-group-button-xlarge > button,
.input-group-button-xlarge > .button {
padding: 2rem 3rem;
height: 6.5rem;
min-width: 6.5rem;
font-size: 1.8rem; }
.input-group-button-large > button,
.input-group-button-large > .button {
padding: 1.5rem 2.5rem;
height: 5rem;
min-width: 5rem;
font-size: 1.6rem; }
.input-group-button-medium > button,
.input-group-button-medium > .button {
padding: 1.2rem 1.6rem;
height: 4rem;
min-width: 4rem;
font-size: 1.4rem; }
.input-group-button-small > button,
.input-group-button-small > .button {
padding: 0.8rem 1.2rem;
height: 3rem;
min-width: 3rem;
font-size: 1.2rem; }
.input-group-button-xsmall > button,
.input-group-button-xsmall > .button {
padding: 0.4rem 0.8rem;
height: 2rem;
min-width: 2rem;
font-size: 1rem; }
/*
* Definitions
*/
/*
* Controls (Radio + Checkbox)
*/
.control {
position: relative;
display: block;
margin: 1.5rem 0;
padding: 0 0 0 1.5rem;
color: #2B303B;
cursor: pointer; }
.control.control-inline {
display: inline-block;
margin-right: 2rem; }
.control input {
z-index: -1;
position: absolute;
opacity: 0; }
.control input:checked ~ .control-indicator {
background: #bf616a;
border: 1px solid #bf616a; }
.control input:checked ~ .control-label {
color: #2B303B; }
.control.checkbox .control-indicator {
border-radius: none; }
.control.checkbox input:checked ~ .control-indicator {
background: #bf616a no-repeat 50% 50% url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL<KEY>"); }
.control.radio .control-indicator {
border-radius: 50%; }
.control.radio input:checked ~ .control-indicator:before {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: #FFFFFF;
content: '';
width: 0.5em;
height: 0.5em;
border-radius: 50%; }
.control-indicator {
position: absolute;
top: 0;
left: 0;
display: block;
width: 1.6rem;
height: 1.6rem;
line-height: 1rem;
color: #bf616a;
text-align: center;
background-color: #FFFFFF;
background-size: 50% 50%;
background-position: center center;
background-repeat: no-repeat;
border: 1px solid #CCCCCC;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.control-label {
display: block;
margin: 0 0 0 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.2rem;
color: #2B303B;
line-height: 1.35;
pointer-events: none;
-webkit-transition: color 0.2s ease-in-out;
transition: color 0.2s ease-in-out; }
/*
* Definitions
*/
/*
* Select
*/
select {
display: block;
width: 100%; }
.select {
position: relative;
display: block;
margin: 1.5rem 0; }
.select select {
margin: 0;
padding: 0 1.6rem;
height: 4rem;
line-height: auto;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 1.4rem;
color: #2B303B;
cursor: pointer;
outline: 0;
background: #FFFFFF;
border: 1px solid #CCCCCC;
border-radius: 2px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
.select select::-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000; }
.select select::-ms-expand {
display: none; }
.select:after {
position: absolute;
top: 50%;
right: 15px;
margin-top: -0.25rem;
width: 0;
height: 0;
content: '';
pointer-events: none;
border-left: 0.5rem solid transparent;
border-right: 0.5rem solid transparent;
border-top: 0.5rem solid #2B303B; }
/*
* Select Inverse
*/
.select-inverse select {
color: #FFFFFF;
border: none;
background: #2B303B; }
.select-inverse:after {
border-top: 0.5rem solid #FFFFFF; }
@media screen and (min-width: 0�) {
.select select {
padding: 0.5em; }
.select:before, .select:after {
display: none; } }
@-moz-document url-prefix() {
.select select {
text-indent: 0.01px;
text-overflow: '';
padding-right: 1rem; }
.select:before {
z-index: 2;
position: absolute;
top: 0;
right: 0;
bottom: 0;
content: '';
pointer-events: none;
width: 1em;
border: 1px solid #CCCCCC;
border-width: 1px 1px 1px 0px;
background: #FFFFFF;
border-radius: 0 2px 2px 0;
background-clip: padding-box; }
.select.large:before {
width: 1.5em; }
.select.select-inverse:before {
border: none;
background: #2B303B; } }
/*
* Definitions
*/
/*
* Select Sizes
*/
.select-xlarge select {
padding: 0 3rem;
height: 6.5rem;
font-size: 1.8rem;
line-height: 6.5rem; }
.select-large select {
padding: 0 2.5rem;
height: 5rem;
font-size: 1.6rem;
line-height: 5rem; }
.select-medium select {
padding: 0 1.6rem;
height: 4rem;
font-size: 1.4rem;
line-height: 4rem; }
.select-small select {
padding: 0 1.2rem;
height: 3rem;
font-size: 1.2rem;
line-height: 3rem; }
.select-xsmall select {
padding: 0 0.8rem;
height: 2rem;
font-size: 1rem;
line-height: 2rem; }
/*
* Utilities
*/
/*
* Utility Classes
*/
.clearfix {
*zoom: 1; }
.clearfix:before, .clearfix:after {
content: " ";
display: table; }
.clearfix:after {
clear: both; }
.center-block {
display: block;
margin-left: auto;
margin-right: auto; }
.full-height {
height: 100%; }
.fixed {
position: fixed; }
.pointer {
cursor: pointer; }
.no-margin {
margin: 0 !important; }
.no-padding {
padding: 0 !important; }
.no-border {
border: none !important; }
/*
* Visibility
*/
.hide {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
.show {
display: block !important;
visibility: visible !important;
opacity: 1 !important; }
.visible {
visibility: visible; }
.invisible {
visibility: hidden; }
.hide-text {
font: "0/0 a";
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0; }
.hide-visually {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px; }
/*
* Print & Screen
*/
@media print {
.hidden-print {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media screen {
.hidden-screen {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
.visible-print {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media print {
.visible-print {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-screen {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media screen {
.visible-screen {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
/*
* Hidden Breakpoints
*/
@media (min-width: 1280px) {
.hidden-large {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.hidden-medium {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (min-width: 1024px) {
.hidden-medium-up {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (max-width: 1279px) {
.hidden-medium-down {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (min-width: 768px) and (max-width: 1023px) {
.hidden-small {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (min-width: 768px) {
.hidden-small-up {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (max-width: 1023px) {
.hidden-small-down {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
@media (max-width: 767px) {
.hidden-mobile {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; } }
/*
* Visible Breakpoints
*/
.visible-large {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 1280px) {
.visible-large {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-medium {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 1024px) and (max-width: 1279px) {
.visible-medium {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-medium-up {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 1024px) {
.visible-medium-up {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-medium-down {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (max-width: 1279px) {
.visible-medium-down {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-small {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 768px) and (max-width: 1023px) {
.visible-small {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-small-up {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (min-width: 768px) {
.visible-small-up {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-small-down {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (max-width: 1023px) {
.visible-small-down {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
.visible-mobile {
display: none !important;
visibility: hidden !important;
opacity: 0 !important; }
@media (max-width: 767px) {
.visible-mobile {
display: block !important;
visibility: visible !important;
opacity: 1 !important; } }
/*
* Display
*/
.display-block {
display: block; }
.display-inline-block {
display: inline-block; }
.display-table {
display: table; }
.display-table-cell {
display: table-cell;
vertical-align: middle; }
/*
* Position
*/
.position-top-left {
position: absolute !important;
top: 0;
left: 0; }
.position-top-left.gutter {
top: 1.5rem;
left: 1.5rem; }
.position-top-right {
position: absolute !important;
top: 0;
right: 0; }
.position-top-right.gutter {
top: 1.5rem;
right: 1.5rem; }
.position-bottom-left {
position: absolute !important;
bottom: 0;
left: 0; }
.position-bottom-left.gutter {
bottom: 1.5rem;
left: 1.5rem; }
.position-bottom-right {
position: absolute !important;
bottom: 0;
right: 0; }
.position-bottom-right.gutter {
bottom: 1.5rem;
right: 1.5rem; }
.position-left-center {
position: absolute !important;
top: 50%;
left: 0;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
.position-left-center.gutter {
left: 1.5rem; }
.position-right-center {
position: absolute !important;
top: 50%;
right: 0;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
.position-right-center.gutter {
right: 1.5rem; }
.position-center {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); }
/*
* Flex
*/
.flex {
display: flex;
align-items: center; }
.flex-left {
display: flex;
flex: 1; }
.flex-right {
display: flex;
flex: 0 0 auto; }
/*
* Float
*/
.right {
float: right !important; }
@media (min-width: 1280px) {
.clear-right-large {
float: none !important; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.clear-right-medium {
float: none !important; } }
@media (min-width: 768px) and (max-width: 1023px) {
.clear-right-small {
float: none !important; } }
@media (max-width: 767px) {
.clear-right-mobile {
float: none !important; } }
.left {
float: left !important; }
@media (min-width: 1280px) {
.clear-left-large {
float: none !important; } }
@media (min-width: 1024px) and (max-width: 1279px) {
.clear-left-medium {
float: none !important; } }
@media (min-width: 768px) and (max-width: 1023px) {
.clear-left-small {
float: none !important; } }
@media (max-width: 767px) {
.clear-left-mobile {
float: none !important; } }
/*
* Max Width
*/
.max-width-xlarge {
max-width: 1280px; }
.max-width-large {
max-width: 1024px; }
.max-width-medium {
max-width: 800px; }
.max-width-small {
max-width: 600px; }
.max-width-xsmall {
max-width: 450px; }
/*
* Margin
*/
.margin-xlarge {
margin: 10rem; }
.margin-large {
margin: 6.5rem; }
.margin-medium {
margin: 5rem; }
.margin-small {
margin: 3.5rem; }
.margin-xsmall {
margin: 2rem; }
.margin-top-xlarge {
margin-top: 10rem; }
.margin-top-large {
margin-top: 6.5rem; }
.margin-top-medium {
margin-top: 5rem; }
.margin-top-small {
margin-top: 3.5rem; }
.margin-top-xsmall {
margin-top: 2rem; }
.margin-bottom-xlarge {
margin-bottom: 10rem; }
.margin-bottom-large {
margin-bottom: 6.5rem; }
.margin-bottom-medium {
margin-bottom: 5rem; }
.margin-bottom-small {
margin-bottom: 3.5rem; }
.margin-bottom-xsmall {
margin-bottom: 2rem; }
.margin-left-xlarge {
margin-left: 10rem; }
.margin-left-large {
margin-left: 6.5rem; }
.margin-left-medium {
margin-left: 5rem; }
.margin-left-small {
margin-left: 3.5rem; }
.margin-left-xsmall {
margin-left: 2rem; }
.margin-right-xlarge {
margin-right: 10rem; }
.margin-right-large {
margin-right: 6.5rem; }
.margin-right-medium {
margin-right: 5rem; }
.margin-right-small {
margin-right: 3.5rem; }
.margin-right-xsmall {
margin-right: 2rem; }
/*
* Padding
*/
.padding-xlarge {
padding: 10rem; }
.padding-large {
padding: 6.5rem; }
.padding-medium {
padding: 5rem; }
.padding-small {
padding: 3.5rem; }
.padding-xsmall {
padding: 2rem; }
.padding-top-xlarge {
padding-top: 10rem; }
.padding-top-large {
padding-top: 6.5rem; }
.padding-top-medium {
padding-top: 5rem; }
.padding-top-small {
padding-top: 3.5rem; }
.padding-top-xsmall {
padding-top: 2rem; }
.padding-bottom-xlarge {
padding-bottom: 10rem; }
.padding-bottom-large {
padding-bottom: 6.5rem; }
.padding-bottom-medium {
padding-bottom: 5rem; }
.padding-bottom-small {
padding-bottom: 3.5rem; }
.padding-bottom-xsmall {
padding-bottom: 2rem; }
.padding-left-xlarge {
padding-left: 10rem; }
.padding-left-large {
padding-left: 6.5rem; }
.padding-left-medium {
padding-left: 5rem; }
.padding-left-small {
padding-left: 3.5rem; }
.padding-left-xsmall {
padding-left: 2rem; }
.padding-right-xlarge {
padding-right: 10rem; }
.padding-right-large {
padding-right: 6.5rem; }
.padding-right-medium {
padding-right: 5rem; }
.padding-right-small {
padding-right: 3.5rem; }
.padding-right-xsmall {
padding-right: 2rem; }
/*
* Font Family
*/
.sans-serif-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
.serif-font {
font-family: Georgia, "Times New Roman", Times, serif; }
.monospace-font {
font-family: Monaco, Menlo, Consolas, "Courier New", monospace; }
.thin-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
font-style: normal; }
.regular-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
font-style: normal; }
.medium-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500;
font-style: normal; }
.semibold-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
font-style: normal; }
.bold-font {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
font-style: normal; }
/*
* Font Size
*/
.font-size-xlarge {
font-size: 1.8rem; }
.font-size-large {
font-size: 1.6rem; }
.font-size-medium {
font-size: 1.4rem; }
.font-size-small {
font-size: 1.2rem; }
.font-size-xsmall {
font-size: 1rem; }
/*
* Text
*/
.text-left {
text-align: left; }
.text-right {
text-align: right; }
.text-justify {
text-align: justify; }
.text-center {
text-align: center; }
.truncate {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.text-hide {
font: "0/0 a";
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0; }
.uppercase {
text-transform: uppercase; }
.lowercase {
text-transform: lowercase; }
.capitalize {
text-transform: capitalize; }
/*
* Text Color
*/
.text-white {
color: #FFFFFF !important; }
.text-light-grey {
color: #CCCCCC !important; }
.text-grey {
color: #3A4150 !important; }
.text-dark-grey {
color: #2B303B !important; }
.text-black {
color: #000000 !important; }
.text-error {
color: #EF9A9A !important; }
.text-warning {
color: #FDD835 !important; }
.text-success {
color: #9CCC65 !important; }
.text-info {
color: #4FC3F7 !important; }
.text-primary {
color: #bf616a !important; }
.text-secondary {
color: #5D9CEC !important; }
.text-tertiary {
color: #a3be8c !important; }
.text-dark {
color: #2B303B !important; }
.text-light {
color: #ECEFF1 !important; }
/*
* Background
*/
.background-transparent {
background: transparent !important; }
.background-white {
background: #FFFFFF !important; }
.background-light-grey {
background: #CCCCCC !important; }
.background-grey {
background: #3A4150 !important; }
.background-dark-grey {
background: #2B303B !important; }
.background-black {
background: #000000 !important; }
.background-error {
background: #EF9A9A !important; }
.background-warning {
background: #FDD835 !important; }
.background-success {
background: #9CCC65 !important; }
.background-info {
background: #4FC3F7 !important; }
.background-primary {
background: #bf616a !important; }
.background-secondary {
background: #5D9CEC !important; }
.background-tertiary {
background: #a3be8c !important; }
.background-dark {
background: #2B303B !important; }
.background-light {
background: #ECEFF1 !important; }
/*
* Accessibility
*/
/*
* Screen Reader
*/
.screen-reader {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0; }
.screen-reader-focusable:active, .screen-reader-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto; } | 0.623835 | 0.060446 |
.slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
overflow: hidden;
display: block;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: flex;
align-items: center;
}
.slick-track:before, .slick-track:after {
content: "";
display: table;
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none;
}
[dir="rtl"] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}
/* ===================================================================
* # photoswipe
* PhotoSwipe main CSS by <NAME>
* photoswipe.com | MIT license
*
* ------------------------------------------------------------------- */
/*!
# photoswipe
PhotoSwipe main CSS by <NAME> | photoswipe.com | MIT license */
/*
Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
display: none;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
overflow: hidden;
-ms-touch-action: none;
touch-action: none;
z-index: 1500;
-webkit-text-size-adjust: 100%;
/* create separate layer, to avoid paint on window.onscroll in webkit/blink */
-webkit-backface-visibility: hidden;
outline: none;
}
.pswp * {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.pswp img {
max-width: none;
}
/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
/* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
opacity: 0.001;
will-change: opacity;
/* for open/close transition */
-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--open {
display: block;
}
.pswp--zoom-allowed .pswp__img {
/* autoprefixer: off */
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
/* autoprefixer: off */
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab;
}
.pswp--dragging .pswp__img {
/* autoprefixer: off */
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: grabbing;
}
/*
Background is added as a separate element.
As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000;
opacity: 0;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
will-change: opacity;
}
.pswp__scroll-wrap {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.pswp__container, .pswp__zoom-wrap {
-ms-touch-action: none;
touch-action: none;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
/* Prevent selection and tap highlights */
.pswp__container, .pswp__img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
.pswp__zoom-wrap {
position: absolute;
width: 100%;
-webkit-transform-origin: left top;
-ms-transform-origin: left top;
transform-origin: left top;
/* for open/close transition */
-webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp__bg {
will-change: opacity;
/* for open/close transition */
-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--animated-in .pswp__bg, .pswp--animated-in .pswp__zoom-wrap {
-webkit-transition: none;
transition: none;
}
.pswp__container, .pswp__zoom-wrap {
-webkit-backface-visibility: hidden;
}
.pswp__item {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
overflow: hidden;
}
.pswp__img {
position: absolute;
width: auto;
height: auto;
top: 0;
left: 0;
} | public/assets/css/css-landing/vendor.css | .slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
overflow: hidden;
display: block;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: flex;
align-items: center;
}
.slick-track:before, .slick-track:after {
content: "";
display: table;
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none;
}
[dir="rtl"] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}
/* ===================================================================
* # photoswipe
* PhotoSwipe main CSS by <NAME>
* photoswipe.com | MIT license
*
* ------------------------------------------------------------------- */
/*!
# photoswipe
PhotoSwipe main CSS by <NAME> | photoswipe.com | MIT license */
/*
Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
display: none;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
overflow: hidden;
-ms-touch-action: none;
touch-action: none;
z-index: 1500;
-webkit-text-size-adjust: 100%;
/* create separate layer, to avoid paint on window.onscroll in webkit/blink */
-webkit-backface-visibility: hidden;
outline: none;
}
.pswp * {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.pswp img {
max-width: none;
}
/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
/* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
opacity: 0.001;
will-change: opacity;
/* for open/close transition */
-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--open {
display: block;
}
.pswp--zoom-allowed .pswp__img {
/* autoprefixer: off */
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
/* autoprefixer: off */
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab;
}
.pswp--dragging .pswp__img {
/* autoprefixer: off */
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: grabbing;
}
/*
Background is added as a separate element.
As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000;
opacity: 0;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
will-change: opacity;
}
.pswp__scroll-wrap {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.pswp__container, .pswp__zoom-wrap {
-ms-touch-action: none;
touch-action: none;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
/* Prevent selection and tap highlights */
.pswp__container, .pswp__img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
.pswp__zoom-wrap {
position: absolute;
width: 100%;
-webkit-transform-origin: left top;
-ms-transform-origin: left top;
transform-origin: left top;
/* for open/close transition */
-webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp__bg {
will-change: opacity;
/* for open/close transition */
-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--animated-in .pswp__bg, .pswp--animated-in .pswp__zoom-wrap {
-webkit-transition: none;
transition: none;
}
.pswp__container, .pswp__zoom-wrap {
-webkit-backface-visibility: hidden;
}
.pswp__item {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
overflow: hidden;
}
.pswp__img {
position: absolute;
width: auto;
height: auto;
top: 0;
left: 0;
} | 0.427277 | 0.057546 |