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 |
|---|---|---|---|---|
.draw-outline {
display: inline-block;
padding: 16px 28px;
border: 2px black solid;
text-align: center;
text-decoration: none;
color: black;
position: relative;
transition: border-color 0.35s ease-in-out;
z-index: 1;
}
.draw-outline:before,
.draw-outline:after {
content: "";
position: absolute;
width: 0px;
height: 0px;
box-sizing: content-box;
z-index: -1;
transition: transform 0.25s ease-in-out;
padding-left: 2px;
}
.draw-outline:before {
top: -2px;
left: -2px;
border-top: 2px transparent solid;
border-right: 2px transparent solid;
}
.draw-outline:after {
bottom: -2px;
right: -2px;
border-bottom: 2px transparent solid;
border-left: 2px transparent solid;
}
.draw-outline:hover {
color: #37b2b2;
transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
border-color: black;
-webkit-animation: outline-reset 0.35s 1 forwards;
animation: outline-reset 0.35s 1 forwards;
}
.draw-outline:hover:before {
-webkit-animation: top-right-border 0.75s 1 0.35s forwards;
animation: top-right-border 0.75s 1 0.35s forwards;
}
.draw-outline:hover:after {
-webkit-animation: bottom-left-border 0.75s 1 1.1s forwards;
animation: bottom-left-border 0.75s 1 1.1s forwards;
}
.draw-outline--tandem:hover:after {
-webkit-animation: bottom-left-border 0.75s 1 0.35s forwards;
animation: bottom-left-border 0.75s 1 0.35s forwards;
}
.draw-outline:active:before,
.draw-outline:active:after {
transform: scale(1.05);
}
@-webkit-keyframes outline-reset {
0% {
border-color: black;
}
100% {
border-color: transparent;
}
}
@keyframes outline-reset {
0% {
border-color: black;
}
100% {
border-color: transparent;
}
}
@-webkit-keyframes top-right-border {
0% {
border-color: #37b2b2;
width: 0px;
height: 0;
}
50% {
width: 100%;
height: 0;
}
100% {
border-color: #37b2b2;
width: 100%;
height: 100%;
}
}
@keyframes top-right-border {
0% {
border-color: #37b2b2;
width: 0px;
height: 0;
}
50% {
width: 100%;
height: 0;
}
100% {
border-color: #37b2b2;
width: 100%;
height: 100%;
}
}
@-webkit-keyframes bottom-left-border {
0% {
border-color: #37b2b2;
width: 0px;
height: 0;
}
50% {
width: 100%;
height: 0;
}
100% {
border-color: #37b2b2;
width: 100%;
height: 100%;
}
}
@keyframes bottom-left-border {
0% {
border-color: #37b2b2;
width: 0px;
height: 0;
}
50% {
width: 100%;
height: 0;
}
100% {
border-color: #37b2b2;
width: 100%;
height: 100%;
}
} | public/css/animate-buttons.css | .draw-outline {
display: inline-block;
padding: 16px 28px;
border: 2px black solid;
text-align: center;
text-decoration: none;
color: black;
position: relative;
transition: border-color 0.35s ease-in-out;
z-index: 1;
}
.draw-outline:before,
.draw-outline:after {
content: "";
position: absolute;
width: 0px;
height: 0px;
box-sizing: content-box;
z-index: -1;
transition: transform 0.25s ease-in-out;
padding-left: 2px;
}
.draw-outline:before {
top: -2px;
left: -2px;
border-top: 2px transparent solid;
border-right: 2px transparent solid;
}
.draw-outline:after {
bottom: -2px;
right: -2px;
border-bottom: 2px transparent solid;
border-left: 2px transparent solid;
}
.draw-outline:hover {
color: #37b2b2;
transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
border-color: black;
-webkit-animation: outline-reset 0.35s 1 forwards;
animation: outline-reset 0.35s 1 forwards;
}
.draw-outline:hover:before {
-webkit-animation: top-right-border 0.75s 1 0.35s forwards;
animation: top-right-border 0.75s 1 0.35s forwards;
}
.draw-outline:hover:after {
-webkit-animation: bottom-left-border 0.75s 1 1.1s forwards;
animation: bottom-left-border 0.75s 1 1.1s forwards;
}
.draw-outline--tandem:hover:after {
-webkit-animation: bottom-left-border 0.75s 1 0.35s forwards;
animation: bottom-left-border 0.75s 1 0.35s forwards;
}
.draw-outline:active:before,
.draw-outline:active:after {
transform: scale(1.05);
}
@-webkit-keyframes outline-reset {
0% {
border-color: black;
}
100% {
border-color: transparent;
}
}
@keyframes outline-reset {
0% {
border-color: black;
}
100% {
border-color: transparent;
}
}
@-webkit-keyframes top-right-border {
0% {
border-color: #37b2b2;
width: 0px;
height: 0;
}
50% {
width: 100%;
height: 0;
}
100% {
border-color: #37b2b2;
width: 100%;
height: 100%;
}
}
@keyframes top-right-border {
0% {
border-color: #37b2b2;
width: 0px;
height: 0;
}
50% {
width: 100%;
height: 0;
}
100% {
border-color: #37b2b2;
width: 100%;
height: 100%;
}
}
@-webkit-keyframes bottom-left-border {
0% {
border-color: #37b2b2;
width: 0px;
height: 0;
}
50% {
width: 100%;
height: 0;
}
100% {
border-color: #37b2b2;
width: 100%;
height: 100%;
}
}
@keyframes bottom-left-border {
0% {
border-color: #37b2b2;
width: 0px;
height: 0;
}
50% {
width: 100%;
height: 0;
}
100% {
border-color: #37b2b2;
width: 100%;
height: 100%;
}
} | 0.511717 | 0.126273 |
.theme-dark {
--accent-color: #ffffff !important;
--background-1: #131313 !important;
--background-2: #101010 !important;
--border-color: #2c2c2c !important;
--background-mentioned: #ffffff07 !important;
--background-mentioned-hover: #ffffff10 !important;
--background-modifier-hover: #2a2a2a !important;
--background-modifier-active: #5d5d5d !important;
--text-normal: var(--accent-color) !important;
--text-muted: #909090 !important;
--text-link: var(--text-normal) !important;
--settings-icon-color: #bdbdbd !important;
--tab-selected: #3b3b3b !important;
--switch: #3c3c3c !important;
--button-background: #2b2b2b !important;
--button-background-hover: #3b3b3b !important;
--button-background-active: #545454 !important;
--button-accent-hover: var(--accent-color) !important;
--button-accent-active: var(--accent-color) !important;
--button-destructive: #fb7c7c !important;
--button-destructive-hover: #ff929b !important;
--button-destructive-active: #fa4a4a !important;
}
.theme-light {
--accent-color: #61717c !important;
--background-1: #ffffff !important;
--background-2: #f7f7f7 !important;
--border-color: transparent !important;
--background-mentioned: #61717c10 !important;
--background-mentioned-hover: #61717c15 !important;
--background-modifier-hover: transparent !important;
--background-modifier-active: #bebebe !important;
--text-normal: #29292a !important;
--text-muted: #909091 !important;
--text-link: #47494a !important;
--settings-icon-color: #676767 !important;
--tab-selected: #ffffff !important;
--switch: #cecece !important;
--button-background: #e8e8e8 !important;
--button-background-hover: #d8d8d8 !important;
--button-background-active: #b9b9ba !important;
--button-accent-hover: #61707c !important;
--button-accent-active: var(--text-link) !important;
--button-destructive: #fb7c7c !important;
--button-destructive-hover: #ff929b !important;
--button-destructive-active: #fa4a4a !important;
}
:root {
--background-primary: var(--background-1) !important;
--background-primary-alt: var(--background-1) !important;
--background-secondary: var(--background-1) !important;
--background-secondary-alt: var(--background-1) !important;
--background-tertiary: var(--background-2) !important;
--background-accent-gradient: var(--background-2) !important;
--background-floating: var(--background-1) !important;
--background-accent: var(--background-2) !important;
--background-modifier-selected: var(--accent-color) !important;
--text-positive: var(--text-normal) !important;
--interactive-selected: var(--background-primary) !important;
--background-modifier-accent: transparent !important;
--background-message-hover: transparent !important;
--interactive-normal: var(--text-normal) !important;
--interactive-muted: var(--button-background-active) !important;
--channels-default: var(--text-muted) !important;
--header-primary: var(--text-normal) !important;
--header-secondary: var(--text-muted) !important;
--control-brand-foreground: var(--accent-color) !important;
--info-warning-foreground: var(--accent-color) !important;
--activity-card-background: var(--background-1) !important;
--brand-experiment: var(--accent-color) !important;
--button-accent: var(--accent-color) !important;
--interactive-active: var(--text-normal) !important;
--interactive-hover: var(--interactive-normal) !important;
} | colors/kindadark.css | .theme-dark {
--accent-color: #ffffff !important;
--background-1: #131313 !important;
--background-2: #101010 !important;
--border-color: #2c2c2c !important;
--background-mentioned: #ffffff07 !important;
--background-mentioned-hover: #ffffff10 !important;
--background-modifier-hover: #2a2a2a !important;
--background-modifier-active: #5d5d5d !important;
--text-normal: var(--accent-color) !important;
--text-muted: #909090 !important;
--text-link: var(--text-normal) !important;
--settings-icon-color: #bdbdbd !important;
--tab-selected: #3b3b3b !important;
--switch: #3c3c3c !important;
--button-background: #2b2b2b !important;
--button-background-hover: #3b3b3b !important;
--button-background-active: #545454 !important;
--button-accent-hover: var(--accent-color) !important;
--button-accent-active: var(--accent-color) !important;
--button-destructive: #fb7c7c !important;
--button-destructive-hover: #ff929b !important;
--button-destructive-active: #fa4a4a !important;
}
.theme-light {
--accent-color: #61717c !important;
--background-1: #ffffff !important;
--background-2: #f7f7f7 !important;
--border-color: transparent !important;
--background-mentioned: #61717c10 !important;
--background-mentioned-hover: #61717c15 !important;
--background-modifier-hover: transparent !important;
--background-modifier-active: #bebebe !important;
--text-normal: #29292a !important;
--text-muted: #909091 !important;
--text-link: #47494a !important;
--settings-icon-color: #676767 !important;
--tab-selected: #ffffff !important;
--switch: #cecece !important;
--button-background: #e8e8e8 !important;
--button-background-hover: #d8d8d8 !important;
--button-background-active: #b9b9ba !important;
--button-accent-hover: #61707c !important;
--button-accent-active: var(--text-link) !important;
--button-destructive: #fb7c7c !important;
--button-destructive-hover: #ff929b !important;
--button-destructive-active: #fa4a4a !important;
}
:root {
--background-primary: var(--background-1) !important;
--background-primary-alt: var(--background-1) !important;
--background-secondary: var(--background-1) !important;
--background-secondary-alt: var(--background-1) !important;
--background-tertiary: var(--background-2) !important;
--background-accent-gradient: var(--background-2) !important;
--background-floating: var(--background-1) !important;
--background-accent: var(--background-2) !important;
--background-modifier-selected: var(--accent-color) !important;
--text-positive: var(--text-normal) !important;
--interactive-selected: var(--background-primary) !important;
--background-modifier-accent: transparent !important;
--background-message-hover: transparent !important;
--interactive-normal: var(--text-normal) !important;
--interactive-muted: var(--button-background-active) !important;
--channels-default: var(--text-muted) !important;
--header-primary: var(--text-normal) !important;
--header-secondary: var(--text-muted) !important;
--control-brand-foreground: var(--accent-color) !important;
--info-warning-foreground: var(--accent-color) !important;
--activity-card-background: var(--background-1) !important;
--brand-experiment: var(--accent-color) !important;
--button-accent: var(--accent-color) !important;
--interactive-active: var(--text-normal) !important;
--interactive-hover: var(--interactive-normal) !important;
} | 0.26322 | 0.054124 |
html,
body {
text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-o-text-size-adjust: 100%;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
margin: 0;
padding: 0;
}
body,
button,
input,
select,
textarea {
font-family: "Times New Roman", Verdana, Geneva, sans-serif, tahoma, Srial, helvetica, sans-serif;
}
body {
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: normal;
}
address,
cite,
dfn,
em,
var {
font-style: normal
}
ul,
ol,
li {
list-style: none
}
a {
text-decoration: none
}
legend {
color: #000
}
fieldset,
img {
border: 0;
vertical-align: top;
}
section,
article,
aside,
header,
footer,
nav,
dialog,
figure {
display: block;
}
figure {
margin: 0;
}
button,
input,
select,
textarea {
font-size: 100%
}
table {
border-collapse: collapse;
border-spacing: 0
}
html {
overflow-y: scroll;
overflow-x: hidden;
}
.clear {
display: block;
height: 0;
overflow: hidden;
clear: both
}
.clearfix:after {
content: '\20';
display: block;
height: 0;
clear: both
}
.clearfix {
*zoom: 1
}
a:link,
a:visited,
a:hover {
text-decoration: none
}
a {
blr: expression_r(this.onFocus=this.blur())
}
a {
outline: none;
}
.none {
display: none;
}
.block {
display: block;
}
.noBg {
background: none !important;
}
.noBd {
border: none !important;
}
.noPd {
padding: 0 !important;
}
.noMg {
margin: 0 !important;
}
.fl {
float: left;
display: inline
}
.fr {
float: right;
display: inline;
}
.absolute {
position: absolute
}
.relative {
position: relative
}
img {
border: 0px;
vertical-align: middle;
}
.blank {
height: 30px;
clear: both;
width: 100%;
overflow: hidden;
}
.center {
margin: 0 auto;
}
.middle {
text-align: center;
}
.boxIndex {
-moz-transition: all 0.2s linear 0s;
-webkit-transition: all 0.2s linear 0s;
transition: all 0.2s linear 0s;
transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
}
.boxIndex:hover {
-moz-transform: translate3d(0, -4px, 0);
-ms-transform: translate3d(0, -4px, 0);
-o-transform: translate3d(0, -4px, 0);
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
.wPub {
width: 1200px;
margin: 0 auto;
clear: both;
position: relative;
}
.w1000 {
width: 1000px;
margin: 0 auto;
clear: both;
position: relative;
}
.border50 {
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
}
/* css3.0 animate */
.ani,
.topArea ul li a,
.subMenu .subMenuTxt a,
.footTxt ul li a {
transition: all .3s linear 0s;
-webkit-transition: all .3s linear 0s;
-moz-transition: all .3s linear 0s;
-o-transition: all .3s linear 0s;
-ms-transition: all .3s linear 0s;
}
.anii {
transition: all 0.5s ease-in-out 0s;
-webkit-: all 0.5s ease-in-out 0s;
-moz-: all 0.5s ease-in-out 0s;
-o-: all 0.5s ease-in-out 0s;
-ms-: all 0.5s ease-in-out 0s;
}
.translateY {
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.translateX {
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.translateXY {
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
left: 50%;
top: 50%;
}
.iBlock {
display: inline-block;
vertical-align: middle;
}
.borderCircle {
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
}
/*top navlist*/
.fourIcon {
background: url(../image/fouricon.png) no-repeat;
}
.topIdex {
width: 1200px;
left: 50%;
margin-left: -600px;
z-index: 2016;
top: 33px;
}
.topIdex h2 {
width: 375px;
height: 40px;
background-position: -56px -3px;
}
.topIdex h2 a {
width: 100%;
height: 100%;
}
.topIdex .topNav a {
margin: 0 20px;
height: 35px;
display: inline-block;
font-size: 15px;
color: #fff;
line-height: 35px;
position: relative;
}
.topIdex .topNav a:after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background: #fff;
left: 50%;
margin-left: -50%;
bottom: -8px;
opacity: 0;
filter: alpha(opacity=0);
transition: all .3s linear 0s;
-webkit-transition: all .3s linear 0s;
-moz-transition: all .3s linear 0s;
-o-transition: all .3s linear 0s;
-ms-transition: all .3s linear 0s;
}
.topIdex .topNav a:hover:after,
.topIdex .topNav a.on:after {
bottom: -2px;
opacity: 1;
filter: alpha(opacity=100);
}
.menuBoxs {
height: 80px;
margin: -55px auto 0;
z-index: 2016;
}
.navlist {
width: 1200px;
height: 80px;
/* border-radius: 5px;-webkit-border-radius: 5px;-moz-border-radius: 5px; */
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
/* background: #6a9bd3; */
background-image: url(/image/nav.png);
background-repeat: repeat;
background-size: 100%;
/* box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.6);
-webkit-box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.6);
-moz-box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.6);
overflow: hidden;
transition: background 0.3s linear 0s;
-webkit-transition: background 0.3s linear 0s;
-moz-transition: background 0.3s linear 0s; */
}
.navlist.navBg {
background: #5f504e;
box-shadow: none;
z-index: 10;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.navlist .subNav {
width: 120px;
height: 100%;
text-align: center;
position: relative;
float: left;
position: relative;
}
.navlist .subNav:after {
content: '';
position: absolute;
width: 50%;
height: 2px;
bottom: -5px;
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
left: 50%;
background: #fff;
transition: all .3s linear 0s;
-webkit-transition: all .3s linear 0s;
-moz-transition: all .3s linear 0s;
-o-transition: all .3s linear 0s;
-ms-transition: all .3s linear 0s;
}
.navlist .subNav.on:after {
bottom: 0;
}
.navlist .subNav a {
width: 100%;
height: 100%;
color: #fff;
font-size: 14px;
}
.navlist .subNav em {
position: absolute;
left: 50%
}
.navlist .subNav span {
width: 100%;
position: absolute;
top: 50px;
left: 0;
}
.navlist.navBg .subNav01 em {
background-position: -8px -91px;
}
.navlist.navBg .subNav02 em {
background-position: -59px -89px;
}
.navlist.navBg .subNav03 em {
background-position: -94px -94px;
}
.navlist.navBg .subNav04 em {
background-position: -141px -92px;
}
.navlist.navBg .subNav05 em {
background-position: -182px -89px;
}
.navlist.navBg .subNav06 em {
background-position: -221px -93px;
}
.navlist.navBg .subNav07 em {
background-position: -262px -90px;
}
.navlist.navBg .subNav08 em {
background-position: -296px -94px;
}
.navlist.navBg .subNav09 em {
background-position: -337px -92px;
}
.navlist.navBg .subNav10 em {
background-position: -373px -92px;
}
.navlist.navBg .subNav a {
color: #050505;
}
.navlist.navBg .subNav.on a {
color: 050505;
}
.navlist .subNav01 em,
.navlist .subNav01.on em {
width: 38px;
height: 18px;
background-position: -8px -58px;
margin-top: 21px;
}
.navlist .subNav02 em,
.navlist .subNav02.on em {
width: 25px;
height: 28px;
background-position: -58px -53px;
margin-top: 15px;
}
.navlist .subNav03 em,
.navlist .subNav03.on em {
width: 30px;
height: 22px;
background-position: -97px -58px;
margin-top: 21px;
}
.navlist .subNav04 em,
.navlist .subNav04.on em {
width: 24px;
height: 23px;
background-position: -142px -59px;
margin-top: 20px;
}
.navlist .subNav05 em,
.navlist .subNav05.on em {
width: 22px;
height: 28px;
background-position: -183px -55px;
margin-top: 15px;
}
.navlist .subNav06 em,
.navlist .subNav06.on em {
width: 28px;
height: 24px;
background-position: -221px -58px;
margin-top: 20px;
}
.navlist .subNav07 em,
.navlist .subNav07.on em {
width: 27px;
height: 28px;
background-position: -262px -55px;
margin-top: 16px;
}
.navlist .subNav08 em,
.navlist .subNav08.on em {
width: 32px;
height: 18px;
background-position: -296px -60px;
margin-top: 22px;
}
.navlist .subNav09 em,
.navlist .subNav09.on em {
width: 26px;
height: 25px;
background-position: -337px -56px;
margin-top: 18px;
}
.navlist .subNav010 em,
.navlist .subNav010.on em {
width: 24px;
height: 24px;
background-position: -373px -55px;
margin-top: 18px;
}
.navbox {
width: 100%;
height: 420px;
bottom: 80px;
left: 0;
border-top-left-radius: 5px;
-webkit-border-top-left-radius: 5px;
-moz-border-top-left-radius: 5px;
border-top-right-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-top-right-radius: 5px;
background: #5f504e;
box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.4);
-webkit-box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.4);
-moz-box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.4);
}
.subMenu {
padding: 30px 42px 0;
}
.subMenuTxts {
width: 558px;
}
.subMenuTxts .menuLogo {
font-size: 26px;
color: #fff;
line-height: 1;
margin-bottom: 30px;
}
.subMenuTxts .menuLogo em {
margin-top: 5px;
margin-left: 11px;
}
.subMenuTxts .menuLogo1 em {
width: 80px;
height: 21px;
background-position: -905px -9px;
}
.subMenuTxts .menuLogo2 em {
width: 104px;
height: 21px;
background-position: -892px -37px;
}
.subMenuTxts .menuLogo3 em {
width: 109px;
height: 21px;
background-position: -887px -65px;
}
.subMenuTxts .menuLogo4 em {
width: 107px;
height: 21px;
background-position: -888px -93px;
}
.subMenuTxts .menuLogo5 em {
width: 152px;
height: 20px;
background-position: -842px -124px;
}
.subMenuTxts .menuLogo6 em {
width: 95px;
height: 20px;
background-position: -900px -152px;
}
.subMenuTxts .menuLogo7 em {
width: 109px;
height: 21px;
background-position: -885px -181px;
}
.subMenuTxts .menuLogo8 em {
width: 96px;
height: 21px;
background-position: -898px -211px;
}
.subMenuTxt {
width: 100%;
}
.subMenuTxt ul {
width: 560px;
height: 260px;
column-count: 2;
text-align: left;
float: left;
}
.subMenuTxt ul li {
width: 150px;
height: 35px;
}
.subMenuTxt ul li a {
font-size: 15px;
color: #fff;
position: relative;
line-height: 20px;
margin: 12px 0;
}
.subMenuTxt ul li a i.hot {
width: 25px;
height: 12px;
background-position: -466px -18px;
position: absolute;
top: -3px;
right: -31px;
}
.subMenuTxt ul li a i.new {
width: 25px;
height: 12px;
background-position: -466px -1px;
position: absolute;
top: -3px;
right: -31px;
}
.subMenuPics {
width: 520px;
}
.subMenuPics a {
margin-bottom: 12px;
}
.bannerBz {
width: 100%;
height: 534px;
}
/*pub foot*/
.qualityBoxs {
width: 100%;
min-width: 1200px;
height: 500px;
background: url(../image/footer.jpg) no-repeat center center;
background-size:100% 100%;
-moz-background-size:100% 100%;
}
.qualContent {
width: 100%;
height: 273px;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
box-shadow: 0px 10px 50px 0px rgba(168, 168, 170, 0.5);
-webkit-box-shadow: 0px 10px 50px 0px rgba(168, 168, 170, 0.5);
-moz-box-shadow: 0px 10px 50px 0px rgba(168, 168, 170, 0.5);
top: 330px;
left: 0;
background: #fff;
padding-top: 55px;
padding-left: 50px;
color: #999;
line-height: 30px;
}
.qualContent h3 {
width: 375px;
height: 40px;
background-position: -12px -148px;
margin-bottom: 10px;
}
.qualityTxt1 {
font-size: 18px;
margin-top: 15px;
}
.qualityTxt1 em {
width: 17px;
height: 17px;
background-position: -712px -114px;
margin-right: 6px;
margin-top: -5px;
}
.qualityTxt2 {
font-size: 18px;
}
.qualityTxt2 em {
width: 16px;
height: 16px;
background-position: -712px -146px;
margin-right: 6px;
margin-top: -4px;
}
.qualContent p {
font-size: 16px;
margin-top: 15px;
}
.qualfl {
width: 378px;
}
.qualCen {
width: 162px;
height: 162px;
box-shadow: 0px 10px 27px 0px rgba(168, 168, 170, 0.5);
-webkit-box-shadow: 0px 10px 27px 0px rgba(168, 168, 170, 0.5);
-moz-box-shadow: 0px 10px 27px 0px rgba(168, 168, 170, 0.5);
margin-left: 90px;
margin-right: 110px;
}
.qualLinks {
width: 280px;
margin-left: 74px;
}
.qualLinks a {
width: 122px;
height: 40px;
line-height: 40px;
background-color: rgb(255, 255, 255);
box-shadow: 0px 5px 20px 0px rgba(168, 168, 170, 0.3);
-webkit-box-shadow: 0px 5px 20px 0px rgba(168, 168, 170, 0.3);
-moz-box-shadow: 0px 5px 20px 0px rgba(168, 168, 170, 0.3);
text-align: center;
border-radius: 30px;
color: #6a9bd3;
margin-bottom: 15px;
}
.qualLinks a:hover {
background: #6a9bd3;
color: #fff;
}
.footerIndex {
width: 100%;
height: 390px;
padding-top: 160px;
background: #fff;
text-align: center;
font-size: 14px;
color: #999;
}
.footerIndex p {
margin-top: 40px;
line-height: 30px;
}
.footerIndex p img {
margin-right: 3px;
}
.frlink {
width: 1200px;
margin: 0 auto;
padding-bottom: 50px;
}
.frlink a {
font-size: 13px;
margin-left: 10px
}
.bannerPic img {
width: 100%;
height: 534px;
position: absolute;
left: 0;
top: 0;
} | public/css/common.css | html,
body {
text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-o-text-size-adjust: 100%;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
margin: 0;
padding: 0;
}
body,
button,
input,
select,
textarea {
font-family: "Times New Roman", Verdana, Geneva, sans-serif, tahoma, Srial, helvetica, sans-serif;
}
body {
background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: normal;
}
address,
cite,
dfn,
em,
var {
font-style: normal
}
ul,
ol,
li {
list-style: none
}
a {
text-decoration: none
}
legend {
color: #000
}
fieldset,
img {
border: 0;
vertical-align: top;
}
section,
article,
aside,
header,
footer,
nav,
dialog,
figure {
display: block;
}
figure {
margin: 0;
}
button,
input,
select,
textarea {
font-size: 100%
}
table {
border-collapse: collapse;
border-spacing: 0
}
html {
overflow-y: scroll;
overflow-x: hidden;
}
.clear {
display: block;
height: 0;
overflow: hidden;
clear: both
}
.clearfix:after {
content: '\20';
display: block;
height: 0;
clear: both
}
.clearfix {
*zoom: 1
}
a:link,
a:visited,
a:hover {
text-decoration: none
}
a {
blr: expression_r(this.onFocus=this.blur())
}
a {
outline: none;
}
.none {
display: none;
}
.block {
display: block;
}
.noBg {
background: none !important;
}
.noBd {
border: none !important;
}
.noPd {
padding: 0 !important;
}
.noMg {
margin: 0 !important;
}
.fl {
float: left;
display: inline
}
.fr {
float: right;
display: inline;
}
.absolute {
position: absolute
}
.relative {
position: relative
}
img {
border: 0px;
vertical-align: middle;
}
.blank {
height: 30px;
clear: both;
width: 100%;
overflow: hidden;
}
.center {
margin: 0 auto;
}
.middle {
text-align: center;
}
.boxIndex {
-moz-transition: all 0.2s linear 0s;
-webkit-transition: all 0.2s linear 0s;
transition: all 0.2s linear 0s;
transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
}
.boxIndex:hover {
-moz-transform: translate3d(0, -4px, 0);
-ms-transform: translate3d(0, -4px, 0);
-o-transform: translate3d(0, -4px, 0);
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
.wPub {
width: 1200px;
margin: 0 auto;
clear: both;
position: relative;
}
.w1000 {
width: 1000px;
margin: 0 auto;
clear: both;
position: relative;
}
.border50 {
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
}
/* css3.0 animate */
.ani,
.topArea ul li a,
.subMenu .subMenuTxt a,
.footTxt ul li a {
transition: all .3s linear 0s;
-webkit-transition: all .3s linear 0s;
-moz-transition: all .3s linear 0s;
-o-transition: all .3s linear 0s;
-ms-transition: all .3s linear 0s;
}
.anii {
transition: all 0.5s ease-in-out 0s;
-webkit-: all 0.5s ease-in-out 0s;
-moz-: all 0.5s ease-in-out 0s;
-o-: all 0.5s ease-in-out 0s;
-ms-: all 0.5s ease-in-out 0s;
}
.translateY {
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.translateX {
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.translateXY {
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
left: 50%;
top: 50%;
}
.iBlock {
display: inline-block;
vertical-align: middle;
}
.borderCircle {
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
}
/*top navlist*/
.fourIcon {
background: url(../image/fouricon.png) no-repeat;
}
.topIdex {
width: 1200px;
left: 50%;
margin-left: -600px;
z-index: 2016;
top: 33px;
}
.topIdex h2 {
width: 375px;
height: 40px;
background-position: -56px -3px;
}
.topIdex h2 a {
width: 100%;
height: 100%;
}
.topIdex .topNav a {
margin: 0 20px;
height: 35px;
display: inline-block;
font-size: 15px;
color: #fff;
line-height: 35px;
position: relative;
}
.topIdex .topNav a:after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background: #fff;
left: 50%;
margin-left: -50%;
bottom: -8px;
opacity: 0;
filter: alpha(opacity=0);
transition: all .3s linear 0s;
-webkit-transition: all .3s linear 0s;
-moz-transition: all .3s linear 0s;
-o-transition: all .3s linear 0s;
-ms-transition: all .3s linear 0s;
}
.topIdex .topNav a:hover:after,
.topIdex .topNav a.on:after {
bottom: -2px;
opacity: 1;
filter: alpha(opacity=100);
}
.menuBoxs {
height: 80px;
margin: -55px auto 0;
z-index: 2016;
}
.navlist {
width: 1200px;
height: 80px;
/* border-radius: 5px;-webkit-border-radius: 5px;-moz-border-radius: 5px; */
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
/* background: #6a9bd3; */
background-image: url(/image/nav.png);
background-repeat: repeat;
background-size: 100%;
/* box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.6);
-webkit-box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.6);
-moz-box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.6);
overflow: hidden;
transition: background 0.3s linear 0s;
-webkit-transition: background 0.3s linear 0s;
-moz-transition: background 0.3s linear 0s; */
}
.navlist.navBg {
background: #5f504e;
box-shadow: none;
z-index: 10;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.navlist .subNav {
width: 120px;
height: 100%;
text-align: center;
position: relative;
float: left;
position: relative;
}
.navlist .subNav:after {
content: '';
position: absolute;
width: 50%;
height: 2px;
bottom: -5px;
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
left: 50%;
background: #fff;
transition: all .3s linear 0s;
-webkit-transition: all .3s linear 0s;
-moz-transition: all .3s linear 0s;
-o-transition: all .3s linear 0s;
-ms-transition: all .3s linear 0s;
}
.navlist .subNav.on:after {
bottom: 0;
}
.navlist .subNav a {
width: 100%;
height: 100%;
color: #fff;
font-size: 14px;
}
.navlist .subNav em {
position: absolute;
left: 50%
}
.navlist .subNav span {
width: 100%;
position: absolute;
top: 50px;
left: 0;
}
.navlist.navBg .subNav01 em {
background-position: -8px -91px;
}
.navlist.navBg .subNav02 em {
background-position: -59px -89px;
}
.navlist.navBg .subNav03 em {
background-position: -94px -94px;
}
.navlist.navBg .subNav04 em {
background-position: -141px -92px;
}
.navlist.navBg .subNav05 em {
background-position: -182px -89px;
}
.navlist.navBg .subNav06 em {
background-position: -221px -93px;
}
.navlist.navBg .subNav07 em {
background-position: -262px -90px;
}
.navlist.navBg .subNav08 em {
background-position: -296px -94px;
}
.navlist.navBg .subNav09 em {
background-position: -337px -92px;
}
.navlist.navBg .subNav10 em {
background-position: -373px -92px;
}
.navlist.navBg .subNav a {
color: #050505;
}
.navlist.navBg .subNav.on a {
color: 050505;
}
.navlist .subNav01 em,
.navlist .subNav01.on em {
width: 38px;
height: 18px;
background-position: -8px -58px;
margin-top: 21px;
}
.navlist .subNav02 em,
.navlist .subNav02.on em {
width: 25px;
height: 28px;
background-position: -58px -53px;
margin-top: 15px;
}
.navlist .subNav03 em,
.navlist .subNav03.on em {
width: 30px;
height: 22px;
background-position: -97px -58px;
margin-top: 21px;
}
.navlist .subNav04 em,
.navlist .subNav04.on em {
width: 24px;
height: 23px;
background-position: -142px -59px;
margin-top: 20px;
}
.navlist .subNav05 em,
.navlist .subNav05.on em {
width: 22px;
height: 28px;
background-position: -183px -55px;
margin-top: 15px;
}
.navlist .subNav06 em,
.navlist .subNav06.on em {
width: 28px;
height: 24px;
background-position: -221px -58px;
margin-top: 20px;
}
.navlist .subNav07 em,
.navlist .subNav07.on em {
width: 27px;
height: 28px;
background-position: -262px -55px;
margin-top: 16px;
}
.navlist .subNav08 em,
.navlist .subNav08.on em {
width: 32px;
height: 18px;
background-position: -296px -60px;
margin-top: 22px;
}
.navlist .subNav09 em,
.navlist .subNav09.on em {
width: 26px;
height: 25px;
background-position: -337px -56px;
margin-top: 18px;
}
.navlist .subNav010 em,
.navlist .subNav010.on em {
width: 24px;
height: 24px;
background-position: -373px -55px;
margin-top: 18px;
}
.navbox {
width: 100%;
height: 420px;
bottom: 80px;
left: 0;
border-top-left-radius: 5px;
-webkit-border-top-left-radius: 5px;
-moz-border-top-left-radius: 5px;
border-top-right-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-top-right-radius: 5px;
background: #5f504e;
box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.4);
-webkit-box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.4);
-moz-box-shadow: 0px 5px 30px 0px rgba(129, 5, 7, 0.4);
}
.subMenu {
padding: 30px 42px 0;
}
.subMenuTxts {
width: 558px;
}
.subMenuTxts .menuLogo {
font-size: 26px;
color: #fff;
line-height: 1;
margin-bottom: 30px;
}
.subMenuTxts .menuLogo em {
margin-top: 5px;
margin-left: 11px;
}
.subMenuTxts .menuLogo1 em {
width: 80px;
height: 21px;
background-position: -905px -9px;
}
.subMenuTxts .menuLogo2 em {
width: 104px;
height: 21px;
background-position: -892px -37px;
}
.subMenuTxts .menuLogo3 em {
width: 109px;
height: 21px;
background-position: -887px -65px;
}
.subMenuTxts .menuLogo4 em {
width: 107px;
height: 21px;
background-position: -888px -93px;
}
.subMenuTxts .menuLogo5 em {
width: 152px;
height: 20px;
background-position: -842px -124px;
}
.subMenuTxts .menuLogo6 em {
width: 95px;
height: 20px;
background-position: -900px -152px;
}
.subMenuTxts .menuLogo7 em {
width: 109px;
height: 21px;
background-position: -885px -181px;
}
.subMenuTxts .menuLogo8 em {
width: 96px;
height: 21px;
background-position: -898px -211px;
}
.subMenuTxt {
width: 100%;
}
.subMenuTxt ul {
width: 560px;
height: 260px;
column-count: 2;
text-align: left;
float: left;
}
.subMenuTxt ul li {
width: 150px;
height: 35px;
}
.subMenuTxt ul li a {
font-size: 15px;
color: #fff;
position: relative;
line-height: 20px;
margin: 12px 0;
}
.subMenuTxt ul li a i.hot {
width: 25px;
height: 12px;
background-position: -466px -18px;
position: absolute;
top: -3px;
right: -31px;
}
.subMenuTxt ul li a i.new {
width: 25px;
height: 12px;
background-position: -466px -1px;
position: absolute;
top: -3px;
right: -31px;
}
.subMenuPics {
width: 520px;
}
.subMenuPics a {
margin-bottom: 12px;
}
.bannerBz {
width: 100%;
height: 534px;
}
/*pub foot*/
.qualityBoxs {
width: 100%;
min-width: 1200px;
height: 500px;
background: url(../image/footer.jpg) no-repeat center center;
background-size:100% 100%;
-moz-background-size:100% 100%;
}
.qualContent {
width: 100%;
height: 273px;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
box-shadow: 0px 10px 50px 0px rgba(168, 168, 170, 0.5);
-webkit-box-shadow: 0px 10px 50px 0px rgba(168, 168, 170, 0.5);
-moz-box-shadow: 0px 10px 50px 0px rgba(168, 168, 170, 0.5);
top: 330px;
left: 0;
background: #fff;
padding-top: 55px;
padding-left: 50px;
color: #999;
line-height: 30px;
}
.qualContent h3 {
width: 375px;
height: 40px;
background-position: -12px -148px;
margin-bottom: 10px;
}
.qualityTxt1 {
font-size: 18px;
margin-top: 15px;
}
.qualityTxt1 em {
width: 17px;
height: 17px;
background-position: -712px -114px;
margin-right: 6px;
margin-top: -5px;
}
.qualityTxt2 {
font-size: 18px;
}
.qualityTxt2 em {
width: 16px;
height: 16px;
background-position: -712px -146px;
margin-right: 6px;
margin-top: -4px;
}
.qualContent p {
font-size: 16px;
margin-top: 15px;
}
.qualfl {
width: 378px;
}
.qualCen {
width: 162px;
height: 162px;
box-shadow: 0px 10px 27px 0px rgba(168, 168, 170, 0.5);
-webkit-box-shadow: 0px 10px 27px 0px rgba(168, 168, 170, 0.5);
-moz-box-shadow: 0px 10px 27px 0px rgba(168, 168, 170, 0.5);
margin-left: 90px;
margin-right: 110px;
}
.qualLinks {
width: 280px;
margin-left: 74px;
}
.qualLinks a {
width: 122px;
height: 40px;
line-height: 40px;
background-color: rgb(255, 255, 255);
box-shadow: 0px 5px 20px 0px rgba(168, 168, 170, 0.3);
-webkit-box-shadow: 0px 5px 20px 0px rgba(168, 168, 170, 0.3);
-moz-box-shadow: 0px 5px 20px 0px rgba(168, 168, 170, 0.3);
text-align: center;
border-radius: 30px;
color: #6a9bd3;
margin-bottom: 15px;
}
.qualLinks a:hover {
background: #6a9bd3;
color: #fff;
}
.footerIndex {
width: 100%;
height: 390px;
padding-top: 160px;
background: #fff;
text-align: center;
font-size: 14px;
color: #999;
}
.footerIndex p {
margin-top: 40px;
line-height: 30px;
}
.footerIndex p img {
margin-right: 3px;
}
.frlink {
width: 1200px;
margin: 0 auto;
padding-bottom: 50px;
}
.frlink a {
font-size: 13px;
margin-left: 10px
}
.bannerPic img {
width: 100%;
height: 534px;
position: absolute;
left: 0;
top: 0;
} | 0.505127 | 0.081886 |
.wp_top_index{height:45px; background:#ff6600; overflow:hidden}
.wp_logo{ width:40%; height:45px; float:left; font-size:16px;background:url(../images/logo.png) no-repeat 10px center;background-size:35px; }
.wp_logo p{ line-height:45px; color:#fff; margin-left:52px}
.wp_login{ overflow:hidden; width:60%; height:45px; line-height:45px; float:right;}
.wp_fl{ float:left!important}
.wp_login .w_in1{ width:60px; margin:10px 10px 0}
.wp_l_user{ float:left; width:58%; text-align:right; font-size:13px; color:#fff; background:url(../images/r_01.png) no-repeat right 23px;background-size:8px;}
.wp_l_user a{ margin:10px 10px 0!important; color:#fff; width:100%!important; text-align:right!important; border:0 none!important}
.wp_top_index a{ display:inline-block; width:18%; height:25px; line-height:27px; border:1px solid #fff; text-align:center; font-size:13px; color:#fff; border-radius:3px; float:right; margin:10px 1.5% 0}
.w_in_nav{ overflow:hidden;background:#fff; width:93%; margin:0 auto; padding-bottom:10px;}
.w_in_nav li{ width:20%; height:55px; float:left; padding:10px 0; font-size:14px; }
.w_in_nav li a{color:#666;}
.w_in_nav li img{ width:40px; margin:0 auto; display:block; margin-bottom:3px;}
.w_in_nav li span{ display:block; text-align:center}
.w_in_nav li:hover{ background:#f0f0f0}
.wp_s_bg{ overflow:hidden; background:#f4f4f4; height:45px;padding:10px 20px;}
.wp_t_s_con{ height:25px; line-height:29px; width:90%; margin:9px auto 0 auto; background:#fff; border-radius:4px; overflow:hidden; position:relative; }
.wp_m_title{ height:40px; border-bottom:1px solid #e7e7e7; font-size:14px; line-height:40px; color:#000; overflow:hidden; background:#fff}
.wp_m_title span{ float:left; border-left:3px solid #fe6700;padding-left:5px; margin-left:6%; color:#666; height:20px; line-height:20px; margin-top:10px;}
.wp_m_title a{ float:right; font-size:14px; padding:0 12px; height:18px;line-height:18px; margin-top:11px; color:#666}
.wp_m_title a:hover{ color:#333;}
.wp_m_title a:last-child{ border-right:1px solid #d8d8d8}
.wp_top_index .s1{color: #fff;display: inline-block;font-size: 14px;height: 45px;line-height: 47px;text-align: center;width: 56%;}
.w_in1{ display:inline-block;float:right; background:#0FC; width: 19%; height:25px; background:#ff6600; border:1px solid #fff; border-radius:5px; color:#fff; font-size:13px; margin:10px 1.5% 0;}
.w_in1 a {color:#fff;}
.w_in1 a:hover{ color:#fff;}
.w_in2{ border:0 none; display:block; float:left; height:24px;line-height:24px; font-size:14px; color:#888; padding:0 3%; width:77.6%;border-radius:5px;}
.w_in3{ text-indent:-200em; width:40px; border:0 none; height:20px; margin-top:2px;display:block; float:right; background: url(../images/search.png) no-repeat center #fff; background-size:20px; cursor:pointer}
.w_in4{ background:#0FC; width: 150px; height:40px; background:#ff6600; border:1px solid #fff; border-radius:5px; color:#fff; font-size:16px; margin: auto;text-align:center}
.wp_b_con_head{ height:60px;width:90%;position:absolute; z-index:999; top:0; padding:5px 5% 0; overflow:hidden}
.wp_b_con_head h1{ font-size:23px; color:#666; margin-bottom:2px;}
.wp_b_con_head .s1{ font-size:12px; float:left}
.wp_b_con_head .s2{ float:right}
.wp_b_con_head .s2 a{ width:25px; height:19px; display:inline-block; margin-left:3px;}
.wp_b_con_head .a1{ background:url(../images/mode1.png) no-repeat; background-size:25px 19px;}
.wp_b_con_head .a2{background:url(../images/mode2.png) no-repeat; background-size:25px 19px;}
.wp_b_con_head .a3{background:url(../images/mode3.png) no-repeat; background-size:25px 19px;}
.wp_b_con{ font-size:17px;padding:0 5% 0 5%; color:#666;}
.wp_b_con p{ text-indent:26px;}
.wp_book_p{ position:relative; padding-top:60px; margin-bottom:10px;}
.wp_b_con_foot{height:40px; width:95%; background:#fff; z-index:999; bottom:0; padding:5%;}
.wp_b_con_foot a{ height:35px; background:#ff6600; color:#fff; font-size:14px; font-weight:bold; border-radius:5px; display:inline-block; line-height:35px; width:45%; margin-right:5%; text-align:center}
.wp_b_con_foot a.wp_cur{ background:#dfdfdf;}
.wp_hotitle{ height:38px; line-height:38px; color:#ff6600; font-size:16px; padding-left:5%; border-bottom:1px solid #e7e7e7}
.wp_in_list ul li{ height:30px; line-height:30px;border-bottom:1px solid #e7e7e7; width:90%; margin:0 auto}
.wp_in_list ul li:hover{ background:#f1f1f1}
.wp_in_list li a span{ margin-right:10px;}
.wp_in_list li a .s1{ color:#ff6600}
.wp_in_list li a .s2{ color:#24b75c}
.wp_in_list li a .s3{ color:#5097ff}
.wp_in_list li a{ color:#666; font-size:14px;}
.wp_in_list li i{ display:inline-table; width:25px; height:9px; background:url(../images/hot.png) no-repeat; background-size:25px 9px; margin-left:10px;}
.wp_in_list p{ height:40px; line-height:40px; text-align:center; font-size:14px; color:#999}
.wp_in_list p a{ color:#999}
.wp_tag{ background:#f3f3f3}
.wp_tag p span{ padding-left:5px;border-left:3px solid #ff6600;}
.wp_tag p{ width:86%; margin:0 auto; font-size:14px; color:#666; height:20px; padding-top:10px;overflow:hidden}
.wp_tag p a{ margin-right:10px; color:#5097ff}
.wp_foot{ height:40px; background:#1b212d; padding:15px 20px; position:relative}
.wp_foot p a{ color:#fff}
.wp_foot p span{ font-size:12px; color:#888}
.wp_foot i{ width:40px; height:40px; background:url(../images/b_top.png); background-size:40px; display:block; position:absolute; right:20px; top:15px;}
.wp_foot i a{ display:block; width:40px; height:40px;}
.reads
{
font-size:25px;padding:0 5% 0 5%; color:#666;
} | public/app/css/wap_books.css | .wp_top_index{height:45px; background:#ff6600; overflow:hidden}
.wp_logo{ width:40%; height:45px; float:left; font-size:16px;background:url(../images/logo.png) no-repeat 10px center;background-size:35px; }
.wp_logo p{ line-height:45px; color:#fff; margin-left:52px}
.wp_login{ overflow:hidden; width:60%; height:45px; line-height:45px; float:right;}
.wp_fl{ float:left!important}
.wp_login .w_in1{ width:60px; margin:10px 10px 0}
.wp_l_user{ float:left; width:58%; text-align:right; font-size:13px; color:#fff; background:url(../images/r_01.png) no-repeat right 23px;background-size:8px;}
.wp_l_user a{ margin:10px 10px 0!important; color:#fff; width:100%!important; text-align:right!important; border:0 none!important}
.wp_top_index a{ display:inline-block; width:18%; height:25px; line-height:27px; border:1px solid #fff; text-align:center; font-size:13px; color:#fff; border-radius:3px; float:right; margin:10px 1.5% 0}
.w_in_nav{ overflow:hidden;background:#fff; width:93%; margin:0 auto; padding-bottom:10px;}
.w_in_nav li{ width:20%; height:55px; float:left; padding:10px 0; font-size:14px; }
.w_in_nav li a{color:#666;}
.w_in_nav li img{ width:40px; margin:0 auto; display:block; margin-bottom:3px;}
.w_in_nav li span{ display:block; text-align:center}
.w_in_nav li:hover{ background:#f0f0f0}
.wp_s_bg{ overflow:hidden; background:#f4f4f4; height:45px;padding:10px 20px;}
.wp_t_s_con{ height:25px; line-height:29px; width:90%; margin:9px auto 0 auto; background:#fff; border-radius:4px; overflow:hidden; position:relative; }
.wp_m_title{ height:40px; border-bottom:1px solid #e7e7e7; font-size:14px; line-height:40px; color:#000; overflow:hidden; background:#fff}
.wp_m_title span{ float:left; border-left:3px solid #fe6700;padding-left:5px; margin-left:6%; color:#666; height:20px; line-height:20px; margin-top:10px;}
.wp_m_title a{ float:right; font-size:14px; padding:0 12px; height:18px;line-height:18px; margin-top:11px; color:#666}
.wp_m_title a:hover{ color:#333;}
.wp_m_title a:last-child{ border-right:1px solid #d8d8d8}
.wp_top_index .s1{color: #fff;display: inline-block;font-size: 14px;height: 45px;line-height: 47px;text-align: center;width: 56%;}
.w_in1{ display:inline-block;float:right; background:#0FC; width: 19%; height:25px; background:#ff6600; border:1px solid #fff; border-radius:5px; color:#fff; font-size:13px; margin:10px 1.5% 0;}
.w_in1 a {color:#fff;}
.w_in1 a:hover{ color:#fff;}
.w_in2{ border:0 none; display:block; float:left; height:24px;line-height:24px; font-size:14px; color:#888; padding:0 3%; width:77.6%;border-radius:5px;}
.w_in3{ text-indent:-200em; width:40px; border:0 none; height:20px; margin-top:2px;display:block; float:right; background: url(../images/search.png) no-repeat center #fff; background-size:20px; cursor:pointer}
.w_in4{ background:#0FC; width: 150px; height:40px; background:#ff6600; border:1px solid #fff; border-radius:5px; color:#fff; font-size:16px; margin: auto;text-align:center}
.wp_b_con_head{ height:60px;width:90%;position:absolute; z-index:999; top:0; padding:5px 5% 0; overflow:hidden}
.wp_b_con_head h1{ font-size:23px; color:#666; margin-bottom:2px;}
.wp_b_con_head .s1{ font-size:12px; float:left}
.wp_b_con_head .s2{ float:right}
.wp_b_con_head .s2 a{ width:25px; height:19px; display:inline-block; margin-left:3px;}
.wp_b_con_head .a1{ background:url(../images/mode1.png) no-repeat; background-size:25px 19px;}
.wp_b_con_head .a2{background:url(../images/mode2.png) no-repeat; background-size:25px 19px;}
.wp_b_con_head .a3{background:url(../images/mode3.png) no-repeat; background-size:25px 19px;}
.wp_b_con{ font-size:17px;padding:0 5% 0 5%; color:#666;}
.wp_b_con p{ text-indent:26px;}
.wp_book_p{ position:relative; padding-top:60px; margin-bottom:10px;}
.wp_b_con_foot{height:40px; width:95%; background:#fff; z-index:999; bottom:0; padding:5%;}
.wp_b_con_foot a{ height:35px; background:#ff6600; color:#fff; font-size:14px; font-weight:bold; border-radius:5px; display:inline-block; line-height:35px; width:45%; margin-right:5%; text-align:center}
.wp_b_con_foot a.wp_cur{ background:#dfdfdf;}
.wp_hotitle{ height:38px; line-height:38px; color:#ff6600; font-size:16px; padding-left:5%; border-bottom:1px solid #e7e7e7}
.wp_in_list ul li{ height:30px; line-height:30px;border-bottom:1px solid #e7e7e7; width:90%; margin:0 auto}
.wp_in_list ul li:hover{ background:#f1f1f1}
.wp_in_list li a span{ margin-right:10px;}
.wp_in_list li a .s1{ color:#ff6600}
.wp_in_list li a .s2{ color:#24b75c}
.wp_in_list li a .s3{ color:#5097ff}
.wp_in_list li a{ color:#666; font-size:14px;}
.wp_in_list li i{ display:inline-table; width:25px; height:9px; background:url(../images/hot.png) no-repeat; background-size:25px 9px; margin-left:10px;}
.wp_in_list p{ height:40px; line-height:40px; text-align:center; font-size:14px; color:#999}
.wp_in_list p a{ color:#999}
.wp_tag{ background:#f3f3f3}
.wp_tag p span{ padding-left:5px;border-left:3px solid #ff6600;}
.wp_tag p{ width:86%; margin:0 auto; font-size:14px; color:#666; height:20px; padding-top:10px;overflow:hidden}
.wp_tag p a{ margin-right:10px; color:#5097ff}
.wp_foot{ height:40px; background:#1b212d; padding:15px 20px; position:relative}
.wp_foot p a{ color:#fff}
.wp_foot p span{ font-size:12px; color:#888}
.wp_foot i{ width:40px; height:40px; background:url(../images/b_top.png); background-size:40px; display:block; position:absolute; right:20px; top:15px;}
.wp_foot i a{ display:block; width:40px; height:40px;}
.reads
{
font-size:25px;padding:0 5% 0 5%; color:#666;
} | 0.3863 | 0.237864 |
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body{
background-color: #ddd;
}
h2{
font-family: sans-serif;
letter-spacing: 6px;
font-weight: normal;
margin-top: 20px;
margin-bottom: 20px;
color: white;
}
h4{
font-family: sans-serif;
letter-spacing: 6px;
font-weight: normal;
margin-top: 5px;
margin-bottom: 20px;
color: white;
text-shadow: 0 0 12px black;
}
header{
background-color: #39393D;
color: white;
padding: 20px;
text-align: center;
position: fixed;
top: 0;
z-index: 99;
width: 100%;
}
nav ul li{
display: inline-block;
margin-right: 30px;
margin-left: 30px;
font-size: 18px;
font-weight: normal;
}
nav ul{
text-align: center;
}
nav a{
font-family: sans-serif;
font-weight: bold;
color: white;
text-decoration: none;
list-style-type: none;
list-style: none;
}
nav a:hover{
color: yellow;
transition: 0.5s;
}
#bemvindo{
background-image: url(img/sao-jose-norte-card-blog.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 300px;
width: 100%;
display: flex;
text-align: center;
}
#bemvindo h1{
align-self: center;
margin: auto;
color: white;
margin-top: 100px;
font-size: 50px;
text-shadow: 0 0 30px black;
}
#main-principal{
margin: auto;
width: 420px;
height: 1000px;
margin-top: 10px;
line-height: 2;
}
#main-section1 article{
text-align: center;
margin-top: 30px;
}
#main-section1 img{
border-radius: 20px;
width: 250px;
box-shadow: 0 0 10px;
}
#main-section1 article a{
color: black;
text-decoration: none;
list-style: none;
list-style-type: none;
}
#main-section1 article a:hover {
color: yellow;
transition: 0.5s;
}
#main-section1 article a:hover h4{
color: yellow;
transition: 0.5s;
}
#main-section2 p{
font-size: 16px;
text-align: justify;
}
#main-section2 article img{
width: 220px;
float: left;
margin-right: 40px;
border-radius: 50px;
}
iframe{
margin-bottom: 100px;
margin: auto;
}
#end{
text-align: center;
background-color: #39393D;
color: white;
padding: 5px;
width: 100%;
box-sizing: content-box;
}
@media screen and (min-width:700px){
nav ul li{
margin-left: 100px;
margin-right: 100px;
}
#bemvindo{
height: 450px;
}
#bemvindo h1{
margin: auto;
font-size: 70px;
}
#article-img{
text-align: left;
}
#main-section1{
display: flex;
margin-top: 100px;
}
#main-section1 article{
margin-right: 70px;
margin: auto;
}
#main-principal{
width: 1000px;
margin-bottom: 200px;
}
#localidade{
margin-top: 100px;
}
iframe{
width: 1000px;
}
.article-img{
margin-top: 50px;
}
.article-img p{
margin-top: 60px;
}
.article-img img{
border-radius: 50px;
margin-top: 0px;
}
.ebr img{
margin-top: 50px;
}
} | style.css | *{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body{
background-color: #ddd;
}
h2{
font-family: sans-serif;
letter-spacing: 6px;
font-weight: normal;
margin-top: 20px;
margin-bottom: 20px;
color: white;
}
h4{
font-family: sans-serif;
letter-spacing: 6px;
font-weight: normal;
margin-top: 5px;
margin-bottom: 20px;
color: white;
text-shadow: 0 0 12px black;
}
header{
background-color: #39393D;
color: white;
padding: 20px;
text-align: center;
position: fixed;
top: 0;
z-index: 99;
width: 100%;
}
nav ul li{
display: inline-block;
margin-right: 30px;
margin-left: 30px;
font-size: 18px;
font-weight: normal;
}
nav ul{
text-align: center;
}
nav a{
font-family: sans-serif;
font-weight: bold;
color: white;
text-decoration: none;
list-style-type: none;
list-style: none;
}
nav a:hover{
color: yellow;
transition: 0.5s;
}
#bemvindo{
background-image: url(img/sao-jose-norte-card-blog.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 300px;
width: 100%;
display: flex;
text-align: center;
}
#bemvindo h1{
align-self: center;
margin: auto;
color: white;
margin-top: 100px;
font-size: 50px;
text-shadow: 0 0 30px black;
}
#main-principal{
margin: auto;
width: 420px;
height: 1000px;
margin-top: 10px;
line-height: 2;
}
#main-section1 article{
text-align: center;
margin-top: 30px;
}
#main-section1 img{
border-radius: 20px;
width: 250px;
box-shadow: 0 0 10px;
}
#main-section1 article a{
color: black;
text-decoration: none;
list-style: none;
list-style-type: none;
}
#main-section1 article a:hover {
color: yellow;
transition: 0.5s;
}
#main-section1 article a:hover h4{
color: yellow;
transition: 0.5s;
}
#main-section2 p{
font-size: 16px;
text-align: justify;
}
#main-section2 article img{
width: 220px;
float: left;
margin-right: 40px;
border-radius: 50px;
}
iframe{
margin-bottom: 100px;
margin: auto;
}
#end{
text-align: center;
background-color: #39393D;
color: white;
padding: 5px;
width: 100%;
box-sizing: content-box;
}
@media screen and (min-width:700px){
nav ul li{
margin-left: 100px;
margin-right: 100px;
}
#bemvindo{
height: 450px;
}
#bemvindo h1{
margin: auto;
font-size: 70px;
}
#article-img{
text-align: left;
}
#main-section1{
display: flex;
margin-top: 100px;
}
#main-section1 article{
margin-right: 70px;
margin: auto;
}
#main-principal{
width: 1000px;
margin-bottom: 200px;
}
#localidade{
margin-top: 100px;
}
iframe{
width: 1000px;
}
.article-img{
margin-top: 50px;
}
.article-img p{
margin-top: 60px;
}
.article-img img{
border-radius: 50px;
margin-top: 0px;
}
.ebr img{
margin-top: 50px;
}
} | 0.422266 | 0.073563 |
html, body {
font-family: "Roboto", sans-serif;
background: #e6e9ed;
margin: 0;
padding: 0;
background: #1D2671;
background: -webkit-linear-gradient(to bottom, #1D2671, #C33764, #1D2671);
background: linear-gradient(to bottom, #1D2671, #C33764, #1D2671);
}
.grid__example {
color: #ffffff;
}
.grid__example-logo {
background: url(../images/pixel-grids-icon.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
height: 100px;
width: 100px;
margin-right: 18px;
}
@media (min-width: 768px) {
.grid__example-logo {
background-position: center 0;
}
}
.grid__example-head {
line-height: 32px;
}
.grid__example-head h1 {
margin-top: 0;
margin-bottom: 5px;
font-weight: 400;
opacity: 0.8;
}
.grid__example-head h1 .grid__example-logo {
width: 50px;
height: 50px;
}
.grid__example-head p {
margin-top: 0;
font-size: 18px;
font-weight: 300;
opacity: 0.6;
line-height: 25px;
}
.grid__example-content {
padding: 10px;
min-height: 30px;
height: 100%;
width: 100%;
background: rgba(255, 255, 255, 0.78);
line-height: 24px;
border-radius: 3px;
box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
.grid__example-content.--bigger {
height: 100px;
}
.grid__example-content ul {
margin: 0;
padding: 0;
}
.grid__example-content li {
min-width: 60px;
list-style-type: none;
display: inline-block;
font-size: 13px;
color: #434a54;
font-family: monospace;
position: relative;
}
.grid__example-page-footer {
border-top: 1px solid rgba(255, 255, 255, 0.15);
border-bottom: none;
padding-top: 24px;
margin-top: 70px;
font-size: 12px;
opacity: 0.4;
width: 100%;
}
.grid__example-footer {
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
padding-bottom: 24px;
width: 100%;
margin-bottom: 24px;
}
.grid__example-footer .button {
padding: 10px 20px;
border-radius: 20px;
background: #0f0c29;
box-shadow: none;
border: 1px solid #564a84;
font-size: 15px;
color: rgba(255, 255, 255, 0.74);
margin-right: 10px;
cursor: pointer;
text-decoration: none;
outline: none;
display: inline-block;
}
.grid__example-footer .button:hover {
background: #281840;
}
.grid__example-footer .github-button {
padding-left: 42px;
position: relative;
}
.grid__example-footer .github-button:before {
content: "";
position: absolute;
background: url(../images/github-logo-white.png);
background-repeat: no-repeat;
background-size: contain;
width: 45px;
height: 45px;
left: -1px;
top: 5px;
}
h3 {
margin-bottom: 5px;
font-weight: 400;
opacity: 0.8;
}
p.info {
margin-top: 0;
font-size: 14px;
font-weight: 400;
opacity: 0.6;
}
.parent {
position: relative;
}
.parent .blob-svg {
position: absolute;
top: -170px;
height: 500px;
width: 50%;
transform: rotate(-56deg);
}
.parent .text-content {
position: absolute;
top: 8px;
}
.parent .text-content h1, .parent .text-content p {
color: #ffffff;
} | docs/css/styles.css | html, body {
font-family: "Roboto", sans-serif;
background: #e6e9ed;
margin: 0;
padding: 0;
background: #1D2671;
background: -webkit-linear-gradient(to bottom, #1D2671, #C33764, #1D2671);
background: linear-gradient(to bottom, #1D2671, #C33764, #1D2671);
}
.grid__example {
color: #ffffff;
}
.grid__example-logo {
background: url(../images/pixel-grids-icon.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
height: 100px;
width: 100px;
margin-right: 18px;
}
@media (min-width: 768px) {
.grid__example-logo {
background-position: center 0;
}
}
.grid__example-head {
line-height: 32px;
}
.grid__example-head h1 {
margin-top: 0;
margin-bottom: 5px;
font-weight: 400;
opacity: 0.8;
}
.grid__example-head h1 .grid__example-logo {
width: 50px;
height: 50px;
}
.grid__example-head p {
margin-top: 0;
font-size: 18px;
font-weight: 300;
opacity: 0.6;
line-height: 25px;
}
.grid__example-content {
padding: 10px;
min-height: 30px;
height: 100%;
width: 100%;
background: rgba(255, 255, 255, 0.78);
line-height: 24px;
border-radius: 3px;
box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
.grid__example-content.--bigger {
height: 100px;
}
.grid__example-content ul {
margin: 0;
padding: 0;
}
.grid__example-content li {
min-width: 60px;
list-style-type: none;
display: inline-block;
font-size: 13px;
color: #434a54;
font-family: monospace;
position: relative;
}
.grid__example-page-footer {
border-top: 1px solid rgba(255, 255, 255, 0.15);
border-bottom: none;
padding-top: 24px;
margin-top: 70px;
font-size: 12px;
opacity: 0.4;
width: 100%;
}
.grid__example-footer {
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
padding-bottom: 24px;
width: 100%;
margin-bottom: 24px;
}
.grid__example-footer .button {
padding: 10px 20px;
border-radius: 20px;
background: #0f0c29;
box-shadow: none;
border: 1px solid #564a84;
font-size: 15px;
color: rgba(255, 255, 255, 0.74);
margin-right: 10px;
cursor: pointer;
text-decoration: none;
outline: none;
display: inline-block;
}
.grid__example-footer .button:hover {
background: #281840;
}
.grid__example-footer .github-button {
padding-left: 42px;
position: relative;
}
.grid__example-footer .github-button:before {
content: "";
position: absolute;
background: url(../images/github-logo-white.png);
background-repeat: no-repeat;
background-size: contain;
width: 45px;
height: 45px;
left: -1px;
top: 5px;
}
h3 {
margin-bottom: 5px;
font-weight: 400;
opacity: 0.8;
}
p.info {
margin-top: 0;
font-size: 14px;
font-weight: 400;
opacity: 0.6;
}
.parent {
position: relative;
}
.parent .blob-svg {
position: absolute;
top: -170px;
height: 500px;
width: 50%;
transform: rotate(-56deg);
}
.parent .text-content {
position: absolute;
top: 8px;
}
.parent .text-content h1, .parent .text-content p {
color: #ffffff;
} | 0.437103 | 0.078008 |
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body{
font-family: "Montserrat";
}
.logo{
width: 50%;
height: 400px;
margin-top: 50px;
background: url(/img/1597722989485_logo_2-1-removebg-preview.png) no-repeat;
background-size: 300px;
background-position: center;
}
.title{
width: 50%;
margin-top: 70px;
background: url(/img/KAA2020.svg) no-repeat;
background-size: 600px;
background-position: center;
}
.title-konten{
margin-top: 180px;
}
.apa_yg_baru{
display: block;
background-color: #8BBF99;
width: 50%;
justify-content: center;
margin: auto;
text-align: center;
padding: 10px;
border-radius: 10px;
}
.flex1{
background: url(/flaticon/rules.svg) no-repeat;
background-size: 270px;
background-position-x: 60%;
background-position-y: 60%;
}
.flex2{
background: url(/flaticon/process.svg) no-repeat;
background-size: 270px;
background-position-x: 40%;
background-position-y: 90%;
}
.persyaratan{
display: block;
width: 60%;
justify-content: center;
margin-top: 100px;
padding: 10px;
border-radius: 10px;
}
.juara{
background: url(/flaticon/award.svg) no-repeat;
background-size: 100px;
background-position-x: 95%;
background-position-y: 80%;
display: block;
width: 50%;
height: auto;
justify-content: center;
margin-top: 400px;
text-align: center;
padding: 10px;
border-radius: 10px;
}
.mekanisme{
width: 65%;
margin-top: 150px;
padding: 20px;
}
.biaya{
background: url(/flaticon/money.svg);
background-repeat: repeat-x;
background-size: 100px;
background-position-x: 95%;
background-position-y: 10%;
width: 40%;
margin-top: 150px;
padding: 20px;
text-align: center;
}
.daftar{
font-family: "Montserrat";
display: block;
margin: 40px auto 20px auto;
justify-content: center;
text-align: center;
text-decoration: none;
padding: 5px;
width: 300px;
color: #8BBF99;
border-radius: 20px;
border: #8BBF99 solid 3px;
background-color: white;
transition: 0.50s;
cursor: pointer;
}
.daftar:hover{
background: #8BBF99;
color: white;
}
.download{
font-family: "Montserrat";
display: block;
margin: 50px auto 20px auto;
justify-content: center;
text-align: center;
text-decoration: none;
padding: 5px;
width: 400px;
color: #8BBF99;
border-radius: 20px;
border: #8BBF99 solid 3px;
background-color: white;
transition: 0.50s;
cursor: pointer;
}
.download:hover{
background: #8BBF99;
color: white;
}
#bh{
width: 100%;
background-color: #8BBF99;
color: white;
border-radius: 5px;
margin-left: 10px;
}
#bh2{
width: 100%;
background-color: yellow;
color: red;
border-radius: 5px;
margin-right: 10px;
}
#bh:hover{
background: #92E3A9;
color: white;
}
#bh2:hover{
background: red;
color: yellow;
}
/* ================================================BUTTOM UP==================================== */
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: #92E3A9;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 50%;
}
#myBtn:hover {
background-color: #8BBF99;
}
/* =======================================GALERY======================================== */
img {
vertical-align: middle;
}
/* Position the image container (needed to position the left and right arrows) */
.container2 {
position: relative;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Add a pointer when hovering over the thumbnail images */
.cursor {
cursor: pointer;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 40%;
width: auto;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* Container for image text */
.caption-container {
text-align: center;
background-color: #222;
padding: 2px 16px;
color: white;
}
.row:after {
content: "";
display: table;
clear: both;
}
/* Six columns side by side */
.column {
float: left;
width: 16.66%;
}
/* Add a transparency effect for thumnbail images */
.demo {
opacity: 0.6;
}
.active,
.demo:hover {
opacity: 1;
}
/* ==============================================TIMELINE====================================== */
.timeline {
position: relative;
max-width: 1200px;
margin: 0 auto;
}
/* The actual timeline (the vertical ruler) */
.timeline::after {
content: '';
position: absolute;
width: 6px;
background-color: #dddd;
top: 0;
bottom: 0;
left: 50%;
margin-left: -3px;
z-index: -1;
}
/* Container around content */
.container3 {
padding: 10px 40px;
position: relative;
background-color: inherit;
width: 50%;
}
/* The circles on the timeline */
.container3::after {
content: '';
position: absolute;
width: 25px;
height: 25px;
right: -17px;
background-color: #dddd;
border: 4px solid #92E3A9;
top: 15px;
border-radius: 50%;
/* z-index: 1; */
}
/* Place the container to the left */
.left {
left: 0;
}
/* Place the container to the right */
.right {
left: 50%;
}
/* Add arrows to the left container (pointing right) */
.left::before {
content: " ";
height: 0;
position: absolute;
top: 22px;
width: 0;
z-index: 1;
right: 30px;
border: medium solid white;
border-width: 10px 0 10px 10px;
border-color: transparent transparent transparent white;
}
/* Add arrows to the right container (pointing left) */
.right::before {
content: " ";
height: 0;
position: absolute;
top: 22px;
width: 0;
z-index: 1;
left: 30px;
border: medium solid white;
border-width: 10px 10px 10px 0;
border-color: transparent white transparent transparent;
}
/* Fix the circle for containers on the right side */
.right::after {
left: -16px;
}
/* The actual content */
.content {
padding: 20px 30px;
background-color: #dddd;
position: relative;
border-radius: 6px;
}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
.timeline::after {
left: 31px;
}
/* Full-width containers */
.container3 {
width: 100%;
padding-left: 70px;
padding-right: 25px;
}
/* Make sure that all arrows are pointing leftwards */
.container3::before {
left: 60px;
border: medium solid white;
border-width: 10px 10px 10px 0;
border-color: transparent white transparent transparent;
}
/* Make sure all circles are at the same spot */
.left::after, .right::after {
left: 15px;
}
/* Make all right containers behave like the left ones */
.right {
left: 0%;
}
}
/* ========================================================contact================================ */
.column2 {
float: left;
width: 33.3%;
margin-bottom: 16px;
padding: 0 8px;
}
@media screen and (max-width: 650px) {
.column2 {
width: 100%;
display: block;
}
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.container4 {
padding: 0 16px;
text-align: center;
padding: 20px;
}
.container4::after, .row::after {
content: "";
clear: both;
display: table;
}
.title2 {
color: grey;
text-align: center;
}
.button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
}
.button:hover {
background-color: #555;
}
/* =================================responsive================================= */
@media screen and (max-width: 700px) {
body{
width: 500px;
}
.logo{
width: 50%;
height: 300px;
background-size: 200px;
}
.title{
width: 60%;
background-size: 250px;
}
.juara{
display: block;
width: 100%;
height: auto;
background-image: none;
text-align: start;
margin-top: 45px;
margin-bottom: auto;
margin-left: 45px;
margin-right: auto;
font-size: 14px;
float: left;
}
} | public/css/landingpage.css | @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body{
font-family: "Montserrat";
}
.logo{
width: 50%;
height: 400px;
margin-top: 50px;
background: url(/img/1597722989485_logo_2-1-removebg-preview.png) no-repeat;
background-size: 300px;
background-position: center;
}
.title{
width: 50%;
margin-top: 70px;
background: url(/img/KAA2020.svg) no-repeat;
background-size: 600px;
background-position: center;
}
.title-konten{
margin-top: 180px;
}
.apa_yg_baru{
display: block;
background-color: #8BBF99;
width: 50%;
justify-content: center;
margin: auto;
text-align: center;
padding: 10px;
border-radius: 10px;
}
.flex1{
background: url(/flaticon/rules.svg) no-repeat;
background-size: 270px;
background-position-x: 60%;
background-position-y: 60%;
}
.flex2{
background: url(/flaticon/process.svg) no-repeat;
background-size: 270px;
background-position-x: 40%;
background-position-y: 90%;
}
.persyaratan{
display: block;
width: 60%;
justify-content: center;
margin-top: 100px;
padding: 10px;
border-radius: 10px;
}
.juara{
background: url(/flaticon/award.svg) no-repeat;
background-size: 100px;
background-position-x: 95%;
background-position-y: 80%;
display: block;
width: 50%;
height: auto;
justify-content: center;
margin-top: 400px;
text-align: center;
padding: 10px;
border-radius: 10px;
}
.mekanisme{
width: 65%;
margin-top: 150px;
padding: 20px;
}
.biaya{
background: url(/flaticon/money.svg);
background-repeat: repeat-x;
background-size: 100px;
background-position-x: 95%;
background-position-y: 10%;
width: 40%;
margin-top: 150px;
padding: 20px;
text-align: center;
}
.daftar{
font-family: "Montserrat";
display: block;
margin: 40px auto 20px auto;
justify-content: center;
text-align: center;
text-decoration: none;
padding: 5px;
width: 300px;
color: #8BBF99;
border-radius: 20px;
border: #8BBF99 solid 3px;
background-color: white;
transition: 0.50s;
cursor: pointer;
}
.daftar:hover{
background: #8BBF99;
color: white;
}
.download{
font-family: "Montserrat";
display: block;
margin: 50px auto 20px auto;
justify-content: center;
text-align: center;
text-decoration: none;
padding: 5px;
width: 400px;
color: #8BBF99;
border-radius: 20px;
border: #8BBF99 solid 3px;
background-color: white;
transition: 0.50s;
cursor: pointer;
}
.download:hover{
background: #8BBF99;
color: white;
}
#bh{
width: 100%;
background-color: #8BBF99;
color: white;
border-radius: 5px;
margin-left: 10px;
}
#bh2{
width: 100%;
background-color: yellow;
color: red;
border-radius: 5px;
margin-right: 10px;
}
#bh:hover{
background: #92E3A9;
color: white;
}
#bh2:hover{
background: red;
color: yellow;
}
/* ================================================BUTTOM UP==================================== */
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: #92E3A9;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 50%;
}
#myBtn:hover {
background-color: #8BBF99;
}
/* =======================================GALERY======================================== */
img {
vertical-align: middle;
}
/* Position the image container (needed to position the left and right arrows) */
.container2 {
position: relative;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Add a pointer when hovering over the thumbnail images */
.cursor {
cursor: pointer;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 40%;
width: auto;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* Container for image text */
.caption-container {
text-align: center;
background-color: #222;
padding: 2px 16px;
color: white;
}
.row:after {
content: "";
display: table;
clear: both;
}
/* Six columns side by side */
.column {
float: left;
width: 16.66%;
}
/* Add a transparency effect for thumnbail images */
.demo {
opacity: 0.6;
}
.active,
.demo:hover {
opacity: 1;
}
/* ==============================================TIMELINE====================================== */
.timeline {
position: relative;
max-width: 1200px;
margin: 0 auto;
}
/* The actual timeline (the vertical ruler) */
.timeline::after {
content: '';
position: absolute;
width: 6px;
background-color: #dddd;
top: 0;
bottom: 0;
left: 50%;
margin-left: -3px;
z-index: -1;
}
/* Container around content */
.container3 {
padding: 10px 40px;
position: relative;
background-color: inherit;
width: 50%;
}
/* The circles on the timeline */
.container3::after {
content: '';
position: absolute;
width: 25px;
height: 25px;
right: -17px;
background-color: #dddd;
border: 4px solid #92E3A9;
top: 15px;
border-radius: 50%;
/* z-index: 1; */
}
/* Place the container to the left */
.left {
left: 0;
}
/* Place the container to the right */
.right {
left: 50%;
}
/* Add arrows to the left container (pointing right) */
.left::before {
content: " ";
height: 0;
position: absolute;
top: 22px;
width: 0;
z-index: 1;
right: 30px;
border: medium solid white;
border-width: 10px 0 10px 10px;
border-color: transparent transparent transparent white;
}
/* Add arrows to the right container (pointing left) */
.right::before {
content: " ";
height: 0;
position: absolute;
top: 22px;
width: 0;
z-index: 1;
left: 30px;
border: medium solid white;
border-width: 10px 10px 10px 0;
border-color: transparent white transparent transparent;
}
/* Fix the circle for containers on the right side */
.right::after {
left: -16px;
}
/* The actual content */
.content {
padding: 20px 30px;
background-color: #dddd;
position: relative;
border-radius: 6px;
}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
.timeline::after {
left: 31px;
}
/* Full-width containers */
.container3 {
width: 100%;
padding-left: 70px;
padding-right: 25px;
}
/* Make sure that all arrows are pointing leftwards */
.container3::before {
left: 60px;
border: medium solid white;
border-width: 10px 10px 10px 0;
border-color: transparent white transparent transparent;
}
/* Make sure all circles are at the same spot */
.left::after, .right::after {
left: 15px;
}
/* Make all right containers behave like the left ones */
.right {
left: 0%;
}
}
/* ========================================================contact================================ */
.column2 {
float: left;
width: 33.3%;
margin-bottom: 16px;
padding: 0 8px;
}
@media screen and (max-width: 650px) {
.column2 {
width: 100%;
display: block;
}
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.container4 {
padding: 0 16px;
text-align: center;
padding: 20px;
}
.container4::after, .row::after {
content: "";
clear: both;
display: table;
}
.title2 {
color: grey;
text-align: center;
}
.button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
}
.button:hover {
background-color: #555;
}
/* =================================responsive================================= */
@media screen and (max-width: 700px) {
body{
width: 500px;
}
.logo{
width: 50%;
height: 300px;
background-size: 200px;
}
.title{
width: 60%;
background-size: 250px;
}
.juara{
display: block;
width: 100%;
height: auto;
background-image: none;
text-align: start;
margin-top: 45px;
margin-bottom: auto;
margin-left: 45px;
margin-right: auto;
font-size: 14px;
float: left;
}
} | 0.316053 | 0.056993 |
.st_icon_24_about {
background-image: url(sprite_24.png);
background-position: 0px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_bookmark {
background-image: url(sprite_24.png);
background-position: -24px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_box {
background-image: url(sprite_24.png);
background-position: -48px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_calendar {
background-image: url(sprite_24.png);
background-position: -72px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_cancel {
background-image: url(sprite_24.png);
background-position: -96px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_backgroundColor {
background-image: url(sprite_24.png);
background-position: -1224px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_all {
background-image: url(sprite_24.png);
background-position: -1680px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_bottom {
background-image: url(sprite_24.png);
background-position: -1704px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_left {
background-image: url(sprite_24.png);
background-position: -1728px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_right {
background-image: url(sprite_24.png);
background-position: -1752px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_top {
background-image: url(sprite_24.png);
background-position: -1776px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_breaksButton {
background-image: url(sprite_24.png);
background-position: -1248px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_clearCell {
background-image: url(sprite_24.png);
background-position: -1272px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_clearList {
background-image: url(sprite_24.png);
background-position: -1296px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_code {
background-image: url(sprite_24.png);
background-position: -1320px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_fontBold {
background-image: url(sprite_24.png);
background-position: -1344px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_fontColor {
background-image: url(sprite_24.png);
background-position: -1368px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_fontItalic {
background-image: url(sprite_24.png);
background-position: -1392px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_fontUnderline {
background-image: url(sprite_24.png);
background-position: -1416px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_noAutoresize {
background-image: url(sprite_24.png);
background-position: -1440px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_pictureCanvas {
background-image: url(sprite_24.png);
background-position: -1464px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_printerProps {
background-image: url(sprite_24.png);
background-position: -1488px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_redo {
background-image: url(sprite_24.png);
background-position: -1512px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_showmm {
background-image: url(sprite_24.png);
background-position: -1536px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_bottom {
background-image: url(sprite_24.png);
background-position: -1800px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_center {
background-image: url(sprite_24.png);
background-position: -1824px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_left {
background-image: url(sprite_24.png);
background-position: -1848px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_middle {
background-image: url(sprite_24.png);
background-position: -1872px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_right {
background-image: url(sprite_24.png);
background-position: -1896px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_top {
background-image: url(sprite_24.png);
background-position: -1920px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_textDirection {
background-image: url(sprite_24.png);
background-position: -1560px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_toExcel {
background-image: url(sprite_24.png);
background-position: -1584px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_undo {
background-image: url(sprite_24.png);
background-position: -1608px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_union {
background-image: url(sprite_24.png);
background-position: -1632px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_wideScreenButton {
background-image: url(sprite_24.png);
background-position: -1656px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_checked {
background-image: url(sprite_24.png);
background-position: -120px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_checkmark {
background-image: url(sprite_24.png);
background-position: -144px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_chooseCellGray {
background-image: url(sprite_24.png);
background-position: -168px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_clearCellGray {
background-image: url(sprite_24.png);
background-position: -192px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_combobox {
background-image: url(sprite_24.png);
background-position: -216px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_connect {
background-image: url(sprite_24.png);
background-position: -240px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_delete {
background-image: url(sprite_24.png);
background-position: -264px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_document {
background-image: url(sprite_24.png);
background-position: -288px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_download {
background-image: url(sprite_24.png);
background-position: -312px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_edit {
background-image: url(sprite_24.png);
background-position: -336px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_externalLink {
background-image: url(sprite_24.png);
background-position: -360px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_file {
background-image: url(sprite_24.png);
background-position: -384px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_folder {
background-image: url(sprite_24.png);
background-position: -408px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_idea {
background-image: url(sprite_24.png);
background-position: -432px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_imageFile {
background-image: url(sprite_24.png);
background-position: -456px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_info {
background-image: url(sprite_24.png);
background-position: -480px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_key {
background-image: url(sprite_24.png);
background-position: -504px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_lock {
background-image: url(sprite_24.png);
background-position: -528px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_menu {
background-image: url(sprite_24.png);
background-position: -552px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_numberSeven {
background-image: url(sprite_24.png);
background-position: -576px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_ok {
background-image: url(sprite_24.png);
background-position: -600px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_openedFolder {
background-image: url(sprite_24.png);
background-position: -624px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_padlock {
background-image: url(sprite_24.png);
background-position: -648px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_picture {
background-image: url(sprite_24.png);
background-position: -672px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_plus {
background-image: url(sprite_24.png);
background-position: -696px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_plusDocument {
background-image: url(sprite_24.png);
background-position: -720px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_plusFolder {
background-image: url(sprite_24.png);
background-position: -744px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_rating {
background-image: url(sprite_24.png);
background-position: -768px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_refresh {
background-image: url(sprite_24.png);
background-position: -792px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_remove {
background-image: url(sprite_24.png);
background-position: -816px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_removeAll {
background-image: url(sprite_24.png);
background-position: -840px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_restart {
background-image: url(sprite_24.png);
background-position: -864px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_scroll {
background-image: url(sprite_24.png);
background-position: -888px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_search {
background-image: url(sprite_24.png);
background-position: -912px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_services {
background-image: url(sprite_24.png);
background-position: -936px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_settings {
background-image: url(sprite_24.png);
background-position: -960px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_share {
background-image: url(sprite_24.png);
background-position: -984px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_share3 {
background-image: url(sprite_24.png);
background-position: -1008px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_support {
background-image: url(sprite_24.png);
background-position: -1032px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_synchronize {
background-image: url(sprite_24.png);
background-position: -1056px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_tick-box {
background-image: url(sprite_24.png);
background-position: -1080px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_trash {
background-image: url(sprite_24.png);
background-position: -1104px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_trashCan {
background-image: url(sprite_24.png);
background-position: -1128px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_unavailable {
background-image: url(sprite_24.png);
background-position: -1152px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_undelete {
background-image: url(sprite_24.png);
background-position: -1176px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_viewCellGray {
background-image: url(sprite_24.png);
background-position: -1200px 0px;
width: 24px;
height: 24px;
} | src/StringFld/assets/sprite_24.css | .st_icon_24_about {
background-image: url(sprite_24.png);
background-position: 0px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_bookmark {
background-image: url(sprite_24.png);
background-position: -24px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_box {
background-image: url(sprite_24.png);
background-position: -48px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_calendar {
background-image: url(sprite_24.png);
background-position: -72px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_cancel {
background-image: url(sprite_24.png);
background-position: -96px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_backgroundColor {
background-image: url(sprite_24.png);
background-position: -1224px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_all {
background-image: url(sprite_24.png);
background-position: -1680px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_bottom {
background-image: url(sprite_24.png);
background-position: -1704px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_left {
background-image: url(sprite_24.png);
background-position: -1728px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_right {
background-image: url(sprite_24.png);
background-position: -1752px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_border_top {
background-image: url(sprite_24.png);
background-position: -1776px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_breaksButton {
background-image: url(sprite_24.png);
background-position: -1248px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_clearCell {
background-image: url(sprite_24.png);
background-position: -1272px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_clearList {
background-image: url(sprite_24.png);
background-position: -1296px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_code {
background-image: url(sprite_24.png);
background-position: -1320px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_fontBold {
background-image: url(sprite_24.png);
background-position: -1344px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_fontColor {
background-image: url(sprite_24.png);
background-position: -1368px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_fontItalic {
background-image: url(sprite_24.png);
background-position: -1392px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_fontUnderline {
background-image: url(sprite_24.png);
background-position: -1416px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_noAutoresize {
background-image: url(sprite_24.png);
background-position: -1440px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_pictureCanvas {
background-image: url(sprite_24.png);
background-position: -1464px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_printerProps {
background-image: url(sprite_24.png);
background-position: -1488px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_redo {
background-image: url(sprite_24.png);
background-position: -1512px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_showmm {
background-image: url(sprite_24.png);
background-position: -1536px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_bottom {
background-image: url(sprite_24.png);
background-position: -1800px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_center {
background-image: url(sprite_24.png);
background-position: -1824px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_left {
background-image: url(sprite_24.png);
background-position: -1848px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_middle {
background-image: url(sprite_24.png);
background-position: -1872px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_right {
background-image: url(sprite_24.png);
background-position: -1896px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_align_top {
background-image: url(sprite_24.png);
background-position: -1920px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_textDirection {
background-image: url(sprite_24.png);
background-position: -1560px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_toExcel {
background-image: url(sprite_24.png);
background-position: -1584px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_undo {
background-image: url(sprite_24.png);
background-position: -1608px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_union {
background-image: url(sprite_24.png);
background-position: -1632px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_wideScreenButton {
background-image: url(sprite_24.png);
background-position: -1656px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_checked {
background-image: url(sprite_24.png);
background-position: -120px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_checkmark {
background-image: url(sprite_24.png);
background-position: -144px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_chooseCellGray {
background-image: url(sprite_24.png);
background-position: -168px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_clearCellGray {
background-image: url(sprite_24.png);
background-position: -192px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_combobox {
background-image: url(sprite_24.png);
background-position: -216px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_connect {
background-image: url(sprite_24.png);
background-position: -240px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_delete {
background-image: url(sprite_24.png);
background-position: -264px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_document {
background-image: url(sprite_24.png);
background-position: -288px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_download {
background-image: url(sprite_24.png);
background-position: -312px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_edit {
background-image: url(sprite_24.png);
background-position: -336px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_externalLink {
background-image: url(sprite_24.png);
background-position: -360px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_file {
background-image: url(sprite_24.png);
background-position: -384px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_folder {
background-image: url(sprite_24.png);
background-position: -408px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_idea {
background-image: url(sprite_24.png);
background-position: -432px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_imageFile {
background-image: url(sprite_24.png);
background-position: -456px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_info {
background-image: url(sprite_24.png);
background-position: -480px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_key {
background-image: url(sprite_24.png);
background-position: -504px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_lock {
background-image: url(sprite_24.png);
background-position: -528px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_menu {
background-image: url(sprite_24.png);
background-position: -552px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_numberSeven {
background-image: url(sprite_24.png);
background-position: -576px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_ok {
background-image: url(sprite_24.png);
background-position: -600px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_openedFolder {
background-image: url(sprite_24.png);
background-position: -624px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_padlock {
background-image: url(sprite_24.png);
background-position: -648px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_picture {
background-image: url(sprite_24.png);
background-position: -672px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_plus {
background-image: url(sprite_24.png);
background-position: -696px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_plusDocument {
background-image: url(sprite_24.png);
background-position: -720px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_plusFolder {
background-image: url(sprite_24.png);
background-position: -744px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_rating {
background-image: url(sprite_24.png);
background-position: -768px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_refresh {
background-image: url(sprite_24.png);
background-position: -792px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_remove {
background-image: url(sprite_24.png);
background-position: -816px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_removeAll {
background-image: url(sprite_24.png);
background-position: -840px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_restart {
background-image: url(sprite_24.png);
background-position: -864px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_scroll {
background-image: url(sprite_24.png);
background-position: -888px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_search {
background-image: url(sprite_24.png);
background-position: -912px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_services {
background-image: url(sprite_24.png);
background-position: -936px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_settings {
background-image: url(sprite_24.png);
background-position: -960px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_share {
background-image: url(sprite_24.png);
background-position: -984px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_share3 {
background-image: url(sprite_24.png);
background-position: -1008px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_support {
background-image: url(sprite_24.png);
background-position: -1032px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_synchronize {
background-image: url(sprite_24.png);
background-position: -1056px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_tick-box {
background-image: url(sprite_24.png);
background-position: -1080px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_trash {
background-image: url(sprite_24.png);
background-position: -1104px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_trashCan {
background-image: url(sprite_24.png);
background-position: -1128px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_unavailable {
background-image: url(sprite_24.png);
background-position: -1152px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_undelete {
background-image: url(sprite_24.png);
background-position: -1176px 0px;
width: 24px;
height: 24px;
}
.st_icon_24_viewCellGray {
background-image: url(sprite_24.png);
background-position: -1200px 0px;
width: 24px;
height: 24px;
} | 0.324771 | 0.098209 |
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img, div{margin:0; padding:0; border:0; font-family:"Microsoft Yahei",Tahoma; font-size: 12px; -webkit-text-size-adjust:none;}
/* Friend card. */
.friendCard{width:1000px; height:600px; position:absolute; top:0; left:0; overflow:hidden}
.friendList{width:230px; height:600px; background-color:#FFF; position:absolute; top:0; left:0; overflow:hidden}
/* Friend tab head*/
.friendList .friendTabHead{width:230px; height:25px; border:0; background:#EFEFEF; position:absolute; top: 0px; left:0; line-height:28px}
.friendList .friendTabHead .tabMenu{width:230px; height:25px; position: absolute; top:0; left:0; list-style:none}
.friendList .friendTabHead .tabMenu li{height:25px; line-height:25px; background-color:#F0F0F0; padding:0 10px 0 10px; list-style:none; font-size:12px; text-align:center; float:left; cursor:pointer; color: #666;}
.friendList .friendTabHead .tabMenu li:HOVER{background-color: #DDD;}
.friendList .friendTabHead .tabMenu li.current{background-color:#FFF;}
/* Friend tab body*/
.friendList .friendTabBody{width:230px; height:550px; background-color: #f0f0f0; position:absolute; top: 25px; left:0; overflow:hidden}
.friendList .friendTabBody .friendListBox{width:230px; height:550px; border:0px solid #000; position:relative; top:0; left:0; overflow-y:auto}
/* Friend group. */
.friendListBox .friendGroup{width:230px; height: 30px; border-bottom:1px solid #F3F3F3; background: #FEFEFE url("../../img/arrow.png") no-repeat 5px 9px; position:relative; top:0; left:0; font-size:12px; color: #444; line-height: 30px}
.friendListBox .friendGroup:HOVER{background-color: #F3F3F3;}
.friendListBox .friendGroup.focus{background: #F3F3F3 url("../../img/arrow.png") no-repeat 5px -12px;}
.friendListBox .friendGroup .groupName{width:210px; height:30px; position: absolute; top:0; left:20px; text-indent: 5px;}
/* Friend menu. */
.friendList .friendMenu{width: 230px; height: 25px; border: 0; background-color: #EEE; position: absolute;top: 575px; left: 0; }
.friendList .friendMenu .friendManage{width: 40px; height:25px; position: absolute; top:0; left:0; background: url("../../img/menu.png") no-repeat 13px 5px; position:relative; top:0; left:0; font-size:12px; }
.friendList .friendMenu .friendManage:HOVER{background: #FFF url("../../img/menu.png") no-repeat 13px -22px; cursor: default;}
.friendList .friendMenu .friendManage.focus{background: #FFF url("../../img/menu.png") no-repeat 13px -50px; cursor: default;}
.friendList .friendMenu .friendManage.finish{width: 40px; height:25px; position: absolute; top:0; left:0; background: #39F; text-align: center; color: #FFF; line-height: 25px; cursor: default;}
.friendList .friendMenu .friendManage.finish:HOVER{background-color: #06C; cursor: default;}
.friendList .friendMenu .friendManage.finish:ACTIVE{background-color: #039; cursor: default;}
.friendList .friendManageBox{width: 200px; height: 300px; background-color: #FFF; border: 1px solid; border-color: #CCC #CCC #FFF #FFF; position: absolute; top: -302px; left: 0px; -webkit-box-shadow: 1px -1px 2px rgba(0,0,0,.2); -moz-box-shadow: 1px -1px 2px rgba(0,0,0,.2); box-shadow: 1px -1px 2px #DDD; overflow: hidden; display: none;}
.friendList .friendManageBox .menu{width: 190px; height: 25px; background-color: #eee; margin: 5px 0 0 5px; line-height: 25px; text-indent: 1em;}
.friendList .friendManageBox .menu:HOVER{background-color: #3FB5ED; color: #FFF;}
.friendList .friendManageBox .menu:ACTIVE{background-color: #35B1EC; color: #FFF;}
/* Add Friend grouping. */
.friendListBox .addGroup{width: 230px; height: 25px; border-top:1px solid #FFF; background: #39F url("../../img/add.png") no-repeat -15px center; position:relative; top:0; left:0; text-align: center; color: #FFF; line-height:25px;}
.friendListBox .addGroup:HOVER{background-color: #06C; cursor: default;}
.friendListBox .addGroup:ACTIVE{background-color: #039; cursor: default;}
.friendGroup .groupName input[type=text]{width: 180px; height:23px; border: 0; position: relative; top:0; left: 0px; }
.friendGroup .groupName input[type=text]:focus{width: 180px; height:20px;outline: none;border: 1px solid #3399FF; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);position: relative; top:2px; left: 0px;}
/* Delete friends groups. */
.friendListBox .deleteGroupBox{width: 90px; border: 0px solid #000; position: relative; top: -25px; left: 140px;}
.friendListBox .deleteGroupBox .deleteGroup{width: 30px; height: 19px; background:url("../../img/delete.png") no-repeat 8px center; position: absolute; top: 2px; left: 25px; cursor: default;}
.friendListBox .deleteGroupBox .deleteGroup:HOVER{background: #E04343 url("../../img/delete.png") no-repeat -17px center; cursor: default;}
.friendListBox .deleteGroupBox .deleteGroup:ACTIVE{background-color: #C75050; cursor: default;}
/* Edit Friends group. */
.friendListBox .editGroupBox{width: 90px; border: 0px solid #000; position: relative; top: -25px; left: 140px;}
.friendListBox .editGroupBox .editGroup{width: 30px; height: 19px; background:url("../../img/edit.png") no-repeat 8px center; position: absolute; top: 2px; left: 25px; cursor: default;}
.friendListBox .editGroupBox .editGroup:HOVER{background: #06C url("../../img/edit.png") no-repeat -17px center; cursor: default;}
.friendListBox .editGroupBox .editGroup:ACTIVE{background-color: #C75050; cursor: default;}
/* Menu finish. */
.close{width:50px; height:25px; border: 0px solid red; background-color:#3399FF; position:relative; top: -25px; left: 180px; font-size:12px; color: #FFF; line-height:25px; text-indent:1em;}
.close:HOVER{background-color:#0066CC; cursor: default;}
.friendBox{width:230px; border:0px solid red; background-color:#FFF; position:relative; top:0; left:0}
.friendList .friend{width:230px; height:50px; border-bottom:1px solid #F0F0F0; position:relative; top:0; left:0;}
.friendList .friend .avatar{width:48px; height:48px; border:0px solid #000; position:relative; top:1px; left:1px}
.friendList .friend .avatar img{max-width:48px; max-height:48px}
.friendList .friend .nickname{width:180px; height:50px;border:0px solid #000; position:relative; top:-48px; left:50px}
.chatListBox{width:230px; height:550px; border:0; background-color:#FFF; font-size:12px; overflow-x:hidden; overflow-y:auto}
/* */
.chatMainBox{width:350px; height: 500px; border:1px solid #BBB; margin:0px 0 0 0px; background-color:#FFF; position:absolute; top:75px; left:230px; display:none; }
.chatMainBox .nickname-tab{width:350px; height:25px; border:0px solid #000; background-color:#BBB; position:relative; top:0px; left:0px}
.chatMainBox .nickname-ul{width:350px; height:25px; border:0px solid red; position:relative; top:0; left:0; list-style:none}
.chatMainBox .nickname-ul li{height:25px; line-height:23px; border:0; background-color:#BBB; padding:0 5px 0 5px; list-style:none; font-size:12px; text-align:center; float:left; cursor:pointer}
.chatMainBox .nickname-ul li:HOVER{height:25px; line-height:23px; border:0; background-color:#DDD; padding:0 5px 0 5px; list-style:none; font-size:12px; text-align:center; float:left; cursor:pointer}
.chatMainBox .chat-tab{width:350px; height:475px; border:0px solid red; background:#FFF; position:relative; top:0; left:0; line-height:28px}
.chatMainBox .alreadyMessage-box{width:350px; height:345px; border:0px solid #000; position:relative; top:0px; left:0px}
.chatMainBox .alreadyMessage{width:350px; height:345px; border:0px solid red; overflow-y:auto; overflow-x:hidden}
.chatMainBox .friendInfo-box{width:350px; height:32px; border:0; background-color:#F7F7F7}
.chatMainBox .friendInfo-box .avatar{position:relative; top:1px; left:1px}
.chatMainBox .friendInfo-box .avatar img{max-width:30px; max-height:30px; border:0}
.chatMainBox .sendMessage-box{width:350px; height:100px; border:0px solid #000; position:relative; top:0px; left:0px}
.chatMainBox .sendMessage-box .sendMessage{width:350px; height:100px; border:0; border-top:1px solid #BBB; resize:none}
.chatMainBox .messageOperate-box{width:350px; height:30px; border:0px solid #000; background-color:#BBB; position:relative; top:0px; left:0px}
.chatMainBox .nickname-tab .current{height:25px; line-height:23px; border:0; background-color:#F7F7F7; padding:0 5px 0 5px; list-style:none; font-size:12px; text-align:center; float:left; cursor:pointer}
/**/
.friendFindBox{width:700px; height: 500px; border: 1px solid #DDD; position: absolute; top: 20px; left: 250px; overflow: hidden; }
.friendFindBox .searchOption{width:460px; height: 100px; border: 0;background-color: #F7F7F7; position: absolute; top: 4px; left: 0px; }
.friendFindBox .searchResult{width:460px; height: 351px; border: 0;background-color: #F7F7F7; position: absolute; top: 105px; left: 0px; overflow: auto;}
.friendFindBox .searchResult .friend{width: 100px; height: 50px; background-color: #FFF; float: left; }
/* */
.chatMainBox .fIssuedBox{width:334px; min-height:30px; border:0px solid #000; background-color:#FFF; margin-top:10px; position:relative; top:0; left:0}
.chatMainBox .fIssuedBox .avatar{width:30px; height:30px; border:0px solid #000; float:right}
.chatMainBox .fIssuedBox .avatar img{max-width:30px; max-height:30px; border:0}
.chatMainBox .issuedMessage{max-width:270px; border:0px solid #000; background-color:#E8F2FE; white-space:normal; word-wrap:break-word; position:relative; top:0; left:0; float:right}
/* */
.chatMainBox .fReplyBox{width:334px; min-height:30px; border:0px solid #000; background-color:#FFF; margin-top:10px; position:relative; top:0; left:0}
.chatMainBox .fReplyBox .avatar{width:30px; height:30px; border:0px solid #000; float:left}
.chatMainBox .fReplyBox .avatar img{max-width:30px; max-height:30px; border:0}
.chatMainBox .replyMessage{max-width:270px; border:0px solid #000; background-color:#E8F2FE; white-space:normal; word-wrap:break-word; position:relative; top:0; left:0; float:left}
/**/
.taskbarBox{width: 770px; height: 25px; background-color: #EEE; position: absolute; top: 575px; left: 230px;}
#friendGroupCM ul, #friendGroupCM ul li{list-style: none;}
.friendIframe {width: 700px; height: 600px; border: 0; overflow: hidden; } | WebRoot/css/friend/friend.css | body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img, div{margin:0; padding:0; border:0; font-family:"Microsoft Yahei",Tahoma; font-size: 12px; -webkit-text-size-adjust:none;}
/* Friend card. */
.friendCard{width:1000px; height:600px; position:absolute; top:0; left:0; overflow:hidden}
.friendList{width:230px; height:600px; background-color:#FFF; position:absolute; top:0; left:0; overflow:hidden}
/* Friend tab head*/
.friendList .friendTabHead{width:230px; height:25px; border:0; background:#EFEFEF; position:absolute; top: 0px; left:0; line-height:28px}
.friendList .friendTabHead .tabMenu{width:230px; height:25px; position: absolute; top:0; left:0; list-style:none}
.friendList .friendTabHead .tabMenu li{height:25px; line-height:25px; background-color:#F0F0F0; padding:0 10px 0 10px; list-style:none; font-size:12px; text-align:center; float:left; cursor:pointer; color: #666;}
.friendList .friendTabHead .tabMenu li:HOVER{background-color: #DDD;}
.friendList .friendTabHead .tabMenu li.current{background-color:#FFF;}
/* Friend tab body*/
.friendList .friendTabBody{width:230px; height:550px; background-color: #f0f0f0; position:absolute; top: 25px; left:0; overflow:hidden}
.friendList .friendTabBody .friendListBox{width:230px; height:550px; border:0px solid #000; position:relative; top:0; left:0; overflow-y:auto}
/* Friend group. */
.friendListBox .friendGroup{width:230px; height: 30px; border-bottom:1px solid #F3F3F3; background: #FEFEFE url("../../img/arrow.png") no-repeat 5px 9px; position:relative; top:0; left:0; font-size:12px; color: #444; line-height: 30px}
.friendListBox .friendGroup:HOVER{background-color: #F3F3F3;}
.friendListBox .friendGroup.focus{background: #F3F3F3 url("../../img/arrow.png") no-repeat 5px -12px;}
.friendListBox .friendGroup .groupName{width:210px; height:30px; position: absolute; top:0; left:20px; text-indent: 5px;}
/* Friend menu. */
.friendList .friendMenu{width: 230px; height: 25px; border: 0; background-color: #EEE; position: absolute;top: 575px; left: 0; }
.friendList .friendMenu .friendManage{width: 40px; height:25px; position: absolute; top:0; left:0; background: url("../../img/menu.png") no-repeat 13px 5px; position:relative; top:0; left:0; font-size:12px; }
.friendList .friendMenu .friendManage:HOVER{background: #FFF url("../../img/menu.png") no-repeat 13px -22px; cursor: default;}
.friendList .friendMenu .friendManage.focus{background: #FFF url("../../img/menu.png") no-repeat 13px -50px; cursor: default;}
.friendList .friendMenu .friendManage.finish{width: 40px; height:25px; position: absolute; top:0; left:0; background: #39F; text-align: center; color: #FFF; line-height: 25px; cursor: default;}
.friendList .friendMenu .friendManage.finish:HOVER{background-color: #06C; cursor: default;}
.friendList .friendMenu .friendManage.finish:ACTIVE{background-color: #039; cursor: default;}
.friendList .friendManageBox{width: 200px; height: 300px; background-color: #FFF; border: 1px solid; border-color: #CCC #CCC #FFF #FFF; position: absolute; top: -302px; left: 0px; -webkit-box-shadow: 1px -1px 2px rgba(0,0,0,.2); -moz-box-shadow: 1px -1px 2px rgba(0,0,0,.2); box-shadow: 1px -1px 2px #DDD; overflow: hidden; display: none;}
.friendList .friendManageBox .menu{width: 190px; height: 25px; background-color: #eee; margin: 5px 0 0 5px; line-height: 25px; text-indent: 1em;}
.friendList .friendManageBox .menu:HOVER{background-color: #3FB5ED; color: #FFF;}
.friendList .friendManageBox .menu:ACTIVE{background-color: #35B1EC; color: #FFF;}
/* Add Friend grouping. */
.friendListBox .addGroup{width: 230px; height: 25px; border-top:1px solid #FFF; background: #39F url("../../img/add.png") no-repeat -15px center; position:relative; top:0; left:0; text-align: center; color: #FFF; line-height:25px;}
.friendListBox .addGroup:HOVER{background-color: #06C; cursor: default;}
.friendListBox .addGroup:ACTIVE{background-color: #039; cursor: default;}
.friendGroup .groupName input[type=text]{width: 180px; height:23px; border: 0; position: relative; top:0; left: 0px; }
.friendGroup .groupName input[type=text]:focus{width: 180px; height:20px;outline: none;border: 1px solid #3399FF; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);position: relative; top:2px; left: 0px;}
/* Delete friends groups. */
.friendListBox .deleteGroupBox{width: 90px; border: 0px solid #000; position: relative; top: -25px; left: 140px;}
.friendListBox .deleteGroupBox .deleteGroup{width: 30px; height: 19px; background:url("../../img/delete.png") no-repeat 8px center; position: absolute; top: 2px; left: 25px; cursor: default;}
.friendListBox .deleteGroupBox .deleteGroup:HOVER{background: #E04343 url("../../img/delete.png") no-repeat -17px center; cursor: default;}
.friendListBox .deleteGroupBox .deleteGroup:ACTIVE{background-color: #C75050; cursor: default;}
/* Edit Friends group. */
.friendListBox .editGroupBox{width: 90px; border: 0px solid #000; position: relative; top: -25px; left: 140px;}
.friendListBox .editGroupBox .editGroup{width: 30px; height: 19px; background:url("../../img/edit.png") no-repeat 8px center; position: absolute; top: 2px; left: 25px; cursor: default;}
.friendListBox .editGroupBox .editGroup:HOVER{background: #06C url("../../img/edit.png") no-repeat -17px center; cursor: default;}
.friendListBox .editGroupBox .editGroup:ACTIVE{background-color: #C75050; cursor: default;}
/* Menu finish. */
.close{width:50px; height:25px; border: 0px solid red; background-color:#3399FF; position:relative; top: -25px; left: 180px; font-size:12px; color: #FFF; line-height:25px; text-indent:1em;}
.close:HOVER{background-color:#0066CC; cursor: default;}
.friendBox{width:230px; border:0px solid red; background-color:#FFF; position:relative; top:0; left:0}
.friendList .friend{width:230px; height:50px; border-bottom:1px solid #F0F0F0; position:relative; top:0; left:0;}
.friendList .friend .avatar{width:48px; height:48px; border:0px solid #000; position:relative; top:1px; left:1px}
.friendList .friend .avatar img{max-width:48px; max-height:48px}
.friendList .friend .nickname{width:180px; height:50px;border:0px solid #000; position:relative; top:-48px; left:50px}
.chatListBox{width:230px; height:550px; border:0; background-color:#FFF; font-size:12px; overflow-x:hidden; overflow-y:auto}
/* */
.chatMainBox{width:350px; height: 500px; border:1px solid #BBB; margin:0px 0 0 0px; background-color:#FFF; position:absolute; top:75px; left:230px; display:none; }
.chatMainBox .nickname-tab{width:350px; height:25px; border:0px solid #000; background-color:#BBB; position:relative; top:0px; left:0px}
.chatMainBox .nickname-ul{width:350px; height:25px; border:0px solid red; position:relative; top:0; left:0; list-style:none}
.chatMainBox .nickname-ul li{height:25px; line-height:23px; border:0; background-color:#BBB; padding:0 5px 0 5px; list-style:none; font-size:12px; text-align:center; float:left; cursor:pointer}
.chatMainBox .nickname-ul li:HOVER{height:25px; line-height:23px; border:0; background-color:#DDD; padding:0 5px 0 5px; list-style:none; font-size:12px; text-align:center; float:left; cursor:pointer}
.chatMainBox .chat-tab{width:350px; height:475px; border:0px solid red; background:#FFF; position:relative; top:0; left:0; line-height:28px}
.chatMainBox .alreadyMessage-box{width:350px; height:345px; border:0px solid #000; position:relative; top:0px; left:0px}
.chatMainBox .alreadyMessage{width:350px; height:345px; border:0px solid red; overflow-y:auto; overflow-x:hidden}
.chatMainBox .friendInfo-box{width:350px; height:32px; border:0; background-color:#F7F7F7}
.chatMainBox .friendInfo-box .avatar{position:relative; top:1px; left:1px}
.chatMainBox .friendInfo-box .avatar img{max-width:30px; max-height:30px; border:0}
.chatMainBox .sendMessage-box{width:350px; height:100px; border:0px solid #000; position:relative; top:0px; left:0px}
.chatMainBox .sendMessage-box .sendMessage{width:350px; height:100px; border:0; border-top:1px solid #BBB; resize:none}
.chatMainBox .messageOperate-box{width:350px; height:30px; border:0px solid #000; background-color:#BBB; position:relative; top:0px; left:0px}
.chatMainBox .nickname-tab .current{height:25px; line-height:23px; border:0; background-color:#F7F7F7; padding:0 5px 0 5px; list-style:none; font-size:12px; text-align:center; float:left; cursor:pointer}
/**/
.friendFindBox{width:700px; height: 500px; border: 1px solid #DDD; position: absolute; top: 20px; left: 250px; overflow: hidden; }
.friendFindBox .searchOption{width:460px; height: 100px; border: 0;background-color: #F7F7F7; position: absolute; top: 4px; left: 0px; }
.friendFindBox .searchResult{width:460px; height: 351px; border: 0;background-color: #F7F7F7; position: absolute; top: 105px; left: 0px; overflow: auto;}
.friendFindBox .searchResult .friend{width: 100px; height: 50px; background-color: #FFF; float: left; }
/* */
.chatMainBox .fIssuedBox{width:334px; min-height:30px; border:0px solid #000; background-color:#FFF; margin-top:10px; position:relative; top:0; left:0}
.chatMainBox .fIssuedBox .avatar{width:30px; height:30px; border:0px solid #000; float:right}
.chatMainBox .fIssuedBox .avatar img{max-width:30px; max-height:30px; border:0}
.chatMainBox .issuedMessage{max-width:270px; border:0px solid #000; background-color:#E8F2FE; white-space:normal; word-wrap:break-word; position:relative; top:0; left:0; float:right}
/* */
.chatMainBox .fReplyBox{width:334px; min-height:30px; border:0px solid #000; background-color:#FFF; margin-top:10px; position:relative; top:0; left:0}
.chatMainBox .fReplyBox .avatar{width:30px; height:30px; border:0px solid #000; float:left}
.chatMainBox .fReplyBox .avatar img{max-width:30px; max-height:30px; border:0}
.chatMainBox .replyMessage{max-width:270px; border:0px solid #000; background-color:#E8F2FE; white-space:normal; word-wrap:break-word; position:relative; top:0; left:0; float:left}
/**/
.taskbarBox{width: 770px; height: 25px; background-color: #EEE; position: absolute; top: 575px; left: 230px;}
#friendGroupCM ul, #friendGroupCM ul li{list-style: none;}
.friendIframe {width: 700px; height: 600px; border: 0; overflow: hidden; } | 0.203708 | 0.059921 |
/*=============================================================
Authour URI: www.binarytheme.com
License: Commons Attribution 3.0
http://creativecommons.org/licenses/by/3.0/
100% Free To use For Personal And Commercial Use.
IN EXCHANGE JUST GIVE US CREDITs AND TELL YOUR FRIENDS ABOUT US
======================================================== */
/*=====================================
THEME SWITCHER STYLES
===================================*/
.switcher {
width:150px;
padding:15px;
position:fixed;
z-index:2000;
top:90px;
right:0;
background-color:#fff;
-webkit-transition:all .4s ease-in-out;
-moz-transition:all .4s ease-in-out;
-ms-transition:all .4s ease-in-out;
-o-transition:all .4s ease-in-out;
transition:all .4s ease-in-out;
color:#000000;
}
.switcher #switch-panel {
position:absolute;
right:-34px;
top:0px;
width:34px;
height:38px;
z-index:1990;
display:block;
background-color:#fff;
margin-left:0;
cursor: pointer;
}
.switcher #switch-panel i {
font-size: 20px;
font-weight:900;
line-height: 40px;
padding-left:10px;
color:#000;
}
.switcher .colors-list {
margin:0;
padding:0;
}
.switcher .colors-list li {
float:left;
display:block;
margin-bottom:2px;
margin-right:6px;
}
.switcher .colors-list li a {
display:inline-block;
width:24px;
height:24px;
cursor: pointer;
}
.switcher .colors-list-bk {
padding:5px 30px 5px 30px;
}
.switcher .colors-list-bk li {
float:left;
display:block;
margin-bottom:2px;
margin-right:6px;
}
.switcher .colors-list-bk li a,.switcher .colors-list-bk li a:hover {
display:block;
cursor: pointer;
color:black;
text-decoration:none;
font-weight:900;
}
.span-text {
display:block;
font-size:12px;
}
.switcher .colors-list a.yellow {
background-color:#8A8A36;
}
.switcher .colors-list a.blue {
background-color:#5656AA;
}
.switcher .colors-list a.green {
background-color:#339966;
}
.switcher .colors-list a.red {
background-color:#F83434;
} | webserver/webroot/assets/css/style-switcher.css | /*=============================================================
Authour URI: www.binarytheme.com
License: Commons Attribution 3.0
http://creativecommons.org/licenses/by/3.0/
100% Free To use For Personal And Commercial Use.
IN EXCHANGE JUST GIVE US CREDITs AND TELL YOUR FRIENDS ABOUT US
======================================================== */
/*=====================================
THEME SWITCHER STYLES
===================================*/
.switcher {
width:150px;
padding:15px;
position:fixed;
z-index:2000;
top:90px;
right:0;
background-color:#fff;
-webkit-transition:all .4s ease-in-out;
-moz-transition:all .4s ease-in-out;
-ms-transition:all .4s ease-in-out;
-o-transition:all .4s ease-in-out;
transition:all .4s ease-in-out;
color:#000000;
}
.switcher #switch-panel {
position:absolute;
right:-34px;
top:0px;
width:34px;
height:38px;
z-index:1990;
display:block;
background-color:#fff;
margin-left:0;
cursor: pointer;
}
.switcher #switch-panel i {
font-size: 20px;
font-weight:900;
line-height: 40px;
padding-left:10px;
color:#000;
}
.switcher .colors-list {
margin:0;
padding:0;
}
.switcher .colors-list li {
float:left;
display:block;
margin-bottom:2px;
margin-right:6px;
}
.switcher .colors-list li a {
display:inline-block;
width:24px;
height:24px;
cursor: pointer;
}
.switcher .colors-list-bk {
padding:5px 30px 5px 30px;
}
.switcher .colors-list-bk li {
float:left;
display:block;
margin-bottom:2px;
margin-right:6px;
}
.switcher .colors-list-bk li a,.switcher .colors-list-bk li a:hover {
display:block;
cursor: pointer;
color:black;
text-decoration:none;
font-weight:900;
}
.span-text {
display:block;
font-size:12px;
}
.switcher .colors-list a.yellow {
background-color:#8A8A36;
}
.switcher .colors-list a.blue {
background-color:#5656AA;
}
.switcher .colors-list a.green {
background-color:#339966;
}
.switcher .colors-list a.red {
background-color:#F83434;
} | 0.358578 | 0.053924 |
.background_chocolate2,
.hover_background_chocolate2:hover,
.active_background_chocolate2:active:hover {
background: #e27d35;
background-image: -moz-linear-gradient(top, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(235, 164, 114)), color-stop(100%, rgb(226, 125, 53)));
background-image: -webkit-linear-gradient(top, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
background-image: -o-linear-gradient(top, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
background-image: -ms-linear-gradient(top, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
background-image: linear-gradient(to bottom, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eba472', endColorstr='#e27d35',GradientType=0 );
}
.background_chocolate2h,
.hover_background_chocolate2h:hover,
.active_background_chocolate2h:active:hover {
background: #e27d35;
background-image: -moz-linear-gradient(top, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(244, 204, 175)), color-stop(100%, rgb(233, 157, 102)));
background-image: -webkit-linear-gradient(top, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
background-image: -o-linear-gradient(top, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
background-image: -ms-linear-gradient(top, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
background-image: linear-gradient(to bottom, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4ccaf', endColorstr='#e99d66',GradientType=0 );
}
.background_chocolate2a,
.hover_background_chocolate2a:hover,
.active_background_chocolate2a:active:hover {
background: #e27d35;
background-image: -moz-linear-gradient(top, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(233, 157, 102)), color-stop(100%, rgb(244, 204, 175)));
background-image: -webkit-linear-gradient(top, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
background-image: -o-linear-gradient(top, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
background-image: -ms-linear-gradient(top, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
background-image: linear-gradient(to bottom, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e99d66', endColorstr='#f4ccaf',GradientType=0 );
}
.background_chocolate2s,
.hover_background_chocolate2s:hover,
.active_background_chocolate2s:active:hover {
background: #e27d35;
background-image: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(244, 204, 175)));
background-image: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
background-image: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4ccaf',GradientType=0 );
}
.background_color_chocolate2,
.hover_background_color_chocolate2:hover,
.active_background_color_chocolate2:active:hover {
background-color:#e27d35;
}
.background_first_color_chocolate2,
.hover_background_first_color_chocolate2:hover,
.active_background_first_color_chocolate2:active:hover {
background-color:#eba472;
}
.background_last_color_chocolate2,
.hover_background_last_color_chocolate2:hover,
.active_background_color_last_chocolate2:active:hover {
background-color:#e27d35;
}
/* ------------------------------ color settings -------------------------------*/
.color_chocolate2,
.hover_color_chocolate2:hover,
.active_color_chocolate2:active:hover {
color: #c8c8c8;
}
.color_chocolate2h,
.hover_color_chocolate2h:hover,
.active_color_chocolate2h:active:hover {
color: #c8c8c8;
}
.color_chocolate2a,
.hover_color_chocolate2a:hover,
.active_color_chocolate2a:active:hover {
color: #ff0;
}
.color_chocolate2s,
.hover_color_chocolate2s:hover,
.active_color_chocolate2s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_chocolate2,
.hover_border_chocolate2:hover,
.active_border_chocolate2:active:hover {
border-color: #e27d35 #e27d35 #e27d35 #e27d35;
}
.border_chocolate2h,
.hover_border_chocolate2h:hover,
.active_border_chocolate2h:active:hover {
border-color: #dc6e1f #dc6e1f #dc6e1f #dc6e1f;
}
.border_chocolate2a,
.hover_border_chocolate2a:hover,
.active_border_chocolate2a:active:hover {
border-color: #c3621c #c3621c #c3621c #c3621c;
}
.border_chocolate2s,
.hover_border_chocolate2s:hover,
.active_border_chocolate2s:active:hover {
border-color: #f4ccaf #f4ccaf #f4ccaf #f4ccaf;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_chocolate2,
.hover_shadow_expand_chocolate2:hover,
.active_shadow_expand_chocolate2:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(226, 125, 53, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(226, 125, 53, .39);
box-shadow: 0em 0em 1em 0.25em rgba(226, 125, 53, .39);
}
.shadow_expand_chocolate2h,
.hover_shadow_expand_chocolate2h:hover,
.active_shadow_expand_chocolate2h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(233, 157, 102, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(233, 157, 102, .50);
box-shadow: 0em 0em 1em 0.25em rgba(233, 157, 102, .50);
}
.shadow_expand_chocolate2a,
.hover_shadow_expand_chocolate2a:hover,
.active_shadow_expand_chocolate2a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .63);
box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .63);
}
.shadow_expand_chocolate2s,
.hover_shadow_expand_chocolate2s:hover,
.active_shadow_expand_chocolate2s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .78);
box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_chocolate2,
.hover_shadow_left_chocolate2:hover,
.active_shadow_left_chocolate2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_left_chocolate2h,
.hover_shadow_left_chocolate2h:hover,
.active_shadow_left_chocolate2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_left_chocolate2a,
.hover_shadow_left_chocolate2a:hover,
.active_shadow_left_chocolate2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_left_chocolate2s,
.hover_shadow_left_chocolate2s:hover,
.active_shadow_left_chocolate2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_chocolate2,
.hover_shadow_right_chocolate2:hover,
.active_shadow_right_chocolate2:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(226, 125, 53, .39);
box-shadow: 0.5em 0em 1em rgba(226, 125, 53, .39);
}
.shadow_right_chocolate2h,
.hover_shadow_right_chocolate2h:hover,
.active_shadow_right_chocolate2h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(233, 157, 102, .50);
box-shadow: 0.5em 0em 1em rgba(233, 157, 102, .50);
}
.shadow_right_chocolate2a,
.hover_shadow_right_chocolate2a:hover,
.active_shadow_right_chocolate2a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .63);
box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .63);
}
.shadow_right_chocolate2s,
.hover_shadow_right_chocolate2s:hover,
.active_shadow_right_chocolate2s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .78);
box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_chocolate2,
.hover_shadow_top_chocolate2:hover,
.active_shadow_top_chocolate2:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(226, 125, 53, .39);
box-shadow: 0em -0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_top_chocolate2h,
.hover_shadow_top_chocolate2h:hover,
.active_shadow_top_chocolate2h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(233, 157, 102, .50);
box-shadow: 0em -0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_top_chocolate2a,
.hover_shadow_top_chocolate2a:hover,
.active_shadow_top_chocolate2a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .63);
box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_top_chocolate2s,
.hover_shadow_top_chocolate2s:hover,
.active_shadow_top_chocolate2s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .78);
box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_chocolate2,
.hover_shadow_bottom_chocolate2:hover,
.active_shadow_bottom_chocolate2:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(226, 125, 53, .39);
box-shadow: 0em 0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_bottom_chocolate2h,
.hover_shadow_bottom_chocolate2h:hover,
.active_shadow_bottom_chocolate2h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(233, 157, 102, .50);
box-shadow: 0em 0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_bottom_chocolate2a,
.hover_shadow_bottom_chocolate2a:hover,
.active_shadow_bottom_chocolate2a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .63);
box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_bottom_chocolate2s,
.hover_shadow_bottom_chocolate2s:hover,
.active_shadow_bottom_chocolate2s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .78);
box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_chocolate2,
.hover_shadow_top_left_chocolate2:hover,
.active_shadow_top_left_chocolate2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_top_left_chocolate2h,
.hover_shadow_top_left_chocolate2h:hover,
.active_shadow_top_left_chocolate2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_top_left_chocolate2a,
.hover_shadow_top_left_chocolate2a:hover,
.active_shadow_top_left_chocolate2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_top_left_chocolate2s,
.hover_shadow_top_left_chocolate2s:hover,
.active_shadow_top_left_chocolate2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_chocolate2,
.hover_shadow_top_right_chocolate2:hover,
.active_shadow_top_right_chocolate2:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(226, 125, 53, .39);
box-shadow: 0.5em -0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_top_right_chocolate2h,
.hover_shadow_top_right_chocolate2h:hover,
.active_shadow_top_right_chocolate2h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(233, 157, 102, .50);
box-shadow: 0.5em -0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_top_right_chocolate2a,
.hover_shadow_top_right_chocolate2a:hover,
.active_shadow_top_right_chocolate2a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .63);
box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_top_right_chocolate2s,
.hover_shadow_top_right_chocolate2s:hover,
.active_shadow_top_right_chocolate2s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .78);
box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_chocolate2,
.hover_shadow_bottom_left_chocolate2:hover,
.active_shadow_bottom_left_chocolate2:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(226, 125, 53, .39);
box-shadow: -0.5em 0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_bottom_left_chocolate2h,
.hover_shadow_bottom_left_chocolate2h:hover,
.active_shadow_bottom_left_chocolate2h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(233, 157, 102, .50);
box-shadow: -0.5em 0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_bottom_left_chocolate2a,
.hover_shadow_bottom_left_chocolate2a:hover,
.active_shadow_bottom_left_chocolate2a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .63);
box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_bottom_left_chocolate2s,
.hover_shadow_bottom_left_chocolate2s:hover,
.active_shadow_bottom_left_chocolate2s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .78);
box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_chocolate2,
.hover_shadow_bottom_right_chocolate2:hover,
.active_shadow_bottom_right_chocolate2:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(226, 125, 53, .39);
box-shadow: 0.5em 0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_bottom_right_chocolate2h,
.hover_shadow_bottom_right_chocolate2h:hover,
.active_shadow_bottom_right_chocolate2h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(233, 157, 102, .50);
box-shadow: 0.5em 0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_bottom_right_chocolate2a,
.hover_shadow_bottom_right_chocolate2a:hover,
.active_shadow_bottom_right_chocolate2a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .63);
box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_bottom_right_chocolate2s,
.hover_shadow_bottom_right_chocolate2s:hover,
.active_shadow_bottom_right_chocolate2s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .78);
box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .78);
} | widgets/common/assets/gradients/simple/chocolate/chocolate2.css | .background_chocolate2,
.hover_background_chocolate2:hover,
.active_background_chocolate2:active:hover {
background: #e27d35;
background-image: -moz-linear-gradient(top, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(235, 164, 114)), color-stop(100%, rgb(226, 125, 53)));
background-image: -webkit-linear-gradient(top, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
background-image: -o-linear-gradient(top, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
background-image: -ms-linear-gradient(top, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
background-image: linear-gradient(to bottom, rgb(235, 164, 114) 0%, rgb(226, 125, 53) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eba472', endColorstr='#e27d35',GradientType=0 );
}
.background_chocolate2h,
.hover_background_chocolate2h:hover,
.active_background_chocolate2h:active:hover {
background: #e27d35;
background-image: -moz-linear-gradient(top, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(244, 204, 175)), color-stop(100%, rgb(233, 157, 102)));
background-image: -webkit-linear-gradient(top, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
background-image: -o-linear-gradient(top, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
background-image: -ms-linear-gradient(top, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
background-image: linear-gradient(to bottom, rgb(244, 204, 175) 0%, rgb(233, 157, 102) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4ccaf', endColorstr='#e99d66',GradientType=0 );
}
.background_chocolate2a,
.hover_background_chocolate2a:hover,
.active_background_chocolate2a:active:hover {
background: #e27d35;
background-image: -moz-linear-gradient(top, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(233, 157, 102)), color-stop(100%, rgb(244, 204, 175)));
background-image: -webkit-linear-gradient(top, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
background-image: -o-linear-gradient(top, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
background-image: -ms-linear-gradient(top, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
background-image: linear-gradient(to bottom, rgb(233, 157, 102) 0%, rgb(244, 204, 175) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e99d66', endColorstr='#f4ccaf',GradientType=0 );
}
.background_chocolate2s,
.hover_background_chocolate2s:hover,
.active_background_chocolate2s:active:hover {
background: #e27d35;
background-image: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(244, 204, 175)));
background-image: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
background-image: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(244, 204, 175) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4ccaf',GradientType=0 );
}
.background_color_chocolate2,
.hover_background_color_chocolate2:hover,
.active_background_color_chocolate2:active:hover {
background-color:#e27d35;
}
.background_first_color_chocolate2,
.hover_background_first_color_chocolate2:hover,
.active_background_first_color_chocolate2:active:hover {
background-color:#eba472;
}
.background_last_color_chocolate2,
.hover_background_last_color_chocolate2:hover,
.active_background_color_last_chocolate2:active:hover {
background-color:#e27d35;
}
/* ------------------------------ color settings -------------------------------*/
.color_chocolate2,
.hover_color_chocolate2:hover,
.active_color_chocolate2:active:hover {
color: #c8c8c8;
}
.color_chocolate2h,
.hover_color_chocolate2h:hover,
.active_color_chocolate2h:active:hover {
color: #c8c8c8;
}
.color_chocolate2a,
.hover_color_chocolate2a:hover,
.active_color_chocolate2a:active:hover {
color: #ff0;
}
.color_chocolate2s,
.hover_color_chocolate2s:hover,
.active_color_chocolate2s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_chocolate2,
.hover_border_chocolate2:hover,
.active_border_chocolate2:active:hover {
border-color: #e27d35 #e27d35 #e27d35 #e27d35;
}
.border_chocolate2h,
.hover_border_chocolate2h:hover,
.active_border_chocolate2h:active:hover {
border-color: #dc6e1f #dc6e1f #dc6e1f #dc6e1f;
}
.border_chocolate2a,
.hover_border_chocolate2a:hover,
.active_border_chocolate2a:active:hover {
border-color: #c3621c #c3621c #c3621c #c3621c;
}
.border_chocolate2s,
.hover_border_chocolate2s:hover,
.active_border_chocolate2s:active:hover {
border-color: #f4ccaf #f4ccaf #f4ccaf #f4ccaf;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_chocolate2,
.hover_shadow_expand_chocolate2:hover,
.active_shadow_expand_chocolate2:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(226, 125, 53, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(226, 125, 53, .39);
box-shadow: 0em 0em 1em 0.25em rgba(226, 125, 53, .39);
}
.shadow_expand_chocolate2h,
.hover_shadow_expand_chocolate2h:hover,
.active_shadow_expand_chocolate2h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(233, 157, 102, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(233, 157, 102, .50);
box-shadow: 0em 0em 1em 0.25em rgba(233, 157, 102, .50);
}
.shadow_expand_chocolate2a,
.hover_shadow_expand_chocolate2a:hover,
.active_shadow_expand_chocolate2a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .63);
box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .63);
}
.shadow_expand_chocolate2s,
.hover_shadow_expand_chocolate2s:hover,
.active_shadow_expand_chocolate2s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .78);
box-shadow: 0em 0em 1em 0.25em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_chocolate2,
.hover_shadow_left_chocolate2:hover,
.active_shadow_left_chocolate2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_left_chocolate2h,
.hover_shadow_left_chocolate2h:hover,
.active_shadow_left_chocolate2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_left_chocolate2a,
.hover_shadow_left_chocolate2a:hover,
.active_shadow_left_chocolate2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_left_chocolate2s,
.hover_shadow_left_chocolate2s:hover,
.active_shadow_left_chocolate2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_chocolate2,
.hover_shadow_right_chocolate2:hover,
.active_shadow_right_chocolate2:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(226, 125, 53, .39);
box-shadow: 0.5em 0em 1em rgba(226, 125, 53, .39);
}
.shadow_right_chocolate2h,
.hover_shadow_right_chocolate2h:hover,
.active_shadow_right_chocolate2h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(233, 157, 102, .50);
box-shadow: 0.5em 0em 1em rgba(233, 157, 102, .50);
}
.shadow_right_chocolate2a,
.hover_shadow_right_chocolate2a:hover,
.active_shadow_right_chocolate2a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .63);
box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .63);
}
.shadow_right_chocolate2s,
.hover_shadow_right_chocolate2s:hover,
.active_shadow_right_chocolate2s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .78);
box-shadow: 0.5em 0em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_chocolate2,
.hover_shadow_top_chocolate2:hover,
.active_shadow_top_chocolate2:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(226, 125, 53, .39);
box-shadow: 0em -0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_top_chocolate2h,
.hover_shadow_top_chocolate2h:hover,
.active_shadow_top_chocolate2h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(233, 157, 102, .50);
box-shadow: 0em -0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_top_chocolate2a,
.hover_shadow_top_chocolate2a:hover,
.active_shadow_top_chocolate2a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .63);
box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_top_chocolate2s,
.hover_shadow_top_chocolate2s:hover,
.active_shadow_top_chocolate2s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .78);
box-shadow: 0em -0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_chocolate2,
.hover_shadow_bottom_chocolate2:hover,
.active_shadow_bottom_chocolate2:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(226, 125, 53, .39);
box-shadow: 0em 0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_bottom_chocolate2h,
.hover_shadow_bottom_chocolate2h:hover,
.active_shadow_bottom_chocolate2h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(233, 157, 102, .50);
box-shadow: 0em 0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_bottom_chocolate2a,
.hover_shadow_bottom_chocolate2a:hover,
.active_shadow_bottom_chocolate2a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .63);
box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_bottom_chocolate2s,
.hover_shadow_bottom_chocolate2s:hover,
.active_shadow_bottom_chocolate2s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .78);
box-shadow: 0em 0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_chocolate2,
.hover_shadow_top_left_chocolate2:hover,
.active_shadow_top_left_chocolate2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
box-shadow: -0.5em -0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_top_left_chocolate2h,
.hover_shadow_top_left_chocolate2h:hover,
.active_shadow_top_left_chocolate2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
box-shadow: -0.5em -0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_top_left_chocolate2a,
.hover_shadow_top_left_chocolate2a:hover,
.active_shadow_top_left_chocolate2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_top_left_chocolate2s,
.hover_shadow_top_left_chocolate2s:hover,
.active_shadow_top_left_chocolate2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
box-shadow: -0.5em -0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_chocolate2,
.hover_shadow_top_right_chocolate2:hover,
.active_shadow_top_right_chocolate2:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(226, 125, 53, .39);
box-shadow: 0.5em -0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_top_right_chocolate2h,
.hover_shadow_top_right_chocolate2h:hover,
.active_shadow_top_right_chocolate2h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(233, 157, 102, .50);
box-shadow: 0.5em -0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_top_right_chocolate2a,
.hover_shadow_top_right_chocolate2a:hover,
.active_shadow_top_right_chocolate2a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .63);
box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_top_right_chocolate2s,
.hover_shadow_top_right_chocolate2s:hover,
.active_shadow_top_right_chocolate2s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .78);
box-shadow: 0.5em -0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_chocolate2,
.hover_shadow_bottom_left_chocolate2:hover,
.active_shadow_bottom_left_chocolate2:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(226, 125, 53, .39);
box-shadow: -0.5em 0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_bottom_left_chocolate2h,
.hover_shadow_bottom_left_chocolate2h:hover,
.active_shadow_bottom_left_chocolate2h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(233, 157, 102, .50);
box-shadow: -0.5em 0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_bottom_left_chocolate2a,
.hover_shadow_bottom_left_chocolate2a:hover,
.active_shadow_bottom_left_chocolate2a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .63);
box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_bottom_left_chocolate2s,
.hover_shadow_bottom_left_chocolate2s:hover,
.active_shadow_bottom_left_chocolate2s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .78);
box-shadow: -0.5em 0.5em 1em rgba(244, 204, 175, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_chocolate2,
.hover_shadow_bottom_right_chocolate2:hover,
.active_shadow_bottom_right_chocolate2:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(226, 125, 53, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(226, 125, 53, .39);
box-shadow: 0.5em 0.5em 1em rgba(226, 125, 53, .39);
}
.shadow_bottom_right_chocolate2h,
.hover_shadow_bottom_right_chocolate2h:hover,
.active_shadow_bottom_right_chocolate2h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(233, 157, 102, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(233, 157, 102, .50);
box-shadow: 0.5em 0.5em 1em rgba(233, 157, 102, .50);
}
.shadow_bottom_right_chocolate2a,
.hover_shadow_bottom_right_chocolate2a:hover,
.active_shadow_bottom_right_chocolate2a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .63);
box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .63);
}
.shadow_bottom_right_chocolate2s,
.hover_shadow_bottom_right_chocolate2s:hover,
.active_shadow_bottom_right_chocolate2s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .78);
box-shadow: 0.5em 0.5em 1em rgba(244, 204, 175, .78);
} | 0.548674 | 0.125012 |
*{
box-sizing: border-box;
}
body{
height: 100vh;
max-height: 100vh;
background: #fcfcfc;
}
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto{
padding-right: 0;
padding-left: 0;
}
.col-3{
border-right: 1px solid rgba(0, 0, 0, .10);;
padding-left: 10px;
padding-right: 10px;
}
.note-editable{
height: 120px;
}
.tb_clear_margin_bs{
height: 50px;
margin-left: -10px;
margin-right: -10px;
padding-left: 10px;
padding-right: 10px;
border-bottom: 1px solid rgba(0, 0, 0, .10);
}
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
::-webkit-scrollbar
{
width: 1px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #d2d2d2;
}
.loading{
width: 140px;
height: 26px;
line-height: 26px;
position: relative;
background: #f2f2f2;
}
.loading img{
width: 22px;
height: 22px;
}
.loading .text{
display: inline-block;
font-size: 12px;
font-weight: bold;
}
.note-editor{
margin-top: 10px;
}
#main-content{
height: 98%;
}
#main-content > .row{
height: 100%;
}
#main-content .left_header{
position: relative;
}
#main-content .main-menu{
display: none;
width: 80%;
position: absolute;
top: 40px;
z-index: 3;
background-clip: padding-box;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, .15);
border-radius: 3px;
box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}
#main-content .main-menu:before{
content: "";
width: 20px;
height: 8px;
position: absolute;
bottom: 100%;
transform: translateY(1px);
left: 10px;
background: url('https://static.xx.fbcdn.net/rsrc.php/v3/yA/r/mWwjUpf3qYx.png') no-repeat -17px -831px;
}
#main-content .main-menu ul{
width: 100%;
padding: 0;
list-style: none;
}
#main-content .main-menu ul li{
width: 100%;
height: 40px;
font-size: 15px;
padding: 5px;
padding-left: 40px;
display: flex;
position: relative;
transition: 0.24s;
background: #fff;
cursor: pointer;
}
#main-content .main-menu ul li:hover{
background: -webkit-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: -o-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: -moz-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
color: #fff;
}
#main-content .main-menu ul li img{
width: 30px;
height: 30px;
border-radius: 100%;
margin-right: 10px;
position: absolute;
left: 4px;
}
#main-content .main-menu ul li .user-name{
width: 100%;
}
#main-content .col-9{
border-bottom: 1px solid rgba(0, 0, 0, .10);;
}
#main-content .setting{
font-size: 24px;
}
#main-content .logo{
display: inline-block;
width: 100%;
height: 46px;
line-height: 46px;
position: relative;
margin: auto;
font-size: 20px;
font-weight: bold;
}
#main-content .logo .content{
width: 170px;
height: 40px;
line-height: 38px;
background: #000000;
color: #fff;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#main-content .logo .content span:nth-child(2){
background: #FF9900;
color: #000000;
border-radius: 5px;
font-size: 16px;
padding: 5px;
}
#main-content{
position: relative;
}
#main-content .left_row{
height: 100%;
}
#main-content .left_side{
border-right: 1px solid rgba(0, 0, 0, .10);;
display: flex;
flex-direction: column;
}
#main-content .left_side .search{
position: relative;
height: 40px;
margin-top: 10px;
}
#main-content .left_side .search .icon{
position: absolute;
top: 5.5px;
left: 8px;
color: #ccc;
}
#main-content .left_side .search #tb_search_friend{
width: 100%;
padding-left: 30px;
background: #f1f1ff;
border: none;
border-radius: 20px;
transition: 0.2s;
}
#main-content .left_side .search #tb_search_friend:focus{
box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
-o-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
-ms-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
border-radius: 20px;
}
#main-content .left_side .list_friend,
#main-content .left_side .live_search{
display: none;
height: 100%;
}
#main-content .right_side .row{
margin: 0;
height: 100%;
}
#main-content .right_side .right_side_content_center{
border-right: 1px solid rgba(0, 0, 0, .10);
}
#main-content .right_side .right_side_content_center,
#main-content .right_side .right_side_content_right{
border-bottom: 1px solid rgba(0, 0, 0, .10);
}
.profile_page {
height: 100%;
width: calc(100% + 1px);
display: block;
overflow-y: auto;
position: relative;
user-select: none;
}
.profile_page .profile_close{
top: 10px;
right: 10px;
width: 26px;
height: 26px;
}
.profile_page .profile_close i{
font-size: 20px;
cursor: pointer;
transition: 0.23s;
}
.profile_page .profile_close:hover i{
transform: translate(-50%, -50%) scale(1.2);
}
.profile_page .cover{
background-repeat: no-repeat;
background-size: 110% 130%;
background-position: center;
height: 31%;
overflow: hidden;
}
.profile_page .profile_head{
position: relative;
height: 100%;
padding-top: 10px;
background: -webkit-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: -o-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: -moz-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
}
.profile_page .profile_head .profile_thumbnail{
overflow: hidden;
margin: auto;
width: 105px;
height: 105px;
position: absolute;
bottom: 10px;
left: 20px;
border-radius: 60px;
border: 2.7px solid #fff;
}
.profile_page .profile_head .profile_thumbnail .change_avatar{
width: 100%;
height: 100%;
position: absolute;
top: 0;
transition: 0.3s;
background: #222;
opacity: 0;
transform: scale(1.4);
z-index: 2;
}
.profile_page .profile_head .profile_thumbnail .change_avatar i{
color: #fff;
font-size: 24px;
cursor: pointer;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.profile_page .profile_head .profile_thumbnail:hover .change_avatar {
opacity: 0.4;
transform: scale(1);
}
.profile_page .profile_head .profile_thumbnail img{
position: absolute;
width: 100px;
height: 100px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.profile_page .profile_head .profile_name{
margin-top: 4px;
color: #fff;
font-size: 20px;
position: absolute;
bottom: 20px;
left: 130px;
}
.profile_page .profile_head .profile_controll{
text-align: right;
padding-right: 20px;
margin-top: 7px;
padding-bottom: 20px;
position: absolute;
bottom: 0;
right: 0;
}
.profile_page .profile_head .profile_controll button{
border: none;
background: #fdfdfd;
margin-left: 15px;
cursor: pointer;
color: #555;
}
.profile_page .profile_head .profile_controll button i{
margin-right: 6px;
}
.profile_page .profile_head .profile_controll button:hover{
background: #dfdfdf;
}
.profile_page .profile_body{
overflow-y: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
position: relative;
}
.profile_page .profile_body .profile_up_posts{
position: fixed;
bottom: 18px;
right: 330px;
width: 36px;
height: 36px;
line-height: 34px;
border-radius: 36px;
border: 1px solid transparent;
z-index: 5;
background: #45b1ef;
cursor: pointer;
opacity: 1;
color: #fff;
font-size: 14px;
display: none;
}
.profile_page .profile_body .profile_up_posts .text{
display: none;
}
.profile_page .profile_body .profile_up_posts .icon{
font-size: 17px;
text-align: center;
transition: 0.3s;
}
.profile_page .profile_body .profile_up_posts:hover{
border: 1px solid #45b1ef;
color: #45b1ef;
background: #fdfdfd;
}
.profile_page .profile_body .profile_up_posts:hover .icon{
transform: scale(1.1);
}
.profile_page .profile_body .profile_menu{
height: 38px;
opacity: 1;
}
ul.top{
padding: 0 20px;
list-style: none;
width: 100%;
display: flex;
margin-top: 4px;
margin-bottom: 0;
}
.profile_page .profile_body .profile_menu ul li{
width: 50%;
height: 30px;
line-height: 30px;
text-align: center;
font-size: 16px;
position: relative;
transition: 0.5s;
color: #666;
cursor: pointer;
text-transform: uppercase;
}
.profile_page .profile_body .profile_menu ul li::after{
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 3px;
background: rgba(105, 156, 248, 0.8);
box-shadow: 0px 3px 10px rgba(105, 156, 248, 0.8);
transition: 0.4s;
}
.profile_page .profile_body .profile_menu ul li.actived{
color: rgba(105, 156, 248, 0.9);
}
.profile_page .profile_body .profile_menu ul li:hover::after{
width: 100%;
}
.profile_page .profile_body .profile_menu ul li.actived::after{
width: 100%;
}
.profile_page .profile_body .profile_information{
height: 100%;
overflow-y: hidden;
position: relative;
padding-right: 1px;
}
.profile_page .profile_body .profile_information .infor-content{
padding-left: 12px;
font-size: 14px;
}
.profile_page .profile_body .profile_information .infor-content fieldset{
margin-top: 10px;
margin-bottom: 0px;
position: relative;
padding-left: 6px;
color: rgba(30, 30, 33,0.7);
min-height: 27px;
}
.profile_page .profile_body .profile_information .infor-content label{
margin-bottom: 2px;
}
.profile_page .profile_body .profile_information .infor-content .lb_infor{
position: relative;
min-height: 22px;
}
.profile_page .profile_body .profile_information .infor-content .lb_infor img{
max-width: 50px;
}
.profile_page .profile_body .profile_information .infor-content .lb_infor select,
.profile_page .profile_body .profile_information .infor-content .lb_infor input[type='date']{
width: 150px;
}
.profile_page .profile_body .profile_information .infor-content .lb_infor .modify{
position: absolute;
top: 0;
left: 0;
height: 0;
width: 100%;
z-index: 4;
-webkit-box-shadow: 0 2px 6px rgba(0,0,0,.2), 0 2px 3px rgba(0,0,0,.05);
box-shadow: 0 2px 6px rgba(0,0,0,.2), 0 2px 3px rgba(0,0,0,.05);
}
.profile_page .profile_body .profile_information .infor-content .for_lb_const_width .modify{
width: calc(100% + 10px);
}
.profile_page .profile_body .profile_information .infor-content .ta100 .modify{
width: 100%;
}
.profile_page .profile_body .profile_information .infor-content .lb_const_width{
position: absolute;
}
.profile_page .profile_body .profile_information .infor-content .for_lb_const_width{
width: calc(100% - 100px);
word-wrap: break-word;
font-weight: bold;
margin-left: 90px;
margin-right: 10px;
}
.profile_page .profile_body .profile_information .infor-content .lb_block{
font-weight: bold;
border-bottom: 1px solid rgba(0, 0, 0, .10);
text-transform: uppercase;
margin-bottom: 12px;
}
.profile_page .profile_body .profile_information .contact_infor .lb_const_width{
width: 105px;
}
.profile_page .profile_body .profile_information .contact_infor .for_lb_const_width{
margin-left: 110px;
margin-right: 10px;
}
.profile_page .profile_body .profile_information ul li .edit{
border: none;
background: transparent;
display: inline-block;
width: 25px !important;
height: 25px !important;
font-size: 14px;
transform: translateY(-6px);
cursor: pointer;
transition: 0.1s;
}
.profile_page .profile_body .profile_information ul li .edit_content:hover{
transform: translateY(-6px) scale(1.13);
color: rgba(70, 154, 244, 0.9);
}
.profile_page .profile_body .profile_information ul li .save_edit{
display: none;
transform: translateY(-8px);
}
.profile_page .profile_body .profile_information ul li .save_edit:after{
content: "";
width: 10px;
height: 1.3px;
background: #222;
position: absolute;
top: calc(100% - 2px);
right: 2px;
}
.profile_page .profile_body .profile_information ul li .save_edit i{
animation: icon_animation 1.2s infinite;
}
.profile_page .profile_body .profile_information .infor-content ul li{
margin-bottom: 12px;
}
.profile_page .profile_body .profile_information .infor-content .tb_fs_edit .edit{
position: absolute;
right: 8px;
top: 1px;
display: none;
transition: 0.2s;
}
.profile_page .profile_body .profile_information .infor-content .tb_fs_edit:hover{
background: #e8edff;
transition: 0.1s;
}
.profile_page .profile_body .profile_information .infor-content .tb_fs_edit:hover .edit{
display: inline-block;
}
@keyframes icon_animation{
0%{
color: #495057;
transform: translateY(-5px);
}
100%{
color: rgba(70, 154, 244, 0.9);
transform: translateY(0);
}
}
.profile_page .profile_body .profile_information ul li p{
/*padding-left: 14px;*/
}
.profile_page .profile_body .profile_information .content{
height: 100%;
padding: 10px 20px;
overflow-y: auto;
}
.profile_page .profile_body .profile_information .content .item{
height: 100%;
}
.profile_page .profile_body .profile_information ul{
padding: 0;
list-style: none;
}
.profile_page .profile_body .profile_information h3{
margin-top: 10px;
margin-bottom: 15px;
margin-left: 5px;
text-transform: uppercase;
font-size: 14px;
font-weight: bold;
color: #454545;
}
.profile_page .profile_body .profile_information .tb_infor > ul > li{
position: relative;
padding-left: 10px;
padding-bottom: 10px;
padding-top: 10px;
border-left: 1px solid rgba(100, 195, 255, 0.6);
}
.profile_page .profile_body .profile_information .tb_infor > ul > li .top,
.profile_page .profile_body .profile_information .tb_infor > ul > li:first-child:before{
content: "";
width: 16px;
height: 24px;
border-radius: 100%;
background: #fff;
position: absolute;
top: 0;
left: 0;
transform: translateX(-50%);
}
.profile_page .profile_body .profile_information .tb_infor > ul > li .top{
z-index: 4;
height: 16px;
top: 19px;
border: 1px solid rgba(100, 195, 255, 0.6);
}
.profile_page .profile_body .profile_information .tb_infor > ul > li .top > .center{
width: 9px;
height: 9px;
background: rgba(105, 156, 248, 0.9);
border-radius: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.profile_page .profile_body .profile_information .tb_infor > ul > li .bottom{
width: 100%;
height: 1px;
border-bottom: 1px solid rgba(0, 0, 0, .2);
transform: translateY(10px);
}
/* .profile_page .cover_first {
position: absolute;
background: #fcfcfc;
height: 100%;
top: 0;
right: 1px;
width: 11px;
-webkit-transition: all .5s;
opacity: 1;
} */
/*.profile_page:hover .cover_first{
opacity: 0;
width: 0;
}*/
.profile_page .profile_body .profile_information .content_post .wrapper-image{
overflow: hidden;
}
.profile_page .profile_body .profile_information .content_post p strong,
.profile_page .profile_body .profile_information .content_post p{
font-weight: normal !important;
}
.profile_page .profile_body .profile_information .content_post img{
margin-right: 10px;
margin-bottom: 10px;
transition: 0.35s;
}
.profile_page .profile_body .profile_information .content_post img:hover{
animation: animate_image 4s infinite;
}
@keyframes animate_image{
0% {
transform: scale(1) translate(0,0);
}
20%{
transform: scale(1.2) translate(0,0);
}
40%{
transform: scale(1.2) translate(10px,0);
}
60%{
transform: scale(1.1) translate(0,10px);
}
80%{
transform: scale(1.21) translate(10px,0);
}
100%{
transform: scale(1.25) translate(0,0);
}
}
.profile_page .profile_body .profile_information .content .item .list_image{
display: flex;
flex-wrap: wrap;
margin-top: 20px;
margin-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
}
.profile_page .profile_body .profile_information .content .item .list_image .list_item{
width: 100px;
height: 100px;
overflow: hidden;
margin-right: 20px;
position: relative;
}
.profile_page .profile_body .profile_information .content .item .list_image img{
width: 100%;
height: 100%;
position: absolute;
top: 50%;
left: 50%;
transition: 0.35s;
transform: translate(-50%, -50%);
}
.profile_page .profile_body .profile_information .content .item .list_image .list_item:hover img{
transform: translate(-50%, -50%) scale(1.35);
}
.profile_page .profile_body .profile_information .content .item h3.time{
text-transform: none;
}
.profile_page .profile_body .profile_information .content .item .content_post{
padding-left: 15px;
padding-right: 15px;
}
.tb_full_width{
position: fixed;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0, 0.6);
z-index: 6;
display: none;
}
.tb_full_width iframe img{
width: 80% !important;
}
.tb_full_width .cover{
width: 540px;
margin: auto;
padding-top: 30px;
position: relative;
}
.tb_full_width .cover .button{
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, 0px);
cursor: pointer;
width: 100%;
height: 26px;
background: #232425;
color: #fff;
text-align: center;
text-transform: uppercase;
line-height: 26px;
z-index: 100;
}
.tb_full_width .cover .button .share{
width: 59%;
display: inline-block;
}
.tb_full_width .cover .button .cancel{
display: inline-block;
width: 39%;
}
.ephox-pastry-statebutton[aria-label="Web URL"],
.ephox-polish-dialog-button[title="Locked proportions"]{
display: none !important;
} | public/css/login/chat.css | *{
box-sizing: border-box;
}
body{
height: 100vh;
max-height: 100vh;
background: #fcfcfc;
}
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto{
padding-right: 0;
padding-left: 0;
}
.col-3{
border-right: 1px solid rgba(0, 0, 0, .10);;
padding-left: 10px;
padding-right: 10px;
}
.note-editable{
height: 120px;
}
.tb_clear_margin_bs{
height: 50px;
margin-left: -10px;
margin-right: -10px;
padding-left: 10px;
padding-right: 10px;
border-bottom: 1px solid rgba(0, 0, 0, .10);
}
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
::-webkit-scrollbar
{
width: 1px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #d2d2d2;
}
.loading{
width: 140px;
height: 26px;
line-height: 26px;
position: relative;
background: #f2f2f2;
}
.loading img{
width: 22px;
height: 22px;
}
.loading .text{
display: inline-block;
font-size: 12px;
font-weight: bold;
}
.note-editor{
margin-top: 10px;
}
#main-content{
height: 98%;
}
#main-content > .row{
height: 100%;
}
#main-content .left_header{
position: relative;
}
#main-content .main-menu{
display: none;
width: 80%;
position: absolute;
top: 40px;
z-index: 3;
background-clip: padding-box;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, .15);
border-radius: 3px;
box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}
#main-content .main-menu:before{
content: "";
width: 20px;
height: 8px;
position: absolute;
bottom: 100%;
transform: translateY(1px);
left: 10px;
background: url('https://static.xx.fbcdn.net/rsrc.php/v3/yA/r/mWwjUpf3qYx.png') no-repeat -17px -831px;
}
#main-content .main-menu ul{
width: 100%;
padding: 0;
list-style: none;
}
#main-content .main-menu ul li{
width: 100%;
height: 40px;
font-size: 15px;
padding: 5px;
padding-left: 40px;
display: flex;
position: relative;
transition: 0.24s;
background: #fff;
cursor: pointer;
}
#main-content .main-menu ul li:hover{
background: -webkit-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: -o-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: -moz-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
color: #fff;
}
#main-content .main-menu ul li img{
width: 30px;
height: 30px;
border-radius: 100%;
margin-right: 10px;
position: absolute;
left: 4px;
}
#main-content .main-menu ul li .user-name{
width: 100%;
}
#main-content .col-9{
border-bottom: 1px solid rgba(0, 0, 0, .10);;
}
#main-content .setting{
font-size: 24px;
}
#main-content .logo{
display: inline-block;
width: 100%;
height: 46px;
line-height: 46px;
position: relative;
margin: auto;
font-size: 20px;
font-weight: bold;
}
#main-content .logo .content{
width: 170px;
height: 40px;
line-height: 38px;
background: #000000;
color: #fff;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#main-content .logo .content span:nth-child(2){
background: #FF9900;
color: #000000;
border-radius: 5px;
font-size: 16px;
padding: 5px;
}
#main-content{
position: relative;
}
#main-content .left_row{
height: 100%;
}
#main-content .left_side{
border-right: 1px solid rgba(0, 0, 0, .10);;
display: flex;
flex-direction: column;
}
#main-content .left_side .search{
position: relative;
height: 40px;
margin-top: 10px;
}
#main-content .left_side .search .icon{
position: absolute;
top: 5.5px;
left: 8px;
color: #ccc;
}
#main-content .left_side .search #tb_search_friend{
width: 100%;
padding-left: 30px;
background: #f1f1ff;
border: none;
border-radius: 20px;
transition: 0.2s;
}
#main-content .left_side .search #tb_search_friend:focus{
box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
-o-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
-ms-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
border-radius: 20px;
}
#main-content .left_side .list_friend,
#main-content .left_side .live_search{
display: none;
height: 100%;
}
#main-content .right_side .row{
margin: 0;
height: 100%;
}
#main-content .right_side .right_side_content_center{
border-right: 1px solid rgba(0, 0, 0, .10);
}
#main-content .right_side .right_side_content_center,
#main-content .right_side .right_side_content_right{
border-bottom: 1px solid rgba(0, 0, 0, .10);
}
.profile_page {
height: 100%;
width: calc(100% + 1px);
display: block;
overflow-y: auto;
position: relative;
user-select: none;
}
.profile_page .profile_close{
top: 10px;
right: 10px;
width: 26px;
height: 26px;
}
.profile_page .profile_close i{
font-size: 20px;
cursor: pointer;
transition: 0.23s;
}
.profile_page .profile_close:hover i{
transform: translate(-50%, -50%) scale(1.2);
}
.profile_page .cover{
background-repeat: no-repeat;
background-size: 110% 130%;
background-position: center;
height: 31%;
overflow: hidden;
}
.profile_page .profile_head{
position: relative;
height: 100%;
padding-top: 10px;
background: -webkit-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: -o-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: -moz-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
background: linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
}
.profile_page .profile_head .profile_thumbnail{
overflow: hidden;
margin: auto;
width: 105px;
height: 105px;
position: absolute;
bottom: 10px;
left: 20px;
border-radius: 60px;
border: 2.7px solid #fff;
}
.profile_page .profile_head .profile_thumbnail .change_avatar{
width: 100%;
height: 100%;
position: absolute;
top: 0;
transition: 0.3s;
background: #222;
opacity: 0;
transform: scale(1.4);
z-index: 2;
}
.profile_page .profile_head .profile_thumbnail .change_avatar i{
color: #fff;
font-size: 24px;
cursor: pointer;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.profile_page .profile_head .profile_thumbnail:hover .change_avatar {
opacity: 0.4;
transform: scale(1);
}
.profile_page .profile_head .profile_thumbnail img{
position: absolute;
width: 100px;
height: 100px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.profile_page .profile_head .profile_name{
margin-top: 4px;
color: #fff;
font-size: 20px;
position: absolute;
bottom: 20px;
left: 130px;
}
.profile_page .profile_head .profile_controll{
text-align: right;
padding-right: 20px;
margin-top: 7px;
padding-bottom: 20px;
position: absolute;
bottom: 0;
right: 0;
}
.profile_page .profile_head .profile_controll button{
border: none;
background: #fdfdfd;
margin-left: 15px;
cursor: pointer;
color: #555;
}
.profile_page .profile_head .profile_controll button i{
margin-right: 6px;
}
.profile_page .profile_head .profile_controll button:hover{
background: #dfdfdf;
}
.profile_page .profile_body{
overflow-y: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
position: relative;
}
.profile_page .profile_body .profile_up_posts{
position: fixed;
bottom: 18px;
right: 330px;
width: 36px;
height: 36px;
line-height: 34px;
border-radius: 36px;
border: 1px solid transparent;
z-index: 5;
background: #45b1ef;
cursor: pointer;
opacity: 1;
color: #fff;
font-size: 14px;
display: none;
}
.profile_page .profile_body .profile_up_posts .text{
display: none;
}
.profile_page .profile_body .profile_up_posts .icon{
font-size: 17px;
text-align: center;
transition: 0.3s;
}
.profile_page .profile_body .profile_up_posts:hover{
border: 1px solid #45b1ef;
color: #45b1ef;
background: #fdfdfd;
}
.profile_page .profile_body .profile_up_posts:hover .icon{
transform: scale(1.1);
}
.profile_page .profile_body .profile_menu{
height: 38px;
opacity: 1;
}
ul.top{
padding: 0 20px;
list-style: none;
width: 100%;
display: flex;
margin-top: 4px;
margin-bottom: 0;
}
.profile_page .profile_body .profile_menu ul li{
width: 50%;
height: 30px;
line-height: 30px;
text-align: center;
font-size: 16px;
position: relative;
transition: 0.5s;
color: #666;
cursor: pointer;
text-transform: uppercase;
}
.profile_page .profile_body .profile_menu ul li::after{
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 3px;
background: rgba(105, 156, 248, 0.8);
box-shadow: 0px 3px 10px rgba(105, 156, 248, 0.8);
transition: 0.4s;
}
.profile_page .profile_body .profile_menu ul li.actived{
color: rgba(105, 156, 248, 0.9);
}
.profile_page .profile_body .profile_menu ul li:hover::after{
width: 100%;
}
.profile_page .profile_body .profile_menu ul li.actived::after{
width: 100%;
}
.profile_page .profile_body .profile_information{
height: 100%;
overflow-y: hidden;
position: relative;
padding-right: 1px;
}
.profile_page .profile_body .profile_information .infor-content{
padding-left: 12px;
font-size: 14px;
}
.profile_page .profile_body .profile_information .infor-content fieldset{
margin-top: 10px;
margin-bottom: 0px;
position: relative;
padding-left: 6px;
color: rgba(30, 30, 33,0.7);
min-height: 27px;
}
.profile_page .profile_body .profile_information .infor-content label{
margin-bottom: 2px;
}
.profile_page .profile_body .profile_information .infor-content .lb_infor{
position: relative;
min-height: 22px;
}
.profile_page .profile_body .profile_information .infor-content .lb_infor img{
max-width: 50px;
}
.profile_page .profile_body .profile_information .infor-content .lb_infor select,
.profile_page .profile_body .profile_information .infor-content .lb_infor input[type='date']{
width: 150px;
}
.profile_page .profile_body .profile_information .infor-content .lb_infor .modify{
position: absolute;
top: 0;
left: 0;
height: 0;
width: 100%;
z-index: 4;
-webkit-box-shadow: 0 2px 6px rgba(0,0,0,.2), 0 2px 3px rgba(0,0,0,.05);
box-shadow: 0 2px 6px rgba(0,0,0,.2), 0 2px 3px rgba(0,0,0,.05);
}
.profile_page .profile_body .profile_information .infor-content .for_lb_const_width .modify{
width: calc(100% + 10px);
}
.profile_page .profile_body .profile_information .infor-content .ta100 .modify{
width: 100%;
}
.profile_page .profile_body .profile_information .infor-content .lb_const_width{
position: absolute;
}
.profile_page .profile_body .profile_information .infor-content .for_lb_const_width{
width: calc(100% - 100px);
word-wrap: break-word;
font-weight: bold;
margin-left: 90px;
margin-right: 10px;
}
.profile_page .profile_body .profile_information .infor-content .lb_block{
font-weight: bold;
border-bottom: 1px solid rgba(0, 0, 0, .10);
text-transform: uppercase;
margin-bottom: 12px;
}
.profile_page .profile_body .profile_information .contact_infor .lb_const_width{
width: 105px;
}
.profile_page .profile_body .profile_information .contact_infor .for_lb_const_width{
margin-left: 110px;
margin-right: 10px;
}
.profile_page .profile_body .profile_information ul li .edit{
border: none;
background: transparent;
display: inline-block;
width: 25px !important;
height: 25px !important;
font-size: 14px;
transform: translateY(-6px);
cursor: pointer;
transition: 0.1s;
}
.profile_page .profile_body .profile_information ul li .edit_content:hover{
transform: translateY(-6px) scale(1.13);
color: rgba(70, 154, 244, 0.9);
}
.profile_page .profile_body .profile_information ul li .save_edit{
display: none;
transform: translateY(-8px);
}
.profile_page .profile_body .profile_information ul li .save_edit:after{
content: "";
width: 10px;
height: 1.3px;
background: #222;
position: absolute;
top: calc(100% - 2px);
right: 2px;
}
.profile_page .profile_body .profile_information ul li .save_edit i{
animation: icon_animation 1.2s infinite;
}
.profile_page .profile_body .profile_information .infor-content ul li{
margin-bottom: 12px;
}
.profile_page .profile_body .profile_information .infor-content .tb_fs_edit .edit{
position: absolute;
right: 8px;
top: 1px;
display: none;
transition: 0.2s;
}
.profile_page .profile_body .profile_information .infor-content .tb_fs_edit:hover{
background: #e8edff;
transition: 0.1s;
}
.profile_page .profile_body .profile_information .infor-content .tb_fs_edit:hover .edit{
display: inline-block;
}
@keyframes icon_animation{
0%{
color: #495057;
transform: translateY(-5px);
}
100%{
color: rgba(70, 154, 244, 0.9);
transform: translateY(0);
}
}
.profile_page .profile_body .profile_information ul li p{
/*padding-left: 14px;*/
}
.profile_page .profile_body .profile_information .content{
height: 100%;
padding: 10px 20px;
overflow-y: auto;
}
.profile_page .profile_body .profile_information .content .item{
height: 100%;
}
.profile_page .profile_body .profile_information ul{
padding: 0;
list-style: none;
}
.profile_page .profile_body .profile_information h3{
margin-top: 10px;
margin-bottom: 15px;
margin-left: 5px;
text-transform: uppercase;
font-size: 14px;
font-weight: bold;
color: #454545;
}
.profile_page .profile_body .profile_information .tb_infor > ul > li{
position: relative;
padding-left: 10px;
padding-bottom: 10px;
padding-top: 10px;
border-left: 1px solid rgba(100, 195, 255, 0.6);
}
.profile_page .profile_body .profile_information .tb_infor > ul > li .top,
.profile_page .profile_body .profile_information .tb_infor > ul > li:first-child:before{
content: "";
width: 16px;
height: 24px;
border-radius: 100%;
background: #fff;
position: absolute;
top: 0;
left: 0;
transform: translateX(-50%);
}
.profile_page .profile_body .profile_information .tb_infor > ul > li .top{
z-index: 4;
height: 16px;
top: 19px;
border: 1px solid rgba(100, 195, 255, 0.6);
}
.profile_page .profile_body .profile_information .tb_infor > ul > li .top > .center{
width: 9px;
height: 9px;
background: rgba(105, 156, 248, 0.9);
border-radius: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.profile_page .profile_body .profile_information .tb_infor > ul > li .bottom{
width: 100%;
height: 1px;
border-bottom: 1px solid rgba(0, 0, 0, .2);
transform: translateY(10px);
}
/* .profile_page .cover_first {
position: absolute;
background: #fcfcfc;
height: 100%;
top: 0;
right: 1px;
width: 11px;
-webkit-transition: all .5s;
opacity: 1;
} */
/*.profile_page:hover .cover_first{
opacity: 0;
width: 0;
}*/
.profile_page .profile_body .profile_information .content_post .wrapper-image{
overflow: hidden;
}
.profile_page .profile_body .profile_information .content_post p strong,
.profile_page .profile_body .profile_information .content_post p{
font-weight: normal !important;
}
.profile_page .profile_body .profile_information .content_post img{
margin-right: 10px;
margin-bottom: 10px;
transition: 0.35s;
}
.profile_page .profile_body .profile_information .content_post img:hover{
animation: animate_image 4s infinite;
}
@keyframes animate_image{
0% {
transform: scale(1) translate(0,0);
}
20%{
transform: scale(1.2) translate(0,0);
}
40%{
transform: scale(1.2) translate(10px,0);
}
60%{
transform: scale(1.1) translate(0,10px);
}
80%{
transform: scale(1.21) translate(10px,0);
}
100%{
transform: scale(1.25) translate(0,0);
}
}
.profile_page .profile_body .profile_information .content .item .list_image{
display: flex;
flex-wrap: wrap;
margin-top: 20px;
margin-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
}
.profile_page .profile_body .profile_information .content .item .list_image .list_item{
width: 100px;
height: 100px;
overflow: hidden;
margin-right: 20px;
position: relative;
}
.profile_page .profile_body .profile_information .content .item .list_image img{
width: 100%;
height: 100%;
position: absolute;
top: 50%;
left: 50%;
transition: 0.35s;
transform: translate(-50%, -50%);
}
.profile_page .profile_body .profile_information .content .item .list_image .list_item:hover img{
transform: translate(-50%, -50%) scale(1.35);
}
.profile_page .profile_body .profile_information .content .item h3.time{
text-transform: none;
}
.profile_page .profile_body .profile_information .content .item .content_post{
padding-left: 15px;
padding-right: 15px;
}
.tb_full_width{
position: fixed;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0, 0.6);
z-index: 6;
display: none;
}
.tb_full_width iframe img{
width: 80% !important;
}
.tb_full_width .cover{
width: 540px;
margin: auto;
padding-top: 30px;
position: relative;
}
.tb_full_width .cover .button{
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, 0px);
cursor: pointer;
width: 100%;
height: 26px;
background: #232425;
color: #fff;
text-align: center;
text-transform: uppercase;
line-height: 26px;
z-index: 100;
}
.tb_full_width .cover .button .share{
width: 59%;
display: inline-block;
}
.tb_full_width .cover .button .cancel{
display: inline-block;
width: 39%;
}
.ephox-pastry-statebutton[aria-label="Web URL"],
.ephox-polish-dialog-button[title="Locked proportions"]{
display: none !important;
} | 0.297368 | 0.043103 |
body {
margin: 0;
padding: 0;
font-family: Lucida Grande, Verdana, Geneva, Sans-serif;
font-size: 11px;
color: #4F5155;
background: #fff url(<?php echo $image_url; ?>background.jpg) repeat-x left top;
}
a {
color: #8B0D00;
background-color: transparent;
text-decoration: none;
font-weight: bold;
}
a:visited {
color: #8B0D00;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #000;
text-decoration: none;
background-color: transparent;
}
#header {
margin: 0;
padding: 0;
}
#header_left {
background-color: transparent;
float: left;
padding: 21px 0 0 32px;
margin: 0
}
#header_right {
background-color: transparent;
float: right;
text-align: right;
padding: 35px 50px 20px 0;
margin: 0
}
#footer {
margin: 20px 0 15px 0;
padding: 0;
}
#footer p {
font-size: 10px;
color: #999;
text-align: center;
}
#outer {
margin: 30px 40px 0 40px;
}
img {
padding:0;
border: 0;
margin: 0;
}
.nopad {
padding:0;
border: 0;
margin: 0;
}
table {
background-color: #efefef;
}
th {
background-color: #eee;
font-weight: bold;
padding: 6px;
text-align: left;
}
td {
background-color: #fff;
padding: 6px;
}
form {
margin: 0;
padding: 0;
}
.input {
font-family: Lucida Grande, Verdana, Geneva, Sans-serif;
font-size: 11px;
width: 600px;
color: #333;
border: 1px solid #B3B4BD;
font-size: 11px;
height: 2em;
padding: 0;
margin: 0;
}
.textarea {
font-family: Lucida Grande, Verdana, Geneva, Sans-serif;
font-size: 12px;
width: 600px;
color: #333;
border: 1px solid #B3B4BD;
padding: 0;
margin: 0;
}
.select {
background-color: #fff;
font-size: 11px;
font-weight: normal;
color: #333;
padding: 0;
margin: 0 0 3px 0;
}
.checkbox {
background-color: transparent;
padding: 0;
border: 0;
}
.submit {
background-color: #8B0D00;
color: #FFF;
font-weight: normal;
border: 1px solid #000;
margin: 6px 0 0 0;
padding: 1px 5px 1px 5px;
} | lib/ci/scaffolding/views/stylesheet.css | body {
margin: 0;
padding: 0;
font-family: Lucida Grande, Verdana, Geneva, Sans-serif;
font-size: 11px;
color: #4F5155;
background: #fff url(<?php echo $image_url; ?>background.jpg) repeat-x left top;
}
a {
color: #8B0D00;
background-color: transparent;
text-decoration: none;
font-weight: bold;
}
a:visited {
color: #8B0D00;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #000;
text-decoration: none;
background-color: transparent;
}
#header {
margin: 0;
padding: 0;
}
#header_left {
background-color: transparent;
float: left;
padding: 21px 0 0 32px;
margin: 0
}
#header_right {
background-color: transparent;
float: right;
text-align: right;
padding: 35px 50px 20px 0;
margin: 0
}
#footer {
margin: 20px 0 15px 0;
padding: 0;
}
#footer p {
font-size: 10px;
color: #999;
text-align: center;
}
#outer {
margin: 30px 40px 0 40px;
}
img {
padding:0;
border: 0;
margin: 0;
}
.nopad {
padding:0;
border: 0;
margin: 0;
}
table {
background-color: #efefef;
}
th {
background-color: #eee;
font-weight: bold;
padding: 6px;
text-align: left;
}
td {
background-color: #fff;
padding: 6px;
}
form {
margin: 0;
padding: 0;
}
.input {
font-family: Lucida Grande, Verdana, Geneva, Sans-serif;
font-size: 11px;
width: 600px;
color: #333;
border: 1px solid #B3B4BD;
font-size: 11px;
height: 2em;
padding: 0;
margin: 0;
}
.textarea {
font-family: Lucida Grande, Verdana, Geneva, Sans-serif;
font-size: 12px;
width: 600px;
color: #333;
border: 1px solid #B3B4BD;
padding: 0;
margin: 0;
}
.select {
background-color: #fff;
font-size: 11px;
font-weight: normal;
color: #333;
padding: 0;
margin: 0 0 3px 0;
}
.checkbox {
background-color: transparent;
padding: 0;
border: 0;
}
.submit {
background-color: #8B0D00;
color: #FFF;
font-weight: normal;
border: 1px solid #000;
margin: 6px 0 0 0;
padding: 1px 5px 1px 5px;
} | 0.348423 | 0.133246 |
@import url(breakpoints.css) screen and (color);
@font-face {
font-family: 'Gilroy-SemiBold';
src: url('шрифт/Gilroy-SemiBold.ttf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy-Medium';
src: url('шрифт/Gilroy-Medium.ttf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy-Light';
src: url('шрифт/Gilroy-Light.ttf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy-Bold';
src: url('шрифт/Gilroy-Bold.ttf');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Gilroy-Light', sans-serif;
font-size: 18px;
color: #163950;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
p, h1, h2, h3, h4, h5, ul, li, button, input, label, select, container {
margin: 0;
padding: 0;
font-weight: normal;
font-family: 'Gilroy-Light', sans-serif;
}
form label, form input {
height: 22px;
padding: 8px 25px;
font-size: 16px;
font-family: "Gilroy-Medium", sans-serif;
color: #163950
}
form select, form input:not([type="submit"]):not([type="range"]){
padding: 8px 25px;
border: 0.5px solid #d1d1d1;
height: 40px;
border-radius: 5px;
font-size: 16px;
font-family: "Gilroy-Medium", sans-serif;
color: #163950;
box-shadow: inset 6px 6px 6px -6px #d1d1d1;
}
h1{
text-transform: uppercase;
font-size: 35px;
font-family: 'Gilroy-Bold', sans-serif;
text-align: center;
}
.btn {
color: #fff;
width: 210px;
height: 50px;
font-size: 20px;
border: none;
border-radius: 10px 10px 20px 20px;
margin: 30px auto 0;
z-index: 1;
cursor: pointer;
transition: width 0.5s;
}
.btn_blue {
background: #27c1de;
margin-top: 50px;
}
.btn_blue:hover {
width: 220px;
background: #a3d46b;
}
.btn_orange{
background: linear-gradient(#f9e19b,#ed6114);
}
.btn_orange:hover {
width: 220px;
background: linear-gradient(#26c0df, #0a6996);
}
.wave {
width: 40px;
height: 10px;
margin: 27px auto 0;
}
.section_header {
position: relative;
height: 950px;
background-image: url("imgs/bgHeader.png");
background-position: center;
background-size: cover;
}
/* Header section */
.header {
width: 100%;
margin: 0 auto;
background: transparent;
display: flex;
padding: 25px 0 0;
align-items: center;
text-align: center;
}
.header div {
width: 33.3%;
display: flex;
justify-content: center;
margin: 0;
}
.navigation ul {
display: flex;
justify-content: center;
}
.navigation ul li{
position: relative;
display: flex;
flex-wrap: wrap;
list-style-type: none;
}
.navigation ul li img {
opacity: 0;
position: absolute;
bottom: -10px;
left: 20px;
height: 10px;
width: 40px;
transition: opacity 1s;
}
.navigation ul li a {
font-size: 18px;
text-decoration: none;
color: #163950;
margin: 0 10px;
}
.navigation ul li a:hover ~ img{
opacity: 1;
}
.logo {
cursor: pointer;
margin: 0;
}
.phones {
width: 100%;
position: relative;
display: flex;
flex-wrap: wrap;
margin: 0;
}
.phones a {
font-size: 20px;
margin: 0 1%;
font-family: 'Gilroy-SemiBold', sans-serif;
text-decoration: none;
color: #163950;
transition: color 0.5s;
}
.phones a:hover {
color: #ed6114;
}
.header_banner {
width: 40%;
display: block;
margin: 70px auto 0;
text-align: center;
}
.header_banner h1 {
text-transform: capitalize;
font-size: 33px;
padding-top: 20px;
}
.header_banner p {
font-size: 19px;
margin-top: 30px;
}
.section_header image:first-child{
position: absolute;
}
.section_header > img{
width: 100%;
position: absolute;
bottom: 0px;
}
.section_header > img:last-of-type{
bottom: -30px;
}
/* Section Our Work */
.section_our_work {
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
}
.section_our_work h1{
text-transform: uppercase;
font-size: 35px;
font-family: 'Gilroy-Bold', sans-serif;
display: flex;
margin: 0 auto;
}
/* Slider */
#slider{
width:70%;
height:500px;
overflow-x: hidden;
overflow-y: visible;
margin:35px auto 50px;
}
#slider-inner{
position:relative;
width:300%;
height:400px;
transition:all .7s cubic-bezier(0.68,-0.55,0.265,1.55);
}
#slider-inner div{
position:relative;
width:30%;
height:400px;
display:inline-block;
}
#slider-inner div label{
position: absolute;
background: url('imgs/slides/arw.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 59px;
width: 59px;
opacity:0;
cursor:pointer;
transition: opacity .7s;
}
#slider-inner div label:nth-of-type(2){
transform: rotate(180deg);
right: 40%;
bottom: -94px;
}
#slider-inner div label:nth-of-type(1){
left: 40%;
bottom: -94px;
}
#slider-inner div label:hover{
background: url("imgs/slides/hovered_arw.png");
}
#first:checked ~ #slider #slider-inner{
margin-left: 5%;
}
#first:checked ~ #slider #slider-inner #first-slide label{
opacity:1;
}
#second:checked ~ #slider #slider-inner{
margin-left: -85%;
}
#second:checked ~ #slider #slider-inner #second-slide label{
opacity:1;
}
#third:checked ~ #slider #slider-inner{
margin-left: -175%;
}
#third:checked ~ #slider #slider-inner #third-slide label{
opacity:1;
}
#first-slide{
background: url('imgs/slides/1.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#second-slide{
background: url('imgs/slides/2.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#third-slide{
background: url('imgs/slides/3.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.section_our_work input[type="radio"], .radio{
height: 0;
visibility: hidden;
}
/* End of slider */
/* S.Pool price */
.section_price {
position: relative;
padding: 0;
margin: 0;
width: 100%;
background: url('imgs/section_price_bg.png') no-repeat;
background-position: center;
background-size: cover;
}
.price_word {
display: block;
text-align: center;
}
.price_word h1{
font-size: 35px;
font-family: 'Gilroy-Bold', sans-serif;
color: #163950;
}
.price_word p {
font-family: 'Gilroy-Light', sans-serif;
font-weight: normal;
font-size: 20px;
color: #163950;
margin-top: 30px;
}
#qw{
display: flex;
position: relative;
margin: 30px 0 0;
}
.form_container {
margin: 80px 0 137px;
width: 50%;
}
#spool_price > img {
position: absolute;
bottom: -31px;
}
#spool_price {
position: relative;
width: 70%;
float: right;
background: url("imgs/price_form_bg.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 20px 30px;
}
.price_form {
margin: 0 auto;
}
.price_form div {
margin: 20px 0;
align-items: center;
}
#submit_query{
width: 200px;
display: block;
}
.price_form div label{
margin-right: 20px;
float: left;
font-family: 'Gilroy-Bold', sans-serif;
font-size: 18px;
color: #163950;
width: 30%;
}
.price_form div select, .price_form div input{
font-family: 'Gilroy-Medium', sans-serif;
font-size: 18px;
color: #163950;
width: 50%;
}
.price_form div input{
width: 30%;
}
.price_form div p {
float: right;
width: 15%;
height: 22px;
padding: 8px 0;
}
#pool_img {
width: 50%;
height: 420px;
position: absolute;
left: 45%;
overflow: visible;
background: url('imgs/Pool.png');
background-repeat: no-repeat;
background-size: cover;
}
.section_price > img {
position: absolute;
bottom: -100px;
}
/* Section Products */
.section_products {
position: relative;
width: 100%;
padding-bottom: 200px;
}
.products_word {
width: 100%;
margin-top: 23px;
text-align: center;
}
/* Section Products - Slider #2 */
.product_container {
display: block;
text-align: center;
margin-top: 30px;
overflow: hidden;
}
#slider-inner2{
position:relative;
width:90%;
height:350px;
display: flex;
margin: 0 auto;
}
#product_list1, #product_list2, #product_list3{
display: none;
width: 100%;
opacity: 0;
transition: all 0.5s;
}
#product_list1 div, #product_list2 div, #product_list3 div{
width: 23%;
position: relative;
margin: 0 0.7%;
border: 0.5px solid #d1d1d1;
border-radius: 5px;
}
#slider-inner2 div > div:hover {
cursor: pointer;
box-shadow: inset 10px 10px 10px -6px #d1d1d1;
}
#slider-inner2 div > div > img {
max-width: 90%;
height: 60%;
margin: 10px auto 0;
}
#slider-inner2 div > div > p {
width: 80%;
margin: 0 auto;
}
.product_container input {
visibility: hidden;
}
#product_category{
margin-bottom: 50px;
}
#product_category label{
text-decoration: underline;
}
#product_category label:hover{
cursor: pointer;
}
#product_category input:nth-of-type(1):checked ~ label:first-of-type{
color: #ed6114;
text-decoration: none;
}
#product_category input:nth-of-type(2):checked ~ label:nth-of-type(2){
color: #ed6114;
text-decoration: none;
}
#product_category input:nth-of-type(3):checked ~ label:nth-of-type(3){
color: #ed6114;
text-decoration: none;
}
#slider-inner2 div label{
position: absolute;
background: url('imgs/slides/arw.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
z-index: 20;
height: 59px;
width: 59px;
opacity:0;
bottom: 42.5%;
cursor: pointer;
}
#slider-inner2 div > label:first-of-type{
left: 0;
}
#slider-inner2 div > label:nth-of-type(2){
right: 0;
transform: rotate(180deg);
}
#slider-inner2 div > label:hover{
background: url("imgs/slides/hovered_arw.png");
}
#product_list_first:checked ~ #slider-inner2 #product_list1{
display: flex;
flex-wrap: wrap;
justify-content: center;
opacity: 1;
transition: opacity .5s;
}
#product_list_first:checked ~ #slider-inner2 #product_list1 label{
opacity:1;
}
#product_list_second:checked ~ #slider-inner2 #product_list2{
display: flex;
flex-wrap: wrap;
justify-content: center;
opacity: 1;
}
#product_list_second:checked ~ #slider-inner2 #product_list2 label{
opacity:1;
}
#product_list_third:checked ~ #slider-inner2 #product_list3{
display: flex;
flex-wrap: wrap;
justify-content: center;
opacity: 1;
}
#product_list_third:checked ~ #slider-inner2 #product_list3 label{
opacity:1;
}
/* END of 4th section - Slider #2 */
/* Section Benefits */
.section_benefits {
position: relative;
text-align: center;
background: #27c1de;
color: #fff;
font-family: 'Gilroy-SemiBold';
font-size: 23px;
}
.benefits_list {
width: 100%;
display: flex;
text-align: center;
margin-top: 59px;
}
.benefits_list > div {
width: 33.3%;
}
.benefits_list > div > img {
width: 72px;
height: 72px;
margin-bottom: 28px;
}
.section_benefits > img {
position: absolute;
width: 50%;
top: -70%;
right: 5%;
transition: top 1.5s ease-in-out;
}
/* Section Feedback */
.section_feedback {
position: relative;
padding-bottom: 100px;
text-align: center;
background: url('imgs/фон\ обратная\ связь.png');
background-position: center;
background-repeat: no-repeat;
}
.feedback_word{
margin-top: 70px;
}
.feedback_word p{
margin: 30px auto 0;
width: 50%;
}
#feedback {
display: flex;
flex-direction: column;
width: 50%;
text-align: center;
margin: 40px auto 0;
}
#feedback input{
width: 40%;
margin: 10px auto;
}
/* Section Contacts */
.section_contacts {
background: url("imgs/карта.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
transition: background-position 1.5s ease-in-out;
position: relative;
padding: 46px 0;
}
.contacts {
background: url('imgs/contacts_podlojka.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-radius: 5%;
width: 35%;
margin: 45px 0 45px 15%;
padding: 45px 45px 55px 45px;
}
.contacts > div {
margin-top: 50px;
}
.contacts div > div {
display: flex;
margin-bottom: 22px;
}
.contacts div > div > img {
margin-right: 15px;
width: 25px;
height: 25px;
} | style.css | @import url(breakpoints.css) screen and (color);
@font-face {
font-family: 'Gilroy-SemiBold';
src: url('шрифт/Gilroy-SemiBold.ttf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy-Medium';
src: url('шрифт/Gilroy-Medium.ttf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy-Light';
src: url('шрифт/Gilroy-Light.ttf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Gilroy-Bold';
src: url('шрифт/Gilroy-Bold.ttf');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Gilroy-Light', sans-serif;
font-size: 18px;
color: #163950;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
p, h1, h2, h3, h4, h5, ul, li, button, input, label, select, container {
margin: 0;
padding: 0;
font-weight: normal;
font-family: 'Gilroy-Light', sans-serif;
}
form label, form input {
height: 22px;
padding: 8px 25px;
font-size: 16px;
font-family: "Gilroy-Medium", sans-serif;
color: #163950
}
form select, form input:not([type="submit"]):not([type="range"]){
padding: 8px 25px;
border: 0.5px solid #d1d1d1;
height: 40px;
border-radius: 5px;
font-size: 16px;
font-family: "Gilroy-Medium", sans-serif;
color: #163950;
box-shadow: inset 6px 6px 6px -6px #d1d1d1;
}
h1{
text-transform: uppercase;
font-size: 35px;
font-family: 'Gilroy-Bold', sans-serif;
text-align: center;
}
.btn {
color: #fff;
width: 210px;
height: 50px;
font-size: 20px;
border: none;
border-radius: 10px 10px 20px 20px;
margin: 30px auto 0;
z-index: 1;
cursor: pointer;
transition: width 0.5s;
}
.btn_blue {
background: #27c1de;
margin-top: 50px;
}
.btn_blue:hover {
width: 220px;
background: #a3d46b;
}
.btn_orange{
background: linear-gradient(#f9e19b,#ed6114);
}
.btn_orange:hover {
width: 220px;
background: linear-gradient(#26c0df, #0a6996);
}
.wave {
width: 40px;
height: 10px;
margin: 27px auto 0;
}
.section_header {
position: relative;
height: 950px;
background-image: url("imgs/bgHeader.png");
background-position: center;
background-size: cover;
}
/* Header section */
.header {
width: 100%;
margin: 0 auto;
background: transparent;
display: flex;
padding: 25px 0 0;
align-items: center;
text-align: center;
}
.header div {
width: 33.3%;
display: flex;
justify-content: center;
margin: 0;
}
.navigation ul {
display: flex;
justify-content: center;
}
.navigation ul li{
position: relative;
display: flex;
flex-wrap: wrap;
list-style-type: none;
}
.navigation ul li img {
opacity: 0;
position: absolute;
bottom: -10px;
left: 20px;
height: 10px;
width: 40px;
transition: opacity 1s;
}
.navigation ul li a {
font-size: 18px;
text-decoration: none;
color: #163950;
margin: 0 10px;
}
.navigation ul li a:hover ~ img{
opacity: 1;
}
.logo {
cursor: pointer;
margin: 0;
}
.phones {
width: 100%;
position: relative;
display: flex;
flex-wrap: wrap;
margin: 0;
}
.phones a {
font-size: 20px;
margin: 0 1%;
font-family: 'Gilroy-SemiBold', sans-serif;
text-decoration: none;
color: #163950;
transition: color 0.5s;
}
.phones a:hover {
color: #ed6114;
}
.header_banner {
width: 40%;
display: block;
margin: 70px auto 0;
text-align: center;
}
.header_banner h1 {
text-transform: capitalize;
font-size: 33px;
padding-top: 20px;
}
.header_banner p {
font-size: 19px;
margin-top: 30px;
}
.section_header image:first-child{
position: absolute;
}
.section_header > img{
width: 100%;
position: absolute;
bottom: 0px;
}
.section_header > img:last-of-type{
bottom: -30px;
}
/* Section Our Work */
.section_our_work {
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
}
.section_our_work h1{
text-transform: uppercase;
font-size: 35px;
font-family: 'Gilroy-Bold', sans-serif;
display: flex;
margin: 0 auto;
}
/* Slider */
#slider{
width:70%;
height:500px;
overflow-x: hidden;
overflow-y: visible;
margin:35px auto 50px;
}
#slider-inner{
position:relative;
width:300%;
height:400px;
transition:all .7s cubic-bezier(0.68,-0.55,0.265,1.55);
}
#slider-inner div{
position:relative;
width:30%;
height:400px;
display:inline-block;
}
#slider-inner div label{
position: absolute;
background: url('imgs/slides/arw.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 59px;
width: 59px;
opacity:0;
cursor:pointer;
transition: opacity .7s;
}
#slider-inner div label:nth-of-type(2){
transform: rotate(180deg);
right: 40%;
bottom: -94px;
}
#slider-inner div label:nth-of-type(1){
left: 40%;
bottom: -94px;
}
#slider-inner div label:hover{
background: url("imgs/slides/hovered_arw.png");
}
#first:checked ~ #slider #slider-inner{
margin-left: 5%;
}
#first:checked ~ #slider #slider-inner #first-slide label{
opacity:1;
}
#second:checked ~ #slider #slider-inner{
margin-left: -85%;
}
#second:checked ~ #slider #slider-inner #second-slide label{
opacity:1;
}
#third:checked ~ #slider #slider-inner{
margin-left: -175%;
}
#third:checked ~ #slider #slider-inner #third-slide label{
opacity:1;
}
#first-slide{
background: url('imgs/slides/1.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#second-slide{
background: url('imgs/slides/2.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#third-slide{
background: url('imgs/slides/3.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.section_our_work input[type="radio"], .radio{
height: 0;
visibility: hidden;
}
/* End of slider */
/* S.Pool price */
.section_price {
position: relative;
padding: 0;
margin: 0;
width: 100%;
background: url('imgs/section_price_bg.png') no-repeat;
background-position: center;
background-size: cover;
}
.price_word {
display: block;
text-align: center;
}
.price_word h1{
font-size: 35px;
font-family: 'Gilroy-Bold', sans-serif;
color: #163950;
}
.price_word p {
font-family: 'Gilroy-Light', sans-serif;
font-weight: normal;
font-size: 20px;
color: #163950;
margin-top: 30px;
}
#qw{
display: flex;
position: relative;
margin: 30px 0 0;
}
.form_container {
margin: 80px 0 137px;
width: 50%;
}
#spool_price > img {
position: absolute;
bottom: -31px;
}
#spool_price {
position: relative;
width: 70%;
float: right;
background: url("imgs/price_form_bg.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 20px 30px;
}
.price_form {
margin: 0 auto;
}
.price_form div {
margin: 20px 0;
align-items: center;
}
#submit_query{
width: 200px;
display: block;
}
.price_form div label{
margin-right: 20px;
float: left;
font-family: 'Gilroy-Bold', sans-serif;
font-size: 18px;
color: #163950;
width: 30%;
}
.price_form div select, .price_form div input{
font-family: 'Gilroy-Medium', sans-serif;
font-size: 18px;
color: #163950;
width: 50%;
}
.price_form div input{
width: 30%;
}
.price_form div p {
float: right;
width: 15%;
height: 22px;
padding: 8px 0;
}
#pool_img {
width: 50%;
height: 420px;
position: absolute;
left: 45%;
overflow: visible;
background: url('imgs/Pool.png');
background-repeat: no-repeat;
background-size: cover;
}
.section_price > img {
position: absolute;
bottom: -100px;
}
/* Section Products */
.section_products {
position: relative;
width: 100%;
padding-bottom: 200px;
}
.products_word {
width: 100%;
margin-top: 23px;
text-align: center;
}
/* Section Products - Slider #2 */
.product_container {
display: block;
text-align: center;
margin-top: 30px;
overflow: hidden;
}
#slider-inner2{
position:relative;
width:90%;
height:350px;
display: flex;
margin: 0 auto;
}
#product_list1, #product_list2, #product_list3{
display: none;
width: 100%;
opacity: 0;
transition: all 0.5s;
}
#product_list1 div, #product_list2 div, #product_list3 div{
width: 23%;
position: relative;
margin: 0 0.7%;
border: 0.5px solid #d1d1d1;
border-radius: 5px;
}
#slider-inner2 div > div:hover {
cursor: pointer;
box-shadow: inset 10px 10px 10px -6px #d1d1d1;
}
#slider-inner2 div > div > img {
max-width: 90%;
height: 60%;
margin: 10px auto 0;
}
#slider-inner2 div > div > p {
width: 80%;
margin: 0 auto;
}
.product_container input {
visibility: hidden;
}
#product_category{
margin-bottom: 50px;
}
#product_category label{
text-decoration: underline;
}
#product_category label:hover{
cursor: pointer;
}
#product_category input:nth-of-type(1):checked ~ label:first-of-type{
color: #ed6114;
text-decoration: none;
}
#product_category input:nth-of-type(2):checked ~ label:nth-of-type(2){
color: #ed6114;
text-decoration: none;
}
#product_category input:nth-of-type(3):checked ~ label:nth-of-type(3){
color: #ed6114;
text-decoration: none;
}
#slider-inner2 div label{
position: absolute;
background: url('imgs/slides/arw.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
z-index: 20;
height: 59px;
width: 59px;
opacity:0;
bottom: 42.5%;
cursor: pointer;
}
#slider-inner2 div > label:first-of-type{
left: 0;
}
#slider-inner2 div > label:nth-of-type(2){
right: 0;
transform: rotate(180deg);
}
#slider-inner2 div > label:hover{
background: url("imgs/slides/hovered_arw.png");
}
#product_list_first:checked ~ #slider-inner2 #product_list1{
display: flex;
flex-wrap: wrap;
justify-content: center;
opacity: 1;
transition: opacity .5s;
}
#product_list_first:checked ~ #slider-inner2 #product_list1 label{
opacity:1;
}
#product_list_second:checked ~ #slider-inner2 #product_list2{
display: flex;
flex-wrap: wrap;
justify-content: center;
opacity: 1;
}
#product_list_second:checked ~ #slider-inner2 #product_list2 label{
opacity:1;
}
#product_list_third:checked ~ #slider-inner2 #product_list3{
display: flex;
flex-wrap: wrap;
justify-content: center;
opacity: 1;
}
#product_list_third:checked ~ #slider-inner2 #product_list3 label{
opacity:1;
}
/* END of 4th section - Slider #2 */
/* Section Benefits */
.section_benefits {
position: relative;
text-align: center;
background: #27c1de;
color: #fff;
font-family: 'Gilroy-SemiBold';
font-size: 23px;
}
.benefits_list {
width: 100%;
display: flex;
text-align: center;
margin-top: 59px;
}
.benefits_list > div {
width: 33.3%;
}
.benefits_list > div > img {
width: 72px;
height: 72px;
margin-bottom: 28px;
}
.section_benefits > img {
position: absolute;
width: 50%;
top: -70%;
right: 5%;
transition: top 1.5s ease-in-out;
}
/* Section Feedback */
.section_feedback {
position: relative;
padding-bottom: 100px;
text-align: center;
background: url('imgs/фон\ обратная\ связь.png');
background-position: center;
background-repeat: no-repeat;
}
.feedback_word{
margin-top: 70px;
}
.feedback_word p{
margin: 30px auto 0;
width: 50%;
}
#feedback {
display: flex;
flex-direction: column;
width: 50%;
text-align: center;
margin: 40px auto 0;
}
#feedback input{
width: 40%;
margin: 10px auto;
}
/* Section Contacts */
.section_contacts {
background: url("imgs/карта.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
transition: background-position 1.5s ease-in-out;
position: relative;
padding: 46px 0;
}
.contacts {
background: url('imgs/contacts_podlojka.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-radius: 5%;
width: 35%;
margin: 45px 0 45px 15%;
padding: 45px 45px 55px 45px;
}
.contacts > div {
margin-top: 50px;
}
.contacts div > div {
display: flex;
margin-bottom: 22px;
}
.contacts div > div > img {
margin-right: 15px;
width: 25px;
height: 25px;
} | 0.289573 | 0.086285 |
* {
margin: 0;
padding: 0;
}
body {
background: black;
height: 661px;
}
button:hover {
cursor: pointer;
}
.container {
width: 635px;
height: 735px;
background: url("./img/bg.png") no-repeat;
margin: 0 auto;
}
.container textarea {
resize: none;
border: none;
outline: none;
background: #f5f6f8;
position: relative;
top: 515px;
height: 86px;
width: 615px;
padding: 10px;
font-size: 20px;
line-height: 20px;
font-family: sans-serif;
overflow-x: hidden;
}
.container button {
background: #1b70fe;
outline: none;
border: none;
width: 61px;
height: 21px;
color: white;
position: relative;
left: 495px;
border-radius: 3px;
}
.button {
position: relative;
top: 510px;
background: #f5f6f8;
padding-bottom: 10px;
}
.inner {
width: 620px;
height: 458px;
margin: 0 auto;
position: relative;
top: -703px;
overflow-y: overlay;
}
.inner div {
width: 100%;
height: 65px;
margin: 10px 0;
}
.inner div * {
float: right;
}
.inner .avater {
width: 40px;
height: 40px;
border-radius: 20px;
float: right;
user-select: none;
}
pre img:hover {
cursor: zoom-in;
}
.inner .text {
background: #1e6fff;
color: white;
margin-right: 10px;
line-height: 16px;
padding: 10px;
border-radius: 5px;
height: 15px;
font-family: inherit;
max-width: 530px;
}
.inner .time {
text-align: center;
width: 100%;
color: gray;
font-size: 5px;
line-height: 35px;
}
.inner .sanjiao {
width: 0;
height: 0;
border-top: 10px solid #1e6fff;
border-bottom: 10px solid transparent;
border-right: 10px solid transparent;
border-left: 10px solid transparent;
position: relative;
left: -63px;
top: -10px;
}
.inner .top {
top: -15px;
}
.inner img{
float: none;
}
.fuc {
width: 635px;
height: 40px;
position: relative;
top: -203px;
padding-left: 20px;
margin: -7px auto 0;
}
.fuc button, input {
outline: none;
border: none;
}
button:hover {
cursor: pointer;
}
.sendFile {
background-image: url("./img/send file.png");
width: 33px;
height: 25px;
position: relative;
top: -9px;
display: none;
}
.cut {
background-image: url("./img/cut.png");
width: 45px;
height: 30px;
}
.sendfile:hover {
cursor: pointer;
}
.sendfile {
position: relative;
top: -2px;
}
.cover {
background: #f5f6f8;
width: 260px;
height: 40px;
margin: 0 auto;
position: relative;
left: 180px;
top: 24px;
}
.avater:hover {
cursor: unset;
}
.show {
position: absolute;
width: 100%;
height: 100%;
top: 0;
background: rgba(0, 0, 0, 0.2);
}
.show img{
transform: scale(1.5);
display: block;
position: absolute;
top: 50%;
height: 240px;
margin-top: -120px;
left: 48%;
}
.fancybox-button {
background: rgb(39 39 39);
outline: none;
border: none;
float: right;
}
.fancybox-button svg {
width: 40px;
height: 40px;
}
@keyframes button {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes button2 {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
#menu{
width: 0; /*设置为0 隐藏自定义菜单*/
overflow: hidden; /*隐藏溢出的元素*/
box-shadow: 0 1px 1px #888,1px 0 1px #ccc;
position: absolute; /*自定义菜单相对与body元素进行定位*/
height: auto;
background: rgb(220 221 228);
border-radius: 5px;
}
.copy,.copy_p,.withdraw,.fresh,.paste{
width: 75px;
height: 25px;
line-height: 25px;
padding: 0 10px;
outline: none;
border: none;
}
::selection {
color:#FFFFFF;
background-color:black;
}
.bug{
position: absolute;
top: 0;
left: 0;
font-size: 20px;
color: white;
}
.chehui p{
float: none;
text-align: center;
color: darkgray;
line-height: 30px;
} | css.css | * {
margin: 0;
padding: 0;
}
body {
background: black;
height: 661px;
}
button:hover {
cursor: pointer;
}
.container {
width: 635px;
height: 735px;
background: url("./img/bg.png") no-repeat;
margin: 0 auto;
}
.container textarea {
resize: none;
border: none;
outline: none;
background: #f5f6f8;
position: relative;
top: 515px;
height: 86px;
width: 615px;
padding: 10px;
font-size: 20px;
line-height: 20px;
font-family: sans-serif;
overflow-x: hidden;
}
.container button {
background: #1b70fe;
outline: none;
border: none;
width: 61px;
height: 21px;
color: white;
position: relative;
left: 495px;
border-radius: 3px;
}
.button {
position: relative;
top: 510px;
background: #f5f6f8;
padding-bottom: 10px;
}
.inner {
width: 620px;
height: 458px;
margin: 0 auto;
position: relative;
top: -703px;
overflow-y: overlay;
}
.inner div {
width: 100%;
height: 65px;
margin: 10px 0;
}
.inner div * {
float: right;
}
.inner .avater {
width: 40px;
height: 40px;
border-radius: 20px;
float: right;
user-select: none;
}
pre img:hover {
cursor: zoom-in;
}
.inner .text {
background: #1e6fff;
color: white;
margin-right: 10px;
line-height: 16px;
padding: 10px;
border-radius: 5px;
height: 15px;
font-family: inherit;
max-width: 530px;
}
.inner .time {
text-align: center;
width: 100%;
color: gray;
font-size: 5px;
line-height: 35px;
}
.inner .sanjiao {
width: 0;
height: 0;
border-top: 10px solid #1e6fff;
border-bottom: 10px solid transparent;
border-right: 10px solid transparent;
border-left: 10px solid transparent;
position: relative;
left: -63px;
top: -10px;
}
.inner .top {
top: -15px;
}
.inner img{
float: none;
}
.fuc {
width: 635px;
height: 40px;
position: relative;
top: -203px;
padding-left: 20px;
margin: -7px auto 0;
}
.fuc button, input {
outline: none;
border: none;
}
button:hover {
cursor: pointer;
}
.sendFile {
background-image: url("./img/send file.png");
width: 33px;
height: 25px;
position: relative;
top: -9px;
display: none;
}
.cut {
background-image: url("./img/cut.png");
width: 45px;
height: 30px;
}
.sendfile:hover {
cursor: pointer;
}
.sendfile {
position: relative;
top: -2px;
}
.cover {
background: #f5f6f8;
width: 260px;
height: 40px;
margin: 0 auto;
position: relative;
left: 180px;
top: 24px;
}
.avater:hover {
cursor: unset;
}
.show {
position: absolute;
width: 100%;
height: 100%;
top: 0;
background: rgba(0, 0, 0, 0.2);
}
.show img{
transform: scale(1.5);
display: block;
position: absolute;
top: 50%;
height: 240px;
margin-top: -120px;
left: 48%;
}
.fancybox-button {
background: rgb(39 39 39);
outline: none;
border: none;
float: right;
}
.fancybox-button svg {
width: 40px;
height: 40px;
}
@keyframes button {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes button2 {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
#menu{
width: 0; /*设置为0 隐藏自定义菜单*/
overflow: hidden; /*隐藏溢出的元素*/
box-shadow: 0 1px 1px #888,1px 0 1px #ccc;
position: absolute; /*自定义菜单相对与body元素进行定位*/
height: auto;
background: rgb(220 221 228);
border-radius: 5px;
}
.copy,.copy_p,.withdraw,.fresh,.paste{
width: 75px;
height: 25px;
line-height: 25px;
padding: 0 10px;
outline: none;
border: none;
}
::selection {
color:#FFFFFF;
background-color:black;
}
.bug{
position: absolute;
top: 0;
left: 0;
font-size: 20px;
color: white;
}
.chehui p{
float: none;
text-align: center;
color: darkgray;
line-height: 30px;
} | 0.405802 | 0.064153 |
.active{
background-color: rgba(0,0,0,0.1);
}
.aNoLine{
text-decoration: none;
}
.backGrey{
background: #ddd;
}
.backFa{
background: #fafafa;
}
.border{
border:1px solid #ddd !important;
}
.borderRt{
border-right: 1px solid #ddd ;
}
.borderNone{
border: none;
}
.head-font{
font-size: 30px;
color: #a2a2a2;
text-decoration: none;
padding-top: 2px;
margin-right: 10px;
}
.flex{
display: flex;
}
.font12{
font-size: 12px;
}
.font14{
font-size: 14px;
}
.font16{
font-size: 16px;
}
.font25{
font-size: 25px;
}
.font30{
font-size: 30px;
}
.font50{
font-size: 50px;
}
.green{
color: #2ab92a;
}
.hide{
display:none;
}
.right{
float:right;
}
.relative{
position: relative !important;
}
.red{
color: #e63737;
}
.txtRight{
text-align: right;
}
.txtIndent{
text-indent: 2em;
}
a:active{
color: grey;
}
.margin0{
margin: 0 !important;
}
.marginTp0{
margin-top: 0 !important;
}
.marginTop5{
margin-top: 5px !important;
}
.marginTop10 {
margin-top: 10px !important;
}
.marginTop15{
margin-top:15px;
}
.marginTop20{
margin-top: 20px;
}
.marginBt4{
margin-bottom: 4px;
}
.marginBt10{
margin-bottom: 10px;
}
.padding0{
padding: 0 !important;
}
.padding8{
padding:8px;
}
.padding10{
padding:10px
}
.pd-10Import{
padding: 10px !important;
}
.padding25{
padding: 25px !important;
}
.padding35{
padding: 35px !important;
}
.pdLt-35{
padding-left: 35px;
}
.paddingLt5{
padding-left: 5px;
}
.paddingLeft10 {
padding-left: 10px;
}
.paddingLtRt10{
padding: 0 10px;
}
.paddingLt20{
padding-left: 20px;
}
.paddingBt0{
padding-bottom: 0;
}
.paddingBt10{
padding-bottom: 10px;
}
.paddingBt35{
padding-bottom: 35px;
}
.paddingRt5{
padding-right: 5px;
}
.paddingRt10{
padding-right: 10px;
}
.paddingTp10{
padding-top: 10px;
}
.center {
text-align: center;
}
.color-title{
background: #dbeafb;
}
.left{
float: left;
}
.right{
float: right;
}
.width100{
width: 100% ;
}
.back{
border-color: transparent;
background: 0 0;
}
.font20{
font-size: 20px;
}
.font30{
font-size: 30px !important;
}
.head-color{
color: #feffff !important;
}
.head-txt{
color: #FBF3DC;
font-weight: 500 !important;
letter-spacing: 2px;
}
.bold{
font-weight: bold !important;
}
.paddingVet10{
padding: 10px !important;
}
.black{
color:black;
}
.font-white{
color:white;
}
.head-bar-color{
background-color: #EEBC43 !important;
}
.date-color{
color: #00CCFF;
}
.font-color{
color:#EEBC43 ;
}
/*.bar .title{
font-weight: 600 !important;
}*/
.button-backgroud {
background: #F1F4F9;
}
.button-blue{
background: #B7DEFB;
}
.borderBt{
border-bottom: solid 1px #ddd !important;
}
.todo .searchInput{
background: #fff;
padding: 10px;
border: 1px solid #ddd;
}
.todo .inputLabel{
border: 1px solid #ddd;
background: #fff;
}
/*小熊电器*/
.tabs-top.tabs-striped .tab-item.activated, .tabs-top.tabs-striped .tab-item.active, .tabs-top.tabs-striped .tab-item.tab-item-active {
background-color: #EEBC43;
height: 30px;
line-height: 30px;
margin-top: 12px !important;
margin-left: 5px;
margin-right: 5px;
border-radius: 5px;
color: #FBF3DC;
border: none !important;
}
.tabs-top>.tabs, .tabs.tabs-top{
background-color: #f5f5f5 !important;
border: none !important;
}
.bg-app{
background-color: #EEBC43 !important;
}
.bg-f5{
background-color: #f5f5f5;
}
.top98{
top: 98px;
}
.line{
padding: 10px 5px;
border-bottom: 1px solid #f6f6f6;
display: flex;
align-items: center;
}
.lineNone{
padding: 10px 5px;
display: flex;
}
.lineLtTxt{
display: block;
padding-right: 10%;
color: #b5b5b5;
width: 170px;
}
.lineArea{
height: 15px;
background-color: #f5f5f5;
}
.recordTxt{
width: 20%;
margin-top: 25px;
margin-right: 10px;
}
.recordArrow{
position: absolute;
top: 20px;
left: 10px;
z-index: -1;
}
.width70{
width: 70%;
}
.recordBearGrey{
background-size: 100%;
width: 18px;
height: 16px;
margin-top: 25px;
}
.recordContent{
margin-left: 20px;
padding: 10px;
}
.recordGrey{
background-color: #dcdcdc;
}
.recordBlue{
background-color: #4CADFE;
}
.lineD7{
height: 150%;
width: 1px;
background-color: #d7d7d7;
margin-left: 8px;
margin-top: -50px;
}
.height98{
height: 98px;
}
.height49{
height: 49px;
}
.paddingTp56{
padding-top: 56px;
}
.lineHt30{
line-height: 30px;
}
.selectSty{
margin-left: 20px;
width: 50%;
border-color: #d7d7d7;
}
.btnQuery{
height: 30px;
min-height: 30px;
line-height: 30px;
margin-left: 20px;
font-size: 14px;
/*background-color: #EEBC43;*/
}
.btnConfirm{
height: 30px;
min-height: 30px;
line-height: 30px;
margin-left: 30px;
font-size: 14px;
width: 65px;
}
.paddingRt25p{
padding-right: 25% !important;
}
.paddingRt50{
padding-right: 50px;
}
.height500{
height: 500px;
}
.tableCon{
width: 1300px;
}
.tableCon td{
width: 90px;
height: 30px;
padding: 5px;
border: 1px solid #ddd;
text-align: center;
}
.font-b7{
color:#b7b7b7
}
.selectPerson{
position: absolute;
right: 10px;
padding-top: 2px;
}
.width15{
width: 15px;
}
.width12{
width: 12px;
}
.height15{
height: 15px;
}
.textAreaCon{
resize: none;
width: 100%;
border: 1px solid #DADADA;
height: 160px;
padding: 10px;
background: #fbfbfb;
}
.calendarImg{
position: absolute;
right: 13px;
width: 20px;
}
.width70p{
width: 70%;
}
.width80p{
width: 80%;
}
.dh-item div:active{
background-color: #fafafa;
}
.absRt15{
position: absolute;
right: 15px;
}
.absRt20{
position: absolute;
right: 20px;
}
.height20{
height: 20px;
}
.absRt10{
position: absolute;
right: 10px;
}
/*弹出框*/
.popover .scroll-content {
z-index: 1;
margin:-1px 0;
}
.myPopover .item{
padding: 10px;
}
.popover {
position: absolute;
z-index: 10;
display: block;
margin-top: 12px;
left: inherit;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,.4);
opacity: 1;
width: 80%;
margin-left: 10%;
text-align: center;
}
.platform-ios .popover-arrow {
display: none;
}
/*
.popover-arrow:after {
position: absolute;
top: 12px;
left: 5px;
width: 20px;
height: 20px;
background-color: #fff;
border-radius: 3px;
content: '';
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}*/ | learnGit/order/style/css/myStyle.css | .active{
background-color: rgba(0,0,0,0.1);
}
.aNoLine{
text-decoration: none;
}
.backGrey{
background: #ddd;
}
.backFa{
background: #fafafa;
}
.border{
border:1px solid #ddd !important;
}
.borderRt{
border-right: 1px solid #ddd ;
}
.borderNone{
border: none;
}
.head-font{
font-size: 30px;
color: #a2a2a2;
text-decoration: none;
padding-top: 2px;
margin-right: 10px;
}
.flex{
display: flex;
}
.font12{
font-size: 12px;
}
.font14{
font-size: 14px;
}
.font16{
font-size: 16px;
}
.font25{
font-size: 25px;
}
.font30{
font-size: 30px;
}
.font50{
font-size: 50px;
}
.green{
color: #2ab92a;
}
.hide{
display:none;
}
.right{
float:right;
}
.relative{
position: relative !important;
}
.red{
color: #e63737;
}
.txtRight{
text-align: right;
}
.txtIndent{
text-indent: 2em;
}
a:active{
color: grey;
}
.margin0{
margin: 0 !important;
}
.marginTp0{
margin-top: 0 !important;
}
.marginTop5{
margin-top: 5px !important;
}
.marginTop10 {
margin-top: 10px !important;
}
.marginTop15{
margin-top:15px;
}
.marginTop20{
margin-top: 20px;
}
.marginBt4{
margin-bottom: 4px;
}
.marginBt10{
margin-bottom: 10px;
}
.padding0{
padding: 0 !important;
}
.padding8{
padding:8px;
}
.padding10{
padding:10px
}
.pd-10Import{
padding: 10px !important;
}
.padding25{
padding: 25px !important;
}
.padding35{
padding: 35px !important;
}
.pdLt-35{
padding-left: 35px;
}
.paddingLt5{
padding-left: 5px;
}
.paddingLeft10 {
padding-left: 10px;
}
.paddingLtRt10{
padding: 0 10px;
}
.paddingLt20{
padding-left: 20px;
}
.paddingBt0{
padding-bottom: 0;
}
.paddingBt10{
padding-bottom: 10px;
}
.paddingBt35{
padding-bottom: 35px;
}
.paddingRt5{
padding-right: 5px;
}
.paddingRt10{
padding-right: 10px;
}
.paddingTp10{
padding-top: 10px;
}
.center {
text-align: center;
}
.color-title{
background: #dbeafb;
}
.left{
float: left;
}
.right{
float: right;
}
.width100{
width: 100% ;
}
.back{
border-color: transparent;
background: 0 0;
}
.font20{
font-size: 20px;
}
.font30{
font-size: 30px !important;
}
.head-color{
color: #feffff !important;
}
.head-txt{
color: #FBF3DC;
font-weight: 500 !important;
letter-spacing: 2px;
}
.bold{
font-weight: bold !important;
}
.paddingVet10{
padding: 10px !important;
}
.black{
color:black;
}
.font-white{
color:white;
}
.head-bar-color{
background-color: #EEBC43 !important;
}
.date-color{
color: #00CCFF;
}
.font-color{
color:#EEBC43 ;
}
/*.bar .title{
font-weight: 600 !important;
}*/
.button-backgroud {
background: #F1F4F9;
}
.button-blue{
background: #B7DEFB;
}
.borderBt{
border-bottom: solid 1px #ddd !important;
}
.todo .searchInput{
background: #fff;
padding: 10px;
border: 1px solid #ddd;
}
.todo .inputLabel{
border: 1px solid #ddd;
background: #fff;
}
/*小熊电器*/
.tabs-top.tabs-striped .tab-item.activated, .tabs-top.tabs-striped .tab-item.active, .tabs-top.tabs-striped .tab-item.tab-item-active {
background-color: #EEBC43;
height: 30px;
line-height: 30px;
margin-top: 12px !important;
margin-left: 5px;
margin-right: 5px;
border-radius: 5px;
color: #FBF3DC;
border: none !important;
}
.tabs-top>.tabs, .tabs.tabs-top{
background-color: #f5f5f5 !important;
border: none !important;
}
.bg-app{
background-color: #EEBC43 !important;
}
.bg-f5{
background-color: #f5f5f5;
}
.top98{
top: 98px;
}
.line{
padding: 10px 5px;
border-bottom: 1px solid #f6f6f6;
display: flex;
align-items: center;
}
.lineNone{
padding: 10px 5px;
display: flex;
}
.lineLtTxt{
display: block;
padding-right: 10%;
color: #b5b5b5;
width: 170px;
}
.lineArea{
height: 15px;
background-color: #f5f5f5;
}
.recordTxt{
width: 20%;
margin-top: 25px;
margin-right: 10px;
}
.recordArrow{
position: absolute;
top: 20px;
left: 10px;
z-index: -1;
}
.width70{
width: 70%;
}
.recordBearGrey{
background-size: 100%;
width: 18px;
height: 16px;
margin-top: 25px;
}
.recordContent{
margin-left: 20px;
padding: 10px;
}
.recordGrey{
background-color: #dcdcdc;
}
.recordBlue{
background-color: #4CADFE;
}
.lineD7{
height: 150%;
width: 1px;
background-color: #d7d7d7;
margin-left: 8px;
margin-top: -50px;
}
.height98{
height: 98px;
}
.height49{
height: 49px;
}
.paddingTp56{
padding-top: 56px;
}
.lineHt30{
line-height: 30px;
}
.selectSty{
margin-left: 20px;
width: 50%;
border-color: #d7d7d7;
}
.btnQuery{
height: 30px;
min-height: 30px;
line-height: 30px;
margin-left: 20px;
font-size: 14px;
/*background-color: #EEBC43;*/
}
.btnConfirm{
height: 30px;
min-height: 30px;
line-height: 30px;
margin-left: 30px;
font-size: 14px;
width: 65px;
}
.paddingRt25p{
padding-right: 25% !important;
}
.paddingRt50{
padding-right: 50px;
}
.height500{
height: 500px;
}
.tableCon{
width: 1300px;
}
.tableCon td{
width: 90px;
height: 30px;
padding: 5px;
border: 1px solid #ddd;
text-align: center;
}
.font-b7{
color:#b7b7b7
}
.selectPerson{
position: absolute;
right: 10px;
padding-top: 2px;
}
.width15{
width: 15px;
}
.width12{
width: 12px;
}
.height15{
height: 15px;
}
.textAreaCon{
resize: none;
width: 100%;
border: 1px solid #DADADA;
height: 160px;
padding: 10px;
background: #fbfbfb;
}
.calendarImg{
position: absolute;
right: 13px;
width: 20px;
}
.width70p{
width: 70%;
}
.width80p{
width: 80%;
}
.dh-item div:active{
background-color: #fafafa;
}
.absRt15{
position: absolute;
right: 15px;
}
.absRt20{
position: absolute;
right: 20px;
}
.height20{
height: 20px;
}
.absRt10{
position: absolute;
right: 10px;
}
/*弹出框*/
.popover .scroll-content {
z-index: 1;
margin:-1px 0;
}
.myPopover .item{
padding: 10px;
}
.popover {
position: absolute;
z-index: 10;
display: block;
margin-top: 12px;
left: inherit;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,.4);
opacity: 1;
width: 80%;
margin-left: 10%;
text-align: center;
}
.platform-ios .popover-arrow {
display: none;
}
/*
.popover-arrow:after {
position: absolute;
top: 12px;
left: 5px;
width: 20px;
height: 20px;
background-color: #fff;
border-radius: 3px;
content: '';
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}*/ | 0.340047 | 0.093678 |
/* --- NOSE AG Design Intelligence --------------------------------------------------- */
/* --- CSS Framework: font definitions overall and elements ------------------------- */
/* --- TEL0022 SIX iD HTML, BR ------------------------------------------------- */
@media all {
/* -------------------------------------------------------------------------------------
LAYOUT
======================================================================================*/
/* container */
#container {
height:100%;
background-color:#303135;
overflow:hidden;
margin-bottom:-2px;
}
body.plain #container {
min-width:500px;
}
/* wrapper */
#wrapper {
height:100%;
z-index:1;
}
/* header */
#header {
height:40px;
position:relative;
z-index:2;
background-color: #1f1f22;
border-bottom: solid 1px #000000;
}
#logo {
position:absolute;
top:0;
right:0;
height:40px;
width:380px;
}
#search {
/*position:absolute;*/
z-index:2;
padding:8px 5px 0 10px;
height:24px;
max-width:790px;
}
/* sidebar */
#sidebar {
clear:both;
float:left;
width:215px;
height:100%;
background-color: #1f1f22;
}
#navigation {
width:215px;
}
#subnavigation {
position:fixed;
left:0;
bottom:0;
top:203px;
width:195px;
padding:5px 10px;
overflow:auto;
}
#subnavigationNoPadding {
position:fixed;
left:0;
bottom:0;
top:203px;
width:215px;
padding:0;
overflow:hidden;
}
/* main */
#main {
position:relative;
height:100%;
margin:0 0 0 0;
z-index:1;
}
body.plain #main {
margin:0 10px 0 0;
}
#toolbar {
height:28px;
}
#topbar {
height:28px;
padding:10px 5px;
}
#content {
position:fixed;
top:2px;
bottom:0;
right:0;
left:0;
padding:5px;
/*min-width:778px;*/
overflow:auto;
}
#contentBackoffice {
position:fixed;
top:140px;
bottom:0;
right:0;
left:0;
padding:5px;
/*min-width:778px;*/
overflow:auto;
}
.backoffice50 {
height: 50%;
width: 100%;
overflow: hidden;
}
body.plain #content {
position:fixed;
top:40px;;
bottom:0;
right:0;
left:0;
padding:10px;
/*min-width:400px;*/
overflow:auto;
}
/* -------------------------------------------------------------------------------------
LAYOUT: POPUP
======================================================================================*/
body.popup #main {
margin-left: 0px;
}
body.popup #content {
left: 0px;
/*top:112px;*/
}
/* -------------------------------------------------------------------------------------
LAYOUT: IFRAME
======================================================================================*/
/* iframe page */
.content_iframe iframe {
height:99%;
}
body.iframe, #body_content {
overflow-y:scroll;
}
body.iframe {
background-color: #EEF5F9;
overflow:scroll;
padding: 5px;
height: 100%;
}
#iframeListingList {
overflow-y:scroll;
height: 100%;
}
#body_content {
height:100%;
}
/* -------------------------------------------------------------------------------------
GENERIC
======================================================================================*/
body {
font-size: 62.5%;
font-family:Arial, Helvetica, sans-serif;
line-height:15px;
font-size:13px;
color:#fff;
}
/* clearfix */
.clearfix:after, .columns:after, .cols:after, .fieldgroup:after, .fields:after, #navigation ul:after, #tabnavigation ul:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/* Safari */
.clearfix, .columns, .cols, .fieldgroup, .fields, #navigation ul, #tabnavigation ul { display: block; }
/* Overflow-Methode zum Clearen der Float-Umgebungen */
/* floating & clear */
.float {
float:left;
}
.right {
float:right;
}
.clear {
clear:both;
}
/* hidden */
.hidden {
position:absolute;
left:-1000px;
top:-1000px;
visibility:hidden;
width:0;
height:0;
line-height:0;
}
.invisible {
visibility:hidden;
}
/* align */
.center {
text-align:center;
}
/* colors */
.less {
color:#ff1000;
}
.more {
color:#00e804;
}
.disabled {
color:#737780;
}
/* margins */
#content .mright {
margin-right:10px;
}
#content .mbottom, #contentIframe .mbottom {
margin-bottom:10px;
}
/* -------------------------------------------------------------------------------------
HEADERS
======================================================================================*/
h1 {
position:absolute;
left:1px;
top:1px;
display:block;
height:20px;
padding:4px 20px 4px 10px;
font-size:13px;
line-height:20px;
font-weight:bold;
color:#fff;
border-right:1px solid #000;
background-color:#303135;
}
h2 {
font-size:13px;
line-height:20px;
margin:0 0 10px 0;
font-weight:bold;
color:#fff;
}
h3 {
font-size:13px;
line-height:18px;
font-weight:bold;
color:#fff;
}
h3 span.link {
cursor:pointer;
text-decoration:underline;
}
h3 span.link:hover {
text-decoration:none;
}
h4 {
font-size:13px;
line-height:15px;
font-weight:bold;
color:#fff;
}
/* -------------------------------------------------------------------------------------
TEXT
======================================================================================*/
/* paragraph */
p {
}
/* links */
a {
color:#66CCFF;
text-decoration:none;
}
a:hover {
text-decoration:none;
}
/* lists */
ol {
list-style-position:outside;
list-style-type:decimal;
padding-left:10px;
margin-left:10px;
}
/* quotes */
blockquote {
font-weight:bold;
font-style:italic;
}
cite {
font-style:normal;
}
cite:before {
content:"�";
}
cite:after {
content:"�";
}
strong {
font-weight:bold;
}
/* -------------------------------------------------------------------------------------
IMAGES
======================================================================================*/
/* scale back */
img.scale {
max-width:100%;
}
/* -------------------------------------------------------------------------------------
TABLE
======================================================================================*/
table.data, table.data_analyse, .table table, table.data_small {
width:100%;
border-collapse:collapse;
}
table.tabular {
border-collapse:collapse;
}
table.tabular td.help {
width: 35px;
text-align: right;
}
table.tabular td.w40 {
width: 40px;
}
/* only for debugging */
/*table.tabular td {*/
/*border: 1px dotted red;*/
/*}*/
table.data caption, table.data_analyse caption, table.data_small caption {
}
table.data th, .table th, table.data_analyse th, table.data_small th {
line-height:15px;
color:#737780;
}
table.data_analyse tr.headerClass th {
color:#fff;
}
table.data td, .table td, table.data_analyse td, table.data_small td {
line-height:15px;
color:#fff;
}
table.data td.more, .table td.more, table.data_analyse td.more, table.data_small td.more {
color: #00e804;
}
table.data td.less, .table td.less, table.data_analyse td.less, table.data_small td.less {
color: #ff1000;
}
.more {
}
table.data th, table.data td, .table td, .table th, table.data_analyse th, table.data_analyse td {
font-size:9px;
padding:1px 4px 1px 4px;
}
table.data_small th, table.data_small td {
font-size:8px;
padding:0 4px;
}
table.tabular th, table.tabular td, .table th {
font-size:13px;
line-height:15px;
padding: 1px 0 0 0;
vertical-align:middle;
}
table.tabular th, .table th {
color:#737780;
}
table.tabular td {
color:#fff;
}
table.tabular td.label {
padding-right: 10px;
}
table.data th, table.data_small th, table.data_analyse th {
background-color:#303135;
text-align:left;
cursor:pointer;
cursor:hand;
}
table.data th, table.data_analyse th {
padding: 4px;
}
table.data_small th {
padding: 2px;
}
table.data th.gl_size12, table.data td.gl_size12 {
font-size: 12px;
}
table th[align='right'] {
text-align:right;
}
table th[align='center'] {
text-align:center;
}
table.data td {
}
table.data th.small {
padding: 2px 4px;
}
table.data th.cdef {
cursor:default;
}
table.data tr.headerClass th {
color: #fff;
}
/* zebra */
table.data tr.list_color1, table.data_analyse tr.list_color1 {
background-color:#303135;
}
table.data tr.list_color2, table.data_analyse tr.list_color2 {
background-color:#292a30;
}
/* sortable */
table.sortable .header {
padding-right:18px;
background-image:url(/idhtml/style/img/icon_sort.gif);
background-position:right 8px;
background-repeat:no-repeat;
cursor:pointer;
}
table.sortable .headerSortUp {
background-image:url(/idhtml/style/img/icon_sort-up.gif);
background-position:right 9px;
}
table.sortable .headerSortDown {
background-image:url(/idhtml/style/img/icon_sort-down.gif);
background-position:right 9px;
}
table.sortable .nosort {
background-image:none;
cursor:default;
}
/* hoverable */
#content table.hoverable tr.hover td {
background-color:#44454e;
cursor:pointer;
}
/* hoverable */
#searchmain table.hoverable tr:hover td, #searchmain table.hoverable tr.hover td,
#searchmain table.hoverable tr.list_color1:hover td, #searchmain table.hoverable tr.list_color2:hover td,
#searchmain table.hoverable tr.even:hover td, #searchmain table.hoverable tr.odd:hover td {
background-color:#44454e;
cursor:pointer;
}
/* inner tables */
.table table td table, .table table td table td {
border:none;
}
#vdb_page table {
width: auto;
border: none;
}
#vdb_page table table {
width: auto;
border: 0;
}
#vdb_page td {
border: 0;
}
#vdb_page table table tr {
border-bottom: 0;
}
#vdb_page tr.vdb_header td {
padding-top: 8px;
padding-bottom: 8px;
}
#vdb_page table table tr.vdb_header td {
padding: 0;
}
#vdb_page .note {
color: #737780;
font-size: x-small;
}
#vdb_page tr.vdb_search td {
padding-top: 8px;
padding-bottom: 8px;
}
/* -------------------------------------------------------------------------------------
FORMS
======================================================================================*/
/* styled form */
form.form, div.form {
border:1px solid #1f1f22;
background-color:#292a30;
padding:5px;
margin-bottom:5px;
}
/* fieldsets */
fieldset {
margin:0 0 0 0;
}
.fieldgroup {
padding: 5px;
margin:0;
}
form.extSearch .fieldgroup {
margin-right:5px;
}
.fieldgroup td.w165 {
width: 165px;
}
.fieldgroup_neutral {
padding:5px;
}
.fieldgroup2 {
background-color: #292a30;
padding: 5px;
margin-right: 5px;
}
.fieldbox {
padding:4px 5px 3px 5px;
background-color:#303135;
border:none;
}
.fields {
margin-bottom: 0;
}
.actions {
margin:10px -6px 0 -6px;
padding:9px;
border-top:1px solid #1f1f22;
height:24px;
}
.spacer {
margin-bottom:3px;
}
/* text */
.form h3 {
font-weight:bold;
color:#fff;
padding:0;
}
.form br {
clear:both;
font-size:0;
line-height:0;
}
.form .info {
float:left;
line-height:24px;
}
/* labels */
.form label {
display:block;
padding:0 0 1px 0;
margin:0 5px 0 0;
font-size:13px;
line-height:15px;
color:#fff;
}
label.label_checkbox, label.label_radio {
float:left;
margin-right:15px;
}
label.float {
padding:4px 0 1px 0;
}
.vertical .label_checkbox {
line-height: 20px;
}
/* inputs */
input, select {
font-size:13px;
line-height:15px;
font-family:Arial, Helvetica, sans-serif;
color:#334455;
}
input.text, input.text_err {
padding:4px 4px 3px 4px;
height:15px;
width:165px;
margin:0 5px 0 0;
background-color:#FDFDFD;
border:1px solid #000;
}
input.file {
position: relative;
width:165px;
background-color:#FDFDFD;
border:0;
}
input.text_err {
background-color: #FF6666;
}
input.editable-select {
background: #FFF url(/idhtml/style/arrow-down.gif) right center no-repeat;
width:40px;
height:15px;
padding:4px 4px 3px 4px;
margin:0 0 15px 0;
background-color:#FDFDFD;
border:1px solid #77889C;
border-right:0;
}
input.text:focus, input.editable-select:focus {
background-color:#FFFFFF;
border:1px solid #227799;
}
input.text_err:focus {
border:1px solid #227799;
}
input.submit, input.reset, input.disabled_button {
height:24px;
padding:3px 4px 6px 4px;
margin:0 5px 0 0;
background: #FFFFFF repeat-x left top;
border:1px solid #77889C;
cursor: pointer;
}
input.submit, input.reset {
color:#fff;
background-color: #00669e;
border: 1px solid #000;
}
input.disabled_button {
color:#999;
background-image:url(/idhtml/style/img/bg_navitem_disabled.gif);
cursor: default;
}
input.submit:hover, input.reset:hover {
background-color: #005c8e;
}
input.input.disabled_button:hover {
background-image:url(/idhtml/style/img/bg_navitem_disabled.gif);
cursor: default;
}
input.submit:focus, input.reset:focus {
border:1px solid #227799;
}
input.primary {
/*border:1px solid #227799;*/
font-weight:bold;
}
input.blur {
color:#454545;
}
/* radio & checkbox */
input.radio {
float:left;
margin:1px 5px 4px 0;
padding:0;
border:none;
}
input.checkbox {
float:left;
padding:0;
width:15px;
height:15px;
margin:1px 5px 3px 0;
padding:0;
background-color:transparent;
border:none;
}
.vertical input.radio, .vertical input.checkbox {
clear:both;
}
.vertical .label_checkbox, .vertical .label_radio {
float:none;
}
/* select */
select.select, select.selectmultiple {
width:175px;
margin-right: 5px;
padding:3px 2px 2px 1px;
background-color:#FDFDFD;
border:1px solid #77889C;
height:24px;
}
select.select option, select.selectmultiple option {
line-height:15px;
font-size:13px;
padding:1px 2px;
}
select.selectmultiple {
height:auto;
}
select.select:focus, select.selectmultiple:focus {
background-color:#FFFFFF;
border:1px solid #227799;
}
select option {
padding:2px 0 3px 0;
}
option:hover {
color:#223344;
}
/* sizes */
select.full, input.full {
width:100%;
}
input.large {
width:255px;
}
select.large {
width:265px;
}
input.medium {
width: 150px;
}
input.small {
width:75px;
}
input.fontsmall {
font-size:10px;
margin-right:2px;
margin-left:2px;
padding-left:2px;
padding-right:2px;
}
input.fontsmallprimary {
font-size:10px;
margin-right:2px;
margin-left:2px;
padding-left:2px;
padding-right:2px;
color:#fff;
}
select.small {
width:85px;
}
input.tiny {
width:30px;
}
select.tiny {
width:40px;
}
/* tabular */
.tabular input.text, .tabular select.select, .tabular select.selectmultiple, .tabular input.file {
float:left;
margin-bottom:0;
}
/* actions */
.actions input.submit, .actions .input.reset, .actions input.text, .actions select.select, .actions select.selectmultiple {
margin-bottom:0;
}
/* -------------------------------------------------------------------------------------
COLUMNS
======================================================================================*/
/* columns */
.columns {
/*min-width:975px;*/
}
/* flexible cols */
.col33, .col66, .col45, .col50, .col55, .colLeft, .colRight, .col1, .col2, .allsourcescol1, .allsourcescol2 {
float:left;
}
.col33 {
width:33.33%;
}
.col66 {
width:66.66%;
}
.col45 {
width:45%;
}
.col50 {
width:50%;
}
.col55 {
width:55%;
}
/* fixed columns */
.cols {
width:900px;
}
.col1 {
width:225px;
}
.col2 {
width:500px;
margin-right:10px;
}
.allsourcescol1 {
width:280px;
}
.allsourcescol2 {
position: absolute;
left: 290px;
top: 5px;
}
/* subcolumns */
.col2 .colLeft {
width:220px;
}
.col2 .colRight {
width:210px;
}
.col2 .fieldgroup .colLeft {
width:205px;
}
.col2 .fieldgroup .colRight {
width:200px;
}
#vdb_page td {
text-decoration:none;
color: #fff;
}
#vdb_page a {
color: #66ccff;
text-decoration:none;
}
#vdb_page a:link {
text-decoration:none;
}
#vdb_page a:active {
text-decoration:none;
}
#vdb_page a:visited {
text-decoration:none;
}
.body_iframe {
background:transparent;
}
.paddingTop20 {
padding-top: 20px;
}
/* -------------------------------------------------------------------------------------
ERRORS
======================================================================================*/
div.errors {
padding: 5px;
margin: 5px 0;
background-color: #df0d3e;
}
div.messages {
padding: 5px;
margin: 5px 0;
background-color: #f35b0e;
}
} | frontend/six/assets/css/general_content.css |
/* --- NOSE AG Design Intelligence --------------------------------------------------- */
/* --- CSS Framework: font definitions overall and elements ------------------------- */
/* --- TEL0022 SIX iD HTML, BR ------------------------------------------------- */
@media all {
/* -------------------------------------------------------------------------------------
LAYOUT
======================================================================================*/
/* container */
#container {
height:100%;
background-color:#303135;
overflow:hidden;
margin-bottom:-2px;
}
body.plain #container {
min-width:500px;
}
/* wrapper */
#wrapper {
height:100%;
z-index:1;
}
/* header */
#header {
height:40px;
position:relative;
z-index:2;
background-color: #1f1f22;
border-bottom: solid 1px #000000;
}
#logo {
position:absolute;
top:0;
right:0;
height:40px;
width:380px;
}
#search {
/*position:absolute;*/
z-index:2;
padding:8px 5px 0 10px;
height:24px;
max-width:790px;
}
/* sidebar */
#sidebar {
clear:both;
float:left;
width:215px;
height:100%;
background-color: #1f1f22;
}
#navigation {
width:215px;
}
#subnavigation {
position:fixed;
left:0;
bottom:0;
top:203px;
width:195px;
padding:5px 10px;
overflow:auto;
}
#subnavigationNoPadding {
position:fixed;
left:0;
bottom:0;
top:203px;
width:215px;
padding:0;
overflow:hidden;
}
/* main */
#main {
position:relative;
height:100%;
margin:0 0 0 0;
z-index:1;
}
body.plain #main {
margin:0 10px 0 0;
}
#toolbar {
height:28px;
}
#topbar {
height:28px;
padding:10px 5px;
}
#content {
position:fixed;
top:2px;
bottom:0;
right:0;
left:0;
padding:5px;
/*min-width:778px;*/
overflow:auto;
}
#contentBackoffice {
position:fixed;
top:140px;
bottom:0;
right:0;
left:0;
padding:5px;
/*min-width:778px;*/
overflow:auto;
}
.backoffice50 {
height: 50%;
width: 100%;
overflow: hidden;
}
body.plain #content {
position:fixed;
top:40px;;
bottom:0;
right:0;
left:0;
padding:10px;
/*min-width:400px;*/
overflow:auto;
}
/* -------------------------------------------------------------------------------------
LAYOUT: POPUP
======================================================================================*/
body.popup #main {
margin-left: 0px;
}
body.popup #content {
left: 0px;
/*top:112px;*/
}
/* -------------------------------------------------------------------------------------
LAYOUT: IFRAME
======================================================================================*/
/* iframe page */
.content_iframe iframe {
height:99%;
}
body.iframe, #body_content {
overflow-y:scroll;
}
body.iframe {
background-color: #EEF5F9;
overflow:scroll;
padding: 5px;
height: 100%;
}
#iframeListingList {
overflow-y:scroll;
height: 100%;
}
#body_content {
height:100%;
}
/* -------------------------------------------------------------------------------------
GENERIC
======================================================================================*/
body {
font-size: 62.5%;
font-family:Arial, Helvetica, sans-serif;
line-height:15px;
font-size:13px;
color:#fff;
}
/* clearfix */
.clearfix:after, .columns:after, .cols:after, .fieldgroup:after, .fields:after, #navigation ul:after, #tabnavigation ul:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/* Safari */
.clearfix, .columns, .cols, .fieldgroup, .fields, #navigation ul, #tabnavigation ul { display: block; }
/* Overflow-Methode zum Clearen der Float-Umgebungen */
/* floating & clear */
.float {
float:left;
}
.right {
float:right;
}
.clear {
clear:both;
}
/* hidden */
.hidden {
position:absolute;
left:-1000px;
top:-1000px;
visibility:hidden;
width:0;
height:0;
line-height:0;
}
.invisible {
visibility:hidden;
}
/* align */
.center {
text-align:center;
}
/* colors */
.less {
color:#ff1000;
}
.more {
color:#00e804;
}
.disabled {
color:#737780;
}
/* margins */
#content .mright {
margin-right:10px;
}
#content .mbottom, #contentIframe .mbottom {
margin-bottom:10px;
}
/* -------------------------------------------------------------------------------------
HEADERS
======================================================================================*/
h1 {
position:absolute;
left:1px;
top:1px;
display:block;
height:20px;
padding:4px 20px 4px 10px;
font-size:13px;
line-height:20px;
font-weight:bold;
color:#fff;
border-right:1px solid #000;
background-color:#303135;
}
h2 {
font-size:13px;
line-height:20px;
margin:0 0 10px 0;
font-weight:bold;
color:#fff;
}
h3 {
font-size:13px;
line-height:18px;
font-weight:bold;
color:#fff;
}
h3 span.link {
cursor:pointer;
text-decoration:underline;
}
h3 span.link:hover {
text-decoration:none;
}
h4 {
font-size:13px;
line-height:15px;
font-weight:bold;
color:#fff;
}
/* -------------------------------------------------------------------------------------
TEXT
======================================================================================*/
/* paragraph */
p {
}
/* links */
a {
color:#66CCFF;
text-decoration:none;
}
a:hover {
text-decoration:none;
}
/* lists */
ol {
list-style-position:outside;
list-style-type:decimal;
padding-left:10px;
margin-left:10px;
}
/* quotes */
blockquote {
font-weight:bold;
font-style:italic;
}
cite {
font-style:normal;
}
cite:before {
content:"�";
}
cite:after {
content:"�";
}
strong {
font-weight:bold;
}
/* -------------------------------------------------------------------------------------
IMAGES
======================================================================================*/
/* scale back */
img.scale {
max-width:100%;
}
/* -------------------------------------------------------------------------------------
TABLE
======================================================================================*/
table.data, table.data_analyse, .table table, table.data_small {
width:100%;
border-collapse:collapse;
}
table.tabular {
border-collapse:collapse;
}
table.tabular td.help {
width: 35px;
text-align: right;
}
table.tabular td.w40 {
width: 40px;
}
/* only for debugging */
/*table.tabular td {*/
/*border: 1px dotted red;*/
/*}*/
table.data caption, table.data_analyse caption, table.data_small caption {
}
table.data th, .table th, table.data_analyse th, table.data_small th {
line-height:15px;
color:#737780;
}
table.data_analyse tr.headerClass th {
color:#fff;
}
table.data td, .table td, table.data_analyse td, table.data_small td {
line-height:15px;
color:#fff;
}
table.data td.more, .table td.more, table.data_analyse td.more, table.data_small td.more {
color: #00e804;
}
table.data td.less, .table td.less, table.data_analyse td.less, table.data_small td.less {
color: #ff1000;
}
.more {
}
table.data th, table.data td, .table td, .table th, table.data_analyse th, table.data_analyse td {
font-size:9px;
padding:1px 4px 1px 4px;
}
table.data_small th, table.data_small td {
font-size:8px;
padding:0 4px;
}
table.tabular th, table.tabular td, .table th {
font-size:13px;
line-height:15px;
padding: 1px 0 0 0;
vertical-align:middle;
}
table.tabular th, .table th {
color:#737780;
}
table.tabular td {
color:#fff;
}
table.tabular td.label {
padding-right: 10px;
}
table.data th, table.data_small th, table.data_analyse th {
background-color:#303135;
text-align:left;
cursor:pointer;
cursor:hand;
}
table.data th, table.data_analyse th {
padding: 4px;
}
table.data_small th {
padding: 2px;
}
table.data th.gl_size12, table.data td.gl_size12 {
font-size: 12px;
}
table th[align='right'] {
text-align:right;
}
table th[align='center'] {
text-align:center;
}
table.data td {
}
table.data th.small {
padding: 2px 4px;
}
table.data th.cdef {
cursor:default;
}
table.data tr.headerClass th {
color: #fff;
}
/* zebra */
table.data tr.list_color1, table.data_analyse tr.list_color1 {
background-color:#303135;
}
table.data tr.list_color2, table.data_analyse tr.list_color2 {
background-color:#292a30;
}
/* sortable */
table.sortable .header {
padding-right:18px;
background-image:url(/idhtml/style/img/icon_sort.gif);
background-position:right 8px;
background-repeat:no-repeat;
cursor:pointer;
}
table.sortable .headerSortUp {
background-image:url(/idhtml/style/img/icon_sort-up.gif);
background-position:right 9px;
}
table.sortable .headerSortDown {
background-image:url(/idhtml/style/img/icon_sort-down.gif);
background-position:right 9px;
}
table.sortable .nosort {
background-image:none;
cursor:default;
}
/* hoverable */
#content table.hoverable tr.hover td {
background-color:#44454e;
cursor:pointer;
}
/* hoverable */
#searchmain table.hoverable tr:hover td, #searchmain table.hoverable tr.hover td,
#searchmain table.hoverable tr.list_color1:hover td, #searchmain table.hoverable tr.list_color2:hover td,
#searchmain table.hoverable tr.even:hover td, #searchmain table.hoverable tr.odd:hover td {
background-color:#44454e;
cursor:pointer;
}
/* inner tables */
.table table td table, .table table td table td {
border:none;
}
#vdb_page table {
width: auto;
border: none;
}
#vdb_page table table {
width: auto;
border: 0;
}
#vdb_page td {
border: 0;
}
#vdb_page table table tr {
border-bottom: 0;
}
#vdb_page tr.vdb_header td {
padding-top: 8px;
padding-bottom: 8px;
}
#vdb_page table table tr.vdb_header td {
padding: 0;
}
#vdb_page .note {
color: #737780;
font-size: x-small;
}
#vdb_page tr.vdb_search td {
padding-top: 8px;
padding-bottom: 8px;
}
/* -------------------------------------------------------------------------------------
FORMS
======================================================================================*/
/* styled form */
form.form, div.form {
border:1px solid #1f1f22;
background-color:#292a30;
padding:5px;
margin-bottom:5px;
}
/* fieldsets */
fieldset {
margin:0 0 0 0;
}
.fieldgroup {
padding: 5px;
margin:0;
}
form.extSearch .fieldgroup {
margin-right:5px;
}
.fieldgroup td.w165 {
width: 165px;
}
.fieldgroup_neutral {
padding:5px;
}
.fieldgroup2 {
background-color: #292a30;
padding: 5px;
margin-right: 5px;
}
.fieldbox {
padding:4px 5px 3px 5px;
background-color:#303135;
border:none;
}
.fields {
margin-bottom: 0;
}
.actions {
margin:10px -6px 0 -6px;
padding:9px;
border-top:1px solid #1f1f22;
height:24px;
}
.spacer {
margin-bottom:3px;
}
/* text */
.form h3 {
font-weight:bold;
color:#fff;
padding:0;
}
.form br {
clear:both;
font-size:0;
line-height:0;
}
.form .info {
float:left;
line-height:24px;
}
/* labels */
.form label {
display:block;
padding:0 0 1px 0;
margin:0 5px 0 0;
font-size:13px;
line-height:15px;
color:#fff;
}
label.label_checkbox, label.label_radio {
float:left;
margin-right:15px;
}
label.float {
padding:4px 0 1px 0;
}
.vertical .label_checkbox {
line-height: 20px;
}
/* inputs */
input, select {
font-size:13px;
line-height:15px;
font-family:Arial, Helvetica, sans-serif;
color:#334455;
}
input.text, input.text_err {
padding:4px 4px 3px 4px;
height:15px;
width:165px;
margin:0 5px 0 0;
background-color:#FDFDFD;
border:1px solid #000;
}
input.file {
position: relative;
width:165px;
background-color:#FDFDFD;
border:0;
}
input.text_err {
background-color: #FF6666;
}
input.editable-select {
background: #FFF url(/idhtml/style/arrow-down.gif) right center no-repeat;
width:40px;
height:15px;
padding:4px 4px 3px 4px;
margin:0 0 15px 0;
background-color:#FDFDFD;
border:1px solid #77889C;
border-right:0;
}
input.text:focus, input.editable-select:focus {
background-color:#FFFFFF;
border:1px solid #227799;
}
input.text_err:focus {
border:1px solid #227799;
}
input.submit, input.reset, input.disabled_button {
height:24px;
padding:3px 4px 6px 4px;
margin:0 5px 0 0;
background: #FFFFFF repeat-x left top;
border:1px solid #77889C;
cursor: pointer;
}
input.submit, input.reset {
color:#fff;
background-color: #00669e;
border: 1px solid #000;
}
input.disabled_button {
color:#999;
background-image:url(/idhtml/style/img/bg_navitem_disabled.gif);
cursor: default;
}
input.submit:hover, input.reset:hover {
background-color: #005c8e;
}
input.input.disabled_button:hover {
background-image:url(/idhtml/style/img/bg_navitem_disabled.gif);
cursor: default;
}
input.submit:focus, input.reset:focus {
border:1px solid #227799;
}
input.primary {
/*border:1px solid #227799;*/
font-weight:bold;
}
input.blur {
color:#454545;
}
/* radio & checkbox */
input.radio {
float:left;
margin:1px 5px 4px 0;
padding:0;
border:none;
}
input.checkbox {
float:left;
padding:0;
width:15px;
height:15px;
margin:1px 5px 3px 0;
padding:0;
background-color:transparent;
border:none;
}
.vertical input.radio, .vertical input.checkbox {
clear:both;
}
.vertical .label_checkbox, .vertical .label_radio {
float:none;
}
/* select */
select.select, select.selectmultiple {
width:175px;
margin-right: 5px;
padding:3px 2px 2px 1px;
background-color:#FDFDFD;
border:1px solid #77889C;
height:24px;
}
select.select option, select.selectmultiple option {
line-height:15px;
font-size:13px;
padding:1px 2px;
}
select.selectmultiple {
height:auto;
}
select.select:focus, select.selectmultiple:focus {
background-color:#FFFFFF;
border:1px solid #227799;
}
select option {
padding:2px 0 3px 0;
}
option:hover {
color:#223344;
}
/* sizes */
select.full, input.full {
width:100%;
}
input.large {
width:255px;
}
select.large {
width:265px;
}
input.medium {
width: 150px;
}
input.small {
width:75px;
}
input.fontsmall {
font-size:10px;
margin-right:2px;
margin-left:2px;
padding-left:2px;
padding-right:2px;
}
input.fontsmallprimary {
font-size:10px;
margin-right:2px;
margin-left:2px;
padding-left:2px;
padding-right:2px;
color:#fff;
}
select.small {
width:85px;
}
input.tiny {
width:30px;
}
select.tiny {
width:40px;
}
/* tabular */
.tabular input.text, .tabular select.select, .tabular select.selectmultiple, .tabular input.file {
float:left;
margin-bottom:0;
}
/* actions */
.actions input.submit, .actions .input.reset, .actions input.text, .actions select.select, .actions select.selectmultiple {
margin-bottom:0;
}
/* -------------------------------------------------------------------------------------
COLUMNS
======================================================================================*/
/* columns */
.columns {
/*min-width:975px;*/
}
/* flexible cols */
.col33, .col66, .col45, .col50, .col55, .colLeft, .colRight, .col1, .col2, .allsourcescol1, .allsourcescol2 {
float:left;
}
.col33 {
width:33.33%;
}
.col66 {
width:66.66%;
}
.col45 {
width:45%;
}
.col50 {
width:50%;
}
.col55 {
width:55%;
}
/* fixed columns */
.cols {
width:900px;
}
.col1 {
width:225px;
}
.col2 {
width:500px;
margin-right:10px;
}
.allsourcescol1 {
width:280px;
}
.allsourcescol2 {
position: absolute;
left: 290px;
top: 5px;
}
/* subcolumns */
.col2 .colLeft {
width:220px;
}
.col2 .colRight {
width:210px;
}
.col2 .fieldgroup .colLeft {
width:205px;
}
.col2 .fieldgroup .colRight {
width:200px;
}
#vdb_page td {
text-decoration:none;
color: #fff;
}
#vdb_page a {
color: #66ccff;
text-decoration:none;
}
#vdb_page a:link {
text-decoration:none;
}
#vdb_page a:active {
text-decoration:none;
}
#vdb_page a:visited {
text-decoration:none;
}
.body_iframe {
background:transparent;
}
.paddingTop20 {
padding-top: 20px;
}
/* -------------------------------------------------------------------------------------
ERRORS
======================================================================================*/
div.errors {
padding: 5px;
margin: 5px 0;
background-color: #df0d3e;
}
div.messages {
padding: 5px;
margin: 5px 0;
background-color: #f35b0e;
}
} | 0.187579 | 0.058642 |
.component {
background-color: #333333;
color: white;
}
.custom-component {
width: auto;
height: auto;
}
.modal-background {
background-color: #252526;
opacity: 0.2;
}
.modal-component {
filter: blur(1);
}
/************************************************************************
** DIALOGS
*************************************************************************/
.dialog {
border: 1px solid #ABABAB;
filter: drop-shadow(1, 45, #000000, 0.2, 2, 2, 1, 3, false);
border-radius: 2px;
height: auto;
width: 300px;
background-color: white;
padding: 1px;
}
.dialog-title-bar {
background-color: #EEEEEE;
padding: 5px;
width: 100%;
border-bottom-width: 1px;
border-bottom-color: #ABABAB;
}
.dialog-title {
width: 100%;
vertical-align: center;
font-style: bold;
color: #888888;
}
.dialog-content {
padding: 10px;
}
.dialog-close-button {
icon: "haxeui-core/styles/default/small-close-button.png";
padding: 0 !important;
border: none !important;
background-color: none !important;
horizontal-align: right;
vertical-align: center;
}
.dialog-buttons {
horizontal-align: right;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-top: 10px;
}
.message-dialog-message {
vertical-align: center;
}
/************************************************************************
** LABEL
*************************************************************************/
.label {
width: auto;
height: auto;
}
/************************************************************************
** IMAGE
*************************************************************************/
.image {
width: auto;
height: auto;
}
/************************************************************************
** BUTTON
*************************************************************************/
.button {
/* background: #EDEDED #E6E6E6 vertical; */
background: #0E639C;
color: white;
border: 4px solid #333333;
border-radius: 0px;
padding: 1px 5px;
cursor: pointer;
width: auto;
height: auto;
spacing: 5px 5px;
}
.button .label {
background: none;
}
.button:hover {
background: #1177BB;
color: #000000;
}
.button:down {
background: #2E86C2;
color: white;
border-color: #2E86C2;
border-width: 4px;
}
.button:active {
border: 2px solid #77C6FF;
}
.button.emphasized {
background: #DAE4EE #D4DEE8 vertical;
border-color: #6CA1D7;
}
.button.emphasized:hover {
background: #E2ECF6 #DEE8F2 vertical;
border-color: #6CA1D7;
}
.button.emphasized:down {
background: #C2CCD6 #B4BEC8 vertical;
border-color: #568CC1;
}
.button:disabled {
background: #D4D4D4 #CCCCCC vertical;
color: #909090;
cursor: default;
}
/************************************************************************
** TEXT FIELD
*************************************************************************/
.textfield {
background-color: #FFFFFF;
color: #444444;
border: 1px solid #ABABAB;
border-radius: 2px;
padding: 5px 5px;
filter: drop-shadow(1, 45, #888888, 0.2, 1, 1, 1, 3, true);
height: auto;
spacing: 5px;
icon-position: right;
}
.textfield:active {
border: 1px solid #216AAE;
}
.textfield:empty {
color: #A0A0A0;
}
.textfield:disabled {
background: #D4D4D4 #CCCCCC vertical;
}
.textarea {
color: #444444;
border: 1px solid #ABABAB;
border-radius: 2px;
padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 0px;
filter: drop-shadow(1, 45, #888888, 0.2, 1, 1, 1, 3, true);
background-color: white;
}
.textarea:active {
border: 1px solid #216AAE;
}
.textarea:empty {
color: #A0A0A0;
}
/************************************************************************
** CONTAINERS
*************************************************************************/
.box, .vbox, .hbox, .absolute, .continuoushbox, .hgrid, .vgrid, .grid {
spacing: 5px 5px;
}
.box, .vbox, .hbox, .continuoushbox, .hgrid, .vgrid, .grid {
width: auto;
height: auto;
}
/************************************************************************
** SCROLL
*************************************************************************/
.scroll {
background-color: #E9E9E9;
}
.scroll .button {
border-radius: 0;
border: none;
background-color: #E9E9E9;
padding: 0;
filter: none;
}
.scroll .button:hover {
background-color: #D7D7D7;
}
.scroll .button:down {
background-color: #525252;
filter: none;
}
.scroll .button.deinc {
height: 17px;
width: 17px;
opacity: 1;
}
.scroll .button.deinc:disabled {
opacity: 0.5;
}
.scroll .button.deinc:down {
}
.scroll .button.inc {
height: 17px;
width: 17px;
opacity: 1;
}
.scroll .button.inc:disabled {
opacity: 0.5;
}
.scroll .button.inc:down {
}
.scroll .button.thumb {
background-color: #C6C6C6;
}
.scroll .button.thumb:hover {
background-color: #AAAAAA;
}
.scroll .button.thumb:down {
background-color: #525252;
}
.scroll .button.thumb:disabled {
background-color: #DDDDDD;
}
/************************************************************************
** VSCROLL
*************************************************************************/
.vscroll {
width: 17px;
}
.vscroll .button.thumb {
width: 17px;
height: 17px;
}
.vscroll .button.deinc {
icon: "haxeui-core/styles/default/up_arrow.png";
}
.vscroll .button.deinc:down {
icon: "haxeui-core/styles/default/up_arrow_white.png";
}
.vscroll .button.inc {
icon: "haxeui-core/styles/default/down_arrow.png";
}
.vscroll .button.inc:down {
icon: "haxeui-core/styles/default/down_arrow_white.png";
}
/************************************************************************
** HSCROLL
*************************************************************************/
.hscroll {
height: 17px;
}
.hscroll .button.thumb {
width: 17px;
height: 17px;
}
.hscroll .button.deinc {
icon: "haxeui-core/styles/default/left_arrow.png";
}
.hscroll .button.deinc:down {
icon: "haxeui-core/styles/default/left_arrow_white.png";
}
.hscroll .button.inc {
icon: "haxeui-core/styles/default/right_arrow.png";
}
.hscroll .button.inc:down {
icon: "haxeui-core/styles/default/right_arrow_white.png";
}
/************************************************************************
** SCROLLVIEW
*************************************************************************/
.scrollview {
border: 1px solid #ABABAB;
border-radius: 1px;
padding: 1px;
width: auto;
height: auto;
}
.scrollview .scrollview-contents {
height: auto;
spacing: 5px;
padding: 5px;
border: none;
}
/************************************************************************
** CHECKBOX
*************************************************************************/
.checkbox {
width: auto;
height: auto;
horizontal-spacing: 4px;
cursor: pointer;
color: #000000;
}
.checkbox:hover {
}
.checkbox:disabled {
cursor: default;
color: #909090;
}
.checkbox-value {
border: 1px solid #ABABAB;
background-color: #FFFFFF;
width: 16px;
height: 16px;
vertical-align: center;
border-radius: 2px;
icon: none;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
cursor: pointer;
}
.checkbox-value:hover {
border: 1px solid #216AAE;
}
.checkbox-value:selected {
icon: "haxeui-core/styles/default/check.png";
}
.checkbox-value:disabled {
background: #D4D4D4 #CCCCCC vertical;
cursor: default;
}
.checkbox-label {
vertical-align: center;
}
.checkbox-icon {
horizontal-align: center;
vertical-align: center;
cursor: pointer;
opacity: 1;
}
.checkbox-icon:disabled {
cursor: default;
opacity: 0.5;
}
/************************************************************************
** OPTIONBOX
*************************************************************************/
.optionbox {
width: auto;
height: auto;
horizontal-spacing: 4px;
cursor: pointer;
color: #000000;
}
.optionbox:hover {
}
.optionbox:disabled {
cursor: default;
color: #909090;
}
.optionbox-value {
border: 1px solid #ABABAB;
background-color: #FFFFFF;
width: 16px;
height: 16px;
vertical-align: center;
border-radius: 18px;
icon: none;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
padding-top: 1px;
cursor: pointer;
}
.optionbox-value:hover {
border: 1px solid #216AAE;
}
.optionbox-value:selected {
icon: "haxeui-core/styles/default/option.png";
}
.optionbox-value:disabled {
background: #D4D4D4 #CCCCCC vertical;
cursor: default;
}
.optionbox-label {
vertical-align: center;
cursor: pointer;
}
.optionbox-icon {
horizontal-align: center;
vertical-align: center;
cursor: pointer;
opacity: 1;
}
.optionbox-icon:disabled {
cursor: default;
opacity: 0.5;
}
/************************************************************************
** HPROGRESS
*************************************************************************/
.hprogress {
border: 1px solid #ABABAB;
padding: 2px;
border-radius: 2px;
background: #F1F1F1 #FFFFFF vertical;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
}
.hprogress .progress-value {
border: none;
background: #6CAADB #216AAE vertical;
height: 100%;
border-radius: 2px;
}
.hprogress .progress-value:disabled {
background: #BFBFBF #8C8C8C vertical;
}
/************************************************************************
** VPROGRESS
*************************************************************************/
.vprogress {
border: 1px solid #ABABAB;
padding: 2px;
border-radius: 2px;
background: #F1F1F1 #FFFFFF horizontal;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
}
.vprogress .progress-value {
border: none;
background: #6CAADB #216AAE horizontal;
width: 100%;
border-radius: 2px;
}
.vprogress .progress-value:disabled {
background: #BFBFBF #8C8C8C horizontal;
}
/************************************************************************
** HSLIDER
*************************************************************************/
.hslider {
padding-left: 5px;
padding-right: 5px;
}
.hslider .slider-value-background {
border: 1px solid #ABABAB;
padding: 2px;
border-radius: 4px;
background: #F1F1F1 #FFFFFF vertical;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
width: 100%;
height: 8px;
vertical-align: center;
cursor: pointer;
}
.hslider .slider-value-background:disabled {
cursor: default;
}
.hslider .slider-value {
border: none;
background: #6CAADB #216AAE vertical;
height: 100%;
border-radius: 2px;
cursor: pointer;
}
.hslider .slider-value:disabled {
background: #BFBFBF #8C8C8C vertical;
cursor: default;
}
.hslider .slider-button {
vertical-align: center;
height: 14px;
width: 14px;
border-radius: 16px;
}
/************************************************************************
** VSLIDER
*************************************************************************/
.vslider {
padding-top: 5px;
padding-bottom: 5px;
}
.vslider .slider-value-background {
border: 1px solid #ABABAB;
padding: 2px;
border-radius: 4px;
background: #F1F1F1 #FFFFFF horizontal;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
height: 100%;
width: 8px;
horizontal-align: center;
cursor: pointer;
}
.vslider .slider-value-background:disabled {
cursor: default;
}
.vslider .slider-value {
border: none;
background: #6CAADB #216AAE horizontal;
width: 100%;
border-radius: 2px;
cursor: pointer;
}
.vslider .slider-value:disabled {
background: #BFBFBF #8C8C8C horizontal;
cursor: default;
}
.vslider .slider-button {
horizontal-align: center;
height: 14px;
width: 14px;
border-radius: 16px;
}
/************************************************************************
** TABS
*************************************************************************/
.tabbar {
horizontal-spacing: 1px;
padding-left: 5px;
padding-right: 5px;
height: auto;
width: auto;
background-color: #333333;
border-bottom-width: 1px;
border-bottom-color: #ABABAB;
clip: true;
}
.tabbar .tabbar-contents {
border: none;
border-bottom-width: 1px;
border-bottom-color: #ABABAB;
background-color: #1E1E1E;
}
/*
.tabbar .tabbar-background {
background-color: white;
border: none;
}
*/
.tabbar-button {
border-radius: 0px;
background: #2D2D2D;
padding: 6px;
margin: 0px;
vertical-align: bottom;
}
.tabbar-button:down {
background-color: #1E1E1E;
}
.tabbar-button-selected, .tabbar-button-selected:hover, .tabbar-button-selected:down {
border-radius: 0px;
border: 0px solid black;
border-bottom-width: 1px;
border-bottom-color: black;
background-color: #1E1E1E;
}
.tabbar-scroll-left {
icon: "haxeui-core/styles/default/left_arrow.png";
border-radius: 0;
}
.tabbar-scroll-right {
icon: "haxeui-core/styles/default/right_arrow.png";
border-radius: 0;
}
.tabbar-button-selected .label {
}
.tabbar-button-selected .icon {
}
.tabview {
border: none;
width: auto;
height: auto;
}
.tabview .tabview-tabs {
}
.tabview .tabview-content {
border: 1px solid #ABABAB;
padding: 5px;
width: 100%;
height: 100%;
}
/************************************************************************
** LISTVIEW
*************************************************************************/
.listview {
border: 1px solid #ABABAB;
border-radius: 1px;
padding: 1px;
width: auto;
height: auto;
background-color: #FFFFFF;
}
.listview .listview-contents {
spacing: 0;
width: 100%;
padding: 1px;
}
.itemrenderer {
height: auto;
padding: 5px;
}
.listview .itemrenderer.even {
background-color: #FFFFFF;
cursor: pointer;
}
.listview .itemrenderer.even:hover {
background-color: #ecf2f9;
}
.listview .itemrenderer.odd {
background-color: #F8F8F8;
cursor: pointer;
}
.listview .itemrenderer.odd:hover {
background-color: #ecf2f9;
}
.listview .itemrenderer:selected {
background-color: #a7c4e2;
color: white;
}
/************************************************************************
** DROPDOWNS
*************************************************************************/
.listview.popup {
filter: drop-shadow(1, 45, #000000, 0.2, 2, 2, 1, 3, false);
}
.dropdown {
icon: "haxeui-core/styles/default/up_down_arrows.png";
icon-position: far-right;
}
/************************************************************************
** HEADER
*************************************************************************/
.header {
width: auto;
height: auto;
spacing: 0;
}
.header .column {
border-radius: 0;
icon-position: far-right;
}
.header .column.sortable {
icon: "haxeui-core/styles/default/up_down_arrows.png";
icon-position: far-right;
}
.column .label {
width: 92%;
}
/************************************************************************
** TABLEVIEW
*************************************************************************/
.tableview {
border: 1px solid #ABABAB;
border-radius: 1px;
}
.tableview .tableview-row {
padding: 0px;
spacing: 2px;
background-color: #DDDDDD;
}
.tableview .tableview-contents {
spacing: 0;
padding: 0;
margin-top: -1px;
}
.tableview .itemrenderer.even {
background-color: #FFFFFF;
}
.tableview .itemrenderer.even:hover {
background-color: #F0F0F0;
}
.tableview .itemrenderer.odd {
background-color: #F8F8F8;
}
.tableview .itemrenderer.odd:hover {
background-color: #F0F0F0;
}
.tableview .itemrenderer:selected {
background-color: #CCCCCC;
}
/************************************************************************
** SWITCH
*************************************************************************/
.switch {
background-color: #FFFFFF;
border: 1px solid #ABABAB;
border-radius: 2px;
cursor: pointer;
padding: 0px;
width: 60px;
height: 20px;
filter: drop-shadow(1, 45, #888888, 0.3, 1, 1, 1, 3, true);
}
.switch:hover {
background-color: #FFFFFF;
}
.switch:selected {
background-color: #98c4e6;
}
.switch .button {
height: 100%;
width: 50%;
}
.switch-label {
color: #ABABAB;
}
.switch-label:selected {
color: #2d7cb9;
} | resources/css/theme.css | .component {
background-color: #333333;
color: white;
}
.custom-component {
width: auto;
height: auto;
}
.modal-background {
background-color: #252526;
opacity: 0.2;
}
.modal-component {
filter: blur(1);
}
/************************************************************************
** DIALOGS
*************************************************************************/
.dialog {
border: 1px solid #ABABAB;
filter: drop-shadow(1, 45, #000000, 0.2, 2, 2, 1, 3, false);
border-radius: 2px;
height: auto;
width: 300px;
background-color: white;
padding: 1px;
}
.dialog-title-bar {
background-color: #EEEEEE;
padding: 5px;
width: 100%;
border-bottom-width: 1px;
border-bottom-color: #ABABAB;
}
.dialog-title {
width: 100%;
vertical-align: center;
font-style: bold;
color: #888888;
}
.dialog-content {
padding: 10px;
}
.dialog-close-button {
icon: "haxeui-core/styles/default/small-close-button.png";
padding: 0 !important;
border: none !important;
background-color: none !important;
horizontal-align: right;
vertical-align: center;
}
.dialog-buttons {
horizontal-align: right;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-top: 10px;
}
.message-dialog-message {
vertical-align: center;
}
/************************************************************************
** LABEL
*************************************************************************/
.label {
width: auto;
height: auto;
}
/************************************************************************
** IMAGE
*************************************************************************/
.image {
width: auto;
height: auto;
}
/************************************************************************
** BUTTON
*************************************************************************/
.button {
/* background: #EDEDED #E6E6E6 vertical; */
background: #0E639C;
color: white;
border: 4px solid #333333;
border-radius: 0px;
padding: 1px 5px;
cursor: pointer;
width: auto;
height: auto;
spacing: 5px 5px;
}
.button .label {
background: none;
}
.button:hover {
background: #1177BB;
color: #000000;
}
.button:down {
background: #2E86C2;
color: white;
border-color: #2E86C2;
border-width: 4px;
}
.button:active {
border: 2px solid #77C6FF;
}
.button.emphasized {
background: #DAE4EE #D4DEE8 vertical;
border-color: #6CA1D7;
}
.button.emphasized:hover {
background: #E2ECF6 #DEE8F2 vertical;
border-color: #6CA1D7;
}
.button.emphasized:down {
background: #C2CCD6 #B4BEC8 vertical;
border-color: #568CC1;
}
.button:disabled {
background: #D4D4D4 #CCCCCC vertical;
color: #909090;
cursor: default;
}
/************************************************************************
** TEXT FIELD
*************************************************************************/
.textfield {
background-color: #FFFFFF;
color: #444444;
border: 1px solid #ABABAB;
border-radius: 2px;
padding: 5px 5px;
filter: drop-shadow(1, 45, #888888, 0.2, 1, 1, 1, 3, true);
height: auto;
spacing: 5px;
icon-position: right;
}
.textfield:active {
border: 1px solid #216AAE;
}
.textfield:empty {
color: #A0A0A0;
}
.textfield:disabled {
background: #D4D4D4 #CCCCCC vertical;
}
.textarea {
color: #444444;
border: 1px solid #ABABAB;
border-radius: 2px;
padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 0px;
filter: drop-shadow(1, 45, #888888, 0.2, 1, 1, 1, 3, true);
background-color: white;
}
.textarea:active {
border: 1px solid #216AAE;
}
.textarea:empty {
color: #A0A0A0;
}
/************************************************************************
** CONTAINERS
*************************************************************************/
.box, .vbox, .hbox, .absolute, .continuoushbox, .hgrid, .vgrid, .grid {
spacing: 5px 5px;
}
.box, .vbox, .hbox, .continuoushbox, .hgrid, .vgrid, .grid {
width: auto;
height: auto;
}
/************************************************************************
** SCROLL
*************************************************************************/
.scroll {
background-color: #E9E9E9;
}
.scroll .button {
border-radius: 0;
border: none;
background-color: #E9E9E9;
padding: 0;
filter: none;
}
.scroll .button:hover {
background-color: #D7D7D7;
}
.scroll .button:down {
background-color: #525252;
filter: none;
}
.scroll .button.deinc {
height: 17px;
width: 17px;
opacity: 1;
}
.scroll .button.deinc:disabled {
opacity: 0.5;
}
.scroll .button.deinc:down {
}
.scroll .button.inc {
height: 17px;
width: 17px;
opacity: 1;
}
.scroll .button.inc:disabled {
opacity: 0.5;
}
.scroll .button.inc:down {
}
.scroll .button.thumb {
background-color: #C6C6C6;
}
.scroll .button.thumb:hover {
background-color: #AAAAAA;
}
.scroll .button.thumb:down {
background-color: #525252;
}
.scroll .button.thumb:disabled {
background-color: #DDDDDD;
}
/************************************************************************
** VSCROLL
*************************************************************************/
.vscroll {
width: 17px;
}
.vscroll .button.thumb {
width: 17px;
height: 17px;
}
.vscroll .button.deinc {
icon: "haxeui-core/styles/default/up_arrow.png";
}
.vscroll .button.deinc:down {
icon: "haxeui-core/styles/default/up_arrow_white.png";
}
.vscroll .button.inc {
icon: "haxeui-core/styles/default/down_arrow.png";
}
.vscroll .button.inc:down {
icon: "haxeui-core/styles/default/down_arrow_white.png";
}
/************************************************************************
** HSCROLL
*************************************************************************/
.hscroll {
height: 17px;
}
.hscroll .button.thumb {
width: 17px;
height: 17px;
}
.hscroll .button.deinc {
icon: "haxeui-core/styles/default/left_arrow.png";
}
.hscroll .button.deinc:down {
icon: "haxeui-core/styles/default/left_arrow_white.png";
}
.hscroll .button.inc {
icon: "haxeui-core/styles/default/right_arrow.png";
}
.hscroll .button.inc:down {
icon: "haxeui-core/styles/default/right_arrow_white.png";
}
/************************************************************************
** SCROLLVIEW
*************************************************************************/
.scrollview {
border: 1px solid #ABABAB;
border-radius: 1px;
padding: 1px;
width: auto;
height: auto;
}
.scrollview .scrollview-contents {
height: auto;
spacing: 5px;
padding: 5px;
border: none;
}
/************************************************************************
** CHECKBOX
*************************************************************************/
.checkbox {
width: auto;
height: auto;
horizontal-spacing: 4px;
cursor: pointer;
color: #000000;
}
.checkbox:hover {
}
.checkbox:disabled {
cursor: default;
color: #909090;
}
.checkbox-value {
border: 1px solid #ABABAB;
background-color: #FFFFFF;
width: 16px;
height: 16px;
vertical-align: center;
border-radius: 2px;
icon: none;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
cursor: pointer;
}
.checkbox-value:hover {
border: 1px solid #216AAE;
}
.checkbox-value:selected {
icon: "haxeui-core/styles/default/check.png";
}
.checkbox-value:disabled {
background: #D4D4D4 #CCCCCC vertical;
cursor: default;
}
.checkbox-label {
vertical-align: center;
}
.checkbox-icon {
horizontal-align: center;
vertical-align: center;
cursor: pointer;
opacity: 1;
}
.checkbox-icon:disabled {
cursor: default;
opacity: 0.5;
}
/************************************************************************
** OPTIONBOX
*************************************************************************/
.optionbox {
width: auto;
height: auto;
horizontal-spacing: 4px;
cursor: pointer;
color: #000000;
}
.optionbox:hover {
}
.optionbox:disabled {
cursor: default;
color: #909090;
}
.optionbox-value {
border: 1px solid #ABABAB;
background-color: #FFFFFF;
width: 16px;
height: 16px;
vertical-align: center;
border-radius: 18px;
icon: none;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
padding-top: 1px;
cursor: pointer;
}
.optionbox-value:hover {
border: 1px solid #216AAE;
}
.optionbox-value:selected {
icon: "haxeui-core/styles/default/option.png";
}
.optionbox-value:disabled {
background: #D4D4D4 #CCCCCC vertical;
cursor: default;
}
.optionbox-label {
vertical-align: center;
cursor: pointer;
}
.optionbox-icon {
horizontal-align: center;
vertical-align: center;
cursor: pointer;
opacity: 1;
}
.optionbox-icon:disabled {
cursor: default;
opacity: 0.5;
}
/************************************************************************
** HPROGRESS
*************************************************************************/
.hprogress {
border: 1px solid #ABABAB;
padding: 2px;
border-radius: 2px;
background: #F1F1F1 #FFFFFF vertical;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
}
.hprogress .progress-value {
border: none;
background: #6CAADB #216AAE vertical;
height: 100%;
border-radius: 2px;
}
.hprogress .progress-value:disabled {
background: #BFBFBF #8C8C8C vertical;
}
/************************************************************************
** VPROGRESS
*************************************************************************/
.vprogress {
border: 1px solid #ABABAB;
padding: 2px;
border-radius: 2px;
background: #F1F1F1 #FFFFFF horizontal;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
}
.vprogress .progress-value {
border: none;
background: #6CAADB #216AAE horizontal;
width: 100%;
border-radius: 2px;
}
.vprogress .progress-value:disabled {
background: #BFBFBF #8C8C8C horizontal;
}
/************************************************************************
** HSLIDER
*************************************************************************/
.hslider {
padding-left: 5px;
padding-right: 5px;
}
.hslider .slider-value-background {
border: 1px solid #ABABAB;
padding: 2px;
border-radius: 4px;
background: #F1F1F1 #FFFFFF vertical;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
width: 100%;
height: 8px;
vertical-align: center;
cursor: pointer;
}
.hslider .slider-value-background:disabled {
cursor: default;
}
.hslider .slider-value {
border: none;
background: #6CAADB #216AAE vertical;
height: 100%;
border-radius: 2px;
cursor: pointer;
}
.hslider .slider-value:disabled {
background: #BFBFBF #8C8C8C vertical;
cursor: default;
}
.hslider .slider-button {
vertical-align: center;
height: 14px;
width: 14px;
border-radius: 16px;
}
/************************************************************************
** VSLIDER
*************************************************************************/
.vslider {
padding-top: 5px;
padding-bottom: 5px;
}
.vslider .slider-value-background {
border: 1px solid #ABABAB;
padding: 2px;
border-radius: 4px;
background: #F1F1F1 #FFFFFF horizontal;
filter: drop-shadow(1, 45, #888888, 0.2, 2, 2, 1, 3, true);
height: 100%;
width: 8px;
horizontal-align: center;
cursor: pointer;
}
.vslider .slider-value-background:disabled {
cursor: default;
}
.vslider .slider-value {
border: none;
background: #6CAADB #216AAE horizontal;
width: 100%;
border-radius: 2px;
cursor: pointer;
}
.vslider .slider-value:disabled {
background: #BFBFBF #8C8C8C horizontal;
cursor: default;
}
.vslider .slider-button {
horizontal-align: center;
height: 14px;
width: 14px;
border-radius: 16px;
}
/************************************************************************
** TABS
*************************************************************************/
.tabbar {
horizontal-spacing: 1px;
padding-left: 5px;
padding-right: 5px;
height: auto;
width: auto;
background-color: #333333;
border-bottom-width: 1px;
border-bottom-color: #ABABAB;
clip: true;
}
.tabbar .tabbar-contents {
border: none;
border-bottom-width: 1px;
border-bottom-color: #ABABAB;
background-color: #1E1E1E;
}
/*
.tabbar .tabbar-background {
background-color: white;
border: none;
}
*/
.tabbar-button {
border-radius: 0px;
background: #2D2D2D;
padding: 6px;
margin: 0px;
vertical-align: bottom;
}
.tabbar-button:down {
background-color: #1E1E1E;
}
.tabbar-button-selected, .tabbar-button-selected:hover, .tabbar-button-selected:down {
border-radius: 0px;
border: 0px solid black;
border-bottom-width: 1px;
border-bottom-color: black;
background-color: #1E1E1E;
}
.tabbar-scroll-left {
icon: "haxeui-core/styles/default/left_arrow.png";
border-radius: 0;
}
.tabbar-scroll-right {
icon: "haxeui-core/styles/default/right_arrow.png";
border-radius: 0;
}
.tabbar-button-selected .label {
}
.tabbar-button-selected .icon {
}
.tabview {
border: none;
width: auto;
height: auto;
}
.tabview .tabview-tabs {
}
.tabview .tabview-content {
border: 1px solid #ABABAB;
padding: 5px;
width: 100%;
height: 100%;
}
/************************************************************************
** LISTVIEW
*************************************************************************/
.listview {
border: 1px solid #ABABAB;
border-radius: 1px;
padding: 1px;
width: auto;
height: auto;
background-color: #FFFFFF;
}
.listview .listview-contents {
spacing: 0;
width: 100%;
padding: 1px;
}
.itemrenderer {
height: auto;
padding: 5px;
}
.listview .itemrenderer.even {
background-color: #FFFFFF;
cursor: pointer;
}
.listview .itemrenderer.even:hover {
background-color: #ecf2f9;
}
.listview .itemrenderer.odd {
background-color: #F8F8F8;
cursor: pointer;
}
.listview .itemrenderer.odd:hover {
background-color: #ecf2f9;
}
.listview .itemrenderer:selected {
background-color: #a7c4e2;
color: white;
}
/************************************************************************
** DROPDOWNS
*************************************************************************/
.listview.popup {
filter: drop-shadow(1, 45, #000000, 0.2, 2, 2, 1, 3, false);
}
.dropdown {
icon: "haxeui-core/styles/default/up_down_arrows.png";
icon-position: far-right;
}
/************************************************************************
** HEADER
*************************************************************************/
.header {
width: auto;
height: auto;
spacing: 0;
}
.header .column {
border-radius: 0;
icon-position: far-right;
}
.header .column.sortable {
icon: "haxeui-core/styles/default/up_down_arrows.png";
icon-position: far-right;
}
.column .label {
width: 92%;
}
/************************************************************************
** TABLEVIEW
*************************************************************************/
.tableview {
border: 1px solid #ABABAB;
border-radius: 1px;
}
.tableview .tableview-row {
padding: 0px;
spacing: 2px;
background-color: #DDDDDD;
}
.tableview .tableview-contents {
spacing: 0;
padding: 0;
margin-top: -1px;
}
.tableview .itemrenderer.even {
background-color: #FFFFFF;
}
.tableview .itemrenderer.even:hover {
background-color: #F0F0F0;
}
.tableview .itemrenderer.odd {
background-color: #F8F8F8;
}
.tableview .itemrenderer.odd:hover {
background-color: #F0F0F0;
}
.tableview .itemrenderer:selected {
background-color: #CCCCCC;
}
/************************************************************************
** SWITCH
*************************************************************************/
.switch {
background-color: #FFFFFF;
border: 1px solid #ABABAB;
border-radius: 2px;
cursor: pointer;
padding: 0px;
width: 60px;
height: 20px;
filter: drop-shadow(1, 45, #888888, 0.3, 1, 1, 1, 3, true);
}
.switch:hover {
background-color: #FFFFFF;
}
.switch:selected {
background-color: #98c4e6;
}
.switch .button {
height: 100%;
width: 50%;
}
.switch-label {
color: #ABABAB;
}
.switch-label:selected {
color: #2d7cb9;
} | 0.550124 | 0.112405 |
.cart-list-container {
display: -ms-grid;
-ms-grid-columns: 1fr 348px 40px;
-ms-grid-rows: 40px 1fr 150px;
color: white;
height: 100%;
margin-left: 120px;
}
.cartpage .cartlist {
-ms-grid-column: 1;
-ms-grid-row: 2;
height: 100%;
width: 100%;
}
.cart-list-header {
border-bottom: 2px solid white;
margin-bottom: 0px;
margin-right: 24px;
padding-bottom: 5px;
}
.cart-list-header p {
font-weight: 500;
font-size: 12pt;
}
.cart-list-header div {
padding: 0px 5px;
}
.win-listview .win-container:not(.win-footprint) {
background-color: transparent;
}
.cartpage .win-listview .win-container {
margin: 5px 24px 5px 0px;
}
.cartpage .item-container {
-ms-grid-columns: 80px 3fr 2fr 1fr 1fr;
display: -ms-grid;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 3px;
height: auto;
}
.cartpage .win-listview > .win-vertical .win-item {
}
.cartpage .candyrack-area {
height: 100%;
}
/* Over rides default.css */
.item-container .item-title {
color: white;
}
.col-1 {
-ms-grid-column: 1;
}
.col-2 {
-ms-grid-column: 2;
}
.col-3 {
-ms-grid-column: 3;
}
.col-4 {
-ms-grid-column: 4;
}
.col-5 {
-ms-grid-column: 5;
}
.col-6 {
-ms-grid-column: 6;
}
/* Over-rides ui-dark.css */
.cart-line-item {
background-color: rgba(23, 38, 66, 0.498);
}
.cart-line-item div {
padding: 5px;
}
.cartpage .item-pricing {
text-align: right;
}
.cartpage .item-total {
text-align: right;
padding-right: 5px;
}
.cart-line-item .image-wrapper {
max-height: 65px;
overflow-y: hidden;
padding: 2px;
margin: 5px;
max-width: 65px;
background-color: white;
text-align: center;
}
.cart-line-item .image-wrapper img {
max-width: 65px;
margin-left: auto;
margin-right: auto;
max-height: 65px;
}
.cart-summary {
-ms-grid-row: 3;
margin-right: 24px;
padding-top: 10px;
display: -ms-grid;
-ms-grid-columns: 1fr;
-ms-grid-rows: auto;
}
.cart-summary p {
margin-top: 0px;
margin-bottom: 5px;
display: -ms-grid;
-ms-grid-columns: 1fr 100px;
}
.cart-summary .col-1 {
margin-left: 0px;
text-align: right;
}
.cart-summary .col-2 {
text-align: right;
}
.cart-summary p span {
display: inline-block;
}
.cart-summary .cart-total {
font-size: 14pt;
}
.checkout-button {
-ms-grid-column: 2;
-ms-grid-row: 3;
margin-left: 20px;
}
.candyrack-container {
-ms-grid-column: 2;
-ms-grid-row-span: 2;
margin-left: 20px;
margin-top: 14px;
}
.cart-empty {
margin-left: 120px;
} | SoftwareStore/pages/cart/cart.css | .cart-list-container {
display: -ms-grid;
-ms-grid-columns: 1fr 348px 40px;
-ms-grid-rows: 40px 1fr 150px;
color: white;
height: 100%;
margin-left: 120px;
}
.cartpage .cartlist {
-ms-grid-column: 1;
-ms-grid-row: 2;
height: 100%;
width: 100%;
}
.cart-list-header {
border-bottom: 2px solid white;
margin-bottom: 0px;
margin-right: 24px;
padding-bottom: 5px;
}
.cart-list-header p {
font-weight: 500;
font-size: 12pt;
}
.cart-list-header div {
padding: 0px 5px;
}
.win-listview .win-container:not(.win-footprint) {
background-color: transparent;
}
.cartpage .win-listview .win-container {
margin: 5px 24px 5px 0px;
}
.cartpage .item-container {
-ms-grid-columns: 80px 3fr 2fr 1fr 1fr;
display: -ms-grid;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 3px;
height: auto;
}
.cartpage .win-listview > .win-vertical .win-item {
}
.cartpage .candyrack-area {
height: 100%;
}
/* Over rides default.css */
.item-container .item-title {
color: white;
}
.col-1 {
-ms-grid-column: 1;
}
.col-2 {
-ms-grid-column: 2;
}
.col-3 {
-ms-grid-column: 3;
}
.col-4 {
-ms-grid-column: 4;
}
.col-5 {
-ms-grid-column: 5;
}
.col-6 {
-ms-grid-column: 6;
}
/* Over-rides ui-dark.css */
.cart-line-item {
background-color: rgba(23, 38, 66, 0.498);
}
.cart-line-item div {
padding: 5px;
}
.cartpage .item-pricing {
text-align: right;
}
.cartpage .item-total {
text-align: right;
padding-right: 5px;
}
.cart-line-item .image-wrapper {
max-height: 65px;
overflow-y: hidden;
padding: 2px;
margin: 5px;
max-width: 65px;
background-color: white;
text-align: center;
}
.cart-line-item .image-wrapper img {
max-width: 65px;
margin-left: auto;
margin-right: auto;
max-height: 65px;
}
.cart-summary {
-ms-grid-row: 3;
margin-right: 24px;
padding-top: 10px;
display: -ms-grid;
-ms-grid-columns: 1fr;
-ms-grid-rows: auto;
}
.cart-summary p {
margin-top: 0px;
margin-bottom: 5px;
display: -ms-grid;
-ms-grid-columns: 1fr 100px;
}
.cart-summary .col-1 {
margin-left: 0px;
text-align: right;
}
.cart-summary .col-2 {
text-align: right;
}
.cart-summary p span {
display: inline-block;
}
.cart-summary .cart-total {
font-size: 14pt;
}
.checkout-button {
-ms-grid-column: 2;
-ms-grid-row: 3;
margin-left: 20px;
}
.candyrack-container {
-ms-grid-column: 2;
-ms-grid-row-span: 2;
margin-left: 20px;
margin-top: 14px;
}
.cart-empty {
margin-left: 120px;
} | 0.324878 | 0.110375 |
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500&family=Inter:wght@300;400;500;600&family=Open+Sans:wght@600&display=swap');
@import './properties.css';
html {
text-rendering: geometricPrecision;
font-smooth: always;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
input,
div {
font-family: 'Inter', sans-serif;
font-style: normal;
font-weight: 400;
line-height: 2;
}
h1,
h2,
h3,
h4,
h5 {
margin-bottom: 1.38rem;
font-family: 'Inter', sans-serif;
line-height: 1.5;
}
h1,
h2,
h3 {
font-weight: 600;
}
h4,
h5 {
font-weight: 400;
}
h1 {
font-size: 1.383rem;
}
h2 {
font-size: 1.296rem;
}
h3 {
font-size: 1.215rem;
}
h4 {
font-size: 1.138rem;
}
h5 {
font-size: 1.067rem;
}
@media (--md-viewport) {
h1 {
font-size: 1.802rem;
}
h2 {
font-size: 1.602rem;
}
h3 {
font-size: 1.424rem;
}
h4 {
font-size: 1.266rem;
}
h5 {
font-size: 1.125rem;
}
}
@media (--lg-viewport) {
h1 {
font-size: 2.488rem;
}
h2 {
font-size: 2.074rem;
}
h3 {
font-size: 1.728rem;
}
h4 {
font-size: 1.44rem;
}
h5 {
font-size: 1.2rem;
}
}
p {
margin-bottom: 1rem;
}
a:any-link {
text-decoration: none;
transition: color ease 200ms, background-color ease 200ms,
border-color ease 200ms;
}
p.secondary {
font-weight: normal;
font-size: 0.833rem;
}
ul,
ol {
padding: 0;
margin: 32px 0 20px 32px;
list-style-position: outside;
& li {
margin: 0 0 12px 0;
padding: 0 0 0 12px;
}
}
main a.cta {
text-align: center;
display: inline-block;
font-weight: 500;
font-size: 0.833rem;
padding: 0.5rem 1rem;
box-sizing: border-box;
margin: 1.5rem 1.5rem 0 0;
text-decoration: none;
transition: color ease 200ms, background-color ease 200ms,
border-color ease 200ms;
@media (--md-viewport) {
margin: 1rem 1rem 0 0;
}
@media (--sm-viewport) {
margin: 1rem 1rem 0 0;
}
&.primary,
&.primary.visited {
border: 2px solid;
}
&.secondary,
&.secondary.visited {
border: 0px solid;
}
}
.remark-emoji {
width: 1em;
height: 1em;
display: inline !important;
margin-top: 1px;
} | src/styles/typography.css | @import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500&family=Inter:wght@300;400;500;600&family=Open+Sans:wght@600&display=swap');
@import './properties.css';
html {
text-rendering: geometricPrecision;
font-smooth: always;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
input,
div {
font-family: 'Inter', sans-serif;
font-style: normal;
font-weight: 400;
line-height: 2;
}
h1,
h2,
h3,
h4,
h5 {
margin-bottom: 1.38rem;
font-family: 'Inter', sans-serif;
line-height: 1.5;
}
h1,
h2,
h3 {
font-weight: 600;
}
h4,
h5 {
font-weight: 400;
}
h1 {
font-size: 1.383rem;
}
h2 {
font-size: 1.296rem;
}
h3 {
font-size: 1.215rem;
}
h4 {
font-size: 1.138rem;
}
h5 {
font-size: 1.067rem;
}
@media (--md-viewport) {
h1 {
font-size: 1.802rem;
}
h2 {
font-size: 1.602rem;
}
h3 {
font-size: 1.424rem;
}
h4 {
font-size: 1.266rem;
}
h5 {
font-size: 1.125rem;
}
}
@media (--lg-viewport) {
h1 {
font-size: 2.488rem;
}
h2 {
font-size: 2.074rem;
}
h3 {
font-size: 1.728rem;
}
h4 {
font-size: 1.44rem;
}
h5 {
font-size: 1.2rem;
}
}
p {
margin-bottom: 1rem;
}
a:any-link {
text-decoration: none;
transition: color ease 200ms, background-color ease 200ms,
border-color ease 200ms;
}
p.secondary {
font-weight: normal;
font-size: 0.833rem;
}
ul,
ol {
padding: 0;
margin: 32px 0 20px 32px;
list-style-position: outside;
& li {
margin: 0 0 12px 0;
padding: 0 0 0 12px;
}
}
main a.cta {
text-align: center;
display: inline-block;
font-weight: 500;
font-size: 0.833rem;
padding: 0.5rem 1rem;
box-sizing: border-box;
margin: 1.5rem 1.5rem 0 0;
text-decoration: none;
transition: color ease 200ms, background-color ease 200ms,
border-color ease 200ms;
@media (--md-viewport) {
margin: 1rem 1rem 0 0;
}
@media (--sm-viewport) {
margin: 1rem 1rem 0 0;
}
&.primary,
&.primary.visited {
border: 2px solid;
}
&.secondary,
&.secondary.visited {
border: 0px solid;
}
}
.remark-emoji {
width: 1em;
height: 1em;
display: inline !important;
margin-top: 1px;
} | 0.432543 | 0.144541 |
html,
body {
height: 100%;
margin: 0;
padding: 0;
background-color: white !important; }
::-webkit-scrollbar {
width: 15px;
height: 15px; }
::-webkit-scrollbar-thumb {
border-radius: 15px;
background: #ccc; }
::-webkit-scrollbar-thumb:hover {
background: #bbb; }
::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb:hover {
border: 3px solid transparent;
background-clip: content-box; }
.header-logo {
height: 24px; }
@media (max-width: 600px) {
.header-logo {
height: 20px; } }
.header-spacer {
flex-grow: 1; }
.header-padding {
width: 20px;
height: 64px; }
#doc-title-editor {
position: absolute;
top: 64px;
height: 60px;
left: 0;
right: 0; }
@media (max-width: 600px) {
#doc-title-editor {
top: 48px; } }
.edit-split-layout {
position: absolute;
top: 124px;
bottom: 0;
left: 0;
right: 0; }
@media (max-width: 600px) {
.edit-split-layout {
top: 108px; } }
.edit-title {
position: absolute;
top: 64px;
height: 60px; }
.split-layout {
display: flex;
flex-direction: row;
overflow: hidden;
/*
.preview-pane {
overflow-y: auto;
word-break: break-word;
@import 'app/styles/asciidoctor';
}
.html-preview-pane {
border: none;
border-radius: 0;
overflow-x: auto;
overflow-y: auto;
margin: 0;
}
*/ }
.split-layout .split-layout-left {
flex: 0 0 auto;
width: 50%; }
.split-layout .split-layout-resize-handle {
flex: 0 0 auto;
width: 5px;
background: #ddd;
cursor: col-resize; }
.split-layout .split-layout-right {
flex: 1 1 auto;
width: 50%;
padding-left: 10px; }
.ace-editor {
position: relative;
/* font-size: $font-size-base; */ }
.preview-container {
height: 100%;
overflow-y: scroll;
word-break: break-word; }
.preview-content {
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright 2016 <NAME> *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ }
.preview-content table {
background: #fff;
margin-bottom: 1.25em;
border: solid 1px #dedede; }
.preview-content table thead,
.preview-content table tfoot {
background: #f7f8f7;
font-weight: bold; }
.preview-content table thead tr th,
.preview-content table thead tr td,
.preview-content table tfoot tr th,
.preview-content table tfoot tr td {
padding: 0.5em 0.625em 0.625em;
font-size: inherit;
color: rgba(0, 0, 0, 0.8);
text-align: left; }
.preview-content table tr th,
.preview-content table tr td {
padding: 0.5625em 0.625em;
font-size: inherit;
color: rgba(0, 0, 0, 0.8); }
.preview-content table tr.even,
.preview-content table tr.alt,
.preview-content table tr:nth-of-type(even) {
background: #f8f8f7; }
.preview-content table thead tr th,
.preview-content table tfoot tr th,
.preview-content table tbody tr td,
.preview-content table tr td,
.preview-content table tfoot tr td {
display: table-cell;
line-height: 1.6; }
.preview-content table.tableblock {
max-width: 100%;
border-collapse: separate; }
.preview-content table.tableblock td > .paragraph:last-child p > p:last-child,
.preview-content table.tableblock th > p:last-child,
.preview-content table.tableblock td > p:last-child {
margin-bottom: 0; }
.preview-content table.tableblock,
.preview-content th.tableblock,
.preview-content td.tableblock {
border: 0 solid #dedede; }
.preview-content table.grid-all th.tableblock,
.preview-content table.grid-all td.tableblock {
border-width: 0 1px 1px 0; }
.preview-content table.grid-all tfoot > tr > th.tableblock,
.preview-content table.grid-all tfoot > tr > td.tableblock {
border-width: 1px 1px 0 0; }
.preview-content table.grid-cols th.tableblock,
.preview-content table.grid-cols td.tableblock {
border-width: 0 1px 0 0; }
.preview-content table.grid-all * > tr > .tableblock:last-child,
.preview-content table.grid-cols * > tr > .tableblock:last-child {
border-right-width: 0; }
.preview-content table.grid-rows th.tableblock,
.preview-content table.grid-rows td.tableblock {
border-width: 0 0 1px 0; }
.preview-content table.grid-all tbody > tr:last-child > th.tableblock,
.preview-content table.grid-all tbody > tr:last-child > td.tableblock,
.preview-content table.grid-all thead:last-child > tr > th.tableblock,
.preview-content table.grid-rows tbody > tr:last-child > th.tableblock,
.preview-content table.grid-rows tbody > tr:last-child > td.tableblock,
.preview-content table.grid-rows thead:last-child > tr > th.tableblock {
border-bottom-width: 0; }
.preview-content table.grid-rows tfoot > tr > th.tableblock,
.preview-content table.grid-rows tfoot > tr > td.tableblock {
border-width: 1px 0 0 0; }
.preview-content table.frame-all {
border-width: 1px; }
.preview-content table.frame-sides {
border-width: 0 1px; }
.preview-content table.frame-topbot {
border-width: 1px 0; }
.preview-content th.halign-left,
.preview-content td.halign-left {
text-align: left; }
.preview-content th.halign-right,
.preview-content td.halign-right {
text-align: right; }
.preview-content th.halign-center,
.preview-content td.halign-center {
text-align: center; }
.preview-content th.valign-top,
.preview-content td.valign-top {
vertical-align: top; }
.preview-content th.valign-bottom,
.preview-content td.valign-bottom {
vertical-align: bottom; }
.preview-content th.valign-middle,
.preview-content td.valign-middle {
vertical-align: middle; }
.preview-content table thead th,
.preview-content table tfoot th {
font-weight: bold; }
.preview-content tbody tr th {
display: table-cell;
line-height: 1.6;
background: #f7f8f7; }
.preview-content tbody tr th,
.preview-content tbody tr th p,
.preview-content tfoot tr th,
.preview-content tfoot tr th p {
color: rgba(0, 0, 0, 0.8);
font-weight: bold; }
.preview-content p.tableblock > code:only-child {
background: none;
padding: 0; }
.preview-content p.tableblock {
font-size: 1em; }
.preview-content td > div.verse {
white-space: pre; }
.preview-content .hdlist > table,
.preview-content .colist > table {
border: 0;
background: none; }
.preview-content .hdlist > table > tbody > tr,
.preview-content .colist > table > tbody > tr {
background: none; }
.preview-content td.hdlist1,
.preview-content td.hdlist2 {
vertical-align: top;
padding: 0 0.625em; }
.preview-content td.hdlist1 {
font-weight: bold;
padding-bottom: 1.25em; }
.preview-content blockquote {
margin: 0 0 1.25em;
padding: 0.5625em 1.25em 0 1.1875em;
border-left: 1px solid #ddd; }
.preview-content blockquote cite {
display: block;
font-size: 0.9375em;
color: rgba(0, 0, 0, 0.6); }
.preview-content blockquote cite:before {
content: '\2014 \0020'; }
.preview-content blockquote cite a,
.preview-content blockquote cite a:visited {
color: rgba(0, 0, 0, 0.6); }
.preview-content blockquote,
.preview-content blockquote p {
line-height: 1.6;
color: rgba(0, 0, 0, 0.85); }
.preview-content .quoteblock {
margin: 0 1em 1.25em 1.5em;
display: table; }
.preview-content .quoteblock > .title {
margin-left: -1.5em;
margin-bottom: 0.75em; }
.preview-content .quoteblock blockquote,
.preview-content .quoteblock blockquote p {
color: rgba(0, 0, 0, 0.85);
font-size: inherit;
line-height: 1.75;
word-spacing: 0.1em;
letter-spacing: 0;
font-style: italic;
text-align: justify; }
.preview-content .quoteblock blockquote {
margin: 0;
padding: 0;
border: 0; }
.preview-content .quoteblock blockquote:before {
content: '\201c';
float: left;
font-size: 2.75em;
font-weight: bold;
line-height: 0.6em;
margin-left: -0.6em;
color: rgba(0, 0, 0, 0.6);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
.preview-content .quoteblock blockquote > .paragraph:last-child p {
margin-bottom: 0; }
.preview-content .quoteblock .attribution {
margin-top: 0.5em;
margin-right: 0.5ex;
text-align: right; }
.preview-content .quoteblock .quoteblock {
margin-left: 0;
margin-right: 0;
padding: 0.5em 0;
border-left: 3px solid rgba(0, 0, 0, 0.6); }
.preview-content .quoteblock .quoteblock blockquote {
padding: 0 0 0 0.75em; }
.preview-content .quoteblock .quoteblock blockquote:before {
display: none; }
.preview-content .quoteblock .attribution,
.preview-content .verseblock .attribution {
font-size: 0.9375em;
line-height: 1.45;
font-style: italic; }
.preview-content .quoteblock .attribution br,
.preview-content .verseblock .attribution br {
display: none; }
.preview-content .quoteblock .attribution cite,
.preview-content .verseblock .attribution cite {
display: block;
letter-spacing: -0.025em;
color: rgba(0, 0, 0, 0.6); }
.preview-content .quoteblock.abstract {
margin: 0 0 1.25em 0;
display: block; }
.preview-content .quoteblock.abstract blockquote,
.preview-content .quoteblock.abstract blockquote p {
text-align: left;
word-spacing: 0; }
.preview-content .quoteblock.abstract blockquote:before,
.preview-content .quoteblock.abstract blockquote p:first-of-type:before {
display: none; }
.preview-content ul.unstyled,
.preview-content ol.unnumbered,
.preview-content ul.checklist,
.preview-content ul.none {
list-style-type: none; }
.preview-content ul.unstyled,
.preview-content ol.unnumbered,
.preview-content ul.checklist {
margin-left: 0.625em; }
.preview-content ul.checklist li > p:first-child > .fa-square-o:first-child,
.preview-content ul.checklist li > p:first-child > .fa-check-square-o:first-child {
width: 1em;
font-size: 0.85em; }
.preview-content ul.checklist li > p:first-child > input[type='checkbox']:first-child {
width: 1em;
position: relative;
top: 1px; }
.preview-content ul.inline {
margin: 0 auto 0.625em auto;
margin-left: -1.375em;
margin-right: 0;
padding: 0;
list-style: none;
overflow: hidden; }
.preview-content ul.inline > li {
list-style: none;
float: left;
margin-left: 1.375em;
display: block; }
.preview-content ul.inline > li > * {
display: block; }
.preview-content .unstyled dl dt {
font-weight: 400;
font-style: normal; }
.preview-content ol.arabic {
list-style-type: decimal; }
.preview-content ol.decimal {
list-style-type: decimal-leading-zero; }
.preview-content ol.loweralpha {
list-style-type: lower-alpha; }
.preview-content ol.upperalpha {
list-style-type: upper-alpha; }
.preview-content ol.lowerroman {
list-style-type: lower-roman; }
.preview-content ol.upperroman {
list-style-type: upper-roman; }
.preview-content ol.lowergreek {
list-style-type: lower-greek; }
.auth-message-container {
position: fixed;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center; }
.picker.picker-dialog-bg {
z-index: 2000; }
.picker.picker-dialog {
z-index: 2001; }
.title-container {
display: flex;
align-items: center;
padding: 0 10px;
width: 100%;
border-bottom: 1px solid #ddd; }
.title-container .title-text {
margin-top: 5px; }
.title-container .title-text fieldset {
border-color: transparent; }
.title-container .rename-status {
margin-left: 20px;
margin-top: 3px;
color: #777;
transition: opacity 0.5s; } | v2/src/app/app.css | html,
body {
height: 100%;
margin: 0;
padding: 0;
background-color: white !important; }
::-webkit-scrollbar {
width: 15px;
height: 15px; }
::-webkit-scrollbar-thumb {
border-radius: 15px;
background: #ccc; }
::-webkit-scrollbar-thumb:hover {
background: #bbb; }
::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb:hover {
border: 3px solid transparent;
background-clip: content-box; }
.header-logo {
height: 24px; }
@media (max-width: 600px) {
.header-logo {
height: 20px; } }
.header-spacer {
flex-grow: 1; }
.header-padding {
width: 20px;
height: 64px; }
#doc-title-editor {
position: absolute;
top: 64px;
height: 60px;
left: 0;
right: 0; }
@media (max-width: 600px) {
#doc-title-editor {
top: 48px; } }
.edit-split-layout {
position: absolute;
top: 124px;
bottom: 0;
left: 0;
right: 0; }
@media (max-width: 600px) {
.edit-split-layout {
top: 108px; } }
.edit-title {
position: absolute;
top: 64px;
height: 60px; }
.split-layout {
display: flex;
flex-direction: row;
overflow: hidden;
/*
.preview-pane {
overflow-y: auto;
word-break: break-word;
@import 'app/styles/asciidoctor';
}
.html-preview-pane {
border: none;
border-radius: 0;
overflow-x: auto;
overflow-y: auto;
margin: 0;
}
*/ }
.split-layout .split-layout-left {
flex: 0 0 auto;
width: 50%; }
.split-layout .split-layout-resize-handle {
flex: 0 0 auto;
width: 5px;
background: #ddd;
cursor: col-resize; }
.split-layout .split-layout-right {
flex: 1 1 auto;
width: 50%;
padding-left: 10px; }
.ace-editor {
position: relative;
/* font-size: $font-size-base; */ }
.preview-container {
height: 100%;
overflow-y: scroll;
word-break: break-word; }
.preview-content {
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright 2016 <NAME> *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ }
.preview-content table {
background: #fff;
margin-bottom: 1.25em;
border: solid 1px #dedede; }
.preview-content table thead,
.preview-content table tfoot {
background: #f7f8f7;
font-weight: bold; }
.preview-content table thead tr th,
.preview-content table thead tr td,
.preview-content table tfoot tr th,
.preview-content table tfoot tr td {
padding: 0.5em 0.625em 0.625em;
font-size: inherit;
color: rgba(0, 0, 0, 0.8);
text-align: left; }
.preview-content table tr th,
.preview-content table tr td {
padding: 0.5625em 0.625em;
font-size: inherit;
color: rgba(0, 0, 0, 0.8); }
.preview-content table tr.even,
.preview-content table tr.alt,
.preview-content table tr:nth-of-type(even) {
background: #f8f8f7; }
.preview-content table thead tr th,
.preview-content table tfoot tr th,
.preview-content table tbody tr td,
.preview-content table tr td,
.preview-content table tfoot tr td {
display: table-cell;
line-height: 1.6; }
.preview-content table.tableblock {
max-width: 100%;
border-collapse: separate; }
.preview-content table.tableblock td > .paragraph:last-child p > p:last-child,
.preview-content table.tableblock th > p:last-child,
.preview-content table.tableblock td > p:last-child {
margin-bottom: 0; }
.preview-content table.tableblock,
.preview-content th.tableblock,
.preview-content td.tableblock {
border: 0 solid #dedede; }
.preview-content table.grid-all th.tableblock,
.preview-content table.grid-all td.tableblock {
border-width: 0 1px 1px 0; }
.preview-content table.grid-all tfoot > tr > th.tableblock,
.preview-content table.grid-all tfoot > tr > td.tableblock {
border-width: 1px 1px 0 0; }
.preview-content table.grid-cols th.tableblock,
.preview-content table.grid-cols td.tableblock {
border-width: 0 1px 0 0; }
.preview-content table.grid-all * > tr > .tableblock:last-child,
.preview-content table.grid-cols * > tr > .tableblock:last-child {
border-right-width: 0; }
.preview-content table.grid-rows th.tableblock,
.preview-content table.grid-rows td.tableblock {
border-width: 0 0 1px 0; }
.preview-content table.grid-all tbody > tr:last-child > th.tableblock,
.preview-content table.grid-all tbody > tr:last-child > td.tableblock,
.preview-content table.grid-all thead:last-child > tr > th.tableblock,
.preview-content table.grid-rows tbody > tr:last-child > th.tableblock,
.preview-content table.grid-rows tbody > tr:last-child > td.tableblock,
.preview-content table.grid-rows thead:last-child > tr > th.tableblock {
border-bottom-width: 0; }
.preview-content table.grid-rows tfoot > tr > th.tableblock,
.preview-content table.grid-rows tfoot > tr > td.tableblock {
border-width: 1px 0 0 0; }
.preview-content table.frame-all {
border-width: 1px; }
.preview-content table.frame-sides {
border-width: 0 1px; }
.preview-content table.frame-topbot {
border-width: 1px 0; }
.preview-content th.halign-left,
.preview-content td.halign-left {
text-align: left; }
.preview-content th.halign-right,
.preview-content td.halign-right {
text-align: right; }
.preview-content th.halign-center,
.preview-content td.halign-center {
text-align: center; }
.preview-content th.valign-top,
.preview-content td.valign-top {
vertical-align: top; }
.preview-content th.valign-bottom,
.preview-content td.valign-bottom {
vertical-align: bottom; }
.preview-content th.valign-middle,
.preview-content td.valign-middle {
vertical-align: middle; }
.preview-content table thead th,
.preview-content table tfoot th {
font-weight: bold; }
.preview-content tbody tr th {
display: table-cell;
line-height: 1.6;
background: #f7f8f7; }
.preview-content tbody tr th,
.preview-content tbody tr th p,
.preview-content tfoot tr th,
.preview-content tfoot tr th p {
color: rgba(0, 0, 0, 0.8);
font-weight: bold; }
.preview-content p.tableblock > code:only-child {
background: none;
padding: 0; }
.preview-content p.tableblock {
font-size: 1em; }
.preview-content td > div.verse {
white-space: pre; }
.preview-content .hdlist > table,
.preview-content .colist > table {
border: 0;
background: none; }
.preview-content .hdlist > table > tbody > tr,
.preview-content .colist > table > tbody > tr {
background: none; }
.preview-content td.hdlist1,
.preview-content td.hdlist2 {
vertical-align: top;
padding: 0 0.625em; }
.preview-content td.hdlist1 {
font-weight: bold;
padding-bottom: 1.25em; }
.preview-content blockquote {
margin: 0 0 1.25em;
padding: 0.5625em 1.25em 0 1.1875em;
border-left: 1px solid #ddd; }
.preview-content blockquote cite {
display: block;
font-size: 0.9375em;
color: rgba(0, 0, 0, 0.6); }
.preview-content blockquote cite:before {
content: '\2014 \0020'; }
.preview-content blockquote cite a,
.preview-content blockquote cite a:visited {
color: rgba(0, 0, 0, 0.6); }
.preview-content blockquote,
.preview-content blockquote p {
line-height: 1.6;
color: rgba(0, 0, 0, 0.85); }
.preview-content .quoteblock {
margin: 0 1em 1.25em 1.5em;
display: table; }
.preview-content .quoteblock > .title {
margin-left: -1.5em;
margin-bottom: 0.75em; }
.preview-content .quoteblock blockquote,
.preview-content .quoteblock blockquote p {
color: rgba(0, 0, 0, 0.85);
font-size: inherit;
line-height: 1.75;
word-spacing: 0.1em;
letter-spacing: 0;
font-style: italic;
text-align: justify; }
.preview-content .quoteblock blockquote {
margin: 0;
padding: 0;
border: 0; }
.preview-content .quoteblock blockquote:before {
content: '\201c';
float: left;
font-size: 2.75em;
font-weight: bold;
line-height: 0.6em;
margin-left: -0.6em;
color: rgba(0, 0, 0, 0.6);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
.preview-content .quoteblock blockquote > .paragraph:last-child p {
margin-bottom: 0; }
.preview-content .quoteblock .attribution {
margin-top: 0.5em;
margin-right: 0.5ex;
text-align: right; }
.preview-content .quoteblock .quoteblock {
margin-left: 0;
margin-right: 0;
padding: 0.5em 0;
border-left: 3px solid rgba(0, 0, 0, 0.6); }
.preview-content .quoteblock .quoteblock blockquote {
padding: 0 0 0 0.75em; }
.preview-content .quoteblock .quoteblock blockquote:before {
display: none; }
.preview-content .quoteblock .attribution,
.preview-content .verseblock .attribution {
font-size: 0.9375em;
line-height: 1.45;
font-style: italic; }
.preview-content .quoteblock .attribution br,
.preview-content .verseblock .attribution br {
display: none; }
.preview-content .quoteblock .attribution cite,
.preview-content .verseblock .attribution cite {
display: block;
letter-spacing: -0.025em;
color: rgba(0, 0, 0, 0.6); }
.preview-content .quoteblock.abstract {
margin: 0 0 1.25em 0;
display: block; }
.preview-content .quoteblock.abstract blockquote,
.preview-content .quoteblock.abstract blockquote p {
text-align: left;
word-spacing: 0; }
.preview-content .quoteblock.abstract blockquote:before,
.preview-content .quoteblock.abstract blockquote p:first-of-type:before {
display: none; }
.preview-content ul.unstyled,
.preview-content ol.unnumbered,
.preview-content ul.checklist,
.preview-content ul.none {
list-style-type: none; }
.preview-content ul.unstyled,
.preview-content ol.unnumbered,
.preview-content ul.checklist {
margin-left: 0.625em; }
.preview-content ul.checklist li > p:first-child > .fa-square-o:first-child,
.preview-content ul.checklist li > p:first-child > .fa-check-square-o:first-child {
width: 1em;
font-size: 0.85em; }
.preview-content ul.checklist li > p:first-child > input[type='checkbox']:first-child {
width: 1em;
position: relative;
top: 1px; }
.preview-content ul.inline {
margin: 0 auto 0.625em auto;
margin-left: -1.375em;
margin-right: 0;
padding: 0;
list-style: none;
overflow: hidden; }
.preview-content ul.inline > li {
list-style: none;
float: left;
margin-left: 1.375em;
display: block; }
.preview-content ul.inline > li > * {
display: block; }
.preview-content .unstyled dl dt {
font-weight: 400;
font-style: normal; }
.preview-content ol.arabic {
list-style-type: decimal; }
.preview-content ol.decimal {
list-style-type: decimal-leading-zero; }
.preview-content ol.loweralpha {
list-style-type: lower-alpha; }
.preview-content ol.upperalpha {
list-style-type: upper-alpha; }
.preview-content ol.lowerroman {
list-style-type: lower-roman; }
.preview-content ol.upperroman {
list-style-type: upper-roman; }
.preview-content ol.lowergreek {
list-style-type: lower-greek; }
.auth-message-container {
position: fixed;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center; }
.picker.picker-dialog-bg {
z-index: 2000; }
.picker.picker-dialog {
z-index: 2001; }
.title-container {
display: flex;
align-items: center;
padding: 0 10px;
width: 100%;
border-bottom: 1px solid #ddd; }
.title-container .title-text {
margin-top: 5px; }
.title-container .title-text fieldset {
border-color: transparent; }
.title-container .rename-status {
margin-left: 20px;
margin-top: 3px;
color: #777;
transition: opacity 0.5s; } | 0.417984 | 0.048631 |
.task-title-div
{display:block; width:212px; height:92px; overflow:hidden; margin-right:10px; border: 1px solid #dedede;background-color: #FFFFFF;float: left; border-radius:5px 5px 0px 0px;}
.task-title-div>.status{
display:block; width:100%; height:32px; overflow:hidden; text-indent:24px; font-size:14px; padding:0px; line-height:32px; font-weight:600; border-bottom: 1px solid #dedede;
}
.task-title-div>.lab>img{
width:44px; height:44px; overflow:hidden; margin:6px 14px 8px 23px; float:left;
}
.task-title-div>.lab>span{
display:block; width:auto; max-width:100px; height:58px; overflow:hidden; font-size: 20px;color: #569bcc; float:left; line-height:58px;
}
.task-title-div>.lab>font{
display:block; width:auto; max-width:19px; height:58px; overflow:hidden;font-size: 16px;color: #909090;margin-left:10px;float:left; line-height:58px;
}
#task-title-id-no .active{
background-color: #df5a48;
}
#task-title-id-already .active{
background-color: #878787;
}
#task-title-id-all .active{
background-color: #569bcc;
}
#task-title-id-black .active{
background-color: #d75948;
}
#task-title-id-real .active{
background-color: #78bf6f ;
}
#task-title-id-pay .active{
background-color: #45c2ca;
}
#task-title-id-task .active{
background-color: #569BCC;
}
#task-title-id-task_0 .active{
background-color: #DF5A48;
}
#task-title-id-task_1 .active{
background-color: #97C646;
}
#task-title-id-task_2 .active{
background-color: #2EAFBB;
}
#task-title-id-task_3 .active{
background-color: #878787;
}
.task-title-div .active font{
color: #FFFFFF;
}
.tab-div-pan{
display: none;
}
.active-pan{
display: block;
}
.table-list span.list-status
{ display:block; margin-top:16px;}
.task-list-new{
padding: 10px;
padding-bottom: 0px;
margin-top: 10px;
border-top: 1px dashed #dfdfdf;
}
.task-list-new span{
font-size: 14px;
font-weight: bold;
color: #494949;
}
/*.task-title-div .active{
background-color: #569bcc;
}*/
.task-title-div .active font{
color: #FFFFFF;
}
.tab-div-pan{
padding-top: 15px;
display: none;
}
.active-pan{
display: block;
}
.tab-div-pan .span-title{
font-size: 16px;
font-weight: bold;
color: #494949;
} | Public/css/Home/task/index.css | .task-title-div
{display:block; width:212px; height:92px; overflow:hidden; margin-right:10px; border: 1px solid #dedede;background-color: #FFFFFF;float: left; border-radius:5px 5px 0px 0px;}
.task-title-div>.status{
display:block; width:100%; height:32px; overflow:hidden; text-indent:24px; font-size:14px; padding:0px; line-height:32px; font-weight:600; border-bottom: 1px solid #dedede;
}
.task-title-div>.lab>img{
width:44px; height:44px; overflow:hidden; margin:6px 14px 8px 23px; float:left;
}
.task-title-div>.lab>span{
display:block; width:auto; max-width:100px; height:58px; overflow:hidden; font-size: 20px;color: #569bcc; float:left; line-height:58px;
}
.task-title-div>.lab>font{
display:block; width:auto; max-width:19px; height:58px; overflow:hidden;font-size: 16px;color: #909090;margin-left:10px;float:left; line-height:58px;
}
#task-title-id-no .active{
background-color: #df5a48;
}
#task-title-id-already .active{
background-color: #878787;
}
#task-title-id-all .active{
background-color: #569bcc;
}
#task-title-id-black .active{
background-color: #d75948;
}
#task-title-id-real .active{
background-color: #78bf6f ;
}
#task-title-id-pay .active{
background-color: #45c2ca;
}
#task-title-id-task .active{
background-color: #569BCC;
}
#task-title-id-task_0 .active{
background-color: #DF5A48;
}
#task-title-id-task_1 .active{
background-color: #97C646;
}
#task-title-id-task_2 .active{
background-color: #2EAFBB;
}
#task-title-id-task_3 .active{
background-color: #878787;
}
.task-title-div .active font{
color: #FFFFFF;
}
.tab-div-pan{
display: none;
}
.active-pan{
display: block;
}
.table-list span.list-status
{ display:block; margin-top:16px;}
.task-list-new{
padding: 10px;
padding-bottom: 0px;
margin-top: 10px;
border-top: 1px dashed #dfdfdf;
}
.task-list-new span{
font-size: 14px;
font-weight: bold;
color: #494949;
}
/*.task-title-div .active{
background-color: #569bcc;
}*/
.task-title-div .active font{
color: #FFFFFF;
}
.tab-div-pan{
padding-top: 15px;
display: none;
}
.active-pan{
display: block;
}
.tab-div-pan .span-title{
font-size: 16px;
font-weight: bold;
color: #494949;
} | 0.271928 | 0.116714 |
======================================
[ CSS TABLE CONTENT ]
======================================
[Table of contents]
1.feature boxes
2.parallax sections
3.footer styles
======================================
[ END CSS TABLE CONTENT ]
======================================
*/
/*============ Feature boxes ============ */
/* feature box 1
------------------------------ */
.re-feature-box-1{
width:100%;
float:left;
background-color:#fff;
transition: all 0.3s ease-out 0s;
}
.re-feature-box-1 .img-box{
position:relative;
width:100%;
float:left;
}
.re-feature-box-1 .img-box .price{
position: absolute;
width:92px;
height:92px;
float:left;
bottom: -23px;
left: 86px;
font-size:18px;
font-weight:600;
line-height:85px;
text-align:center;
color:#ecae3d;
background-color:#fff;
transition: all 0.3s ease-out 0s;
}
.re-feature-box-1:hover, .re-feature-box-1.active{
background-color:#101010;
}
.re-feature-box-1:hover .title, .re-feature-box-1.active .title{
color:#fff;
}
.re-feature-box-1:hover .img-box .price, .re-feature-box-1.active .img-box .price{
color:#ecae3d;
background-color:#101010;
}
.re-feature-box-1:hover .btn.btn-light, .re-feature-box-1.active .btn.btn-light{
color:#404040;
background-color:#101010;
border:1px solid #404040;
}
/* feature box 2
------------------------------ */
.re-feature-box-2{
width:100%;
float:left;
background-color:#fff;
}
/*============ Section Titles ============ */
/* title line
------------------------------ */
.re-title-line-1 {
width: 125px;
height:2px;
margin:4px auto 0 auto;
border-bottom:1px solid #eaeaec;
}
.re-title-line-2 {
width: 180px;
height:2px;
margin:10px auto 0 auto;
border-bottom:1px solid #eaeaec;
}
.re-title-line-1.align-left {
width: 125px;
margin:4px auto 0 0;
}
.re-title-line-2.align-left {
width: 160px;
margin:10px auto 0 0;
}
.re-title-line-1.dark, .re-title-line-2.dark {
border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
/*============ Parallax Sections ============ */
.parallax-46 {
background: rgba(0, 0, 0, 0) url("http://placehold.it/2000x1300") no-repeat fixed 50% 0;
}
.parallax-47 {
background: rgba(0, 0, 0, 0) url("http://placehold.it/2000x1300") no-repeat fixed 50% 0;
background-position:center;
}
/*----------------------------RESPONSIVE STYLES------------------------------- */
/* ---------- MAX 1024PX ---------- */
@media screen and (max-width: 1024px) {
}
@media only screen and (max-width: 1000px) {
}
/* ---------- MAX 991PX ---------- */
@media only screen and (max-width: 991px) {
.container{
width:90%;
}
}
/* ---------- MAX 800PX ---------- */
@media only screen and (max-width: 800px) {
}
/* ---------- MAX 768PX ---------- */
@media only screen and (max-width: 768px) {
}
/* ---------- MAX 767PX ---------- */
@media only screen and (max-width: 767px) {
}
@media screen and (max-width: 640px) {
}
@media screen and (max-width: 480px) {
}
/* ---------- MAX 360PX ---------- */
@media screen and (max-width: 360px) {
}
/* ---------- MAX 320PX ---------- */
@media only screen and (max-width: 320px) {
} | public/front/css/restaurant.css | ======================================
[ CSS TABLE CONTENT ]
======================================
[Table of contents]
1.feature boxes
2.parallax sections
3.footer styles
======================================
[ END CSS TABLE CONTENT ]
======================================
*/
/*============ Feature boxes ============ */
/* feature box 1
------------------------------ */
.re-feature-box-1{
width:100%;
float:left;
background-color:#fff;
transition: all 0.3s ease-out 0s;
}
.re-feature-box-1 .img-box{
position:relative;
width:100%;
float:left;
}
.re-feature-box-1 .img-box .price{
position: absolute;
width:92px;
height:92px;
float:left;
bottom: -23px;
left: 86px;
font-size:18px;
font-weight:600;
line-height:85px;
text-align:center;
color:#ecae3d;
background-color:#fff;
transition: all 0.3s ease-out 0s;
}
.re-feature-box-1:hover, .re-feature-box-1.active{
background-color:#101010;
}
.re-feature-box-1:hover .title, .re-feature-box-1.active .title{
color:#fff;
}
.re-feature-box-1:hover .img-box .price, .re-feature-box-1.active .img-box .price{
color:#ecae3d;
background-color:#101010;
}
.re-feature-box-1:hover .btn.btn-light, .re-feature-box-1.active .btn.btn-light{
color:#404040;
background-color:#101010;
border:1px solid #404040;
}
/* feature box 2
------------------------------ */
.re-feature-box-2{
width:100%;
float:left;
background-color:#fff;
}
/*============ Section Titles ============ */
/* title line
------------------------------ */
.re-title-line-1 {
width: 125px;
height:2px;
margin:4px auto 0 auto;
border-bottom:1px solid #eaeaec;
}
.re-title-line-2 {
width: 180px;
height:2px;
margin:10px auto 0 auto;
border-bottom:1px solid #eaeaec;
}
.re-title-line-1.align-left {
width: 125px;
margin:4px auto 0 0;
}
.re-title-line-2.align-left {
width: 160px;
margin:10px auto 0 0;
}
.re-title-line-1.dark, .re-title-line-2.dark {
border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
/*============ Parallax Sections ============ */
.parallax-46 {
background: rgba(0, 0, 0, 0) url("http://placehold.it/2000x1300") no-repeat fixed 50% 0;
}
.parallax-47 {
background: rgba(0, 0, 0, 0) url("http://placehold.it/2000x1300") no-repeat fixed 50% 0;
background-position:center;
}
/*----------------------------RESPONSIVE STYLES------------------------------- */
/* ---------- MAX 1024PX ---------- */
@media screen and (max-width: 1024px) {
}
@media only screen and (max-width: 1000px) {
}
/* ---------- MAX 991PX ---------- */
@media only screen and (max-width: 991px) {
.container{
width:90%;
}
}
/* ---------- MAX 800PX ---------- */
@media only screen and (max-width: 800px) {
}
/* ---------- MAX 768PX ---------- */
@media only screen and (max-width: 768px) {
}
/* ---------- MAX 767PX ---------- */
@media only screen and (max-width: 767px) {
}
@media screen and (max-width: 640px) {
}
@media screen and (max-width: 480px) {
}
/* ---------- MAX 360PX ---------- */
@media screen and (max-width: 360px) {
}
/* ---------- MAX 320PX ---------- */
@media only screen and (max-width: 320px) {
} | 0.440108 | 0.097347 |
body {
font-family: 'Fjalla+One', sans-serif;
color: #ffffff;
}
h1,h2,h3,h4,h5,h6 {
font-weight:700;
}
.h3-cadastro{
color: #615f5f;
}
p {
font-size: 20px
}
.p-home{
font-size: 1,5rem;
color: #fff;
padding-top: 2rem;
}
.box-projeto{
margin-bottom: 0.5rem;
margin-top: 1.5rem;
color: #000;
}
#bar {
margin-top: 1rem;
margin-bottom: 1rem;
}
#h2-escolha {
padding-top: 4rem;
padding-bottom: 3rem;
text-align: center;
color: #fff;
font-size: 1,5rem;
}
.banner-header{
padding-top: 1.2rem;
}
.projetos{
background-color:
}
.card-deck{
color: #000;
}
header {
background-color: #009204;
height: 40rem;
padding-bottom: 10rem;
}
.header-projetos{
margin-top: 3.5rem;
height: auto;
}
hr.star-dark,hr.star-light {
max-width:15rem;
padding:0;
text-align:center;
border:none;
border-top:solid .25rem;
margin-top:2.5rem;
margin-bottom:2.5rem;
margin-left:auto;
margin-right:auto
}
hr.star-dark:after,hr.star-light:after {
position:relative;
top:-.8em;
display:inline-block;
padding: 0.25em;
content: '\f005';
font-weight:900;
font-size:2em
}
hr.star-light {
border-color:#fff
}
hr.star-light:after {
color:#fff;
background-color:#18bc9c
}
hr.star-dark {
border-color:#2c3e50
}
hr.star-dark:after {
color:#2c3e50;
background-color:#fff
}
section {
padding:6rem 0
}
section h2 {
font-size:2.25rem;
line-height:2rem
}
@media (min-width:992px) {
section h2 {
font-size:3rem;
line-height:2.5rem
}}
.scroll-to-top {
z-index:1042;
right:1rem;
bottom:1rem;
display:none
}
.scroll-to-top a {
width:3.5rem;
height:3.5rem;
background-color:rgba(33,37,41,.5);
line-height:3.1rem
}
.index-nav{
font-weight:700;
padding top: 0rem:
padding-bottom: 0rem;
}
#Nav-projetos{
padding-top: 0rem;
padding-bottom: 0rem;
}
#mainNav .navbar-brand {
color:#fff
}
#mainNav .navbar-nav {
margin-top:1rem;
letter-spacing:.0625rem
}
#mainNav .navbar-nav li.nav-item a.nav-link {
color:#096504
}
#mainNav .navbar-nav li.nav-item a.nav-link:hover {
color:#18bc9c
}
#mainNav .navbar-nav li.nav-item a.nav-link:active,
#mainNav .navbar-nav li.nav-item a.nav-link:focus {
color:#fff
}
#mainNav .navbar-nav li.nav-item a.nav-link.active {
color:#fff
}
#mainNav .navbar-toggler {
font-size:80%;
padding:.8rem
}
@media (min-width:992px) {
#mainNav {
-webkit-transition:padding-top .3s,padding-bottom .3s;
transition:padding-top .3s,padding-bottom .3s
}
#mainNav .navbar-brand {
font-size:2em;
-webkit-transition:font-size .3s;
transition:font-size .3s
}
#mainNav .navbar-nav {
margin-top:0
}
#mainNav .navbar-nav>li.nav-item>a.nav-link.active {
color:#fff;
background:#18bc9c
}
#mainNav .navbar-nav>li.nav-item>a.nav-link.active:active,
#mainNav .navbar-nav>li.nav-item>a.nav-link.active:focus,
#mainNav .navbar-nav>li.nav-item>a.nav-link.active:hover {
color:#fff;
background:#ff4f00
}
#mainNav.navbar-shrink {
padding-top:.5rem;
padding-bottom:.5rem
}
#mainNav.navbar-shrink .navbar-brand {
font-size:1.5em
}}
header.masthead {
padding-top:calc(6rem + 72px);
padding-bottom:6rem
}
header.masthead h1 {
font-size:3rem;
line-height:3rem
}
header.masthead h2 {
font-size: 2rem;
font-family: 'Fjalla One', sans-serif;
}
@media (min-width:992px) {
header.masthead {
padding-top:calc(6rem + 106px);
padding-bottom:6rem
}
header.masthead h1 {
font-size:3em;
line-height:4rem
}
header.masthead h2 {
font-size:1.75em
}}
.portfolio {
margin-bottom:-15px
}
.portfolio .portfolio-item {
position:relative;
display:block;
max-width:25rem;
margin-bottom:15px
}
.portfolio .portfolio-item .portfolio-item-caption {
-webkit-transition:all ease .5s;
transition:all ease .5s;
opacity:0;
background-color:rgba(24,188,156,.9)
}
.portfolio .portfolio-item .portfolio-item-caption:hover {
opacity:1
}
.portfolio .portfolio-item .portfolio-item-caption .portfolio-item-caption-content {
font-size:1.5rem
}
@media (min-width:576px) {
.portfolio{margin-bottom:-30px
}
.portfolio .portfolio-item {
margin-bottom:30px
}}
.portfolio-modal .portfolio-modal-dialog {
padding:3rem 1rem;
min-height:calc(100vh - 2rem);
margin:1rem calc(1rem - 8px);
position:relative;z-index:2;
-webkit-box-shadow:0 0 3rem 1rem rgba(0,0,0,.5);
box-shadow:0 0 3rem 1rem rgba(0,0,0,.5)
}
.portfolio-modal .portfolio-modal-dialog .close-button {
position:absolute;top:2rem;
right:2rem
}
.portfolio-modal .portfolio-modal-dialog .close-button i {
line-height:38px
}
.portfolio-modal .portfolio-modal-dialog h2 {
font-size:2rem
}
@media (min-width:768px) {
.portfolio-modal .portfolio-modal-dialog {
min-height:100vh;
padding:5rem;
margin:3rem calc(3rem - 8px)
}
.portfolio-modal .portfolio-modal-dialog h2 {
font-size:3rem
}}
.floating-label-form-group {
position:relative;
border-bottom:1px solid #e9ecef
}
.floating-label-form-group input,.floating-label-form-group textarea {
font-size:1.5em;
position:relative;
z-index:1;
padding-right:0;
padding-left:0;
resize:none;
border:none;
border-radius:0;
background:0 0;
-webkit-box-shadow:none!important;
box-shadow:none!important
}
.floating-label-form-group label {
font-size:.85em;
line-height:1.764705882em;
position:relative;
z-index:0;
top:2em;
display:block;
margin:0;
-webkit-transition:top .3s ease,opacity .3s ease;
transition:top .3s ease,opacity .3s ease;
vertical-align:middle;
vertical-align:baseline;
opacity:0
}
.floating-label-form-group:not(:first-child) {
padding-left:14px;
border-left:1px solid #e9ecef
}
.floating-label-form-group-with-value label {
top:0;
opacity:1
}
.floating-label-form-group-with-focus label {
color:#18bc9c
}
form .row:first-child .floating-label-form-group {
border-top:1px solid #e9ecef
}
.footer {
padding-top:5rem;
padding-bottom:5rem;
background-color:#2c3e50;
color:#fff
}
.copyright {
background-color:#1a252f
}
a {
color:#097903
}
a:active,a:focus,a:hover {
color:#00771b
}
.btn {
border-width:2px
}
.bg-primary {
background-color:#009204!important
}
.bg-secondary {
background-color:#fff!important
}
.text-primary {
color:#18bc9c!important
}
.text-secondary {
color:#2c3e50!important
}
.btn-primary {
background-color: #ff4f00;
border-color: #ff4f00;
}
.btn-primary.home{
background-color: #ff4f00;
border-color: #ff4f00;
width: 20rem;
}
.btn-primary:active,.btn-primary:focus,.btn-primary:hover {
background-color:#128f76;
border-color:#128f76
}
.btn-secondary {
background-color:#2c3e50;
border-color:#2c3e50
}
.btn-secondary:active,.btn-secondary:focus,.btn-secondary:hover {
background-color:#1a252f;
border-color:#1a252f
}
.btn-xl {
padding:1rem 1.75rem;
font-size:1.25rem
}
.btn-social {
width:3.25rem;
height:3.25rem;
font-size:1.25rem;
line-height:2rem
} | public/styles/css.css | body {
font-family: 'Fjalla+One', sans-serif;
color: #ffffff;
}
h1,h2,h3,h4,h5,h6 {
font-weight:700;
}
.h3-cadastro{
color: #615f5f;
}
p {
font-size: 20px
}
.p-home{
font-size: 1,5rem;
color: #fff;
padding-top: 2rem;
}
.box-projeto{
margin-bottom: 0.5rem;
margin-top: 1.5rem;
color: #000;
}
#bar {
margin-top: 1rem;
margin-bottom: 1rem;
}
#h2-escolha {
padding-top: 4rem;
padding-bottom: 3rem;
text-align: center;
color: #fff;
font-size: 1,5rem;
}
.banner-header{
padding-top: 1.2rem;
}
.projetos{
background-color:
}
.card-deck{
color: #000;
}
header {
background-color: #009204;
height: 40rem;
padding-bottom: 10rem;
}
.header-projetos{
margin-top: 3.5rem;
height: auto;
}
hr.star-dark,hr.star-light {
max-width:15rem;
padding:0;
text-align:center;
border:none;
border-top:solid .25rem;
margin-top:2.5rem;
margin-bottom:2.5rem;
margin-left:auto;
margin-right:auto
}
hr.star-dark:after,hr.star-light:after {
position:relative;
top:-.8em;
display:inline-block;
padding: 0.25em;
content: '\f005';
font-weight:900;
font-size:2em
}
hr.star-light {
border-color:#fff
}
hr.star-light:after {
color:#fff;
background-color:#18bc9c
}
hr.star-dark {
border-color:#2c3e50
}
hr.star-dark:after {
color:#2c3e50;
background-color:#fff
}
section {
padding:6rem 0
}
section h2 {
font-size:2.25rem;
line-height:2rem
}
@media (min-width:992px) {
section h2 {
font-size:3rem;
line-height:2.5rem
}}
.scroll-to-top {
z-index:1042;
right:1rem;
bottom:1rem;
display:none
}
.scroll-to-top a {
width:3.5rem;
height:3.5rem;
background-color:rgba(33,37,41,.5);
line-height:3.1rem
}
.index-nav{
font-weight:700;
padding top: 0rem:
padding-bottom: 0rem;
}
#Nav-projetos{
padding-top: 0rem;
padding-bottom: 0rem;
}
#mainNav .navbar-brand {
color:#fff
}
#mainNav .navbar-nav {
margin-top:1rem;
letter-spacing:.0625rem
}
#mainNav .navbar-nav li.nav-item a.nav-link {
color:#096504
}
#mainNav .navbar-nav li.nav-item a.nav-link:hover {
color:#18bc9c
}
#mainNav .navbar-nav li.nav-item a.nav-link:active,
#mainNav .navbar-nav li.nav-item a.nav-link:focus {
color:#fff
}
#mainNav .navbar-nav li.nav-item a.nav-link.active {
color:#fff
}
#mainNav .navbar-toggler {
font-size:80%;
padding:.8rem
}
@media (min-width:992px) {
#mainNav {
-webkit-transition:padding-top .3s,padding-bottom .3s;
transition:padding-top .3s,padding-bottom .3s
}
#mainNav .navbar-brand {
font-size:2em;
-webkit-transition:font-size .3s;
transition:font-size .3s
}
#mainNav .navbar-nav {
margin-top:0
}
#mainNav .navbar-nav>li.nav-item>a.nav-link.active {
color:#fff;
background:#18bc9c
}
#mainNav .navbar-nav>li.nav-item>a.nav-link.active:active,
#mainNav .navbar-nav>li.nav-item>a.nav-link.active:focus,
#mainNav .navbar-nav>li.nav-item>a.nav-link.active:hover {
color:#fff;
background:#ff4f00
}
#mainNav.navbar-shrink {
padding-top:.5rem;
padding-bottom:.5rem
}
#mainNav.navbar-shrink .navbar-brand {
font-size:1.5em
}}
header.masthead {
padding-top:calc(6rem + 72px);
padding-bottom:6rem
}
header.masthead h1 {
font-size:3rem;
line-height:3rem
}
header.masthead h2 {
font-size: 2rem;
font-family: 'Fjalla One', sans-serif;
}
@media (min-width:992px) {
header.masthead {
padding-top:calc(6rem + 106px);
padding-bottom:6rem
}
header.masthead h1 {
font-size:3em;
line-height:4rem
}
header.masthead h2 {
font-size:1.75em
}}
.portfolio {
margin-bottom:-15px
}
.portfolio .portfolio-item {
position:relative;
display:block;
max-width:25rem;
margin-bottom:15px
}
.portfolio .portfolio-item .portfolio-item-caption {
-webkit-transition:all ease .5s;
transition:all ease .5s;
opacity:0;
background-color:rgba(24,188,156,.9)
}
.portfolio .portfolio-item .portfolio-item-caption:hover {
opacity:1
}
.portfolio .portfolio-item .portfolio-item-caption .portfolio-item-caption-content {
font-size:1.5rem
}
@media (min-width:576px) {
.portfolio{margin-bottom:-30px
}
.portfolio .portfolio-item {
margin-bottom:30px
}}
.portfolio-modal .portfolio-modal-dialog {
padding:3rem 1rem;
min-height:calc(100vh - 2rem);
margin:1rem calc(1rem - 8px);
position:relative;z-index:2;
-webkit-box-shadow:0 0 3rem 1rem rgba(0,0,0,.5);
box-shadow:0 0 3rem 1rem rgba(0,0,0,.5)
}
.portfolio-modal .portfolio-modal-dialog .close-button {
position:absolute;top:2rem;
right:2rem
}
.portfolio-modal .portfolio-modal-dialog .close-button i {
line-height:38px
}
.portfolio-modal .portfolio-modal-dialog h2 {
font-size:2rem
}
@media (min-width:768px) {
.portfolio-modal .portfolio-modal-dialog {
min-height:100vh;
padding:5rem;
margin:3rem calc(3rem - 8px)
}
.portfolio-modal .portfolio-modal-dialog h2 {
font-size:3rem
}}
.floating-label-form-group {
position:relative;
border-bottom:1px solid #e9ecef
}
.floating-label-form-group input,.floating-label-form-group textarea {
font-size:1.5em;
position:relative;
z-index:1;
padding-right:0;
padding-left:0;
resize:none;
border:none;
border-radius:0;
background:0 0;
-webkit-box-shadow:none!important;
box-shadow:none!important
}
.floating-label-form-group label {
font-size:.85em;
line-height:1.764705882em;
position:relative;
z-index:0;
top:2em;
display:block;
margin:0;
-webkit-transition:top .3s ease,opacity .3s ease;
transition:top .3s ease,opacity .3s ease;
vertical-align:middle;
vertical-align:baseline;
opacity:0
}
.floating-label-form-group:not(:first-child) {
padding-left:14px;
border-left:1px solid #e9ecef
}
.floating-label-form-group-with-value label {
top:0;
opacity:1
}
.floating-label-form-group-with-focus label {
color:#18bc9c
}
form .row:first-child .floating-label-form-group {
border-top:1px solid #e9ecef
}
.footer {
padding-top:5rem;
padding-bottom:5rem;
background-color:#2c3e50;
color:#fff
}
.copyright {
background-color:#1a252f
}
a {
color:#097903
}
a:active,a:focus,a:hover {
color:#00771b
}
.btn {
border-width:2px
}
.bg-primary {
background-color:#009204!important
}
.bg-secondary {
background-color:#fff!important
}
.text-primary {
color:#18bc9c!important
}
.text-secondary {
color:#2c3e50!important
}
.btn-primary {
background-color: #ff4f00;
border-color: #ff4f00;
}
.btn-primary.home{
background-color: #ff4f00;
border-color: #ff4f00;
width: 20rem;
}
.btn-primary:active,.btn-primary:focus,.btn-primary:hover {
background-color:#128f76;
border-color:#128f76
}
.btn-secondary {
background-color:#2c3e50;
border-color:#2c3e50
}
.btn-secondary:active,.btn-secondary:focus,.btn-secondary:hover {
background-color:#1a252f;
border-color:#1a252f
}
.btn-xl {
padding:1rem 1.75rem;
font-size:1.25rem
}
.btn-social {
width:3.25rem;
height:3.25rem;
font-size:1.25rem;
line-height:2rem
} | 0.272315 | 0.054955 |
:root {
--main-color: #009f3b;
}
ul.post-ul,
ul.category-ul {
margin: 0;
}
li.category-li {
float: left;
list-style-type: none;
margin: 0 0.8rem 0.5rem 0;
padding: 2px 10px 0 10px;
border: 1px solid var(--main-color);
border-radius: 5px;
cursor: pointer;
-moz-user-select: none;
-webkit-user-select: none;
}
li.selected {
background-color: var(--main-color);
color: white;
}
ul.category-ul {
width: 100%;
overflow: auto;
margin-bottom: 1.5rem;
}
.post-li {
list-style-type: none;
margin-bottom: 2.5rem;
padding: 0.25rem;
position: relative;
}
a.post-link {
color: black;
text-decoration: none;
}
a.post-link > li > h2 {
display: inline-block;
}
a.post-link > li > h2::after {
content: '';
width: 0px;
height: 2px;
display: block;
background: black;
transition: all 0.3s ease-in-out;
opacity: 0;
}
a.post-link:hover > li > h2::after {
width: 100%;
opacity: 1;
}
h2.post-title {
margin-bottom: 0.3rem;
}
p.post-date {
position: absolute;
right: 3px;
top: 0;
font-size: 0.8rem;
margin: 0;
}
p.post-excerpt {
font-size: 0.9rem;
}
span.post-border {
position: absolute;
transition: all 0.3s ease-in-out;
opacity: 0;
}
li.post-li:hover > .border-left-top-to-left-down,
li.post-li:hover > .border-right-down-to-right-top {
height: 100%;
opacity: 1;
}
li.post-li:hover > .border-left-top-to-right-top,
li.post-li:hover > .border-right-down-to-left-down {
width: 100%;
opacity: 1;
}
span.border-left-top-to-left-down {
left: 0;
top: 0;
width: 2px;
height: 0px;
background-color: var(--main-color);
}
span.border-left-top-to-right-top {
left: 0;
top: 0;
width: 0px;
height: 2px;
background-color: var(--main-color);
}
span.border-right-down-to-left-down {
right: 0;
bottom: 0;
width: 0px;
height: 2px;
background-color: var(--main-color);
}
span.border-right-down-to-right-top {
right: 0;
bottom: 0;
width: 2px;
height: 0px;
background-color: var(--main-color);
} | src/pages/index.css | :root {
--main-color: #009f3b;
}
ul.post-ul,
ul.category-ul {
margin: 0;
}
li.category-li {
float: left;
list-style-type: none;
margin: 0 0.8rem 0.5rem 0;
padding: 2px 10px 0 10px;
border: 1px solid var(--main-color);
border-radius: 5px;
cursor: pointer;
-moz-user-select: none;
-webkit-user-select: none;
}
li.selected {
background-color: var(--main-color);
color: white;
}
ul.category-ul {
width: 100%;
overflow: auto;
margin-bottom: 1.5rem;
}
.post-li {
list-style-type: none;
margin-bottom: 2.5rem;
padding: 0.25rem;
position: relative;
}
a.post-link {
color: black;
text-decoration: none;
}
a.post-link > li > h2 {
display: inline-block;
}
a.post-link > li > h2::after {
content: '';
width: 0px;
height: 2px;
display: block;
background: black;
transition: all 0.3s ease-in-out;
opacity: 0;
}
a.post-link:hover > li > h2::after {
width: 100%;
opacity: 1;
}
h2.post-title {
margin-bottom: 0.3rem;
}
p.post-date {
position: absolute;
right: 3px;
top: 0;
font-size: 0.8rem;
margin: 0;
}
p.post-excerpt {
font-size: 0.9rem;
}
span.post-border {
position: absolute;
transition: all 0.3s ease-in-out;
opacity: 0;
}
li.post-li:hover > .border-left-top-to-left-down,
li.post-li:hover > .border-right-down-to-right-top {
height: 100%;
opacity: 1;
}
li.post-li:hover > .border-left-top-to-right-top,
li.post-li:hover > .border-right-down-to-left-down {
width: 100%;
opacity: 1;
}
span.border-left-top-to-left-down {
left: 0;
top: 0;
width: 2px;
height: 0px;
background-color: var(--main-color);
}
span.border-left-top-to-right-top {
left: 0;
top: 0;
width: 0px;
height: 2px;
background-color: var(--main-color);
}
span.border-right-down-to-left-down {
right: 0;
bottom: 0;
width: 0px;
height: 2px;
background-color: var(--main-color);
}
span.border-right-down-to-right-top {
right: 0;
bottom: 0;
width: 2px;
height: 0px;
background-color: var(--main-color);
} | 0.506347 | 0.171859 |
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo&display=swap');
body {
background-color: #474e5d;
font-family: Helvetica, sans-serif;
padding: 100px;
font-family: 'Arvo', serif;
}
ul{
padding: 0;
list-style-type: none;
}
summary {
outline:0;
}
summary:hover{
font-weight: bold;
cursor: pointer;
}
summary:hover > span{
color: rgb(35, 134, 201);
}
a{
color: rgb(35, 134, 201);
text-decoration: none;
}
cite{
display: block;
text-align: center;
padding: 5px 0;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
.main-title{
font-family: 'Josefin Sans', sans-serif;
}
.header-wrap{
display: flex;
flex-direction: row;
width: 100%;
flex-wrap: wrap;
padding: 10px 0;
background-color: #fff;
justify-content: space-between;
}
.header-img{
max-height: 300px;
margin: 0 40px ;
}
.header-context{
margin: 0 40px ;
width: 100%;
justify-self: center;
}
.resume{
width: 60%;
margin:0 40px;
text-align: justify;
}
.header-context-list{
line-height: 22px;
color: rgb(35, 134, 201);
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.header-contact-element{
display: flex;
flex-direction: row;
align-items: center;
}
.header-contact-element > img{
margin-right: 5px;
}
.main-wrap{
display: flex;
background-color: #fff;
width: 100%;
}
.time-line-information{
display: flex;
}
.time-line-list{
line-height: 1.6rem;
}
.time-line-paragraphe{
font-style: italic;
}
.time-line{
width: 100%;
padding: 40px;
}
.additional-information{
width: 100%;
padding-top: 40px;
}
.additional-information-wrap{
display: flex;
align-items: center;
}
.additional-information-wrap > img{
margin-left: 5px;
}
.additional-information-list > p{
margin: 0;
} | style.css | @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo&display=swap');
body {
background-color: #474e5d;
font-family: Helvetica, sans-serif;
padding: 100px;
font-family: 'Arvo', serif;
}
ul{
padding: 0;
list-style-type: none;
}
summary {
outline:0;
}
summary:hover{
font-weight: bold;
cursor: pointer;
}
summary:hover > span{
color: rgb(35, 134, 201);
}
a{
color: rgb(35, 134, 201);
text-decoration: none;
}
cite{
display: block;
text-align: center;
padding: 5px 0;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
.main-title{
font-family: 'Josefin Sans', sans-serif;
}
.header-wrap{
display: flex;
flex-direction: row;
width: 100%;
flex-wrap: wrap;
padding: 10px 0;
background-color: #fff;
justify-content: space-between;
}
.header-img{
max-height: 300px;
margin: 0 40px ;
}
.header-context{
margin: 0 40px ;
width: 100%;
justify-self: center;
}
.resume{
width: 60%;
margin:0 40px;
text-align: justify;
}
.header-context-list{
line-height: 22px;
color: rgb(35, 134, 201);
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.header-contact-element{
display: flex;
flex-direction: row;
align-items: center;
}
.header-contact-element > img{
margin-right: 5px;
}
.main-wrap{
display: flex;
background-color: #fff;
width: 100%;
}
.time-line-information{
display: flex;
}
.time-line-list{
line-height: 1.6rem;
}
.time-line-paragraphe{
font-style: italic;
}
.time-line{
width: 100%;
padding: 40px;
}
.additional-information{
width: 100%;
padding-top: 40px;
}
.additional-information-wrap{
display: flex;
align-items: center;
}
.additional-information-wrap > img{
margin-left: 5px;
}
.additional-information-list > p{
margin: 0;
} | 0.355551 | 0.078395 |
@charset "utf-8";
/* 모바일용 CSS */
/* 기본 CSS */
/*페이지 로더*/
.loader {
position: absolute;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
left: 50%;
top: 50%;
margin: -60px 0 0 -60px;
z-index: 1000;
/* Safari */
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#wrap{
display: none;
}
/*슬라이드, 섹션 박스*/
.container {
width: 90%;
max-width: 1132px;
margin: 0 auto;
}
.cfixed:after,
.container:after {
display: block;
content: "";
clear: both;
}
.blind {
position: absolute;
width: 0;
height: 0;
line-height: 0;
text-indent: -9999px;
overflow: hidden;
}
.sec-tit {
font-size: 42px;
color: #3f51b5;
font-weight: normal;
}
.divider {
width: 90%;
max-width: 1132px;
margin: 0 auto;
margin-top: 77px;
background: #eee;
}
.m-divider {
width: 20px;
margin: 0 auto;
margin-top: 77px;
background: #3f51b5;
}
/* 헤더 영역 CSS */
.header {
position: relative;
padding: 18px 5%;
}
.header .logo {
float: left;
}
.header .logo a {
font-size: 26px;
color: #3f51b5;
font-weight: normal;
}
.header .gnb {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #3f51b5;
z-index: 1;
}
.header .gnb li {
border-bottom: 1px solid #303f9f;
}
.header .gnb li a {
display: block;
padding: 14px 0 14px 5%;
font-size: 14px;
color: #fff;
}
.header .menu-toggle-btn {
float: right;
width: 20px;
margin-top: 4px;
cursor: pointer;
}
.header .menu-toggle-btn span {
display: block;
width: 100%;
height: 2px;
background: #3f51b5;
}
.header .menu-toggle-btn span:nth-child(2) {
margin: 5px 0;
}
a#Move_Top {
position: fixed;
right: 2%;
bottom: 50px;
display: none;
z-index: 999;
}
/* 슬라이더 영역 CSS */
* {
box-sizing: border-box
}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active,
.dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
@keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
/* 디스플레이 영역 CSS */
.display-section {
margin-top: 59px;
text-align: center;
}
.display-section .sec-tit {
margin-bottom: 30px;
}
.display-section .desc {
font-family: 'PT Serif';
color: #616161;
line-height: 1.9;
}
/* 프로모션 영역 CSS */
.promotion-section {
margin-top: 68px;
}
.promotion-section .promo-list li {
margin-top: 52px;
text-align: center;
}
.promotion-section .promo-list li:first-child {
margin-top: 0;
}
.promotion-section .promo-list li img {
height: 52px;
}
.promotion-section .promo-list li h3 {
margin: 29px 0 20px 0;
color: #3f51b5;
font-weight: normal;
}
.promotion-section .promo-list li p {
font-size: 14px;
font-family: 'PT Serif';
color: #616161;
line-height: 1.5;
}
/* 최근 작업 영역 CSS */
.work-section {
margin-top: 73px;
}
.work-section .sec-tit {
width: 90%;
max-width: 1132px;
margin: 0 auto;
margin-bottom: 47px;
text-align: center;
}
.work-section .work-list li {
width: 100%;
}
.work-section .work-list li a {
display: block;
position: relative;
width: 100%;
height: 100%;
}
.work-section .work-list li a:before {
display: block;
position: absolute;
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: 100%;
background: #3f51b5;
content: "";
opacity: 0;
transition: all 0.2s;
}
.work-section .work-list li a:hover:before {
opacity: 0.86;
}
.work-section .work-list li .info {
position: absolute;
top: 0;
left: 23px;
z-index: 20;
opacity: 0;
transition: all 0.3s;
}
.work-section .work-list li a:hover .info {
transform: translateY(23px);
opacity: 1;
}
.work-section .work-list li .info h3 {
margin-bottom: 8px;
font-size: 23px;
color: #fff;
font-weight: normal;
}
.work-section .work-list li .info span {
font-size: 11px;
color: #fff;
}
.work-section .work-list li img {
display: block;
width: 100%;
max-width: 100%;
height: auto;
}
/* 최근 글 영역 CSS */
.blog-section {
margin-top: 77px;
}
.blog-section .sec-tit {
margin-bottom: 47px;
text-align: center;
}
.blog-section .blog-list li {
width: 100%;
margin-top: 45px;
}
.blog-section .blog-list li:first-child {
margin-top: 0;
}
.blog-section .blog-list li img {
display: block;
width: 100%;
max-width: 100%;
height: auto;
}
.blog-section .blog-list li time {
display: block;
margin: 11px 0 10px 0;
font-size: 11px;
color: #9e9e9e;
}
.blog-section .blog-list li h3 {
color: #424242;
font-weight: normal;
line-height: 1.6;
}
/* 연락처 영역 CSS */
.contact-section {
margin-top: 109px;
}
.contact-section .sec-tit {
margin-bottom: 47px;
text-align: center;
}
.contact-section .form-box .form input {
padding-bottom: 13px;
margin-bottom: 38px;
}
.contact-section .form-box .textarea textarea {
height: 165px;
}
.contact-section .form-box .send-btn {
margin-top: 36px;
text-align: right;
}
.contact-section .form-box .send-btn button {
padding: 15px;
margin: 0;
border: 0;
font-size: 12px;
color: #fff;
background: #3f51b5;
font-family: 'Montserrat';
cursor: pointer;
}
/* 푸터 영역 CSS */
.footer {
margin-top: 104px;
}
.footer iframe {
width: 100%;
height: 320px;
}
.footer p {
margin: 21px 0;
color: #3f51b5;
text-align: center;
}
/* 태블릿용 CSS */
@media all and (min-width:768px) {
/* 기본 CSS */
.divider {
margin-top: 124px;
}
.m-divider {
margin-top: 124px;
}
/* 헤더 영역 CSS */
.header {
position: static;
padding: 28px 52px;
}
.header .gnb {
display: block !important;
position: static;
float: right;
width: auto;
margin-top: 6px;
background: none;
}
.header .gnb li {
float: left;
margin-left: 21px;
border-bottom: 0;
}
.header .gnb li a {
padding: 0;
font-size: 16px;
color: #3f51b5;
}
.header .menu-toggle-btn {
display: none !important;
}
/* 디스플레이 영역 CSS */
.display-section {
margin-top: 95px;
}
/* 프로모션 영역 CSS */
.promotion-section {
margin-top: 110px;
}
.promotion-section .promo-list li {
float: left;
width: 23.046875%;
/* 177px ÷ 768px*/
margin-left: 2.604166666666667%;
/* 20px ÷ 768px*/
margin-top: 0;
}
.promotion-section .promo-list li:first-child {
margin-left: 0;
}
/* 최근 작업 영역 CSS */
.work-section {
margin-top: 118px;
}
.work-section .sec-tit {
margin-bottom: 76px;
}
.work-section .work-list li {
float: left;
width: 50%;
}
.work-section .work-list li .info {
left: 37px;
}
.work-section .work-list li a:hover .info {
transform: translateY(37px);
}
/* 최근 글 영역 CSS */
.blog-section {
margin-top: 124px;
}
.blog-section .sec-tit {
margin-bottom: 76px;
}
.blog-section .blog-list li {
float: left;
width: 31.59722222222222%;
/* 242.6666666666667px ÷ 768px*/
margin-left: 2.604166666666667%;
/* 20px ÷ 768px*/
margin-top: 0;
}
.blog-section .blog-list li:first-child {
margin-left: 0;
}
/* 연락처 영역 CSS */
.contact-section {
margin-top: 176px;
}
.contact-section .sec-tit {
margin-bottom: 76px;
}
.contact-section .form-box .form,
.contact-section .form-box .textarea {
float: left;
width: 48.69791666666667%;
/* 374px ÷ 768px*/
}
.contact-section .form-box .form {
margin-right: 2.604166666666667%;
/* 20px ÷ 768px*/
}
.contact-section .form-box .form input:last-child {
margin-bottom: 0;
}
/* 푸터 영역 CSS */
.footer iframe {
height: 432px;
}
.footer p {
margin: 34px 0;
}
}
/* PC용 CSS */
@media all and (min-width:1132px) {
/* 디스플레이 영역 CSS */
.display-section {
text-align: left;
}
.display-section .sec-tit {
float: left;
margin-bottom: 0;
}
.display-section .desc {
position: relative;
float: right;
padding-left: 20px;
font-family: 'PT Serif';
color: #616161;
line-height: 1.9;
}
.display-section .desc:before {
display: block;
position: absolute;
top: 9px;
left: 0;
width: 2px;
height: 44px;
background: #e0e0e0;
content: "";
}
/* 프로모션 영역 CSS */
.promotion-section .promo-list li {
width: 23.67491166077739%;
/* 268px ÷ 1132px*/
margin-left: 1.76678445229682%;
/* 20px ÷ 1132px*/
}
/* 최근 작업 영역 CSS */
.work-section .sec-tit {
text-align: left;
}
.work-section .work-list li {
width: 25%;
}
/* 최근 글 영역 CSS */
.blog-section .sec-tit {
float: left;
margin-bottom: 0;
}
.blog-section .blog-list {
float: right;
width: 74.5583038869258%;
/* 844px ÷ 1132px*/
}
.blog-section .blog-list li {
width: 31.75355450236967%;
/* 268px ÷ 844px*/
margin-left: 2.369668246445498%;
/* 20px ÷ 844px*/
}
/* 연락처 영역 CSS */
.contact-section .sec-tit {
float: left;
margin-bottom: 0;
}
.contact-section .form-box {
float: right;
width: 74.5583038869258%;
/* 844px ÷ 1132px*/
}
.contact-section .form-box .form,
.contact-section .form-box .textarea {
width: 48.81516587677725%;
/* 412px ÷ 844px*/
}
.contact-section .form-box .form {
margin-right: 2.369668246445498%;
/* 20px ÷ 844px*/
}
} | css/default.css | @charset "utf-8";
/* 모바일용 CSS */
/* 기본 CSS */
/*페이지 로더*/
.loader {
position: absolute;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
left: 50%;
top: 50%;
margin: -60px 0 0 -60px;
z-index: 1000;
/* Safari */
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#wrap{
display: none;
}
/*슬라이드, 섹션 박스*/
.container {
width: 90%;
max-width: 1132px;
margin: 0 auto;
}
.cfixed:after,
.container:after {
display: block;
content: "";
clear: both;
}
.blind {
position: absolute;
width: 0;
height: 0;
line-height: 0;
text-indent: -9999px;
overflow: hidden;
}
.sec-tit {
font-size: 42px;
color: #3f51b5;
font-weight: normal;
}
.divider {
width: 90%;
max-width: 1132px;
margin: 0 auto;
margin-top: 77px;
background: #eee;
}
.m-divider {
width: 20px;
margin: 0 auto;
margin-top: 77px;
background: #3f51b5;
}
/* 헤더 영역 CSS */
.header {
position: relative;
padding: 18px 5%;
}
.header .logo {
float: left;
}
.header .logo a {
font-size: 26px;
color: #3f51b5;
font-weight: normal;
}
.header .gnb {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #3f51b5;
z-index: 1;
}
.header .gnb li {
border-bottom: 1px solid #303f9f;
}
.header .gnb li a {
display: block;
padding: 14px 0 14px 5%;
font-size: 14px;
color: #fff;
}
.header .menu-toggle-btn {
float: right;
width: 20px;
margin-top: 4px;
cursor: pointer;
}
.header .menu-toggle-btn span {
display: block;
width: 100%;
height: 2px;
background: #3f51b5;
}
.header .menu-toggle-btn span:nth-child(2) {
margin: 5px 0;
}
a#Move_Top {
position: fixed;
right: 2%;
bottom: 50px;
display: none;
z-index: 999;
}
/* 슬라이더 영역 CSS */
* {
box-sizing: border-box
}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active,
.dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
@keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
/* 디스플레이 영역 CSS */
.display-section {
margin-top: 59px;
text-align: center;
}
.display-section .sec-tit {
margin-bottom: 30px;
}
.display-section .desc {
font-family: 'PT Serif';
color: #616161;
line-height: 1.9;
}
/* 프로모션 영역 CSS */
.promotion-section {
margin-top: 68px;
}
.promotion-section .promo-list li {
margin-top: 52px;
text-align: center;
}
.promotion-section .promo-list li:first-child {
margin-top: 0;
}
.promotion-section .promo-list li img {
height: 52px;
}
.promotion-section .promo-list li h3 {
margin: 29px 0 20px 0;
color: #3f51b5;
font-weight: normal;
}
.promotion-section .promo-list li p {
font-size: 14px;
font-family: 'PT Serif';
color: #616161;
line-height: 1.5;
}
/* 최근 작업 영역 CSS */
.work-section {
margin-top: 73px;
}
.work-section .sec-tit {
width: 90%;
max-width: 1132px;
margin: 0 auto;
margin-bottom: 47px;
text-align: center;
}
.work-section .work-list li {
width: 100%;
}
.work-section .work-list li a {
display: block;
position: relative;
width: 100%;
height: 100%;
}
.work-section .work-list li a:before {
display: block;
position: absolute;
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: 100%;
background: #3f51b5;
content: "";
opacity: 0;
transition: all 0.2s;
}
.work-section .work-list li a:hover:before {
opacity: 0.86;
}
.work-section .work-list li .info {
position: absolute;
top: 0;
left: 23px;
z-index: 20;
opacity: 0;
transition: all 0.3s;
}
.work-section .work-list li a:hover .info {
transform: translateY(23px);
opacity: 1;
}
.work-section .work-list li .info h3 {
margin-bottom: 8px;
font-size: 23px;
color: #fff;
font-weight: normal;
}
.work-section .work-list li .info span {
font-size: 11px;
color: #fff;
}
.work-section .work-list li img {
display: block;
width: 100%;
max-width: 100%;
height: auto;
}
/* 최근 글 영역 CSS */
.blog-section {
margin-top: 77px;
}
.blog-section .sec-tit {
margin-bottom: 47px;
text-align: center;
}
.blog-section .blog-list li {
width: 100%;
margin-top: 45px;
}
.blog-section .blog-list li:first-child {
margin-top: 0;
}
.blog-section .blog-list li img {
display: block;
width: 100%;
max-width: 100%;
height: auto;
}
.blog-section .blog-list li time {
display: block;
margin: 11px 0 10px 0;
font-size: 11px;
color: #9e9e9e;
}
.blog-section .blog-list li h3 {
color: #424242;
font-weight: normal;
line-height: 1.6;
}
/* 연락처 영역 CSS */
.contact-section {
margin-top: 109px;
}
.contact-section .sec-tit {
margin-bottom: 47px;
text-align: center;
}
.contact-section .form-box .form input {
padding-bottom: 13px;
margin-bottom: 38px;
}
.contact-section .form-box .textarea textarea {
height: 165px;
}
.contact-section .form-box .send-btn {
margin-top: 36px;
text-align: right;
}
.contact-section .form-box .send-btn button {
padding: 15px;
margin: 0;
border: 0;
font-size: 12px;
color: #fff;
background: #3f51b5;
font-family: 'Montserrat';
cursor: pointer;
}
/* 푸터 영역 CSS */
.footer {
margin-top: 104px;
}
.footer iframe {
width: 100%;
height: 320px;
}
.footer p {
margin: 21px 0;
color: #3f51b5;
text-align: center;
}
/* 태블릿용 CSS */
@media all and (min-width:768px) {
/* 기본 CSS */
.divider {
margin-top: 124px;
}
.m-divider {
margin-top: 124px;
}
/* 헤더 영역 CSS */
.header {
position: static;
padding: 28px 52px;
}
.header .gnb {
display: block !important;
position: static;
float: right;
width: auto;
margin-top: 6px;
background: none;
}
.header .gnb li {
float: left;
margin-left: 21px;
border-bottom: 0;
}
.header .gnb li a {
padding: 0;
font-size: 16px;
color: #3f51b5;
}
.header .menu-toggle-btn {
display: none !important;
}
/* 디스플레이 영역 CSS */
.display-section {
margin-top: 95px;
}
/* 프로모션 영역 CSS */
.promotion-section {
margin-top: 110px;
}
.promotion-section .promo-list li {
float: left;
width: 23.046875%;
/* 177px ÷ 768px*/
margin-left: 2.604166666666667%;
/* 20px ÷ 768px*/
margin-top: 0;
}
.promotion-section .promo-list li:first-child {
margin-left: 0;
}
/* 최근 작업 영역 CSS */
.work-section {
margin-top: 118px;
}
.work-section .sec-tit {
margin-bottom: 76px;
}
.work-section .work-list li {
float: left;
width: 50%;
}
.work-section .work-list li .info {
left: 37px;
}
.work-section .work-list li a:hover .info {
transform: translateY(37px);
}
/* 최근 글 영역 CSS */
.blog-section {
margin-top: 124px;
}
.blog-section .sec-tit {
margin-bottom: 76px;
}
.blog-section .blog-list li {
float: left;
width: 31.59722222222222%;
/* 242.6666666666667px ÷ 768px*/
margin-left: 2.604166666666667%;
/* 20px ÷ 768px*/
margin-top: 0;
}
.blog-section .blog-list li:first-child {
margin-left: 0;
}
/* 연락처 영역 CSS */
.contact-section {
margin-top: 176px;
}
.contact-section .sec-tit {
margin-bottom: 76px;
}
.contact-section .form-box .form,
.contact-section .form-box .textarea {
float: left;
width: 48.69791666666667%;
/* 374px ÷ 768px*/
}
.contact-section .form-box .form {
margin-right: 2.604166666666667%;
/* 20px ÷ 768px*/
}
.contact-section .form-box .form input:last-child {
margin-bottom: 0;
}
/* 푸터 영역 CSS */
.footer iframe {
height: 432px;
}
.footer p {
margin: 34px 0;
}
}
/* PC용 CSS */
@media all and (min-width:1132px) {
/* 디스플레이 영역 CSS */
.display-section {
text-align: left;
}
.display-section .sec-tit {
float: left;
margin-bottom: 0;
}
.display-section .desc {
position: relative;
float: right;
padding-left: 20px;
font-family: 'PT Serif';
color: #616161;
line-height: 1.9;
}
.display-section .desc:before {
display: block;
position: absolute;
top: 9px;
left: 0;
width: 2px;
height: 44px;
background: #e0e0e0;
content: "";
}
/* 프로모션 영역 CSS */
.promotion-section .promo-list li {
width: 23.67491166077739%;
/* 268px ÷ 1132px*/
margin-left: 1.76678445229682%;
/* 20px ÷ 1132px*/
}
/* 최근 작업 영역 CSS */
.work-section .sec-tit {
text-align: left;
}
.work-section .work-list li {
width: 25%;
}
/* 최근 글 영역 CSS */
.blog-section .sec-tit {
float: left;
margin-bottom: 0;
}
.blog-section .blog-list {
float: right;
width: 74.5583038869258%;
/* 844px ÷ 1132px*/
}
.blog-section .blog-list li {
width: 31.75355450236967%;
/* 268px ÷ 844px*/
margin-left: 2.369668246445498%;
/* 20px ÷ 844px*/
}
/* 연락처 영역 CSS */
.contact-section .sec-tit {
float: left;
margin-bottom: 0;
}
.contact-section .form-box {
float: right;
width: 74.5583038869258%;
/* 844px ÷ 1132px*/
}
.contact-section .form-box .form,
.contact-section .form-box .textarea {
width: 48.81516587677725%;
/* 412px ÷ 844px*/
}
.contact-section .form-box .form {
margin-right: 2.369668246445498%;
/* 20px ÷ 844px*/
}
} | 0.280321 | 0.067087 |
@charset "utf-8";
/* CSS Document */
/* Main menu */
/* Main menu */
ul#menu {
color: #fff;
margin: 0;
padding: 0 0 0 6px;
height: 40px;
width: 954px;
position:relative;
z-index: 999;
background: #2A2B8C;
}
ul#menu li {
/*display: inline;*/
list-style: none;
}
ul#menu li.mega {
float:left;
height: 36px;
background: url(../images/menu_seperation.gif) no-repeat right top;
padding: 9px 0 0 0;
}
ul#menu li.mega.last {
background: none;
}
ul#menu li.mega h2 {
_font-size: 1.4em;
}
ul#menu li.mega a {
color: #fff;
text-decoration: none;
padding: 8px 15px;
margin: 0 3px 0 0px;
}
ul#menu li.mega a:hover {
text-decoration: none;
background: #f6f6f6;
padding: 8px 15px;
margin: 0 3px 0 0;
color: #0f6da0;
}
ul#menu li#menuItem10 h2 a {
width: 87px;
}
ul#menu li#menuItem1 h2 a:hover,
ul#menu li#menuItem2 h2 a:hover,
ul#menu li#menuItem3 h2 a:hover,
ul#menu li#menuItem4 h2 a:hover,
ul#menu li#menuItem5 h2 a:hover,
ul#menu li#menuItem6 h2 a:hover,
ul#menu li#menuItem7 h2 a:hover,
ul#menu li#menuItem8 h2 a:hover,
ul#menu li#menuItem9 h2 a:hover,
ul#menu li#menuItem10 h2 a:hover {padding: 8px 15px 16px 15px; background: #f6f6f6; }
ul#menu li.hovering h2 a {
z-index:200;
}
ul#menu li#menuItem1.hovering h2 a ,
ul#menu li#menuItem2.hovering h2 a ,
ul#menu li#menuItem3.hovering h2 a ,
ul#menu li#menuItem4.hovering h2 a ,
ul#menu li#menuItem5.hovering h2 a ,
ul#menu li#menuItem6.hovering h2 a ,
ul#menu li#menuItem7.hovering h2 a ,
ul#menu li#menuItem8.hovering h2 a ,
ul#menu li#menuItem9.hovering h2 a ,
ul#menu li#menuItem10.hovering h2 a {padding: 8px 15px 16px 15px; color: #0f6da0; height: 36px; background: #f6f6f6;}
ul#menu li.mega div.megapanel {
width: 380px;
position: absolute;
z-index: 100;
top: 40px;
left: 5px;
padding: 10px;
background: #f6f6f6;
border: 3px solid #a8a8a8;
border-top:none;
color: #930;
}
ul#menu li.mega div.megapanel {
display: none;
}
ul#menu li.mega div.megapanel img {
position: absolute;
top: 0;
left:0;
}
ul#menu li.mega div.megapanelMenu2 {left: 70px;}
ul#menu li.mega div.megapanelMenu3 {left: 153px;}
ul#menu li.mega div.megapanelMenu4 {left: 263px;}
ul#menu li.mega div.megapanelMenu5 {left: 263px;}
ul#menu li.mega div.megapanelMenu6 {left: 440px;}
ul#menu li.mega div.megapanelMenu7 {left: 470px;}
ul#menu li.mega div.megapanelMenu8 {left: 530px;}
ul#menu li.mega div.megapanelMenu9 {left: 571px;}
ul#menu li.mega div.megapanelMenu10 {left: 354px;}
ul#menu li.hovering div.megapanel {
display: none;
}
ul#menu li.mega div div.col {
width: 170px;
display:block;
float:left;
margin: 0 5px 0 15px;
display: inline;
}
ul#menu li.mega div.megapanel a {
display:inline;
color: #300;
padding: 0;
background-image: none;
text-decoration: underline;
}
ul#menu li.mega div.megapanel h3 {
color: #666666;
font-weight: bold;
font-size: 12px;
margin-bottom: 7px;
position: relative;
left: -10px;
padding: 3px 0 0 20px;
background: #f6f6f6 url(../images/menu_bullet.png) no-repeat left center;
}
ul#menu li.mega div.megapanel h3 a {
color: #666666;
text-decoration:none;
}
ul#menu li.mega div.megapanel h3 a:hover {
color: #0f6da0;
text-decoration: underline;
background: none;
padding:0;
margin:0;
}
ul#menu li.mega div.megapanel ul {
list-style-type:none;
margin: 0 0 5px 0;
padding-top:0px;
padding-left:10px;
}
ul#menu li.mega div.megapanel ul li {
background: none;
padding: 1px 0;
}
ul#menu li.mega div.megapanel ul li a{
background: none;
color: #666;
font-size: 1em;
font-weight:normal;
text-decoration: none;
}
ul#menu li.mega div.megapanel ul li a:hover{
background: none;
color: #0f6da0;
text-decoration: underline;
padding-left: 0;
}
.new_link {
font-size:12px;
font-weight:normal;
} | css/static_pc_menu.css | @charset "utf-8";
/* CSS Document */
/* Main menu */
/* Main menu */
ul#menu {
color: #fff;
margin: 0;
padding: 0 0 0 6px;
height: 40px;
width: 954px;
position:relative;
z-index: 999;
background: #2A2B8C;
}
ul#menu li {
/*display: inline;*/
list-style: none;
}
ul#menu li.mega {
float:left;
height: 36px;
background: url(../images/menu_seperation.gif) no-repeat right top;
padding: 9px 0 0 0;
}
ul#menu li.mega.last {
background: none;
}
ul#menu li.mega h2 {
_font-size: 1.4em;
}
ul#menu li.mega a {
color: #fff;
text-decoration: none;
padding: 8px 15px;
margin: 0 3px 0 0px;
}
ul#menu li.mega a:hover {
text-decoration: none;
background: #f6f6f6;
padding: 8px 15px;
margin: 0 3px 0 0;
color: #0f6da0;
}
ul#menu li#menuItem10 h2 a {
width: 87px;
}
ul#menu li#menuItem1 h2 a:hover,
ul#menu li#menuItem2 h2 a:hover,
ul#menu li#menuItem3 h2 a:hover,
ul#menu li#menuItem4 h2 a:hover,
ul#menu li#menuItem5 h2 a:hover,
ul#menu li#menuItem6 h2 a:hover,
ul#menu li#menuItem7 h2 a:hover,
ul#menu li#menuItem8 h2 a:hover,
ul#menu li#menuItem9 h2 a:hover,
ul#menu li#menuItem10 h2 a:hover {padding: 8px 15px 16px 15px; background: #f6f6f6; }
ul#menu li.hovering h2 a {
z-index:200;
}
ul#menu li#menuItem1.hovering h2 a ,
ul#menu li#menuItem2.hovering h2 a ,
ul#menu li#menuItem3.hovering h2 a ,
ul#menu li#menuItem4.hovering h2 a ,
ul#menu li#menuItem5.hovering h2 a ,
ul#menu li#menuItem6.hovering h2 a ,
ul#menu li#menuItem7.hovering h2 a ,
ul#menu li#menuItem8.hovering h2 a ,
ul#menu li#menuItem9.hovering h2 a ,
ul#menu li#menuItem10.hovering h2 a {padding: 8px 15px 16px 15px; color: #0f6da0; height: 36px; background: #f6f6f6;}
ul#menu li.mega div.megapanel {
width: 380px;
position: absolute;
z-index: 100;
top: 40px;
left: 5px;
padding: 10px;
background: #f6f6f6;
border: 3px solid #a8a8a8;
border-top:none;
color: #930;
}
ul#menu li.mega div.megapanel {
display: none;
}
ul#menu li.mega div.megapanel img {
position: absolute;
top: 0;
left:0;
}
ul#menu li.mega div.megapanelMenu2 {left: 70px;}
ul#menu li.mega div.megapanelMenu3 {left: 153px;}
ul#menu li.mega div.megapanelMenu4 {left: 263px;}
ul#menu li.mega div.megapanelMenu5 {left: 263px;}
ul#menu li.mega div.megapanelMenu6 {left: 440px;}
ul#menu li.mega div.megapanelMenu7 {left: 470px;}
ul#menu li.mega div.megapanelMenu8 {left: 530px;}
ul#menu li.mega div.megapanelMenu9 {left: 571px;}
ul#menu li.mega div.megapanelMenu10 {left: 354px;}
ul#menu li.hovering div.megapanel {
display: none;
}
ul#menu li.mega div div.col {
width: 170px;
display:block;
float:left;
margin: 0 5px 0 15px;
display: inline;
}
ul#menu li.mega div.megapanel a {
display:inline;
color: #300;
padding: 0;
background-image: none;
text-decoration: underline;
}
ul#menu li.mega div.megapanel h3 {
color: #666666;
font-weight: bold;
font-size: 12px;
margin-bottom: 7px;
position: relative;
left: -10px;
padding: 3px 0 0 20px;
background: #f6f6f6 url(../images/menu_bullet.png) no-repeat left center;
}
ul#menu li.mega div.megapanel h3 a {
color: #666666;
text-decoration:none;
}
ul#menu li.mega div.megapanel h3 a:hover {
color: #0f6da0;
text-decoration: underline;
background: none;
padding:0;
margin:0;
}
ul#menu li.mega div.megapanel ul {
list-style-type:none;
margin: 0 0 5px 0;
padding-top:0px;
padding-left:10px;
}
ul#menu li.mega div.megapanel ul li {
background: none;
padding: 1px 0;
}
ul#menu li.mega div.megapanel ul li a{
background: none;
color: #666;
font-size: 1em;
font-weight:normal;
text-decoration: none;
}
ul#menu li.mega div.megapanel ul li a:hover{
background: none;
color: #0f6da0;
text-decoration: underline;
padding-left: 0;
}
.new_link {
font-size:12px;
font-weight:normal;
} | 0.113678 | 0.042503 |
.js .loading::before,
.js .loading::after {
content: '';
position: fixed;
z-index: 1000;
}
.js .loading::before {
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--color-bg);
}
.js .loading::after {
top: 50%;
left: 50%;
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
border-radius: 50%;
opacity: 0.4;
background: var(--color-link);
animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
to {
opacity: 1;
transform: scale3d(0.5, 0.5, 1);
}
}
a {
text-decoration: none;
outline: none;
}
a:hover {
color: var(--color-link-hover);
outline: none;
}
/* https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus,
button:focus {
/* Provide a fallback style for browsers
that don't support :focus-visible */
outline: none;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
/* Remove the focus indicator on mouse-focus for browsers
that do support :focus-visible */
}
a:focus-visible,
button:focus-visible {
/* Draw a very noticeable focus style for
keyboard-focus on browsers that do support
:focus-visible */
outline: 2px solid #443ffc;
outline-offset: 3px;
}
a:focus-visible {
background: none;
}
.frame {
padding: 3rem 5vw 6rem;
text-align: center;
position: relative;
z-index: 1000;
}
.frame__title {
font-size: 1.525rem;
margin: 0 0 1rem;
font-weight: normal;
cursor: default;
}
.frame__tagline {
color: #999;
max-width: 320px;
margin: 1rem auto;
}
.frame__related h3 {
margin: 0;
padding-top: 1rem;
font-size: 1rem;
}
.frame__related p {
margin: 0.5rem 0;
}
.frame__links {
display: flex;
align-items: center;
justify-content: center;
}
.frame__links a:not(:last-child) {
margin-right: 2rem;
}
.github {
width: 24px;
height: 24px;
}
.related {
text-align: center;
padding: 4rem 1rem;
min-height: 40vh;
}
.content {
display: grid;
width: 100%;
margin: 0 auto;
padding: 10vh 25px;
max-width: 1300px;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-auto-rows: 200px;
grid-gap: 4rem;
grid-row-gap: 6rem;
justify-content: center;
list-style: none;
}
.content__item {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
counter-increment: itemcounter;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
pointer-events: none;
}
.content__item::before {
color: var(--color-number);
position: absolute;
top: 0;
left: 0;
content: counters(itemcounter, ".", decimal-leading-zero);
}
.button {
pointer-events: auto;
cursor: pointer;
background: #e7e7e7;
border: none;
padding: 1.5rem 3rem;
margin: 0;
font-family: inherit;
font-size: inherit;
position: relative;
display: inline-block;
}
.button::before,
.button::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.button--pan {
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 700;
border: 2px solid #000;
border-radius: 3rem;
overflow: hidden;
color: #fff;
}
.button--pan span {
position: relative;
mix-blend-mode: difference;
}
.button--pan::before {
content: '';
background: #000;
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--pan:hover::before {
transform: translate3d(0,-100%,0);
}
.button--hyperion {
font-family: input-mono-narrow, monospace;
font-weight: 500;
padding: 1rem 1.5rem;
border: 1px solid #000;
overflow: hidden;
color: #fff;
}
.button--hyperion span {
display: block;
position: relative;
}
.button--hyperion > span {
overflow: hidden;
}
.button--hyperion > span > span {
overflow: hidden;
mix-blend-mode: difference;
}
.button--hyperion:hover > span > span {
animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
@keyframes MoveUpInitial {
to {
transform: translate3d(0,-105%,0);
}
}
@keyframes MoveUpEnd {
from {
transform: translate3d(0,100%,0);
}
to {
transform: translate3d(0,0,0);
}
}
.button--hyperion::before {
content: '';
background: #000;
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
transform-origin: 100% 50%;
}
.button--hyperion:hover::before {
transform: scale3d(0,1,1);
transform-origin: 0% 50%;
}
.button--mimas {
text-transform: uppercase;
letter-spacing: 0.05rem;
font-weight: 700;
font-size: 0.85rem;
border-radius: 0.5rem;
overflow: hidden;
color: #fff;
background: #e7e7e7;
}
.button--mimas span {
position: relative;
mix-blend-mode: difference;
}
.button--mimas::before {
content: '';
background: #000;
width: 120%;
left: -10%;
transform: skew(30deg);
transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.button--mimas:hover::before {
transform: translate3d(100%,0,0);
}
.button--atlas {
font-family: signo, sans-serif;
font-weight: 500;
}
.button--atlas > span {
display: inline-block;
}
.button--atlas:hover > span {
opacity: 0;
}
.marquee {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
pointer-events: none;
}
.marquee__inner {
width: fit-content;
display: flex;
position: relative;
--offset: 1rem;
--move-initial: calc(-25% + var(--offset));
--move-final: calc(-50% + var(--offset));
transform: translate3d(var(--move-initial), 0, 0);
animation: marquee 1s linear infinite;
animation-play-state: paused;
opacity: 0;
}
.button--atlas:hover .marquee__inner {
animation-play-state: running;
opacity: 1;
transition-duration: 0.4s;
}
.marquee span {
text-align: center;
white-space: nowrap;
font-style: italic;
padding: 1.5rem 0.5rem;
}
@keyframes marquee {
0% {
transform: translate3d(var(--move-initial), 0, 0);
}
100% {
transform: translate3d(var(--move-final), 0, 0);
}
}
.button--kari {
font-family: freight-display-pro, serif;
font-weight: 900;
font-size: 1.25rem;
border-radius: 50%;
border: 2px solid #000;
}
.button--kari > span {
display: inline-block;
transition: opacity 0.1s;
}
.button--kari:hover > span {
opacity: 0;
}
.button--kari .marquee {
transform: rotate(-2.75deg);
}
.button--kari:hover .marquee__inner {
animation-play-state: running;
opacity: 1;
transition-duration: 0.6s;
}
.button--pandora {
background: #000;
font-weight: 700;
padding: 0;
border-radius: 5px;
}
.button--pandora span {
display: block;
background: #a7a7a7;
padding: 1.5rem 2rem;
border: 1px solid #000;
border-radius: 5px;
transform: translate3d(-4px, -4px, 0);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--pandora:hover span {
transform: translate3d(-8px, -8px, 0);
}
.button--janus {
font-family: freight-display-pro, serif;
font-weight: 900;
width: 175px;
height: 120px;
color: #fff;
background: none;
}
.button--janus::before {
content: '';
background: #e6e6e6;
-webkit-clip-path: path("M154.5,88.5 C131,113.5 62.5,110 30,89.5 C-2.5,69 -3.5,42 4.5,25.5 C12.5,9 33.5,-6 85,3.5 C136.5,13 178,63.5 154.5,88.5 Z");
clip-path: path("M154.5,88.5 C131,113.5 62.5,110 30,89.5 C-2.5,69 -3.5,42 4.5,25.5 C12.5,9 33.5,-6 85,3.5 C136.5,13 178,63.5 154.5,88.5 Z");
transition: clip-path 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55), -webkit-clip-path 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55), background 0.5s ease;
}
.button--janus:hover::before {
background: #000;
-webkit-clip-path: path("M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z");
clip-path: path("M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z");
}
.button--janus::after {
content: '';
height: 86%;
width: 97%;
top: 5%;
border-radius: 58% 42% 55% 45% / 56% 45% 55% 44%;
border: 1px solid #000;
transform: rotate(-20deg);
z-index: -1;
transition: transform 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55);
}
.button--janus:hover::after {
transform: translate3d(0,-5px,0);
}
.button--janus span {
display: block;
transition: transform 0.3s ease;
mix-blend-mode: difference;
}
.button--janus:hover span {
transform: translate3d(0,-10px,0);
}
.button--anthe {
font-family: bely-display, sans-serif;
color: #fff;
background: none;
}
.button--anthe::before {
content: '';
background: #000;
-webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
transition: clip-path 0.4s cubic-bezier(0.2, 1, 0.8, 1), -webkit-clip-path 0.4s cubic-bezier(0.2, 1, 0.8, 1);
}
.button--anthe:hover::before {
background: #000;
-webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
.button--anthe span {
display: block;
mix-blend-mode: difference;
transition: transform 0.4s cubic-bezier(0.2, 1, 0.8, 1);
}
.button--anthe:hover span {
transform: translate3d(-10px,0,0);
}
.button--pallene {
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 700;
border-radius: 0.5rem;
border: 2px solid #000;
box-shadow: inset 0 0 0 0px #000;
transition: border-radius 0.3s, box-shadow 0.3s, color 0.3s;
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.button--pallene:hover {
color: #e7e7e7;
border-radius: 50%;
box-shadow: inset 0 0 0 40px #000;
transition-delay: 0s, 0s, 0.2s;
}
.button--telesto {
overflow: hidden;
font-family: obvia, sans-serif;
font-weight: 800;
font-style: italic;
font-size: 1.15rem;
color: #fff;
}
.button--telesto span {
display: block;
position: relative;
z-index: 1;
}
.button--telesto > span {
overflow: hidden;
mix-blend-mode: difference;
}
.button--telesto:hover > span > span {
animation: MoveRightInitial 0.1s forwards, MoveRightEnd 0.3s forwards 0.2s;
}
@keyframes MoveRightInitial {
to {
transform: translate3d(105%,0,0);
}
}
@keyframes MoveRightEnd {
from {
transform: translate3d(-100%,0,0);
}
to {
transform: translate3d(0,0,0);
}
}
.button--telesto::before,
.button--telesto::after {
content: '';
background: #000;
}
.button--telesto::before {
width: 135%;
-webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
transform: translate3d(-100%,0,0);
}
.button--telesto:hover::before {
transform: translate3d(0,0,0);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--telesto::after {
width: 105%;
transform: translate3d(100%,0,0);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--telesto:hover::after {
transform: translate3d(0,0,0);
transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--calypso {
overflow: hidden;
font-family: freight-display-pro, serif;
font-size: 1.15rem;
border-radius: 0.85rem;
color: #fff;
}
.button--calypso span {
display: block;
position: relative;
mix-blend-mode: difference;
z-index: 10;
}
.button--calypso:hover span {
animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}
@keyframes MoveScaleUpInitial {
to {
transform: translate3d(0,-105%,0) scale3d(1,2,1);
opacity: 0;
}
}
@keyframes MoveScaleUpEnd {
from {
transform: translate3d(0,100%,0) scale3d(1,2,1);
opacity: 0;
}
to {
transform: translate3d(0,0,0);
opacity: 1;
}
}
.button--calypso::before {
content: '';
background: #000;
width: 120%;
height: 0;
padding-bottom: 120%;
top: -110%;
left: -10%;
border-radius: 50%;
transform: translate3d(0,68%,0) scale3d(0,0,0);
}
.button--calypso:hover::before {
transform: translate3d(0,0,0) scale3d(1,1,1);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--calypso::after {
content: '';
background: #000;
transform: translate3d(0,-100%,0);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--calypso:hover::after {
transform: translate3d(0,0,0);
transition-duration: 0.05s;
transition-delay: 0.4s;
transition-timing-function: linear;
}
.button--skoll {
overflow: hidden;
border-radius: 50%;
color: #fff;
width: 100px;
height: 100px;
padding: 0;
font-weight: 500;
}
.button--skoll span {
display: block;
position: relative;
}
.button--skoll > span {
overflow: hidden;
mix-blend-mode: difference;
}
.button--skoll:hover > span > span {
animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
.button--skoll::before {
content: '';
background: #000;
width: 100%;
height: 0;
padding-bottom: 100%;
border-radius: 50%;
transform: translate3d(0,0,0);
transition: transform 0.3s;
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.button--skoll:hover::before {
transform: translate3d(0,100%,0);
}
.button--greip {
overflow: hidden;
color: #fff;
font-family: input-mono-narrow, monospace;
font-weight: 500;
padding: 1rem 2rem;
}
.button--greip span {
display: block;
position: relative;
}
.button--greip > span {
overflow: hidden;
mix-blend-mode: difference;
}
.button--greip:hover > span > span {
animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
.button--greip::before {
content: '';
background: #000;
width: 100%;
height: 100%;
transform-origin: 50% 100%;
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
transition: clip-path 0.2s, -webkit-clip-path 0.2s;
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.button--greip:hover::before {
transition-duration: 0.3s;
-webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}
.button--dione {
background: none;
font-family: obvia, sans-serif;
font-weight: 500;
font-style: italic;
padding: 1.5rem 3rem;
}
.button--dione span {
display: inline-block;
position: relative;
color: #fff;
}
.button--dione::before {
content: '';
background: #000;
transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
}
.button--dione:hover::before {
transform: scale3d(0.9, 0.8, 1);
}
.button--dione::after {
content: '';
border: 1px solid #000;
transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
border-radius: 0px;
transform: scale3d(0.85, 0.65, 1);
}
.button--dione:hover::after {
transform: scale3d(1,1,1);
}
.button--helene {
border-radius: 7px;
border: 1px solid #000;
font-family: chapman-extended, sans-serif;
font-weight: 900;
font-style: normal;
text-transform: uppercase;
font-size: 0.85rem;
padding: 0 3rem;
height: 4rem;
}
.button--helene::before {
content: '';
top: 10px;
left: 10px;
width: calc(100% - 20px);
height: calc(100% - 20px);
background: rgba(0,0,0,0.5);
filter: blur(7px);
border-radius: 7px;
z-index: -1;
transform: translate3d(0,15px,0);
transition: transform 0.45s;
}
.button--helene:hover::before {
transform: translate3d(0,0,0);
}
.button--helene span {
display: block;
}
.button--helene > span {
height: 100%;
overflow: hidden;
line-height: 4rem;
}
.button--helene:hover > span > span {
animation: slotMachine 0.15s ease-out forwards 3;
}
@keyframes slotMachine {
50% {
transform: translate3d(0,100%,0);
opacity: 0;
}
51% {
transform: translate3d(0,-100%,0);
opacity: 0;
}
100% {
transform: translate3d(0,0,0);
opacity: 1;
}
}
.button--rhea {
font-family: freight-display-pro, serif;
font-weight: 900;
font-style: normal;
width: 180px;
height: 180px;
color: #000;
background: none;
}
.button--rhea::before {
content: '';
z-index: -1;
background: #e7e7e7;
-webkit-clip-path: polygon(20% 30%, 0 30%, 0 50%, 0 70%, 20% 70%, 50% 70%, 80% 70%, 100% 70%, 100% 50%, 100% 30%, 80% 30%, 50% 30%);
clip-path: polygon(20% 30%, 0 30%, 0 50%, 0 70%, 20% 70%, 50% 70%, 80% 70%, 100% 70%, 100% 50%, 100% 30%, 80% 30%, 50% 30%);
transition: clip-path 0.4s cubic-bezier(0.3, 1, 0.2, 1), -webkit-clip-path 0.4s cubic-bezier(0.3, 1, 0.2, 1), transform 0.4s cubic-bezier(0.3, 1, 0.2, 1), background 0.4s ease;
}
.button--rhea:hover::before {
background: #000;
transform: scale3d(0.7,0.7,1);
-webkit-clip-path: polygon(30% 10%, 10% 30%, 30% 50%, 10% 70%, 30% 90%, 50% 70%, 70% 90%, 90% 70%, 70% 50%, 90% 30%, 70% 10%, 50% 30%);
clip-path: polygon(30% 10%, 10% 30%, 30% 50%, 10% 70%, 30% 90%, 50% 70%, 70% 90%, 90% 70%, 70% 50%, 90% 30%, 70% 10%, 50% 30%);
}
.button--rhea span {
display: block;
transition: transform 0.4s cubic-bezier(0.3, 1, 0.2, 1), opacity 0.05s;
}
.button--rhea:hover span {
transform: scale3d(0.1,0.1,1);
opacity: 0;
transition-delay: 0s, 0.35s;
}
.button--narvi {
font-weight: bold;
background: none;
}
.button--narvi::before {
content: '';
z-index: -1;
background: #e7e7e7;
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 80% 70%, 75% 70%, 0 70%);
clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 80% 70%, 75% 70%, 0 70%);
transition: clip-path 0.3s cubic-bezier(0.7, 0, 0.2, 1), -webkit-clip-path 0.3s cubic-bezier(0.7, 0, 0.2, 1), transform 0.3s ease;
}
.button--narvi:hover::before {
transform: translate3d(0,-10px,0);
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 86% 100%, 75% 70%, 0 70%);
clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 86% 100%, 75% 70%, 0 70%);
}
.button--narvi span {
display: block;
position: relative;
}
.button--narvi > span {
transition: transform 0.3s;
transform: translate3d(0,-0.556rem,0);
z-index: 1;
overflow: hidden;
}
.button--narvi:hover > span {
transform: translate3d(0,-1.111rem,0);
}
.button--narvi:hover > span > span {
animation: MoveUpInitial 0.15s forwards, MoveUpEnd 0.15s forwards 0.15s;
}
.button--hati {
border-radius: 50%;
overflow: hidden;
border: 2px solid;
background: none;
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 900;
font-style: italic;
}
.button--hati:hover {
background: none;
}
.button--hati::before {
animation: rotateIt 10s linear infinite;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAUElEQVQoU3VPSQ4AMQiS/z/aBiMNNDNeXEBQoDL66dkG52/hzlmsSqMKrAVCoOXuxR3TFVSIIJmzsFvGOMlust3iivmQd/6+3/NlN4paIOEADPIUD/MQvy0AAAAASUVORK5CYII=);
content: '';
width: 300%;
height: 300%;
top: -100%;
left: -100%;
z-index: -1;
opacity: 0;
transform-origin: 50% 50%;
transition: opacity 0.3s;
}
@keyframes rotateIt {
to {
transform: rotate(-360deg);
}
}
.button--hati:hover::before {
opacity: 0.7;
}
.button--hati span {
display: block;
position: relative;
z-index: 1;
}
.button--bestia {
font-family: freight-display-pro, serif;
font-size: 1.15rem;
color: #fff;
background: none;
padding: 0;
}
.button--bestia .button__bg {
top: 0;
left: 0;
position: absolute;
width: 100%;
height: 100%;
background: #e7e7e7;
border-radius: 0.85rem;
overflow: hidden;
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--bestia:hover .button__bg {
transform: scale3d(1.2,1.2,1);
}
.button--bestia .button__bg::before,
.button--bestia .button__bg::after {
content: '';
position: absolute;
background: #000;
}
.button--bestia .button__bg::before {
width: 110%;
height: 0;
padding-bottom: 110%;
top: 50%;
left: 50%;
border-radius: 50%;
transform: translate3d(-50%,-50%,0) scale3d(0,0,1);
}
.button--bestia:hover .button__bg::before {
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}
.button--bestia .button__bg::after {
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.3s;
}
.button--bestia:hover .button__bg::after {
opacity: 1;
transition-duration: 0.01s;
transition-delay: 0.3s;
}
.button--bestia span {
display: block;
position: relative;
padding: 1.5rem 3rem;
mix-blend-mode: difference;
}
/* Made with the help of <NAME>' article "Perfecting Paths for <textPath>":
https://oreillymedia.github.io/Using_SVG/extras/ch07-textpaths.html */
.button--surtur {
padding: 0;
background: none;
-webkit-clip-path: circle(40% at 50% 50%);
clip-path: circle(40% at 50% 50%);
}
.button--surtur:focus-visible {
background: #443ffc;
}
.textcircle {
position: relative;
display: block;
width: 200px;
}
.textcircle text {
font-size: 32px;
text-transform: uppercase;
fill: #000;
}
.textcircle textPath {
letter-spacing: 17px; /* Firefox needs this */
}
.button--surtur:hover .textcircle {
animation: rotateIt 7s linear infinite;
}
.eye {
position: absolute;
z-index: 2;
width: 60px;
height: 60px;
top: calc(50% - 30px);
left: calc(50% - 30px);
}
.eye__outer,
.eye__inner,
.eye__lashes-up,
.eye__lashes-down {
stroke: #000;
fill: none;
stroke-width: 1.5px;
}
.eye__lashes-down {
opacity: 0;
}
.button--surtur:hover .eye__lashes-up,
.button--surtur:hover .eye__inner,
.button--surtur:hover .eye__iris {
animation: blinkHide 2s step-end infinite;
}
.button--surtur:hover .eye__lashes-down {
animation: blinkShow 2s step-end infinite;
}
@keyframes blinkHide {
0% {
opacity: 0;
}
10% {
opacity: 1;
}
}
@keyframes blinkShow {
0% {
opacity: 1;
}
10% {
opacity: 0;
}
}
.button--fenrir {
background: none;
padding: 0;
-webkit-clip-path: circle(50% at 50% 50%);
clip-path: circle(50% at 50% 50%);
width: 120px;
height: 120px;
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 700;
text-transform: uppercase;
font-size: 0.85rem;
}
.progress {
position: absolute;
width: 80px;
height: 80px;
top: calc(50% - 40px);
left: calc(50% - 40px);
transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.button--fenrir:hover .progress {
transform: scale3d(1.2, 1.2, 1);
}
.progress__circle,
.progress__path {
fill: none;
stroke: #f0f0f0;
stroke-width: 1px;
}
.button--fenrir:focus-visible .progress__circle {
fill: rgba(252,196,63,0.4);
}
.progress__path {
stroke: #a6a6a6;
stroke-dasharray: 1;
stroke-dashoffset: 1;
transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.button--fenrir:hover .progress__path {
stroke-dashoffset: 0;
}
@media screen and (min-width: 53em) {
.frame {
text-align: left;
z-index: 100;
display: grid;
align-content: space-between;
width: 100%;
max-width: none;
padding: 3rem 3.5rem;
pointer-events: none;
grid-template-columns: 50% 50%;
grid-template-rows: auto auto auto;
grid-template-areas: 'title links'
'... ...'
'author ...';
}
.frame__title-wrap {
grid-area: title;
}
.frame__title {
margin: 0;
}
.frame__tagline {
position: relative;
margin-left: 0;
}
.frame__links {
grid-area: links;
padding: 0;
justify-self: end;
align-self: start;
justify-content: start;
}
.frame__author {
grid-area: author;
}
.frame a {
pointer-events: auto;
}
}
/* Page Loader */
.js .loading::before,
.js .loading::after {
content: '';
position: fixed;
z-index: 1000;
}
.js .loading::before {
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--color-bg);
}
.js .loading::after {
top: 50%;
left: 50%;
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
border-radius: 50%;
opacity: 0.4;
background: var(--color-link);
animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
to {
opacity: 1;
transform: scale3d(0.5, 0.5, 1);
}
}
a {
text-decoration: none;
color: var(--color-link);
outline: none;
}
a:hover {
color: var(--color-link-hover);
outline: none;
}
/* https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
/* Provide a fallback style for browsers
that don't support :focus-visible */
outline: none;
background: lightgrey;
}
a:focus:not(:focus-visible) {
/* Remove the focus indicator on mouse-focus for browsers
that do support :focus-visible */
background: transparent;
}
a:focus-visible {
/* Draw a very noticeable focus style for
keyboard-focus on browsers that do support
:focus-visible */
outline: 2px solid red;
background: transparent;
}
.frame {
padding: 3rem 5vw;
text-align: center;
position: relative;
z-index: 1000;
}
.frame__title {
font-size: 1.525rem;
margin: 0 0 1rem;
font-weight: normal;
cursor: default;
}
.frame__tagline {
color: #999;
max-width: 300px;
margin: 1rem auto;
}
.frame__links {
display: flex;
align-items: center;
justify-content: center;
}
.frame__links a:not(:last-child) {
margin-right: 2rem;
}
.github {
width: 24px;
height: 24px;
}
.content {
display: grid;
width: 100%;
margin: 0 auto;
padding: 10vh 25px;
max-width: 1050px;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-auto-rows: 200px;
grid-gap: 4rem;
grid-row-gap: 6rem;
justify-content: center;
list-style: none;
}
.content__item {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
counter-increment: itemcounter;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.content__item::before {
color: var(--color-number);
position: absolute;
top: 0;
left: 0;
content: counters(itemcounter, ".", decimal-leading-zero);
}
.link {
cursor: pointer;
font-size: 18px;
position: relative;
white-space: nowrap;
color: var(--color-text);
}
.link::before,
.link::after {
position: absolute;
width: 100%;
height: 1px;
background: currentColor;
top: 100%;
left: 0;
pointer-events: none;
}
.link::before {
content: '';
/* show by default */
}
.link--metis {
font-family: bely-display, sans-serif;
text-transform: lowercase;
}
.link--metis::before {
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s;
}
.link--metis:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
}
.link--io {
font-family: europa, sans-serif;
}
.link--io::before {
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.link--io:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}
.link--io::after {
content: '';
top: calc(100% + 4px);
transform-origin: 0% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.link--io:hover::after {
transform-origin: 100% 50%;
transform: scale3d(1, 1, 1);
transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}
.link--thebe {
font-family: angie-sans, sans-serif;
text-transform: uppercase;
}
.link--thebe::before {
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}
.link--thebe:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 2, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.link--thebe::after {
content: '';
top: calc(100% + 4px);
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.4s 0.1s cubic-bezier(0.2, 1, 0.8, 1);
}
.link--thebe:hover::after {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.link--leda {
overflow: hidden;
line-height: 2;
font-family: orpheuspro, serif;
font-weight: 700;
}
.link--leda::before {
height: 2px;
top: calc(100% - 5px);
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.link--leda:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
}
.link--leda::after {
content: attr(data-text);
height: 100%;
top: 0;
background: none;
transform-origin: 100% 50%;
transform: translate3d(150%, 0, 0);
transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.link--leda:hover::after {
transform: translate3d(0, 0, 0);
}
.link--leda span {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.link--leda:hover span {
transform: translate3d(-150%, 0, 0);
}
.link--ersa {
padding: 0 10px;
font-family: halyard-display, sans-serif;
letter-spacing: 1px;
text-indent: 1px;
text-transform: uppercase;
}
.link--ersa::before {
top: 50%;
height: 2px;
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.4, 1, 0.8, 1);
}
.link--ersa:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
}
.link--ersa span {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.4, 1, 0.8, 1);
}
.link--ersa:hover span {
transform: scale3d(1.1, 1.1, 1.1);
}
.link--elara {
font-family: aktiv-grotesk-extended, sans-serif;
font-size: 1.375rem;
}
.link--elara::before {
transform-origin: 50% 100%;
transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
}
.link--elara:hover::before {
transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}
.link--elara span {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}
.link--elara:hover span {
transform: translate3d(0, -2px, 0);
}
.link--dia {
font-family: freightdispcmp-pro, serif;
font-size: 1.75rem;
}
.link--dia::before,
.link--dia::after {
opacity: 0;
transform-origin: 50% 0%;
transform: translate3d(0, 3px, 0);
transition-property: transform, opacity;
transition-duration: 0.3s;
transition-timing-function: cubic-bezier(0.2, 1, 0.8, 1);
}
.link--dia:hover::before,
.link--dia:hover::after {
opacity: 1;
transform: translate3d(0, 0, 0);
transition-timing-function: cubic-bezier(0.2, 0, 0.3, 1);
}
.link--dia::after {
content: '';
top: calc(100% + 4px);
width: 70%;
left: 15%;
}
.link--dia::before,
.link--dia:hover::after {
transition-delay: 0.1s;
}
.link--dia:hover::before {
transition-delay: 0s;
}
.link--kale {
font-family: halyard-display, sans-serif;
font-weight: 600;
text-transform: lowercase;
}
.link--kale::before {
height: 10px;
top: 100%;
opacity: 0;
}
.link--kale:hover::before {
opacity: 1;
animation: lineUp 0.3s ease forwards;
}
@keyframes lineUp {
0% {
transform-origin: 50% 100%;
transform: scale3d(1, 0.045, 1);
}
50% {
transform-origin: 50% 100%;
transform: scale3d(1, 1, 1);
}
51% {
transform-origin: 50% 0%;
transform: scale3d(1, 1, 1);
}
100% {
transform-origin: 50% 0%;
transform: scale3d(1, 0.045, 1);
}
}
.link--kale::after {
content: '';
transition: opacity 0.3s;
opacity: 0;
transition-delay: 0s;
}
.link--kale:hover::after {
opacity: 1;
transition-delay: 0.3s;
}
.link--carpo {
font-family: adrianna-extended, sans-serif;
text-transform: uppercase;
font-weight: 700;
}
.link--carpo::before {
transform-origin: 0% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s;
}
.link--carpo:hover::before {
transform: scale3d(1, 1, 1);
}
.link--carpo::after {
content: '';
top: calc(100% + 4px);
transition: transform 0.3s;
transform-origin: 100% 50%;
}
.link--carpo:hover::after {
transform: scale3d(0, 1, 1);
}
.link--helike {
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: bold;
}
.link--helike:hover span {
animation: glitchText 0.4s linear;
}
@keyframes glitchText {
0% {
opacity: 1;
transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
-webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
}
10% {
-webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
}
20% {
-webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
}
35% {
-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
}
50% {
-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
}
60% {
-webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
}
70% {
-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
}
80% {
-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
}
90% {
transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
}
.link--helike::before {
height: 2px;
opacity: 0;
}
.link--helike:hover::before {
opacity: 1;
animation: glitchLine 0.4s steps(2, start) forwards;
}
@keyframes glitchLine {
0% {
transform: scale3d(1, 1, 1);
}
10% {
transform: translate3d(10px, 0, 0);
}
20% {
transform: translate3d(0, 4px, 0);
}
30% {
transform: scale3d(0.1, 1.4, 1) translate3d(0, -25px, 0);
transform-origin: 100% 0%;
}
40% {
transform: scale3d(1, 0.3, 1) translate3d(0, 25px, 0);
}
50% {
transform: scale3d(0.5, 0.3, 1) translate3d(-100px, -80px, 0);
}
60% {
transform: scale3d(1, 1.25, 1) translate3d(10px, -5px, 0);
}
70% {
transform: scale3d(0.5, 0.5, 1) translate3d(0, 20px, 0);
}
80% {
transform: translate3d(-30, 10px, 0) scale3d(1, 0.4, 1);
transform-origin: 100% 0%;
}
90% {
transform: scale3d(1, 0.5, 1) translate3d(0, -15px, 0);
;
transform-origin: 0% 50%;
}
100% {
opacity: 1;
}
}
.link--mneme {
font-family: aktiv-grotesk-extended, sans-serif;
font-size: 0.875rem;
text-transform: uppercase;
}
.link--mneme::before {
height: 100%;
top: 0;
opacity: 0;
}
.link--mneme:hover::before {
opacity: 1;
animation: coverUp 0.3s ease forwards;
}
@keyframes coverUp {
0% {
transform-origin: 50% 100%;
transform: scale3d(1, 0.045, 1);
}
50% {
transform-origin: 50% 100%;
transform: scale3d(1, 1, 1);
}
51% {
transform-origin: 50% 0%;
transform: scale3d(1, 1, 1);
}
100% {
transform-origin: 50% 0%;
transform: scale3d(1, 0.045, 1);
}
}
.link--mneme::after {
content: '';
transition: opacity 0.3s;
}
.link--mneme:hover::after {
opacity: 0;
}
.link--iocaste {
font-family: lust-fine, sans-serif;
overflow: hidden;
padding: 7px 0;
}
.link__graphic {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
fill: none;
stroke: #000;
stroke-width: 1px;
}
.link__graphic--slide {
top: -3px;
stroke-width: 2px;
transition: transform 0.7s;
transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}
.link:hover .link__graphic--slide {
transform: translate3d(-66.6%, 0, 0);
}
.link--herse {
font-family: freight-display-pro, serif;
font-size: 1.375rem;
font-weight: bold;
}
.link--herse::before {
display: none;
}
.link__graphic--stroke path {
stroke-dasharray: 1;
stroke-dashoffset: 1;
}
.link:hover .link__graphic--stroke path {
stroke-dashoffset: 0;
}
/* Trick from https://css-tricks.com/a-trick-that-makes-drawing-svg-lines-way-easier/ */
.link__graphic--arc {
top: 73%;
left: -23%;
}
.link__graphic--arc path {
transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.link:hover .link__graphic--arc path {
transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
transition-duration: 0.3s;
}
.link--carme {
font-family: angie-sans, sans-serif;
font-size: 1.25rem;
}
.link--carme::before {
display: none;
}
.link__graphic--scribble {
top: 100%;
}
.link__graphic--scribble path {
transition: stroke-dashoffset 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.link:hover .link__graphic--scribble path {
transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
transition-duration: 0.3s;
}
.link--eirene {
font-family: europa, sans-serif;
font-weight: bold;
}
.link--eirene::before {
height: 7px;
border-radius: 20px;
transform: scale3d(1, 1, 1);
transition: transform 0.2s, opacity 0.2s;
transition-timing-function: cubic-bezier(0.2, 0.57, 0.67, 1.53);
}
.link--eirene:hover::before {
transition-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
transition-duration: 0.4s;
opacity: 1;
transform: scale3d(1.2, 0.1, 1);
}
.link--eirene span {
transform: translate3d(0, -4px, 0);
display: inline-block;
transition: transform 0.2s 0.05s cubic-bezier(0.2, 0.57, 0.67, 1.53);
}
.link--eirene:hover span {
transform: translate3d(0, 0, 0);
transition-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
transition-duration: 0.4s;
transition-delay: 0s;
}
@media screen and (min-width: 53em) {
.frame {
text-align: left;
z-index: 100;
display: grid;
align-content: space-between;
width: 100%;
max-width: none;
padding: 3rem 3.5rem;
pointer-events: none;
grid-template-columns: 50% 50%;
grid-template-rows: auto auto auto;
grid-template-areas: 'title links'
'... ...'
'author ...';
}
.frame__title-wrap {
grid-area: title;
}
.frame__title {
margin: 0;
}
.frame__tagline {
position: relative;
margin-left: 0;
}
.frame__links {
grid-area: links;
padding: 0;
justify-self: end;
align-self: start;
justify-content: start;
}
.frame__author {
grid-area: author;
}
.frame a {
pointer-events: auto;
}
} | src/styles/tw/linkstyles.css | .js .loading::before,
.js .loading::after {
content: '';
position: fixed;
z-index: 1000;
}
.js .loading::before {
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--color-bg);
}
.js .loading::after {
top: 50%;
left: 50%;
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
border-radius: 50%;
opacity: 0.4;
background: var(--color-link);
animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
to {
opacity: 1;
transform: scale3d(0.5, 0.5, 1);
}
}
a {
text-decoration: none;
outline: none;
}
a:hover {
color: var(--color-link-hover);
outline: none;
}
/* https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus,
button:focus {
/* Provide a fallback style for browsers
that don't support :focus-visible */
outline: none;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
/* Remove the focus indicator on mouse-focus for browsers
that do support :focus-visible */
}
a:focus-visible,
button:focus-visible {
/* Draw a very noticeable focus style for
keyboard-focus on browsers that do support
:focus-visible */
outline: 2px solid #443ffc;
outline-offset: 3px;
}
a:focus-visible {
background: none;
}
.frame {
padding: 3rem 5vw 6rem;
text-align: center;
position: relative;
z-index: 1000;
}
.frame__title {
font-size: 1.525rem;
margin: 0 0 1rem;
font-weight: normal;
cursor: default;
}
.frame__tagline {
color: #999;
max-width: 320px;
margin: 1rem auto;
}
.frame__related h3 {
margin: 0;
padding-top: 1rem;
font-size: 1rem;
}
.frame__related p {
margin: 0.5rem 0;
}
.frame__links {
display: flex;
align-items: center;
justify-content: center;
}
.frame__links a:not(:last-child) {
margin-right: 2rem;
}
.github {
width: 24px;
height: 24px;
}
.related {
text-align: center;
padding: 4rem 1rem;
min-height: 40vh;
}
.content {
display: grid;
width: 100%;
margin: 0 auto;
padding: 10vh 25px;
max-width: 1300px;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-auto-rows: 200px;
grid-gap: 4rem;
grid-row-gap: 6rem;
justify-content: center;
list-style: none;
}
.content__item {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
counter-increment: itemcounter;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
pointer-events: none;
}
.content__item::before {
color: var(--color-number);
position: absolute;
top: 0;
left: 0;
content: counters(itemcounter, ".", decimal-leading-zero);
}
.button {
pointer-events: auto;
cursor: pointer;
background: #e7e7e7;
border: none;
padding: 1.5rem 3rem;
margin: 0;
font-family: inherit;
font-size: inherit;
position: relative;
display: inline-block;
}
.button::before,
.button::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.button--pan {
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 700;
border: 2px solid #000;
border-radius: 3rem;
overflow: hidden;
color: #fff;
}
.button--pan span {
position: relative;
mix-blend-mode: difference;
}
.button--pan::before {
content: '';
background: #000;
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--pan:hover::before {
transform: translate3d(0,-100%,0);
}
.button--hyperion {
font-family: input-mono-narrow, monospace;
font-weight: 500;
padding: 1rem 1.5rem;
border: 1px solid #000;
overflow: hidden;
color: #fff;
}
.button--hyperion span {
display: block;
position: relative;
}
.button--hyperion > span {
overflow: hidden;
}
.button--hyperion > span > span {
overflow: hidden;
mix-blend-mode: difference;
}
.button--hyperion:hover > span > span {
animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
@keyframes MoveUpInitial {
to {
transform: translate3d(0,-105%,0);
}
}
@keyframes MoveUpEnd {
from {
transform: translate3d(0,100%,0);
}
to {
transform: translate3d(0,0,0);
}
}
.button--hyperion::before {
content: '';
background: #000;
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
transform-origin: 100% 50%;
}
.button--hyperion:hover::before {
transform: scale3d(0,1,1);
transform-origin: 0% 50%;
}
.button--mimas {
text-transform: uppercase;
letter-spacing: 0.05rem;
font-weight: 700;
font-size: 0.85rem;
border-radius: 0.5rem;
overflow: hidden;
color: #fff;
background: #e7e7e7;
}
.button--mimas span {
position: relative;
mix-blend-mode: difference;
}
.button--mimas::before {
content: '';
background: #000;
width: 120%;
left: -10%;
transform: skew(30deg);
transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.button--mimas:hover::before {
transform: translate3d(100%,0,0);
}
.button--atlas {
font-family: signo, sans-serif;
font-weight: 500;
}
.button--atlas > span {
display: inline-block;
}
.button--atlas:hover > span {
opacity: 0;
}
.marquee {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
pointer-events: none;
}
.marquee__inner {
width: fit-content;
display: flex;
position: relative;
--offset: 1rem;
--move-initial: calc(-25% + var(--offset));
--move-final: calc(-50% + var(--offset));
transform: translate3d(var(--move-initial), 0, 0);
animation: marquee 1s linear infinite;
animation-play-state: paused;
opacity: 0;
}
.button--atlas:hover .marquee__inner {
animation-play-state: running;
opacity: 1;
transition-duration: 0.4s;
}
.marquee span {
text-align: center;
white-space: nowrap;
font-style: italic;
padding: 1.5rem 0.5rem;
}
@keyframes marquee {
0% {
transform: translate3d(var(--move-initial), 0, 0);
}
100% {
transform: translate3d(var(--move-final), 0, 0);
}
}
.button--kari {
font-family: freight-display-pro, serif;
font-weight: 900;
font-size: 1.25rem;
border-radius: 50%;
border: 2px solid #000;
}
.button--kari > span {
display: inline-block;
transition: opacity 0.1s;
}
.button--kari:hover > span {
opacity: 0;
}
.button--kari .marquee {
transform: rotate(-2.75deg);
}
.button--kari:hover .marquee__inner {
animation-play-state: running;
opacity: 1;
transition-duration: 0.6s;
}
.button--pandora {
background: #000;
font-weight: 700;
padding: 0;
border-radius: 5px;
}
.button--pandora span {
display: block;
background: #a7a7a7;
padding: 1.5rem 2rem;
border: 1px solid #000;
border-radius: 5px;
transform: translate3d(-4px, -4px, 0);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--pandora:hover span {
transform: translate3d(-8px, -8px, 0);
}
.button--janus {
font-family: freight-display-pro, serif;
font-weight: 900;
width: 175px;
height: 120px;
color: #fff;
background: none;
}
.button--janus::before {
content: '';
background: #e6e6e6;
-webkit-clip-path: path("M154.5,88.5 C131,113.5 62.5,110 30,89.5 C-2.5,69 -3.5,42 4.5,25.5 C12.5,9 33.5,-6 85,3.5 C136.5,13 178,63.5 154.5,88.5 Z");
clip-path: path("M154.5,88.5 C131,113.5 62.5,110 30,89.5 C-2.5,69 -3.5,42 4.5,25.5 C12.5,9 33.5,-6 85,3.5 C136.5,13 178,63.5 154.5,88.5 Z");
transition: clip-path 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55), -webkit-clip-path 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55), background 0.5s ease;
}
.button--janus:hover::before {
background: #000;
-webkit-clip-path: path("M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z");
clip-path: path("M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z");
}
.button--janus::after {
content: '';
height: 86%;
width: 97%;
top: 5%;
border-radius: 58% 42% 55% 45% / 56% 45% 55% 44%;
border: 1px solid #000;
transform: rotate(-20deg);
z-index: -1;
transition: transform 0.5s cubic-bezier(0.585, 2.5, 0.645, 0.55);
}
.button--janus:hover::after {
transform: translate3d(0,-5px,0);
}
.button--janus span {
display: block;
transition: transform 0.3s ease;
mix-blend-mode: difference;
}
.button--janus:hover span {
transform: translate3d(0,-10px,0);
}
.button--anthe {
font-family: bely-display, sans-serif;
color: #fff;
background: none;
}
.button--anthe::before {
content: '';
background: #000;
-webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
transition: clip-path 0.4s cubic-bezier(0.2, 1, 0.8, 1), -webkit-clip-path 0.4s cubic-bezier(0.2, 1, 0.8, 1);
}
.button--anthe:hover::before {
background: #000;
-webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
.button--anthe span {
display: block;
mix-blend-mode: difference;
transition: transform 0.4s cubic-bezier(0.2, 1, 0.8, 1);
}
.button--anthe:hover span {
transform: translate3d(-10px,0,0);
}
.button--pallene {
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 700;
border-radius: 0.5rem;
border: 2px solid #000;
box-shadow: inset 0 0 0 0px #000;
transition: border-radius 0.3s, box-shadow 0.3s, color 0.3s;
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.button--pallene:hover {
color: #e7e7e7;
border-radius: 50%;
box-shadow: inset 0 0 0 40px #000;
transition-delay: 0s, 0s, 0.2s;
}
.button--telesto {
overflow: hidden;
font-family: obvia, sans-serif;
font-weight: 800;
font-style: italic;
font-size: 1.15rem;
color: #fff;
}
.button--telesto span {
display: block;
position: relative;
z-index: 1;
}
.button--telesto > span {
overflow: hidden;
mix-blend-mode: difference;
}
.button--telesto:hover > span > span {
animation: MoveRightInitial 0.1s forwards, MoveRightEnd 0.3s forwards 0.2s;
}
@keyframes MoveRightInitial {
to {
transform: translate3d(105%,0,0);
}
}
@keyframes MoveRightEnd {
from {
transform: translate3d(-100%,0,0);
}
to {
transform: translate3d(0,0,0);
}
}
.button--telesto::before,
.button--telesto::after {
content: '';
background: #000;
}
.button--telesto::before {
width: 135%;
-webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
transform: translate3d(-100%,0,0);
}
.button--telesto:hover::before {
transform: translate3d(0,0,0);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--telesto::after {
width: 105%;
transform: translate3d(100%,0,0);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--telesto:hover::after {
transform: translate3d(0,0,0);
transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--calypso {
overflow: hidden;
font-family: freight-display-pro, serif;
font-size: 1.15rem;
border-radius: 0.85rem;
color: #fff;
}
.button--calypso span {
display: block;
position: relative;
mix-blend-mode: difference;
z-index: 10;
}
.button--calypso:hover span {
animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}
@keyframes MoveScaleUpInitial {
to {
transform: translate3d(0,-105%,0) scale3d(1,2,1);
opacity: 0;
}
}
@keyframes MoveScaleUpEnd {
from {
transform: translate3d(0,100%,0) scale3d(1,2,1);
opacity: 0;
}
to {
transform: translate3d(0,0,0);
opacity: 1;
}
}
.button--calypso::before {
content: '';
background: #000;
width: 120%;
height: 0;
padding-bottom: 120%;
top: -110%;
left: -10%;
border-radius: 50%;
transform: translate3d(0,68%,0) scale3d(0,0,0);
}
.button--calypso:hover::before {
transform: translate3d(0,0,0) scale3d(1,1,1);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--calypso::after {
content: '';
background: #000;
transform: translate3d(0,-100%,0);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--calypso:hover::after {
transform: translate3d(0,0,0);
transition-duration: 0.05s;
transition-delay: 0.4s;
transition-timing-function: linear;
}
.button--skoll {
overflow: hidden;
border-radius: 50%;
color: #fff;
width: 100px;
height: 100px;
padding: 0;
font-weight: 500;
}
.button--skoll span {
display: block;
position: relative;
}
.button--skoll > span {
overflow: hidden;
mix-blend-mode: difference;
}
.button--skoll:hover > span > span {
animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
.button--skoll::before {
content: '';
background: #000;
width: 100%;
height: 0;
padding-bottom: 100%;
border-radius: 50%;
transform: translate3d(0,0,0);
transition: transform 0.3s;
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.button--skoll:hover::before {
transform: translate3d(0,100%,0);
}
.button--greip {
overflow: hidden;
color: #fff;
font-family: input-mono-narrow, monospace;
font-weight: 500;
padding: 1rem 2rem;
}
.button--greip span {
display: block;
position: relative;
}
.button--greip > span {
overflow: hidden;
mix-blend-mode: difference;
}
.button--greip:hover > span > span {
animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
.button--greip::before {
content: '';
background: #000;
width: 100%;
height: 100%;
transform-origin: 50% 100%;
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
transition: clip-path 0.2s, -webkit-clip-path 0.2s;
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.button--greip:hover::before {
transition-duration: 0.3s;
-webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}
.button--dione {
background: none;
font-family: obvia, sans-serif;
font-weight: 500;
font-style: italic;
padding: 1.5rem 3rem;
}
.button--dione span {
display: inline-block;
position: relative;
color: #fff;
}
.button--dione::before {
content: '';
background: #000;
transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
}
.button--dione:hover::before {
transform: scale3d(0.9, 0.8, 1);
}
.button--dione::after {
content: '';
border: 1px solid #000;
transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
border-radius: 0px;
transform: scale3d(0.85, 0.65, 1);
}
.button--dione:hover::after {
transform: scale3d(1,1,1);
}
.button--helene {
border-radius: 7px;
border: 1px solid #000;
font-family: chapman-extended, sans-serif;
font-weight: 900;
font-style: normal;
text-transform: uppercase;
font-size: 0.85rem;
padding: 0 3rem;
height: 4rem;
}
.button--helene::before {
content: '';
top: 10px;
left: 10px;
width: calc(100% - 20px);
height: calc(100% - 20px);
background: rgba(0,0,0,0.5);
filter: blur(7px);
border-radius: 7px;
z-index: -1;
transform: translate3d(0,15px,0);
transition: transform 0.45s;
}
.button--helene:hover::before {
transform: translate3d(0,0,0);
}
.button--helene span {
display: block;
}
.button--helene > span {
height: 100%;
overflow: hidden;
line-height: 4rem;
}
.button--helene:hover > span > span {
animation: slotMachine 0.15s ease-out forwards 3;
}
@keyframes slotMachine {
50% {
transform: translate3d(0,100%,0);
opacity: 0;
}
51% {
transform: translate3d(0,-100%,0);
opacity: 0;
}
100% {
transform: translate3d(0,0,0);
opacity: 1;
}
}
.button--rhea {
font-family: freight-display-pro, serif;
font-weight: 900;
font-style: normal;
width: 180px;
height: 180px;
color: #000;
background: none;
}
.button--rhea::before {
content: '';
z-index: -1;
background: #e7e7e7;
-webkit-clip-path: polygon(20% 30%, 0 30%, 0 50%, 0 70%, 20% 70%, 50% 70%, 80% 70%, 100% 70%, 100% 50%, 100% 30%, 80% 30%, 50% 30%);
clip-path: polygon(20% 30%, 0 30%, 0 50%, 0 70%, 20% 70%, 50% 70%, 80% 70%, 100% 70%, 100% 50%, 100% 30%, 80% 30%, 50% 30%);
transition: clip-path 0.4s cubic-bezier(0.3, 1, 0.2, 1), -webkit-clip-path 0.4s cubic-bezier(0.3, 1, 0.2, 1), transform 0.4s cubic-bezier(0.3, 1, 0.2, 1), background 0.4s ease;
}
.button--rhea:hover::before {
background: #000;
transform: scale3d(0.7,0.7,1);
-webkit-clip-path: polygon(30% 10%, 10% 30%, 30% 50%, 10% 70%, 30% 90%, 50% 70%, 70% 90%, 90% 70%, 70% 50%, 90% 30%, 70% 10%, 50% 30%);
clip-path: polygon(30% 10%, 10% 30%, 30% 50%, 10% 70%, 30% 90%, 50% 70%, 70% 90%, 90% 70%, 70% 50%, 90% 30%, 70% 10%, 50% 30%);
}
.button--rhea span {
display: block;
transition: transform 0.4s cubic-bezier(0.3, 1, 0.2, 1), opacity 0.05s;
}
.button--rhea:hover span {
transform: scale3d(0.1,0.1,1);
opacity: 0;
transition-delay: 0s, 0.35s;
}
.button--narvi {
font-weight: bold;
background: none;
}
.button--narvi::before {
content: '';
z-index: -1;
background: #e7e7e7;
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 80% 70%, 75% 70%, 0 70%);
clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 80% 70%, 75% 70%, 0 70%);
transition: clip-path 0.3s cubic-bezier(0.7, 0, 0.2, 1), -webkit-clip-path 0.3s cubic-bezier(0.7, 0, 0.2, 1), transform 0.3s ease;
}
.button--narvi:hover::before {
transform: translate3d(0,-10px,0);
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 86% 100%, 75% 70%, 0 70%);
clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 70%, 86% 100%, 75% 70%, 0 70%);
}
.button--narvi span {
display: block;
position: relative;
}
.button--narvi > span {
transition: transform 0.3s;
transform: translate3d(0,-0.556rem,0);
z-index: 1;
overflow: hidden;
}
.button--narvi:hover > span {
transform: translate3d(0,-1.111rem,0);
}
.button--narvi:hover > span > span {
animation: MoveUpInitial 0.15s forwards, MoveUpEnd 0.15s forwards 0.15s;
}
.button--hati {
border-radius: 50%;
overflow: hidden;
border: 2px solid;
background: none;
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 900;
font-style: italic;
}
.button--hati:hover {
background: none;
}
.button--hati::before {
animation: rotateIt 10s linear infinite;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAUElEQVQoU3VPSQ4AMQiS/z/aBiMNNDNeXEBQoDL66dkG52/hzlmsSqMKrAVCoOXuxR3TFVSIIJmzsFvGOMlust3iivmQd/6+3/NlN4paIOEADPIUD/MQvy0AAAAASUVORK5CYII=);
content: '';
width: 300%;
height: 300%;
top: -100%;
left: -100%;
z-index: -1;
opacity: 0;
transform-origin: 50% 50%;
transition: opacity 0.3s;
}
@keyframes rotateIt {
to {
transform: rotate(-360deg);
}
}
.button--hati:hover::before {
opacity: 0.7;
}
.button--hati span {
display: block;
position: relative;
z-index: 1;
}
.button--bestia {
font-family: freight-display-pro, serif;
font-size: 1.15rem;
color: #fff;
background: none;
padding: 0;
}
.button--bestia .button__bg {
top: 0;
left: 0;
position: absolute;
width: 100%;
height: 100%;
background: #e7e7e7;
border-radius: 0.85rem;
overflow: hidden;
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--bestia:hover .button__bg {
transform: scale3d(1.2,1.2,1);
}
.button--bestia .button__bg::before,
.button--bestia .button__bg::after {
content: '';
position: absolute;
background: #000;
}
.button--bestia .button__bg::before {
width: 110%;
height: 0;
padding-bottom: 110%;
top: 50%;
left: 50%;
border-radius: 50%;
transform: translate3d(-50%,-50%,0) scale3d(0,0,1);
}
.button--bestia:hover .button__bg::before {
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}
.button--bestia .button__bg::after {
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.3s;
}
.button--bestia:hover .button__bg::after {
opacity: 1;
transition-duration: 0.01s;
transition-delay: 0.3s;
}
.button--bestia span {
display: block;
position: relative;
padding: 1.5rem 3rem;
mix-blend-mode: difference;
}
/* Made with the help of <NAME>' article "Perfecting Paths for <textPath>":
https://oreillymedia.github.io/Using_SVG/extras/ch07-textpaths.html */
.button--surtur {
padding: 0;
background: none;
-webkit-clip-path: circle(40% at 50% 50%);
clip-path: circle(40% at 50% 50%);
}
.button--surtur:focus-visible {
background: #443ffc;
}
.textcircle {
position: relative;
display: block;
width: 200px;
}
.textcircle text {
font-size: 32px;
text-transform: uppercase;
fill: #000;
}
.textcircle textPath {
letter-spacing: 17px; /* Firefox needs this */
}
.button--surtur:hover .textcircle {
animation: rotateIt 7s linear infinite;
}
.eye {
position: absolute;
z-index: 2;
width: 60px;
height: 60px;
top: calc(50% - 30px);
left: calc(50% - 30px);
}
.eye__outer,
.eye__inner,
.eye__lashes-up,
.eye__lashes-down {
stroke: #000;
fill: none;
stroke-width: 1.5px;
}
.eye__lashes-down {
opacity: 0;
}
.button--surtur:hover .eye__lashes-up,
.button--surtur:hover .eye__inner,
.button--surtur:hover .eye__iris {
animation: blinkHide 2s step-end infinite;
}
.button--surtur:hover .eye__lashes-down {
animation: blinkShow 2s step-end infinite;
}
@keyframes blinkHide {
0% {
opacity: 0;
}
10% {
opacity: 1;
}
}
@keyframes blinkShow {
0% {
opacity: 1;
}
10% {
opacity: 0;
}
}
.button--fenrir {
background: none;
padding: 0;
-webkit-clip-path: circle(50% at 50% 50%);
clip-path: circle(50% at 50% 50%);
width: 120px;
height: 120px;
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 700;
text-transform: uppercase;
font-size: 0.85rem;
}
.progress {
position: absolute;
width: 80px;
height: 80px;
top: calc(50% - 40px);
left: calc(50% - 40px);
transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.button--fenrir:hover .progress {
transform: scale3d(1.2, 1.2, 1);
}
.progress__circle,
.progress__path {
fill: none;
stroke: #f0f0f0;
stroke-width: 1px;
}
.button--fenrir:focus-visible .progress__circle {
fill: rgba(252,196,63,0.4);
}
.progress__path {
stroke: #a6a6a6;
stroke-dasharray: 1;
stroke-dashoffset: 1;
transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.button--fenrir:hover .progress__path {
stroke-dashoffset: 0;
}
@media screen and (min-width: 53em) {
.frame {
text-align: left;
z-index: 100;
display: grid;
align-content: space-between;
width: 100%;
max-width: none;
padding: 3rem 3.5rem;
pointer-events: none;
grid-template-columns: 50% 50%;
grid-template-rows: auto auto auto;
grid-template-areas: 'title links'
'... ...'
'author ...';
}
.frame__title-wrap {
grid-area: title;
}
.frame__title {
margin: 0;
}
.frame__tagline {
position: relative;
margin-left: 0;
}
.frame__links {
grid-area: links;
padding: 0;
justify-self: end;
align-self: start;
justify-content: start;
}
.frame__author {
grid-area: author;
}
.frame a {
pointer-events: auto;
}
}
/* Page Loader */
.js .loading::before,
.js .loading::after {
content: '';
position: fixed;
z-index: 1000;
}
.js .loading::before {
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--color-bg);
}
.js .loading::after {
top: 50%;
left: 50%;
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
border-radius: 50%;
opacity: 0.4;
background: var(--color-link);
animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
to {
opacity: 1;
transform: scale3d(0.5, 0.5, 1);
}
}
a {
text-decoration: none;
color: var(--color-link);
outline: none;
}
a:hover {
color: var(--color-link-hover);
outline: none;
}
/* https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
/* Provide a fallback style for browsers
that don't support :focus-visible */
outline: none;
background: lightgrey;
}
a:focus:not(:focus-visible) {
/* Remove the focus indicator on mouse-focus for browsers
that do support :focus-visible */
background: transparent;
}
a:focus-visible {
/* Draw a very noticeable focus style for
keyboard-focus on browsers that do support
:focus-visible */
outline: 2px solid red;
background: transparent;
}
.frame {
padding: 3rem 5vw;
text-align: center;
position: relative;
z-index: 1000;
}
.frame__title {
font-size: 1.525rem;
margin: 0 0 1rem;
font-weight: normal;
cursor: default;
}
.frame__tagline {
color: #999;
max-width: 300px;
margin: 1rem auto;
}
.frame__links {
display: flex;
align-items: center;
justify-content: center;
}
.frame__links a:not(:last-child) {
margin-right: 2rem;
}
.github {
width: 24px;
height: 24px;
}
.content {
display: grid;
width: 100%;
margin: 0 auto;
padding: 10vh 25px;
max-width: 1050px;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-auto-rows: 200px;
grid-gap: 4rem;
grid-row-gap: 6rem;
justify-content: center;
list-style: none;
}
.content__item {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
counter-increment: itemcounter;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.content__item::before {
color: var(--color-number);
position: absolute;
top: 0;
left: 0;
content: counters(itemcounter, ".", decimal-leading-zero);
}
.link {
cursor: pointer;
font-size: 18px;
position: relative;
white-space: nowrap;
color: var(--color-text);
}
.link::before,
.link::after {
position: absolute;
width: 100%;
height: 1px;
background: currentColor;
top: 100%;
left: 0;
pointer-events: none;
}
.link::before {
content: '';
/* show by default */
}
.link--metis {
font-family: bely-display, sans-serif;
text-transform: lowercase;
}
.link--metis::before {
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s;
}
.link--metis:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
}
.link--io {
font-family: europa, sans-serif;
}
.link--io::before {
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.link--io:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}
.link--io::after {
content: '';
top: calc(100% + 4px);
transform-origin: 0% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.link--io:hover::after {
transform-origin: 100% 50%;
transform: scale3d(1, 1, 1);
transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}
.link--thebe {
font-family: angie-sans, sans-serif;
text-transform: uppercase;
}
.link--thebe::before {
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}
.link--thebe:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 2, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.link--thebe::after {
content: '';
top: calc(100% + 4px);
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.4s 0.1s cubic-bezier(0.2, 1, 0.8, 1);
}
.link--thebe:hover::after {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
.link--leda {
overflow: hidden;
line-height: 2;
font-family: orpheuspro, serif;
font-weight: 700;
}
.link--leda::before {
height: 2px;
top: calc(100% - 5px);
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.link--leda:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
}
.link--leda::after {
content: attr(data-text);
height: 100%;
top: 0;
background: none;
transform-origin: 100% 50%;
transform: translate3d(150%, 0, 0);
transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.link--leda:hover::after {
transform: translate3d(0, 0, 0);
}
.link--leda span {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.link--leda:hover span {
transform: translate3d(-150%, 0, 0);
}
.link--ersa {
padding: 0 10px;
font-family: halyard-display, sans-serif;
letter-spacing: 1px;
text-indent: 1px;
text-transform: uppercase;
}
.link--ersa::before {
top: 50%;
height: 2px;
transform-origin: 100% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s cubic-bezier(0.4, 1, 0.8, 1);
}
.link--ersa:hover::before {
transform-origin: 0% 50%;
transform: scale3d(1, 1, 1);
}
.link--ersa span {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.4, 1, 0.8, 1);
}
.link--ersa:hover span {
transform: scale3d(1.1, 1.1, 1.1);
}
.link--elara {
font-family: aktiv-grotesk-extended, sans-serif;
font-size: 1.375rem;
}
.link--elara::before {
transform-origin: 50% 100%;
transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
}
.link--elara:hover::before {
transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}
.link--elara span {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}
.link--elara:hover span {
transform: translate3d(0, -2px, 0);
}
.link--dia {
font-family: freightdispcmp-pro, serif;
font-size: 1.75rem;
}
.link--dia::before,
.link--dia::after {
opacity: 0;
transform-origin: 50% 0%;
transform: translate3d(0, 3px, 0);
transition-property: transform, opacity;
transition-duration: 0.3s;
transition-timing-function: cubic-bezier(0.2, 1, 0.8, 1);
}
.link--dia:hover::before,
.link--dia:hover::after {
opacity: 1;
transform: translate3d(0, 0, 0);
transition-timing-function: cubic-bezier(0.2, 0, 0.3, 1);
}
.link--dia::after {
content: '';
top: calc(100% + 4px);
width: 70%;
left: 15%;
}
.link--dia::before,
.link--dia:hover::after {
transition-delay: 0.1s;
}
.link--dia:hover::before {
transition-delay: 0s;
}
.link--kale {
font-family: halyard-display, sans-serif;
font-weight: 600;
text-transform: lowercase;
}
.link--kale::before {
height: 10px;
top: 100%;
opacity: 0;
}
.link--kale:hover::before {
opacity: 1;
animation: lineUp 0.3s ease forwards;
}
@keyframes lineUp {
0% {
transform-origin: 50% 100%;
transform: scale3d(1, 0.045, 1);
}
50% {
transform-origin: 50% 100%;
transform: scale3d(1, 1, 1);
}
51% {
transform-origin: 50% 0%;
transform: scale3d(1, 1, 1);
}
100% {
transform-origin: 50% 0%;
transform: scale3d(1, 0.045, 1);
}
}
.link--kale::after {
content: '';
transition: opacity 0.3s;
opacity: 0;
transition-delay: 0s;
}
.link--kale:hover::after {
opacity: 1;
transition-delay: 0.3s;
}
.link--carpo {
font-family: adrianna-extended, sans-serif;
text-transform: uppercase;
font-weight: 700;
}
.link--carpo::before {
transform-origin: 0% 50%;
transform: scale3d(0, 1, 1);
transition: transform 0.3s;
}
.link--carpo:hover::before {
transform: scale3d(1, 1, 1);
}
.link--carpo::after {
content: '';
top: calc(100% + 4px);
transition: transform 0.3s;
transform-origin: 100% 50%;
}
.link--carpo:hover::after {
transform: scale3d(0, 1, 1);
}
.link--helike {
font-family: aktiv-grotesk-extended, sans-serif;
font-weight: bold;
}
.link--helike:hover span {
animation: glitchText 0.4s linear;
}
@keyframes glitchText {
0% {
opacity: 1;
transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
-webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
}
10% {
-webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
}
20% {
-webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
}
35% {
-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
}
50% {
-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
}
60% {
-webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
}
70% {
-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
}
80% {
-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
}
90% {
transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
}
.link--helike::before {
height: 2px;
opacity: 0;
}
.link--helike:hover::before {
opacity: 1;
animation: glitchLine 0.4s steps(2, start) forwards;
}
@keyframes glitchLine {
0% {
transform: scale3d(1, 1, 1);
}
10% {
transform: translate3d(10px, 0, 0);
}
20% {
transform: translate3d(0, 4px, 0);
}
30% {
transform: scale3d(0.1, 1.4, 1) translate3d(0, -25px, 0);
transform-origin: 100% 0%;
}
40% {
transform: scale3d(1, 0.3, 1) translate3d(0, 25px, 0);
}
50% {
transform: scale3d(0.5, 0.3, 1) translate3d(-100px, -80px, 0);
}
60% {
transform: scale3d(1, 1.25, 1) translate3d(10px, -5px, 0);
}
70% {
transform: scale3d(0.5, 0.5, 1) translate3d(0, 20px, 0);
}
80% {
transform: translate3d(-30, 10px, 0) scale3d(1, 0.4, 1);
transform-origin: 100% 0%;
}
90% {
transform: scale3d(1, 0.5, 1) translate3d(0, -15px, 0);
;
transform-origin: 0% 50%;
}
100% {
opacity: 1;
}
}
.link--mneme {
font-family: aktiv-grotesk-extended, sans-serif;
font-size: 0.875rem;
text-transform: uppercase;
}
.link--mneme::before {
height: 100%;
top: 0;
opacity: 0;
}
.link--mneme:hover::before {
opacity: 1;
animation: coverUp 0.3s ease forwards;
}
@keyframes coverUp {
0% {
transform-origin: 50% 100%;
transform: scale3d(1, 0.045, 1);
}
50% {
transform-origin: 50% 100%;
transform: scale3d(1, 1, 1);
}
51% {
transform-origin: 50% 0%;
transform: scale3d(1, 1, 1);
}
100% {
transform-origin: 50% 0%;
transform: scale3d(1, 0.045, 1);
}
}
.link--mneme::after {
content: '';
transition: opacity 0.3s;
}
.link--mneme:hover::after {
opacity: 0;
}
.link--iocaste {
font-family: lust-fine, sans-serif;
overflow: hidden;
padding: 7px 0;
}
.link__graphic {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
fill: none;
stroke: #000;
stroke-width: 1px;
}
.link__graphic--slide {
top: -3px;
stroke-width: 2px;
transition: transform 0.7s;
transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}
.link:hover .link__graphic--slide {
transform: translate3d(-66.6%, 0, 0);
}
.link--herse {
font-family: freight-display-pro, serif;
font-size: 1.375rem;
font-weight: bold;
}
.link--herse::before {
display: none;
}
.link__graphic--stroke path {
stroke-dasharray: 1;
stroke-dashoffset: 1;
}
.link:hover .link__graphic--stroke path {
stroke-dashoffset: 0;
}
/* Trick from https://css-tricks.com/a-trick-that-makes-drawing-svg-lines-way-easier/ */
.link__graphic--arc {
top: 73%;
left: -23%;
}
.link__graphic--arc path {
transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.link:hover .link__graphic--arc path {
transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
transition-duration: 0.3s;
}
.link--carme {
font-family: angie-sans, sans-serif;
font-size: 1.25rem;
}
.link--carme::before {
display: none;
}
.link__graphic--scribble {
top: 100%;
}
.link__graphic--scribble path {
transition: stroke-dashoffset 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.link:hover .link__graphic--scribble path {
transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
transition-duration: 0.3s;
}
.link--eirene {
font-family: europa, sans-serif;
font-weight: bold;
}
.link--eirene::before {
height: 7px;
border-radius: 20px;
transform: scale3d(1, 1, 1);
transition: transform 0.2s, opacity 0.2s;
transition-timing-function: cubic-bezier(0.2, 0.57, 0.67, 1.53);
}
.link--eirene:hover::before {
transition-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
transition-duration: 0.4s;
opacity: 1;
transform: scale3d(1.2, 0.1, 1);
}
.link--eirene span {
transform: translate3d(0, -4px, 0);
display: inline-block;
transition: transform 0.2s 0.05s cubic-bezier(0.2, 0.57, 0.67, 1.53);
}
.link--eirene:hover span {
transform: translate3d(0, 0, 0);
transition-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
transition-duration: 0.4s;
transition-delay: 0s;
}
@media screen and (min-width: 53em) {
.frame {
text-align: left;
z-index: 100;
display: grid;
align-content: space-between;
width: 100%;
max-width: none;
padding: 3rem 3.5rem;
pointer-events: none;
grid-template-columns: 50% 50%;
grid-template-rows: auto auto auto;
grid-template-areas: 'title links'
'... ...'
'author ...';
}
.frame__title-wrap {
grid-area: title;
}
.frame__title {
margin: 0;
}
.frame__tagline {
position: relative;
margin-left: 0;
}
.frame__links {
grid-area: links;
padding: 0;
justify-self: end;
align-self: start;
justify-content: start;
}
.frame__author {
grid-area: author;
}
.frame a {
pointer-events: auto;
}
} | 0.722821 | 0.060142 |
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-size: 10px;
}
body {
font-size: 1.6rem;
line-height: 1.8;
}
.top-bar {
height: 50px;
background-color:#d344ffc5;
color: #ffff;
font-weight: 800;
font-size: 3rem;
text-align: center;
}
.top-bar-title {
width: inherit;
line-height: 1.5;
margin-top: -0.0rem;
padding-left: auto;
padding-right: auto;
}
.share-box {
width: 301px;
height: 50px;
margin-top: 25px;
margin-left: auto;
margin-right: auto;
}
.location-input-table {
background-color: #da93d434;
margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-top: 24px;
box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
}
.Wrapper {
position: relative;
padding-left: 5%;
padding-right: 5%;
margin-top: 5%;
margin-bottom: 5%;
}
.Input-text {
display: block;
margin: 0;
padding: 0.8rem 1.6rem;
color: inherit;
width: 100%;
font-family: inherit;
font-size: 2.1rem;
font-weight: inherit;
line-height: 1.8;
border: none;
border-radius: 0.4rem;
transition: box-shadow 300ms;
}
.Input-text::placeholder {
color: #B0BEC5;
font-size: 1.8rem;
font-weight: 500;
}
.Input-text:hover {
outline: none;
box-shadow: 0 1px 6px 0 rgba(32,33,36,0.28);
}
.Input-text:focus {
outline: none;
}
.Input-label {
display: block;
position: absolute;
bottom: 95%;
left: 3rem;
color: rgb(59, 58, 58);
font-family: inherit;
font-size: 1.8rem;
font-weight: 500;
line-height: 1.8;
}
.search-table {
margin-top: 25px;
margin-left: auto;
margin-right: auto;
}
.btn {
background: #2196f3;
color: #d3eafd;
border: 1px solid #dfe1e5;
padding: 10px 20px;
border-radius: 0.5rem;
letter-spacing: 0.06em;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
outline: none;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover {
border: none;
background: #2196f3;
color: #deeffd;
box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}
.btn.btn-share {
width:100%;
height: 100%;
background: #ffff;
color: #d344ffc5;
}
.btn.btn-share:hover {
background: #d344ffc5;
color: #deeffd;
}
.btn.btn-share:active {
background: #9f33c0c5;
}
.btn.btn-submit {
width:100%;
height: 100%;
background: #ffff;
color: #d344ffc5;
}
.btn.btn-submit:hover {
background: #d344ffc5;
color: #deeffd;
}
.btn.btn-submit:active {
background: #9f33c0c5;
}
.btn.btn-result {
width:100%;
height: 100%;
background: #ffff;
color: #d344ffc5;
}
.btn.btn-result:hover {
background: #d344ffc5;
color: #deeffd;
}
.btn.btn-result:active {
background: #9f33c0c5;
}.Input-label
.btn-box {
text-align: center;
margin: 50px 0;
} | src/frontend/src/v1/PrivateRoom.css | *,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-size: 10px;
}
body {
font-size: 1.6rem;
line-height: 1.8;
}
.top-bar {
height: 50px;
background-color:#d344ffc5;
color: #ffff;
font-weight: 800;
font-size: 3rem;
text-align: center;
}
.top-bar-title {
width: inherit;
line-height: 1.5;
margin-top: -0.0rem;
padding-left: auto;
padding-right: auto;
}
.share-box {
width: 301px;
height: 50px;
margin-top: 25px;
margin-left: auto;
margin-right: auto;
}
.location-input-table {
background-color: #da93d434;
margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-top: 24px;
box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
}
.Wrapper {
position: relative;
padding-left: 5%;
padding-right: 5%;
margin-top: 5%;
margin-bottom: 5%;
}
.Input-text {
display: block;
margin: 0;
padding: 0.8rem 1.6rem;
color: inherit;
width: 100%;
font-family: inherit;
font-size: 2.1rem;
font-weight: inherit;
line-height: 1.8;
border: none;
border-radius: 0.4rem;
transition: box-shadow 300ms;
}
.Input-text::placeholder {
color: #B0BEC5;
font-size: 1.8rem;
font-weight: 500;
}
.Input-text:hover {
outline: none;
box-shadow: 0 1px 6px 0 rgba(32,33,36,0.28);
}
.Input-text:focus {
outline: none;
}
.Input-label {
display: block;
position: absolute;
bottom: 95%;
left: 3rem;
color: rgb(59, 58, 58);
font-family: inherit;
font-size: 1.8rem;
font-weight: 500;
line-height: 1.8;
}
.search-table {
margin-top: 25px;
margin-left: auto;
margin-right: auto;
}
.btn {
background: #2196f3;
color: #d3eafd;
border: 1px solid #dfe1e5;
padding: 10px 20px;
border-radius: 0.5rem;
letter-spacing: 0.06em;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
outline: none;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover {
border: none;
background: #2196f3;
color: #deeffd;
box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}
.btn.btn-share {
width:100%;
height: 100%;
background: #ffff;
color: #d344ffc5;
}
.btn.btn-share:hover {
background: #d344ffc5;
color: #deeffd;
}
.btn.btn-share:active {
background: #9f33c0c5;
}
.btn.btn-submit {
width:100%;
height: 100%;
background: #ffff;
color: #d344ffc5;
}
.btn.btn-submit:hover {
background: #d344ffc5;
color: #deeffd;
}
.btn.btn-submit:active {
background: #9f33c0c5;
}
.btn.btn-result {
width:100%;
height: 100%;
background: #ffff;
color: #d344ffc5;
}
.btn.btn-result:hover {
background: #d344ffc5;
color: #deeffd;
}
.btn.btn-result:active {
background: #9f33c0c5;
}.Input-label
.btn-box {
text-align: center;
margin: 50px 0;
} | 0.47317 | 0.065665 |
body,
p, ul, ol, li, a {
color: #212121;
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif; }
#main p {
min-width: 100%;
orphans: 3; }
legend, label,
h1, h2, h3, h4, h5, h6 {
color: #205493;
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif; }
h6 {
font-weight: bold;
text-transform: none; }
.usa-section-dark legend, .usa-section-dark label,
.usa-section-dark h1, .usa-section-dark h2, .usa-section-dark h3, .usa-section-dark h4, .usa-section-dark h5, .usa-section-dark h6,
.usa-section-dark p {
color: #ffffff; }
legend,
h1, h2, h3, h4, h5, h6 {
margin-bottom: 20px; }
ul, li {
margin-bottom: 0; }
form {
max-width: 100%; }
a {
color: #0071bc; }
a:hover {
color: #205493; }
a:active {
color: #0071bc; }
a:visited {
color: #0071bc; }
#main:focus {
outline: none; }
@media (min-width: 600px) {
.usa-width-one-whole.usa-section {
position: relative;
left: 50%;
max-width: 62.5rem;
margin-left: -31.25rem; } }
.usa-grid {
max-width: 1200px;
padding-right: 0;
padding-left: 0; }
@media (min-width: 0px) and (max-width: 1200px) {
.usa-grid {
padding-right: 5%;
padding-left: 5%; } }
#main .page-banner, body .page-banner {
background: #112e51;
padding: 50px 0; }
#main .page-banner h1, body .page-banner h1 {
color: #fff;
width: 100%;
max-width: 1200px;
margin: 0 auto; }
@media (min-width: 0px) and (max-width: 1200px) {
#main .page-banner, body .page-banner {
padding-right: 5%;
padding-left: 5%; } }
.about-us section#about {
margin: 0 auto;
max-width: 1200px;
width: 100%;
padding: 60px 0; }
.about-us section#about:after {
content: '';
clear: both;
display: table; }
section#fedramp-numbers {
margin: 0 auto;
max-width: 1200px;
width: 100%;
float: none;
padding: 60px 0; }
section#fedramp-numbers h2 {
margin-top: 0;
text-align: center; }
section#fedramp-numbers:after {
content: '';
clear: both;
display: table; }
section#fedramp-mission {
width: 100%;
padding: 60px 0;
background: #205493;
color: #fff; }
section#fedramp-mission .inner {
margin: 0 auto;
max-width: 1200px;
width: 100%; }
section#fedramp-mission .inner h2 {
margin-top: 0;
color: #fff;
text-align: center; }
section#fedramp-mission .inner ul {
column-count: 2;
column-gap: 40px; }
section#fedramp-mission .inner ul li {
color: #fff;
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid; }
.about-us #about .image-container {
max-width: 50%;
float: left;
text-align: center; }
.about-us #fedramp-numbers .image-container {
max-width: 100%;
float: left;
text-align: center; }
.about-us #about .text-container {
max-width: 50%;
float: left;
text-align: left;
padding: 0 0 0 40px; }
.about-us #fedramp-numbers .text-container {
max-width: 100%;
float: left;
text-align: left;
padding: 40px 0 0 0; }
.cloud .text-container {
max-width: 1200px;
width: 100%;
float: none;
margin: 0 auto;
text-align: left;
padding: 0 0 40px 0; }
.cloud .text-container h2:first-child {
margin-top: 0; }
@media (min-width: 0px) and (max-width: 1200px) {
.cloud .text-container {
padding: 0 5% 40px 5%; } }
.about-us section.about-auth {
background: #205493;
width: 100%;
float: left;
color: #fff;
padding: 60px 0; }
.about-us section.about-auth .inner {
max-width: 1200px;
margin: 0 auto; }
.about-us section.about-auth .inner h2 {
text-align: center;
color: #fff;
margin-top: 0; }
.about-us section.about-auth .inner p {
color: #fff;
text-align: center; }
.about-us section.about-auth .inner p a {
color: #fff; }
.about-us #fedramp-numbers .column-1, .about-us #fedramp-numbers .column-2 {
width: 50%;
float: left; }
@media (min-width: 0) and (max-width: 768px) {
.about-us #fedramp-numbers .column-1, .about-us #fedramp-numbers .column-2 {
width: 100%;
float: left; }
.about-us section.about-auth {
padding: 60px 5%; } }
.about-us #fedramp-numbers img.one {
width: 50%;
float: left; }
.about-us #fedramp-numbers img.two {
width: 50%;
float: left; }
.about-us #fedramp-numbers img.three {
width: 100%;
float: left;
clear: left; }
.about-us #fedramp-numbers img.four {
width: 100%;
float: right;
top: 0;
position: relative; }
.usa-width-three-fourths {
width: 74.4%;
padding-right: 60px;
margin: 0;
box-sizing: border-box; }
.usa-width-one-fourth {
width: 25%; }
@media (min-width: 0) and (max-width: 768px) {
.usa-width-three-fourths {
width: 100%;
padding: 0; }
.usa-width-one-fourth {
width: 100%; } }
@media (min-width: 0px) and (max-width: 1200px) {
.about-us section#about {
padding-left: 5%;
padding-right: 5%; }
.about-us section#fedramp-mission {
padding: 60px 5%; } }
@media (min-width: 0px) and (max-width: 768px) {
.about-us section#about {
padding-left: 5%;
padding-right: 5%; }
.about-us #about .text-container {
max-width: 100%;
float: left;
text-align: left;
padding: 0; }
.about-us #about .image-container {
max-width: 100%;
float: left;
text-align: center; }
.about-us section#fedramp-mission {
width: 100%;
padding: 60px 5%;
background: #205493;
color: #fff; }
.about-us section#fedramp-mission .inner ul {
column-count: 1; } }
#searchgovform button#searchgovbutton,
#searchgovform #searchgovbutton
#searchgovform [type="submit"] {
background-color: #112E51; }
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
background-color: #fff;
color: #fff;
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
margin-bottom: 20px;
margin-top: 20px;
text-transform: uppercase; }
.usa-button:hover,
.usa-button-primary:hover,
.usa-button:visited:hover,
.usa-button-primary:visited:hover,
button:hover,
[type="button"]:hover,
[type="submit"]:hover,
[type="reset"]:hover,
[type="button"]:hover,
[type="submit"]:hover,
[type="reset"]:hover,
[type="image"]:hover {
background-color: #205493; }
@media (max-width: 500px) {
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
width: auto; } }
@media all and (min-width: 951px) {
.usa-header-basic .usa-navbar {
width: 30%; } }
.usa-nav-primary a:hover {
color: #112e51; }
.usa-nav-link:hover span {
border-bottom-color: #112e51; }
.usa-nav ul li.parent {
border: none;
color: #212121;
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
line-height: 1.3;
padding: 1.4rem 1.5rem 1rem 1.8rem;
text-decoration: none;
font-weight: bold;
cursor: pointer;
width: auto;
color: #5b616b;
font-size: 1.3rem; }
.usa-nav ul li.parent:hover {
color: #112e51; }
.usa-sidenav-list a.usa-current {
border-left: 4px solid #112e51;
color: #112e51; }
.usa-sidenav-list a {
color: #212121; }
.usa-sidenav-list a:hover {
color: #112e51; }
.center-content {
text-align: center; }
.home .usa-width-one-whole > p {
font-size: 20px;
line-height: 1.7; }
.hero-unit {
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
min-height: 32em;
position: relative; }
.hero-content {
background-color: rgba(33, 33, 33, 0.4);
margin: 0px auto;
padding: 40px;
text-align: center;
width: 100%; }
.hero-content h1 {
color: white;
font-size: 28px;
font-weight: 400;
line-height: 50px;
margin-top: 0;
margin-bottom: 0;
padding-left: .3em;
padding-right: .3em; }
.hero-content .usa-button {
font-size: 18px;
line-height: 30px; }
.hero-content p {
color: #fff; }
.home .hero-unit {
background-image: url("../../assets/img/home-hero-unit.png") !important;
background-attachment: fixed;
padding: 130px 0; }
@medi (max-width: 750px) {
.hero-content {
background-color: rgba(33, 33, 33, 0.4);
margin: 0px auto;
padding: 40px;
text-align: center;
width: 100%; }
.hero-content h1 {
color: white;
font-size: 36px;
font-weight: 400;
line-height: 50px;
margin-top: 0;
margin-bottom: 0;
padding-left: .3em;
padding-right: .3em; }
.hero-content .usa-button {
font-size: 22px;
line-height: 30px; }
.hero-content p {
color: #fff; } }
iframe {
margin-left: 25%;
width: 50%; }
@media (max-width: 800px) {
iframe {
margin-left: 10%;
width: 80%; } }
@media (max-width: 500px) {
iframe {
margin-left: 0;
width: 95%; } }
@media (max-width: 321px) {
iframe {
min-height: 4rem;
width: 100%; } }
.page--banner {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
width: 100%; }
.caption {
float: right; }
#main .page-banner h1, body .page-banner h1 {
font-size: 28px; }
section#pre-auth, section#during-auth, section#post-auth, section#support, section#do-once {
padding: 0 0 40px 130px;
margin: 0 0 40px 0;
min-height: 105px;
background-size: 100px !important;
border-bottom: 1px solid #cdcdcd;
background-repeat: no-repeat; }
section#conmon, section#control, section#req {
background-size: 115px !important; }
section#rar, section#do-once {
border: none !important; }
.q1, .q2, .q3, .q4, .q5, .tip-1 {
margin: 0 0 40px 0;
border-bottom: 1px solid #cdcdcd; }
.q1 h3, .q2 h3, .q3 h3, .q4 h3, .q5 h3, .tip-1 h3 {
padding: 0 0 0 100px;
margin: 0 0 15px 0;
background-size: 100px !important;
background-repeat: no-repeat;
min-height: 80px;
background-position: -13px -13px; }
.q5 {
border: none; }
@media (min-width: 0px) and (max-width: 580px) {
section#pre-auth, section#during-auth, section#post-auth, section#do-once, section#support, section#welcome, section#ssp, section#sap, section#conmon, section#control, section#req, section#sap-guidance, section#sar-report, section#sar-guidance, section#procedures, section#method, section#sar-tables, section#rar, .q1, .q2, .q3, .q4, .q5, .tip-1 {
background-position: center top;
background-repeat: no-repeat; }
.q1, .q2, .q3, .q4, .q5, .tip-1 {
background-size: 100px !important; }
section#pre-auth, section#during-auth, section#post-auth, section#do-once, section#support, section#welcome, section#ssp, section#sap, section#conmon, section#control, section#req, section#sap-guidance, section#sar-report, section#sar-guidance, section#procedures, section#method, section#sar-tables, section#rar {
background-size: 100px !important; }
section#pre-auth, section#during-auth, section#post-auth, section#do-once, section#support {
padding: 100px 0 40px 0; } }
#jan-5, #dec-20 {
border-bottom: 1px solid #cdcdcd; }
.q1 h3, .q2 h3, .q3 h3, .q5 h3 {
background-image: url("../../assets/img/project-images/cloudserv-icon.png"); }
.q4 h3, .tip-1 h3 {
background-image: url("../../assets/img/project-images/assessor-icon.png"); }
section#pre-auth {
background-image: url("../../assets/img/pre-auth.png"); }
section#during-auth {
background-image: url("../../assets/img/during-auth.png"); }
section#post-auth {
background-image: url("../../assets/img/post-auth.png"); }
section#support {
background-image: url("../../assets/img/support.png");
border: none; }
section#do-once {
background-image: url("../../assets/img/do-once.png");
border: none; }
#path-one h2 {
background-image: url("../../assets/img/stakeholders.png");
background-size: 80px;
margin-left: 0;
background-position: left top;
background-repeat: no-repeat;
min-height: 100px;
border-bottom: 1px solid #cdcdcd;
padding: 20px 0 20px 100px; }
#path-two h2 {
background-image: url("../../assets/img/cloudserv-icon.png");
background-size: 100px;
background-position: -10px -15px;
margin-left: 0;
background-repeat: no-repeat;
min-height: 100px;
border-bottom: 1px solid #cdcdcd;
padding: 20px 0 20px 100px; }
#path-three h2 {
background-image: url("../../assets/img/project-images/assessor-icon.png");
background-size: 100px;
margin-left: 0;
background-repeat: no-repeat;
background-position: -5px -15px;
min-height: 100px;
padding: 20px 0 20px 100px;
border-bottom: 1px solid #cdcdcd; }
#path-one h3, #path-two h3, #path-three h3 {
padding: 0 0 15px 30px;
box-sizing: border-box;
width: 100%;
float: left;
margin-left: 0; }
#path-one .panel, #path-two .panel, #path-three .panel {
padding: 0 0 20px 40px; }
#path-one .panel p:first-of-type, #path-two .panel p:first-of-type, #path-three .panel p:first-of-type {
margin: 0; }
.accordion {
cursor: pointer;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
background: none;
text-transform: none;
margin: 10px 0 10px 35px; }
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
/* Style the accordion panel. Note: hidden by default */
.panel {
background-color: white;
display: none;
overflow: hidden; }
.accordion:before {
content: '\02795';
/* Unicode character for "plus" sign (+) */
font-size: 13px;
color: #fff;
float: left;
margin-left: -30px; }
.active:before {
content: "\2796";
/* Unicode character for "minus" sign (-) */ }
.assessors-page section#post-auth {
border: none;
margin: 0;
padding-bottom: 0; }
.page-faqs .question {
padding: 15px 0;
border-bottom: 1px solid #cdcdcd; }
.page-faqs .question p {
padding: 0 0 0 40px; }
.page-faqs .question ul {
padding: 0 0 0 80px; }
.page-faqs .question h6 {
padding: 0 0 0 40px; }
.page-faqs .question:last-of-type {
border: none; }
@media (min-width: 650px) {
#main .page-banner h1, body .page-banner h1 {
font-size: 42px; } }
.cloud .cloud-wrapper {
max-width: 1000px;
width: 100%;
margin: 100px auto 40px auto;
text-align: center; }
.cloud .cloud-wrapper ul.columns {
background: url("../../assets/img/page-images/cloud-bkgrnd.png") no-repeat bottom;
width: 100%;
margin: 0 auto;
float: none;
display: flex;
justify-content: space-around;
flex-flow: row wrap;
padding: 0 3% 40px 3%; }
.cloud .cloud-wrapper ul.columns li.column {
width: 220px;
list-style: none;
margin: -30px auto auto auto;
background: #fff;
border: 2px solid;
padding: 15px;
box-sizing: border-box;
min-height: 250px; }
.cloud .cloud-wrapper ul.columns li.column img {
margin-top: -50px; }
.cloud .cloud-wrapper ul.columns #cloud-service {
border-color: #9ddaf3; }
.cloud .cloud-wrapper ul.columns #value-add {
border-color: #4dc4e0; }
.cloud .cloud-wrapper ul.columns #managed-service {
border-color: #4dc4e0; }
.cloud .cloud-wrapper ul.columns #integrator {
border-color: #1eadd7; }
.cloud .cloud-wrapper span.owned {
font-weight: bold;
float: left;
position: relative;
top: 150px;
left: -50px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }
.cloud .cloud-wrapper span.operated {
font-weight: bold;
float: right;
position: relative;
top: -150px;
right: -50px;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }
@media (min-width: 0) and (max-width: 980px) {
.cloud .cloud-wrapper {
margin: 100px auto 40px auto;
width: 80%; }
.cloud .cloud-wrapper ul.columns {
background: url("../../assets/img/page-images/cloud-bkgrnd.png") no-repeat bottom;
background-size: cover;
width: 100%;
margin: 0;
float: none;
display: flex;
justify-content: space-around;
flex-flow: row wrap;
padding: 0 3% 40px 3%;
box-sizing: border-box;
border-radius: 20px; }
.cloud .cloud-wrapper ul.columns li.column {
width: 200px;
list-style: none;
margin: 30px auto;
background: #fff;
border: 2px solid;
padding: 15px;
box-sizing: border-box;
min-height: 300px; }
.cloud .cloud-wrapper ul.columns li.column img {
margin-top: 0px; } }
@media screen and (min-width: 600px) {
.project-container {
display: flex;
flex-wrap: wrap;
width: 102.5%; } }
.card {
display: block;
text-align: center;
margin-bottom: 3rem;
padding-bottom: 3rem;
position: relative;
text-decoration: none; }
@media all and (min-width: 1024px) {
.card {
display: flex;
flex-direction: column;
margin-right: 2.3%;
min-height: 450px;
width: 31%; } }
.card:active {
box-shadow: #3e94cf; }
.card-link {
bottom: 0;
left: 0;
right: 0;
top: 0;
position: absolute; }
.card-banner {
margin: 3rem; }
@media all and (min-width: 800px) {
.card-banner {
flex: 1 0 auto; } }
.card-image {
background-size: 70%;
background-repeat: no-repeat;
background-position: center;
min-height: 200px;
width: 100%; }
.card-banner {
color: #205493;
margin-top: 0; }
.card-banner a {
text-decoration: none; }
.card-banner a:hover {
text-decoration: underline; }
.card-summary {
font-size: 16px;
margin-bottom: 0; }
.card-summary em {
font-style: normal; }
a.card-read {
color: #fff; }
.card-read {
margin: 0 auto;
color: #0071bc;
width: 40%;
text-transform: uppercase;
background: #205493;
padding: 10px;
font-size: 1.4875rem;
font-weight: bold;
text-decoration: none; }
.card-read:visited {
color: #fff; }
.card-read svg {
display: inline-block;
height: 1.2rem;
margin-bottom: -1px;
width: 1.2rem;
margin-left: 4px; }
#main section.usa-grid.usa-section h2 {
text-align: center;
width: 100%;
float: none;
margin: 0 auto 20px auto; }
.usa-banner-header .usa-banner-inner > img {
padding-top: 3px; }
.banner.tagline {
background-color: #112e51;
padding: 40px 0; }
.banner.tagline .usa-grid {
padding: 3rem; }
.banner.tagline p {
color: #fff;
text-align: center; }
.banner.tagline h2 {
color: #fff;
margin-top: 75px;
text-align: center; }
.banner.contact {
background-color: #112e51; }
.banner.contact form {
padding-top: 2em; }
.banner.contact h2,
.banner.contact p,
.banner.contact legend,
.banner.contact label,
.banner.contact a,
.banner.contact a:hover,
.banner.contact a:visited {
color: #fff; }
.banner .usa-button,
.banner .usa-button-primary,
.banner .usa-button:visited,
.banner .usa-button-primary:visited,
.banner button,
.banner [type="button"],
.banner [type="submit"],
.banner [type="reset"] {
background-color: #dce4ef;
color: #112e51;
text-transform: uppercase;
font-size: 1.4rem; }
footer {
float: left;
width: 100%; }
footer p {
color: #112e51 !important; }
.usa-footer-primary-section {
background-color: #f1f1f1; }
.usa-footer-secondary_section {
background-color: #d6d7d9;
padding: 60px 0; }
footer p,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer a,
footer a:hover,
footer a:visited {
color: #212121; }
.usa-footer-logo p {
font-size: .7em;
width: auto; }
.usa-footer .logo-container {
max-width: 200px;
text-align: center; }
.usa-footer .logo-container img {
margin: 0 auto;
float: none;
max-width: 100px; }
form#contact p, address p, .footer-social p {
font-weight: bold; }
.footer-social, address {
margin: 20px 0 0 0; }
.footer-social p, address p {
margin: 0 0 5px 0;
color: #112e51; }
.footer-social a, address a {
color: #205493 !important; }
.footer-social a:hover, address a:hover {
color: #112E51; }
.footer-social a.usa-link-twitter img {
fill: #205493; }
address p:last-of-type, address p {
margin: 0; }
.usa-grid #contact {
text-align: center; }
.usa-grid #contact div.usa-width-one-half {
width: 100%; }
.usa-grid #contact div.usa-width-one-half input {
margin: 30px auto; }
.newsletter-footer {
float: left;
margin: 0;
width: 31%; }
.newsletter-footer input {
margin: 0 auto;
background: #205493;
font-size: 1.4rem; }
.usa-footer-secondary_section .footer-social, .usa-footer-secondary_section address {
float: right;
text-align: center;
width: 200px;
clear: both; }
@media (min-width: 0px) and (max-width: 580px) {
.usa-footer-secondary_section .footer-social, .usa-footer-secondary_section address {
float: none;
text-align: center;
width: 100%; }
.newsletter-footer {
float: none;
width: 100%; }
.usa-footer .logo-container {
max-width: 100%; }
.usa-footer-contact-links, .usa-footer .newsletter-footer {
text-align: center;
padding: 20px 0 0 0; } }
.usa-footer-secondary_section .footer-social a {
margin: 0 auto;
position: static;
color: #205493 !important; }
.copyright {
padding: 5px 0;
background: #112e51;
text-align: center;
color: #fff;
font-size: 1.2rem; }
.page-team .usa-graphic_list .usa-media_block {
margin-bottom: 6rem; }
@media all and (min-width: 800px) {
.page-team .usa-graphic_list .usa-media_block {
margin-right: 0;
width: 50%; } }
.page-team .usa-graphic_list h3 {
margin: 0; }
.page-team .usa-graphic_list h3 a {
text-decoration: none; }
.page-team .usa-graphic_list h3 a:hover {
text-decoration: underline; }
.page-team .usa-graphic_list p {
margin: 0;
color: #757575; }
.team-image {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius: 75px;
height: 124px;
width: 124px; }
.page-team-single h2 {
text-align: left !important;
margin: 0 !important; }
.page-team-single p.title {
font-size: 1.2em;
color: #757575;
margin-top: 0; }
.page-team-single .team-image {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius: 75px;
height: 270px;
width: 270px;
border-radius: 150px; }
.page-team main {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 60px 0;
content: '';
clear: both;
display: table; }
.page-team-single .usa-width-one-third {
text-align: center; }
@media (min-width: 0) and (max-width: 1200px) {
.usa-graphic_list {
margin: 0 5%; } }
@media (min-width: 0) and (max-width: 768px) {
.usa-media_block {
width: 100%;
clear: both;
float: left; } }
/** SEARCH FEATURE **/
.search-feature {
margin: 20px 40px; }
.search-feature .usa-header .usa-search {
max-width: 40rem;
width: 50rem; }
.search-feature .usa-button, .search-feature .usa-button-primary, .search-feature .usa-button:visited, .search-feature .usa-button-primary:visited, .search-feature button, .search-feature [type="button"], .search-feature [type="submit"], .search-feature [type="reset"], .search-feature [type="image"] {
font-size: 1.2rem; }
div.usa-nav-container {
height: 170px;
width: 100%;
max-width: 1200px;
vertical-align: middle;
padding: 60px 0;
box-sizing: border-box; }
@media (min-width: 0px) and (max-width: 951px) {
div.usa-nav-container {
padding: 20px 5%;
margin: 0;
height: 120px; } }
div.usa-navbar {
float: left !important;
height: 100px;
border: 0;
width: 100%; }
div.usa-navbar:after {
content: '';
display: table;
clear: both; }
nav.usa-nav {
padding: 20px 0;
float: right; }
nav.usa-nav ul li {
text-transform: uppercase; }
nav.usa-nav ul li:focus {
outline: none; }
@media (min-width: 951px) and (max-width: 1200px) {
.usa-nav-container {
padding-top: 30px; }
.usa-navbar {
position: relative;
top: -30px;
left: 30px; }
.usa-nav-primary.usa-accordion {
margin: 0 15% !important; } }
#logo em.usa-logo-text {
float: left; }
#logo em.usa-logo-text a {
float: left; }
div#logo.usa-logo {
float: left;
max-width: 300px;
min-width: 290px; }
@media (min-width: 375px) and (max-width: 768px) {
div#logo.usa-logo {
max-width: 260px;
min-width: 190px;
margin-top: 10px; }
div#logo.usa-logo img {
width: 100%;
height: auto; } }
@media (min-width: 0px) and (max-width: 360px) {
div#logo.usa-logo {
max-width: 210px;
min-width: 150px; }
div#logo.usa-logo img {
width: 100%;
height: auto; }
.usa-banner-header img {
margin-right: 9px; } }
header.usa-banner-header {
height: 30px;
padding: 5px 0; }
.menu-wrap {
width: 100%;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
background: #3e3436; }
.usa-nav li {
margin: 0px;
list-style: none; }
@media (min-width: 951px) and (max-width: 1200px) {
nav.usa-nav {
width: 100%;
height: 100px;
position: relative;
top: -60px;
height: 70px; } }
.usa-nav a {
transition: all linear 0.15s; }
.usa-nav li:hover > a, .usa-nav .current-item > a {
text-decoration: none; }
/*----- Top Level -----*/
.usa-nav > ul > li {
/* float:left;*/
/* display:inline-block;*/
position: relative;
/* font-size:19px;*/ }
.usa-nav > ul > li > a {
/* padding:10px 40px;*/
display: inline-block;
/* text-shadow:0px 1px 0px rgba(0,0,0,0.4);*/ }
.usa-nav > ul > li:hover > a, .usa-nav > ul > .current-item > a {
border-bottom: 5px solid #205493; }
.usa-mobile_nav-active .usa-nav > ul > li:hover > a, .usa-nav > ul > .current-item > a {
border-bottom: none; }
/*----- Bottom Level -----*/
.usa-nav li:hover .sub-menu {
z-index: 1;
opacity: 1; }
.sub-menu {
width: 175px;
padding: 0px;
position: absolute;
top: 30px;
left: 0;
z-index: -1;
opacity: 0;
transition: opacity linear 0.15s;
background: #205493; }
.usa-mobile_nav-active .sub-menu {
display: none; }
.sub-menu li {
display: block;
text-align: left; }
.sub-menu li a {
padding: 10px;
display: block;
font-size: .9em;
color: #fff; }
.sub-menu li a:hover, .sub-usa-nav .current-item a {
background: #112e51;
color: #fff; }
/** PRINT FRIENDLY **/
@media print {
html, body {
margin: 0;
padding: 0;
background: #FFF;
font-size: 9.5pt; }
.container, .container div {
width: 100%;
margin: 0;
padding: 0; }
/*
.template {
overflow: hidden;
}
*/
img {
width: 100%; }
#navigation, #subnavigation {
display: none; }
h1 {
font-size: 24pt; }
h2 {
font-size: 18pt; }
h3 {
font-size: 14pt; }
p, ul, ol, dl {
/* paragraphs, unordered, ordered, and definition lists */
font-size: 12pt; }
/* Print CSS rules go here */
/* Note: You need a separate @media screen group for other rules */ }
@media screen and (min-width: 600px) {
.project-container {
display: flex;
flex-wrap: wrap;
width: 102.5%; } }
.blog {
display: block;
text-align: center;
position: relative;
text-decoration: none; }
@media all and (min-width: 800px) {
.blog {
display: flex;
flex-direction: column;
margin-right: 2.3%;
min-height: 400px;
width: 31%; } }
.blog:active {
box-shadow: #3e94cf; }
.blog-link {
bottom: 0;
left: 0;
right: 0;
top: 0;
position: absolute; }
.blog-banner {
margin: 0;
padding: 5px 20px;
max-height: 200px;
background: none;
text-align: left; }
@media all and (min-width: 800px) {
.blog-banner {
flex: 1 0 auto; } }
.blog-image {
background-size: contain;
background-repeat: no-repeat;
background-position: center;
min-height: 200px;
width: 100%; }
.blog-description.blog-description {
color: #0071bc;
margin-top: 0; }
.blog-description p {
font-weight: normal;
margin: 0 0 10px 0;
color: grey; }
.blog-description h3 {
color: #205493;
margin-top: 5px;
font-size: 1.7rem; }
.blog-description a {
color: #205493;
text-decoration: none; }
.blog-description a:hover {
text-decoration: underline; }
.blog-summary {
font-size: 16px;
margin-bottom: 0; }
.blog-summary em {
font-style: normal; }
a.blog-read {
color: #fff; }
.blog-read {
color: #fff !important;
display: block;
margin: 0 auto;
/* display: static;*/
width: 100px !important;
text-align: center;
float: none;
color: #0071bc;
text-transform: uppercase;
padding: 5px;
font-size: 1.4rem;
font-weight: 600;
text-decoration: none; }
.blog-read:visited {
color: #fff; }
.blog-read svg {
display: inline-block;
height: 1.2rem;
margin-bottom: -1px;
width: 1.2rem;
margin-left: 4px; }
.view-all button {
background: #205493;
float: none;
display: block;
margin: 0 auto; }
#main section.usa-grid.usa-section h2 {
text-align: center;
width: 100%;
float: none;
margin: 0 auto 20px auto; }
.post-container {
max-width: 1200px; }
.post-container span {
width: 100%; }
.author-date {
margin: 20px 0 20px 0;
border-bottom: 1px solid #cdcdcd; }
.author-date p.by {
margin-bottom: 5px;
font-weight: bold; }
.author-date p.date {
margin-top: 0; }
.blog-sidebar ul {
padding: 0px; }
.blog-sidebar ul li {
list-style: none;
background: url("../../assets/img/bullet.png") no-repeat 5px 10px;
padding: 0 0 0 20px;
margin: 0 0 10px 0; }
.blog-sidebar h3 {
border-bottom: 1px solid #cdcdcd;
margin: 0 0 10px 0;
padding: 0 0 10px 0; }
@media (min-width: 0) and (max-width: 768px) {
.blog-sidebar {
margin: 40px 0 0 0 !important;
float: left; } }
.page-blog h2 {
margin-top: 0; }
.page-blog h2 a {
text-decoration: none;
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif; }
.page-blog h2 a:hover {
text-decoration: underline; }
.page-blog .meta ul {
padding: 0; }
.page-blog .meta ul li {
list-style: none; }
.page-blog .usa-width-one-whole {
border-bottom: 1px solid #cdcdcd;
margin-bottom: 30px;
float: left;
padding: 0 0 40px 0; }
.page-blog .usa-width-one-whole:last-child {
border: 0; }
.page-blog main img {
border: 1px solid #cdcdcd; }
.page-blog .readmore a.more-link {
margin: 15px auto 0 auto;
color: #fff;
float: right;
text-transform: uppercase;
background: #205493;
padding: 10px;
font-size: 1.4875rem;
font-weight: bold;
text-decoration: none; }
.pagination ul li {
list-style: none;
display: inline; }
.pagination a, .pagination span {
padding: 7px 18px;
margin-left: -2px;
margin-right: -2px;
background-color: #ffffff;
display: inline-block; }
.pagination a:hover {
color: #333; }
section.pagination {
text-align: center;
margin: 0 auto;
float: none;
padding: 0; }
.status {
text-align: center;
float: left;
width: 33%; }
.previous {
float: left;
width: 33%;
display: table; }
.previous a.link-arrow-left {
float: left;
text-align: left;
vertical-align: middle;
display: table-cell;
line-height: 50px; }
.previous a.link-arrow-left img {
border: none;
margin: 15px 5px 15px 0;
float: left; }
.next {
float: right;
width: 33%;
display: table; }
.next a.link-arrow-right {
float: right;
text-align: right;
vertical-align: middle;
display: table-cell;
line-height: 50px; }
.next a.link-arrow-right img {
border: none;
margin: 15px 0 15px 5px;
float: right; }
@media (min-width: 0px) and (max-width: 580px) {
section.pagination {
max-width: 200px;
margin: 0 auto;
float: none; }
.status {
text-align: center;
float: none;
width: 100%; }
.previous {
float: left;
width: 100%;
display: table; }
.previous a.link-arrow-left {
float: left;
text-align: left;
width: 100%;
vertical-align: middle;
display: table-cell;
line-height: 50px; }
.previous a.link-arrow-left img {
border: none;
margin: 15px 5px 15px 0;
float: left; }
.next {
float: right;
width: 100%;
display: table; }
.next a.link-arrow-right {
float: right;
text-align: right;
width: 100%;
vertical-align: middle;
display: table-cell;
line-height: 50px; }
.next a.link-arrow-right img {
border: none;
margin: 15px 0 15px 5px;
float: right; } }
.page-blog .page--banner {
width: 100%; }
.page-blog .page--banner img {
width: 100%;
margin: auto; }
table {
width: 100%; }
table th {
background: #205493 !important;
border: 1px solid #112e51 !important;
font-weight: bold !important;
color: #fff;
cursor: pointer; }
table td {
border: 1px solid #cdcdcd; }
table .th-2 {
background: #dadada;
font-weight: bold; }
table .th-3 {
background: #f5f5f5;
font-style: italic; }
table .icon-text {
color: #205493;
text-align: center;
margin: 0; }
table a.icon-link {
text-decoration: none; }
table a.icon-link:hover {
text-decoration: underline; }
table svg {
width: 100% !important;
height: 30px !important;
cursor: pointer; }
table svg:hover {
color: #205493; }
.fa-file-pdf {
color: #E41C3f; }
.fa-file-excel {
color: green; }
.fa-file-word {
color: #112e51; }
.fa-globe {
color: #205493; }
@media (min-width: 0px) and (max-width: 580px) {
table {
font-size: 3vw; }
table td {
padding: 5px; } }
.usa-mobile_nav-active input[type=checkbox] {
/* hide native checkbox */
position: absolute;
opacity: 0; }
.usa-mobile_nav-active label, .cd-accordion-menu a {
position: relative;
display: block;
padding: 18px 18px 18px 64px;
background: #4d5158;
box-shadow: inset 0 -1px #555960;
color: #ffffff;
font-size: 1.6rem; }
.usa-mobile_nav-active ul {
/* by default hide all sub menus */ }
.usa-mobile_nav-active ul li {
padding: 10px;
border-bottom: 1px solid #112e51; }
.usa-mobile_nav-active ul li a {
padding: 0; }
.usa-mobile_nav-active ul li a:hover {
border: none; }
.usa-mobile_nav-active ul:hover {
border: none; }
.usa-mobile_nav-active input[type=checkbox]:checked + label + ul,
.usa-mobile_nav-active input[type=checkbox]:checked + label:nth-of-type(n) + ul {
/* use label: nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
/* show children when item is checked */
display: block; }
.usa-mobile_nav-active .sub-menu {
display: none;
float: left;
overflow: hidden;
width: 270px;
padding: 0px;
position: static;
top: 0;
margin-bottom: -10px;
margin-left: -10px;
left: 0;
z-index: 1;
opacity: 1;
transition: opacity linear 0.15s;
background: #112e51; }
.usa-mobile_nav-active .sub-menu li {
color: #fff;
font-size: 1.1em; }
.usa-mobile_nav-active .sub-menu li:active {
background: #205493; }
.usa-mobile_nav-active .parent {
padding: 10px !important;
display: inline-block;
float: left;
overflow: hidden; }
.usa-mobile_nav-active .plus-minus.plus {
float: right;
width: 20px;
height: 20px;
margin-left: 0px;
border-left: 1px solid #112e51; }
.usa-mobile_nav-active .plus-minus.minus {
width: 20px;
height: 20px;
float: right;
margin-left: 0px;
border-left: 1px solid #112e51; }
.usa-mobile_nav-active .plus-minus.plus:after {
content: '+' !important;
/* Unicode character for "plus" sign (+) */
font-size: 16px;
color: #fff !important;
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
padding-left: 10px; }
.usa-mobile_nav-active .plus-minus.minus:after {
content: '-';
/* Unicode character for "minus" sign (+) */
font-size: 16px;
color: #fff !important;
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
padding-left: 10px; }
button.usa-menu-btn {
height: 50px;
float: left;
font-size: 2em;
background: none;
color: #cdcdcd;
border: 2px solid #cdcdcd;
margin: 10px 0 0 0; }
.usa-mobile_nav-active .parent {
text-transform: uppercase;
margin-left: 0;
width: 100% !important;
color: #fff !important;
border-bottom: 1px solid #112e51 !important; }
.usa-mobile_nav-active .parent a {
color: #fff; }
.usa-mobile_nav-active .parent:hover {
border: none; }
.usa-mobile_nav-active ul.usa-nav-primary.usa-accordion {
float: left; }
.usa-mobile_nav-active {
display: block;
z-index: 99;
margin: 0 auto;
width: 100%; }
.usa-mobile_nav-active li {
list-style: none;
margin: 0 auto;
float: left;
width: 100%;
font-size: .9em; }
.usa-mobile_nav-active ul {
padding: 0px; }
.usa-mobile_nav-active ul li a {
display: block;
text-decoration: none;
text-align: left;
margin: 0;
float: left;
font-weight: bold;
color: #fff; }
.usa-mobile_nav-active ul li a:hover {
background: none;
border: none; }
.usa-mobile_nav-active nav.usa-nav {
background: #205493;
border: none;
padding: 0; }
.usa-nav-primary > li {
border-top: none; }
button.usa-nav-close {
margin: 0; } | img/Templates _ FedRAMP.gov_files/main.css | body,
p, ul, ol, li, a {
color: #212121;
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif; }
#main p {
min-width: 100%;
orphans: 3; }
legend, label,
h1, h2, h3, h4, h5, h6 {
color: #205493;
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif; }
h6 {
font-weight: bold;
text-transform: none; }
.usa-section-dark legend, .usa-section-dark label,
.usa-section-dark h1, .usa-section-dark h2, .usa-section-dark h3, .usa-section-dark h4, .usa-section-dark h5, .usa-section-dark h6,
.usa-section-dark p {
color: #ffffff; }
legend,
h1, h2, h3, h4, h5, h6 {
margin-bottom: 20px; }
ul, li {
margin-bottom: 0; }
form {
max-width: 100%; }
a {
color: #0071bc; }
a:hover {
color: #205493; }
a:active {
color: #0071bc; }
a:visited {
color: #0071bc; }
#main:focus {
outline: none; }
@media (min-width: 600px) {
.usa-width-one-whole.usa-section {
position: relative;
left: 50%;
max-width: 62.5rem;
margin-left: -31.25rem; } }
.usa-grid {
max-width: 1200px;
padding-right: 0;
padding-left: 0; }
@media (min-width: 0px) and (max-width: 1200px) {
.usa-grid {
padding-right: 5%;
padding-left: 5%; } }
#main .page-banner, body .page-banner {
background: #112e51;
padding: 50px 0; }
#main .page-banner h1, body .page-banner h1 {
color: #fff;
width: 100%;
max-width: 1200px;
margin: 0 auto; }
@media (min-width: 0px) and (max-width: 1200px) {
#main .page-banner, body .page-banner {
padding-right: 5%;
padding-left: 5%; } }
.about-us section#about {
margin: 0 auto;
max-width: 1200px;
width: 100%;
padding: 60px 0; }
.about-us section#about:after {
content: '';
clear: both;
display: table; }
section#fedramp-numbers {
margin: 0 auto;
max-width: 1200px;
width: 100%;
float: none;
padding: 60px 0; }
section#fedramp-numbers h2 {
margin-top: 0;
text-align: center; }
section#fedramp-numbers:after {
content: '';
clear: both;
display: table; }
section#fedramp-mission {
width: 100%;
padding: 60px 0;
background: #205493;
color: #fff; }
section#fedramp-mission .inner {
margin: 0 auto;
max-width: 1200px;
width: 100%; }
section#fedramp-mission .inner h2 {
margin-top: 0;
color: #fff;
text-align: center; }
section#fedramp-mission .inner ul {
column-count: 2;
column-gap: 40px; }
section#fedramp-mission .inner ul li {
color: #fff;
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid; }
.about-us #about .image-container {
max-width: 50%;
float: left;
text-align: center; }
.about-us #fedramp-numbers .image-container {
max-width: 100%;
float: left;
text-align: center; }
.about-us #about .text-container {
max-width: 50%;
float: left;
text-align: left;
padding: 0 0 0 40px; }
.about-us #fedramp-numbers .text-container {
max-width: 100%;
float: left;
text-align: left;
padding: 40px 0 0 0; }
.cloud .text-container {
max-width: 1200px;
width: 100%;
float: none;
margin: 0 auto;
text-align: left;
padding: 0 0 40px 0; }
.cloud .text-container h2:first-child {
margin-top: 0; }
@media (min-width: 0px) and (max-width: 1200px) {
.cloud .text-container {
padding: 0 5% 40px 5%; } }
.about-us section.about-auth {
background: #205493;
width: 100%;
float: left;
color: #fff;
padding: 60px 0; }
.about-us section.about-auth .inner {
max-width: 1200px;
margin: 0 auto; }
.about-us section.about-auth .inner h2 {
text-align: center;
color: #fff;
margin-top: 0; }
.about-us section.about-auth .inner p {
color: #fff;
text-align: center; }
.about-us section.about-auth .inner p a {
color: #fff; }
.about-us #fedramp-numbers .column-1, .about-us #fedramp-numbers .column-2 {
width: 50%;
float: left; }
@media (min-width: 0) and (max-width: 768px) {
.about-us #fedramp-numbers .column-1, .about-us #fedramp-numbers .column-2 {
width: 100%;
float: left; }
.about-us section.about-auth {
padding: 60px 5%; } }
.about-us #fedramp-numbers img.one {
width: 50%;
float: left; }
.about-us #fedramp-numbers img.two {
width: 50%;
float: left; }
.about-us #fedramp-numbers img.three {
width: 100%;
float: left;
clear: left; }
.about-us #fedramp-numbers img.four {
width: 100%;
float: right;
top: 0;
position: relative; }
.usa-width-three-fourths {
width: 74.4%;
padding-right: 60px;
margin: 0;
box-sizing: border-box; }
.usa-width-one-fourth {
width: 25%; }
@media (min-width: 0) and (max-width: 768px) {
.usa-width-three-fourths {
width: 100%;
padding: 0; }
.usa-width-one-fourth {
width: 100%; } }
@media (min-width: 0px) and (max-width: 1200px) {
.about-us section#about {
padding-left: 5%;
padding-right: 5%; }
.about-us section#fedramp-mission {
padding: 60px 5%; } }
@media (min-width: 0px) and (max-width: 768px) {
.about-us section#about {
padding-left: 5%;
padding-right: 5%; }
.about-us #about .text-container {
max-width: 100%;
float: left;
text-align: left;
padding: 0; }
.about-us #about .image-container {
max-width: 100%;
float: left;
text-align: center; }
.about-us section#fedramp-mission {
width: 100%;
padding: 60px 5%;
background: #205493;
color: #fff; }
.about-us section#fedramp-mission .inner ul {
column-count: 1; } }
#searchgovform button#searchgovbutton,
#searchgovform #searchgovbutton
#searchgovform [type="submit"] {
background-color: #112E51; }
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
background-color: #fff;
color: #fff;
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
margin-bottom: 20px;
margin-top: 20px;
text-transform: uppercase; }
.usa-button:hover,
.usa-button-primary:hover,
.usa-button:visited:hover,
.usa-button-primary:visited:hover,
button:hover,
[type="button"]:hover,
[type="submit"]:hover,
[type="reset"]:hover,
[type="button"]:hover,
[type="submit"]:hover,
[type="reset"]:hover,
[type="image"]:hover {
background-color: #205493; }
@media (max-width: 500px) {
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
width: auto; } }
@media all and (min-width: 951px) {
.usa-header-basic .usa-navbar {
width: 30%; } }
.usa-nav-primary a:hover {
color: #112e51; }
.usa-nav-link:hover span {
border-bottom-color: #112e51; }
.usa-nav ul li.parent {
border: none;
color: #212121;
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
line-height: 1.3;
padding: 1.4rem 1.5rem 1rem 1.8rem;
text-decoration: none;
font-weight: bold;
cursor: pointer;
width: auto;
color: #5b616b;
font-size: 1.3rem; }
.usa-nav ul li.parent:hover {
color: #112e51; }
.usa-sidenav-list a.usa-current {
border-left: 4px solid #112e51;
color: #112e51; }
.usa-sidenav-list a {
color: #212121; }
.usa-sidenav-list a:hover {
color: #112e51; }
.center-content {
text-align: center; }
.home .usa-width-one-whole > p {
font-size: 20px;
line-height: 1.7; }
.hero-unit {
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
min-height: 32em;
position: relative; }
.hero-content {
background-color: rgba(33, 33, 33, 0.4);
margin: 0px auto;
padding: 40px;
text-align: center;
width: 100%; }
.hero-content h1 {
color: white;
font-size: 28px;
font-weight: 400;
line-height: 50px;
margin-top: 0;
margin-bottom: 0;
padding-left: .3em;
padding-right: .3em; }
.hero-content .usa-button {
font-size: 18px;
line-height: 30px; }
.hero-content p {
color: #fff; }
.home .hero-unit {
background-image: url("../../assets/img/home-hero-unit.png") !important;
background-attachment: fixed;
padding: 130px 0; }
@medi (max-width: 750px) {
.hero-content {
background-color: rgba(33, 33, 33, 0.4);
margin: 0px auto;
padding: 40px;
text-align: center;
width: 100%; }
.hero-content h1 {
color: white;
font-size: 36px;
font-weight: 400;
line-height: 50px;
margin-top: 0;
margin-bottom: 0;
padding-left: .3em;
padding-right: .3em; }
.hero-content .usa-button {
font-size: 22px;
line-height: 30px; }
.hero-content p {
color: #fff; } }
iframe {
margin-left: 25%;
width: 50%; }
@media (max-width: 800px) {
iframe {
margin-left: 10%;
width: 80%; } }
@media (max-width: 500px) {
iframe {
margin-left: 0;
width: 95%; } }
@media (max-width: 321px) {
iframe {
min-height: 4rem;
width: 100%; } }
.page--banner {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
width: 100%; }
.caption {
float: right; }
#main .page-banner h1, body .page-banner h1 {
font-size: 28px; }
section#pre-auth, section#during-auth, section#post-auth, section#support, section#do-once {
padding: 0 0 40px 130px;
margin: 0 0 40px 0;
min-height: 105px;
background-size: 100px !important;
border-bottom: 1px solid #cdcdcd;
background-repeat: no-repeat; }
section#conmon, section#control, section#req {
background-size: 115px !important; }
section#rar, section#do-once {
border: none !important; }
.q1, .q2, .q3, .q4, .q5, .tip-1 {
margin: 0 0 40px 0;
border-bottom: 1px solid #cdcdcd; }
.q1 h3, .q2 h3, .q3 h3, .q4 h3, .q5 h3, .tip-1 h3 {
padding: 0 0 0 100px;
margin: 0 0 15px 0;
background-size: 100px !important;
background-repeat: no-repeat;
min-height: 80px;
background-position: -13px -13px; }
.q5 {
border: none; }
@media (min-width: 0px) and (max-width: 580px) {
section#pre-auth, section#during-auth, section#post-auth, section#do-once, section#support, section#welcome, section#ssp, section#sap, section#conmon, section#control, section#req, section#sap-guidance, section#sar-report, section#sar-guidance, section#procedures, section#method, section#sar-tables, section#rar, .q1, .q2, .q3, .q4, .q5, .tip-1 {
background-position: center top;
background-repeat: no-repeat; }
.q1, .q2, .q3, .q4, .q5, .tip-1 {
background-size: 100px !important; }
section#pre-auth, section#during-auth, section#post-auth, section#do-once, section#support, section#welcome, section#ssp, section#sap, section#conmon, section#control, section#req, section#sap-guidance, section#sar-report, section#sar-guidance, section#procedures, section#method, section#sar-tables, section#rar {
background-size: 100px !important; }
section#pre-auth, section#during-auth, section#post-auth, section#do-once, section#support {
padding: 100px 0 40px 0; } }
#jan-5, #dec-20 {
border-bottom: 1px solid #cdcdcd; }
.q1 h3, .q2 h3, .q3 h3, .q5 h3 {
background-image: url("../../assets/img/project-images/cloudserv-icon.png"); }
.q4 h3, .tip-1 h3 {
background-image: url("../../assets/img/project-images/assessor-icon.png"); }
section#pre-auth {
background-image: url("../../assets/img/pre-auth.png"); }
section#during-auth {
background-image: url("../../assets/img/during-auth.png"); }
section#post-auth {
background-image: url("../../assets/img/post-auth.png"); }
section#support {
background-image: url("../../assets/img/support.png");
border: none; }
section#do-once {
background-image: url("../../assets/img/do-once.png");
border: none; }
#path-one h2 {
background-image: url("../../assets/img/stakeholders.png");
background-size: 80px;
margin-left: 0;
background-position: left top;
background-repeat: no-repeat;
min-height: 100px;
border-bottom: 1px solid #cdcdcd;
padding: 20px 0 20px 100px; }
#path-two h2 {
background-image: url("../../assets/img/cloudserv-icon.png");
background-size: 100px;
background-position: -10px -15px;
margin-left: 0;
background-repeat: no-repeat;
min-height: 100px;
border-bottom: 1px solid #cdcdcd;
padding: 20px 0 20px 100px; }
#path-three h2 {
background-image: url("../../assets/img/project-images/assessor-icon.png");
background-size: 100px;
margin-left: 0;
background-repeat: no-repeat;
background-position: -5px -15px;
min-height: 100px;
padding: 20px 0 20px 100px;
border-bottom: 1px solid #cdcdcd; }
#path-one h3, #path-two h3, #path-three h3 {
padding: 0 0 15px 30px;
box-sizing: border-box;
width: 100%;
float: left;
margin-left: 0; }
#path-one .panel, #path-two .panel, #path-three .panel {
padding: 0 0 20px 40px; }
#path-one .panel p:first-of-type, #path-two .panel p:first-of-type, #path-three .panel p:first-of-type {
margin: 0; }
.accordion {
cursor: pointer;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
background: none;
text-transform: none;
margin: 10px 0 10px 35px; }
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
/* Style the accordion panel. Note: hidden by default */
.panel {
background-color: white;
display: none;
overflow: hidden; }
.accordion:before {
content: '\02795';
/* Unicode character for "plus" sign (+) */
font-size: 13px;
color: #fff;
float: left;
margin-left: -30px; }
.active:before {
content: "\2796";
/* Unicode character for "minus" sign (-) */ }
.assessors-page section#post-auth {
border: none;
margin: 0;
padding-bottom: 0; }
.page-faqs .question {
padding: 15px 0;
border-bottom: 1px solid #cdcdcd; }
.page-faqs .question p {
padding: 0 0 0 40px; }
.page-faqs .question ul {
padding: 0 0 0 80px; }
.page-faqs .question h6 {
padding: 0 0 0 40px; }
.page-faqs .question:last-of-type {
border: none; }
@media (min-width: 650px) {
#main .page-banner h1, body .page-banner h1 {
font-size: 42px; } }
.cloud .cloud-wrapper {
max-width: 1000px;
width: 100%;
margin: 100px auto 40px auto;
text-align: center; }
.cloud .cloud-wrapper ul.columns {
background: url("../../assets/img/page-images/cloud-bkgrnd.png") no-repeat bottom;
width: 100%;
margin: 0 auto;
float: none;
display: flex;
justify-content: space-around;
flex-flow: row wrap;
padding: 0 3% 40px 3%; }
.cloud .cloud-wrapper ul.columns li.column {
width: 220px;
list-style: none;
margin: -30px auto auto auto;
background: #fff;
border: 2px solid;
padding: 15px;
box-sizing: border-box;
min-height: 250px; }
.cloud .cloud-wrapper ul.columns li.column img {
margin-top: -50px; }
.cloud .cloud-wrapper ul.columns #cloud-service {
border-color: #9ddaf3; }
.cloud .cloud-wrapper ul.columns #value-add {
border-color: #4dc4e0; }
.cloud .cloud-wrapper ul.columns #managed-service {
border-color: #4dc4e0; }
.cloud .cloud-wrapper ul.columns #integrator {
border-color: #1eadd7; }
.cloud .cloud-wrapper span.owned {
font-weight: bold;
float: left;
position: relative;
top: 150px;
left: -50px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }
.cloud .cloud-wrapper span.operated {
font-weight: bold;
float: right;
position: relative;
top: -150px;
right: -50px;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }
@media (min-width: 0) and (max-width: 980px) {
.cloud .cloud-wrapper {
margin: 100px auto 40px auto;
width: 80%; }
.cloud .cloud-wrapper ul.columns {
background: url("../../assets/img/page-images/cloud-bkgrnd.png") no-repeat bottom;
background-size: cover;
width: 100%;
margin: 0;
float: none;
display: flex;
justify-content: space-around;
flex-flow: row wrap;
padding: 0 3% 40px 3%;
box-sizing: border-box;
border-radius: 20px; }
.cloud .cloud-wrapper ul.columns li.column {
width: 200px;
list-style: none;
margin: 30px auto;
background: #fff;
border: 2px solid;
padding: 15px;
box-sizing: border-box;
min-height: 300px; }
.cloud .cloud-wrapper ul.columns li.column img {
margin-top: 0px; } }
@media screen and (min-width: 600px) {
.project-container {
display: flex;
flex-wrap: wrap;
width: 102.5%; } }
.card {
display: block;
text-align: center;
margin-bottom: 3rem;
padding-bottom: 3rem;
position: relative;
text-decoration: none; }
@media all and (min-width: 1024px) {
.card {
display: flex;
flex-direction: column;
margin-right: 2.3%;
min-height: 450px;
width: 31%; } }
.card:active {
box-shadow: #3e94cf; }
.card-link {
bottom: 0;
left: 0;
right: 0;
top: 0;
position: absolute; }
.card-banner {
margin: 3rem; }
@media all and (min-width: 800px) {
.card-banner {
flex: 1 0 auto; } }
.card-image {
background-size: 70%;
background-repeat: no-repeat;
background-position: center;
min-height: 200px;
width: 100%; }
.card-banner {
color: #205493;
margin-top: 0; }
.card-banner a {
text-decoration: none; }
.card-banner a:hover {
text-decoration: underline; }
.card-summary {
font-size: 16px;
margin-bottom: 0; }
.card-summary em {
font-style: normal; }
a.card-read {
color: #fff; }
.card-read {
margin: 0 auto;
color: #0071bc;
width: 40%;
text-transform: uppercase;
background: #205493;
padding: 10px;
font-size: 1.4875rem;
font-weight: bold;
text-decoration: none; }
.card-read:visited {
color: #fff; }
.card-read svg {
display: inline-block;
height: 1.2rem;
margin-bottom: -1px;
width: 1.2rem;
margin-left: 4px; }
#main section.usa-grid.usa-section h2 {
text-align: center;
width: 100%;
float: none;
margin: 0 auto 20px auto; }
.usa-banner-header .usa-banner-inner > img {
padding-top: 3px; }
.banner.tagline {
background-color: #112e51;
padding: 40px 0; }
.banner.tagline .usa-grid {
padding: 3rem; }
.banner.tagline p {
color: #fff;
text-align: center; }
.banner.tagline h2 {
color: #fff;
margin-top: 75px;
text-align: center; }
.banner.contact {
background-color: #112e51; }
.banner.contact form {
padding-top: 2em; }
.banner.contact h2,
.banner.contact p,
.banner.contact legend,
.banner.contact label,
.banner.contact a,
.banner.contact a:hover,
.banner.contact a:visited {
color: #fff; }
.banner .usa-button,
.banner .usa-button-primary,
.banner .usa-button:visited,
.banner .usa-button-primary:visited,
.banner button,
.banner [type="button"],
.banner [type="submit"],
.banner [type="reset"] {
background-color: #dce4ef;
color: #112e51;
text-transform: uppercase;
font-size: 1.4rem; }
footer {
float: left;
width: 100%; }
footer p {
color: #112e51 !important; }
.usa-footer-primary-section {
background-color: #f1f1f1; }
.usa-footer-secondary_section {
background-color: #d6d7d9;
padding: 60px 0; }
footer p,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer a,
footer a:hover,
footer a:visited {
color: #212121; }
.usa-footer-logo p {
font-size: .7em;
width: auto; }
.usa-footer .logo-container {
max-width: 200px;
text-align: center; }
.usa-footer .logo-container img {
margin: 0 auto;
float: none;
max-width: 100px; }
form#contact p, address p, .footer-social p {
font-weight: bold; }
.footer-social, address {
margin: 20px 0 0 0; }
.footer-social p, address p {
margin: 0 0 5px 0;
color: #112e51; }
.footer-social a, address a {
color: #205493 !important; }
.footer-social a:hover, address a:hover {
color: #112E51; }
.footer-social a.usa-link-twitter img {
fill: #205493; }
address p:last-of-type, address p {
margin: 0; }
.usa-grid #contact {
text-align: center; }
.usa-grid #contact div.usa-width-one-half {
width: 100%; }
.usa-grid #contact div.usa-width-one-half input {
margin: 30px auto; }
.newsletter-footer {
float: left;
margin: 0;
width: 31%; }
.newsletter-footer input {
margin: 0 auto;
background: #205493;
font-size: 1.4rem; }
.usa-footer-secondary_section .footer-social, .usa-footer-secondary_section address {
float: right;
text-align: center;
width: 200px;
clear: both; }
@media (min-width: 0px) and (max-width: 580px) {
.usa-footer-secondary_section .footer-social, .usa-footer-secondary_section address {
float: none;
text-align: center;
width: 100%; }
.newsletter-footer {
float: none;
width: 100%; }
.usa-footer .logo-container {
max-width: 100%; }
.usa-footer-contact-links, .usa-footer .newsletter-footer {
text-align: center;
padding: 20px 0 0 0; } }
.usa-footer-secondary_section .footer-social a {
margin: 0 auto;
position: static;
color: #205493 !important; }
.copyright {
padding: 5px 0;
background: #112e51;
text-align: center;
color: #fff;
font-size: 1.2rem; }
.page-team .usa-graphic_list .usa-media_block {
margin-bottom: 6rem; }
@media all and (min-width: 800px) {
.page-team .usa-graphic_list .usa-media_block {
margin-right: 0;
width: 50%; } }
.page-team .usa-graphic_list h3 {
margin: 0; }
.page-team .usa-graphic_list h3 a {
text-decoration: none; }
.page-team .usa-graphic_list h3 a:hover {
text-decoration: underline; }
.page-team .usa-graphic_list p {
margin: 0;
color: #757575; }
.team-image {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius: 75px;
height: 124px;
width: 124px; }
.page-team-single h2 {
text-align: left !important;
margin: 0 !important; }
.page-team-single p.title {
font-size: 1.2em;
color: #757575;
margin-top: 0; }
.page-team-single .team-image {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius: 75px;
height: 270px;
width: 270px;
border-radius: 150px; }
.page-team main {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 60px 0;
content: '';
clear: both;
display: table; }
.page-team-single .usa-width-one-third {
text-align: center; }
@media (min-width: 0) and (max-width: 1200px) {
.usa-graphic_list {
margin: 0 5%; } }
@media (min-width: 0) and (max-width: 768px) {
.usa-media_block {
width: 100%;
clear: both;
float: left; } }
/** SEARCH FEATURE **/
.search-feature {
margin: 20px 40px; }
.search-feature .usa-header .usa-search {
max-width: 40rem;
width: 50rem; }
.search-feature .usa-button, .search-feature .usa-button-primary, .search-feature .usa-button:visited, .search-feature .usa-button-primary:visited, .search-feature button, .search-feature [type="button"], .search-feature [type="submit"], .search-feature [type="reset"], .search-feature [type="image"] {
font-size: 1.2rem; }
div.usa-nav-container {
height: 170px;
width: 100%;
max-width: 1200px;
vertical-align: middle;
padding: 60px 0;
box-sizing: border-box; }
@media (min-width: 0px) and (max-width: 951px) {
div.usa-nav-container {
padding: 20px 5%;
margin: 0;
height: 120px; } }
div.usa-navbar {
float: left !important;
height: 100px;
border: 0;
width: 100%; }
div.usa-navbar:after {
content: '';
display: table;
clear: both; }
nav.usa-nav {
padding: 20px 0;
float: right; }
nav.usa-nav ul li {
text-transform: uppercase; }
nav.usa-nav ul li:focus {
outline: none; }
@media (min-width: 951px) and (max-width: 1200px) {
.usa-nav-container {
padding-top: 30px; }
.usa-navbar {
position: relative;
top: -30px;
left: 30px; }
.usa-nav-primary.usa-accordion {
margin: 0 15% !important; } }
#logo em.usa-logo-text {
float: left; }
#logo em.usa-logo-text a {
float: left; }
div#logo.usa-logo {
float: left;
max-width: 300px;
min-width: 290px; }
@media (min-width: 375px) and (max-width: 768px) {
div#logo.usa-logo {
max-width: 260px;
min-width: 190px;
margin-top: 10px; }
div#logo.usa-logo img {
width: 100%;
height: auto; } }
@media (min-width: 0px) and (max-width: 360px) {
div#logo.usa-logo {
max-width: 210px;
min-width: 150px; }
div#logo.usa-logo img {
width: 100%;
height: auto; }
.usa-banner-header img {
margin-right: 9px; } }
header.usa-banner-header {
height: 30px;
padding: 5px 0; }
.menu-wrap {
width: 100%;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
background: #3e3436; }
.usa-nav li {
margin: 0px;
list-style: none; }
@media (min-width: 951px) and (max-width: 1200px) {
nav.usa-nav {
width: 100%;
height: 100px;
position: relative;
top: -60px;
height: 70px; } }
.usa-nav a {
transition: all linear 0.15s; }
.usa-nav li:hover > a, .usa-nav .current-item > a {
text-decoration: none; }
/*----- Top Level -----*/
.usa-nav > ul > li {
/* float:left;*/
/* display:inline-block;*/
position: relative;
/* font-size:19px;*/ }
.usa-nav > ul > li > a {
/* padding:10px 40px;*/
display: inline-block;
/* text-shadow:0px 1px 0px rgba(0,0,0,0.4);*/ }
.usa-nav > ul > li:hover > a, .usa-nav > ul > .current-item > a {
border-bottom: 5px solid #205493; }
.usa-mobile_nav-active .usa-nav > ul > li:hover > a, .usa-nav > ul > .current-item > a {
border-bottom: none; }
/*----- Bottom Level -----*/
.usa-nav li:hover .sub-menu {
z-index: 1;
opacity: 1; }
.sub-menu {
width: 175px;
padding: 0px;
position: absolute;
top: 30px;
left: 0;
z-index: -1;
opacity: 0;
transition: opacity linear 0.15s;
background: #205493; }
.usa-mobile_nav-active .sub-menu {
display: none; }
.sub-menu li {
display: block;
text-align: left; }
.sub-menu li a {
padding: 10px;
display: block;
font-size: .9em;
color: #fff; }
.sub-menu li a:hover, .sub-usa-nav .current-item a {
background: #112e51;
color: #fff; }
/** PRINT FRIENDLY **/
@media print {
html, body {
margin: 0;
padding: 0;
background: #FFF;
font-size: 9.5pt; }
.container, .container div {
width: 100%;
margin: 0;
padding: 0; }
/*
.template {
overflow: hidden;
}
*/
img {
width: 100%; }
#navigation, #subnavigation {
display: none; }
h1 {
font-size: 24pt; }
h2 {
font-size: 18pt; }
h3 {
font-size: 14pt; }
p, ul, ol, dl {
/* paragraphs, unordered, ordered, and definition lists */
font-size: 12pt; }
/* Print CSS rules go here */
/* Note: You need a separate @media screen group for other rules */ }
@media screen and (min-width: 600px) {
.project-container {
display: flex;
flex-wrap: wrap;
width: 102.5%; } }
.blog {
display: block;
text-align: center;
position: relative;
text-decoration: none; }
@media all and (min-width: 800px) {
.blog {
display: flex;
flex-direction: column;
margin-right: 2.3%;
min-height: 400px;
width: 31%; } }
.blog:active {
box-shadow: #3e94cf; }
.blog-link {
bottom: 0;
left: 0;
right: 0;
top: 0;
position: absolute; }
.blog-banner {
margin: 0;
padding: 5px 20px;
max-height: 200px;
background: none;
text-align: left; }
@media all and (min-width: 800px) {
.blog-banner {
flex: 1 0 auto; } }
.blog-image {
background-size: contain;
background-repeat: no-repeat;
background-position: center;
min-height: 200px;
width: 100%; }
.blog-description.blog-description {
color: #0071bc;
margin-top: 0; }
.blog-description p {
font-weight: normal;
margin: 0 0 10px 0;
color: grey; }
.blog-description h3 {
color: #205493;
margin-top: 5px;
font-size: 1.7rem; }
.blog-description a {
color: #205493;
text-decoration: none; }
.blog-description a:hover {
text-decoration: underline; }
.blog-summary {
font-size: 16px;
margin-bottom: 0; }
.blog-summary em {
font-style: normal; }
a.blog-read {
color: #fff; }
.blog-read {
color: #fff !important;
display: block;
margin: 0 auto;
/* display: static;*/
width: 100px !important;
text-align: center;
float: none;
color: #0071bc;
text-transform: uppercase;
padding: 5px;
font-size: 1.4rem;
font-weight: 600;
text-decoration: none; }
.blog-read:visited {
color: #fff; }
.blog-read svg {
display: inline-block;
height: 1.2rem;
margin-bottom: -1px;
width: 1.2rem;
margin-left: 4px; }
.view-all button {
background: #205493;
float: none;
display: block;
margin: 0 auto; }
#main section.usa-grid.usa-section h2 {
text-align: center;
width: 100%;
float: none;
margin: 0 auto 20px auto; }
.post-container {
max-width: 1200px; }
.post-container span {
width: 100%; }
.author-date {
margin: 20px 0 20px 0;
border-bottom: 1px solid #cdcdcd; }
.author-date p.by {
margin-bottom: 5px;
font-weight: bold; }
.author-date p.date {
margin-top: 0; }
.blog-sidebar ul {
padding: 0px; }
.blog-sidebar ul li {
list-style: none;
background: url("../../assets/img/bullet.png") no-repeat 5px 10px;
padding: 0 0 0 20px;
margin: 0 0 10px 0; }
.blog-sidebar h3 {
border-bottom: 1px solid #cdcdcd;
margin: 0 0 10px 0;
padding: 0 0 10px 0; }
@media (min-width: 0) and (max-width: 768px) {
.blog-sidebar {
margin: 40px 0 0 0 !important;
float: left; } }
.page-blog h2 {
margin-top: 0; }
.page-blog h2 a {
text-decoration: none;
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif; }
.page-blog h2 a:hover {
text-decoration: underline; }
.page-blog .meta ul {
padding: 0; }
.page-blog .meta ul li {
list-style: none; }
.page-blog .usa-width-one-whole {
border-bottom: 1px solid #cdcdcd;
margin-bottom: 30px;
float: left;
padding: 0 0 40px 0; }
.page-blog .usa-width-one-whole:last-child {
border: 0; }
.page-blog main img {
border: 1px solid #cdcdcd; }
.page-blog .readmore a.more-link {
margin: 15px auto 0 auto;
color: #fff;
float: right;
text-transform: uppercase;
background: #205493;
padding: 10px;
font-size: 1.4875rem;
font-weight: bold;
text-decoration: none; }
.pagination ul li {
list-style: none;
display: inline; }
.pagination a, .pagination span {
padding: 7px 18px;
margin-left: -2px;
margin-right: -2px;
background-color: #ffffff;
display: inline-block; }
.pagination a:hover {
color: #333; }
section.pagination {
text-align: center;
margin: 0 auto;
float: none;
padding: 0; }
.status {
text-align: center;
float: left;
width: 33%; }
.previous {
float: left;
width: 33%;
display: table; }
.previous a.link-arrow-left {
float: left;
text-align: left;
vertical-align: middle;
display: table-cell;
line-height: 50px; }
.previous a.link-arrow-left img {
border: none;
margin: 15px 5px 15px 0;
float: left; }
.next {
float: right;
width: 33%;
display: table; }
.next a.link-arrow-right {
float: right;
text-align: right;
vertical-align: middle;
display: table-cell;
line-height: 50px; }
.next a.link-arrow-right img {
border: none;
margin: 15px 0 15px 5px;
float: right; }
@media (min-width: 0px) and (max-width: 580px) {
section.pagination {
max-width: 200px;
margin: 0 auto;
float: none; }
.status {
text-align: center;
float: none;
width: 100%; }
.previous {
float: left;
width: 100%;
display: table; }
.previous a.link-arrow-left {
float: left;
text-align: left;
width: 100%;
vertical-align: middle;
display: table-cell;
line-height: 50px; }
.previous a.link-arrow-left img {
border: none;
margin: 15px 5px 15px 0;
float: left; }
.next {
float: right;
width: 100%;
display: table; }
.next a.link-arrow-right {
float: right;
text-align: right;
width: 100%;
vertical-align: middle;
display: table-cell;
line-height: 50px; }
.next a.link-arrow-right img {
border: none;
margin: 15px 0 15px 5px;
float: right; } }
.page-blog .page--banner {
width: 100%; }
.page-blog .page--banner img {
width: 100%;
margin: auto; }
table {
width: 100%; }
table th {
background: #205493 !important;
border: 1px solid #112e51 !important;
font-weight: bold !important;
color: #fff;
cursor: pointer; }
table td {
border: 1px solid #cdcdcd; }
table .th-2 {
background: #dadada;
font-weight: bold; }
table .th-3 {
background: #f5f5f5;
font-style: italic; }
table .icon-text {
color: #205493;
text-align: center;
margin: 0; }
table a.icon-link {
text-decoration: none; }
table a.icon-link:hover {
text-decoration: underline; }
table svg {
width: 100% !important;
height: 30px !important;
cursor: pointer; }
table svg:hover {
color: #205493; }
.fa-file-pdf {
color: #E41C3f; }
.fa-file-excel {
color: green; }
.fa-file-word {
color: #112e51; }
.fa-globe {
color: #205493; }
@media (min-width: 0px) and (max-width: 580px) {
table {
font-size: 3vw; }
table td {
padding: 5px; } }
.usa-mobile_nav-active input[type=checkbox] {
/* hide native checkbox */
position: absolute;
opacity: 0; }
.usa-mobile_nav-active label, .cd-accordion-menu a {
position: relative;
display: block;
padding: 18px 18px 18px 64px;
background: #4d5158;
box-shadow: inset 0 -1px #555960;
color: #ffffff;
font-size: 1.6rem; }
.usa-mobile_nav-active ul {
/* by default hide all sub menus */ }
.usa-mobile_nav-active ul li {
padding: 10px;
border-bottom: 1px solid #112e51; }
.usa-mobile_nav-active ul li a {
padding: 0; }
.usa-mobile_nav-active ul li a:hover {
border: none; }
.usa-mobile_nav-active ul:hover {
border: none; }
.usa-mobile_nav-active input[type=checkbox]:checked + label + ul,
.usa-mobile_nav-active input[type=checkbox]:checked + label:nth-of-type(n) + ul {
/* use label: nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
/* show children when item is checked */
display: block; }
.usa-mobile_nav-active .sub-menu {
display: none;
float: left;
overflow: hidden;
width: 270px;
padding: 0px;
position: static;
top: 0;
margin-bottom: -10px;
margin-left: -10px;
left: 0;
z-index: 1;
opacity: 1;
transition: opacity linear 0.15s;
background: #112e51; }
.usa-mobile_nav-active .sub-menu li {
color: #fff;
font-size: 1.1em; }
.usa-mobile_nav-active .sub-menu li:active {
background: #205493; }
.usa-mobile_nav-active .parent {
padding: 10px !important;
display: inline-block;
float: left;
overflow: hidden; }
.usa-mobile_nav-active .plus-minus.plus {
float: right;
width: 20px;
height: 20px;
margin-left: 0px;
border-left: 1px solid #112e51; }
.usa-mobile_nav-active .plus-minus.minus {
width: 20px;
height: 20px;
float: right;
margin-left: 0px;
border-left: 1px solid #112e51; }
.usa-mobile_nav-active .plus-minus.plus:after {
content: '+' !important;
/* Unicode character for "plus" sign (+) */
font-size: 16px;
color: #fff !important;
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
padding-left: 10px; }
.usa-mobile_nav-active .plus-minus.minus:after {
content: '-';
/* Unicode character for "minus" sign (+) */
font-size: 16px;
color: #fff !important;
font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
padding-left: 10px; }
button.usa-menu-btn {
height: 50px;
float: left;
font-size: 2em;
background: none;
color: #cdcdcd;
border: 2px solid #cdcdcd;
margin: 10px 0 0 0; }
.usa-mobile_nav-active .parent {
text-transform: uppercase;
margin-left: 0;
width: 100% !important;
color: #fff !important;
border-bottom: 1px solid #112e51 !important; }
.usa-mobile_nav-active .parent a {
color: #fff; }
.usa-mobile_nav-active .parent:hover {
border: none; }
.usa-mobile_nav-active ul.usa-nav-primary.usa-accordion {
float: left; }
.usa-mobile_nav-active {
display: block;
z-index: 99;
margin: 0 auto;
width: 100%; }
.usa-mobile_nav-active li {
list-style: none;
margin: 0 auto;
float: left;
width: 100%;
font-size: .9em; }
.usa-mobile_nav-active ul {
padding: 0px; }
.usa-mobile_nav-active ul li a {
display: block;
text-decoration: none;
text-align: left;
margin: 0;
float: left;
font-weight: bold;
color: #fff; }
.usa-mobile_nav-active ul li a:hover {
background: none;
border: none; }
.usa-mobile_nav-active nav.usa-nav {
background: #205493;
border: none;
padding: 0; }
.usa-nav-primary > li {
border-top: none; }
button.usa-nav-close {
margin: 0; } | 0.421314 | 0.06804 |
@import url(https://fonts.googleapis.com/css?family=Lato|M+PLUS+1p&display=swap);@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
width: 100%;
color: #224272;
background: #e4f4f4;
font-family: "M PLUS 1p", sans-serif;
font-size: 1em;
line-height: 1.6;
box-sizing: border-box;
}
a {
color: #224272;
text-decoration: none;
transition: 0.3s;
}
a:hover {
cursor: pointer;
}
.l-footer {
width: 100%;
background: #00a99d;
color: #fff;
text-align: center;
}
.l-footer p {
padding: 1%;
}
.l-header {
width: 100%;
height: 60px;
padding: 0 1.5%;
display: flex;
align-items: center;
justify-content: space-between;
position: fixed;
box-sizing: border-box;
transition: 0.3s;
z-index: 5;
}
@media screen and (max-width: 414px) {
.l-header {
padding: 0 3%;
height: 50px;
}
}
.l-header.active {
transition: 0.3s;
background: rgba(255, 255, 255, 0.9);
}
.l-header__logo {
display: flex;
align-items: center;
justify-content: flex-start;
}
.l-header__logo__text {
font-size: 35px;
margin-right: 3%;
font-weight: bold;
font-family: "Lato", sans-serif;
}
@media screen and (max-width: 414px) {
.l-header__logo__text {
font-size: 30px;
}
}
.l-header__logo__img {
width: 33px;
height: auto;
}
@media screen and (max-width: 414px) {
.l-header__logo__img {
font-size: 28px;
}
}
.l-header__nav {
display: block;
position: absolute;
top: 0;
right: -100%;
width: 400px;
height: 100vh;
padding-top: 50px;
transition: 0.5s;
background: #ffe1e1;
}
.l-header__nav.active {
transition: 0.5s;
transform: translateX(0%);
z-index: 2;
right: 0;
}
@media screen and (max-width: 768px) {
.l-header__nav {
width: 40%;
}
}
@media screen and (max-width: 414px) {
.l-header__nav {
width: 100%;
}
}
.l-header__menu__link {
display: block;
padding: 20px 0 20px 135px;
font-weight: bold;
text-align: left;
}
@media screen and (max-width: 768px) {
.l-header__menu__link {
padding: 20px 0 20px 80px;
}
}
@media screen and (max-width: 414px) {
.l-header__menu__link {
padding: 20px 0 20px 120px;
}
}
@media screen and (max-width: 320px) {
.l-header__menu__link {
padding: 20px 0 20px 90px;
}
}
.l-header__menu__link:hover {
background: #ce6c53;
}
.l-header__menu__link i {
margin-right: 20px;
}
.l-header__menu__trigger {
display: inline-block;
position: relative;
transition: all 0.4s;
box-sizing: border-box;
width: 40px;
height: 32px;
z-index: 3;
}
@media screen and (max-width: 414px) {
.l-header__menu__trigger {
width: 36px;
height: 27px;
}
}
.l-header__menu__trigger span {
display: inline-block;
transition: all 0.4s;
box-sizing: border-box;
position: absolute;
left: 0;
width: 100%;
height: 4px;
background-color: #224272;
border-radius: 4px;
}
.l-header__menu__trigger span:nth-of-type(1) {
top: 0;
}
.l-header__menu__trigger span:nth-of-type(2) {
top: 14px;
}
@media screen and (max-width: 414px) {
.l-header__menu__trigger span:nth-of-type(2) {
top: 11px;
}
}
.l-header__menu__trigger span:nth-of-type(3) {
bottom: 0;
}
.l-header__menu__trigger.active span:nth-of-type(1) {
transform: translateY(12px) rotate(-45deg);
}
@media screen and (max-width: 414px) {
.l-header__menu__trigger.active span:nth-of-type(1) {
transform: translateY(9px) rotate(-45deg);
}
}
.l-header__menu__trigger.active span:nth-of-type(2) {
opacity: 0;
}
.l-header__menu__trigger.active span:nth-of-type(3) {
transform: translateY(-15px) rotate(45deg);
}
@media screen and (max-width: 414px) {
.l-header__menu__trigger.active span:nth-of-type(3) {
transform: translateY(-14px) rotate(45deg);
}
}
.l-header__menu__trigger:hover {
cursor: pointer;
}
.l-main {
padding-top: 65px;
margin-bottom: 10%;
}
@media screen and (max-width: 414px) {
.l-main {
padding-top: 50px;
}
}
.c-btn {
border: none;
padding: 12px 20px;
font-size: 1em;
background: #00a99d;
color: #fff;
border-radius: 5px;
box-shadow: 2px 2px 6px #a9a9a9;
display: inline-block;
}
.c-btn:hover {
cursor: pointer;
}
.c-btn__primary {
background: #ce6c53;
}
.c-btn__search {
padding: 12px 15px;
}
@media screen and (max-width: 414px) {
.c-btn__search {
position: absolute;
right: 0;
bottom: 0;
}
}
.c-btn:disabled {
cursor: not-allowed;
}
.c-btn--disabled {
background: #a9a9a9;
}
.l-main__home .c-btn {
padding: 15px 80px;
margin-bottom: 5px;
font-size: 1.1em;
font-weight: bold;
}
@media screen and (max-width: 414px) {
.l-main__home .c-btn {
padding: 10px 30px;
}
}
.p-form .c-btn {
text-align: right;
float: right;
margin-top: 5%;
}
.l-main__login .c-btn {
margin-bottom: 5%;
margin-top: 0;
}
.c-add_step-btn {
width: 40px;
height: 40px;
background: #e4f4f4;
border: #224272 solid 2px;
border-radius: 30px;
display: block;
margin: 5% auto;
}
.c-add_step-btn:before,
.c-add_step-btn:after {
content: "";
display: block;
background-color: #224272;
width: 25px;
height: 2px;
position: relative;
left: -2px;
}
.c-add_step-btn:after {
transform: rotateZ(90deg);
top: -1px;
}
.c-add_step-btn:hover {
cursor: pointer;
}
.c-delete_step-btn {
width: 40px;
height: 40px;
background: #ffe1e1;
border: #ce6c53 solid 2px;
border-radius: 30px;
display: block;
margin: 5% auto 0 auto;
}
.c-delete_step-btn:before {
content: "";
display: block;
background-color: #ce6c53;
width: 25px;
height: 3px;
position: relative;
left: -2px;
}
.c-delete_step-btn:hover {
cursor: pointer;
}
.c-delete_step-btn:disabled {
cursor: not-allowed;
}
.c-two_colum {
display: flex;
justify-content: flex-start;
align-items: flex-start;
width: 90%;
margin: 3% auto;
}
@media screen and (max-width: 768px) {
.c-two_colum {
display: block;
width: 100%;
}
}
@media screen and (max-width: 414px) {
.c-two_colum {
margin: 5% auto 10% auto;
}
}
.p-hero {
text-align: center;
margin-top: 5%;
}
@media screen and (max-width: 414px) {
.p-hero {
margin-top: 10%;
}
}
.p-hero__subtitle {
font-size: 1.4em;
}
@media screen and (max-width: 768px) {
.p-hero__subtitle {
font-size: 1.3em;
}
}
@media screen and (max-width: 414px) {
.p-hero__subtitle {
font-size: 1.1em;
}
}
.p-hero__title {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 4%;
line-height: 1.2;
}
@media screen and (max-width: 414px) {
.p-hero__title {
margin-bottom: 6%;
}
}
.p-hero__title__text {
font-size: 7em;
padding-right: 1%;
}
@media screen and (max-width: 768px) {
.p-hero__title__text {
font-size: 6em;
}
}
@media screen and (max-width: 414px) {
.p-hero__title__text {
font-size: 4.5em;
}
}
.p-hero__title__img {
width: 100px;
}
@media screen and (max-width: 768px) {
.p-hero__title__img {
width: 90px;
}
}
@media screen and (max-width: 414px) {
.p-hero__title__img {
width: 65px;
}
}
.p-hero__login-link {
padding: 1% 2% 1.5% 2%;
font-weight: bold;
}
.p-hero__login-link:hover {
text-decoration: underline;
}
#describe_step {
padding-top: 70px;
}
@media screen and (max-width: 414px) {
#describe_step {
padding-top: 40px;
}
}
.p-container {
width: 90%;
margin: 5% auto 8% auto;
text-align: center;
}
@media screen and (max-width: 414px) {
.p-container {
margin: 7% auto 10% auto;
}
}
.p-container__ornament {
margin-bottom: 5%;
}
@media screen and (max-width: 414px) {
.p-container__ornament {
margin-bottom: 7%;
}
}
.p-container__ornament:last-of-type {
margin-bottom: 8%;
}
.p-container__ornament__title {
font-size: 1.3em;
font-weight: bold;
margin-bottom: 2%;
}
.p-container__ornament__title::before,
.p-container__ornament__title::after {
content: "";
width: 0;
height: 0;
border: 5px solid transparent;
border-top: 20px solid #00a99d;
position: relative;
top: 8px;
display: inline-block;
}
.p-container__ornament__title::before {
transform: rotateZ(-30deg);
left: -10px;
}
.p-container__ornament__title::after {
transform: rotateZ(30deg);
left: 3px;
}
@media screen and (max-width: 414px) {
.p-container__ornament__title {
font-size: 1.2em;
}
}
.p-container__ornament__text,
.p-container__ornament__list {
width: 800px;
margin: 0 auto;
background: #fff;
padding: 3% 4%;
border-radius: 5px;
text-align: left;
box-sizing: border-box;
}
@media screen and (max-width: 768px) {
.p-container__ornament__text,
.p-container__ornament__list {
width: 600px;
}
}
@media screen and (max-width: 414px) {
.p-container__ornament__text,
.p-container__ornament__list {
width: 100%;
}
}
.p-container__ornament__list {
padding: 3% 260px;
}
@media screen and (max-width: 768px) {
.p-container__ornament__list {
padding: 3% 160px;
}
}
@media screen and (max-width: 414px) {
.p-container__ornament__list {
padding: 3% 10%;
}
}
.p-container__ornament__list__item {
display: flex;
justify-content: flex-start;
align-items: center;
margin-bottom: 2%;
}
.p-container__ornament__list__item:last-of-type {
margin-bottom: 0;
}
@media screen and (max-width: 320px) {
.p-container__ornament__list__item {
align-items: flex-start;
}
}
.p-container__ornament__list__item i {
margin-right: 20px;
font-size: 1.1em;
}
@media screen and (max-width: 414px) {
.p-container__ornament__list__item i {
margin-right: 10px;
}
}
@media screen and (max-width: 320px) {
.p-container__ornament__list__item i {
position: relative;
top: 3.5px;
}
}
.l-main__home .p-container {
margin: 0 auto 8% auto;
}
@media screen and (max-width: 414px) {
.l-main__home .p-container {
margin: 0 auto 10% auto;
}
}
.p-box {
width: 70%;
}
@media screen and (max-width: 768px) {
.p-box {
width: 90%;
margin: 0 auto;
}
}
.p-box__ornament {
margin: 0 auto 3% auto;
border: #224272 solid 2px;
padding: 3%;
box-sizing: border-box;
border-radius: 4px;
background: #fff;
}
@media screen and (max-width: 414px) {
.p-box__ornament--b_none {
border: none;
background: #e4f4f4;
padding: 0;
}
}
@media screen and (max-width: 414px) {
.p-box__ornament {
margin: 0 auto 10% auto;
}
}
.p-box__count {
text-align: right;
}
.p-box__title {
font-size: 1.3em;
font-weight: bold;
margin-left: 1%;
margin-bottom: 3%;
}
@media screen and (max-width: 414px) {
.p-box__title {
text-align: center;
}
.p-box__title:after {
content: "";
width: 50px;
display: block;
margin: 5px auto 20px auto;
border: solid 2px #00a99d;
border-radius: 3px;
}
}
.p-box__list {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
}
.p-box__list__item {
width: 31%;
box-sizing: border-box;
background: #e4f4f4;
margin: 1%;
}
@media screen and (max-width: 768px) {
.p-box__list__item {
width: 48%;
}
}
@media screen and (max-width: 414px) {
.p-box__list__item {
width: 100%;
margin: 2% 0;
background: #fff;
border-radius: 4px;
border: #224272 solid 2px;
}
}
.p-box__list__item__link {
width: 100%;
display: block;
box-sizing: border-box;
background: #e4f4f4;
padding: 2% 2% 3% 2%;
position: relative;
}
@media screen and (max-width: 414px) {
.p-box__list__item__link {
background: #fff;
border-radius: 4px;
}
}
.p-box__list__item__link:after {
font-family: "Font Awesome 5 Free";
content: "\F054";
font-weight: 900;
color: #00a99d;
position: absolute;
right: 10px;
top: 35%;
font-size: 1.3em;
box-sizing: border-box;
}
.p-box__list__item__title {
margin: 1% 0;
font-weight: bold;
font-size: 1.1em;
display: inline-block;
}
.p-box__list__item__overview {
text-decoration: underline;
padding: 1% 0;
width: 93%;
}
.p-box__list__item__progress {
display: flex;
justify-content: space-between;
display: 100%;
}
.p-box__list__item__meter {
width: 85%;
height: 20px;
border: #224272 solid 2px;
display: block;
}
.p-box__list__item__meter__content {
width: 80%;
height: 20px;
background: #224272;
display: block;
}
.p-box__list__parameter {
display: block;
width: 90%;
background: #d3d3d3;
border-radius: 100px;
}
.p-box__list__parameter__item {
display: inline-block;
width: 0%;
background: #224272;
border-radius: 100px;
}
.p-box__list__parameter__item__num {
color: #fff;
display: block;
text-align: right;
margin-right: 5px;
margin-left: 5px;
}
.l-main__step-list .p-box,
.l-main__profDetail .p-box {
width: 90%;
margin: 0 auto;
}
.l-main__mypage .p-box__list__item {
width: 48%;
}
@media screen and (max-width: 414px) {
.l-main__mypage .p-box__list__item {
width: 100%;
}
}
.p-profile {
width: 25%;
text-align: center;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-profile {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
}
}
@media screen and (max-width: 768px) {
.p-profile {
width: 90%;
padding: 5%;
}
}
.p-profile__img {
width: 100px;
height: 100px;
border-radius: 200px;
margin: 0 auto;
display: block;
border: #224272 solid 2px;
background: #fff;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-profile__img {
height: auto;
}
}
@media screen and (max-width: 414px) {
.p-profile__img {
width: 200px;
height: 200px;
}
}
.p-profile__detail-img {
width: 200px;
margin: 0;
height: auto;
}
@media screen and (max-width: 414px) {
.p-profile__detail-img {
margin: 0 auto 5% auto;
}
}
.p-profile__name {
margin: 10% 0 5% 0;
}
@media screen and (max-width: 414px) {
.p-profile__name {
margin: 5% 0;
text-align: left;
}
}
.p-profile__introduction {
margin-bottom: 10%;
text-align: left;
background: #e4f4f4;
padding: 3%;
border-radius: 4px;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-profile__introduction {
width: 65%;
margin-bottom: 3%;
}
}
@media screen and (max-width: 768px) {
.p-profile__introduction {
background: #e4f4f4;
border-radius: 5px;
padding: 3%;
box-sizing: border-box;
}
}
@media screen and (max-width: 414px) {
.p-profile__introduction {
padding: 5%;
}
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-profile__sp_imgbox {
width: 30%;
margin-right: 5%;
}
}
.p-profile__link {
text-decoration: underline;
}
.p-prf_detail {
width: 90%;
margin: 3% auto;
padding: 2% 0;
box-sizing: border-box;
border-radius: 4px;
}
@media screen and (max-width: 414px) {
.p-prf_detail {
border: #224272 solid 2px;
border-radius: 4px;
background: #fff;
padding: 4%;
text-align: center;
margin: 5% auto 10% auto;
}
}
.p-prf_detail__box {
display: flex;
justify-content: flex-start;
align-items: flex-start;
}
@media screen and (max-width: 414px) {
.p-prf_detail__box {
display: block;
}
}
.p-prf_detail__box__name {
margin: 0 0 2% 1%;
font-size: 1.3em;
width: 100%;
}
.p-prf_detail__box__icon {
margin-left: 2%;
margin-right: 1%;
font-size: 1.1em;
}
.p-prf_detail__box__num {
border: #224272 solid 2px;
padding: 0 0.5%;
border-radius: 8px;
background: #fff;
position: relative;
top: -1px;
left: -2px;
display: inline-block;
}
.p-prf_detail__box__num:before,
.p-prf_detail__box__num:after {
content: "";
position: absolute;
top: 50%;
}
@media screen and (max-width: 414px) {
.p-prf_detail__box__num:before,
.p-prf_detail__box__num:after {
display: none;
}
}
.p-prf_detail__box__num:before {
left: -17px;
margin-top: -8px;
border: 8px solid transparent;
border-right: 10px solid #FFF;
z-index: 2;
}
.p-prf_detail__box__num:after {
left: -21px;
margin-top: -9px;
border: 9px solid transparent;
border-right: 11px solid #224272;
z-index: 1;
}
.p-prf_detail__box__introduction {
border: #224272 solid 2px;
padding: 2%;
border-radius: 4px;
background: #fff;
margin-left: 5%;
}
@media screen and (max-width: 414px) {
.p-prf_detail__box__introduction {
border: none;
background: #e4f4f4;
margin: 0 auto;
padding: 4%;
}
}
.l-main__mypage .p-profile__img {
width: 200px;
height: 200px;
}
@media screen and (max-width: 414px) {
.l-main__mypage .p-profile__img {
width: 200px;
height: 200px;
}
}
.p-search {
width: 97.5%;
margin: 2% auto;
display: flex;
justify-content: space-around;
align-items: center;
border: #224272 solid 2px;
padding: 2%;
box-sizing: border-box;
border-radius: 4px;
}
@media screen and (max-width: 414px) {
.p-search {
display: block;
border: none;
overflow: hidden;
margin: 2% auto 4% auto;
}
}
.p-search__item {
display: flex;
justify-content: flex-start;
align-items: center;
width: 50%;
}
@media screen and (max-width: 414px) {
.p-search__item {
display: block;
width: 100%;
position: relative;
}
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-search__item__title {
text-align: right;
margin-right: 5px;
line-height: 1.5;
}
}
.p-step_detail {
text-align: left;
}
@media screen and (max-width: 414px) {
.p-step_detail {
margin: 5% auto 10% auto;
}
}
.p-step_detail__top {
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
margin: 0 auto;
}
@media screen and (max-width: 414px) {
.p-step_detail__top {
width: 100%;
margin-bottom: 10px;
}
}
.p-step_detail__title {
width: 100%;
display: flex;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
}
@media screen and (max-width: 414px) {
.p-step_detail__title {
display: block;
margin: 3% 0 5% 0;
}
}
.p-step_detail__title__text {
font-size: 1.3em;
width: 100%;
margin-top: 5px;
}
@media screen and (max-width: 414px) {
.p-step_detail__title__text {
font-size: 1.2em;
}
}
.p-step_detail__creator {
text-align: center;
width: 35%;
}
@media screen and (max-width: 414px) {
.p-step_detail__creator {
width: 30%;
line-height: 1.3;
}
}
.p-step_detail__creator span {
display: block;
}
@media screen and (max-width: 414px) {
.p-step_detail__creator span {
font-size: 0.9em;
}
}
.p-step_detail__creator-title__text {
font-size: 1.1em;
margin: 35% 0 10px 0;
display: block;
text-align: center;
}
.p-step_detail__creator-img {
width: 50px;
height: 50px;
border-radius: 40px;
margin: 1% 0;
}
@media screen and (max-width: 414px) {
.p-step_detail__creator-img {
margin: 0;
}
}
.p-step_detail__middle {
display: flex;
justify-content: flex-start;
align-items: center;
width: 90%;
margin: 0 auto;
}
@media screen and (max-width: 414px) {
.p-step_detail__middle {
justify-content: space-between;
width: 100%;
}
}
.p-step_detail__middle p {
margin-right: 1%;
}
.p-step_detail__box {
width: 100%;
overflow: hidden;
}
.p-step_detail__box__item {
display: flex;
justify-content: flex-start;
align-items: center;
padding: 2%;
background: #6f85a8;
color: #fff;
border-radius: 4px;
box-shadow: 2px 2px 6px #a9a9a9;
width: 90%;
box-sizing: border-box;
margin: 4% auto;
position: relative;
font-size: 1.1em;
z-index: 2;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__item {
width: 100%;
font-size: 1em;
padding: 3%;
}
}
.p-step_detail__box__item .far,
.p-step_detail__box__item .fas {
font-size: 1.2em;
margin-right: 10px;
}
.p-step_detail__box__item--active {
background: #2d5591;
}
.p-step_detail__box__item__label {
margin-left: 1%;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__item__label {
margin-left: 0;
}
}
.p-step_detail__box__item__arrow {
position: absolute;
right: 20px;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__item__arrow {
right: 10px;
}
}
.p-step_detail__box__charenge-link .c-btn {
float: right;
margin-right: 5%;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__charenge-link .c-btn {
margin-right: 0;
margin-top: 5%;
}
}
.p-step_detail__box__back-link {
margin-left: 5%;
margin-top: 11%;
display: block;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__back-link {
margin-left: 0;
}
}
.p-step_detail__box__back-link:hover {
text-decoration: underline;
}
.p-step_detail__box__link {
position: relative;
margin: 4% auto;
display: block;
}
.p-step_detail__box__link::after {
content: "";
width: 50px;
height: 30px;
background: #999;
display: block;
transform: rotateZ(90deg);
opacity: 0.7;
position: absolute;
bottom: -39px;
left: 100px;
}
@media screen and (max-width: 1024px) {
.p-step_detail__box__link::after {
left: 80px;
}
}
@media screen and (max-width: 768px) {
.p-step_detail__box__link::after {
left: 60px;
}
}
@media screen and (max-width: 414px) {
.p-step_detail__box__link::after {
display: none;
}
}
.p-step_detail__box__link-wrap a:last-of-type::after {
display: none;
}
.l-main__child-detail .p-step_detail__top {
margin: 0 5%;
}
@media screen and (max-width: 414px) {
.l-main__child-detail .p-step_detail__top {
margin: 0;
}
}
.l-main__child-detail .p-step_detail__box__text {
margin: 0 5% 5% 5%;
padding: 3%;
box-sizing: border-box;
border: #224272 solid 2px;
border-radius: 4px;
background: #fff;
}
@media screen and (max-width: 414px) {
.l-main__child-detail .p-step_detail__box__text {
margin: 0 0 5% 0;
}
}
@media screen and (max-width: 414px) {
.l-main__child-detail .p-step_detail__box__back-link {
margin-top: 11%;
}
}
.l-main__child-detail .p-step_detail__box__item {
margin: 4% auto 2% auto;
}
@media screen and (max-width: 414px) {
.l-main__child-detail .p-step_detail__box__item {
margin: 0 auto 4% auto;
}
}
.p-form {
width: 50%;
margin: 5% auto 10% auto;
border: #224272 solid 2px;
border-radius: 4px;
background: #fff;
padding: 3% 6%;
box-sizing: border-box;
overflow: hidden;
position: relative;
}
@media screen and (max-width: 768px) {
.p-form {
width: 70%;
}
}
@media screen and (max-width: 414px) {
.p-form {
width: 90%;
margin: 8% auto 10% auto;
padding: 0 6% 10% 6%;
border: none;
background: #e4f4f4;
}
}
.p-form .counter-container {
text-align: right;
}
.p-form__title {
text-align: center;
font-size: 1.3em;
font-weight: bold;
}
@media screen and (max-width: 414px) {
.p-form__title {
text-align: center;
}
.p-form__title:after {
content: "";
width: 50px;
display: block;
margin: 5px auto 20px auto;
border: solid 2px #00a99d;
border-radius: 3px;
}
}
.p-form__input {
background: #e4f4f4;
padding: 3%;
width: 100%;
box-sizing: border-box;
margin: 5% auto 1% auto;
border-radius: 4px;
display: block;
font-size: 1em;
border: none;
}
@media screen and (max-width: 414px) {
.p-form__input {
margin-bottom: 2%;
background: #fff;
border: #224272 solid 2px;
}
}
.p-form__remember {
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: 5%;
}
.p-form__remember__checkbox {
font-size: 1em;
margin-bottom: 1.3%;
}
.p-form__pass-remind {
text-decoration: underline;
position: absolute;
bottom: 10%;
}
@media screen and (max-width: 414px) {
.p-form__pass-remind {
bottom: 4%;
}
}
.p-form__pass-remind:hover {
text-decoration: none;
}
.p-form__select {
height: 40px;
}
.p-form__child-step__title {
margin-top: 5%;
}
.p-form__child-step__box {
position: relative;
}
@media screen and (max-width: 414px) {
.p-form__child-step__box:first-of-type {
width: 90%;
margin: 0 0 0 auto;
}
}
.p-form__child-step__box__label {
width: 27px;
height: 27px;
border-radius: 30px;
vertical-align: middle;
text-align: center;
font-size: 1.1em;
background: #224272;
color: #fff;
position: absolute;
left: -35px;
margin: 0 !important;
}
.p-form__child-step__box__item label:first-of-type {
margin-top: 1% !important;
}
.p-form__contact-text {
text-align: center;
margin-bottom: 5%;
}
@media screen and (max-width: 768px) {
.p-form__contact-text {
text-align: left;
margin-bottom: 8%;
}
}
.p-form__is-invalid {
background: rgba(255, 225, 225, 0.9);
}
.p-form__invalid-feedback {
color: #ff6666;
}
.l-main__step-register .p-form__input,
.l-main__contact .p-form__input {
margin: 1% auto 0 auto;
}
.l-main__step-register .p-form label,
.l-main__contact .p-form label {
display: block;
margin-top: 5%;
}
.l-main__step-list .p-form__input {
width: 50%;
margin: 0 4% 0 0;
}
@media screen and (max-width: 414px) {
.l-main__step-list .p-form__input {
width: 80%;
background: #fff;
margin: 1% 0 4% 0;
border: #224272 solid 2px;
height: auto;
}
}
.l-main__profEdit .p-form__input {
margin: 1% auto 0 auto;
}
.l-main__profEdit .p-form label {
display: block;
margin-top: 5%;
}
.l-main__profEdit .p-form .area-drop {
margin: 1% auto 5% auto;
width: 204px;
height: 204px;
background: #fff;
color: #224272;
text-align: center;
position: relative;
box-sizing: border-box;
border-radius: 100px;
border: #224272 solid 2px;
}
.l-main__profEdit .p-form .input-file {
opacity: 0;
width: 200px;
height: 200px;
position: absolute;
top: 0;
left: 0;
z-index: 3;
}
.l-main__profEdit .p-form .prev-img {
width: 200px;
height: 200px;
border-radius: 100px;
position: absolute;
top: 0;
left: 0;
z-index: 2;
}
.l-main__profEdit .p-form .img_drag {
display: block;
padding-top: 35%;
opacity: 0.8;
z-index: 1;
}
.l-main__pass-email .p-form__title {
margin-bottom: 5%;
}
.u-pc_none {
display: none;
}
@media screen and (max-width: 768px) {
.u-pc_none {
display: block;
}
}
.u-md_on_none {
display: block;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.u-md_on_none {
display: none;
}
}
.u-md_none {
display: block;
}
@media screen and (max-width: 768px) {
.u-md_none {
display: none;
}
}
.u-sp_none {
display: block;
}
@media screen and (max-width: 414px) {
.u-sp_none {
display: none;
}
}
.u-md_block {
display: none;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.u-md_block {
display: block;
}
}
@media screen and (max-width: 414px) {
.u-md_block {
display: none;
}
}
.u-sp_block {
display: none;
}
@media screen and (max-width: 414px) {
.u-sp_block {
display: block;
}
}
.mb2 {
margin-bottom: 2%;
}
.mb5 {
margin-bottom: 5%;
}
.mt7 {
margin-top: 7%;
}
.mr20p {
margin-right: 20px;
}
.alert {
position: absolute;
top: 0;
background: rgba(0, 169, 157, 0.9);
width: 100%;
color: #fff;
text-align: center;
padding: 1%;
box-sizing: border-box;
z-index: 10;
}
.u-category {
background: #00a99d;
padding: 2px 10px;
border-radius: 20px;
color: #fff;
display: inline-block;
}
.pagination {
display: flex;
justify-content: center;
margin-top: 3%;
}
@media screen and (max-width: 414px) {
.pagination {
margin-top: 0;
}
}
.page-item {
padding: 10px;
}
.page-item.active {
text-decoration: underline;
} | public/css/app.css | @import url(https://fonts.googleapis.com/css?family=Lato|M+PLUS+1p&display=swap);@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
width: 100%;
color: #224272;
background: #e4f4f4;
font-family: "M PLUS 1p", sans-serif;
font-size: 1em;
line-height: 1.6;
box-sizing: border-box;
}
a {
color: #224272;
text-decoration: none;
transition: 0.3s;
}
a:hover {
cursor: pointer;
}
.l-footer {
width: 100%;
background: #00a99d;
color: #fff;
text-align: center;
}
.l-footer p {
padding: 1%;
}
.l-header {
width: 100%;
height: 60px;
padding: 0 1.5%;
display: flex;
align-items: center;
justify-content: space-between;
position: fixed;
box-sizing: border-box;
transition: 0.3s;
z-index: 5;
}
@media screen and (max-width: 414px) {
.l-header {
padding: 0 3%;
height: 50px;
}
}
.l-header.active {
transition: 0.3s;
background: rgba(255, 255, 255, 0.9);
}
.l-header__logo {
display: flex;
align-items: center;
justify-content: flex-start;
}
.l-header__logo__text {
font-size: 35px;
margin-right: 3%;
font-weight: bold;
font-family: "Lato", sans-serif;
}
@media screen and (max-width: 414px) {
.l-header__logo__text {
font-size: 30px;
}
}
.l-header__logo__img {
width: 33px;
height: auto;
}
@media screen and (max-width: 414px) {
.l-header__logo__img {
font-size: 28px;
}
}
.l-header__nav {
display: block;
position: absolute;
top: 0;
right: -100%;
width: 400px;
height: 100vh;
padding-top: 50px;
transition: 0.5s;
background: #ffe1e1;
}
.l-header__nav.active {
transition: 0.5s;
transform: translateX(0%);
z-index: 2;
right: 0;
}
@media screen and (max-width: 768px) {
.l-header__nav {
width: 40%;
}
}
@media screen and (max-width: 414px) {
.l-header__nav {
width: 100%;
}
}
.l-header__menu__link {
display: block;
padding: 20px 0 20px 135px;
font-weight: bold;
text-align: left;
}
@media screen and (max-width: 768px) {
.l-header__menu__link {
padding: 20px 0 20px 80px;
}
}
@media screen and (max-width: 414px) {
.l-header__menu__link {
padding: 20px 0 20px 120px;
}
}
@media screen and (max-width: 320px) {
.l-header__menu__link {
padding: 20px 0 20px 90px;
}
}
.l-header__menu__link:hover {
background: #ce6c53;
}
.l-header__menu__link i {
margin-right: 20px;
}
.l-header__menu__trigger {
display: inline-block;
position: relative;
transition: all 0.4s;
box-sizing: border-box;
width: 40px;
height: 32px;
z-index: 3;
}
@media screen and (max-width: 414px) {
.l-header__menu__trigger {
width: 36px;
height: 27px;
}
}
.l-header__menu__trigger span {
display: inline-block;
transition: all 0.4s;
box-sizing: border-box;
position: absolute;
left: 0;
width: 100%;
height: 4px;
background-color: #224272;
border-radius: 4px;
}
.l-header__menu__trigger span:nth-of-type(1) {
top: 0;
}
.l-header__menu__trigger span:nth-of-type(2) {
top: 14px;
}
@media screen and (max-width: 414px) {
.l-header__menu__trigger span:nth-of-type(2) {
top: 11px;
}
}
.l-header__menu__trigger span:nth-of-type(3) {
bottom: 0;
}
.l-header__menu__trigger.active span:nth-of-type(1) {
transform: translateY(12px) rotate(-45deg);
}
@media screen and (max-width: 414px) {
.l-header__menu__trigger.active span:nth-of-type(1) {
transform: translateY(9px) rotate(-45deg);
}
}
.l-header__menu__trigger.active span:nth-of-type(2) {
opacity: 0;
}
.l-header__menu__trigger.active span:nth-of-type(3) {
transform: translateY(-15px) rotate(45deg);
}
@media screen and (max-width: 414px) {
.l-header__menu__trigger.active span:nth-of-type(3) {
transform: translateY(-14px) rotate(45deg);
}
}
.l-header__menu__trigger:hover {
cursor: pointer;
}
.l-main {
padding-top: 65px;
margin-bottom: 10%;
}
@media screen and (max-width: 414px) {
.l-main {
padding-top: 50px;
}
}
.c-btn {
border: none;
padding: 12px 20px;
font-size: 1em;
background: #00a99d;
color: #fff;
border-radius: 5px;
box-shadow: 2px 2px 6px #a9a9a9;
display: inline-block;
}
.c-btn:hover {
cursor: pointer;
}
.c-btn__primary {
background: #ce6c53;
}
.c-btn__search {
padding: 12px 15px;
}
@media screen and (max-width: 414px) {
.c-btn__search {
position: absolute;
right: 0;
bottom: 0;
}
}
.c-btn:disabled {
cursor: not-allowed;
}
.c-btn--disabled {
background: #a9a9a9;
}
.l-main__home .c-btn {
padding: 15px 80px;
margin-bottom: 5px;
font-size: 1.1em;
font-weight: bold;
}
@media screen and (max-width: 414px) {
.l-main__home .c-btn {
padding: 10px 30px;
}
}
.p-form .c-btn {
text-align: right;
float: right;
margin-top: 5%;
}
.l-main__login .c-btn {
margin-bottom: 5%;
margin-top: 0;
}
.c-add_step-btn {
width: 40px;
height: 40px;
background: #e4f4f4;
border: #224272 solid 2px;
border-radius: 30px;
display: block;
margin: 5% auto;
}
.c-add_step-btn:before,
.c-add_step-btn:after {
content: "";
display: block;
background-color: #224272;
width: 25px;
height: 2px;
position: relative;
left: -2px;
}
.c-add_step-btn:after {
transform: rotateZ(90deg);
top: -1px;
}
.c-add_step-btn:hover {
cursor: pointer;
}
.c-delete_step-btn {
width: 40px;
height: 40px;
background: #ffe1e1;
border: #ce6c53 solid 2px;
border-radius: 30px;
display: block;
margin: 5% auto 0 auto;
}
.c-delete_step-btn:before {
content: "";
display: block;
background-color: #ce6c53;
width: 25px;
height: 3px;
position: relative;
left: -2px;
}
.c-delete_step-btn:hover {
cursor: pointer;
}
.c-delete_step-btn:disabled {
cursor: not-allowed;
}
.c-two_colum {
display: flex;
justify-content: flex-start;
align-items: flex-start;
width: 90%;
margin: 3% auto;
}
@media screen and (max-width: 768px) {
.c-two_colum {
display: block;
width: 100%;
}
}
@media screen and (max-width: 414px) {
.c-two_colum {
margin: 5% auto 10% auto;
}
}
.p-hero {
text-align: center;
margin-top: 5%;
}
@media screen and (max-width: 414px) {
.p-hero {
margin-top: 10%;
}
}
.p-hero__subtitle {
font-size: 1.4em;
}
@media screen and (max-width: 768px) {
.p-hero__subtitle {
font-size: 1.3em;
}
}
@media screen and (max-width: 414px) {
.p-hero__subtitle {
font-size: 1.1em;
}
}
.p-hero__title {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 4%;
line-height: 1.2;
}
@media screen and (max-width: 414px) {
.p-hero__title {
margin-bottom: 6%;
}
}
.p-hero__title__text {
font-size: 7em;
padding-right: 1%;
}
@media screen and (max-width: 768px) {
.p-hero__title__text {
font-size: 6em;
}
}
@media screen and (max-width: 414px) {
.p-hero__title__text {
font-size: 4.5em;
}
}
.p-hero__title__img {
width: 100px;
}
@media screen and (max-width: 768px) {
.p-hero__title__img {
width: 90px;
}
}
@media screen and (max-width: 414px) {
.p-hero__title__img {
width: 65px;
}
}
.p-hero__login-link {
padding: 1% 2% 1.5% 2%;
font-weight: bold;
}
.p-hero__login-link:hover {
text-decoration: underline;
}
#describe_step {
padding-top: 70px;
}
@media screen and (max-width: 414px) {
#describe_step {
padding-top: 40px;
}
}
.p-container {
width: 90%;
margin: 5% auto 8% auto;
text-align: center;
}
@media screen and (max-width: 414px) {
.p-container {
margin: 7% auto 10% auto;
}
}
.p-container__ornament {
margin-bottom: 5%;
}
@media screen and (max-width: 414px) {
.p-container__ornament {
margin-bottom: 7%;
}
}
.p-container__ornament:last-of-type {
margin-bottom: 8%;
}
.p-container__ornament__title {
font-size: 1.3em;
font-weight: bold;
margin-bottom: 2%;
}
.p-container__ornament__title::before,
.p-container__ornament__title::after {
content: "";
width: 0;
height: 0;
border: 5px solid transparent;
border-top: 20px solid #00a99d;
position: relative;
top: 8px;
display: inline-block;
}
.p-container__ornament__title::before {
transform: rotateZ(-30deg);
left: -10px;
}
.p-container__ornament__title::after {
transform: rotateZ(30deg);
left: 3px;
}
@media screen and (max-width: 414px) {
.p-container__ornament__title {
font-size: 1.2em;
}
}
.p-container__ornament__text,
.p-container__ornament__list {
width: 800px;
margin: 0 auto;
background: #fff;
padding: 3% 4%;
border-radius: 5px;
text-align: left;
box-sizing: border-box;
}
@media screen and (max-width: 768px) {
.p-container__ornament__text,
.p-container__ornament__list {
width: 600px;
}
}
@media screen and (max-width: 414px) {
.p-container__ornament__text,
.p-container__ornament__list {
width: 100%;
}
}
.p-container__ornament__list {
padding: 3% 260px;
}
@media screen and (max-width: 768px) {
.p-container__ornament__list {
padding: 3% 160px;
}
}
@media screen and (max-width: 414px) {
.p-container__ornament__list {
padding: 3% 10%;
}
}
.p-container__ornament__list__item {
display: flex;
justify-content: flex-start;
align-items: center;
margin-bottom: 2%;
}
.p-container__ornament__list__item:last-of-type {
margin-bottom: 0;
}
@media screen and (max-width: 320px) {
.p-container__ornament__list__item {
align-items: flex-start;
}
}
.p-container__ornament__list__item i {
margin-right: 20px;
font-size: 1.1em;
}
@media screen and (max-width: 414px) {
.p-container__ornament__list__item i {
margin-right: 10px;
}
}
@media screen and (max-width: 320px) {
.p-container__ornament__list__item i {
position: relative;
top: 3.5px;
}
}
.l-main__home .p-container {
margin: 0 auto 8% auto;
}
@media screen and (max-width: 414px) {
.l-main__home .p-container {
margin: 0 auto 10% auto;
}
}
.p-box {
width: 70%;
}
@media screen and (max-width: 768px) {
.p-box {
width: 90%;
margin: 0 auto;
}
}
.p-box__ornament {
margin: 0 auto 3% auto;
border: #224272 solid 2px;
padding: 3%;
box-sizing: border-box;
border-radius: 4px;
background: #fff;
}
@media screen and (max-width: 414px) {
.p-box__ornament--b_none {
border: none;
background: #e4f4f4;
padding: 0;
}
}
@media screen and (max-width: 414px) {
.p-box__ornament {
margin: 0 auto 10% auto;
}
}
.p-box__count {
text-align: right;
}
.p-box__title {
font-size: 1.3em;
font-weight: bold;
margin-left: 1%;
margin-bottom: 3%;
}
@media screen and (max-width: 414px) {
.p-box__title {
text-align: center;
}
.p-box__title:after {
content: "";
width: 50px;
display: block;
margin: 5px auto 20px auto;
border: solid 2px #00a99d;
border-radius: 3px;
}
}
.p-box__list {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
}
.p-box__list__item {
width: 31%;
box-sizing: border-box;
background: #e4f4f4;
margin: 1%;
}
@media screen and (max-width: 768px) {
.p-box__list__item {
width: 48%;
}
}
@media screen and (max-width: 414px) {
.p-box__list__item {
width: 100%;
margin: 2% 0;
background: #fff;
border-radius: 4px;
border: #224272 solid 2px;
}
}
.p-box__list__item__link {
width: 100%;
display: block;
box-sizing: border-box;
background: #e4f4f4;
padding: 2% 2% 3% 2%;
position: relative;
}
@media screen and (max-width: 414px) {
.p-box__list__item__link {
background: #fff;
border-radius: 4px;
}
}
.p-box__list__item__link:after {
font-family: "Font Awesome 5 Free";
content: "\F054";
font-weight: 900;
color: #00a99d;
position: absolute;
right: 10px;
top: 35%;
font-size: 1.3em;
box-sizing: border-box;
}
.p-box__list__item__title {
margin: 1% 0;
font-weight: bold;
font-size: 1.1em;
display: inline-block;
}
.p-box__list__item__overview {
text-decoration: underline;
padding: 1% 0;
width: 93%;
}
.p-box__list__item__progress {
display: flex;
justify-content: space-between;
display: 100%;
}
.p-box__list__item__meter {
width: 85%;
height: 20px;
border: #224272 solid 2px;
display: block;
}
.p-box__list__item__meter__content {
width: 80%;
height: 20px;
background: #224272;
display: block;
}
.p-box__list__parameter {
display: block;
width: 90%;
background: #d3d3d3;
border-radius: 100px;
}
.p-box__list__parameter__item {
display: inline-block;
width: 0%;
background: #224272;
border-radius: 100px;
}
.p-box__list__parameter__item__num {
color: #fff;
display: block;
text-align: right;
margin-right: 5px;
margin-left: 5px;
}
.l-main__step-list .p-box,
.l-main__profDetail .p-box {
width: 90%;
margin: 0 auto;
}
.l-main__mypage .p-box__list__item {
width: 48%;
}
@media screen and (max-width: 414px) {
.l-main__mypage .p-box__list__item {
width: 100%;
}
}
.p-profile {
width: 25%;
text-align: center;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-profile {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
}
}
@media screen and (max-width: 768px) {
.p-profile {
width: 90%;
padding: 5%;
}
}
.p-profile__img {
width: 100px;
height: 100px;
border-radius: 200px;
margin: 0 auto;
display: block;
border: #224272 solid 2px;
background: #fff;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-profile__img {
height: auto;
}
}
@media screen and (max-width: 414px) {
.p-profile__img {
width: 200px;
height: 200px;
}
}
.p-profile__detail-img {
width: 200px;
margin: 0;
height: auto;
}
@media screen and (max-width: 414px) {
.p-profile__detail-img {
margin: 0 auto 5% auto;
}
}
.p-profile__name {
margin: 10% 0 5% 0;
}
@media screen and (max-width: 414px) {
.p-profile__name {
margin: 5% 0;
text-align: left;
}
}
.p-profile__introduction {
margin-bottom: 10%;
text-align: left;
background: #e4f4f4;
padding: 3%;
border-radius: 4px;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-profile__introduction {
width: 65%;
margin-bottom: 3%;
}
}
@media screen and (max-width: 768px) {
.p-profile__introduction {
background: #e4f4f4;
border-radius: 5px;
padding: 3%;
box-sizing: border-box;
}
}
@media screen and (max-width: 414px) {
.p-profile__introduction {
padding: 5%;
}
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-profile__sp_imgbox {
width: 30%;
margin-right: 5%;
}
}
.p-profile__link {
text-decoration: underline;
}
.p-prf_detail {
width: 90%;
margin: 3% auto;
padding: 2% 0;
box-sizing: border-box;
border-radius: 4px;
}
@media screen and (max-width: 414px) {
.p-prf_detail {
border: #224272 solid 2px;
border-radius: 4px;
background: #fff;
padding: 4%;
text-align: center;
margin: 5% auto 10% auto;
}
}
.p-prf_detail__box {
display: flex;
justify-content: flex-start;
align-items: flex-start;
}
@media screen and (max-width: 414px) {
.p-prf_detail__box {
display: block;
}
}
.p-prf_detail__box__name {
margin: 0 0 2% 1%;
font-size: 1.3em;
width: 100%;
}
.p-prf_detail__box__icon {
margin-left: 2%;
margin-right: 1%;
font-size: 1.1em;
}
.p-prf_detail__box__num {
border: #224272 solid 2px;
padding: 0 0.5%;
border-radius: 8px;
background: #fff;
position: relative;
top: -1px;
left: -2px;
display: inline-block;
}
.p-prf_detail__box__num:before,
.p-prf_detail__box__num:after {
content: "";
position: absolute;
top: 50%;
}
@media screen and (max-width: 414px) {
.p-prf_detail__box__num:before,
.p-prf_detail__box__num:after {
display: none;
}
}
.p-prf_detail__box__num:before {
left: -17px;
margin-top: -8px;
border: 8px solid transparent;
border-right: 10px solid #FFF;
z-index: 2;
}
.p-prf_detail__box__num:after {
left: -21px;
margin-top: -9px;
border: 9px solid transparent;
border-right: 11px solid #224272;
z-index: 1;
}
.p-prf_detail__box__introduction {
border: #224272 solid 2px;
padding: 2%;
border-radius: 4px;
background: #fff;
margin-left: 5%;
}
@media screen and (max-width: 414px) {
.p-prf_detail__box__introduction {
border: none;
background: #e4f4f4;
margin: 0 auto;
padding: 4%;
}
}
.l-main__mypage .p-profile__img {
width: 200px;
height: 200px;
}
@media screen and (max-width: 414px) {
.l-main__mypage .p-profile__img {
width: 200px;
height: 200px;
}
}
.p-search {
width: 97.5%;
margin: 2% auto;
display: flex;
justify-content: space-around;
align-items: center;
border: #224272 solid 2px;
padding: 2%;
box-sizing: border-box;
border-radius: 4px;
}
@media screen and (max-width: 414px) {
.p-search {
display: block;
border: none;
overflow: hidden;
margin: 2% auto 4% auto;
}
}
.p-search__item {
display: flex;
justify-content: flex-start;
align-items: center;
width: 50%;
}
@media screen and (max-width: 414px) {
.p-search__item {
display: block;
width: 100%;
position: relative;
}
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.p-search__item__title {
text-align: right;
margin-right: 5px;
line-height: 1.5;
}
}
.p-step_detail {
text-align: left;
}
@media screen and (max-width: 414px) {
.p-step_detail {
margin: 5% auto 10% auto;
}
}
.p-step_detail__top {
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
margin: 0 auto;
}
@media screen and (max-width: 414px) {
.p-step_detail__top {
width: 100%;
margin-bottom: 10px;
}
}
.p-step_detail__title {
width: 100%;
display: flex;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
}
@media screen and (max-width: 414px) {
.p-step_detail__title {
display: block;
margin: 3% 0 5% 0;
}
}
.p-step_detail__title__text {
font-size: 1.3em;
width: 100%;
margin-top: 5px;
}
@media screen and (max-width: 414px) {
.p-step_detail__title__text {
font-size: 1.2em;
}
}
.p-step_detail__creator {
text-align: center;
width: 35%;
}
@media screen and (max-width: 414px) {
.p-step_detail__creator {
width: 30%;
line-height: 1.3;
}
}
.p-step_detail__creator span {
display: block;
}
@media screen and (max-width: 414px) {
.p-step_detail__creator span {
font-size: 0.9em;
}
}
.p-step_detail__creator-title__text {
font-size: 1.1em;
margin: 35% 0 10px 0;
display: block;
text-align: center;
}
.p-step_detail__creator-img {
width: 50px;
height: 50px;
border-radius: 40px;
margin: 1% 0;
}
@media screen and (max-width: 414px) {
.p-step_detail__creator-img {
margin: 0;
}
}
.p-step_detail__middle {
display: flex;
justify-content: flex-start;
align-items: center;
width: 90%;
margin: 0 auto;
}
@media screen and (max-width: 414px) {
.p-step_detail__middle {
justify-content: space-between;
width: 100%;
}
}
.p-step_detail__middle p {
margin-right: 1%;
}
.p-step_detail__box {
width: 100%;
overflow: hidden;
}
.p-step_detail__box__item {
display: flex;
justify-content: flex-start;
align-items: center;
padding: 2%;
background: #6f85a8;
color: #fff;
border-radius: 4px;
box-shadow: 2px 2px 6px #a9a9a9;
width: 90%;
box-sizing: border-box;
margin: 4% auto;
position: relative;
font-size: 1.1em;
z-index: 2;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__item {
width: 100%;
font-size: 1em;
padding: 3%;
}
}
.p-step_detail__box__item .far,
.p-step_detail__box__item .fas {
font-size: 1.2em;
margin-right: 10px;
}
.p-step_detail__box__item--active {
background: #2d5591;
}
.p-step_detail__box__item__label {
margin-left: 1%;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__item__label {
margin-left: 0;
}
}
.p-step_detail__box__item__arrow {
position: absolute;
right: 20px;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__item__arrow {
right: 10px;
}
}
.p-step_detail__box__charenge-link .c-btn {
float: right;
margin-right: 5%;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__charenge-link .c-btn {
margin-right: 0;
margin-top: 5%;
}
}
.p-step_detail__box__back-link {
margin-left: 5%;
margin-top: 11%;
display: block;
}
@media screen and (max-width: 414px) {
.p-step_detail__box__back-link {
margin-left: 0;
}
}
.p-step_detail__box__back-link:hover {
text-decoration: underline;
}
.p-step_detail__box__link {
position: relative;
margin: 4% auto;
display: block;
}
.p-step_detail__box__link::after {
content: "";
width: 50px;
height: 30px;
background: #999;
display: block;
transform: rotateZ(90deg);
opacity: 0.7;
position: absolute;
bottom: -39px;
left: 100px;
}
@media screen and (max-width: 1024px) {
.p-step_detail__box__link::after {
left: 80px;
}
}
@media screen and (max-width: 768px) {
.p-step_detail__box__link::after {
left: 60px;
}
}
@media screen and (max-width: 414px) {
.p-step_detail__box__link::after {
display: none;
}
}
.p-step_detail__box__link-wrap a:last-of-type::after {
display: none;
}
.l-main__child-detail .p-step_detail__top {
margin: 0 5%;
}
@media screen and (max-width: 414px) {
.l-main__child-detail .p-step_detail__top {
margin: 0;
}
}
.l-main__child-detail .p-step_detail__box__text {
margin: 0 5% 5% 5%;
padding: 3%;
box-sizing: border-box;
border: #224272 solid 2px;
border-radius: 4px;
background: #fff;
}
@media screen and (max-width: 414px) {
.l-main__child-detail .p-step_detail__box__text {
margin: 0 0 5% 0;
}
}
@media screen and (max-width: 414px) {
.l-main__child-detail .p-step_detail__box__back-link {
margin-top: 11%;
}
}
.l-main__child-detail .p-step_detail__box__item {
margin: 4% auto 2% auto;
}
@media screen and (max-width: 414px) {
.l-main__child-detail .p-step_detail__box__item {
margin: 0 auto 4% auto;
}
}
.p-form {
width: 50%;
margin: 5% auto 10% auto;
border: #224272 solid 2px;
border-radius: 4px;
background: #fff;
padding: 3% 6%;
box-sizing: border-box;
overflow: hidden;
position: relative;
}
@media screen and (max-width: 768px) {
.p-form {
width: 70%;
}
}
@media screen and (max-width: 414px) {
.p-form {
width: 90%;
margin: 8% auto 10% auto;
padding: 0 6% 10% 6%;
border: none;
background: #e4f4f4;
}
}
.p-form .counter-container {
text-align: right;
}
.p-form__title {
text-align: center;
font-size: 1.3em;
font-weight: bold;
}
@media screen and (max-width: 414px) {
.p-form__title {
text-align: center;
}
.p-form__title:after {
content: "";
width: 50px;
display: block;
margin: 5px auto 20px auto;
border: solid 2px #00a99d;
border-radius: 3px;
}
}
.p-form__input {
background: #e4f4f4;
padding: 3%;
width: 100%;
box-sizing: border-box;
margin: 5% auto 1% auto;
border-radius: 4px;
display: block;
font-size: 1em;
border: none;
}
@media screen and (max-width: 414px) {
.p-form__input {
margin-bottom: 2%;
background: #fff;
border: #224272 solid 2px;
}
}
.p-form__remember {
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: 5%;
}
.p-form__remember__checkbox {
font-size: 1em;
margin-bottom: 1.3%;
}
.p-form__pass-remind {
text-decoration: underline;
position: absolute;
bottom: 10%;
}
@media screen and (max-width: 414px) {
.p-form__pass-remind {
bottom: 4%;
}
}
.p-form__pass-remind:hover {
text-decoration: none;
}
.p-form__select {
height: 40px;
}
.p-form__child-step__title {
margin-top: 5%;
}
.p-form__child-step__box {
position: relative;
}
@media screen and (max-width: 414px) {
.p-form__child-step__box:first-of-type {
width: 90%;
margin: 0 0 0 auto;
}
}
.p-form__child-step__box__label {
width: 27px;
height: 27px;
border-radius: 30px;
vertical-align: middle;
text-align: center;
font-size: 1.1em;
background: #224272;
color: #fff;
position: absolute;
left: -35px;
margin: 0 !important;
}
.p-form__child-step__box__item label:first-of-type {
margin-top: 1% !important;
}
.p-form__contact-text {
text-align: center;
margin-bottom: 5%;
}
@media screen and (max-width: 768px) {
.p-form__contact-text {
text-align: left;
margin-bottom: 8%;
}
}
.p-form__is-invalid {
background: rgba(255, 225, 225, 0.9);
}
.p-form__invalid-feedback {
color: #ff6666;
}
.l-main__step-register .p-form__input,
.l-main__contact .p-form__input {
margin: 1% auto 0 auto;
}
.l-main__step-register .p-form label,
.l-main__contact .p-form label {
display: block;
margin-top: 5%;
}
.l-main__step-list .p-form__input {
width: 50%;
margin: 0 4% 0 0;
}
@media screen and (max-width: 414px) {
.l-main__step-list .p-form__input {
width: 80%;
background: #fff;
margin: 1% 0 4% 0;
border: #224272 solid 2px;
height: auto;
}
}
.l-main__profEdit .p-form__input {
margin: 1% auto 0 auto;
}
.l-main__profEdit .p-form label {
display: block;
margin-top: 5%;
}
.l-main__profEdit .p-form .area-drop {
margin: 1% auto 5% auto;
width: 204px;
height: 204px;
background: #fff;
color: #224272;
text-align: center;
position: relative;
box-sizing: border-box;
border-radius: 100px;
border: #224272 solid 2px;
}
.l-main__profEdit .p-form .input-file {
opacity: 0;
width: 200px;
height: 200px;
position: absolute;
top: 0;
left: 0;
z-index: 3;
}
.l-main__profEdit .p-form .prev-img {
width: 200px;
height: 200px;
border-radius: 100px;
position: absolute;
top: 0;
left: 0;
z-index: 2;
}
.l-main__profEdit .p-form .img_drag {
display: block;
padding-top: 35%;
opacity: 0.8;
z-index: 1;
}
.l-main__pass-email .p-form__title {
margin-bottom: 5%;
}
.u-pc_none {
display: none;
}
@media screen and (max-width: 768px) {
.u-pc_none {
display: block;
}
}
.u-md_on_none {
display: block;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.u-md_on_none {
display: none;
}
}
.u-md_none {
display: block;
}
@media screen and (max-width: 768px) {
.u-md_none {
display: none;
}
}
.u-sp_none {
display: block;
}
@media screen and (max-width: 414px) {
.u-sp_none {
display: none;
}
}
.u-md_block {
display: none;
}
@media screen and (min-width: 415px) and (max-width: 768px) {
.u-md_block {
display: block;
}
}
@media screen and (max-width: 414px) {
.u-md_block {
display: none;
}
}
.u-sp_block {
display: none;
}
@media screen and (max-width: 414px) {
.u-sp_block {
display: block;
}
}
.mb2 {
margin-bottom: 2%;
}
.mb5 {
margin-bottom: 5%;
}
.mt7 {
margin-top: 7%;
}
.mr20p {
margin-right: 20px;
}
.alert {
position: absolute;
top: 0;
background: rgba(0, 169, 157, 0.9);
width: 100%;
color: #fff;
text-align: center;
padding: 1%;
box-sizing: border-box;
z-index: 10;
}
.u-category {
background: #00a99d;
padding: 2px 10px;
border-radius: 20px;
color: #fff;
display: inline-block;
}
.pagination {
display: flex;
justify-content: center;
margin-top: 3%;
}
@media screen and (max-width: 414px) {
.pagination {
margin-top: 0;
}
}
.page-item {
padding: 10px;
}
.page-item.active {
text-decoration: underline;
} | 0.407805 | 0.083815 |
body{ background: #f1f1f1; color:#444;}
.page-header h2{display:inline-block;}
#content{margin: 0;}
#footer{height: 50px;}
img{max-width: 100%;}
.font-small{font-size: 12px;font-weight: normal;}
.col-sm-15{
width:20%;
position: relative;
float:left;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
/*======== theme-options =========*/
#theme-options .panel {box-shadow:none;background: none;margin: 0;}
#theme-options .content{ background: #464960; }
#theme-options .content > div {display:table;width:100%; }
#theme-options .content > .panel-heading{
padding: 20px 0;
border-bottom: 3px solid #3498db; color:#ccc;
background: #213748; /* Old browsers */
}
#theme-options .content > .panel-heading .btn{border:none;}
#theme-options .content > .panel-heading .dropdown-toggle{
box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
background: #182835;
padding: 7px 20px;
color:#ccc;
font-size: 14px;
border-radius:3px;
border-bottom:1px solid #32495d;
transition: 0.3s all ease-in-out;
}
#theme-options .content > .panel-heading .dropdown-toggle:hover{
color:white;
background: #082238;
}
#theme-options .content > .panel-body{background: url('../image/bg-tabs.png') repeat-y ;padding: 0;border-bottom: 5px solid #afafaf; border-right:1px solid #ddd;}
.main_content_vertical{padding: 0;width: calc(100% - 230px);margin-left: 230px;min-height: 520px;background:white;}
#theme-options .dropdown-menu {
display: block;
opacity: 0;
filter: alpha(opacity=0);
visibility: hidden;
transition: all 0.2s ease-out;
margin-top: 20px;
min-width:190px;
}
@media (min-width: 1200px) {
#theme-options .dropdown-menu:after {
content: '';
border: 6px solid #ccc;
position: absolute;
z-index: 3;
top: -12px;
left: 19px;
border-color: transparent transparent #fff transparent;
}
}
#theme-options .open > .dropdown-menu {
margin-top: 5px;
opacity: 1;
filter: alpha(opacity=100);
visibility: visible;
}
#theme-options .dropdown-menu > li > a {
padding: 7px 10px;
}
.form-control, .form-field {
padding: 7px 10px;
background-color: #f9f9f9;
border: 1px solid #dedede;
border-radius: 3px;
box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05);
line-height: 1.2;
display: block; }
.clearfix{clear:both;}
.custom-code {
font-family: "Courier New", Courier, monospace;
font-size: 18px;
line-height: 30px; }
.width30 {width: 30% !important; }
.width50 {width: 40% !important; }
.width15 {
width: 15% !important; }
.margin15 {
margin-bottom: 15px; }
.help-block {
font-size: 12px;
color: #999;
font-weight:normal;
}
.no-margin {
margin: 0 !important; }
.alert-warning, .label-warning, .modal-warning .modal-body {
background-color: #f39c12 !important;
color:white;
border-color: #e08e0b;
}
.callout.callout-success, .alert-success, .label-success, .modal-success .modal-body {
background-color: #00a65a !important;
color:white;
border-color: #008d4c;
}
.list-decimal{list-style: circle;}
/*---Panel--*/
.so-panel {font-size: 13px;padding: 20px 30px;}
.so-panel .panel-title {
position: relative;
font-weight: 700;
text-transform: uppercase;
margin: 0px;
color: #333;
padding: 0 10px;
border-left: 3px solid #648e42;
}
.so-panel .panel-title .help-block {
text-transform: none;
display: inline-block;
font-weight: normal;
margin: 0 20px; }
.panel-container {padding: 0 ; }
.panel-container > .form-group {
margin: 0;
padding: 15px 0; }
.panel-container > .form-group .control-label {
font-weight: normal;
border-right: 1px solid #eee;
padding: 5px; }
.sidebar .nav-tabs{border-bottom:none;}
.main_tabs {
background-color: #515151;
border-radius: 2px;
border: 1px solid #515151;
overflow: hidden; }
.main_tabs > li {
margin: 0;
border-right: 1px solid #5A5A5A;
position:relative;
z-index:5;
}
.nav-tabs.main_tabs > li > a {
color: #C4C4C4;
font-size: 14px;
font-weight: normal;
padding: 10px 20px;
margin: 0; }
.nav-tabs.main_tabs > li.active > a,
.nav-tabs.main_tabs > li > a:hover,
.nav-tabs.main_tabs_vertical > li.active > a,
.nav-tabs.main_tabs_vertical > li > a:hover,
.nav-tabs.main_tabs_vertical > li > a:focus {
background-color: rgba(0, 0, 0, 0.2);
border: none;
color: white;
font-weight: normal; }
.main_tabs_vertical > li.active:after{
content:'';
border: 10px solid #ccc;
position:absolute;z-index:3;top:15px;right:-1px;
border-color: transparent #ffffff transparent transparent;
}
.nav-tabs.main_tabs_vertical.store_tabs > li.active > a,
.nav-tabs.main_tabs_vertical.store_tabs > li.active > a:hover {
color: #fff;
background-color: rgba(0, 0, 0, 0.2);
border: none;
font-weight: 600; }
.nav-tabs.main_tabs_vertical.store_tabs > li > a:hover {
border: none;
background: #444;
font-weight: 600; }
.sidebar {
width:229px;
position: absolute;z-index: 1;
}
.sidebar > .title{
font-size: 13px;
text-transform: uppercase;
border-radius: 0;
color: #ccc;
padding: 17px 15px;
margin: 0;
font-weight:bold;
text-align:center;
border-bottom:1px solid #5b5e75;
}
.sidebar > .title .badge{color: #ccc;}
.nav-tabs.main_tabs_vertical > li {
float: none;
width: 100%; }
.nav-tabs.main_tabs_vertical > li {margin: 0 0 1px; }
.nav-tabs.main_tabs_vertical > li > a {
border: none;
font-size: 13px;
text-transform: uppercase;
border-radius: 0;
color: #ccc;
padding: 17px 20px;
margin: 0; }
.nav-tabs.main_tabs_vertical > li .fa{font-size:16px; margin-right: 10px;}
.main_tabs_horizontal {
font-size: 12px;
display: inline-block;
margin: 0;
vertical-align: top;
border: none; }
.main_tabs_horizontal li {
margin: 0; }
.main_tabs_horizontal > li > a {
margin: 0;
padding: 8px 10px;
border: 1px solid #ccc; }
.main_tabs_horizontal > li:first-child > a {
border-radius: 3px 0 0 3px;
border-right: 0 !important; }
.main_tabs_horizontal > li:last-child > a {
border-radius: 0 3px 3px 0;
border-left: 0 !important; }
.main_tabs_horizontal > li.active a,
.main_tabs_horizontal > li.active a:hover,
.main_tabs_horizontal > li.active a:focus {
color: #ffffff;
background-color: #75a74d;
border-color: #75a74d;
font-weight: normal;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) inset; }
.main_tabs_horizontal > li a:hover {
background-color: #eee;
border-color: #ccc; }
.tab-horizontal .tab-content {
display: inline-block;
margin: 0 10px; }
.form-horizontal .control-label {
text-align: left;
font-weight: normal; }
.main_tabs_2 {
background: #f1f1f1;
display: block;
margin-bottom: 0; }
.main_tabs_2 li {
border-right: 1px solid #e5e5e5; }
.main_tabs_2 > li > a {
border-radius: 0px;
border: none !important;
margin: 0;
padding: 20px 35px;
font-size: 13px;
text-transform: uppercase;
}
.main_tabs_2 > li.active a,
.main_tabs_2 > li.active a:hover,
.main_tabs_2 > li.active a:focus {
background-color: #fff;
font-weight: normal; }
.main_tabs_2 > li a:hover {
background-color: #fff;
}
.products_button {
color: #999;
padding: 8px 0;
display: inline-block;
margin: 0 50px;
text-transform: uppercase;
position:relative;
border-bottom:1px solid #3c3c3c ;
}
.products_button:after{
content: '';
display: block;
width:0%;
bottom:-1px;
position:absolute;
transition: 0.5s all ease;
border-bottom: 1px solid #999!important;
}
.products_button:hover:after{
width:100%;
}
.products_button:hover {color: #eee; }
.products_button .fa {
font-size: 14px;
margin: 0 3px;
vertical-align: middle; }
h3.panel-brand {
text-transform: uppercase;
font-weight: 700;
font-size: 18px;
margin: 0; }
h3.panel-brand .label {
text-transform: none;
font-size: 11px; }
h2.title_h2 {
text-transform: uppercase;
color: #f23b3b;
font-size: 15px;
font-weight: bold;
padding-bottom: 3px;
border-bottom: 1px dotted #918D8D;
display: block; }
.add-soconfig_cssfile, .add-soconfig_jsfile,
.add-soconfig_cssfile_store, .add-soconfig_jsfile_store {
padding: 4px 10px;
margin-top: 2px; }
.block-group {
margin-bottom: 15px; }
.block-group .control-label {
margin-bottom: 5px; }
.img-patt {
width: 45px;
display: inline-block;
text-align: center;
margin-bottom: 10px; }
.text-capital{text-transform: capitalize;}
.pic_error {
margin: 10px 0;
color: white;
background: #cb1e1e;
padding: 3px 10px;
border-radius: 3px;
font-size: 11px;
display: inline-block; }
.text-warning { color: #a94442;}
.icon-so{
background: #3498db;
padding: 3px;
border-radius: 3px;
margin: 0 -3px;
color: white;
}
.input-group .fa-paint-brush{display:table-cell;}
.breadcrumb li .fa{display:none;}
.so-panelType{background: url('../image/bg-tabs2.png') repeat-y;margin-top:15px;}
.tabs_vertical_headertype {border:none;padding: 0;margin: 10px 0;width:190px;min-height: 450px;}
.tabs_vertical_headertype li{float:left;width:100%;margin:0;}
.tabs_vertical_headertype li a{border:none;margin: 0;padding: 15px; text-transform: uppercase;}
.tabs_vertical_headertype li.active a,
.tabs_vertical_headertype li.active a:hover,
.tabs_vertical_headertype li.active a:focus{border:none !important; background: #3498db;color:white;}
.tabs_vertical_headertype + .tab-content{padding: 0;width:calc(100% - 190px);}
.form-horizontal .group-typeheader{border:none !important; padding: 0; margin: 30px 0 0;display: inline-block;width: 100%;}
.form-horizontal .group-typeheader label,
.form-horizontal .group-typecolor label{padding: 0;}
.form-horizontal .group-typecolor input,
.form-horizontal .group-typeheader input[type="radio"]{visibility: hidden;position: absolute;}
.type {border: 1px solid #dddddd;display: inline-block;position: relative;z-index: 1;z-index: 2;margin-bottom: 10px; }
.typetitle{font-size: 13px; margin: 0 0 10px;display: block;font-weight: 600; clear:both;}
.type:hover{border: 1px solid #999;}
.type:after{content:"\f00c";display:block; position: absolute;z-index: 2;top: -50px;opacity: 0;width:100%;text-align: center;font-size: 42px;color: white; transition:0.5s all ease-in-out;}
.type.active:after{top: calc(50% - 21px); opacity: 1;}
.type.active{border: 1px solid #999;background:#3498db;}
.type.active img{opacity: 0.4 !important;}
.group-banners input[type="radio"]{margin-left: 0px;}
.group-banners h3.typetitle{margin-left: 20px;margin-bottom: 20px;}
.form-horizontal .group-banners input[type="radio"]{visibility: visible;}
.help-hint-text{
color: #3498db;
font-weight:bold;
text-transform:uppercase;
}
.help-hint-text .fa{
font-size:18px;
}
.help-hint{
border: 1px solid #ddd;
padding: 8px;
font-weight: bold;
background: #f1f1f1;
color: #3498db;
margin:20px 0 10px;
}
.help-hint .fa{
padding:11px;
margin:-9px 10px -9px -9px;
font-size:18px;
background:#3498db;
color:white;
} | admin/view/stylesheet/theme.css | body{ background: #f1f1f1; color:#444;}
.page-header h2{display:inline-block;}
#content{margin: 0;}
#footer{height: 50px;}
img{max-width: 100%;}
.font-small{font-size: 12px;font-weight: normal;}
.col-sm-15{
width:20%;
position: relative;
float:left;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
/*======== theme-options =========*/
#theme-options .panel {box-shadow:none;background: none;margin: 0;}
#theme-options .content{ background: #464960; }
#theme-options .content > div {display:table;width:100%; }
#theme-options .content > .panel-heading{
padding: 20px 0;
border-bottom: 3px solid #3498db; color:#ccc;
background: #213748; /* Old browsers */
}
#theme-options .content > .panel-heading .btn{border:none;}
#theme-options .content > .panel-heading .dropdown-toggle{
box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
background: #182835;
padding: 7px 20px;
color:#ccc;
font-size: 14px;
border-radius:3px;
border-bottom:1px solid #32495d;
transition: 0.3s all ease-in-out;
}
#theme-options .content > .panel-heading .dropdown-toggle:hover{
color:white;
background: #082238;
}
#theme-options .content > .panel-body{background: url('../image/bg-tabs.png') repeat-y ;padding: 0;border-bottom: 5px solid #afafaf; border-right:1px solid #ddd;}
.main_content_vertical{padding: 0;width: calc(100% - 230px);margin-left: 230px;min-height: 520px;background:white;}
#theme-options .dropdown-menu {
display: block;
opacity: 0;
filter: alpha(opacity=0);
visibility: hidden;
transition: all 0.2s ease-out;
margin-top: 20px;
min-width:190px;
}
@media (min-width: 1200px) {
#theme-options .dropdown-menu:after {
content: '';
border: 6px solid #ccc;
position: absolute;
z-index: 3;
top: -12px;
left: 19px;
border-color: transparent transparent #fff transparent;
}
}
#theme-options .open > .dropdown-menu {
margin-top: 5px;
opacity: 1;
filter: alpha(opacity=100);
visibility: visible;
}
#theme-options .dropdown-menu > li > a {
padding: 7px 10px;
}
.form-control, .form-field {
padding: 7px 10px;
background-color: #f9f9f9;
border: 1px solid #dedede;
border-radius: 3px;
box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05);
line-height: 1.2;
display: block; }
.clearfix{clear:both;}
.custom-code {
font-family: "Courier New", Courier, monospace;
font-size: 18px;
line-height: 30px; }
.width30 {width: 30% !important; }
.width50 {width: 40% !important; }
.width15 {
width: 15% !important; }
.margin15 {
margin-bottom: 15px; }
.help-block {
font-size: 12px;
color: #999;
font-weight:normal;
}
.no-margin {
margin: 0 !important; }
.alert-warning, .label-warning, .modal-warning .modal-body {
background-color: #f39c12 !important;
color:white;
border-color: #e08e0b;
}
.callout.callout-success, .alert-success, .label-success, .modal-success .modal-body {
background-color: #00a65a !important;
color:white;
border-color: #008d4c;
}
.list-decimal{list-style: circle;}
/*---Panel--*/
.so-panel {font-size: 13px;padding: 20px 30px;}
.so-panel .panel-title {
position: relative;
font-weight: 700;
text-transform: uppercase;
margin: 0px;
color: #333;
padding: 0 10px;
border-left: 3px solid #648e42;
}
.so-panel .panel-title .help-block {
text-transform: none;
display: inline-block;
font-weight: normal;
margin: 0 20px; }
.panel-container {padding: 0 ; }
.panel-container > .form-group {
margin: 0;
padding: 15px 0; }
.panel-container > .form-group .control-label {
font-weight: normal;
border-right: 1px solid #eee;
padding: 5px; }
.sidebar .nav-tabs{border-bottom:none;}
.main_tabs {
background-color: #515151;
border-radius: 2px;
border: 1px solid #515151;
overflow: hidden; }
.main_tabs > li {
margin: 0;
border-right: 1px solid #5A5A5A;
position:relative;
z-index:5;
}
.nav-tabs.main_tabs > li > a {
color: #C4C4C4;
font-size: 14px;
font-weight: normal;
padding: 10px 20px;
margin: 0; }
.nav-tabs.main_tabs > li.active > a,
.nav-tabs.main_tabs > li > a:hover,
.nav-tabs.main_tabs_vertical > li.active > a,
.nav-tabs.main_tabs_vertical > li > a:hover,
.nav-tabs.main_tabs_vertical > li > a:focus {
background-color: rgba(0, 0, 0, 0.2);
border: none;
color: white;
font-weight: normal; }
.main_tabs_vertical > li.active:after{
content:'';
border: 10px solid #ccc;
position:absolute;z-index:3;top:15px;right:-1px;
border-color: transparent #ffffff transparent transparent;
}
.nav-tabs.main_tabs_vertical.store_tabs > li.active > a,
.nav-tabs.main_tabs_vertical.store_tabs > li.active > a:hover {
color: #fff;
background-color: rgba(0, 0, 0, 0.2);
border: none;
font-weight: 600; }
.nav-tabs.main_tabs_vertical.store_tabs > li > a:hover {
border: none;
background: #444;
font-weight: 600; }
.sidebar {
width:229px;
position: absolute;z-index: 1;
}
.sidebar > .title{
font-size: 13px;
text-transform: uppercase;
border-radius: 0;
color: #ccc;
padding: 17px 15px;
margin: 0;
font-weight:bold;
text-align:center;
border-bottom:1px solid #5b5e75;
}
.sidebar > .title .badge{color: #ccc;}
.nav-tabs.main_tabs_vertical > li {
float: none;
width: 100%; }
.nav-tabs.main_tabs_vertical > li {margin: 0 0 1px; }
.nav-tabs.main_tabs_vertical > li > a {
border: none;
font-size: 13px;
text-transform: uppercase;
border-radius: 0;
color: #ccc;
padding: 17px 20px;
margin: 0; }
.nav-tabs.main_tabs_vertical > li .fa{font-size:16px; margin-right: 10px;}
.main_tabs_horizontal {
font-size: 12px;
display: inline-block;
margin: 0;
vertical-align: top;
border: none; }
.main_tabs_horizontal li {
margin: 0; }
.main_tabs_horizontal > li > a {
margin: 0;
padding: 8px 10px;
border: 1px solid #ccc; }
.main_tabs_horizontal > li:first-child > a {
border-radius: 3px 0 0 3px;
border-right: 0 !important; }
.main_tabs_horizontal > li:last-child > a {
border-radius: 0 3px 3px 0;
border-left: 0 !important; }
.main_tabs_horizontal > li.active a,
.main_tabs_horizontal > li.active a:hover,
.main_tabs_horizontal > li.active a:focus {
color: #ffffff;
background-color: #75a74d;
border-color: #75a74d;
font-weight: normal;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) inset; }
.main_tabs_horizontal > li a:hover {
background-color: #eee;
border-color: #ccc; }
.tab-horizontal .tab-content {
display: inline-block;
margin: 0 10px; }
.form-horizontal .control-label {
text-align: left;
font-weight: normal; }
.main_tabs_2 {
background: #f1f1f1;
display: block;
margin-bottom: 0; }
.main_tabs_2 li {
border-right: 1px solid #e5e5e5; }
.main_tabs_2 > li > a {
border-radius: 0px;
border: none !important;
margin: 0;
padding: 20px 35px;
font-size: 13px;
text-transform: uppercase;
}
.main_tabs_2 > li.active a,
.main_tabs_2 > li.active a:hover,
.main_tabs_2 > li.active a:focus {
background-color: #fff;
font-weight: normal; }
.main_tabs_2 > li a:hover {
background-color: #fff;
}
.products_button {
color: #999;
padding: 8px 0;
display: inline-block;
margin: 0 50px;
text-transform: uppercase;
position:relative;
border-bottom:1px solid #3c3c3c ;
}
.products_button:after{
content: '';
display: block;
width:0%;
bottom:-1px;
position:absolute;
transition: 0.5s all ease;
border-bottom: 1px solid #999!important;
}
.products_button:hover:after{
width:100%;
}
.products_button:hover {color: #eee; }
.products_button .fa {
font-size: 14px;
margin: 0 3px;
vertical-align: middle; }
h3.panel-brand {
text-transform: uppercase;
font-weight: 700;
font-size: 18px;
margin: 0; }
h3.panel-brand .label {
text-transform: none;
font-size: 11px; }
h2.title_h2 {
text-transform: uppercase;
color: #f23b3b;
font-size: 15px;
font-weight: bold;
padding-bottom: 3px;
border-bottom: 1px dotted #918D8D;
display: block; }
.add-soconfig_cssfile, .add-soconfig_jsfile,
.add-soconfig_cssfile_store, .add-soconfig_jsfile_store {
padding: 4px 10px;
margin-top: 2px; }
.block-group {
margin-bottom: 15px; }
.block-group .control-label {
margin-bottom: 5px; }
.img-patt {
width: 45px;
display: inline-block;
text-align: center;
margin-bottom: 10px; }
.text-capital{text-transform: capitalize;}
.pic_error {
margin: 10px 0;
color: white;
background: #cb1e1e;
padding: 3px 10px;
border-radius: 3px;
font-size: 11px;
display: inline-block; }
.text-warning { color: #a94442;}
.icon-so{
background: #3498db;
padding: 3px;
border-radius: 3px;
margin: 0 -3px;
color: white;
}
.input-group .fa-paint-brush{display:table-cell;}
.breadcrumb li .fa{display:none;}
.so-panelType{background: url('../image/bg-tabs2.png') repeat-y;margin-top:15px;}
.tabs_vertical_headertype {border:none;padding: 0;margin: 10px 0;width:190px;min-height: 450px;}
.tabs_vertical_headertype li{float:left;width:100%;margin:0;}
.tabs_vertical_headertype li a{border:none;margin: 0;padding: 15px; text-transform: uppercase;}
.tabs_vertical_headertype li.active a,
.tabs_vertical_headertype li.active a:hover,
.tabs_vertical_headertype li.active a:focus{border:none !important; background: #3498db;color:white;}
.tabs_vertical_headertype + .tab-content{padding: 0;width:calc(100% - 190px);}
.form-horizontal .group-typeheader{border:none !important; padding: 0; margin: 30px 0 0;display: inline-block;width: 100%;}
.form-horizontal .group-typeheader label,
.form-horizontal .group-typecolor label{padding: 0;}
.form-horizontal .group-typecolor input,
.form-horizontal .group-typeheader input[type="radio"]{visibility: hidden;position: absolute;}
.type {border: 1px solid #dddddd;display: inline-block;position: relative;z-index: 1;z-index: 2;margin-bottom: 10px; }
.typetitle{font-size: 13px; margin: 0 0 10px;display: block;font-weight: 600; clear:both;}
.type:hover{border: 1px solid #999;}
.type:after{content:"\f00c";display:block; position: absolute;z-index: 2;top: -50px;opacity: 0;width:100%;text-align: center;font-size: 42px;color: white; transition:0.5s all ease-in-out;}
.type.active:after{top: calc(50% - 21px); opacity: 1;}
.type.active{border: 1px solid #999;background:#3498db;}
.type.active img{opacity: 0.4 !important;}
.group-banners input[type="radio"]{margin-left: 0px;}
.group-banners h3.typetitle{margin-left: 20px;margin-bottom: 20px;}
.form-horizontal .group-banners input[type="radio"]{visibility: visible;}
.help-hint-text{
color: #3498db;
font-weight:bold;
text-transform:uppercase;
}
.help-hint-text .fa{
font-size:18px;
}
.help-hint{
border: 1px solid #ddd;
padding: 8px;
font-weight: bold;
background: #f1f1f1;
color: #3498db;
margin:20px 0 10px;
}
.help-hint .fa{
padding:11px;
margin:-9px 10px -9px -9px;
font-size:18px;
background:#3498db;
color:white;
} | 0.28877 | 0.049797 |
body {
font-size: .85em;
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
color: #232323;
background-color: #fff;
}
header, footer, nav, section {
display: block;
}
/**************************************************************/
.site-url {
background: rgb(39, 68, 118);
padding: 2px;
margin: 0;
width: auto;
}
#title {
font-size: 1em;
margin: 0 0 0px;
color: ghostwhite;
}
#login {
font-size: .85em;
margin: 0 0 0px;
text-align: left;
padding: 2px;
color: ghostwhite;
width: auto;
}
.wrapper {
overflow:hidden;
display: block;
}
.right {
padding: 5px;
width: 250px;
float:right;
overflow:hidden;
text-overflow:ellipsis;
}
.left {
padding: 5px;
width:250px;
float:left;
}
tr.top {
max-height: 30px;
text-align:left;
}
.tables {
float:left;
}
.user {
color: rgb(39, 68, 118);
font-weight: bold;
}
.user_tag {
color: rgb(39, 68, 118);
font: bold;
font-weight: bold;
}
#allComments {
max-height: 500px;
overflow: scroll;
overflow-x: hidden;
}
.commentText {
text-overflow:ellipsis;
white-space: nowrap;
width: 50px;
overflow: hidden;
}
/* Styles for basic forms
-----------------------------------------------------------*/
fieldset {
border: 1px solid #ddd;
padding: 0 1.4em 1.4em 1.4em;
margin: 0 0 1.5em 0;
}
legend {
font-size: 1.2em;
font-weight: bold;
}
textarea {
min-height: 75px;
min-width: 225px;
}
.editor-label {
margin: 1em 0 0 0;
}
.editor-field {
margin: 0.5em 0 0 0;
}
/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
color: #f00;
}
.field-validation-valid {
display: none;
}
.input-validation-error {
border: 1px solid #f00;
background-color: #fee;
}
.validation-summary-errors {
font-weight: bold;
color: #f00;
}
.validation-summary-valid {
display: none;
} | CFirstTagComment/CFirst/Content/Common/Site.css | body {
font-size: .85em;
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
color: #232323;
background-color: #fff;
}
header, footer, nav, section {
display: block;
}
/**************************************************************/
.site-url {
background: rgb(39, 68, 118);
padding: 2px;
margin: 0;
width: auto;
}
#title {
font-size: 1em;
margin: 0 0 0px;
color: ghostwhite;
}
#login {
font-size: .85em;
margin: 0 0 0px;
text-align: left;
padding: 2px;
color: ghostwhite;
width: auto;
}
.wrapper {
overflow:hidden;
display: block;
}
.right {
padding: 5px;
width: 250px;
float:right;
overflow:hidden;
text-overflow:ellipsis;
}
.left {
padding: 5px;
width:250px;
float:left;
}
tr.top {
max-height: 30px;
text-align:left;
}
.tables {
float:left;
}
.user {
color: rgb(39, 68, 118);
font-weight: bold;
}
.user_tag {
color: rgb(39, 68, 118);
font: bold;
font-weight: bold;
}
#allComments {
max-height: 500px;
overflow: scroll;
overflow-x: hidden;
}
.commentText {
text-overflow:ellipsis;
white-space: nowrap;
width: 50px;
overflow: hidden;
}
/* Styles for basic forms
-----------------------------------------------------------*/
fieldset {
border: 1px solid #ddd;
padding: 0 1.4em 1.4em 1.4em;
margin: 0 0 1.5em 0;
}
legend {
font-size: 1.2em;
font-weight: bold;
}
textarea {
min-height: 75px;
min-width: 225px;
}
.editor-label {
margin: 1em 0 0 0;
}
.editor-field {
margin: 0.5em 0 0 0;
}
/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
color: #f00;
}
.field-validation-valid {
display: none;
}
.input-validation-error {
border: 1px solid #f00;
background-color: #fee;
}
.validation-summary-errors {
font-weight: bold;
color: #f00;
}
.validation-summary-valid {
display: none;
} | 0.394318 | 0.081556 |
@media only screen and (max-width:767px) {
#mainDiv{
display: grid;
grid-template-columns: repeat(2,50%);
grid-template-rows: repeat(7,100%);
width: 100%;
}
#a{
grid-column: 1/ span 2;
grid-row: 1;
}
#b{
grid-column: 1/ span 2 ;
grid-row: 2;
}
#c{
grid-column:1 /span 2 ;
grid-row: 3;
}
#d{
grid-column: 1/span 2 ;
grid-row: 4;
}
#e{
grid-column: 1 ;
grid-row: 5;
}
#f{
grid-column: 2 ;
grid-row: 5;
}
#g{
grid-column: 1 ;
grid-row: 6;
}
#h{
grid-column: 2 ;
grid-row: 6;
}
#i{
grid-column: 1 /span 2 ;
grid-row: 7;
}
.arrangeDiv{
display: flex;
flex-direction: row;
}
}
/* tablet view */
@media screen and (min-width:768px) and (max-width:960px){
#mainDiv{
display: grid;
grid-template-columns: 200px repeat(4,280px);
grid-template-rows: 100px 200px 250px 150px;
width: 100%;
}
#a{
width: 100%;
grid-column: 1/ span 5;
grid-row: 1;
}
#b{
grid-column:1 ;
grid-row: 2/span 3;
}
#c{
grid-column:2 /span 2 ;
grid-row: 2;
}
#d{
grid-column: 4/span 2 ;
grid-row: 2;
}
#e{
grid-column: 2 ;
grid-row: 3;
}
#f{
grid-column: 3 ;
grid-row: 3;
}
#g{
grid-column: 4 ;
grid-row: 3;
}
#h{
grid-column: 5 ;
grid-row: 3;
}
#i{
grid-column: 2 /span 5 ;
grid-row: 4;
}
}
/* desktop view */
@media screen and (min-width:960px){
#mainDiv{
display: grid;
grid-template-columns: 200px repeat(4,280px);
grid-template-rows: 100px 200px 250px 150px;
width: 100%;
}
#a{
width: 100%;
grid-column: 1/ span 5;
grid-row: 1;
}
#b{
grid-column:1 ;
grid-row: 2/span 3;
}
#c{
grid-column:2 /span 2 ;
grid-row: 2;
}
#d{
grid-column: 4/span 2 ;
grid-row: 2;
}
#e{
grid-column: 2 ;
grid-row: 3;
}
#f{
grid-column: 3 ;
grid-row: 3;
}
#g{
grid-column: 4 ;
grid-row: 3;
}
#h{
grid-column: 5 ;
grid-row: 3;
}
#i{
grid-column: 2 /span 5 ;
grid-row: 4;
}
} | style/layout.css |
@media only screen and (max-width:767px) {
#mainDiv{
display: grid;
grid-template-columns: repeat(2,50%);
grid-template-rows: repeat(7,100%);
width: 100%;
}
#a{
grid-column: 1/ span 2;
grid-row: 1;
}
#b{
grid-column: 1/ span 2 ;
grid-row: 2;
}
#c{
grid-column:1 /span 2 ;
grid-row: 3;
}
#d{
grid-column: 1/span 2 ;
grid-row: 4;
}
#e{
grid-column: 1 ;
grid-row: 5;
}
#f{
grid-column: 2 ;
grid-row: 5;
}
#g{
grid-column: 1 ;
grid-row: 6;
}
#h{
grid-column: 2 ;
grid-row: 6;
}
#i{
grid-column: 1 /span 2 ;
grid-row: 7;
}
.arrangeDiv{
display: flex;
flex-direction: row;
}
}
/* tablet view */
@media screen and (min-width:768px) and (max-width:960px){
#mainDiv{
display: grid;
grid-template-columns: 200px repeat(4,280px);
grid-template-rows: 100px 200px 250px 150px;
width: 100%;
}
#a{
width: 100%;
grid-column: 1/ span 5;
grid-row: 1;
}
#b{
grid-column:1 ;
grid-row: 2/span 3;
}
#c{
grid-column:2 /span 2 ;
grid-row: 2;
}
#d{
grid-column: 4/span 2 ;
grid-row: 2;
}
#e{
grid-column: 2 ;
grid-row: 3;
}
#f{
grid-column: 3 ;
grid-row: 3;
}
#g{
grid-column: 4 ;
grid-row: 3;
}
#h{
grid-column: 5 ;
grid-row: 3;
}
#i{
grid-column: 2 /span 5 ;
grid-row: 4;
}
}
/* desktop view */
@media screen and (min-width:960px){
#mainDiv{
display: grid;
grid-template-columns: 200px repeat(4,280px);
grid-template-rows: 100px 200px 250px 150px;
width: 100%;
}
#a{
width: 100%;
grid-column: 1/ span 5;
grid-row: 1;
}
#b{
grid-column:1 ;
grid-row: 2/span 3;
}
#c{
grid-column:2 /span 2 ;
grid-row: 2;
}
#d{
grid-column: 4/span 2 ;
grid-row: 2;
}
#e{
grid-column: 2 ;
grid-row: 3;
}
#f{
grid-column: 3 ;
grid-row: 3;
}
#g{
grid-column: 4 ;
grid-row: 3;
}
#h{
grid-column: 5 ;
grid-row: 3;
}
#i{
grid-column: 2 /span 5 ;
grid-row: 4;
}
} | 0.216674 | 0.201126 |
---------------------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Raleway:200,400,700);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url(/assets/js/plugins/uikit/uikit.css);
@import url(/assets/css/font-awesome.min.css);
@import url(/assets/js/plugins/owl-carousel/owl.carousel.css);
@import url(/assets/js/plugins/owl-carousel/owl.theme.css);
@import url(/assets/js/plugins/owl-carousel/owl.transitions.css);
@import url(/assets/js/plugins/fancybox/jquery.fancybox.css);
/*
Template Name: Horrus
Description: Responsive HTML5 / CSS3 Coming Soon, Under Construction Template
Version: 1.0
Author: NestoLab
Notes:
Main Color : #2b344d rgba(43, 52, 77, 1)
Hover Color: #3d4a6e
1. General
1.1 Main Styles
1.2 Anchor
1.3 iframe
2. Typography
2.1 Headings
2.2 Selection Color
3. Menu
3.1 Wrapper
3.2 Tiny Header
4. Section Title / Section Description
5. Home Section
5.1 Wrapper
5.2 Welcome Message
5.3 CountDown Timer
5.3.1 Wrapper
5.3.2 Digit
5.3.3 Title
5.3.4 Separator
6. Services Section
6.1 Wrapper
6.2 Services Box
6.2.1 Wrapper
6.2.2 Icon
6.2.3 Hover
6.2.4 Title
6.2.5 Description
7. Portfolio Section
7.1 Wrapper
7.2 Typography
7.3 OWL Slider
7.3.1 Wrapper
7.3.2 Navigation
7.4 Portfolio Item
7.4.1 Wrapper
7.4.2 Containt
7.4.3 Image
7.4.4 Overlayer
7.4.5 Anchor
7.4.6 Hover
8. Portfolio Modal
8.1 Short Section Title
8.2 Project OverView
8.3 Project Details
8.3.1 Wrapper
8.3.2 Description
9. Team Section
9.1 Wrapper
9.2 Member Box
9.2.1 Wrapper
9.2.2 Image
9.2.3 Name
9.2.4 Title
9.2.5 Social
9.2.6 Hover
10. Clients Section
10.1 Wrapper
10.2 Quote Rotator
10.2.1 Wrapper
10.2.2 Containt
10.2.3 Progress Bar
10.2.4 Blockquote
10.2.5 Image
11. Contact Us Section
11.1 Wrapper
11.2 Form
11.2.1 Wrapper
11.2.2 Textarea
11.2.3 form-control
11.2.4 Button
11.2.5 error message
12. Map Section
12.1 Wrapper
12.2 Map
13. Subscribtion
13.1 Wrapper
13.2 Input
13.3 Submit
13.4 Success & Error
14. Footer Section
14.1 Wrapper
14.2 Anchor
14.3 Typography
14.4 Social Icons
15. Bootstrap New Elements
15.1 Modal
15.2 tooltip
15.3 navbar
15.4 btn
15.5 Alert
16. Responsive
16.1 TABLET : 1024px
16.2 TABLET : 768px
16.3 Phone : 480px
16.4 Phone : 320px
*/
/* ==========================================================================
1. General
========================================================================== */
/* 1.1 Main Styles
---------------------------------------------------------------------------*/
body {
margin: 0;
padding: 0;
color: #666666;
font-weight: normal;
background-color: #2b344d;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased !important;
font: 14px/22px 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to <NAME>, <NAME>,
* <NAME>, and the H5BP dev community and team.
*/
.browsehappy { margin: 0.2em 0; background-color: #cccccc; color: #000000; padding: 0.2em 0; }
.uppercase { text-transform: uppercase; }
/* 1.2 Anchor
---------------------------------------------------------------------------*/
a { color: #2b344d; }
a,
a > * {
outline: none;
cursor: pointer;
text-decoration: none;
}
a:focus,
a:hover {
outline: none;
color: #3d4a6e;
text-decoration: none;
}
/* 1.3 iframe
---------------------------------------------------------------------------*/
iframe {
-webkit-border: 0;
-moz-border: 0;
-o-border: 0;
border: 0;
}
/* ==========================================================================
2. Typography
========================================================================== */
/* 2.1 Headings
---------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
color: #2b344d;
line-height: 1.2;
font-weight: normal;
letter-spacing: 1px;
}
h1,
h2,
h3 {
font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h4,
h5,
h6 {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
p { margin: 0 0 10px; }
b,
strong { font-weight: 700; }
/* 2.2 Selection Color
---------------------------------------------------------------------------*/
::selection {
color: #ffffff;
text-shadow: none;
background-color: #2b344d;
}
::-webkit-selection {
color: #ffffff;
text-shadow: none;
background-color: #2b344d;
}
::-moz-selection {
color: #ffffff;
text-shadow: none;
background-color: #2b344d;
}
/* ==========================================================================
3. Menu
========================================================================== */
/* 3.1 Wrapper
---------------------------------------------------------------------------*/
#nav-wrapper {
top: 0;
left: 0;
width: 100%;
padding: 20px 0;
position: fixed;
z-index: 999;
background-color: rgba(43, 52, 77, 0.9);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-border-bottom: 1px solid #22293d;
-moz-border-bottom: 1px solid #22293d;
-o-border-bottom: 1px solid #22293d;
border-bottom: 1px solid #22293d;
}
#nav-wrapper:after {
left: 0;
top: 100%;
content: '';
width: 100%;
height: 42px;
position: absolute;
background: url(/assets/images/header-shadow.png) no-repeat;
background-position: center bottom;
}
/* 3.2 Tiny Header
---------------------------------------------------------------------------*/
#nav-wrapper.tinyheader { padding: 15px 0; }
/* ==========================================================================
4. Section Title / Section Description
========================================================================== */
.section-title {
width: 100%;
overflow: hidden;
text-align: center;
margin-bottom: 10px;
}
.section-title h1 {
font-size: 40px;
font-weight: 700;
text-transform: uppercase;
}
.section-desc {
width: 100%;
overflow: hidden;
text-align: center;
margin-bottom: 70px;
}
.section-desc p {
font-size: 20px;
line-height: 30px;
}
/* ==========================================================================
5. Home Section
========================================================================== */
/* 5.1 Wrapper
---------------------------------------------------------------------------*/
#home-section {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
position: relative;
background-color: #2b344d;
-webkit-border-bottom: 1px solid #efefef;
-moz-border-bottom: 1px solid #efefef;
-o-border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
#home-wrapper {
width: 100%;
overflow: hidden;
text-align: center;
position: relative;
padding: 231px 0 150px;
}
#home-wrapper .btn {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
/* 5.2 Welcome Message
---------------------------------------------------------------------------*/
#welcome-msg {
overflow: hidden;
margin-bottom: 80px;
}
#welcome-msg h1 {
color: #ffffff;
font-size: 40px;
}
/* 5.3 CountDown Timer
---------------------------------------------------------------------------*/
/* 5.3.1 Wrapper
---------------------------------------------------------------------------*/
#countdown_dashboard {
max-width: 900px;
overflow: hidden;
margin: 0 auto 60px;
text-align: center;
}
/* 5.3.2 Digit
---------------------------------------------------------------------------*/
.digit {
height: 65px;
color: #ffffff;
font-size: 60px;
font-weight: 400;
line-height: 65px;
text-align: center;
position: relative;
font-style: normal;
display: inline-block;
vertical-align: middle;
}
/* 5.3.3 Title
---------------------------------------------------------------------------*/
.dash_title {
color: #ffffff;
display: block;
font-size: 20px;
margin-top: 15px;
text-transform: uppercase;
}
/* 5.3.4 Separator
---------------------------------------------------------------------------*/
.months_dash,
.days_dash,
.hours_dash,
.minutes_dash {
position: relative;
margin-bottom: 30px;
}
.months_dash:after,
.days_dash:after,
.hours_dash:after,
.minutes_dash:after {
position: absolute;
top: 0;
width: 1px;
right: -15px;
height: 100%;
content: '';
background-color: #ffffff;
}
/* ==========================================================================
6. Services Section
========================================================================== */
/* 6.1 Wrapper
---------------------------------------------------------------------------*/
#services-section {
margin: 0;
width: 100%;
overflow: hidden;
position: relative;
padding: 100px 0 79px;
background-color: #ffffff;
-webkit-border-bottom: 1px solid #efefef;
-moz-border-bottom: 1px solid #efefef;
-o-border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
/* 6.2 Services Box
---------------------------------------------------------------------------*/
/* 6.2.1 Wrapper
---------------------------------------------------------------------------*/
.services-box {
width: 100%;
text-align: center;
margin-bottom: 30px;
}
/* 6.2.2 Icon
---------------------------------------------------------------------------*/
.services-icon {
z-index: 0;
width: 90px;
height: 90px;
color: #ffffff;
font-size: 45px;
position: relative;
text-align: center;
line-height: 90px;
margin: 0 auto 25px;
background-color: #2b344d;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.services-icon i { line-height: 90px; }
/* 6.2.3 Hover
---------------------------------------------------------------------------*/
.services-box:hover .services-icon { background-color: #3d4a6e; }
/* 6.2.4 Title
---------------------------------------------------------------------------*/
.services-title {
width: 100%;
overflow: hidden;
margin-bottom: 10px;
text-transform: uppercase;
}
.services-title h3 { font-weight: 700; }
/* 6.2.5 Description
---------------------------------------------------------------------------*/
.services-desc {
width: 100%;
overflow: hidden;
}
.services-desc p:last-child { margin: 0; }
/* ==========================================================================
7. Portfolio Section
========================================================================== */
/* 7.1 Wrapper
---------------------------------------------------------------------------*/
#portfolio-section-wrapper {
margin: 0;
padding: 0;
width: 100%;
background-repeat: repeat;
background-attachment: fixed;
background-position: center center;
background-image: url(/assets/images/background/1-1920x1200.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#portfolio-section-container {
width: 100%;
overflow: hidden;
padding: 100px 0 98px;
background-color: rgba(43, 52, 77, 0.9);
}
/* 7.2 Typography
---------------------------------------------------------------------------*/
#portfolio-section-wrapper h1 { color: #ffffff; }
#portfolio-section-wrapper p { color: #dedede; }
/* 7.3 OWL Slider
---------------------------------------------------------------------------*/
/* 7.3.1 Wrapper
---------------------------------------------------------------------------*/
.owl-portfolio.col-md-12 { padding: 0; }
/* 7.3.2 Navigation
---------------------------------------------------------------------------*/
.owl-theme .owl-controls .owl-page span { background-color: #ffffff; }
/* 7.4 Portfolio Item
---------------------------------------------------------------------------*/
/* 7.4.1 Wrapper
---------------------------------------------------------------------------*/
.portfolio-item {
overflow: hidden;
padding: 5px 20px;
position: relative;
}
.portfolio-item:after {
top: 0;
left: 15px;
content: '';
z-index: -1;
height: 100%;
position: absolute;
width: calc(100% - 30px);
background-color: #ffffff;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
-o-border-radius: 6px;
border-radius: 6px;
}
/* 7.4.2 Containt
---------------------------------------------------------------------------*/
.portfolio-containt {
width: 100%;
position: relative;
}
/* 7.4.3 Image
---------------------------------------------------------------------------*/
.portfolio-containt img {
width: 100%;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
/* 7.4.4 Overlayer
---------------------------------------------------------------------------*/
.portfolio-overlayer {
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
padding: 20px;
text-align: center;
position: absolute;
background-color: rgba(43, 52, 77, 0.9);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/* 7.4.5 Anchor
---------------------------------------------------------------------------*/
.portfolio-overlayer a {
top: 50%;
left: 50%;
z-index: 0;
width: 40px;
height: 40px;
color: #2b344d;
font-size: 1.5em;
margin-top: -20px;
line-height: 40px;
position: absolute;
text-align: center;
background-color: #ffffff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
.portfolio-overlayer a.link { margin-left: -45px; }
.portfolio-overlayer a.preview {
font-size: 1.3em;
margin-left: 5px;
line-height: 38px;
}
/* 7.4.6 Hover
---------------------------------------------------------------------------*/
.portfolio-overlayer a:hover {
color: #ffffff;
background-color: #3d4a6e;
}
.portfolio-containt:hover .portfolio-overlayer { opacity: 1; }
/* ==========================================================================
8. Portfolio Modal
========================================================================== */
/* 8.1 Short Section Title
---------------------------------------------------------------------------*/
.short-section-title {
width: 100%;
overflow: hidden;
margin-bottom: 15px;
padding-bottom: 15px;
-webkit-border-bottom: 1px solid #e5e5e5;
-moz-border-bottom: 1px solid #e5e5e5;
-o-border-bottom: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
}
/* 8.2 Project OverView
---------------------------------------------------------------------------*/
.project-OverView {
width: 100%;
overflow: hidden;
margin-bottom: 15px;
}
/* 8.3 Project Details
---------------------------------------------------------------------------*/
/* 8.3.1 Wrapper
---------------------------------------------------------------------------*/
.project-details {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
}
/* 8.3.2 Description
---------------------------------------------------------------------------*/
ul.project-desc {
margin: 0;
padding: 0;
list-style: none;
}
ul.project-desc li {
display: block;
margin-bottom: 5px;
}
/* ==========================================================================
9. Team Section
========================================================================== */
/* 9.1 Wrapper
---------------------------------------------------------------------------*/
#team-section {
margin: 0;
width: 100%;
overflow: hidden;
position: relative;
padding: 100px 0 79px;
background-color: #ffffff;
-webkit-border-bottom: 1px solid #efefef;
-moz-border-bottom: 1px solid #efefef;
-o-border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
/* 9.2 Member Box
---------------------------------------------------------------------------*/
/* 9.2.1 Wrapper
---------------------------------------------------------------------------*/
.member-box-wrapper {
width: 100%;
overflow: hidden;
}
.member-box {
max-width: 290px;
text-align: center;
position: relative;
margin: 0 auto 30px;
padding: 35px 20px 30px;
background-color: #2b344d;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/* 9.2.2 Image
---------------------------------------------------------------------------*/
.member-img {
width: 150px;
height: 150px;
overflow: hidden;
position: relative;
margin: 0 auto 25px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
-webkit-border: 5px solid #ffffff;
-moz-border: 5px solid #ffffff;
-o-border: 5px solid #ffffff;
border: 5px solid #ffffff;
}
.member-img img { width: 100%; }
/* 9.2.3 Name
---------------------------------------------------------------------------*/
.member-name h2 {
color: #ffffff;
margin-bottom: 15px;
}
/* 9.2.4 Title
---------------------------------------------------------------------------*/
.member-title h4 {
color: #ffffff;
margin-bottom: 25px;
}
/* 9.2.5 Social
---------------------------------------------------------------------------*/
.member-social ul {
padding: 0;
margin: 0;
width: 100%;
list-style: none;
}
.member-social ul li {
margin: 0 5px;
display: inline-block;
}
.member-social ul li a {
width: 40px;
height: 40px;
z-index: 0;
color: #2b344d;
display: block;
font-size: 1.5em;
line-height: 40px;
text-align: center;
background-color: #ffffff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
/* 9.2.6 Hover
---------------------------------------------------------------------------*/
.member-box:hover { background-color: #3d4a6e; }
.member-box a:hover {
color: #ffffff;
background-color: #2b344d;
}
/* ==========================================================================
10. Clients Section
========================================================================== */
/* 10.1 Wrapper
---------------------------------------------------------------------------*/
#clients-section-wrapper {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
background-repeat: repeat;
background-attachment: fixed;
background-position: center center;
background-image: url(/assets/images/background/2-1920x1200.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#clients-section-container {
width: 100%;
padding: 100px 0;
overflow: hidden;
background-color: rgba(43, 52, 77, 0.9);
}
#clients-section-wrapper p { color: #dedede; }
/* 10.2 Quote Rotator
---------------------------------------------------------------------------*/
/* 10.2.1 Wrapper
---------------------------------------------------------------------------*/
.cbp-qtrotator {
width: 100%;
margin: 0 auto;
max-width: 900px;
position: relative;
-webkit-border-bottom: 1px solid #eeeeee;
-moz-border-bottom: 1px solid #eeeeee;
-o-border-bottom: 1px solid #eeeeee;
border-bottom: 1px solid #eeeeee;
}
/* 10.2.2 Containt
---------------------------------------------------------------------------*/
.cbp-qtrotator .cbp-qtcontent {
top: 0;
z-index: 0;
opacity: 0;
width: 100%;
padding: 2em 0 0;
position: absolute;
}
.cbp-qtrotator .cbp-qtcontent.cbp-qtcurrent,
.no-js .cbp-qtrotator .cbp-qtcontent {
opacity: 1;
z-index: 100;
position: relative;
pointer-events: auto;
}
.cbp-qtrotator .cbp-qtcontent:before,
.cbp-qtrotator .cbp-qtcontent:after {
content: " ";
display: table;
}
.cbp-qtrotator .cbp-qtcontent:after { clear: both; }
/* 10.2.3 Progress Bar
---------------------------------------------------------------------------*/
.cbp-qtprogress {
top: 0;
width: 0;
height: 1px;
z-index: 1000;
position: absolute;
background-color: #eeeeee;
}
/* 10.2.4 Blockquote
---------------------------------------------------------------------------*/
.cbp-qtrotator blockquote { margin-bottom: 23px; }
.cbp-qtrotator blockquote p { line-height: 27px }
.cbp-qtrotator blockquote footer {
color: #ffffff;
font-size: 1.2em;
}
.cbp-qtrotator blockquote footer:before { content: '― '; }
/* 10.2.5 Image
---------------------------------------------------------------------------*/
.cbp-qtrotator .cbp-qtcontent img {
float: right;
width: 100px;
height: 100px;
margin-left: 3em;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
-webkit-border: 5px solid #ffffff;
-moz-border: 5px solid #ffffff;
-o-border: 5px solid #ffffff;
border: 5px solid #ffffff;
}
/* ==========================================================================
11. Contact Us Section
========================================================================== */
/* 11.1 Wrapper
---------------------------------------------------------------------------*/
#contact-section {
margin: 0;
width: 100%;
overflow: hidden;
position: relative;
padding: 100px 0 79px;
background-color: #ffffff;
-webkit-border-bottom: 1px solid #efefef;
-moz-border-bottom: 1px solid #efefef;
-o-border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
/* ==========================================================================
11.2 Form
========================================================================== */
/* 11.2.1 Wrapper
---------------------------------------------------------------------------*/
.contactForm {
padding: 0;
width: 100%;
margin: 0 auto;
max-width: 930px;
overflow: hidden;
}
.form-group {
margin: 0;
padding: 0;
}
/* 11.2.2 Textarea
---------------------------------------------------------------------------*/
.contactForm textarea {
width: 100%;
resize: none;
margin: 0 auto 30px;
height: 146px !important;
}
/* 11.2.3 form-control
---------------------------------------------------------------------------*/
.contactForm .form-control {
width: 100%;
height: auto;
padding: 17px;
margin: 0 auto 30px;
background-color: #ffffff;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-border: 2px solid #e5e5e5;
-moz-border: 2px solid #e5e5e5;
-o-border: 2px solid #e5e5e5;
border: 2px solid #e5e5e5;
}
.contactForm .form-control:hover,
.contactForm .form-control:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border: 2px solid #2b344d;
-moz-border: 2px solid #2b344d;
-o-border: 2px solid #2b344d;
border: 2px solid #2b344d;
}
/* 11.2.4 Button
---------------------------------------------------------------------------*/
.contactForm button.submit {
width: 100%;
padding: 16px;
font-size: 14px;
line-height: 22px;
}
/* 11.2.5 error message
---------------------------------------------------------------------------*/
.error {
top: 0;
z-index: 2;
float: right;
color: #2b344d;
position: relative;
margin: -69px 15px 0 0;
}
:-webkit-ui-invalid:not(output) { box-shadow: none; }
:-moz-ui-invalid:not(output) { box-shadow: none; }
:-ms-ui-invalid:not(output) { box-shadow: none; }
:-o-ui-invalid:not(output) { box-shadow: none; }
ui-invalid:not(output) { box-shadow: none; }
/* ==========================================================================
12. Map Section
========================================================================== */
/* 12.1 Wrapper
---------------------------------------------------------------------------*/
#map-section {
width: 100%;
height: 450px;
margin: 0 auto;
display: block;
position: relative;
}
/* 12.2 Map
---------------------------------------------------------------------------*/
#map {
width: 100%;
height: 450px;
margin: 0 auto;
display: block;
}
/* ==========================================================================
13. Subscribtion
========================================================================== */
/* 13.1 Wrapper
---------------------------------------------------------------------------*/
#subscribe {
width: 435px;
padding: 15px;
overflow: hidden;
position: relative;
margin: -70px auto 0;
background-color: #2b344d;
-webkit-border-radius: 10px 10px 0 0;
-moz-border-radius: 10px 10px 0 0;
-o-border-radius: 10px 10px 0 0;
border-radius: 10px 10px 0 0;
}
/* 13.2 Input
---------------------------------------------------------------------------*/
#subscribe .form-control {
float: left;
width: 300px;
height: auto;
outline: none;
padding: 10px 15px;
background-color: #ffffff;
-webkit-border: none;
-moz-border: none;
-o-border: none;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
-o-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
#subscribe .form-control:hover,
#subscribe .form-control:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
/* 13.3 Submit
---------------------------------------------------------------------------*/
#subscribe button.submit {
width: 105px;
font-size: 14px;
line-height: 22px;
padding: 9px 16px;
background-color: #3d4a6e;
-webkit-border: none;
-moz-border: none;
-o-border: none;
border: none;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
-o-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
#subscribe .submit.focus,
#subscribe .submit:hover {
color: #ffffff;
background-color: #3d4a6e;
}
/* 13.4 Success & Error
---------------------------------------------------------------------------*/
.ssuccess,
.serror {
top: 24px;
right: 130px;
color: #2b344d;
position: absolute;
}
/* ==========================================================================
14. Footer Section
========================================================================== */
/* 14.1 Wrapper
---------------------------------------------------------------------------*/
#footer-section {
margin: 0;
width: 100%;
padding: 30px 0;
overflow: hidden;
position: relative;
background-color: #2b344d;
}
/* 14.2 Anchor
---------------------------------------------------------------------------*/
#footer-section a { color: #ffffff; }
/* 14.3 Typography
---------------------------------------------------------------------------*/
#footer-section p {
margin: 0;
color: #ffffff;
line-height: 30px;
}
/* 14.4 Social Icons
---------------------------------------------------------------------------*/
#footer-section #footer-social-icons ul {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
list-style: none;
text-align: right;
}
#footer-section #footer-social-icons ul li {
padding: 0;
margin-left: 1px;
display: inline-block;
}
#footer-section #footer-social-icons ul li:first-child { margin-left: 0; }
#footer-section #footer-social-icons ul li a {
width: 30px;
height: 30px;
display: block;
font-size: 16px;
line-height: 30px;
text-align: center;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
#footer-section #footer-social-icons ul li a i { line-height: 30px; }
a.twitter:hover { background-color: #46C0fb; }
a.facebook:hover { background-color: #4863ae; }
a.google-plus:hover { background-color: #dd4b39; }
a.youtube-play:hover { background-color: #cc181e; }
a.pinterest:hover { background-color: #ab171e; }
a.linkedin:hover { background-color: #0083a8; }
a.skype:hover { background-color: #36c4f3; }
a.instagram:hover { background-color: #4d4f54; }
/* ==========================================================================
15. Bootstrap New Elements
========================================================================== */
/* 15.1 Modal
========================================================================== */
.modal-body { padding-bottom: 0; }
/* 15.2 tooltip
========================================================================== */
.tooltip {
z-index: 999;
letter-spacing: 1px;
}
/* 15.3 navbar
========================================================================== */
.navbar {
margin-bottom: 0;
min-height: 40px;
-webkit-border: 0;
-moz-border: 0;
-o-border: 0;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand { margin-left: 0; }
.navbar-brand {
padding: 0;
height: 40px;
}
.navbar-nav > li > a {
color: #ffffff;
padding: 10px 0;
font-size: 15px;
letter-spacing: 1px;
}
.navbar-nav > li {
margin-left: 20px;
position: relative;
}
.navbar-nav > li:first-child { margin-left: 0; }
.nav > li > a:hover,
.nav > li > a:focus { background-color: transparent; }
.navbar-nav > li:hover,
.navbar-nav > li.active {
color: #ffffff;
}
.navbar-nav > li.active:before,
.navbar-nav > li:before {
left: 0;
top: -10px;
opacity: 0;
content: '';
width: 100%;
height: 3px;
z-index: -1;
display: block;
position: absolute;
background-color: #ffffff;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.navbar-nav > li.active:after,
.navbar-nav > li:after {
left: 0;
opacity: 0;
content: '';
width: 100%;
height: 3px;
z-index: -1;
bottom: -10px;
display: block;
position: absolute;
background-color: #ffffff;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.navbar-nav > li:hover:before,
.navbar-nav > li.active:before {
top: 0;
opacity: 1;
}
.navbar-nav > li:hover:after,
.navbar-nav > li.active:after {
bottom: 0;
opacity: 1;
}
.navbar-toggle {
margin: 0;
color: #ffffff;
padding: 8px 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-border: 1px solid #ffffff;
-moz-border: 1px solid #ffffff;
-o-border: 1px solid #ffffff;
border: 1px solid #ffffff;
}
/* 15.4 btn
========================================================================== */
.btn:focus { outline: none; }
.btn {
-webkit-border: 2px solid transparent;
-moz-border: 2px solid transparent;
-o-border: 2px solid transparent;
border: 2px solid transparent;
}
.btn:active,
.btn.active {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
text-decoration: line-through;
}
.btn-nesto:active,
.btn-nesto.active {
background-image: none;
}
.btn.btn-nesto {
color: #ffffff;
letter-spacing: 1px;
background-color: #2b344d;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-border: 2px solid #ffffff;
-moz-border: 2px solid #ffffff;
-o-border: 2px solid #ffffff;
border: 2px solid #ffffff;
}
.btn-nesto:hover,
.btn-nesto:focus,
.btn-nesto:active,
.btn-nesto.active {
color: #ffffff;
background-color: #3d4a6e;
}
/* 15.5 Alert
========================================================================== */
.alert-nesto {
color: #ffffff;
background-color: #2b344d;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
#contact-section .alert.alert-nesto { margin-bottom: 30px; }
#contact-section .alert {
-webkit-border: none;
-moz-border: none;
-o-border: none;
border: none;
}
/* ==========================================================================
16. Responsive
========================================================================== */
/* 16.1 TABLET
---------------------------------------------------------------------------*/
@media only screen and (max-width: 990px) and (min-width: 768px) {
.member-box { max-width: 100%; }
}
/* 16.2 SMALL TABLET
---------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
.nav > li > a:hover,
.nav > li > a:focus,
.navbar-nav > li:hover,
.navbar-nav > li.active,
.navbar-nav > li.active a {
color: #2b344d;
background-color: #ffffff;
}
.navbar-nav > li {
margin-left: 0;
text-align: center;
}
.navbar-nav > li.active:before,
.navbar-nav > li:before,
.navbar-nav > li.active:after,
.navbar-nav > li:after,
#nav-wrapper:after {
display: none;
}
#welcome-msg h1 { font-size: 34px; }
.hours_dash:after { display: none; }
.section-title h1 { font-size: 34px; }
#footer-section p {
text-align: center;
margin-bottom: 10px;
}
#footer-section #footer-social-icons ul { text-align: center; }
}
/* 16.3 PHONE
---------------------------------------------------------------------------*/
@media only screen and (max-width: 599px) {
#home-wrapper { padding: 171px 0 90px; }
#welcome-msg h1 { font-size: 30px; }
#map-section { height: 200px; }
#map { height: 200px; }
}
/* 16.4 SMALL PHONE
---------------------------------------------------------------------------*/
@media only screen and (max-width: 479px) {
.section-title h1 { font-size: 30px; }
.member-box { margin: 0 auto 15px; }
.cbp-qtrotator .cbp-qtcontent img { display: none; }
#map-section { height: 300px; }
#map { height: 300px; }
#subscribe { width: 300px; }
#subscribe .form-control { width: 165px; }
} | app/assets/stylesheets/css/style.css | ---------------------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Raleway:200,400,700);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url(/assets/js/plugins/uikit/uikit.css);
@import url(/assets/css/font-awesome.min.css);
@import url(/assets/js/plugins/owl-carousel/owl.carousel.css);
@import url(/assets/js/plugins/owl-carousel/owl.theme.css);
@import url(/assets/js/plugins/owl-carousel/owl.transitions.css);
@import url(/assets/js/plugins/fancybox/jquery.fancybox.css);
/*
Template Name: Horrus
Description: Responsive HTML5 / CSS3 Coming Soon, Under Construction Template
Version: 1.0
Author: NestoLab
Notes:
Main Color : #2b344d rgba(43, 52, 77, 1)
Hover Color: #3d4a6e
1. General
1.1 Main Styles
1.2 Anchor
1.3 iframe
2. Typography
2.1 Headings
2.2 Selection Color
3. Menu
3.1 Wrapper
3.2 Tiny Header
4. Section Title / Section Description
5. Home Section
5.1 Wrapper
5.2 Welcome Message
5.3 CountDown Timer
5.3.1 Wrapper
5.3.2 Digit
5.3.3 Title
5.3.4 Separator
6. Services Section
6.1 Wrapper
6.2 Services Box
6.2.1 Wrapper
6.2.2 Icon
6.2.3 Hover
6.2.4 Title
6.2.5 Description
7. Portfolio Section
7.1 Wrapper
7.2 Typography
7.3 OWL Slider
7.3.1 Wrapper
7.3.2 Navigation
7.4 Portfolio Item
7.4.1 Wrapper
7.4.2 Containt
7.4.3 Image
7.4.4 Overlayer
7.4.5 Anchor
7.4.6 Hover
8. Portfolio Modal
8.1 Short Section Title
8.2 Project OverView
8.3 Project Details
8.3.1 Wrapper
8.3.2 Description
9. Team Section
9.1 Wrapper
9.2 Member Box
9.2.1 Wrapper
9.2.2 Image
9.2.3 Name
9.2.4 Title
9.2.5 Social
9.2.6 Hover
10. Clients Section
10.1 Wrapper
10.2 Quote Rotator
10.2.1 Wrapper
10.2.2 Containt
10.2.3 Progress Bar
10.2.4 Blockquote
10.2.5 Image
11. Contact Us Section
11.1 Wrapper
11.2 Form
11.2.1 Wrapper
11.2.2 Textarea
11.2.3 form-control
11.2.4 Button
11.2.5 error message
12. Map Section
12.1 Wrapper
12.2 Map
13. Subscribtion
13.1 Wrapper
13.2 Input
13.3 Submit
13.4 Success & Error
14. Footer Section
14.1 Wrapper
14.2 Anchor
14.3 Typography
14.4 Social Icons
15. Bootstrap New Elements
15.1 Modal
15.2 tooltip
15.3 navbar
15.4 btn
15.5 Alert
16. Responsive
16.1 TABLET : 1024px
16.2 TABLET : 768px
16.3 Phone : 480px
16.4 Phone : 320px
*/
/* ==========================================================================
1. General
========================================================================== */
/* 1.1 Main Styles
---------------------------------------------------------------------------*/
body {
margin: 0;
padding: 0;
color: #666666;
font-weight: normal;
background-color: #2b344d;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased !important;
font: 14px/22px 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
/*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to <NAME>, <NAME>,
* <NAME>, and the H5BP dev community and team.
*/
.browsehappy { margin: 0.2em 0; background-color: #cccccc; color: #000000; padding: 0.2em 0; }
.uppercase { text-transform: uppercase; }
/* 1.2 Anchor
---------------------------------------------------------------------------*/
a { color: #2b344d; }
a,
a > * {
outline: none;
cursor: pointer;
text-decoration: none;
}
a:focus,
a:hover {
outline: none;
color: #3d4a6e;
text-decoration: none;
}
/* 1.3 iframe
---------------------------------------------------------------------------*/
iframe {
-webkit-border: 0;
-moz-border: 0;
-o-border: 0;
border: 0;
}
/* ==========================================================================
2. Typography
========================================================================== */
/* 2.1 Headings
---------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
color: #2b344d;
line-height: 1.2;
font-weight: normal;
letter-spacing: 1px;
}
h1,
h2,
h3 {
font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h4,
h5,
h6 {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
p { margin: 0 0 10px; }
b,
strong { font-weight: 700; }
/* 2.2 Selection Color
---------------------------------------------------------------------------*/
::selection {
color: #ffffff;
text-shadow: none;
background-color: #2b344d;
}
::-webkit-selection {
color: #ffffff;
text-shadow: none;
background-color: #2b344d;
}
::-moz-selection {
color: #ffffff;
text-shadow: none;
background-color: #2b344d;
}
/* ==========================================================================
3. Menu
========================================================================== */
/* 3.1 Wrapper
---------------------------------------------------------------------------*/
#nav-wrapper {
top: 0;
left: 0;
width: 100%;
padding: 20px 0;
position: fixed;
z-index: 999;
background-color: rgba(43, 52, 77, 0.9);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-border-bottom: 1px solid #22293d;
-moz-border-bottom: 1px solid #22293d;
-o-border-bottom: 1px solid #22293d;
border-bottom: 1px solid #22293d;
}
#nav-wrapper:after {
left: 0;
top: 100%;
content: '';
width: 100%;
height: 42px;
position: absolute;
background: url(/assets/images/header-shadow.png) no-repeat;
background-position: center bottom;
}
/* 3.2 Tiny Header
---------------------------------------------------------------------------*/
#nav-wrapper.tinyheader { padding: 15px 0; }
/* ==========================================================================
4. Section Title / Section Description
========================================================================== */
.section-title {
width: 100%;
overflow: hidden;
text-align: center;
margin-bottom: 10px;
}
.section-title h1 {
font-size: 40px;
font-weight: 700;
text-transform: uppercase;
}
.section-desc {
width: 100%;
overflow: hidden;
text-align: center;
margin-bottom: 70px;
}
.section-desc p {
font-size: 20px;
line-height: 30px;
}
/* ==========================================================================
5. Home Section
========================================================================== */
/* 5.1 Wrapper
---------------------------------------------------------------------------*/
#home-section {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
position: relative;
background-color: #2b344d;
-webkit-border-bottom: 1px solid #efefef;
-moz-border-bottom: 1px solid #efefef;
-o-border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
#home-wrapper {
width: 100%;
overflow: hidden;
text-align: center;
position: relative;
padding: 231px 0 150px;
}
#home-wrapper .btn {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
/* 5.2 Welcome Message
---------------------------------------------------------------------------*/
#welcome-msg {
overflow: hidden;
margin-bottom: 80px;
}
#welcome-msg h1 {
color: #ffffff;
font-size: 40px;
}
/* 5.3 CountDown Timer
---------------------------------------------------------------------------*/
/* 5.3.1 Wrapper
---------------------------------------------------------------------------*/
#countdown_dashboard {
max-width: 900px;
overflow: hidden;
margin: 0 auto 60px;
text-align: center;
}
/* 5.3.2 Digit
---------------------------------------------------------------------------*/
.digit {
height: 65px;
color: #ffffff;
font-size: 60px;
font-weight: 400;
line-height: 65px;
text-align: center;
position: relative;
font-style: normal;
display: inline-block;
vertical-align: middle;
}
/* 5.3.3 Title
---------------------------------------------------------------------------*/
.dash_title {
color: #ffffff;
display: block;
font-size: 20px;
margin-top: 15px;
text-transform: uppercase;
}
/* 5.3.4 Separator
---------------------------------------------------------------------------*/
.months_dash,
.days_dash,
.hours_dash,
.minutes_dash {
position: relative;
margin-bottom: 30px;
}
.months_dash:after,
.days_dash:after,
.hours_dash:after,
.minutes_dash:after {
position: absolute;
top: 0;
width: 1px;
right: -15px;
height: 100%;
content: '';
background-color: #ffffff;
}
/* ==========================================================================
6. Services Section
========================================================================== */
/* 6.1 Wrapper
---------------------------------------------------------------------------*/
#services-section {
margin: 0;
width: 100%;
overflow: hidden;
position: relative;
padding: 100px 0 79px;
background-color: #ffffff;
-webkit-border-bottom: 1px solid #efefef;
-moz-border-bottom: 1px solid #efefef;
-o-border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
/* 6.2 Services Box
---------------------------------------------------------------------------*/
/* 6.2.1 Wrapper
---------------------------------------------------------------------------*/
.services-box {
width: 100%;
text-align: center;
margin-bottom: 30px;
}
/* 6.2.2 Icon
---------------------------------------------------------------------------*/
.services-icon {
z-index: 0;
width: 90px;
height: 90px;
color: #ffffff;
font-size: 45px;
position: relative;
text-align: center;
line-height: 90px;
margin: 0 auto 25px;
background-color: #2b344d;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.services-icon i { line-height: 90px; }
/* 6.2.3 Hover
---------------------------------------------------------------------------*/
.services-box:hover .services-icon { background-color: #3d4a6e; }
/* 6.2.4 Title
---------------------------------------------------------------------------*/
.services-title {
width: 100%;
overflow: hidden;
margin-bottom: 10px;
text-transform: uppercase;
}
.services-title h3 { font-weight: 700; }
/* 6.2.5 Description
---------------------------------------------------------------------------*/
.services-desc {
width: 100%;
overflow: hidden;
}
.services-desc p:last-child { margin: 0; }
/* ==========================================================================
7. Portfolio Section
========================================================================== */
/* 7.1 Wrapper
---------------------------------------------------------------------------*/
#portfolio-section-wrapper {
margin: 0;
padding: 0;
width: 100%;
background-repeat: repeat;
background-attachment: fixed;
background-position: center center;
background-image: url(/assets/images/background/1-1920x1200.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#portfolio-section-container {
width: 100%;
overflow: hidden;
padding: 100px 0 98px;
background-color: rgba(43, 52, 77, 0.9);
}
/* 7.2 Typography
---------------------------------------------------------------------------*/
#portfolio-section-wrapper h1 { color: #ffffff; }
#portfolio-section-wrapper p { color: #dedede; }
/* 7.3 OWL Slider
---------------------------------------------------------------------------*/
/* 7.3.1 Wrapper
---------------------------------------------------------------------------*/
.owl-portfolio.col-md-12 { padding: 0; }
/* 7.3.2 Navigation
---------------------------------------------------------------------------*/
.owl-theme .owl-controls .owl-page span { background-color: #ffffff; }
/* 7.4 Portfolio Item
---------------------------------------------------------------------------*/
/* 7.4.1 Wrapper
---------------------------------------------------------------------------*/
.portfolio-item {
overflow: hidden;
padding: 5px 20px;
position: relative;
}
.portfolio-item:after {
top: 0;
left: 15px;
content: '';
z-index: -1;
height: 100%;
position: absolute;
width: calc(100% - 30px);
background-color: #ffffff;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
-o-border-radius: 6px;
border-radius: 6px;
}
/* 7.4.2 Containt
---------------------------------------------------------------------------*/
.portfolio-containt {
width: 100%;
position: relative;
}
/* 7.4.3 Image
---------------------------------------------------------------------------*/
.portfolio-containt img {
width: 100%;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
/* 7.4.4 Overlayer
---------------------------------------------------------------------------*/
.portfolio-overlayer {
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
padding: 20px;
text-align: center;
position: absolute;
background-color: rgba(43, 52, 77, 0.9);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/* 7.4.5 Anchor
---------------------------------------------------------------------------*/
.portfolio-overlayer a {
top: 50%;
left: 50%;
z-index: 0;
width: 40px;
height: 40px;
color: #2b344d;
font-size: 1.5em;
margin-top: -20px;
line-height: 40px;
position: absolute;
text-align: center;
background-color: #ffffff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
.portfolio-overlayer a.link { margin-left: -45px; }
.portfolio-overlayer a.preview {
font-size: 1.3em;
margin-left: 5px;
line-height: 38px;
}
/* 7.4.6 Hover
---------------------------------------------------------------------------*/
.portfolio-overlayer a:hover {
color: #ffffff;
background-color: #3d4a6e;
}
.portfolio-containt:hover .portfolio-overlayer { opacity: 1; }
/* ==========================================================================
8. Portfolio Modal
========================================================================== */
/* 8.1 Short Section Title
---------------------------------------------------------------------------*/
.short-section-title {
width: 100%;
overflow: hidden;
margin-bottom: 15px;
padding-bottom: 15px;
-webkit-border-bottom: 1px solid #e5e5e5;
-moz-border-bottom: 1px solid #e5e5e5;
-o-border-bottom: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
}
/* 8.2 Project OverView
---------------------------------------------------------------------------*/
.project-OverView {
width: 100%;
overflow: hidden;
margin-bottom: 15px;
}
/* 8.3 Project Details
---------------------------------------------------------------------------*/
/* 8.3.1 Wrapper
---------------------------------------------------------------------------*/
.project-details {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
}
/* 8.3.2 Description
---------------------------------------------------------------------------*/
ul.project-desc {
margin: 0;
padding: 0;
list-style: none;
}
ul.project-desc li {
display: block;
margin-bottom: 5px;
}
/* ==========================================================================
9. Team Section
========================================================================== */
/* 9.1 Wrapper
---------------------------------------------------------------------------*/
#team-section {
margin: 0;
width: 100%;
overflow: hidden;
position: relative;
padding: 100px 0 79px;
background-color: #ffffff;
-webkit-border-bottom: 1px solid #efefef;
-moz-border-bottom: 1px solid #efefef;
-o-border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
/* 9.2 Member Box
---------------------------------------------------------------------------*/
/* 9.2.1 Wrapper
---------------------------------------------------------------------------*/
.member-box-wrapper {
width: 100%;
overflow: hidden;
}
.member-box {
max-width: 290px;
text-align: center;
position: relative;
margin: 0 auto 30px;
padding: 35px 20px 30px;
background-color: #2b344d;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/* 9.2.2 Image
---------------------------------------------------------------------------*/
.member-img {
width: 150px;
height: 150px;
overflow: hidden;
position: relative;
margin: 0 auto 25px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
-webkit-border: 5px solid #ffffff;
-moz-border: 5px solid #ffffff;
-o-border: 5px solid #ffffff;
border: 5px solid #ffffff;
}
.member-img img { width: 100%; }
/* 9.2.3 Name
---------------------------------------------------------------------------*/
.member-name h2 {
color: #ffffff;
margin-bottom: 15px;
}
/* 9.2.4 Title
---------------------------------------------------------------------------*/
.member-title h4 {
color: #ffffff;
margin-bottom: 25px;
}
/* 9.2.5 Social
---------------------------------------------------------------------------*/
.member-social ul {
padding: 0;
margin: 0;
width: 100%;
list-style: none;
}
.member-social ul li {
margin: 0 5px;
display: inline-block;
}
.member-social ul li a {
width: 40px;
height: 40px;
z-index: 0;
color: #2b344d;
display: block;
font-size: 1.5em;
line-height: 40px;
text-align: center;
background-color: #ffffff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
/* 9.2.6 Hover
---------------------------------------------------------------------------*/
.member-box:hover { background-color: #3d4a6e; }
.member-box a:hover {
color: #ffffff;
background-color: #2b344d;
}
/* ==========================================================================
10. Clients Section
========================================================================== */
/* 10.1 Wrapper
---------------------------------------------------------------------------*/
#clients-section-wrapper {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
background-repeat: repeat;
background-attachment: fixed;
background-position: center center;
background-image: url(/assets/images/background/2-1920x1200.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#clients-section-container {
width: 100%;
padding: 100px 0;
overflow: hidden;
background-color: rgba(43, 52, 77, 0.9);
}
#clients-section-wrapper p { color: #dedede; }
/* 10.2 Quote Rotator
---------------------------------------------------------------------------*/
/* 10.2.1 Wrapper
---------------------------------------------------------------------------*/
.cbp-qtrotator {
width: 100%;
margin: 0 auto;
max-width: 900px;
position: relative;
-webkit-border-bottom: 1px solid #eeeeee;
-moz-border-bottom: 1px solid #eeeeee;
-o-border-bottom: 1px solid #eeeeee;
border-bottom: 1px solid #eeeeee;
}
/* 10.2.2 Containt
---------------------------------------------------------------------------*/
.cbp-qtrotator .cbp-qtcontent {
top: 0;
z-index: 0;
opacity: 0;
width: 100%;
padding: 2em 0 0;
position: absolute;
}
.cbp-qtrotator .cbp-qtcontent.cbp-qtcurrent,
.no-js .cbp-qtrotator .cbp-qtcontent {
opacity: 1;
z-index: 100;
position: relative;
pointer-events: auto;
}
.cbp-qtrotator .cbp-qtcontent:before,
.cbp-qtrotator .cbp-qtcontent:after {
content: " ";
display: table;
}
.cbp-qtrotator .cbp-qtcontent:after { clear: both; }
/* 10.2.3 Progress Bar
---------------------------------------------------------------------------*/
.cbp-qtprogress {
top: 0;
width: 0;
height: 1px;
z-index: 1000;
position: absolute;
background-color: #eeeeee;
}
/* 10.2.4 Blockquote
---------------------------------------------------------------------------*/
.cbp-qtrotator blockquote { margin-bottom: 23px; }
.cbp-qtrotator blockquote p { line-height: 27px }
.cbp-qtrotator blockquote footer {
color: #ffffff;
font-size: 1.2em;
}
.cbp-qtrotator blockquote footer:before { content: '― '; }
/* 10.2.5 Image
---------------------------------------------------------------------------*/
.cbp-qtrotator .cbp-qtcontent img {
float: right;
width: 100px;
height: 100px;
margin-left: 3em;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
-webkit-border: 5px solid #ffffff;
-moz-border: 5px solid #ffffff;
-o-border: 5px solid #ffffff;
border: 5px solid #ffffff;
}
/* ==========================================================================
11. Contact Us Section
========================================================================== */
/* 11.1 Wrapper
---------------------------------------------------------------------------*/
#contact-section {
margin: 0;
width: 100%;
overflow: hidden;
position: relative;
padding: 100px 0 79px;
background-color: #ffffff;
-webkit-border-bottom: 1px solid #efefef;
-moz-border-bottom: 1px solid #efefef;
-o-border-bottom: 1px solid #efefef;
border-bottom: 1px solid #efefef;
}
/* ==========================================================================
11.2 Form
========================================================================== */
/* 11.2.1 Wrapper
---------------------------------------------------------------------------*/
.contactForm {
padding: 0;
width: 100%;
margin: 0 auto;
max-width: 930px;
overflow: hidden;
}
.form-group {
margin: 0;
padding: 0;
}
/* 11.2.2 Textarea
---------------------------------------------------------------------------*/
.contactForm textarea {
width: 100%;
resize: none;
margin: 0 auto 30px;
height: 146px !important;
}
/* 11.2.3 form-control
---------------------------------------------------------------------------*/
.contactForm .form-control {
width: 100%;
height: auto;
padding: 17px;
margin: 0 auto 30px;
background-color: #ffffff;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-border: 2px solid #e5e5e5;
-moz-border: 2px solid #e5e5e5;
-o-border: 2px solid #e5e5e5;
border: 2px solid #e5e5e5;
}
.contactForm .form-control:hover,
.contactForm .form-control:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border: 2px solid #2b344d;
-moz-border: 2px solid #2b344d;
-o-border: 2px solid #2b344d;
border: 2px solid #2b344d;
}
/* 11.2.4 Button
---------------------------------------------------------------------------*/
.contactForm button.submit {
width: 100%;
padding: 16px;
font-size: 14px;
line-height: 22px;
}
/* 11.2.5 error message
---------------------------------------------------------------------------*/
.error {
top: 0;
z-index: 2;
float: right;
color: #2b344d;
position: relative;
margin: -69px 15px 0 0;
}
:-webkit-ui-invalid:not(output) { box-shadow: none; }
:-moz-ui-invalid:not(output) { box-shadow: none; }
:-ms-ui-invalid:not(output) { box-shadow: none; }
:-o-ui-invalid:not(output) { box-shadow: none; }
ui-invalid:not(output) { box-shadow: none; }
/* ==========================================================================
12. Map Section
========================================================================== */
/* 12.1 Wrapper
---------------------------------------------------------------------------*/
#map-section {
width: 100%;
height: 450px;
margin: 0 auto;
display: block;
position: relative;
}
/* 12.2 Map
---------------------------------------------------------------------------*/
#map {
width: 100%;
height: 450px;
margin: 0 auto;
display: block;
}
/* ==========================================================================
13. Subscribtion
========================================================================== */
/* 13.1 Wrapper
---------------------------------------------------------------------------*/
#subscribe {
width: 435px;
padding: 15px;
overflow: hidden;
position: relative;
margin: -70px auto 0;
background-color: #2b344d;
-webkit-border-radius: 10px 10px 0 0;
-moz-border-radius: 10px 10px 0 0;
-o-border-radius: 10px 10px 0 0;
border-radius: 10px 10px 0 0;
}
/* 13.2 Input
---------------------------------------------------------------------------*/
#subscribe .form-control {
float: left;
width: 300px;
height: auto;
outline: none;
padding: 10px 15px;
background-color: #ffffff;
-webkit-border: none;
-moz-border: none;
-o-border: none;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
-o-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
#subscribe .form-control:hover,
#subscribe .form-control:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
/* 13.3 Submit
---------------------------------------------------------------------------*/
#subscribe button.submit {
width: 105px;
font-size: 14px;
line-height: 22px;
padding: 9px 16px;
background-color: #3d4a6e;
-webkit-border: none;
-moz-border: none;
-o-border: none;
border: none;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
-o-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
#subscribe .submit.focus,
#subscribe .submit:hover {
color: #ffffff;
background-color: #3d4a6e;
}
/* 13.4 Success & Error
---------------------------------------------------------------------------*/
.ssuccess,
.serror {
top: 24px;
right: 130px;
color: #2b344d;
position: absolute;
}
/* ==========================================================================
14. Footer Section
========================================================================== */
/* 14.1 Wrapper
---------------------------------------------------------------------------*/
#footer-section {
margin: 0;
width: 100%;
padding: 30px 0;
overflow: hidden;
position: relative;
background-color: #2b344d;
}
/* 14.2 Anchor
---------------------------------------------------------------------------*/
#footer-section a { color: #ffffff; }
/* 14.3 Typography
---------------------------------------------------------------------------*/
#footer-section p {
margin: 0;
color: #ffffff;
line-height: 30px;
}
/* 14.4 Social Icons
---------------------------------------------------------------------------*/
#footer-section #footer-social-icons ul {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
list-style: none;
text-align: right;
}
#footer-section #footer-social-icons ul li {
padding: 0;
margin-left: 1px;
display: inline-block;
}
#footer-section #footer-social-icons ul li:first-child { margin-left: 0; }
#footer-section #footer-social-icons ul li a {
width: 30px;
height: 30px;
display: block;
font-size: 16px;
line-height: 30px;
text-align: center;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
#footer-section #footer-social-icons ul li a i { line-height: 30px; }
a.twitter:hover { background-color: #46C0fb; }
a.facebook:hover { background-color: #4863ae; }
a.google-plus:hover { background-color: #dd4b39; }
a.youtube-play:hover { background-color: #cc181e; }
a.pinterest:hover { background-color: #ab171e; }
a.linkedin:hover { background-color: #0083a8; }
a.skype:hover { background-color: #36c4f3; }
a.instagram:hover { background-color: #4d4f54; }
/* ==========================================================================
15. Bootstrap New Elements
========================================================================== */
/* 15.1 Modal
========================================================================== */
.modal-body { padding-bottom: 0; }
/* 15.2 tooltip
========================================================================== */
.tooltip {
z-index: 999;
letter-spacing: 1px;
}
/* 15.3 navbar
========================================================================== */
.navbar {
margin-bottom: 0;
min-height: 40px;
-webkit-border: 0;
-moz-border: 0;
-o-border: 0;
border: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand { margin-left: 0; }
.navbar-brand {
padding: 0;
height: 40px;
}
.navbar-nav > li > a {
color: #ffffff;
padding: 10px 0;
font-size: 15px;
letter-spacing: 1px;
}
.navbar-nav > li {
margin-left: 20px;
position: relative;
}
.navbar-nav > li:first-child { margin-left: 0; }
.nav > li > a:hover,
.nav > li > a:focus { background-color: transparent; }
.navbar-nav > li:hover,
.navbar-nav > li.active {
color: #ffffff;
}
.navbar-nav > li.active:before,
.navbar-nav > li:before {
left: 0;
top: -10px;
opacity: 0;
content: '';
width: 100%;
height: 3px;
z-index: -1;
display: block;
position: absolute;
background-color: #ffffff;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.navbar-nav > li.active:after,
.navbar-nav > li:after {
left: 0;
opacity: 0;
content: '';
width: 100%;
height: 3px;
z-index: -1;
bottom: -10px;
display: block;
position: absolute;
background-color: #ffffff;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.navbar-nav > li:hover:before,
.navbar-nav > li.active:before {
top: 0;
opacity: 1;
}
.navbar-nav > li:hover:after,
.navbar-nav > li.active:after {
bottom: 0;
opacity: 1;
}
.navbar-toggle {
margin: 0;
color: #ffffff;
padding: 8px 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-border: 1px solid #ffffff;
-moz-border: 1px solid #ffffff;
-o-border: 1px solid #ffffff;
border: 1px solid #ffffff;
}
/* 15.4 btn
========================================================================== */
.btn:focus { outline: none; }
.btn {
-webkit-border: 2px solid transparent;
-moz-border: 2px solid transparent;
-o-border: 2px solid transparent;
border: 2px solid transparent;
}
.btn:active,
.btn.active {
-webkit-box-shadow: none;
-moz-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
text-decoration: line-through;
}
.btn-nesto:active,
.btn-nesto.active {
background-image: none;
}
.btn.btn-nesto {
color: #ffffff;
letter-spacing: 1px;
background-color: #2b344d;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-border: 2px solid #ffffff;
-moz-border: 2px solid #ffffff;
-o-border: 2px solid #ffffff;
border: 2px solid #ffffff;
}
.btn-nesto:hover,
.btn-nesto:focus,
.btn-nesto:active,
.btn-nesto.active {
color: #ffffff;
background-color: #3d4a6e;
}
/* 15.5 Alert
========================================================================== */
.alert-nesto {
color: #ffffff;
background-color: #2b344d;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
#contact-section .alert.alert-nesto { margin-bottom: 30px; }
#contact-section .alert {
-webkit-border: none;
-moz-border: none;
-o-border: none;
border: none;
}
/* ==========================================================================
16. Responsive
========================================================================== */
/* 16.1 TABLET
---------------------------------------------------------------------------*/
@media only screen and (max-width: 990px) and (min-width: 768px) {
.member-box { max-width: 100%; }
}
/* 16.2 SMALL TABLET
---------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
.nav > li > a:hover,
.nav > li > a:focus,
.navbar-nav > li:hover,
.navbar-nav > li.active,
.navbar-nav > li.active a {
color: #2b344d;
background-color: #ffffff;
}
.navbar-nav > li {
margin-left: 0;
text-align: center;
}
.navbar-nav > li.active:before,
.navbar-nav > li:before,
.navbar-nav > li.active:after,
.navbar-nav > li:after,
#nav-wrapper:after {
display: none;
}
#welcome-msg h1 { font-size: 34px; }
.hours_dash:after { display: none; }
.section-title h1 { font-size: 34px; }
#footer-section p {
text-align: center;
margin-bottom: 10px;
}
#footer-section #footer-social-icons ul { text-align: center; }
}
/* 16.3 PHONE
---------------------------------------------------------------------------*/
@media only screen and (max-width: 599px) {
#home-wrapper { padding: 171px 0 90px; }
#welcome-msg h1 { font-size: 30px; }
#map-section { height: 200px; }
#map { height: 200px; }
}
/* 16.4 SMALL PHONE
---------------------------------------------------------------------------*/
@media only screen and (max-width: 479px) {
.section-title h1 { font-size: 30px; }
.member-box { margin: 0 auto 15px; }
.cbp-qtrotator .cbp-qtcontent img { display: none; }
#map-section { height: 300px; }
#map { height: 300px; }
#subscribe { width: 300px; }
#subscribe .form-control { width: 165px; }
} | 0.353094 | 0.063164 |
.Sidebar {
flex: 1 1 30%;
display: flex;
flex-direction: column;
transition: flex 0.5s;
}
#sidebarToggle:checked ~ .Sidebar {
flex: 0 0;
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsList {
overflow: hidden;
}
.Sidebar h3 {
margin: 0 0 1em 0;
opacity: 1;
transform: scale(1);
transition: transform 0.3s ease, opacity 0.3s ease;
animation: show-sidebar-header 0.6s ease;
}
#sidebarToggle:checked ~ .Sidebar h3 {
display: none;
opacity: 0;
transform: scale(0);
}
@keyframes show-sidebar-header {
0% {
display: none;
opacity: 0;
transform: scale(0);
}
60% {
display: none;
opacity: 0;
transform: scale(0);
}
62.5% {
display: block;
opacity: 0;
transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.SidebarHeader {
margin: 0;
padding: 0 1.5em;
display: flex;
justify-content: flex-end;
align-items: center;
height: 4em;
}
#sidebarToggle {
display: none;
}
.PlayedByFriendsList {
overflow-y: scroll;
max-height: 30em;
background-color: rgba(0, 0, 0, 0.35);
}
.PlayedByFriendsList::-webkit-scrollbar {
display: none;
}
.PlayedByFriendsList .PlayedByFriendsThumbnail {
opacity: 1;
transform: scale(1);
transition: transform 0.3s ease, opacity 0.3s ease;
animation: show-thumbnails 1.2s ease;
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsThumbnail {
display: none;
opacity: 0;
transform: scale(0);
}
@keyframes show-thumbnails {
0% {
display: none;
opacity: 0;
transform: scale(0);
}
60% {
display: none;
opacity: 0;
transform: scale(0);
}
62.5% {
display: flex;
opacity: 0;
transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@media (max-width: 900px) {
.Sidebar {
display: none;
opacity: 0;
animation: show-mobile-headbar 0.5s ease;
}
#sidebarToggle:checked ~ .Sidebar {
display: flex;
opacity: 1;
}
@keyframes show-mobile-headbar {
0% {
display: none;
opacity: 0;
}
1% {
display: flex;
opacity: 0;
}
100% {
opacity: 1;
}
}
.Sidebar h3 {
margin: 0;
transform: translate(-9em);
transition: none;
animation: slide-in-from-left 0.5s ease;
}
#sidebarToggle:checked ~ .Sidebar h3 {
margin: 0 2em;
align-self: center;
display: block;
opacity: 1;
transform: translate(0);
}
@keyframes slide-in-from-left {
0% {
display: none;
opacity: 0;
}
1% {
display: flex;
opacity: 0;
transform: translate(-9em);
}
100% {
opacity: 1;
transform: translate(0);
}
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsList {
display: flex;
overflow-x: scroll;
}
.PlayedByFriendsList .PlayedByFriendsThumbnail {
opacity: 1;
transform: translate(-9em);
transition: none;
animation: slide-in-from-left 0.5s ease;
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsThumbnail {
display: flex;
flex-direction: column;
text-align: center;
opacity: 1;
transform: translate(0);
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsImage {
width: 11em;
height: 6.5em;
}
} | src/views/BrowseGamesView/Sidebar/Sidebar.css | .Sidebar {
flex: 1 1 30%;
display: flex;
flex-direction: column;
transition: flex 0.5s;
}
#sidebarToggle:checked ~ .Sidebar {
flex: 0 0;
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsList {
overflow: hidden;
}
.Sidebar h3 {
margin: 0 0 1em 0;
opacity: 1;
transform: scale(1);
transition: transform 0.3s ease, opacity 0.3s ease;
animation: show-sidebar-header 0.6s ease;
}
#sidebarToggle:checked ~ .Sidebar h3 {
display: none;
opacity: 0;
transform: scale(0);
}
@keyframes show-sidebar-header {
0% {
display: none;
opacity: 0;
transform: scale(0);
}
60% {
display: none;
opacity: 0;
transform: scale(0);
}
62.5% {
display: block;
opacity: 0;
transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.SidebarHeader {
margin: 0;
padding: 0 1.5em;
display: flex;
justify-content: flex-end;
align-items: center;
height: 4em;
}
#sidebarToggle {
display: none;
}
.PlayedByFriendsList {
overflow-y: scroll;
max-height: 30em;
background-color: rgba(0, 0, 0, 0.35);
}
.PlayedByFriendsList::-webkit-scrollbar {
display: none;
}
.PlayedByFriendsList .PlayedByFriendsThumbnail {
opacity: 1;
transform: scale(1);
transition: transform 0.3s ease, opacity 0.3s ease;
animation: show-thumbnails 1.2s ease;
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsThumbnail {
display: none;
opacity: 0;
transform: scale(0);
}
@keyframes show-thumbnails {
0% {
display: none;
opacity: 0;
transform: scale(0);
}
60% {
display: none;
opacity: 0;
transform: scale(0);
}
62.5% {
display: flex;
opacity: 0;
transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@media (max-width: 900px) {
.Sidebar {
display: none;
opacity: 0;
animation: show-mobile-headbar 0.5s ease;
}
#sidebarToggle:checked ~ .Sidebar {
display: flex;
opacity: 1;
}
@keyframes show-mobile-headbar {
0% {
display: none;
opacity: 0;
}
1% {
display: flex;
opacity: 0;
}
100% {
opacity: 1;
}
}
.Sidebar h3 {
margin: 0;
transform: translate(-9em);
transition: none;
animation: slide-in-from-left 0.5s ease;
}
#sidebarToggle:checked ~ .Sidebar h3 {
margin: 0 2em;
align-self: center;
display: block;
opacity: 1;
transform: translate(0);
}
@keyframes slide-in-from-left {
0% {
display: none;
opacity: 0;
}
1% {
display: flex;
opacity: 0;
transform: translate(-9em);
}
100% {
opacity: 1;
transform: translate(0);
}
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsList {
display: flex;
overflow-x: scroll;
}
.PlayedByFriendsList .PlayedByFriendsThumbnail {
opacity: 1;
transform: translate(-9em);
transition: none;
animation: slide-in-from-left 0.5s ease;
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsThumbnail {
display: flex;
flex-direction: column;
text-align: center;
opacity: 1;
transform: translate(0);
}
#sidebarToggle:checked ~ .Sidebar .PlayedByFriendsImage {
width: 11em;
height: 6.5em;
}
} | 0.655777 | 0.120568 |
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
.background {
animation: fadein 4s;
}
html, body{
margin: 0;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
h2{
margin: 0;
}
textarea:focus, input:focus{
outline: none;
}
.background{
background-image: url(../img/background.jpg);
background-size: cover;
min-height: 100%;
background-position: center;
background-attachment: fixed;
}
.content{
padding-top: 1px;
padding-bottom: 1px;
}
.centerWidth{
text-align: center;
}
.normalButton {
background-color:#dedede;
border-radius:2em;
display:inline-block;
cursor:pointer;
color:#000000;
font-family:Arial;
font-size:1em;
padding:1em 2em;
text-decoration:none;
margin-top: 01em;
}
.normalButton:active {
position:relative;
top:1px;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Opera and Firefox */
}
.correct{
font-size: 1em;
background-color: #71ff5e;
opacity: 0.8;
color: black;
padding: 1em;
padding-left: 2em;
}
.wrong{
font-size: 1em;
background-color: #ff5e5e;
opacity: 0.8;
color: black;
padding: 1em;
padding-left: 2em;
}
.option{
font-size: 1em;
background-color: white;
opacity: 0.8;
color: black;
padding: 1em;
padding-left: 2em;
cursor: pointer;
}
.inputBox{
font-size: 1em;
background-color: white;
opacity: 0.8;
color: black;
padding: 1em;
border-radius: 2em;
border-style: none;
}
.disabled{
cursor: auto;
}
.hover:hover {
background-color:#95d8de;
}
.mainTitle{
vertical-align: middle;
font-size: 5em;
margin-top: 10%;
}
.modifyInput{
width: 80%;
}
.viewQuestion{
font-size: 1em;
background-color: white;
opacity: 0.8;
color: black;
padding: 1em;
padding-left: 2em;
margin-bottom: 0;
}
#question{
padding: 1em;
background-color: white;
opacity: 0.8;
color: black;
font-size: 2em;
text-align: center;
}
#startButton{
width: 8em;
margin-right: 2em;
}
#modifyButton{
width: 8em;
}
#backButton{
width: 17em;
margin-top: 0;
}
#homeButton{
margin-left: 2em;
margin-top: 1em;
margin-bottom: 0em;
} | app/styles.css | @keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
.background {
animation: fadein 4s;
}
html, body{
margin: 0;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
h2{
margin: 0;
}
textarea:focus, input:focus{
outline: none;
}
.background{
background-image: url(../img/background.jpg);
background-size: cover;
min-height: 100%;
background-position: center;
background-attachment: fixed;
}
.content{
padding-top: 1px;
padding-bottom: 1px;
}
.centerWidth{
text-align: center;
}
.normalButton {
background-color:#dedede;
border-radius:2em;
display:inline-block;
cursor:pointer;
color:#000000;
font-family:Arial;
font-size:1em;
padding:1em 2em;
text-decoration:none;
margin-top: 01em;
}
.normalButton:active {
position:relative;
top:1px;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Opera and Firefox */
}
.correct{
font-size: 1em;
background-color: #71ff5e;
opacity: 0.8;
color: black;
padding: 1em;
padding-left: 2em;
}
.wrong{
font-size: 1em;
background-color: #ff5e5e;
opacity: 0.8;
color: black;
padding: 1em;
padding-left: 2em;
}
.option{
font-size: 1em;
background-color: white;
opacity: 0.8;
color: black;
padding: 1em;
padding-left: 2em;
cursor: pointer;
}
.inputBox{
font-size: 1em;
background-color: white;
opacity: 0.8;
color: black;
padding: 1em;
border-radius: 2em;
border-style: none;
}
.disabled{
cursor: auto;
}
.hover:hover {
background-color:#95d8de;
}
.mainTitle{
vertical-align: middle;
font-size: 5em;
margin-top: 10%;
}
.modifyInput{
width: 80%;
}
.viewQuestion{
font-size: 1em;
background-color: white;
opacity: 0.8;
color: black;
padding: 1em;
padding-left: 2em;
margin-bottom: 0;
}
#question{
padding: 1em;
background-color: white;
opacity: 0.8;
color: black;
font-size: 2em;
text-align: center;
}
#startButton{
width: 8em;
margin-right: 2em;
}
#modifyButton{
width: 8em;
}
#backButton{
width: 17em;
margin-top: 0;
}
#homeButton{
margin-left: 2em;
margin-top: 1em;
margin-bottom: 0em;
} | 0.5144 | 0.095856 |
.nmbrsrch {
display: flex !important;
float: right;
}
.navbar-right .dropdown-menu {
left: auto;
right: -60px;
}
.logotxt {
font-size: 13px;
text-align: justify;
width: 245px;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #555;
}
h4.hdr-nmbr {
font-size: 18px;
font-weight: bold;
}
span.nmbclr {
color: #e3000f;
}
input.cesusearch {
padding: 4px;
box-shadow: inset 1px 4px 7px #e6e6e6;
-moz-box-shadow: inset 1px 4px 7px #e6e6e6;
-webkit-box-shadow: inset 1px 4px 7px #e6e6e6;
border: 1px solid #dbdbdb;
font-style: italic;
}
button.searchsbmt {
background-color: #e3000f;
color: #fff;
border: none;
padding: 5px 10px;
}
.navbar-default {
background-color: #fff;
border-color: #e7e7e7;
box-shadow: -17px -2px 18px 10px #ccc;
-webkit-box-shadow: -17px -2px 18px 10px #ccc; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
-moz-box-shadow: -17px -2px 18px 10px #ccc; /* Firefox 3.5 - 3.6 */
}
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
body {
font-family: 'Open Sans', 'sans-serif';
}
.mega-dropdown {
position: static !important;
}
.mega-dropdown-menu {
padding: 20px 0px;
width: 1109px;
box-shadow: none;
-webkit-box-shadow: none;
}
.mega-dropdown-menu > li > ul {
padding: 0;
margin: 0;
border-bottom: 1px solid #e5e5e5;
}
.mega-dropdown-menu > li > ul > li {
list-style: none;
}
.mega-dropdown-menu > li > ul > li > a {
display: block;
color: #222;
padding: 3px 5px;
}
.mega-dropdown-menu > li ul > li > a:hover,
.mega-dropdown-menu > li ul > li > a:focus {
text-decoration: none;
}
.mega-dropdown-menu .dropdown-header {
font-size: 18px;
color: #000;
padding: 5px 60px 5px 5px;
line-height: 30px;
}
.carousel-control {
width: 30px;
height: 30px;
top: -35px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
font-size: 12px;
background-color: #fff;
line-height: 30px;
text-shadow: none;
color: #333;
border: 1px solid #ddd;
}
li.dropdown.mega-dropdown.domestic {
background-repeat: no-repeat;
color: #fff;
width: 169px;
}
li.dropdown.mega-dropdown.business {
background-repeat: no-repeat;
color: #fff;
}
a.dropdown-toggle.dmstic {
color: #fff;
}
li.cesu-menu {
font-size: 18px;
font-weight: bold;
font-style: italic;
margin-top: 12px;
}
.collapse.navbar-collapse.js-navbar-collapse {
position: relative;
}
.bs-example {
margin-left:20px;
}
.navbar-nav > li > .dropdown-menu {
margin-top: -16px;
border-top-left-radius: 0;
border-top-right-radius: 0;
margin-left: 31px;
}
button.close1 {
margin-top: -288px;
color: #fff;
opacity: 0.9;
float: right;
margin-right: 5px;
background-color: #000;
border: none;
}
.cesu-bg{
background: url(../images/bgb.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
margin-top: -33px;
height: 1427px;
}
.cesu-bg2{
background: url(../images/bgb.png) no-repeat;
}
nav.navbar.navbar-inverse {
margin-left: -11px;
margin-top: -31px;
}
div#post-detailsxxx {
position: relative;
top: -14px;
}
img.img-responsive.cesutab {
float: left;
padding: 0px 3px;
}
li.list-group-item {
background-color: #f1f1f1;
cursor: pointer;
border-bottom: 1px solid #606060;
font-size: 13px;
}
.tab-submenu {
background-color: #fff;
width: 100%;
padding: 11px 0px 0px;
margin-top: 10px;
border: 1px solid #d3d3d3;
color: #606060;
text-transform: none;
}
p.cesu-tab {
padding-bottom: 9px;
border-bottom: 1px dotted #aeaeae;
}
.panel-heading.leftmenu {
background-color: #e3000f;
color: #fff;
}
.maincolor {
background-color: #fff;
height: 543px;
margin-left: 20px;
width: auto;
border: 1px solid #d3d3d3;
margin-top: 4px;
margin-bottom: 15px;
}
.cesu-lefttab {
margin: 0 0 0 0px;
}
nav.navbar.navbar-default.navbar-static-top.cesu {
padding: 10px 2px 12px;
}
p.cesu-content {
text-align: justify;
font-size: 12px;
}
.col-md-3.lefttab {
padding-left: 0;
margin-top: 20px;
}
.col-md-3.righttab {
padding-right: 6px;
margin-top: 20px;
}
li.list-group-item.tab {
background-color: #606060;
font-size: 14px;
font-style: normal;
color: #fff;
text-transform: uppercase;
}
.adsofc {
background-image: url(../images/ourofc.png);
background-repeat: no-repeat;
padding: 1px 21px;
width: 100%;
height: 129px;
color: #6f6f6f;
line-height: 0.5;
}
button.ofcservice {
background-color: #1e2d5c;
padding: 6px 9px;
color: #fff;
font-size: 12px;
border: none;
border-radius: 3px;
}
.cesuproducts {
margin: auto;
text-align: center;
}
.cesuproducts h4 {
color: #6f6f6f;
}
.cesuproducts p {
font-size: 13px;
}
.redmr a {
color: #e3000f;
font-style: italic;
font-weight: bold;
}
.cesuproducts {
margin: auto;
float: left;
margin-top: 47px;
margin-bottom: 15px;
}
.adsofc h3 {
text-transform: uppercase;
font-size: 21px;
}
.footer {
margin-top: 20px;
background-color: #606060;
width: 100%;
border-top: 5px solid #c8121e;
height: 254px;
color: #fff;
}
.cesu-ftr {
margin-left: 16px;
}
.cesu-ftr p {
font-size: 13px;
line-height: 0.8;
}
.cesu-ftr p a {
color: #bbbbbb;
}
.cesu-ftr p a:hover {
color: #fff;
text-decoration: none;
}
.contactcesu p {
line-height: normal;
margin: auto;
}
.contactcesu span {
float: left;
padding: 2px 13px;
}
.social-icn span {
padding: 28px 3px;
}
a.enquiry {
float: right;
margin-top: -1160px;
}
li.col-sm-3.mega {
width: 20%;
}
.account-login {
background-color: #112052;
padding-top: 1px;
padding-bottom: 1px;
color: #fff;
text-transform: uppercase;
}
.col-md-6.nusr2 {
text-align: right;
}
.col-md-6.nusr2 a {
color: #000;
}
.col-md-12.newusr {
border-bottom: 1px solid #aeaeae;
padding: 7px;
}
@media only screen and (max-width:320px) and (min-width:240px) {
li.col-sm-3.mega {
width: 100%;
}
.cesu-bg{
height: auto;
}
.img-responsive.logo {
width: 102%;
position: relative;
top: -55px;
left: -36px;
}
.nmbrsrch {
display: block !important;
float: right;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -59px !important;
margin-right: 3px !important;
}
.maincolor{
height: auto;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu{
width: 100% !important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.footer {
height: auto !important;
}
.social-icn span {
padding: 0px;
margin-left: -2px !important;
}
.contactcesu span {
float: left;
}
.breadcrumb a {
text-decoration: none;
outline: none;
display: block;
float: left;
font-weight: normal;
font-size: 11px;
line-height: 24px;
color: white;
padding: 0px 10px 0px 40px;
text-transform: uppercase;
position: relative;
}
.breadcrumb a:after {
content: '';
position: absolute;
top: 0px;
right: -11px;
width: 24px;
height: 24px;
z-index: 1;
}
.col-md-9.brdcrm {
margin-bottom: 100px;
}
}
@media only screen and (max-width:480px) and (min-width:320px) {
li.col-sm-3.mega {
width: 100%;
}
.cesu-bg{
height: auto;
}
.img-responsive.logo {
position: absolute;
top: -56px;
width: 35%;
}
.nmbrsrch {
display: block !important;
float: right;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -59px !important;
margin-right: 3px !important;
}
.maincolor{
height: auto;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu {
width: 100%!important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.footer {
height: auto !important;
}
.social-icn span {
margin-left: 4px !important;
}
.contactcesu span {
float: left;
}
.breadcrumb a:after {
content: '';
position: absolute;
top: 1px;
right: -16px;
width: 34px;
height: 34px;
}
.breadcrumb a:after {
content: '';
position: absolute;
top: 0px;
right: -15px;
width: 38px;
height: 42px;
z-index: 1;
}
.col-md-9.brdcrm {
margin-bottom: 200px;
}
.breadcrumb a {
text-decoration: none;
outline: none;
display: block;
float: left;
font-weight: bold;
font-size: 13px;
line-height: 42px;
color: white;
padding: 0px 24px 0px 40px;;
}
}
@media only screen and (max-width:640px) and (min-width:480px) {
li.col-sm-3.mega {
width: 100%;
}
.cesu-bg{
height: auto;
}
.img-responsive.logo {
position: absolute;
top: -56px;
width: 35%;
}
.contactcesu {
padding-bottom: 12px;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -111px !important;
margin-right: 3px !important;
}
.maincolor{
height: auto;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu {
width: 100%!important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.footer {
height: auto !important;
}
.breadcrumb a:after {
content: '';
position: absolute;
top: 2px;
right: -15px;
width: 37px;
height: 37px;
z-index: 1;
}
.col-md-9.brdcrm {
margin-bottom: 82px;
}
.breadcrumb a {
text-decoration: none;
outline: none;
display: block;
float: left;
font-weight: bold;
font-size: 13px;
line-height: 40px;
color: white;
padding: 0px 10px 0px 40px;
}
@media only screen and (max-width:768px) and (min-width:640px) {
.cesu-bg{
height: auto;
}
.img-responsive.logo {
position: absolute;
top: -56px;
width: 28%;
}
.contactcesu {
padding-bottom: 12px;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -111px !important;
margin-right: 3px !important;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu {
width: 100%!important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.footer {
height: auto !important;
}
.col-md-9.brdcrm {
margin-bottom: 82px;
}
}
@media only screen and (max-width:1024px) and (min-width:768px) {
.footer{
width: 93%;
height: auto;
}
.cesu-bg{
height: auto;
}
.nmbrsrch {
display: block !important;
}
.mega-dropdown-menu {
padding: 20px 0px;
width: 700px;
box-shadow: none;
}
.contactcesu {
padding-bottom: 12px;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -180px; !important;
margin-right: 3px !important;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu {
width: 100%!important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.col-md-3.prd {
display: inline-block !important;
}
.cesuproducts {
margin: 20px auto auto;
display: inline-flex;
}
.cesu-ftr {
margin-left: 16px;
display: inline-block;
}
.col-md-9.brdcrm {
margin-bottom: 82px;
}
.maincolor{
height: auto;
}
.footer {
height: auto !important;
}
}
@media only screen and (max-width:1280px) and (min-width:1024px) {
.maincolor {
background-color: #FFF;
height: 633px;
margin-left: 20px;
width: auto;
border: 1px solid #D3D3D3;
margin-top: 4px;
margin-bottom: 15px;
}
.social-icn span {
padding: 18px 0px;
}
.mega-dropdown-menu {
padding: 20px 0px;
width: 100%;
box-shadow: none;
}
button.close1 {
margin-top: -252px;
}
}
@media only screen and (max-width:1366px) and (min-width:1280px) {
} | public/css/ourcesuc.com.css | .nmbrsrch {
display: flex !important;
float: right;
}
.navbar-right .dropdown-menu {
left: auto;
right: -60px;
}
.logotxt {
font-size: 13px;
text-align: justify;
width: 245px;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #555;
}
h4.hdr-nmbr {
font-size: 18px;
font-weight: bold;
}
span.nmbclr {
color: #e3000f;
}
input.cesusearch {
padding: 4px;
box-shadow: inset 1px 4px 7px #e6e6e6;
-moz-box-shadow: inset 1px 4px 7px #e6e6e6;
-webkit-box-shadow: inset 1px 4px 7px #e6e6e6;
border: 1px solid #dbdbdb;
font-style: italic;
}
button.searchsbmt {
background-color: #e3000f;
color: #fff;
border: none;
padding: 5px 10px;
}
.navbar-default {
background-color: #fff;
border-color: #e7e7e7;
box-shadow: -17px -2px 18px 10px #ccc;
-webkit-box-shadow: -17px -2px 18px 10px #ccc; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
-moz-box-shadow: -17px -2px 18px 10px #ccc; /* Firefox 3.5 - 3.6 */
}
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
body {
font-family: 'Open Sans', 'sans-serif';
}
.mega-dropdown {
position: static !important;
}
.mega-dropdown-menu {
padding: 20px 0px;
width: 1109px;
box-shadow: none;
-webkit-box-shadow: none;
}
.mega-dropdown-menu > li > ul {
padding: 0;
margin: 0;
border-bottom: 1px solid #e5e5e5;
}
.mega-dropdown-menu > li > ul > li {
list-style: none;
}
.mega-dropdown-menu > li > ul > li > a {
display: block;
color: #222;
padding: 3px 5px;
}
.mega-dropdown-menu > li ul > li > a:hover,
.mega-dropdown-menu > li ul > li > a:focus {
text-decoration: none;
}
.mega-dropdown-menu .dropdown-header {
font-size: 18px;
color: #000;
padding: 5px 60px 5px 5px;
line-height: 30px;
}
.carousel-control {
width: 30px;
height: 30px;
top: -35px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
font-size: 12px;
background-color: #fff;
line-height: 30px;
text-shadow: none;
color: #333;
border: 1px solid #ddd;
}
li.dropdown.mega-dropdown.domestic {
background-repeat: no-repeat;
color: #fff;
width: 169px;
}
li.dropdown.mega-dropdown.business {
background-repeat: no-repeat;
color: #fff;
}
a.dropdown-toggle.dmstic {
color: #fff;
}
li.cesu-menu {
font-size: 18px;
font-weight: bold;
font-style: italic;
margin-top: 12px;
}
.collapse.navbar-collapse.js-navbar-collapse {
position: relative;
}
.bs-example {
margin-left:20px;
}
.navbar-nav > li > .dropdown-menu {
margin-top: -16px;
border-top-left-radius: 0;
border-top-right-radius: 0;
margin-left: 31px;
}
button.close1 {
margin-top: -288px;
color: #fff;
opacity: 0.9;
float: right;
margin-right: 5px;
background-color: #000;
border: none;
}
.cesu-bg{
background: url(../images/bgb.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
margin-top: -33px;
height: 1427px;
}
.cesu-bg2{
background: url(../images/bgb.png) no-repeat;
}
nav.navbar.navbar-inverse {
margin-left: -11px;
margin-top: -31px;
}
div#post-detailsxxx {
position: relative;
top: -14px;
}
img.img-responsive.cesutab {
float: left;
padding: 0px 3px;
}
li.list-group-item {
background-color: #f1f1f1;
cursor: pointer;
border-bottom: 1px solid #606060;
font-size: 13px;
}
.tab-submenu {
background-color: #fff;
width: 100%;
padding: 11px 0px 0px;
margin-top: 10px;
border: 1px solid #d3d3d3;
color: #606060;
text-transform: none;
}
p.cesu-tab {
padding-bottom: 9px;
border-bottom: 1px dotted #aeaeae;
}
.panel-heading.leftmenu {
background-color: #e3000f;
color: #fff;
}
.maincolor {
background-color: #fff;
height: 543px;
margin-left: 20px;
width: auto;
border: 1px solid #d3d3d3;
margin-top: 4px;
margin-bottom: 15px;
}
.cesu-lefttab {
margin: 0 0 0 0px;
}
nav.navbar.navbar-default.navbar-static-top.cesu {
padding: 10px 2px 12px;
}
p.cesu-content {
text-align: justify;
font-size: 12px;
}
.col-md-3.lefttab {
padding-left: 0;
margin-top: 20px;
}
.col-md-3.righttab {
padding-right: 6px;
margin-top: 20px;
}
li.list-group-item.tab {
background-color: #606060;
font-size: 14px;
font-style: normal;
color: #fff;
text-transform: uppercase;
}
.adsofc {
background-image: url(../images/ourofc.png);
background-repeat: no-repeat;
padding: 1px 21px;
width: 100%;
height: 129px;
color: #6f6f6f;
line-height: 0.5;
}
button.ofcservice {
background-color: #1e2d5c;
padding: 6px 9px;
color: #fff;
font-size: 12px;
border: none;
border-radius: 3px;
}
.cesuproducts {
margin: auto;
text-align: center;
}
.cesuproducts h4 {
color: #6f6f6f;
}
.cesuproducts p {
font-size: 13px;
}
.redmr a {
color: #e3000f;
font-style: italic;
font-weight: bold;
}
.cesuproducts {
margin: auto;
float: left;
margin-top: 47px;
margin-bottom: 15px;
}
.adsofc h3 {
text-transform: uppercase;
font-size: 21px;
}
.footer {
margin-top: 20px;
background-color: #606060;
width: 100%;
border-top: 5px solid #c8121e;
height: 254px;
color: #fff;
}
.cesu-ftr {
margin-left: 16px;
}
.cesu-ftr p {
font-size: 13px;
line-height: 0.8;
}
.cesu-ftr p a {
color: #bbbbbb;
}
.cesu-ftr p a:hover {
color: #fff;
text-decoration: none;
}
.contactcesu p {
line-height: normal;
margin: auto;
}
.contactcesu span {
float: left;
padding: 2px 13px;
}
.social-icn span {
padding: 28px 3px;
}
a.enquiry {
float: right;
margin-top: -1160px;
}
li.col-sm-3.mega {
width: 20%;
}
.account-login {
background-color: #112052;
padding-top: 1px;
padding-bottom: 1px;
color: #fff;
text-transform: uppercase;
}
.col-md-6.nusr2 {
text-align: right;
}
.col-md-6.nusr2 a {
color: #000;
}
.col-md-12.newusr {
border-bottom: 1px solid #aeaeae;
padding: 7px;
}
@media only screen and (max-width:320px) and (min-width:240px) {
li.col-sm-3.mega {
width: 100%;
}
.cesu-bg{
height: auto;
}
.img-responsive.logo {
width: 102%;
position: relative;
top: -55px;
left: -36px;
}
.nmbrsrch {
display: block !important;
float: right;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -59px !important;
margin-right: 3px !important;
}
.maincolor{
height: auto;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu{
width: 100% !important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.footer {
height: auto !important;
}
.social-icn span {
padding: 0px;
margin-left: -2px !important;
}
.contactcesu span {
float: left;
}
.breadcrumb a {
text-decoration: none;
outline: none;
display: block;
float: left;
font-weight: normal;
font-size: 11px;
line-height: 24px;
color: white;
padding: 0px 10px 0px 40px;
text-transform: uppercase;
position: relative;
}
.breadcrumb a:after {
content: '';
position: absolute;
top: 0px;
right: -11px;
width: 24px;
height: 24px;
z-index: 1;
}
.col-md-9.brdcrm {
margin-bottom: 100px;
}
}
@media only screen and (max-width:480px) and (min-width:320px) {
li.col-sm-3.mega {
width: 100%;
}
.cesu-bg{
height: auto;
}
.img-responsive.logo {
position: absolute;
top: -56px;
width: 35%;
}
.nmbrsrch {
display: block !important;
float: right;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -59px !important;
margin-right: 3px !important;
}
.maincolor{
height: auto;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu {
width: 100%!important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.footer {
height: auto !important;
}
.social-icn span {
margin-left: 4px !important;
}
.contactcesu span {
float: left;
}
.breadcrumb a:after {
content: '';
position: absolute;
top: 1px;
right: -16px;
width: 34px;
height: 34px;
}
.breadcrumb a:after {
content: '';
position: absolute;
top: 0px;
right: -15px;
width: 38px;
height: 42px;
z-index: 1;
}
.col-md-9.brdcrm {
margin-bottom: 200px;
}
.breadcrumb a {
text-decoration: none;
outline: none;
display: block;
float: left;
font-weight: bold;
font-size: 13px;
line-height: 42px;
color: white;
padding: 0px 24px 0px 40px;;
}
}
@media only screen and (max-width:640px) and (min-width:480px) {
li.col-sm-3.mega {
width: 100%;
}
.cesu-bg{
height: auto;
}
.img-responsive.logo {
position: absolute;
top: -56px;
width: 35%;
}
.contactcesu {
padding-bottom: 12px;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -111px !important;
margin-right: 3px !important;
}
.maincolor{
height: auto;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu {
width: 100%!important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.footer {
height: auto !important;
}
.breadcrumb a:after {
content: '';
position: absolute;
top: 2px;
right: -15px;
width: 37px;
height: 37px;
z-index: 1;
}
.col-md-9.brdcrm {
margin-bottom: 82px;
}
.breadcrumb a {
text-decoration: none;
outline: none;
display: block;
float: left;
font-weight: bold;
font-size: 13px;
line-height: 40px;
color: white;
padding: 0px 10px 0px 40px;
}
@media only screen and (max-width:768px) and (min-width:640px) {
.cesu-bg{
height: auto;
}
.img-responsive.logo {
position: absolute;
top: -56px;
width: 28%;
}
.contactcesu {
padding-bottom: 12px;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -111px !important;
margin-right: 3px !important;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu {
width: 100%!important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.footer {
height: auto !important;
}
.col-md-9.brdcrm {
margin-bottom: 82px;
}
}
@media only screen and (max-width:1024px) and (min-width:768px) {
.footer{
width: 93%;
height: auto;
}
.cesu-bg{
height: auto;
}
.nmbrsrch {
display: block !important;
}
.mega-dropdown-menu {
padding: 20px 0px;
width: 700px;
box-shadow: none;
}
.contactcesu {
padding-bottom: 12px;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
background-color: black;
margin-top: 13px;
margin-bottom: 18px;
}
.close1.toggle-visibility {
margin-top: -180px; !important;
margin-right: 3px !important;
}
div#post-detailsxxx {
position: relative;
top: auto;
}
.tab-submenu {
width: 100%!important;
}
.adsofc {
background-image: url("../images/ourofc.png" ) !important;
background-repeat: no-repeat;
padding: 0;
width: 100%;
height: 129px;
color: #6F6F6F;
line-height: 0.5;
}
li.list-group-item.tab {
font-size: 11px;
font-style: normal;
color: #FFF;
text-transform: uppercase;
font-weight: bold;
}
.col-md-3.prd {
display: inline-block !important;
}
.cesuproducts {
margin: 20px auto auto;
display: inline-flex;
}
.cesu-ftr {
margin-left: 16px;
display: inline-block;
}
.col-md-9.brdcrm {
margin-bottom: 82px;
}
.maincolor{
height: auto;
}
.footer {
height: auto !important;
}
}
@media only screen and (max-width:1280px) and (min-width:1024px) {
.maincolor {
background-color: #FFF;
height: 633px;
margin-left: 20px;
width: auto;
border: 1px solid #D3D3D3;
margin-top: 4px;
margin-bottom: 15px;
}
.social-icn span {
padding: 18px 0px;
}
.mega-dropdown-menu {
padding: 20px 0px;
width: 100%;
box-shadow: none;
}
button.close1 {
margin-top: -252px;
}
}
@media only screen and (max-width:1366px) and (min-width:1280px) {
} | 0.216094 | 0.114517 |
body{
background:#adc0ef;
}
.topo{
height:200px;
background:#adc0ef;
}
.logo{
padding-top:30px;
position:relative;
left:20px;
bottom:5px;
padding-bottom:20px;
}
.sistemalogo{
padding-top:44px;
position:relative;
left:106px;
bottom:15px;
}
.conteudo{
background:#adc0ef;
height:200px;
margin-top:250px;
}
.logincampo{
background:white;
margin-top:-45px;
position:relative;
height:30px;
left: 110px;
-moz-oz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
border: 3px solid #000000;
font-family:Arial, Helvetica, sans-serif;
font-size:20px;
color:black;
}
.logincampo2{
background:white;
margin-top:-50px;
position:relative;
height:30px;
left: 100px;
-moz-oz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
border: 3px solid #000000;
}
.box{
margin-top:100px;
position:relative;
background:#dadada;
height:200px;
}
.texto{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
color:black;
text-align:center;
}
.botao{
background:gray;
height:42px;
margin-top:10px;
position:relative;
left:-90px;
border: 3px solid #000000;
font-family:Arial, Helvetica, sans-serif;
font-style:normal;
font-size:30px;
}
nav ul{
margin:0;
padding:0;
list-style:none;
}
.rodape{
background:#adc0ef;
height:230px;
}
.endereco p{
font-size:16px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
color:gray;
font-style:normal;
margin-bottom:-10px;
}
.rotuloform{
font-family:Arial, Helvetica, sans-serif;
font-size:25px;
color:#800203;
font-style:inherit;
}
input[type="text"]{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#999;
padding-left:10px;
height:30px;
background: #dadada;
border: none;
font-style:italic;
}
textarea{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:black;
padding-left:10px;
background:#dadada;
border: none;
}
select{
background:#dadada;
} | Atelie/Cliente/user/sispap/css/estilo.css | body{
background:#adc0ef;
}
.topo{
height:200px;
background:#adc0ef;
}
.logo{
padding-top:30px;
position:relative;
left:20px;
bottom:5px;
padding-bottom:20px;
}
.sistemalogo{
padding-top:44px;
position:relative;
left:106px;
bottom:15px;
}
.conteudo{
background:#adc0ef;
height:200px;
margin-top:250px;
}
.logincampo{
background:white;
margin-top:-45px;
position:relative;
height:30px;
left: 110px;
-moz-oz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
border: 3px solid #000000;
font-family:Arial, Helvetica, sans-serif;
font-size:20px;
color:black;
}
.logincampo2{
background:white;
margin-top:-50px;
position:relative;
height:30px;
left: 100px;
-moz-oz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
border: 3px solid #000000;
}
.box{
margin-top:100px;
position:relative;
background:#dadada;
height:200px;
}
.texto{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
color:black;
text-align:center;
}
.botao{
background:gray;
height:42px;
margin-top:10px;
position:relative;
left:-90px;
border: 3px solid #000000;
font-family:Arial, Helvetica, sans-serif;
font-style:normal;
font-size:30px;
}
nav ul{
margin:0;
padding:0;
list-style:none;
}
.rodape{
background:#adc0ef;
height:230px;
}
.endereco p{
font-size:16px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
color:gray;
font-style:normal;
margin-bottom:-10px;
}
.rotuloform{
font-family:Arial, Helvetica, sans-serif;
font-size:25px;
color:#800203;
font-style:inherit;
}
input[type="text"]{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#999;
padding-left:10px;
height:30px;
background: #dadada;
border: none;
font-style:italic;
}
textarea{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:black;
padding-left:10px;
background:#dadada;
border: none;
}
select{
background:#dadada;
} | 0.12213 | 0.042523 |
body
{ font-size : 1em
}
#navigate li.current-link
{ background-color : rgb(50%,75%,100%)
; color : #EFF3FE
; font-weight : bold
}
#navigate li.current-section
{ font-weight : bold
}
#navigate a.current-section,
#navigate a.current-section:link,
#navigate a.current-section:visited
{ color : #666666
}
#navigate a, div#marginal a
{ text-decoration : none
}
#navigate a:link, div#marginal a:link
{ color : #0050FF
}
#navigate a:visited, div#marginal a:visited
{ color : #54AAFF
}
#navigate a:hover, div#marginal a:hover
{ background-color : #EFF3FE
}
#navigate h1, div#marginal h1
{ background-color : #E0E8FB
; color : #666666
; font-size : 100%
; margin-bottom : 0.25em
; margin-top : 0em
}
div.nav-section
{ margin-bottom : 1.5em
}
div#navigate
{ float : left
; width : 11em
}
#navigate li, div#marginal li
{ margin : 0
; padding :
0.2em 0 0.2em 0
; position : relative /* for nested menues */
}
#navigate .level-1
{ padding-left : 0.75em
}
#navigate .level-2
{ padding-left : 1.00em
}
#navigate .level-3
{ padding-left : 1.00em
}
#navigate .level-4
{ padding-left : 1.00em
}
#navigate .level-5
{ padding-left : 1.00em
}
#navigate .level-6
{ padding-left : 1.00em
}
div#ownlinks li.nav-link:hover,
div#ownlinks li.nav-link a:hover
{ background-color : blue
; color : #EFF3FE
; font-weight : bold
}
div#weblinks li.nav-link:hover,
div#weblinks li.nav-link a:hover
{ background-color : rgb(255,153,0)
; color : #EFF3FE
; font-weight : bold
}
#navigate li a, div#marginal li a
{ display : block
; margin : 0
}
#navigate li td a
{ width : auto
}
#navigate td
{ margin : 0
; padding : 0
; vertical-align : top
}
#navigate ul, div#marginal ul, .login ul
{ background-color : #EFF3FE
; border : none
; font-weight : normal
; list-style : none
; margin : 0
; padding : 0
}
hr.docutils
{ clear : right
}
img.align-left
{ float : left
; margin : 1px 5px 1px 0px
}
img.align-right
{ float : right
; margin : 1px 0px 1px 5px
}
pre.literal-block
{ font-family : verdana, sans-serif
; padding-left : 5em
}
table.docutils p
{ border : 0
; margin : 0.2em 0 0 0
; padding : 0
}
table.docutils p.first,
dd p.first
{ margin : 0
}
table.docutils p.last,
dd p.last
{ margin : 0.2em 0 0.2em 0
}
#document
{ margin-left : 12em
; margin-right : 12em
}
.inline-icon
{ float : left
; margin-top : 5px
; margin-bottom : auto
}
/* Styling for grid-tables */
table.grid-table
{ border : 3px ridge gray
; border-collapse : collapse
; margin-left : 0.5em
}
table.grid-table thead
{ color : #FF6633
; font-weight : bold
; text-align : center
}
table.grid-table td
{ border : 3px ridge gray
; padding : 0.05em 0.25em
}
/* Styling for admin pages */
.Object-List a
{ color : #666666
; text-decoration : none
}
.Object-List caption
{ color : #1b4287
; display : none
; font-family : verdana, sans-serif
; font-size : 115%
; font-weight : bold
; padding : 0em 0em 0.75em
}
.Object-List thead
{ background-color : #E0E8FB
; color : #FF6633
; font-family : verdana, sans-serif
; font-weight : bold
; text-align : center
}
.Object-List td,
.Object-List th
{ font-size : small
}
.Object-Editor .Field
{ background-color : #EFF3FE
; font-size : small
; margin-bottom : 1em
}
.Object-Editor .AI-Field-Header
{ color : #999999
; background-color : #EFF3FE
}
.Object-Editor .Field-Help
{ color : #999999
; font-size : 80%
}
.Object-Editor .Field-Div-Seq span.Field-Help
{ float : right
}
.Object-Editor div.field_group-Horizontal-Help-Table span.Field-Help
{ display : none
}
.Object-Editor input,
.Object-Editor label,
.Object-Editor select,
.Object-Editor textarea,
.Object-Editor a
{ background-color : #EFF3FE
; font-size : small
}
.Object-Editor input,
.Object-Editor select,
.Object-Editor textarea,
.Object-Editor a
{ border : 1px solid
; border-color : #BEBEBE
; margin-bottom : 0.5em
}
.Object-Editor input.Mandatory,
.Object-Editor select.Mandatory,
.Object-Editor textarea.Mandatory
{ border-width : 2px
}
.Object-Editor input.Required,
.Object-Editor select.Required,
.Object-Editor textarea.Required
{ border-width : 1px 1px 2px 1px
}
.Object-Editor input.Optional,
.Object-Editor select.Optional,
.Object-Editor textarea.Object-Editor
{ border-width : 1px
}
.Object-Editor input
{ width : auto
}
.Object-Editor input.submit,
.Object-Editor input.reset,
.Object-Editor select
{ border : 2px outset
; color : #0050FF
; margin : 0.25em 0 0.75em
; padding : 0.125em 0
; width : 190px
}
.Object-Editor select
{ width : auto
}
.Object-Editor fieldset
{ padding : 0.5em 0 0.25em
}
.Object-Editor legend
{ color : #666666
; font-size : small
}
.Formset-Horizontal th
{ text-align : left
}
.Formset-Horizontal ul.errorlist
{ font-size : 70%
; list-style : none
; margin : 0
; padding : 0
}
.Formset-Horizontal-Help p.Field-Help
{ display : None
}
a.button
{ border : 2px outset
; color : #0050FF
; margin : 0 0.5em
; padding : 0.125em 2em 0.25em
; text-decoration : None
; width : 190px
}
input.Short,
.field_group-Horizontal input.Short
{ width : 5em
}
input.Moderate-Len, .field_group-Horizontal input.Moderate-Len
{ width : 6em
}
input.Medium-Len, .field_group-Horizontal input.Medium-Len
{ width : 9em
}
input.Long, input.Very-Long
{ width : 100%
}
.field_group-Horizontal input
{ width : 10em
}
.field_group-Horizontal input.Long
{ width : 12em
}
.Object-Editor textarea
{ width : 100%
}
.Object-Editor label
{ color : #666666
; display : block
; font-size : small
}
tr.inline-instance
{ white-space : nowrap
}
.Object-Editor tr.inline-instance label
{ display : inline
} | _GTW/__test__/media/styles/screen.css | body
{ font-size : 1em
}
#navigate li.current-link
{ background-color : rgb(50%,75%,100%)
; color : #EFF3FE
; font-weight : bold
}
#navigate li.current-section
{ font-weight : bold
}
#navigate a.current-section,
#navigate a.current-section:link,
#navigate a.current-section:visited
{ color : #666666
}
#navigate a, div#marginal a
{ text-decoration : none
}
#navigate a:link, div#marginal a:link
{ color : #0050FF
}
#navigate a:visited, div#marginal a:visited
{ color : #54AAFF
}
#navigate a:hover, div#marginal a:hover
{ background-color : #EFF3FE
}
#navigate h1, div#marginal h1
{ background-color : #E0E8FB
; color : #666666
; font-size : 100%
; margin-bottom : 0.25em
; margin-top : 0em
}
div.nav-section
{ margin-bottom : 1.5em
}
div#navigate
{ float : left
; width : 11em
}
#navigate li, div#marginal li
{ margin : 0
; padding :
0.2em 0 0.2em 0
; position : relative /* for nested menues */
}
#navigate .level-1
{ padding-left : 0.75em
}
#navigate .level-2
{ padding-left : 1.00em
}
#navigate .level-3
{ padding-left : 1.00em
}
#navigate .level-4
{ padding-left : 1.00em
}
#navigate .level-5
{ padding-left : 1.00em
}
#navigate .level-6
{ padding-left : 1.00em
}
div#ownlinks li.nav-link:hover,
div#ownlinks li.nav-link a:hover
{ background-color : blue
; color : #EFF3FE
; font-weight : bold
}
div#weblinks li.nav-link:hover,
div#weblinks li.nav-link a:hover
{ background-color : rgb(255,153,0)
; color : #EFF3FE
; font-weight : bold
}
#navigate li a, div#marginal li a
{ display : block
; margin : 0
}
#navigate li td a
{ width : auto
}
#navigate td
{ margin : 0
; padding : 0
; vertical-align : top
}
#navigate ul, div#marginal ul, .login ul
{ background-color : #EFF3FE
; border : none
; font-weight : normal
; list-style : none
; margin : 0
; padding : 0
}
hr.docutils
{ clear : right
}
img.align-left
{ float : left
; margin : 1px 5px 1px 0px
}
img.align-right
{ float : right
; margin : 1px 0px 1px 5px
}
pre.literal-block
{ font-family : verdana, sans-serif
; padding-left : 5em
}
table.docutils p
{ border : 0
; margin : 0.2em 0 0 0
; padding : 0
}
table.docutils p.first,
dd p.first
{ margin : 0
}
table.docutils p.last,
dd p.last
{ margin : 0.2em 0 0.2em 0
}
#document
{ margin-left : 12em
; margin-right : 12em
}
.inline-icon
{ float : left
; margin-top : 5px
; margin-bottom : auto
}
/* Styling for grid-tables */
table.grid-table
{ border : 3px ridge gray
; border-collapse : collapse
; margin-left : 0.5em
}
table.grid-table thead
{ color : #FF6633
; font-weight : bold
; text-align : center
}
table.grid-table td
{ border : 3px ridge gray
; padding : 0.05em 0.25em
}
/* Styling for admin pages */
.Object-List a
{ color : #666666
; text-decoration : none
}
.Object-List caption
{ color : #1b4287
; display : none
; font-family : verdana, sans-serif
; font-size : 115%
; font-weight : bold
; padding : 0em 0em 0.75em
}
.Object-List thead
{ background-color : #E0E8FB
; color : #FF6633
; font-family : verdana, sans-serif
; font-weight : bold
; text-align : center
}
.Object-List td,
.Object-List th
{ font-size : small
}
.Object-Editor .Field
{ background-color : #EFF3FE
; font-size : small
; margin-bottom : 1em
}
.Object-Editor .AI-Field-Header
{ color : #999999
; background-color : #EFF3FE
}
.Object-Editor .Field-Help
{ color : #999999
; font-size : 80%
}
.Object-Editor .Field-Div-Seq span.Field-Help
{ float : right
}
.Object-Editor div.field_group-Horizontal-Help-Table span.Field-Help
{ display : none
}
.Object-Editor input,
.Object-Editor label,
.Object-Editor select,
.Object-Editor textarea,
.Object-Editor a
{ background-color : #EFF3FE
; font-size : small
}
.Object-Editor input,
.Object-Editor select,
.Object-Editor textarea,
.Object-Editor a
{ border : 1px solid
; border-color : #BEBEBE
; margin-bottom : 0.5em
}
.Object-Editor input.Mandatory,
.Object-Editor select.Mandatory,
.Object-Editor textarea.Mandatory
{ border-width : 2px
}
.Object-Editor input.Required,
.Object-Editor select.Required,
.Object-Editor textarea.Required
{ border-width : 1px 1px 2px 1px
}
.Object-Editor input.Optional,
.Object-Editor select.Optional,
.Object-Editor textarea.Object-Editor
{ border-width : 1px
}
.Object-Editor input
{ width : auto
}
.Object-Editor input.submit,
.Object-Editor input.reset,
.Object-Editor select
{ border : 2px outset
; color : #0050FF
; margin : 0.25em 0 0.75em
; padding : 0.125em 0
; width : 190px
}
.Object-Editor select
{ width : auto
}
.Object-Editor fieldset
{ padding : 0.5em 0 0.25em
}
.Object-Editor legend
{ color : #666666
; font-size : small
}
.Formset-Horizontal th
{ text-align : left
}
.Formset-Horizontal ul.errorlist
{ font-size : 70%
; list-style : none
; margin : 0
; padding : 0
}
.Formset-Horizontal-Help p.Field-Help
{ display : None
}
a.button
{ border : 2px outset
; color : #0050FF
; margin : 0 0.5em
; padding : 0.125em 2em 0.25em
; text-decoration : None
; width : 190px
}
input.Short,
.field_group-Horizontal input.Short
{ width : 5em
}
input.Moderate-Len, .field_group-Horizontal input.Moderate-Len
{ width : 6em
}
input.Medium-Len, .field_group-Horizontal input.Medium-Len
{ width : 9em
}
input.Long, input.Very-Long
{ width : 100%
}
.field_group-Horizontal input
{ width : 10em
}
.field_group-Horizontal input.Long
{ width : 12em
}
.Object-Editor textarea
{ width : 100%
}
.Object-Editor label
{ color : #666666
; display : block
; font-size : small
}
tr.inline-instance
{ white-space : nowrap
}
.Object-Editor tr.inline-instance label
{ display : inline
} | 0.553988 | 0.193376 |
@charset "utf-8";
@namespace epub "http://www.idpf.org/2007/ops";
#chapter-1 blockquote:first-of-type{
font-variant: small-caps;
margin: 1em auto;
text-align: center;
text-indent: 0;
}
.sign{
font-variant: small-caps;
text-align: center;
}
.sign p,
header > p{
text-indent: 0;
}
[epub|type~="z3998:signature"]{
font-variant: small-caps;
}
table{
border-collapse: collapse;
margin: 1em auto;
text-align: center;
}
blockquote blockquote{
margin: 0;
}
.newspaper-clipping header ~ p::before{
content: "";
display: block;
border: none;
border-top: 1px solid;
height: 0;
margin: 1.5em auto;
width: 25%;
}
.newspaper-clipping p{
text-indent: 0;
}
[epub|type~="dedication"] p{
margin: auto;
margin-top: 3em;
max-width: 75%;
text-align: center;
text-indent: 0;
}
blockquote[epub|type~="z3998:letter"] header p[epub|type~="z3998:sender"],
blockquote[epub|type~="z3998:letter"] header .location{
font-variant: small-caps;
}
blockquote[epub|type~="z3998:letter"] header p[epub|type~="se:letter.dateline"]{
font-style: italic;
}
footer{
margin-top: 1em;
text-align: right;
}
[epub|type~="z3998:postscript"]{
margin-top: 1em;
text-align: initial;
text-indent: 0;
}
[epub|type~="z3998:letter"] header + p{
margin-top: 1em;
}
p[epub|type~="z3998:salutation"] + p{
text-indent: 0;
}
.calling-card{
text-align: center;
border: 1px solid;
margin: 1em auto;
padding: 1em;
max-width: 20em;
}
.calling-card p{
text-indent: 0;
}
.calling-card b{
display: block;
margin-bottom: 1em;
}
.calling-card [epub|type~="z3998:poem"]{
text-align: initial;
}
.calling-card [epub|type~="z3998:poem"] + p{
margin-top: 1em;
}
[epub|type~="z3998:song"] p{
text-align: initial;
text-indent: 0;
}
[epub|type~="z3998:song"] p > span{
display: block;
padding-left: 1em;
text-indent: -1em;
}
[epub|type~="z3998:song"] p > span + br{
display: none;
}
p span.i1{
padding-left: 2em;
text-indent: -1em;
}
[epub|type~="z3998:hymn"]{
font-style: italic;
}
[epub|type~="z3998:hymn"] header p{
margin-bottom: 1em;
margin-top: 1em;
}
.newspaper-clipping{
font-variant: small-caps;
text-align: center;
} | src/epub/css/local.css | @charset "utf-8";
@namespace epub "http://www.idpf.org/2007/ops";
#chapter-1 blockquote:first-of-type{
font-variant: small-caps;
margin: 1em auto;
text-align: center;
text-indent: 0;
}
.sign{
font-variant: small-caps;
text-align: center;
}
.sign p,
header > p{
text-indent: 0;
}
[epub|type~="z3998:signature"]{
font-variant: small-caps;
}
table{
border-collapse: collapse;
margin: 1em auto;
text-align: center;
}
blockquote blockquote{
margin: 0;
}
.newspaper-clipping header ~ p::before{
content: "";
display: block;
border: none;
border-top: 1px solid;
height: 0;
margin: 1.5em auto;
width: 25%;
}
.newspaper-clipping p{
text-indent: 0;
}
[epub|type~="dedication"] p{
margin: auto;
margin-top: 3em;
max-width: 75%;
text-align: center;
text-indent: 0;
}
blockquote[epub|type~="z3998:letter"] header p[epub|type~="z3998:sender"],
blockquote[epub|type~="z3998:letter"] header .location{
font-variant: small-caps;
}
blockquote[epub|type~="z3998:letter"] header p[epub|type~="se:letter.dateline"]{
font-style: italic;
}
footer{
margin-top: 1em;
text-align: right;
}
[epub|type~="z3998:postscript"]{
margin-top: 1em;
text-align: initial;
text-indent: 0;
}
[epub|type~="z3998:letter"] header + p{
margin-top: 1em;
}
p[epub|type~="z3998:salutation"] + p{
text-indent: 0;
}
.calling-card{
text-align: center;
border: 1px solid;
margin: 1em auto;
padding: 1em;
max-width: 20em;
}
.calling-card p{
text-indent: 0;
}
.calling-card b{
display: block;
margin-bottom: 1em;
}
.calling-card [epub|type~="z3998:poem"]{
text-align: initial;
}
.calling-card [epub|type~="z3998:poem"] + p{
margin-top: 1em;
}
[epub|type~="z3998:song"] p{
text-align: initial;
text-indent: 0;
}
[epub|type~="z3998:song"] p > span{
display: block;
padding-left: 1em;
text-indent: -1em;
}
[epub|type~="z3998:song"] p > span + br{
display: none;
}
p span.i1{
padding-left: 2em;
text-indent: -1em;
}
[epub|type~="z3998:hymn"]{
font-style: italic;
}
[epub|type~="z3998:hymn"] header p{
margin-bottom: 1em;
margin-top: 1em;
}
.newspaper-clipping{
font-variant: small-caps;
text-align: center;
} | 0.413951 | 0.115461 |
.c7n-menu {
font-family: "Monospaced Number", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 0.13rem;
line-height: 1.5;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
outline: none;
margin-bottom: 0;
padding-left: 0;
list-style: none;
-webkit-box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.12);
box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.12);
color: #000000;
background: #fff;
line-height: 0;
-webkit-transition: background .3s, width .2s;
transition: background .3s, width .2s;
zoom: 1;
}
.c7n-menu:before,
.c7n-menu:after {
content: " ";
display: table;
}
.c7n-menu:after {
clear: both;
visibility: hidden;
font-size: 0;
height: 0;
}
.c7n-menu ul,
.c7n-menu ol {
list-style: none;
margin: 0;
padding: 0;
}
.c7n-menu-hidden {
display: none;
}
.c7n-menu-item-group-title {
color: rgba(0, 0, 0, 0.45);
font-size: 0.13rem;
line-height: 1.5;
padding: .08rem .16rem;
-webkit-transition: all .3s;
transition: all .3s;
}
.c7n-menu-submenu,
.c7n-menu-submenu-inline {
-webkit-transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-submenu .c7n-menu-sub {
cursor: initial;
-webkit-transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-item > a {
display: block;
color: #000000;
}
.c7n-menu-item > a:focus {
text-decoration: none;
}
.c7n-menu-item > a:before {
position: absolute;
background-color: transparent;
top: 0;
left: 0;
bottom: 0;
right: 0;
content: '';
}
.c7n-menu-item > a > span {
display: inline-block;
}
.c7n-menu-item-divider {
height: .01rem;
overflow: hidden;
background-color: #e8e8e8;
line-height: 0;
}
.c7n-menu-item:hover,
.c7n-menu-item-active,
.c7n-menu:not(.c7n-menu-inline) .c7n-menu-submenu-open,
.c7n-menu-submenu-active,
.c7n-menu-submenu-title:hover {
background-color: rgba(0, 0, 0, 0.04);
}
.c7n-menu-horizontal .c7n-menu-item,
.c7n-menu-horizontal .c7n-menu-submenu {
margin-top: -0.01rem;
}
.c7n-menu-horizontal > .c7n-menu-item:hover,
.c7n-menu-horizontal > .c7n-menu-item-active,
.c7n-menu-horizontal > .c7n-menu-submenu .c7n-menu-submenu-title:hover {
background-color: transparent;
}
.c7n-menu-item-selected {
color: #3f51b5;
}
.c7n-menu-item-selected > a,
.c7n-menu-item-selected > a:hover {
color: #3f51b5;
}
.c7n-menu:not(.c7n-menu-horizontal) .c7n-menu-item-selected {
background-color: rgba(140, 158, 255, 0.12);
}
.c7n-menu:not(.c7n-menu-horizontal) .c7n-menu-item-selected:hover {
background-color: rgba(0, 0, 0, 0.04);
}
.c7n-menu-inline,
.c7n-menu-vertical,
.c7n-menu-vertical-left {
border-right: 0.01rem solid #e8e8e8;
}
.c7n-menu-vertical-right {
border-left: 0.01rem solid #e8e8e8;
}
.c7n-menu-vertical.c7n-menu-sub,
.c7n-menu-vertical-left.c7n-menu-sub,
.c7n-menu-vertical-right.c7n-menu-sub {
border-right: 0;
padding: 0;
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.c7n-menu-vertical.c7n-menu-sub .c7n-menu-item,
.c7n-menu-vertical-left.c7n-menu-sub .c7n-menu-item,
.c7n-menu-vertical-right.c7n-menu-sub .c7n-menu-item {
border-right: 0;
margin-left: 0;
left: 0;
}
.c7n-menu-vertical.c7n-menu-sub .c7n-menu-item:after,
.c7n-menu-vertical-left.c7n-menu-sub .c7n-menu-item:after,
.c7n-menu-vertical-right.c7n-menu-sub .c7n-menu-item:after {
border-right: 0;
}
.c7n-menu-vertical.c7n-menu-sub > .c7n-menu-item,
.c7n-menu-vertical-left.c7n-menu-sub > .c7n-menu-item,
.c7n-menu-vertical-right.c7n-menu-sub > .c7n-menu-item,
.c7n-menu-vertical.c7n-menu-sub > .c7n-menu-submenu,
.c7n-menu-vertical-left.c7n-menu-sub > .c7n-menu-submenu,
.c7n-menu-vertical-right.c7n-menu-sub > .c7n-menu-submenu {
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.c7n-menu-horizontal.c7n-menu-sub,
.c7n-menu-vertical.c7n-menu-sub,
.c7n-menu-vertical-left.c7n-menu-sub,
.c7n-menu-vertical-right.c7n-menu-sub {
min-width: 1.6rem;
}
.c7n-menu-item,
.c7n-menu-submenu-title {
cursor: pointer;
margin: 0;
padding: 0 .2rem;
position: relative;
display: block;
white-space: nowrap;
-webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-item .icon,
.c7n-menu-submenu-title .icon {
min-width: .14rem;
margin-right: .1rem;
-webkit-transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
vertical-align: top;
line-height: inherit;
}
.c7n-menu-item .icon + span,
.c7n-menu-submenu-title .icon + span {
display: inline-block;
-webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
opacity: 1;
}
.c7n-menu > .c7n-menu-item-divider {
height: .01rem;
margin: .01rem 0;
overflow: hidden;
padding: 0;
line-height: 0;
background-color: #e8e8e8;
}
.c7n-menu-submenu-popup {
position: absolute;
border-radius: 0.02rem;
z-index: 1050;
}
.c7n-menu-submenu > .c7n-menu {
background-color: #fff;
border-radius: 0.02rem;
}
.c7n-menu-submenu > .c7n-menu-submenu-title:after {
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow {
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
position: absolute;
top: 50%;
right: .16rem;
width: .1rem;
}
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after {
content: '';
position: absolute;
vertical-align: baseline;
background: #fff;
background-image: -webkit-gradient(linear, left top, right top, from(#000000), to(#000000));
background-image: -webkit-linear-gradient(left, #000000, #000000);
background-image: linear-gradient(to right, #000000, #000000);
width: .06rem;
height: .015rem;
border-radius: .02rem;
-webkit-transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before {
-webkit-transform: rotate(45deg) translateY(-0.02rem);
-ms-transform: rotate(45deg) translateY(-0.02rem);
transform: rotate(45deg) translateY(-0.02rem);
}
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after {
-webkit-transform: rotate(-45deg) translateY(0.02rem);
-ms-transform: rotate(-45deg) translateY(0.02rem);
transform: rotate(-45deg) translateY(0.02rem);
}
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before {
-webkit-transform: rotate(-45deg) translateX(0.02rem);
-ms-transform: rotate(-45deg) translateX(0.02rem);
transform: rotate(-45deg) translateX(0.02rem);
}
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after {
-webkit-transform: rotate(45deg) translateX(-0.02rem);
-ms-transform: rotate(45deg) translateX(-0.02rem);
transform: rotate(45deg) translateX(-0.02rem);
}
.c7n-menu-submenu-open.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow {
-webkit-transform: translateY(-0.02rem);
-ms-transform: translateY(-0.02rem);
transform: translateY(-0.02rem);
}
.c7n-menu-submenu-open.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after {
-webkit-transform: rotate(-45deg) translateX(-0.02rem);
-ms-transform: rotate(-45deg) translateX(-0.02rem);
transform: rotate(-45deg) translateX(-0.02rem);
}
.c7n-menu-submenu-open.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before {
-webkit-transform: rotate(45deg) translateX(0.02rem);
-ms-transform: rotate(45deg) translateX(0.02rem);
transform: rotate(45deg) translateX(0.02rem);
}
.c7n-menu-submenu-open-submenu-title {
color: #3f51b5;
}
.c7n-menu-vertical .c7n-menu-submenu-selected,
.c7n-menu-vertical-left .c7n-menu-submenu-selected,
.c7n-menu-vertical-right .c7n-menu-submenu-selected {
color: #3f51b5;
background-color: rgba(140, 158, 255, 0.12);
}
.c7n-menu-vertical .c7n-menu-submenu-selected > a,
.c7n-menu-vertical-left .c7n-menu-submenu-selected > a,
.c7n-menu-vertical-right .c7n-menu-submenu-selected > a {
color: #3f51b5;
}
.c7n-menu-horizontal {
border: 0;
border-bottom: 0.01rem solid #e8e8e8;
-webkit-box-shadow: none;
box-shadow: none;
line-height: .46rem;
}
.c7n-menu-horizontal > .c7n-menu-item,
.c7n-menu-horizontal > .c7n-menu-submenu {
position: relative;
top: .01rem;
float: left;
border-bottom: .02rem solid transparent;
}
.c7n-menu-horizontal > .c7n-menu-item:hover,
.c7n-menu-horizontal > .c7n-menu-submenu:hover,
.c7n-menu-horizontal > .c7n-menu-item-active,
.c7n-menu-horizontal > .c7n-menu-submenu-active,
.c7n-menu-horizontal > .c7n-menu-item-open,
.c7n-menu-horizontal > .c7n-menu-submenu-open,
.c7n-menu-horizontal > .c7n-menu-item-selected,
.c7n-menu-horizontal > .c7n-menu-submenu-selected {
border-bottom: 0.02rem solid #3f51b5;
color: #3f51b5;
}
.c7n-menu-horizontal > .c7n-menu-item > a,
.c7n-menu-horizontal > .c7n-menu-submenu > a {
display: block;
color: #000000;
}
.c7n-menu-horizontal > .c7n-menu-item > a:hover,
.c7n-menu-horizontal > .c7n-menu-submenu > a:hover {
color: #3f51b5;
}
.c7n-menu-horizontal > .c7n-menu-item > a:before,
.c7n-menu-horizontal > .c7n-menu-submenu > a:before {
bottom: -0.02rem;
}
.c7n-menu-horizontal > .c7n-menu-item > a > span,
.c7n-menu-horizontal > .c7n-menu-submenu > a > span {
display: inline-block;
}
.c7n-menu-horizontal:after {
content: "\20";
display: block;
height: 0;
clear: both;
}
.c7n-menu-vertical .c7n-menu-item,
.c7n-menu-vertical-left .c7n-menu-item,
.c7n-menu-vertical-right .c7n-menu-item,
.c7n-menu-inline .c7n-menu-item {
position: relative;
}
.c7n-menu-vertical .c7n-menu-item,
.c7n-menu-vertical-left .c7n-menu-item,
.c7n-menu-vertical-right .c7n-menu-item,
.c7n-menu-inline .c7n-menu-item,
.c7n-menu-vertical .c7n-menu-submenu-title,
.c7n-menu-vertical-left .c7n-menu-submenu-title,
.c7n-menu-vertical-right .c7n-menu-submenu-title,
.c7n-menu-inline .c7n-menu-submenu-title {
padding: 0 .16rem;
font-size: 0.13rem;
line-height: 0.4rem;
height: 0.4rem;
overflow: hidden;
text-overflow: ellipsis;
}
.c7n-menu-vertical .c7n-menu-submenu,
.c7n-menu-vertical-left .c7n-menu-submenu,
.c7n-menu-vertical-right .c7n-menu-submenu,
.c7n-menu-inline .c7n-menu-submenu {
padding-bottom: .0001rem;
}
.c7n-menu-vertical > .c7n-menu-item,
.c7n-menu-vertical-left > .c7n-menu-item,
.c7n-menu-vertical-right > .c7n-menu-item,
.c7n-menu-inline > .c7n-menu-item,
.c7n-menu-vertical > .c7n-menu-submenu > .c7n-menu-submenu-title,
.c7n-menu-vertical-left > .c7n-menu-submenu > .c7n-menu-submenu-title,
.c7n-menu-vertical-right > .c7n-menu-submenu > .c7n-menu-submenu-title,
.c7n-menu-inline > .c7n-menu-submenu > .c7n-menu-submenu-title {
line-height: 0.4rem;
height: 0.4rem;
}
.c7n-menu-inline {
width: 100%;
}
.c7n-menu-inline .c7n-menu-item,
.c7n-menu-inline .c7n-menu-submenu-title {
width: calc(100% + .01rem);
}
.c7n-menu-inline .c7n-menu-submenu-title {
padding-right: .34rem;
}
.c7n-menu-inline-collapsed {
width: 0.8rem;
}
.c7n-menu-inline-collapsed > .c7n-menu-item,
.c7n-menu-inline-collapsed > .c7n-menu-item-group > .c7n-menu-item-group-list > .c7n-menu-item,
.c7n-menu-inline-collapsed > .c7n-menu-submenu > .c7n-menu-submenu-title {
left: 0;
text-overflow: clip;
padding: 0 0.32rem !important;
}
.c7n-menu-inline-collapsed > .c7n-menu-item .c7n-menu-submenu-arrow,
.c7n-menu-inline-collapsed > .c7n-menu-item-group > .c7n-menu-item-group-list > .c7n-menu-item .c7n-menu-submenu-arrow,
.c7n-menu-inline-collapsed > .c7n-menu-submenu > .c7n-menu-submenu-title .c7n-menu-submenu-arrow {
display: none;
}
.c7n-menu-inline-collapsed > .c7n-menu-item .icon,
.c7n-menu-inline-collapsed > .c7n-menu-item-group > .c7n-menu-item-group-list > .c7n-menu-item .icon,
.c7n-menu-inline-collapsed > .c7n-menu-submenu > .c7n-menu-submenu-title .icon {
font-size: .16rem;
line-height: 0.4rem;
margin: 0;
}
.c7n-menu-inline-collapsed > .c7n-menu-item .icon + span,
.c7n-menu-inline-collapsed > .c7n-menu-item-group > .c7n-menu-item-group-list > .c7n-menu-item .icon + span,
.c7n-menu-inline-collapsed > .c7n-menu-submenu > .c7n-menu-submenu-title .icon + span {
max-width: 0;
display: inline-block;
opacity: 0;
}
.c7n-menu-inline-collapsed-tooltip {
pointer-events: none;
}
.c7n-menu-inline-collapsed-tooltip .icon {
display: none;
}
.c7n-menu-inline-collapsed-tooltip a {
color: rgba(255, 255, 255, 0.85);
}
.c7n-menu-inline-collapsed .c7n-menu-item-group-title {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding-left: .04rem;
padding-right: .04rem;
}
.c7n-menu-item-group-list {
margin: 0;
padding: 0;
}
.c7n-menu-item-group-list .c7n-menu-item,
.c7n-menu-item-group-list .c7n-menu-submenu-title {
padding: 0 .16rem 0 .28rem;
}
.c7n-menu-root.c7n-menu-vertical,
.c7n-menu-root.c7n-menu-vertical-left,
.c7n-menu-root.c7n-menu-vertical-right,
.c7n-menu-root.c7n-menu-inline {
-webkit-box-shadow: none;
box-shadow: none;
}
.c7n-menu-sub.c7n-menu-inline {
padding: 0;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
}
.c7n-menu-sub.c7n-menu-inline > .c7n-menu-item,
.c7n-menu-sub.c7n-menu-inline > .c7n-menu-submenu > .c7n-menu-submenu-title {
line-height: 0.4rem;
height: 0.4rem;
list-style-type: disc;
list-style-position: inside;
}
.c7n-menu-sub.c7n-menu-inline .c7n-menu-item-group-title {
padding-left: .32rem;
}
.c7n-menu-item-disabled,
.c7n-menu-submenu-disabled {
color: rgba(0, 0, 0, 0.25) !important;
cursor: not-allowed;
background: none;
border-color: transparent !important;
}
.c7n-menu-item-disabled > a,
.c7n-menu-submenu-disabled > a {
color: rgba(0, 0, 0, 0.25) !important;
pointer-events: none;
}
.c7n-menu-item-disabled > .c7n-menu-submenu-title,
.c7n-menu-submenu-disabled > .c7n-menu-submenu-title {
color: rgba(0, 0, 0, 0.25) !important;
cursor: not-allowed;
}
.c7n-menu-dark,
.c7n-menu-dark .c7n-menu-sub {
color: rgba(255, 255, 255, 0.65);
background: #001529;
}
.c7n-menu-dark .c7n-menu-submenu-title .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-sub .c7n-menu-submenu-title .c7n-menu-submenu-arrow {
opacity: 0.45;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.c7n-menu-dark .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-sub .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-sub .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before {
background: #fff;
}
.c7n-menu-dark.c7n-menu-submenu-popup {
background: transparent;
}
.c7n-menu-dark .c7n-menu-inline.c7n-menu-sub {
background: #000c17;
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset;
}
.c7n-menu-dark.c7n-menu-horizontal {
border-bottom: 0;
}
.c7n-menu-dark.c7n-menu-horizontal > .c7n-menu-item,
.c7n-menu-dark.c7n-menu-horizontal > .c7n-menu-submenu {
border-color: #001529;
border-bottom: 0;
top: 0;
margin-top: 0;
}
.c7n-menu-dark.c7n-menu-horizontal > .c7n-menu-item > a:before {
bottom: 0;
}
.c7n-menu-dark .c7n-menu-item,
.c7n-menu-dark .c7n-menu-item-group-title,
.c7n-menu-dark .c7n-menu-item > a {
color: rgba(255, 255, 255, 0.65);
}
.c7n-menu-dark.c7n-menu-inline,
.c7n-menu-dark.c7n-menu-vertical,
.c7n-menu-dark.c7n-menu-vertical-left,
.c7n-menu-dark.c7n-menu-vertical-right {
border-right: 0;
}
.c7n-menu-dark.c7n-menu-inline .c7n-menu-item,
.c7n-menu-dark.c7n-menu-vertical .c7n-menu-item,
.c7n-menu-dark.c7n-menu-vertical-left .c7n-menu-item,
.c7n-menu-dark.c7n-menu-vertical-right .c7n-menu-item {
border-right: 0;
margin-left: 0;
left: 0;
}
.c7n-menu-dark.c7n-menu-inline .c7n-menu-item:after,
.c7n-menu-dark.c7n-menu-vertical .c7n-menu-item:after,
.c7n-menu-dark.c7n-menu-vertical-left .c7n-menu-item:after,
.c7n-menu-dark.c7n-menu-vertical-right .c7n-menu-item:after {
border-right: 0;
}
.c7n-menu-dark.c7n-menu-inline .c7n-menu-item,
.c7n-menu-dark.c7n-menu-inline .c7n-menu-submenu-title {
width: 100%;
}
.c7n-menu-dark .c7n-menu-item:hover,
.c7n-menu-dark .c7n-menu-item-active,
.c7n-menu-dark .c7n-menu-submenu-active,
.c7n-menu-dark .c7n-menu-submenu-open,
.c7n-menu-dark .c7n-menu-submenu-selected,
.c7n-menu-dark .c7n-menu-submenu-title:hover {
background-color: transparent;
color: #fff;
}
.c7n-menu-dark .c7n-menu-item:hover > a,
.c7n-menu-dark .c7n-menu-item-active > a,
.c7n-menu-dark .c7n-menu-submenu-active > a,
.c7n-menu-dark .c7n-menu-submenu-open > a,
.c7n-menu-dark .c7n-menu-submenu-selected > a,
.c7n-menu-dark .c7n-menu-submenu-title:hover > a {
color: #fff;
}
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow {
opacity: 1;
}
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before {
background: #fff;
}
.c7n-menu-dark .c7n-menu-item-selected {
border-right: 0;
color: #fff;
}
.c7n-menu-dark .c7n-menu-item-selected:after {
border-right: 0;
}
.c7n-menu-dark .c7n-menu-item-selected > a,
.c7n-menu-dark .c7n-menu-item-selected > a:hover {
color: #fff;
}
.c7n-menu.c7n-menu-dark .c7n-menu-item-selected,
.c7n-menu-submenu-popup.c7n-menu-dark .c7n-menu-item-selected {
background-color: #3f51b5;
}
.c7n-menu-dark .c7n-menu-item-disabled,
.c7n-menu-dark .c7n-menu-submenu-disabled,
.c7n-menu-dark .c7n-menu-item-disabled > a,
.c7n-menu-dark .c7n-menu-submenu-disabled > a {
opacity: 0.8;
color: rgba(255, 255, 255, 0.35) !important;
}
.c7n-menu-dark .c7n-menu-item-disabled > .c7n-menu-submenu-title,
.c7n-menu-dark .c7n-menu-submenu-disabled > .c7n-menu-submenu-title {
color: rgba(255, 255, 255, 0.35) !important;
}
.c7n-menu-dark .c7n-menu-item-disabled > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-disabled > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-item-disabled > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-disabled > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after {
background: rgba(255, 255, 255, 0.35) !important;
} | lib/menu/style/index.css | .c7n-menu {
font-family: "Monospaced Number", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 0.13rem;
line-height: 1.5;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
outline: none;
margin-bottom: 0;
padding-left: 0;
list-style: none;
-webkit-box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.12);
box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.12);
color: #000000;
background: #fff;
line-height: 0;
-webkit-transition: background .3s, width .2s;
transition: background .3s, width .2s;
zoom: 1;
}
.c7n-menu:before,
.c7n-menu:after {
content: " ";
display: table;
}
.c7n-menu:after {
clear: both;
visibility: hidden;
font-size: 0;
height: 0;
}
.c7n-menu ul,
.c7n-menu ol {
list-style: none;
margin: 0;
padding: 0;
}
.c7n-menu-hidden {
display: none;
}
.c7n-menu-item-group-title {
color: rgba(0, 0, 0, 0.45);
font-size: 0.13rem;
line-height: 1.5;
padding: .08rem .16rem;
-webkit-transition: all .3s;
transition: all .3s;
}
.c7n-menu-submenu,
.c7n-menu-submenu-inline {
-webkit-transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-submenu .c7n-menu-sub {
cursor: initial;
-webkit-transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-item > a {
display: block;
color: #000000;
}
.c7n-menu-item > a:focus {
text-decoration: none;
}
.c7n-menu-item > a:before {
position: absolute;
background-color: transparent;
top: 0;
left: 0;
bottom: 0;
right: 0;
content: '';
}
.c7n-menu-item > a > span {
display: inline-block;
}
.c7n-menu-item-divider {
height: .01rem;
overflow: hidden;
background-color: #e8e8e8;
line-height: 0;
}
.c7n-menu-item:hover,
.c7n-menu-item-active,
.c7n-menu:not(.c7n-menu-inline) .c7n-menu-submenu-open,
.c7n-menu-submenu-active,
.c7n-menu-submenu-title:hover {
background-color: rgba(0, 0, 0, 0.04);
}
.c7n-menu-horizontal .c7n-menu-item,
.c7n-menu-horizontal .c7n-menu-submenu {
margin-top: -0.01rem;
}
.c7n-menu-horizontal > .c7n-menu-item:hover,
.c7n-menu-horizontal > .c7n-menu-item-active,
.c7n-menu-horizontal > .c7n-menu-submenu .c7n-menu-submenu-title:hover {
background-color: transparent;
}
.c7n-menu-item-selected {
color: #3f51b5;
}
.c7n-menu-item-selected > a,
.c7n-menu-item-selected > a:hover {
color: #3f51b5;
}
.c7n-menu:not(.c7n-menu-horizontal) .c7n-menu-item-selected {
background-color: rgba(140, 158, 255, 0.12);
}
.c7n-menu:not(.c7n-menu-horizontal) .c7n-menu-item-selected:hover {
background-color: rgba(0, 0, 0, 0.04);
}
.c7n-menu-inline,
.c7n-menu-vertical,
.c7n-menu-vertical-left {
border-right: 0.01rem solid #e8e8e8;
}
.c7n-menu-vertical-right {
border-left: 0.01rem solid #e8e8e8;
}
.c7n-menu-vertical.c7n-menu-sub,
.c7n-menu-vertical-left.c7n-menu-sub,
.c7n-menu-vertical-right.c7n-menu-sub {
border-right: 0;
padding: 0;
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.c7n-menu-vertical.c7n-menu-sub .c7n-menu-item,
.c7n-menu-vertical-left.c7n-menu-sub .c7n-menu-item,
.c7n-menu-vertical-right.c7n-menu-sub .c7n-menu-item {
border-right: 0;
margin-left: 0;
left: 0;
}
.c7n-menu-vertical.c7n-menu-sub .c7n-menu-item:after,
.c7n-menu-vertical-left.c7n-menu-sub .c7n-menu-item:after,
.c7n-menu-vertical-right.c7n-menu-sub .c7n-menu-item:after {
border-right: 0;
}
.c7n-menu-vertical.c7n-menu-sub > .c7n-menu-item,
.c7n-menu-vertical-left.c7n-menu-sub > .c7n-menu-item,
.c7n-menu-vertical-right.c7n-menu-sub > .c7n-menu-item,
.c7n-menu-vertical.c7n-menu-sub > .c7n-menu-submenu,
.c7n-menu-vertical-left.c7n-menu-sub > .c7n-menu-submenu,
.c7n-menu-vertical-right.c7n-menu-sub > .c7n-menu-submenu {
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.c7n-menu-horizontal.c7n-menu-sub,
.c7n-menu-vertical.c7n-menu-sub,
.c7n-menu-vertical-left.c7n-menu-sub,
.c7n-menu-vertical-right.c7n-menu-sub {
min-width: 1.6rem;
}
.c7n-menu-item,
.c7n-menu-submenu-title {
cursor: pointer;
margin: 0;
padding: 0 .2rem;
position: relative;
display: block;
white-space: nowrap;
-webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-item .icon,
.c7n-menu-submenu-title .icon {
min-width: .14rem;
margin-right: .1rem;
-webkit-transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
vertical-align: top;
line-height: inherit;
}
.c7n-menu-item .icon + span,
.c7n-menu-submenu-title .icon + span {
display: inline-block;
-webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
opacity: 1;
}
.c7n-menu > .c7n-menu-item-divider {
height: .01rem;
margin: .01rem 0;
overflow: hidden;
padding: 0;
line-height: 0;
background-color: #e8e8e8;
}
.c7n-menu-submenu-popup {
position: absolute;
border-radius: 0.02rem;
z-index: 1050;
}
.c7n-menu-submenu > .c7n-menu {
background-color: #fff;
border-radius: 0.02rem;
}
.c7n-menu-submenu > .c7n-menu-submenu-title:after {
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow {
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
position: absolute;
top: 50%;
right: .16rem;
width: .1rem;
}
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after {
content: '';
position: absolute;
vertical-align: baseline;
background: #fff;
background-image: -webkit-gradient(linear, left top, right top, from(#000000), to(#000000));
background-image: -webkit-linear-gradient(left, #000000, #000000);
background-image: linear-gradient(to right, #000000, #000000);
width: .06rem;
height: .015rem;
border-radius: .02rem;
-webkit-transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before {
-webkit-transform: rotate(45deg) translateY(-0.02rem);
-ms-transform: rotate(45deg) translateY(-0.02rem);
transform: rotate(45deg) translateY(-0.02rem);
}
.c7n-menu-submenu-vertical > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-vertical-left > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-vertical-right > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after {
-webkit-transform: rotate(-45deg) translateY(0.02rem);
-ms-transform: rotate(-45deg) translateY(0.02rem);
transform: rotate(-45deg) translateY(0.02rem);
}
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before {
-webkit-transform: rotate(-45deg) translateX(0.02rem);
-ms-transform: rotate(-45deg) translateX(0.02rem);
transform: rotate(-45deg) translateX(0.02rem);
}
.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after {
-webkit-transform: rotate(45deg) translateX(-0.02rem);
-ms-transform: rotate(45deg) translateX(-0.02rem);
transform: rotate(45deg) translateX(-0.02rem);
}
.c7n-menu-submenu-open.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow {
-webkit-transform: translateY(-0.02rem);
-ms-transform: translateY(-0.02rem);
transform: translateY(-0.02rem);
}
.c7n-menu-submenu-open.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after {
-webkit-transform: rotate(-45deg) translateX(-0.02rem);
-ms-transform: rotate(-45deg) translateX(-0.02rem);
transform: rotate(-45deg) translateX(-0.02rem);
}
.c7n-menu-submenu-open.c7n-menu-submenu-inline > .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before {
-webkit-transform: rotate(45deg) translateX(0.02rem);
-ms-transform: rotate(45deg) translateX(0.02rem);
transform: rotate(45deg) translateX(0.02rem);
}
.c7n-menu-submenu-open-submenu-title {
color: #3f51b5;
}
.c7n-menu-vertical .c7n-menu-submenu-selected,
.c7n-menu-vertical-left .c7n-menu-submenu-selected,
.c7n-menu-vertical-right .c7n-menu-submenu-selected {
color: #3f51b5;
background-color: rgba(140, 158, 255, 0.12);
}
.c7n-menu-vertical .c7n-menu-submenu-selected > a,
.c7n-menu-vertical-left .c7n-menu-submenu-selected > a,
.c7n-menu-vertical-right .c7n-menu-submenu-selected > a {
color: #3f51b5;
}
.c7n-menu-horizontal {
border: 0;
border-bottom: 0.01rem solid #e8e8e8;
-webkit-box-shadow: none;
box-shadow: none;
line-height: .46rem;
}
.c7n-menu-horizontal > .c7n-menu-item,
.c7n-menu-horizontal > .c7n-menu-submenu {
position: relative;
top: .01rem;
float: left;
border-bottom: .02rem solid transparent;
}
.c7n-menu-horizontal > .c7n-menu-item:hover,
.c7n-menu-horizontal > .c7n-menu-submenu:hover,
.c7n-menu-horizontal > .c7n-menu-item-active,
.c7n-menu-horizontal > .c7n-menu-submenu-active,
.c7n-menu-horizontal > .c7n-menu-item-open,
.c7n-menu-horizontal > .c7n-menu-submenu-open,
.c7n-menu-horizontal > .c7n-menu-item-selected,
.c7n-menu-horizontal > .c7n-menu-submenu-selected {
border-bottom: 0.02rem solid #3f51b5;
color: #3f51b5;
}
.c7n-menu-horizontal > .c7n-menu-item > a,
.c7n-menu-horizontal > .c7n-menu-submenu > a {
display: block;
color: #000000;
}
.c7n-menu-horizontal > .c7n-menu-item > a:hover,
.c7n-menu-horizontal > .c7n-menu-submenu > a:hover {
color: #3f51b5;
}
.c7n-menu-horizontal > .c7n-menu-item > a:before,
.c7n-menu-horizontal > .c7n-menu-submenu > a:before {
bottom: -0.02rem;
}
.c7n-menu-horizontal > .c7n-menu-item > a > span,
.c7n-menu-horizontal > .c7n-menu-submenu > a > span {
display: inline-block;
}
.c7n-menu-horizontal:after {
content: "\20";
display: block;
height: 0;
clear: both;
}
.c7n-menu-vertical .c7n-menu-item,
.c7n-menu-vertical-left .c7n-menu-item,
.c7n-menu-vertical-right .c7n-menu-item,
.c7n-menu-inline .c7n-menu-item {
position: relative;
}
.c7n-menu-vertical .c7n-menu-item,
.c7n-menu-vertical-left .c7n-menu-item,
.c7n-menu-vertical-right .c7n-menu-item,
.c7n-menu-inline .c7n-menu-item,
.c7n-menu-vertical .c7n-menu-submenu-title,
.c7n-menu-vertical-left .c7n-menu-submenu-title,
.c7n-menu-vertical-right .c7n-menu-submenu-title,
.c7n-menu-inline .c7n-menu-submenu-title {
padding: 0 .16rem;
font-size: 0.13rem;
line-height: 0.4rem;
height: 0.4rem;
overflow: hidden;
text-overflow: ellipsis;
}
.c7n-menu-vertical .c7n-menu-submenu,
.c7n-menu-vertical-left .c7n-menu-submenu,
.c7n-menu-vertical-right .c7n-menu-submenu,
.c7n-menu-inline .c7n-menu-submenu {
padding-bottom: .0001rem;
}
.c7n-menu-vertical > .c7n-menu-item,
.c7n-menu-vertical-left > .c7n-menu-item,
.c7n-menu-vertical-right > .c7n-menu-item,
.c7n-menu-inline > .c7n-menu-item,
.c7n-menu-vertical > .c7n-menu-submenu > .c7n-menu-submenu-title,
.c7n-menu-vertical-left > .c7n-menu-submenu > .c7n-menu-submenu-title,
.c7n-menu-vertical-right > .c7n-menu-submenu > .c7n-menu-submenu-title,
.c7n-menu-inline > .c7n-menu-submenu > .c7n-menu-submenu-title {
line-height: 0.4rem;
height: 0.4rem;
}
.c7n-menu-inline {
width: 100%;
}
.c7n-menu-inline .c7n-menu-item,
.c7n-menu-inline .c7n-menu-submenu-title {
width: calc(100% + .01rem);
}
.c7n-menu-inline .c7n-menu-submenu-title {
padding-right: .34rem;
}
.c7n-menu-inline-collapsed {
width: 0.8rem;
}
.c7n-menu-inline-collapsed > .c7n-menu-item,
.c7n-menu-inline-collapsed > .c7n-menu-item-group > .c7n-menu-item-group-list > .c7n-menu-item,
.c7n-menu-inline-collapsed > .c7n-menu-submenu > .c7n-menu-submenu-title {
left: 0;
text-overflow: clip;
padding: 0 0.32rem !important;
}
.c7n-menu-inline-collapsed > .c7n-menu-item .c7n-menu-submenu-arrow,
.c7n-menu-inline-collapsed > .c7n-menu-item-group > .c7n-menu-item-group-list > .c7n-menu-item .c7n-menu-submenu-arrow,
.c7n-menu-inline-collapsed > .c7n-menu-submenu > .c7n-menu-submenu-title .c7n-menu-submenu-arrow {
display: none;
}
.c7n-menu-inline-collapsed > .c7n-menu-item .icon,
.c7n-menu-inline-collapsed > .c7n-menu-item-group > .c7n-menu-item-group-list > .c7n-menu-item .icon,
.c7n-menu-inline-collapsed > .c7n-menu-submenu > .c7n-menu-submenu-title .icon {
font-size: .16rem;
line-height: 0.4rem;
margin: 0;
}
.c7n-menu-inline-collapsed > .c7n-menu-item .icon + span,
.c7n-menu-inline-collapsed > .c7n-menu-item-group > .c7n-menu-item-group-list > .c7n-menu-item .icon + span,
.c7n-menu-inline-collapsed > .c7n-menu-submenu > .c7n-menu-submenu-title .icon + span {
max-width: 0;
display: inline-block;
opacity: 0;
}
.c7n-menu-inline-collapsed-tooltip {
pointer-events: none;
}
.c7n-menu-inline-collapsed-tooltip .icon {
display: none;
}
.c7n-menu-inline-collapsed-tooltip a {
color: rgba(255, 255, 255, 0.85);
}
.c7n-menu-inline-collapsed .c7n-menu-item-group-title {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding-left: .04rem;
padding-right: .04rem;
}
.c7n-menu-item-group-list {
margin: 0;
padding: 0;
}
.c7n-menu-item-group-list .c7n-menu-item,
.c7n-menu-item-group-list .c7n-menu-submenu-title {
padding: 0 .16rem 0 .28rem;
}
.c7n-menu-root.c7n-menu-vertical,
.c7n-menu-root.c7n-menu-vertical-left,
.c7n-menu-root.c7n-menu-vertical-right,
.c7n-menu-root.c7n-menu-inline {
-webkit-box-shadow: none;
box-shadow: none;
}
.c7n-menu-sub.c7n-menu-inline {
padding: 0;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
}
.c7n-menu-sub.c7n-menu-inline > .c7n-menu-item,
.c7n-menu-sub.c7n-menu-inline > .c7n-menu-submenu > .c7n-menu-submenu-title {
line-height: 0.4rem;
height: 0.4rem;
list-style-type: disc;
list-style-position: inside;
}
.c7n-menu-sub.c7n-menu-inline .c7n-menu-item-group-title {
padding-left: .32rem;
}
.c7n-menu-item-disabled,
.c7n-menu-submenu-disabled {
color: rgba(0, 0, 0, 0.25) !important;
cursor: not-allowed;
background: none;
border-color: transparent !important;
}
.c7n-menu-item-disabled > a,
.c7n-menu-submenu-disabled > a {
color: rgba(0, 0, 0, 0.25) !important;
pointer-events: none;
}
.c7n-menu-item-disabled > .c7n-menu-submenu-title,
.c7n-menu-submenu-disabled > .c7n-menu-submenu-title {
color: rgba(0, 0, 0, 0.25) !important;
cursor: not-allowed;
}
.c7n-menu-dark,
.c7n-menu-dark .c7n-menu-sub {
color: rgba(255, 255, 255, 0.65);
background: #001529;
}
.c7n-menu-dark .c7n-menu-submenu-title .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-sub .c7n-menu-submenu-title .c7n-menu-submenu-arrow {
opacity: 0.45;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.c7n-menu-dark .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-sub .c7n-menu-submenu-title .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-sub .c7n-menu-submenu-title .c7n-menu-submenu-arrow:before {
background: #fff;
}
.c7n-menu-dark.c7n-menu-submenu-popup {
background: transparent;
}
.c7n-menu-dark .c7n-menu-inline.c7n-menu-sub {
background: #000c17;
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset;
}
.c7n-menu-dark.c7n-menu-horizontal {
border-bottom: 0;
}
.c7n-menu-dark.c7n-menu-horizontal > .c7n-menu-item,
.c7n-menu-dark.c7n-menu-horizontal > .c7n-menu-submenu {
border-color: #001529;
border-bottom: 0;
top: 0;
margin-top: 0;
}
.c7n-menu-dark.c7n-menu-horizontal > .c7n-menu-item > a:before {
bottom: 0;
}
.c7n-menu-dark .c7n-menu-item,
.c7n-menu-dark .c7n-menu-item-group-title,
.c7n-menu-dark .c7n-menu-item > a {
color: rgba(255, 255, 255, 0.65);
}
.c7n-menu-dark.c7n-menu-inline,
.c7n-menu-dark.c7n-menu-vertical,
.c7n-menu-dark.c7n-menu-vertical-left,
.c7n-menu-dark.c7n-menu-vertical-right {
border-right: 0;
}
.c7n-menu-dark.c7n-menu-inline .c7n-menu-item,
.c7n-menu-dark.c7n-menu-vertical .c7n-menu-item,
.c7n-menu-dark.c7n-menu-vertical-left .c7n-menu-item,
.c7n-menu-dark.c7n-menu-vertical-right .c7n-menu-item {
border-right: 0;
margin-left: 0;
left: 0;
}
.c7n-menu-dark.c7n-menu-inline .c7n-menu-item:after,
.c7n-menu-dark.c7n-menu-vertical .c7n-menu-item:after,
.c7n-menu-dark.c7n-menu-vertical-left .c7n-menu-item:after,
.c7n-menu-dark.c7n-menu-vertical-right .c7n-menu-item:after {
border-right: 0;
}
.c7n-menu-dark.c7n-menu-inline .c7n-menu-item,
.c7n-menu-dark.c7n-menu-inline .c7n-menu-submenu-title {
width: 100%;
}
.c7n-menu-dark .c7n-menu-item:hover,
.c7n-menu-dark .c7n-menu-item-active,
.c7n-menu-dark .c7n-menu-submenu-active,
.c7n-menu-dark .c7n-menu-submenu-open,
.c7n-menu-dark .c7n-menu-submenu-selected,
.c7n-menu-dark .c7n-menu-submenu-title:hover {
background-color: transparent;
color: #fff;
}
.c7n-menu-dark .c7n-menu-item:hover > a,
.c7n-menu-dark .c7n-menu-item-active > a,
.c7n-menu-dark .c7n-menu-submenu-active > a,
.c7n-menu-dark .c7n-menu-submenu-open > a,
.c7n-menu-dark .c7n-menu-submenu-selected > a,
.c7n-menu-dark .c7n-menu-submenu-title:hover > a {
color: #fff;
}
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow {
opacity: 1;
}
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-item:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-item-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-active > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-open > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-selected > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-title:hover > .c7n-menu-submenu-title:hover > .c7n-menu-submenu-arrow:before {
background: #fff;
}
.c7n-menu-dark .c7n-menu-item-selected {
border-right: 0;
color: #fff;
}
.c7n-menu-dark .c7n-menu-item-selected:after {
border-right: 0;
}
.c7n-menu-dark .c7n-menu-item-selected > a,
.c7n-menu-dark .c7n-menu-item-selected > a:hover {
color: #fff;
}
.c7n-menu.c7n-menu-dark .c7n-menu-item-selected,
.c7n-menu-submenu-popup.c7n-menu-dark .c7n-menu-item-selected {
background-color: #3f51b5;
}
.c7n-menu-dark .c7n-menu-item-disabled,
.c7n-menu-dark .c7n-menu-submenu-disabled,
.c7n-menu-dark .c7n-menu-item-disabled > a,
.c7n-menu-dark .c7n-menu-submenu-disabled > a {
opacity: 0.8;
color: rgba(255, 255, 255, 0.35) !important;
}
.c7n-menu-dark .c7n-menu-item-disabled > .c7n-menu-submenu-title,
.c7n-menu-dark .c7n-menu-submenu-disabled > .c7n-menu-submenu-title {
color: rgba(255, 255, 255, 0.35) !important;
}
.c7n-menu-dark .c7n-menu-item-disabled > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-submenu-disabled > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:before,
.c7n-menu-dark .c7n-menu-item-disabled > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after,
.c7n-menu-dark .c7n-menu-submenu-disabled > .c7n-menu-submenu-title > .c7n-menu-submenu-arrow:after {
background: rgba(255, 255, 255, 0.35) !important;
} | 0.264263 | 0.054777 |
html { overflow-y: scroll; }
body { background: #f7f7f7; font: 16px 'Open Sans', serif; color: #000; width: 100%; min-width: 300px; max-width: 2000px; margin: auto; -webkit-text-size-adjust: none; }
* { margin: 0; padding: 0; outline: 0; }
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
img { border: 0; }
a { color: #e31d1a; text-decoration: none; cursor: pointer; }
a:hover { color: #818285; }
.clear { clear: both; }
.left { float: left; }
.right { float: right; }
p { margin-bottom: 10px; }
.main { width: 100%; padding-left: 15px; padding-right: 15px; margin: auto; }
.maintb { padding-top: 10px; padding-bottom: 10px; }
.maintb-big { padding-top: 150px; padding-bottom: 150px; }
.title { font-size: 22px; margin-bottom: 20px; font-weight: 900; margin-top: 0px; }
.title .txt { display: block; margin-bottom: 10px; }
.title .line { display: inline-block; height: 2px; width: 60px; background: #e31d1a; }
.title.second-title { font-size: 18px; }
.title.second-separator { margin: 10px 0px 20px 0px; }
.subtitle { font-size: 20px; }
.normal_list { margin: -5px 0px 10px 25px;}
.ordered_list { margin: -5px 0px 10px 25px;}
.whitebar { width: 100%; border: solid 6px #fff; }
.paddingleft20 { padding-left: 30px; margin-bottom: 10px; }
.separator-box { margin-bottom: 20px; }
.separator-box .title.second-title { margin-bottom: 10px; }
.notification-wrapper { padding-top: 10px; }
.notification { position: relative; background: #D9EDF7; color: #333; padding: 10px 40px 10px 20px; margin: 5px 0 0; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
.notification .close { background: none; border: 0; cursor: pointer; position: absolute; top: 2px; right: 3px; }
.notification-warning { background: #FCF8E3; color: #8A6D3B; }
.notification-error { background: #EBCCD1; color: #A94442; }
.input, .select, .textarea, .button { line-height: 40px; height: 40px; }
.input, .select, .textarea { background: #fff; border: 1px solid #a1a1a1; display: block; padding: 0 10px; resize: none; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; }
.input:focus, .input:hover { border-color: #e31d1a; }
.textarea { vertical-align: top; padding-top: 5px; padding-bottom: 5px; line-height: initial!important; height: 180px!important; }
.button { background: #e31d1a; border: 0px; border-bottom: 4px solid #930706; color: #fff; cursor: pointer; text-transform: uppercase; text-align: center; padding: 0 20px; display: inline-block; -webkit-appearance: none; -webkit-border-radius: 0; }
.button:hover { background: #930706; border-color: #930706; color: #fff; text-decoration: none; }
.inputline { width: 100%; float: left; padding: 5px 0; }
.inputline::after, .inputline::before { clear: both; }
.inputline .label { float: left; display: block; width: 25%; padding: 4px 15px 0 0; text-align: left; }
.inputline .field { float: left; display: block; width: 75%; }
.inputline .input, .select, inputline .textarea, .inputline .button { width: 100%; }
label.error, span.error { display: inline-block; white-space: normal; color: #F00; font-size: 80%; line-height: 1.1; cursor: pointer; margin: 0; }
.classic-form .inputline .label { display: none; }
.classic-form .inputline .field { width: 100%; }
::-webkit-input-placeholder { color: #666; }
:-moz-placeholder { color: #666; }
::-moz-placeholder { color: #666; }
:-ms-input-placeholder { color: #666; }
.normal-checkbox { display: block; width: 100%; padding: 1px 0; }
.normal-checkbox input { display: none; }
.normal-checkbox label { width: 100%; cursor: pointer; display: block; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.normal-checkbox label .value { vertical-align: middle; }
.normal-checkbox label:before { font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; content: '\f00c'; display: inline-block; text-align: center; vertical-align: middle; margin-right: 5px; color: #fff; background: #fff; width: 24px; height: 24px; font-size: 16px; line-height: 22px; border: 1px solid #a1a1a1; }
.normal-checkbox input:hover:not(:checked) ~ label:before { color: #C2C2C2; }
.normal-checkbox input:checked ~ label:before { background: #e31d1a; color: #fff; border-color: #e31d1a; }
.radio-checkbox label:before { border-radius: 46%; -moz-border-radius: 46%; -webkit-border-radius: 46%; }
.full-absolute { position: absolute; left: 0; right: 0; top: 0; bottom: 0; width: 100%; height: 100%; }
.overlay-container { background: url(../images/overlay-bg.png); position: fixed; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 200; overflow: auto; display: none; }
/* HEADER =================================================== */
/* FOOTER =================================================== */
.footer-container { background:#222; color: #fff; font-size: 14px; }
/* CONTAINER ================================================ */
.wrapper-container { position: relative; z-index: 10; text-align: justify; }
/* HOMEPAGE */
/* PAGES */
.flex-wrapper { display: flex; align-items: center; }
.flex-wrapper .round { margin-right: 20px; }
.flex-wrapper .round .match { background: #000; color: #fff; margin-bottom: 10px; }
.flex-wrapper .round .match .player { display: flex; align-items: center; justify-content: center; min-width: 80px; min-height: 20px; padding: 5px 10px; }
.flex-wrapper .round .match .player.player_0 { border-bottom: 1px solid #fff; }
.flex-wrapper .round .match.winner_0 .player_0 { background: green; }
.flex-wrapper .round .match.winner_0 .player_1 { background: red; }
.flex-wrapper .round .match.winner_1 .player_0 { background: red; }
.flex-wrapper .round .match.winner_1 .player_1 { background: green; }
.flex-wrapper .round .match.current_match { border: 3px solid red; }
.flex-wrapper .title { font-weight: bold; font-size: 18px; text-align: center; }
/* NOPAGE */
.wrapper-container.section-nopage { display: flex; justify-content: center; align-items: center; text-align: center; min-height: 70vh; }
/* RESPONSIVE */
@media only screen and (min-width: 1100px) {
}
@media only screen and (min-width: 1200px) {
body { font-size: 18px; }
p { margin-bottom: 15px; }
.normal_list { margin-top: -5px; margin-bottom: 15px; }
.ordered_list { margin-top: -5px; margin-bottom: 15px; }
.main { padding-left: 25px; padding-right: 25px; }
.maintb { padding-top: 20px; padding-bottom: 20px; }
.maintb-big { padding-top: 180px; padding-bottom: 180px; }
.title { font-size: 24px; }
.title.second-title { font-size: 20px; }
.textarea { height: 200px!important; }
.button { padding: 0 30px; }
/* HEADER =================================================== */
/* CONTAINER ================================================ */
.wrapper-container { }
/* HOMEPAGE */
/* PRESS */
}
@media only screen and (min-width: 1400px) {
.main { padding-left: 50px; padding-right: 50px; }
.maintb { padding-top: 30px; padding-bottom: 30px; }
.maintb-big { padding-top: 200px; padding-bottom: 200px; }
.title { font-size: 28px; }
.title.second-title { font-size: 24px; }
.button { padding: 0 40px; }
.textarea { height: 220px!important; }
/* HEADER =================================================== */
/* CONTAINER ================================================ */
.wrapper-container { }
/* HOMEPAGE */
/* PRESS */
}
@media only screen and (min-width: 1600px) {
.main { padding-left: 60px; padding-right: 60px; }
.maintb { padding-top: 40px; padding-bottom: 40px; }
.maintb-big { padding-top: 220px; padding-bottom: 220px; }
.title { font-size: 30px; }
.title.second-title { font-size: 26px; }
.button { padding: 0 50px; }
/* HEADER =================================================== */
/* CONTAINER ================================================ */
.wrapper-container { }
/* HOMEPAGE */
/* PRESS */
}
/* RESPONSIVE MOBILE */
@media only screen and (max-width: 1000px) {
.main { padding-left: 10px; padding-right: 10px; }
/* HEADER =================================================== */
/* CONTAINER ================================================ */
/* HOMEPAGE */
}
@media only screen and (max-width: 900px) {
body { font-size: 14px; }
.title { font-size: 20px; }
.title.second-title { font-size: 16px; }
.full-width-mobile { width: 100%; }
.footer-container { font-size: 12px; }
/* HEADER =================================================== */
/* FOOTER ==================================================== */
/* CONTAINER ================================================ */
/* HOMEPAGE */
/* PAGES */
}
@media only screen and (max-width: 800px) {
/* CONTAINER ================================================ */
/* HOMEPAGE */
/* COOKIE =================================================== */
}
@media only screen and (max-width: 700px) {
.main { padding-left: 5px; padding-right: 5px; }
/* CONTAINER ================================================ */
/* HOMEPAGE */
}
@media only screen and (max-width: 600px) {
/* HEADER =================================================== */
/* CONTAINER ================================================ */
/* PRESS */
} | static/css/css.css | html { overflow-y: scroll; }
body { background: #f7f7f7; font: 16px 'Open Sans', serif; color: #000; width: 100%; min-width: 300px; max-width: 2000px; margin: auto; -webkit-text-size-adjust: none; }
* { margin: 0; padding: 0; outline: 0; }
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
img { border: 0; }
a { color: #e31d1a; text-decoration: none; cursor: pointer; }
a:hover { color: #818285; }
.clear { clear: both; }
.left { float: left; }
.right { float: right; }
p { margin-bottom: 10px; }
.main { width: 100%; padding-left: 15px; padding-right: 15px; margin: auto; }
.maintb { padding-top: 10px; padding-bottom: 10px; }
.maintb-big { padding-top: 150px; padding-bottom: 150px; }
.title { font-size: 22px; margin-bottom: 20px; font-weight: 900; margin-top: 0px; }
.title .txt { display: block; margin-bottom: 10px; }
.title .line { display: inline-block; height: 2px; width: 60px; background: #e31d1a; }
.title.second-title { font-size: 18px; }
.title.second-separator { margin: 10px 0px 20px 0px; }
.subtitle { font-size: 20px; }
.normal_list { margin: -5px 0px 10px 25px;}
.ordered_list { margin: -5px 0px 10px 25px;}
.whitebar { width: 100%; border: solid 6px #fff; }
.paddingleft20 { padding-left: 30px; margin-bottom: 10px; }
.separator-box { margin-bottom: 20px; }
.separator-box .title.second-title { margin-bottom: 10px; }
.notification-wrapper { padding-top: 10px; }
.notification { position: relative; background: #D9EDF7; color: #333; padding: 10px 40px 10px 20px; margin: 5px 0 0; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
.notification .close { background: none; border: 0; cursor: pointer; position: absolute; top: 2px; right: 3px; }
.notification-warning { background: #FCF8E3; color: #8A6D3B; }
.notification-error { background: #EBCCD1; color: #A94442; }
.input, .select, .textarea, .button { line-height: 40px; height: 40px; }
.input, .select, .textarea { background: #fff; border: 1px solid #a1a1a1; display: block; padding: 0 10px; resize: none; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; }
.input:focus, .input:hover { border-color: #e31d1a; }
.textarea { vertical-align: top; padding-top: 5px; padding-bottom: 5px; line-height: initial!important; height: 180px!important; }
.button { background: #e31d1a; border: 0px; border-bottom: 4px solid #930706; color: #fff; cursor: pointer; text-transform: uppercase; text-align: center; padding: 0 20px; display: inline-block; -webkit-appearance: none; -webkit-border-radius: 0; }
.button:hover { background: #930706; border-color: #930706; color: #fff; text-decoration: none; }
.inputline { width: 100%; float: left; padding: 5px 0; }
.inputline::after, .inputline::before { clear: both; }
.inputline .label { float: left; display: block; width: 25%; padding: 4px 15px 0 0; text-align: left; }
.inputline .field { float: left; display: block; width: 75%; }
.inputline .input, .select, inputline .textarea, .inputline .button { width: 100%; }
label.error, span.error { display: inline-block; white-space: normal; color: #F00; font-size: 80%; line-height: 1.1; cursor: pointer; margin: 0; }
.classic-form .inputline .label { display: none; }
.classic-form .inputline .field { width: 100%; }
::-webkit-input-placeholder { color: #666; }
:-moz-placeholder { color: #666; }
::-moz-placeholder { color: #666; }
:-ms-input-placeholder { color: #666; }
.normal-checkbox { display: block; width: 100%; padding: 1px 0; }
.normal-checkbox input { display: none; }
.normal-checkbox label { width: 100%; cursor: pointer; display: block; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.normal-checkbox label .value { vertical-align: middle; }
.normal-checkbox label:before { font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; content: '\f00c'; display: inline-block; text-align: center; vertical-align: middle; margin-right: 5px; color: #fff; background: #fff; width: 24px; height: 24px; font-size: 16px; line-height: 22px; border: 1px solid #a1a1a1; }
.normal-checkbox input:hover:not(:checked) ~ label:before { color: #C2C2C2; }
.normal-checkbox input:checked ~ label:before { background: #e31d1a; color: #fff; border-color: #e31d1a; }
.radio-checkbox label:before { border-radius: 46%; -moz-border-radius: 46%; -webkit-border-radius: 46%; }
.full-absolute { position: absolute; left: 0; right: 0; top: 0; bottom: 0; width: 100%; height: 100%; }
.overlay-container { background: url(../images/overlay-bg.png); position: fixed; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 200; overflow: auto; display: none; }
/* HEADER =================================================== */
/* FOOTER =================================================== */
.footer-container { background:#222; color: #fff; font-size: 14px; }
/* CONTAINER ================================================ */
.wrapper-container { position: relative; z-index: 10; text-align: justify; }
/* HOMEPAGE */
/* PAGES */
.flex-wrapper { display: flex; align-items: center; }
.flex-wrapper .round { margin-right: 20px; }
.flex-wrapper .round .match { background: #000; color: #fff; margin-bottom: 10px; }
.flex-wrapper .round .match .player { display: flex; align-items: center; justify-content: center; min-width: 80px; min-height: 20px; padding: 5px 10px; }
.flex-wrapper .round .match .player.player_0 { border-bottom: 1px solid #fff; }
.flex-wrapper .round .match.winner_0 .player_0 { background: green; }
.flex-wrapper .round .match.winner_0 .player_1 { background: red; }
.flex-wrapper .round .match.winner_1 .player_0 { background: red; }
.flex-wrapper .round .match.winner_1 .player_1 { background: green; }
.flex-wrapper .round .match.current_match { border: 3px solid red; }
.flex-wrapper .title { font-weight: bold; font-size: 18px; text-align: center; }
/* NOPAGE */
.wrapper-container.section-nopage { display: flex; justify-content: center; align-items: center; text-align: center; min-height: 70vh; }
/* RESPONSIVE */
@media only screen and (min-width: 1100px) {
}
@media only screen and (min-width: 1200px) {
body { font-size: 18px; }
p { margin-bottom: 15px; }
.normal_list { margin-top: -5px; margin-bottom: 15px; }
.ordered_list { margin-top: -5px; margin-bottom: 15px; }
.main { padding-left: 25px; padding-right: 25px; }
.maintb { padding-top: 20px; padding-bottom: 20px; }
.maintb-big { padding-top: 180px; padding-bottom: 180px; }
.title { font-size: 24px; }
.title.second-title { font-size: 20px; }
.textarea { height: 200px!important; }
.button { padding: 0 30px; }
/* HEADER =================================================== */
/* CONTAINER ================================================ */
.wrapper-container { }
/* HOMEPAGE */
/* PRESS */
}
@media only screen and (min-width: 1400px) {
.main { padding-left: 50px; padding-right: 50px; }
.maintb { padding-top: 30px; padding-bottom: 30px; }
.maintb-big { padding-top: 200px; padding-bottom: 200px; }
.title { font-size: 28px; }
.title.second-title { font-size: 24px; }
.button { padding: 0 40px; }
.textarea { height: 220px!important; }
/* HEADER =================================================== */
/* CONTAINER ================================================ */
.wrapper-container { }
/* HOMEPAGE */
/* PRESS */
}
@media only screen and (min-width: 1600px) {
.main { padding-left: 60px; padding-right: 60px; }
.maintb { padding-top: 40px; padding-bottom: 40px; }
.maintb-big { padding-top: 220px; padding-bottom: 220px; }
.title { font-size: 30px; }
.title.second-title { font-size: 26px; }
.button { padding: 0 50px; }
/* HEADER =================================================== */
/* CONTAINER ================================================ */
.wrapper-container { }
/* HOMEPAGE */
/* PRESS */
}
/* RESPONSIVE MOBILE */
@media only screen and (max-width: 1000px) {
.main { padding-left: 10px; padding-right: 10px; }
/* HEADER =================================================== */
/* CONTAINER ================================================ */
/* HOMEPAGE */
}
@media only screen and (max-width: 900px) {
body { font-size: 14px; }
.title { font-size: 20px; }
.title.second-title { font-size: 16px; }
.full-width-mobile { width: 100%; }
.footer-container { font-size: 12px; }
/* HEADER =================================================== */
/* FOOTER ==================================================== */
/* CONTAINER ================================================ */
/* HOMEPAGE */
/* PAGES */
}
@media only screen and (max-width: 800px) {
/* CONTAINER ================================================ */
/* HOMEPAGE */
/* COOKIE =================================================== */
}
@media only screen and (max-width: 700px) {
.main { padding-left: 5px; padding-right: 5px; }
/* CONTAINER ================================================ */
/* HOMEPAGE */
}
@media only screen and (max-width: 600px) {
/* HEADER =================================================== */
/* CONTAINER ================================================ */
/* PRESS */
} | 0.436862 | 0.145297 |
body {
font-size: 20px;
font-family: 'Open Sans',sans-serif;
font-weight: lighter;
color: #000;
background-color: white
}
#logo
{
float: left;
width: 250px;
}
.cabecalho
{
background: white;
height: 245px;
color: black;
text-align: center;
font-size: 30px;
}
.corpo
{
width: 100%;
height: 600px;
float: left;
text-align: justify;
background: white ;
}
.rodape
{
position: absolute;
bottom: -6500px;
width: 100%;
height: 20%;
background: #333;
color: white;
}
.rodape2
{
position: absolute;
bottom: -1600px;
width: 100%;
height: 20%;
background: #333;
color: white;
}
.rodape3
{
position: absolute;
bottom: -100px;
width: 100%;
height: 20%;
background: #333;
color: white;
}
body,
.menu,
.sub-menu {
margin: 0;
padding: 0;
}
.clearfix:after{
content: '.';
display: block;
clear: both;
height: 0;
line-height: 0;
font-size: 0;
visibility: hidden;
overflow: hidden;
}
.menu,
.sub-menu {
list-style: none;
background: #000;
}
.sub-menu {
background: #444;
}
.menu a {
text-decoration: none;
display: block;
padding: 10px;
color: #fff;
font-family: sans-serif;
font-size: 14px;
text-transform: uppercase;
font-weight: 700;
}
.menu li {
position: relative;
}
.menu > li {
float: left;
}
.menu > li:hover {
background: #444;
}
.menu li:hover > .sub-menu {
display: block;
}
.sub-menu {
display: none;
position: absolute;
min-width: 150px;
}
.sub-menu li:hover {
background: #555;
}
.sub-menu .sub-menu {
top: 0;
left: 100%;
}
.tabela1 {
float: left;
border-collapse: collapse;
margin:30px;padding:0px;
width:45%;
border:1px solid #000000;
-moz-border-radius-bottomleft:0px;
-webkit-border-bottom-left-radius:0px;
border-bottom-left-radius:0px;
-moz-border-radius-bottomright:0px;
-webkit-border-bottom-right-radius:0px;
border-bottom-right-radius:0px;
-moz-border-radius-topright:0px;
-webkit-border-top-right-radius:0px;
border-top-right-radius:0px;
-moz-border-radius-topleft:0px;
-webkit-border-top-left-radius:0px;
border-top-left-radius:0px;
}.tabela1 table{
border-collapse: collapse;
border-spacing: 0;
width:100%;
height:100%;
margin:0px;padding:0px;
}.tabela1 tr:last-child td:last-child {
-moz-border-radius-bottomright:0px;
-webkit-border-bottom-right-radius:0px;
border-bottom-right-radius:0px;
}
.tabela1 table tr:first-child td:first-child {
-moz-border-radius-topleft:0px;
-webkit-border-top-left-radius:0px;
border-top-left-radius:0px;
}
.tabela1 table tr:first-child td:last-child {
-moz-border-radius-topright:0px;
-webkit-border-top-right-radius:0px;
border-top-right-radius:0px;
}.tabela1 tr:last-child td:first-child{
-moz-border-radius-bottomleft:0px;
-webkit-border-bottom-left-radius:0px;
border-bottom-left-radius:0px;
}.tabela1 tr:hover td{
}
.tabela1 tr:nth-child(odd){
background-color:#cccccc;
}
.tabela1 tr:nth-child(even){background-color:#ffffff;}.tabela1 td{
vertical-align:middle;
border:1px solid #000000;
border-width:0px 1px 1px 0px;
text-align:left;
padding:7px;
font-size:12px;
font-family:Arial;
font-weight:normal;
color:#000000;
}.tabela1 tr:last-child td{
border-width:0px 1px 0px 0px;
}.tabela1 tr td:last-child{
border-width:0px 0px 1px 0px;
}.tabela1 tr:last-child td:last-child{
border-width:0px 0px 0px 0px;
}
.tabela1 tr:first-child td{
background:-o-linear-gradient(bottom, #bf0000 5%, #7f0000 100%);
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bf0000), color-stop(1, #7f0000) );
background:-moz-linear-gradient( center top, #bf0000 5%, #7f0000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf0000", endColorstr="#7f0000"); background: -o-linear-gradient(top,#bf0000,7f0000);
background-color:#bf0000;
border:0px solid #000000;
border-width:0px 0px 1px 1px;
font-size:14px;
font-family:Arial;
font-weight:bold;
color:#ffffff;
}
.tabela1 tr:first-child:hover td{
background:-o-linear-gradient(bottom, #bf0000 5%, #7f0000 100%);
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bf0000), color-stop(1, #7f0000) );
background:-moz-linear-gradient( center top, #bf0000 5%, #7f0000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf0000", endColorstr="#7f0000");
background: -o-linear-gradient(top,#bf0000,7f0000);
background-color:#bf0000;
}
.tabela1 tr:first-child td:first-child{
border-width:0px 0px 1px 0px;
}
.tabela1 tr:first-child td:last-child{
border-width:0px 0px 1px 1px;
}
.tabelaMaior {
float: left;
border-collapse: collapse;
margin:30px;padding:0px;
width:90%;
border:1px solid #000000;
-moz-border-radius-bottomleft:0px;
-webkit-border-bottom-left-radius:0px;
border-bottom-left-radius:0px;
-moz-border-radius-bottomright:0px;
-webkit-border-bottom-right-radius:0px;
border-bottom-right-radius:0px;
-moz-border-radius-topright:0px;
-webkit-border-top-right-radius:0px;
border-top-right-radius:0px;
-moz-border-radius-topleft:0px;
-webkit-border-top-left-radius:0px;
border-top-left-radius:0px;
}.tabelaMaior table{
border-collapse: collapse;
border-spacing: 0;
width:100%;
height:100%;
margin:0px;padding:0px;
}.tabelaMaior tr:last-child td:last-child {
-moz-border-radius-bottomright:0px;
-webkit-border-bottom-right-radius:0px;
border-bottom-right-radius:0px;
}
.tabelaMaior table tr:first-child td:first-child {
-moz-border-radius-topleft:0px;
-webkit-border-top-left-radius:0px;
border-top-left-radius:0px;
}
.tabelaMaior table tr:first-child td:last-child {
-moz-border-radius-topright:0px;
-webkit-border-top-right-radius:0px;
border-top-right-radius:0px;
}.tabelaMaior tr:last-child td:first-child{
-moz-border-radius-bottomleft:0px;
-webkit-border-bottom-left-radius:0px;
border-bottom-left-radius:0px;
}.tabelaMaior tr:hover td{
}
.tabelaMaior tr:nth-child(odd){ background-color:#cccccc; }
.tabelaMaior tr:nth-child(even){ background-color:#ffffff; }.tabelaMaior td{
vertical-align:middle;
border:1px solid #000000;
border-width:0px 1px 1px 0px;
text-align:left;
padding:7px;
font-size:12px;
font-family:Arial;
font-weight:normal;
color:#000000;
}.tabelaMaior tr:last-child td{
border-width:0px 1px 0px 0px;
}.tabelaMaior tr td:last-child{
border-width:0px 0px 1px 0px;
}.tabelaMaior tr:last-child td:last-child{
border-width:0px 0px 0px 0px;
}
.tabelaMaior tr:first-child td{
background:-o-linear-gradient(bottom, #bf0000 5%, #7f0000 100%);
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bf0000), color-stop(1, #7f0000) );
background:-moz-linear-gradient( center top, #bf0000 5%, #7f0000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf0000", endColorstr="#7f0000");
background: -o-linear-gradient(top,#bf0000,7f0000);
background-color:#bf0000;
border:0px solid #000000;
border-width:0px 0px 1px 1px;
font-size:14px;
font-family:Arial;
font-weight:bold;
color:#ffffff;
}
.tabelaMaior tr:first-child:hover td{
background:-o-linear-gradient(bottom, #bf0000 5%, #7f0000 100%);
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bf0000), color-stop(1, #7f0000) );
background:-moz-linear-gradient( center top, #bf0000 5%, #7f0000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf0000", endColorstr="#7f0000");
background: -o-linear-gradient(top,#bf0000,7f0000);
background-color:#bf0000;
}
.tabelaMaior tr:first-child td:first-child{
border-width:0px 0px 1px 0px;
}
.tabelaMaior tr:first-child td:last-child{
border-width:0px 0px 1px 1px;
} | css.css | body {
font-size: 20px;
font-family: 'Open Sans',sans-serif;
font-weight: lighter;
color: #000;
background-color: white
}
#logo
{
float: left;
width: 250px;
}
.cabecalho
{
background: white;
height: 245px;
color: black;
text-align: center;
font-size: 30px;
}
.corpo
{
width: 100%;
height: 600px;
float: left;
text-align: justify;
background: white ;
}
.rodape
{
position: absolute;
bottom: -6500px;
width: 100%;
height: 20%;
background: #333;
color: white;
}
.rodape2
{
position: absolute;
bottom: -1600px;
width: 100%;
height: 20%;
background: #333;
color: white;
}
.rodape3
{
position: absolute;
bottom: -100px;
width: 100%;
height: 20%;
background: #333;
color: white;
}
body,
.menu,
.sub-menu {
margin: 0;
padding: 0;
}
.clearfix:after{
content: '.';
display: block;
clear: both;
height: 0;
line-height: 0;
font-size: 0;
visibility: hidden;
overflow: hidden;
}
.menu,
.sub-menu {
list-style: none;
background: #000;
}
.sub-menu {
background: #444;
}
.menu a {
text-decoration: none;
display: block;
padding: 10px;
color: #fff;
font-family: sans-serif;
font-size: 14px;
text-transform: uppercase;
font-weight: 700;
}
.menu li {
position: relative;
}
.menu > li {
float: left;
}
.menu > li:hover {
background: #444;
}
.menu li:hover > .sub-menu {
display: block;
}
.sub-menu {
display: none;
position: absolute;
min-width: 150px;
}
.sub-menu li:hover {
background: #555;
}
.sub-menu .sub-menu {
top: 0;
left: 100%;
}
.tabela1 {
float: left;
border-collapse: collapse;
margin:30px;padding:0px;
width:45%;
border:1px solid #000000;
-moz-border-radius-bottomleft:0px;
-webkit-border-bottom-left-radius:0px;
border-bottom-left-radius:0px;
-moz-border-radius-bottomright:0px;
-webkit-border-bottom-right-radius:0px;
border-bottom-right-radius:0px;
-moz-border-radius-topright:0px;
-webkit-border-top-right-radius:0px;
border-top-right-radius:0px;
-moz-border-radius-topleft:0px;
-webkit-border-top-left-radius:0px;
border-top-left-radius:0px;
}.tabela1 table{
border-collapse: collapse;
border-spacing: 0;
width:100%;
height:100%;
margin:0px;padding:0px;
}.tabela1 tr:last-child td:last-child {
-moz-border-radius-bottomright:0px;
-webkit-border-bottom-right-radius:0px;
border-bottom-right-radius:0px;
}
.tabela1 table tr:first-child td:first-child {
-moz-border-radius-topleft:0px;
-webkit-border-top-left-radius:0px;
border-top-left-radius:0px;
}
.tabela1 table tr:first-child td:last-child {
-moz-border-radius-topright:0px;
-webkit-border-top-right-radius:0px;
border-top-right-radius:0px;
}.tabela1 tr:last-child td:first-child{
-moz-border-radius-bottomleft:0px;
-webkit-border-bottom-left-radius:0px;
border-bottom-left-radius:0px;
}.tabela1 tr:hover td{
}
.tabela1 tr:nth-child(odd){
background-color:#cccccc;
}
.tabela1 tr:nth-child(even){background-color:#ffffff;}.tabela1 td{
vertical-align:middle;
border:1px solid #000000;
border-width:0px 1px 1px 0px;
text-align:left;
padding:7px;
font-size:12px;
font-family:Arial;
font-weight:normal;
color:#000000;
}.tabela1 tr:last-child td{
border-width:0px 1px 0px 0px;
}.tabela1 tr td:last-child{
border-width:0px 0px 1px 0px;
}.tabela1 tr:last-child td:last-child{
border-width:0px 0px 0px 0px;
}
.tabela1 tr:first-child td{
background:-o-linear-gradient(bottom, #bf0000 5%, #7f0000 100%);
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bf0000), color-stop(1, #7f0000) );
background:-moz-linear-gradient( center top, #bf0000 5%, #7f0000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf0000", endColorstr="#7f0000"); background: -o-linear-gradient(top,#bf0000,7f0000);
background-color:#bf0000;
border:0px solid #000000;
border-width:0px 0px 1px 1px;
font-size:14px;
font-family:Arial;
font-weight:bold;
color:#ffffff;
}
.tabela1 tr:first-child:hover td{
background:-o-linear-gradient(bottom, #bf0000 5%, #7f0000 100%);
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bf0000), color-stop(1, #7f0000) );
background:-moz-linear-gradient( center top, #bf0000 5%, #7f0000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf0000", endColorstr="#7f0000");
background: -o-linear-gradient(top,#bf0000,7f0000);
background-color:#bf0000;
}
.tabela1 tr:first-child td:first-child{
border-width:0px 0px 1px 0px;
}
.tabela1 tr:first-child td:last-child{
border-width:0px 0px 1px 1px;
}
.tabelaMaior {
float: left;
border-collapse: collapse;
margin:30px;padding:0px;
width:90%;
border:1px solid #000000;
-moz-border-radius-bottomleft:0px;
-webkit-border-bottom-left-radius:0px;
border-bottom-left-radius:0px;
-moz-border-radius-bottomright:0px;
-webkit-border-bottom-right-radius:0px;
border-bottom-right-radius:0px;
-moz-border-radius-topright:0px;
-webkit-border-top-right-radius:0px;
border-top-right-radius:0px;
-moz-border-radius-topleft:0px;
-webkit-border-top-left-radius:0px;
border-top-left-radius:0px;
}.tabelaMaior table{
border-collapse: collapse;
border-spacing: 0;
width:100%;
height:100%;
margin:0px;padding:0px;
}.tabelaMaior tr:last-child td:last-child {
-moz-border-radius-bottomright:0px;
-webkit-border-bottom-right-radius:0px;
border-bottom-right-radius:0px;
}
.tabelaMaior table tr:first-child td:first-child {
-moz-border-radius-topleft:0px;
-webkit-border-top-left-radius:0px;
border-top-left-radius:0px;
}
.tabelaMaior table tr:first-child td:last-child {
-moz-border-radius-topright:0px;
-webkit-border-top-right-radius:0px;
border-top-right-radius:0px;
}.tabelaMaior tr:last-child td:first-child{
-moz-border-radius-bottomleft:0px;
-webkit-border-bottom-left-radius:0px;
border-bottom-left-radius:0px;
}.tabelaMaior tr:hover td{
}
.tabelaMaior tr:nth-child(odd){ background-color:#cccccc; }
.tabelaMaior tr:nth-child(even){ background-color:#ffffff; }.tabelaMaior td{
vertical-align:middle;
border:1px solid #000000;
border-width:0px 1px 1px 0px;
text-align:left;
padding:7px;
font-size:12px;
font-family:Arial;
font-weight:normal;
color:#000000;
}.tabelaMaior tr:last-child td{
border-width:0px 1px 0px 0px;
}.tabelaMaior tr td:last-child{
border-width:0px 0px 1px 0px;
}.tabelaMaior tr:last-child td:last-child{
border-width:0px 0px 0px 0px;
}
.tabelaMaior tr:first-child td{
background:-o-linear-gradient(bottom, #bf0000 5%, #7f0000 100%);
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bf0000), color-stop(1, #7f0000) );
background:-moz-linear-gradient( center top, #bf0000 5%, #7f0000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf0000", endColorstr="#7f0000");
background: -o-linear-gradient(top,#bf0000,7f0000);
background-color:#bf0000;
border:0px solid #000000;
border-width:0px 0px 1px 1px;
font-size:14px;
font-family:Arial;
font-weight:bold;
color:#ffffff;
}
.tabelaMaior tr:first-child:hover td{
background:-o-linear-gradient(bottom, #bf0000 5%, #7f0000 100%);
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bf0000), color-stop(1, #7f0000) );
background:-moz-linear-gradient( center top, #bf0000 5%, #7f0000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf0000", endColorstr="#7f0000");
background: -o-linear-gradient(top,#bf0000,7f0000);
background-color:#bf0000;
}
.tabelaMaior tr:first-child td:first-child{
border-width:0px 0px 1px 0px;
}
.tabelaMaior tr:first-child td:last-child{
border-width:0px 0px 1px 1px;
} | 0.356783 | 0.098947 |
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
background: #e8ebf5;
}
#sidenav-overlay {
background-color: rgba(255, 255, 255, 0);
}
h1 {
font-size: 2.2rem;
}
a {
color: #26a69a;
}
.main {
min-height: 768px;
}
/* Header CSS */
/*.header-01 .navbar-inverse {
background: #212121 !important;
border-color: #00838F !important;
color: #fff !important;
box-shadow: 0 0 2px rgba(0,0,0,.14), 0 2px 4px rgba(0,0,0,.28) !important;
}
.header-01 .navbar-inverse .navbar-nav>.active>a, .header-01 .navbar-inverse .navbar-nav>.active>a:focus, .header-01 .navbar-inverse .navbar-nav>.active>a:hover {
color: #fff !important;
background-color: #00838F !important;
}
.header-01 .navbar-inverse .navbar-toggle {
border-color: #00838F !important;
}
.header-01 .navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
background-color: #00838F !important;
}
.header-01 .navbar-inverse .navbar-collapse, .header-01 .navbar-inverse .navbar-form {
border-color: #006064 !important;
}
.header-01 .navbar-inverse .navbar-nav>.active>a, .header-01 .navbar-inverse .navbar-nav>.open>a {
background-image: -webkit-linear-gradient(top,#10e8ff 0,#11a5b5 100%);
background-image: -o-linear-gradient(top,#10e8ff 0,#11a5b5 100%);
background-image: -webkit-gradient(linear,left top,left bottom,from(#10e8ff),to(#11a5b5));
background-image: linear-gradient(to bottom,#10e8ff 0,#11a5b5 100%);
}
.navbar-inverse .navbar-nav>li>a {
color: #f3f3f3 !important;
}*/
nav i.material-icons {
display: inline-block !important;
}
nav .ink .material-icons {
float: left !important;
}
.card {
word-wrap: break-word;
}
.home .card{
height:340px !important;
overflow: hidden;
}
/* Search Box */
.s-container{
width:100%;
}
@media screen and (min-width: 1024px){
.s-container{
width:400px;
}
}
@media screen and (min-width: 1200px){
.s-container{
width:600px;
}
}
@media screen and (max-width: 768px){
.s-container{
width:300px;
}
}
.searchbox{
position:relative;
min-width:50px;
width:50px;
height: 64px;
float:right;
overflow:hidden;
-webkit-transition: width 0.3s;
-moz-transition: width 0.3s;
-ms-transition: width 0.3s;
-o-transition: width 0.3s;
transition: width 0.3s;
}
.searchbox-input{
top:0;
right:0;
border:0;
outline:0;
background:#dcddd8;
width:100%;
height:100%;
margin:0;
padding:0px 55px 0px 20px;
font-size:20px;
color:#fff;
}
.searchbox-input::-webkit-input-placeholder {
color:#fff;
}
.searchbox-input:-moz-placeholder {
color:#fff;
}
.searchbox-input::-moz-placeholder {
color:#fff;
}
.searchbox-input:-ms-input-placeholder {
color:#fff;
}
.searchbox-icon,
.searchbox-submit{
width:50px;
height:64px;
display:block;
position:absolute;
top:0;
font-family:verdana;
font-size:22px;
right:0;
padding:0;
margin:0;
border:0;
outline:0;
line-height:50px;
text-align:center;
cursor:pointer;
color:#dcddd8;
background:#212121;
}
.searchbox-open{
width:100%;
}
.header-avatar {
height: 100%;
width: 30px;
border-radius: 50%;
margin-top: -12px;
margin-bottom: -12px;
}
.header-side{
background-color: #212121;
opacity: 0.9;
}
.left-flung{
margin-left: 50px;
}
.dropme .dropdown-content {
top:64px !important;
width: 250px;
z-index: 999 !important;
}
/* End Search Box */
/* Content CSS */
@media screen and (min-width: 1024px){
.container-fluid {
width: 80%;
}
}
.content [class*="col-"] {
margin-bottom: 10px !important;
}
.home h1 {
font-size: 1.2em;
margin-bottom: 0px !important;
margin-top: 0px !important;
}
.video-js{
width: 100% !important;
}
.video .video-js {
height: 568px !important;
}
@media screen and (max-width: 768px){
.video-js {
height: 260px !important;
}
}
.mar-10 {
margin: 10px 0;
}
.text-center {
text-align: center;
}
/* Color picker */
.color-primary {
color: #00BCD4 !important;
}
.color-red {
color: red;
}
.color-pink {
color: #c96aa4;
}
.color-3 {
color: #d6915e;
background-color: #d6915e;
}
.color-skyblue {
color: #5397c7;
}
.color-green {
color: #77cd91;
}
.color-gray {
color: #c7c7c7;
}
.row.gutter-0 {
margin-left: 0px;
margin-right: 0px;
}
.row.gutter-0 [class*="col-"] {
padding-left: 0px;
padding-right: 0px;
}
.row.gutter-10 {
margin-left: -3px;
margin-right: -3px;
}
.row.gutter-10 [class*="col-"] {
padding-left: 3px;
padding-right: 3px;
}
.row.gutter-20 {
margin-left: -10px;
margin-right: -10px;
}
.row.gutter-20 [class*="col-"] {
padding-left: 10px;
padding-right: 10px;
}
.clearfix {
clear: both !important;
}
.mat-card {
-webkit-transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
will-change: box-shadow;
display: block;
position: relative;
margin-bottom: 10px;
padding: 10px;
border-radius: 2px;
font-family: Roboto,Helvetica Neue,sans-serif;
background: #fff;
box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
}
.mat-card-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
margin-bottom: 10px;
}
.mat-card-image {
width: calc(100% + 48px);
margin: 0 -24px 16px;
}
.mat-card-avatar {
height: 40px;
width: 40px;
border-radius: 50%;
-ms-flex-negative: 0;
flex-shrink: 0;
}
.mat-card-header-text {
margin: 0 8px;
}
.mat-card-header .mat-card-title {
font-size: 14px;
}
.mat-card-title {
display: block;
margin-bottom: 0px;
}
.mat-card-subtitle{
margin-bottom: 10px;
}
a.md-link {
text-decoration: none;
color: #333;
}
.home .card img {
height: 170px !important;
}
/* End Content CSS */
/* End Header CSS */
/* Footer Css */
.language li {
display: inline-block !important;
text-align: right;
}
.footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: auto;
background-color: #f5f5f5;
border-top: 1px solid #dddddd;
}
/* END Footer Css */
/* AddContent CSS */
.addcontent {
margin-left: auto;
margin-right: auto;
text-align: center;
}
@media screen and (min-width: 768px){
.addcontent {
width: 600px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
}
.upload {
font-size: 3em;
cursor: pointer;
background: #f1f1f1;
border: dashed 2px #c7c7c7;
}
.upload .material-icons {
font-size: 12em;
}
.upload:hover {
color: #00ACC1;
border: dashed 2px #00ACC1;
}
.upload label {
cursor: pointer;
}
.martop-30 {
margin-top: 30px;
}
.mar-15 {
margin: 15px 0;
}
.file-content {
text-align: left !important;
}
.video-details, .audio-details{
padding-top:20px;
}
.video-title, .audio-title {
margin-top:10px;
font-weight: bold;
}
.video-description{
}
.searchsite {
border-bottom: 1px dashed #212121;
}
.search-status{
padding:20px;
font-weight: bold;
}
img.search-img{
width:100%;
height: 120px;
}
.search-results h1, .search-results p{
margin: 0px;
cursor: pointer !important;
}
.large-text{
font-size:2em;
font-weight:bold;
}
/* End Add Content CSS */
/* General RUle Css*/
.innertube {
padding: 10px;
}
.card .dropdown-button {
position: absolute;
right:5px;
top:2px;
z-index: 9;
}
.card a.dropdown-button {
color: #fff !important;
font-size: 1.8em;
}
@media screen and (max-width: 768px){
.container{
width:94% !important;
}
.section{
padding-top: 0px !important;
}
.home .card {
height: auto !important;
}
}
.materialize-textarea {
text-align: left !important;
}
.nicEdit-main {
text-align: left !important;
width: 100% !important;
}
@media screen and (max-width: 768px){
.small-devices {
display:flex;
flex-direction: column;
}
.show-first { order: 1 }
.show-second { order: 2 }
.show-third { display: none; }
}
@media screen and (min-width: 768px){
.no-big {
display: none !important;
}
}
h1.shared-music {
font-size: 1.5rem;
margin: 2px;
}
@media screen and (min-width: 995px){
.container {
width: 90%;
}
}
.card-name {
color: white;
font: bold 24px/45px Helvetica, Sans-Serif;
letter-spacing: -1px;
background: rgba(0, 151, 167, 0.91);
padding: 10px;
}
.avatar-image{width:100px; height: 30px;}
/*.audio #myElement{height:40px !important}*/
.side-property {
}
@media screen and (max-width: 800px){
.jwplayer {
width: calc(100% + 32px) !important;
margin: 0px -16px !important;
}
.mat-card {
background: none !important;
box-shadow: none !important;
}
.togglesearch{
color: #fff;
position: absolute;
right: 15px;
top: 12px;
z-index: 999;
}
}
.m-search{
display: none;
}
/* End General RUle Css*/
/* Search Mobile */
.search-m {
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
background-color: #212121 !important;
padding: 0 10px;
overflow: hidden !important;
}
footer{
overflow: hidden !important;
}
.card.small {
height: 150px;
overflow: hidden !important;
}
.card.horizontal .card-image img {
max-width: 120px !important;
}
.search-results h2 {
font-size: 1.5em !important;
}
h1.collection-item {
font-size: 1rem !important;
}
.auto em {
padding: 20px;
}
/* End Search Mobile */
.promo i {
margin: 40px 0;
color: #ee6e73;
font-size: 7rem;
display: block;
}
.promo-caption {
font-size: 1.7rem;
font-weight: 500;
margin-top: 5px;
margin-bottom: 0;
}
.adslot {
width: 100%;
height: auto;
}
@media screen and (min-width: 768px){
.search-box {
width: 700px !important;
}
}
.search-box {
text-align: left !important;
}
.search-box .mat-card, .search-box .row{
margin-bottom: 0px !important;
}
.z-depth-0
.dropme .dropdown-content {
top:35px !important;
width: 250px;
z-index: 999 !important;
}
ul.categories li::before {
background: #113c38;
background: linear-gradient(to bottom right, #05ebf5, #113c38);
} | app/Themes/Bootstrap/Assets/css/style.css | @-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
background: #e8ebf5;
}
#sidenav-overlay {
background-color: rgba(255, 255, 255, 0);
}
h1 {
font-size: 2.2rem;
}
a {
color: #26a69a;
}
.main {
min-height: 768px;
}
/* Header CSS */
/*.header-01 .navbar-inverse {
background: #212121 !important;
border-color: #00838F !important;
color: #fff !important;
box-shadow: 0 0 2px rgba(0,0,0,.14), 0 2px 4px rgba(0,0,0,.28) !important;
}
.header-01 .navbar-inverse .navbar-nav>.active>a, .header-01 .navbar-inverse .navbar-nav>.active>a:focus, .header-01 .navbar-inverse .navbar-nav>.active>a:hover {
color: #fff !important;
background-color: #00838F !important;
}
.header-01 .navbar-inverse .navbar-toggle {
border-color: #00838F !important;
}
.header-01 .navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
background-color: #00838F !important;
}
.header-01 .navbar-inverse .navbar-collapse, .header-01 .navbar-inverse .navbar-form {
border-color: #006064 !important;
}
.header-01 .navbar-inverse .navbar-nav>.active>a, .header-01 .navbar-inverse .navbar-nav>.open>a {
background-image: -webkit-linear-gradient(top,#10e8ff 0,#11a5b5 100%);
background-image: -o-linear-gradient(top,#10e8ff 0,#11a5b5 100%);
background-image: -webkit-gradient(linear,left top,left bottom,from(#10e8ff),to(#11a5b5));
background-image: linear-gradient(to bottom,#10e8ff 0,#11a5b5 100%);
}
.navbar-inverse .navbar-nav>li>a {
color: #f3f3f3 !important;
}*/
nav i.material-icons {
display: inline-block !important;
}
nav .ink .material-icons {
float: left !important;
}
.card {
word-wrap: break-word;
}
.home .card{
height:340px !important;
overflow: hidden;
}
/* Search Box */
.s-container{
width:100%;
}
@media screen and (min-width: 1024px){
.s-container{
width:400px;
}
}
@media screen and (min-width: 1200px){
.s-container{
width:600px;
}
}
@media screen and (max-width: 768px){
.s-container{
width:300px;
}
}
.searchbox{
position:relative;
min-width:50px;
width:50px;
height: 64px;
float:right;
overflow:hidden;
-webkit-transition: width 0.3s;
-moz-transition: width 0.3s;
-ms-transition: width 0.3s;
-o-transition: width 0.3s;
transition: width 0.3s;
}
.searchbox-input{
top:0;
right:0;
border:0;
outline:0;
background:#dcddd8;
width:100%;
height:100%;
margin:0;
padding:0px 55px 0px 20px;
font-size:20px;
color:#fff;
}
.searchbox-input::-webkit-input-placeholder {
color:#fff;
}
.searchbox-input:-moz-placeholder {
color:#fff;
}
.searchbox-input::-moz-placeholder {
color:#fff;
}
.searchbox-input:-ms-input-placeholder {
color:#fff;
}
.searchbox-icon,
.searchbox-submit{
width:50px;
height:64px;
display:block;
position:absolute;
top:0;
font-family:verdana;
font-size:22px;
right:0;
padding:0;
margin:0;
border:0;
outline:0;
line-height:50px;
text-align:center;
cursor:pointer;
color:#dcddd8;
background:#212121;
}
.searchbox-open{
width:100%;
}
.header-avatar {
height: 100%;
width: 30px;
border-radius: 50%;
margin-top: -12px;
margin-bottom: -12px;
}
.header-side{
background-color: #212121;
opacity: 0.9;
}
.left-flung{
margin-left: 50px;
}
.dropme .dropdown-content {
top:64px !important;
width: 250px;
z-index: 999 !important;
}
/* End Search Box */
/* Content CSS */
@media screen and (min-width: 1024px){
.container-fluid {
width: 80%;
}
}
.content [class*="col-"] {
margin-bottom: 10px !important;
}
.home h1 {
font-size: 1.2em;
margin-bottom: 0px !important;
margin-top: 0px !important;
}
.video-js{
width: 100% !important;
}
.video .video-js {
height: 568px !important;
}
@media screen and (max-width: 768px){
.video-js {
height: 260px !important;
}
}
.mar-10 {
margin: 10px 0;
}
.text-center {
text-align: center;
}
/* Color picker */
.color-primary {
color: #00BCD4 !important;
}
.color-red {
color: red;
}
.color-pink {
color: #c96aa4;
}
.color-3 {
color: #d6915e;
background-color: #d6915e;
}
.color-skyblue {
color: #5397c7;
}
.color-green {
color: #77cd91;
}
.color-gray {
color: #c7c7c7;
}
.row.gutter-0 {
margin-left: 0px;
margin-right: 0px;
}
.row.gutter-0 [class*="col-"] {
padding-left: 0px;
padding-right: 0px;
}
.row.gutter-10 {
margin-left: -3px;
margin-right: -3px;
}
.row.gutter-10 [class*="col-"] {
padding-left: 3px;
padding-right: 3px;
}
.row.gutter-20 {
margin-left: -10px;
margin-right: -10px;
}
.row.gutter-20 [class*="col-"] {
padding-left: 10px;
padding-right: 10px;
}
.clearfix {
clear: both !important;
}
.mat-card {
-webkit-transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
will-change: box-shadow;
display: block;
position: relative;
margin-bottom: 10px;
padding: 10px;
border-radius: 2px;
font-family: Roboto,Helvetica Neue,sans-serif;
background: #fff;
box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
}
.mat-card-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
margin-bottom: 10px;
}
.mat-card-image {
width: calc(100% + 48px);
margin: 0 -24px 16px;
}
.mat-card-avatar {
height: 40px;
width: 40px;
border-radius: 50%;
-ms-flex-negative: 0;
flex-shrink: 0;
}
.mat-card-header-text {
margin: 0 8px;
}
.mat-card-header .mat-card-title {
font-size: 14px;
}
.mat-card-title {
display: block;
margin-bottom: 0px;
}
.mat-card-subtitle{
margin-bottom: 10px;
}
a.md-link {
text-decoration: none;
color: #333;
}
.home .card img {
height: 170px !important;
}
/* End Content CSS */
/* End Header CSS */
/* Footer Css */
.language li {
display: inline-block !important;
text-align: right;
}
.footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: auto;
background-color: #f5f5f5;
border-top: 1px solid #dddddd;
}
/* END Footer Css */
/* AddContent CSS */
.addcontent {
margin-left: auto;
margin-right: auto;
text-align: center;
}
@media screen and (min-width: 768px){
.addcontent {
width: 600px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
}
.upload {
font-size: 3em;
cursor: pointer;
background: #f1f1f1;
border: dashed 2px #c7c7c7;
}
.upload .material-icons {
font-size: 12em;
}
.upload:hover {
color: #00ACC1;
border: dashed 2px #00ACC1;
}
.upload label {
cursor: pointer;
}
.martop-30 {
margin-top: 30px;
}
.mar-15 {
margin: 15px 0;
}
.file-content {
text-align: left !important;
}
.video-details, .audio-details{
padding-top:20px;
}
.video-title, .audio-title {
margin-top:10px;
font-weight: bold;
}
.video-description{
}
.searchsite {
border-bottom: 1px dashed #212121;
}
.search-status{
padding:20px;
font-weight: bold;
}
img.search-img{
width:100%;
height: 120px;
}
.search-results h1, .search-results p{
margin: 0px;
cursor: pointer !important;
}
.large-text{
font-size:2em;
font-weight:bold;
}
/* End Add Content CSS */
/* General RUle Css*/
.innertube {
padding: 10px;
}
.card .dropdown-button {
position: absolute;
right:5px;
top:2px;
z-index: 9;
}
.card a.dropdown-button {
color: #fff !important;
font-size: 1.8em;
}
@media screen and (max-width: 768px){
.container{
width:94% !important;
}
.section{
padding-top: 0px !important;
}
.home .card {
height: auto !important;
}
}
.materialize-textarea {
text-align: left !important;
}
.nicEdit-main {
text-align: left !important;
width: 100% !important;
}
@media screen and (max-width: 768px){
.small-devices {
display:flex;
flex-direction: column;
}
.show-first { order: 1 }
.show-second { order: 2 }
.show-third { display: none; }
}
@media screen and (min-width: 768px){
.no-big {
display: none !important;
}
}
h1.shared-music {
font-size: 1.5rem;
margin: 2px;
}
@media screen and (min-width: 995px){
.container {
width: 90%;
}
}
.card-name {
color: white;
font: bold 24px/45px Helvetica, Sans-Serif;
letter-spacing: -1px;
background: rgba(0, 151, 167, 0.91);
padding: 10px;
}
.avatar-image{width:100px; height: 30px;}
/*.audio #myElement{height:40px !important}*/
.side-property {
}
@media screen and (max-width: 800px){
.jwplayer {
width: calc(100% + 32px) !important;
margin: 0px -16px !important;
}
.mat-card {
background: none !important;
box-shadow: none !important;
}
.togglesearch{
color: #fff;
position: absolute;
right: 15px;
top: 12px;
z-index: 999;
}
}
.m-search{
display: none;
}
/* End General RUle Css*/
/* Search Mobile */
.search-m {
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
background-color: #212121 !important;
padding: 0 10px;
overflow: hidden !important;
}
footer{
overflow: hidden !important;
}
.card.small {
height: 150px;
overflow: hidden !important;
}
.card.horizontal .card-image img {
max-width: 120px !important;
}
.search-results h2 {
font-size: 1.5em !important;
}
h1.collection-item {
font-size: 1rem !important;
}
.auto em {
padding: 20px;
}
/* End Search Mobile */
.promo i {
margin: 40px 0;
color: #ee6e73;
font-size: 7rem;
display: block;
}
.promo-caption {
font-size: 1.7rem;
font-weight: 500;
margin-top: 5px;
margin-bottom: 0;
}
.adslot {
width: 100%;
height: auto;
}
@media screen and (min-width: 768px){
.search-box {
width: 700px !important;
}
}
.search-box {
text-align: left !important;
}
.search-box .mat-card, .search-box .row{
margin-bottom: 0px !important;
}
.z-depth-0
.dropme .dropdown-content {
top:35px !important;
width: 250px;
z-index: 999 !important;
}
ul.categories li::before {
background: #113c38;
background: linear-gradient(to bottom right, #05ebf5, #113c38);
} | 0.360151 | 0.0713 |
@-moz-document url-prefix("https://duelingnexus.com/") {
[src*="83500096.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83500096.jpg");
}
[src*="8353769.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8353769.jpg");
}
[src*="83531441.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83531441.jpg");
}
[src*="83546647.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83546647.jpg");
}
[src*="83544697.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83544697.jpg");
}
[src*="83555666.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83555666.jpg");
}
[src*="83550869.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83550869.jpg");
}
[src*="83584898.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83584898.jpg");
}
[src*="83555667.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83555667.jpg");
}
[src*="83604828.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83604828.jpg");
}
[src*="83602069.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83602069.jpg");
}
[src*="83675475.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83675475.jpg");
}
[src*="83629030.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83629030.jpg");
}
[src*="83682725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83682725.jpg");
}
[src*="83678433.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83678433.jpg");
}
[src*="83725008.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83725008.jpg");
}
[src*="83715234.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83715234.jpg");
}
[src*="83746708.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83746708.jpg");
}
[src*="83743222.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83743222.jpg");
}
[src*="83755611.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83755611.jpg");
}
[src*="83747250.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83747250.jpg");
}
[src*="83764719.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83764719.jpg");
}
[src*="83764718.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83764718.jpg");
}
[src*="83778600.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83778600.jpg");
}
[src*="83764996.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83764996.jpg");
}
[src*="83812099.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83812099.jpg");
}
[src*="83810690.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83810690.jpg");
}
[src*="83831356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83831356.jpg");
}
[src*="83828288.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83828288.jpg");
}
[src*="83866861.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83866861.jpg");
}
[src*="8384771.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8384771.jpg");
}
[src*="83880087.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83880087.jpg");
}
[src*="8387138.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8387138.jpg");
}
[src*="83903521.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83903521.jpg");
}
[src*="83887306.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83887306.jpg");
}
[src*="83965310.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83965310.jpg");
}
[src*="83957459.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83957459.jpg");
}
[src*="8396952.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8396952.jpg");
}
[src*="83968380.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83968380.jpg");
}
[src*="83982270.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83982270.jpg");
}
[src*="83980492.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83980492.jpg");
}
[src*="83991690.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83991690.jpg");
}
[src*="83986578.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83986578.jpg");
}
[src*="83994646.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83994646.jpg");
}
[src*="83994433.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83994433.jpg");
}
[src*="84012625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84012625.jpg");
}
[src*="8400623.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8400623.jpg");
}
[src*="84025439.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84025439.jpg");
}
[src*="84013237.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84013237.jpg");
}
[src*="84055227.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84055227.jpg");
}
[src*="84046493.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84046493.jpg");
}
[src*="84080938.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84080938.jpg");
}
[src*="84058253.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84058253.jpg");
}
[src*="84103702.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84103702.jpg");
}
[src*="84080939.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84080939.jpg");
}
[src*="84124261.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84124261.jpg");
}
[src*="84117021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84117021.jpg");
}
[src*="84136000.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84136000.jpg");
}
[src*="84133008.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84133008.jpg");
}
[src*="84171830.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84171830.jpg");
}
[src*="8414337.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8414337.jpg");
}
[src*="84177693.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84177693.jpg");
}
[src*="84173492.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84173492.jpg");
}
[src*="84220251.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84220251.jpg");
}
[src*="84206435.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84206435.jpg");
}
[src*="84243274.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84243274.jpg");
}
[src*="84224627.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84224627.jpg");
}
[src*="84257640.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84257640.jpg");
}
[src*="84257639.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84257639.jpg");
}
[src*="84285623.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84285623.jpg");
}
[src*="84268896.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84268896.jpg");
}
[src*="84298614.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84298614.jpg");
}
[src*="84290642.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84290642.jpg");
}
[src*="84313685.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84313685.jpg");
}
[src*="84305651.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84305651.jpg");
}
[src*="84327330.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84327330.jpg");
}
[src*="84327329.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84327329.jpg");
}
[src*="84361420.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84361420.jpg");
}
[src*="84341431.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84341431.jpg");
}
[src*="84385264.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84385264.jpg");
}
[src*="8437145.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8437145.jpg");
}
[src*="84389640.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84389640.jpg");
}
[src*="84388461.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84388461.jpg");
}
[src*="84401683.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84401683.jpg");
}
[src*="84397023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84397023.jpg");
}
[src*="84428023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84428023.jpg");
}
[src*="84417082.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84417082.jpg");
}
[src*="84433295.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84433295.jpg");
}
[src*="84430950.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84430950.jpg");
}
[src*="84451804.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84451804.jpg");
}
[src*="84442536.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84442536.jpg");
}
[src*="84472026.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84472026.jpg");
}
[src*="84453939.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84453939.jpg");
}
[src*="84488827.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84488827.jpg");
}
[src*="84478195.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84478195.jpg");
}
[src*="84530620.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84530620.jpg");
}
[src*="84491298.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84491298.jpg");
}
[src*="84539520.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84539520.jpg");
}
[src*="84536654.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84536654.jpg");
}
[src*="84565800.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84565800.jpg");
}
[src*="84550200.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84550200.jpg");
}
[src*="84569886.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84569886.jpg");
}
[src*="84569017.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84569017.jpg");
}
[src*="84613836.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84613836.jpg");
}
[src*="84592800.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84592800.jpg");
}
[src*="84636823.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84636823.jpg");
}
[src*="84620194.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84620194.jpg");
}
[src*="84640866.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84640866.jpg");
}
[src*="8463720.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8463720.jpg");
}
[src*="84653834.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84653834.jpg");
}
[src*="84650463.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84650463.jpg");
}
[src*="84677654.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84677654.jpg");
}
[src*="84673417.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84673417.jpg");
}
[src*="84687358.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84687358.jpg");
}
[src*="84686841.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84686841.jpg");
}
[src*="8471389.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8471389.jpg");
}
[src*="84696266.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84696266.jpg");
}
[src*="84747429.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84747429.jpg");
}
[src*="84740193.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84740193.jpg");
}
[src*="84754430.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84754430.jpg");
}
[src*="84749824.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84749824.jpg");
}
[src*="84766279.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84766279.jpg");
}
[src*="84764038.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84764038.jpg");
}
[src*="847915.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/847915.jpg");
}
[src*="84769941.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84769941.jpg");
}
[src*="84808313.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84808313.jpg");
}
[src*="84794011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84794011.jpg");
}
[src*="84812868.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84812868.jpg");
}
[src*="84816244.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84816244.jpg");
}
[src*="84814897.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84814897.jpg");
}
[src*="8483333.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8483333.jpg");
}
[src*="84824601.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84824601.jpg");
}
[src*="84845628.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84845628.jpg");
}
[src*="84834865.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84834865.jpg");
}
[src*="84869738.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84869738.jpg");
}
[src*="84847656.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84847656.jpg");
}
[src*="84877802.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84877802.jpg");
}
[src*="8487449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8487449.jpg");
}
[src*="84905691.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84905691.jpg");
}
[src*="84899094.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84899094.jpg");
}
[src*="84914462.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84914462.jpg");
}
[src*="8491308.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8491308.jpg");
}
[src*="8491961.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8491961.jpg");
}
[src*="84916669.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84916669.jpg");
}
[src*="84932271.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84932271.jpg");
}
[src*="84926738.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84926738.jpg");
}
[src*="84968490.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84968490.jpg");
}
[src*="84962466.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84962466.jpg");
}
[src*="84976088.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84976088.jpg");
}
[src*="84970821.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84970821.jpg");
}
[src*="84990171.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84990171.jpg");
}
[src*="84988419.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84988419.jpg");
}
[src*="85008676.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85008676.jpg");
}
[src*="85004150.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85004150.jpg");
}
[src*="85034450.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85034450.jpg");
}
[src*="85028288.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85028288.jpg");
}
[src*="85066822.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85066822.jpg");
}
[src*="85060248.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85060248.jpg");
}
[src*="85080444.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85080444.jpg");
}
[src*="85080048.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85080048.jpg");
}
[src*="85087012.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85087012.jpg");
}
[src*="8508055.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8508055.jpg");
}
[src*="85101228.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85101228.jpg");
}
[src*="85101097.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85101097.jpg");
}
[src*="85115440.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85115440.jpg");
}
[src*="85103922.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85103922.jpg");
}
[src*="85138716.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85138716.jpg");
}
[src*="85121942.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85121942.jpg");
}
[src*="85215458.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85215458.jpg");
}
[src*="85166216.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85166216.jpg");
}
[src*="8522996.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8522996.jpg");
}
[src*="85216896.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85216896.jpg");
}
[src*="85252081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85252081.jpg");
}
[src*="85239662.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85239662.jpg");
}
[src*="85289965.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85289965.jpg");
}
[src*="85255550.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85255550.jpg");
}
[src*="85306040.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85306040.jpg");
}
[src*="8529136.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8529136.jpg");
}
[src*="85310252.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85310252.jpg");
}
[src*="85309439.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85309439.jpg");
}
[src*="85326399.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85326399.jpg");
}
[src*="85313220.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85313220.jpg");
}
[src*="85352446.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85352446.jpg");
}
[src*="85346853.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85346853.jpg");
}
[src*="85374678.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85374678.jpg");
}
[src*="85359414.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85359414.jpg");
}
[src*="85431040.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85431040.jpg");
}
[src*="85399281.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85399281.jpg");
}
[src*="85448931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85448931.jpg");
}
[src*="85446833.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85446833.jpg");
}
[src*="85475641.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85475641.jpg");
}
[src*="85463083.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85463083.jpg");
}
[src*="85505315.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85505315.jpg");
}
[src*="85489096.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85489096.jpg");
}
[src*="85519211.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85519211.jpg");
}
[src*="85507811.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85507811.jpg");
}
[src*="85528209.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85528209.jpg");
}
[src*="85520851.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85520851.jpg");
}
[src*="85545073.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85545073.jpg");
}
[src*="85541675.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85541675.jpg");
}
[src*="85555787.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85555787.jpg");
}
[src*="85551711.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85551711.jpg");
}
[src*="8559793.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8559793.jpg");
}
[src*="85562745.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85562745.jpg");
}
[src*="85605684.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85605684.jpg");
}
[src*="85602018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85602018.jpg");
}
[src*="85636437.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85636437.jpg");
}
[src*="8561192.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8561192.jpg");
}
[src*="85639257.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85639257.jpg");
}
[src*="85638822.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85638822.jpg");
}
[src*="85651167.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85651167.jpg");
}
[src*="85646474.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85646474.jpg");
}
[src*="85679527.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85679527.jpg");
}
[src*="85668449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85668449.jpg");
}
[src*="85682655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85682655.jpg");
}
[src*="8567955.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8567955.jpg");
}
[src*="85696777.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85696777.jpg");
}
[src*="85684223.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85684223.jpg");
}
[src*="85705804.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85705804.jpg");
}
[src*="85704698.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85704698.jpg");
}
[src*="85718645.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85718645.jpg");
}
[src*="85709845.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85709845.jpg");
}
[src*="85754829.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85754829.jpg");
}
[src*="85742772.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85742772.jpg");
}
[src*="85771019.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85771019.jpg");
}
[src*="85763457.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85763457.jpg");
}
[src*="85771021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85771021.jpg");
}
[src*="85771020.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85771020.jpg");
}
[src*="85800949.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85800949.jpg");
}
[src*="85771020.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85771020.jpg");
}
[src*="85775486.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85775486.jpg");
}
[src*="8581705.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8581705.jpg");
}
[src*="85802526.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85802526.jpg");
}
[src*="85827713.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85827713.jpg");
}
[src*="85821180.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85821180.jpg");
}
[src*="85840608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85840608.jpg");
}
[src*="85839825.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85839825.jpg");
}
[src*="85854214.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85854214.jpg");
}
[src*="85852291.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85852291.jpg");
}
[src*="85893201.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85893201.jpg");
}
[src*="85876417.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85876417.jpg");
}
[src*="85909450.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85909450.jpg");
}
[src*="85908279.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85908279.jpg");
}
[src*="8594079.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8594079.jpg");
}
[src*="85936485.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85936485.jpg");
}
[src*="85991529.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85991529.jpg");
}
[src*="85967160.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85967160.jpg");
}
[src*="86016245.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86016245.jpg");
}
[src*="86013171.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86013171.jpg");
}
[src*="86049351.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86049351.jpg");
}
[src*="86039057.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86039057.jpg");
}
[src*="86088138.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86088138.jpg");
}
[src*="86062400.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86062400.jpg");
}
[src*="86099788.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86099788.jpg");
}
[src*="8608979.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8608979.jpg");
}
[src*="8611007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8611007.jpg");
}
[src*="86100785.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86100785.jpg");
}
[src*="86124104.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86124104.jpg");
}
[src*="86120751.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86120751.jpg");
}
[src*="86148577.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86148577.jpg");
}
[src*="86137485.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86137485.jpg");
}
[src*="86164529.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86164529.jpg");
}
[src*="86157908.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86157908.jpg");
}
[src*="86174055.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86174055.jpg");
}
[src*="86170989.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86170989.jpg");
}
[src*="86188411.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86188411.jpg");
}
[src*="86188410.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86188410.jpg");
}
[src*="86197239.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86197239.jpg");
}
[src*="86196216.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86196216.jpg");
}
[src*="86209650.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86209650.jpg");
}
[src*="86198326.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86198326.jpg");
}
[src*="86223870.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86223870.jpg");
}
[src*="86221741.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86221741.jpg");
}
[src*="86238081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86238081.jpg");
}
[src*="86229493.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86229493.jpg");
}
[src*="86274272.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86274272.jpg");
}
[src*="86240887.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86240887.jpg");
}
[src*="8628798.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8628798.jpg");
}
[src*="86281779.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86281779.jpg");
}
[src*="86318356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86318356.jpg");
}
[src*="86308219.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86308219.jpg");
}
[src*="86325573.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86325573.jpg");
}
[src*="86321248.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86321248.jpg");
}
[src*="86327225.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86327225.jpg");
}
[src*="86325596.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86325596.jpg");
}
[src*="8634636.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8634636.jpg");
}
[src*="8632967.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8632967.jpg");
}
[src*="86361354.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86361354.jpg");
}
[src*="86346643.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86346643.jpg");
}
[src*="86396750.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86396750.jpg");
}
[src*="86377375.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86377375.jpg");
}
[src*="86421986.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86421986.jpg");
}
[src*="86401517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86401517.jpg");
}
[src*="86442081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86442081.jpg");
}
[src*="8643186.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8643186.jpg");
}
[src*="86466163.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86466163.jpg");
}
[src*="86445415.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86445415.jpg");
}
[src*="86489182.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86489182.jpg");
}
[src*="86474024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86474024.jpg");
}
[src*="86498013.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86498013.jpg");
}
[src*="8649148.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8649148.jpg");
}
[src*="86532744.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86532744.jpg");
}
[src*="86516889.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86516889.jpg");
}
[src*="86555018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86555018.jpg");
}
[src*="86541496.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86541496.jpg");
}
[src*="86569121.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86569121.jpg");
}
[src*="86559484.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86559484.jpg");
}
[src*="86585274.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86585274.jpg");
}
[src*="86578200.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86578200.jpg");
}
[src*="86643777.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86643777.jpg");
}
[src*="86607583.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86607583.jpg");
}
[src*="86676862.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86676862.jpg");
}
[src*="86652646.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86652646.jpg");
}
[src*="86690572.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86690572.jpg");
}
[src*="86686671.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86686671.jpg");
}
[src*="86750474.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86750474.jpg");
}
[src*="86742443.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86742443.jpg");
}
[src*="86767655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86767655.jpg");
}
[src*="86758915.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86758915.jpg");
}
[src*="86780027.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86780027.jpg");
}
[src*="86778566.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86778566.jpg");
}
[src*="86801871.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86801871.jpg");
}
[src*="86784733.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86784733.jpg");
}
[src*="86804246.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86804246.jpg");
}
[src*="86801872.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86801872.jpg");
}
[src*="86821010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86821010.jpg");
}
[src*="86805855.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86805855.jpg");
}
[src*="86825483.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86825483.jpg");
}
[src*="86825114.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86825114.jpg");
}
[src*="86840720.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86840720.jpg");
}
[src*="86827882.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86827882.jpg");
}
[src*="86868952.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86868952.jpg");
}
[src*="86848580.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86848580.jpg");
}
[src*="86871615.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86871615.jpg");
}
[src*="86871614.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86871614.jpg");
}
[src*="86885905.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86885905.jpg");
}
[src*="8687195.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8687195.jpg");
}
[src*="86915847.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86915847.jpg");
}
[src*="86889202.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86889202.jpg");
}
[src*="86926989.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86926989.jpg");
}
[src*="8692301.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8692301.jpg");
}
[src*="86938484.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86938484.jpg");
}
[src*="86937530.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86937530.jpg");
}
[src*="86952477.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86952477.jpg");
}
[src*="86943389.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86943389.jpg");
}
[src*="8698851.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8698851.jpg");
}
[src*="8696773.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8696773.jpg");
}
[src*="86997073.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86997073.jpg");
}
[src*="86988864.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86988864.jpg");
}
[src*="87010442.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87010442.jpg");
}
[src*="87008374.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87008374.jpg");
}
[src*="87043568.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87043568.jpg");
}
[src*="87025064.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87025064.jpg");
}
[src*="87047074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87047074.jpg");
}
[src*="87046457.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87046457.jpg");
}
[src*="87054946.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87054946.jpg");
}
[src*="87047161.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87047161.jpg");
}
[src*="87102774.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87102774.jpg");
}
[src*="8706701.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8706701.jpg");
}
[src*="87112784.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87112784.jpg");
}
[src*="87106146.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87106146.jpg");
}
[src*="87118301.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87118301.jpg");
}
[src*="87116928.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87116928.jpg");
}
[src*="87151205.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87151205.jpg");
}
[src*="87148330.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87148330.jpg");
}
[src*="87170768.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87170768.jpg");
}
[src*="8715625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8715625.jpg");
}
[src*="8719957.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8719957.jpg");
}
[src*="87182127.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87182127.jpg");
}
[src*="87246309.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87246309.jpg");
}
[src*="87210505.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87210505.jpg");
}
[src*="87257460.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87257460.jpg");
}
[src*="87255382.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87255382.jpg");
}
[src*="87259933.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87259933.jpg");
}
[src*="87259077.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87259077.jpg");
}
[src*="87292536.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87292536.jpg");
}
[src*="87288189.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87288189.jpg");
}
[src*="87303357.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87303357.jpg");
}
[src*="87294988.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87294988.jpg");
}
[src*="87313164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87313164.jpg");
}
[src*="8730435.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8730435.jpg");
}
[src*="87322377.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87322377.jpg");
}
[src*="87319876.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87319876.jpg");
}
[src*="87340664.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87340664.jpg");
}
[src*="87322378.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87322378.jpg");
}
[src*="87350908.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87350908.jpg");
}
[src*="87347365.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87347365.jpg");
}
[src*="87390798.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87390798.jpg");
}
[src*="87390067.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87390067.jpg");
}
[src*="87430998.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87430998.jpg");
}
[src*="87430304.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87430304.jpg");
}
[src*="87473172.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87473172.jpg");
}
[src*="87460579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87460579.jpg");
}
[src*="87483942.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87483942.jpg");
}
[src*="87475570.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87475570.jpg");
}
[src*="87514539.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87514539.jpg");
}
[src*="87511987.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87511987.jpg");
}
[src*="87526784.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87526784.jpg");
}
[src*="87523462.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87523462.jpg");
}
[src*="87557188.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87557188.jpg");
}
[src*="87535691.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87535691.jpg");
}
[src*="87564935.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87564935.jpg");
}
[src*="87564352.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87564352.jpg");
}
[src*="87571563.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87571563.jpg");
}
[src*="87567063.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87567063.jpg");
}
[src*="87602890.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87602890.jpg");
}
[src*="87588741.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87588741.jpg");
}
[src*="87609391.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87609391.jpg");
}
[src*="87608852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87608852.jpg");
}
[src*="87621407.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87621407.jpg");
}
[src*="87614611.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87614611.jpg");
}
[src*="87624166.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87624166.jpg");
}
[src*="87622767.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87622767.jpg");
}
[src*="8763963.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8763963.jpg");
}
[src*="876330.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/876330.jpg");
}
[src*="87649699.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87649699.jpg");
}
[src*="87639778.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87639778.jpg");
}
[src*="87751584.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87751584.jpg");
}
[src*="87685879.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87685879.jpg");
}
[src*="87765315.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87765315.jpg");
}
[src*="87756343.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87756343.jpg");
}
[src*="87772572.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87772572.jpg");
}
[src*="87769556.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87769556.jpg");
}
[src*="87796900.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87796900.jpg");
}
[src*="87774234.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87774234.jpg");
}
[src*="87800375.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87800375.jpg");
}
[src*="87798440.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87798440.jpg");
}
[src*="87835759.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87835759.jpg");
}
[src*="87819421.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87819421.jpg");
}
[src*="87836938.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87836938.jpg");
}
[src*="8783685.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8783685.jpg");
}
[src*="87880531.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87880531.jpg");
}
[src*="8785161.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8785161.jpg");
}
[src*="87902575.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87902575.jpg");
}
[src*="87890143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87890143.jpg");
}
[src*="87911394.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87911394.jpg");
}
[src*="87910978.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87910978.jpg");
}
[src*="87931906.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87931906.jpg");
}
[src*="87917187.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87917187.jpg");
}
[src*="87973893.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87973893.jpg");
}
[src*="8794435.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8794435.jpg");
}
[src*="87979586.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87979586.jpg");
}
[src*="87978805.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87978805.jpg");
}
[src*="879958.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/879958.jpg");
}
[src*="87990236.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87990236.jpg");
}
[src*="8802510.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8802510.jpg");
}
[src*="87997872.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87997872.jpg");
}
[src*="88032456.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88032456.jpg");
}
[src*="88032368.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88032368.jpg");
}
[src*="8806072.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8806072.jpg");
}
[src*="88033975.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88033975.jpg");
}
[src*="88069597.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88069597.jpg");
}
[src*="88069166.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88069166.jpg");
}
[src*="88086137.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88086137.jpg");
}
[src*="88071625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88071625.jpg");
}
[src*="8809344.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8809344.jpg");
}
[src*="88089103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88089103.jpg");
}
[src*="88095331.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88095331.jpg");
}
[src*="88093706.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88093706.jpg");
}
[src*="88123329.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88123329.jpg");
}
[src*="88120966.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88120966.jpg");
}
[src*="8814959.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8814959.jpg");
}
[src*="88132637.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88132637.jpg");
}
[src*="88177324.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88177324.jpg");
}
[src*="88176533.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88176533.jpg");
}
[src*="88190790.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88190790.jpg");
}
[src*="88190453.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88190453.jpg");
}
[src*="88204302.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88204302.jpg");
}
[src*="88197162.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88197162.jpg");
}
[src*="88205593.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88205593.jpg");
}
[src*="8820526.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8820526.jpg");
}
[src*="88234365.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88234365.jpg");
}
[src*="8822710.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8822710.jpg");
}
[src*="88240808.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88240808.jpg");
}
[src*="88236094.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88236094.jpg");
}
[src*="88241506.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88241506.jpg");
}
[src*="88240999.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88240999.jpg");
}
[src*="88279736.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88279736.jpg");
}
[src*="88264978.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88264978.jpg");
}
[src*="88289295.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88289295.jpg");
}
[src*="88283496.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88283496.jpg");
}
[src*="88301833.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88301833.jpg");
}
[src*="88301393.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88301393.jpg");
}
[src*="88305978.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88305978.jpg");
}
[src*="88305705.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88305705.jpg");
}
[src*="88316955.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88316955.jpg");
}
[src*="88307361.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88307361.jpg");
}
[src*="88358139.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88358139.jpg");
}
[src*="88341502.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88341502.jpg");
}
[src*="88369727.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88369727.jpg");
}
[src*="88361177.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88361177.jpg");
}
[src*="88392300.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88392300.jpg");
}
[src*="8837932.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8837932.jpg");
}
[src*="88409165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88409165.jpg");
}
[src*="88406570.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88406570.jpg");
}
[src*="8842266.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8842266.jpg");
}
[src*="88412339.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88412339.jpg");
}
[src*="88438982.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88438982.jpg");
}
[src*="88435542.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88435542.jpg");
}
[src*="88482761.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88482761.jpg");
}
[src*="88472456.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88472456.jpg");
}
[src*="88494899.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88494899.jpg");
}
[src*="88494120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88494120.jpg");
}
[src*="88552992.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88552992.jpg");
}
[src*="88513608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88513608.jpg");
}
[src*="88581108.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88581108.jpg");
}
[src*="88559132.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88559132.jpg");
}
[src*="88616795.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88616795.jpg");
}
[src*="88610708.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88610708.jpg");
}
[src*="88643173.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88643173.jpg");
}
[src*="88619463.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88619463.jpg");
}
[src*="88650530.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88650530.jpg");
}
[src*="88643579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88643579.jpg");
}
[src*="88686573.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88686573.jpg");
}
[src*="88671720.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88671720.jpg");
}
[src*="88696724.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88696724.jpg");
}
[src*="88693151.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88693151.jpg");
}
[src*="88724332.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88724332.jpg");
}
[src*="88722973.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88722973.jpg");
}
[src*="8873112.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8873112.jpg");
}
[src*="88728507.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88728507.jpg");
}
[src*="88753594.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88753594.jpg");
}
[src*="88733579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88733579.jpg");
}
[src*="88754763.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88754763.jpg");
}
[src*="88753985.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88753985.jpg");
}
[src*="8875971.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8875971.jpg");
}
[src*="88757791.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88757791.jpg");
}
[src*="88789641.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88789641.jpg");
}
[src*="88760522.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88760522.jpg");
}
[src*="88820235.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88820235.jpg");
}
[src*="88819587.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88819587.jpg");
}
[src*="88851326.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88851326.jpg");
}
[src*="88845345.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88845345.jpg");
}
[src*="88901771.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88901771.jpg");
}
[src*="88875132.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88875132.jpg");
}
[src*="88928798.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88928798.jpg");
}
[src*="88923963.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88923963.jpg");
}
[src*="88940154.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88940154.jpg");
}
[src*="88935103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88935103.jpg");
}
[src*="88958576.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88958576.jpg");
}
[src*="88942504.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88942504.jpg");
}
[src*="88979991.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88979991.jpg");
}
[src*="88975532.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88975532.jpg");
}
[src*="89015998.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89015998.jpg");
}
[src*="88989706.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88989706.jpg");
}
[src*="89040386.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89040386.jpg");
}
[src*="8903700.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8903700.jpg");
}
[src*="89055154.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89055154.jpg");
}
[src*="89041555.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89041555.jpg");
}
[src*="89091579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89091579.jpg");
}
[src*="89086566.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89086566.jpg");
}
[src*="8910971.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8910971.jpg");
}
[src*="89091772.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89091772.jpg");
}
[src*="89112729.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89112729.jpg");
}
[src*="89111398.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89111398.jpg");
}
[src*="89127526.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89127526.jpg");
}
[src*="89113320.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89113320.jpg");
}
[src*="89181134.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89181134.jpg");
}
[src*="89132148.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89132148.jpg");
}
[src*="89185742.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89185742.jpg");
}
[src*="89181369.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89181369.jpg");
}
[src*="89194033.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89194033.jpg");
}
[src*="89189982.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89189982.jpg");
}
[src*="89208725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89208725.jpg");
}
[src*="89194103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89194103.jpg");
}
[src*="89222931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89222931.jpg");
}
[src*="89211486.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89211486.jpg");
}
[src*="89238128.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89238128.jpg");
}
[src*="89235196.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89235196.jpg");
}
[src*="89252157.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89252157.jpg");
}
[src*="89252153.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89252153.jpg");
}
[src*="89258906.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89258906.jpg");
}
[src*="89258225.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89258225.jpg");
}
[src*="89310929.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89310929.jpg");
}
[src*="89272878.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89272878.jpg");
}
[src*="89320376.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89320376.jpg");
}
[src*="89312388.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89312388.jpg");
}
[src*="89333528.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89333528.jpg");
}
[src*="89326990.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89326990.jpg");
}
[src*="89362180.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89362180.jpg");
}
[src*="89355716.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89355716.jpg");
}
[src*="89397517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89397517.jpg");
}
[src*="89386122.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89386122.jpg");
}
[src*="89405199.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89405199.jpg");
}
[src*="89399912.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89399912.jpg");
}
[src*="8944575.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8944575.jpg");
}
[src*="89423971.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89423971.jpg");
}
[src*="89462956.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89462956.jpg");
}
[src*="89448140.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89448140.jpg");
}
[src*="89474727.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89474727.jpg");
}
[src*="89463537.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89463537.jpg");
}
[src*="89494469.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89494469.jpg");
}
[src*="89493368.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89493368.jpg");
}
[src*="8951260.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8951260.jpg");
}
[src*="8949584.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8949584.jpg");
}
[src*="89521713.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89521713.jpg");
}
[src*="89516305.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89516305.jpg");
}
[src*="89538537.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89538537.jpg");
}
[src*="89529919.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89529919.jpg");
}
[src*="89547299.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89547299.jpg");
}
[src*="89544521.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89544521.jpg");
}
[src*="89558090.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89558090.jpg");
}
[src*="8955148.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8955148.jpg");
}
[src*="89567993.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89567993.jpg");
}
[src*="89563150.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89563150.jpg");
}
[src*="89609515.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89609515.jpg");
}
[src*="89571015.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89571015.jpg");
}
[src*="89628781.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89628781.jpg");
}
[src*="89621922.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89621922.jpg");
}
[src*="89631140.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631140.jpg");
}
[src*="89631139.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631139.jpg");
}
[src*="89631142.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631142.jpg");
}
[src*="89631141.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631141.jpg");
}
[src*="89631144.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631144.jpg");
}
[src*="89631143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631143.jpg");
}
[src*="89631146.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631146.jpg");
}
[src*="89631145.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631145.jpg");
}
[src*="8964854.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8964854.jpg");
}
[src*="89642993.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89642993.jpg");
}
[src*="8967776.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8967776.jpg");
}
[src*="89662736.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89662736.jpg");
}
[src*="89718302.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89718302.jpg");
}
[src*="89698120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89698120.jpg");
}
[src*="89731911.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89731911.jpg");
}
[src*="89719143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89719143.jpg");
}
[src*="89739383.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89739383.jpg");
}
[src*="89732524.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89732524.jpg");
}
[src*="89774530.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89774530.jpg");
}
[src*="89770167.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89770167.jpg");
}
[src*="89785779.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89785779.jpg");
}
[src*="8978197.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8978197.jpg");
}
[src*="89801755.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89801755.jpg");
}
[src*="89792713.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89792713.jpg");
}
[src*="89818984.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89818984.jpg");
}
[src*="89810518.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89810518.jpg");
}
[src*="89856523.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89856523.jpg");
}
[src*="89832901.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89832901.jpg");
}
[src*="89882100.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89882100.jpg");
}
[src*="89870349.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89870349.jpg");
}
[src*="89893715.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89893715.jpg");
}
[src*="89883517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89883517.jpg");
}
[src*="89904598.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89904598.jpg");
}
[src*="89899996.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89899996.jpg");
}
[src*="89914395.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89914395.jpg");
}
[src*="89907227.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89907227.jpg");
}
[src*="899287.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/899287.jpg");
}
[src*="89928517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89928517.jpg");
}
[src*="89959682.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89959682.jpg");
}
[src*="89943723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89943723.jpg");
}
[src*="89987208.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89987208.jpg");
}
[src*="89974904.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89974904.jpg");
}
[src*="9000988.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9000988.jpg");
}
[src*="89997728.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89997728.jpg");
}
[src*="90019393.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90019393.jpg");
}
[src*="90011152.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90011152.jpg");
}
[src*="90020780.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90020780.jpg");
}
[src*="90020065.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90020065.jpg");
}
[src*="90050480.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90050480.jpg");
}
[src*="90036274.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90036274.jpg");
}
[src*="900787.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/900787.jpg");
}
[src*="90075978.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90075978.jpg");
}
[src*="90122655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90122655.jpg");
}
[src*="90098780.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90098780.jpg");
}
[src*="9012916.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9012916.jpg");
}
[src*="90126061.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90126061.jpg");
}
[src*="90140980.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90140980.jpg");
}
[src*="90135989.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90135989.jpg");
}
[src*="90156158.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90156158.jpg");
}
[src*="90147755.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90147755.jpg");
}
[src*="90173539.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90173539.jpg");
}
[src*="90162951.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90162951.jpg");
}
[src*="90207654.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90207654.jpg");
}
[src*="90200789.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90200789.jpg");
}
[src*="90238142.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90238142.jpg");
}
[src*="90219263.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90219263.jpg");
}
[src*="9024198.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9024198.jpg");
}
[src*="90239723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90239723.jpg");
}
[src*="90243945.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90243945.jpg");
}
[src*="9024367.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9024367.jpg");
}
[src*="90247311.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90247311.jpg");
}
[src*="90246973.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90246973.jpg");
}
[src*="9030160.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9030160.jpg");
}
[src*="90263923.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90263923.jpg");
}
[src*="90307777.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90307777.jpg");
}
[src*="90303176.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90303176.jpg");
}
[src*="9032529.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9032529.jpg");
}
[src*="90311614.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90311614.jpg");
}
[src*="90330454.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90330454.jpg");
}
[src*="90330453.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90330453.jpg");
}
[src*="90351981.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90351981.jpg");
}
[src*="90337190.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90337190.jpg");
}
[src*="90361010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90361010.jpg");
}
[src*="90357090.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90357090.jpg");
}
[src*="90374791.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90374791.jpg");
}
[src*="90365482.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90365482.jpg");
}
[src*="90407382.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90407382.jpg");
}
[src*="90397998.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90397998.jpg");
}
[src*="904185.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/904185.jpg");
}
[src*="90411554.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90411554.jpg");
}
[src*="90432163.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90432163.jpg");
}
[src*="904186.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/904186.jpg");
}
[src*="90434926.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90434926.jpg");
}
[src*="90434657.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90434657.jpg");
}
[src*="90452877.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90452877.jpg");
}
[src*="90440725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90440725.jpg");
}
[src*="90470931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90470931.jpg");
}
[src*="90464188.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90464188.jpg");
}
[src*="9047461.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9047461.jpg");
}
[src*="9047460.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9047460.jpg");
}
[src*="90502999.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90502999.jpg");
}
[src*="90500169.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90500169.jpg");
}
[src*="90508760.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90508760.jpg");
}
[src*="90506641.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90506641.jpg");
}
[src*="90519313.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90519313.jpg");
}
[src*="90512490.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90512490.jpg");
}
[src*="90555947.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90555947.jpg");
}
[src*="9053187.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9053187.jpg");
}
[src*="9056100.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9056100.jpg");
}
[src*="90557975.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90557975.jpg");
}
[src*="90579153.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90579153.jpg");
}
[src*="90576781.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90576781.jpg");
}
[src*="90590303.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90590303.jpg");
}
[src*="90582719.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90582719.jpg");
}
[src*="90592429.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90592429.jpg");
}
[src*="90590304.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90590304.jpg");
}
[src*="90616316.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90616316.jpg");
}
[src*="9059700.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9059700.jpg");
}
[src*="90642597.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90642597.jpg");
}
[src*="90640901.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90640901.jpg");
}
[src*="90654356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90654356.jpg");
}
[src*="9064354.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9064354.jpg");
}
[src*="90669991.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90669991.jpg");
}
[src*="90660762.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90660762.jpg");
}
[src*="90673413.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90673413.jpg");
}
[src*="90673288.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90673288.jpg");
}
[src*="90727556.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90727556.jpg");
}
[src*="90726340.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90726340.jpg");
}
[src*="90740330.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90740330.jpg");
}
[src*="90740329.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90740329.jpg");
}
[src*="9074847.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9074847.jpg");
}
[src*="90743290.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90743290.jpg");
}
[src*="90764875.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90764875.jpg");
}
[src*="9076207.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9076207.jpg");
}
[src*="90807199.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90807199.jpg");
}
[src*="90790253.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90790253.jpg");
}
[src*="90810762.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90810762.jpg");
}
[src*="90809975.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90809975.jpg");
}
[src*="90844184.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90844184.jpg");
}
[src*="90812044.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90812044.jpg");
}
[src*="90873992.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90873992.jpg");
}
[src*="90846359.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90846359.jpg");
}
[src*="90884403.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90884403.jpg");
}
[src*="90876561.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90876561.jpg");
}
[src*="90885155.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90885155.jpg");
}
[src*="90884404.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90884404.jpg");
}
[src*="90908427.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90908427.jpg");
}
[src*="90887783.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90887783.jpg");
}
[src*="90928333.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90928333.jpg");
}
[src*="90925163.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90925163.jpg");
}
[src*="90951921.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90951921.jpg");
}
[src*="90934570.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90934570.jpg");
}
[src*="90957527.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90957527.jpg");
}
[src*="90953320.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90953320.jpg");
}
[src*="90963488.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90963488.jpg");
}
[src*="90960358.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90960358.jpg");
}
[src*="91020571.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91020571.jpg");
}
[src*="90980792.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90980792.jpg");
}
[src*="9106362.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9106362.jpg");
}
[src*="91034681.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91034681.jpg");
}
[src*="91078716.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91078716.jpg");
}
[src*="91070115.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91070115.jpg");
}
[src*="91107093.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91107093.jpg");
}
[src*="9109991.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9109991.jpg");
}
[src*="91123920.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91123920.jpg");
}
[src*="91110378.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91110378.jpg");
}
[src*="9113513.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9113513.jpg");
}
[src*="91133740.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91133740.jpg");
}
[src*="91152256.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91152256.jpg");
}
[src*="91148083.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91148083.jpg");
}
[src*="91152258.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91152258.jpg");
}
[src*="91152257.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91152257.jpg");
}
[src*="911883.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/911883.jpg");
}
[src*="91182675.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91182675.jpg");
}
[src*="91231901.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91231901.jpg");
}
[src*="91188343.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91188343.jpg");
}
[src*="91258852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91258852.jpg");
}
[src*="91250514.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91250514.jpg");
}
[src*="91269402.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91269402.jpg");
}
[src*="9126351.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9126351.jpg");
}
[src*="91279700.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91279700.jpg");
}
[src*="91272072.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91272072.jpg");
}
[src*="91345518.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91345518.jpg");
}
[src*="91299846.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91299846.jpg");
}
[src*="91350799.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91350799.jpg");
}
[src*="91349449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91349449.jpg");
}
[src*="91405870.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91405870.jpg");
}
[src*="91351370.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91351370.jpg");
}
[src*="91420254.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91420254.jpg");
}
[src*="91420202.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91420202.jpg");
}
[src*="91438994.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91438994.jpg");
}
[src*="91422370.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91422370.jpg");
}
[src*="91449532.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91449532.jpg");
}
[src*="91449144.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91449144.jpg");
}
[src*="91468551.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91468551.jpg");
}
[src*="9145181.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9145181.jpg");
}
[src*="91499077.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91499077.jpg");
}
[src*="91482773.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91482773.jpg");
}
[src*="91505214.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91505214.jpg");
}
[src*="91501248.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91501248.jpg");
}
[src*="91512836.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91512836.jpg");
}
[src*="91512835.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91512835.jpg");
}
[src*="91559748.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91559748.jpg");
}
[src*="91554542.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91554542.jpg");
}
[src*="91580102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91580102.jpg");
}
[src*="9156135.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9156135.jpg");
}
[src*="91588074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91588074.jpg");
}
[src*="91584698.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91584698.jpg");
}
[src*="91596726.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91596726.jpg");
}
[src*="91595718.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91595718.jpg");
}
[src*="9159938.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9159938.jpg");
}
[src*="91597389.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91597389.jpg");
}
[src*="9161357.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9161357.jpg");
}
[src*="91607976.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91607976.jpg");
}
[src*="91646304.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91646304.jpg");
}
[src*="91623717.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91623717.jpg");
}
[src*="91662792.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91662792.jpg");
}
[src*="91650245.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91650245.jpg");
}
[src*="91665064.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91665064.jpg");
}
[src*="91663373.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91663373.jpg");
}
[src*="91677585.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91677585.jpg");
}
[src*="91668401.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91668401.jpg");
}
[src*="91697229.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91697229.jpg");
}
[src*="91691605.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91691605.jpg");
}
[src*="91712985.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91712985.jpg");
}
[src*="91711547.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91711547.jpg");
}
[src*="91731841.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91731841.jpg");
}
[src*="91718579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91718579.jpg");
}
[src*="91754175.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91754175.jpg");
}
[src*="91742238.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91742238.jpg");
}
[src*="91781589.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91781589.jpg");
}
[src*="917796.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/917796.jpg");
}
[src*="91798373.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91798373.jpg");
}
[src*="91782219.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91782219.jpg");
}
[src*="91819979.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91819979.jpg");
}
[src*="91812341.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91812341.jpg");
}
[src*="91831066.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91831066.jpg");
}
[src*="91822647.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91822647.jpg");
}
[src*="91862578.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91862578.jpg");
}
[src*="91842653.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91842653.jpg");
}
[src*="91895091.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91895091.jpg");
}
[src*="91869203.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91869203.jpg");
}
[src*="9190563.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9190563.jpg");
}
[src*="91903221.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91903221.jpg");
}
[src*="91932350.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91932350.jpg");
}
[src*="91907707.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91907707.jpg");
}
[src*="91946859.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91946859.jpg");
}
[src*="91939608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91939608.jpg");
}
[src*="91969909.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91969909.jpg");
}
[src*="91949988.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91949988.jpg");
}
[src*="91985515.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91985515.jpg");
}
[src*="9197735.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9197735.jpg");
}
[src*="91996584.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91996584.jpg");
}
[src*="91989718.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91989718.jpg");
}
[src*="91998120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91998120.jpg");
}
[src*="91998119.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91998119.jpg");
}
[src*="92001300.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92001300.jpg");
}
[src*="91998121.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91998121.jpg");
}
[src*="92035412.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92035412.jpg");
}
[src*="9201964.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9201964.jpg");
}
[src*="92053608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92053608.jpg");
}
[src*="92039899.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92039899.jpg");
}
[src*="92080692.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92080692.jpg");
}
[src*="92065772.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92065772.jpg");
}
[src*="92092092.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92092092.jpg");
}
[src*="92084010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92084010.jpg");
}
[src*="9212051.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9212051.jpg");
}
[src*="92099232.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92099232.jpg");
}
[src*="92142169.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92142169.jpg");
}
[src*="92125819.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92125819.jpg");
}
[src*="92200612.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92200612.jpg");
}
[src*="92170894.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92170894.jpg");
}
[src*="92219931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92219931.jpg");
}
[src*="92204263.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92204263.jpg");
}
[src*="92246806.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92246806.jpg");
}
[src*="92223641.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92223641.jpg");
}
[src*="92300891.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92300891.jpg");
}
[src*="92266279.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92266279.jpg");
}
[src*="92346415.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92346415.jpg");
}
[src*="92327802.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92327802.jpg");
}
[src*="923596.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/923596.jpg");
}
[src*="92353449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92353449.jpg");
}
[src*="92365601.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92365601.jpg");
}
[src*="92361635.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92361635.jpg");
}
[src*="92373006.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92373006.jpg");
}
[src*="9236985.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9236985.jpg");
}
[src*="92391084.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92391084.jpg");
}
[src*="92377303.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92377303.jpg");
}
[src*="92408984.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92408984.jpg");
}
[src*="92394653.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92394653.jpg");
}
[src*="92411493.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92411493.jpg");
}
[src*="92409659.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92409659.jpg");
}
[src*="92421852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92421852.jpg");
}
[src*="92418590.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92418590.jpg");
}
[src*="92450185.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92450185.jpg");
}
[src*="92435533.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92435533.jpg");
}
[src*="92510265.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92510265.jpg");
}
[src*="92481084.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92481084.jpg");
}
[src*="92518817.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92518817.jpg");
}
[src*="92512625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92512625.jpg");
}
[src*="92536468.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92536468.jpg");
}
[src*="92534075.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92534075.jpg");
}
[src*="92595545.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92595545.jpg");
}
[src*="92572371.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92572371.jpg");
}
[src*="9260791.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9260791.jpg");
}
[src*="92595643.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92595643.jpg");
}
[src*="9264485.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9264485.jpg");
}
[src*="92609670.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92609670.jpg");
}
[src*="92667214.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92667214.jpg");
}
[src*="92661479.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92661479.jpg");
}
[src*="9267769.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9267769.jpg");
}
[src*="92676637.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92676637.jpg");
}
[src*="92719314.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92719314.jpg");
}
[src*="92693205.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92693205.jpg");
}
[src*="92723496.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92723496.jpg");
}
[src*="92720564.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92720564.jpg");
}
[src*="92729410.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92729410.jpg");
}
[src*="9272381.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9272381.jpg");
}
[src*="92736188.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92736188.jpg");
}
[src*="92731455.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92731455.jpg");
}
[src*="92755808.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92755808.jpg");
}
[src*="92746535.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92746535.jpg");
}
[src*="92773018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92773018.jpg");
}
[src*="92767273.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92767273.jpg");
}
[src*="92784374.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92784374.jpg");
}
[src*="92781606.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92781606.jpg");
}
[src*="92821268.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92821268.jpg");
}
[src*="92807548.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92807548.jpg");
}
[src*="92841002.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92841002.jpg");
}
[src*="92826944.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92826944.jpg");
}
[src*="9284724.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9284724.jpg");
}
[src*="9284723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9284723.jpg");
}
[src*="92868896.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92868896.jpg");
}
[src*="92854392.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92854392.jpg");
}
[src*="9287078.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9287078.jpg");
}
[src*="92870717.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92870717.jpg");
}
[src*="92887027.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92887027.jpg");
}
[src*="92881099.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92881099.jpg");
}
[src*="92901944.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92901944.jpg");
}
[src*="92890308.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92890308.jpg");
}
[src*="92924317.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92924317.jpg");
}
[src*="92918648.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92918648.jpg");
}
[src*="9293977.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9293977.jpg");
}
[src*="92933195.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92933195.jpg");
}
[src*="92958307.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92958307.jpg");
}
[src*="92944626.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92944626.jpg");
}
[src*="92970404.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92970404.jpg");
}
[src*="92964816.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92964816.jpg");
}
[src*="92998610.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92998610.jpg");
}
[src*="9298235.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9298235.jpg");
}
[src*="93016201.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93016201.jpg");
}
[src*="93013676.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93013676.jpg");
}
[src*="93023479.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93023479.jpg");
}
[src*="93020401.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93020401.jpg");
}
[src*="93087299.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93087299.jpg");
}
[src*="93085839.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93085839.jpg");
}
[src*="93107608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93107608.jpg");
}
[src*="93104632.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93104632.jpg");
}
[src*="93108433.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93108433.jpg");
}
[src*="93108297.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93108297.jpg");
}
[src*="93124273.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93124273.jpg");
}
[src*="93108839.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93108839.jpg");
}
[src*="93130022.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93130022.jpg");
}
[src*="93130021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93130021.jpg");
}
[src*="93151201.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93151201.jpg");
}
[src*="93149655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93149655.jpg");
}
[src*="93187568.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93187568.jpg");
}
[src*="93157004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93157004.jpg");
}
[src*="93211836.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93211836.jpg");
}
[src*="93211810.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93211810.jpg");
}
[src*="93220472.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93220472.jpg");
}
[src*="93217231.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93217231.jpg");
}
[src*="93224848.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93224848.jpg");
}
[src*="93221206.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93221206.jpg");
}
[src*="93236220.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93236220.jpg");
}
[src*="93224849.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93224849.jpg");
}
[src*="93260132.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93260132.jpg");
}
[src*="93238626.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93238626.jpg");
}
[src*="93294869.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93294869.jpg");
}
[src*="9327502.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9327502.jpg");
}
[src*="93302695.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93302695.jpg");
}
[src*="93298460.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93298460.jpg");
}
[src*="93343894.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93343894.jpg");
}
[src*="93332803.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93332803.jpg");
}
[src*="93346024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93346024.jpg");
}
[src*="9334391.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9334391.jpg");
}
[src*="93356623.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93356623.jpg");
}
[src*="93353691.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93353691.jpg");
}
[src*="93368494.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93368494.jpg");
}
[src*="9336190.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9336190.jpg");
}
[src*="93377803.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93377803.jpg");
}
[src*="93369354.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93369354.jpg");
}
[src*="93382620.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93382620.jpg");
}
[src*="93379652.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93379652.jpg");
}
[src*="93396832.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93396832.jpg");
}
[src*="93394164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93394164.jpg");
}
[src*="93431518.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93431518.jpg");
}
[src*="9342162.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9342162.jpg");
}
[src*="93437091.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93437091.jpg");
}
[src*="93431862.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93431862.jpg");
}
[src*="93449450.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93449450.jpg");
}
[src*="93445074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93445074.jpg");
}
[src*="93469007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93469007.jpg");
}
[src*="93451636.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93451636.jpg");
}
[src*="9348522.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9348522.jpg");
}
[src*="93483212.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93483212.jpg");
}
[src*="93504463.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93504463.jpg");
}
[src*="93503294.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93503294.jpg");
}
[src*="93507434.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93507434.jpg");
}
[src*="93506862.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93506862.jpg");
}
[src*="93543806.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93543806.jpg");
}
[src*="93542102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93542102.jpg");
}
[src*="93553943.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93553943.jpg");
}
[src*="9354555.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9354555.jpg");
}
[src*="93568288.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93568288.jpg");
}
[src*="93554166.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93554166.jpg");
}
[src*="93599951.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93599951.jpg");
}
[src*="93581434.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93581434.jpg");
}
[src*="93655221.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93655221.jpg");
}
[src*="93600443.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93600443.jpg");
}
[src*="9365703.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9365703.jpg");
}
[src*="93657021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93657021.jpg");
}
[src*="93665266.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93665266.jpg");
}
[src*="93662626.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93662626.jpg");
}
[src*="93709215.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93709215.jpg");
}
[src*="93671934.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93671934.jpg");
}
[src*="93715853.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93715853.jpg");
}
[src*="93713837.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93713837.jpg");
}
[src*="93724592.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93724592.jpg");
}
[src*="93717133.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93717133.jpg");
}
[src*="93730409.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93730409.jpg");
}
[src*="93730230.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93730230.jpg");
}
[src*="93738004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93738004.jpg");
}
[src*="9373534.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9373534.jpg");
}
[src*="93749093.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93749093.jpg");
}
[src*="93747864.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93747864.jpg");
}
[src*="93775296.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93775296.jpg");
}
[src*="93751476.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93751476.jpg");
}
[src*="93816465.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93816465.jpg");
}
[src*="93788854.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93788854.jpg");
}
[src*="93850652.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93850652.jpg");
}
[src*="93830681.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93830681.jpg");
}
[src*="93889755.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93889755.jpg");
}
[src*="93882364.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93882364.jpg");
}
[src*="93895605.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93895605.jpg");
}
[src*="93892436.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93892436.jpg");
}
[src*="93912845.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93912845.jpg");
}
[src*="93900406.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93900406.jpg");
}
[src*="9391354.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9391354.jpg");
}
[src*="93912846.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93912846.jpg");
}
[src*="93920745.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93920745.jpg");
}
[src*="93920420.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93920420.jpg");
}
[src*="93946239.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93946239.jpg");
}
[src*="93927067.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93927067.jpg");
}
[src*="93969023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93969023.jpg");
}
[src*="93966624.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93966624.jpg");
}
[src*="94004268.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94004268.jpg");
}
[src*="93983867.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93983867.jpg");
}
[src*="94022093.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94022093.jpg");
}
[src*="94016752.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94016752.jpg");
}
[src*="94042337.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94042337.jpg");
}
[src*="9402966.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9402966.jpg");
}
[src*="94068856.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94068856.jpg");
}
[src*="94046012.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94046012.jpg");
}
[src*="94079037.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94079037.jpg");
}
[src*="94073244.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94073244.jpg");
}
[src*="94092230.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94092230.jpg");
}
[src*="94081496.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94081496.jpg");
}
[src*="9409625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9409625.jpg");
}
[src*="94096018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94096018.jpg");
}
[src*="9411399.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9411399.jpg");
}
[src*="94096616.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94096616.jpg");
}
[src*="94119974.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94119974.jpg");
}
[src*="94119480.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94119480.jpg");
}
[src*="94145021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94145021.jpg");
}
[src*="94142993.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94142993.jpg");
}
[src*="94156050.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94156050.jpg");
}
[src*="94145683.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94145683.jpg");
}
[src*="94163677.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94163677.jpg");
}
[src*="94160895.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94160895.jpg");
}
[src*="9418534.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9418534.jpg");
}
[src*="9418365.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9418365.jpg");
}
[src*="94203886.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94203886.jpg");
}
[src*="94192409.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94192409.jpg");
}
[src*="94215860.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94215860.jpg");
}
[src*="94212438.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94212438.jpg");
}
[src*="94230224.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94230224.jpg");
}
[src*="94220427.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94220427.jpg");
}
[src*="94253609.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94253609.jpg");
}
[src*="94243005.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94243005.jpg");
}
[src*="94259633.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94259633.jpg");
}
[src*="94256039.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94256039.jpg");
}
[src*="94303232.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94303232.jpg");
}
[src*="94283662.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94283662.jpg");
}
[src*="94331452.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94331452.jpg");
}
[src*="9430387.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9430387.jpg");
}
[src*="94344242.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94344242.jpg");
}
[src*="9433350.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9433350.jpg");
}
[src*="94374859.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94374859.jpg");
}
[src*="94365540.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94365540.jpg");
}
[src*="94380860.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94380860.jpg");
}
[src*="94377247.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94377247.jpg");
}
[src*="94388754.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94388754.jpg");
}
[src*="94381039.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94381039.jpg");
}
[src*="94415058.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94415058.jpg");
}
[src*="94412545.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94412545.jpg");
}
[src*="94425169.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94425169.jpg");
}
[src*="94418111.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94418111.jpg");
}
[src*="94446564.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94446564.jpg");
}
[src*="94432298.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94432298.jpg");
}
[src*="94463200.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94463200.jpg");
}
[src*="94454495.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94454495.jpg");
}
[src*="94515289.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94515289.jpg");
}
[src*="94484482.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94484482.jpg");
}
[src*="94538053.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94538053.jpg");
}
[src*="94535485.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94535485.jpg");
}
[src*="94566432.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94566432.jpg");
}
[src*="94561645.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94561645.jpg");
}
[src*="94573223.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94573223.jpg");
}
[src*="94568601.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94568601.jpg");
}
[src*="94599451.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94599451.jpg");
}
[src*="94585852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94585852.jpg");
}
[src*="94622638.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94622638.jpg");
}
[src*="94620082.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94620082.jpg");
}
[src*="94626871.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94626871.jpg");
}
[src*="94626050.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94626050.jpg");
}
[src*="94656263.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94656263.jpg");
}
[src*="94634433.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94634433.jpg");
}
[src*="94664694.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94664694.jpg");
}
[src*="94662235.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94662235.jpg");
}
[src*="94667532.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94667532.jpg");
}
[src*="94666032.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94666032.jpg");
}
[src*="94681654.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94681654.jpg");
}
[src*="94675535.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94675535.jpg");
}
[src*="94689635.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94689635.jpg");
}
[src*="94689206.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94689206.jpg");
}
[src*="94703021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94703021.jpg");
}
[src*="94693857.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94693857.jpg");
}
[src*="94739788.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94739788.jpg");
}
[src*="94716515.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94716515.jpg");
}
[src*="94770493.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94770493.jpg");
}
[src*="94766498.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94766498.jpg");
}
[src*="94773007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94773007.jpg");
}
[src*="94772232.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94772232.jpg");
}
[src*="94793422.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94793422.jpg");
}
[src*="94784213.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94784213.jpg");
}
[src*="94804055.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94804055.jpg");
}
[src*="94801854.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94801854.jpg");
}
[src*="94820406.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94820406.jpg");
}
[src*="94807487.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94807487.jpg");
}
[src*="94853057.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94853057.jpg");
}
[src*="94845226.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94845226.jpg");
}
[src*="94861297.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94861297.jpg");
}
[src*="9485511.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9485511.jpg");
}
[src*="94886282.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94886282.jpg");
}
[src*="94878265.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94878265.jpg");
}
[src*="94919024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94919024.jpg");
}
[src*="94905343.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94905343.jpg");
}
[src*="94937430.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94937430.jpg");
}
[src*="94933468.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94933468.jpg");
}
[src*="94944637.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94944637.jpg");
}
[src*="94940436.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94940436.jpg");
}
[src*="94973028.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94973028.jpg");
}
[src*="94950218.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94950218.jpg");
}
[src*="94977269.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94977269.jpg");
}
[src*="94973029.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94973029.jpg");
}
[src*="94997874.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94997874.jpg");
}
[src*="94982447.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94982447.jpg");
}
[src*="95000001.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000001.jpg");
}
[src*="95000000.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000000.jpg");
}
[src*="95000003.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000003.jpg");
}
[src*="95000002.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000002.jpg");
}
[src*="95000005.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000005.jpg");
}
[src*="95000004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000004.jpg");
}
[src*="95000007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000007.jpg");
}
[src*="95000006.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000006.jpg");
}
[src*="95000009.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000009.jpg");
}
[src*="95000008.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000008.jpg");
}
[src*="95000011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000011.jpg");
}
[src*="95000010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000010.jpg");
}
[src*="95000013.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000013.jpg");
}
[src*="95000012.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000012.jpg");
}
[src*="95000015.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000015.jpg");
}
[src*="95000014.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000014.jpg");
}
[src*="95000017.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000017.jpg");
}
[src*="95000016.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000016.jpg");
}
[src*="95000019.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000019.jpg");
}
[src*="95000018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000018.jpg");
}
[src*="95000021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000021.jpg");
}
[src*="95000020.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000020.jpg");
}
[src*="95000023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000023.jpg");
}
[src*="95000022.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000022.jpg");
}
[src*="95000025.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000025.jpg");
}
[src*="95000024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000024.jpg");
}
[src*="95000027.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000027.jpg");
}
[src*="95000026.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000026.jpg");
}
[src*="95000029.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000029.jpg");
}
[src*="95000028.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000028.jpg");
}
[src*="95000031.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000031.jpg");
}
[src*="95000030.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000030.jpg");
}
[src*="95000033.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000033.jpg");
}
[src*="95000032.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000032.jpg");
}
[src*="95000035.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000035.jpg");
}
[src*="95000034.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000034.jpg");
}
[src*="95000037.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000037.jpg");
}
[src*="95000036.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000036.jpg");
}
[src*="95000039.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000039.jpg");
}
[src*="95000038.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000038.jpg");
}
[src*="95000041.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000041.jpg");
}
[src*="95000040.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000040.jpg");
}
[src*="95000043.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000043.jpg");
}
[src*="95000042.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000042.jpg");
}
[src*="95000045.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000045.jpg");
}
[src*="95000044.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000044.jpg");
}
[src*="95000047.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000047.jpg");
}
[src*="95000046.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000046.jpg");
}
[src*="95000049.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000049.jpg");
}
[src*="95000048.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000048.jpg");
}
[src*="95000051.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000051.jpg");
}
[src*="95000050.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000050.jpg");
}
[src*="95000053.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000053.jpg");
}
[src*="95000052.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000052.jpg");
}
[src*="95000055.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000055.jpg");
}
[src*="95000054.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000054.jpg");
}
[src*="95000057.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000057.jpg");
}
[src*="95000056.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000056.jpg");
}
[src*="95000059.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000059.jpg");
}
[src*="95000058.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000058.jpg");
}
[src*="95000061.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000061.jpg");
}
[src*="95000060.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000060.jpg");
}
[src*="95000063.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000063.jpg");
}
[src*="95000062.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000062.jpg");
}
[src*="95000065.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000065.jpg");
}
[src*="95000064.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000064.jpg");
}
[src*="95000067.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000067.jpg");
}
[src*="95000066.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000066.jpg");
}
[src*="95000069.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000069.jpg");
}
[src*="95000068.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000068.jpg");
}
[src*="95000071.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000071.jpg");
}
[src*="95000070.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000070.jpg");
}
[src*="95000073.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000073.jpg");
}
[src*="95000072.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000072.jpg");
}
[src*="95000075.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000075.jpg");
}
[src*="95000074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000074.jpg");
}
[src*="95000077.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000077.jpg");
}
[src*="95000076.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000076.jpg");
}
[src*="95000079.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000079.jpg");
}
[src*="95000078.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000078.jpg");
}
[src*="95000081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000081.jpg");
}
[src*="95000080.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000080.jpg");
}
[src*="95000083.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000083.jpg");
}
[src*="95000082.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000082.jpg");
}
[src*="95000085.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000085.jpg");
}
[src*="95000084.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000084.jpg");
}
[src*="95000087.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000087.jpg");
}
[src*="95000086.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000086.jpg");
}
[src*="95000089.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000089.jpg");
}
[src*="95000088.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000088.jpg");
}
[src*="95000091.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000091.jpg");
}
[src*="95000090.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000090.jpg");
}
[src*="95000093.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000093.jpg");
}
[src*="95000092.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000092.jpg");
}
[src*="95000095.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000095.jpg");
}
[src*="95000094.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000094.jpg");
}
[src*="95000097.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000097.jpg");
}
[src*="95000096.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000096.jpg");
}
[src*="95000099.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000099.jpg");
}
[src*="95000098.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000098.jpg");
}
[src*="95000101.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000101.jpg");
}
[src*="95000100.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000100.jpg");
}
[src*="95000103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000103.jpg");
}
[src*="95000102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000102.jpg");
}
[src*="95000105.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000105.jpg");
}
[src*="95000104.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000104.jpg");
}
[src*="95000107.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000107.jpg");
}
[src*="95000106.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000106.jpg");
}
[src*="95000109.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000109.jpg");
}
[src*="95000108.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000108.jpg");
}
[src*="95000111.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000111.jpg");
}
[src*="95000110.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000110.jpg");
}
[src*="95000113.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000113.jpg");
}
[src*="95000112.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000112.jpg");
}
[src*="95000115.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000115.jpg");
}
[src*="95000114.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000114.jpg");
}
[src*="95000117.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000117.jpg");
}
[src*="95000116.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000116.jpg");
}
[src*="95000119.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000119.jpg");
}
[src*="95000118.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000118.jpg");
}
[src*="95000121.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000121.jpg");
}
[src*="95000120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000120.jpg");
}
[src*="95000123.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000123.jpg");
}
[src*="95000122.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000122.jpg");
}
[src*="95000125.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000125.jpg");
}
[src*="95000124.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000124.jpg");
}
[src*="95000127.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000127.jpg");
}
[src*="95000126.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000126.jpg");
}
[src*="95000129.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000129.jpg");
}
[src*="95000128.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000128.jpg");
}
[src*="95000131.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000131.jpg");
}
[src*="95000130.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000130.jpg");
}
[src*="95000133.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000133.jpg");
}
[src*="95000132.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000132.jpg");
}
[src*="95000135.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000135.jpg");
}
[src*="95000134.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000134.jpg");
}
[src*="95000137.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000137.jpg");
}
[src*="95000136.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000136.jpg");
}
[src*="95000139.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000139.jpg");
}
[src*="95000138.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000138.jpg");
}
[src*="95000141.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000141.jpg");
}
[src*="95000140.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000140.jpg");
}
[src*="95000143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000143.jpg");
}
[src*="95000142.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000142.jpg");
}
[src*="95000145.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000145.jpg");
}
[src*="95000144.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000144.jpg");
}
[src*="95000147.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000147.jpg");
}
[src*="95000146.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000146.jpg");
}
[src*="95000149.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000149.jpg");
}
[src*="95000148.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000148.jpg");
}
[src*="95000151.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000151.jpg");
}
[src*="95000150.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000150.jpg");
}
[src*="95000153.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000153.jpg");
}
[src*="95000152.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000152.jpg");
}
[src*="95000155.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000155.jpg");
}
[src*="95000154.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000154.jpg");
}
[src*="95000157.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000157.jpg");
}
[src*="95000156.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000156.jpg");
}
[src*="95000160.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000160.jpg");
}
[src*="95000158.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000158.jpg");
}
[src*="95000162.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000162.jpg");
}
[src*="95000161.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000161.jpg");
}
[src*="95000164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000164.jpg");
}
[src*="95000163.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000163.jpg");
}
[src*="95000166.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000166.jpg");
}
[src*="95000165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000165.jpg");
}
[src*="95000169.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000169.jpg");
}
[src*="95000167.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000167.jpg");
}
[src*="95000171.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000171.jpg");
}
[src*="95000170.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000170.jpg");
}
[src*="95000173.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000173.jpg");
}
[src*="95000172.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000172.jpg");
}
[src*="95000175.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000175.jpg");
}
[src*="95000174.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000174.jpg");
}
[src*="95000177.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000177.jpg");
}
[src*="95000176.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000176.jpg");
}
[src*="95026693.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95026693.jpg");
}
[src*="95004025.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95004025.jpg");
}
[src*="95040215.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95040215.jpg");
}
[src*="95027497.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95027497.jpg");
}
[src*="95081386.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95081386.jpg");
}
[src*="95051344.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95051344.jpg");
}
[src*="95084054.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95084054.jpg");
}
[src*="95083785.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95083785.jpg");
}
[src*="95096437.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95096437.jpg");
}
[src*="95090813.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95090813.jpg");
}
[src*="95132338.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95132338.jpg");
}
[src*="95113856.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95113856.jpg");
}
[src*="95166228.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95166228.jpg");
}
[src*="95144193.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95144193.jpg");
}
[src*="95174353.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95174353.jpg");
}
[src*="95169481.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95169481.jpg");
}
[src*="95194279.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95194279.jpg");
}
[src*="95178994.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95178994.jpg");
}
[src*="95200001.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200001.jpg");
}
[src*="95200000.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200000.jpg");
}
[src*="95200003.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200003.jpg");
}
[src*="95200002.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200002.jpg");
}
[src*="95200005.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200005.jpg");
}
[src*="95200004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200004.jpg");
}
[src*="95200007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200007.jpg");
}
[src*="95200006.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200006.jpg");
}
[src*="95200009.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200009.jpg");
}
[src*="95200008.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200008.jpg");
}
[src*="95200011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200011.jpg");
}
[src*="95200010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200010.jpg");
}
[src*="95200013.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200013.jpg");
}
[src*="95200012.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200012.jpg");
}
[src*="95200015.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200015.jpg");
}
[src*="95200014.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200014.jpg");
}
[src*="95200017.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200017.jpg");
}
[src*="95200016.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200016.jpg");
}
[src*="95200019.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200019.jpg");
}
[src*="95200018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200018.jpg");
}
[src*="95200021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200021.jpg");
}
[src*="95200020.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200020.jpg");
}
[src*="95200023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200023.jpg");
}
[src*="95200022.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200022.jpg");
}
[src*="95200025.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200025.jpg");
}
[src*="95200024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200024.jpg");
}
[src*="95200102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200102.jpg");
}
[src*="95200101.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200101.jpg");
}
[src*="95214051.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95214051.jpg");
}
[src*="95204084.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95204084.jpg");
}
[src*="95220856.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95220856.jpg");
}
[src*="95218695.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95218695.jpg");
}
[src*="9523599.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9523599.jpg");
}
[src*="95231062.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95231062.jpg");
}
[src*="95239444.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95239444.jpg");
}
[src*="95238394.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95238394.jpg");
}
[src*="95265975.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95265975.jpg");
}
[src*="95254840.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95254840.jpg");
}
[src*="95286165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95286165.jpg");
}
[src*="95281259.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95281259.jpg");
}
[src*="95291684.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95291684.jpg");
}
[src*="95288024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95288024.jpg");
}
[src*="95326659.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95326659.jpg");
}
[src*="95308449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95308449.jpg");
}
[src*="95360850.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95360850.jpg");
}
[src*="95352218.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95352218.jpg");
}
[src*="95376428.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95376428.jpg");
}
[src*="95362816.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95362816.jpg");
}
[src*="9540040.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9540040.jpg");
}
[src*="95395761.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95395761.jpg");
}
[src*="95403418.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95403418.jpg");
}
[src*="95401059.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95401059.jpg");
}
[src*="95443805.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95443805.jpg");
}
[src*="95442074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95442074.jpg");
}
[src*="95451366.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95451366.jpg");
}
[src*="95448692.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95448692.jpg");
}
[src*="95457011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95457011.jpg");
}
[src*="95453143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95453143.jpg");
}
[src*="95472621.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95472621.jpg");
}
[src*="95466842.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95466842.jpg");
}
[src*="9547962.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9547962.jpg");
}
[src*="95474755.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95474755.jpg");
}
[src*="95492061.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95492061.jpg");
}
[src*="95486586.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95486586.jpg");
}
[src*="95503687.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95503687.jpg");
}
[src*="95500396.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95500396.jpg");
}
[src*="95507060.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95507060.jpg");
}
[src*="95504778.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95504778.jpg");
}
[src*="95515060.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95515060.jpg");
}
[src*="95511642.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95511642.jpg");
}
[src*="95526884.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95526884.jpg");
}
[src*="95519486.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95519486.jpg");
}
[src*="95561280.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95561280.jpg");
}
[src*="9553721.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9553721.jpg");
}
[src*="95600067.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95600067.jpg");
}
[src*="95568112.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95568112.jpg");
}
[src*="95612049.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95612049.jpg");
}
[src*="9560338.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9560338.jpg");
}
[src*="95621257.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95621257.jpg");
}
[src*="95614612.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95614612.jpg");
}
[src*="95638658.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95638658.jpg");
}
[src*="95637655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95637655.jpg");
}
[src*="95658967.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95658967.jpg");
}
[src*="95642274.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95642274.jpg");
}
[src*="95697223.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95697223.jpg");
}
[src*="95676943.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95676943.jpg");
}
[src*="95714077.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95714077.jpg");
}
[src*="95701283.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95701283.jpg");
}
[src*="95735217.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95735217.jpg");
}
[src*="95727991.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95727991.jpg");
}
[src*="95750695.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95750695.jpg");
}
[src*="95744531.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95744531.jpg");
}
[src*="95772051.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95772051.jpg");
}
[src*="9576193.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9576193.jpg");
}
[src*="95788410.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95788410.jpg");
}
[src*="95784434.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95784434.jpg");
}
[src*="95816395.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95816395.jpg");
}
[src*="95789089.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95789089.jpg");
}
[src*="95833645.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95833645.jpg");
}
[src*="95825679.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95825679.jpg");
}
[src*="95841282.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95841282.jpg");
}
[src*="9583383.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9583383.jpg");
}
[src*="95905259.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95905259.jpg");
}
[src*="95888876.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95888876.jpg");
}
[src*="95923441.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95923441.jpg");
}
[src*="95920682.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95920682.jpg");
}
[src*="95943058.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95943058.jpg");
}
[src*="95929069.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95929069.jpg");
}
[src*="95956346.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95956346.jpg");
}
[src*="95952802.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95952802.jpg");
}
[src*="95992081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95992081.jpg");
}
[src*="9596126.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9596126.jpg");
}
[src*="96005454.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96005454.jpg");
}
[src*="95993388.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95993388.jpg");
}
[src*="96012004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96012004.jpg");
}
[src*="96008713.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96008713.jpg");
}
[src*="96029574.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96029574.jpg");
}
[src*="96015976.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96015976.jpg");
}
[src*="96051150.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96051150.jpg");
}
[src*="9603356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9603356.jpg");
}
[src*="96073342.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96073342.jpg");
}
[src*="96055137.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96055137.jpg");
}
[src*="96100333.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96100333.jpg");
}
[src*="96099959.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96099959.jpg");
}
[src*="96146814.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96146814.jpg");
}
[src*="96142517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96142517.jpg");
}
[src*="96150936.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96150936.jpg");
}
[src*="96148285.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96148285.jpg");
}
[src*="96163807.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96163807.jpg");
}
[src*="96157835.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96157835.jpg");
}
[src*="96182448.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96182448.jpg");
}
[src*="9617996.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9617996.jpg");
}
[src*="96218085.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96218085.jpg");
}
[src*="96216229.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96216229.jpg");
}
[src*="9622164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9622164.jpg");
}
[src*="96220350.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96220350.jpg");
}
[src*="96227613.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96227613.jpg");
}
[src*="96223501.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96223501.jpg");
}
[src*="9628664.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9628664.jpg");
}
[src*="96235275.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96235275.jpg");
}
[src*="96300057.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96300057.jpg");
}
[src*="96287685.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96287685.jpg");
}
[src*="96331676.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96331676.jpg");
}
[src*="96316857.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96316857.jpg");
}
[src*="9633505.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9633505.jpg");
}
[src*="96334243.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96334243.jpg");
}
[src*="96355986.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96355986.jpg");
}
[src*="96345188.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96345188.jpg");
}
[src*="9637706.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9637706.jpg");
}
[src*="96363153.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96363153.jpg");
}
[src*="96381979.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96381979.jpg");
}
[src*="96380700.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96380700.jpg");
}
[src*="96384007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96384007.jpg");
}
[src*="96383838.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96383838.jpg");
}
[src*="96404912.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96404912.jpg");
}
[src*="96385345.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96385345.jpg");
}
[src*="96427353.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96427353.jpg");
}
[src*="96420087.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96420087.jpg");
}
[src*="96434581.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96434581.jpg");
}
[src*="96428622.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96428622.jpg");
}
[src*="96458440.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96458440.jpg");
}
[src*="96457619.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96457619.jpg");
}
[src*="96471335.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96471335.jpg");
}
[src*="96470883.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96470883.jpg");
}
[src*="96501677.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96501677.jpg");
}
[src*="96474800.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96474800.jpg");
}
[src*="96540.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96540.jpg");
}
[src*="9653271.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9653271.jpg");
}
[src*="96561011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96561011.jpg");
}
[src*="96553688.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96553688.jpg");
}
[src*="96570609.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96570609.jpg");
}
[src*="96565487.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96565487.jpg");
}
[src*="96594609.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96594609.jpg");
}
[src*="96592102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96592102.jpg");
}
[src*="96598015.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96598015.jpg");
}
[src*="9659580.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9659580.jpg");
}
[src*="96622984.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96622984.jpg");
}
[src*="96606246.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96606246.jpg");
}
[src*="96643568.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96643568.jpg");
}
[src*="96631852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96631852.jpg");
}
[src*="9666558.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9666558.jpg");
}
[src*="96653775.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96653775.jpg");
}
[src*="96682430.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96682430.jpg");
}
[src*="96677818.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96677818.jpg");
}
[src*="96700602.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96700602.jpg");
}
[src*="96699830.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96699830.jpg");
}
[src*="96704974.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96704974.jpg");
}
[src*="96704018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96704018.jpg");
}
[src*="96733134.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96733134.jpg");
}
[src*="96729612.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96729612.jpg");
}
[src*="96765646.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96765646.jpg");
}
[src*="96746083.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96746083.jpg");
}
[src*="96782886.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96782886.jpg");
}
[src*="9677699.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9677699.jpg");
}
[src*="967928.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/967928.jpg");
}
[src*="96789758.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96789758.jpg");
}
[src*="96851799.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96851799.jpg");
}
[src*="96802306.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96802306.jpg");
}
[src*="96864105.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96864105.jpg");
}
[src*="96857854.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96857854.jpg");
}
[src*="96872283.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96872283.jpg");
}
[src*="96864811.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96864811.jpg");
}
[src*="96890582.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96890582.jpg");
}
[src*="96875080.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96875080.jpg");
}
[src*="96914272.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96914272.jpg");
}
[src*="96907086.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96907086.jpg");
}
[src*="96938777.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96938777.jpg");
}
[src*="96930127.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96930127.jpg");
}
[src*="96947648.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96947648.jpg");
}
[src*="96938986.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96938986.jpg");
}
[src*="96967123.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96967123.jpg");
}
[src*="96965364.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96965364.jpg");
}
[src*="97000273.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97000273.jpg");
}
[src*="96981563.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96981563.jpg");
}
[src*="97007933.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97007933.jpg");
}
[src*="97001138.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97001138.jpg");
}
[src*="97021916.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97021916.jpg");
}
[src*="97017120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97017120.jpg");
}
[src*="97024987.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97024987.jpg");
}
[src*="97023549.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97023549.jpg");
}
[src*="97077563.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97077563.jpg");
}
[src*="97064649.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97064649.jpg");
}
[src*="97120394.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97120394.jpg");
}
[src*="97093037.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97093037.jpg");
}
[src*="97151365.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97151365.jpg");
}
[src*="97127906.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97127906.jpg");
}
[src*="97168905.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97168905.jpg");
}
[src*="97165977.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97165977.jpg");
}
[src*="97170107.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97170107.jpg");
}
[src*="97169186.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97169186.jpg");
}
[src*="9718968.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9718968.jpg");
}
[src*="97173708.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97173708.jpg");
}
[src*="9720537.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9720537.jpg");
}
[src*="97204936.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97204936.jpg");
}
[src*="97219708.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97219708.jpg");
}
[src*="97211663.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97211663.jpg");
}
[src*="97234686.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97234686.jpg");
}
[src*="97232518.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97232518.jpg");
}
[src*="97240271.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97240271.jpg");
}
[src*="97240270.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97240270.jpg");
}
[src*="97273514.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97273514.jpg");
}
[src*="97268402.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97268402.jpg");
}
[src*="97342942.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97342942.jpg");
}
[src*="97317530.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97317530.jpg");
}
[src*="97362768.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97362768.jpg");
}
[src*="97360116.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97360116.jpg");
}
[src*="97396380.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97396380.jpg");
}
[src*="97385276.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97385276.jpg");
}
[src*="9742784.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9742784.jpg");
}
[src*="97403510.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97403510.jpg");
}
[src*="97439308.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97439308.jpg");
}
[src*="97433739.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97433739.jpg");
}
[src*="9744376.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9744376.jpg");
}
[src*="97439806.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97439806.jpg");
}
[src*="97452818.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97452818.jpg");
}
[src*="97452817.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97452817.jpg");
}
[src*="97466712.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97466712.jpg");
}
[src*="97466438.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97466438.jpg");
}
[src*="97489701.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97489701.jpg");
}
[src*="9748752.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9748752.jpg");
}
[src*="97526666.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97526666.jpg");
}
[src*="97520701.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97520701.jpg");
}
[src*="9753964.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9753964.jpg");
}
[src*="975299.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/975299.jpg");
}
[src*="97570038.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97570038.jpg");
}
[src*="97567736.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97567736.jpg");
}
[src*="97584500.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97584500.jpg");
}
[src*="97574404.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97574404.jpg");
}
[src*="97590747.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97590747.jpg");
}
[src*="97588916.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97588916.jpg");
}
[src*="97612389.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97612389.jpg");
}
[src*="97590748.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97590748.jpg");
}
[src*="97617181.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97617181.jpg");
}
[src*="97616504.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97616504.jpg");
}
[src*="97642679.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97642679.jpg");
}
[src*="97623219.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97623219.jpg");
}
[src*="97651498.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97651498.jpg");
}
[src*="97648103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97648103.jpg");
}
[src*="97687912.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97687912.jpg");
}
[src*="9765723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9765723.jpg");
}
[src*="97697447.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97697447.jpg");
}
[src*="97688360.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97688360.jpg");
}
[src*="97705809.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97705809.jpg");
}
[src*="97697678.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97697678.jpg");
}
[src*="97738431.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97738431.jpg");
}
[src*="97729135.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97729135.jpg");
}
[src*="97783659.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97783659.jpg");
}
[src*="97750534.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97750534.jpg");
}
[src*="97795930.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97795930.jpg");
}
[src*="97792247.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97792247.jpg");
}
[src*="9780364.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9780364.jpg");
}
[src*="97803170.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97803170.jpg");
}
[src*="97809599.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97809599.jpg");
}
[src*="97806240.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97806240.jpg");
}
[src*="97836203.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97836203.jpg");
}
[src*="97811903.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97811903.jpg");
}
[src*="9786492.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9786492.jpg");
}
[src*="97843505.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97843505.jpg");
}
[src*="97896503.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97896503.jpg");
}
[src*="97885363.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97885363.jpg");
}
[src*="9791914.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9791914.jpg");
}
[src*="97904474.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97904474.jpg");
}
[src*="97923414.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97923414.jpg");
}
[src*="97922283.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97922283.jpg");
}
[src*="97940434.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97940434.jpg");
}
[src*="97926515.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97926515.jpg");
}
[src*="97949165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97949165.jpg");
}
[src*="97947705.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97947705.jpg");
}
[src*="97973387.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97973387.jpg");
}
[src*="97970833.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97970833.jpg");
}
[src*="97997309.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97997309.jpg");
}
[src*="97973962.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97973962.jpg");
}
[src*="98024118.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98024118.jpg");
}
[src*="98012938.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98012938.jpg");
}
[src*="98049038.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98049038.jpg");
}
[src*="98045062.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98045062.jpg");
}
[src*="98069388.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98069388.jpg");
}
[src*="98049915.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98049915.jpg");
}
[src*="98076754.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98076754.jpg");
}
[src*="98075147.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98075147.jpg");
}
[src*="980973.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/980973.jpg");
}
[src*="98095162.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98095162.jpg");
}
[src*="98139712.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98139712.jpg");
}
[src*="98126725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98126725.jpg");
}
[src*="98147766.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98147766.jpg");
}
[src*="98143165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98143165.jpg");
}
[src*="981540.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/981540.jpg");
}
[src*="98153934.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98153934.jpg");
}
[src*="98162021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98162021.jpg");
}
[src*="98154550.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98154550.jpg");
}
[src*="98169343.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98169343.jpg");
}
[src*="98162242.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98162242.jpg");
}
[src*="98225108.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98225108.jpg");
}
[src*="9817927.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9817927.jpg");
}
[src*="98239899.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98239899.jpg");
}
[src*="98229575.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98229575.jpg");
}
[src*="98259197.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98259197.jpg");
}
[src*="98252586.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98252586.jpg");
}
[src*="98266377.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98266377.jpg");
}
[src*="98263709.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98263709.jpg");
}
[src*="98280324.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98280324.jpg");
}
[src*="98273947.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98273947.jpg");
}
[src*="98299011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98299011.jpg");
}
[src*="98287529.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98287529.jpg");
}
[src*="9831539.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9831539.jpg");
}
[src*="98301564.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98301564.jpg");
}
[src*="98338152.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98338152.jpg");
}
[src*="98336111.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98336111.jpg");
}
[src*="9837195.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9837195.jpg");
}
[src*="98358303.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98358303.jpg");
}
[src*="98380593.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98380593.jpg");
}
[src*="98374133.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98374133.jpg");
}
[src*="984114.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/984114.jpg");
}
[src*="983995.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/983995.jpg");
}
[src*="98427577.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98427577.jpg");
}
[src*="98414735.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98414735.jpg");
}
[src*="98434877.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98434877.jpg");
}
[src*="98431356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98431356.jpg");
}
[src*="98444741.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98444741.jpg");
}
[src*="98437424.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98437424.jpg");
}
[src*="98456117.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98456117.jpg");
}
[src*="98446407.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98446407.jpg");
}
[src*="9848939.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9848939.jpg");
}
[src*="9845733.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9845733.jpg");
}
[src*="98495314.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98495314.jpg");
}
[src*="98494543.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98494543.jpg");
}
[src*="98502114.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98502114.jpg");
}
[src*="98502113.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98502113.jpg");
}
[src*="9852718.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9852718.jpg");
}
[src*="98502115.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98502115.jpg");
}
[src*="98552723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98552723.jpg");
}
[src*="98535702.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98535702.jpg");
}
[src*="98558751.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98558751.jpg");
}
[src*="98555327.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98555327.jpg");
}
[src*="98585345.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98585345.jpg");
}
[src*="98582704.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98582704.jpg");
}
[src*="98637386.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98637386.jpg");
}
[src*="9861795.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9861795.jpg");
}
[src*="98645731.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98645731.jpg");
}
[src*="98643358.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98643358.jpg");
}
[src*="98666339.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98666339.jpg");
}
[src*="98649372.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98649372.jpg");
}
[src*="98700941.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98700941.jpg");
}
[src*="98672567.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98672567.jpg");
}
[src*="98719226.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98719226.jpg");
}
[src*="98707192.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98707192.jpg");
}
[src*="98745000.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98745000.jpg");
}
[src*="987311.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/987311.jpg");
}
[src*="98780137.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98780137.jpg");
}
[src*="98777036.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98777036.jpg");
}
[src*="98795934.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98795934.jpg");
}
[src*="98792570.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98792570.jpg");
}
[src*="98827725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98827725.jpg");
}
[src*="98818516.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98818516.jpg");
}
[src*="98850929.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98850929.jpg");
}
[src*="98847704.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98847704.jpg");
}
[src*="98865920.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98865920.jpg");
}
[src*="98864751.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98864751.jpg");
}
[src*="98881931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98881931.jpg");
}
[src*="98867329.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98867329.jpg");
}
[src*="98884569.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98884569.jpg");
}
[src*="9888196.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9888196.jpg");
}
[src*="98898173.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98898173.jpg");
}
[src*="98891840.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98891840.jpg");
}
[src*="98918572.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98918572.jpg");
}
[src*="98905.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98905.jpg");
}
[src*="98931003.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98931003.jpg");
}
[src*="98927491.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98927491.jpg");
}
[src*="98954106.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98954106.jpg");
}
[src*="98935722.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98935722.jpg");
}
[src*="98956134.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98956134.jpg");
}
[src*="98954375.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98954375.jpg");
}
[src*="9897998.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9897998.jpg");
}
[src*="98978921.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98978921.jpg");
}
[src*="99000107.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99000107.jpg");
}
[src*="98999181.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98999181.jpg");
}
[src*="99002135.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99002135.jpg");
}
[src*="99000151.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99000151.jpg");
}
[src*="99004752.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99004752.jpg");
}
[src*="99004583.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99004583.jpg");
}
[src*="99013397.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99013397.jpg");
}
[src*="99011763.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99011763.jpg");
}
[src*="99050989.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99050989.jpg");
}
[src*="99030164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99030164.jpg");
}
[src*="99070951.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99070951.jpg");
}
[src*="99064191.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99064191.jpg");
}
[src*="99092624.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99092624.jpg");
}
[src*="99075257.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99075257.jpg");
}
[src*="99111753.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99111753.jpg");
}
[src*="9910360.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9910360.jpg");
}
[src*="99150062.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99150062.jpg");
}
} | data/usercss/178432.user.css | @-moz-document url-prefix("https://duelingnexus.com/") {
[src*="83500096.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83500096.jpg");
}
[src*="8353769.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8353769.jpg");
}
[src*="83531441.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83531441.jpg");
}
[src*="83546647.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83546647.jpg");
}
[src*="83544697.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83544697.jpg");
}
[src*="83555666.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83555666.jpg");
}
[src*="83550869.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83550869.jpg");
}
[src*="83584898.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83584898.jpg");
}
[src*="83555667.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83555667.jpg");
}
[src*="83604828.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83604828.jpg");
}
[src*="83602069.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83602069.jpg");
}
[src*="83675475.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83675475.jpg");
}
[src*="83629030.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83629030.jpg");
}
[src*="83682725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83682725.jpg");
}
[src*="83678433.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83678433.jpg");
}
[src*="83725008.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83725008.jpg");
}
[src*="83715234.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83715234.jpg");
}
[src*="83746708.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83746708.jpg");
}
[src*="83743222.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83743222.jpg");
}
[src*="83755611.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83755611.jpg");
}
[src*="83747250.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83747250.jpg");
}
[src*="83764719.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83764719.jpg");
}
[src*="83764718.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83764718.jpg");
}
[src*="83778600.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83778600.jpg");
}
[src*="83764996.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83764996.jpg");
}
[src*="83812099.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83812099.jpg");
}
[src*="83810690.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83810690.jpg");
}
[src*="83831356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83831356.jpg");
}
[src*="83828288.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83828288.jpg");
}
[src*="83866861.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83866861.jpg");
}
[src*="8384771.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8384771.jpg");
}
[src*="83880087.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83880087.jpg");
}
[src*="8387138.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8387138.jpg");
}
[src*="83903521.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83903521.jpg");
}
[src*="83887306.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83887306.jpg");
}
[src*="83965310.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83965310.jpg");
}
[src*="83957459.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83957459.jpg");
}
[src*="8396952.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8396952.jpg");
}
[src*="83968380.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83968380.jpg");
}
[src*="83982270.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83982270.jpg");
}
[src*="83980492.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83980492.jpg");
}
[src*="83991690.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83991690.jpg");
}
[src*="83986578.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83986578.jpg");
}
[src*="83994646.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83994646.jpg");
}
[src*="83994433.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/83994433.jpg");
}
[src*="84012625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84012625.jpg");
}
[src*="8400623.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8400623.jpg");
}
[src*="84025439.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84025439.jpg");
}
[src*="84013237.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84013237.jpg");
}
[src*="84055227.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84055227.jpg");
}
[src*="84046493.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84046493.jpg");
}
[src*="84080938.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84080938.jpg");
}
[src*="84058253.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84058253.jpg");
}
[src*="84103702.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84103702.jpg");
}
[src*="84080939.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84080939.jpg");
}
[src*="84124261.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84124261.jpg");
}
[src*="84117021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84117021.jpg");
}
[src*="84136000.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84136000.jpg");
}
[src*="84133008.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84133008.jpg");
}
[src*="84171830.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84171830.jpg");
}
[src*="8414337.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8414337.jpg");
}
[src*="84177693.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84177693.jpg");
}
[src*="84173492.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84173492.jpg");
}
[src*="84220251.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84220251.jpg");
}
[src*="84206435.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84206435.jpg");
}
[src*="84243274.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84243274.jpg");
}
[src*="84224627.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84224627.jpg");
}
[src*="84257640.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84257640.jpg");
}
[src*="84257639.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84257639.jpg");
}
[src*="84285623.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84285623.jpg");
}
[src*="84268896.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84268896.jpg");
}
[src*="84298614.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84298614.jpg");
}
[src*="84290642.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84290642.jpg");
}
[src*="84313685.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84313685.jpg");
}
[src*="84305651.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84305651.jpg");
}
[src*="84327330.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84327330.jpg");
}
[src*="84327329.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84327329.jpg");
}
[src*="84361420.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84361420.jpg");
}
[src*="84341431.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84341431.jpg");
}
[src*="84385264.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84385264.jpg");
}
[src*="8437145.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8437145.jpg");
}
[src*="84389640.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84389640.jpg");
}
[src*="84388461.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84388461.jpg");
}
[src*="84401683.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84401683.jpg");
}
[src*="84397023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84397023.jpg");
}
[src*="84428023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84428023.jpg");
}
[src*="84417082.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84417082.jpg");
}
[src*="84433295.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84433295.jpg");
}
[src*="84430950.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84430950.jpg");
}
[src*="84451804.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84451804.jpg");
}
[src*="84442536.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84442536.jpg");
}
[src*="84472026.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84472026.jpg");
}
[src*="84453939.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84453939.jpg");
}
[src*="84488827.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84488827.jpg");
}
[src*="84478195.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84478195.jpg");
}
[src*="84530620.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84530620.jpg");
}
[src*="84491298.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84491298.jpg");
}
[src*="84539520.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84539520.jpg");
}
[src*="84536654.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84536654.jpg");
}
[src*="84565800.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84565800.jpg");
}
[src*="84550200.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84550200.jpg");
}
[src*="84569886.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84569886.jpg");
}
[src*="84569017.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84569017.jpg");
}
[src*="84613836.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84613836.jpg");
}
[src*="84592800.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84592800.jpg");
}
[src*="84636823.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84636823.jpg");
}
[src*="84620194.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84620194.jpg");
}
[src*="84640866.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84640866.jpg");
}
[src*="8463720.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8463720.jpg");
}
[src*="84653834.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84653834.jpg");
}
[src*="84650463.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84650463.jpg");
}
[src*="84677654.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84677654.jpg");
}
[src*="84673417.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84673417.jpg");
}
[src*="84687358.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84687358.jpg");
}
[src*="84686841.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84686841.jpg");
}
[src*="8471389.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8471389.jpg");
}
[src*="84696266.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84696266.jpg");
}
[src*="84747429.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84747429.jpg");
}
[src*="84740193.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84740193.jpg");
}
[src*="84754430.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84754430.jpg");
}
[src*="84749824.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84749824.jpg");
}
[src*="84766279.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84766279.jpg");
}
[src*="84764038.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84764038.jpg");
}
[src*="847915.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/847915.jpg");
}
[src*="84769941.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84769941.jpg");
}
[src*="84808313.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84808313.jpg");
}
[src*="84794011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84794011.jpg");
}
[src*="84812868.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84812868.jpg");
}
[src*="84816244.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84816244.jpg");
}
[src*="84814897.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84814897.jpg");
}
[src*="8483333.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8483333.jpg");
}
[src*="84824601.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84824601.jpg");
}
[src*="84845628.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84845628.jpg");
}
[src*="84834865.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84834865.jpg");
}
[src*="84869738.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84869738.jpg");
}
[src*="84847656.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84847656.jpg");
}
[src*="84877802.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84877802.jpg");
}
[src*="8487449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8487449.jpg");
}
[src*="84905691.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84905691.jpg");
}
[src*="84899094.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84899094.jpg");
}
[src*="84914462.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84914462.jpg");
}
[src*="8491308.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8491308.jpg");
}
[src*="8491961.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8491961.jpg");
}
[src*="84916669.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84916669.jpg");
}
[src*="84932271.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84932271.jpg");
}
[src*="84926738.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84926738.jpg");
}
[src*="84968490.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84968490.jpg");
}
[src*="84962466.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84962466.jpg");
}
[src*="84976088.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84976088.jpg");
}
[src*="84970821.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84970821.jpg");
}
[src*="84990171.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84990171.jpg");
}
[src*="84988419.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/84988419.jpg");
}
[src*="85008676.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85008676.jpg");
}
[src*="85004150.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85004150.jpg");
}
[src*="85034450.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85034450.jpg");
}
[src*="85028288.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85028288.jpg");
}
[src*="85066822.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85066822.jpg");
}
[src*="85060248.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85060248.jpg");
}
[src*="85080444.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85080444.jpg");
}
[src*="85080048.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85080048.jpg");
}
[src*="85087012.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85087012.jpg");
}
[src*="8508055.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8508055.jpg");
}
[src*="85101228.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85101228.jpg");
}
[src*="85101097.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85101097.jpg");
}
[src*="85115440.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85115440.jpg");
}
[src*="85103922.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85103922.jpg");
}
[src*="85138716.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85138716.jpg");
}
[src*="85121942.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85121942.jpg");
}
[src*="85215458.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85215458.jpg");
}
[src*="85166216.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85166216.jpg");
}
[src*="8522996.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8522996.jpg");
}
[src*="85216896.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85216896.jpg");
}
[src*="85252081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85252081.jpg");
}
[src*="85239662.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85239662.jpg");
}
[src*="85289965.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85289965.jpg");
}
[src*="85255550.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85255550.jpg");
}
[src*="85306040.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85306040.jpg");
}
[src*="8529136.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8529136.jpg");
}
[src*="85310252.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85310252.jpg");
}
[src*="85309439.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85309439.jpg");
}
[src*="85326399.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85326399.jpg");
}
[src*="85313220.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85313220.jpg");
}
[src*="85352446.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85352446.jpg");
}
[src*="85346853.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85346853.jpg");
}
[src*="85374678.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85374678.jpg");
}
[src*="85359414.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85359414.jpg");
}
[src*="85431040.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85431040.jpg");
}
[src*="85399281.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85399281.jpg");
}
[src*="85448931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85448931.jpg");
}
[src*="85446833.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85446833.jpg");
}
[src*="85475641.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85475641.jpg");
}
[src*="85463083.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85463083.jpg");
}
[src*="85505315.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85505315.jpg");
}
[src*="85489096.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85489096.jpg");
}
[src*="85519211.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85519211.jpg");
}
[src*="85507811.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85507811.jpg");
}
[src*="85528209.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85528209.jpg");
}
[src*="85520851.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85520851.jpg");
}
[src*="85545073.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85545073.jpg");
}
[src*="85541675.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85541675.jpg");
}
[src*="85555787.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85555787.jpg");
}
[src*="85551711.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85551711.jpg");
}
[src*="8559793.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8559793.jpg");
}
[src*="85562745.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85562745.jpg");
}
[src*="85605684.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85605684.jpg");
}
[src*="85602018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85602018.jpg");
}
[src*="85636437.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85636437.jpg");
}
[src*="8561192.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8561192.jpg");
}
[src*="85639257.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85639257.jpg");
}
[src*="85638822.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85638822.jpg");
}
[src*="85651167.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85651167.jpg");
}
[src*="85646474.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85646474.jpg");
}
[src*="85679527.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85679527.jpg");
}
[src*="85668449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85668449.jpg");
}
[src*="85682655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85682655.jpg");
}
[src*="8567955.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8567955.jpg");
}
[src*="85696777.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85696777.jpg");
}
[src*="85684223.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85684223.jpg");
}
[src*="85705804.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85705804.jpg");
}
[src*="85704698.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85704698.jpg");
}
[src*="85718645.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85718645.jpg");
}
[src*="85709845.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85709845.jpg");
}
[src*="85754829.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85754829.jpg");
}
[src*="85742772.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85742772.jpg");
}
[src*="85771019.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85771019.jpg");
}
[src*="85763457.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85763457.jpg");
}
[src*="85771021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85771021.jpg");
}
[src*="85771020.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85771020.jpg");
}
[src*="85800949.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85800949.jpg");
}
[src*="85771020.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85771020.jpg");
}
[src*="85775486.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85775486.jpg");
}
[src*="8581705.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8581705.jpg");
}
[src*="85802526.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85802526.jpg");
}
[src*="85827713.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85827713.jpg");
}
[src*="85821180.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85821180.jpg");
}
[src*="85840608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85840608.jpg");
}
[src*="85839825.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85839825.jpg");
}
[src*="85854214.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85854214.jpg");
}
[src*="85852291.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85852291.jpg");
}
[src*="85893201.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85893201.jpg");
}
[src*="85876417.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85876417.jpg");
}
[src*="85909450.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85909450.jpg");
}
[src*="85908279.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85908279.jpg");
}
[src*="8594079.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8594079.jpg");
}
[src*="85936485.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85936485.jpg");
}
[src*="85991529.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85991529.jpg");
}
[src*="85967160.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/85967160.jpg");
}
[src*="86016245.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86016245.jpg");
}
[src*="86013171.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86013171.jpg");
}
[src*="86049351.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86049351.jpg");
}
[src*="86039057.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86039057.jpg");
}
[src*="86088138.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86088138.jpg");
}
[src*="86062400.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86062400.jpg");
}
[src*="86099788.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86099788.jpg");
}
[src*="8608979.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8608979.jpg");
}
[src*="8611007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8611007.jpg");
}
[src*="86100785.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86100785.jpg");
}
[src*="86124104.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86124104.jpg");
}
[src*="86120751.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86120751.jpg");
}
[src*="86148577.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86148577.jpg");
}
[src*="86137485.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86137485.jpg");
}
[src*="86164529.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86164529.jpg");
}
[src*="86157908.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86157908.jpg");
}
[src*="86174055.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86174055.jpg");
}
[src*="86170989.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86170989.jpg");
}
[src*="86188411.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86188411.jpg");
}
[src*="86188410.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86188410.jpg");
}
[src*="86197239.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86197239.jpg");
}
[src*="86196216.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86196216.jpg");
}
[src*="86209650.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86209650.jpg");
}
[src*="86198326.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86198326.jpg");
}
[src*="86223870.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86223870.jpg");
}
[src*="86221741.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86221741.jpg");
}
[src*="86238081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86238081.jpg");
}
[src*="86229493.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86229493.jpg");
}
[src*="86274272.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86274272.jpg");
}
[src*="86240887.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86240887.jpg");
}
[src*="8628798.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8628798.jpg");
}
[src*="86281779.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86281779.jpg");
}
[src*="86318356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86318356.jpg");
}
[src*="86308219.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86308219.jpg");
}
[src*="86325573.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86325573.jpg");
}
[src*="86321248.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86321248.jpg");
}
[src*="86327225.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86327225.jpg");
}
[src*="86325596.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86325596.jpg");
}
[src*="8634636.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8634636.jpg");
}
[src*="8632967.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8632967.jpg");
}
[src*="86361354.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86361354.jpg");
}
[src*="86346643.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86346643.jpg");
}
[src*="86396750.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86396750.jpg");
}
[src*="86377375.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86377375.jpg");
}
[src*="86421986.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86421986.jpg");
}
[src*="86401517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86401517.jpg");
}
[src*="86442081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86442081.jpg");
}
[src*="8643186.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8643186.jpg");
}
[src*="86466163.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86466163.jpg");
}
[src*="86445415.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86445415.jpg");
}
[src*="86489182.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86489182.jpg");
}
[src*="86474024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86474024.jpg");
}
[src*="86498013.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86498013.jpg");
}
[src*="8649148.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8649148.jpg");
}
[src*="86532744.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86532744.jpg");
}
[src*="86516889.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86516889.jpg");
}
[src*="86555018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86555018.jpg");
}
[src*="86541496.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86541496.jpg");
}
[src*="86569121.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86569121.jpg");
}
[src*="86559484.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86559484.jpg");
}
[src*="86585274.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86585274.jpg");
}
[src*="86578200.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86578200.jpg");
}
[src*="86643777.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86643777.jpg");
}
[src*="86607583.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86607583.jpg");
}
[src*="86676862.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86676862.jpg");
}
[src*="86652646.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86652646.jpg");
}
[src*="86690572.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86690572.jpg");
}
[src*="86686671.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86686671.jpg");
}
[src*="86750474.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86750474.jpg");
}
[src*="86742443.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86742443.jpg");
}
[src*="86767655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86767655.jpg");
}
[src*="86758915.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86758915.jpg");
}
[src*="86780027.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86780027.jpg");
}
[src*="86778566.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86778566.jpg");
}
[src*="86801871.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86801871.jpg");
}
[src*="86784733.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86784733.jpg");
}
[src*="86804246.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86804246.jpg");
}
[src*="86801872.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86801872.jpg");
}
[src*="86821010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86821010.jpg");
}
[src*="86805855.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86805855.jpg");
}
[src*="86825483.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86825483.jpg");
}
[src*="86825114.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86825114.jpg");
}
[src*="86840720.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86840720.jpg");
}
[src*="86827882.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86827882.jpg");
}
[src*="86868952.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86868952.jpg");
}
[src*="86848580.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86848580.jpg");
}
[src*="86871615.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86871615.jpg");
}
[src*="86871614.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86871614.jpg");
}
[src*="86885905.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86885905.jpg");
}
[src*="8687195.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8687195.jpg");
}
[src*="86915847.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86915847.jpg");
}
[src*="86889202.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86889202.jpg");
}
[src*="86926989.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86926989.jpg");
}
[src*="8692301.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8692301.jpg");
}
[src*="86938484.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86938484.jpg");
}
[src*="86937530.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86937530.jpg");
}
[src*="86952477.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86952477.jpg");
}
[src*="86943389.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86943389.jpg");
}
[src*="8698851.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8698851.jpg");
}
[src*="8696773.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8696773.jpg");
}
[src*="86997073.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86997073.jpg");
}
[src*="86988864.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/86988864.jpg");
}
[src*="87010442.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87010442.jpg");
}
[src*="87008374.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87008374.jpg");
}
[src*="87043568.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87043568.jpg");
}
[src*="87025064.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87025064.jpg");
}
[src*="87047074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87047074.jpg");
}
[src*="87046457.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87046457.jpg");
}
[src*="87054946.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87054946.jpg");
}
[src*="87047161.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87047161.jpg");
}
[src*="87102774.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87102774.jpg");
}
[src*="8706701.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8706701.jpg");
}
[src*="87112784.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87112784.jpg");
}
[src*="87106146.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87106146.jpg");
}
[src*="87118301.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87118301.jpg");
}
[src*="87116928.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87116928.jpg");
}
[src*="87151205.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87151205.jpg");
}
[src*="87148330.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87148330.jpg");
}
[src*="87170768.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87170768.jpg");
}
[src*="8715625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8715625.jpg");
}
[src*="8719957.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8719957.jpg");
}
[src*="87182127.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87182127.jpg");
}
[src*="87246309.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87246309.jpg");
}
[src*="87210505.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87210505.jpg");
}
[src*="87257460.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87257460.jpg");
}
[src*="87255382.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87255382.jpg");
}
[src*="87259933.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87259933.jpg");
}
[src*="87259077.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87259077.jpg");
}
[src*="87292536.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87292536.jpg");
}
[src*="87288189.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87288189.jpg");
}
[src*="87303357.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87303357.jpg");
}
[src*="87294988.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87294988.jpg");
}
[src*="87313164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87313164.jpg");
}
[src*="8730435.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8730435.jpg");
}
[src*="87322377.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87322377.jpg");
}
[src*="87319876.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87319876.jpg");
}
[src*="87340664.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87340664.jpg");
}
[src*="87322378.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87322378.jpg");
}
[src*="87350908.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87350908.jpg");
}
[src*="87347365.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87347365.jpg");
}
[src*="87390798.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87390798.jpg");
}
[src*="87390067.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87390067.jpg");
}
[src*="87430998.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87430998.jpg");
}
[src*="87430304.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87430304.jpg");
}
[src*="87473172.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87473172.jpg");
}
[src*="87460579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87460579.jpg");
}
[src*="87483942.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87483942.jpg");
}
[src*="87475570.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87475570.jpg");
}
[src*="87514539.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87514539.jpg");
}
[src*="87511987.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87511987.jpg");
}
[src*="87526784.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87526784.jpg");
}
[src*="87523462.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87523462.jpg");
}
[src*="87557188.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87557188.jpg");
}
[src*="87535691.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87535691.jpg");
}
[src*="87564935.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87564935.jpg");
}
[src*="87564352.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87564352.jpg");
}
[src*="87571563.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87571563.jpg");
}
[src*="87567063.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87567063.jpg");
}
[src*="87602890.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87602890.jpg");
}
[src*="87588741.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87588741.jpg");
}
[src*="87609391.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87609391.jpg");
}
[src*="87608852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87608852.jpg");
}
[src*="87621407.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87621407.jpg");
}
[src*="87614611.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87614611.jpg");
}
[src*="87624166.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87624166.jpg");
}
[src*="87622767.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87622767.jpg");
}
[src*="8763963.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8763963.jpg");
}
[src*="876330.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/876330.jpg");
}
[src*="87649699.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87649699.jpg");
}
[src*="87639778.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87639778.jpg");
}
[src*="87751584.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87751584.jpg");
}
[src*="87685879.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87685879.jpg");
}
[src*="87765315.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87765315.jpg");
}
[src*="87756343.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87756343.jpg");
}
[src*="87772572.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87772572.jpg");
}
[src*="87769556.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87769556.jpg");
}
[src*="87796900.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87796900.jpg");
}
[src*="87774234.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87774234.jpg");
}
[src*="87800375.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87800375.jpg");
}
[src*="87798440.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87798440.jpg");
}
[src*="87835759.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87835759.jpg");
}
[src*="87819421.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87819421.jpg");
}
[src*="87836938.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87836938.jpg");
}
[src*="8783685.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8783685.jpg");
}
[src*="87880531.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87880531.jpg");
}
[src*="8785161.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8785161.jpg");
}
[src*="87902575.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87902575.jpg");
}
[src*="87890143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87890143.jpg");
}
[src*="87911394.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87911394.jpg");
}
[src*="87910978.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87910978.jpg");
}
[src*="87931906.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87931906.jpg");
}
[src*="87917187.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87917187.jpg");
}
[src*="87973893.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87973893.jpg");
}
[src*="8794435.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8794435.jpg");
}
[src*="87979586.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87979586.jpg");
}
[src*="87978805.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87978805.jpg");
}
[src*="879958.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/879958.jpg");
}
[src*="87990236.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87990236.jpg");
}
[src*="8802510.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8802510.jpg");
}
[src*="87997872.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/87997872.jpg");
}
[src*="88032456.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88032456.jpg");
}
[src*="88032368.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88032368.jpg");
}
[src*="8806072.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8806072.jpg");
}
[src*="88033975.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88033975.jpg");
}
[src*="88069597.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88069597.jpg");
}
[src*="88069166.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88069166.jpg");
}
[src*="88086137.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88086137.jpg");
}
[src*="88071625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88071625.jpg");
}
[src*="8809344.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8809344.jpg");
}
[src*="88089103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88089103.jpg");
}
[src*="88095331.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88095331.jpg");
}
[src*="88093706.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88093706.jpg");
}
[src*="88123329.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88123329.jpg");
}
[src*="88120966.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88120966.jpg");
}
[src*="8814959.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8814959.jpg");
}
[src*="88132637.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88132637.jpg");
}
[src*="88177324.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88177324.jpg");
}
[src*="88176533.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88176533.jpg");
}
[src*="88190790.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88190790.jpg");
}
[src*="88190453.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88190453.jpg");
}
[src*="88204302.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88204302.jpg");
}
[src*="88197162.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88197162.jpg");
}
[src*="88205593.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88205593.jpg");
}
[src*="8820526.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8820526.jpg");
}
[src*="88234365.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88234365.jpg");
}
[src*="8822710.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8822710.jpg");
}
[src*="88240808.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88240808.jpg");
}
[src*="88236094.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88236094.jpg");
}
[src*="88241506.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88241506.jpg");
}
[src*="88240999.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88240999.jpg");
}
[src*="88279736.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88279736.jpg");
}
[src*="88264978.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88264978.jpg");
}
[src*="88289295.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88289295.jpg");
}
[src*="88283496.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88283496.jpg");
}
[src*="88301833.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88301833.jpg");
}
[src*="88301393.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88301393.jpg");
}
[src*="88305978.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88305978.jpg");
}
[src*="88305705.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88305705.jpg");
}
[src*="88316955.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88316955.jpg");
}
[src*="88307361.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88307361.jpg");
}
[src*="88358139.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88358139.jpg");
}
[src*="88341502.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88341502.jpg");
}
[src*="88369727.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88369727.jpg");
}
[src*="88361177.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88361177.jpg");
}
[src*="88392300.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88392300.jpg");
}
[src*="8837932.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8837932.jpg");
}
[src*="88409165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88409165.jpg");
}
[src*="88406570.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88406570.jpg");
}
[src*="8842266.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8842266.jpg");
}
[src*="88412339.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88412339.jpg");
}
[src*="88438982.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88438982.jpg");
}
[src*="88435542.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88435542.jpg");
}
[src*="88482761.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88482761.jpg");
}
[src*="88472456.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88472456.jpg");
}
[src*="88494899.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88494899.jpg");
}
[src*="88494120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88494120.jpg");
}
[src*="88552992.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88552992.jpg");
}
[src*="88513608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88513608.jpg");
}
[src*="88581108.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88581108.jpg");
}
[src*="88559132.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88559132.jpg");
}
[src*="88616795.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88616795.jpg");
}
[src*="88610708.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88610708.jpg");
}
[src*="88643173.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88643173.jpg");
}
[src*="88619463.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88619463.jpg");
}
[src*="88650530.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88650530.jpg");
}
[src*="88643579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88643579.jpg");
}
[src*="88686573.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88686573.jpg");
}
[src*="88671720.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88671720.jpg");
}
[src*="88696724.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88696724.jpg");
}
[src*="88693151.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88693151.jpg");
}
[src*="88724332.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88724332.jpg");
}
[src*="88722973.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88722973.jpg");
}
[src*="8873112.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8873112.jpg");
}
[src*="88728507.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88728507.jpg");
}
[src*="88753594.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88753594.jpg");
}
[src*="88733579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88733579.jpg");
}
[src*="88754763.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88754763.jpg");
}
[src*="88753985.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88753985.jpg");
}
[src*="8875971.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8875971.jpg");
}
[src*="88757791.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88757791.jpg");
}
[src*="88789641.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88789641.jpg");
}
[src*="88760522.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88760522.jpg");
}
[src*="88820235.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88820235.jpg");
}
[src*="88819587.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88819587.jpg");
}
[src*="88851326.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88851326.jpg");
}
[src*="88845345.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88845345.jpg");
}
[src*="88901771.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88901771.jpg");
}
[src*="88875132.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88875132.jpg");
}
[src*="88928798.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88928798.jpg");
}
[src*="88923963.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88923963.jpg");
}
[src*="88940154.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88940154.jpg");
}
[src*="88935103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88935103.jpg");
}
[src*="88958576.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88958576.jpg");
}
[src*="88942504.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88942504.jpg");
}
[src*="88979991.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88979991.jpg");
}
[src*="88975532.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88975532.jpg");
}
[src*="89015998.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89015998.jpg");
}
[src*="88989706.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/88989706.jpg");
}
[src*="89040386.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89040386.jpg");
}
[src*="8903700.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8903700.jpg");
}
[src*="89055154.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89055154.jpg");
}
[src*="89041555.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89041555.jpg");
}
[src*="89091579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89091579.jpg");
}
[src*="89086566.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89086566.jpg");
}
[src*="8910971.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8910971.jpg");
}
[src*="89091772.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89091772.jpg");
}
[src*="89112729.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89112729.jpg");
}
[src*="89111398.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89111398.jpg");
}
[src*="89127526.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89127526.jpg");
}
[src*="89113320.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89113320.jpg");
}
[src*="89181134.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89181134.jpg");
}
[src*="89132148.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89132148.jpg");
}
[src*="89185742.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89185742.jpg");
}
[src*="89181369.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89181369.jpg");
}
[src*="89194033.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89194033.jpg");
}
[src*="89189982.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89189982.jpg");
}
[src*="89208725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89208725.jpg");
}
[src*="89194103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89194103.jpg");
}
[src*="89222931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89222931.jpg");
}
[src*="89211486.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89211486.jpg");
}
[src*="89238128.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89238128.jpg");
}
[src*="89235196.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89235196.jpg");
}
[src*="89252157.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89252157.jpg");
}
[src*="89252153.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89252153.jpg");
}
[src*="89258906.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89258906.jpg");
}
[src*="89258225.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89258225.jpg");
}
[src*="89310929.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89310929.jpg");
}
[src*="89272878.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89272878.jpg");
}
[src*="89320376.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89320376.jpg");
}
[src*="89312388.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89312388.jpg");
}
[src*="89333528.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89333528.jpg");
}
[src*="89326990.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89326990.jpg");
}
[src*="89362180.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89362180.jpg");
}
[src*="89355716.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89355716.jpg");
}
[src*="89397517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89397517.jpg");
}
[src*="89386122.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89386122.jpg");
}
[src*="89405199.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89405199.jpg");
}
[src*="89399912.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89399912.jpg");
}
[src*="8944575.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8944575.jpg");
}
[src*="89423971.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89423971.jpg");
}
[src*="89462956.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89462956.jpg");
}
[src*="89448140.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89448140.jpg");
}
[src*="89474727.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89474727.jpg");
}
[src*="89463537.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89463537.jpg");
}
[src*="89494469.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89494469.jpg");
}
[src*="89493368.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89493368.jpg");
}
[src*="8951260.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8951260.jpg");
}
[src*="8949584.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8949584.jpg");
}
[src*="89521713.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89521713.jpg");
}
[src*="89516305.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89516305.jpg");
}
[src*="89538537.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89538537.jpg");
}
[src*="89529919.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89529919.jpg");
}
[src*="89547299.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89547299.jpg");
}
[src*="89544521.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89544521.jpg");
}
[src*="89558090.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89558090.jpg");
}
[src*="8955148.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8955148.jpg");
}
[src*="89567993.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89567993.jpg");
}
[src*="89563150.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89563150.jpg");
}
[src*="89609515.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89609515.jpg");
}
[src*="89571015.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89571015.jpg");
}
[src*="89628781.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89628781.jpg");
}
[src*="89621922.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89621922.jpg");
}
[src*="89631140.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631140.jpg");
}
[src*="89631139.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631139.jpg");
}
[src*="89631142.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631142.jpg");
}
[src*="89631141.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631141.jpg");
}
[src*="89631144.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631144.jpg");
}
[src*="89631143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631143.jpg");
}
[src*="89631146.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631146.jpg");
}
[src*="89631145.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89631145.jpg");
}
[src*="8964854.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8964854.jpg");
}
[src*="89642993.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89642993.jpg");
}
[src*="8967776.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8967776.jpg");
}
[src*="89662736.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89662736.jpg");
}
[src*="89718302.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89718302.jpg");
}
[src*="89698120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89698120.jpg");
}
[src*="89731911.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89731911.jpg");
}
[src*="89719143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89719143.jpg");
}
[src*="89739383.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89739383.jpg");
}
[src*="89732524.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89732524.jpg");
}
[src*="89774530.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89774530.jpg");
}
[src*="89770167.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89770167.jpg");
}
[src*="89785779.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89785779.jpg");
}
[src*="8978197.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/8978197.jpg");
}
[src*="89801755.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89801755.jpg");
}
[src*="89792713.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89792713.jpg");
}
[src*="89818984.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89818984.jpg");
}
[src*="89810518.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89810518.jpg");
}
[src*="89856523.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89856523.jpg");
}
[src*="89832901.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89832901.jpg");
}
[src*="89882100.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89882100.jpg");
}
[src*="89870349.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89870349.jpg");
}
[src*="89893715.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89893715.jpg");
}
[src*="89883517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89883517.jpg");
}
[src*="89904598.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89904598.jpg");
}
[src*="89899996.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89899996.jpg");
}
[src*="89914395.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89914395.jpg");
}
[src*="89907227.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89907227.jpg");
}
[src*="899287.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/899287.jpg");
}
[src*="89928517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89928517.jpg");
}
[src*="89959682.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89959682.jpg");
}
[src*="89943723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89943723.jpg");
}
[src*="89987208.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89987208.jpg");
}
[src*="89974904.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89974904.jpg");
}
[src*="9000988.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9000988.jpg");
}
[src*="89997728.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/89997728.jpg");
}
[src*="90019393.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90019393.jpg");
}
[src*="90011152.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90011152.jpg");
}
[src*="90020780.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90020780.jpg");
}
[src*="90020065.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90020065.jpg");
}
[src*="90050480.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90050480.jpg");
}
[src*="90036274.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90036274.jpg");
}
[src*="900787.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/900787.jpg");
}
[src*="90075978.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90075978.jpg");
}
[src*="90122655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90122655.jpg");
}
[src*="90098780.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90098780.jpg");
}
[src*="9012916.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9012916.jpg");
}
[src*="90126061.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90126061.jpg");
}
[src*="90140980.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90140980.jpg");
}
[src*="90135989.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90135989.jpg");
}
[src*="90156158.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90156158.jpg");
}
[src*="90147755.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90147755.jpg");
}
[src*="90173539.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90173539.jpg");
}
[src*="90162951.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90162951.jpg");
}
[src*="90207654.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90207654.jpg");
}
[src*="90200789.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90200789.jpg");
}
[src*="90238142.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90238142.jpg");
}
[src*="90219263.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90219263.jpg");
}
[src*="9024198.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9024198.jpg");
}
[src*="90239723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90239723.jpg");
}
[src*="90243945.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90243945.jpg");
}
[src*="9024367.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9024367.jpg");
}
[src*="90247311.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90247311.jpg");
}
[src*="90246973.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90246973.jpg");
}
[src*="9030160.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9030160.jpg");
}
[src*="90263923.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90263923.jpg");
}
[src*="90307777.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90307777.jpg");
}
[src*="90303176.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90303176.jpg");
}
[src*="9032529.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9032529.jpg");
}
[src*="90311614.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90311614.jpg");
}
[src*="90330454.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90330454.jpg");
}
[src*="90330453.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90330453.jpg");
}
[src*="90351981.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90351981.jpg");
}
[src*="90337190.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90337190.jpg");
}
[src*="90361010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90361010.jpg");
}
[src*="90357090.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90357090.jpg");
}
[src*="90374791.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90374791.jpg");
}
[src*="90365482.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90365482.jpg");
}
[src*="90407382.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90407382.jpg");
}
[src*="90397998.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90397998.jpg");
}
[src*="904185.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/904185.jpg");
}
[src*="90411554.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90411554.jpg");
}
[src*="90432163.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90432163.jpg");
}
[src*="904186.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/904186.jpg");
}
[src*="90434926.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90434926.jpg");
}
[src*="90434657.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90434657.jpg");
}
[src*="90452877.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90452877.jpg");
}
[src*="90440725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90440725.jpg");
}
[src*="90470931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90470931.jpg");
}
[src*="90464188.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90464188.jpg");
}
[src*="9047461.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9047461.jpg");
}
[src*="9047460.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9047460.jpg");
}
[src*="90502999.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90502999.jpg");
}
[src*="90500169.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90500169.jpg");
}
[src*="90508760.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90508760.jpg");
}
[src*="90506641.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90506641.jpg");
}
[src*="90519313.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90519313.jpg");
}
[src*="90512490.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90512490.jpg");
}
[src*="90555947.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90555947.jpg");
}
[src*="9053187.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9053187.jpg");
}
[src*="9056100.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9056100.jpg");
}
[src*="90557975.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90557975.jpg");
}
[src*="90579153.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90579153.jpg");
}
[src*="90576781.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90576781.jpg");
}
[src*="90590303.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90590303.jpg");
}
[src*="90582719.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90582719.jpg");
}
[src*="90592429.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90592429.jpg");
}
[src*="90590304.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90590304.jpg");
}
[src*="90616316.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90616316.jpg");
}
[src*="9059700.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9059700.jpg");
}
[src*="90642597.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90642597.jpg");
}
[src*="90640901.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90640901.jpg");
}
[src*="90654356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90654356.jpg");
}
[src*="9064354.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9064354.jpg");
}
[src*="90669991.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90669991.jpg");
}
[src*="90660762.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90660762.jpg");
}
[src*="90673413.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90673413.jpg");
}
[src*="90673288.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90673288.jpg");
}
[src*="90727556.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90727556.jpg");
}
[src*="90726340.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90726340.jpg");
}
[src*="90740330.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90740330.jpg");
}
[src*="90740329.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90740329.jpg");
}
[src*="9074847.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9074847.jpg");
}
[src*="90743290.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90743290.jpg");
}
[src*="90764875.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90764875.jpg");
}
[src*="9076207.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9076207.jpg");
}
[src*="90807199.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90807199.jpg");
}
[src*="90790253.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90790253.jpg");
}
[src*="90810762.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90810762.jpg");
}
[src*="90809975.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90809975.jpg");
}
[src*="90844184.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90844184.jpg");
}
[src*="90812044.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90812044.jpg");
}
[src*="90873992.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90873992.jpg");
}
[src*="90846359.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90846359.jpg");
}
[src*="90884403.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90884403.jpg");
}
[src*="90876561.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90876561.jpg");
}
[src*="90885155.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90885155.jpg");
}
[src*="90884404.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90884404.jpg");
}
[src*="90908427.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90908427.jpg");
}
[src*="90887783.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90887783.jpg");
}
[src*="90928333.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90928333.jpg");
}
[src*="90925163.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90925163.jpg");
}
[src*="90951921.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90951921.jpg");
}
[src*="90934570.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90934570.jpg");
}
[src*="90957527.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90957527.jpg");
}
[src*="90953320.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90953320.jpg");
}
[src*="90963488.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90963488.jpg");
}
[src*="90960358.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90960358.jpg");
}
[src*="91020571.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91020571.jpg");
}
[src*="90980792.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/90980792.jpg");
}
[src*="9106362.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9106362.jpg");
}
[src*="91034681.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91034681.jpg");
}
[src*="91078716.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91078716.jpg");
}
[src*="91070115.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91070115.jpg");
}
[src*="91107093.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91107093.jpg");
}
[src*="9109991.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9109991.jpg");
}
[src*="91123920.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91123920.jpg");
}
[src*="91110378.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91110378.jpg");
}
[src*="9113513.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9113513.jpg");
}
[src*="91133740.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91133740.jpg");
}
[src*="91152256.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91152256.jpg");
}
[src*="91148083.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91148083.jpg");
}
[src*="91152258.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91152258.jpg");
}
[src*="91152257.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91152257.jpg");
}
[src*="911883.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/911883.jpg");
}
[src*="91182675.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91182675.jpg");
}
[src*="91231901.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91231901.jpg");
}
[src*="91188343.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91188343.jpg");
}
[src*="91258852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91258852.jpg");
}
[src*="91250514.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91250514.jpg");
}
[src*="91269402.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91269402.jpg");
}
[src*="9126351.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9126351.jpg");
}
[src*="91279700.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91279700.jpg");
}
[src*="91272072.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91272072.jpg");
}
[src*="91345518.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91345518.jpg");
}
[src*="91299846.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91299846.jpg");
}
[src*="91350799.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91350799.jpg");
}
[src*="91349449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91349449.jpg");
}
[src*="91405870.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91405870.jpg");
}
[src*="91351370.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91351370.jpg");
}
[src*="91420254.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91420254.jpg");
}
[src*="91420202.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91420202.jpg");
}
[src*="91438994.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91438994.jpg");
}
[src*="91422370.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91422370.jpg");
}
[src*="91449532.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91449532.jpg");
}
[src*="91449144.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91449144.jpg");
}
[src*="91468551.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91468551.jpg");
}
[src*="9145181.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9145181.jpg");
}
[src*="91499077.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91499077.jpg");
}
[src*="91482773.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91482773.jpg");
}
[src*="91505214.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91505214.jpg");
}
[src*="91501248.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91501248.jpg");
}
[src*="91512836.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91512836.jpg");
}
[src*="91512835.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91512835.jpg");
}
[src*="91559748.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91559748.jpg");
}
[src*="91554542.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91554542.jpg");
}
[src*="91580102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91580102.jpg");
}
[src*="9156135.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9156135.jpg");
}
[src*="91588074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91588074.jpg");
}
[src*="91584698.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91584698.jpg");
}
[src*="91596726.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91596726.jpg");
}
[src*="91595718.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91595718.jpg");
}
[src*="9159938.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9159938.jpg");
}
[src*="91597389.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91597389.jpg");
}
[src*="9161357.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9161357.jpg");
}
[src*="91607976.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91607976.jpg");
}
[src*="91646304.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91646304.jpg");
}
[src*="91623717.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91623717.jpg");
}
[src*="91662792.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91662792.jpg");
}
[src*="91650245.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91650245.jpg");
}
[src*="91665064.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91665064.jpg");
}
[src*="91663373.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91663373.jpg");
}
[src*="91677585.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91677585.jpg");
}
[src*="91668401.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91668401.jpg");
}
[src*="91697229.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91697229.jpg");
}
[src*="91691605.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91691605.jpg");
}
[src*="91712985.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91712985.jpg");
}
[src*="91711547.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91711547.jpg");
}
[src*="91731841.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91731841.jpg");
}
[src*="91718579.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91718579.jpg");
}
[src*="91754175.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91754175.jpg");
}
[src*="91742238.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91742238.jpg");
}
[src*="91781589.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91781589.jpg");
}
[src*="917796.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/917796.jpg");
}
[src*="91798373.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91798373.jpg");
}
[src*="91782219.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91782219.jpg");
}
[src*="91819979.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91819979.jpg");
}
[src*="91812341.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91812341.jpg");
}
[src*="91831066.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91831066.jpg");
}
[src*="91822647.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91822647.jpg");
}
[src*="91862578.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91862578.jpg");
}
[src*="91842653.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91842653.jpg");
}
[src*="91895091.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91895091.jpg");
}
[src*="91869203.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91869203.jpg");
}
[src*="9190563.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9190563.jpg");
}
[src*="91903221.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91903221.jpg");
}
[src*="91932350.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91932350.jpg");
}
[src*="91907707.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91907707.jpg");
}
[src*="91946859.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91946859.jpg");
}
[src*="91939608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91939608.jpg");
}
[src*="91969909.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91969909.jpg");
}
[src*="91949988.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91949988.jpg");
}
[src*="91985515.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91985515.jpg");
}
[src*="9197735.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9197735.jpg");
}
[src*="91996584.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91996584.jpg");
}
[src*="91989718.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91989718.jpg");
}
[src*="91998120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91998120.jpg");
}
[src*="91998119.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91998119.jpg");
}
[src*="92001300.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92001300.jpg");
}
[src*="91998121.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/91998121.jpg");
}
[src*="92035412.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92035412.jpg");
}
[src*="9201964.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9201964.jpg");
}
[src*="92053608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92053608.jpg");
}
[src*="92039899.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92039899.jpg");
}
[src*="92080692.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92080692.jpg");
}
[src*="92065772.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92065772.jpg");
}
[src*="92092092.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92092092.jpg");
}
[src*="92084010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92084010.jpg");
}
[src*="9212051.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9212051.jpg");
}
[src*="92099232.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92099232.jpg");
}
[src*="92142169.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92142169.jpg");
}
[src*="92125819.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92125819.jpg");
}
[src*="92200612.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92200612.jpg");
}
[src*="92170894.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92170894.jpg");
}
[src*="92219931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92219931.jpg");
}
[src*="92204263.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92204263.jpg");
}
[src*="92246806.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92246806.jpg");
}
[src*="92223641.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92223641.jpg");
}
[src*="92300891.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92300891.jpg");
}
[src*="92266279.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92266279.jpg");
}
[src*="92346415.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92346415.jpg");
}
[src*="92327802.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92327802.jpg");
}
[src*="923596.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/923596.jpg");
}
[src*="92353449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92353449.jpg");
}
[src*="92365601.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92365601.jpg");
}
[src*="92361635.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92361635.jpg");
}
[src*="92373006.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92373006.jpg");
}
[src*="9236985.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9236985.jpg");
}
[src*="92391084.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92391084.jpg");
}
[src*="92377303.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92377303.jpg");
}
[src*="92408984.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92408984.jpg");
}
[src*="92394653.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92394653.jpg");
}
[src*="92411493.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92411493.jpg");
}
[src*="92409659.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92409659.jpg");
}
[src*="92421852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92421852.jpg");
}
[src*="92418590.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92418590.jpg");
}
[src*="92450185.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92450185.jpg");
}
[src*="92435533.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92435533.jpg");
}
[src*="92510265.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92510265.jpg");
}
[src*="92481084.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92481084.jpg");
}
[src*="92518817.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92518817.jpg");
}
[src*="92512625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92512625.jpg");
}
[src*="92536468.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92536468.jpg");
}
[src*="92534075.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92534075.jpg");
}
[src*="92595545.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92595545.jpg");
}
[src*="92572371.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92572371.jpg");
}
[src*="9260791.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9260791.jpg");
}
[src*="92595643.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92595643.jpg");
}
[src*="9264485.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9264485.jpg");
}
[src*="92609670.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92609670.jpg");
}
[src*="92667214.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92667214.jpg");
}
[src*="92661479.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92661479.jpg");
}
[src*="9267769.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9267769.jpg");
}
[src*="92676637.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92676637.jpg");
}
[src*="92719314.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92719314.jpg");
}
[src*="92693205.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92693205.jpg");
}
[src*="92723496.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92723496.jpg");
}
[src*="92720564.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92720564.jpg");
}
[src*="92729410.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92729410.jpg");
}
[src*="9272381.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9272381.jpg");
}
[src*="92736188.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92736188.jpg");
}
[src*="92731455.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92731455.jpg");
}
[src*="92755808.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92755808.jpg");
}
[src*="92746535.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92746535.jpg");
}
[src*="92773018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92773018.jpg");
}
[src*="92767273.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92767273.jpg");
}
[src*="92784374.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92784374.jpg");
}
[src*="92781606.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92781606.jpg");
}
[src*="92821268.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92821268.jpg");
}
[src*="92807548.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92807548.jpg");
}
[src*="92841002.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92841002.jpg");
}
[src*="92826944.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92826944.jpg");
}
[src*="9284724.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9284724.jpg");
}
[src*="9284723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9284723.jpg");
}
[src*="92868896.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92868896.jpg");
}
[src*="92854392.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92854392.jpg");
}
[src*="9287078.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9287078.jpg");
}
[src*="92870717.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92870717.jpg");
}
[src*="92887027.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92887027.jpg");
}
[src*="92881099.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92881099.jpg");
}
[src*="92901944.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92901944.jpg");
}
[src*="92890308.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92890308.jpg");
}
[src*="92924317.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92924317.jpg");
}
[src*="92918648.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92918648.jpg");
}
[src*="9293977.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9293977.jpg");
}
[src*="92933195.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92933195.jpg");
}
[src*="92958307.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92958307.jpg");
}
[src*="92944626.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92944626.jpg");
}
[src*="92970404.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92970404.jpg");
}
[src*="92964816.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92964816.jpg");
}
[src*="92998610.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/92998610.jpg");
}
[src*="9298235.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9298235.jpg");
}
[src*="93016201.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93016201.jpg");
}
[src*="93013676.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93013676.jpg");
}
[src*="93023479.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93023479.jpg");
}
[src*="93020401.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93020401.jpg");
}
[src*="93087299.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93087299.jpg");
}
[src*="93085839.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93085839.jpg");
}
[src*="93107608.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93107608.jpg");
}
[src*="93104632.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93104632.jpg");
}
[src*="93108433.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93108433.jpg");
}
[src*="93108297.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93108297.jpg");
}
[src*="93124273.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93124273.jpg");
}
[src*="93108839.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93108839.jpg");
}
[src*="93130022.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93130022.jpg");
}
[src*="93130021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93130021.jpg");
}
[src*="93151201.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93151201.jpg");
}
[src*="93149655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93149655.jpg");
}
[src*="93187568.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93187568.jpg");
}
[src*="93157004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93157004.jpg");
}
[src*="93211836.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93211836.jpg");
}
[src*="93211810.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93211810.jpg");
}
[src*="93220472.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93220472.jpg");
}
[src*="93217231.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93217231.jpg");
}
[src*="93224848.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93224848.jpg");
}
[src*="93221206.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93221206.jpg");
}
[src*="93236220.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93236220.jpg");
}
[src*="93224849.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93224849.jpg");
}
[src*="93260132.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93260132.jpg");
}
[src*="93238626.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93238626.jpg");
}
[src*="93294869.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93294869.jpg");
}
[src*="9327502.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9327502.jpg");
}
[src*="93302695.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93302695.jpg");
}
[src*="93298460.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93298460.jpg");
}
[src*="93343894.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93343894.jpg");
}
[src*="93332803.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93332803.jpg");
}
[src*="93346024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93346024.jpg");
}
[src*="9334391.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9334391.jpg");
}
[src*="93356623.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93356623.jpg");
}
[src*="93353691.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93353691.jpg");
}
[src*="93368494.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93368494.jpg");
}
[src*="9336190.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9336190.jpg");
}
[src*="93377803.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93377803.jpg");
}
[src*="93369354.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93369354.jpg");
}
[src*="93382620.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93382620.jpg");
}
[src*="93379652.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93379652.jpg");
}
[src*="93396832.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93396832.jpg");
}
[src*="93394164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93394164.jpg");
}
[src*="93431518.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93431518.jpg");
}
[src*="9342162.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9342162.jpg");
}
[src*="93437091.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93437091.jpg");
}
[src*="93431862.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93431862.jpg");
}
[src*="93449450.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93449450.jpg");
}
[src*="93445074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93445074.jpg");
}
[src*="93469007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93469007.jpg");
}
[src*="93451636.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93451636.jpg");
}
[src*="9348522.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9348522.jpg");
}
[src*="93483212.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93483212.jpg");
}
[src*="93504463.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93504463.jpg");
}
[src*="93503294.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93503294.jpg");
}
[src*="93507434.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93507434.jpg");
}
[src*="93506862.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93506862.jpg");
}
[src*="93543806.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93543806.jpg");
}
[src*="93542102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93542102.jpg");
}
[src*="93553943.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93553943.jpg");
}
[src*="9354555.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9354555.jpg");
}
[src*="93568288.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93568288.jpg");
}
[src*="93554166.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93554166.jpg");
}
[src*="93599951.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93599951.jpg");
}
[src*="93581434.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93581434.jpg");
}
[src*="93655221.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93655221.jpg");
}
[src*="93600443.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93600443.jpg");
}
[src*="9365703.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9365703.jpg");
}
[src*="93657021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93657021.jpg");
}
[src*="93665266.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93665266.jpg");
}
[src*="93662626.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93662626.jpg");
}
[src*="93709215.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93709215.jpg");
}
[src*="93671934.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93671934.jpg");
}
[src*="93715853.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93715853.jpg");
}
[src*="93713837.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93713837.jpg");
}
[src*="93724592.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93724592.jpg");
}
[src*="93717133.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93717133.jpg");
}
[src*="93730409.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93730409.jpg");
}
[src*="93730230.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93730230.jpg");
}
[src*="93738004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93738004.jpg");
}
[src*="9373534.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9373534.jpg");
}
[src*="93749093.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93749093.jpg");
}
[src*="93747864.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93747864.jpg");
}
[src*="93775296.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93775296.jpg");
}
[src*="93751476.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93751476.jpg");
}
[src*="93816465.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93816465.jpg");
}
[src*="93788854.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93788854.jpg");
}
[src*="93850652.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93850652.jpg");
}
[src*="93830681.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93830681.jpg");
}
[src*="93889755.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93889755.jpg");
}
[src*="93882364.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93882364.jpg");
}
[src*="93895605.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93895605.jpg");
}
[src*="93892436.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93892436.jpg");
}
[src*="93912845.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93912845.jpg");
}
[src*="93900406.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93900406.jpg");
}
[src*="9391354.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9391354.jpg");
}
[src*="93912846.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93912846.jpg");
}
[src*="93920745.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93920745.jpg");
}
[src*="93920420.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93920420.jpg");
}
[src*="93946239.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93946239.jpg");
}
[src*="93927067.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93927067.jpg");
}
[src*="93969023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93969023.jpg");
}
[src*="93966624.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93966624.jpg");
}
[src*="94004268.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94004268.jpg");
}
[src*="93983867.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/93983867.jpg");
}
[src*="94022093.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94022093.jpg");
}
[src*="94016752.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94016752.jpg");
}
[src*="94042337.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94042337.jpg");
}
[src*="9402966.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9402966.jpg");
}
[src*="94068856.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94068856.jpg");
}
[src*="94046012.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94046012.jpg");
}
[src*="94079037.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94079037.jpg");
}
[src*="94073244.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94073244.jpg");
}
[src*="94092230.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94092230.jpg");
}
[src*="94081496.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94081496.jpg");
}
[src*="9409625.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9409625.jpg");
}
[src*="94096018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94096018.jpg");
}
[src*="9411399.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9411399.jpg");
}
[src*="94096616.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94096616.jpg");
}
[src*="94119974.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94119974.jpg");
}
[src*="94119480.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94119480.jpg");
}
[src*="94145021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94145021.jpg");
}
[src*="94142993.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94142993.jpg");
}
[src*="94156050.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94156050.jpg");
}
[src*="94145683.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94145683.jpg");
}
[src*="94163677.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94163677.jpg");
}
[src*="94160895.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94160895.jpg");
}
[src*="9418534.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9418534.jpg");
}
[src*="9418365.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9418365.jpg");
}
[src*="94203886.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94203886.jpg");
}
[src*="94192409.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94192409.jpg");
}
[src*="94215860.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94215860.jpg");
}
[src*="94212438.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94212438.jpg");
}
[src*="94230224.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94230224.jpg");
}
[src*="94220427.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94220427.jpg");
}
[src*="94253609.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94253609.jpg");
}
[src*="94243005.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94243005.jpg");
}
[src*="94259633.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94259633.jpg");
}
[src*="94256039.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94256039.jpg");
}
[src*="94303232.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94303232.jpg");
}
[src*="94283662.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94283662.jpg");
}
[src*="94331452.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94331452.jpg");
}
[src*="9430387.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9430387.jpg");
}
[src*="94344242.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94344242.jpg");
}
[src*="9433350.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9433350.jpg");
}
[src*="94374859.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94374859.jpg");
}
[src*="94365540.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94365540.jpg");
}
[src*="94380860.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94380860.jpg");
}
[src*="94377247.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94377247.jpg");
}
[src*="94388754.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94388754.jpg");
}
[src*="94381039.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94381039.jpg");
}
[src*="94415058.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94415058.jpg");
}
[src*="94412545.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94412545.jpg");
}
[src*="94425169.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94425169.jpg");
}
[src*="94418111.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94418111.jpg");
}
[src*="94446564.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94446564.jpg");
}
[src*="94432298.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94432298.jpg");
}
[src*="94463200.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94463200.jpg");
}
[src*="94454495.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94454495.jpg");
}
[src*="94515289.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94515289.jpg");
}
[src*="94484482.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94484482.jpg");
}
[src*="94538053.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94538053.jpg");
}
[src*="94535485.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94535485.jpg");
}
[src*="94566432.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94566432.jpg");
}
[src*="94561645.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94561645.jpg");
}
[src*="94573223.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94573223.jpg");
}
[src*="94568601.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94568601.jpg");
}
[src*="94599451.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94599451.jpg");
}
[src*="94585852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94585852.jpg");
}
[src*="94622638.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94622638.jpg");
}
[src*="94620082.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94620082.jpg");
}
[src*="94626871.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94626871.jpg");
}
[src*="94626050.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94626050.jpg");
}
[src*="94656263.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94656263.jpg");
}
[src*="94634433.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94634433.jpg");
}
[src*="94664694.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94664694.jpg");
}
[src*="94662235.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94662235.jpg");
}
[src*="94667532.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94667532.jpg");
}
[src*="94666032.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94666032.jpg");
}
[src*="94681654.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94681654.jpg");
}
[src*="94675535.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94675535.jpg");
}
[src*="94689635.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94689635.jpg");
}
[src*="94689206.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94689206.jpg");
}
[src*="94703021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94703021.jpg");
}
[src*="94693857.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94693857.jpg");
}
[src*="94739788.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94739788.jpg");
}
[src*="94716515.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94716515.jpg");
}
[src*="94770493.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94770493.jpg");
}
[src*="94766498.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94766498.jpg");
}
[src*="94773007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94773007.jpg");
}
[src*="94772232.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94772232.jpg");
}
[src*="94793422.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94793422.jpg");
}
[src*="94784213.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94784213.jpg");
}
[src*="94804055.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94804055.jpg");
}
[src*="94801854.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94801854.jpg");
}
[src*="94820406.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94820406.jpg");
}
[src*="94807487.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94807487.jpg");
}
[src*="94853057.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94853057.jpg");
}
[src*="94845226.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94845226.jpg");
}
[src*="94861297.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94861297.jpg");
}
[src*="9485511.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9485511.jpg");
}
[src*="94886282.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94886282.jpg");
}
[src*="94878265.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94878265.jpg");
}
[src*="94919024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94919024.jpg");
}
[src*="94905343.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94905343.jpg");
}
[src*="94937430.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94937430.jpg");
}
[src*="94933468.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94933468.jpg");
}
[src*="94944637.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94944637.jpg");
}
[src*="94940436.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94940436.jpg");
}
[src*="94973028.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94973028.jpg");
}
[src*="94950218.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94950218.jpg");
}
[src*="94977269.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94977269.jpg");
}
[src*="94973029.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94973029.jpg");
}
[src*="94997874.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94997874.jpg");
}
[src*="94982447.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/94982447.jpg");
}
[src*="95000001.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000001.jpg");
}
[src*="95000000.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000000.jpg");
}
[src*="95000003.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000003.jpg");
}
[src*="95000002.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000002.jpg");
}
[src*="95000005.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000005.jpg");
}
[src*="95000004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000004.jpg");
}
[src*="95000007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000007.jpg");
}
[src*="95000006.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000006.jpg");
}
[src*="95000009.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000009.jpg");
}
[src*="95000008.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000008.jpg");
}
[src*="95000011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000011.jpg");
}
[src*="95000010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000010.jpg");
}
[src*="95000013.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000013.jpg");
}
[src*="95000012.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000012.jpg");
}
[src*="95000015.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000015.jpg");
}
[src*="95000014.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000014.jpg");
}
[src*="95000017.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000017.jpg");
}
[src*="95000016.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000016.jpg");
}
[src*="95000019.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000019.jpg");
}
[src*="95000018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000018.jpg");
}
[src*="95000021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000021.jpg");
}
[src*="95000020.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000020.jpg");
}
[src*="95000023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000023.jpg");
}
[src*="95000022.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000022.jpg");
}
[src*="95000025.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000025.jpg");
}
[src*="95000024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000024.jpg");
}
[src*="95000027.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000027.jpg");
}
[src*="95000026.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000026.jpg");
}
[src*="95000029.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000029.jpg");
}
[src*="95000028.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000028.jpg");
}
[src*="95000031.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000031.jpg");
}
[src*="95000030.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000030.jpg");
}
[src*="95000033.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000033.jpg");
}
[src*="95000032.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000032.jpg");
}
[src*="95000035.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000035.jpg");
}
[src*="95000034.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000034.jpg");
}
[src*="95000037.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000037.jpg");
}
[src*="95000036.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000036.jpg");
}
[src*="95000039.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000039.jpg");
}
[src*="95000038.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000038.jpg");
}
[src*="95000041.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000041.jpg");
}
[src*="95000040.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000040.jpg");
}
[src*="95000043.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000043.jpg");
}
[src*="95000042.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000042.jpg");
}
[src*="95000045.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000045.jpg");
}
[src*="95000044.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000044.jpg");
}
[src*="95000047.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000047.jpg");
}
[src*="95000046.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000046.jpg");
}
[src*="95000049.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000049.jpg");
}
[src*="95000048.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000048.jpg");
}
[src*="95000051.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000051.jpg");
}
[src*="95000050.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000050.jpg");
}
[src*="95000053.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000053.jpg");
}
[src*="95000052.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000052.jpg");
}
[src*="95000055.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000055.jpg");
}
[src*="95000054.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000054.jpg");
}
[src*="95000057.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000057.jpg");
}
[src*="95000056.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000056.jpg");
}
[src*="95000059.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000059.jpg");
}
[src*="95000058.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000058.jpg");
}
[src*="95000061.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000061.jpg");
}
[src*="95000060.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000060.jpg");
}
[src*="95000063.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000063.jpg");
}
[src*="95000062.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000062.jpg");
}
[src*="95000065.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000065.jpg");
}
[src*="95000064.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000064.jpg");
}
[src*="95000067.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000067.jpg");
}
[src*="95000066.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000066.jpg");
}
[src*="95000069.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000069.jpg");
}
[src*="95000068.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000068.jpg");
}
[src*="95000071.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000071.jpg");
}
[src*="95000070.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000070.jpg");
}
[src*="95000073.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000073.jpg");
}
[src*="95000072.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000072.jpg");
}
[src*="95000075.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000075.jpg");
}
[src*="95000074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000074.jpg");
}
[src*="95000077.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000077.jpg");
}
[src*="95000076.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000076.jpg");
}
[src*="95000079.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000079.jpg");
}
[src*="95000078.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000078.jpg");
}
[src*="95000081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000081.jpg");
}
[src*="95000080.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000080.jpg");
}
[src*="95000083.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000083.jpg");
}
[src*="95000082.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000082.jpg");
}
[src*="95000085.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000085.jpg");
}
[src*="95000084.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000084.jpg");
}
[src*="95000087.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000087.jpg");
}
[src*="95000086.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000086.jpg");
}
[src*="95000089.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000089.jpg");
}
[src*="95000088.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000088.jpg");
}
[src*="95000091.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000091.jpg");
}
[src*="95000090.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000090.jpg");
}
[src*="95000093.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000093.jpg");
}
[src*="95000092.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000092.jpg");
}
[src*="95000095.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000095.jpg");
}
[src*="95000094.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000094.jpg");
}
[src*="95000097.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000097.jpg");
}
[src*="95000096.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000096.jpg");
}
[src*="95000099.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000099.jpg");
}
[src*="95000098.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000098.jpg");
}
[src*="95000101.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000101.jpg");
}
[src*="95000100.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000100.jpg");
}
[src*="95000103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000103.jpg");
}
[src*="95000102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000102.jpg");
}
[src*="95000105.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000105.jpg");
}
[src*="95000104.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000104.jpg");
}
[src*="95000107.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000107.jpg");
}
[src*="95000106.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000106.jpg");
}
[src*="95000109.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000109.jpg");
}
[src*="95000108.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000108.jpg");
}
[src*="95000111.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000111.jpg");
}
[src*="95000110.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000110.jpg");
}
[src*="95000113.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000113.jpg");
}
[src*="95000112.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000112.jpg");
}
[src*="95000115.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000115.jpg");
}
[src*="95000114.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000114.jpg");
}
[src*="95000117.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000117.jpg");
}
[src*="95000116.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000116.jpg");
}
[src*="95000119.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000119.jpg");
}
[src*="95000118.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000118.jpg");
}
[src*="95000121.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000121.jpg");
}
[src*="95000120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000120.jpg");
}
[src*="95000123.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000123.jpg");
}
[src*="95000122.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000122.jpg");
}
[src*="95000125.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000125.jpg");
}
[src*="95000124.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000124.jpg");
}
[src*="95000127.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000127.jpg");
}
[src*="95000126.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000126.jpg");
}
[src*="95000129.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000129.jpg");
}
[src*="95000128.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000128.jpg");
}
[src*="95000131.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000131.jpg");
}
[src*="95000130.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000130.jpg");
}
[src*="95000133.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000133.jpg");
}
[src*="95000132.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000132.jpg");
}
[src*="95000135.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000135.jpg");
}
[src*="95000134.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000134.jpg");
}
[src*="95000137.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000137.jpg");
}
[src*="95000136.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000136.jpg");
}
[src*="95000139.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000139.jpg");
}
[src*="95000138.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000138.jpg");
}
[src*="95000141.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000141.jpg");
}
[src*="95000140.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000140.jpg");
}
[src*="95000143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000143.jpg");
}
[src*="95000142.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000142.jpg");
}
[src*="95000145.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000145.jpg");
}
[src*="95000144.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000144.jpg");
}
[src*="95000147.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000147.jpg");
}
[src*="95000146.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000146.jpg");
}
[src*="95000149.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000149.jpg");
}
[src*="95000148.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000148.jpg");
}
[src*="95000151.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000151.jpg");
}
[src*="95000150.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000150.jpg");
}
[src*="95000153.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000153.jpg");
}
[src*="95000152.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000152.jpg");
}
[src*="95000155.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000155.jpg");
}
[src*="95000154.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000154.jpg");
}
[src*="95000157.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000157.jpg");
}
[src*="95000156.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000156.jpg");
}
[src*="95000160.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000160.jpg");
}
[src*="95000158.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000158.jpg");
}
[src*="95000162.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000162.jpg");
}
[src*="95000161.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000161.jpg");
}
[src*="95000164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000164.jpg");
}
[src*="95000163.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000163.jpg");
}
[src*="95000166.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000166.jpg");
}
[src*="95000165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000165.jpg");
}
[src*="95000169.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000169.jpg");
}
[src*="95000167.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000167.jpg");
}
[src*="95000171.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000171.jpg");
}
[src*="95000170.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000170.jpg");
}
[src*="95000173.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000173.jpg");
}
[src*="95000172.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000172.jpg");
}
[src*="95000175.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000175.jpg");
}
[src*="95000174.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000174.jpg");
}
[src*="95000177.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000177.jpg");
}
[src*="95000176.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95000176.jpg");
}
[src*="95026693.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95026693.jpg");
}
[src*="95004025.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95004025.jpg");
}
[src*="95040215.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95040215.jpg");
}
[src*="95027497.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95027497.jpg");
}
[src*="95081386.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95081386.jpg");
}
[src*="95051344.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95051344.jpg");
}
[src*="95084054.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95084054.jpg");
}
[src*="95083785.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95083785.jpg");
}
[src*="95096437.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95096437.jpg");
}
[src*="95090813.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95090813.jpg");
}
[src*="95132338.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95132338.jpg");
}
[src*="95113856.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95113856.jpg");
}
[src*="95166228.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95166228.jpg");
}
[src*="95144193.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95144193.jpg");
}
[src*="95174353.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95174353.jpg");
}
[src*="95169481.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95169481.jpg");
}
[src*="95194279.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95194279.jpg");
}
[src*="95178994.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95178994.jpg");
}
[src*="95200001.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200001.jpg");
}
[src*="95200000.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200000.jpg");
}
[src*="95200003.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200003.jpg");
}
[src*="95200002.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200002.jpg");
}
[src*="95200005.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200005.jpg");
}
[src*="95200004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200004.jpg");
}
[src*="95200007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200007.jpg");
}
[src*="95200006.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200006.jpg");
}
[src*="95200009.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200009.jpg");
}
[src*="95200008.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200008.jpg");
}
[src*="95200011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200011.jpg");
}
[src*="95200010.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200010.jpg");
}
[src*="95200013.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200013.jpg");
}
[src*="95200012.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200012.jpg");
}
[src*="95200015.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200015.jpg");
}
[src*="95200014.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200014.jpg");
}
[src*="95200017.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200017.jpg");
}
[src*="95200016.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200016.jpg");
}
[src*="95200019.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200019.jpg");
}
[src*="95200018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200018.jpg");
}
[src*="95200021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200021.jpg");
}
[src*="95200020.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200020.jpg");
}
[src*="95200023.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200023.jpg");
}
[src*="95200022.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200022.jpg");
}
[src*="95200025.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200025.jpg");
}
[src*="95200024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200024.jpg");
}
[src*="95200102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200102.jpg");
}
[src*="95200101.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95200101.jpg");
}
[src*="95214051.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95214051.jpg");
}
[src*="95204084.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95204084.jpg");
}
[src*="95220856.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95220856.jpg");
}
[src*="95218695.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95218695.jpg");
}
[src*="9523599.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9523599.jpg");
}
[src*="95231062.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95231062.jpg");
}
[src*="95239444.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95239444.jpg");
}
[src*="95238394.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95238394.jpg");
}
[src*="95265975.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95265975.jpg");
}
[src*="95254840.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95254840.jpg");
}
[src*="95286165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95286165.jpg");
}
[src*="95281259.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95281259.jpg");
}
[src*="95291684.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95291684.jpg");
}
[src*="95288024.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95288024.jpg");
}
[src*="95326659.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95326659.jpg");
}
[src*="95308449.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95308449.jpg");
}
[src*="95360850.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95360850.jpg");
}
[src*="95352218.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95352218.jpg");
}
[src*="95376428.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95376428.jpg");
}
[src*="95362816.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95362816.jpg");
}
[src*="9540040.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9540040.jpg");
}
[src*="95395761.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95395761.jpg");
}
[src*="95403418.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95403418.jpg");
}
[src*="95401059.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95401059.jpg");
}
[src*="95443805.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95443805.jpg");
}
[src*="95442074.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95442074.jpg");
}
[src*="95451366.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95451366.jpg");
}
[src*="95448692.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95448692.jpg");
}
[src*="95457011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95457011.jpg");
}
[src*="95453143.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95453143.jpg");
}
[src*="95472621.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95472621.jpg");
}
[src*="95466842.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95466842.jpg");
}
[src*="9547962.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9547962.jpg");
}
[src*="95474755.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95474755.jpg");
}
[src*="95492061.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95492061.jpg");
}
[src*="95486586.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95486586.jpg");
}
[src*="95503687.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95503687.jpg");
}
[src*="95500396.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95500396.jpg");
}
[src*="95507060.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95507060.jpg");
}
[src*="95504778.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95504778.jpg");
}
[src*="95515060.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95515060.jpg");
}
[src*="95511642.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95511642.jpg");
}
[src*="95526884.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95526884.jpg");
}
[src*="95519486.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95519486.jpg");
}
[src*="95561280.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95561280.jpg");
}
[src*="9553721.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9553721.jpg");
}
[src*="95600067.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95600067.jpg");
}
[src*="95568112.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95568112.jpg");
}
[src*="95612049.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95612049.jpg");
}
[src*="9560338.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9560338.jpg");
}
[src*="95621257.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95621257.jpg");
}
[src*="95614612.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95614612.jpg");
}
[src*="95638658.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95638658.jpg");
}
[src*="95637655.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95637655.jpg");
}
[src*="95658967.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95658967.jpg");
}
[src*="95642274.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95642274.jpg");
}
[src*="95697223.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95697223.jpg");
}
[src*="95676943.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95676943.jpg");
}
[src*="95714077.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95714077.jpg");
}
[src*="95701283.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95701283.jpg");
}
[src*="95735217.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95735217.jpg");
}
[src*="95727991.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95727991.jpg");
}
[src*="95750695.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95750695.jpg");
}
[src*="95744531.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95744531.jpg");
}
[src*="95772051.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95772051.jpg");
}
[src*="9576193.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9576193.jpg");
}
[src*="95788410.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95788410.jpg");
}
[src*="95784434.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95784434.jpg");
}
[src*="95816395.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95816395.jpg");
}
[src*="95789089.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95789089.jpg");
}
[src*="95833645.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95833645.jpg");
}
[src*="95825679.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95825679.jpg");
}
[src*="95841282.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95841282.jpg");
}
[src*="9583383.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9583383.jpg");
}
[src*="95905259.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95905259.jpg");
}
[src*="95888876.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95888876.jpg");
}
[src*="95923441.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95923441.jpg");
}
[src*="95920682.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95920682.jpg");
}
[src*="95943058.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95943058.jpg");
}
[src*="95929069.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95929069.jpg");
}
[src*="95956346.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95956346.jpg");
}
[src*="95952802.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95952802.jpg");
}
[src*="95992081.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95992081.jpg");
}
[src*="9596126.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9596126.jpg");
}
[src*="96005454.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96005454.jpg");
}
[src*="95993388.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/95993388.jpg");
}
[src*="96012004.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96012004.jpg");
}
[src*="96008713.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96008713.jpg");
}
[src*="96029574.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96029574.jpg");
}
[src*="96015976.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96015976.jpg");
}
[src*="96051150.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96051150.jpg");
}
[src*="9603356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9603356.jpg");
}
[src*="96073342.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96073342.jpg");
}
[src*="96055137.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96055137.jpg");
}
[src*="96100333.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96100333.jpg");
}
[src*="96099959.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96099959.jpg");
}
[src*="96146814.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96146814.jpg");
}
[src*="96142517.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96142517.jpg");
}
[src*="96150936.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96150936.jpg");
}
[src*="96148285.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96148285.jpg");
}
[src*="96163807.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96163807.jpg");
}
[src*="96157835.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96157835.jpg");
}
[src*="96182448.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96182448.jpg");
}
[src*="9617996.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9617996.jpg");
}
[src*="96218085.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96218085.jpg");
}
[src*="96216229.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96216229.jpg");
}
[src*="9622164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9622164.jpg");
}
[src*="96220350.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96220350.jpg");
}
[src*="96227613.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96227613.jpg");
}
[src*="96223501.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96223501.jpg");
}
[src*="9628664.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9628664.jpg");
}
[src*="96235275.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96235275.jpg");
}
[src*="96300057.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96300057.jpg");
}
[src*="96287685.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96287685.jpg");
}
[src*="96331676.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96331676.jpg");
}
[src*="96316857.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96316857.jpg");
}
[src*="9633505.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9633505.jpg");
}
[src*="96334243.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96334243.jpg");
}
[src*="96355986.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96355986.jpg");
}
[src*="96345188.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96345188.jpg");
}
[src*="9637706.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9637706.jpg");
}
[src*="96363153.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96363153.jpg");
}
[src*="96381979.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96381979.jpg");
}
[src*="96380700.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96380700.jpg");
}
[src*="96384007.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96384007.jpg");
}
[src*="96383838.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96383838.jpg");
}
[src*="96404912.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96404912.jpg");
}
[src*="96385345.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96385345.jpg");
}
[src*="96427353.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96427353.jpg");
}
[src*="96420087.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96420087.jpg");
}
[src*="96434581.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96434581.jpg");
}
[src*="96428622.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96428622.jpg");
}
[src*="96458440.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96458440.jpg");
}
[src*="96457619.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96457619.jpg");
}
[src*="96471335.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96471335.jpg");
}
[src*="96470883.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96470883.jpg");
}
[src*="96501677.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96501677.jpg");
}
[src*="96474800.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96474800.jpg");
}
[src*="96540.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96540.jpg");
}
[src*="9653271.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9653271.jpg");
}
[src*="96561011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96561011.jpg");
}
[src*="96553688.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96553688.jpg");
}
[src*="96570609.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96570609.jpg");
}
[src*="96565487.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96565487.jpg");
}
[src*="96594609.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96594609.jpg");
}
[src*="96592102.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96592102.jpg");
}
[src*="96598015.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96598015.jpg");
}
[src*="9659580.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9659580.jpg");
}
[src*="96622984.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96622984.jpg");
}
[src*="96606246.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96606246.jpg");
}
[src*="96643568.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96643568.jpg");
}
[src*="96631852.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96631852.jpg");
}
[src*="9666558.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9666558.jpg");
}
[src*="96653775.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96653775.jpg");
}
[src*="96682430.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96682430.jpg");
}
[src*="96677818.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96677818.jpg");
}
[src*="96700602.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96700602.jpg");
}
[src*="96699830.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96699830.jpg");
}
[src*="96704974.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96704974.jpg");
}
[src*="96704018.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96704018.jpg");
}
[src*="96733134.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96733134.jpg");
}
[src*="96729612.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96729612.jpg");
}
[src*="96765646.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96765646.jpg");
}
[src*="96746083.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96746083.jpg");
}
[src*="96782886.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96782886.jpg");
}
[src*="9677699.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9677699.jpg");
}
[src*="967928.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/967928.jpg");
}
[src*="96789758.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96789758.jpg");
}
[src*="96851799.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96851799.jpg");
}
[src*="96802306.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96802306.jpg");
}
[src*="96864105.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96864105.jpg");
}
[src*="96857854.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96857854.jpg");
}
[src*="96872283.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96872283.jpg");
}
[src*="96864811.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96864811.jpg");
}
[src*="96890582.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96890582.jpg");
}
[src*="96875080.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96875080.jpg");
}
[src*="96914272.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96914272.jpg");
}
[src*="96907086.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96907086.jpg");
}
[src*="96938777.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96938777.jpg");
}
[src*="96930127.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96930127.jpg");
}
[src*="96947648.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96947648.jpg");
}
[src*="96938986.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96938986.jpg");
}
[src*="96967123.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96967123.jpg");
}
[src*="96965364.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96965364.jpg");
}
[src*="97000273.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97000273.jpg");
}
[src*="96981563.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/96981563.jpg");
}
[src*="97007933.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97007933.jpg");
}
[src*="97001138.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97001138.jpg");
}
[src*="97021916.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97021916.jpg");
}
[src*="97017120.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97017120.jpg");
}
[src*="97024987.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97024987.jpg");
}
[src*="97023549.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97023549.jpg");
}
[src*="97077563.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97077563.jpg");
}
[src*="97064649.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97064649.jpg");
}
[src*="97120394.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97120394.jpg");
}
[src*="97093037.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97093037.jpg");
}
[src*="97151365.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97151365.jpg");
}
[src*="97127906.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97127906.jpg");
}
[src*="97168905.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97168905.jpg");
}
[src*="97165977.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97165977.jpg");
}
[src*="97170107.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97170107.jpg");
}
[src*="97169186.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97169186.jpg");
}
[src*="9718968.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9718968.jpg");
}
[src*="97173708.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97173708.jpg");
}
[src*="9720537.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9720537.jpg");
}
[src*="97204936.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97204936.jpg");
}
[src*="97219708.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97219708.jpg");
}
[src*="97211663.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97211663.jpg");
}
[src*="97234686.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97234686.jpg");
}
[src*="97232518.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97232518.jpg");
}
[src*="97240271.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97240271.jpg");
}
[src*="97240270.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97240270.jpg");
}
[src*="97273514.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97273514.jpg");
}
[src*="97268402.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97268402.jpg");
}
[src*="97342942.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97342942.jpg");
}
[src*="97317530.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97317530.jpg");
}
[src*="97362768.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97362768.jpg");
}
[src*="97360116.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97360116.jpg");
}
[src*="97396380.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97396380.jpg");
}
[src*="97385276.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97385276.jpg");
}
[src*="9742784.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9742784.jpg");
}
[src*="97403510.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97403510.jpg");
}
[src*="97439308.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97439308.jpg");
}
[src*="97433739.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97433739.jpg");
}
[src*="9744376.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9744376.jpg");
}
[src*="97439806.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97439806.jpg");
}
[src*="97452818.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97452818.jpg");
}
[src*="97452817.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97452817.jpg");
}
[src*="97466712.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97466712.jpg");
}
[src*="97466438.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97466438.jpg");
}
[src*="97489701.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97489701.jpg");
}
[src*="9748752.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9748752.jpg");
}
[src*="97526666.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97526666.jpg");
}
[src*="97520701.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97520701.jpg");
}
[src*="9753964.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9753964.jpg");
}
[src*="975299.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/975299.jpg");
}
[src*="97570038.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97570038.jpg");
}
[src*="97567736.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97567736.jpg");
}
[src*="97584500.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97584500.jpg");
}
[src*="97574404.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97574404.jpg");
}
[src*="97590747.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97590747.jpg");
}
[src*="97588916.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97588916.jpg");
}
[src*="97612389.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97612389.jpg");
}
[src*="97590748.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97590748.jpg");
}
[src*="97617181.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97617181.jpg");
}
[src*="97616504.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97616504.jpg");
}
[src*="97642679.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97642679.jpg");
}
[src*="97623219.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97623219.jpg");
}
[src*="97651498.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97651498.jpg");
}
[src*="97648103.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97648103.jpg");
}
[src*="97687912.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97687912.jpg");
}
[src*="9765723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9765723.jpg");
}
[src*="97697447.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97697447.jpg");
}
[src*="97688360.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97688360.jpg");
}
[src*="97705809.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97705809.jpg");
}
[src*="97697678.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97697678.jpg");
}
[src*="97738431.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97738431.jpg");
}
[src*="97729135.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97729135.jpg");
}
[src*="97783659.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97783659.jpg");
}
[src*="97750534.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97750534.jpg");
}
[src*="97795930.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97795930.jpg");
}
[src*="97792247.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97792247.jpg");
}
[src*="9780364.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9780364.jpg");
}
[src*="97803170.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97803170.jpg");
}
[src*="97809599.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97809599.jpg");
}
[src*="97806240.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97806240.jpg");
}
[src*="97836203.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97836203.jpg");
}
[src*="97811903.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97811903.jpg");
}
[src*="9786492.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9786492.jpg");
}
[src*="97843505.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97843505.jpg");
}
[src*="97896503.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97896503.jpg");
}
[src*="97885363.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97885363.jpg");
}
[src*="9791914.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9791914.jpg");
}
[src*="97904474.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97904474.jpg");
}
[src*="97923414.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97923414.jpg");
}
[src*="97922283.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97922283.jpg");
}
[src*="97940434.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97940434.jpg");
}
[src*="97926515.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97926515.jpg");
}
[src*="97949165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97949165.jpg");
}
[src*="97947705.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97947705.jpg");
}
[src*="97973387.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97973387.jpg");
}
[src*="97970833.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97970833.jpg");
}
[src*="97997309.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97997309.jpg");
}
[src*="97973962.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/97973962.jpg");
}
[src*="98024118.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98024118.jpg");
}
[src*="98012938.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98012938.jpg");
}
[src*="98049038.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98049038.jpg");
}
[src*="98045062.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98045062.jpg");
}
[src*="98069388.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98069388.jpg");
}
[src*="98049915.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98049915.jpg");
}
[src*="98076754.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98076754.jpg");
}
[src*="98075147.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98075147.jpg");
}
[src*="980973.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/980973.jpg");
}
[src*="98095162.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98095162.jpg");
}
[src*="98139712.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98139712.jpg");
}
[src*="98126725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98126725.jpg");
}
[src*="98147766.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98147766.jpg");
}
[src*="98143165.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98143165.jpg");
}
[src*="981540.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/981540.jpg");
}
[src*="98153934.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98153934.jpg");
}
[src*="98162021.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98162021.jpg");
}
[src*="98154550.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98154550.jpg");
}
[src*="98169343.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98169343.jpg");
}
[src*="98162242.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98162242.jpg");
}
[src*="98225108.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98225108.jpg");
}
[src*="9817927.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9817927.jpg");
}
[src*="98239899.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98239899.jpg");
}
[src*="98229575.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98229575.jpg");
}
[src*="98259197.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98259197.jpg");
}
[src*="98252586.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98252586.jpg");
}
[src*="98266377.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98266377.jpg");
}
[src*="98263709.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98263709.jpg");
}
[src*="98280324.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98280324.jpg");
}
[src*="98273947.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98273947.jpg");
}
[src*="98299011.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98299011.jpg");
}
[src*="98287529.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98287529.jpg");
}
[src*="9831539.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9831539.jpg");
}
[src*="98301564.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98301564.jpg");
}
[src*="98338152.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98338152.jpg");
}
[src*="98336111.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98336111.jpg");
}
[src*="9837195.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9837195.jpg");
}
[src*="98358303.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98358303.jpg");
}
[src*="98380593.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98380593.jpg");
}
[src*="98374133.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98374133.jpg");
}
[src*="984114.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/984114.jpg");
}
[src*="983995.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/983995.jpg");
}
[src*="98427577.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98427577.jpg");
}
[src*="98414735.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98414735.jpg");
}
[src*="98434877.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98434877.jpg");
}
[src*="98431356.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98431356.jpg");
}
[src*="98444741.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98444741.jpg");
}
[src*="98437424.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98437424.jpg");
}
[src*="98456117.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98456117.jpg");
}
[src*="98446407.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98446407.jpg");
}
[src*="9848939.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9848939.jpg");
}
[src*="9845733.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9845733.jpg");
}
[src*="98495314.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98495314.jpg");
}
[src*="98494543.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98494543.jpg");
}
[src*="98502114.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98502114.jpg");
}
[src*="98502113.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98502113.jpg");
}
[src*="9852718.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9852718.jpg");
}
[src*="98502115.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98502115.jpg");
}
[src*="98552723.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98552723.jpg");
}
[src*="98535702.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98535702.jpg");
}
[src*="98558751.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98558751.jpg");
}
[src*="98555327.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98555327.jpg");
}
[src*="98585345.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98585345.jpg");
}
[src*="98582704.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98582704.jpg");
}
[src*="98637386.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98637386.jpg");
}
[src*="9861795.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9861795.jpg");
}
[src*="98645731.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98645731.jpg");
}
[src*="98643358.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98643358.jpg");
}
[src*="98666339.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98666339.jpg");
}
[src*="98649372.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98649372.jpg");
}
[src*="98700941.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98700941.jpg");
}
[src*="98672567.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98672567.jpg");
}
[src*="98719226.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98719226.jpg");
}
[src*="98707192.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98707192.jpg");
}
[src*="98745000.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98745000.jpg");
}
[src*="987311.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/987311.jpg");
}
[src*="98780137.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98780137.jpg");
}
[src*="98777036.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98777036.jpg");
}
[src*="98795934.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98795934.jpg");
}
[src*="98792570.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98792570.jpg");
}
[src*="98827725.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98827725.jpg");
}
[src*="98818516.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98818516.jpg");
}
[src*="98850929.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98850929.jpg");
}
[src*="98847704.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98847704.jpg");
}
[src*="98865920.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98865920.jpg");
}
[src*="98864751.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98864751.jpg");
}
[src*="98881931.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98881931.jpg");
}
[src*="98867329.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98867329.jpg");
}
[src*="98884569.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98884569.jpg");
}
[src*="9888196.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9888196.jpg");
}
[src*="98898173.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98898173.jpg");
}
[src*="98891840.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98891840.jpg");
}
[src*="98918572.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98918572.jpg");
}
[src*="98905.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98905.jpg");
}
[src*="98931003.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98931003.jpg");
}
[src*="98927491.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98927491.jpg");
}
[src*="98954106.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98954106.jpg");
}
[src*="98935722.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98935722.jpg");
}
[src*="98956134.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98956134.jpg");
}
[src*="98954375.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98954375.jpg");
}
[src*="9897998.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9897998.jpg");
}
[src*="98978921.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98978921.jpg");
}
[src*="99000107.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99000107.jpg");
}
[src*="98999181.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/98999181.jpg");
}
[src*="99002135.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99002135.jpg");
}
[src*="99000151.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99000151.jpg");
}
[src*="99004752.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99004752.jpg");
}
[src*="99004583.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99004583.jpg");
}
[src*="99013397.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99013397.jpg");
}
[src*="99011763.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99011763.jpg");
}
[src*="99050989.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99050989.jpg");
}
[src*="99030164.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99030164.jpg");
}
[src*="99070951.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99070951.jpg");
}
[src*="99064191.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99064191.jpg");
}
[src*="99092624.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99092624.jpg");
}
[src*="99075257.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99075257.jpg");
}
[src*="99111753.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99111753.jpg");
}
[src*="9910360.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/9910360.jpg");
}
[src*="99150062.jpg"] {
content:url("https://raw.githubusercontent.com/yasuotornado/Anime-Cards/master/images/99150062.jpg");
}
} | 0.186095 | 0.32857 |
.el-loading-mask{
background-color: rgba(0,0,0,0.3) !important;
}
.el-loading-mask .el-loading-spinner .path{
stroke: #0ff;
}
.self-define-modal.el-dialog__wrapper{
position: fixed;
width: 100%;
height: 100%;
}
.text-overflow{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.el-cascader__dropdown{
border-color: #75cbf2;
}
.el-cascader-menus{
background: #002037;
border: 1px solid #75cbf2;
}
.el-cascader-menu{
/* background-color: transparent; */
background: #002037;
height: 7.5rem;
min-width: 206px;
}
.el-cascader-menu__item{
padding: 5px 5px 5px 10px;
}
.el-cascader-menu__item--extensible:after{
right: 10px;
}
.el-cascader-menu__item span{
font-size: 14px;
color: #75CBF2;
}
.el-cascader-menu{
border-right-color: #75cbf2;
}
.el-cascader-menu__item:hover{
background-color: transparent;
}
.el-cascader-menu__item:focus:not(:active), .el-cascader-menu__item:hover{
background-color: transparent;
}
.el-cascader__label{
color: #eeeeee;
}
.el-cascader-menu__item:focus:not(:active) span, .el-cascader-menu__item:hover span{
color: #0ff;
}
.el-cascader-menu__item.is-active span{
color: #0ff;
}
.el-date-picker__time-header{
border-bottom-color:#31859C ;
}
.el-picker-panel__footer{
background-color: transparent;
border-top-color:#31859C ;
}
.el-picker-panel__footer .el-button.is-plain:focus,.el-picker-panel__footer .el-button.is-plain:hover{
background: transparent;
border-color: #0478B7;
color: #0478B7;
}
.el-form-item__error{
display: none;
}
.is-error .el-checkbox-button .el-checkbox-button__inner{
color: #f56c6c;
}
.dialog-fade-leave-active,.dialog-fade-leave-to{
animation-fill-mode:forwards !important;
}
.el-month-table td{
padding: 0px;
}
.el-month-table td .cell{
width: 48px;
height: 48px;
line-height: 48px;
color: #75cbf2;
font-size: 14px;
border-radius: 50%;
}
.el-date-editor .el-input__suffix{
display: none;
}
.el-date-picker__header {
background: #004e81;
border-radius: 2px 1px 1px 1px;
margin: 0;
height: 36px;
padding: 0 8px;
}
.el-year-table td{
padding: 10px 3px;
}
.el-date-picker__header--bordered{
border-bottom: none;
}
.el-year-table td .cell:hover, .el-year-table td.current:not(.disabled) .cell{
color: #409EFF;
}
.el-month-table td .cell:hover, .el-month-table td.current:not(.disabled) .cell{
color: white;
background: #409EFF;
}
.h-time-c{
z-index: 4 !important;
}
.h-number-text{
font-family:"DIN Medium";
}
.el-form-item{
margin-bottom: 1.1rem;
}
.el-button{
padding: 0.6rem 1rem;
font-size: 0.7rem;
}
.el-select-dropdown__empty{
padding: 0px;
font-size: 16px;
}
/*右对齐的dialog*/
.h-right-dialog{
text-align: right;
position: absolute;
bottom: auto;
left: auto;
top: 6vh;
}
.h-right-dialog .el-dialog{
display: inline-block;
width:45rem;
min-width:750px;
margin: 0px !important;
/*margin-right: 20px;*/
}
.h-right-dialog.h-mini-dialog .el-dialog{
width:720px;
}
.h-right-dialog .el-dialog__header{
text-align: left;
background: transparent;
}
.h-right-dialog .el-dialog__body{
padding: 0px 0px 10px 0px !important;
}
.h-right-dialog .h-pager{
margin-top: -5px;
}
.h-right-dialog .el-table td, .h-right-dialog .el-table th{
/*padding: 5px 0px !important;*/
cursor: pointer;
}
/*.h-right-dialog .el-table td .cell, .h-right-dialog .el-table th .cell{
font-size: 16px;
}*/
.el-dialog .el-table .cell.el-tooltip{
overflow: hidden !important;
}
.h-right-dialog .el-dialog--center.el-dialog{
text-align: center;
}
.h-dialog-dropdown .el-dialog__body .el-scrollbar{
overflow: hidden !important;
}
.v-modal{
background: transparent;
}
.el-input{
font-size: 0.7rem;
}
.el-textarea__inner{
font-family: "Microsoft YaHei";
font-size: 0.8rem;
overflow: auto;
background: #00365c;
border: none;
color: #eee;
}
.el-form-item__content,.el-form-item__label{
line-height: 2rem;
}
.el-dialog{
margin-top: 2rem !important;
background: #002037;
border:1px solid rgba(117,203,242,1);
}
.el-dialog__header{
color: white;
background: #014674;
/*text-align: center;*/
padding:0.5rem;
}
.el-dialog__header *{
font-size: 0.9rem;
color: white !important;
}
.el-dialog__header .el-dialog__title{
line-height: 1.2rem;
}
.el-dialog__headerbtn{
top: 0.6rem;
right: 0.6rem;
z-index:999;
}
.el-dialog__body{
padding: 0.75rem !important;
}
.el-dialog__footer{
padding: 0.5rem 1rem 1rem !important;
}
.el-form-item__label{
font-size: 0.9rem;
color: #75CBF2;
}
/*.el-input,.el-textarea{
font-size: 16px;
}*/
.el-input__inner,.el-textarea__inner{
background: #00365C;
border: none;
color: #eeeeee;
height: 2rem;
line-height: 2rem;
outline: 0;
padding: 0 0.75rem;
}
.el-input.el-input--suffix .el-input__inner{
padding-right: 1.5rem;
}
.el-table .el-loading-mask{
background: rgba(1, 70, 116, 0.5);
top: 2.3rem;
}
.el-table thead{
color: #75CBF2;
}
.el-table th{
background-color:#004E81 ;
border: none !important;
text-align: center;
}
.el-table, .el-table__expanded-cell{
background: #052D48;
}
.el-table td{
border: none !important;
text-align: center;
}
.el-table--border::after, .el-table--group::after, .el-table::before{
background: transparent;
}
.el-table{
color: #75CBF2;
}
.el-table tr{
background:#001C2E;
}
.el-table td .cell,.el-table td .cell *{
font-size: 0.8rem;
}
.el-table .cell{
line-height: 1.2rem;
}
.el-table td, .el-table th{
padding: 0.5rem 0px;
}
.el-table--striped .el-table__body tr.el-table__row--striped td{
background:#00243C !important;
}
.el-table--enable-row-hover .el-table__body tr:hover{
background: #003b62;
}
.el-table--enable-row-hover .el-table__body tr:hover>td{
background: transparent;
color: white;
}
.el-table--striped .el-table__body tr.el-table__row--striped.current-row td, .el-table__body tr.current-row>td, .el-table__body tr.hover-row.current-row>td, .el-table__body tr.hover-row.el-table__row--striped.current-row>td, .el-table__body tr.hover-row.el-table__row--striped>td, .el-table__body tr.hover-row>td{
background: transparent;
}
.el-table__empty-block{
min-height: 44px;
}
.el-table__empty-text{
line-height: 44px;
}
.el-tooltip__popper{
font-size: 14px;
max-width: 40%;
}
*{
border-collapse: collapse !important;
border-spacing: 0px !important;
}
.warning.el-button--text{
color: #FFCC00;
}
.el-dropdown{
color: #00FFFF;
cursor: pointer;
}
.el-scrollbar__wrap{
max-height: 150px !important;
}
.el-input-group__append, .el-input-group__prepend{
background-color: #004E81;
color: #75CBF2;
border:none
}
.el-button--default,.el-button--default:focus,.el-button--default:hover{
background: transparent;
border-color: #0478B7;
color: #0478B7;
}
.el-button--primary{
background-color: #0478B7;
color: white;
}
.el-button--primary:focus, .el-button--primary:hover{
background-color: #0478B7;
color: white;
}
.el-select-dropdown{
min-width: 211px !important;
}
.el-input-group__append, .el-input-group__prepend{
padding: 0px 10px;
}
.el-input__suffix{
background: #004E81;
padding: 0px 0.35rem;
right: 0px;
}
.h-drop.el-dropdown-menu{
padding: 0.5rem 0px;
}
.h-drop .el-dropdown-menu__item{
line-height: 1.8rem;
font-size: 0.7rem;
padding: 0px 1rem;
}
.el-select .el-input .el-select__caret{
font-size: 0.9rem;
color: #75CBF2;
width: 1.25rem;
line-height: 1rem;
}
.el-tree-node__label{
color: #75CBF2;
font-size: 0.8rem;
}
.el-tree-node__content{
background: transparent !important;
}
.el-tree-node__content:hover{
background: transparent;
}
.el-tree-node__expand-icon{
color: #75CBF2;
}
.text-center{
text-align: center;
}
.h-pager{
overflow: hidden !important;
}
.h-pager .el-pagination{
float: right;
margin-top: 0.75rem;
}
.el-pagination button, .el-pagination span:not([class*=suffix]){
font-size: 0.8rem;
color: #FEFEFE;
margin-left: 0.75rem;
}
.el-pagination__editor.el-input .el-input__inner{
border: 1px solid white;
background: transparent;
}
.el-pagination .btn-next .el-icon, .el-pagination .btn-prev .el-icon{
display: none;
}
.el-pagination .btn-prev{
background: url(../../../static/images/last.png) no-repeat center;
margin-right: -0.7rem;
background-size:1.2rem;
}
.el-pagination .btn-next{
background: url(../../../static/images/next.png) no-repeat center;
margin-left: -0.7rem;
background-size:1.2rem ;
}
.el-pagination button:disabled{
background-color: transparent;
}
.el-pagination .first{
background: url(../../../static/images/first_page.png) no-repeat center;
margin-right: -0.5rem;
background-size: 1.2rem;
}
.el-pagination .end{
background: url(../../../static/images/last_page.png) no-repeat center;
margin-left: -0.5rem;
background-size: 1.2rem;
}
.el-pagination button:disabled{
cursor: pointer;
}
.el-pagination__editor.el-input{
width: 2.5rem;
}
.el-pagination__editor.el-input .el-input__inner{
height: 1.4rem;
}
.el-pagination .btn-prev{
padding-right: 0.6rem;
}
.el-pagination button{
padding: 0px 0.3rem;
}
.el-pagination button, .el-pagination span:not([class*=suffix]){
min-width: 1.8rem;
height: 1.4rem;
line-height: 1.4rem;
}
.page-count{
float: right;
color: white;
margin-top: 0.75rem;
line-height: 1.4rem;
font-size: 0.8rem;
padding: 2px 0px;
vertical-align: top;
margin-left: 0.5rem;
margin-right: 0.75rem;
}
.el-button--text{
color: #00FFFF;
}
.el-button--text:hover,.el-button--text:active,.el-button--text:focus{
color: #00FFFF;
}
.warning.el-button--text:hover,.warning.el-button--text:active,.warning.el-button--text:focus{
color:#FFCC00;
}
.el-checkbox__inner{
width: 1rem;
height: 1rem;
border: 1px solid #75CBF2;
background: transparent;
}
.el-checkbox__inner::after{
top: 0.1rem;
left: 0.25rem;
width: 0.3rem;
height: 0.5rem;
}
.el-checkbox__input.is-indeterminate .el-checkbox__inner::before{
top: 0.35rem;
left: 0px;
width: 1rem;
height: 0.25rem;
}
.el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner{
background: #0479B7;
border: 1px solid #0479B7;
}
.el-tree-node__content{
height: 1.3rem;
margin-bottom: 0.4rem;
}
.el-button+.el-button{
margin-left: 0.5rem;
}
.el-select-dropdown{
background: #002037;
border: 1px solid #75cbf2;
}
.el-popper[x-placement^=bottom] .popper__arrow::after{
border-bottom-color:#002037 ;
}
.el-popper[x-placement^=bottom] .popper__arrow{
border-bottom-color:#75cbf2;
}
.el-select-dropdown__item.hover, .el-select-dropdown__item:hover{
background: transparent;
color: #0ff !important;
/*color: #409EFF !important;*/
}
.el-select-dropdown__item:hover{
color: #00FFFF;
}
.el-select-dropdown__item span{
font-size: 0.8rem;
}
.el-select-dropdown__wrap .el-select-dropdown__item{
color: #75CBF2;
font-size: 0.7rem;
text-align: left;
height: 1.7rem;
line-height: 1.7rem;
}
.el-select-dropdown__item.selected{
color: #00FFFF;
}
.el-select-dropdown__list{
padding: 0px;
}
.el-select-dropdown{
padding:6px 0px;
}
.el-dialog--center .el-dialog__body{
text-align: left;
}
*::-webkit-scrollbar {
width: 0.4rem;
height: 0.4rem;
}
/*定义滚动条的轨道,内阴影及圆角*/
*::-webkit-scrollbar-track {
background-color: rgba(0, 0, 0, 0.45);
}
/*定义滑块,内阴影及圆角*/
*::-webkit-scrollbar-thumb {
border-radius: 0.4rem;
background-color: #1d6e96;
}
/*下拉框滚动条*/
.el-scrollbar__bar{
display: none;
}
.h-disable{
opacity: 0.6;
}
.el-form .el-date-editor--daterange.el-input__inner{
width: 100%;
}
.el-date-editor .el-range__icon,.el-date-editor .el-range-separator{
line-height: 1.6rem !important;
}
.el-date-editor .el-range-input, .el-date-editor .el-range-separator,.el-input__icon{
font-size: 0.8rem !important;
color: #ccc !important;
background: transparent !important;
} | src/assets/styles/elementUi.css | .el-loading-mask{
background-color: rgba(0,0,0,0.3) !important;
}
.el-loading-mask .el-loading-spinner .path{
stroke: #0ff;
}
.self-define-modal.el-dialog__wrapper{
position: fixed;
width: 100%;
height: 100%;
}
.text-overflow{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.el-cascader__dropdown{
border-color: #75cbf2;
}
.el-cascader-menus{
background: #002037;
border: 1px solid #75cbf2;
}
.el-cascader-menu{
/* background-color: transparent; */
background: #002037;
height: 7.5rem;
min-width: 206px;
}
.el-cascader-menu__item{
padding: 5px 5px 5px 10px;
}
.el-cascader-menu__item--extensible:after{
right: 10px;
}
.el-cascader-menu__item span{
font-size: 14px;
color: #75CBF2;
}
.el-cascader-menu{
border-right-color: #75cbf2;
}
.el-cascader-menu__item:hover{
background-color: transparent;
}
.el-cascader-menu__item:focus:not(:active), .el-cascader-menu__item:hover{
background-color: transparent;
}
.el-cascader__label{
color: #eeeeee;
}
.el-cascader-menu__item:focus:not(:active) span, .el-cascader-menu__item:hover span{
color: #0ff;
}
.el-cascader-menu__item.is-active span{
color: #0ff;
}
.el-date-picker__time-header{
border-bottom-color:#31859C ;
}
.el-picker-panel__footer{
background-color: transparent;
border-top-color:#31859C ;
}
.el-picker-panel__footer .el-button.is-plain:focus,.el-picker-panel__footer .el-button.is-plain:hover{
background: transparent;
border-color: #0478B7;
color: #0478B7;
}
.el-form-item__error{
display: none;
}
.is-error .el-checkbox-button .el-checkbox-button__inner{
color: #f56c6c;
}
.dialog-fade-leave-active,.dialog-fade-leave-to{
animation-fill-mode:forwards !important;
}
.el-month-table td{
padding: 0px;
}
.el-month-table td .cell{
width: 48px;
height: 48px;
line-height: 48px;
color: #75cbf2;
font-size: 14px;
border-radius: 50%;
}
.el-date-editor .el-input__suffix{
display: none;
}
.el-date-picker__header {
background: #004e81;
border-radius: 2px 1px 1px 1px;
margin: 0;
height: 36px;
padding: 0 8px;
}
.el-year-table td{
padding: 10px 3px;
}
.el-date-picker__header--bordered{
border-bottom: none;
}
.el-year-table td .cell:hover, .el-year-table td.current:not(.disabled) .cell{
color: #409EFF;
}
.el-month-table td .cell:hover, .el-month-table td.current:not(.disabled) .cell{
color: white;
background: #409EFF;
}
.h-time-c{
z-index: 4 !important;
}
.h-number-text{
font-family:"DIN Medium";
}
.el-form-item{
margin-bottom: 1.1rem;
}
.el-button{
padding: 0.6rem 1rem;
font-size: 0.7rem;
}
.el-select-dropdown__empty{
padding: 0px;
font-size: 16px;
}
/*右对齐的dialog*/
.h-right-dialog{
text-align: right;
position: absolute;
bottom: auto;
left: auto;
top: 6vh;
}
.h-right-dialog .el-dialog{
display: inline-block;
width:45rem;
min-width:750px;
margin: 0px !important;
/*margin-right: 20px;*/
}
.h-right-dialog.h-mini-dialog .el-dialog{
width:720px;
}
.h-right-dialog .el-dialog__header{
text-align: left;
background: transparent;
}
.h-right-dialog .el-dialog__body{
padding: 0px 0px 10px 0px !important;
}
.h-right-dialog .h-pager{
margin-top: -5px;
}
.h-right-dialog .el-table td, .h-right-dialog .el-table th{
/*padding: 5px 0px !important;*/
cursor: pointer;
}
/*.h-right-dialog .el-table td .cell, .h-right-dialog .el-table th .cell{
font-size: 16px;
}*/
.el-dialog .el-table .cell.el-tooltip{
overflow: hidden !important;
}
.h-right-dialog .el-dialog--center.el-dialog{
text-align: center;
}
.h-dialog-dropdown .el-dialog__body .el-scrollbar{
overflow: hidden !important;
}
.v-modal{
background: transparent;
}
.el-input{
font-size: 0.7rem;
}
.el-textarea__inner{
font-family: "Microsoft YaHei";
font-size: 0.8rem;
overflow: auto;
background: #00365c;
border: none;
color: #eee;
}
.el-form-item__content,.el-form-item__label{
line-height: 2rem;
}
.el-dialog{
margin-top: 2rem !important;
background: #002037;
border:1px solid rgba(117,203,242,1);
}
.el-dialog__header{
color: white;
background: #014674;
/*text-align: center;*/
padding:0.5rem;
}
.el-dialog__header *{
font-size: 0.9rem;
color: white !important;
}
.el-dialog__header .el-dialog__title{
line-height: 1.2rem;
}
.el-dialog__headerbtn{
top: 0.6rem;
right: 0.6rem;
z-index:999;
}
.el-dialog__body{
padding: 0.75rem !important;
}
.el-dialog__footer{
padding: 0.5rem 1rem 1rem !important;
}
.el-form-item__label{
font-size: 0.9rem;
color: #75CBF2;
}
/*.el-input,.el-textarea{
font-size: 16px;
}*/
.el-input__inner,.el-textarea__inner{
background: #00365C;
border: none;
color: #eeeeee;
height: 2rem;
line-height: 2rem;
outline: 0;
padding: 0 0.75rem;
}
.el-input.el-input--suffix .el-input__inner{
padding-right: 1.5rem;
}
.el-table .el-loading-mask{
background: rgba(1, 70, 116, 0.5);
top: 2.3rem;
}
.el-table thead{
color: #75CBF2;
}
.el-table th{
background-color:#004E81 ;
border: none !important;
text-align: center;
}
.el-table, .el-table__expanded-cell{
background: #052D48;
}
.el-table td{
border: none !important;
text-align: center;
}
.el-table--border::after, .el-table--group::after, .el-table::before{
background: transparent;
}
.el-table{
color: #75CBF2;
}
.el-table tr{
background:#001C2E;
}
.el-table td .cell,.el-table td .cell *{
font-size: 0.8rem;
}
.el-table .cell{
line-height: 1.2rem;
}
.el-table td, .el-table th{
padding: 0.5rem 0px;
}
.el-table--striped .el-table__body tr.el-table__row--striped td{
background:#00243C !important;
}
.el-table--enable-row-hover .el-table__body tr:hover{
background: #003b62;
}
.el-table--enable-row-hover .el-table__body tr:hover>td{
background: transparent;
color: white;
}
.el-table--striped .el-table__body tr.el-table__row--striped.current-row td, .el-table__body tr.current-row>td, .el-table__body tr.hover-row.current-row>td, .el-table__body tr.hover-row.el-table__row--striped.current-row>td, .el-table__body tr.hover-row.el-table__row--striped>td, .el-table__body tr.hover-row>td{
background: transparent;
}
.el-table__empty-block{
min-height: 44px;
}
.el-table__empty-text{
line-height: 44px;
}
.el-tooltip__popper{
font-size: 14px;
max-width: 40%;
}
*{
border-collapse: collapse !important;
border-spacing: 0px !important;
}
.warning.el-button--text{
color: #FFCC00;
}
.el-dropdown{
color: #00FFFF;
cursor: pointer;
}
.el-scrollbar__wrap{
max-height: 150px !important;
}
.el-input-group__append, .el-input-group__prepend{
background-color: #004E81;
color: #75CBF2;
border:none
}
.el-button--default,.el-button--default:focus,.el-button--default:hover{
background: transparent;
border-color: #0478B7;
color: #0478B7;
}
.el-button--primary{
background-color: #0478B7;
color: white;
}
.el-button--primary:focus, .el-button--primary:hover{
background-color: #0478B7;
color: white;
}
.el-select-dropdown{
min-width: 211px !important;
}
.el-input-group__append, .el-input-group__prepend{
padding: 0px 10px;
}
.el-input__suffix{
background: #004E81;
padding: 0px 0.35rem;
right: 0px;
}
.h-drop.el-dropdown-menu{
padding: 0.5rem 0px;
}
.h-drop .el-dropdown-menu__item{
line-height: 1.8rem;
font-size: 0.7rem;
padding: 0px 1rem;
}
.el-select .el-input .el-select__caret{
font-size: 0.9rem;
color: #75CBF2;
width: 1.25rem;
line-height: 1rem;
}
.el-tree-node__label{
color: #75CBF2;
font-size: 0.8rem;
}
.el-tree-node__content{
background: transparent !important;
}
.el-tree-node__content:hover{
background: transparent;
}
.el-tree-node__expand-icon{
color: #75CBF2;
}
.text-center{
text-align: center;
}
.h-pager{
overflow: hidden !important;
}
.h-pager .el-pagination{
float: right;
margin-top: 0.75rem;
}
.el-pagination button, .el-pagination span:not([class*=suffix]){
font-size: 0.8rem;
color: #FEFEFE;
margin-left: 0.75rem;
}
.el-pagination__editor.el-input .el-input__inner{
border: 1px solid white;
background: transparent;
}
.el-pagination .btn-next .el-icon, .el-pagination .btn-prev .el-icon{
display: none;
}
.el-pagination .btn-prev{
background: url(../../../static/images/last.png) no-repeat center;
margin-right: -0.7rem;
background-size:1.2rem;
}
.el-pagination .btn-next{
background: url(../../../static/images/next.png) no-repeat center;
margin-left: -0.7rem;
background-size:1.2rem ;
}
.el-pagination button:disabled{
background-color: transparent;
}
.el-pagination .first{
background: url(../../../static/images/first_page.png) no-repeat center;
margin-right: -0.5rem;
background-size: 1.2rem;
}
.el-pagination .end{
background: url(../../../static/images/last_page.png) no-repeat center;
margin-left: -0.5rem;
background-size: 1.2rem;
}
.el-pagination button:disabled{
cursor: pointer;
}
.el-pagination__editor.el-input{
width: 2.5rem;
}
.el-pagination__editor.el-input .el-input__inner{
height: 1.4rem;
}
.el-pagination .btn-prev{
padding-right: 0.6rem;
}
.el-pagination button{
padding: 0px 0.3rem;
}
.el-pagination button, .el-pagination span:not([class*=suffix]){
min-width: 1.8rem;
height: 1.4rem;
line-height: 1.4rem;
}
.page-count{
float: right;
color: white;
margin-top: 0.75rem;
line-height: 1.4rem;
font-size: 0.8rem;
padding: 2px 0px;
vertical-align: top;
margin-left: 0.5rem;
margin-right: 0.75rem;
}
.el-button--text{
color: #00FFFF;
}
.el-button--text:hover,.el-button--text:active,.el-button--text:focus{
color: #00FFFF;
}
.warning.el-button--text:hover,.warning.el-button--text:active,.warning.el-button--text:focus{
color:#FFCC00;
}
.el-checkbox__inner{
width: 1rem;
height: 1rem;
border: 1px solid #75CBF2;
background: transparent;
}
.el-checkbox__inner::after{
top: 0.1rem;
left: 0.25rem;
width: 0.3rem;
height: 0.5rem;
}
.el-checkbox__input.is-indeterminate .el-checkbox__inner::before{
top: 0.35rem;
left: 0px;
width: 1rem;
height: 0.25rem;
}
.el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner{
background: #0479B7;
border: 1px solid #0479B7;
}
.el-tree-node__content{
height: 1.3rem;
margin-bottom: 0.4rem;
}
.el-button+.el-button{
margin-left: 0.5rem;
}
.el-select-dropdown{
background: #002037;
border: 1px solid #75cbf2;
}
.el-popper[x-placement^=bottom] .popper__arrow::after{
border-bottom-color:#002037 ;
}
.el-popper[x-placement^=bottom] .popper__arrow{
border-bottom-color:#75cbf2;
}
.el-select-dropdown__item.hover, .el-select-dropdown__item:hover{
background: transparent;
color: #0ff !important;
/*color: #409EFF !important;*/
}
.el-select-dropdown__item:hover{
color: #00FFFF;
}
.el-select-dropdown__item span{
font-size: 0.8rem;
}
.el-select-dropdown__wrap .el-select-dropdown__item{
color: #75CBF2;
font-size: 0.7rem;
text-align: left;
height: 1.7rem;
line-height: 1.7rem;
}
.el-select-dropdown__item.selected{
color: #00FFFF;
}
.el-select-dropdown__list{
padding: 0px;
}
.el-select-dropdown{
padding:6px 0px;
}
.el-dialog--center .el-dialog__body{
text-align: left;
}
*::-webkit-scrollbar {
width: 0.4rem;
height: 0.4rem;
}
/*定义滚动条的轨道,内阴影及圆角*/
*::-webkit-scrollbar-track {
background-color: rgba(0, 0, 0, 0.45);
}
/*定义滑块,内阴影及圆角*/
*::-webkit-scrollbar-thumb {
border-radius: 0.4rem;
background-color: #1d6e96;
}
/*下拉框滚动条*/
.el-scrollbar__bar{
display: none;
}
.h-disable{
opacity: 0.6;
}
.el-form .el-date-editor--daterange.el-input__inner{
width: 100%;
}
.el-date-editor .el-range__icon,.el-date-editor .el-range-separator{
line-height: 1.6rem !important;
}
.el-date-editor .el-range-input, .el-date-editor .el-range-separator,.el-input__icon{
font-size: 0.8rem !important;
color: #ccc !important;
background: transparent !important;
} | 0.297572 | 0.048473 |
body {
overflow: visible;
}
.sign-up-container {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: var(--theme-background-body-medium);
width: calc(100vw / 9 * 7);
max-width: 1520px;
border: 1px solid var(--theme-border-color);
margin: 0 auto;
padding: .5rem;
}
select {
background-color: var(--theme-background-body-medium);
color: var(--theme-text);
-webkit-appearance: none;
border: none;
appearance: none; /* Remove default arrow */
width: calc(100vw / 4 * 3);
max-width: calc(100% - 1rem);
}
.selectMultiple {
position: relative;
}
.selectMultiple select {
display: none;
}
.container label {
margin: .5rem;
color: var(--theme-text);
}
option {
margin: 1rem;
}
textarea {
width: calc(100% - 1rem);
height: calc(100% - 1rem);
color: var(--theme-text);
resize: none;
border: none;
}
.selectMultiple {
position: relative;
}
.selectMultiple select {
display: none;
}
.selectMultiple > div {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
font-size: 16px;
min-height: 44px;
margin: 0;
}
.selectMultiple > div .arrow {
right: 1px;
top: 0;
bottom: 0;
cursor: pointer;
width: 28px;
position: absolute;
}
.selectMultiple > div .arrow:before, .selectMultiple > div .arrow:after {
content: "";
position: absolute;
width: 2px;
border-bottom: 8px solid var(--theme-text);
top: 43%;
transition: all 0.3s ease;
}
.selectMultiple > div .arrow:before {
right: 12px;
transform: rotate(-130deg);
}
.selectMultiple > div .arrow:after {
left: 9px;
transform: rotate(130deg);
}
.selectMultiple > div span {
color: #99A3BA;
display: block;
position: absolute;
cursor: pointer;
line-height: 28px;
transition: all 0.3s ease;
margin: 0;
left: 0;
}
.selectMultiple > div span.hide {
opacity: 0;
visibility: hidden;
transform: translate(-4px, 0);
}
.selectMultiple > div a {
position: relative;
padding: 0 24px 6px 8px;
line-height: 28px;
color: var(--theme-text);
display: inline-block;
vertical-align: top;
margin: 0 6px 0 0;
border: none;
}
.selectMultiple > div a em {
font-style: normal;
display: block;
white-space: nowrap;
color: var(--theme-text);
}
.selectMultiple > div a:before {
content: "";
left: 0;
top: 0;
bottom: 6px;
width: 100%;
position: absolute;
display: block;
z-index: -1;
border-radius: 4px;
}
.selectMultiple > div a i {
cursor: pointer;
position: absolute;
top: 0;
right: 0;
width: 24px;
height: 28px;
display: block;
}
.selectMultiple > div a i:before, .selectMultiple > div a i:after {
content: "";
display: block;
width: 2px;
height: 10px;
position: absolute;
left: 50%;
top: 50%;
background: var(--theme-primary-base);
border-radius: 1px;
}
.selectMultiple > div a i:before {
transform: translate(-50%, -50%) rotate(45deg);
}
.selectMultiple > div a i:after {
transform: translate(-50%, -50%) rotate(-45deg);
}
.selectMultiple > div a.notShown {
opacity: 0;
transition: opacity 0.3s ease;
}
.selectMultiple > div a.notShown:before {
width: 28px;
transition: width 0.45s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.2s;
}
.selectMultiple > div a.notShown i {
opacity: 0;
transition: all 0.3s ease 0.3s;
}
.selectMultiple > div a.notShown em {
opacity: 0;
transform: translate(-6px, 0);
transition: all 0.4s ease 0.3s;
}
.selectMultiple > div a.notShown.shown {
opacity: 1;
}
.selectMultiple > div a.notShown.shown:before {
width: 100%;
}
.selectMultiple > div a.notShown.shown i {
opacity: 1;
}
.selectMultiple > div a.notShown.shown em {
opacity: 1;
transform: translate(0, 0);
}
.selectMultiple > div a.remove:before {
width: 28px;
transition: width 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0s;
}
.selectMultiple > div a.remove i {
opacity: 0;
transition: all 0.3s ease 0s;
}
.selectMultiple > div a.remove em {
opacity: 0;
transform: translate(-12px, 0);
transition: all 0.4s ease 0s;
}
.selectMultiple > div a.remove.disappear {
opacity: 0;
transition: opacity 0.5s ease 0s;
}
.selectMultiple > ul {
margin: 0;
padding: 0;
list-style: none;
font-size: 16px;
z-index: 1;
position: absolute;
top: 100%;
background-color: var(--theme-background-body-medium);
left: 0;
right: 0;
visibility: hidden;
opacity: 0;
border: 1px solid var(--theme-primary-base);
transform: translate(0, 20px) scale(0.8);
transform-origin: 0 0;
transition: all 0.4s ease, transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), filter 0.3s ease 0.2s;
}
.selectMultiple > ul li {
color: var(--theme-text);
padding: 12px 16px;
cursor: pointer;
overflow: hidden;
position: relative;
}
.selectMultiple > ul li:hover {
background: var(--theme-border-color);
color: var(--theme-text);
}
.selectMultiple > ul li:after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 6px;
height: 6px;
background: rgba(0, 0, 0, 0.4);
opacity: 0;
transform: scale(1, 1) translate(-50%, -50%);
transform-origin: 50% 50%;
}
.selectMultiple > ul li.beforeRemove {
border-radius: 0 0 8px 8px;
}
.selectMultiple > ul li.beforeRemove:first-child {
border-radius: 8px;
}
.selectMultiple > ul li.afterRemove {
border-radius: 8px 8px 0 0;
}
.selectMultiple > ul li.afterRemove:last-child {
border-radius: 8px;
}
.selectMultiple > ul li.remove {
transform: scale(0);
opacity: 0;
}
.selectMultiple > ul li.remove:after {
-webkit-animation: ripple 0.4s ease-out;
animation: ripple 0.4s ease-out;
}
.selectMultiple > ul li.notShown {
display: none;
transform: scale(0);
opacity: 0;
transition: transform 0.35s ease, opacity 0.4s ease;
}
.selectMultiple > ul li.notShown.show {
transform: scale(1);
opacity: 1;
}
.selectMultiple.open > div .arrow:before {
transform: rotate(-50deg);
}
.selectMultiple.open > div .arrow:after {
transform: rotate(50deg);
}
.selectMultiple.open > ul {
transform: translate(0, 12px) scale(1);
opacity: 1;
visibility: visible;
}
@-webkit-keyframes ripple {
0% {
transform: scale(0, 0);
opacity: 1;
}
100% {
opacity: 0;
transform: scale(50, 50);
}
}
@keyframes ripple {
0% {
transform: scale(0, 0);
opacity: 1;
}
25% {
transform: scale(30, 30);
opacity: 1;
}
100% {
opacity: 0;
transform: scale(50, 50);
}
} | site/css/sign-up.css | body {
overflow: visible;
}
.sign-up-container {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: var(--theme-background-body-medium);
width: calc(100vw / 9 * 7);
max-width: 1520px;
border: 1px solid var(--theme-border-color);
margin: 0 auto;
padding: .5rem;
}
select {
background-color: var(--theme-background-body-medium);
color: var(--theme-text);
-webkit-appearance: none;
border: none;
appearance: none; /* Remove default arrow */
width: calc(100vw / 4 * 3);
max-width: calc(100% - 1rem);
}
.selectMultiple {
position: relative;
}
.selectMultiple select {
display: none;
}
.container label {
margin: .5rem;
color: var(--theme-text);
}
option {
margin: 1rem;
}
textarea {
width: calc(100% - 1rem);
height: calc(100% - 1rem);
color: var(--theme-text);
resize: none;
border: none;
}
.selectMultiple {
position: relative;
}
.selectMultiple select {
display: none;
}
.selectMultiple > div {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
font-size: 16px;
min-height: 44px;
margin: 0;
}
.selectMultiple > div .arrow {
right: 1px;
top: 0;
bottom: 0;
cursor: pointer;
width: 28px;
position: absolute;
}
.selectMultiple > div .arrow:before, .selectMultiple > div .arrow:after {
content: "";
position: absolute;
width: 2px;
border-bottom: 8px solid var(--theme-text);
top: 43%;
transition: all 0.3s ease;
}
.selectMultiple > div .arrow:before {
right: 12px;
transform: rotate(-130deg);
}
.selectMultiple > div .arrow:after {
left: 9px;
transform: rotate(130deg);
}
.selectMultiple > div span {
color: #99A3BA;
display: block;
position: absolute;
cursor: pointer;
line-height: 28px;
transition: all 0.3s ease;
margin: 0;
left: 0;
}
.selectMultiple > div span.hide {
opacity: 0;
visibility: hidden;
transform: translate(-4px, 0);
}
.selectMultiple > div a {
position: relative;
padding: 0 24px 6px 8px;
line-height: 28px;
color: var(--theme-text);
display: inline-block;
vertical-align: top;
margin: 0 6px 0 0;
border: none;
}
.selectMultiple > div a em {
font-style: normal;
display: block;
white-space: nowrap;
color: var(--theme-text);
}
.selectMultiple > div a:before {
content: "";
left: 0;
top: 0;
bottom: 6px;
width: 100%;
position: absolute;
display: block;
z-index: -1;
border-radius: 4px;
}
.selectMultiple > div a i {
cursor: pointer;
position: absolute;
top: 0;
right: 0;
width: 24px;
height: 28px;
display: block;
}
.selectMultiple > div a i:before, .selectMultiple > div a i:after {
content: "";
display: block;
width: 2px;
height: 10px;
position: absolute;
left: 50%;
top: 50%;
background: var(--theme-primary-base);
border-radius: 1px;
}
.selectMultiple > div a i:before {
transform: translate(-50%, -50%) rotate(45deg);
}
.selectMultiple > div a i:after {
transform: translate(-50%, -50%) rotate(-45deg);
}
.selectMultiple > div a.notShown {
opacity: 0;
transition: opacity 0.3s ease;
}
.selectMultiple > div a.notShown:before {
width: 28px;
transition: width 0.45s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.2s;
}
.selectMultiple > div a.notShown i {
opacity: 0;
transition: all 0.3s ease 0.3s;
}
.selectMultiple > div a.notShown em {
opacity: 0;
transform: translate(-6px, 0);
transition: all 0.4s ease 0.3s;
}
.selectMultiple > div a.notShown.shown {
opacity: 1;
}
.selectMultiple > div a.notShown.shown:before {
width: 100%;
}
.selectMultiple > div a.notShown.shown i {
opacity: 1;
}
.selectMultiple > div a.notShown.shown em {
opacity: 1;
transform: translate(0, 0);
}
.selectMultiple > div a.remove:before {
width: 28px;
transition: width 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0s;
}
.selectMultiple > div a.remove i {
opacity: 0;
transition: all 0.3s ease 0s;
}
.selectMultiple > div a.remove em {
opacity: 0;
transform: translate(-12px, 0);
transition: all 0.4s ease 0s;
}
.selectMultiple > div a.remove.disappear {
opacity: 0;
transition: opacity 0.5s ease 0s;
}
.selectMultiple > ul {
margin: 0;
padding: 0;
list-style: none;
font-size: 16px;
z-index: 1;
position: absolute;
top: 100%;
background-color: var(--theme-background-body-medium);
left: 0;
right: 0;
visibility: hidden;
opacity: 0;
border: 1px solid var(--theme-primary-base);
transform: translate(0, 20px) scale(0.8);
transform-origin: 0 0;
transition: all 0.4s ease, transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), filter 0.3s ease 0.2s;
}
.selectMultiple > ul li {
color: var(--theme-text);
padding: 12px 16px;
cursor: pointer;
overflow: hidden;
position: relative;
}
.selectMultiple > ul li:hover {
background: var(--theme-border-color);
color: var(--theme-text);
}
.selectMultiple > ul li:after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 6px;
height: 6px;
background: rgba(0, 0, 0, 0.4);
opacity: 0;
transform: scale(1, 1) translate(-50%, -50%);
transform-origin: 50% 50%;
}
.selectMultiple > ul li.beforeRemove {
border-radius: 0 0 8px 8px;
}
.selectMultiple > ul li.beforeRemove:first-child {
border-radius: 8px;
}
.selectMultiple > ul li.afterRemove {
border-radius: 8px 8px 0 0;
}
.selectMultiple > ul li.afterRemove:last-child {
border-radius: 8px;
}
.selectMultiple > ul li.remove {
transform: scale(0);
opacity: 0;
}
.selectMultiple > ul li.remove:after {
-webkit-animation: ripple 0.4s ease-out;
animation: ripple 0.4s ease-out;
}
.selectMultiple > ul li.notShown {
display: none;
transform: scale(0);
opacity: 0;
transition: transform 0.35s ease, opacity 0.4s ease;
}
.selectMultiple > ul li.notShown.show {
transform: scale(1);
opacity: 1;
}
.selectMultiple.open > div .arrow:before {
transform: rotate(-50deg);
}
.selectMultiple.open > div .arrow:after {
transform: rotate(50deg);
}
.selectMultiple.open > ul {
transform: translate(0, 12px) scale(1);
opacity: 1;
visibility: visible;
}
@-webkit-keyframes ripple {
0% {
transform: scale(0, 0);
opacity: 1;
}
100% {
opacity: 0;
transform: scale(50, 50);
}
}
@keyframes ripple {
0% {
transform: scale(0, 0);
opacity: 1;
}
25% {
transform: scale(30, 30);
opacity: 1;
}
100% {
opacity: 0;
transform: scale(50, 50);
}
} | 0.375248 | 0.070304 |
.app {
max-width: 1600px;
width: 100%;
height: 100%;
padding: 5%;
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: column;
}
.header {
font-size: 3em;
}
.content {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
max-height: 97vh;
}
.group_title{
padding: 8px;
}
.column_container{
display:flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
width: 40%;
padding: 2%;
margin: 10px;
border-radius: 2px;
}
.paper_container{
border: 1px solid lightgrey;
border-radius: 2px;
padding: 8px;
margin-bottom: 8px;
background-color: 'white';
display: flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
width: 91%;
min-height: 65px;
overflow-y: auto;
padding: 15px;
}
.task_container{
min-height: 85px;
}
.paper_container_empty {
border: 1px solid lightgrey;
border-radius: 2px;
padding: 8px;
margin-bottom: 8px;
background-color: 'white';
display: flex;
align-items: center;
justify-content: center;
}
.task_title, .user_name{
font-size: 1.5em !important;
color: #202020 !important;
}
.task_description, .user_nickname{
width: 100%;
color: #202020 !important;
}
.user_nickname{
padding: 0 0 0 5px !important;
}
.grow {
flex-grow: 1;
}
.title_with_options {
width: 100%;
display: flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: row;
}
.flex-row {
display: flex;
align-items: center;
flex-direction: row;
}
.pointer {
cursor: pointer;
align-items: center;
}
.modal-content{
display: flex;
align-items: flex-start;
flex-direction: column;
padding: 15px 0;
}
.modal-list{
width: 100%;
padding-top: 15px;
}
.author{
font-size: 0.7rem;
text-align: right;
}
@media (max-width: 800px) {
.content{
flex-direction: column;
}
.column_container {
width: 100%;
}
.user_name {
width: 74%;
}
.grow {
flex-grow: 0;
}
} | src/App.css | .app {
max-width: 1600px;
width: 100%;
height: 100%;
padding: 5%;
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: column;
}
.header {
font-size: 3em;
}
.content {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
max-height: 97vh;
}
.group_title{
padding: 8px;
}
.column_container{
display:flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
width: 40%;
padding: 2%;
margin: 10px;
border-radius: 2px;
}
.paper_container{
border: 1px solid lightgrey;
border-radius: 2px;
padding: 8px;
margin-bottom: 8px;
background-color: 'white';
display: flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
width: 91%;
min-height: 65px;
overflow-y: auto;
padding: 15px;
}
.task_container{
min-height: 85px;
}
.paper_container_empty {
border: 1px solid lightgrey;
border-radius: 2px;
padding: 8px;
margin-bottom: 8px;
background-color: 'white';
display: flex;
align-items: center;
justify-content: center;
}
.task_title, .user_name{
font-size: 1.5em !important;
color: #202020 !important;
}
.task_description, .user_nickname{
width: 100%;
color: #202020 !important;
}
.user_nickname{
padding: 0 0 0 5px !important;
}
.grow {
flex-grow: 1;
}
.title_with_options {
width: 100%;
display: flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: row;
}
.flex-row {
display: flex;
align-items: center;
flex-direction: row;
}
.pointer {
cursor: pointer;
align-items: center;
}
.modal-content{
display: flex;
align-items: flex-start;
flex-direction: column;
padding: 15px 0;
}
.modal-list{
width: 100%;
padding-top: 15px;
}
.author{
font-size: 0.7rem;
text-align: right;
}
@media (max-width: 800px) {
.content{
flex-direction: column;
}
.column_container {
width: 100%;
}
.user_name {
width: 74%;
}
.grow {
flex-grow: 0;
}
} | 0.475118 | 0.066357 |
@-ms-viewport {
width: device-width
}
html {
box-sizing: border-box;
-ms-overflow-style: scrollbar;
overflow-x: hidden!important;
}
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto
}
@media (min-width:576px) {
.container {
max-width: 568px
}
}
@media (min-width:768px) {
.container {
max-width: 760px
}
}
@media (min-width:992px) {
.container {
max-width: 984px
}
}
@media (min-width:1200px) {
.container {
max-width: 1100px
}
}
@media (min-width:1300px) {
.container {
max-width: 1240px
}
}
.container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto
}
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px
}
.no-gutters {
margin-right: 0;
margin-left: 0
}
.no-gutters>.col,
.no-gutters>[class*=col-] {
padding-right: 0;
padding-left: 0
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px
}
.col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-first {
-ms-flex-order: -1;
order: -1
}
.order-last {
-ms-flex-order: 13;
order: 13
}
.order-0 {
-ms-flex-order: 0;
order: 0
}
.order-1 {
-ms-flex-order: 1;
order: 1
}
.order-2 {
-ms-flex-order: 2;
order: 2
}
.order-3 {
-ms-flex-order: 3;
order: 3
}
.order-4 {
-ms-flex-order: 4;
order: 4
}
.order-5 {
-ms-flex-order: 5;
order: 5
}
.order-6 {
-ms-flex-order: 6;
order: 6
}
.order-7 {
-ms-flex-order: 7;
order: 7
}
.order-8 {
-ms-flex-order: 8;
order: 8
}
.order-9 {
-ms-flex-order: 9;
order: 9
}
.order-10 {
-ms-flex-order: 10;
order: 10
}
.order-11 {
-ms-flex-order: 11;
order: 11
}
.order-12 {
-ms-flex-order: 12;
order: 12
}
.offset-1 {
margin-left: 8.333333%
}
.offset-2 {
margin-left: 16.666667%
}
.offset-3 {
margin-left: 25%
}
.offset-4 {
margin-left: 33.333333%
}
.offset-5 {
margin-left: 41.666667%
}
.offset-6 {
margin-left: 50%
}
.offset-7 {
margin-left: 58.333333%
}
.offset-8 {
margin-left: 66.666667%
}
.offset-9 {
margin-left: 75%
}
.offset-10 {
margin-left: 83.333333%
}
.offset-11 {
margin-left: 91.666667%
}
@media (min-width:576px) {
.col-sm {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-sm-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-sm-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-sm-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-sm-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-sm-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-sm-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-sm-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-sm-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-sm-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-sm-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-sm-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-sm-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-sm-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-sm-first {
-ms-flex-order: -1;
order: -1
}
.order-sm-last {
-ms-flex-order: 13;
order: 13
}
.order-sm-0 {
-ms-flex-order: 0;
order: 0
}
.order-sm-1 {
-ms-flex-order: 1;
order: 1
}
.order-sm-2 {
-ms-flex-order: 2;
order: 2
}
.order-sm-3 {
-ms-flex-order: 3;
order: 3
}
.order-sm-4 {
-ms-flex-order: 4;
order: 4
}
.order-sm-5 {
-ms-flex-order: 5;
order: 5
}
.order-sm-6 {
-ms-flex-order: 6;
order: 6
}
.order-sm-7 {
-ms-flex-order: 7;
order: 7
}
.order-sm-8 {
-ms-flex-order: 8;
order: 8
}
.order-sm-9 {
-ms-flex-order: 9;
order: 9
}
.order-sm-10 {
-ms-flex-order: 10;
order: 10
}
.order-sm-11 {
-ms-flex-order: 11;
order: 11
}
.order-sm-12 {
-ms-flex-order: 12;
order: 12
}
.offset-sm-0 {
margin-left: 0
}
.offset-sm-1 {
margin-left: 8.333333%
}
.offset-sm-2 {
margin-left: 16.666667%
}
.offset-sm-3 {
margin-left: 25%
}
.offset-sm-4 {
margin-left: 33.333333%
}
.offset-sm-5 {
margin-left: 41.666667%
}
.offset-sm-6 {
margin-left: 50%
}
.offset-sm-7 {
margin-left: 58.333333%
}
.offset-sm-8 {
margin-left: 66.666667%
}
.offset-sm-9 {
margin-left: 75%
}
.offset-sm-10 {
margin-left: 83.333333%
}
.offset-sm-11 {
margin-left: 91.666667%
}
}
@media (min-width:768px) {
.col-md {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-md-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-md-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-md-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-md-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-md-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-md-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-md-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-md-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-md-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-md-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-md-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-md-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-md-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-md-first {
-ms-flex-order: -1;
order: -1
}
.order-md-last {
-ms-flex-order: 13;
order: 13
}
.order-md-0 {
-ms-flex-order: 0;
order: 0
}
.order-md-1 {
-ms-flex-order: 1;
order: 1
}
.order-md-2 {
-ms-flex-order: 2;
order: 2
}
.order-md-3 {
-ms-flex-order: 3;
order: 3
}
.order-md-4 {
-ms-flex-order: 4;
order: 4
}
.order-md-5 {
-ms-flex-order: 5;
order: 5
}
.order-md-6 {
-ms-flex-order: 6;
order: 6
}
.order-md-7 {
-ms-flex-order: 7;
order: 7
}
.order-md-8 {
-ms-flex-order: 8;
order: 8
}
.order-md-9 {
-ms-flex-order: 9;
order: 9
}
.order-md-10 {
-ms-flex-order: 10;
order: 10
}
.order-md-11 {
-ms-flex-order: 11;
order: 11
}
.order-md-12 {
-ms-flex-order: 12;
order: 12
}
.offset-md-0 {
margin-left: 0
}
.offset-md-1 {
margin-left: 8.333333%
}
.offset-md-2 {
margin-left: 16.666667%
}
.offset-md-3 {
margin-left: 25%
}
.offset-md-4 {
margin-left: 33.333333%
}
.offset-md-5 {
margin-left: 41.666667%
}
.offset-md-6 {
margin-left: 50%
}
.offset-md-7 {
margin-left: 58.333333%
}
.offset-md-8 {
margin-left: 66.666667%
}
.offset-md-9 {
margin-left: 75%
}
.offset-md-10 {
margin-left: 83.333333%
}
.offset-md-11 {
margin-left: 91.666667%
}
}
@media (min-width:992px) {
.col-lg {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-lg-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-lg-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-lg-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-lg-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-lg-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-lg-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-lg-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-lg-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-lg-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-lg-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-lg-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-lg-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-lg-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-lg-first {
-ms-flex-order: -1;
order: -1
}
.order-lg-last {
-ms-flex-order: 13;
order: 13
}
.order-lg-0 {
-ms-flex-order: 0;
order: 0
}
.order-lg-1 {
-ms-flex-order: 1;
order: 1
}
.order-lg-2 {
-ms-flex-order: 2;
order: 2
}
.order-lg-3 {
-ms-flex-order: 3;
order: 3
}
.order-lg-4 {
-ms-flex-order: 4;
order: 4
}
.order-lg-5 {
-ms-flex-order: 5;
order: 5
}
.order-lg-6 {
-ms-flex-order: 6;
order: 6
}
.order-lg-7 {
-ms-flex-order: 7;
order: 7
}
.order-lg-8 {
-ms-flex-order: 8;
order: 8
}
.order-lg-9 {
-ms-flex-order: 9;
order: 9
}
.order-lg-10 {
-ms-flex-order: 10;
order: 10
}
.order-lg-11 {
-ms-flex-order: 11;
order: 11
}
.order-lg-12 {
-ms-flex-order: 12;
order: 12
}
.offset-lg-0 {
margin-left: 0
}
.offset-lg-1 {
margin-left: 8.333333%
}
.offset-lg-2 {
margin-left: 16.666667%
}
.offset-lg-3 {
margin-left: 25%
}
.offset-lg-4 {
margin-left: 33.333333%
}
.offset-lg-5 {
margin-left: 41.666667%
}
.offset-lg-6 {
margin-left: 50%
}
.offset-lg-7 {
margin-left: 58.333333%
}
.offset-lg-8 {
margin-left: 66.666667%
}
.offset-lg-9 {
margin-left: 75%
}
.offset-lg-10 {
margin-left: 83.333333%
}
.offset-lg-11 {
margin-left: 91.666667%
}
}
@media (min-width:1200px) {
.col-xl {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-xl-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-xl-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-xl-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-xl-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-xl-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-xl-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-xl-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-xl-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-xl-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-xl-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-xl-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-xl-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-xl-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-xl-first {
-ms-flex-order: -1;
order: -1
}
.order-xl-last {
-ms-flex-order: 13;
order: 13
}
.order-xl-0 {
-ms-flex-order: 0;
order: 0
}
.order-xl-1 {
-ms-flex-order: 1;
order: 1
}
.order-xl-2 {
-ms-flex-order: 2;
order: 2
}
.order-xl-3 {
-ms-flex-order: 3;
order: 3
}
.order-xl-4 {
-ms-flex-order: 4;
order: 4
}
.order-xl-5 {
-ms-flex-order: 5;
order: 5
}
.order-xl-6 {
-ms-flex-order: 6;
order: 6
}
.order-xl-7 {
-ms-flex-order: 7;
order: 7
}
.order-xl-8 {
-ms-flex-order: 8;
order: 8
}
.order-xl-9 {
-ms-flex-order: 9;
order: 9
}
.order-xl-10 {
-ms-flex-order: 10;
order: 10
}
.order-xl-11 {
-ms-flex-order: 11;
order: 11
}
.order-xl-12 {
-ms-flex-order: 12;
order: 12
}
.offset-xl-0 {
margin-left: 0
}
.offset-xl-1 {
margin-left: 8.333333%
}
.offset-xl-2 {
margin-left: 16.666667%
}
.offset-xl-3 {
margin-left: 25%
}
.offset-xl-4 {
margin-left: 33.333333%
}
.offset-xl-5 {
margin-left: 41.666667%
}
.offset-xl-6 {
margin-left: 50%
}
.offset-xl-7 {
margin-left: 58.333333%
}
.offset-xl-8 {
margin-left: 66.666667%
}
.offset-xl-9 {
margin-left: 75%
}
.offset-xl-10 {
margin-left: 83.333333%
}
.offset-xl-11 {
margin-left: 91.666667%
}
}
@media (min-width:768px) {
.dmd-b {
display: block
}
.dmd-n {
display: none
}
.dmd-f {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex
}
.dmd-ib {
display: inline-block
}
.dmd-i {
display: inline
}
.jcmd-c {
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.jcmd-a {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around
}
.jcmd-b {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.jcmd-s {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-moz-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.jcmd-e {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end
}
.aimd-c {
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center
}
.aimd-s {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-moz-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.aimd-e {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-moz-box-align: end;
-ms-flex-align: end;
align-items: flex-end
}
.fdmd-c {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.fdmd-cr {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-moz-box-orient: vertical;
-moz-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse
}
.fdmd-r {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row
}
.fdmd-rr {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-moz-box-orient: horizontal;
-moz-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse
}
.tmd-l {
text-align: left
}
.tmd-r {
text-align: right
}
.tmd-c {
text-align: center
}
.tmd-u {
text-transform: uppercase
}
.tmd-nw {
white-space: nowrap
}
}
@media (min-width:992px) {
.dlg-b {
display: block
}
.dlg-n {
display: none
}
.dlg-f {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex
}
.dlg-ib {
display: inline-block
}
.dlg-i {
display: inline
}
.jclg-c {
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.jclg-a {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around
}
.jclg-b {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.jclg-s {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-moz-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.jclg-e {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end
}
.ailg-c {
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center
}
.ailg-s {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-moz-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.ailg-e {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-moz-box-align: end;
-ms-flex-align: end;
align-items: flex-end
}
.fdlg-c {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.fdlg-cr {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-moz-box-orient: vertical;
-moz-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse
}
.fdlg-r {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row
}
.fdlg-rr {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-moz-box-orient: horizontal;
-moz-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse
}
.tlg-l {
text-align: left
}
.tlg-r {
text-align: right
}
.tlg-c {
text-align: center
}
.tlg-u {
text-transform: uppercase
}
.tlg-nw {
white-space: nowrap
}
}
@media (min-width:1200px) {
.dxl-b {
display: block
}
.dxl-n {
display: none
}
.dxl-f {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex
}
.dxl-ib {
display: inline-block
}
.dxl-i {
display: inline
}
.jcxl-c {
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.jcxl-a {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around
}
.jcxl-b {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.jcxl-s {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-moz-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.jcxl-e {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end
}
.aixl-c {
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center
}
.aixl-s {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-moz-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.aixl-e {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-moz-box-align: end;
-ms-flex-align: end;
align-items: flex-end
}
.fdxl-c {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.fdxl-cr {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-moz-box-orient: vertical;
-moz-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse
}
.fdxl-r {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row
}
.fdxl-rr {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-moz-box-orient: horizontal;
-moz-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse
}
.txl-l {
text-align: left
}
.txl-r {
text-align: right
}
.txl-c {
text-align: center
}
.txl-u {
text-transform: uppercase
}
.txl-nw {
white-space: nowrap
}
} | public/css/landing/grid.css | @-ms-viewport {
width: device-width
}
html {
box-sizing: border-box;
-ms-overflow-style: scrollbar;
overflow-x: hidden!important;
}
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto
}
@media (min-width:576px) {
.container {
max-width: 568px
}
}
@media (min-width:768px) {
.container {
max-width: 760px
}
}
@media (min-width:992px) {
.container {
max-width: 984px
}
}
@media (min-width:1200px) {
.container {
max-width: 1100px
}
}
@media (min-width:1300px) {
.container {
max-width: 1240px
}
}
.container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto
}
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px
}
.no-gutters {
margin-right: 0;
margin-left: 0
}
.no-gutters>.col,
.no-gutters>[class*=col-] {
padding-right: 0;
padding-left: 0
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px
}
.col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-first {
-ms-flex-order: -1;
order: -1
}
.order-last {
-ms-flex-order: 13;
order: 13
}
.order-0 {
-ms-flex-order: 0;
order: 0
}
.order-1 {
-ms-flex-order: 1;
order: 1
}
.order-2 {
-ms-flex-order: 2;
order: 2
}
.order-3 {
-ms-flex-order: 3;
order: 3
}
.order-4 {
-ms-flex-order: 4;
order: 4
}
.order-5 {
-ms-flex-order: 5;
order: 5
}
.order-6 {
-ms-flex-order: 6;
order: 6
}
.order-7 {
-ms-flex-order: 7;
order: 7
}
.order-8 {
-ms-flex-order: 8;
order: 8
}
.order-9 {
-ms-flex-order: 9;
order: 9
}
.order-10 {
-ms-flex-order: 10;
order: 10
}
.order-11 {
-ms-flex-order: 11;
order: 11
}
.order-12 {
-ms-flex-order: 12;
order: 12
}
.offset-1 {
margin-left: 8.333333%
}
.offset-2 {
margin-left: 16.666667%
}
.offset-3 {
margin-left: 25%
}
.offset-4 {
margin-left: 33.333333%
}
.offset-5 {
margin-left: 41.666667%
}
.offset-6 {
margin-left: 50%
}
.offset-7 {
margin-left: 58.333333%
}
.offset-8 {
margin-left: 66.666667%
}
.offset-9 {
margin-left: 75%
}
.offset-10 {
margin-left: 83.333333%
}
.offset-11 {
margin-left: 91.666667%
}
@media (min-width:576px) {
.col-sm {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-sm-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-sm-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-sm-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-sm-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-sm-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-sm-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-sm-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-sm-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-sm-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-sm-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-sm-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-sm-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-sm-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-sm-first {
-ms-flex-order: -1;
order: -1
}
.order-sm-last {
-ms-flex-order: 13;
order: 13
}
.order-sm-0 {
-ms-flex-order: 0;
order: 0
}
.order-sm-1 {
-ms-flex-order: 1;
order: 1
}
.order-sm-2 {
-ms-flex-order: 2;
order: 2
}
.order-sm-3 {
-ms-flex-order: 3;
order: 3
}
.order-sm-4 {
-ms-flex-order: 4;
order: 4
}
.order-sm-5 {
-ms-flex-order: 5;
order: 5
}
.order-sm-6 {
-ms-flex-order: 6;
order: 6
}
.order-sm-7 {
-ms-flex-order: 7;
order: 7
}
.order-sm-8 {
-ms-flex-order: 8;
order: 8
}
.order-sm-9 {
-ms-flex-order: 9;
order: 9
}
.order-sm-10 {
-ms-flex-order: 10;
order: 10
}
.order-sm-11 {
-ms-flex-order: 11;
order: 11
}
.order-sm-12 {
-ms-flex-order: 12;
order: 12
}
.offset-sm-0 {
margin-left: 0
}
.offset-sm-1 {
margin-left: 8.333333%
}
.offset-sm-2 {
margin-left: 16.666667%
}
.offset-sm-3 {
margin-left: 25%
}
.offset-sm-4 {
margin-left: 33.333333%
}
.offset-sm-5 {
margin-left: 41.666667%
}
.offset-sm-6 {
margin-left: 50%
}
.offset-sm-7 {
margin-left: 58.333333%
}
.offset-sm-8 {
margin-left: 66.666667%
}
.offset-sm-9 {
margin-left: 75%
}
.offset-sm-10 {
margin-left: 83.333333%
}
.offset-sm-11 {
margin-left: 91.666667%
}
}
@media (min-width:768px) {
.col-md {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-md-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-md-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-md-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-md-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-md-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-md-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-md-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-md-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-md-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-md-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-md-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-md-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-md-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-md-first {
-ms-flex-order: -1;
order: -1
}
.order-md-last {
-ms-flex-order: 13;
order: 13
}
.order-md-0 {
-ms-flex-order: 0;
order: 0
}
.order-md-1 {
-ms-flex-order: 1;
order: 1
}
.order-md-2 {
-ms-flex-order: 2;
order: 2
}
.order-md-3 {
-ms-flex-order: 3;
order: 3
}
.order-md-4 {
-ms-flex-order: 4;
order: 4
}
.order-md-5 {
-ms-flex-order: 5;
order: 5
}
.order-md-6 {
-ms-flex-order: 6;
order: 6
}
.order-md-7 {
-ms-flex-order: 7;
order: 7
}
.order-md-8 {
-ms-flex-order: 8;
order: 8
}
.order-md-9 {
-ms-flex-order: 9;
order: 9
}
.order-md-10 {
-ms-flex-order: 10;
order: 10
}
.order-md-11 {
-ms-flex-order: 11;
order: 11
}
.order-md-12 {
-ms-flex-order: 12;
order: 12
}
.offset-md-0 {
margin-left: 0
}
.offset-md-1 {
margin-left: 8.333333%
}
.offset-md-2 {
margin-left: 16.666667%
}
.offset-md-3 {
margin-left: 25%
}
.offset-md-4 {
margin-left: 33.333333%
}
.offset-md-5 {
margin-left: 41.666667%
}
.offset-md-6 {
margin-left: 50%
}
.offset-md-7 {
margin-left: 58.333333%
}
.offset-md-8 {
margin-left: 66.666667%
}
.offset-md-9 {
margin-left: 75%
}
.offset-md-10 {
margin-left: 83.333333%
}
.offset-md-11 {
margin-left: 91.666667%
}
}
@media (min-width:992px) {
.col-lg {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-lg-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-lg-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-lg-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-lg-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-lg-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-lg-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-lg-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-lg-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-lg-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-lg-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-lg-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-lg-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-lg-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-lg-first {
-ms-flex-order: -1;
order: -1
}
.order-lg-last {
-ms-flex-order: 13;
order: 13
}
.order-lg-0 {
-ms-flex-order: 0;
order: 0
}
.order-lg-1 {
-ms-flex-order: 1;
order: 1
}
.order-lg-2 {
-ms-flex-order: 2;
order: 2
}
.order-lg-3 {
-ms-flex-order: 3;
order: 3
}
.order-lg-4 {
-ms-flex-order: 4;
order: 4
}
.order-lg-5 {
-ms-flex-order: 5;
order: 5
}
.order-lg-6 {
-ms-flex-order: 6;
order: 6
}
.order-lg-7 {
-ms-flex-order: 7;
order: 7
}
.order-lg-8 {
-ms-flex-order: 8;
order: 8
}
.order-lg-9 {
-ms-flex-order: 9;
order: 9
}
.order-lg-10 {
-ms-flex-order: 10;
order: 10
}
.order-lg-11 {
-ms-flex-order: 11;
order: 11
}
.order-lg-12 {
-ms-flex-order: 12;
order: 12
}
.offset-lg-0 {
margin-left: 0
}
.offset-lg-1 {
margin-left: 8.333333%
}
.offset-lg-2 {
margin-left: 16.666667%
}
.offset-lg-3 {
margin-left: 25%
}
.offset-lg-4 {
margin-left: 33.333333%
}
.offset-lg-5 {
margin-left: 41.666667%
}
.offset-lg-6 {
margin-left: 50%
}
.offset-lg-7 {
margin-left: 58.333333%
}
.offset-lg-8 {
margin-left: 66.666667%
}
.offset-lg-9 {
margin-left: 75%
}
.offset-lg-10 {
margin-left: 83.333333%
}
.offset-lg-11 {
margin-left: 91.666667%
}
}
@media (min-width:1200px) {
.col-xl {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%
}
.col-xl-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none
}
.col-xl-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%
}
.col-xl-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%
}
.col-xl-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
}
.col-xl-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%
}
.col-xl-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%
}
.col-xl-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
}
.col-xl-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%
}
.col-xl-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%
}
.col-xl-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
}
.col-xl-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%
}
.col-xl-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%
}
.col-xl-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
}
.order-xl-first {
-ms-flex-order: -1;
order: -1
}
.order-xl-last {
-ms-flex-order: 13;
order: 13
}
.order-xl-0 {
-ms-flex-order: 0;
order: 0
}
.order-xl-1 {
-ms-flex-order: 1;
order: 1
}
.order-xl-2 {
-ms-flex-order: 2;
order: 2
}
.order-xl-3 {
-ms-flex-order: 3;
order: 3
}
.order-xl-4 {
-ms-flex-order: 4;
order: 4
}
.order-xl-5 {
-ms-flex-order: 5;
order: 5
}
.order-xl-6 {
-ms-flex-order: 6;
order: 6
}
.order-xl-7 {
-ms-flex-order: 7;
order: 7
}
.order-xl-8 {
-ms-flex-order: 8;
order: 8
}
.order-xl-9 {
-ms-flex-order: 9;
order: 9
}
.order-xl-10 {
-ms-flex-order: 10;
order: 10
}
.order-xl-11 {
-ms-flex-order: 11;
order: 11
}
.order-xl-12 {
-ms-flex-order: 12;
order: 12
}
.offset-xl-0 {
margin-left: 0
}
.offset-xl-1 {
margin-left: 8.333333%
}
.offset-xl-2 {
margin-left: 16.666667%
}
.offset-xl-3 {
margin-left: 25%
}
.offset-xl-4 {
margin-left: 33.333333%
}
.offset-xl-5 {
margin-left: 41.666667%
}
.offset-xl-6 {
margin-left: 50%
}
.offset-xl-7 {
margin-left: 58.333333%
}
.offset-xl-8 {
margin-left: 66.666667%
}
.offset-xl-9 {
margin-left: 75%
}
.offset-xl-10 {
margin-left: 83.333333%
}
.offset-xl-11 {
margin-left: 91.666667%
}
}
@media (min-width:768px) {
.dmd-b {
display: block
}
.dmd-n {
display: none
}
.dmd-f {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex
}
.dmd-ib {
display: inline-block
}
.dmd-i {
display: inline
}
.jcmd-c {
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.jcmd-a {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around
}
.jcmd-b {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.jcmd-s {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-moz-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.jcmd-e {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end
}
.aimd-c {
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center
}
.aimd-s {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-moz-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.aimd-e {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-moz-box-align: end;
-ms-flex-align: end;
align-items: flex-end
}
.fdmd-c {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.fdmd-cr {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-moz-box-orient: vertical;
-moz-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse
}
.fdmd-r {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row
}
.fdmd-rr {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-moz-box-orient: horizontal;
-moz-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse
}
.tmd-l {
text-align: left
}
.tmd-r {
text-align: right
}
.tmd-c {
text-align: center
}
.tmd-u {
text-transform: uppercase
}
.tmd-nw {
white-space: nowrap
}
}
@media (min-width:992px) {
.dlg-b {
display: block
}
.dlg-n {
display: none
}
.dlg-f {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex
}
.dlg-ib {
display: inline-block
}
.dlg-i {
display: inline
}
.jclg-c {
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.jclg-a {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around
}
.jclg-b {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.jclg-s {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-moz-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.jclg-e {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end
}
.ailg-c {
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center
}
.ailg-s {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-moz-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.ailg-e {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-moz-box-align: end;
-ms-flex-align: end;
align-items: flex-end
}
.fdlg-c {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.fdlg-cr {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-moz-box-orient: vertical;
-moz-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse
}
.fdlg-r {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row
}
.fdlg-rr {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-moz-box-orient: horizontal;
-moz-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse
}
.tlg-l {
text-align: left
}
.tlg-r {
text-align: right
}
.tlg-c {
text-align: center
}
.tlg-u {
text-transform: uppercase
}
.tlg-nw {
white-space: nowrap
}
}
@media (min-width:1200px) {
.dxl-b {
display: block
}
.dxl-n {
display: none
}
.dxl-f {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex
}
.dxl-ib {
display: inline-block
}
.dxl-i {
display: inline
}
.jcxl-c {
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.jcxl-a {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around
}
.jcxl-b {
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.jcxl-s {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-moz-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start
}
.jcxl-e {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end
}
.aixl-c {
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center
}
.aixl-s {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-moz-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}
.aixl-e {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-moz-box-align: end;
-ms-flex-align: end;
align-items: flex-end
}
.fdxl-c {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.fdxl-cr {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-moz-box-orient: vertical;
-moz-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse
}
.fdxl-r {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row
}
.fdxl-rr {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-moz-box-orient: horizontal;
-moz-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse
}
.txl-l {
text-align: left
}
.txl-r {
text-align: right
}
.txl-c {
text-align: center
}
.txl-u {
text-transform: uppercase
}
.txl-nw {
white-space: nowrap
}
} | 0.743075 | 0.078607 |
body {
font-family: Segoe UI Light !important;
}
/* INVERT */
/* Inverts the color scheme of the website */
/* Make sure you change the image tags with the className - | this changes it as well */
/* :root {
filter: invert(100%);
}
.img {
filter: invert(100%) !important;
}
.imgNav {
filter: invert(100%) !important;
}
.upperF:hover {
filter: invert(100%) !important;
}
span {
filter: invert(100%) !important;
} */
/* END INVERT */
/* Media Breakpoints */
/* 1440px */
@media (max-width: 1440px) {
/* LowerBody */
.lowerTxt {
font-size: 3.5rem !important;
}
.lowerB {
height: 42rem !important;
}
.img {
padding-top: 6rem !important;
}
.lowh {
font-size: 1.4rem;
}
.lowhh {
font-size: 1.4rem;
}
.lowList {
font-size: 1.1rem !important;
}
.lowQuote {
padding-top: 3.5% !important;
}
/* Header */
.headerB {
height: 849px !important;
}
}
/* 1024px */
@media (max-width: 1024px) {
/* LowerBody */
.img {
padding-top: 7.2rem !important;
padding-right: 2rem;
}
/* Header */
.display-1 {
padding-top: 0% !important;
}
.headerB {
height: 649px !important;
}
.bottomQuote {
margin-top: 5rem !important;
font-size: 1.3rem !important;
}
}
/* 414px */
@media (max-width: 714px) {
/* Header */
.display-1 {
padding-top: 10% !important;
font-size: 4rem !important;
}
.display-4 {
margin-top: 4rem !important;
font-size: 2.5rem !important;
}
.bottomQuote {
margin-top: 5rem !important;
font-size: 1.3rem !important;
}
/* LowerHeader */
.lowerHead {
font-size: 2.5rem !important;
}
.lowerText {
font-size: 1.4rem !important;
padding: 0% !important;
}
.lowerGoal {
font-size: 1.4rem !important;
}
/* UpperBody */
.upperBody {
height: 65rem !important;
}
.whatDo {
padding-top: 2rem;
font-size: 2.5rem !important;
}
.whatDoT {
font-size: 1.7rem !important;
}
.whatDoP {
font-size: 1.3rem !important;
}
.upperL {
margin-top: -3rem;
text-align: left !important;
padding-left: 1.2rem;
}
/* LowerBody */
.lowerB {
height: 57rem !important;
}
.hid {
display: none;
}
.lowerCol {
/* min-width: 22.5rem !important; */
min-width: 100% !important;
}
.lowerTxt {
font-size: 2rem !important;
}
.lowh {
font-size: 1.2rem;
}
.lowhh {
font-size: 1.2rem;
}
.lowList {
font-size: 1rem !important;
}
.lowQuote {
padding-top: 4rem !important;
}
} | src/index.css | body {
font-family: Segoe UI Light !important;
}
/* INVERT */
/* Inverts the color scheme of the website */
/* Make sure you change the image tags with the className - | this changes it as well */
/* :root {
filter: invert(100%);
}
.img {
filter: invert(100%) !important;
}
.imgNav {
filter: invert(100%) !important;
}
.upperF:hover {
filter: invert(100%) !important;
}
span {
filter: invert(100%) !important;
} */
/* END INVERT */
/* Media Breakpoints */
/* 1440px */
@media (max-width: 1440px) {
/* LowerBody */
.lowerTxt {
font-size: 3.5rem !important;
}
.lowerB {
height: 42rem !important;
}
.img {
padding-top: 6rem !important;
}
.lowh {
font-size: 1.4rem;
}
.lowhh {
font-size: 1.4rem;
}
.lowList {
font-size: 1.1rem !important;
}
.lowQuote {
padding-top: 3.5% !important;
}
/* Header */
.headerB {
height: 849px !important;
}
}
/* 1024px */
@media (max-width: 1024px) {
/* LowerBody */
.img {
padding-top: 7.2rem !important;
padding-right: 2rem;
}
/* Header */
.display-1 {
padding-top: 0% !important;
}
.headerB {
height: 649px !important;
}
.bottomQuote {
margin-top: 5rem !important;
font-size: 1.3rem !important;
}
}
/* 414px */
@media (max-width: 714px) {
/* Header */
.display-1 {
padding-top: 10% !important;
font-size: 4rem !important;
}
.display-4 {
margin-top: 4rem !important;
font-size: 2.5rem !important;
}
.bottomQuote {
margin-top: 5rem !important;
font-size: 1.3rem !important;
}
/* LowerHeader */
.lowerHead {
font-size: 2.5rem !important;
}
.lowerText {
font-size: 1.4rem !important;
padding: 0% !important;
}
.lowerGoal {
font-size: 1.4rem !important;
}
/* UpperBody */
.upperBody {
height: 65rem !important;
}
.whatDo {
padding-top: 2rem;
font-size: 2.5rem !important;
}
.whatDoT {
font-size: 1.7rem !important;
}
.whatDoP {
font-size: 1.3rem !important;
}
.upperL {
margin-top: -3rem;
text-align: left !important;
padding-left: 1.2rem;
}
/* LowerBody */
.lowerB {
height: 57rem !important;
}
.hid {
display: none;
}
.lowerCol {
/* min-width: 22.5rem !important; */
min-width: 100% !important;
}
.lowerTxt {
font-size: 2rem !important;
}
.lowh {
font-size: 1.2rem;
}
.lowhh {
font-size: 1.2rem;
}
.lowList {
font-size: 1rem !important;
}
.lowQuote {
padding-top: 4rem !important;
}
} | 0.489015 | 0.108236 |
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Sora:wght@100;200;300;400;500;600;700;800&display=swap");
body {
margin: 0;
}
ul {
list-style-type: none;
display: flex;
margin: 0;
justify-content: space-around;
padding-left: 0;
padding-top: 17px;
}
ul li {
align-items: center;
font-size: 18px;
color: white;
}
header {
background: #28ac73;
height: 60px;
padding: 0;
margin: 0;
}
.logo {
border: 2px #a0e78f;
border-radius: 50%;
padding: 8px;
width: fit-content;
background: #a0e78f;
}
footer {
background: grey;
margin-top: 42px;
padding: 18px;
}
footer > h4 {
text-align: center;
margin: 0;
}
.popup-section {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgb(193 199 208 / 85%);
width: 100%;
overflow: auto;
z-index: 1;
backdrop-filter: blur(4px);
display: none;
}
.closebtn:hover {
color: blue;
cursor: pointer;
}
.popup-window {
z-index: 2;
border-radius: 1vw;
background-color: #fff;
width: 30%;
padding: 18px;
position: relative;
top: 20px;
left: 35%;
margin-bottom: 70px;
}
.show-img {
width: 100%;
}
.language-rating {
display: flex;
justify-content: space-between;
}
.title-close {
display: flex;
align-items: center;
justify-content: space-between;
}
.container-movies {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px;
padding: 80px;
}
.show-card {
background: grey;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 7px;
width: 100%;
}
.show-card > img {
width: 100%;
height: 80%;
}
.name-likes {
display: flex;
align-items: center;
gap: 20px;
}
.commentbtn {
margin: 30px 0 0;
border: none;
color: #000407;
font-size: 15px;
border-radius: 20% 20% 0 0;
cursor: pointer;
padding: 5px;
}
.comments-counter {
color: #242b97;
text-align: center;
font-size: 23px;
}
.form-title {
color: #242b97;
text-align: center;
}
.comments-list {
list-style-type: none;
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
gap: 10px;
padding: 10px;
}
.comment-item {
background: #ced1d0;
padding: 15px;
border-left: 5px solid #038f92;
width: 80%;
}
.comment-item > p {
color: #2b1bb0;
margin: 0;
}
form {
display: flex;
flex-direction: column;
gap: 20px;
align-items: center;
}
.submit-comment {
background: #038f92;
color: white;
width: 30%;
font-size: 16px;
border: none;
border-radius: 5px;
padding: 5px;
}
.submit-comment:hover {
background: #0d6a6c;
}
form > input,
textarea {
border: 3px solid #435353;
border-radius: 4px;
padding: 6px;
}
form > input:focus,
textarea:focus {
border: 3px solid #06c4c7;
}
.likebtn:hover {
color: yellow;
cursor: pointer;
}
.likebtn-number {
display: flex;
align-items: center;
gap: 5px;
}
.show-count {
text-align: center;
margin-bottom: 0;
margin-top: 50px;
color: #0a2a87;
font-size: 35px;
} | src/css/index.css | @import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Sora:wght@100;200;300;400;500;600;700;800&display=swap");
body {
margin: 0;
}
ul {
list-style-type: none;
display: flex;
margin: 0;
justify-content: space-around;
padding-left: 0;
padding-top: 17px;
}
ul li {
align-items: center;
font-size: 18px;
color: white;
}
header {
background: #28ac73;
height: 60px;
padding: 0;
margin: 0;
}
.logo {
border: 2px #a0e78f;
border-radius: 50%;
padding: 8px;
width: fit-content;
background: #a0e78f;
}
footer {
background: grey;
margin-top: 42px;
padding: 18px;
}
footer > h4 {
text-align: center;
margin: 0;
}
.popup-section {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgb(193 199 208 / 85%);
width: 100%;
overflow: auto;
z-index: 1;
backdrop-filter: blur(4px);
display: none;
}
.closebtn:hover {
color: blue;
cursor: pointer;
}
.popup-window {
z-index: 2;
border-radius: 1vw;
background-color: #fff;
width: 30%;
padding: 18px;
position: relative;
top: 20px;
left: 35%;
margin-bottom: 70px;
}
.show-img {
width: 100%;
}
.language-rating {
display: flex;
justify-content: space-between;
}
.title-close {
display: flex;
align-items: center;
justify-content: space-between;
}
.container-movies {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px;
padding: 80px;
}
.show-card {
background: grey;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 7px;
width: 100%;
}
.show-card > img {
width: 100%;
height: 80%;
}
.name-likes {
display: flex;
align-items: center;
gap: 20px;
}
.commentbtn {
margin: 30px 0 0;
border: none;
color: #000407;
font-size: 15px;
border-radius: 20% 20% 0 0;
cursor: pointer;
padding: 5px;
}
.comments-counter {
color: #242b97;
text-align: center;
font-size: 23px;
}
.form-title {
color: #242b97;
text-align: center;
}
.comments-list {
list-style-type: none;
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
gap: 10px;
padding: 10px;
}
.comment-item {
background: #ced1d0;
padding: 15px;
border-left: 5px solid #038f92;
width: 80%;
}
.comment-item > p {
color: #2b1bb0;
margin: 0;
}
form {
display: flex;
flex-direction: column;
gap: 20px;
align-items: center;
}
.submit-comment {
background: #038f92;
color: white;
width: 30%;
font-size: 16px;
border: none;
border-radius: 5px;
padding: 5px;
}
.submit-comment:hover {
background: #0d6a6c;
}
form > input,
textarea {
border: 3px solid #435353;
border-radius: 4px;
padding: 6px;
}
form > input:focus,
textarea:focus {
border: 3px solid #06c4c7;
}
.likebtn:hover {
color: yellow;
cursor: pointer;
}
.likebtn-number {
display: flex;
align-items: center;
gap: 5px;
}
.show-count {
text-align: center;
margin-bottom: 0;
margin-top: 50px;
color: #0a2a87;
font-size: 35px;
} | 0.356335 | 0.080864 |
* {
margin: 0px;
padding: 0px;
}
body {
font-size: 120%;
background: #F8F8FF;
}
.header {
width: 30%;
margin: 50px auto 0px;
color: white;
background: #5F9EA0;
text-align: center;
border: 1px solid #B0C4DE;
border-bottom: none;
border-radius: 10px 10px 0px 0px;
padding: 20px;
}
form .form-footer .btn-custom{
background-color: #E8B04F;
}
.link-custom{
color: #E8B04F;
}
.btn-add{
background-color: #E8B04F;
}
.btn-floating{
color: #E8B04F;
}
#create{
background-color: #E8B04F!important;
}
.success {
color: #3c763d;
background: #dff0d8;
border: 1px solid #3c763d;
margin-bottom: 20px;
}
#edit{
background-color: #E8B04F;
}
#about{
background-color: #E8B04F;
}
/*--------------------------------------------------------------
# Nav
--------------------------------------------------------------*/
.navbar {
background: #E8B04F;
}
#what{
background: #e27114;
}
#navbar-brand{
position: fixed;
left: 50%;
top: -1px;
transform: translateX(-50%);
z-index: 999;
overflow:visible;
z-index: 999 !important;
}
.avatar{
position:fixed;
top: .3em;
right: 2%;
z-index: 999 !important;
}
nav{
z-index: 998 !important;
}
.login {
position: fixed;
z-index: 999 !important;
right: 0.8%;
}
#brand{
letter-spacing: 2px;
font-weight: 500;
}
/*--------------------------------------------------------------
# Post
--------------------------------------------------------------*/
#username{
font-size: 18px;
text-decoration: none;
color: rgb(11, 11, 11);
}
#date{
font-size: 14px;
}
#description{
font-size: 16px;
}
#title{
text-decoration: none;
color: rgb(50, 50, 50);
}
/*---*/
#back:hover{
color: #E8B04F;
}
#back{
color: rgb(11, 11, 11);
}
#tags{
background-color: #788383c9;
font-size: 1rem;
font-weight: 600;
}
/*---*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
button{
background: #E8B04F !important;
border: #E8B04F !important;
}
footer p{
font-size: 12px;
}
footer a{
font-size: 12px;
}
/*--------------------------------------------------------------
# Terns
--------------------------------------------------------------*/
.terms {
height: 250px;
overflow-x: hidden;
overflow-y: auto;
font-size: .6rem;
background-color: #ffffffa9;
border-radius: 10px;
}
.checkbox {
font-size: .8rem;
}
::-webkit-scrollbar {
width: 20px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #f0bc12a9;
border-radius: 10px;
border: 6px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: #f0bc12;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.tile{
width:180px;
height:180px;
margin:35px;
background-color:rgba(0, 0, 0, 0.787);
display:inline-block;
background-size:cover;
position:relative;
cursor:pointer;
transition: all 0.4s ease-out;
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.44);
overflow:hidden;
color:white;
}
.tile img{
width:100%;
position:absolute;
top:0;
left:0;
z-index:0;
transition: all 0.4s ease-out;
}
.tile .text{
padding:60px 0 5px 0;
height:calc(100% - 60px);
}
.text h2{
font-size:20px;
color: #fff;
font-style:italic;
transform: translateX(100px);
}
.text h3{
font-size:19px;
color: #fff;
font-style:italic;
transform: translateX(100px);
}
.text h4{
font-size:18px;
color: #fff;
font-style:italic;
transform: translateX(100px);
}
.text p{
font-size:15px;
color: #fff;
margin:0 0 0 0;
line-height: 25px;
transform: translateX(-200px);
transition-delay: 0.2s;
}
.text .para{
font-size:15px;
color: #fff;
margin:20px 0 0 0;
line-height: 25px;
transform: translateX(-200px);
transition-delay: 0.2s;
}
.animate-text{
opacity:0;
transition: all 0.6s ease-in-out;
}
.tile:hover{
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
transform:scale(1.05);
}
.tile:hover img{
opacity: 0.4;
}
.tile:hover .animate-text{
transform:translateX(0);
opacity:1;
} | application/views/templates/style.css | * {
margin: 0px;
padding: 0px;
}
body {
font-size: 120%;
background: #F8F8FF;
}
.header {
width: 30%;
margin: 50px auto 0px;
color: white;
background: #5F9EA0;
text-align: center;
border: 1px solid #B0C4DE;
border-bottom: none;
border-radius: 10px 10px 0px 0px;
padding: 20px;
}
form .form-footer .btn-custom{
background-color: #E8B04F;
}
.link-custom{
color: #E8B04F;
}
.btn-add{
background-color: #E8B04F;
}
.btn-floating{
color: #E8B04F;
}
#create{
background-color: #E8B04F!important;
}
.success {
color: #3c763d;
background: #dff0d8;
border: 1px solid #3c763d;
margin-bottom: 20px;
}
#edit{
background-color: #E8B04F;
}
#about{
background-color: #E8B04F;
}
/*--------------------------------------------------------------
# Nav
--------------------------------------------------------------*/
.navbar {
background: #E8B04F;
}
#what{
background: #e27114;
}
#navbar-brand{
position: fixed;
left: 50%;
top: -1px;
transform: translateX(-50%);
z-index: 999;
overflow:visible;
z-index: 999 !important;
}
.avatar{
position:fixed;
top: .3em;
right: 2%;
z-index: 999 !important;
}
nav{
z-index: 998 !important;
}
.login {
position: fixed;
z-index: 999 !important;
right: 0.8%;
}
#brand{
letter-spacing: 2px;
font-weight: 500;
}
/*--------------------------------------------------------------
# Post
--------------------------------------------------------------*/
#username{
font-size: 18px;
text-decoration: none;
color: rgb(11, 11, 11);
}
#date{
font-size: 14px;
}
#description{
font-size: 16px;
}
#title{
text-decoration: none;
color: rgb(50, 50, 50);
}
/*---*/
#back:hover{
color: #E8B04F;
}
#back{
color: rgb(11, 11, 11);
}
#tags{
background-color: #788383c9;
font-size: 1rem;
font-weight: 600;
}
/*---*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
button{
background: #E8B04F !important;
border: #E8B04F !important;
}
footer p{
font-size: 12px;
}
footer a{
font-size: 12px;
}
/*--------------------------------------------------------------
# Terns
--------------------------------------------------------------*/
.terms {
height: 250px;
overflow-x: hidden;
overflow-y: auto;
font-size: .6rem;
background-color: #ffffffa9;
border-radius: 10px;
}
.checkbox {
font-size: .8rem;
}
::-webkit-scrollbar {
width: 20px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #f0bc12a9;
border-radius: 10px;
border: 6px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: #f0bc12;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.tile{
width:180px;
height:180px;
margin:35px;
background-color:rgba(0, 0, 0, 0.787);
display:inline-block;
background-size:cover;
position:relative;
cursor:pointer;
transition: all 0.4s ease-out;
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.44);
overflow:hidden;
color:white;
}
.tile img{
width:100%;
position:absolute;
top:0;
left:0;
z-index:0;
transition: all 0.4s ease-out;
}
.tile .text{
padding:60px 0 5px 0;
height:calc(100% - 60px);
}
.text h2{
font-size:20px;
color: #fff;
font-style:italic;
transform: translateX(100px);
}
.text h3{
font-size:19px;
color: #fff;
font-style:italic;
transform: translateX(100px);
}
.text h4{
font-size:18px;
color: #fff;
font-style:italic;
transform: translateX(100px);
}
.text p{
font-size:15px;
color: #fff;
margin:0 0 0 0;
line-height: 25px;
transform: translateX(-200px);
transition-delay: 0.2s;
}
.text .para{
font-size:15px;
color: #fff;
margin:20px 0 0 0;
line-height: 25px;
transform: translateX(-200px);
transition-delay: 0.2s;
}
.animate-text{
opacity:0;
transition: all 0.6s ease-in-out;
}
.tile:hover{
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
transform:scale(1.05);
}
.tile:hover img{
opacity: 0.4;
}
.tile:hover .animate-text{
transform:translateX(0);
opacity:1;
} | 0.31563 | 0.080792 |
@charset "UTF-8";
html{
font-size: 62.5%;
font-family: "Hiragino Sans GB W3";
}
body,h1,h2,h3,p,ul,ol,form,fieldset,figure{
margin: 0;
padding: 0;
}
ul,ol{
list-style: none;
}
.user_center_body_all{
padding-bottom: 80px;
background: #ecf1eb;
}
.am-topbar{
boder-style:none;
}
.register_one_header{
width: 100%;text-align: center;background: #01a2f2;
}
.register_header_title{
text-align: center;line-height: 50px;font-size: 20px;font-family: '宋体';
}
.register_header_back{
line-height: 50px;font-size: 20px;float: left;margin-left:5px ;
}
.register_one_header{
border-color: #01a2f2;
}
.header{
position: relative;
z-index: 1;
}
.header_center{
width: 100%;
height: 170px;
background-color: #b2e2fa;
font-family: "宋体";
position: relative;
}
.header_center img{
width: 100%;
height:170px;
}
.header_photo{
position:absolute;
left: 0;
top: 0px;
width:100%;
height:180px;
z-indent:2;
line-height: 50px;
text-align: center;
}
.header_photo a{
float: right;margin-right: 5px;font-size: 13px;margin-top: -10px;color: blue;
}
.header_photo_user{
width:75px;height: 75px;border-radius: 75px;margin: 0 auto;margin-top: 25px; background-color:#d8d8d8;
}
.header_photo_user img{
width: 75px;height: 75px;border-radius: 75px;
}
.user_center_user_id{
color: #fff;font-size: 18px;
}
.user_center_user_id span{
font-size: 16px;
}
.header_photo_user_name{
color: #cccccc;font-size: 14px;margin-top: -28px;
}
.user_center_content_1{
width: 100%; background: #ffffff;
}
.shop_index_section_table{
font-family: 'Hiragino Sans GB W3';background: #ffffff;width: 100%;text-align: center;color: #0aa0ef;
}
.shop_index_section_table .td_border{
border: 1px solid #eeeeee;
width:33%;
}
.shop_index_section_table .td_border a{
color: #0aa0ef;
}
.shop_index_section_content_all{
background: #ffffff;margin-top: 10px;
}
.shop_index_section_content_all .shop_index_section_content_list{
padding: 15px;border-bottom: 1px solid #e3e3e3;
}
.shop_index_section_content_list .user_center_list_name{
color: #696969;
}
.shop_index_section_content_list .user_center_list_right{
float: right;font-size: 18px;margin-top: -3px;color: #848484;
}
.footer{
width: 100%;height: 60px; position:fixed; bottom:0;background-color: #ffffff;z-index: 555;border-top:1px solid #e9e9e9;color: #696969;
}
.footer_tab{
text-align: center;
}
.footer_tab td{
width: 20%;
}
.footer_tab img{
width: 20px;height: 20px;margin: 0 auto;margin-top: 8px;
}
.footer_span_2{
font-size: 15px; font-family: '宋体';color: #808080;
}
.shop_index_section_btn{
width: 94%;margin: 0 auto;display: block;margin-top: 20px;background: #fd4e87;border: 1px solid #ffffff;color: #ffffff;padding: 10px 0;border-radius: 10px;
} | statics/css/usercenter.css | @charset "UTF-8";
html{
font-size: 62.5%;
font-family: "Hiragino Sans GB W3";
}
body,h1,h2,h3,p,ul,ol,form,fieldset,figure{
margin: 0;
padding: 0;
}
ul,ol{
list-style: none;
}
.user_center_body_all{
padding-bottom: 80px;
background: #ecf1eb;
}
.am-topbar{
boder-style:none;
}
.register_one_header{
width: 100%;text-align: center;background: #01a2f2;
}
.register_header_title{
text-align: center;line-height: 50px;font-size: 20px;font-family: '宋体';
}
.register_header_back{
line-height: 50px;font-size: 20px;float: left;margin-left:5px ;
}
.register_one_header{
border-color: #01a2f2;
}
.header{
position: relative;
z-index: 1;
}
.header_center{
width: 100%;
height: 170px;
background-color: #b2e2fa;
font-family: "宋体";
position: relative;
}
.header_center img{
width: 100%;
height:170px;
}
.header_photo{
position:absolute;
left: 0;
top: 0px;
width:100%;
height:180px;
z-indent:2;
line-height: 50px;
text-align: center;
}
.header_photo a{
float: right;margin-right: 5px;font-size: 13px;margin-top: -10px;color: blue;
}
.header_photo_user{
width:75px;height: 75px;border-radius: 75px;margin: 0 auto;margin-top: 25px; background-color:#d8d8d8;
}
.header_photo_user img{
width: 75px;height: 75px;border-radius: 75px;
}
.user_center_user_id{
color: #fff;font-size: 18px;
}
.user_center_user_id span{
font-size: 16px;
}
.header_photo_user_name{
color: #cccccc;font-size: 14px;margin-top: -28px;
}
.user_center_content_1{
width: 100%; background: #ffffff;
}
.shop_index_section_table{
font-family: 'Hiragino Sans GB W3';background: #ffffff;width: 100%;text-align: center;color: #0aa0ef;
}
.shop_index_section_table .td_border{
border: 1px solid #eeeeee;
width:33%;
}
.shop_index_section_table .td_border a{
color: #0aa0ef;
}
.shop_index_section_content_all{
background: #ffffff;margin-top: 10px;
}
.shop_index_section_content_all .shop_index_section_content_list{
padding: 15px;border-bottom: 1px solid #e3e3e3;
}
.shop_index_section_content_list .user_center_list_name{
color: #696969;
}
.shop_index_section_content_list .user_center_list_right{
float: right;font-size: 18px;margin-top: -3px;color: #848484;
}
.footer{
width: 100%;height: 60px; position:fixed; bottom:0;background-color: #ffffff;z-index: 555;border-top:1px solid #e9e9e9;color: #696969;
}
.footer_tab{
text-align: center;
}
.footer_tab td{
width: 20%;
}
.footer_tab img{
width: 20px;height: 20px;margin: 0 auto;margin-top: 8px;
}
.footer_span_2{
font-size: 15px; font-family: '宋体';color: #808080;
}
.shop_index_section_btn{
width: 94%;margin: 0 auto;display: block;margin-top: 20px;background: #fd4e87;border: 1px solid #ffffff;color: #ffffff;padding: 10px 0;border-radius: 10px;
} | 0.353763 | 0.074064 |
.ui-table-header {
color: rgba(255, 255, 255, 0.5);
}
.ui-table-header select {
margin-top: 2px;
margin-left: -6px;
}
.ui-table-header .col-one {
text-align: right;
padding-right: 60px;
}
.ui-table-header .col-two {
text-align: right;
padding-right: 74px;
}
.ui-table-tr {
line-height: 32px;
}
.icon-shiming {
margin-right: 4px;
font-size: 16px;
}
.notReal {
color: rgba(255, 255, 255, 0.5);
}
.isReal {
color: #ffae00;
}
.modal-dialog input {
margin: 0 auto;
width: 80%;
}
.chart-wrapper,
.info-wrapper {
height: 238px;
}
.info-operation {
margin-top: 24px;
text-align: right;
}
/*添加渠道*/
.modal-step-one .modal-footer,
.modal-step-two .modal-footer {
text-align: right;
}
.modal-step-one .modal-body {
padding: 20px 20px 110px;
}
.modal-step-two .modal-body > .title {
margin-bottom: 6px;
}
.modal-step-two .agent-info {
margin-bottom: 10px;
height: 120px;
border: 1px solid #00a2ff;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
}
.modal-step-two .agent-info .iconfont {
color: #333;
cursor: pointer;
}
.modal-step-two .agent-info ul {
padding: 10px;
width: 100%;
}
.modal-step-two .agent-info li {
cursor: pointer;
font-size: 14px;
}
.modal-step-two .agent-info li.disabled {
color: #909090;
cursor: default;
}
.modal-step-two .agent-info li.selected {
color: #00a2ff;
}
.modal-step-two .tips {
float: right;
}
.modal-step-two .form-horizontal .title {
margin-bottom: 4px;
}
.modal-step-two .form-horizontal input {
width: 100%;
margin-bottom: 10px;
}
.modal-step-two .form-horizontal .btn {
padding: 0;
min-width: 56px;
}
#addAgent select.form-control {
margin: 0 auto;
padding: 0 12px;
width: 80%;
color: #333;
border: 1px solid #ccc;
}
#addAgent select.form-control option {
background: #fff;
color: #333;
}
#addAgent select.form-control option:disabled {
color: #ccc;
}
/*个人信息*/
#info .info-img {
margin-right: 30px;
width: 70px;
height: 70px;
}
#info .info-wrapper {
padding: 40px 10px 40px 40px;
}
#info .info-wrapper .name {
display: inline-block;
width: 50px;
text-align-last: justify;
}
#info .info-wrapper i {
margin: 0 4px;
}
#info .info-wrapper p {
line-height: 20px;
}
#info .info-wrapper .info-datails {
color: rgba(255, 255, 255, 0.8);
}
.select-wrapper {
margin-bottom: 10px;
}
.select-wrapper .btn-select {
height: 26px;
line-height: 26px;
}
#performance #main {
float: right;
}
#performance .chart-header {
padding-right: 40px;
}
#performance .ui-table-tr {
line-height: 18px;
}
#performance .ui-table-tr div {
margin-top: 18px;
}
/*计划详情*/
.details-left,
.details-right {
margin-bottom: 10px;
padding: 10px;
line-height: 20px;
background: #21294c;
overflow: hidden;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.details-left img {
width: initial;
float: left;
margin-right: 20px;
margin-bottom: 10px;
}
.details-left .title {
margin-top: 5px;
font-size: 16px;
}
.details-left .name {
display: inline-block;
margin-right: 40px;
width: 100px;
text-align: right;
}
.details-right {
height: 160px;
}
.details-right .title {
margin-bottom: 10px;
font-size: 14px;
}
.rights-scroll {
height: 112px;
}
.rights-scroll td {
padding: 0 10px 10px 0;
width: 20%;
}
.rights-scroll td:last-child {
width: 60%;
}
.count-wrapper {
height: 80px;
line-height: 80px;
background: #21294c;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
margin-bottom: 10px;
}
.count {
padding-right: 20px;
float: right;
font-size: 18px;
font-weight: bold;
}
.count li {
margin-left: 70px;
display: inline-block;
}
.count span {
color: #00a2ff;
}
@media (min-width: 1100px) {
.section .col-md-3 {
width: 12.5%;
}
}
.user {
font-size: 16px;
}
/*计划书详情*/
.plan-wrapper {
height: 400px;
background: #21294c;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
overflow: hidden;
}
.plan-wrapper .title {
height: 40px;
line-height: 40px;
font-size: 12px;
text-align: center;
color: #242b51;
background: #00a2ff;
}
.plan-wrapper .name {
font-size: 16px;
}
.plan-wrapper .plan-content {
padding: 20px;
}
.plan-wrapper .plan-list {
margin-top: 20px;
}
.plan-wrapper .plan-list li {
line-height: 20px;
}
.comment {
line-height: 20px;
position: relative;
color: rgba(255, 255, 255, 0.8);
text-align: justify;
}
.btn-unfold {
position: absolute;
right: 0;
bottom: 0;
background: #21294c;
}
.btn-unfold i {
color: #00a2ff;
}
.ellipsis {
line-height: 32px;
} | public/r_backend/v2/css/agent.css | .ui-table-header {
color: rgba(255, 255, 255, 0.5);
}
.ui-table-header select {
margin-top: 2px;
margin-left: -6px;
}
.ui-table-header .col-one {
text-align: right;
padding-right: 60px;
}
.ui-table-header .col-two {
text-align: right;
padding-right: 74px;
}
.ui-table-tr {
line-height: 32px;
}
.icon-shiming {
margin-right: 4px;
font-size: 16px;
}
.notReal {
color: rgba(255, 255, 255, 0.5);
}
.isReal {
color: #ffae00;
}
.modal-dialog input {
margin: 0 auto;
width: 80%;
}
.chart-wrapper,
.info-wrapper {
height: 238px;
}
.info-operation {
margin-top: 24px;
text-align: right;
}
/*添加渠道*/
.modal-step-one .modal-footer,
.modal-step-two .modal-footer {
text-align: right;
}
.modal-step-one .modal-body {
padding: 20px 20px 110px;
}
.modal-step-two .modal-body > .title {
margin-bottom: 6px;
}
.modal-step-two .agent-info {
margin-bottom: 10px;
height: 120px;
border: 1px solid #00a2ff;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
}
.modal-step-two .agent-info .iconfont {
color: #333;
cursor: pointer;
}
.modal-step-two .agent-info ul {
padding: 10px;
width: 100%;
}
.modal-step-two .agent-info li {
cursor: pointer;
font-size: 14px;
}
.modal-step-two .agent-info li.disabled {
color: #909090;
cursor: default;
}
.modal-step-two .agent-info li.selected {
color: #00a2ff;
}
.modal-step-two .tips {
float: right;
}
.modal-step-two .form-horizontal .title {
margin-bottom: 4px;
}
.modal-step-two .form-horizontal input {
width: 100%;
margin-bottom: 10px;
}
.modal-step-two .form-horizontal .btn {
padding: 0;
min-width: 56px;
}
#addAgent select.form-control {
margin: 0 auto;
padding: 0 12px;
width: 80%;
color: #333;
border: 1px solid #ccc;
}
#addAgent select.form-control option {
background: #fff;
color: #333;
}
#addAgent select.form-control option:disabled {
color: #ccc;
}
/*个人信息*/
#info .info-img {
margin-right: 30px;
width: 70px;
height: 70px;
}
#info .info-wrapper {
padding: 40px 10px 40px 40px;
}
#info .info-wrapper .name {
display: inline-block;
width: 50px;
text-align-last: justify;
}
#info .info-wrapper i {
margin: 0 4px;
}
#info .info-wrapper p {
line-height: 20px;
}
#info .info-wrapper .info-datails {
color: rgba(255, 255, 255, 0.8);
}
.select-wrapper {
margin-bottom: 10px;
}
.select-wrapper .btn-select {
height: 26px;
line-height: 26px;
}
#performance #main {
float: right;
}
#performance .chart-header {
padding-right: 40px;
}
#performance .ui-table-tr {
line-height: 18px;
}
#performance .ui-table-tr div {
margin-top: 18px;
}
/*计划详情*/
.details-left,
.details-right {
margin-bottom: 10px;
padding: 10px;
line-height: 20px;
background: #21294c;
overflow: hidden;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
.details-left img {
width: initial;
float: left;
margin-right: 20px;
margin-bottom: 10px;
}
.details-left .title {
margin-top: 5px;
font-size: 16px;
}
.details-left .name {
display: inline-block;
margin-right: 40px;
width: 100px;
text-align: right;
}
.details-right {
height: 160px;
}
.details-right .title {
margin-bottom: 10px;
font-size: 14px;
}
.rights-scroll {
height: 112px;
}
.rights-scroll td {
padding: 0 10px 10px 0;
width: 20%;
}
.rights-scroll td:last-child {
width: 60%;
}
.count-wrapper {
height: 80px;
line-height: 80px;
background: #21294c;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
margin-bottom: 10px;
}
.count {
padding-right: 20px;
float: right;
font-size: 18px;
font-weight: bold;
}
.count li {
margin-left: 70px;
display: inline-block;
}
.count span {
color: #00a2ff;
}
@media (min-width: 1100px) {
.section .col-md-3 {
width: 12.5%;
}
}
.user {
font-size: 16px;
}
/*计划书详情*/
.plan-wrapper {
height: 400px;
background: #21294c;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
overflow: hidden;
}
.plan-wrapper .title {
height: 40px;
line-height: 40px;
font-size: 12px;
text-align: center;
color: #242b51;
background: #00a2ff;
}
.plan-wrapper .name {
font-size: 16px;
}
.plan-wrapper .plan-content {
padding: 20px;
}
.plan-wrapper .plan-list {
margin-top: 20px;
}
.plan-wrapper .plan-list li {
line-height: 20px;
}
.comment {
line-height: 20px;
position: relative;
color: rgba(255, 255, 255, 0.8);
text-align: justify;
}
.btn-unfold {
position: absolute;
right: 0;
bottom: 0;
background: #21294c;
}
.btn-unfold i {
color: #00a2ff;
}
.ellipsis {
line-height: 32px;
} | 0.293202 | 0.076891 |
font-family: 'Rokkitt';
}
.b{
background-color:#0384fc;
}
.g{
background-color:#04944c;
}
.p{
background-color:#4000bf;
}
.r{
background-color:#bf0000;
}
.gold{
background-color:#ecba01;
}
.card{
width:25%;
height:12vh;
border-radius:20px;
display:inline-block;
margin-right: 3%;
margin-top:3%;
}
.card-name{
color:white;
font-size:20px;
width:70%;
}
.card p{
line-height:1vh;
}
.card-inner{
margin: auto;
width:90%
}
.worth{
color:white;
text-align:right;
width:10%;
margin-right:1vw;
}
.coin{
text-shadow:2px 2px 5px black;
text-align:center;
border-radius:50px;
width:10%;
border:solid 1px black;
background-color:#ffd903;
}
div.row.player-money{
width:85%;
margin: auto;
height:4vh;
margin-bottom:1%
}
div.row.player-money div.col{
border:solid 1px white;
padding: 0px 0px;
text-align:center;
line-height:40px;
height:40px;
font-family: 'Rokkitt';
color:white;
font-size:20px;
}
div#dbldice-cont{
width:fit-content;
margin: auto;
}
div.dbldice{
display:inline-grid;
}
div#dice, div.dbldice{
height:100px;
width:100px;
margin: 50px auto;
border: 5px solid white;
border-radius: 20px;
font-size:100px;
color:white;
margin: auto;
}
p#dicetext{
font-size:60px;
text-align:center;
}
h3#pt{
text-align:center;
}
.deck-card-info.text-white.mb-3.card {
margin: 0;
}
p.other-deck-card-info , p.deck-card-name{
font-size:12px;
}
#deck{
padding:20px;
}
.deck-card-info.text-white.mb-3.card{
margin: 0 4%;
}
.deck-card-info.text-white.mb-3.card.can-buy{
border:solid gold;
}
.deck-card-info.text-white.mb-3.card.can-buy:hover{
box-shadow: 0px 0px 10px blue;
}
h3.deck-player-info{
text-align:center;
}
div#main-game-container {
display:inline-grid;
width:80%;
margin-left:1%;
}
div#game.container-fluid{
height:65vh;
}
div#game.container-fluid div.row{
height:50%;
}
div#game-info-container{
width: 19%;
display: inline-grid;
background-color: rgb(0 18 39 / 50%);
height: 100vh;
border: solid white;
}
#card-activated{
border-bottom: solid white;
}
#card-activated, #landmarks{
height:49vh;
padding:5px;
overflow: scroll;
}
div#card-activated div#activated-cards-container{
width:20vh;
margin: 0 auto;
margin-top: 5px;
height: 4vh;
display:block;
}
.landmark-cards.deck-card-info.text-white.mb-3.card.dis{
background-color:#808080;
}
.landmark-cards.deck-card-info.text-white.mb-3.card.active{
background-color:#ecba01;
}
.landmark-cards.deck-card-info.text-white.mb-3.card{
height:3vh;
text-align:center;
margin: 0 auto;
width:90%;
}
#landmarks div div.row{
height:4vh;
margin:0 auto;
}
button#extra-2-roll-dice,button#extra-roll-dice,#dice.btn.btn-dark,#resolve-cards.btn.btn-dark,#open-deck.btn.btn-dark,#switch-cards.btn.btn-dark,#open-landmarks.btn.btn-dark,#roll-dice2.btn.btn-dark,#roll-dice.btn.btn-dark{
display:inline-grid;
margin: 0 auto;
margin-right:5px;
}
.btn.btn-dark:hover{
color:white;
background-color:#0a7cef;
}
.control-block{
display:block;
margin: auto;
width:fit-content;
margin-top:1vh;
}
.dice-2{
margin-left:1%;
}
#p1,#p2,#p3,#p4{
overflow: scroll;
}
#deckLandmarks{
text-align:center;
}
button.deck-card-info.text-white.mb-3.card.gold{
display:inline-grid;
width:50%;
font-size:20px;
padding:4.5vh;
}
div.text-white.mb-3.card{
width: 30%;
}
.landmark-cards.deck-card-info.text-white.mb-3.card.activ{
background-color:#bb0000;
}
button#switch-cards-confirm{
margin:auto;
display:block;
}
div.switch-cards-inner{
padding:2vh 2vw;
}
h1.cs{
text-align:center;
padding: 1vh 1vw;
font-family: 'Rokitt';
}
div.alert.alert-primary{
z-index:2;
position:absolute;
top:0px;
left:0px;
width:100%;
text-align: center;
}
#main-game-container, div.alert.alert-primary{
animation: fadeInAnimation ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#start-game{
position:fixed;
width:100vw;
height:100vh;
z-index:2;
display:flex;
background: linear-gradient(3deg, #000000, #070b34, #141852, #2b2f77, #483475, #6b4984, #855988);
background-size: 1400% 1400%;
-webkit-animation: machikoro 19s ease infinite;
-moz-animation: machikoro 19s ease infinite;
animation: machikoro 19s ease infinite;
}
@-webkit-keyframes machikoro {
0%{background-position:51% 0%}
50%{background-position:50% 100%}
100%{background-position:51% 0%}
}
@-moz-keyframes machikoro {
0%{background-position:51% 0%}
50%{background-position:50% 100%}
100%{background-position:51% 0%}
}
@keyframes machikoro {
0%{background-position:51% 0%}
50%{background-position:50% 100%}
100%{background-position:51% 0%}
}
div#game-info{
width:fit-content;
margin:auto;
align-items:center;
}
div#game-form{
font-family:'Rokitt';
color:#228B22;
background: white;
padding: 5vw;
display: block;
align-items: center;
border-radius: 20px;
box-shadow: 10px 10px 10px black;
border: 2px solid black;
}
#game-form h2{
text-align: center;
width:100%;
}
#game-form button{
margin:auto;
display:block;
}
div#game-form div.row{
height:10vh;
margin-top:3vh;
}
#game-form .col label{
display:block;
text-align:center;
} | public/css/machi.css | font-family: 'Rokkitt';
}
.b{
background-color:#0384fc;
}
.g{
background-color:#04944c;
}
.p{
background-color:#4000bf;
}
.r{
background-color:#bf0000;
}
.gold{
background-color:#ecba01;
}
.card{
width:25%;
height:12vh;
border-radius:20px;
display:inline-block;
margin-right: 3%;
margin-top:3%;
}
.card-name{
color:white;
font-size:20px;
width:70%;
}
.card p{
line-height:1vh;
}
.card-inner{
margin: auto;
width:90%
}
.worth{
color:white;
text-align:right;
width:10%;
margin-right:1vw;
}
.coin{
text-shadow:2px 2px 5px black;
text-align:center;
border-radius:50px;
width:10%;
border:solid 1px black;
background-color:#ffd903;
}
div.row.player-money{
width:85%;
margin: auto;
height:4vh;
margin-bottom:1%
}
div.row.player-money div.col{
border:solid 1px white;
padding: 0px 0px;
text-align:center;
line-height:40px;
height:40px;
font-family: 'Rokkitt';
color:white;
font-size:20px;
}
div#dbldice-cont{
width:fit-content;
margin: auto;
}
div.dbldice{
display:inline-grid;
}
div#dice, div.dbldice{
height:100px;
width:100px;
margin: 50px auto;
border: 5px solid white;
border-radius: 20px;
font-size:100px;
color:white;
margin: auto;
}
p#dicetext{
font-size:60px;
text-align:center;
}
h3#pt{
text-align:center;
}
.deck-card-info.text-white.mb-3.card {
margin: 0;
}
p.other-deck-card-info , p.deck-card-name{
font-size:12px;
}
#deck{
padding:20px;
}
.deck-card-info.text-white.mb-3.card{
margin: 0 4%;
}
.deck-card-info.text-white.mb-3.card.can-buy{
border:solid gold;
}
.deck-card-info.text-white.mb-3.card.can-buy:hover{
box-shadow: 0px 0px 10px blue;
}
h3.deck-player-info{
text-align:center;
}
div#main-game-container {
display:inline-grid;
width:80%;
margin-left:1%;
}
div#game.container-fluid{
height:65vh;
}
div#game.container-fluid div.row{
height:50%;
}
div#game-info-container{
width: 19%;
display: inline-grid;
background-color: rgb(0 18 39 / 50%);
height: 100vh;
border: solid white;
}
#card-activated{
border-bottom: solid white;
}
#card-activated, #landmarks{
height:49vh;
padding:5px;
overflow: scroll;
}
div#card-activated div#activated-cards-container{
width:20vh;
margin: 0 auto;
margin-top: 5px;
height: 4vh;
display:block;
}
.landmark-cards.deck-card-info.text-white.mb-3.card.dis{
background-color:#808080;
}
.landmark-cards.deck-card-info.text-white.mb-3.card.active{
background-color:#ecba01;
}
.landmark-cards.deck-card-info.text-white.mb-3.card{
height:3vh;
text-align:center;
margin: 0 auto;
width:90%;
}
#landmarks div div.row{
height:4vh;
margin:0 auto;
}
button#extra-2-roll-dice,button#extra-roll-dice,#dice.btn.btn-dark,#resolve-cards.btn.btn-dark,#open-deck.btn.btn-dark,#switch-cards.btn.btn-dark,#open-landmarks.btn.btn-dark,#roll-dice2.btn.btn-dark,#roll-dice.btn.btn-dark{
display:inline-grid;
margin: 0 auto;
margin-right:5px;
}
.btn.btn-dark:hover{
color:white;
background-color:#0a7cef;
}
.control-block{
display:block;
margin: auto;
width:fit-content;
margin-top:1vh;
}
.dice-2{
margin-left:1%;
}
#p1,#p2,#p3,#p4{
overflow: scroll;
}
#deckLandmarks{
text-align:center;
}
button.deck-card-info.text-white.mb-3.card.gold{
display:inline-grid;
width:50%;
font-size:20px;
padding:4.5vh;
}
div.text-white.mb-3.card{
width: 30%;
}
.landmark-cards.deck-card-info.text-white.mb-3.card.activ{
background-color:#bb0000;
}
button#switch-cards-confirm{
margin:auto;
display:block;
}
div.switch-cards-inner{
padding:2vh 2vw;
}
h1.cs{
text-align:center;
padding: 1vh 1vw;
font-family: 'Rokitt';
}
div.alert.alert-primary{
z-index:2;
position:absolute;
top:0px;
left:0px;
width:100%;
text-align: center;
}
#main-game-container, div.alert.alert-primary{
animation: fadeInAnimation ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#start-game{
position:fixed;
width:100vw;
height:100vh;
z-index:2;
display:flex;
background: linear-gradient(3deg, #000000, #070b34, #141852, #2b2f77, #483475, #6b4984, #855988);
background-size: 1400% 1400%;
-webkit-animation: machikoro 19s ease infinite;
-moz-animation: machikoro 19s ease infinite;
animation: machikoro 19s ease infinite;
}
@-webkit-keyframes machikoro {
0%{background-position:51% 0%}
50%{background-position:50% 100%}
100%{background-position:51% 0%}
}
@-moz-keyframes machikoro {
0%{background-position:51% 0%}
50%{background-position:50% 100%}
100%{background-position:51% 0%}
}
@keyframes machikoro {
0%{background-position:51% 0%}
50%{background-position:50% 100%}
100%{background-position:51% 0%}
}
div#game-info{
width:fit-content;
margin:auto;
align-items:center;
}
div#game-form{
font-family:'Rokitt';
color:#228B22;
background: white;
padding: 5vw;
display: block;
align-items: center;
border-radius: 20px;
box-shadow: 10px 10px 10px black;
border: 2px solid black;
}
#game-form h2{
text-align: center;
width:100%;
}
#game-form button{
margin:auto;
display:block;
}
div#game-form div.row{
height:10vh;
margin-top:3vh;
}
#game-form .col label{
display:block;
text-align:center;
} | 0.370681 | 0.055285 |
:root {
--primary-color: #e67e22;
--secondary-color: #d35400;
--font-color: #ffffff; }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 200;
src: local("Dosis ExtraLight"), local("Dosis-ExtraLight"), url(../fonts/dosis/ExtraLight.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 300;
src: local("Dosis Light"), local("Dosis-Light"), url(../fonts/dosis/Light.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 400;
src: local("Dosis Regular"), local("Dosis-Regular"), url(../fonts/dosis/Regular.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 500;
src: local("Dosis Medium"), local("Dosis-Medium"), url(../fonts/dosis/Medium.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 600;
src: local("Dosis SemiBold"), local("Dosis-SemiBold"), url(../fonts/dosis/SemiBold.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 700;
src: local("Dosis Bold"), local("Dosis-Bold"), url(../fonts/dosis/Bold.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 800;
src: local("Dosis ExtraBold"), local("Dosis-ExtraBold"), url(../fonts/dosis/ExtraBold.woff) format("woff"); }
* {
-ms-content-zooming: none;
box-sizing: border-box; }
html, body {
width: 100%;
height: 100%; }
h1, h2 {
font-weight: 300; }
h1 {
font-size: 3rem;
margin: 33px 0; }
h3 {
font-weight: normal; }
.deselect ::selection {
background: transparent;
color: inherit; }
.deselect ::-moz-selection {
background: transparent;
color: inherit; }
.deselect {
-ms-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
body {
padding: 0;
margin: 0;
font-family: 'Dosis', sans-serif;
font-weight: 300;
color: #2b2127;
font-size: 1em;
line-height: 1.5;
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
overflow: hidden; }
.btn {
padding: 20px 40px;
border: 0 none;
background: var(--primary-color);
display: inline-block;
color: var(--font-color);
text-decoration: none;
margin: auto;
width: 200px;
text-align: center;
font-size: 16px; }
.btn--small {
padding: 12px 40px; }
.btn--flex {
width: auto; }
.btn:active, .btn:focus, .btn:hover {
background: var(--secondary-color); }
.btn.save-btn,
.btn.install-btn {
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100%;
-webkit-transition: background-color 0.2s linear;
-moz-transition: background-color 0.2s linear;
-o-transition: background-color 0.2s linear;
-ms-transition: background-color 0.2s linear;
transition: background-color 0.2s linear; }
.btn.save-btn i,
.btn.install-btn i {
display: none; }
.btn.save-btn:active, .btn.save-btn:focus,
.btn.install-btn:active,
.btn.install-btn:focus {
outline: none; }
.btn.save-btn span,
.btn.install-btn span {
display: none; }
.btn.save-btn span.sv,
.btn.install-btn span.sv {
display: inline; }
.btn.save-btn.error span.sv,
.btn.save-btn.success span.sv,
.btn.save-btn.saving span.sv,
.btn.install-btn.error span.sv,
.btn.install-btn.success span.sv,
.btn.install-btn.saving span.sv {
display: none; }
.btn.save-btn.saving i,
.btn.install-btn.saving i {
display: inline-block; }
.btn.save-btn.error,
.btn.install-btn.error {
background-color: #d93939 !important; }
.btn.save-btn.error span.er,
.btn.install-btn.error span.er {
display: inline; }
.btn.save-btn.success,
.btn.install-btn.success {
background-color: #81d939 !important; }
.btn.save-btn.success span.su,
.btn.install-btn.success span.su {
display: inline; }
.gallery {
position: fixed;
width: 0px;
height: 0px;
left: 0;
top: 0;
background: var(--primary-color);
overflow: hidden;
color: var(--font-color);
transition: width 0.3s, height 0.3s;
z-index: 1000; }
.gallery h1 {
margin-top: 10px;
margin-left: 30px; }
.gallery--open {
width: 100%;
height: 100%;
padding: 0; }
.gallery__close {
position: absolute;
right: 30px;
top: 24px;
color: #fff;
font-size: 30px;
width: 50px;
height: 50px;
background: var(--secondary-color);
text-align: center;
line-height: 50px; }
.gallery__inner {
position: relative;
display: flex;
height: 100%;
flex-direction: column; }
.gallery__header {
height: 100px;
width: 100%;
background: var(--primary-color); }
.gallery__body {
display: flex;
flex-wrap: wrap;
overflow-y: auto;
justify-content: center; }
.gallery__body a {
display: block;
width: 33.333333333333%;
padding: 3px;
max-width: 500px; }
.gallery__body img {
max-width: 100%;
list-style: none;
border: 1px solid #fff;
display: block; }
.gallery__body figure {
display: none; }
.gallery-button {
position: relative;
z-index: 100; }
.sidenav {
width: 100%;
position: fixed;
z-index: 1005;
top: 0;
bottom: 0;
right: -100%;
background: rgba(0, 0, 0, 0.5);
overflow-x: hidden;
overflow-y: auto;
padding: 60px 30px;
transition: right 0.5s; }
@media (min-width: 576px) {
.sidenav {
width: 250px;
right: -250px; } }
.sidenav--open {
right: 0; }
.sidenav a {
text-transform: uppercase;
margin-bottom: 3px;
background-color: var(--primary-color); }
.sidenav a:hover {
background-color: var(--secondary-color); }
.sidenav .btn {
width: 100%; }
.sidenav .closebtn {
position: absolute;
right: 30px;
top: 0;
color: var(--font-color);
font-size: 30px;
width: 50px;
height: 50px;
background: var(--primary-color);
text-align: center;
line-height: 50px; }
.sidenav .closebtn:hover {
background: var(--secondary-color); }
.sidenav .activeSidenavBtn a {
background-color: var(--secondary-color); }
::-webkit-scrollbar {
width: 6px; }
/* Track */
::-webkit-scrollbar-track {
-webkit-border-radius: 0px;
border-radius: 0px;
background-color: transparent; }
/* Handle */
::-webkit-scrollbar-thumb {
-webkit-border-radius: 0px;
background: var(--secondary-color); }
.modal {
display: none;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
justify-content: center;
align-items: center; }
.modal--show {
display: flex; }
.modal__body {
color: #ffffff;
font-size: 2em;
text-align: center;
max-width: 100%;
padding: 6px; }
.modal__body * {
max-width: 100%; }
#qrCode .modal__body {
background-color: #ffffff;
color: #252525; }
#qrCode .modal__body p {
margin: 0; }
.pswp__button--close {
color: #ffffff;
width: 50px;
height: 50px;
font-size: 26px;
opacity: 0.75;
background-image: none; }
.pswp__button--close > i {
position: relative;
z-index: -1; }
.pswp__qr {
width: 500px;
position: absolute;
left: 50%;
top: 50%;
z-index: 10000;
transform: translate(-50%, -50%);
max-width: 100%; }
.pswp__qr img {
width: 100%; }
#wrapper {
display: none;
position: relative;
overflow: hidden;
width: 100%;
height: 100%;
background-color: var(--primary-color);
background-image: url(../img/bg.jpg);
background-position: center center;
background-size: cover; }
#wrapper.bluegray-bg {
background-image: url(../img/bg_bluegray.jpg); }
.adminpanel {
width: 400px;
background: #fff;
min-height: 400px;
margin: 100px auto 0;
padding: 15px 15px 70px;
position: relative; }
.adminpanel h2 {
text-align: center; }
#result {
width: 100%;
background: center center no-repeat;
background-size: cover;
z-index: 2; }
.resultInner {
display: flex;
position: absolute;
bottom: -64px;
left: 0;
right: 0;
justify-content: center;
transition: bottom 0.5s;
z-index: 100; }
.resultInner.show {
bottom: 0; }
.resultInner .btn {
width: auto;
padding: 20px 0;
text-align: center;
flex-grow: 1;
max-width: 250px;
margin: initial; }
@media (max-width: 576px) {
.resultInner span {
display: none; } }
#counter {
backface-visibility: hidden;
font-size: 12em;
opacity: 0.2; }
#counter.tick {
font-size: 1em;
opacity: 1;
transition: font-size 0.75s, opacity 0.75s; }
#loader {
display: none;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.9);
color: #252525;
z-index: 100;
text-align: center;
position: absolute;
top: 0;
left: 0; }
#loader.open {
display: flex; }
#loader .spinner {
font-size: 80px; }
.homebtn {
position: absolute;
right: 0;
top: 0;
font-size: 14px;
width: 130px; }
.qr {
display: none;
width: 500px;
position: absolute;
left: 0;
top: 0;
background: #fff; }
.qr > * {
display: none; }
.qr.active > * {
display: block; }
.qr p {
margin: 0;
padding: 0 15px;
font-size: 25px; }
.qr img {
width: 100%;
height: auto; }
.send-mail {
z-index: 1600;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 25px 15px 15px;
min-width: 250px;
display: none; }
#send-mail-close {
position: absolute;
right: 14px;
top: 14px;
font-size: 28px;
cursor: pointer; }
.mail-form-input {
padding: 15px;
margin: 12px 0;
width: 100%; }
.spacer {
clear: both;
height: 50px;
width: 100%; }
.loading {
font-size: 50px;
text-align: center;
width: 100%; }
.stages {
display: none;
height: 100%;
width: 100%; }
hr.small {
width: 50%;
display: block;
margin: auto; }
.blurred {
display: none;
color: #fff;
width: 100%;
height: 250px;
background: url(../img/bg.jpg) center center no-repeat;
background-size: cover;
-webkit-filter: blur(6px);
-moz-filter: blur(6px);
-o-filter: blur(6px);
-ms-filter: blur(6px);
filter: blur(6px);
position: absolute;
top: 50%;
margin-top: -125px; }
#start.open {
display: flex;
align-items: center;
justify-content: center; }
#start .gallery-button {
position: fixed;
top: 0;
left: 0; }
#start .startInner {
background: rgba(0, 0, 0, 0.5);
color: #fff;
text-align: center;
padding: 1rem;
text-transform: uppercase; }
#start .startInner .names {
margin-top: 1rem;
margin-bottom: 2rem; }
#start .startInner .btn {
margin-top: 3px;
width: 80%; }
@media (min-width: 576px) {
#start .startInner {
padding: 3rem; }
#start .startInner .names {
margin-top: 2rem;
margin-bottom: 5rem; } }
.sliderImages {
display: none;
position: fixed;
top: 0;
z-index: 1000000;
background: #000; }
.owl-carousel.owl-loaded {
display: none; }
.overlay {
display: none;
background-color: #000;
width: 400px;
height: 200px;
position: fixed;
z-index: 1010;
left: 50%;
top: 50%;
right: 0;
bottom: 0; }
#gallery .controls a.close_opengal {
display: none;
right: 30px;
top: 30px;
position: fixed;
z-index: 10000000;
font-size: 50px;
text-shadow: 0 2px 0 #000;
color: #fff; }
.gal-qr-code, .gal-print, .gal-print-chroma_keying, .gal-mail {
color: #fff;
background: transparent;
font-size: 26px;
text-align: center;
width: 50px;
height: 50px;
cursor: pointer;
overflow: visible;
-webkit-appearance: none;
display: block;
border: 0;
padding: 0;
margin: 0;
float: right;
opacity: 0.75; }
.gal-qr-code:hover, .gal-print:hover, .gal-print-chroma_keying:hover, .gal-mail:hover {
opacity: 1; }
#video {
position: absolute;
top: 50%;
margin-top: -240px;
margin-left: -360px;
left: 50%; }
.chroma-control-bar {
margin-top: 12px;
text-align: center; }
@media (max-width: 576px) {
.chroma-control-bar span {
display: none; } }
@media (max-width: 767px) {
.takePic {
bottom: auto; } } | resources/css/style.css | :root {
--primary-color: #e67e22;
--secondary-color: #d35400;
--font-color: #ffffff; }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 200;
src: local("Dosis ExtraLight"), local("Dosis-ExtraLight"), url(../fonts/dosis/ExtraLight.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 300;
src: local("Dosis Light"), local("Dosis-Light"), url(../fonts/dosis/Light.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 400;
src: local("Dosis Regular"), local("Dosis-Regular"), url(../fonts/dosis/Regular.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 500;
src: local("Dosis Medium"), local("Dosis-Medium"), url(../fonts/dosis/Medium.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 600;
src: local("Dosis SemiBold"), local("Dosis-SemiBold"), url(../fonts/dosis/SemiBold.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 700;
src: local("Dosis Bold"), local("Dosis-Bold"), url(../fonts/dosis/Bold.woff) format("woff"); }
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 800;
src: local("Dosis ExtraBold"), local("Dosis-ExtraBold"), url(../fonts/dosis/ExtraBold.woff) format("woff"); }
* {
-ms-content-zooming: none;
box-sizing: border-box; }
html, body {
width: 100%;
height: 100%; }
h1, h2 {
font-weight: 300; }
h1 {
font-size: 3rem;
margin: 33px 0; }
h3 {
font-weight: normal; }
.deselect ::selection {
background: transparent;
color: inherit; }
.deselect ::-moz-selection {
background: transparent;
color: inherit; }
.deselect {
-ms-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
body {
padding: 0;
margin: 0;
font-family: 'Dosis', sans-serif;
font-weight: 300;
color: #2b2127;
font-size: 1em;
line-height: 1.5;
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
overflow: hidden; }
.btn {
padding: 20px 40px;
border: 0 none;
background: var(--primary-color);
display: inline-block;
color: var(--font-color);
text-decoration: none;
margin: auto;
width: 200px;
text-align: center;
font-size: 16px; }
.btn--small {
padding: 12px 40px; }
.btn--flex {
width: auto; }
.btn:active, .btn:focus, .btn:hover {
background: var(--secondary-color); }
.btn.save-btn,
.btn.install-btn {
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100%;
-webkit-transition: background-color 0.2s linear;
-moz-transition: background-color 0.2s linear;
-o-transition: background-color 0.2s linear;
-ms-transition: background-color 0.2s linear;
transition: background-color 0.2s linear; }
.btn.save-btn i,
.btn.install-btn i {
display: none; }
.btn.save-btn:active, .btn.save-btn:focus,
.btn.install-btn:active,
.btn.install-btn:focus {
outline: none; }
.btn.save-btn span,
.btn.install-btn span {
display: none; }
.btn.save-btn span.sv,
.btn.install-btn span.sv {
display: inline; }
.btn.save-btn.error span.sv,
.btn.save-btn.success span.sv,
.btn.save-btn.saving span.sv,
.btn.install-btn.error span.sv,
.btn.install-btn.success span.sv,
.btn.install-btn.saving span.sv {
display: none; }
.btn.save-btn.saving i,
.btn.install-btn.saving i {
display: inline-block; }
.btn.save-btn.error,
.btn.install-btn.error {
background-color: #d93939 !important; }
.btn.save-btn.error span.er,
.btn.install-btn.error span.er {
display: inline; }
.btn.save-btn.success,
.btn.install-btn.success {
background-color: #81d939 !important; }
.btn.save-btn.success span.su,
.btn.install-btn.success span.su {
display: inline; }
.gallery {
position: fixed;
width: 0px;
height: 0px;
left: 0;
top: 0;
background: var(--primary-color);
overflow: hidden;
color: var(--font-color);
transition: width 0.3s, height 0.3s;
z-index: 1000; }
.gallery h1 {
margin-top: 10px;
margin-left: 30px; }
.gallery--open {
width: 100%;
height: 100%;
padding: 0; }
.gallery__close {
position: absolute;
right: 30px;
top: 24px;
color: #fff;
font-size: 30px;
width: 50px;
height: 50px;
background: var(--secondary-color);
text-align: center;
line-height: 50px; }
.gallery__inner {
position: relative;
display: flex;
height: 100%;
flex-direction: column; }
.gallery__header {
height: 100px;
width: 100%;
background: var(--primary-color); }
.gallery__body {
display: flex;
flex-wrap: wrap;
overflow-y: auto;
justify-content: center; }
.gallery__body a {
display: block;
width: 33.333333333333%;
padding: 3px;
max-width: 500px; }
.gallery__body img {
max-width: 100%;
list-style: none;
border: 1px solid #fff;
display: block; }
.gallery__body figure {
display: none; }
.gallery-button {
position: relative;
z-index: 100; }
.sidenav {
width: 100%;
position: fixed;
z-index: 1005;
top: 0;
bottom: 0;
right: -100%;
background: rgba(0, 0, 0, 0.5);
overflow-x: hidden;
overflow-y: auto;
padding: 60px 30px;
transition: right 0.5s; }
@media (min-width: 576px) {
.sidenav {
width: 250px;
right: -250px; } }
.sidenav--open {
right: 0; }
.sidenav a {
text-transform: uppercase;
margin-bottom: 3px;
background-color: var(--primary-color); }
.sidenav a:hover {
background-color: var(--secondary-color); }
.sidenav .btn {
width: 100%; }
.sidenav .closebtn {
position: absolute;
right: 30px;
top: 0;
color: var(--font-color);
font-size: 30px;
width: 50px;
height: 50px;
background: var(--primary-color);
text-align: center;
line-height: 50px; }
.sidenav .closebtn:hover {
background: var(--secondary-color); }
.sidenav .activeSidenavBtn a {
background-color: var(--secondary-color); }
::-webkit-scrollbar {
width: 6px; }
/* Track */
::-webkit-scrollbar-track {
-webkit-border-radius: 0px;
border-radius: 0px;
background-color: transparent; }
/* Handle */
::-webkit-scrollbar-thumb {
-webkit-border-radius: 0px;
background: var(--secondary-color); }
.modal {
display: none;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
justify-content: center;
align-items: center; }
.modal--show {
display: flex; }
.modal__body {
color: #ffffff;
font-size: 2em;
text-align: center;
max-width: 100%;
padding: 6px; }
.modal__body * {
max-width: 100%; }
#qrCode .modal__body {
background-color: #ffffff;
color: #252525; }
#qrCode .modal__body p {
margin: 0; }
.pswp__button--close {
color: #ffffff;
width: 50px;
height: 50px;
font-size: 26px;
opacity: 0.75;
background-image: none; }
.pswp__button--close > i {
position: relative;
z-index: -1; }
.pswp__qr {
width: 500px;
position: absolute;
left: 50%;
top: 50%;
z-index: 10000;
transform: translate(-50%, -50%);
max-width: 100%; }
.pswp__qr img {
width: 100%; }
#wrapper {
display: none;
position: relative;
overflow: hidden;
width: 100%;
height: 100%;
background-color: var(--primary-color);
background-image: url(../img/bg.jpg);
background-position: center center;
background-size: cover; }
#wrapper.bluegray-bg {
background-image: url(../img/bg_bluegray.jpg); }
.adminpanel {
width: 400px;
background: #fff;
min-height: 400px;
margin: 100px auto 0;
padding: 15px 15px 70px;
position: relative; }
.adminpanel h2 {
text-align: center; }
#result {
width: 100%;
background: center center no-repeat;
background-size: cover;
z-index: 2; }
.resultInner {
display: flex;
position: absolute;
bottom: -64px;
left: 0;
right: 0;
justify-content: center;
transition: bottom 0.5s;
z-index: 100; }
.resultInner.show {
bottom: 0; }
.resultInner .btn {
width: auto;
padding: 20px 0;
text-align: center;
flex-grow: 1;
max-width: 250px;
margin: initial; }
@media (max-width: 576px) {
.resultInner span {
display: none; } }
#counter {
backface-visibility: hidden;
font-size: 12em;
opacity: 0.2; }
#counter.tick {
font-size: 1em;
opacity: 1;
transition: font-size 0.75s, opacity 0.75s; }
#loader {
display: none;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.9);
color: #252525;
z-index: 100;
text-align: center;
position: absolute;
top: 0;
left: 0; }
#loader.open {
display: flex; }
#loader .spinner {
font-size: 80px; }
.homebtn {
position: absolute;
right: 0;
top: 0;
font-size: 14px;
width: 130px; }
.qr {
display: none;
width: 500px;
position: absolute;
left: 0;
top: 0;
background: #fff; }
.qr > * {
display: none; }
.qr.active > * {
display: block; }
.qr p {
margin: 0;
padding: 0 15px;
font-size: 25px; }
.qr img {
width: 100%;
height: auto; }
.send-mail {
z-index: 1600;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 25px 15px 15px;
min-width: 250px;
display: none; }
#send-mail-close {
position: absolute;
right: 14px;
top: 14px;
font-size: 28px;
cursor: pointer; }
.mail-form-input {
padding: 15px;
margin: 12px 0;
width: 100%; }
.spacer {
clear: both;
height: 50px;
width: 100%; }
.loading {
font-size: 50px;
text-align: center;
width: 100%; }
.stages {
display: none;
height: 100%;
width: 100%; }
hr.small {
width: 50%;
display: block;
margin: auto; }
.blurred {
display: none;
color: #fff;
width: 100%;
height: 250px;
background: url(../img/bg.jpg) center center no-repeat;
background-size: cover;
-webkit-filter: blur(6px);
-moz-filter: blur(6px);
-o-filter: blur(6px);
-ms-filter: blur(6px);
filter: blur(6px);
position: absolute;
top: 50%;
margin-top: -125px; }
#start.open {
display: flex;
align-items: center;
justify-content: center; }
#start .gallery-button {
position: fixed;
top: 0;
left: 0; }
#start .startInner {
background: rgba(0, 0, 0, 0.5);
color: #fff;
text-align: center;
padding: 1rem;
text-transform: uppercase; }
#start .startInner .names {
margin-top: 1rem;
margin-bottom: 2rem; }
#start .startInner .btn {
margin-top: 3px;
width: 80%; }
@media (min-width: 576px) {
#start .startInner {
padding: 3rem; }
#start .startInner .names {
margin-top: 2rem;
margin-bottom: 5rem; } }
.sliderImages {
display: none;
position: fixed;
top: 0;
z-index: 1000000;
background: #000; }
.owl-carousel.owl-loaded {
display: none; }
.overlay {
display: none;
background-color: #000;
width: 400px;
height: 200px;
position: fixed;
z-index: 1010;
left: 50%;
top: 50%;
right: 0;
bottom: 0; }
#gallery .controls a.close_opengal {
display: none;
right: 30px;
top: 30px;
position: fixed;
z-index: 10000000;
font-size: 50px;
text-shadow: 0 2px 0 #000;
color: #fff; }
.gal-qr-code, .gal-print, .gal-print-chroma_keying, .gal-mail {
color: #fff;
background: transparent;
font-size: 26px;
text-align: center;
width: 50px;
height: 50px;
cursor: pointer;
overflow: visible;
-webkit-appearance: none;
display: block;
border: 0;
padding: 0;
margin: 0;
float: right;
opacity: 0.75; }
.gal-qr-code:hover, .gal-print:hover, .gal-print-chroma_keying:hover, .gal-mail:hover {
opacity: 1; }
#video {
position: absolute;
top: 50%;
margin-top: -240px;
margin-left: -360px;
left: 50%; }
.chroma-control-bar {
margin-top: 12px;
text-align: center; }
@media (max-width: 576px) {
.chroma-control-bar span {
display: none; } }
@media (max-width: 767px) {
.takePic {
bottom: auto; } } | 0.429788 | 0.158956 |
*{
margin:0;
padding:0px;
box-sizing: border-box;
}
a{
color:#666;
text-decoration:none;
}
.container{
width:1180px;
margin:0 auto;
}
h5{
width:100%;
font-size: 16px;
color:#666;
margin:10px 0px 20px 0px;
}
.search{
width:100%;
border:1px solid #aaa;
margin-bottom:20px;
border-radius: 5px;
}
/* 商品搜索 */
.search .resolution,.search .option{
width:100%;
height:40px;
display: flex;
position: relative;
border-bottom:1px dashed #ccc;
}
.search .left{
width:10%;
padding-left:20px;
background:#ddd;
line-height: 37px;
font-size: 16px;
color:#666;
float: left;
}
.search .right{
width:90%;
}
.search .right ul,.search .search_model ul{
width:80%;
height:100%;
list-style: none;
float: left;
line-height: 37px;
box-sizing: border-box;
}
.search .right ul li,.search .search_model ul li{
height:100%;
padding:0px 20px;
float: left;
cursor: pointer;
}
.search .right ul li.on,.search .search_model ul li.on{
color:#f00;
background-image: url(../../../public/img/background/on.png);
background-position: bottom right;
background-repeat:no-repeat;
border:1px solid #f60;
}
.search .right div{
width:20%;
height:100%;
float: right;
}
.search .right div div{
width:60px;
height:30px;
margin:5px 5px;
line-height: 27px;
border:1px solid #ddd;
color:#666;
float: left;
}
.search .right div .more{
padding-left:7px;
cursor: pointer;
}
.search .right div .chb{
background-image: url(../../../public/img/background/加号.png);
background-position: center left;
background-size:20px 20px;
background-repeat:no-repeat;
padding-left:20px;
cursor: pointer;
}
/*多选框*/
.search .multify{
width:100%;
border:3px solid #f0f;
box-shadow:0 0 15px #ff0;
background: #fff;
zoom: 1;
clear: both;
position: absolute;
left:0px;
top:0px;
}
.search .multify .left_more{
width:10%;
height:100%;
padding-left:10px;
background:#fffdee;
font-size: 16px;
color:#666;
float: left;
}
.search .multify .right_more{
width:90%;
float: left;
}
.search .multify .right_more ul{
width:100%;
list-style: none;
float: left;
line-height: 37px;
text-align: center;
}
.search .multify .right_more ul li{
height:100%;
padding:0px 20px;
float: left;
}
.search .multify .right_more ul li:hover{
color:#f00;
}
.search .multify .right_more ul li a{
color: #005aa0;
}
.search .multify .right_more ul button.confirm{
width:52px;
height:25px;
border: 1px solid #DDD;
background: #f00;
color: #fff;
cursor: pointer;
}
.search .multify .right_more ul button.cansel{
width:52px;
height:25px;
border: 1px solid #DDD;
color: #666;
cursor: pointer;
}
/* 普通样式搜索 */
.search .search_price,.search .search_area,.search .search_model{
width:100%;
height:40px;
display: flex;
border-bottom:1px dashed #ccc;
}
.search .search_price .right,.search .search_area .right{
width:90%;
display: flex;
align-items: center;
}
.search .search_price .right ul,.search .search_area .right ul{
width:76%;
height:100%;
overflow: hidden;
}
.search .search_price div.input,.search .search_area div.input{
width:20%;
display: flex;
justify-content: center;
align-items: center;
}
.search .search_price div input,.search .search_area div input{
width:40px;
height:25px;
margin:0px 5px;
}
/* .search .search_model ul{
height: 100%;
display:flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.search .search_model ul li{
list-style: none;
padding:5px 15px;
}
.search .search_model ul li label{
cursor: pointer;
}
.search .search_model ul li label input{
margin:5px;
} */
/* 高级选项 */
.option div.menu{
width:9%;
height:30px;
border:1px solid #ddd;
background-image: url(../../../public/img/background/大于号_下.png);
background-position: center right;
background-size:20px 20px;
background-repeat:no-repeat;
color: #005aa0;
padding:3px 3px;
margin:4px 20px;
position: relative;
}
.option div.menu .menu_list1{
width:1180px;
height:60px;
background: #fff;
list-style: none;
line-height: 50px;
border:1px solid #ddd;
box-sizing: border-box;
position: absolute;
top:29px;
left:-141px;
border-radius: 0px 0px 5px 5px;
border:1px solid #f00;
z-index: 2;
box-sizing: border-box;
display: none;
}
.option div.menu .menu_list1 .chb{
width: 60px;
height: 30px;
border:1px solid #ddd;
background-image: url(../../../public/img/background/加号.png);
background-position: center left;
background-size:20px 20px;
background-repeat:no-repeat;
padding-left:20px;
cursor: pointer;
float: right;
margin: 15px 20px;
line-height: 28px;
}
.option div.menu .menu_list1 li{
width:140px;
font-size:14px;
float: left;
margin:5px;
margin-left:10px;
}
.option div.menu .menu_list1 li a{
color: #005aa0;
}
.option div.menu:hover .menu_list1{
display: block;
}
.option div.menu:hover{
border:1px solid #aaa;
border-bottom:0;
background-image: url(../../../public/img/background/大于号_上.png);
}
.option div.d1{
width:1180px;
position: absolute;
top:30px;
left:-3px;
text-align: center;
border: 3px solid #f0f;
box-shadow: 0 0 15px #ff0;
padding:5px;
display: none;
}
.option div.d1 .menu_list2{
width:100%;
list-style: none;
float: left;
line-height: 37px;
text-align: center;
background:#fff;
}
.option div.d1 .menu_list2 li{
height:100%;
padding:0px 20px;
float: left;
}
.option div.d1 .menu_list2 li:hover{
color:#f00;
}
.option div.d1 .menu_list2 li a{
color: #005aa0;
}
.option div.d1 button.confirm{
width:52px;
height:25px;
border: 1px solid #DDD;
background: #f00;
color: #fff;
cursor: pointer;
display: none;
}
.option div.d1 button.cansel{
width:52px;
height:25px;
border: 1px solid #DDD;
color: #666;
cursor: pointer;
}
/* 普通下拉菜单 */
.option select{
width:9%;
height:30px;
border:1px solid #ddd;
color: #005aa0;
padding:3px 3px;
margin:4px 20px;
background:#fff;
}
/*左边房源*/
.sale{
width:100%;
display: flex;
border:1px solid #eee;
}
.sale .sale_detail{
width:80%;
display: flex;
flex-direction: column;
margin-right:40px;
}
.sale .sale_detail .detail a{
width:100%;display: flex;
border-bottom:1px solid #ddd;
padding:10px;
box-sizing: border-box;
}
.sale .sale_detail .detail:hover{
background:#eee;
border:1px solid #ddd
}
.sale .sale_detail .detail img{
width:25%;
height:160px;
}
.sale .sale_detail .detail .detail_right{
width:75%;
padding:0px 20px 0px 40px ;
}
.sale .sale_detail .detail h4{
font-size:20px;
margin:10px 0px;
}
.sale .sale_detail .detail .subtitle{
font-size:16px;
display:inline-block;
margin-bottom:10px;
}
.sale .sale_detail .detail .address{
font-size:12px;
margin-bottom:10px;
}
.sale .sale_detail .detail .tags{
display:inline-block;
margin-bottom:10px;
}
.sale .sale_detail .detail .tags span{
color: #799374;
background: #f2f6ed;
font-size: 12px;
margin:0px 10px;
}
.sale .sale_detail .detail .detail_bottom{
display:flex;
justify-content: space-between;
}
.sale .sale_detail .detail .detail_bottom p:first-child span:first-child{
background-image: linear-gradient(-90deg,#02c26d 0,#7ed665 100%);
font-size: 12px;
color: #fff;
padding:3px;
}
.sale .sale_detail .detail .detail_bottom p:first-child span:last-child{
border: 1px solid #02c26d;
font-size: 12px;
padding:3px;
border-left: none;
}
.sale .sale_detail .detail .detail_bottom p.landlord span{
color:#02c26d;
}
.sale .sale_detail .detail .detail_bottom p:last-child span:first-child{
color: #e54b00;
font-size: 20px;
}
.sale .sale_detail .detail .detail_bottom p:last-child span:last-child{
font-size: 12px;
color: #999;
}
/*当没有搜索到数据时*/
.like{
width:100%;
display: none;
}
.like.on{
display: block;
}
.like .nofond{
width:100%;
height:100px;
text-align: center;
font-size: 30px;
line-height:100px;
}
h1{
margin:10px 0px;
font-size: 25px;
}
/*右边推荐房源*/
.sale .sale_right{
width:20%;
border:1px solid #ddd;
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.sale .sale_right h3{
width:100%;
padding:5px 10px 5px 10px;
border-bottom:1px dashed #ddd;
}
.sale .sale_right .pro_rec{
width:100%;
padding:10px;
text-align: center;
background: #eee;
}
.sale .sale_right .pro_rec img{
width:200px;
}
.sale .sale_right .pro_rec p.title{
width:100%;
height:23px;
color:#666;
font-size: 16px;
text-overflow: ellipsis;
overflow: hidden;
}
.sale .sale_right .pro_rec p.price{
display: flex;
justify-content: space-between
}
.sale .sale_right .pro_rec p.price span:first-child{
color: #e54b00;
font-size: 16px;
}
.sale .sale_right .pro_rec p.price span:last-child{
color: #aaa;
font-size: 14px;
}
/* 热门问答 */
.sale .sale_right .question{
width:100%;
}
.sale .sale_right .question ul{
width:100%;
padding:10px;
}
.sale .sale_right .question ul li{
width:100%;
list-style: none;
padding:5px;
margin:5px 0px;
border-bottom:1px dashed #666;
}
.sale .sale_right .question ul li span{
width:100%;
height:100%;
display: inline-block;
}
.sale .sale_right .question ul li span p{
margin:0px;
}
.sale .sale_right .question ul li p.question{
width:90%;
font-size: 14px;
color:#666;
overflow: hidden;
white-space: nowrap; /*段落不换行*/
text-overflow: ellipsis;
display: inline-block;
}
.sale .sale_right .question ul li a:hover{
color:#f00;
}
.sale .sale_right .question ul li p.btn{
width:10%;
height:20px;
display: inline-block;
background-size:20px 20px;
background:url(../../../public/img/background/大于号_下.png) no-repeat center left;
}
/* .sale .sale_right .question ul li p.btn.open{
background:url(../../../public/img/background/大于号_上.png) no-repeat center left;
background-size:20px 20px;
} */
.sale .sale_right .question ul li div{
width:100%;
color:#aaa;
font-size: 12px;
}
/* 房价趋势 */
.sale .sale_right .line p{
width:100%;
display: flex;
justify-content: space-around;
align-items: center;
margin:10px 0px;
}
.sale .sale_right .line p span:first-child{
font-size: 14px;
color:#aaa;
}
.sale .sale_right .line p span:last-child{
font-size: 14px;
color:#666;
}
.sale .sale_right .line div{
width:200px;
height:200px;
margin:0 auto;
}
.sale .sale_right .line img{
width:100%;
height:100%;
}
/* 轮播图 */
.sale .sale_right .carousel{
width:100%;
padding:10px;
background: #eee;
border:1px dashed #ddd;
}
/*分页*/
.sale .sale_detail .page{
width:100%;
height:50px;
clear: both;
margin:10px 0px;
}
.sale .sale_detail .page ul{
height:100%;
float: right;
box-sizing: border-box;
padding:9px;
display: flex;
list-style:none;
}
.sale .sale_detail .page ul li{
width:30px;
height:30px;
border-radius:5px;
border:1px solid #666;
margin:0px 5px;
line-height: 25px;
text-align: center;
}
.sale .sale_detail .page ul li:first-child,.sale .sale_detail .page ul li:last-child{
width:50px;
height:30px;
border-radius:5px;
margin:0px 5px;
line-height: 25px;
background: #7ed665;
}
.sale .sale_detail .page ul li:first-child.disabled{
background: #fff;
}
.sale .sale_detail .page ul li:last-child.disabled{
background: #fff;
}
.sale .sale_detail .page ul li.active{
background: #7ed665;
}
.sale .sale_detail .page ul li a{
display: inline-block;
width:100%;
height:100%;
}
@media screen and (max-width: 1200px) {
.nav{display: none}
}
/* 导航栏 */
.nav{
width:40px;
height:100%;
border-left:1px solid #ddd;
position: fixed;
top:0px;
right:0px;
z-index: 2;
background: #eee;
}
.nav .side_top{
width:100%;
text-align: center;
position: absolute;
top:30%;
}
.nav .side_bottom{
width:100%;
position: absolute;
top:96%
}
.nav .side_top a,.nav .side_bottom a{
display: inline-block;
width:100%;
position: relative;
padding:5px 0px;
box-sizing: border-box;
text-align: center;
}
.nav .side_top a p{
font-size: 14px;
color:#666;
}
.nav .side_top a div{
width:90px;
background: #666;
position: absolute;
top:0px;
right:37px;
font-size: 16px;
padding:15.5px 10px;
color:#fff;
transition: all .3s linear;
display: none
}
.nav .side_bottom a div{
width:90px;
background: #666;
position: absolute;
top:0px;
right:37px;
font-size: 15px;
padding:5px 10px;
color:#fff;
transition: all .3s linear;
display: none;
}
.nav .side_top a:hover div,.nav .side_bottom a:hover div{
display: block;
}
.nav .side_top a:hover,.nav .side_bottom a:hover{
background:#62ab00;
} | live/livevue/src/assets/css/index.css | *{
margin:0;
padding:0px;
box-sizing: border-box;
}
a{
color:#666;
text-decoration:none;
}
.container{
width:1180px;
margin:0 auto;
}
h5{
width:100%;
font-size: 16px;
color:#666;
margin:10px 0px 20px 0px;
}
.search{
width:100%;
border:1px solid #aaa;
margin-bottom:20px;
border-radius: 5px;
}
/* 商品搜索 */
.search .resolution,.search .option{
width:100%;
height:40px;
display: flex;
position: relative;
border-bottom:1px dashed #ccc;
}
.search .left{
width:10%;
padding-left:20px;
background:#ddd;
line-height: 37px;
font-size: 16px;
color:#666;
float: left;
}
.search .right{
width:90%;
}
.search .right ul,.search .search_model ul{
width:80%;
height:100%;
list-style: none;
float: left;
line-height: 37px;
box-sizing: border-box;
}
.search .right ul li,.search .search_model ul li{
height:100%;
padding:0px 20px;
float: left;
cursor: pointer;
}
.search .right ul li.on,.search .search_model ul li.on{
color:#f00;
background-image: url(../../../public/img/background/on.png);
background-position: bottom right;
background-repeat:no-repeat;
border:1px solid #f60;
}
.search .right div{
width:20%;
height:100%;
float: right;
}
.search .right div div{
width:60px;
height:30px;
margin:5px 5px;
line-height: 27px;
border:1px solid #ddd;
color:#666;
float: left;
}
.search .right div .more{
padding-left:7px;
cursor: pointer;
}
.search .right div .chb{
background-image: url(../../../public/img/background/加号.png);
background-position: center left;
background-size:20px 20px;
background-repeat:no-repeat;
padding-left:20px;
cursor: pointer;
}
/*多选框*/
.search .multify{
width:100%;
border:3px solid #f0f;
box-shadow:0 0 15px #ff0;
background: #fff;
zoom: 1;
clear: both;
position: absolute;
left:0px;
top:0px;
}
.search .multify .left_more{
width:10%;
height:100%;
padding-left:10px;
background:#fffdee;
font-size: 16px;
color:#666;
float: left;
}
.search .multify .right_more{
width:90%;
float: left;
}
.search .multify .right_more ul{
width:100%;
list-style: none;
float: left;
line-height: 37px;
text-align: center;
}
.search .multify .right_more ul li{
height:100%;
padding:0px 20px;
float: left;
}
.search .multify .right_more ul li:hover{
color:#f00;
}
.search .multify .right_more ul li a{
color: #005aa0;
}
.search .multify .right_more ul button.confirm{
width:52px;
height:25px;
border: 1px solid #DDD;
background: #f00;
color: #fff;
cursor: pointer;
}
.search .multify .right_more ul button.cansel{
width:52px;
height:25px;
border: 1px solid #DDD;
color: #666;
cursor: pointer;
}
/* 普通样式搜索 */
.search .search_price,.search .search_area,.search .search_model{
width:100%;
height:40px;
display: flex;
border-bottom:1px dashed #ccc;
}
.search .search_price .right,.search .search_area .right{
width:90%;
display: flex;
align-items: center;
}
.search .search_price .right ul,.search .search_area .right ul{
width:76%;
height:100%;
overflow: hidden;
}
.search .search_price div.input,.search .search_area div.input{
width:20%;
display: flex;
justify-content: center;
align-items: center;
}
.search .search_price div input,.search .search_area div input{
width:40px;
height:25px;
margin:0px 5px;
}
/* .search .search_model ul{
height: 100%;
display:flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.search .search_model ul li{
list-style: none;
padding:5px 15px;
}
.search .search_model ul li label{
cursor: pointer;
}
.search .search_model ul li label input{
margin:5px;
} */
/* 高级选项 */
.option div.menu{
width:9%;
height:30px;
border:1px solid #ddd;
background-image: url(../../../public/img/background/大于号_下.png);
background-position: center right;
background-size:20px 20px;
background-repeat:no-repeat;
color: #005aa0;
padding:3px 3px;
margin:4px 20px;
position: relative;
}
.option div.menu .menu_list1{
width:1180px;
height:60px;
background: #fff;
list-style: none;
line-height: 50px;
border:1px solid #ddd;
box-sizing: border-box;
position: absolute;
top:29px;
left:-141px;
border-radius: 0px 0px 5px 5px;
border:1px solid #f00;
z-index: 2;
box-sizing: border-box;
display: none;
}
.option div.menu .menu_list1 .chb{
width: 60px;
height: 30px;
border:1px solid #ddd;
background-image: url(../../../public/img/background/加号.png);
background-position: center left;
background-size:20px 20px;
background-repeat:no-repeat;
padding-left:20px;
cursor: pointer;
float: right;
margin: 15px 20px;
line-height: 28px;
}
.option div.menu .menu_list1 li{
width:140px;
font-size:14px;
float: left;
margin:5px;
margin-left:10px;
}
.option div.menu .menu_list1 li a{
color: #005aa0;
}
.option div.menu:hover .menu_list1{
display: block;
}
.option div.menu:hover{
border:1px solid #aaa;
border-bottom:0;
background-image: url(../../../public/img/background/大于号_上.png);
}
.option div.d1{
width:1180px;
position: absolute;
top:30px;
left:-3px;
text-align: center;
border: 3px solid #f0f;
box-shadow: 0 0 15px #ff0;
padding:5px;
display: none;
}
.option div.d1 .menu_list2{
width:100%;
list-style: none;
float: left;
line-height: 37px;
text-align: center;
background:#fff;
}
.option div.d1 .menu_list2 li{
height:100%;
padding:0px 20px;
float: left;
}
.option div.d1 .menu_list2 li:hover{
color:#f00;
}
.option div.d1 .menu_list2 li a{
color: #005aa0;
}
.option div.d1 button.confirm{
width:52px;
height:25px;
border: 1px solid #DDD;
background: #f00;
color: #fff;
cursor: pointer;
display: none;
}
.option div.d1 button.cansel{
width:52px;
height:25px;
border: 1px solid #DDD;
color: #666;
cursor: pointer;
}
/* 普通下拉菜单 */
.option select{
width:9%;
height:30px;
border:1px solid #ddd;
color: #005aa0;
padding:3px 3px;
margin:4px 20px;
background:#fff;
}
/*左边房源*/
.sale{
width:100%;
display: flex;
border:1px solid #eee;
}
.sale .sale_detail{
width:80%;
display: flex;
flex-direction: column;
margin-right:40px;
}
.sale .sale_detail .detail a{
width:100%;display: flex;
border-bottom:1px solid #ddd;
padding:10px;
box-sizing: border-box;
}
.sale .sale_detail .detail:hover{
background:#eee;
border:1px solid #ddd
}
.sale .sale_detail .detail img{
width:25%;
height:160px;
}
.sale .sale_detail .detail .detail_right{
width:75%;
padding:0px 20px 0px 40px ;
}
.sale .sale_detail .detail h4{
font-size:20px;
margin:10px 0px;
}
.sale .sale_detail .detail .subtitle{
font-size:16px;
display:inline-block;
margin-bottom:10px;
}
.sale .sale_detail .detail .address{
font-size:12px;
margin-bottom:10px;
}
.sale .sale_detail .detail .tags{
display:inline-block;
margin-bottom:10px;
}
.sale .sale_detail .detail .tags span{
color: #799374;
background: #f2f6ed;
font-size: 12px;
margin:0px 10px;
}
.sale .sale_detail .detail .detail_bottom{
display:flex;
justify-content: space-between;
}
.sale .sale_detail .detail .detail_bottom p:first-child span:first-child{
background-image: linear-gradient(-90deg,#02c26d 0,#7ed665 100%);
font-size: 12px;
color: #fff;
padding:3px;
}
.sale .sale_detail .detail .detail_bottom p:first-child span:last-child{
border: 1px solid #02c26d;
font-size: 12px;
padding:3px;
border-left: none;
}
.sale .sale_detail .detail .detail_bottom p.landlord span{
color:#02c26d;
}
.sale .sale_detail .detail .detail_bottom p:last-child span:first-child{
color: #e54b00;
font-size: 20px;
}
.sale .sale_detail .detail .detail_bottom p:last-child span:last-child{
font-size: 12px;
color: #999;
}
/*当没有搜索到数据时*/
.like{
width:100%;
display: none;
}
.like.on{
display: block;
}
.like .nofond{
width:100%;
height:100px;
text-align: center;
font-size: 30px;
line-height:100px;
}
h1{
margin:10px 0px;
font-size: 25px;
}
/*右边推荐房源*/
.sale .sale_right{
width:20%;
border:1px solid #ddd;
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.sale .sale_right h3{
width:100%;
padding:5px 10px 5px 10px;
border-bottom:1px dashed #ddd;
}
.sale .sale_right .pro_rec{
width:100%;
padding:10px;
text-align: center;
background: #eee;
}
.sale .sale_right .pro_rec img{
width:200px;
}
.sale .sale_right .pro_rec p.title{
width:100%;
height:23px;
color:#666;
font-size: 16px;
text-overflow: ellipsis;
overflow: hidden;
}
.sale .sale_right .pro_rec p.price{
display: flex;
justify-content: space-between
}
.sale .sale_right .pro_rec p.price span:first-child{
color: #e54b00;
font-size: 16px;
}
.sale .sale_right .pro_rec p.price span:last-child{
color: #aaa;
font-size: 14px;
}
/* 热门问答 */
.sale .sale_right .question{
width:100%;
}
.sale .sale_right .question ul{
width:100%;
padding:10px;
}
.sale .sale_right .question ul li{
width:100%;
list-style: none;
padding:5px;
margin:5px 0px;
border-bottom:1px dashed #666;
}
.sale .sale_right .question ul li span{
width:100%;
height:100%;
display: inline-block;
}
.sale .sale_right .question ul li span p{
margin:0px;
}
.sale .sale_right .question ul li p.question{
width:90%;
font-size: 14px;
color:#666;
overflow: hidden;
white-space: nowrap; /*段落不换行*/
text-overflow: ellipsis;
display: inline-block;
}
.sale .sale_right .question ul li a:hover{
color:#f00;
}
.sale .sale_right .question ul li p.btn{
width:10%;
height:20px;
display: inline-block;
background-size:20px 20px;
background:url(../../../public/img/background/大于号_下.png) no-repeat center left;
}
/* .sale .sale_right .question ul li p.btn.open{
background:url(../../../public/img/background/大于号_上.png) no-repeat center left;
background-size:20px 20px;
} */
.sale .sale_right .question ul li div{
width:100%;
color:#aaa;
font-size: 12px;
}
/* 房价趋势 */
.sale .sale_right .line p{
width:100%;
display: flex;
justify-content: space-around;
align-items: center;
margin:10px 0px;
}
.sale .sale_right .line p span:first-child{
font-size: 14px;
color:#aaa;
}
.sale .sale_right .line p span:last-child{
font-size: 14px;
color:#666;
}
.sale .sale_right .line div{
width:200px;
height:200px;
margin:0 auto;
}
.sale .sale_right .line img{
width:100%;
height:100%;
}
/* 轮播图 */
.sale .sale_right .carousel{
width:100%;
padding:10px;
background: #eee;
border:1px dashed #ddd;
}
/*分页*/
.sale .sale_detail .page{
width:100%;
height:50px;
clear: both;
margin:10px 0px;
}
.sale .sale_detail .page ul{
height:100%;
float: right;
box-sizing: border-box;
padding:9px;
display: flex;
list-style:none;
}
.sale .sale_detail .page ul li{
width:30px;
height:30px;
border-radius:5px;
border:1px solid #666;
margin:0px 5px;
line-height: 25px;
text-align: center;
}
.sale .sale_detail .page ul li:first-child,.sale .sale_detail .page ul li:last-child{
width:50px;
height:30px;
border-radius:5px;
margin:0px 5px;
line-height: 25px;
background: #7ed665;
}
.sale .sale_detail .page ul li:first-child.disabled{
background: #fff;
}
.sale .sale_detail .page ul li:last-child.disabled{
background: #fff;
}
.sale .sale_detail .page ul li.active{
background: #7ed665;
}
.sale .sale_detail .page ul li a{
display: inline-block;
width:100%;
height:100%;
}
@media screen and (max-width: 1200px) {
.nav{display: none}
}
/* 导航栏 */
.nav{
width:40px;
height:100%;
border-left:1px solid #ddd;
position: fixed;
top:0px;
right:0px;
z-index: 2;
background: #eee;
}
.nav .side_top{
width:100%;
text-align: center;
position: absolute;
top:30%;
}
.nav .side_bottom{
width:100%;
position: absolute;
top:96%
}
.nav .side_top a,.nav .side_bottom a{
display: inline-block;
width:100%;
position: relative;
padding:5px 0px;
box-sizing: border-box;
text-align: center;
}
.nav .side_top a p{
font-size: 14px;
color:#666;
}
.nav .side_top a div{
width:90px;
background: #666;
position: absolute;
top:0px;
right:37px;
font-size: 16px;
padding:15.5px 10px;
color:#fff;
transition: all .3s linear;
display: none
}
.nav .side_bottom a div{
width:90px;
background: #666;
position: absolute;
top:0px;
right:37px;
font-size: 15px;
padding:5px 10px;
color:#fff;
transition: all .3s linear;
display: none;
}
.nav .side_top a:hover div,.nav .side_bottom a:hover div{
display: block;
}
.nav .side_top a:hover,.nav .side_bottom a:hover{
background:#62ab00;
} | 0.302288 | 0.059592 |
smart-gantt {
height: var(--smart-grid-default-height);
--smart-table-row-detail-height: 200px;
--smart-gantt-row-detail-height: var(--smart-table-row-detail-height);
--smart-gantt-timeline-nav-button: var(--smart-scheduler-header-navigation-button-size);
--smart-gantt-timeline-padding: 10px;
--smart-gantt-ticket-progress-color: green;
--smart-gantt-ticket-progress-thumb-icon: '';
--smart-gantt-ticket-progress-thumb-icon-size: var(--smart-font-size);
--smart-gantt-ticket-progress-thumb-size: 15px;
--smart-gantt-ticket-progress-thumb-padding: 2px;
}
.smart-gantt thead th {
height: 100%;
}
.smart-gantt tbody td[data-field="timeline"] {
padding-top: initial;
padding-bottom: initial;
}
.smart-gantt tbody tr.smart-table-row-detail .smart-table-detail-container {
padding: initial;
}
.smart-gantt tbody tr.smart-table-row-detail > td {
border-top-width: var(--smart-border-width);
border-top-style: solid;
border-top-color: var(--smart-border);
}
.smart-gantt .smart-table-detail-col {
width: calc(var(--smart-check-box-default-size) * 3);
}
.smart-gantt .detail-checkbox {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
border: var(--smart-border-width) solid var(--smart-secondary);
width: var(--smart-check-box-default-size);
height: var(--smart-check-box-default-size);
padding: 2px;
color: var(--smart-primary-color);
font-family: var(--smart-font-family-icon);
border-radius: 50%;
cursor: pointer;
}
.smart-gantt .detail-checkbox::before {
content: '+';
color: var(--smart-secondary);
transform-origin: center;
box-sizing: border-box;
}
.smart-gantt .detail-checkbox[aria-checked="true"]::before {
content: '-';
}
.smart-gantt .smart-gantt-timeline-column {
display: flex;
height: 100%;
width: 100%;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-container {
width: calc(100% - calc(2 * var(--smart-gantt-timeline-nav-button)));
height: 100%;
position: relative;
overflow: hidden;
padding: 0 var(--smart-gantt-timeline-padding);
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline {
display: flex;
height: 100%;
position: relative;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-cell {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
background: inherit;
color: inherit;
height: 100%;
min-height: inherit;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-cell::after {
content: attr(hour);
position: absolute;
left: 0;
transform: translateX(-50%);
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev], .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next] {
width: var(--smart-gantt-timeline-nav-button);
min-width: var(--smart-gantt-timeline-nav-button);
height: 100%;
position: relative;
font-size: initial;
display: inline-block;
font-weight: inherit;
font-family: var(--smart-font-family-icon);
text-transform: initial;
border-radius: 50%;
border: initial;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev]:after, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next]:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-family: var(--smart-font-family-icon);
font-size: var(--smart-arrow-size);
color: inherit;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev][focus] button, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev][focus] button, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next][focus] button, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next][focus] button {
background-color: var(--smart-background-focus);
outline: none;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev] .smart-button, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next] .smart-button {
font-family: var(--smart-font-family-icon);
padding: 0px;
border-radius: 0px;
border: none;
min-height: initial;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev]:after {
content: var(--smart-icon-arrow-left);
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next]:after {
content: var(--smart-icon-arrow-right);
}
.smart-gantt .smart-table-detail-container {
display: flex;
}
.smart-gantt .smart-gantt-tickets {
overflow: hidden;
border-left: var(--smart-border-width) solid var(--smart-border);
border-right: var(--smart-border-width) solid var(--smart-border);
padding: 5px var(--smart-gantt-timeline-padding);
width: calc(100% - calc(2 * var(--smart-gantt-timeline-nav-button)));
height: 100%;
margin-left: var(--smart-gantt-timeline-nav-button);
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket-container {
position: relative;
display: flex;
align-items: center;
width: var(--smart-gantt-timeline-width);
height: 100%;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket-container::before {
content: '';
position: absolute;
left: var(--smart-gantt-ticket-drop-zone-left);
width: calc(var(--smart-gantt-ticket-drop-zone-width) - var(--smart-gantt-timeline-padding));
height: 100%;
background: rgba(var(--smart-success-rgb), 0.15);
border: var(--smart-border-width) dashed var(--smart-success);
border-radius: 5px;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket {
position: absolute;
height: 100%;
border: var(--smart-border-width) solid var(--smart-border);
border-radius: 5px;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket[completed] {
opacity: 0.65;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket[active] {
box-shadow: 0 0 4px 0px inset var(--smart-gantt-ticket-progress-color);
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket[active][progress] .smart-gantt-ticket-progress-thumb::after {
content: var(--smart-gantt-ticket-progress-thumb-icon);
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket .smart-gantt-ticket-content {
height: 100%;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
padding: 5px;
display: flex;
align-items: flex-end;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket .smart-gantt-ticket-progress-thumb {
position: absolute;
height: calc(100% - var(--smart-border-width));
width: 1px;
transform-origin: left bottom;
background: var(--smart-gantt-ticket-progress-color);
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket .smart-gantt-ticket-progress-thumb::after {
position: absolute;
font-family: var(--smart-font-family-icon);
font-size: var(--smart-gantt-ticket-progress-thumb-icon-size);
background: var(--smart-background);
border: var(--smart-border-width) solid var(--smart-gantt-ticket-progress-color);
border-radius: 50%;
width: var(--smart-gantt-ticket-progress-thumb-size);
height: var(--smart-gantt-ticket-progress-thumb-size);
padding: var(--smart-gantt-ticket-progress-thumb-padding);
box-sizing: border-box;
left: 0;
top: 0;
transform: translate(-50%, -40%);
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.smart-gantt .smart-gantt-row-detail-table {
--smart-table-row-height: 30px;
--smart-table-cell-padding: 10px;
height: 100%;
width: 100%;
}
.smart-gantt .smart-gantt-row-detail-table > .smart-container {
border: initial;
}
.smart-gantt .smart-gantt-row-detail-table thead tr {
height: 0;
}
.smart-gantt .smart-gantt-row-detail-table thead tr th[data-field="options"] {
width: calc(var(--smart-check-box-default-size) * 3);
}
.smart-gantt .smart-gantt-row-detail-table[freeze-header] thead th {
padding: initial;
line-height: initial;
box-shadow: initial;
z-index: initial;
}
.smart-gantt .smart-gantt-row-detail-table tbody tr:first-of-type td {
border-top: initial;
border-bottom: initial;
}
.smart-gantt .smart-gantt-row-detail-table tbody tr[unused] + tr td {
border-top: initial;
border-bottom: initial;
}
.smart-gantt .smart-gantt-row-detail-table tbody tr td[data-field="options"] {
position: relative;
}
.smart-gantt .smart-gantt-row-detail-table tbody tr td[data-field="options"]::after {
content: var(--smart-icon-more-horiz);
font-family: var(--smart-font-family-icon);
display: flex;
align-items: center;
justify-content: center;
transform: rotate(90deg);
height: 100%;
}
/*# sourceMappingURL=smart.gantt.css.map */ | source/styles/default/smart.gantt.css | smart-gantt {
height: var(--smart-grid-default-height);
--smart-table-row-detail-height: 200px;
--smart-gantt-row-detail-height: var(--smart-table-row-detail-height);
--smart-gantt-timeline-nav-button: var(--smart-scheduler-header-navigation-button-size);
--smart-gantt-timeline-padding: 10px;
--smart-gantt-ticket-progress-color: green;
--smart-gantt-ticket-progress-thumb-icon: '';
--smart-gantt-ticket-progress-thumb-icon-size: var(--smart-font-size);
--smart-gantt-ticket-progress-thumb-size: 15px;
--smart-gantt-ticket-progress-thumb-padding: 2px;
}
.smart-gantt thead th {
height: 100%;
}
.smart-gantt tbody td[data-field="timeline"] {
padding-top: initial;
padding-bottom: initial;
}
.smart-gantt tbody tr.smart-table-row-detail .smart-table-detail-container {
padding: initial;
}
.smart-gantt tbody tr.smart-table-row-detail > td {
border-top-width: var(--smart-border-width);
border-top-style: solid;
border-top-color: var(--smart-border);
}
.smart-gantt .smart-table-detail-col {
width: calc(var(--smart-check-box-default-size) * 3);
}
.smart-gantt .detail-checkbox {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
border: var(--smart-border-width) solid var(--smart-secondary);
width: var(--smart-check-box-default-size);
height: var(--smart-check-box-default-size);
padding: 2px;
color: var(--smart-primary-color);
font-family: var(--smart-font-family-icon);
border-radius: 50%;
cursor: pointer;
}
.smart-gantt .detail-checkbox::before {
content: '+';
color: var(--smart-secondary);
transform-origin: center;
box-sizing: border-box;
}
.smart-gantt .detail-checkbox[aria-checked="true"]::before {
content: '-';
}
.smart-gantt .smart-gantt-timeline-column {
display: flex;
height: 100%;
width: 100%;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-container {
width: calc(100% - calc(2 * var(--smart-gantt-timeline-nav-button)));
height: 100%;
position: relative;
overflow: hidden;
padding: 0 var(--smart-gantt-timeline-padding);
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline {
display: flex;
height: 100%;
position: relative;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-cell {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
background: inherit;
color: inherit;
height: 100%;
min-height: inherit;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-cell::after {
content: attr(hour);
position: absolute;
left: 0;
transform: translateX(-50%);
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev], .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next] {
width: var(--smart-gantt-timeline-nav-button);
min-width: var(--smart-gantt-timeline-nav-button);
height: 100%;
position: relative;
font-size: initial;
display: inline-block;
font-weight: inherit;
font-family: var(--smart-font-family-icon);
text-transform: initial;
border-radius: 50%;
border: initial;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev]:after, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next]:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font-family: var(--smart-font-family-icon);
font-size: var(--smart-arrow-size);
color: inherit;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev][focus] button, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev][focus] button, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next][focus] button, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next][focus] button {
background-color: var(--smart-background-focus);
outline: none;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev] .smart-button, .smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next] .smart-button {
font-family: var(--smart-font-family-icon);
padding: 0px;
border-radius: 0px;
border: none;
min-height: initial;
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[prev]:after {
content: var(--smart-icon-arrow-left);
}
.smart-gantt .smart-gantt-timeline-column .smart-timeline-button[next]:after {
content: var(--smart-icon-arrow-right);
}
.smart-gantt .smart-table-detail-container {
display: flex;
}
.smart-gantt .smart-gantt-tickets {
overflow: hidden;
border-left: var(--smart-border-width) solid var(--smart-border);
border-right: var(--smart-border-width) solid var(--smart-border);
padding: 5px var(--smart-gantt-timeline-padding);
width: calc(100% - calc(2 * var(--smart-gantt-timeline-nav-button)));
height: 100%;
margin-left: var(--smart-gantt-timeline-nav-button);
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket-container {
position: relative;
display: flex;
align-items: center;
width: var(--smart-gantt-timeline-width);
height: 100%;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket-container::before {
content: '';
position: absolute;
left: var(--smart-gantt-ticket-drop-zone-left);
width: calc(var(--smart-gantt-ticket-drop-zone-width) - var(--smart-gantt-timeline-padding));
height: 100%;
background: rgba(var(--smart-success-rgb), 0.15);
border: var(--smart-border-width) dashed var(--smart-success);
border-radius: 5px;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket {
position: absolute;
height: 100%;
border: var(--smart-border-width) solid var(--smart-border);
border-radius: 5px;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket[completed] {
opacity: 0.65;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket[active] {
box-shadow: 0 0 4px 0px inset var(--smart-gantt-ticket-progress-color);
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket[active][progress] .smart-gantt-ticket-progress-thumb::after {
content: var(--smart-gantt-ticket-progress-thumb-icon);
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket .smart-gantt-ticket-content {
height: 100%;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
padding: 5px;
display: flex;
align-items: flex-end;
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket .smart-gantt-ticket-progress-thumb {
position: absolute;
height: calc(100% - var(--smart-border-width));
width: 1px;
transform-origin: left bottom;
background: var(--smart-gantt-ticket-progress-color);
}
.smart-gantt .smart-gantt-tickets .smart-gantt-ticket .smart-gantt-ticket-progress-thumb::after {
position: absolute;
font-family: var(--smart-font-family-icon);
font-size: var(--smart-gantt-ticket-progress-thumb-icon-size);
background: var(--smart-background);
border: var(--smart-border-width) solid var(--smart-gantt-ticket-progress-color);
border-radius: 50%;
width: var(--smart-gantt-ticket-progress-thumb-size);
height: var(--smart-gantt-ticket-progress-thumb-size);
padding: var(--smart-gantt-ticket-progress-thumb-padding);
box-sizing: border-box;
left: 0;
top: 0;
transform: translate(-50%, -40%);
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.smart-gantt .smart-gantt-row-detail-table {
--smart-table-row-height: 30px;
--smart-table-cell-padding: 10px;
height: 100%;
width: 100%;
}
.smart-gantt .smart-gantt-row-detail-table > .smart-container {
border: initial;
}
.smart-gantt .smart-gantt-row-detail-table thead tr {
height: 0;
}
.smart-gantt .smart-gantt-row-detail-table thead tr th[data-field="options"] {
width: calc(var(--smart-check-box-default-size) * 3);
}
.smart-gantt .smart-gantt-row-detail-table[freeze-header] thead th {
padding: initial;
line-height: initial;
box-shadow: initial;
z-index: initial;
}
.smart-gantt .smart-gantt-row-detail-table tbody tr:first-of-type td {
border-top: initial;
border-bottom: initial;
}
.smart-gantt .smart-gantt-row-detail-table tbody tr[unused] + tr td {
border-top: initial;
border-bottom: initial;
}
.smart-gantt .smart-gantt-row-detail-table tbody tr td[data-field="options"] {
position: relative;
}
.smart-gantt .smart-gantt-row-detail-table tbody tr td[data-field="options"]::after {
content: var(--smart-icon-more-horiz);
font-family: var(--smart-font-family-icon);
display: flex;
align-items: center;
justify-content: center;
transform: rotate(90deg);
height: 100%;
}
/*# sourceMappingURL=smart.gantt.css.map */ | 0.466603 | 0.105395 |
@charset "utf-8";
/* ========================================
// Stylesheet
Project: Bridge Technical Training
Version: 1.0
======================================== */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,200,300,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet);
@import url("bootstrap.min.css");
@import url("font-awesome.min.css");
@import url("linearicons-free.css");
@import url("flaticon.css");
/* ========== TYPHOGRAPHY ========== */
::selection {
background: #333333;
color: #ffffff;
text-shadow: none;
}
::-moz-selection {
background: #333333;
/* Firefox */
color: #ffffff;
text-shadow: none;
}
::-webkit-selection {
background: #333333;
/* Safari */
color: #ffffff;
text-shadow: none;
}
:active,
:focus {
outline: none !important;
}
/* ========== BASIC STRUCTURE ========== */
html {
font-size: 100%;
max-width: 100%;
}
html,
html a {
-webkit-font-smoothing: antialiased;
}
body {
background-attachment: fixed;
color: #1e1e1e;
font-family: 'Roboto', sans-serif;
font-size: 14px;
background-color: #ffffff;
overflow-x: hidden;
max-width: 100%;
overflow-x: hidden !important;
}
img {
max-width: 100%;
}
p {
font-size: 14px;
line-height: 26px;
}
ul,
ol {
list-style: none;
margin: 0;
padding: 0;
}
.fluid-video-wrapper {
padding: 0;
position: relative;
width: 100%;
}
iframe {
border: none;
width: 100%;
}
a {
color: #808080;
text-decoration: none;
}
a:hover,
a:focus {
color: #1cbde9;
text-decoration: none;
}
a img {
border: none;
}
iframe {
border: none !important;
}
/* ========== HEADINGS ========== */
h1,
.h1 {
font-size: 2.25rem;
}
h2,
.h2 {
font-size: 36px;
}
h3,
.h3 {
font-size: 18px;
}
h4,
.h4 {
font-size: 16px;
}
h5,
.h5 {
font-size: 14px;
}
h6,
.h6 {
font-size: 12px;
}
h1,h2,h3,h4,h5,h6
.h1,.h2,.h3,.h4,.h5,.h6 {
font-family: 'Raleway', sans-serif;
font-weight: 800;
line-height: 1.32857143;
color: #1e1e1e;
}
.text-white{
color: #ffffff;
}
.space-bottom {
margin-bottom: 50px;
}
.space-bottom-30 {
margin-bottom: 30px;
}
/* ========== BODY TEXT ========== */
p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
margin-bottom: 10px;
}
/*=========== BUTTONS ==========*/
/* ========== Btn-Default ========== */
.btn-default {
color: #ffffff;
border-radius: 0;
padding: 10px 30px;
border: none;
background: #1cbde9!important;
}
.btn-default:focus,
.btn-default.focus {
color: #ffffff!important;
}
.btn-default:hover {
color: #ffffff!important;
background-color: #1e1e1e!important;
}
section > .container, section > .container-fluid {
padding: 80px 0;
}
section > .p-t-b-0 {
padding: 0;
}
section > .p-t-0 {
padding-top: 0;
}
section > .p-b-0 {
padding-bottom: 0;
}
.p-l-r {
padding: 0;
padding-right: 0;
}
.space-top-20{
margin-top: 20px;
}
.space-top-40{
margin-top: 40px;
}
.mt0 {
margin-top: 0;
}
.bule-text {
color: #1cbde9;
}
/*******************************************/
.header-top {
background: #1e1e1e;
padding: 10px 0;
}
/*Top Address*/
.widget > ul {
margin-top: 7px;
margin-bottom: 0;
}
.btn-cart {
background: #4d4d4d!important;
border-color: #4d4d4d!important;
}
.btn-sign:hover, .btn-sign:focus {
background: #1496c7!important;
border-color: #1496c7!important;
}
.btn-cart:hover, .btn-cart:focus {
background: #1ab3ed!important;
border-color: #1ab3ed!important;
}
.top-address > ul > li{
font-size: 13px;
color: #ffffff;
margin-right: 15px;
}
.top-address > ul > li > span{
margin-right: 10px;
}
/*Top Social Icon*/
.top-social-icon > ul > li > a{
color: #ffffff;
}
.top-social-icon > ul > li > a:hover{
color: #1cbde9;
}
/*Main Menu*/
.main-header-nav {
padding: 25px 0;
background: #ffffff;
}
.menu-bars {
color: #111111;
font-size: 22px;
}
.main-header-nav .navbar-brand {
height: auto;
padding: 0;
margin-right: 55px;
}
.main-menu {
margin-top: 10px;
}
.main-menu li a{
color: #111111;
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
margin: 0 25px;
}
.main-menu li a:hover{
color: #1cbde9;
}
/*Heading*/
.heading p{
font-size: 12px;
letter-spacing: 2px;
}
.heading span{
color: #1cbde9;
}
.banner-bottom-info {
background-color: #1e1e1e;
color: #ffffff;
}
.banner-bottom-info .container{
padding: 20px 0!important;
}
.banner-bottom-info .breadcrumb {
background: transparent;
margin-bottom: 0;
padding: 0;
}
.banner-bottom-info .breadcrumb .active {
color: #1ab3ed;
}
.b-icon-boxs{
text-transform: uppercase;
text-align: center;
cursor: pointer;
border-right: 1px solid #3f4041;
}
.b-r-none{
border-right: none;
}
.b-icon-boxs span{
display: block;
font-size: 36px;
margin-bottom: 15px;
}
.b-icon-boxs:hover, .b-icon-boxs:hover span{
color: #1ab3ed;
box-shadow: none;
}
/*List Item*/
.list-item{
margin: 25px 0 40px 0;
}
.list-item li{
margin-bottom: 15px;
padding-left:22px;
}
.list-item li:before{
content: "\f046";
font-family: FontAwesome;
margin-right:10px;
margin-left: -22px;
color: #1cbde9;
}
.btn-more:after {
content: "\f178";
font-family: FontAwesome;
margin-left: 15px;
}
.about-right-info {
background: url(../images/01.png) no-repeat right bottom;
padding: 90px 0 30px 0;
}
/*Icon Box*/
.list-icon-box li:nth-child(2) {
margin-left: 40px;
}
.list-icon-box li:nth-child(3) {
margin-left: 80px;
}
.list-icon-box li:nth-child(4) {
margin-left: 120px;
}
.left-nav li{
margin-bottom: 10px;
}
#banner {
background: url(../images/bg/bg-home.jpg) no-repeat center/cover;
}
.banner-content {
background: rgba(0,0,0,0.7);
height: 800px;
display: table;
width: 100%;
}
.banner-inner {
display: table-cell;
vertical-align: middle;
}
.inner-banner {
background: url(../images/bg/bg3.jpg) no-repeat center/cover;
}
.inner-content {
background: rgba(0,0,0,0.7);
height: 400px;
display: table;
width: 100%;
}
.inner-text {
display: table-cell;
vertical-align: middle;
}
.banner-inner h1, .banner-inner h3, .inner-text h1, .inner-text h3 {
color: #ffffff;
}
.banner-inner h1{
font-size: 48px;
}
.banner-inner h3{
font-size: 30px;
font-weight: 400;
margin-bottom: 30px;
}
.section-bg1 {
background: url(../images/bg/bg1.jpg) no-repeat center/cover;
}
.section-bg2 {
background: url(../images/bg/bg2.jpg) no-repeat center/cover;
}
.overlay {
background: rgba(0,0,0,0.7);
padding: 60px 0;
}
.nav-tabs-holder{
text-align: center;
margin-bottom: 30px;
border-bottom: none;
}
.nav-tabs-holder li a{
font-size: 20px;
text-align: center;
color: #1cbde9;
background: #ffffff;
}
.nav-tabs-holder li a:hover, .nav-tabs-holder li a:focus, .nav-tabs-holder li.active a{
color: #ffffff!important;
background: #1cbde9!important;
}
.tab-content .btn-more{
margin-top: 30px;
}
/*Icon Box*/
.icon-box {
border-right: none;
cursor: pointer;
}
.icon-box:hover, .icon-box:hover h3, .icon-box:hover span{
color: #1cbde9;
}
.icon-box span {
font-size: 60px;
line-height: normal;
width: 130px;
height: 130px;
-webkit-border-radius: 100%;
border-radius: 100%;
border:1px solid #999999;
display: block;
margin:0 auto;
text-align: center;
padding: 30px;
}
.icon-box h3{
font-size: 18px;
text-transform: uppercase;
}
.divider {
background: url(../images/divider.png) no-repeat center top;
padding: 0 0 30px 0;
margin-top: 30px;
}
.courses-section {
border-top:1px solid #e5e5e5;
}
.left-sidebar {
padding-right: 30px;
}
.cat-box {
background: #eaeaea;
}
.cat-box h3{
background: #1e1e1e;
margin: 0;
color: #ffffff;
text-transform: uppercase;
padding: 15px;
border-top:5px solid #1cbde9;
}
.cat-item li{
border-bottom: 1px solid #d1d1d1;
}
.cat-item li:hover{
background: #1cbde9;
color: #ffffff!important;
}
.cat-item li a{
padding: 10px 10px 10px 20px;
display: block;
}
.cat-item li:hover a{
color: #ffffff!important;
}
.cat-item li a:before{
content: "\f105";
margin-right: 10px;
font-family: fontawesome;
}
.course-box {
border:1px solid #dddddd;
-webkit-border-radius: 10px;
border-radius: 10px;
margin-bottom: 30px;
}
.course-top {
padding: 10px;
}
.course-top h3 a{
color: #1cbde9;
font-size: 16px;
}
.course-top p{
color:#1e1e1e;
font-size: 13px;
line-height: 20px;
}
.course-top{
border-bottom: 1px solid #dddddd;
}
.course-top a:hover{
color: #333;
}
.course-bottom {
padding: 10px;
}
.course-bottom h5{
text-transform: uppercase;
color: #777777;
}
.course-bottom ul li a{
font-size: 36px;
}
.price {
font-size: 24px;
color: #1cbde9;
}
.footer-container {
background: #000000;
padding-bottom: 30px;
}
.footer-top {
background: #1cbde9;
margin-top: -30px;
margin-bottom: 40px;
}
.footer-t-nav {
padding: 20px;
margin-bottom:0;
}
.footer-t-nav li a{
font-size: 20px;
text-transform: uppercase;
color: #ffffff;
padding: 20px;
}
.footer-t-nav li a:hover{
color: #000;
}
.footer-s-icons {
background: #76e2ff;
padding: 20px;
margin-bottom:0;
}
.footer-s-icons li a{
font-size: 20px;
color: #ffffff;
}
.footer-s-icons li a i{
width: 32px;
height: 32px;
border:1px solid #ffffff;
padding: 5px;
-webkit-border-radius: 100%;
border-radius: 100%;
text-align: center;
}
.footer-s-icons li a i:hover{
border:1px solid #000;
color: #000;
}
.copy-right {
color: #959595;
margin: 0
} | public/app-front/css/style.css | @charset "utf-8";
/* ========================================
// Stylesheet
Project: Bridge Technical Training
Version: 1.0
======================================== */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,200,300,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet);
@import url("bootstrap.min.css");
@import url("font-awesome.min.css");
@import url("linearicons-free.css");
@import url("flaticon.css");
/* ========== TYPHOGRAPHY ========== */
::selection {
background: #333333;
color: #ffffff;
text-shadow: none;
}
::-moz-selection {
background: #333333;
/* Firefox */
color: #ffffff;
text-shadow: none;
}
::-webkit-selection {
background: #333333;
/* Safari */
color: #ffffff;
text-shadow: none;
}
:active,
:focus {
outline: none !important;
}
/* ========== BASIC STRUCTURE ========== */
html {
font-size: 100%;
max-width: 100%;
}
html,
html a {
-webkit-font-smoothing: antialiased;
}
body {
background-attachment: fixed;
color: #1e1e1e;
font-family: 'Roboto', sans-serif;
font-size: 14px;
background-color: #ffffff;
overflow-x: hidden;
max-width: 100%;
overflow-x: hidden !important;
}
img {
max-width: 100%;
}
p {
font-size: 14px;
line-height: 26px;
}
ul,
ol {
list-style: none;
margin: 0;
padding: 0;
}
.fluid-video-wrapper {
padding: 0;
position: relative;
width: 100%;
}
iframe {
border: none;
width: 100%;
}
a {
color: #808080;
text-decoration: none;
}
a:hover,
a:focus {
color: #1cbde9;
text-decoration: none;
}
a img {
border: none;
}
iframe {
border: none !important;
}
/* ========== HEADINGS ========== */
h1,
.h1 {
font-size: 2.25rem;
}
h2,
.h2 {
font-size: 36px;
}
h3,
.h3 {
font-size: 18px;
}
h4,
.h4 {
font-size: 16px;
}
h5,
.h5 {
font-size: 14px;
}
h6,
.h6 {
font-size: 12px;
}
h1,h2,h3,h4,h5,h6
.h1,.h2,.h3,.h4,.h5,.h6 {
font-family: 'Raleway', sans-serif;
font-weight: 800;
line-height: 1.32857143;
color: #1e1e1e;
}
.text-white{
color: #ffffff;
}
.space-bottom {
margin-bottom: 50px;
}
.space-bottom-30 {
margin-bottom: 30px;
}
/* ========== BODY TEXT ========== */
p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
margin-bottom: 10px;
}
/*=========== BUTTONS ==========*/
/* ========== Btn-Default ========== */
.btn-default {
color: #ffffff;
border-radius: 0;
padding: 10px 30px;
border: none;
background: #1cbde9!important;
}
.btn-default:focus,
.btn-default.focus {
color: #ffffff!important;
}
.btn-default:hover {
color: #ffffff!important;
background-color: #1e1e1e!important;
}
section > .container, section > .container-fluid {
padding: 80px 0;
}
section > .p-t-b-0 {
padding: 0;
}
section > .p-t-0 {
padding-top: 0;
}
section > .p-b-0 {
padding-bottom: 0;
}
.p-l-r {
padding: 0;
padding-right: 0;
}
.space-top-20{
margin-top: 20px;
}
.space-top-40{
margin-top: 40px;
}
.mt0 {
margin-top: 0;
}
.bule-text {
color: #1cbde9;
}
/*******************************************/
.header-top {
background: #1e1e1e;
padding: 10px 0;
}
/*Top Address*/
.widget > ul {
margin-top: 7px;
margin-bottom: 0;
}
.btn-cart {
background: #4d4d4d!important;
border-color: #4d4d4d!important;
}
.btn-sign:hover, .btn-sign:focus {
background: #1496c7!important;
border-color: #1496c7!important;
}
.btn-cart:hover, .btn-cart:focus {
background: #1ab3ed!important;
border-color: #1ab3ed!important;
}
.top-address > ul > li{
font-size: 13px;
color: #ffffff;
margin-right: 15px;
}
.top-address > ul > li > span{
margin-right: 10px;
}
/*Top Social Icon*/
.top-social-icon > ul > li > a{
color: #ffffff;
}
.top-social-icon > ul > li > a:hover{
color: #1cbde9;
}
/*Main Menu*/
.main-header-nav {
padding: 25px 0;
background: #ffffff;
}
.menu-bars {
color: #111111;
font-size: 22px;
}
.main-header-nav .navbar-brand {
height: auto;
padding: 0;
margin-right: 55px;
}
.main-menu {
margin-top: 10px;
}
.main-menu li a{
color: #111111;
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
margin: 0 25px;
}
.main-menu li a:hover{
color: #1cbde9;
}
/*Heading*/
.heading p{
font-size: 12px;
letter-spacing: 2px;
}
.heading span{
color: #1cbde9;
}
.banner-bottom-info {
background-color: #1e1e1e;
color: #ffffff;
}
.banner-bottom-info .container{
padding: 20px 0!important;
}
.banner-bottom-info .breadcrumb {
background: transparent;
margin-bottom: 0;
padding: 0;
}
.banner-bottom-info .breadcrumb .active {
color: #1ab3ed;
}
.b-icon-boxs{
text-transform: uppercase;
text-align: center;
cursor: pointer;
border-right: 1px solid #3f4041;
}
.b-r-none{
border-right: none;
}
.b-icon-boxs span{
display: block;
font-size: 36px;
margin-bottom: 15px;
}
.b-icon-boxs:hover, .b-icon-boxs:hover span{
color: #1ab3ed;
box-shadow: none;
}
/*List Item*/
.list-item{
margin: 25px 0 40px 0;
}
.list-item li{
margin-bottom: 15px;
padding-left:22px;
}
.list-item li:before{
content: "\f046";
font-family: FontAwesome;
margin-right:10px;
margin-left: -22px;
color: #1cbde9;
}
.btn-more:after {
content: "\f178";
font-family: FontAwesome;
margin-left: 15px;
}
.about-right-info {
background: url(../images/01.png) no-repeat right bottom;
padding: 90px 0 30px 0;
}
/*Icon Box*/
.list-icon-box li:nth-child(2) {
margin-left: 40px;
}
.list-icon-box li:nth-child(3) {
margin-left: 80px;
}
.list-icon-box li:nth-child(4) {
margin-left: 120px;
}
.left-nav li{
margin-bottom: 10px;
}
#banner {
background: url(../images/bg/bg-home.jpg) no-repeat center/cover;
}
.banner-content {
background: rgba(0,0,0,0.7);
height: 800px;
display: table;
width: 100%;
}
.banner-inner {
display: table-cell;
vertical-align: middle;
}
.inner-banner {
background: url(../images/bg/bg3.jpg) no-repeat center/cover;
}
.inner-content {
background: rgba(0,0,0,0.7);
height: 400px;
display: table;
width: 100%;
}
.inner-text {
display: table-cell;
vertical-align: middle;
}
.banner-inner h1, .banner-inner h3, .inner-text h1, .inner-text h3 {
color: #ffffff;
}
.banner-inner h1{
font-size: 48px;
}
.banner-inner h3{
font-size: 30px;
font-weight: 400;
margin-bottom: 30px;
}
.section-bg1 {
background: url(../images/bg/bg1.jpg) no-repeat center/cover;
}
.section-bg2 {
background: url(../images/bg/bg2.jpg) no-repeat center/cover;
}
.overlay {
background: rgba(0,0,0,0.7);
padding: 60px 0;
}
.nav-tabs-holder{
text-align: center;
margin-bottom: 30px;
border-bottom: none;
}
.nav-tabs-holder li a{
font-size: 20px;
text-align: center;
color: #1cbde9;
background: #ffffff;
}
.nav-tabs-holder li a:hover, .nav-tabs-holder li a:focus, .nav-tabs-holder li.active a{
color: #ffffff!important;
background: #1cbde9!important;
}
.tab-content .btn-more{
margin-top: 30px;
}
/*Icon Box*/
.icon-box {
border-right: none;
cursor: pointer;
}
.icon-box:hover, .icon-box:hover h3, .icon-box:hover span{
color: #1cbde9;
}
.icon-box span {
font-size: 60px;
line-height: normal;
width: 130px;
height: 130px;
-webkit-border-radius: 100%;
border-radius: 100%;
border:1px solid #999999;
display: block;
margin:0 auto;
text-align: center;
padding: 30px;
}
.icon-box h3{
font-size: 18px;
text-transform: uppercase;
}
.divider {
background: url(../images/divider.png) no-repeat center top;
padding: 0 0 30px 0;
margin-top: 30px;
}
.courses-section {
border-top:1px solid #e5e5e5;
}
.left-sidebar {
padding-right: 30px;
}
.cat-box {
background: #eaeaea;
}
.cat-box h3{
background: #1e1e1e;
margin: 0;
color: #ffffff;
text-transform: uppercase;
padding: 15px;
border-top:5px solid #1cbde9;
}
.cat-item li{
border-bottom: 1px solid #d1d1d1;
}
.cat-item li:hover{
background: #1cbde9;
color: #ffffff!important;
}
.cat-item li a{
padding: 10px 10px 10px 20px;
display: block;
}
.cat-item li:hover a{
color: #ffffff!important;
}
.cat-item li a:before{
content: "\f105";
margin-right: 10px;
font-family: fontawesome;
}
.course-box {
border:1px solid #dddddd;
-webkit-border-radius: 10px;
border-radius: 10px;
margin-bottom: 30px;
}
.course-top {
padding: 10px;
}
.course-top h3 a{
color: #1cbde9;
font-size: 16px;
}
.course-top p{
color:#1e1e1e;
font-size: 13px;
line-height: 20px;
}
.course-top{
border-bottom: 1px solid #dddddd;
}
.course-top a:hover{
color: #333;
}
.course-bottom {
padding: 10px;
}
.course-bottom h5{
text-transform: uppercase;
color: #777777;
}
.course-bottom ul li a{
font-size: 36px;
}
.price {
font-size: 24px;
color: #1cbde9;
}
.footer-container {
background: #000000;
padding-bottom: 30px;
}
.footer-top {
background: #1cbde9;
margin-top: -30px;
margin-bottom: 40px;
}
.footer-t-nav {
padding: 20px;
margin-bottom:0;
}
.footer-t-nav li a{
font-size: 20px;
text-transform: uppercase;
color: #ffffff;
padding: 20px;
}
.footer-t-nav li a:hover{
color: #000;
}
.footer-s-icons {
background: #76e2ff;
padding: 20px;
margin-bottom:0;
}
.footer-s-icons li a{
font-size: 20px;
color: #ffffff;
}
.footer-s-icons li a i{
width: 32px;
height: 32px;
border:1px solid #ffffff;
padding: 5px;
-webkit-border-radius: 100%;
border-radius: 100%;
text-align: center;
}
.footer-s-icons li a i:hover{
border:1px solid #000;
color: #000;
}
.copy-right {
color: #959595;
margin: 0
} | 0.241311 | 0.055875 |
@font-face {
font-family: 'TT Norms Pro Regular';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Regular'), url('TT Norms Pro Regular.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Italic'), url('TT Norms Pro Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Thin';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Thin'), url('TT Norms Pro Thin.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Thin Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Thin Italic'), url('TT Norms Pro Thin Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraLight';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraLight'), url('TT Norms Pro ExtraLight.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraLight Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraLight Italic'), url('TT Norms Pro ExtraLight Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Light';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Light'), url('TT Norms Pro Light.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Light Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Light Italic'), url('TT Norms Pro Light Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Medium';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Medium'), url('TT Norms Pro Medium.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Medium Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Medium Italic'), url('TT Norms Pro Medium Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Bold';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Bold'), url('TT Norms Pro Bold.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Bold Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Bold Italic'), url('TT Norms Pro Bold Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraBold';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraBold'), url('TT Norms Pro ExtraBold.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraBold Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraBold Italic'), url('TT Norms Pro ExtraBold Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Black';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Black'), url('TT Norms Pro Black.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Black Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Black Italic'), url('TT Norms Pro Black Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraBlack';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraBlack'), url('TT Norms Pro ExtraBlack.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraBlack Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraBlack Italic'), url('TT Norms Pro ExtraBlack Italic.woff') format('woff');
} | fonts/tt-norms-pro-cufonfonts-webfont/style.css |
@font-face {
font-family: 'TT Norms Pro Regular';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Regular'), url('TT Norms Pro Regular.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Italic'), url('TT Norms Pro Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Thin';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Thin'), url('TT Norms Pro Thin.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Thin Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Thin Italic'), url('TT Norms Pro Thin Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraLight';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraLight'), url('TT Norms Pro ExtraLight.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraLight Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraLight Italic'), url('TT Norms Pro ExtraLight Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Light';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Light'), url('TT Norms Pro Light.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Light Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Light Italic'), url('TT Norms Pro Light Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Medium';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Medium'), url('TT Norms Pro Medium.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Medium Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Medium Italic'), url('TT Norms Pro Medium Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Bold';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Bold'), url('TT Norms Pro Bold.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Bold Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Bold Italic'), url('TT Norms Pro Bold Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraBold';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraBold'), url('TT Norms Pro ExtraBold.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraBold Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraBold Italic'), url('TT Norms Pro ExtraBold Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Black';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Black'), url('TT Norms Pro Black.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro Black Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro Black Italic'), url('TT Norms Pro Black Italic.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraBlack';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraBlack'), url('TT Norms Pro ExtraBlack.woff') format('woff');
}
@font-face {
font-family: 'TT Norms Pro ExtraBlack Italic';
font-style: normal;
font-weight: normal;
src: local('TT Norms Pro ExtraBlack Italic'), url('TT Norms Pro ExtraBlack Italic.woff') format('woff');
} | 0.634996 | 0.101768 |
td.spacer {
background-color: #e5ecf9;
}
td.links {
background-color: #e5ecf9;
text-align: right;
}
td.title {
background-color: #e5ecf9;
font-size: medium;
font-weight: bold;
font-family: verdana, helvetica, sans-serif;
}
table.blueheader {
border-top: 2px solid #3366cc;
}
#indent {
margin-left: 30px;
}
#functionality {
margin-top: 20px;
}
table.entailment {
margin-top: 30px;
border-left: 2px solid #3366cc;
}
table.optionswrap {
border-top: 1px dotted gray;
border-left: 1px dotted gray;
border-right: 1px dotted gray;
border-bottom: 1px dotted gray;
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
}
table.test tr.testrow {
border-top: 1px dotted gray;
border-left: 1px dotted gray;
border-right: 1px dotted gray;
border-bottom: 1px dotted gray;
}
td.opttitle {
font-size: large;
font-weight: bold;
/* valign: top; */
}
td.option {
font-size: medium;
/* valign-text: top; */
}
td.moreoptions {
font-size: small;
}
div.trace {
/* border: 1px solid red; */
}
div.subtrace {
/* border: 1px solid red; */
display: none;
margin-left: 0px;
}
div.item {
margin-left: 0px;
clear: left;
}
div.sentence {
position: relative;
clear: left;
}
div.head {
position: relative;
float: left;
margin-left: 4px;
width: 23px;
}
div.body {
position: relative;
float: left;
margin-left: 2px;
margin-top: 2px;
}
span.white {
color: white;
}
.subtitle {
font-weight: bold;
margin-top: 30px;
background-color: #e5ecf9;
}
table.languagespec {
border: 2px solid gray;
font-size: small;
margin-top: 10px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
}
table.languagespec td, table.languagespec th {
border: 1px solid gray;
text-align: center;
padding: 2px 2px 2px 2px;
}
.tab_item_active {
background-color: #b10000;
}
.tab_item a {
color: #666;
}
.tab_item_active a {
color: #fff;
}
.tab_item a:hover {
background: #ddd;
}
#submitblock {
margin-top: 20px;
text-align: center;
}
#links {
font-size: small;
margin-top: 40px;
text-align: center;
}
#footer {
margin-top: 30px;
width: 100%;
border-top: 1px solid gray;
font-size: small;
font-style: italic;
padding-top: 10px;
}
#owner {
text-align: left;
float: left;
}
#update {
text-align: right;
} | researchmaster/style/jack.css | td.spacer {
background-color: #e5ecf9;
}
td.links {
background-color: #e5ecf9;
text-align: right;
}
td.title {
background-color: #e5ecf9;
font-size: medium;
font-weight: bold;
font-family: verdana, helvetica, sans-serif;
}
table.blueheader {
border-top: 2px solid #3366cc;
}
#indent {
margin-left: 30px;
}
#functionality {
margin-top: 20px;
}
table.entailment {
margin-top: 30px;
border-left: 2px solid #3366cc;
}
table.optionswrap {
border-top: 1px dotted gray;
border-left: 1px dotted gray;
border-right: 1px dotted gray;
border-bottom: 1px dotted gray;
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
}
table.test tr.testrow {
border-top: 1px dotted gray;
border-left: 1px dotted gray;
border-right: 1px dotted gray;
border-bottom: 1px dotted gray;
}
td.opttitle {
font-size: large;
font-weight: bold;
/* valign: top; */
}
td.option {
font-size: medium;
/* valign-text: top; */
}
td.moreoptions {
font-size: small;
}
div.trace {
/* border: 1px solid red; */
}
div.subtrace {
/* border: 1px solid red; */
display: none;
margin-left: 0px;
}
div.item {
margin-left: 0px;
clear: left;
}
div.sentence {
position: relative;
clear: left;
}
div.head {
position: relative;
float: left;
margin-left: 4px;
width: 23px;
}
div.body {
position: relative;
float: left;
margin-left: 2px;
margin-top: 2px;
}
span.white {
color: white;
}
.subtitle {
font-weight: bold;
margin-top: 30px;
background-color: #e5ecf9;
}
table.languagespec {
border: 2px solid gray;
font-size: small;
margin-top: 10px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
}
table.languagespec td, table.languagespec th {
border: 1px solid gray;
text-align: center;
padding: 2px 2px 2px 2px;
}
.tab_item_active {
background-color: #b10000;
}
.tab_item a {
color: #666;
}
.tab_item_active a {
color: #fff;
}
.tab_item a:hover {
background: #ddd;
}
#submitblock {
margin-top: 20px;
text-align: center;
}
#links {
font-size: small;
margin-top: 40px;
text-align: center;
}
#footer {
margin-top: 30px;
width: 100%;
border-top: 1px solid gray;
font-size: small;
font-style: italic;
padding-top: 10px;
}
#owner {
text-align: left;
float: left;
}
#update {
text-align: right;
} | 0.371137 | 0.21391 |
.owl-carousel .owl-wrapper:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
/* display none until init */
.owl-carousel{
display: none;
position: relative;
width: 100%;
-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
display: none;
position: relative;
-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
overflow: hidden;
position: relative;
width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
-webkit-transition: height 500ms ease-in-out;
-moz-transition: height 500ms ease-in-out;
-ms-transition: height 500ms ease-in-out;
-o-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item{
float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
cursor: pointer;
}
.owl-controls .owl-buttons div {
position: absolute;
}
.owl-controls .owl-buttons .owl-prev{
left: 10px;
top: 45%;
}
.owl-controls .owl-buttons .owl-next{
right: 10px;
top: 45%;
}
.owl-controls {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
cursor:url(grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item{
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
}
/* OpenCart Code */
.owl-carousel {
margin:0;
position: relative;
direction: ltr !important;
overflow: hidden;
}
.owl-carousel .owl-buttons div {
opacity: 0;
color: rgba(0,0,0,0.8);
}
.owl-carousel:hover .owl-buttons div {
opacity:1;
}
.owl-carousel .owl-buttons div i {
font-size: 40px;
margin: -20px 0 0;
}
.owl-carousel:hover .owl-buttons .owl-prev {
left: 10px;
}
.owl-carousel:hover .owl-buttons .owl-next {
right: 10px;
}
.owl-pagination {
bottom: 33px;
float: right;
left: auto;
position: relative;
right: 28px;
}
.owl-controls .owl-page {
display: inline-block;
margin: 0px 3px;
}
.owl-controls .owl-page span {
background: none repeat scroll 0 0 #d8ceab;
border-radius: 5px;
cursor: pointer;
display: block;
height: 11px;
text-indent: -9999px;
width: 11px;
}
.owl-controls .owl-page.active span,.owl-controls .owl-page:hover span {
background: repeat scroll 0 0 #8ac42f;
} | frontend/web/js/jquery/owl-carousel/owl.carousel.css | .owl-carousel .owl-wrapper:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
/* display none until init */
.owl-carousel{
display: none;
position: relative;
width: 100%;
-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
display: none;
position: relative;
-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
overflow: hidden;
position: relative;
width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
-webkit-transition: height 500ms ease-in-out;
-moz-transition: height 500ms ease-in-out;
-ms-transition: height 500ms ease-in-out;
-o-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item{
float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
cursor: pointer;
}
.owl-controls .owl-buttons div {
position: absolute;
}
.owl-controls .owl-buttons .owl-prev{
left: 10px;
top: 45%;
}
.owl-controls .owl-buttons .owl-next{
right: 10px;
top: 45%;
}
.owl-controls {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
cursor:url(grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item{
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
}
/* OpenCart Code */
.owl-carousel {
margin:0;
position: relative;
direction: ltr !important;
overflow: hidden;
}
.owl-carousel .owl-buttons div {
opacity: 0;
color: rgba(0,0,0,0.8);
}
.owl-carousel:hover .owl-buttons div {
opacity:1;
}
.owl-carousel .owl-buttons div i {
font-size: 40px;
margin: -20px 0 0;
}
.owl-carousel:hover .owl-buttons .owl-prev {
left: 10px;
}
.owl-carousel:hover .owl-buttons .owl-next {
right: 10px;
}
.owl-pagination {
bottom: 33px;
float: right;
left: auto;
position: relative;
right: 28px;
}
.owl-controls .owl-page {
display: inline-block;
margin: 0px 3px;
}
.owl-controls .owl-page span {
background: none repeat scroll 0 0 #d8ceab;
border-radius: 5px;
cursor: pointer;
display: block;
height: 11px;
text-indent: -9999px;
width: 11px;
}
.owl-controls .owl-page.active span,.owl-controls .owl-page:hover span {
background: repeat scroll 0 0 #8ac42f;
} | 0.300335 | 0.04798 |
@import url(http://fonts.googleapis.com/css?family=Dosis:400,500,600,700,800,300,200);
/*************************
*******Typography*********
**************************/
body {
font-family: 'Dosis', sans-serif;
font-size: 16px;
line-height: 26px;
color: #fff;
}
body,
.preloader {
background: -webkit-linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* Chrome 10+, Saf5.1+ */
background: -moz-linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* FF3.6+ */
background: -ms-linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* IE10 */
background: -o-linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* Opera 11.10+ */
background: linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* W3C */
}
h1,h2,h3,h4,h5,h6 {
color: #fff !important;
}
ul {
list-style: none;
padding: 0
}
a {
color:#fff;
text-decoration: none;
-webkit-transition: color 400ms, background-color 400ms;
transition: color 400ms, background-color 400ms;
}
a:focus,
a:hover {
text-decoration: none;
outline: none;
color: rgba(255,255,255,.5);
}
.preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999999;
}
.preloader > i {
position: absolute;
font-size: 36px;
line-height: 36px;
top: 50%;
left: 50%;
height: 36px;
width: 36px;
margin-top: -15px;
margin-left: -15px;
display: inline-block;
}
/*************************
*******Navigation CSS*****
**************************/
#header {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
z-index: 9999;
}
#header .container {
height: 100px;
display: table;
}
#header .container-inner {
display: table-cell;
vertical-align: middle;
}
#header .logo h1 {
margin: 0;
}
#header .nav-button{
display: inline-block;
margin-top: 10px;
text-transform: uppercase;
}
#navigation {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: rgba(255,255,255,.8);
z-index: 99999;
text-align: center;
display: none;
}
.main-nav {
background-color: #fff;
width: 400px;;
display: inline-block;
position: relative;
}
.main-nav ul {
list-style: none;
padding: 0;
margin: 0;
}
.main-nav ul li {
display: block;
text-align: center;
margin: 0;
padding: 0;
}
.main-nav ul li a {
display: block;
border-top: 1px solid #f5f5f5;
padding-top: 20px;
padding-bottom: 20px;
font-weight: 700;
font-size: 36px;
color:#5e5e5e;
}
.main-nav ul li:first-child a {
border-top: 0;
}
.main-nav ul li:hover a,
.main-nav ul li.active a {
background-color: #333;
color: #999;
}
#hidemenu {
display: inline-block;
position: absolute;
top: -30px;
right: -30px;
color: #666;
}
#hidemenu:hover {
color: #000;
}
/*************************
*******Home Page CSS******
**************************/
#home-page .caption {
font-weight: 600;
font-size: 18px;
}
#home-page h2.heading {
font-size: 60px;
font-weight: 700;
margin-bottom: 15px;
}
#page-slider > .carousel-inner,
#page-slider .item > .container {
height: 100%;
}
#page-slider .item > .container {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding-top: 100px;
padding-bottom: 100px;
}
.vertical-middle {
height: 100%;
width: 100%;
display: table;
}
.vertical-middle > div {
display: table-cell;
vertical-align: middle;
}
#welcome-page {
margin-top: 130px;
}
#page-slider .item {
height: 100%;
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
}
.welcome-page-left {
left:20px;
}
.welcome-page-right {
right:20px;
}
.welcome-page-left,
.welcome-page-right {
position: absolute;
top: 50%;
margin-top:-35px;
font-size: 57px;
z-index: 10;
}
.page-header {
font-size: 64px;
line-height: 64px;
border: 0;
padding: 0;
margin-top: 0;
font-weight: 700;
margin-bottom: 100px;
}
.entry-title {
font-size: 24px;
line-height: 30px;
font-weight: 700;
}
.overlay-container {
display: block;
position: relative;
}
.overlay {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0,0,0,.5);
text-align: center;
opacity: 0;
-webkit-transition: opacity 400ms;
transition: opacity 400ms;
}
.overlay-container:hover .overlay {
opacity: 1;
}
a.readmore {
font-size: 36px;
line-height: 36px;
}
.box {
background: rgba(0,0,0,.2);
padding: 20px;
-webkit-transition: background-color 400ms;
transition: background-color 400ms;
}
.box:hover {
background: rgba(0,0,0,.5);
}
#footer {
margin: 30px 0;
}
/*************************
*****Contact Page CSS*****
**************************/
.btn {
border: 0;
border-radius: 0;
-webkit-transition: color 400ms, background-color 400ms;
transition: color 400ms, background-color 400ms;
}
.btn.btn-transparent {
background: rgba(0,0,0,.5);
color: #fff;
}
.btn.btn-transparent:hover {
background: rgba(255,255,255,.3);
color: #fff;
}
input[type="text"].form-control,
input[type="email"].form-control,
input[type="password"].form-control,
input[type="url"].form-control,
textarea.form-control {
border-radius: 0;
background: transparent;
box-shadow: none;
-webkit-box-shadow: none;
border: 2px solid rgba(255,255,255,.5);
}
.form-control::-webkit-input-placeholder {
color: rgba(255,255,255,.8);
}
.form-control:-moz-placeholder {
color: rgba(255,255,255,.8);
}
.form-control::-moz-placeholder {
color: rgba(255,255,255,.8);
}
.form-control:-ms-input-placeholder {
color: rgba(255,255,255,.8);
} | public/nebula/css/main.css | @import url(http://fonts.googleapis.com/css?family=Dosis:400,500,600,700,800,300,200);
/*************************
*******Typography*********
**************************/
body {
font-family: 'Dosis', sans-serif;
font-size: 16px;
line-height: 26px;
color: #fff;
}
body,
.preloader {
background: -webkit-linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* Chrome 10+, Saf5.1+ */
background: -moz-linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* FF3.6+ */
background: -ms-linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* IE10 */
background: -o-linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* Opera 11.10+ */
background: linear-gradient(90deg, #649173 10%, #DBD5A4 90%); /* W3C */
}
h1,h2,h3,h4,h5,h6 {
color: #fff !important;
}
ul {
list-style: none;
padding: 0
}
a {
color:#fff;
text-decoration: none;
-webkit-transition: color 400ms, background-color 400ms;
transition: color 400ms, background-color 400ms;
}
a:focus,
a:hover {
text-decoration: none;
outline: none;
color: rgba(255,255,255,.5);
}
.preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999999;
}
.preloader > i {
position: absolute;
font-size: 36px;
line-height: 36px;
top: 50%;
left: 50%;
height: 36px;
width: 36px;
margin-top: -15px;
margin-left: -15px;
display: inline-block;
}
/*************************
*******Navigation CSS*****
**************************/
#header {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
z-index: 9999;
}
#header .container {
height: 100px;
display: table;
}
#header .container-inner {
display: table-cell;
vertical-align: middle;
}
#header .logo h1 {
margin: 0;
}
#header .nav-button{
display: inline-block;
margin-top: 10px;
text-transform: uppercase;
}
#navigation {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: rgba(255,255,255,.8);
z-index: 99999;
text-align: center;
display: none;
}
.main-nav {
background-color: #fff;
width: 400px;;
display: inline-block;
position: relative;
}
.main-nav ul {
list-style: none;
padding: 0;
margin: 0;
}
.main-nav ul li {
display: block;
text-align: center;
margin: 0;
padding: 0;
}
.main-nav ul li a {
display: block;
border-top: 1px solid #f5f5f5;
padding-top: 20px;
padding-bottom: 20px;
font-weight: 700;
font-size: 36px;
color:#5e5e5e;
}
.main-nav ul li:first-child a {
border-top: 0;
}
.main-nav ul li:hover a,
.main-nav ul li.active a {
background-color: #333;
color: #999;
}
#hidemenu {
display: inline-block;
position: absolute;
top: -30px;
right: -30px;
color: #666;
}
#hidemenu:hover {
color: #000;
}
/*************************
*******Home Page CSS******
**************************/
#home-page .caption {
font-weight: 600;
font-size: 18px;
}
#home-page h2.heading {
font-size: 60px;
font-weight: 700;
margin-bottom: 15px;
}
#page-slider > .carousel-inner,
#page-slider .item > .container {
height: 100%;
}
#page-slider .item > .container {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding-top: 100px;
padding-bottom: 100px;
}
.vertical-middle {
height: 100%;
width: 100%;
display: table;
}
.vertical-middle > div {
display: table-cell;
vertical-align: middle;
}
#welcome-page {
margin-top: 130px;
}
#page-slider .item {
height: 100%;
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
}
.welcome-page-left {
left:20px;
}
.welcome-page-right {
right:20px;
}
.welcome-page-left,
.welcome-page-right {
position: absolute;
top: 50%;
margin-top:-35px;
font-size: 57px;
z-index: 10;
}
.page-header {
font-size: 64px;
line-height: 64px;
border: 0;
padding: 0;
margin-top: 0;
font-weight: 700;
margin-bottom: 100px;
}
.entry-title {
font-size: 24px;
line-height: 30px;
font-weight: 700;
}
.overlay-container {
display: block;
position: relative;
}
.overlay {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0,0,0,.5);
text-align: center;
opacity: 0;
-webkit-transition: opacity 400ms;
transition: opacity 400ms;
}
.overlay-container:hover .overlay {
opacity: 1;
}
a.readmore {
font-size: 36px;
line-height: 36px;
}
.box {
background: rgba(0,0,0,.2);
padding: 20px;
-webkit-transition: background-color 400ms;
transition: background-color 400ms;
}
.box:hover {
background: rgba(0,0,0,.5);
}
#footer {
margin: 30px 0;
}
/*************************
*****Contact Page CSS*****
**************************/
.btn {
border: 0;
border-radius: 0;
-webkit-transition: color 400ms, background-color 400ms;
transition: color 400ms, background-color 400ms;
}
.btn.btn-transparent {
background: rgba(0,0,0,.5);
color: #fff;
}
.btn.btn-transparent:hover {
background: rgba(255,255,255,.3);
color: #fff;
}
input[type="text"].form-control,
input[type="email"].form-control,
input[type="password"].form-control,
input[type="url"].form-control,
textarea.form-control {
border-radius: 0;
background: transparent;
box-shadow: none;
-webkit-box-shadow: none;
border: 2px solid rgba(255,255,255,.5);
}
.form-control::-webkit-input-placeholder {
color: rgba(255,255,255,.8);
}
.form-control:-moz-placeholder {
color: rgba(255,255,255,.8);
}
.form-control::-moz-placeholder {
color: rgba(255,255,255,.8);
}
.form-control:-ms-input-placeholder {
color: rgba(255,255,255,.8);
} | 0.296145 | 0.058426 |
.product-wrap {
position: relative;
overflow: hidden;
}
.product-wrap:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
}
.product-wrap img {
width: 100%;
}
.product-wrap .featured-product-content {
position: absolute;
bottom: 40px;
left: 0;
padding: 0 3.5em 0 3.5em;
z-index: 2;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.product-wrap:hover .featured-product-content {
bottom: 60px;
}
.featured-product-content-inner h5 {
font-size: 16px;
}
.featured-product-content-inner h5 a {
color: #fff;
}
.featured-product-text {
margin-bottom: 40px;
color: #fff;
}
.featured-product-content .featured-product-link {
font-weight: 700;
letter-spacing: 1px;
border-bottom: 2px solid #f20000;
padding: 0 0 0.25em 0;
color: #ffffff;
text-transform: uppercase;
font-size: 13px;
}
@media (min-width: 1024px) {
.featured-product-content-inner h5 {
font-size: 21px;
}
}
.package-detail-wrap {
padding: 20px;
}
.destination-big img {
width: 100%;
}
.price-tag {
font-weight: 600;
font-size: 18px;
color: #eb0017;
}
.iti-list li {
margin-bottom: 10px;
}
.detail-tab {
border: none;
background-color: #ff0000;
}
.detail-tab li {
margin-bottom: 0px;
}
.detail-tab li a {
font-size: 15px;
border: none !important;
border-radius: 0px;
background-color: #ff0000;
color: #fff;
margin-right: 0px;
border-right: 1px solid #de0303 !important;
padding: 15px 20px;
}
.detail-tab>li.active>a, .detail-tab>li.active>a:focus, .detail-tab>li.active>a:hover {
color: #ff0000;
background-color: #fff;
}
.detail-tab>li>a:focus, .detail-tab>li>a:hover {
color: #fff;
background-color: #de0303;
}
.detail-content {
padding: 15px;
}
.icon-list ul li {
list-style: none;
position: relative;
line-height: 24px;
margin-bottom: 10px;
font-size: 15px;
}
.icon-list ul {
padding-left: 30px;
}
.icon-list ul li:before {
font-family: 'FontAwesome';
margin-right: 10px;
position: absolute;
top: 0px;
left: -30px;
}
.included ul li:before {
content: '\f00c';
color: #49ae25;
}
.not-included ul li:before {
content: '\f00d';
color: #ff0000;
}
.contact-panel {
background-color: #21242c;
color: #fff;
padding: 20px;
}
.contact-panel p {
position: relative;
padding-left: 40px;
}
.contact-panel p i {
font-size: 24px;
color: #ff0000;
margin-right: 10px;
position: absolute;
width: 40px;
height: 40px;
left: 0;
top: 0;
}
.contact-panel p a {
color: #fff;
}
#images {
list-style: none;
display: flex;
padding-left: 0;
}
#images li{
margin-right: .5em;
}
.rates-caption {
font-size: 0.7em;
} | public/css/pages/destination.css | .product-wrap {
position: relative;
overflow: hidden;
}
.product-wrap:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
}
.product-wrap img {
width: 100%;
}
.product-wrap .featured-product-content {
position: absolute;
bottom: 40px;
left: 0;
padding: 0 3.5em 0 3.5em;
z-index: 2;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.product-wrap:hover .featured-product-content {
bottom: 60px;
}
.featured-product-content-inner h5 {
font-size: 16px;
}
.featured-product-content-inner h5 a {
color: #fff;
}
.featured-product-text {
margin-bottom: 40px;
color: #fff;
}
.featured-product-content .featured-product-link {
font-weight: 700;
letter-spacing: 1px;
border-bottom: 2px solid #f20000;
padding: 0 0 0.25em 0;
color: #ffffff;
text-transform: uppercase;
font-size: 13px;
}
@media (min-width: 1024px) {
.featured-product-content-inner h5 {
font-size: 21px;
}
}
.package-detail-wrap {
padding: 20px;
}
.destination-big img {
width: 100%;
}
.price-tag {
font-weight: 600;
font-size: 18px;
color: #eb0017;
}
.iti-list li {
margin-bottom: 10px;
}
.detail-tab {
border: none;
background-color: #ff0000;
}
.detail-tab li {
margin-bottom: 0px;
}
.detail-tab li a {
font-size: 15px;
border: none !important;
border-radius: 0px;
background-color: #ff0000;
color: #fff;
margin-right: 0px;
border-right: 1px solid #de0303 !important;
padding: 15px 20px;
}
.detail-tab>li.active>a, .detail-tab>li.active>a:focus, .detail-tab>li.active>a:hover {
color: #ff0000;
background-color: #fff;
}
.detail-tab>li>a:focus, .detail-tab>li>a:hover {
color: #fff;
background-color: #de0303;
}
.detail-content {
padding: 15px;
}
.icon-list ul li {
list-style: none;
position: relative;
line-height: 24px;
margin-bottom: 10px;
font-size: 15px;
}
.icon-list ul {
padding-left: 30px;
}
.icon-list ul li:before {
font-family: 'FontAwesome';
margin-right: 10px;
position: absolute;
top: 0px;
left: -30px;
}
.included ul li:before {
content: '\f00c';
color: #49ae25;
}
.not-included ul li:before {
content: '\f00d';
color: #ff0000;
}
.contact-panel {
background-color: #21242c;
color: #fff;
padding: 20px;
}
.contact-panel p {
position: relative;
padding-left: 40px;
}
.contact-panel p i {
font-size: 24px;
color: #ff0000;
margin-right: 10px;
position: absolute;
width: 40px;
height: 40px;
left: 0;
top: 0;
}
.contact-panel p a {
color: #fff;
}
#images {
list-style: none;
display: flex;
padding-left: 0;
}
#images li{
margin-right: .5em;
}
.rates-caption {
font-size: 0.7em;
} | 0.472683 | 0.058265 |
*::selection {
background: rgba(45, 170, 219, 0.3);
}
html { height: 100%; width: 100%; overflow: hidden; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
line-height: 1.5;
fill: currentcolor;
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
overflow: auto;
}
main {
height: 100%;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
div.page-wrapper {
align-items: stretch;
}
nav#sidebar {
background-color: #f7f6f3;
display: none;
font-size: 14px;
font-weight: 500;
width: 100%;
}
nav#sidebar.active {
display: block;
}
nav#sidebar a.site-title {
color: rgb(55, 53, 47);
display: block;
font-weight: 500;
padding: 12px 14px;
text-decoration: none;
}
nav#sidebar img.site-logo {
width: 18px;
height: 18px;
border-radius: 3px;
vertical-align: middle;
margin: -3px 4px 0px 0px;
}
nav#sidebar .post-list-category-block {
margin: 14px 0px;
}
nav#sidebar section {
color: rgba(55, 53, 47, 0.3);
font-size: 12px;
letter-spacing: 0.36px;
padding: 2px 14px;
text-transform: uppercase;
}
nav#sidebar .post-list-row {
padding-left: 0px;
}
nav#sidebar .post-list-row i {
color: rgba(55, 53, 47, 0.4);
text-align: center;
}
nav#sidebar a {
color: rgba(25, 23, 17, 0.6);
display: block;
padding: 3px 14px;
width: 100%;
text-decoration: none;
}
nav#sidebar a:hover {
background-color: #E8E7E4;
}
nav#sidebar a i {
width: 18px;
height: 18px;
}
main {
align-items: center;
text-align: center;
}
main .main-inner {
text-align: left;
margin: auto;
max-width: 900px;
padding: 0 12px;
}
main .main-menu-bar {
padding-top: 12px;
}
main .main-menu-bar i {
color: #666;
font-size: 18px;
margin-left: 6px;
padding-bottom: 12px;
}
main .main-menu-bar i:hover {
color: #000;
}
@media (min-width: 576px) {
nav#sidebar {
display: block;
width: 240px;
position: fixed;
min-height: 100vh;
overflow: scroll;
}
#sidebar-toggle {
display: none;
}
main { margin-left: 240px; }
}
@media (min-width: 768px) {
main .main-inner {
padding: 0 24px;
}
}
@media (min-width: 992px) {
main .main-inner {
padding: 0 48px;
}
}
@media (min-width: 1200px) {
main .main-inner {
padding: 0 96px;
}
}
.post-list h3 {
font-weight: 400;
}
.post-list small {
font-size: medium;
}
.post-header {
margin-bottom: 20px;
}
.post-header h1.post-title {
border-style: none;
font-size: 28px;
font-weight: 700;
line-height: 1.1;
}
.post-header .post-meta {
text-align: right;
}
.post-content {
color: #333;
line-height: 150%;
}
.post-content ul li {
line-height: 150%;
margin-top: 4px;
}
.post-content h1 {
font-size: 28px;
font-weight: 400;
}
.post-content h2 {
font-size: 22px;
font-weight: 600;
border-style: none;
}
.footer {
font-size: 14px;
padding: 20px auto;
min-height: 80px;
}
.footer .dot {
color: #ddd;
margin: auto 10px;
}
/* */
.icon::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
.doc::before {
content: "\f15c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: #ccc;
} | assets/css/notion.css | *::selection {
background: rgba(45, 170, 219, 0.3);
}
html { height: 100%; width: 100%; overflow: hidden; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
line-height: 1.5;
fill: currentcolor;
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
overflow: auto;
}
main {
height: 100%;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
div.page-wrapper {
align-items: stretch;
}
nav#sidebar {
background-color: #f7f6f3;
display: none;
font-size: 14px;
font-weight: 500;
width: 100%;
}
nav#sidebar.active {
display: block;
}
nav#sidebar a.site-title {
color: rgb(55, 53, 47);
display: block;
font-weight: 500;
padding: 12px 14px;
text-decoration: none;
}
nav#sidebar img.site-logo {
width: 18px;
height: 18px;
border-radius: 3px;
vertical-align: middle;
margin: -3px 4px 0px 0px;
}
nav#sidebar .post-list-category-block {
margin: 14px 0px;
}
nav#sidebar section {
color: rgba(55, 53, 47, 0.3);
font-size: 12px;
letter-spacing: 0.36px;
padding: 2px 14px;
text-transform: uppercase;
}
nav#sidebar .post-list-row {
padding-left: 0px;
}
nav#sidebar .post-list-row i {
color: rgba(55, 53, 47, 0.4);
text-align: center;
}
nav#sidebar a {
color: rgba(25, 23, 17, 0.6);
display: block;
padding: 3px 14px;
width: 100%;
text-decoration: none;
}
nav#sidebar a:hover {
background-color: #E8E7E4;
}
nav#sidebar a i {
width: 18px;
height: 18px;
}
main {
align-items: center;
text-align: center;
}
main .main-inner {
text-align: left;
margin: auto;
max-width: 900px;
padding: 0 12px;
}
main .main-menu-bar {
padding-top: 12px;
}
main .main-menu-bar i {
color: #666;
font-size: 18px;
margin-left: 6px;
padding-bottom: 12px;
}
main .main-menu-bar i:hover {
color: #000;
}
@media (min-width: 576px) {
nav#sidebar {
display: block;
width: 240px;
position: fixed;
min-height: 100vh;
overflow: scroll;
}
#sidebar-toggle {
display: none;
}
main { margin-left: 240px; }
}
@media (min-width: 768px) {
main .main-inner {
padding: 0 24px;
}
}
@media (min-width: 992px) {
main .main-inner {
padding: 0 48px;
}
}
@media (min-width: 1200px) {
main .main-inner {
padding: 0 96px;
}
}
.post-list h3 {
font-weight: 400;
}
.post-list small {
font-size: medium;
}
.post-header {
margin-bottom: 20px;
}
.post-header h1.post-title {
border-style: none;
font-size: 28px;
font-weight: 700;
line-height: 1.1;
}
.post-header .post-meta {
text-align: right;
}
.post-content {
color: #333;
line-height: 150%;
}
.post-content ul li {
line-height: 150%;
margin-top: 4px;
}
.post-content h1 {
font-size: 28px;
font-weight: 400;
}
.post-content h2 {
font-size: 22px;
font-weight: 600;
border-style: none;
}
.footer {
font-size: 14px;
padding: 20px auto;
min-height: 80px;
}
.footer .dot {
color: #ddd;
margin: auto 10px;
}
/* */
.icon::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
.doc::before {
content: "\f15c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: #ccc;
} | 0.486575 | 0.093058 |
.intl-tel-input {
width: 100%;
}
ul.ui-autocomplete {
z-index: 1100;
}
.admin {
padding-top: 50px;
}
.signin {
background-image: url('../img/IMG_8980.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.pricing hr {
margin: 1.5rem 0;
}
.pricing .card-price {
font-size: 3rem;
margin: 0;
}
.pricing .card-price .period {
font-size: 0.8rem;
}
.pricing ul li {
margin-bottom: 1rem;
}
.pricing .text-muted {
opacity: 0.7;
}
.pricing .btn {
opacity: 0.7;
transition: all 0.2s;
}
/* Hover Effects on Card */
@media (min-width: 992px) {
.pricing .card:hover .btn {
opacity: 1;
}
}
.whatsapp {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
right: 40px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
z-index: 100;
}
.whatsapp-icon {
margin-top: 13px;
}
.bg {
background: url(../img/IMG_8980.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-inscripcion {
padding: 40px 30px 60px;
background: linear-gradient(to top, rgba(7, 94, 84, 0.8), rgba(7, 94, 84, 0.8)), url(../img/IMG_8980.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: 50%;
background-attachment: fixed
}
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
position: fixed;
top: 0px;
width: 100%;
z-index: 999;
}
.navbuttons {
display: inline-block;
overflow: auto;
overflow-y: hidden;
max-width: 100%;
margin: 0 0 1em;
white-space: nowrap;
}
.navbuttons li {
display: inline-block;
vertical-align: top;
}
.border-between>[class*='col-']:before {
background: #e3e3e3;
bottom: 0;
content: " ";
left: 0;
position: absolute;
width: 1px;
top: 0;
}
.border-between>[class*='col-']:first-child:before {
display: none;
}
.inner {
overflow: hidden;
}
.inner img {
transition: all 1.5s ease;
}
.inner:hover img {
transform: scale(1.5);
}
.icon-bar {
width: 100%;
/* Full-width */
overflow: auto;
/* Overflow due to float */
}
.icon-bar a {
float: left;
/* Float links side by side */
text-align: center;
/* Center-align text */
width: 20%;
/* Equal width (5 icons with 20% width each = 100%) */
padding: 12px 0;
/* Some top and bottom padding */
transition: all 0.3s ease;
/* Add transition for hover effects */
color: white;
/* White text color */
font-size: 36px;
/* Increased font size */
}
.icon-bar a:hover {
background-color: #000;
/* Add a hover color */
}
/* The Overlay (background) */
.overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 100%;
width: 0;
position: fixed;
/* Stay in place */
z-index: 2;
/* Sit on top */
left: 0;
top: 0;
background-color: rgb(0, 0, 0);
/* Black fallback color */
background-color: rgba(0, 0, 0, 0.9);
/* Black w/opacity */
overflow-x: hidden;
/* Disable horizontal scroll */
transition: 0.5s;
/* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}
/* Position the content inside the overlay */
.overlay-content {
position: relative;
top: 10%;
/* 25% from the top */
width: 100%;
/* 100% width */
text-align: center;
/* Centered text/links */
margin-top: 30px;
/* 30px top margin to avoid conflict with the close button on smaller screens */
}
/* The navigation links inside the overlay */
.overlay a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #818181;
display: block;
/* Display block instead of inline */
transition: 0.3s;
/* Transition effects on hover (color) */
}
/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
color: #f1f1f1;
}
/* Position the close button (top right corner) */
.overlay .closebtn {
position: absolute;
top: 0px;
right: 15px;
font-size: 60px;
}
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
.overlay a {
font-size: 20px
}
.overlay .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
.bandera-sm {
position: absolute;
margin: -20px 0 0 33px;
}
@media (min-width: 768px) {
.bandera {
position: absolute;
margin-top: -50px;
margin-left: 115px;
}
}
.facebook-responsive {
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
height: 0;
}
.facebook-responsive iframe {
left: 0;
top: 0;
height: 100%;
width: 100%;
position: absolute;
}
@media (min-width: 768px) {
.multi-item-carousel .carousel-inner .carousel-item {
margin-right: inherit;
}
.multi-item-carousel .carousel-inner .carousel-item.active+.carousel-item, .multi-item-carousel .carousel-inner .carousel-item.active+.carousel-item+.carousel-item {
display: block;
}
.multi-item-carousel .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left), .multi-item-carousel .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item, .multi-item-carousel .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item+.carousel-item {
transition: none;
}
.multi-item-carousel .carousel-inner .carousel-item.active+.carousel-item+.carousel-item+.carousel-item {
position: absolute;
top: 0;
right: -33.33333333333333%;
z-index: -1;
display: block;
visibility: visible;
}
.multi-item-carousel .carousel-inner .carousel-item-next, .multi-item-carousel .carousel-inner .carousel-item-prev {
position: relative;
transform: translate3d(0, 0, 0);
}
.multi-item-carousel .carousel-inner .carousel-item-prev.carousel-item-right {
position: absolute;
top: 0;
left: 0;
z-index: -1;
display: block;
visibility: visible;
}
.multi-item-carousel .active.carousel-item-left+.carousel-item-next.carousel-item-left, .multi-item-carousel .carousel-item-next.carousel-item-left+.carousel-item, .multi-item-carousel .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item, .multi-item-carousel .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item+.carousel-item {
position: relative;
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
.multi-item-carousel .active.carousel-item-right+.carousel-item-prev.carousel-item-right, .multi-item-carousel .carousel-item-prev.carousel-item-right+.carousel-item, .multi-item-carousel .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item, .multi-item-carousel .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item+.carousel-item {
position: relative;
transform: translate3d(100%, 0, 0);
display: block;
visibility: visible;
}
}
.progress {
width: 150px;
height: 150px;
background: none;
position: relative;
}
.progress::after {
content: "";
width: 100%;
height: 100%;
border-radius: 50%;
border: 6px solid #eee;
position: absolute;
top: 0;
left: 0;
}
.progress>span {
width: 50%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0;
z-index: 1;
}
.progress .progress-left {
left: 0;
}
.progress .progress-bar {
width: 100%;
height: 100%;
background: none;
border-width: 6px;
border-style: solid;
position: absolute;
top: 0;
}
.progress .progress-left .progress-bar {
left: 100%;
border-top-right-radius: 80px;
border-bottom-right-radius: 80px;
border-left: 0;
-webkit-transform-origin: center left;
transform-origin: center left;
}
.progress .progress-right {
right: 0;
}
.progress .progress-right .progress-bar {
left: -100%;
border-top-left-radius: 80px;
border-bottom-left-radius: 80px;
border-right: 0;
-webkit-transform-origin: center right;
transform-origin: center right;
}
.progress .progress-value {
position: absolute;
top: 0;
left: 0;
} | assets/css/main.css | .intl-tel-input {
width: 100%;
}
ul.ui-autocomplete {
z-index: 1100;
}
.admin {
padding-top: 50px;
}
.signin {
background-image: url('../img/IMG_8980.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.pricing hr {
margin: 1.5rem 0;
}
.pricing .card-price {
font-size: 3rem;
margin: 0;
}
.pricing .card-price .period {
font-size: 0.8rem;
}
.pricing ul li {
margin-bottom: 1rem;
}
.pricing .text-muted {
opacity: 0.7;
}
.pricing .btn {
opacity: 0.7;
transition: all 0.2s;
}
/* Hover Effects on Card */
@media (min-width: 992px) {
.pricing .card:hover .btn {
opacity: 1;
}
}
.whatsapp {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
right: 40px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
z-index: 100;
}
.whatsapp-icon {
margin-top: 13px;
}
.bg {
background: url(../img/IMG_8980.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-inscripcion {
padding: 40px 30px 60px;
background: linear-gradient(to top, rgba(7, 94, 84, 0.8), rgba(7, 94, 84, 0.8)), url(../img/IMG_8980.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: 50%;
background-attachment: fixed
}
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
position: fixed;
top: 0px;
width: 100%;
z-index: 999;
}
.navbuttons {
display: inline-block;
overflow: auto;
overflow-y: hidden;
max-width: 100%;
margin: 0 0 1em;
white-space: nowrap;
}
.navbuttons li {
display: inline-block;
vertical-align: top;
}
.border-between>[class*='col-']:before {
background: #e3e3e3;
bottom: 0;
content: " ";
left: 0;
position: absolute;
width: 1px;
top: 0;
}
.border-between>[class*='col-']:first-child:before {
display: none;
}
.inner {
overflow: hidden;
}
.inner img {
transition: all 1.5s ease;
}
.inner:hover img {
transform: scale(1.5);
}
.icon-bar {
width: 100%;
/* Full-width */
overflow: auto;
/* Overflow due to float */
}
.icon-bar a {
float: left;
/* Float links side by side */
text-align: center;
/* Center-align text */
width: 20%;
/* Equal width (5 icons with 20% width each = 100%) */
padding: 12px 0;
/* Some top and bottom padding */
transition: all 0.3s ease;
/* Add transition for hover effects */
color: white;
/* White text color */
font-size: 36px;
/* Increased font size */
}
.icon-bar a:hover {
background-color: #000;
/* Add a hover color */
}
/* The Overlay (background) */
.overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 100%;
width: 0;
position: fixed;
/* Stay in place */
z-index: 2;
/* Sit on top */
left: 0;
top: 0;
background-color: rgb(0, 0, 0);
/* Black fallback color */
background-color: rgba(0, 0, 0, 0.9);
/* Black w/opacity */
overflow-x: hidden;
/* Disable horizontal scroll */
transition: 0.5s;
/* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}
/* Position the content inside the overlay */
.overlay-content {
position: relative;
top: 10%;
/* 25% from the top */
width: 100%;
/* 100% width */
text-align: center;
/* Centered text/links */
margin-top: 30px;
/* 30px top margin to avoid conflict with the close button on smaller screens */
}
/* The navigation links inside the overlay */
.overlay a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #818181;
display: block;
/* Display block instead of inline */
transition: 0.3s;
/* Transition effects on hover (color) */
}
/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
color: #f1f1f1;
}
/* Position the close button (top right corner) */
.overlay .closebtn {
position: absolute;
top: 0px;
right: 15px;
font-size: 60px;
}
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
.overlay a {
font-size: 20px
}
.overlay .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
.bandera-sm {
position: absolute;
margin: -20px 0 0 33px;
}
@media (min-width: 768px) {
.bandera {
position: absolute;
margin-top: -50px;
margin-left: 115px;
}
}
.facebook-responsive {
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
height: 0;
}
.facebook-responsive iframe {
left: 0;
top: 0;
height: 100%;
width: 100%;
position: absolute;
}
@media (min-width: 768px) {
.multi-item-carousel .carousel-inner .carousel-item {
margin-right: inherit;
}
.multi-item-carousel .carousel-inner .carousel-item.active+.carousel-item, .multi-item-carousel .carousel-inner .carousel-item.active+.carousel-item+.carousel-item {
display: block;
}
.multi-item-carousel .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left), .multi-item-carousel .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item, .multi-item-carousel .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item+.carousel-item {
transition: none;
}
.multi-item-carousel .carousel-inner .carousel-item.active+.carousel-item+.carousel-item+.carousel-item {
position: absolute;
top: 0;
right: -33.33333333333333%;
z-index: -1;
display: block;
visibility: visible;
}
.multi-item-carousel .carousel-inner .carousel-item-next, .multi-item-carousel .carousel-inner .carousel-item-prev {
position: relative;
transform: translate3d(0, 0, 0);
}
.multi-item-carousel .carousel-inner .carousel-item-prev.carousel-item-right {
position: absolute;
top: 0;
left: 0;
z-index: -1;
display: block;
visibility: visible;
}
.multi-item-carousel .active.carousel-item-left+.carousel-item-next.carousel-item-left, .multi-item-carousel .carousel-item-next.carousel-item-left+.carousel-item, .multi-item-carousel .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item, .multi-item-carousel .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item+.carousel-item {
position: relative;
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
.multi-item-carousel .active.carousel-item-right+.carousel-item-prev.carousel-item-right, .multi-item-carousel .carousel-item-prev.carousel-item-right+.carousel-item, .multi-item-carousel .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item, .multi-item-carousel .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item+.carousel-item {
position: relative;
transform: translate3d(100%, 0, 0);
display: block;
visibility: visible;
}
}
.progress {
width: 150px;
height: 150px;
background: none;
position: relative;
}
.progress::after {
content: "";
width: 100%;
height: 100%;
border-radius: 50%;
border: 6px solid #eee;
position: absolute;
top: 0;
left: 0;
}
.progress>span {
width: 50%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0;
z-index: 1;
}
.progress .progress-left {
left: 0;
}
.progress .progress-bar {
width: 100%;
height: 100%;
background: none;
border-width: 6px;
border-style: solid;
position: absolute;
top: 0;
}
.progress .progress-left .progress-bar {
left: 100%;
border-top-right-radius: 80px;
border-bottom-right-radius: 80px;
border-left: 0;
-webkit-transform-origin: center left;
transform-origin: center left;
}
.progress .progress-right {
right: 0;
}
.progress .progress-right .progress-bar {
left: -100%;
border-top-left-radius: 80px;
border-bottom-left-radius: 80px;
border-right: 0;
-webkit-transform-origin: center right;
transform-origin: center right;
}
.progress .progress-value {
position: absolute;
top: 0;
left: 0;
} | 0.452052 | 0.086323 |
html {
background: -webkit-linear-gradient(bottom, #6DBCDB 20%, #639AC9 100%);
background: -ms-linear-gradient(bottom, #6DBCDB 20%, #639AC9 100%);
background: linear-gradient(to bottom, #6DBCDB 20%, #639AC9 100%);
}
html, body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
position: relative;
color: #464637;
min-height: 100%;
font-size: 20px;
font-weight: 300;
}
h1 {
color: #fff;
font-size: 20px;
font-weight: 300;
text-align: center;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
.logo {
padding-top: 55px;
}
.container {
margin: auto;
padding: 30px;
min-width: 1100px;
max-width: 1300px;
}
@media (min-width: 750px) and (max-width: 970px){
.container {
min-width: 750px;
}
}
.row {
margin-left: -15px;
margin-right: -15px;
margin-bottom: 30px;
}
.row:before, .row:after {
content: " ";
display: table;
}
.row:after {
clear: both;
}
.col-4, .col-6, .col-12 {
float: left;
}
.col-4 {
width: 33.33333333333333%;
}
.col-6 {
width: 50%;
}
.col-12 {
width: 100%;
}
.title {
color: #fff;
padding: 3px 10px;
display: inline-block;
position: relative;
background-color: #3D5580;
z-index: 3;
}
.title-xl {
padding: 3px 15px;
font-size: 40px;
}
.title-row:before, .title-row:after {
content: " ";
display: table;
}
.title-row:after {
clear: both;
}
.button {
color: #fff;
margin: 8px 20px 10px 0;
padding: 5px 10px;
min-width: 10px;
background-color: #5F9EDF;
text-align: center;
text-decoration: none;
transition: background-color 300ms ease-out;
}
.button:hover {
background-color: #477edf;
}
.tile {
margin-top: 15px;
margin-left: 15px;
margin-right: 15px;
background-color: #fff;
vertical-align: top;
min-height: 80px;
}
.tile-title {
color: #FF7270;
text-align: center;
padding: 20px 0 0px;
}
.tile-content {
padding: 20px 40px 40px;
}
.block {
padding: 20px 0;
margin-top: -8px;
margin-left: 15px;
margin-right: 15px;
min-height: 215px;
background-color: #fff;
}
.list {
list-style: square;
padding: 0px 60px;
}
.list li {
padding: 10px 0px;
}
.block-list li {
padding: 10px 40px;
}
code {
font-size: 16px;
}
.social {
margin-top: 1em;
padding: 15px 0;
}
.social-buttons {
margin-left: 0;
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.social-buttons li {
display: inline-block;
padding: 5px 8px;
line-height: 1;
}
.docs-btn {
font-size: 15px;
font-weight: bold;
text-decoration: none;
float: right;
color: #5F9EDF;
transition: all 0.2s ease-in-out;
}
.docs-btn:hover {
color: #1E5996;
} | demo/demoapp.css | html {
background: -webkit-linear-gradient(bottom, #6DBCDB 20%, #639AC9 100%);
background: -ms-linear-gradient(bottom, #6DBCDB 20%, #639AC9 100%);
background: linear-gradient(to bottom, #6DBCDB 20%, #639AC9 100%);
}
html, body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
position: relative;
color: #464637;
min-height: 100%;
font-size: 20px;
font-weight: 300;
}
h1 {
color: #fff;
font-size: 20px;
font-weight: 300;
text-align: center;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
.logo {
padding-top: 55px;
}
.container {
margin: auto;
padding: 30px;
min-width: 1100px;
max-width: 1300px;
}
@media (min-width: 750px) and (max-width: 970px){
.container {
min-width: 750px;
}
}
.row {
margin-left: -15px;
margin-right: -15px;
margin-bottom: 30px;
}
.row:before, .row:after {
content: " ";
display: table;
}
.row:after {
clear: both;
}
.col-4, .col-6, .col-12 {
float: left;
}
.col-4 {
width: 33.33333333333333%;
}
.col-6 {
width: 50%;
}
.col-12 {
width: 100%;
}
.title {
color: #fff;
padding: 3px 10px;
display: inline-block;
position: relative;
background-color: #3D5580;
z-index: 3;
}
.title-xl {
padding: 3px 15px;
font-size: 40px;
}
.title-row:before, .title-row:after {
content: " ";
display: table;
}
.title-row:after {
clear: both;
}
.button {
color: #fff;
margin: 8px 20px 10px 0;
padding: 5px 10px;
min-width: 10px;
background-color: #5F9EDF;
text-align: center;
text-decoration: none;
transition: background-color 300ms ease-out;
}
.button:hover {
background-color: #477edf;
}
.tile {
margin-top: 15px;
margin-left: 15px;
margin-right: 15px;
background-color: #fff;
vertical-align: top;
min-height: 80px;
}
.tile-title {
color: #FF7270;
text-align: center;
padding: 20px 0 0px;
}
.tile-content {
padding: 20px 40px 40px;
}
.block {
padding: 20px 0;
margin-top: -8px;
margin-left: 15px;
margin-right: 15px;
min-height: 215px;
background-color: #fff;
}
.list {
list-style: square;
padding: 0px 60px;
}
.list li {
padding: 10px 0px;
}
.block-list li {
padding: 10px 40px;
}
code {
font-size: 16px;
}
.social {
margin-top: 1em;
padding: 15px 0;
}
.social-buttons {
margin-left: 0;
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.social-buttons li {
display: inline-block;
padding: 5px 8px;
line-height: 1;
}
.docs-btn {
font-size: 15px;
font-weight: bold;
text-decoration: none;
float: right;
color: #5F9EDF;
transition: all 0.2s ease-in-out;
}
.docs-btn:hover {
color: #1E5996;
} | 0.494385 | 0.093388 |
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/geometry2.png'); /* Background pattern from Subtle Patterns */
font-family: 'Coda', cursive;
font-size: 16px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
font-family: 'Open Sans', sans-serif;
}
/*
* Styles for the deck of cards
*/
.deck {
width: 75%;
background: linear-gradient(160deg, #02ccba 0%, #aa7ecd 100%);
padding: 1rem;
border-radius: 4px;
box-shadow: 10px 11px 26px 0 rgba(46, 61, 73, 0.5);
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
margin: 0 0 3em;
}
.deck .card {
height: 4rem;
width: 4rem;
margin: 0.3rem 0.3rem;
background: #2e3d49;
font-size: 0;
color: #ffffff;
border-radius: 5px;
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;
animation-name: flipIn;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-duration: .75s;
}
.deck .card.show {
font-size: 33px;
}
.deck .card.match {
cursor: default;
background: #02ccba;
font-size: 33px;
animation-name: swing;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-duration: .75s;
}
.deck .card.unmatched {
animation-name: wobble;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-duration: .75s;
background: #e2043b;
}
.deck .card.disabled {
pointer-events: none;
opacity: 0.9;
}
/*
* Styles for the Score Panel
*/
.score-panel {
text-align: left;
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;
}
.score-panel .restart {
float: right;
cursor: pointer;
}
.fa-star {
color: #FFD700;
}
.show {
visibility: visible !important;
opacity: 100 !important;
}
#starRating li {
display: inline-block;
}
.timer {
display: inline-block;
margin: 0 1rem;
}
/*Congratulations modal */
.modal {
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
visibility: hidden;
opacity: 0;
}
.modal:target {
visibility: visible;
opacity: 1;
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
position: relative;
}
.modal-content h2 {
margin-top: 0;
color: #333;
font-family: Tahoma, Arial, sans-serif;
}
.modal-content .close {
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #333;
}
.modal-content .close:hover {
color: #E5F720;
}
.modal-content .modal-body {
max-height: 30%;
overflow: auto;
text-align: center;
}
#myBtn {
background-color: #141214;
padding: 0.7rem 1rem;
font-size: 1.1rem;
display: block;
margin: 0 auto;
width: 50%;
color: #ffffff;
border-radius: 5px;
}
/* animations */
@keyframes flipIn {
from {
transform: rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: rotate3d(0, 1, 0, -5deg);
}
}
@keyframes swing {
20% {
transform: rotate(15deg);
}
40% {
transform: rotate(-10deg);
}
60% {
transform: rotate(5deg);
}
80% {
transform: rotate(-5deg);
}
100% {
transform: rotate(0deg);
}
}
@keyframes wobble {
0% {
transform: translateX(0%);
}
15% {
transform: translateX(-25%) rotate(-5deg);
}
30% {
transform: translateX(20%) rotate(3deg);
}
45% {
transform: translateX(-15%) rotate(-3deg);
}
60% {
transform: translateX(10%) rotate(2deg);
}
75% {
transform: translateX(-5%) rotate(-1deg);
}
100% {
transform: translateX(0%);
}
}
/*Media queries */
@media screen and (max-width: 300px) {
.deck {
width:85%;
}
.deck .card {
height: 4.7rem;
width:4.7rem;
}
}
/*for tablets and larger screens */
@media screen and (min-width: 768px) {
.container {
font-size: 22px;
}
.deck {
width: 680px;
height: 700px;
}
.deck .card {
height: 130px;
width: 130px;
}
.modal-content {
width: 60%;
}
} | 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/geometry2.png'); /* Background pattern from Subtle Patterns */
font-family: 'Coda', cursive;
font-size: 16px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
font-family: 'Open Sans', sans-serif;
}
/*
* Styles for the deck of cards
*/
.deck {
width: 75%;
background: linear-gradient(160deg, #02ccba 0%, #aa7ecd 100%);
padding: 1rem;
border-radius: 4px;
box-shadow: 10px 11px 26px 0 rgba(46, 61, 73, 0.5);
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
margin: 0 0 3em;
}
.deck .card {
height: 4rem;
width: 4rem;
margin: 0.3rem 0.3rem;
background: #2e3d49;
font-size: 0;
color: #ffffff;
border-radius: 5px;
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;
animation-name: flipIn;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-duration: .75s;
}
.deck .card.show {
font-size: 33px;
}
.deck .card.match {
cursor: default;
background: #02ccba;
font-size: 33px;
animation-name: swing;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-duration: .75s;
}
.deck .card.unmatched {
animation-name: wobble;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-duration: .75s;
background: #e2043b;
}
.deck .card.disabled {
pointer-events: none;
opacity: 0.9;
}
/*
* Styles for the Score Panel
*/
.score-panel {
text-align: left;
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;
}
.score-panel .restart {
float: right;
cursor: pointer;
}
.fa-star {
color: #FFD700;
}
.show {
visibility: visible !important;
opacity: 100 !important;
}
#starRating li {
display: inline-block;
}
.timer {
display: inline-block;
margin: 0 1rem;
}
/*Congratulations modal */
.modal {
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
visibility: hidden;
opacity: 0;
}
.modal:target {
visibility: visible;
opacity: 1;
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
position: relative;
}
.modal-content h2 {
margin-top: 0;
color: #333;
font-family: Tahoma, Arial, sans-serif;
}
.modal-content .close {
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #333;
}
.modal-content .close:hover {
color: #E5F720;
}
.modal-content .modal-body {
max-height: 30%;
overflow: auto;
text-align: center;
}
#myBtn {
background-color: #141214;
padding: 0.7rem 1rem;
font-size: 1.1rem;
display: block;
margin: 0 auto;
width: 50%;
color: #ffffff;
border-radius: 5px;
}
/* animations */
@keyframes flipIn {
from {
transform: rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: rotate3d(0, 1, 0, -5deg);
}
}
@keyframes swing {
20% {
transform: rotate(15deg);
}
40% {
transform: rotate(-10deg);
}
60% {
transform: rotate(5deg);
}
80% {
transform: rotate(-5deg);
}
100% {
transform: rotate(0deg);
}
}
@keyframes wobble {
0% {
transform: translateX(0%);
}
15% {
transform: translateX(-25%) rotate(-5deg);
}
30% {
transform: translateX(20%) rotate(3deg);
}
45% {
transform: translateX(-15%) rotate(-3deg);
}
60% {
transform: translateX(10%) rotate(2deg);
}
75% {
transform: translateX(-5%) rotate(-1deg);
}
100% {
transform: translateX(0%);
}
}
/*Media queries */
@media screen and (max-width: 300px) {
.deck {
width:85%;
}
.deck .card {
height: 4.7rem;
width:4.7rem;
}
}
/*for tablets and larger screens */
@media screen and (min-width: 768px) {
.container {
font-size: 22px;
}
.deck {
width: 680px;
height: 700px;
}
.deck .card {
height: 130px;
width: 130px;
}
.modal-content {
width: 60%;
}
} | 0.546012 | 0.107484 |
* {
box-sizing: border-box;
}
h1 {
text-align: center;
font-size: 60px;
color: white;
font-family: American typewriter, serif;
position: relative;
}
.songbox {
width: 1000px;
height: 300px;
background-color: white;
font-size: 32px;
font-family: sans-serif;
border: 2px solid red;
border-radius: 10%;
z-index: 999;
position: relative;
text-align: center;
margin-left: 200px;
margin-top: 50px;
}
img {
width: 200px;
height: 200px;
margin-top: 50px;
position: relative;
margin-left: -500px;
margin-right: 10px;
display: inline-block;
border: 1px solid black;
}
#songtitle {
color: black;
height: 60px;
width: 550px;
font-size: 25px;
font-family: American Typewriter, serif;
margin-left: 370px;
margin-top: -215px;
padding: 8px;
text-align: center;
position: relative;
overflow: scroll;
}
#songinfo {
color: black;
width: 550px;
height: 100px;
font-size: 15px;
font-family: American Typewriter, serif;
margin-left: 370px;
padding: 8px;
text-align: center;
margin-top: 5px;
overflow: scroll;
position: relative;
}
#songlink {
color: black;
width: 550px;
height: 50px;
font-size: 15px;
font-family: American Typewriter, serif;
margin-left: 370px;
padding: 8px;
text-align: center;
margin-top: 10px;
overflow: scroll;
position: relative;
}
.container {
width: 100%;
height: 100%;
background-color: black;
position: absolute;
z-index: 1;
}
.button-box {
top: 500px;
margin-left: 400px;
width: 1000px;
height: 100px;
padding: 20px;
position: relative;
z-index: 997;
}
#btn1 {
width: 80px;
height: 50px;
background-color: white;
border-radius: 10%;
border: 1px solid red;
box-shadow: 1px 1px 5px black;
display: inline;
color: black;
text-align: center;
font-size: 20px;
font-family: American Typewriter, serif;
padding-left: 8px;
margin-left: 100px;
margin-right: 20px;
position: relative;
}
#btn2 {
width: 80px;
height: 50px;
background-color: white;
border: 1px solid red;
border-radius: 10%;
box-shadow: 1px 1px 5px black;
display: inline;
color: black;
text-align: center;
font-size: 20px;
font-family: American Typewriter, serif;
padding-left: 8px;
margin-right: 20px;
position: relative;
}
#btn3 {
width: 80px;
height: 50px;
background-color: white;
border-radius: 10%;
border: 1px solid red;
box-shadow: 1px 1px 5px black;
display: inline;
color: black;
text-align: center;
font-size: 20px;
font-family: American Typewriter, serif;
padding-left: 8px;
margin-right: 20px;
position: relative;
}
#btn4 {
width: 80px;
height: 50px;
background-color: white;
border-radius: 10%;
border: 1px solid red;
box-shadow: 1px 1px 5px black;
display: inline;
color: black;
text-align: center;
font-size: 20px;
font-family: American Typewriter, serif;
padding-left: 8px;
margin-right: 20px;
position: relative;
}
#btn1:hover, #btn2:hover, #btn3:hover, #btn4:hover {
background-color: black;
color: white;
box-shadow: 1px 1px 1px black;
} | public/css/index.css | * {
box-sizing: border-box;
}
h1 {
text-align: center;
font-size: 60px;
color: white;
font-family: American typewriter, serif;
position: relative;
}
.songbox {
width: 1000px;
height: 300px;
background-color: white;
font-size: 32px;
font-family: sans-serif;
border: 2px solid red;
border-radius: 10%;
z-index: 999;
position: relative;
text-align: center;
margin-left: 200px;
margin-top: 50px;
}
img {
width: 200px;
height: 200px;
margin-top: 50px;
position: relative;
margin-left: -500px;
margin-right: 10px;
display: inline-block;
border: 1px solid black;
}
#songtitle {
color: black;
height: 60px;
width: 550px;
font-size: 25px;
font-family: American Typewriter, serif;
margin-left: 370px;
margin-top: -215px;
padding: 8px;
text-align: center;
position: relative;
overflow: scroll;
}
#songinfo {
color: black;
width: 550px;
height: 100px;
font-size: 15px;
font-family: American Typewriter, serif;
margin-left: 370px;
padding: 8px;
text-align: center;
margin-top: 5px;
overflow: scroll;
position: relative;
}
#songlink {
color: black;
width: 550px;
height: 50px;
font-size: 15px;
font-family: American Typewriter, serif;
margin-left: 370px;
padding: 8px;
text-align: center;
margin-top: 10px;
overflow: scroll;
position: relative;
}
.container {
width: 100%;
height: 100%;
background-color: black;
position: absolute;
z-index: 1;
}
.button-box {
top: 500px;
margin-left: 400px;
width: 1000px;
height: 100px;
padding: 20px;
position: relative;
z-index: 997;
}
#btn1 {
width: 80px;
height: 50px;
background-color: white;
border-radius: 10%;
border: 1px solid red;
box-shadow: 1px 1px 5px black;
display: inline;
color: black;
text-align: center;
font-size: 20px;
font-family: American Typewriter, serif;
padding-left: 8px;
margin-left: 100px;
margin-right: 20px;
position: relative;
}
#btn2 {
width: 80px;
height: 50px;
background-color: white;
border: 1px solid red;
border-radius: 10%;
box-shadow: 1px 1px 5px black;
display: inline;
color: black;
text-align: center;
font-size: 20px;
font-family: American Typewriter, serif;
padding-left: 8px;
margin-right: 20px;
position: relative;
}
#btn3 {
width: 80px;
height: 50px;
background-color: white;
border-radius: 10%;
border: 1px solid red;
box-shadow: 1px 1px 5px black;
display: inline;
color: black;
text-align: center;
font-size: 20px;
font-family: American Typewriter, serif;
padding-left: 8px;
margin-right: 20px;
position: relative;
}
#btn4 {
width: 80px;
height: 50px;
background-color: white;
border-radius: 10%;
border: 1px solid red;
box-shadow: 1px 1px 5px black;
display: inline;
color: black;
text-align: center;
font-size: 20px;
font-family: American Typewriter, serif;
padding-left: 8px;
margin-right: 20px;
position: relative;
}
#btn1:hover, #btn2:hover, #btn3:hover, #btn4:hover {
background-color: black;
color: white;
box-shadow: 1px 1px 1px black;
} | 0.368747 | 0.103976 |
.App {
/*text-align: center;*/
background: no-repeat center center fixed;
background-image: url(https://images.unsplash.com/photo-1587351156331-f833af4a3350?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=1400&q=80);
background-size: cover;
min-height: 100vh;
color: #ffffff;
font-family: 'Quicksand', 'sans-serif';
font-weight: 300;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
.Login {
padding: 50px 100px;
color: #ffffff;
max-width: 1600px;
margin: 0 auto;
}
h2 {
font-size: 4em;
line-height: 1.1em;
}
.prod h2 {
font-size: 3em;
line-height: 1.2em;
margin-bottom: 1.2em;
margin-top: 1.2em;
}
h3 {
font-size: 2em;
font-weight: 400;
}
h4 {
font-weight: bold;
font-size: 1.2em;
line-height: 1.2em;
}
.prod h4 {
font-size: 1.7em;
line-height: 1.2em;
margin: 0;
}
#logo-full {
max-width: 180px;
height: auto;
}
#logo-2-3 {
max-width: 120px;
height: auto;
}
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
padding-bottom: 10%;
}
.welcome {
text-shadow: 2px 2px 12px #00000060;
padding-right: 3em;
}
.welcome h2 {
margin-bottom: 0;
}
.welcome h3 {
margin-top: 20px;
}
form {
color: #000000;
background: rgba(255,255,255,85%);
padding: 30px;
border-radius: 4px;
max-width: 300px;
margin-right: 0px;
}
form label {
font-weight: 600;
}
form h5 {
margin: 32px 0px 16px 0px;
}
form input {
width: 100%;
}
button {
background-color: #4B8A44;
color: #fff;
font-size: 22px;
font-family: 'Quicksand';
font-weight: 600;
width: 100%;
padding: 8px;
box-shadow: 0px 3px 6px #00000029;
border: none;
border-radius: 12px;
}
form button {
margin-top: 16px;
}
.textfield {
width: 100%;
}
.first {
margin-top: 0 !important;
}
/* Product Page */
.Product {
margin: 0;
width: 100vw;
height: 100%;
/* height: 110%; */
background: #eeeeee;
color: #000000;
/*padding: 20px;
border-radius: 39px;
border-collapse: separate;
border-spacing: 15px;
list-style-type: none;
max-width: 600px;
min-height: 500px;
margin-right: 0px;
align-items: center;
display: flex;
flex-direction: row;*/
display: flex;
}
.prod {
margin: 50px auto;
transform: translateX(-1em);
}
.result {
margin: 20px 0px;
/*display: flex;
flex-direction: row;*/
font-weight: 300;
/*align-items: flex-start;*/
}
.orderNum {
font-weight: 700;
color: #AAAAAA;
font-size: 42px;
margin: 0 1em 0 0;
position: absolute;
float: left;
}
.result-block {
margin-left: 100px;
background-color: #fff;
border-radius: 22px;
box-shadow: 0px 3px 6px #00000016;
width: 80vw;
max-width: 1000px;
height: 200px;
display: flex;
flex-wrap: wrap;
/*flex-direction: row;*/
}
.result-img {
margin: 0 10px 0 0;
/*height: 100px;
width: 100px;*/
height: 100%;
width: 200px;
}
.result-img img {
margin: 0;
width: 100%;
height: 100%;
vertical-align: middle;
border-style: none;
border-radius: 22px;
}
.result-text {
margin: 10px 10px;
align-self:center;
}
.result-match {
font-weight: 500;
}
.result-text p {
font-weight: 500;
font-size: 1em;
line-height: 1em;
}
.result-text p strong {
color: #4B8A44;
}
/* Media Query stuff */
@media only screen and (max-width: 1100px) {
.container {
flex-direction: column;
align-items: center;
text-align: center;
}
.Login {
text-align: center;
}
.welcome {
padding-right: 0;
}
}
@media only screen and (max-width: 700px) {
.Login {
padding: 50px 12px;
}
.welcome {
text-shadow: 2px 2px 16px #00000099;
}
h2 {
font-size: 2.4em;
line-height: 1em;
}
h3 {
font-size: 1.5em;
}
}
@media only screen and (max-width: 800px) {
.Product {
text-align: center;
}
.result {
display: flex;
flex-wrap: nowrap;
flex-direction: column;
align-items: center;
}
.result-block {
text-align: left;
margin: 0;
display: flex;
flex-wrap: nowrap;
flex-direction: column;
/* align-self: center; */
height: 412px;
width: 320px;
}
.result-img {
margin: 0;
width: 100%;
height: 200px;
}
.result-img img {
width: 100%;
height: 100%;
}
.result-text {
text-align: left;
padding: 12px;
}
.orderNum {
text-align: left;
position: relative;
float: none;
margin: 0;
}
.prod h2 {
font-size: 2em;
line-height: 1.1em;
/* padding-left: 20px;
padding-right: 60px; */
}
.prod {
margin: 50px auto;
transform: none;
}
} | client/src/App.css | .App {
/*text-align: center;*/
background: no-repeat center center fixed;
background-image: url(https://images.unsplash.com/photo-1587351156331-f833af4a3350?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=1400&q=80);
background-size: cover;
min-height: 100vh;
color: #ffffff;
font-family: 'Quicksand', 'sans-serif';
font-weight: 300;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
.Login {
padding: 50px 100px;
color: #ffffff;
max-width: 1600px;
margin: 0 auto;
}
h2 {
font-size: 4em;
line-height: 1.1em;
}
.prod h2 {
font-size: 3em;
line-height: 1.2em;
margin-bottom: 1.2em;
margin-top: 1.2em;
}
h3 {
font-size: 2em;
font-weight: 400;
}
h4 {
font-weight: bold;
font-size: 1.2em;
line-height: 1.2em;
}
.prod h4 {
font-size: 1.7em;
line-height: 1.2em;
margin: 0;
}
#logo-full {
max-width: 180px;
height: auto;
}
#logo-2-3 {
max-width: 120px;
height: auto;
}
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
padding-bottom: 10%;
}
.welcome {
text-shadow: 2px 2px 12px #00000060;
padding-right: 3em;
}
.welcome h2 {
margin-bottom: 0;
}
.welcome h3 {
margin-top: 20px;
}
form {
color: #000000;
background: rgba(255,255,255,85%);
padding: 30px;
border-radius: 4px;
max-width: 300px;
margin-right: 0px;
}
form label {
font-weight: 600;
}
form h5 {
margin: 32px 0px 16px 0px;
}
form input {
width: 100%;
}
button {
background-color: #4B8A44;
color: #fff;
font-size: 22px;
font-family: 'Quicksand';
font-weight: 600;
width: 100%;
padding: 8px;
box-shadow: 0px 3px 6px #00000029;
border: none;
border-radius: 12px;
}
form button {
margin-top: 16px;
}
.textfield {
width: 100%;
}
.first {
margin-top: 0 !important;
}
/* Product Page */
.Product {
margin: 0;
width: 100vw;
height: 100%;
/* height: 110%; */
background: #eeeeee;
color: #000000;
/*padding: 20px;
border-radius: 39px;
border-collapse: separate;
border-spacing: 15px;
list-style-type: none;
max-width: 600px;
min-height: 500px;
margin-right: 0px;
align-items: center;
display: flex;
flex-direction: row;*/
display: flex;
}
.prod {
margin: 50px auto;
transform: translateX(-1em);
}
.result {
margin: 20px 0px;
/*display: flex;
flex-direction: row;*/
font-weight: 300;
/*align-items: flex-start;*/
}
.orderNum {
font-weight: 700;
color: #AAAAAA;
font-size: 42px;
margin: 0 1em 0 0;
position: absolute;
float: left;
}
.result-block {
margin-left: 100px;
background-color: #fff;
border-radius: 22px;
box-shadow: 0px 3px 6px #00000016;
width: 80vw;
max-width: 1000px;
height: 200px;
display: flex;
flex-wrap: wrap;
/*flex-direction: row;*/
}
.result-img {
margin: 0 10px 0 0;
/*height: 100px;
width: 100px;*/
height: 100%;
width: 200px;
}
.result-img img {
margin: 0;
width: 100%;
height: 100%;
vertical-align: middle;
border-style: none;
border-radius: 22px;
}
.result-text {
margin: 10px 10px;
align-self:center;
}
.result-match {
font-weight: 500;
}
.result-text p {
font-weight: 500;
font-size: 1em;
line-height: 1em;
}
.result-text p strong {
color: #4B8A44;
}
/* Media Query stuff */
@media only screen and (max-width: 1100px) {
.container {
flex-direction: column;
align-items: center;
text-align: center;
}
.Login {
text-align: center;
}
.welcome {
padding-right: 0;
}
}
@media only screen and (max-width: 700px) {
.Login {
padding: 50px 12px;
}
.welcome {
text-shadow: 2px 2px 16px #00000099;
}
h2 {
font-size: 2.4em;
line-height: 1em;
}
h3 {
font-size: 1.5em;
}
}
@media only screen and (max-width: 800px) {
.Product {
text-align: center;
}
.result {
display: flex;
flex-wrap: nowrap;
flex-direction: column;
align-items: center;
}
.result-block {
text-align: left;
margin: 0;
display: flex;
flex-wrap: nowrap;
flex-direction: column;
/* align-self: center; */
height: 412px;
width: 320px;
}
.result-img {
margin: 0;
width: 100%;
height: 200px;
}
.result-img img {
width: 100%;
height: 100%;
}
.result-text {
text-align: left;
padding: 12px;
}
.orderNum {
text-align: left;
position: relative;
float: none;
margin: 0;
}
.prod h2 {
font-size: 2em;
line-height: 1.1em;
/* padding-left: 20px;
padding-right: 60px; */
}
.prod {
margin: 50px auto;
transform: none;
}
} | 0.388154 | 0.127952 |
* Only applies to the title of the MainWindow
*/
#MainWindowTitlePane {
-fx-background-color: #009933,
linear-gradient(from 0% 0% to 100% 100%, #ccff99, #009933);
}
.title_label {
-fx-font-size: 2em;
}
/*
* Theme for the label that displays the navigation bar
*/
.navigation-list-name {
-fx-font-size: 1.2em;
-fx-font-weight: bold;
}
/*
* Theme for title (Home, Agents, Modelings)
*/
.title_label_nav {
-fx-font-size: 3em;
}
.separator_nav {
-fx-background-color: seagreen;
}
/*
* Theme for the elements displayed on the home page
*/
.gridPane_title_resume {
-fx-font-size: 1.5em;
-fx-background-color: #337ab7;
-fx-background-radius: 1em;
}
.label_title_resume {
-fx-text-fill: white;
-fx-alignment: center;
}
.label_title_resume_ok {
-fx-font-size: 1.5em;
-fx-background-radius: 1em;
-fx-background-color: #5cb85c !important;
}
/*
* Theme for the agent page
*/
.label_agents_info {
-fx-font-size: 1.5em;
}
.label_battery_good {
-fx-font-size: 1.5em;
-fx-text-fill: darkgreen;
}
.label_battery_ok {
-fx-font-size: 1.5em;
-fx-text-fill: #5cb85c;
}
.label_battery_bad {
-fx-font-size: 1.5em;
-fx-text-fill: orange;
}
.label_battery_warning {
-fx-font-size: 1.5em;
-fx-text-fill: red;
}
.label_state_ok {
-fx-text-fill: darkgreen;
-fx-font-size: 1.5em;
}
.label_state_bad
{
-fx-font-size: 1.5em;
-fx-text-fill: red;
}
.title_label_settings
{
-fx-font-size: 1.5em;
-fx-font-weight: Bold;
}
.deleteButton
{
-fx-background-color: darkred;
-fx-text-fill: white;
}
.modeling_state_loaded_label
{
-fx-font-size: 1.2em;
-fx-alignment: center;
-fx-background-color: #d9edf7;
}
.modeling_state_unloaded_label
{
-fx-font-size: 1.2em;
-fx-alignment: center;
-fx-background-color: #f5f5f5;
}
.modeling_state_running_label
{
-fx-font-size: 1.2em;
-fx-alignment: center;
-fx-background-color: #dff0d8;
}
Button
{
-fx-background-radius: 2em;
-fx-border-radius: 1em;
-fx-font-size: 1.1em;
} | src/eip/smart/client/css/MainWindowTheme.css | * Only applies to the title of the MainWindow
*/
#MainWindowTitlePane {
-fx-background-color: #009933,
linear-gradient(from 0% 0% to 100% 100%, #ccff99, #009933);
}
.title_label {
-fx-font-size: 2em;
}
/*
* Theme for the label that displays the navigation bar
*/
.navigation-list-name {
-fx-font-size: 1.2em;
-fx-font-weight: bold;
}
/*
* Theme for title (Home, Agents, Modelings)
*/
.title_label_nav {
-fx-font-size: 3em;
}
.separator_nav {
-fx-background-color: seagreen;
}
/*
* Theme for the elements displayed on the home page
*/
.gridPane_title_resume {
-fx-font-size: 1.5em;
-fx-background-color: #337ab7;
-fx-background-radius: 1em;
}
.label_title_resume {
-fx-text-fill: white;
-fx-alignment: center;
}
.label_title_resume_ok {
-fx-font-size: 1.5em;
-fx-background-radius: 1em;
-fx-background-color: #5cb85c !important;
}
/*
* Theme for the agent page
*/
.label_agents_info {
-fx-font-size: 1.5em;
}
.label_battery_good {
-fx-font-size: 1.5em;
-fx-text-fill: darkgreen;
}
.label_battery_ok {
-fx-font-size: 1.5em;
-fx-text-fill: #5cb85c;
}
.label_battery_bad {
-fx-font-size: 1.5em;
-fx-text-fill: orange;
}
.label_battery_warning {
-fx-font-size: 1.5em;
-fx-text-fill: red;
}
.label_state_ok {
-fx-text-fill: darkgreen;
-fx-font-size: 1.5em;
}
.label_state_bad
{
-fx-font-size: 1.5em;
-fx-text-fill: red;
}
.title_label_settings
{
-fx-font-size: 1.5em;
-fx-font-weight: Bold;
}
.deleteButton
{
-fx-background-color: darkred;
-fx-text-fill: white;
}
.modeling_state_loaded_label
{
-fx-font-size: 1.2em;
-fx-alignment: center;
-fx-background-color: #d9edf7;
}
.modeling_state_unloaded_label
{
-fx-font-size: 1.2em;
-fx-alignment: center;
-fx-background-color: #f5f5f5;
}
.modeling_state_running_label
{
-fx-font-size: 1.2em;
-fx-alignment: center;
-fx-background-color: #dff0d8;
}
Button
{
-fx-background-radius: 2em;
-fx-border-radius: 1em;
-fx-font-size: 1.1em;
} | 0.544317 | 0.137012 |
:root{
--red:#ff2e63;
--black:#252a34;
--blue:#08d9d6;
--white:#eaeaea;
--title:35px;
--text:19px;
}
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
background: #ffff;
overflow-x: hidden;
font-family: 'Red Hat Text', sans-serif;
}
.go-top{
position: fixed;
bottom: 100px;
right: -100%;
width: 50px;
height: 50px;
background: #fff;
border:2px solid var(--red);
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 1000;
transition: 0.5s;
}
.go-top:hover{
background: var(--red);
color:#fff;
border: 2px solid var(--white);
}
.go-top:hover span{color:var(--white);}
.go-top > span{
font-size: 30px;
color: var(--black);
}
/** Skew **/
.skew-abajo{
position: absolute;
bottom: 0;
left: 0;
border-width: 0 0 10vh 100vw;
border-style: solid;
border-color: transparent transparent #fff transparent;
}
.skew-arriba{
position: absolute;
top: 0;
left: 0;
border-width: 10vh 100vw 0 0;
border-style: solid;
border-color: #fff transparent transparent transparent;
z-index: 10;
}
/** Navegation Menu **/
#header{
position: relative;
width: 100%;
}
.menu{
position: fixed;
top:0;
left: 0;
width: 100%;
height: 60px;
background: #fff;;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 9999;
}
.menu .logo-box{margin-left: 20px;}
.menu .logo-box h1 a{
text-decoration: none;
font-size: var(--title);
font-weight: 400;
color:var(--black);
}
.menu .list-container{margin-right: 20px;}
.menu .list-container ul{display: flex;}
.menu .list-container ul li{list-style: none;}
.menu .list-container ul li a{
text-decoration: none;
margin: 0px 10px;
padding:8px;
color: var(--black);
border-radius: 24px;
transition: 0.3s;
font-size: 16px;
}
.menu .list-container ul li a.active{
background: var(--red);
color:#fff;
}
.menu .list-container ul li a:hover{
background: var(--red);
color:#fff;
}
.btn-menu > .fa-bars{
display: none;
}
@media only screen and (max-width:900px){
.btn-menu > .fa-bars{
display: block;
position:absolute;
right: 30px;
top: 20px;
font-size: 28px;
color: var(--black);
transition: 0.5s;
cursor: pointer;
}
.btn-menu > .fa-times{color: var(--red);}
.btn-menu > .fa-bars:hover{color:var(--red);}
.menu .logo-box{margin-left: 30px;}
.menu .list-container{
position: fixed;
top:60px;
left:-100%;
background:#fff;
width: 100%;
height: calc(100vh - 60px);
}
.menu .list-container .lists{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border-top:4px solid var(--red);
}
.menu .list-container ul li{
width: 90%;
border-bottom: 2px solid var(--black);
display: flex;
justify-content: center;
}
.menu .list-container ul li a{
font-size: 20px;
text-align: center;
padding:12px 0px;
}
.menu .list-container ul li a.active{
background: none;
color:var(--red);
}
.menu .list-container ul li a:hover{
background: none;
color:var(--red);
}
}
/** Navegation Menu **/
/** IMG Header **/
.img-header{
position: relative;
width: 100%;
height: 100vh;
background:url(../img/header.jpg);
background-attachment: fixed;
background-position: center;
background-size: cover;
}
.img-header .welcome{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.img-header .welcome h1{
font-size: 50px;
color:#fff;
font-weight: 200;
}
.img-header .welcome hr{
width: 400px;
height: 2px;
background: #fff;
border: none;
margin-top: 5px;
}
.img-header .welcome p{
font-size: 20px;
color: #fff;
margin-top: 20px;
}
.img-header .welcome > button{
width: 170px;
height: 40px;
background: var(--red);
border-radius: 24px;
border:none;
outline: none;
font-size: 22px;
color: #fff;
text-align: center;
margin-top: 20px;
cursor: pointer;
transition: 0.5s;
}
.img-header .welcome > button:hover{
background:var(--blue);
}
@media only screen and (max-width:773px ){
.img-header .welcome h1{font-size: 40px;}
.img-header .welcome > button{width: 130px; font-size: 20px;}
}
@media only screen and (max-width:590px){
.img-header .welcome h1{font-size: 30px;}
.img-header .welcome hr{width: 100px;}
.img-header .welcome p{font-size: 17px;}
.img-header .welcome > button{width: 100px; font-size: 17px;}
}
/** Acerca de Nosotros **/
.acerca-de{
width: 100%;
margin-top: 120px;
}
.acerca-de .info-container{
width: 80%;
margin:auto;
display: flex;
justify-content: center;
flex-direction: column;
}
.acerca-de .info-container h1{
font-size: 50px;
font-weight: 400;
color: var(--black);
text-align: center;
margin-bottom: 20px;
}
.acerca-de .info-container p{
text-align: center;
font-size: 17px;
color: var(--black);
line-height: 35px;
margin:10px 0px;
}
.acerca-de .info-container .about-gallery{
width: 100%;
display: flex;
justify-content: center;
margin: 50px 0px;
}
.acerca-de .info-container .about-gallery img{
width: calc(33.333% - 10px);
height: 300px;
margin: 10px 10px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
}
.acerca-de .info-container .about-more{
width: 100%;
display: flex;
justify-content: center;
}
.acerca-de .info-container .about-more button{
width: 120px;
height: 40px;
text-align: center;
line-height: 40px;
font-size: 20px;
background: var(--red);
border: none;
outline: none;
border-radius: 20px;
color: #fff;
cursor: pointer;
transition: 0.5s;
}
.acerca-de .info-container .about-more button:hover{background: var(--blue);}
@media only screen and (max-width:773px){
.acerca-de .info-container .about-gallery{flex-direction: column;}
.acerca-de .info-container .about-gallery img{width: 100%;}
}
@media only screen and (max-width:590px){
.acerca-de .info-container h1{font-size: 30px;}
.acerca-de .info-container p{font-size: 15px;}
}
/** Nuestros proyectos **/
.our-projects{
position: relative;
width: 100%;
height: 100%;
background: url(../img/img-2.jpg);
background-attachment:fixed;
background-position: center;
background-size: cover;
margin-top: 100px;
}
.our-projects .deg-background{
position:absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:rgba(0,0,0,0.8);
}
.our-projects .ejeZproject{
position: relative;
width: 100%;
height: 100%;
}
.our-projects .container-project{
width: 90%;
margin:auto;
padding-top: 100px;
}
.our-projects .container-project .project-title{
border:2px solid #fff;
padding:10px;
text-align: center;
width: 50%;
margin: auto;
}
.our-projects .container-project .project-title h2{
font-size: 40px;
color: #fff;
font-weight: normal;
}
.our-projects .container-project .project-title hr{
background:#fff;
width: 50%;
height: 3px;
margin: 10px auto;
}
.our-projects .container-project .project-img{
width: 100%;
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 80px;
padding-bottom: 100px;
}
.our-projects .container-project .project-img img{
width: calc(30% - 10px);
margin:10px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
}
@media only screen and (max-width:773px){
.our-projects .container-project .project-img img{width: 80%; margin-bottom: 30px;}
}
@media only screen and (max-width:446px){
.our-projects .container-project .project-title h2{font-size: 30px;}
}
/** Testimonios **/
.testimonios{
width: 100%;
margin-top: 120px;
}
.testimonios .testimonios-title{
width: 50%;
margin:auto;
text-align: center;
}
.testimonios .testimonios-title h2{
font-size: 50px;
font-weight: normal;
color: var(--black);
margin-bottom: 10px;
}
.testimonios .testimonios-title hr{
width: 60%;
height: 2px;
margin:auto;
background: var(--black);
}
.testimonios .box-testimonio{
width: 90%;
margin: 80px auto;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.testimonios .box-testimonio .card-testimonio{
width: 45%;
margin: 20px;
}
.testimonios .box-testimonio .card-testimonio .card-img{
display: flex;
justify-content: center;
margin-bottom: 30px;
}
.testimonios .box-testimonio .card-testimonio .card-img img{
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
cursor: pointer;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text{
border: 2px solid var(--red);
padding:20px;
border-radius: 20px;
transition: 0.1s;
cursor: pointer;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text h4{
font-size: 30px;
font-weight: 400;
color: var(--red);
text-align: center;
margin-bottom: 10px;
transition: 0.1s;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text p{
font-size: 20px;
text-align: center;
line-height: 40px;
color: var(--black);
}
.testimonios .box-testimonio .card-testimonio .testimonio-text:hover{
border: 2px solid var(--blue);
}
.testimonios .box-testimonio .card-testimonio .testimonio-text:hover h4{
color: var(--blue);
}
@media only screen and (max-width:890px){
.testimonios .box-testimonio .card-testimonio .card-img img{width: 200px; height: 200px;}
.testimonios .box-testimonio .card-testimonio{width: 100%;}
.testimonios .box-testimonio .card-testimonio .testimonio-text h4{font-size: 25px;}
.testimonios .box-testimonio .card-testimonio .testimonio-text p{font-size: 17px; line-height: 35px;}
}
/** Footer **/
.footer{
position: relative;
width: 100%;
height: 100%;
background: url(../img/footer.jpg);
background-attachment: fixed;
background-position: center;
background-size: cover;
}
.footer .deg-footer{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
}
.footer .ejeZfooter{
position: relative;
width: 100%;
height: 100%;
}
.footer .footer-content{
padding-top: 100px;
width: 90%;
margin: auto;
padding-bottom: 100px;
}
.footer .footer-content .footer-title{
width: 50%;
margin: auto;
border:2px solid #fff;
padding:15px;
}
.footer .footer-content .footer-title h2{
font-size: 35px;
font-weight: 400;
color: #fff;
text-align: center;
margin-bottom: 5px;
}
.footer .footer-content .footer-title hr{
background: #fff;
height: 2px;
width: 80%;
margin:auto;
}
.footer .formulario-content{
width: 60%;
margin: 50px auto;
background: #fff;
padding:30px;
border-radius: 50px;
border: 1.5px solid var(--red);
}
.footer .formulario-content #formulario{
display: flex;
justify-content: center;
flex-direction: column;
}
.footer .formulario-content #formulario label{
font-size: 20px;
text-align: center;
color: var(--black);
margin: 30px 0px 10px 0px;
}
.footer .formulario-content #formulario input{
width: 90%;
height: 40px;
margin:auto;
border-radius: 24px;
outline: none;
border:1.5px solid var(--red);
text-align: center;
font-size: 18px;
color: var(--black);
}
.footer .formulario-content #formulario textarea{
width: 90%;
height: 200px;
margin:auto;
padding: 20px;
border-radius: 24px;
outline: none;
border:1.5px solid var(--red);
font-size: 15px;
color: var(--black);
}
.footer .formulario-content #formulario .send{
margin: 30px;
display: flex;
justify-content: center;
}
.footer .formulario-content #formulario button{
width: 120px;
height: 40px;
text-align: center;
line-height: 40px;
font-size: 20px;
background: var(--red);
border: none;
outline: none;
border-radius: 20px;
color: #fff;
cursor: pointer;
transition: 0.5s;
}
.footer .formulario-content #formulario button:hover{
background: var(--blue);
}
.footer .formulario-content #formulario .mensaje-form{
width: 100%;
margin:auto;
padding:20px;
}
.footer .formulario-content #formulario .mensaje-form p{
font-size:19px;
color: var(--black);
line-height: 35px;
}
.footer .footer-text{
position:absolute;
bottom: 0;
left: 0;
width: 100%;
height: 70px;
background:rgba(0,0,0,0.8);
display: flex;
justify-content: center;
align-items: center;
border-top: 2px solid #fff;
}
.footer .footer-text p{
font-size: 20px;
text-align: center;
color: #fff;
}
@media only screen and (max-width:900px){
.footer .formulario-content{width: 85%; padding:20px;}
.footer .formulario-content #formulario input{width: 100%;}
.footer .formulario-content #formulario textarea{width: 100%;}
}
@media only screen and (max-width:590px){
.footer .formulario-content{width: 95%; padding:20px;}
.footer .formulario-content #formulario label{font-size: 17px;}
.footer .formulario-content #formulario input{width: 100%; font-size: 17px;}
.footer .formulario-content #formulario textarea{width: 100%;}
.footer .formulario-content #formulario .mensaje-form p{font-size: 17px;}
.footer .footer-text{width: 100%; padding: 0px 30px;}
.footer .footer-text p{font-size: 17px;}
} | css1/styles.css | :root{
--red:#ff2e63;
--black:#252a34;
--blue:#08d9d6;
--white:#eaeaea;
--title:35px;
--text:19px;
}
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
background: #ffff;
overflow-x: hidden;
font-family: 'Red Hat Text', sans-serif;
}
.go-top{
position: fixed;
bottom: 100px;
right: -100%;
width: 50px;
height: 50px;
background: #fff;
border:2px solid var(--red);
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 1000;
transition: 0.5s;
}
.go-top:hover{
background: var(--red);
color:#fff;
border: 2px solid var(--white);
}
.go-top:hover span{color:var(--white);}
.go-top > span{
font-size: 30px;
color: var(--black);
}
/** Skew **/
.skew-abajo{
position: absolute;
bottom: 0;
left: 0;
border-width: 0 0 10vh 100vw;
border-style: solid;
border-color: transparent transparent #fff transparent;
}
.skew-arriba{
position: absolute;
top: 0;
left: 0;
border-width: 10vh 100vw 0 0;
border-style: solid;
border-color: #fff transparent transparent transparent;
z-index: 10;
}
/** Navegation Menu **/
#header{
position: relative;
width: 100%;
}
.menu{
position: fixed;
top:0;
left: 0;
width: 100%;
height: 60px;
background: #fff;;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 9999;
}
.menu .logo-box{margin-left: 20px;}
.menu .logo-box h1 a{
text-decoration: none;
font-size: var(--title);
font-weight: 400;
color:var(--black);
}
.menu .list-container{margin-right: 20px;}
.menu .list-container ul{display: flex;}
.menu .list-container ul li{list-style: none;}
.menu .list-container ul li a{
text-decoration: none;
margin: 0px 10px;
padding:8px;
color: var(--black);
border-radius: 24px;
transition: 0.3s;
font-size: 16px;
}
.menu .list-container ul li a.active{
background: var(--red);
color:#fff;
}
.menu .list-container ul li a:hover{
background: var(--red);
color:#fff;
}
.btn-menu > .fa-bars{
display: none;
}
@media only screen and (max-width:900px){
.btn-menu > .fa-bars{
display: block;
position:absolute;
right: 30px;
top: 20px;
font-size: 28px;
color: var(--black);
transition: 0.5s;
cursor: pointer;
}
.btn-menu > .fa-times{color: var(--red);}
.btn-menu > .fa-bars:hover{color:var(--red);}
.menu .logo-box{margin-left: 30px;}
.menu .list-container{
position: fixed;
top:60px;
left:-100%;
background:#fff;
width: 100%;
height: calc(100vh - 60px);
}
.menu .list-container .lists{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border-top:4px solid var(--red);
}
.menu .list-container ul li{
width: 90%;
border-bottom: 2px solid var(--black);
display: flex;
justify-content: center;
}
.menu .list-container ul li a{
font-size: 20px;
text-align: center;
padding:12px 0px;
}
.menu .list-container ul li a.active{
background: none;
color:var(--red);
}
.menu .list-container ul li a:hover{
background: none;
color:var(--red);
}
}
/** Navegation Menu **/
/** IMG Header **/
.img-header{
position: relative;
width: 100%;
height: 100vh;
background:url(../img/header.jpg);
background-attachment: fixed;
background-position: center;
background-size: cover;
}
.img-header .welcome{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.img-header .welcome h1{
font-size: 50px;
color:#fff;
font-weight: 200;
}
.img-header .welcome hr{
width: 400px;
height: 2px;
background: #fff;
border: none;
margin-top: 5px;
}
.img-header .welcome p{
font-size: 20px;
color: #fff;
margin-top: 20px;
}
.img-header .welcome > button{
width: 170px;
height: 40px;
background: var(--red);
border-radius: 24px;
border:none;
outline: none;
font-size: 22px;
color: #fff;
text-align: center;
margin-top: 20px;
cursor: pointer;
transition: 0.5s;
}
.img-header .welcome > button:hover{
background:var(--blue);
}
@media only screen and (max-width:773px ){
.img-header .welcome h1{font-size: 40px;}
.img-header .welcome > button{width: 130px; font-size: 20px;}
}
@media only screen and (max-width:590px){
.img-header .welcome h1{font-size: 30px;}
.img-header .welcome hr{width: 100px;}
.img-header .welcome p{font-size: 17px;}
.img-header .welcome > button{width: 100px; font-size: 17px;}
}
/** Acerca de Nosotros **/
.acerca-de{
width: 100%;
margin-top: 120px;
}
.acerca-de .info-container{
width: 80%;
margin:auto;
display: flex;
justify-content: center;
flex-direction: column;
}
.acerca-de .info-container h1{
font-size: 50px;
font-weight: 400;
color: var(--black);
text-align: center;
margin-bottom: 20px;
}
.acerca-de .info-container p{
text-align: center;
font-size: 17px;
color: var(--black);
line-height: 35px;
margin:10px 0px;
}
.acerca-de .info-container .about-gallery{
width: 100%;
display: flex;
justify-content: center;
margin: 50px 0px;
}
.acerca-de .info-container .about-gallery img{
width: calc(33.333% - 10px);
height: 300px;
margin: 10px 10px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
}
.acerca-de .info-container .about-more{
width: 100%;
display: flex;
justify-content: center;
}
.acerca-de .info-container .about-more button{
width: 120px;
height: 40px;
text-align: center;
line-height: 40px;
font-size: 20px;
background: var(--red);
border: none;
outline: none;
border-radius: 20px;
color: #fff;
cursor: pointer;
transition: 0.5s;
}
.acerca-de .info-container .about-more button:hover{background: var(--blue);}
@media only screen and (max-width:773px){
.acerca-de .info-container .about-gallery{flex-direction: column;}
.acerca-de .info-container .about-gallery img{width: 100%;}
}
@media only screen and (max-width:590px){
.acerca-de .info-container h1{font-size: 30px;}
.acerca-de .info-container p{font-size: 15px;}
}
/** Nuestros proyectos **/
.our-projects{
position: relative;
width: 100%;
height: 100%;
background: url(../img/img-2.jpg);
background-attachment:fixed;
background-position: center;
background-size: cover;
margin-top: 100px;
}
.our-projects .deg-background{
position:absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:rgba(0,0,0,0.8);
}
.our-projects .ejeZproject{
position: relative;
width: 100%;
height: 100%;
}
.our-projects .container-project{
width: 90%;
margin:auto;
padding-top: 100px;
}
.our-projects .container-project .project-title{
border:2px solid #fff;
padding:10px;
text-align: center;
width: 50%;
margin: auto;
}
.our-projects .container-project .project-title h2{
font-size: 40px;
color: #fff;
font-weight: normal;
}
.our-projects .container-project .project-title hr{
background:#fff;
width: 50%;
height: 3px;
margin: 10px auto;
}
.our-projects .container-project .project-img{
width: 100%;
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 80px;
padding-bottom: 100px;
}
.our-projects .container-project .project-img img{
width: calc(30% - 10px);
margin:10px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
}
@media only screen and (max-width:773px){
.our-projects .container-project .project-img img{width: 80%; margin-bottom: 30px;}
}
@media only screen and (max-width:446px){
.our-projects .container-project .project-title h2{font-size: 30px;}
}
/** Testimonios **/
.testimonios{
width: 100%;
margin-top: 120px;
}
.testimonios .testimonios-title{
width: 50%;
margin:auto;
text-align: center;
}
.testimonios .testimonios-title h2{
font-size: 50px;
font-weight: normal;
color: var(--black);
margin-bottom: 10px;
}
.testimonios .testimonios-title hr{
width: 60%;
height: 2px;
margin:auto;
background: var(--black);
}
.testimonios .box-testimonio{
width: 90%;
margin: 80px auto;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.testimonios .box-testimonio .card-testimonio{
width: 45%;
margin: 20px;
}
.testimonios .box-testimonio .card-testimonio .card-img{
display: flex;
justify-content: center;
margin-bottom: 30px;
}
.testimonios .box-testimonio .card-testimonio .card-img img{
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
cursor: pointer;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text{
border: 2px solid var(--red);
padding:20px;
border-radius: 20px;
transition: 0.1s;
cursor: pointer;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text h4{
font-size: 30px;
font-weight: 400;
color: var(--red);
text-align: center;
margin-bottom: 10px;
transition: 0.1s;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text p{
font-size: 20px;
text-align: center;
line-height: 40px;
color: var(--black);
}
.testimonios .box-testimonio .card-testimonio .testimonio-text:hover{
border: 2px solid var(--blue);
}
.testimonios .box-testimonio .card-testimonio .testimonio-text:hover h4{
color: var(--blue);
}
@media only screen and (max-width:890px){
.testimonios .box-testimonio .card-testimonio .card-img img{width: 200px; height: 200px;}
.testimonios .box-testimonio .card-testimonio{width: 100%;}
.testimonios .box-testimonio .card-testimonio .testimonio-text h4{font-size: 25px;}
.testimonios .box-testimonio .card-testimonio .testimonio-text p{font-size: 17px; line-height: 35px;}
}
/** Footer **/
.footer{
position: relative;
width: 100%;
height: 100%;
background: url(../img/footer.jpg);
background-attachment: fixed;
background-position: center;
background-size: cover;
}
.footer .deg-footer{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
}
.footer .ejeZfooter{
position: relative;
width: 100%;
height: 100%;
}
.footer .footer-content{
padding-top: 100px;
width: 90%;
margin: auto;
padding-bottom: 100px;
}
.footer .footer-content .footer-title{
width: 50%;
margin: auto;
border:2px solid #fff;
padding:15px;
}
.footer .footer-content .footer-title h2{
font-size: 35px;
font-weight: 400;
color: #fff;
text-align: center;
margin-bottom: 5px;
}
.footer .footer-content .footer-title hr{
background: #fff;
height: 2px;
width: 80%;
margin:auto;
}
.footer .formulario-content{
width: 60%;
margin: 50px auto;
background: #fff;
padding:30px;
border-radius: 50px;
border: 1.5px solid var(--red);
}
.footer .formulario-content #formulario{
display: flex;
justify-content: center;
flex-direction: column;
}
.footer .formulario-content #formulario label{
font-size: 20px;
text-align: center;
color: var(--black);
margin: 30px 0px 10px 0px;
}
.footer .formulario-content #formulario input{
width: 90%;
height: 40px;
margin:auto;
border-radius: 24px;
outline: none;
border:1.5px solid var(--red);
text-align: center;
font-size: 18px;
color: var(--black);
}
.footer .formulario-content #formulario textarea{
width: 90%;
height: 200px;
margin:auto;
padding: 20px;
border-radius: 24px;
outline: none;
border:1.5px solid var(--red);
font-size: 15px;
color: var(--black);
}
.footer .formulario-content #formulario .send{
margin: 30px;
display: flex;
justify-content: center;
}
.footer .formulario-content #formulario button{
width: 120px;
height: 40px;
text-align: center;
line-height: 40px;
font-size: 20px;
background: var(--red);
border: none;
outline: none;
border-radius: 20px;
color: #fff;
cursor: pointer;
transition: 0.5s;
}
.footer .formulario-content #formulario button:hover{
background: var(--blue);
}
.footer .formulario-content #formulario .mensaje-form{
width: 100%;
margin:auto;
padding:20px;
}
.footer .formulario-content #formulario .mensaje-form p{
font-size:19px;
color: var(--black);
line-height: 35px;
}
.footer .footer-text{
position:absolute;
bottom: 0;
left: 0;
width: 100%;
height: 70px;
background:rgba(0,0,0,0.8);
display: flex;
justify-content: center;
align-items: center;
border-top: 2px solid #fff;
}
.footer .footer-text p{
font-size: 20px;
text-align: center;
color: #fff;
}
@media only screen and (max-width:900px){
.footer .formulario-content{width: 85%; padding:20px;}
.footer .formulario-content #formulario input{width: 100%;}
.footer .formulario-content #formulario textarea{width: 100%;}
}
@media only screen and (max-width:590px){
.footer .formulario-content{width: 95%; padding:20px;}
.footer .formulario-content #formulario label{font-size: 17px;}
.footer .formulario-content #formulario input{width: 100%; font-size: 17px;}
.footer .formulario-content #formulario textarea{width: 100%;}
.footer .formulario-content #formulario .mensaje-form p{font-size: 17px;}
.footer .footer-text{width: 100%; padding: 0px 30px;}
.footer .footer-text p{font-size: 17px;}
} | 0.401688 | 0.122944 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
}
body {
overflow-y: hidden;
/*Bloqueia o scroll*/
}
.main {
width: 100%;
height: 110vh;
background: #fafafa url(../img/svg-gradient.svg) bottom right/contain
no-repeat;
/* overflow: hidden; */
/* /img/svg-gradient.svg */
}
nav {
width: 80%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
margin: 0 auto;
}
.map {
width: 100vw;
height: 100vh;
}
.logo {
font-size: 2rem;
font-weight: bold;
text-decoration: none;
color: #2c2c2c;
}
ul {
display: flex;
}
li {
list-style: none;
margin-right: 2rem;
}
a {
text-decoration: none;
color: #fff;
}
.nav-btn {
padding: 15px 30px;
border-radius: 4px;
color: #fff;
transition: background-color 400ms;
}
.nav-btn:hover {
background: #26248f;
transition: background-color 400ms;
}
.main-content {
padding-top: 5rem;
max-width: 80%;
height: 70vh;
display: flex;
align-items: center;
margin: 0 auto;
position: relative;
justify-content: space-between;
}
.main-col-right {
width: 52%;
}
.main-col-left {
width: 40%;
display: flex;
flex-direction: column;
}
.main-img {
position: absolute;
top: 10%;
}
.main-content h1,
main-content p {
margin-bottom: 1.5rem;
}
.main-content p {
font-size: 1.5rem;
}
.email {
width: 300px;
height: 50px;
border: none;
border-left: 6px solid #5250fb;
border-radius: 4px;
box-shadow: 1px 1px 6px -1px rgba(0, 0, 0, 0.25);
outline: none;
margin-bottom: 1.2rem;
margin-top: 1.2rem;
padding-left: 3rem;
transition: background-color 400ms;
}
.icon {
padding-left: 25px;
margin-top: 1.2rem;
transform: translate(0%, 100%);
color: #5250fb;
width: 70px;
text-align: left;
position: absolute;
}
.main-btn {
background: #5250fb;
padding: 14px 0;
border-radius: 4px;
font-size: 1rem;
border: none;
width: 200px;
text-align: center;
color: #fff;
transition: background-color 400ms;
}
.main-btn:hover {
background: #50cdfb;
transition: background-color 400ms;
}
.new-section {
height: 100vh;
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
} | src/styles/style.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
}
body {
overflow-y: hidden;
/*Bloqueia o scroll*/
}
.main {
width: 100%;
height: 110vh;
background: #fafafa url(../img/svg-gradient.svg) bottom right/contain
no-repeat;
/* overflow: hidden; */
/* /img/svg-gradient.svg */
}
nav {
width: 80%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
margin: 0 auto;
}
.map {
width: 100vw;
height: 100vh;
}
.logo {
font-size: 2rem;
font-weight: bold;
text-decoration: none;
color: #2c2c2c;
}
ul {
display: flex;
}
li {
list-style: none;
margin-right: 2rem;
}
a {
text-decoration: none;
color: #fff;
}
.nav-btn {
padding: 15px 30px;
border-radius: 4px;
color: #fff;
transition: background-color 400ms;
}
.nav-btn:hover {
background: #26248f;
transition: background-color 400ms;
}
.main-content {
padding-top: 5rem;
max-width: 80%;
height: 70vh;
display: flex;
align-items: center;
margin: 0 auto;
position: relative;
justify-content: space-between;
}
.main-col-right {
width: 52%;
}
.main-col-left {
width: 40%;
display: flex;
flex-direction: column;
}
.main-img {
position: absolute;
top: 10%;
}
.main-content h1,
main-content p {
margin-bottom: 1.5rem;
}
.main-content p {
font-size: 1.5rem;
}
.email {
width: 300px;
height: 50px;
border: none;
border-left: 6px solid #5250fb;
border-radius: 4px;
box-shadow: 1px 1px 6px -1px rgba(0, 0, 0, 0.25);
outline: none;
margin-bottom: 1.2rem;
margin-top: 1.2rem;
padding-left: 3rem;
transition: background-color 400ms;
}
.icon {
padding-left: 25px;
margin-top: 1.2rem;
transform: translate(0%, 100%);
color: #5250fb;
width: 70px;
text-align: left;
position: absolute;
}
.main-btn {
background: #5250fb;
padding: 14px 0;
border-radius: 4px;
font-size: 1rem;
border: none;
width: 200px;
text-align: center;
color: #fff;
transition: background-color 400ms;
}
.main-btn:hover {
background: #50cdfb;
transition: background-color 400ms;
}
.new-section {
height: 100vh;
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
} | 0.457621 | 0.083068 |
div.data-grid-view
{
position: relative;
width: 100%;
margin: 0;
padding: 0;
border: 1px outset #aaa;
border-bottom: 1px solid #eee;
}
div.data-grid-view table
{
padding: 0;
width: 100%;
background-color: #fefefe;
border-collapse: collapse;
}
div.data-grid-view table tr
{
border: 0px none transparent;
padding: 0;
background-color: inherit;
}
div.data-grid-view table tr.hilite
{
background-color: #fff4f4;
}
div.data-grid-view table th
{
background-color: #f5f5f5;
cursor: pointer;
}
div.data-grid-view table th.asc
{
background: #f5f5f5 url(/images/grid_widget/sort_asc.gif) right bottom no-repeat;
}
div.data-grid-view table th.desc
{
background: #f5f5f5 url(/images/grid_widget/sort_desc.gif) right bottom no-repeat;
}
div.data-grid-view table td, div.data-grid-view table th
{
border: 1px solid #eee;
padding: 1px;
}
div.data-grid-pager
{
position: relative;
vertical-align: middle;
white-space: nowrap;
background-color: #f5f5f5;
font-size: 9px;
width: 100%;
margin: 0;
padding: 0;
border: 1px outset #aaa;
border-top: 0 none transparent;
}
div.data-grid-pager span
{
height: 16px;
background-color: #f5f5f5;
padding: 0;
}
div.data-grid-pager input
{
vertical-align: middle;
height: 16px;
padding: 0;
margin: 1px;
}
div.data-grid-pager div.page-link
{
display: inline;
background-color: #f5f5f5;
margin: 2px;
border: 0px none transparent;
padding: 0;
width: 16px;
height: 16px;
}
div.data-grid-pager div.hot-page-link
{
margin: 1px;
border: 1px outset #eee;
width: 18px;
height: 18px;
}
div.data-grid-pager div.page-link button
{
margin: 0px;
border: 0px none transparent;
padding: 0;
width: 16px;
height: 16px;
cursor: pointer;
}
div.data-grid-pager div.page-link button.page-first
{
background: url(/images/grid_widget/page-first.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-first-disabled
{
background: url(/images/grid_widget/page-first-disabled.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-last
{
background: url(/images/grid_widget/page-last.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-last-disabled
{
background: url(/images/grid_widget/page-last-disabled.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-prev
{
background: url(/images/grid_widget/page-prev.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-prev-disabled
{
background: url(/images/grid_widget/page-prev-disabled.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-next
{
background: url(/images/grid_widget/page-next.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-next-disabled
{
background: url(/images/grid_widget/page-next-disabled.gif) no-repeat;
}
div.data-grid-pager div.page-link button.data-grid-refresh
{
background: url(/images/grid_widget/refresh.gif) no-repeat;
}
div.data-grid-pager div.page-link button.data-grid-refresh-disabled
{
background: url(/images/grid_widget/grid-loading.gif) no-repeat;
}
div.data-grid-pager div.page-text-link
{
display: inline;
background-color: #f5f5f5;
margin: 2px;
border: 0px none transparent;
padding: 0;
height: 16px;
}
div.data-grid-pager div.hot-page-text-link
{
margin: 1px;
border: 1px outset #eee;
height: 18px;
}
div.data-grid-pager div.page-text-link button
{
margin: 0px;
border: 0px none transparent;
padding: 0;
height: 16px;
cursor: pointer;
} | ferrox/public/stylesheets/grid_widget.css | div.data-grid-view
{
position: relative;
width: 100%;
margin: 0;
padding: 0;
border: 1px outset #aaa;
border-bottom: 1px solid #eee;
}
div.data-grid-view table
{
padding: 0;
width: 100%;
background-color: #fefefe;
border-collapse: collapse;
}
div.data-grid-view table tr
{
border: 0px none transparent;
padding: 0;
background-color: inherit;
}
div.data-grid-view table tr.hilite
{
background-color: #fff4f4;
}
div.data-grid-view table th
{
background-color: #f5f5f5;
cursor: pointer;
}
div.data-grid-view table th.asc
{
background: #f5f5f5 url(/images/grid_widget/sort_asc.gif) right bottom no-repeat;
}
div.data-grid-view table th.desc
{
background: #f5f5f5 url(/images/grid_widget/sort_desc.gif) right bottom no-repeat;
}
div.data-grid-view table td, div.data-grid-view table th
{
border: 1px solid #eee;
padding: 1px;
}
div.data-grid-pager
{
position: relative;
vertical-align: middle;
white-space: nowrap;
background-color: #f5f5f5;
font-size: 9px;
width: 100%;
margin: 0;
padding: 0;
border: 1px outset #aaa;
border-top: 0 none transparent;
}
div.data-grid-pager span
{
height: 16px;
background-color: #f5f5f5;
padding: 0;
}
div.data-grid-pager input
{
vertical-align: middle;
height: 16px;
padding: 0;
margin: 1px;
}
div.data-grid-pager div.page-link
{
display: inline;
background-color: #f5f5f5;
margin: 2px;
border: 0px none transparent;
padding: 0;
width: 16px;
height: 16px;
}
div.data-grid-pager div.hot-page-link
{
margin: 1px;
border: 1px outset #eee;
width: 18px;
height: 18px;
}
div.data-grid-pager div.page-link button
{
margin: 0px;
border: 0px none transparent;
padding: 0;
width: 16px;
height: 16px;
cursor: pointer;
}
div.data-grid-pager div.page-link button.page-first
{
background: url(/images/grid_widget/page-first.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-first-disabled
{
background: url(/images/grid_widget/page-first-disabled.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-last
{
background: url(/images/grid_widget/page-last.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-last-disabled
{
background: url(/images/grid_widget/page-last-disabled.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-prev
{
background: url(/images/grid_widget/page-prev.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-prev-disabled
{
background: url(/images/grid_widget/page-prev-disabled.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-next
{
background: url(/images/grid_widget/page-next.gif) no-repeat;
}
div.data-grid-pager div.page-link button.page-next-disabled
{
background: url(/images/grid_widget/page-next-disabled.gif) no-repeat;
}
div.data-grid-pager div.page-link button.data-grid-refresh
{
background: url(/images/grid_widget/refresh.gif) no-repeat;
}
div.data-grid-pager div.page-link button.data-grid-refresh-disabled
{
background: url(/images/grid_widget/grid-loading.gif) no-repeat;
}
div.data-grid-pager div.page-text-link
{
display: inline;
background-color: #f5f5f5;
margin: 2px;
border: 0px none transparent;
padding: 0;
height: 16px;
}
div.data-grid-pager div.hot-page-text-link
{
margin: 1px;
border: 1px outset #eee;
height: 18px;
}
div.data-grid-pager div.page-text-link button
{
margin: 0px;
border: 0px none transparent;
padding: 0;
height: 16px;
cursor: pointer;
} | 0.112808 | 0.06724 |
* {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
}
:root {
--main-color: #7B1FA2;
--main-color-light: #AB47BC;
}
body {
background: white;
overflow-x: hidden;
}
#title-container {
float: left;
background: linear-gradient(to bottom, var(--main-color), var(--main-color-light));
width: 40%;
height: 100vh;
color: white;
}
#title {
width: 300px;
font-size: 4em;
position: relative;
top: 150px;
line-height: 1.4em;
margin: auto;
font-family: 'Raleway', sans-serif;
}
#description {
position: relative;
top: 200px;
font-size: 1.3em;
width: 400px;
text-align: left;
margin: auto;
}
#title-icon-container {
width: 100px;
height: 100px;
position: absolute;
top: 200px;
left: 450px;
}
#title-icon-container img {
width: 100%;
height: 100%;
}
#form-container {
float: left;
width: 60%;
height: 100vh;
background: white;
}
.form {
position: relative;
top: 0px;
margin: auto;
width: 400px;
height: 500px;
background: #ffffff;
text-align: center;
float: left;
}
.input-field {
border: none;
height: 35px;
width: 200px;
background: #eee;
padding: 0 10px 0 10px;
border-left: 5px solid var(--main-color);
font-size: 1.05em;
}
select {
border: none;
background: #eee;
width: 100px;
height: 30px;
font-size: .9em;
padding-left: 5px;
}
#form-view {
margin: auto;
overflow: hidden;
width: 400px;
height: auto;
position: relative;
top: 50px;
}
#form-slider {
width: 210%;
height: auto;
position: relative;
left: 0px;
transition: all 0.3s ease 0s;
}
.form-head {
width: 100%;
height: 50px;
border-bottom: 1px solid var(--main-color);
}
.form-head p {
position: relative;
top: 10px;
font-size: 1.3em;
color: var(--main-color);
}
.form-body {
height: auto;
}
#login-form {
height: 400px;
}
#signup-form {
height: 675px;
}
.form-button {
border: none;
width: 150px;
height: 50px;
background: var(--main-color);
color: white;
font-size: 1.2em;
border-radius: 3px;
cursor: pointer;
transition: all .2s ease;
}
.form-button:hover {
background: white;
border: 1px solid var(--main-color);
color: var(--main-color);
}
.form-pointer {
color: var(--main-color);
text-align: center;
cursor: pointer;
}
#footer {
position: absolute;
top: calc(100vh - 100px);
width: 60%;
height: 100px;
background: #eee;
text-align: center;
}
#footer p {
color: black;
position: relative;
top: 35px;
font-size: 1rem;
}
/* Registration_success.html styles*/
#success-banner {
width: 100%;
height: 50px;
text-align: center;
background: #2E7D32;
}
#success-banner p {
font-family: 'Open Sans', sans-serif;
color: white;
position: relative;
top: 15px;
}
.banner {
width: 100%;
height: 50px;
background: var(--main-color);
color: white;
}
#welcome {
color: white;
position: relative;
width: 200px;
top: 15px;
left: 25px;
display: block;
}
.sign-off {
float: right;
color: white;
position: relative;
left: -75px;
top: -5px;
cursor: pointer;
}
/* Student Profile styles*/
.button {
width: 150px;
height: 50px;
background: white;
cursor: pointer;
text-align: center;
padding-top: 15px;
box-sizing: border-box;
color: var(--main-color);
}
#grid {
display: grid;
height: calc(100vh - 50px);
grid-template-columns: 1fr 2fr;
}
.grid-item:nth-child(2) {
background: #eee;
}
.grid-item:nth-child(3) {
background: #ddd;
}
.grid-item:nth-child(1) {
grid-row: 1 / span 2;
background: #fff;
text-align: center;
}
#profile-photo-container {
position: relative;
top: 50px;
width: 150px;
height: 150px;
background: #eee;
border: 2px solid white;
margin: auto;
border-bottom: 2px solid var(--main-color-light);
}
#profile-photo-container img {
width: 100%;
height: 100%;
}
#student-name-container {
width: 200px;
margin: auto;
text-align: center;
position: relative;
top: 75px;
padding: 10px;
border-left: 5px solid var(--main-color);
background: #eee8;
}
#student-name-container p {
color: var(--main-color-light);
font-size: 1.2em;
display: inline-block;
}
#education-header {
position: relative;
top: 200px;
font-size: 1.2em;
}
#school-head {
top: 250px;
}
#school-name {
top: 260px;
}
#degree-head {
top: 300px;
}
#degree-name {
top: 310px;
}
#grad-year-head {
top: 350px;
}
#grad-year {
top: 360px;
}
#menu {
display: grid;
grid-template-columns: 200px 200px 200px;
grid-gap: 20px;
justify-content: center;
align-content: center;
}
#menu div {
background: white;
height: 200px;
text-align: center;
transition: all .3s 0s;
cursor: pointer;
border-bottom: 2px solid var(--main-color);
}
#menu div:hover {
transform: scale(1.1);
}
#menu div p {
position: relative;
top: 75px;
font-size: 1.3em;
color: var(--main-color-light);
}
.prof-header {
position: relative;
color: var(--main-color);
text-align: center;
font-size: 1.2em;
}
.prof-content {
position: relative;
width: 250px;
background: #eee;
border-left: 5px solid var(--main-color);
padding: 10px 10px 10px 20px;
margin: auto;
}
.course-tab {
box-sizing: border-box;
width: 100px;
padding: 12px 5px 5px 5px;
text-align: center;
height: 50px;
background: var(--main-color-light);
color: white;
}
#course-data-box {
padding: 10px;
background: white;
width: 200px;
height: 200px;
display: none;
}
#course-data-box input {
height: 35px;
border: none;
border-bottom: 1px solid var(--main-color);
font-size: 1em;
background: #eee6;
}
#add-course-button {
width: 50px;
height: 25px;
background: var(--main-color);
color: white;
text-align: center;
}
/*Edit Profile styles*/
#edit-form-container {
position: relative;
top: 100px;
width: 500px;
height: 500px;
margin: auto;
}
#edit-form-head {
width: 100%;
height: 50px;
background: linear-gradient(to right, var(--main-color), var(--main-color-light));
color: white;
text-align: center;
margin-bottom: 15px;
}
#edit-form-head p {
position: relative;
top: 15px;
}
#edit-form-body {
width: 100%;
height: 250px;
text-align: center;
}
#edit-form-body .input-field {
width: 250px;
}
/*Employer Profile Styles*/
#grid-2 {
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: calc(100vh - 50px);
}
#grid-2 div {
}
#grid-2-container-1 {
background: var(--main-color-light);
} | FrontEnd/index.css | * {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
}
:root {
--main-color: #7B1FA2;
--main-color-light: #AB47BC;
}
body {
background: white;
overflow-x: hidden;
}
#title-container {
float: left;
background: linear-gradient(to bottom, var(--main-color), var(--main-color-light));
width: 40%;
height: 100vh;
color: white;
}
#title {
width: 300px;
font-size: 4em;
position: relative;
top: 150px;
line-height: 1.4em;
margin: auto;
font-family: 'Raleway', sans-serif;
}
#description {
position: relative;
top: 200px;
font-size: 1.3em;
width: 400px;
text-align: left;
margin: auto;
}
#title-icon-container {
width: 100px;
height: 100px;
position: absolute;
top: 200px;
left: 450px;
}
#title-icon-container img {
width: 100%;
height: 100%;
}
#form-container {
float: left;
width: 60%;
height: 100vh;
background: white;
}
.form {
position: relative;
top: 0px;
margin: auto;
width: 400px;
height: 500px;
background: #ffffff;
text-align: center;
float: left;
}
.input-field {
border: none;
height: 35px;
width: 200px;
background: #eee;
padding: 0 10px 0 10px;
border-left: 5px solid var(--main-color);
font-size: 1.05em;
}
select {
border: none;
background: #eee;
width: 100px;
height: 30px;
font-size: .9em;
padding-left: 5px;
}
#form-view {
margin: auto;
overflow: hidden;
width: 400px;
height: auto;
position: relative;
top: 50px;
}
#form-slider {
width: 210%;
height: auto;
position: relative;
left: 0px;
transition: all 0.3s ease 0s;
}
.form-head {
width: 100%;
height: 50px;
border-bottom: 1px solid var(--main-color);
}
.form-head p {
position: relative;
top: 10px;
font-size: 1.3em;
color: var(--main-color);
}
.form-body {
height: auto;
}
#login-form {
height: 400px;
}
#signup-form {
height: 675px;
}
.form-button {
border: none;
width: 150px;
height: 50px;
background: var(--main-color);
color: white;
font-size: 1.2em;
border-radius: 3px;
cursor: pointer;
transition: all .2s ease;
}
.form-button:hover {
background: white;
border: 1px solid var(--main-color);
color: var(--main-color);
}
.form-pointer {
color: var(--main-color);
text-align: center;
cursor: pointer;
}
#footer {
position: absolute;
top: calc(100vh - 100px);
width: 60%;
height: 100px;
background: #eee;
text-align: center;
}
#footer p {
color: black;
position: relative;
top: 35px;
font-size: 1rem;
}
/* Registration_success.html styles*/
#success-banner {
width: 100%;
height: 50px;
text-align: center;
background: #2E7D32;
}
#success-banner p {
font-family: 'Open Sans', sans-serif;
color: white;
position: relative;
top: 15px;
}
.banner {
width: 100%;
height: 50px;
background: var(--main-color);
color: white;
}
#welcome {
color: white;
position: relative;
width: 200px;
top: 15px;
left: 25px;
display: block;
}
.sign-off {
float: right;
color: white;
position: relative;
left: -75px;
top: -5px;
cursor: pointer;
}
/* Student Profile styles*/
.button {
width: 150px;
height: 50px;
background: white;
cursor: pointer;
text-align: center;
padding-top: 15px;
box-sizing: border-box;
color: var(--main-color);
}
#grid {
display: grid;
height: calc(100vh - 50px);
grid-template-columns: 1fr 2fr;
}
.grid-item:nth-child(2) {
background: #eee;
}
.grid-item:nth-child(3) {
background: #ddd;
}
.grid-item:nth-child(1) {
grid-row: 1 / span 2;
background: #fff;
text-align: center;
}
#profile-photo-container {
position: relative;
top: 50px;
width: 150px;
height: 150px;
background: #eee;
border: 2px solid white;
margin: auto;
border-bottom: 2px solid var(--main-color-light);
}
#profile-photo-container img {
width: 100%;
height: 100%;
}
#student-name-container {
width: 200px;
margin: auto;
text-align: center;
position: relative;
top: 75px;
padding: 10px;
border-left: 5px solid var(--main-color);
background: #eee8;
}
#student-name-container p {
color: var(--main-color-light);
font-size: 1.2em;
display: inline-block;
}
#education-header {
position: relative;
top: 200px;
font-size: 1.2em;
}
#school-head {
top: 250px;
}
#school-name {
top: 260px;
}
#degree-head {
top: 300px;
}
#degree-name {
top: 310px;
}
#grad-year-head {
top: 350px;
}
#grad-year {
top: 360px;
}
#menu {
display: grid;
grid-template-columns: 200px 200px 200px;
grid-gap: 20px;
justify-content: center;
align-content: center;
}
#menu div {
background: white;
height: 200px;
text-align: center;
transition: all .3s 0s;
cursor: pointer;
border-bottom: 2px solid var(--main-color);
}
#menu div:hover {
transform: scale(1.1);
}
#menu div p {
position: relative;
top: 75px;
font-size: 1.3em;
color: var(--main-color-light);
}
.prof-header {
position: relative;
color: var(--main-color);
text-align: center;
font-size: 1.2em;
}
.prof-content {
position: relative;
width: 250px;
background: #eee;
border-left: 5px solid var(--main-color);
padding: 10px 10px 10px 20px;
margin: auto;
}
.course-tab {
box-sizing: border-box;
width: 100px;
padding: 12px 5px 5px 5px;
text-align: center;
height: 50px;
background: var(--main-color-light);
color: white;
}
#course-data-box {
padding: 10px;
background: white;
width: 200px;
height: 200px;
display: none;
}
#course-data-box input {
height: 35px;
border: none;
border-bottom: 1px solid var(--main-color);
font-size: 1em;
background: #eee6;
}
#add-course-button {
width: 50px;
height: 25px;
background: var(--main-color);
color: white;
text-align: center;
}
/*Edit Profile styles*/
#edit-form-container {
position: relative;
top: 100px;
width: 500px;
height: 500px;
margin: auto;
}
#edit-form-head {
width: 100%;
height: 50px;
background: linear-gradient(to right, var(--main-color), var(--main-color-light));
color: white;
text-align: center;
margin-bottom: 15px;
}
#edit-form-head p {
position: relative;
top: 15px;
}
#edit-form-body {
width: 100%;
height: 250px;
text-align: center;
}
#edit-form-body .input-field {
width: 250px;
}
/*Employer Profile Styles*/
#grid-2 {
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: calc(100vh - 50px);
}
#grid-2 div {
}
#grid-2-container-1 {
background: var(--main-color-light);
} | 0.414662 | 0.082697 |
:root {
--orange: #f09732;
--blue: #173187;
--green: #49890e;
--white: #ffffff;
--orange-alpha-50: rgba(240, 151, 50, 0.5);
--blue-alpha-50: rgba(23, 49, 135, 0.5);
--green-alpha-50: rgba(73, 137, 14, 0.5);
}
.india-linear {
background: linear-gradient(
to bottom,
var(--orange),
var(--white),
var(--green)
);
}
.india-stripe {
background: linear-gradient(
to bottom,
var(--orange) 0px 10px,
var(--white) 10px 13px,
var(--blue) 13px 16px,
var(--white) 16px 20px,
var(--green) 20px 30px,
var(--white) 30px 40px
);
background-size: 40px 40px;
}
.india-spiral {
background: repeating-radial-gradient(
circle,
var(--orange) 0px 10px,
var(--white) 10px 13px,
var(--blue) 13px 16px,
var(--white) 16px 20px,
var(--green) 20px 30px,
var(--white) 30px 40px
);
}
.india-block {
background: radial-gradient(
5px 5px at 61% 61%,
var(--white) 50%,
transparent 50%
),
radial-gradient(5px 5px at 10% 10%, var(--white) 50%, transparent 50%),
radial-gradient(5px 5px at 36% 36%, var(--white) 50%, transparent 50%),
radial-gradient(5px 5px at 36% 36%, var(--blue) 50%, transparent 50%),
radial-gradient(5px 5px at 88% 88%, var(--blue) 50%, transparent 50%),
linear-gradient(
to bottom,
var(--orange) 10px,
transparent 10px 20px,
var(--green) 20px 30px,
transparent 30px
),
linear-gradient(
to right,
var(--orange) 10px,
transparent 10px 20px,
var(--green) 20px 30px,
transparent 30px
);
background-size: 40px 40px;
}
.india-diamond {
background: linear-gradient(
45deg,
transparent 10px,
var(--green) 10px 20px,
var(--white) 20px 25px,
var(--blue) 25px 30px,
var(--white) 30px 35px,
var(--orange) 35px 45px,
transparent 44px
),
linear-gradient(
-45deg,
transparent 10px,
var(--green) 10px 20px,
var(--white) 20px 25px,
var(--blue) 25px 30px,
var(--white) 30px 35px,
var(--orange) 35px 45px,
transparent 44px
),
linear-gradient(
-135deg,
transparent 10px,
var(--green) 10px 20px,
var(--white) 20px 25px,
var(--blue) 25px 30px,
var(--white) 30px 35px,
var(--orange) 35px 45px,
transparent 44px
),
linear-gradient(
135deg,
transparent 10px,
var(--green) 10px 20px,
var(--white) 20px 25px,
var(--blue) 25px 30px,
var(--white) 30px 35px,
var(--orange) 35px 45px,
transparent 44px
);
background-size: 130px 130px;
background-position: 50% 50%;
}
.india-ring {
background: radial-gradient(
circle at center,
var(--white) 30%,
var(--green) 30% 40%,
var(--white) 40% 50%,
var(--blue) 50% 55%,
var(--white) 55% 60%,
var(--orange) 60% 70%,
transparent 70%
);
background-position: 50% 50%;
background-size: 80px 80px;
}
.india-wave {
background: radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--green) 25% 35%,
transparent 35%,
transparent
),
radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--orange) 25% 35%,
transparent 35%,
transparent
)
40px 55px,
radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--blue) 25% 30%,
transparent 30%,
transparent
)
40px 65px;
background-size: 40px 80px;
}
.india-cup {
background: radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--green) 25% 35%,
transparent 35%,
transparent
),
radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--blue) 25% 30%,
transparent 30%,
transparent
)
40px 60px,
radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--orange) 25% 35%,
transparent 35%,
transparent
)
0px 40px;
background-size: 80px 80px;
}
.india-line {
background: repeating-linear-gradient(
to bottom,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
var(--orange-alpha-50) 15px 20px,
transparent 20px 25px,
var(--blue-alpha-50) 25px 30px,
var(--blue) 30px 35px,
var(--blue-alpha-50) 35px 40px,
transparent 40px 45px,
var(--green-alpha-50) 45px 50px,
var(--green) 50px 55px,
var(--green-alpha-50) 55px 60px,
transparent 60px 65px
);
}
.india-bubble {
background: radial-gradient(
circle,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px 25px,
var(--blue-alpha-50) 25px 30px,
var(--blue) 30px 35px,
transparent 35px 45px,
var(--green-alpha-50) 45px 50px,
var(--green) 50px 55px,
transparent 50px 65px
);
background-size: 80px 80px;
}
.india-square {
background: linear-gradient(
to right,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px
),
linear-gradient(
to left,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px
),
linear-gradient(
to bottom,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px
),
linear-gradient(
to top,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px
),
linear-gradient(
to right,
transparent 0px 5px,
var(--blue-alpha-50) 5px 10px,
var(--blue) 10px 15px,
transparent 15px
)
15px,
linear-gradient(
to left,
transparent 0px 5px,
var(--blue-alpha-50) 5px 10px,
var(--blue) 10px 15px,
transparent 15px
) -15px,
linear-gradient(
to top,
transparent 0px 5px,
var(--blue-alpha-50) 5px 10px,
var(--blue) 10px 15px,
transparent 15px
)
0px -15px,
linear-gradient(
to bottom,
transparent 0px 5px,
var(--blue-alpha-50) 5px 10px,
var(--blue) 10px 15px,
transparent 15px
)
0px 15px,
linear-gradient(
to right,
transparent 0px 5px,
var(--green-alpha-50) 5px 10px,
var(--green) 10px 15px,
transparent 15px
)
30px,
linear-gradient(
to left,
transparent 0px 5px,
var(--green-alpha-50) 5px 10px,
var(--green) 10px 15px,
transparent 15px
) -30px,
linear-gradient(
to top,
transparent 0px 5px,
var(--green-alpha-50) 5px 10px,
var(--green) 10px 15px,
transparent 15px
)
0px -30px,
linear-gradient(
to bottom,
transparent 0px 5px,
var(--green-alpha-50) 5px 10px,
var(--green) 10px 15px,
transparent 15px
)
0px 30px;
background-size: 120px 120px;
}
.india-cut {
background: linear-gradient(
45deg,
transparent 0px 20px,
var(--orange) 20px 30px,
transparent 30px
),
linear-gradient(
-45deg,
transparent 0px 20px,
var(--green) 20px 30px,
transparent 30px
),
linear-gradient(
-45deg,
transparent 0px 35px,
var(--blue) 35px 40px,
transparent 40px
),
linear-gradient(
45deg,
transparent 0px 35px,
var(--blue) 35px 40px,
transparent 40px
);
background-size: 60px 60px;
}
.india-dot {
background: radial-gradient(circle, var(--orange) 0% 35%, transparent 35%) 0px
30px,
radial-gradient(circle, var(--green) 0% 35%, transparent 35%);
background-size: 20px 60px;
}
.india-net {
background: repeating-linear-gradient(
90deg,
transparent 0px 27px,
var(--blue-alpha-50) 27px 29px,
transparent 29px 65px,
var(--blue-alpha-50) 65px 67px,
transparent 67px 76px
),
repeating-linear-gradient(
180deg,
transparent 0px 9px,
var(--blue-alpha-50) 9px 11px,
transparent 11px 49px,
var(--blue-alpha-50) 49px 51px,
transparent 51px 80px
),
repeating-linear-gradient(
180deg,
transparent 0px 20px,
var(--orange-alpha-50) 20px 40px,
transparent 40px 60px,
var(--green-alpha-50) 60px 80px
),
repeating-linear-gradient(
90deg,
var(--orange) 0px 2px,
transparent 2px 4px,
var(--orange) 4px 6px,
transparent 6px 8px,
var(--orange) 8px 10px,
transparent 10px 12px,
var(--orange) 12px 14px,
transparent 14px 16px,
var(--orange) 16px 18px,
transparent 18px 38px,
var(--green) 38px 40px,
transparent 40px 42px,
var(--green) 42px 44px,
transparent 44px 46px,
var(--green) 46px 48px,
transparent 48px 50px,
var(--green) 50px 52px,
transparent 52px 54px,
var(--green) 54px 56px,
transparent 56px 76px
);
}
.india-flower {
background: radial-gradient(
60% 60% at 40% 40%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 50% 30%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 30% 50%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 60% 40%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 70% 50%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 60% 60%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 50% 70%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 40% 60%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 40% 50%,
transparent 0% 10%,
var(--blue) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 60% 50%,
transparent 0% 10%,
var(--blue) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 50% 40%,
transparent 0% 10%,
var(--blue) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 50% 60%,
transparent 0% 10%,
var(--blue) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 45% 45%,
transparent 0% 10%,
var(--green) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 45% 55%,
transparent 0% 10%,
var(--green) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 55% 45%,
transparent 0% 10%,
var(--green) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 55% 55%,
transparent 0% 10%,
var(--green) 10% 12%,
transparent 12%
);
background-size: 120px 120px;
background-position: 20px;
} | css/made-in-india.css | :root {
--orange: #f09732;
--blue: #173187;
--green: #49890e;
--white: #ffffff;
--orange-alpha-50: rgba(240, 151, 50, 0.5);
--blue-alpha-50: rgba(23, 49, 135, 0.5);
--green-alpha-50: rgba(73, 137, 14, 0.5);
}
.india-linear {
background: linear-gradient(
to bottom,
var(--orange),
var(--white),
var(--green)
);
}
.india-stripe {
background: linear-gradient(
to bottom,
var(--orange) 0px 10px,
var(--white) 10px 13px,
var(--blue) 13px 16px,
var(--white) 16px 20px,
var(--green) 20px 30px,
var(--white) 30px 40px
);
background-size: 40px 40px;
}
.india-spiral {
background: repeating-radial-gradient(
circle,
var(--orange) 0px 10px,
var(--white) 10px 13px,
var(--blue) 13px 16px,
var(--white) 16px 20px,
var(--green) 20px 30px,
var(--white) 30px 40px
);
}
.india-block {
background: radial-gradient(
5px 5px at 61% 61%,
var(--white) 50%,
transparent 50%
),
radial-gradient(5px 5px at 10% 10%, var(--white) 50%, transparent 50%),
radial-gradient(5px 5px at 36% 36%, var(--white) 50%, transparent 50%),
radial-gradient(5px 5px at 36% 36%, var(--blue) 50%, transparent 50%),
radial-gradient(5px 5px at 88% 88%, var(--blue) 50%, transparent 50%),
linear-gradient(
to bottom,
var(--orange) 10px,
transparent 10px 20px,
var(--green) 20px 30px,
transparent 30px
),
linear-gradient(
to right,
var(--orange) 10px,
transparent 10px 20px,
var(--green) 20px 30px,
transparent 30px
);
background-size: 40px 40px;
}
.india-diamond {
background: linear-gradient(
45deg,
transparent 10px,
var(--green) 10px 20px,
var(--white) 20px 25px,
var(--blue) 25px 30px,
var(--white) 30px 35px,
var(--orange) 35px 45px,
transparent 44px
),
linear-gradient(
-45deg,
transparent 10px,
var(--green) 10px 20px,
var(--white) 20px 25px,
var(--blue) 25px 30px,
var(--white) 30px 35px,
var(--orange) 35px 45px,
transparent 44px
),
linear-gradient(
-135deg,
transparent 10px,
var(--green) 10px 20px,
var(--white) 20px 25px,
var(--blue) 25px 30px,
var(--white) 30px 35px,
var(--orange) 35px 45px,
transparent 44px
),
linear-gradient(
135deg,
transparent 10px,
var(--green) 10px 20px,
var(--white) 20px 25px,
var(--blue) 25px 30px,
var(--white) 30px 35px,
var(--orange) 35px 45px,
transparent 44px
);
background-size: 130px 130px;
background-position: 50% 50%;
}
.india-ring {
background: radial-gradient(
circle at center,
var(--white) 30%,
var(--green) 30% 40%,
var(--white) 40% 50%,
var(--blue) 50% 55%,
var(--white) 55% 60%,
var(--orange) 60% 70%,
transparent 70%
);
background-position: 50% 50%;
background-size: 80px 80px;
}
.india-wave {
background: radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--green) 25% 35%,
transparent 35%,
transparent
),
radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--orange) 25% 35%,
transparent 35%,
transparent
)
40px 55px,
radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--blue) 25% 30%,
transparent 30%,
transparent
)
40px 65px;
background-size: 40px 80px;
}
.india-cup {
background: radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--green) 25% 35%,
transparent 35%,
transparent
),
radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--blue) 25% 30%,
transparent 30%,
transparent
)
40px 60px,
radial-gradient(
circle at 50% 100%,
transparent 25%,
var(--orange) 25% 35%,
transparent 35%,
transparent
)
0px 40px;
background-size: 80px 80px;
}
.india-line {
background: repeating-linear-gradient(
to bottom,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
var(--orange-alpha-50) 15px 20px,
transparent 20px 25px,
var(--blue-alpha-50) 25px 30px,
var(--blue) 30px 35px,
var(--blue-alpha-50) 35px 40px,
transparent 40px 45px,
var(--green-alpha-50) 45px 50px,
var(--green) 50px 55px,
var(--green-alpha-50) 55px 60px,
transparent 60px 65px
);
}
.india-bubble {
background: radial-gradient(
circle,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px 25px,
var(--blue-alpha-50) 25px 30px,
var(--blue) 30px 35px,
transparent 35px 45px,
var(--green-alpha-50) 45px 50px,
var(--green) 50px 55px,
transparent 50px 65px
);
background-size: 80px 80px;
}
.india-square {
background: linear-gradient(
to right,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px
),
linear-gradient(
to left,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px
),
linear-gradient(
to bottom,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px
),
linear-gradient(
to top,
transparent 0px 5px,
var(--orange-alpha-50) 5px 10px,
var(--orange) 10px 15px,
transparent 15px
),
linear-gradient(
to right,
transparent 0px 5px,
var(--blue-alpha-50) 5px 10px,
var(--blue) 10px 15px,
transparent 15px
)
15px,
linear-gradient(
to left,
transparent 0px 5px,
var(--blue-alpha-50) 5px 10px,
var(--blue) 10px 15px,
transparent 15px
) -15px,
linear-gradient(
to top,
transparent 0px 5px,
var(--blue-alpha-50) 5px 10px,
var(--blue) 10px 15px,
transparent 15px
)
0px -15px,
linear-gradient(
to bottom,
transparent 0px 5px,
var(--blue-alpha-50) 5px 10px,
var(--blue) 10px 15px,
transparent 15px
)
0px 15px,
linear-gradient(
to right,
transparent 0px 5px,
var(--green-alpha-50) 5px 10px,
var(--green) 10px 15px,
transparent 15px
)
30px,
linear-gradient(
to left,
transparent 0px 5px,
var(--green-alpha-50) 5px 10px,
var(--green) 10px 15px,
transparent 15px
) -30px,
linear-gradient(
to top,
transparent 0px 5px,
var(--green-alpha-50) 5px 10px,
var(--green) 10px 15px,
transparent 15px
)
0px -30px,
linear-gradient(
to bottom,
transparent 0px 5px,
var(--green-alpha-50) 5px 10px,
var(--green) 10px 15px,
transparent 15px
)
0px 30px;
background-size: 120px 120px;
}
.india-cut {
background: linear-gradient(
45deg,
transparent 0px 20px,
var(--orange) 20px 30px,
transparent 30px
),
linear-gradient(
-45deg,
transparent 0px 20px,
var(--green) 20px 30px,
transparent 30px
),
linear-gradient(
-45deg,
transparent 0px 35px,
var(--blue) 35px 40px,
transparent 40px
),
linear-gradient(
45deg,
transparent 0px 35px,
var(--blue) 35px 40px,
transparent 40px
);
background-size: 60px 60px;
}
.india-dot {
background: radial-gradient(circle, var(--orange) 0% 35%, transparent 35%) 0px
30px,
radial-gradient(circle, var(--green) 0% 35%, transparent 35%);
background-size: 20px 60px;
}
.india-net {
background: repeating-linear-gradient(
90deg,
transparent 0px 27px,
var(--blue-alpha-50) 27px 29px,
transparent 29px 65px,
var(--blue-alpha-50) 65px 67px,
transparent 67px 76px
),
repeating-linear-gradient(
180deg,
transparent 0px 9px,
var(--blue-alpha-50) 9px 11px,
transparent 11px 49px,
var(--blue-alpha-50) 49px 51px,
transparent 51px 80px
),
repeating-linear-gradient(
180deg,
transparent 0px 20px,
var(--orange-alpha-50) 20px 40px,
transparent 40px 60px,
var(--green-alpha-50) 60px 80px
),
repeating-linear-gradient(
90deg,
var(--orange) 0px 2px,
transparent 2px 4px,
var(--orange) 4px 6px,
transparent 6px 8px,
var(--orange) 8px 10px,
transparent 10px 12px,
var(--orange) 12px 14px,
transparent 14px 16px,
var(--orange) 16px 18px,
transparent 18px 38px,
var(--green) 38px 40px,
transparent 40px 42px,
var(--green) 42px 44px,
transparent 44px 46px,
var(--green) 46px 48px,
transparent 48px 50px,
var(--green) 50px 52px,
transparent 52px 54px,
var(--green) 54px 56px,
transparent 56px 76px
);
}
.india-flower {
background: radial-gradient(
60% 60% at 40% 40%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 50% 30%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 30% 50%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 60% 40%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 70% 50%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 60% 60%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 50% 70%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 40% 60%,
transparent 0% 10%,
var(--orange) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 40% 50%,
transparent 0% 10%,
var(--blue) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 60% 50%,
transparent 0% 10%,
var(--blue) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 50% 40%,
transparent 0% 10%,
var(--blue) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 50% 60%,
transparent 0% 10%,
var(--blue) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 45% 45%,
transparent 0% 10%,
var(--green) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 45% 55%,
transparent 0% 10%,
var(--green) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 55% 45%,
transparent 0% 10%,
var(--green) 10% 12%,
transparent 12%
),
radial-gradient(
60% 60% at 55% 55%,
transparent 0% 10%,
var(--green) 10% 12%,
transparent 12%
);
background-size: 120px 120px;
background-position: 20px;
} | 0.467575 | 0.212906 |
body, root, .App, .Home {
height: 100vh;
}
.NewFormPanel {
background-color: #F2F2F2;
filter: drop-shadow(0 0 8px #00000080);
margin: 4em auto 0px auto;
justify-content: flex-start;
align-items: flex-start;
border-radius: 60px;
backdrop-filter: blur(6px);
color: #000A16;
overflow: hidden;
white-space: nowrap;
width: 60%;
}
.NewFormForm {
width: 90%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-size: 2em;
margin: 1.5em;
overflow: hidden;
}
.NewFormNameContainer {
width: 100%;
}
.Row {
display: flex;
align-items: center;
justify-content: center;
margin: 1em 0px;
font-weight: lighter;
width: 100%;
}
.Row label {
margin-right: 10%;
}
.Row input {
font-size: 1em;
font-weight: lighter;
}
.NewFormPanel input {
font-size: 1em;
font-family: Roboto;
background: transparent;
border: none;
outline: none;
}
.NewFormPanel input.NewFormName {
outline: none;
border: none;
border-bottom: 1px solid black;
background-color: inherit;
font-size: 1.1em;
font-weight: normal;
width: 50%;
}
.Row input {
margin-right: 5%;
}
.ExpiryDateInput::-webkit-calendar-picker-indicator {
filter: invert(50%);
margin-left: 35px;
}
.ExpiryTimeInput::-webkit-calendar-picker-indicator {
filter: invert(50%);
margin-left: 35px;
}
.ExpiryDateInput::-webkit-calendar-picker-indicator:hover {
cursor: pointer;
opacity: 70%;
}
.ExpiryTimeInput::-webkit-calendar-picker-indicator:hover {
cursor: pointer;
opacity: 70%;
}
.Comment {
font-size: 0.6em;
font-weight: lighter;
color: #000A16;
margin-top: 3em;
margin-right: 0px !important;
overflow: hidden;
text-overflow: ellipsis;
}
.ConfirmButton {
color: #FFFFFF;
width: 40%;
height: auto;
line-height: 1.6em;
font-size: 0.7em;
font-weight: lighter;
border: none;
background: #77E178;
border-radius: 32px;
}
.ConfirmButton:hover {
cursor: pointer;
background: #77E178;
opacity: 80%;
}
.Row > label:hover{
background-color: transparent;
}
@media (max-width: 600px) {
.NewFormPanel {
background-color: transparent;
margin: 0;
width: 100%;
height: 100vh;
}
.NewFormForm {
width: 100%;
margin: 2em 0;
}
.Row {
align-items: center;
justify-content: flex-start;
margin: 2em 0em !important;
font-size: 30px;
padding: 0em 1em;
}
.Row:first-child {
display: block;
}
.Row:first-child input {
width: 100%;
}
.Row input {
margin-right: 0;
}
.Row:nth-last-child(2) {
font-size: 28px;
justify-content: center;
position: absolute;
bottom: 3em;
}
.Row:last-child {
justify-content: center;
position: absolute;
bottom: 1em;
}
.ExpiryDateInput::-webkit-calendar-picker-indicator {
margin-left: -55px;
}
.ExpiryTimeInput::-webkit-calendar-picker-indicator {
filter: invert(50%);
margin-left: -10px;
}
.Comment {
margin-right: 0.5em !important;
}
} | app/src/Css/NewFormComponent.css | body, root, .App, .Home {
height: 100vh;
}
.NewFormPanel {
background-color: #F2F2F2;
filter: drop-shadow(0 0 8px #00000080);
margin: 4em auto 0px auto;
justify-content: flex-start;
align-items: flex-start;
border-radius: 60px;
backdrop-filter: blur(6px);
color: #000A16;
overflow: hidden;
white-space: nowrap;
width: 60%;
}
.NewFormForm {
width: 90%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-size: 2em;
margin: 1.5em;
overflow: hidden;
}
.NewFormNameContainer {
width: 100%;
}
.Row {
display: flex;
align-items: center;
justify-content: center;
margin: 1em 0px;
font-weight: lighter;
width: 100%;
}
.Row label {
margin-right: 10%;
}
.Row input {
font-size: 1em;
font-weight: lighter;
}
.NewFormPanel input {
font-size: 1em;
font-family: Roboto;
background: transparent;
border: none;
outline: none;
}
.NewFormPanel input.NewFormName {
outline: none;
border: none;
border-bottom: 1px solid black;
background-color: inherit;
font-size: 1.1em;
font-weight: normal;
width: 50%;
}
.Row input {
margin-right: 5%;
}
.ExpiryDateInput::-webkit-calendar-picker-indicator {
filter: invert(50%);
margin-left: 35px;
}
.ExpiryTimeInput::-webkit-calendar-picker-indicator {
filter: invert(50%);
margin-left: 35px;
}
.ExpiryDateInput::-webkit-calendar-picker-indicator:hover {
cursor: pointer;
opacity: 70%;
}
.ExpiryTimeInput::-webkit-calendar-picker-indicator:hover {
cursor: pointer;
opacity: 70%;
}
.Comment {
font-size: 0.6em;
font-weight: lighter;
color: #000A16;
margin-top: 3em;
margin-right: 0px !important;
overflow: hidden;
text-overflow: ellipsis;
}
.ConfirmButton {
color: #FFFFFF;
width: 40%;
height: auto;
line-height: 1.6em;
font-size: 0.7em;
font-weight: lighter;
border: none;
background: #77E178;
border-radius: 32px;
}
.ConfirmButton:hover {
cursor: pointer;
background: #77E178;
opacity: 80%;
}
.Row > label:hover{
background-color: transparent;
}
@media (max-width: 600px) {
.NewFormPanel {
background-color: transparent;
margin: 0;
width: 100%;
height: 100vh;
}
.NewFormForm {
width: 100%;
margin: 2em 0;
}
.Row {
align-items: center;
justify-content: flex-start;
margin: 2em 0em !important;
font-size: 30px;
padding: 0em 1em;
}
.Row:first-child {
display: block;
}
.Row:first-child input {
width: 100%;
}
.Row input {
margin-right: 0;
}
.Row:nth-last-child(2) {
font-size: 28px;
justify-content: center;
position: absolute;
bottom: 3em;
}
.Row:last-child {
justify-content: center;
position: absolute;
bottom: 1em;
}
.ExpiryDateInput::-webkit-calendar-picker-indicator {
margin-left: -55px;
}
.ExpiryTimeInput::-webkit-calendar-picker-indicator {
filter: invert(50%);
margin-left: -10px;
}
.Comment {
margin-right: 0.5em !important;
}
} | 0.491212 | 0.064418 |
h1{
text-shadow:0px 0px 2px rgba(0,0,0,0.2);
font-weight:normal;
color:#FFFFFF;
letter-spacing:3pt;
word-spacing:-2pt;
font-size:54px;
text-align:center;
font-family:Syncopate;
line-height:1;
}
.form-check-input{
}
.floating_plus_icon {
background:none;
position:absolute;
top:0;
right:0;
line-height:45px;
padding:5px 15px 0px 15px;
color:#FF7F50;
border:0;
font-size:1.4em;
font-weight:bold;
cursor:pointer;
outline:none;
z-index:10000000000000;
}
header{
width:100%;
background:#ffffff;
height:60px;
line-height:60px;
border-bottom:1px solid #dddddd;
}
.container{
padding: 0vh;
margin: 10vh;
list-style: none;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
justify-content: space-around;
}
.contains {
width: 80%;
margin: 0 auto;
margin-bottom: auto;
background-image: url("http://wallpapercave.com/wp/ARBuPnm.jpg");
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.contains * {
box-sizing: border-box;
}
.flex-outer{
list-style-type: none;
padding: 0;
max-width: 800px;
margin: 0 auto;
}
.flex-outer li {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.flex-outer > li:not(:last-child) {
margin-bottom: 20px;
}
.flex-outer li label,
.flex-outer li p {
padding: 8px;
font-weight: 300;
letter-spacing: .09em;
text-transform: uppercase;
}
.flex-outer > li > label,
.flex-outer li p {
flex: 1 0 120px;
max-width: 220px;
}
.flex-outer > li > label + *{
flex: 1 0 220px;
padding-right: 50px;
border-radius: 5px;
max-width: 75%;
}
.flex-outer li p {
margin: 0;
}
.flex-outer li input:not([type='checkbox']),
.flex-outer li textarea {
padding: 15px;
border: none;
}
.flex-outer li button {
margin: auto;
padding: 8px 16px;
border: none;
background: #333;
color: #f2f2f2;
text-transform: uppercase;
letter-spacing: .09em;
border-radius: 5px;
}
.hamburger{
background:none;
position:absolute;
top:5px;
left:0;
line-height:45px;
padding:5px 15px 0px 10px;
color:#FF7F50;
border:0;
font-size:3em;
font-weight:bold;
cursor:pointer;
outline:none;
z-index:10000000000000;
}
.menu{
z-index:1000000;
font-weight:bold;
font-size:0.8em;
width:200px;
background:#f1f1f1;
position:absolute;
text-align:center;
font-size:12px;
}
.menu ul {
margin: 0;
padding: 0;
list-style-type: none;
list-style-image: none;
}
.menu li {
display: block;
padding:15px 0 15px 0;
border-bottom:#FF7F50 1px solid;
}
.menu li:hover{
display: block;
background:#ffffff;
padding:15px 0 15px 0;
border-bottom:#FF7F50 1px solid;
}
.menu ul li a {
text-decoration:none;
margin: 0px;
color:#666;
}
.menu ul li a:hover {
color: #666;
text-decoration:none;
}
.menu a{
text-decoration:none;
color:#666;
}
.menu a:hover{
text-decoration:none;
color:#666;
}
body{
background-color: #76b852;
} | public/css/add.css | h1{
text-shadow:0px 0px 2px rgba(0,0,0,0.2);
font-weight:normal;
color:#FFFFFF;
letter-spacing:3pt;
word-spacing:-2pt;
font-size:54px;
text-align:center;
font-family:Syncopate;
line-height:1;
}
.form-check-input{
}
.floating_plus_icon {
background:none;
position:absolute;
top:0;
right:0;
line-height:45px;
padding:5px 15px 0px 15px;
color:#FF7F50;
border:0;
font-size:1.4em;
font-weight:bold;
cursor:pointer;
outline:none;
z-index:10000000000000;
}
header{
width:100%;
background:#ffffff;
height:60px;
line-height:60px;
border-bottom:1px solid #dddddd;
}
.container{
padding: 0vh;
margin: 10vh;
list-style: none;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
justify-content: space-around;
}
.contains {
width: 80%;
margin: 0 auto;
margin-bottom: auto;
background-image: url("http://wallpapercave.com/wp/ARBuPnm.jpg");
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.contains * {
box-sizing: border-box;
}
.flex-outer{
list-style-type: none;
padding: 0;
max-width: 800px;
margin: 0 auto;
}
.flex-outer li {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.flex-outer > li:not(:last-child) {
margin-bottom: 20px;
}
.flex-outer li label,
.flex-outer li p {
padding: 8px;
font-weight: 300;
letter-spacing: .09em;
text-transform: uppercase;
}
.flex-outer > li > label,
.flex-outer li p {
flex: 1 0 120px;
max-width: 220px;
}
.flex-outer > li > label + *{
flex: 1 0 220px;
padding-right: 50px;
border-radius: 5px;
max-width: 75%;
}
.flex-outer li p {
margin: 0;
}
.flex-outer li input:not([type='checkbox']),
.flex-outer li textarea {
padding: 15px;
border: none;
}
.flex-outer li button {
margin: auto;
padding: 8px 16px;
border: none;
background: #333;
color: #f2f2f2;
text-transform: uppercase;
letter-spacing: .09em;
border-radius: 5px;
}
.hamburger{
background:none;
position:absolute;
top:5px;
left:0;
line-height:45px;
padding:5px 15px 0px 10px;
color:#FF7F50;
border:0;
font-size:3em;
font-weight:bold;
cursor:pointer;
outline:none;
z-index:10000000000000;
}
.menu{
z-index:1000000;
font-weight:bold;
font-size:0.8em;
width:200px;
background:#f1f1f1;
position:absolute;
text-align:center;
font-size:12px;
}
.menu ul {
margin: 0;
padding: 0;
list-style-type: none;
list-style-image: none;
}
.menu li {
display: block;
padding:15px 0 15px 0;
border-bottom:#FF7F50 1px solid;
}
.menu li:hover{
display: block;
background:#ffffff;
padding:15px 0 15px 0;
border-bottom:#FF7F50 1px solid;
}
.menu ul li a {
text-decoration:none;
margin: 0px;
color:#666;
}
.menu ul li a:hover {
color: #666;
text-decoration:none;
}
.menu a{
text-decoration:none;
color:#666;
}
.menu a:hover{
text-decoration:none;
color:#666;
}
body{
background-color: #76b852;
} | 0.240061 | 0.056731 |
@charset "UTF-8";
@font-face {
font-family: 'OnlineObjects';
src: url("/core/fonts/onlineobjects/fonts/OnlineObjects.eot?v2");
src: url("/core/fonts/onlineobjects/fonts/OnlineObjects.eot?#iefix") format("embedded-opentype"), url("/core/fonts/onlineobjects/fonts/OnlineObjects.woff?v2") format("woff"), url("/core/fonts/onlineobjects/fonts/OnlineObjects.ttf?v2") format("truetype"), url("/core/fonts/onlineobjects/fonts/OnlineObjects.svg?v2#OnlineObjects") format("svg");
font-weight: normal;
font-style: normal; }
.hui_foundation_navigation .hui_selection {
padding: 5px;
font-family: inherit; }
.hui_foundation_navigation .hui_selection_item {
border-radius: 5px;
padding: 3px 5px;
font-family: inherit; }
.hui_foundation_navigation .hui_selection_item.hui_selected, .hui_foundation_navigation .hui_selection_item.hui_selected:hover {
background: none;
box-shadow: none;
color: #36f;
font-weight: 600; }
.hui_foundation_navigation .hui_selection_item:hover, .hui_foundation_navigation .hui_selection_item.hui_selected:hover {
background: #f6f6f6; }
.list_empty {
padding: 20px;
text-align: center;
line-height: 18px;
margin-bottom: 10px; }
.list_empty_text {
display: none; }
.list_empty_text > p {
margin: 5px 0; }
.list_add {
padding: 10px;
text-align: center; }
.list_item {
border-bottom: 1px solid #eee;
padding: 5px 20px 5px 8px;
position: relative;
cursor: pointer;
line-height: 20px;
font-family: "Lora", Georgia, serif;
font-size: 16px; }
.list_item:hover {
background: #f6f6f6; }
.list_item:after {
opacity: .3;
position: absolute;
top: 7px;
right: 5px;
font-size: 14px;
line-height: 14px; }
.list_item-selected {
background: #36f;
color: #fff; }
.list_item-selected:hover {
background: #36f; }
.list_item-selected:after {
opacity: .7; }
.list_item-statement:after {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.list_item-question:after {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.list_item-internetaddress:after {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.list_item-hypothesis:after {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.list_item_favorite {
font-size: 14px;
display: flex;
color: #ffbe00;
float: right;
margin: 1px 2px; }
.list_item_favorite:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal; }
.list_item_inbox {
position: absolute;
top: 4px;
right: 4px;
width: 6px;
height: 6px;
background: #000;
border-radius: 50%;
z-index: 1; }
.root {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #fff; }
.root_body {
position: absolute;
top: 30px;
border-top: 1px solid #ddd;
left: 0;
right: 0;
bottom: 0; }
.tags {
display: flex;
justify-content: center;
flex-wrap: wrap; }
.tags_item {
margin: 0 3px;
display: flex; }
.tags_item:before {
content: '#';
color: #777;
margin-right: 3px; }
.tags_remove {
vertical-align: top;
margin: 1px 0 0 3px;
display: inline-block;
opacity: 0;
transition: opacity .3s;
font-size: 12px;
cursor: pointer;
background: #eee;
border-radius: 50%;
width: 16px;
height: 16px;
display: flex;
justify-content: center;
align-items: center; }
.tags_remove:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal; }
.tags_remove:hover {
background: #ddd; }
.tags:hover .tags_remove {
opacity: 1; }
.selection {
line-height: 18px;
display: flex;
padding-left: 2px; }
.selection:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
vertical-align: top;
display: inline-block;
width: 16px;
height: 16px;
font-size: 16px;
margin-right: 5px;
opacity: .5;
margin-top: 1px; }
.selection-everything:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-inbox:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-archive:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-favorite:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-any:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-internetaddress:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-statement:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-question:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-hypothesis:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-tag:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection:before {
opacity: 1; }
.hui_selection_item.hui_selected .selection-everything:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-inbox:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-archive:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-favorite:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-any:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-internetaddress:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-tag:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.perspective {
padding-bottom: 60px; }
.perspective_title {
margin: 10px auto;
padding: 5px 20px 5px 10px;
max-width: 500px;
position: relative;
box-sizing: border-box;
border-radius: 5px;
cursor: text; }
.perspective_title_text {
white-space: pre-wrap;
font-family: "Lora", Georgia, serif;
line-height: 1.3;
font-size: 18px;
text-align: center;
font-weight: normal; }
.perspective_title:hover {
background: #fafafa; }
.perspective_title_edit {
position: absolute;
right: 5px;
top: 50%;
color: #777;
font-size: 14px;
margin-top: -10px;
line-height: 1;
text-align: center;
width: 20px;
height: 20px;
opacity: 0;
cursor: pointer;
border-radius: 3px;
padding: 2px;
box-sizing: border-box; }
.perspective_title_edit:before {
content: "=";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
vertical-align: middle; }
.perspective_title_edit:hover {
background: rgba(220, 220, 220, 0.7);
color: #333; }
.perspective_title:hover .perspective_title_edit {
opacity: 1; }
.perspective_title textarea {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: -0.2em;
padding: 0;
resize: none;
-webkit-appearance: none;
border: none;
display: none;
margin: 0;
background: inherit;
color: inherit;
width: 100%;
box-sizing: border-box;
padding: 5px 20px 5px 10px; }
.perspective_title.is-active textarea {
display: block; }
.perspective_title.is-active div.perspective_title_text {
color: transparent; }
.perspective_heading {
font-family: 'Inter', sans-serif;
color: #777;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
text-align: center;
font-weight: 600;
margin: 20px 10px 10px; }
.perspective_relations {
max-width: 500px;
margin: 0 auto;
padding: 0 20px; }
.perspective_relation {
font-family: 'Lora', Georgia, serif;
padding: 5px 10px;
padding-right: 30px;
border-radius: 5px;
cursor: pointer;
position: relative;
line-height: 18px; }
.perspective_relation:hover {
background: #fafafa; }
.perspective_relation_message {
color: #777;
font-family: 'Inter', sans-serif;
font-size: 14px;
text-align: center; }
.perspective_relation_info {
color: #777;
font-size: 12px;
font-family: 'Inter', sans-serif; }
.perspective_relation_remove {
vertical-align: top;
line-height: 1;
position: absolute;
font-size: 14px;
top: 50%;
right: 5px;
margin-top: -10px;
padding: 3px;
border-radius: 3px;
opacity: 0;
color: #777;
background: rgba(250, 250, 250, 0.5); }
.perspective_relation_remove:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
vertical-align: top; }
.perspective_relation_remove:hover {
background: rgba(220, 220, 220, 0.7);
color: #333; }
.perspective_relation:hover .perspective_relation_remove {
opacity: 1; }
.perspective_actions {
text-align: center;
margin: 10px; }
.multiple_selection_item {
cursor: pointer;
padding: 3px 7px;
border-radius: 3px; }
.multiple_selection_item:hover {
background: #f3f3f3; }
.intro {
display: flex;
flex-direction: column;
height: 60vh;
justify-content: center;
align-items: center;
color: #777; }
.intro_graphic:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
font-size: calc(max(12vw,80px)); }
.intro_title {
font-size: calc(max(3.5vw,24px));
font-weight: 500; }
.intro ul {
list-style: none;
text-align: center;
padding: 0 20px;
margin: 20px 0 0;
font-weight: 300; }
.intro li {
margin: 5px 0; }
.intro em {
font-weight: 500;
font-style: normal; }
.warning {
display: flex;
flex-direction: column;
height: 60vh;
justify-content: center;
align-items: center;
color: #777; }
.warning:before {
content: "w";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
font-size: 68px; }
.warning_title {
font-weight: 500;
font-size: 16px;
margin: 10px 0 5px; }
.add_intro {
text-align: center;
font-size: 12px;
color: #777;
line-height: 1.4;
margin-bottom: 5px; }
.internetaddress {
margin: 20px auto;
max-width: 700px;
padding: 20px; }
.internetaddress .tags {
margin: -10px 0 10px;
justify-content: start; }
.internetaddress_head {
margin: 0 0 15px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding: 0 0 4px; }
.internetaddress_head a {
color: #777;
text-decoration: none;
font-size: 12px; }
.internetaddress_head a:hover {
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.plain {
font-family: "Menlo", "Monaco", "Courier", monospace;
white-space: pre-wrap;
line-height: 1.2857142857; }
.article {
font-family: "Lora", Georgia, serif;
font-size: 16px;
line-height: 1.5;
word-wrap: break-word;
word-break: break-word; }
.article h1 {
margin: 0 0 20px;
font-size: 28px;
line-height: 1.1;
font-family: "Playfair Display", "Lora", Georgia, serif; }
.article h2 {
font-size: 20px;
margin: 2em 0 0;
line-height: 1.1; }
.article p {
margin: 1em 0; }
.article > hr {
border: none;
border-top: 1px solid #ECE5D5;
margin: 40px 0; }
.article a {
color: #1577d0;
text-decoration-color: #c8d6e2; }
.article a:hover {
text-decoration-color: #1577d0; }
.article pre {
font-size: 14px;
overflow: auto;
-webkit-overflow-scrolling: touch;
color: #008e3f;
background: #f5f2e2;
padding: 5px 10px;
border-radius: 3px;
margin: 1em -10px; }
.article blockquote {
border-left: 4px dotted #ece9d7;
padding-left: 20px;
margin: 1em 20px; }
.article ul, .article ol, .article menu {
padding-left: 20px;
margin: 10px 0; }
.article_statement {
background: rgba(255, 238, 0, 0.5);
font-style: normal;
border-radius: 6px;
padding: 2px 3px;
margin: 0 -3px;
transition: background-color .3s;
cursor: pointer; }
.article_statement.is-highlighted {
background-color: #FF92AB;
color: #940028; }
.article_hypothesis {
background: rgba(175, 191, 40, 0.5);
font-style: normal;
border-radius: 6px;
padding: 0 3px;
margin: 0 -3px;
transition: background-color .3s; }
.article_hypothesis.is-highlighted {
background-color: #FF92AB;
color: #940028; }
.article_word {
background-color: #f3f3f3;
padding: 0 3px;
margin: 0 -3px;
border-radius: 10px; }
.article .person {
background: rgba(0, 90, 255, 0.1);
font-style: normal;
border-radius: 6px;
padding: 0 3px;
margin: 0 -3px; }
.article .person:before {
content: 'P';
display: inline-block;
background: #6d96e2;
border-radius: 2px;
font-size: 11px;
vertical-align: middle;
width: 12px;
height: 12px;
color: #fff;
text-align: center;
font-family: Verdana;
line-height: 12px;
margin-right: 0.3em;
border: 1px solid #5e81c3; }
.article .noun {
background: rgba(0, 90, 255, 0.1);
font-style: normal;
border-radius: 6px;
padding: 0 3px;
margin: 0 -3px; }
.article .sentence {
background: none; }
.article .sentence:before {
content: '{';
color: #999; }
.article .sentence:after {
content: '}';
color: #999; }
.article_picture {
display: inline-block;
position: relative;
background: #F5F2E2;
width: 100%;
font-size: 0; }
.article_picture_body {
display: inline-block; }
.article_picture_image {
position: absolute;
width: 100%;
height: auto; }
.article_image {
height: auto;
max-width: 100%;
filter: grayscale(1); }
@media (min-width: 900px) {
.perspective_title_text {
line-height: 1.1;
font-size: 2vw;
font-size: calc(max(18px, min(2vw, 32px))); }
.article h1 {
font-size: 42px; } } | src/main/webapp/WEB-INF/apps/knowledge/web/css/app.css | @charset "UTF-8";
@font-face {
font-family: 'OnlineObjects';
src: url("/core/fonts/onlineobjects/fonts/OnlineObjects.eot?v2");
src: url("/core/fonts/onlineobjects/fonts/OnlineObjects.eot?#iefix") format("embedded-opentype"), url("/core/fonts/onlineobjects/fonts/OnlineObjects.woff?v2") format("woff"), url("/core/fonts/onlineobjects/fonts/OnlineObjects.ttf?v2") format("truetype"), url("/core/fonts/onlineobjects/fonts/OnlineObjects.svg?v2#OnlineObjects") format("svg");
font-weight: normal;
font-style: normal; }
.hui_foundation_navigation .hui_selection {
padding: 5px;
font-family: inherit; }
.hui_foundation_navigation .hui_selection_item {
border-radius: 5px;
padding: 3px 5px;
font-family: inherit; }
.hui_foundation_navigation .hui_selection_item.hui_selected, .hui_foundation_navigation .hui_selection_item.hui_selected:hover {
background: none;
box-shadow: none;
color: #36f;
font-weight: 600; }
.hui_foundation_navigation .hui_selection_item:hover, .hui_foundation_navigation .hui_selection_item.hui_selected:hover {
background: #f6f6f6; }
.list_empty {
padding: 20px;
text-align: center;
line-height: 18px;
margin-bottom: 10px; }
.list_empty_text {
display: none; }
.list_empty_text > p {
margin: 5px 0; }
.list_add {
padding: 10px;
text-align: center; }
.list_item {
border-bottom: 1px solid #eee;
padding: 5px 20px 5px 8px;
position: relative;
cursor: pointer;
line-height: 20px;
font-family: "Lora", Georgia, serif;
font-size: 16px; }
.list_item:hover {
background: #f6f6f6; }
.list_item:after {
opacity: .3;
position: absolute;
top: 7px;
right: 5px;
font-size: 14px;
line-height: 14px; }
.list_item-selected {
background: #36f;
color: #fff; }
.list_item-selected:hover {
background: #36f; }
.list_item-selected:after {
opacity: .7; }
.list_item-statement:after {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.list_item-question:after {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.list_item-internetaddress:after {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.list_item-hypothesis:after {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.list_item_favorite {
font-size: 14px;
display: flex;
color: #ffbe00;
float: right;
margin: 1px 2px; }
.list_item_favorite:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal; }
.list_item_inbox {
position: absolute;
top: 4px;
right: 4px;
width: 6px;
height: 6px;
background: #000;
border-radius: 50%;
z-index: 1; }
.root {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #fff; }
.root_body {
position: absolute;
top: 30px;
border-top: 1px solid #ddd;
left: 0;
right: 0;
bottom: 0; }
.tags {
display: flex;
justify-content: center;
flex-wrap: wrap; }
.tags_item {
margin: 0 3px;
display: flex; }
.tags_item:before {
content: '#';
color: #777;
margin-right: 3px; }
.tags_remove {
vertical-align: top;
margin: 1px 0 0 3px;
display: inline-block;
opacity: 0;
transition: opacity .3s;
font-size: 12px;
cursor: pointer;
background: #eee;
border-radius: 50%;
width: 16px;
height: 16px;
display: flex;
justify-content: center;
align-items: center; }
.tags_remove:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal; }
.tags_remove:hover {
background: #ddd; }
.tags:hover .tags_remove {
opacity: 1; }
.selection {
line-height: 18px;
display: flex;
padding-left: 2px; }
.selection:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
vertical-align: top;
display: inline-block;
width: 16px;
height: 16px;
font-size: 16px;
margin-right: 5px;
opacity: .5;
margin-top: 1px; }
.selection-everything:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-inbox:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-archive:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-favorite:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-any:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-internetaddress:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-statement:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-question:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-hypothesis:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.selection-tag:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection:before {
opacity: 1; }
.hui_selection_item.hui_selected .selection-everything:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-inbox:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-archive:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-favorite:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-any:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-internetaddress:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.hui_selection_item.hui_selected .selection-tag:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased; }
.perspective {
padding-bottom: 60px; }
.perspective_title {
margin: 10px auto;
padding: 5px 20px 5px 10px;
max-width: 500px;
position: relative;
box-sizing: border-box;
border-radius: 5px;
cursor: text; }
.perspective_title_text {
white-space: pre-wrap;
font-family: "Lora", Georgia, serif;
line-height: 1.3;
font-size: 18px;
text-align: center;
font-weight: normal; }
.perspective_title:hover {
background: #fafafa; }
.perspective_title_edit {
position: absolute;
right: 5px;
top: 50%;
color: #777;
font-size: 14px;
margin-top: -10px;
line-height: 1;
text-align: center;
width: 20px;
height: 20px;
opacity: 0;
cursor: pointer;
border-radius: 3px;
padding: 2px;
box-sizing: border-box; }
.perspective_title_edit:before {
content: "=";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
vertical-align: middle; }
.perspective_title_edit:hover {
background: rgba(220, 220, 220, 0.7);
color: #333; }
.perspective_title:hover .perspective_title_edit {
opacity: 1; }
.perspective_title textarea {
position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: -0.2em;
padding: 0;
resize: none;
-webkit-appearance: none;
border: none;
display: none;
margin: 0;
background: inherit;
color: inherit;
width: 100%;
box-sizing: border-box;
padding: 5px 20px 5px 10px; }
.perspective_title.is-active textarea {
display: block; }
.perspective_title.is-active div.perspective_title_text {
color: transparent; }
.perspective_heading {
font-family: 'Inter', sans-serif;
color: #777;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
text-align: center;
font-weight: 600;
margin: 20px 10px 10px; }
.perspective_relations {
max-width: 500px;
margin: 0 auto;
padding: 0 20px; }
.perspective_relation {
font-family: 'Lora', Georgia, serif;
padding: 5px 10px;
padding-right: 30px;
border-radius: 5px;
cursor: pointer;
position: relative;
line-height: 18px; }
.perspective_relation:hover {
background: #fafafa; }
.perspective_relation_message {
color: #777;
font-family: 'Inter', sans-serif;
font-size: 14px;
text-align: center; }
.perspective_relation_info {
color: #777;
font-size: 12px;
font-family: 'Inter', sans-serif; }
.perspective_relation_remove {
vertical-align: top;
line-height: 1;
position: absolute;
font-size: 14px;
top: 50%;
right: 5px;
margin-top: -10px;
padding: 3px;
border-radius: 3px;
opacity: 0;
color: #777;
background: rgba(250, 250, 250, 0.5); }
.perspective_relation_remove:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
vertical-align: top; }
.perspective_relation_remove:hover {
background: rgba(220, 220, 220, 0.7);
color: #333; }
.perspective_relation:hover .perspective_relation_remove {
opacity: 1; }
.perspective_actions {
text-align: center;
margin: 10px; }
.multiple_selection_item {
cursor: pointer;
padding: 3px 7px;
border-radius: 3px; }
.multiple_selection_item:hover {
background: #f3f3f3; }
.intro {
display: flex;
flex-direction: column;
height: 60vh;
justify-content: center;
align-items: center;
color: #777; }
.intro_graphic:before {
content: "";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
font-size: calc(max(12vw,80px)); }
.intro_title {
font-size: calc(max(3.5vw,24px));
font-weight: 500; }
.intro ul {
list-style: none;
text-align: center;
padding: 0 20px;
margin: 20px 0 0;
font-weight: 300; }
.intro li {
margin: 5px 0; }
.intro em {
font-weight: 500;
font-style: normal; }
.warning {
display: flex;
flex-direction: column;
height: 60vh;
justify-content: center;
align-items: center;
color: #777; }
.warning:before {
content: "w";
font-family: 'OnlineObjects';
display: inline-block;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-weight: normal;
font-size: 68px; }
.warning_title {
font-weight: 500;
font-size: 16px;
margin: 10px 0 5px; }
.add_intro {
text-align: center;
font-size: 12px;
color: #777;
line-height: 1.4;
margin-bottom: 5px; }
.internetaddress {
margin: 20px auto;
max-width: 700px;
padding: 20px; }
.internetaddress .tags {
margin: -10px 0 10px;
justify-content: start; }
.internetaddress_head {
margin: 0 0 15px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding: 0 0 4px; }
.internetaddress_head a {
color: #777;
text-decoration: none;
font-size: 12px; }
.internetaddress_head a:hover {
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.plain {
font-family: "Menlo", "Monaco", "Courier", monospace;
white-space: pre-wrap;
line-height: 1.2857142857; }
.article {
font-family: "Lora", Georgia, serif;
font-size: 16px;
line-height: 1.5;
word-wrap: break-word;
word-break: break-word; }
.article h1 {
margin: 0 0 20px;
font-size: 28px;
line-height: 1.1;
font-family: "Playfair Display", "Lora", Georgia, serif; }
.article h2 {
font-size: 20px;
margin: 2em 0 0;
line-height: 1.1; }
.article p {
margin: 1em 0; }
.article > hr {
border: none;
border-top: 1px solid #ECE5D5;
margin: 40px 0; }
.article a {
color: #1577d0;
text-decoration-color: #c8d6e2; }
.article a:hover {
text-decoration-color: #1577d0; }
.article pre {
font-size: 14px;
overflow: auto;
-webkit-overflow-scrolling: touch;
color: #008e3f;
background: #f5f2e2;
padding: 5px 10px;
border-radius: 3px;
margin: 1em -10px; }
.article blockquote {
border-left: 4px dotted #ece9d7;
padding-left: 20px;
margin: 1em 20px; }
.article ul, .article ol, .article menu {
padding-left: 20px;
margin: 10px 0; }
.article_statement {
background: rgba(255, 238, 0, 0.5);
font-style: normal;
border-radius: 6px;
padding: 2px 3px;
margin: 0 -3px;
transition: background-color .3s;
cursor: pointer; }
.article_statement.is-highlighted {
background-color: #FF92AB;
color: #940028; }
.article_hypothesis {
background: rgba(175, 191, 40, 0.5);
font-style: normal;
border-radius: 6px;
padding: 0 3px;
margin: 0 -3px;
transition: background-color .3s; }
.article_hypothesis.is-highlighted {
background-color: #FF92AB;
color: #940028; }
.article_word {
background-color: #f3f3f3;
padding: 0 3px;
margin: 0 -3px;
border-radius: 10px; }
.article .person {
background: rgba(0, 90, 255, 0.1);
font-style: normal;
border-radius: 6px;
padding: 0 3px;
margin: 0 -3px; }
.article .person:before {
content: 'P';
display: inline-block;
background: #6d96e2;
border-radius: 2px;
font-size: 11px;
vertical-align: middle;
width: 12px;
height: 12px;
color: #fff;
text-align: center;
font-family: Verdana;
line-height: 12px;
margin-right: 0.3em;
border: 1px solid #5e81c3; }
.article .noun {
background: rgba(0, 90, 255, 0.1);
font-style: normal;
border-radius: 6px;
padding: 0 3px;
margin: 0 -3px; }
.article .sentence {
background: none; }
.article .sentence:before {
content: '{';
color: #999; }
.article .sentence:after {
content: '}';
color: #999; }
.article_picture {
display: inline-block;
position: relative;
background: #F5F2E2;
width: 100%;
font-size: 0; }
.article_picture_body {
display: inline-block; }
.article_picture_image {
position: absolute;
width: 100%;
height: auto; }
.article_image {
height: auto;
max-width: 100%;
filter: grayscale(1); }
@media (min-width: 900px) {
.perspective_title_text {
line-height: 1.1;
font-size: 2vw;
font-size: calc(max(18px, min(2vw, 32px))); }
.article h1 {
font-size: 42px; } } | 0.369429 | 0.050284 |
html {
font-size: 100%;
font-family: 'RalewaySemiBold', sans-serif;
width: 100%;
height: 100%;
}
body {
margin: 0;
width: 100%;
height: 100%;
max-height: 100%;
overflow-y: scroll;
background-color: #DDD;
}
header {
height: 4rem;
background-image: url(../tudocomp.svg);
background-repeat: no-repeat;
background-size: auto 3rem;
background-position: 0.5rem 0.5rem;
}
header h1 {
margin: 0;
padding-top: 2rem;
padding-right: 1rem;
font-size: 1rem;
font-weight: bold;
text-align: right;
}
section#content {
background-color: white;
}
tt, code {
font-family: 'Source Code Pro', monospace;
}
#main {
}
footer {
padding: 0.5rem;
text-align: right;
}
#dropzone-wrapper {
padding: 3rem;
}
#dropzone {
padding: 3rem;
text-align: center;
background-color: #CFC;
border: 2px solid #9B9;
border-radius: 0.5rem;
}
#dropzone h1 {
font-size: 2rem;
margin: 0;
padding-bottom: 0.5rem;
margin-bottom: 0.5rem;
border-bottom: 2px solid #9B9;
}
#dropzone p {
line-height: 2rem;
margin: 0;
}
#dropzone textarea {
width: 50%;
min-height: 5rem;
}
#dropzone p#json-error {
display: none;
font-weight: bold;
color: red;
background-color: #FDD;
border: 2px dotted red;
border-radius: 1rem;
padding: 0.5rem;
margin: 1rem;
}
#json-error-message {
font-weight: normal;
}
button {
vertical-align: baseline;
padding: 1px 0.5rem 1px 0.5rem;
font-family: 'RalewaySemiBold', sans-serif;
font-size: 1rem;
}
button#json-clear {
font-size: 0.8rem;
}
#display {
background-color: white;
}
#chart {
display: none;
overflow-x: scroll;
overflow-y: hidden;
text-align: center;
}
#chart svg {
}
#options {
font-size: 0.8rem;
padding: 0.5rem;
background-color: #666;
color: white;
margin-bottom: 0.5rem;
display: none;
}
#options h2 {
display: inline-block;
font-size: 100%;
margin: 0;
}
#options input[type=range] {
vertical-align: middle;
}
#options input[type=checkbox] {
vertical-align: middle;
}
#options button {
}
#options span {
padding-left: 0.5rem;
}
#options p {
display: inline-block;
margin: 0;
margin-left: 1rem;
}
#options p#export {
float: right;
}
#tip {
display: none;
font-size: 0.85rem;
position: absolute;
left: 0px;
top: 0px;
text-align: left;
margin-top: 1rem;
margin-left: 1rem;
background-color: rgba(0, 0, 0, 0.75);
border: 2px solid black;
border-radius: 0.5rem;
padding: 0.5rem;
color: white;
}
#tip .title {
font-weight: bold;
border-bottom: 1px solid white;
margin-bottom: 0.5rem;
}
#tip table {
border-spacing: 0;
border-collapse: collapse;
}
#tip table th,
#tip table td {
padding: 0;
}
#tip table th {
font-weight: normal;
}
#tip table td {
font-family: 'Source Code Pro', monospace;
padding-left: 1rem;
}
#tip tbody.ext tr:first-child {
border-top: 1px dotted white;
}
#data {
margin-left: 20%;
width: 60%;
margin-bottom: 2rem;
text-align: left;
padding: 0.5rem;
}
#data h1 {
margin: 0;
margin-bottom: 1rem;
margin-top: 2rem;
border-bottom: 2px solid #AAA;
font-size: 1.5rem;
font-weight: bold;
}
#data .phase {
margin-top: 0.5rem;
border: 4px solid #AAA;
border-radius: 0.5rem;
padding: 0.5rem;
}
#data .phase .phase {
margin-left: 2rem;
}
#data .phase .title {
font-weight: bold;
margin-bottom: 0.5rem;
}
#data .phase .sub {
margin-top: 2rem;
margin-left: 2rem;
}
#data .phase .leaf {
border-left-width: 1rem;
border-left-style: solid;
padding-left: 0.5rem;
font-weight: bold;
}
#data .phase .content {
}
#data table {
margin-left: 2rem;
font-size: 0.85rem;
border: 2px solid #AAA;
border-collapse: collapse;
}
#data #meta h2 {
font-size: 1rem;
font-weight: bold;
margin: 0 0 0.5rem 0;
padding-left: 1rem;
}
#data #meta table {
margin-left: 0;
}
#data table th, #data table td {
padding: 0.25rem;
border: 1px solid #AAA;
}
#data table th {
font-weight: normal;
}
#data tbody.ext tr:first-child {
border-top: 4px solid #AAA;
}
#data tbody.ext td, #data tbody.ext th {
background-color: #DDD;
}
#data table td {
font-family: 'Source Code Pro', monospace;
text-align: right;
padding-left: 1rem;
} | www/charter/style.css | html {
font-size: 100%;
font-family: 'RalewaySemiBold', sans-serif;
width: 100%;
height: 100%;
}
body {
margin: 0;
width: 100%;
height: 100%;
max-height: 100%;
overflow-y: scroll;
background-color: #DDD;
}
header {
height: 4rem;
background-image: url(../tudocomp.svg);
background-repeat: no-repeat;
background-size: auto 3rem;
background-position: 0.5rem 0.5rem;
}
header h1 {
margin: 0;
padding-top: 2rem;
padding-right: 1rem;
font-size: 1rem;
font-weight: bold;
text-align: right;
}
section#content {
background-color: white;
}
tt, code {
font-family: 'Source Code Pro', monospace;
}
#main {
}
footer {
padding: 0.5rem;
text-align: right;
}
#dropzone-wrapper {
padding: 3rem;
}
#dropzone {
padding: 3rem;
text-align: center;
background-color: #CFC;
border: 2px solid #9B9;
border-radius: 0.5rem;
}
#dropzone h1 {
font-size: 2rem;
margin: 0;
padding-bottom: 0.5rem;
margin-bottom: 0.5rem;
border-bottom: 2px solid #9B9;
}
#dropzone p {
line-height: 2rem;
margin: 0;
}
#dropzone textarea {
width: 50%;
min-height: 5rem;
}
#dropzone p#json-error {
display: none;
font-weight: bold;
color: red;
background-color: #FDD;
border: 2px dotted red;
border-radius: 1rem;
padding: 0.5rem;
margin: 1rem;
}
#json-error-message {
font-weight: normal;
}
button {
vertical-align: baseline;
padding: 1px 0.5rem 1px 0.5rem;
font-family: 'RalewaySemiBold', sans-serif;
font-size: 1rem;
}
button#json-clear {
font-size: 0.8rem;
}
#display {
background-color: white;
}
#chart {
display: none;
overflow-x: scroll;
overflow-y: hidden;
text-align: center;
}
#chart svg {
}
#options {
font-size: 0.8rem;
padding: 0.5rem;
background-color: #666;
color: white;
margin-bottom: 0.5rem;
display: none;
}
#options h2 {
display: inline-block;
font-size: 100%;
margin: 0;
}
#options input[type=range] {
vertical-align: middle;
}
#options input[type=checkbox] {
vertical-align: middle;
}
#options button {
}
#options span {
padding-left: 0.5rem;
}
#options p {
display: inline-block;
margin: 0;
margin-left: 1rem;
}
#options p#export {
float: right;
}
#tip {
display: none;
font-size: 0.85rem;
position: absolute;
left: 0px;
top: 0px;
text-align: left;
margin-top: 1rem;
margin-left: 1rem;
background-color: rgba(0, 0, 0, 0.75);
border: 2px solid black;
border-radius: 0.5rem;
padding: 0.5rem;
color: white;
}
#tip .title {
font-weight: bold;
border-bottom: 1px solid white;
margin-bottom: 0.5rem;
}
#tip table {
border-spacing: 0;
border-collapse: collapse;
}
#tip table th,
#tip table td {
padding: 0;
}
#tip table th {
font-weight: normal;
}
#tip table td {
font-family: 'Source Code Pro', monospace;
padding-left: 1rem;
}
#tip tbody.ext tr:first-child {
border-top: 1px dotted white;
}
#data {
margin-left: 20%;
width: 60%;
margin-bottom: 2rem;
text-align: left;
padding: 0.5rem;
}
#data h1 {
margin: 0;
margin-bottom: 1rem;
margin-top: 2rem;
border-bottom: 2px solid #AAA;
font-size: 1.5rem;
font-weight: bold;
}
#data .phase {
margin-top: 0.5rem;
border: 4px solid #AAA;
border-radius: 0.5rem;
padding: 0.5rem;
}
#data .phase .phase {
margin-left: 2rem;
}
#data .phase .title {
font-weight: bold;
margin-bottom: 0.5rem;
}
#data .phase .sub {
margin-top: 2rem;
margin-left: 2rem;
}
#data .phase .leaf {
border-left-width: 1rem;
border-left-style: solid;
padding-left: 0.5rem;
font-weight: bold;
}
#data .phase .content {
}
#data table {
margin-left: 2rem;
font-size: 0.85rem;
border: 2px solid #AAA;
border-collapse: collapse;
}
#data #meta h2 {
font-size: 1rem;
font-weight: bold;
margin: 0 0 0.5rem 0;
padding-left: 1rem;
}
#data #meta table {
margin-left: 0;
}
#data table th, #data table td {
padding: 0.25rem;
border: 1px solid #AAA;
}
#data table th {
font-weight: normal;
}
#data tbody.ext tr:first-child {
border-top: 4px solid #AAA;
}
#data tbody.ext td, #data tbody.ext th {
background-color: #DDD;
}
#data table td {
font-family: 'Source Code Pro', monospace;
text-align: right;
padding-left: 1rem;
} | 0.419053 | 0.110184 |
img.classImg_centered {
width: 550px;
height: auto;
}
/* Inputs and Labels */
label.classLabel_checkbox {
display: block;
padding-left: 15px;
text-indent: -15px;
}
input.classInput_checkbox {
width: 13px;
height: 13px;
padding: 0;
margin: 0;
vertical-align: middle;
position: relative;
top: -1px;
overflow: hidden;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 2001; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
} a {
color: #ee8400;
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid #888;
width: 80%;
min-width: 570px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s;
}
/* Video Responsive Size */
.classDiv_vidHelper {
position: relative;
width: 55%;
height: 0;
padding-bottom: 30%;
margin:0 auto;
}
.classIframe_introVid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin:0 auto;
}
/* Add Animation to the Modal */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
/* The Close Button */
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 2px 16px;
background-color: #F29100;
color: white;
}
.modal-body {
padding: 6px 16px;
text-align: center;
}
.modal-footer {
padding: 2px 16px;
background-color: #F29100;
color: #FAD388;
text-align: right;
}
p.classP_title1 {
font-size: 20pt;
font-weight: bold;
padding: 0;
margin: 0;
}
/* Cookies Modal */
.modal_cookies {
width: 30%;
min-width: 50px;
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 2002; /* Sit on top */
right: 40px;
bottom: 20px;
}
/* Cookies Modal Content */
.modal-content_cookies {
position: relative;
border: 2px solid #F29100;
background-color: #fefefe;
border-radius: 10px;
padding: 0 10px;
width: 100%;
color: #332100;
-webkit-animation-name: animateright;
-webkit-animation-duration: 0.4s;
animation-name: animateright;
animation-duration: 0.4s;
}
/* Add Animation to the Cookies Modal */
@-webkit-keyframes animateright {
from {right:-200px; opacity:0}
to {right:40px; opacity:1}
}
@keyframes animateright {
from {right:-200px; opacity:0}
to {right:40px; opacity:1}
}
/* Got It! Button */
.modal-footer_cookies {
background-color: #F29100;
color: #EDEDED;
font-size: 16px;
font-weight: bold;
text-align: center;
width: 80%;
height: 40px;
line-height: 40px;
border-radius: 5px;
margin: auto;
padding: 0;
}
.modal-footer_cookies:hover,
.modal-footer_cookies:focus {
background-color: #f2ad00;
color: white;
text-decoration: none;
cursor: pointer;
} | input/css/custom_intro.css | img.classImg_centered {
width: 550px;
height: auto;
}
/* Inputs and Labels */
label.classLabel_checkbox {
display: block;
padding-left: 15px;
text-indent: -15px;
}
input.classInput_checkbox {
width: 13px;
height: 13px;
padding: 0;
margin: 0;
vertical-align: middle;
position: relative;
top: -1px;
overflow: hidden;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 2001; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
} a {
color: #ee8400;
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid #888;
width: 80%;
min-width: 570px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s;
}
/* Video Responsive Size */
.classDiv_vidHelper {
position: relative;
width: 55%;
height: 0;
padding-bottom: 30%;
margin:0 auto;
}
.classIframe_introVid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin:0 auto;
}
/* Add Animation to the Modal */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
/* The Close Button */
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 2px 16px;
background-color: #F29100;
color: white;
}
.modal-body {
padding: 6px 16px;
text-align: center;
}
.modal-footer {
padding: 2px 16px;
background-color: #F29100;
color: #FAD388;
text-align: right;
}
p.classP_title1 {
font-size: 20pt;
font-weight: bold;
padding: 0;
margin: 0;
}
/* Cookies Modal */
.modal_cookies {
width: 30%;
min-width: 50px;
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 2002; /* Sit on top */
right: 40px;
bottom: 20px;
}
/* Cookies Modal Content */
.modal-content_cookies {
position: relative;
border: 2px solid #F29100;
background-color: #fefefe;
border-radius: 10px;
padding: 0 10px;
width: 100%;
color: #332100;
-webkit-animation-name: animateright;
-webkit-animation-duration: 0.4s;
animation-name: animateright;
animation-duration: 0.4s;
}
/* Add Animation to the Cookies Modal */
@-webkit-keyframes animateright {
from {right:-200px; opacity:0}
to {right:40px; opacity:1}
}
@keyframes animateright {
from {right:-200px; opacity:0}
to {right:40px; opacity:1}
}
/* Got It! Button */
.modal-footer_cookies {
background-color: #F29100;
color: #EDEDED;
font-size: 16px;
font-weight: bold;
text-align: center;
width: 80%;
height: 40px;
line-height: 40px;
border-radius: 5px;
margin: auto;
padding: 0;
}
.modal-footer_cookies:hover,
.modal-footer_cookies:focus {
background-color: #f2ad00;
color: white;
text-decoration: none;
cursor: pointer;
} | 0.273671 | 0.057679 |
body
{
margin-left: 15px;
background-image: url("background.jpg");
}
#space
{
height: 150px;
}
@media screen and (max-width: 500px)
{
#sec1
{
opacity: 0.9;
height: 600px;
background-color: maroon;
}
ul
{
font-size: 200%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
width: 100%;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 30px 0px;
text-decoration: none;
}
.about
{
border-radius: 40px;
color: yellow;
font-size: 200%;
text-align: center;
background-color: green;
height: 70px;
width: 100%;
}
#eabout
{
padding: 7px;
font-size: 250%;
height: 150px;
}
#sec2
{
font-size: 200%;
color: white;
height: 750px;
background-color: maroon;
opacity: 0.9;
}
#ab
{
font-size: 40%;
padding: 20px;
}
#edu
{
text-align: left;
font-size: 70%;
padding: 15px;
}
#myphoto
{
border-radius: 100%;
position: absolute;
top: -300px;
left: 400px;
height: 300px;
width: 40%;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
#sec3
{
font-size: 120%;
color: white;
height: 850px;
background-color: maroon;
opacity: 0.9;
}
}
@media screen and (min-width: 500px) and (max-width: 600px)
{
#sec1
{
opacity: 0.9;
height: 600px;
background-color: maroon;
}
ul
{
font-size: 200%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
width: 100%;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 30px 0px;
text-decoration: none;
}
.about
{
border-radius: 40px;
color: yellow;
font-size: 200%;
text-align: center;
background-color: green;
height: 70px;
width: 100%;
}
#eabout
{
padding: 7px;
font-size: 250%;
}
#sec2
{
font-size: 200%;
color: white;
height: 600px;
background-color: maroon;
opacity: 0.9;
}
#ab
{
font-size: 40%;
padding: 20px;
}
#edu
{
text-align: left;
font-size: 70%;
padding: 15px;
}
#myphoto
{
border-radius: 100%;
position: absolute;
top: -300px;
left: 400px;
height: 300px;
width: 40%;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
#sec3
{
font-size: 120%;
color: white;
height: 500px;
background-color: maroon;
opacity: 0.9;
}
}
@media screen and (min-width: 600px) and (max-width: 900px)
{
#sec1
{
opacity: 0.9;
height: 600px;
background-color: maroon;
}
ul
{
font-size: 200%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
width: 100%;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 30px 0px;
text-decoration: none;
}
.about
{
border-radius: 40px;
color: yellow;
font-size: 200%;
text-align: center;
background-color: green;
height: 70px;
width: 100%;
}
#eabout
{
padding: 7px;
font-size: 250%;
}
#sec2
{
font-size: 200%;
color: white;
height: 560px;
background-color: maroon;
opacity: 0.9;
}
#ab
{
font-size: 40%;
padding: 20px;
}
#edu
{
text-align: left;
font-size: 70%;
padding: 15px;
}
#myphoto
{
border-radius: 100%;
position: absolute;
top: -300px;
left: 400px;
height: 300px;
width: 40%;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
#sec3
{
font-size: 120%;
color: white;
height: 380px;
background-color: maroon;
opacity: 0.9;
}
}
@media screen and (min-width: 900px) and (max-width: 1280px)
{
#sec1
{
opacity: 0.9;
height: 50px;
background-color: maroon;
}
ul
{
font-size: 130%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
float:left;
width: 20%;
}
li a:hover
{
background-color: black;
transition-duration: 0.3;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 7px 10px;
text-decoration: none;
transition-duration: 0.5s;
}
.about
{
border-radius: 40px;
color: yellow;
font-size: 100%;
text-align: center;
background-color: green;
height: 70px;
width: 100%;
}
#eabout
{
padding: 7px;
font-size: 150%;
}
#sec2
{
font-size: 350%;
color: white;
height: 560px;
background-color: maroon;
opacity: 0.9;
}
#ab
{
font-size: 40%;
padding: 20px;
}
#edu
{
text-align: left;
font-size: 60%;
padding: 15px;
}
#myphoto
{
border-radius: 100%;
position: absolute;
top: 80px;
left: -250px;
height: 400px;
width: 100%;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
#sec3
{
font-size: 200%;
color: white;
height: 350px;
background-color: maroon;
opacity: 0.9;
}
}
@media screen and (min-width: 1280px)
{
#sec1
{
opacity: 0.9;
height: 50px;
background-color: maroon;
}
#myphoto
{
border-radius: 100%;
position: absolute;
height: 400px;
width: 100%;
top: 20px;
left: -50px;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
ul
{
font-size: 130%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
float:left;
width: 20%;
}
li a:hover
{
background-color: black;
transition-duration: 0.3;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 7px 10px;
text-decoration: none;
transition-duration: 0.5s;
}
#sec2
{
font-size: 200%;
color: white;
height: 550px;
background-color: maroon;
opacity: 0.9;
}
#sec3
{
font-size: 200%;
color: white;
height: 400px;
background-color: maroon;
opacity: 0.9;
}
.about
{
color: yellow;
font-size: 300%;
background-color: green;
height: 120px;
width: 100%;
text-align: center;
}
#space
{
height: 300px;
}
}
#cont
{
font-size: 150%;
color: maroon;
}
.footer
{
border-radius: 20px;
left: 0;
bottom: 0;
text-align: center;
height: 170px;
color: blue;
background-color: grey;
opacity: 0.9;
font-size: 100%;
width: 100%;
}
input[type=text], input[type=E-mail], select, textarea
{
color: black;
background-color: white;
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit]
{
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.container
{
width: 100%;
border-radius: 10px;
background-color: lightblue;
opacity: 0.9;
padding: 20px;
}
label
{
color: maroon;
font-size: 20px;
}
input::-moz-placeholder,textarea::-moz-placeholder
{
color: black !important;
}
#row1
{
height: 100px;
}
div
{
border-radius: 10px;
}
#skill
{
opacity: 0.9;
height: 400px;
background-color: yellow;
} | port.css | body
{
margin-left: 15px;
background-image: url("background.jpg");
}
#space
{
height: 150px;
}
@media screen and (max-width: 500px)
{
#sec1
{
opacity: 0.9;
height: 600px;
background-color: maroon;
}
ul
{
font-size: 200%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
width: 100%;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 30px 0px;
text-decoration: none;
}
.about
{
border-radius: 40px;
color: yellow;
font-size: 200%;
text-align: center;
background-color: green;
height: 70px;
width: 100%;
}
#eabout
{
padding: 7px;
font-size: 250%;
height: 150px;
}
#sec2
{
font-size: 200%;
color: white;
height: 750px;
background-color: maroon;
opacity: 0.9;
}
#ab
{
font-size: 40%;
padding: 20px;
}
#edu
{
text-align: left;
font-size: 70%;
padding: 15px;
}
#myphoto
{
border-radius: 100%;
position: absolute;
top: -300px;
left: 400px;
height: 300px;
width: 40%;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
#sec3
{
font-size: 120%;
color: white;
height: 850px;
background-color: maroon;
opacity: 0.9;
}
}
@media screen and (min-width: 500px) and (max-width: 600px)
{
#sec1
{
opacity: 0.9;
height: 600px;
background-color: maroon;
}
ul
{
font-size: 200%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
width: 100%;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 30px 0px;
text-decoration: none;
}
.about
{
border-radius: 40px;
color: yellow;
font-size: 200%;
text-align: center;
background-color: green;
height: 70px;
width: 100%;
}
#eabout
{
padding: 7px;
font-size: 250%;
}
#sec2
{
font-size: 200%;
color: white;
height: 600px;
background-color: maroon;
opacity: 0.9;
}
#ab
{
font-size: 40%;
padding: 20px;
}
#edu
{
text-align: left;
font-size: 70%;
padding: 15px;
}
#myphoto
{
border-radius: 100%;
position: absolute;
top: -300px;
left: 400px;
height: 300px;
width: 40%;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
#sec3
{
font-size: 120%;
color: white;
height: 500px;
background-color: maroon;
opacity: 0.9;
}
}
@media screen and (min-width: 600px) and (max-width: 900px)
{
#sec1
{
opacity: 0.9;
height: 600px;
background-color: maroon;
}
ul
{
font-size: 200%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
width: 100%;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 30px 0px;
text-decoration: none;
}
.about
{
border-radius: 40px;
color: yellow;
font-size: 200%;
text-align: center;
background-color: green;
height: 70px;
width: 100%;
}
#eabout
{
padding: 7px;
font-size: 250%;
}
#sec2
{
font-size: 200%;
color: white;
height: 560px;
background-color: maroon;
opacity: 0.9;
}
#ab
{
font-size: 40%;
padding: 20px;
}
#edu
{
text-align: left;
font-size: 70%;
padding: 15px;
}
#myphoto
{
border-radius: 100%;
position: absolute;
top: -300px;
left: 400px;
height: 300px;
width: 40%;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
#sec3
{
font-size: 120%;
color: white;
height: 380px;
background-color: maroon;
opacity: 0.9;
}
}
@media screen and (min-width: 900px) and (max-width: 1280px)
{
#sec1
{
opacity: 0.9;
height: 50px;
background-color: maroon;
}
ul
{
font-size: 130%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
float:left;
width: 20%;
}
li a:hover
{
background-color: black;
transition-duration: 0.3;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 7px 10px;
text-decoration: none;
transition-duration: 0.5s;
}
.about
{
border-radius: 40px;
color: yellow;
font-size: 100%;
text-align: center;
background-color: green;
height: 70px;
width: 100%;
}
#eabout
{
padding: 7px;
font-size: 150%;
}
#sec2
{
font-size: 350%;
color: white;
height: 560px;
background-color: maroon;
opacity: 0.9;
}
#ab
{
font-size: 40%;
padding: 20px;
}
#edu
{
text-align: left;
font-size: 60%;
padding: 15px;
}
#myphoto
{
border-radius: 100%;
position: absolute;
top: 80px;
left: -250px;
height: 400px;
width: 100%;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
#sec3
{
font-size: 200%;
color: white;
height: 350px;
background-color: maroon;
opacity: 0.9;
}
}
@media screen and (min-width: 1280px)
{
#sec1
{
opacity: 0.9;
height: 50px;
background-color: maroon;
}
#myphoto
{
border-radius: 100%;
position: absolute;
height: 400px;
width: 100%;
top: 20px;
left: -50px;
z-index: 1;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
ul
{
font-size: 130%;
list-style-type: none;
overflow: hidden;
text-decoration: none;
}
#hor_list
{
float:left;
width: 20%;
}
li a:hover
{
background-color: black;
transition-duration: 0.3;
}
li a
{
display: block;
color: white;
text-align: center;
padding: 7px 10px;
text-decoration: none;
transition-duration: 0.5s;
}
#sec2
{
font-size: 200%;
color: white;
height: 550px;
background-color: maroon;
opacity: 0.9;
}
#sec3
{
font-size: 200%;
color: white;
height: 400px;
background-color: maroon;
opacity: 0.9;
}
.about
{
color: yellow;
font-size: 300%;
background-color: green;
height: 120px;
width: 100%;
text-align: center;
}
#space
{
height: 300px;
}
}
#cont
{
font-size: 150%;
color: maroon;
}
.footer
{
border-radius: 20px;
left: 0;
bottom: 0;
text-align: center;
height: 170px;
color: blue;
background-color: grey;
opacity: 0.9;
font-size: 100%;
width: 100%;
}
input[type=text], input[type=E-mail], select, textarea
{
color: black;
background-color: white;
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit]
{
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.container
{
width: 100%;
border-radius: 10px;
background-color: lightblue;
opacity: 0.9;
padding: 20px;
}
label
{
color: maroon;
font-size: 20px;
}
input::-moz-placeholder,textarea::-moz-placeholder
{
color: black !important;
}
#row1
{
height: 100px;
}
div
{
border-radius: 10px;
}
#skill
{
opacity: 0.9;
height: 400px;
background-color: yellow;
} | 0.296858 | 0.088269 |
.clearfix:before,
.clearfix:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after {
display: table;
content: " ";
}
.clearfix:after,
.form-horizontal .form-group:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after {
clear: both;
}
.center-block {
display: block;
margin-right: auto;
margin-left: auto;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.hidden {
display: none !important;
}
.affix {
position: fixed;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: 700;
}
input[type="search"] {
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
input[type="file"] {
display: block;
}
input[type="range"] {
display: block;
width: 100%;
}
select[multiple],
select[size] {
height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
output {
display: block;
padding-top: 7px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
color: #999;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #999;
}
.form-control::-webkit-input-placeholder {
color: #999;
}
.form-control::-ms-expand {
background-color: transparent;
border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eeeeee;
opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
cursor: not-allowed;
}
textarea.form-control {
height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
line-height: 34px;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm,
.input-group-sm input[type="date"],
.input-group-sm input[type="time"],
.input-group-sm input[type="datetime-local"],
.input-group-sm input[type="month"] {
line-height: 30px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg,
.input-group-lg input[type="date"],
.input-group-lg input[type="time"],
.input-group-lg input[type="datetime-local"],
.input-group-lg input[type="month"] {
line-height: 46px;
}
}
.form-group {
margin-bottom: 15px;
}
.radio,
.checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
.radio label,
.checkbox label {
min-height: 20px;
padding-left: 20px;
margin-bottom: 0;
font-weight: 400;
cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-top: 4px \9;
margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
font-weight: 400;
vertical-align: middle;
cursor: pointer;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
.form-control-static {
min-height: 34px;
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-right: 0;
padding-left: 0;
}
.input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
select.input-sm {
height: 30px;
line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
height: auto;
}
.form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.form-group-sm select.form-control {
height: 30px;
line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
height: auto;
}
.form-group-sm .form-control-static {
height: 30px;
min-height: 32px;
padding: 6px 10px;
font-size: 12px;
line-height: 1.5;
}
.input-lg {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
select.input-lg {
height: 46px;
line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
.form-group-lg .form-control {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.form-group-lg select.form-control {
height: 46px;
line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
height: auto;
}
.form-group-lg .form-control-static {
height: 46px;
min-height: 38px;
padding: 11px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.has-feedback {
position: relative;
}
.has-feedback .form-control {
padding-right: 42.5px;
}
.form-control-feedback {
position: absolute;
top: 0;
right: 0;
z-index: 2;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
width: 46px;
height: 46px;
line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
color: #3c763d;
}
.has-success .form-control {
border-color: #3c763d;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
border-color: #2b542c;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
color: #3c763d;
background-color: #dff0d8;
border-color: #3c763d;
}
.has-success .form-control-feedback {
color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
color: #8a6d3b;
}
.has-warning .form-control {
border-color: #8a6d3b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
border-color: #66512c;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
color: #a94442;
}
.has-error .form-control {
border-color: #a94442;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
border-color: #843534;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
color: #a94442;
background-color: #f2dede;
border-color: #a94442;
}
.has-error .form-control-feedback {
color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373;
}
@media (min-width: 768px) {
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.form-inline .form-control-static {
display: inline-block;
}
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
.form-inline .input-group > .form-control {
width: 100%;
}
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
padding-top: 7px;
margin-top: 0;
margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 27px;
}
.form-horizontal .form-group {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
padding-top: 7px;
margin-bottom: 0;
text-align: right;
}
}
.form-horizontal .has-feedback .form-control-feedback {
right: 15px;
}
@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 11px;
font-size: 18px;
}
}
@media (min-width: 768px) {
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
font-size: 12px;
}
}
.navbar {
position: relative;
min-height: 70px;
margin-bottom: 0;
border: 0;
}
.navbar.affix {
width: 100%;
position: fixed;
z-index: 999;
}
@media (min-width: 768px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
padding-right: 15px;
padding-left: 15px;
overflow-x: visible;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-right: 0;
padding-left: 0;
}
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
@media (min-width: 768px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
.navbar-static-top {
border-radius: 0;
}
}
.navbar-brand {
float: left;
height: 70px;
padding: 25px 15px;
font-size: 18px;
line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
text-decoration: none;
}
.navbar-brand > img {
display: block;
}
@media (min-width: 768px) {
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
.navbar-toggle {
position: relative;
float: right;
padding: 9px 10px;
margin-right: 15px;
margin-top: 18px;
margin-bottom: 18px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.navbar-toggle:focus {
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
.navbar-toggle {
display: none;
}
}
.navbar-nav {
margin: 12.5px -15px;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 25px;
padding-bottom: 25px;
}
}
.navbar-form {
padding: 10px 15px;
margin-right: -15px;
margin-left: -15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
margin-top: 18px;
margin-bottom: 18px;
}
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.navbar-form {
width: auto;
padding-top: 0;
padding-bottom: 0;
margin-right: 0;
margin-left: 0;
border: 0;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: 18px;
margin-bottom: 18px;
}
.navbar-btn.btn-sm {
margin-top: 20px;
margin-bottom: 20px;
}
.navbar-btn.btn-xs {
margin-top: 24px;
margin-bottom: 24px;
}
.navbar-text {
margin-top: 25px;
margin-bottom: 25px;
}
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-right: 15px;
margin-left: 15px;
}
}
@media (min-width: 768px) {
.navbar-left {
float: left !important;
}
.navbar-right {
float: right !important;
margin-right: -15px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.navbar-default {
background-color: #FFFFFF;
border-color: #eeeeee;
}
.navbar-default .navbar-brand {
color: #222222;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #090909;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #222222;
}
.navbar-default .navbar-nav > li > a {
color: #222222;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #1b682c;
background-color: #FFF;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #1b682c;
background-color: #FFF;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #222222;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #1b682c;
background-color: #FFF;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
}
.navbar-default .navbar-toggle {
border-color: #1b682c;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #30b94e;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #1b682c;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #eeeeee;
}
.navbar-default .navbar-link {
color: #222222;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #222222;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc;
}
.navbar-inverse {
background-color: #1b682c;
border-color: #10401b;
}
.navbar-inverse .navbar-brand {
color: #FFF;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
color: #FFF;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
color: #fff;
background-color: transparent;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #10401b;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #10401b;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #FFF;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent;
}
}
.navbar-inverse .navbar-toggle {
border-color: #FFF;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #144c20;
}
.navbar-inverse .navbar-link {
color: #FFF;
}
.navbar-inverse .navbar-link:hover {
color: #fff;
}
.navbar-inverse .btn-link {
color: #FFF;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: 400;
line-height: 2.85714286;
color: #333333;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
/*!
* Bootstrap v3.4.1 (https://getbootstrap.com/)
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
.text-muted {
color: #777777;
}
.text-primary {
color: #1b682c;
}
a.text-primary:hover,
a.text-primary:focus {
color: #10401b;
}
.text-success {
color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
color: #2b542c;
}
.text-info {
color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
color: #245269;
}
.text-warning {
color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
color: #66512c;
}
.text-danger {
color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
color: #843534;
}
.bg-primary {
color: #fff;
background-color: #1b682c !important;
}
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #10401b !important;
}
.bg-success {
background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
background-color: #c1e2b3;
}
.bg-info {
background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
background-color: #afd9ee;
}
.bg-warning {
background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #f7ecb5;
}
.bg-danger {
background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
background-color: #e4b9b9;
}
.btn-default.disabled,
.btn-primary.disabled,
.btn-success.disabled,
.btn-info.disabled,
.btn-warning.disabled,
.btn-danger.disabled,
.btn-default[disabled],
.btn-primary[disabled],
.btn-success[disabled],
.btn-info[disabled],
.btn-warning[disabled],
.btn-danger[disabled],
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-danger {
box-shadow: none;
}
.btn-default .badge,
.btn-primary .badge,
.btn-success .badge,
.btn-info .badge,
.btn-warning .badge,
.btn-danger .badge {
text-shadow: none;
}
.btn:active,
.btn.active {
background-image: none;
}
.btn-default {
background-color: #fff;
background-repeat: repeat-x;
border-color: #fff;
text-shadow: 0 1px 0 #fff;
border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus {
background-color: #e0e0e0;
background-position: 0 -15px;
border-color: #fff;
}
.btn-default:active,
.btn-default.active {
background-color: #e0e0e0;
border-color: #fff;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
background-color: #e0e0e0;
background-image: none;
}
.btn-primary {
background-color: #1b682c;
background-repeat: repeat-x;
border-color: #1b682c;
}
.btn-primary:hover,
.btn-primary:focus {
background-color: #0e3717;
background-position: 0 -15px;
border-color: #1b682c;
}
.btn-primary:active,
.btn-primary.active {
background-color: #0e3717;
border-color: #1b682c;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
background-color: #0e3717;
background-image: none;
}
.btn-success {
background-color: #5cb85c;
background-repeat: repeat-x;
border-color: #5cb85c;
}
.btn-success:hover,
.btn-success:focus {
background-color: #419641;
background-position: 0 -15px;
border-color: #5cb85c;
}
.btn-success:active,
.btn-success.active {
background-color: #419641;
border-color: #5cb85c;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
background-color: #419641;
background-image: none;
}
.btn-info {
background-color: #5bc0de;
background-repeat: repeat-x;
border-color: #5bc0de;
}
.btn-info:hover,
.btn-info:focus {
background-color: #2aabd2;
background-position: 0 -15px;
border-color: #5bc0de;
}
.btn-info:active,
.btn-info.active {
background-color: #2aabd2;
border-color: #5bc0de;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
background-color: #2aabd2;
background-image: none;
}
.btn-warning {
background-color: #f0ad4e;
background-repeat: repeat-x;
border-color: #f0ad4e;
}
.btn-warning:hover,
.btn-warning:focus {
background-color: #eb9316;
background-position: 0 -15px;
border-color: #f0ad4e;
}
.btn-warning:active,
.btn-warning.active {
background-color: #eb9316;
border-color: #f0ad4e;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
background-color: #eb9316;
background-image: none;
}
.btn-danger {
background-color: #d9534f;
background-repeat: repeat-x;
border-color: #d9534f;
}
.btn-danger:hover,
.btn-danger:focus {
background-color: #c12e2a;
background-position: 0 -15px;
border-color: #d9534f;
}
.btn-danger:active,
.btn-danger.active {
background-color: #c12e2a;
border-color: #d9534f;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
background-color: #c12e2a;
background-image: none;
}
.thumbnail,
.img-thumbnail {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
background-color: #e8e8e8;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
background-color: #165423;
}
.navbar-default {
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border-radius: 0;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
.navbar-default .navbar-brand {
color: #1b682c;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:active {
color: #1b682c;
}
.navbar-brand,
.navbar-nav > li > a {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.navbar-inverse {
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border-radius: 0;
}
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav > li > a {
text-shadow: none;
}
.navbar-static-top,
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
@media (max-width: 767px) {
.navbar .navbar-nav .open .dropdown-menu > .active > a,
.navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
}
}
.alert {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.alert-success {
border-color: #b2dba1;
}
.alert-info {
border-color: #9acfea;
}
.alert-warning {
border-color: #f5e79e;
}
.alert-danger {
border-color: #dca7a7;
}
.progress {
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar {
background-image: linear-gradient(to bottom, #1b682c 0%, #10401b 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1b682c', endColorstr='#ff10401b', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-success {
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-info {
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-warning {
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-danger {
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-striped {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.list-group {
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
text-shadow: 0 -1px 0 #10401b;
background-image: linear-gradient(to bottom, #1b682c 0%, #134a1f 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1b682c', endColorstr='#ff134a1f', GradientType=0);
background-repeat: repeat-x;
border-color: #134a1f;
}
.list-group-item.active .badge,
.list-group-item.active:hover .badge,
.list-group-item.active:focus .badge {
text-shadow: none;
}
.well {
border-color: #dcdcdc;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
}
.login-logo,
.register-logo {
font-size: 35px;
text-align: center;
padding-top: 25px;
}
.login-logo a,
.register-logo a {
color: #1b682c;
}
.login-page,
.register-page {
background-color: #eee;
background-image: url(/images/login-bg.png);
background-repeat: no-repeat;
background-size: cover;
padding-top: 7%;
}
.login-box,
.register-box {
width: 360px;
margin: auto;
background-color: white;
}
@media (max-width: 768px) {
.login-box,
.register-box {
width: 90%;
margin-top: 20px;
}
}
.login-box-body,
.register-box-body {
background: #fff;
padding: 20px;
border-top: 0;
color: #666;
}
.login-box-body .form-control-feedback,
.register-box-body .form-control-feedback {
color: #777;
}
.login-box-msg,
.register-box-msg {
margin: 0;
text-align: center;
padding: 0 20px 20px 20px;
}
.social-auth-links {
margin: 10px 0;
}
html,
body {
height: 100%;
background-color: #efefef;
font-family: STZhongsong, "华文中宋", "新宋体";
}
.wrap {
min-height: 100%;
height: auto;
}
.wrap > .container {
padding: 0px;
}
.footer {
background-color: #1b682c;
color: white;
padding: 40px 0 60px;
}
.footer h4,
.footer h1,
.footer h2,
.footer h3,
.footer h5 {
font-weight: bold;
}
.footer,
.footer a,
.footer a:hover,
.footer a:active {
color: white;
}
.footer .site-link {
margin-top: 25px;
}
.footer .friend-links-box {
margin-bottom: 20px;
}
.footer .friend-links-box h4 {
margin-bottom: 15px;
}
.footer .footer-link {
margin-bottom: 5px;
}
.footer .footer-link .qrcode-box {
width: 120px;
}
.footer .footer-link .qrcode-box .name {
margin-bottom: 5px;
}
.footer .footer-link .qrcode-box .qrcode {
width: 100%;
border-radius: 6px;
}
.btn {
border-radius: 100px;
}
.not-set {
color: #c55;
font-style: italic;
}
/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
padding-left: 5px;
}
a.asc:after {
content: "\e151";
}
a.desc:after {
content: "\e152";
}
.sort-numerical a.asc:after {
content: "\e153";
}
.sort-numerical a.desc:after {
content: "\e154";
}
.sort-ordinal a.asc:after {
content: "\e155";
}
.sort-ordinal a.desc:after {
content: "\e156";
}
.grid-view th {
white-space: nowrap;
}
.hint-block {
display: block;
margin-top: 5px;
color: #999;
}
.error-summary {
color: #a94442;
background: #fdf7f7;
border-left: 3px solid #eed3d7;
padding: 10px 20px;
margin: 0 0 15px 0;
}
.grid-view .summary {
padding-bottom: 10px;
}
.breadcrumb {
margin-top: 15px;
margin-bottom: 15px;
background-color: transparent;
}
.dua {
/* 小屏幕(平板,大于等于 768px) */
/* 中等屏幕(桌面显示器,大于等于 992px) */
/* 大屏幕(大桌面显示器,大于等于 1200px) */
}
.dua.dua-banner {
background-color: #1b682c;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.dua .jumbotron {
background-color: transparent;
padding-right: 15px;
margin-bottom: 0;
}
.dua .jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
.dua .demo-swiper {
position: relative;
margin: auto;
width: 80%;
height: 90px;
text-align: center;
background-color: white;
border-top-left-radius: 16px;
border-top-right-radius: 16px;
border-color: #dddddd;
border-style: solid;
border-width: 2px;
border-bottom: 0;
overflow: hidden;
}
.dua .show-swiper {
position: absolute;
bottom: -30px;
width: 100%;
height: 120px;
}
.dua .show-swiper .swiper-zoom-container {
padding: 0 15px;
}
@media screen and (min-width: 768px) {
.dua .demo-swiper {
height: 180px;
border-width: 4px;
}
.dua .show-swiper {
bottom: -80px;
height: 280px;
}
}
@media screen and (min-width: 992px) {
.dua .demo-swiper {
height: 280px;
border-width: 6px;
}
.dua .show-swiper {
bottom: -80px;
height: 360px;
}
}
@media screen and (min-width: 1200px) {
.dua .demo-swiper {
height: 300px;
border-width: 6px;
}
.dua .show-swiper {
bottom: -100px;
height: 400px;
}
}
.block-bar,
.block-bar-gray {
padding: 30px 0;
}
.block-bar h1,
.block-bar-gray h1,
.block-bar h2,
.block-bar-gray h2 {
text-align: center;
margin-bottom: 40px;
font-weight: bold;
color: #1b682c;
}
.block-bar {
background-color: white;
}
.block-bar-gray {
background-color: #f1f1f1;
}
.panel {
border-radius: 0;
}
.panel .panel-body {
padding: 0;
}
.panel .panel-body .nav li a:hover,
.panel .panel-body .nav li a:focus {
text-decoration: none;
background-color: #1e7431;
color: white;
}
.panel .panel-body .nav .active {
background-color: #1b682c;
}
.panel .panel-body .nav .active,
.panel .panel-body .nav .active a {
color: white;
}
/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
padding: 25px 15px;
border: none;
}
@media (max-width: 767px) {
.nav li > form > button.logout {
display: block;
text-align: left;
width: 100%;
padding: 10px 15px;
}
}
.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
text-decoration: none;
}
.nav > li > form > button.logout:focus {
outline: none;
}
.nav .active {
background-color: #1b682c;
}
.nav .active,
.nav .active a {
color: white;
}
.nav .lang-active,
.nav .lang-active a {
color: #1b682c !important;
}
.border-primary {
border: 1px solid #1b682c;
}
.border-light-primary {
border: 1px solid #37cb58;
}
.module {
position: relative;
}
.module.place-holder {
text-align: center;
padding: 30px 0;
content: '这是初始占位';
}
.module .edit-bar {
display: none;
}
.module:hover.edit {
border: 1px solid #999;
margin: -1px;
}
.module:hover .edit-bar {
display: block;
content: ' ';
padding: 2px;
background-color: #999;
cursor: pointer;
text-align: center;
width: 100%;
position: absolute;
bottom: 0;
}
.swiper-container,
.swiper-slide {
height: 240px;
}
/* 小屏幕(平板,大于等于 768px) */
@media screen and (min-width: 768px) {
.swiper-container,
.swiper-slide {
height: 400px;
}
}
/* 中等屏幕(桌面显示器,大于等于 992px) */
@media screen and (min-width: 992px) {
.swiper-container,
.swiper-slide {
height: 500px;
}
}
/* 大屏幕(大桌面显示器,大于等于 1200px) */
@media screen and (min-width: 1200px) {
.swiper-container,
.swiper-slide {
height: 600px;
}
}
.slick-slide img,
.swiper-slide img {
display: block;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
a {
color: #555555;
}
a:hover,
a:active {
color: #525252;
}
.feature {
text-align: center;
height: 240px;
padding: 15px 0;
overflow: hidden;
}
.feature h3 {
color: #aaa;
font-size: 18px;
font-weight: 300;
text-transform: uppercase;
}
.feature i {
color: #1b682c;
font-size: 36px;
}
.feature p {
color: #777;
font-size: 15px;
font-weight: 300;
}
.contact-form {
padding: 30px;
background-color: white;
margin: 30px;
border-radius: 14px;
} | Themes/Basic/assets/dist/css/basic.css | .clearfix:before,
.clearfix:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after {
display: table;
content: " ";
}
.clearfix:after,
.form-horizontal .form-group:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after {
clear: both;
}
.center-block {
display: block;
margin-right: auto;
margin-left: auto;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.hidden {
display: none !important;
}
.affix {
position: fixed;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: 700;
}
input[type="search"] {
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
input[type="file"] {
display: block;
}
input[type="range"] {
display: block;
width: 100%;
}
select[multiple],
select[size] {
height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
output {
display: block;
padding-top: 7px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
color: #999;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #999;
}
.form-control::-webkit-input-placeholder {
color: #999;
}
.form-control::-ms-expand {
background-color: transparent;
border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eeeeee;
opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
cursor: not-allowed;
}
textarea.form-control {
height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
line-height: 34px;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm,
.input-group-sm input[type="date"],
.input-group-sm input[type="time"],
.input-group-sm input[type="datetime-local"],
.input-group-sm input[type="month"] {
line-height: 30px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg,
.input-group-lg input[type="date"],
.input-group-lg input[type="time"],
.input-group-lg input[type="datetime-local"],
.input-group-lg input[type="month"] {
line-height: 46px;
}
}
.form-group {
margin-bottom: 15px;
}
.radio,
.checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
.radio label,
.checkbox label {
min-height: 20px;
padding-left: 20px;
margin-bottom: 0;
font-weight: 400;
cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-top: 4px \9;
margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
font-weight: 400;
vertical-align: middle;
cursor: pointer;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
.form-control-static {
min-height: 34px;
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-right: 0;
padding-left: 0;
}
.input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
select.input-sm {
height: 30px;
line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
height: auto;
}
.form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.form-group-sm select.form-control {
height: 30px;
line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
height: auto;
}
.form-group-sm .form-control-static {
height: 30px;
min-height: 32px;
padding: 6px 10px;
font-size: 12px;
line-height: 1.5;
}
.input-lg {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
select.input-lg {
height: 46px;
line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
.form-group-lg .form-control {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.form-group-lg select.form-control {
height: 46px;
line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
height: auto;
}
.form-group-lg .form-control-static {
height: 46px;
min-height: 38px;
padding: 11px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.has-feedback {
position: relative;
}
.has-feedback .form-control {
padding-right: 42.5px;
}
.form-control-feedback {
position: absolute;
top: 0;
right: 0;
z-index: 2;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
width: 46px;
height: 46px;
line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
color: #3c763d;
}
.has-success .form-control {
border-color: #3c763d;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
border-color: #2b542c;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
color: #3c763d;
background-color: #dff0d8;
border-color: #3c763d;
}
.has-success .form-control-feedback {
color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
color: #8a6d3b;
}
.has-warning .form-control {
border-color: #8a6d3b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
border-color: #66512c;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
color: #a94442;
}
.has-error .form-control {
border-color: #a94442;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
border-color: #843534;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
color: #a94442;
background-color: #f2dede;
border-color: #a94442;
}
.has-error .form-control-feedback {
color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373;
}
@media (min-width: 768px) {
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.form-inline .form-control-static {
display: inline-block;
}
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
.form-inline .input-group > .form-control {
width: 100%;
}
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
padding-top: 7px;
margin-top: 0;
margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 27px;
}
.form-horizontal .form-group {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
padding-top: 7px;
margin-bottom: 0;
text-align: right;
}
}
.form-horizontal .has-feedback .form-control-feedback {
right: 15px;
}
@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 11px;
font-size: 18px;
}
}
@media (min-width: 768px) {
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
font-size: 12px;
}
}
.navbar {
position: relative;
min-height: 70px;
margin-bottom: 0;
border: 0;
}
.navbar.affix {
width: 100%;
position: fixed;
z-index: 999;
}
@media (min-width: 768px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
padding-right: 15px;
padding-left: 15px;
overflow-x: visible;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-right: 0;
padding-left: 0;
}
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
@media (min-width: 768px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
.navbar-static-top {
border-radius: 0;
}
}
.navbar-brand {
float: left;
height: 70px;
padding: 25px 15px;
font-size: 18px;
line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
text-decoration: none;
}
.navbar-brand > img {
display: block;
}
@media (min-width: 768px) {
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
.navbar-toggle {
position: relative;
float: right;
padding: 9px 10px;
margin-right: 15px;
margin-top: 18px;
margin-bottom: 18px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.navbar-toggle:focus {
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
.navbar-toggle {
display: none;
}
}
.navbar-nav {
margin: 12.5px -15px;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 25px;
padding-bottom: 25px;
}
}
.navbar-form {
padding: 10px 15px;
margin-right: -15px;
margin-left: -15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
margin-top: 18px;
margin-bottom: 18px;
}
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.navbar-form {
width: auto;
padding-top: 0;
padding-bottom: 0;
margin-right: 0;
margin-left: 0;
border: 0;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: 18px;
margin-bottom: 18px;
}
.navbar-btn.btn-sm {
margin-top: 20px;
margin-bottom: 20px;
}
.navbar-btn.btn-xs {
margin-top: 24px;
margin-bottom: 24px;
}
.navbar-text {
margin-top: 25px;
margin-bottom: 25px;
}
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-right: 15px;
margin-left: 15px;
}
}
@media (min-width: 768px) {
.navbar-left {
float: left !important;
}
.navbar-right {
float: right !important;
margin-right: -15px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.navbar-default {
background-color: #FFFFFF;
border-color: #eeeeee;
}
.navbar-default .navbar-brand {
color: #222222;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #090909;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #222222;
}
.navbar-default .navbar-nav > li > a {
color: #222222;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #1b682c;
background-color: #FFF;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #1b682c;
background-color: #FFF;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #222222;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #1b682c;
background-color: #FFF;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
}
.navbar-default .navbar-toggle {
border-color: #1b682c;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #30b94e;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #1b682c;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #eeeeee;
}
.navbar-default .navbar-link {
color: #222222;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #222222;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc;
}
.navbar-inverse {
background-color: #1b682c;
border-color: #10401b;
}
.navbar-inverse .navbar-brand {
color: #FFF;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
color: #FFF;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
color: #fff;
background-color: transparent;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #10401b;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #10401b;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #FFF;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent;
}
}
.navbar-inverse .navbar-toggle {
border-color: #FFF;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #144c20;
}
.navbar-inverse .navbar-link {
color: #FFF;
}
.navbar-inverse .navbar-link:hover {
color: #fff;
}
.navbar-inverse .btn-link {
color: #FFF;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: 400;
line-height: 2.85714286;
color: #333333;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
/*!
* Bootstrap v3.4.1 (https://getbootstrap.com/)
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
.text-muted {
color: #777777;
}
.text-primary {
color: #1b682c;
}
a.text-primary:hover,
a.text-primary:focus {
color: #10401b;
}
.text-success {
color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
color: #2b542c;
}
.text-info {
color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
color: #245269;
}
.text-warning {
color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
color: #66512c;
}
.text-danger {
color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
color: #843534;
}
.bg-primary {
color: #fff;
background-color: #1b682c !important;
}
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #10401b !important;
}
.bg-success {
background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
background-color: #c1e2b3;
}
.bg-info {
background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
background-color: #afd9ee;
}
.bg-warning {
background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #f7ecb5;
}
.bg-danger {
background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
background-color: #e4b9b9;
}
.btn-default.disabled,
.btn-primary.disabled,
.btn-success.disabled,
.btn-info.disabled,
.btn-warning.disabled,
.btn-danger.disabled,
.btn-default[disabled],
.btn-primary[disabled],
.btn-success[disabled],
.btn-info[disabled],
.btn-warning[disabled],
.btn-danger[disabled],
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-danger {
box-shadow: none;
}
.btn-default .badge,
.btn-primary .badge,
.btn-success .badge,
.btn-info .badge,
.btn-warning .badge,
.btn-danger .badge {
text-shadow: none;
}
.btn:active,
.btn.active {
background-image: none;
}
.btn-default {
background-color: #fff;
background-repeat: repeat-x;
border-color: #fff;
text-shadow: 0 1px 0 #fff;
border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus {
background-color: #e0e0e0;
background-position: 0 -15px;
border-color: #fff;
}
.btn-default:active,
.btn-default.active {
background-color: #e0e0e0;
border-color: #fff;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
background-color: #e0e0e0;
background-image: none;
}
.btn-primary {
background-color: #1b682c;
background-repeat: repeat-x;
border-color: #1b682c;
}
.btn-primary:hover,
.btn-primary:focus {
background-color: #0e3717;
background-position: 0 -15px;
border-color: #1b682c;
}
.btn-primary:active,
.btn-primary.active {
background-color: #0e3717;
border-color: #1b682c;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
background-color: #0e3717;
background-image: none;
}
.btn-success {
background-color: #5cb85c;
background-repeat: repeat-x;
border-color: #5cb85c;
}
.btn-success:hover,
.btn-success:focus {
background-color: #419641;
background-position: 0 -15px;
border-color: #5cb85c;
}
.btn-success:active,
.btn-success.active {
background-color: #419641;
border-color: #5cb85c;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
background-color: #419641;
background-image: none;
}
.btn-info {
background-color: #5bc0de;
background-repeat: repeat-x;
border-color: #5bc0de;
}
.btn-info:hover,
.btn-info:focus {
background-color: #2aabd2;
background-position: 0 -15px;
border-color: #5bc0de;
}
.btn-info:active,
.btn-info.active {
background-color: #2aabd2;
border-color: #5bc0de;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
background-color: #2aabd2;
background-image: none;
}
.btn-warning {
background-color: #f0ad4e;
background-repeat: repeat-x;
border-color: #f0ad4e;
}
.btn-warning:hover,
.btn-warning:focus {
background-color: #eb9316;
background-position: 0 -15px;
border-color: #f0ad4e;
}
.btn-warning:active,
.btn-warning.active {
background-color: #eb9316;
border-color: #f0ad4e;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
background-color: #eb9316;
background-image: none;
}
.btn-danger {
background-color: #d9534f;
background-repeat: repeat-x;
border-color: #d9534f;
}
.btn-danger:hover,
.btn-danger:focus {
background-color: #c12e2a;
background-position: 0 -15px;
border-color: #d9534f;
}
.btn-danger:active,
.btn-danger.active {
background-color: #c12e2a;
border-color: #d9534f;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
background-color: #c12e2a;
background-image: none;
}
.thumbnail,
.img-thumbnail {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
background-color: #e8e8e8;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
background-color: #165423;
}
.navbar-default {
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border-radius: 0;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
.navbar-default .navbar-brand {
color: #1b682c;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:active {
color: #1b682c;
}
.navbar-brand,
.navbar-nav > li > a {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.navbar-inverse {
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border-radius: 0;
}
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav > li > a {
text-shadow: none;
}
.navbar-static-top,
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
@media (max-width: 767px) {
.navbar .navbar-nav .open .dropdown-menu > .active > a,
.navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
}
}
.alert {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.alert-success {
border-color: #b2dba1;
}
.alert-info {
border-color: #9acfea;
}
.alert-warning {
border-color: #f5e79e;
}
.alert-danger {
border-color: #dca7a7;
}
.progress {
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar {
background-image: linear-gradient(to bottom, #1b682c 0%, #10401b 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1b682c', endColorstr='#ff10401b', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-success {
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-info {
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-warning {
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-danger {
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
background-repeat: repeat-x;
}
.progress-bar-striped {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.list-group {
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
text-shadow: 0 -1px 0 #10401b;
background-image: linear-gradient(to bottom, #1b682c 0%, #134a1f 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1b682c', endColorstr='#ff134a1f', GradientType=0);
background-repeat: repeat-x;
border-color: #134a1f;
}
.list-group-item.active .badge,
.list-group-item.active:hover .badge,
.list-group-item.active:focus .badge {
text-shadow: none;
}
.well {
border-color: #dcdcdc;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
}
.login-logo,
.register-logo {
font-size: 35px;
text-align: center;
padding-top: 25px;
}
.login-logo a,
.register-logo a {
color: #1b682c;
}
.login-page,
.register-page {
background-color: #eee;
background-image: url(/images/login-bg.png);
background-repeat: no-repeat;
background-size: cover;
padding-top: 7%;
}
.login-box,
.register-box {
width: 360px;
margin: auto;
background-color: white;
}
@media (max-width: 768px) {
.login-box,
.register-box {
width: 90%;
margin-top: 20px;
}
}
.login-box-body,
.register-box-body {
background: #fff;
padding: 20px;
border-top: 0;
color: #666;
}
.login-box-body .form-control-feedback,
.register-box-body .form-control-feedback {
color: #777;
}
.login-box-msg,
.register-box-msg {
margin: 0;
text-align: center;
padding: 0 20px 20px 20px;
}
.social-auth-links {
margin: 10px 0;
}
html,
body {
height: 100%;
background-color: #efefef;
font-family: STZhongsong, "华文中宋", "新宋体";
}
.wrap {
min-height: 100%;
height: auto;
}
.wrap > .container {
padding: 0px;
}
.footer {
background-color: #1b682c;
color: white;
padding: 40px 0 60px;
}
.footer h4,
.footer h1,
.footer h2,
.footer h3,
.footer h5 {
font-weight: bold;
}
.footer,
.footer a,
.footer a:hover,
.footer a:active {
color: white;
}
.footer .site-link {
margin-top: 25px;
}
.footer .friend-links-box {
margin-bottom: 20px;
}
.footer .friend-links-box h4 {
margin-bottom: 15px;
}
.footer .footer-link {
margin-bottom: 5px;
}
.footer .footer-link .qrcode-box {
width: 120px;
}
.footer .footer-link .qrcode-box .name {
margin-bottom: 5px;
}
.footer .footer-link .qrcode-box .qrcode {
width: 100%;
border-radius: 6px;
}
.btn {
border-radius: 100px;
}
.not-set {
color: #c55;
font-style: italic;
}
/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
padding-left: 5px;
}
a.asc:after {
content: "\e151";
}
a.desc:after {
content: "\e152";
}
.sort-numerical a.asc:after {
content: "\e153";
}
.sort-numerical a.desc:after {
content: "\e154";
}
.sort-ordinal a.asc:after {
content: "\e155";
}
.sort-ordinal a.desc:after {
content: "\e156";
}
.grid-view th {
white-space: nowrap;
}
.hint-block {
display: block;
margin-top: 5px;
color: #999;
}
.error-summary {
color: #a94442;
background: #fdf7f7;
border-left: 3px solid #eed3d7;
padding: 10px 20px;
margin: 0 0 15px 0;
}
.grid-view .summary {
padding-bottom: 10px;
}
.breadcrumb {
margin-top: 15px;
margin-bottom: 15px;
background-color: transparent;
}
.dua {
/* 小屏幕(平板,大于等于 768px) */
/* 中等屏幕(桌面显示器,大于等于 992px) */
/* 大屏幕(大桌面显示器,大于等于 1200px) */
}
.dua.dua-banner {
background-color: #1b682c;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.dua .jumbotron {
background-color: transparent;
padding-right: 15px;
margin-bottom: 0;
}
.dua .jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
.dua .demo-swiper {
position: relative;
margin: auto;
width: 80%;
height: 90px;
text-align: center;
background-color: white;
border-top-left-radius: 16px;
border-top-right-radius: 16px;
border-color: #dddddd;
border-style: solid;
border-width: 2px;
border-bottom: 0;
overflow: hidden;
}
.dua .show-swiper {
position: absolute;
bottom: -30px;
width: 100%;
height: 120px;
}
.dua .show-swiper .swiper-zoom-container {
padding: 0 15px;
}
@media screen and (min-width: 768px) {
.dua .demo-swiper {
height: 180px;
border-width: 4px;
}
.dua .show-swiper {
bottom: -80px;
height: 280px;
}
}
@media screen and (min-width: 992px) {
.dua .demo-swiper {
height: 280px;
border-width: 6px;
}
.dua .show-swiper {
bottom: -80px;
height: 360px;
}
}
@media screen and (min-width: 1200px) {
.dua .demo-swiper {
height: 300px;
border-width: 6px;
}
.dua .show-swiper {
bottom: -100px;
height: 400px;
}
}
.block-bar,
.block-bar-gray {
padding: 30px 0;
}
.block-bar h1,
.block-bar-gray h1,
.block-bar h2,
.block-bar-gray h2 {
text-align: center;
margin-bottom: 40px;
font-weight: bold;
color: #1b682c;
}
.block-bar {
background-color: white;
}
.block-bar-gray {
background-color: #f1f1f1;
}
.panel {
border-radius: 0;
}
.panel .panel-body {
padding: 0;
}
.panel .panel-body .nav li a:hover,
.panel .panel-body .nav li a:focus {
text-decoration: none;
background-color: #1e7431;
color: white;
}
.panel .panel-body .nav .active {
background-color: #1b682c;
}
.panel .panel-body .nav .active,
.panel .panel-body .nav .active a {
color: white;
}
/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
padding: 25px 15px;
border: none;
}
@media (max-width: 767px) {
.nav li > form > button.logout {
display: block;
text-align: left;
width: 100%;
padding: 10px 15px;
}
}
.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
text-decoration: none;
}
.nav > li > form > button.logout:focus {
outline: none;
}
.nav .active {
background-color: #1b682c;
}
.nav .active,
.nav .active a {
color: white;
}
.nav .lang-active,
.nav .lang-active a {
color: #1b682c !important;
}
.border-primary {
border: 1px solid #1b682c;
}
.border-light-primary {
border: 1px solid #37cb58;
}
.module {
position: relative;
}
.module.place-holder {
text-align: center;
padding: 30px 0;
content: '这是初始占位';
}
.module .edit-bar {
display: none;
}
.module:hover.edit {
border: 1px solid #999;
margin: -1px;
}
.module:hover .edit-bar {
display: block;
content: ' ';
padding: 2px;
background-color: #999;
cursor: pointer;
text-align: center;
width: 100%;
position: absolute;
bottom: 0;
}
.swiper-container,
.swiper-slide {
height: 240px;
}
/* 小屏幕(平板,大于等于 768px) */
@media screen and (min-width: 768px) {
.swiper-container,
.swiper-slide {
height: 400px;
}
}
/* 中等屏幕(桌面显示器,大于等于 992px) */
@media screen and (min-width: 992px) {
.swiper-container,
.swiper-slide {
height: 500px;
}
}
/* 大屏幕(大桌面显示器,大于等于 1200px) */
@media screen and (min-width: 1200px) {
.swiper-container,
.swiper-slide {
height: 600px;
}
}
.slick-slide img,
.swiper-slide img {
display: block;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
a {
color: #555555;
}
a:hover,
a:active {
color: #525252;
}
.feature {
text-align: center;
height: 240px;
padding: 15px 0;
overflow: hidden;
}
.feature h3 {
color: #aaa;
font-size: 18px;
font-weight: 300;
text-transform: uppercase;
}
.feature i {
color: #1b682c;
font-size: 36px;
}
.feature p {
color: #777;
font-size: 15px;
font-weight: 300;
}
.contact-form {
padding: 30px;
background-color: white;
margin: 30px;
border-radius: 14px;
} | 0.376967 | 0.098512 |
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 9999;
}
.widgetAlertWrapper {
position: relative; }
body, html {
height: 100%;
width: 100%;
overflow: hidden; }
#wrap {
position: relative;
height: 100%;
width: 100%; }
#alertBox {
height: 100%;
width: 100%;
position: absolute; }
#alertBox.hidden, .hidden {
opacity: 0; }
#alertText {
padding: 20px;
}
#alertMessage {
text-align: center; }
#imageContainer {
position: relative; }
/* standard layout, image above the text */
body.layoutVertical #wrap, .widgetAlertWrapper.layoutVertical #wrap {
display: table; }
body.layoutVertical #imageContainer, .widgetAlertWrapper.layoutVertical #imageContainer {
height: 100%;
display: table-cell;
background-position: center bottom;
background-repeat: no-repeat;
background-size: contain; }
body.layoutVertical #alertText, .widgetAlertWrapper.layoutVertical #alertText {
display: table-cell;
text-align: center; }
body.layoutVertical #imageContainerWrapper, body.layoutVertical #alertTextWrapper, .widgetAlertWrapper.layoutVertical #imageContainerWrapper, .widgetAlertWrapper.layoutVertical #alertTextWrapper {
display: table-row; }
/* image and text centered and stretched for text over an image */
body.layoutAbove #imageContainer, .widgetAlertWrapper.layoutAbove #imageContainer {
background-position: center center;
background-repeat: no-repeat;
background-size: contain; }
body.layoutAbove #imageContainerWrapper, body.layoutAbove #alertTextWrapper, .widgetAlertWrapper.layoutAbove #imageContainerWrapper, .widgetAlertWrapper.layoutAbove #alertTextWrapper {
position: absolute;
top: 0;
left: 0;
display: table;
height: 100%;
width: 100%; }
body.layoutAbove #imageContainer, body.layoutAbove #alertText, .widgetAlertWrapper.layoutAbove #imageContainer, .widgetAlertWrapper.layoutAbove #alertText {
display: table-cell;
height: 100%;
width: 100%;
vertical-align: middle;
text-align: center; }
/* image on left side */
body.layoutSide #alertBox, .widgetAlertWrapper.layoutSide #alertBox {
display: table; }
body.layoutSide #wrap, .widgetAlertWrapper.layoutSide #wrap {
display: table-row; }
body.layoutSide #imageContainerWrapper, .widgetAlertWrapper.layoutSide #imageContainerWrapper {
width: 30%;
height: 100%;
display: table-cell; }
body.layoutSide #imageContainer, .widgetAlertWrapper.layoutSide #imageContainer {
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
width: 100%;
height: 100%; }
body.layoutSide #alertTextWrapper, .widgetAlertWrapper.layoutSide #alertTextWrapper {
width: 70%;
height: 100%;
display: table-cell;
vertical-align: middle;
text-align: left; }
body.layoutSide #alertText, .widgetAlertWrapper.layoutSide #alertText {
display: inline-block; }
.hidden { display:none; } | alerts/main/static/alertpopup.css | position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 9999;
}
.widgetAlertWrapper {
position: relative; }
body, html {
height: 100%;
width: 100%;
overflow: hidden; }
#wrap {
position: relative;
height: 100%;
width: 100%; }
#alertBox {
height: 100%;
width: 100%;
position: absolute; }
#alertBox.hidden, .hidden {
opacity: 0; }
#alertText {
padding: 20px;
}
#alertMessage {
text-align: center; }
#imageContainer {
position: relative; }
/* standard layout, image above the text */
body.layoutVertical #wrap, .widgetAlertWrapper.layoutVertical #wrap {
display: table; }
body.layoutVertical #imageContainer, .widgetAlertWrapper.layoutVertical #imageContainer {
height: 100%;
display: table-cell;
background-position: center bottom;
background-repeat: no-repeat;
background-size: contain; }
body.layoutVertical #alertText, .widgetAlertWrapper.layoutVertical #alertText {
display: table-cell;
text-align: center; }
body.layoutVertical #imageContainerWrapper, body.layoutVertical #alertTextWrapper, .widgetAlertWrapper.layoutVertical #imageContainerWrapper, .widgetAlertWrapper.layoutVertical #alertTextWrapper {
display: table-row; }
/* image and text centered and stretched for text over an image */
body.layoutAbove #imageContainer, .widgetAlertWrapper.layoutAbove #imageContainer {
background-position: center center;
background-repeat: no-repeat;
background-size: contain; }
body.layoutAbove #imageContainerWrapper, body.layoutAbove #alertTextWrapper, .widgetAlertWrapper.layoutAbove #imageContainerWrapper, .widgetAlertWrapper.layoutAbove #alertTextWrapper {
position: absolute;
top: 0;
left: 0;
display: table;
height: 100%;
width: 100%; }
body.layoutAbove #imageContainer, body.layoutAbove #alertText, .widgetAlertWrapper.layoutAbove #imageContainer, .widgetAlertWrapper.layoutAbove #alertText {
display: table-cell;
height: 100%;
width: 100%;
vertical-align: middle;
text-align: center; }
/* image on left side */
body.layoutSide #alertBox, .widgetAlertWrapper.layoutSide #alertBox {
display: table; }
body.layoutSide #wrap, .widgetAlertWrapper.layoutSide #wrap {
display: table-row; }
body.layoutSide #imageContainerWrapper, .widgetAlertWrapper.layoutSide #imageContainerWrapper {
width: 30%;
height: 100%;
display: table-cell; }
body.layoutSide #imageContainer, .widgetAlertWrapper.layoutSide #imageContainer {
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
width: 100%;
height: 100%; }
body.layoutSide #alertTextWrapper, .widgetAlertWrapper.layoutSide #alertTextWrapper {
width: 70%;
height: 100%;
display: table-cell;
vertical-align: middle;
text-align: left; }
body.layoutSide #alertText, .widgetAlertWrapper.layoutSide #alertText {
display: inline-block; }
.hidden { display:none; } | 0.306008 | 0.047118 |
.form {
height: 270px;
border-radius: 5px;
box-sizing: border-box;
background-color: #ffffff;
box-shadow: 0 2px 15px 0 rgba(210, 214, 220, 0.5);
-webkit-box-shadow: 0 2px 15px 0 rgba(210, 214, 220, 0.5);
-moz-box-shadow: 0 2px 15px 0 rgba(210, 214, 220, 0.5);
}
.form__row {
height: 100%;
display: flex;
}
.form__left, .form__right {
width: 50%;
display: flex;
padding-top: 50px;
align-items: flex-start;
justify-content: center;
}
.form__left {
background-color: #fbfbfb;
}
.form__content {
width: 80%;
}
.form__error {
font-size: 12px;
color: red;
}
.form__title, .form__description {
margin: 0;
padding: 0;
font-family: inherit;
}
.form__title {
font-size: 20px;
line-height: normal;
padding-bottom: 20px;
color: rgb(77, 77, 77);
}
.form__description {
color: rgb(104, 104, 104);
}
.form__input {
width: 100%;
height: 45px;
outline: none;
padding: 0 15px;
font-size: 14px;
border-radius: 5px;
background-color: #ffffff;
border: 1px solid #E3E3E3;
}
/* input placeholder */
.form__input::-webkit-input-placeholder {
color: #848585;
}
.form__input::-moz-placeholder {
color: #848585;
}
.form__input:-ms-input-placeholder {
color: #848585;
}
.form__input::placeholder {
color: #848585;
}
.form__button {
padding: 0 25px;
height: 45px;
border: none;
outline: none;
margin: 15px 0;
cursor: pointer;
font-size: 14px;
font-weight: 600;
color: #ffffff;
border-radius: 5px;
background-color: #3fb138;
-webkit-transition: background-color .5s ease-out;
-moz-transition: background-color .5s ease-out;
-o-transition: background-color .5s ease-out;
transition: background-color .5s ease-out;
}
.form__button:hover {
background: #53c049;
}
.form__button:disabled {
cursor: not-allowed;
background: #b4b4b4;
}
.form__info {
font-size: 12px;
}
@media (max-width:576px) {
.form {
height: inherit;
}
.form__row {
flex-direction: column;
}
.form__left, .form__right {
width: 100%;
padding: 30px;
}
.form__content {
width: 100%;
}
} | src/components/Form/style.css | .form {
height: 270px;
border-radius: 5px;
box-sizing: border-box;
background-color: #ffffff;
box-shadow: 0 2px 15px 0 rgba(210, 214, 220, 0.5);
-webkit-box-shadow: 0 2px 15px 0 rgba(210, 214, 220, 0.5);
-moz-box-shadow: 0 2px 15px 0 rgba(210, 214, 220, 0.5);
}
.form__row {
height: 100%;
display: flex;
}
.form__left, .form__right {
width: 50%;
display: flex;
padding-top: 50px;
align-items: flex-start;
justify-content: center;
}
.form__left {
background-color: #fbfbfb;
}
.form__content {
width: 80%;
}
.form__error {
font-size: 12px;
color: red;
}
.form__title, .form__description {
margin: 0;
padding: 0;
font-family: inherit;
}
.form__title {
font-size: 20px;
line-height: normal;
padding-bottom: 20px;
color: rgb(77, 77, 77);
}
.form__description {
color: rgb(104, 104, 104);
}
.form__input {
width: 100%;
height: 45px;
outline: none;
padding: 0 15px;
font-size: 14px;
border-radius: 5px;
background-color: #ffffff;
border: 1px solid #E3E3E3;
}
/* input placeholder */
.form__input::-webkit-input-placeholder {
color: #848585;
}
.form__input::-moz-placeholder {
color: #848585;
}
.form__input:-ms-input-placeholder {
color: #848585;
}
.form__input::placeholder {
color: #848585;
}
.form__button {
padding: 0 25px;
height: 45px;
border: none;
outline: none;
margin: 15px 0;
cursor: pointer;
font-size: 14px;
font-weight: 600;
color: #ffffff;
border-radius: 5px;
background-color: #3fb138;
-webkit-transition: background-color .5s ease-out;
-moz-transition: background-color .5s ease-out;
-o-transition: background-color .5s ease-out;
transition: background-color .5s ease-out;
}
.form__button:hover {
background: #53c049;
}
.form__button:disabled {
cursor: not-allowed;
background: #b4b4b4;
}
.form__info {
font-size: 12px;
}
@media (max-width:576px) {
.form {
height: inherit;
}
.form__row {
flex-direction: column;
}
.form__left, .form__right {
width: 100%;
padding: 30px;
}
.form__content {
width: 100%;
}
} | 0.381104 | 0.109944 |
.background_cyan8,
.hover_background_cyan8:hover,
.active_background_cyan8:active:hover {
background: #004646;
background-image: -moz-linear-gradient(top, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 88, 88)), color-stop(100%, rgb(0, 70, 70)));
background-image: -webkit-linear-gradient(top, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
background-image: -o-linear-gradient(top, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
background-image: linear-gradient(to bottom, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005858', endColorstr='#004646',GradientType=0 );
}
.background_cyan8h,
.hover_background_cyan8h:hover,
.active_background_cyan8h:active:hover {
background: #004646;
background-image: -moz-linear-gradient(top, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 105, 105)), color-stop(100%, rgb(0, 84, 84)));
background-image: -webkit-linear-gradient(top, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
background-image: -o-linear-gradient(top, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
background-image: linear-gradient(to bottom, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006969', endColorstr='#005454',GradientType=0 );
}
.background_cyan8a,
.hover_background_cyan8a:hover,
.active_background_cyan8a:active:hover {
background: #004646;
background-image: -moz-linear-gradient(top, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 84, 84)), color-stop(100%, rgb(0, 105, 105)));
background-image: -webkit-linear-gradient(top, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
background-image: -o-linear-gradient(top, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
background-image: linear-gradient(to bottom, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005454', endColorstr='#006969',GradientType=0 );
}
.background_cyan8s,
.hover_background_cyan8s:hover,
.active_background_cyan8s:active:hover {
background: #004646;
background-image: -moz-linear-gradient(top, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 131, 131)), color-stop(100%, rgb(0, 105, 105)));
background-image: -webkit-linear-gradient(top, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
background-image: -o-linear-gradient(top, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
background-image: linear-gradient(to bottom, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008383', endColorstr='#006969',GradientType=0 );
}
.background_color_cyan8,
.hover_background_color_cyan8:hover,
.active_background_color_cyan8:active:hover {
background-color:#004646;
}
.background_first_color_cyan8,
.hover_background_first_color_cyan8:hover,
.active_background_first_color_cyan8:active:hover {
background-color:#005858;
}
.background_last_color_cyan8,
.hover_background_last_color_cyan8:hover,
.active_background_color_last_cyan8:active:hover {
background-color:#004646;
}
/* ------------------------------ color settings -------------------------------*/
.color_cyan8,
.hover_color_cyan8:hover,
.active_color_cyan8:active:hover {
color: #c8c8c8;
}
.color_cyan8h,
.hover_color_cyan8h:hover,
.active_color_cyan8h:active:hover {
color: #c8c8c8;
}
.color_cyan8a,
.hover_color_cyan8a:hover,
.active_color_cyan8a:active:hover {
color: #ff0;
}
.color_cyan8s,
.hover_color_cyan8s:hover,
.active_color_cyan8s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_cyan8,
.hover_border_cyan8:hover,
.active_border_cyan8:active:hover {
border-color: #004646 #004646 #004646 #004646;
}
.border_cyan8h,
.hover_border_cyan8h:hover,
.active_border_cyan8h:active:hover {
border-color: #003f3f #003f3f #003f3f #003f3f;
}
.border_cyan8a,
.hover_border_cyan8a:hover,
.active_border_cyan8a:active:hover {
border-color: #003838 #003838 #003838 #003838;
}
.border_cyan8s,
.hover_border_cyan8s:hover,
.active_border_cyan8s:active:hover {
border-color: #006969 #006969 #006969 #006969;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_cyan8,
.hover_shadow_expand_cyan8:hover,
.active_shadow_expand_cyan8:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 70, 70, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 70, 70, .39);
box-shadow: 0em 0em 1em 0.25em rgba(0, 70, 70, .39);
}
.shadow_expand_cyan8h,
.hover_shadow_expand_cyan8h:hover,
.active_shadow_expand_cyan8h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 84, 84, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 84, 84, .50);
box-shadow: 0em 0em 1em 0.25em rgba(0, 84, 84, .50);
}
.shadow_expand_cyan8a,
.hover_shadow_expand_cyan8a:hover,
.active_shadow_expand_cyan8a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .63);
box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .63);
}
.shadow_expand_cyan8s,
.hover_shadow_expand_cyan8s:hover,
.active_shadow_expand_cyan8s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .78);
box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_cyan8,
.hover_shadow_left_cyan8:hover,
.active_shadow_left_cyan8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_left_cyan8h,
.hover_shadow_left_cyan8h:hover,
.active_shadow_left_cyan8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_left_cyan8a,
.hover_shadow_left_cyan8a:hover,
.active_shadow_left_cyan8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_left_cyan8s,
.hover_shadow_left_cyan8s:hover,
.active_shadow_left_cyan8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_cyan8,
.hover_shadow_right_cyan8:hover,
.active_shadow_right_cyan8:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 70, 70, .39);
box-shadow: 0.5em 0em 1em rgba(0, 70, 70, .39);
}
.shadow_right_cyan8h,
.hover_shadow_right_cyan8h:hover,
.active_shadow_right_cyan8h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 84, 84, .50);
box-shadow: 0.5em 0em 1em rgba(0, 84, 84, .50);
}
.shadow_right_cyan8a,
.hover_shadow_right_cyan8a:hover,
.active_shadow_right_cyan8a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .63);
box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .63);
}
.shadow_right_cyan8s,
.hover_shadow_right_cyan8s:hover,
.active_shadow_right_cyan8s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .78);
box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_cyan8,
.hover_shadow_top_cyan8:hover,
.active_shadow_top_cyan8:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 70, 70, .39);
box-shadow: 0em -0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_top_cyan8h,
.hover_shadow_top_cyan8h:hover,
.active_shadow_top_cyan8h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 84, 84, .50);
box-shadow: 0em -0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_top_cyan8a,
.hover_shadow_top_cyan8a:hover,
.active_shadow_top_cyan8a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .63);
box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_top_cyan8s,
.hover_shadow_top_cyan8s:hover,
.active_shadow_top_cyan8s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .78);
box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_cyan8,
.hover_shadow_bottom_cyan8:hover,
.active_shadow_bottom_cyan8:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 70, 70, .39);
box-shadow: 0em 0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_bottom_cyan8h,
.hover_shadow_bottom_cyan8h:hover,
.active_shadow_bottom_cyan8h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 84, 84, .50);
box-shadow: 0em 0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_bottom_cyan8a,
.hover_shadow_bottom_cyan8a:hover,
.active_shadow_bottom_cyan8a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .63);
box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_bottom_cyan8s,
.hover_shadow_bottom_cyan8s:hover,
.active_shadow_bottom_cyan8s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .78);
box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_cyan8,
.hover_shadow_top_left_cyan8:hover,
.active_shadow_top_left_cyan8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_top_left_cyan8h,
.hover_shadow_top_left_cyan8h:hover,
.active_shadow_top_left_cyan8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_top_left_cyan8a,
.hover_shadow_top_left_cyan8a:hover,
.active_shadow_top_left_cyan8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_top_left_cyan8s,
.hover_shadow_top_left_cyan8s:hover,
.active_shadow_top_left_cyan8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_cyan8,
.hover_shadow_top_right_cyan8:hover,
.active_shadow_top_right_cyan8:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 70, 70, .39);
box-shadow: 0.5em -0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_top_right_cyan8h,
.hover_shadow_top_right_cyan8h:hover,
.active_shadow_top_right_cyan8h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 84, 84, .50);
box-shadow: 0.5em -0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_top_right_cyan8a,
.hover_shadow_top_right_cyan8a:hover,
.active_shadow_top_right_cyan8a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .63);
box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_top_right_cyan8s,
.hover_shadow_top_right_cyan8s:hover,
.active_shadow_top_right_cyan8s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .78);
box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_cyan8,
.hover_shadow_bottom_left_cyan8:hover,
.active_shadow_bottom_left_cyan8:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 70, 70, .39);
box-shadow: -0.5em 0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_bottom_left_cyan8h,
.hover_shadow_bottom_left_cyan8h:hover,
.active_shadow_bottom_left_cyan8h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 84, 84, .50);
box-shadow: -0.5em 0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_bottom_left_cyan8a,
.hover_shadow_bottom_left_cyan8a:hover,
.active_shadow_bottom_left_cyan8a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .63);
box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_bottom_left_cyan8s,
.hover_shadow_bottom_left_cyan8s:hover,
.active_shadow_bottom_left_cyan8s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .78);
box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_cyan8,
.hover_shadow_bottom_right_cyan8:hover,
.active_shadow_bottom_right_cyan8:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 70, 70, .39);
box-shadow: 0.5em 0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_bottom_right_cyan8h,
.hover_shadow_bottom_right_cyan8h:hover,
.active_shadow_bottom_right_cyan8h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 84, 84, .50);
box-shadow: 0.5em 0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_bottom_right_cyan8a,
.hover_shadow_bottom_right_cyan8a:hover,
.active_shadow_bottom_right_cyan8a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .63);
box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_bottom_right_cyan8s,
.hover_shadow_bottom_right_cyan8s:hover,
.active_shadow_bottom_right_cyan8s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .78);
box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .78);
} | widgets/common/assets/gradients/simple/cyan/cyan8.css | .background_cyan8,
.hover_background_cyan8:hover,
.active_background_cyan8:active:hover {
background: #004646;
background-image: -moz-linear-gradient(top, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 88, 88)), color-stop(100%, rgb(0, 70, 70)));
background-image: -webkit-linear-gradient(top, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
background-image: -o-linear-gradient(top, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
background-image: linear-gradient(to bottom, rgb(0, 88, 88) 0%, rgb(0, 70, 70) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005858', endColorstr='#004646',GradientType=0 );
}
.background_cyan8h,
.hover_background_cyan8h:hover,
.active_background_cyan8h:active:hover {
background: #004646;
background-image: -moz-linear-gradient(top, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 105, 105)), color-stop(100%, rgb(0, 84, 84)));
background-image: -webkit-linear-gradient(top, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
background-image: -o-linear-gradient(top, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
background-image: linear-gradient(to bottom, rgb(0, 105, 105) 0%, rgb(0, 84, 84) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006969', endColorstr='#005454',GradientType=0 );
}
.background_cyan8a,
.hover_background_cyan8a:hover,
.active_background_cyan8a:active:hover {
background: #004646;
background-image: -moz-linear-gradient(top, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 84, 84)), color-stop(100%, rgb(0, 105, 105)));
background-image: -webkit-linear-gradient(top, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
background-image: -o-linear-gradient(top, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
background-image: linear-gradient(to bottom, rgb(0, 84, 84) 0%, rgb(0, 105, 105) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005454', endColorstr='#006969',GradientType=0 );
}
.background_cyan8s,
.hover_background_cyan8s:hover,
.active_background_cyan8s:active:hover {
background: #004646;
background-image: -moz-linear-gradient(top, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 131, 131)), color-stop(100%, rgb(0, 105, 105)));
background-image: -webkit-linear-gradient(top, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
background-image: -o-linear-gradient(top, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
background-image: -ms-linear-gradient(top, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
background-image: linear-gradient(to bottom, rgb(0, 131, 131) 0%, rgb(0, 105, 105) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008383', endColorstr='#006969',GradientType=0 );
}
.background_color_cyan8,
.hover_background_color_cyan8:hover,
.active_background_color_cyan8:active:hover {
background-color:#004646;
}
.background_first_color_cyan8,
.hover_background_first_color_cyan8:hover,
.active_background_first_color_cyan8:active:hover {
background-color:#005858;
}
.background_last_color_cyan8,
.hover_background_last_color_cyan8:hover,
.active_background_color_last_cyan8:active:hover {
background-color:#004646;
}
/* ------------------------------ color settings -------------------------------*/
.color_cyan8,
.hover_color_cyan8:hover,
.active_color_cyan8:active:hover {
color: #c8c8c8;
}
.color_cyan8h,
.hover_color_cyan8h:hover,
.active_color_cyan8h:active:hover {
color: #c8c8c8;
}
.color_cyan8a,
.hover_color_cyan8a:hover,
.active_color_cyan8a:active:hover {
color: #ff0;
}
.color_cyan8s,
.hover_color_cyan8s:hover,
.active_color_cyan8s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_cyan8,
.hover_border_cyan8:hover,
.active_border_cyan8:active:hover {
border-color: #004646 #004646 #004646 #004646;
}
.border_cyan8h,
.hover_border_cyan8h:hover,
.active_border_cyan8h:active:hover {
border-color: #003f3f #003f3f #003f3f #003f3f;
}
.border_cyan8a,
.hover_border_cyan8a:hover,
.active_border_cyan8a:active:hover {
border-color: #003838 #003838 #003838 #003838;
}
.border_cyan8s,
.hover_border_cyan8s:hover,
.active_border_cyan8s:active:hover {
border-color: #006969 #006969 #006969 #006969;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_cyan8,
.hover_shadow_expand_cyan8:hover,
.active_shadow_expand_cyan8:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 70, 70, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 70, 70, .39);
box-shadow: 0em 0em 1em 0.25em rgba(0, 70, 70, .39);
}
.shadow_expand_cyan8h,
.hover_shadow_expand_cyan8h:hover,
.active_shadow_expand_cyan8h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 84, 84, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 84, 84, .50);
box-shadow: 0em 0em 1em 0.25em rgba(0, 84, 84, .50);
}
.shadow_expand_cyan8a,
.hover_shadow_expand_cyan8a:hover,
.active_shadow_expand_cyan8a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .63);
box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .63);
}
.shadow_expand_cyan8s,
.hover_shadow_expand_cyan8s:hover,
.active_shadow_expand_cyan8s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .78);
box-shadow: 0em 0em 1em 0.25em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_cyan8,
.hover_shadow_left_cyan8:hover,
.active_shadow_left_cyan8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_left_cyan8h,
.hover_shadow_left_cyan8h:hover,
.active_shadow_left_cyan8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_left_cyan8a,
.hover_shadow_left_cyan8a:hover,
.active_shadow_left_cyan8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_left_cyan8s,
.hover_shadow_left_cyan8s:hover,
.active_shadow_left_cyan8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_cyan8,
.hover_shadow_right_cyan8:hover,
.active_shadow_right_cyan8:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 70, 70, .39);
box-shadow: 0.5em 0em 1em rgba(0, 70, 70, .39);
}
.shadow_right_cyan8h,
.hover_shadow_right_cyan8h:hover,
.active_shadow_right_cyan8h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 84, 84, .50);
box-shadow: 0.5em 0em 1em rgba(0, 84, 84, .50);
}
.shadow_right_cyan8a,
.hover_shadow_right_cyan8a:hover,
.active_shadow_right_cyan8a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .63);
box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .63);
}
.shadow_right_cyan8s,
.hover_shadow_right_cyan8s:hover,
.active_shadow_right_cyan8s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .78);
box-shadow: 0.5em 0em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_cyan8,
.hover_shadow_top_cyan8:hover,
.active_shadow_top_cyan8:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 70, 70, .39);
box-shadow: 0em -0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_top_cyan8h,
.hover_shadow_top_cyan8h:hover,
.active_shadow_top_cyan8h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 84, 84, .50);
box-shadow: 0em -0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_top_cyan8a,
.hover_shadow_top_cyan8a:hover,
.active_shadow_top_cyan8a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .63);
box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_top_cyan8s,
.hover_shadow_top_cyan8s:hover,
.active_shadow_top_cyan8s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .78);
box-shadow: 0em -0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_cyan8,
.hover_shadow_bottom_cyan8:hover,
.active_shadow_bottom_cyan8:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 70, 70, .39);
box-shadow: 0em 0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_bottom_cyan8h,
.hover_shadow_bottom_cyan8h:hover,
.active_shadow_bottom_cyan8h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 84, 84, .50);
box-shadow: 0em 0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_bottom_cyan8a,
.hover_shadow_bottom_cyan8a:hover,
.active_shadow_bottom_cyan8a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .63);
box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_bottom_cyan8s,
.hover_shadow_bottom_cyan8s:hover,
.active_shadow_bottom_cyan8s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .78);
box-shadow: 0em 0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_cyan8,
.hover_shadow_top_left_cyan8:hover,
.active_shadow_top_left_cyan8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
box-shadow: -0.5em -0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_top_left_cyan8h,
.hover_shadow_top_left_cyan8h:hover,
.active_shadow_top_left_cyan8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
box-shadow: -0.5em -0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_top_left_cyan8a,
.hover_shadow_top_left_cyan8a:hover,
.active_shadow_top_left_cyan8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_top_left_cyan8s,
.hover_shadow_top_left_cyan8s:hover,
.active_shadow_top_left_cyan8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
box-shadow: -0.5em -0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_cyan8,
.hover_shadow_top_right_cyan8:hover,
.active_shadow_top_right_cyan8:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 70, 70, .39);
box-shadow: 0.5em -0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_top_right_cyan8h,
.hover_shadow_top_right_cyan8h:hover,
.active_shadow_top_right_cyan8h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 84, 84, .50);
box-shadow: 0.5em -0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_top_right_cyan8a,
.hover_shadow_top_right_cyan8a:hover,
.active_shadow_top_right_cyan8a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .63);
box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_top_right_cyan8s,
.hover_shadow_top_right_cyan8s:hover,
.active_shadow_top_right_cyan8s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .78);
box-shadow: 0.5em -0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_cyan8,
.hover_shadow_bottom_left_cyan8:hover,
.active_shadow_bottom_left_cyan8:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 70, 70, .39);
box-shadow: -0.5em 0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_bottom_left_cyan8h,
.hover_shadow_bottom_left_cyan8h:hover,
.active_shadow_bottom_left_cyan8h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 84, 84, .50);
box-shadow: -0.5em 0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_bottom_left_cyan8a,
.hover_shadow_bottom_left_cyan8a:hover,
.active_shadow_bottom_left_cyan8a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .63);
box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_bottom_left_cyan8s,
.hover_shadow_bottom_left_cyan8s:hover,
.active_shadow_bottom_left_cyan8s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .78);
box-shadow: -0.5em 0.5em 1em rgba(0, 105, 105, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_cyan8,
.hover_shadow_bottom_right_cyan8:hover,
.active_shadow_bottom_right_cyan8:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 70, 70, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 70, 70, .39);
box-shadow: 0.5em 0.5em 1em rgba(0, 70, 70, .39);
}
.shadow_bottom_right_cyan8h,
.hover_shadow_bottom_right_cyan8h:hover,
.active_shadow_bottom_right_cyan8h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 84, 84, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 84, 84, .50);
box-shadow: 0.5em 0.5em 1em rgba(0, 84, 84, .50);
}
.shadow_bottom_right_cyan8a,
.hover_shadow_bottom_right_cyan8a:hover,
.active_shadow_bottom_right_cyan8a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .63);
box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .63);
}
.shadow_bottom_right_cyan8s,
.hover_shadow_bottom_right_cyan8s:hover,
.active_shadow_bottom_right_cyan8s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .78);
box-shadow: 0.5em 0.5em 1em rgba(0, 105, 105, .78);
} | 0.453262 | 0.096365 |
.question-list-item {
margin-bottom: 20px;
position:relative;
}
.question-list-item a {
color:#428bca;
}
.question-list-item,
.question-list-item .answers {
display:table;
width:100%;
}
.question-list .select2-container.the-question-filter a {
height: 40px;
padding:7px 0px 0px 11px;
}
body .select2-search input {
background:none;
}
.question-list .select2-container .select2-choice
{
border-radius: 5px;
border:1px solid #575757;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.5, #fff));
background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #fff 50%);
background-image: -moz-linear-gradient(center bottom, #ccc 0%, #fff 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#cccccc', GradientType = 0);
background-image: linear-gradient(top, #fff 0%, #ccc 50%)
}
.question-list .select2-container.select2-dropdown-open .select2-choice
{
-webkit-border-bottom-right-radius: 0px;
-webkit-border-bottom-left-radius: 0px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
border-color: #5897fb;
border-bottom: none;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
background-image: linear-gradient(top, #fff 0%, #eee 50%)
}
.question-list .select2-container .select2-choice .select2-arrow {
width:23px;
}
.question-list .select2-container .select2-choice .select2-arrow b {
background-position: 3px 5px;
}
.question-list .select2-container {
margin-bottom:15px;
}
/* Question Modal Select */
#questionModal .select2-container.category-select a {
height: 34px;
padding:3px 0px 0px 11px;
}
#questionModal .select2-container.category-select .select2-choice .select2-arrow {
width:23px;
}
#questionModal .select2-container.category-select .select2-choice .select2-arrow b {
background-position: 3px 5px;
}
#questionModal .control-group {
margin:25px 0px;
}
#questionModal .file-upload {
padding: 6px;
width:100%;
border:1px solid #ccc;
-webkit-border-top-left-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-topleft: 5px;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
}
/* Question Modal Select */
.question-list-item .side {
display:table-cell;
vertical-align: top;
}
.question-list-item .side.left {
width:80px;
}
.question-list-item .side.delete-question {
width:45px;
text-align: center;
}
.question-list-item .side.right {
background-color: #E7E6E6;
border-radius: 10px;
padding:10px 20px;
cursor:pointer;
}
.question-list-item .side.left .img-hold{
border-radius:10px;
border:thin solid #333;
display: inline-block;
}
.question-list-item .side.left .img-hold img {
border-radius: 10px;
display: block;
}
.question-list-item .answers {
font-size:.85em;
}
.question-list-item .answers .opb {
text-align: right;
}
.muted {
color:#bababa;
font-size:.9em;
}
.question-list-item .question-title{
font-size:1.2em;
margin-top:5px;
word-wrap: break-word;
word-break:break-all;
}
.vote-bar {
border-radius:5px;
overflow: hidden;
width:100%;
margin:10px 0px;
}
.vote-bar,
.vote-bar .vote-sec {
height: 20px;
}
.vote-bar .vote-sec {
display: inline-block;
}
.vote-bar .vote-sec-0 {
background-color:#FF841A;
background-image: linear-gradient(top, #FF841A 0%, #D85700 100%);
background-image: -webkit-linear-gradient(top, #FF841A 0%, #D85700 100%);
margin:0px;
}
.vote-bar .vote-sec-1 {
background-color:#375bf6;
background-image: linear-gradient(top, #375bf6 0%, #1b21a7 100%);
background-image: -webkit-linear-gradient(top, #375bf6 0%, #1b21a7 100%);
margin:0px;
}
.vote-bar.is-empty {
border:1px solid #ccc;
border-bottom-width: 2px;
}
.question-list-item {
-webkit-transition: height .5s, opacity .5s;
transition: height .5s, opacity .5s;
height: auto;
opacity: 1;
}
.question-list-item.hide-me {
height: 0px;
opacity: 0;
}
.question-list-item .right:before {
position: absolute;
display: inline-block;
border-top: 12px solid transparent;
border-right: 12px solid #E7E6E6;
border-bottom: 12px solid transparent;
border-right-color: rgba(0, 0, 0, 0.2);
left: 68px;
top: 14px;
content: '';
}
.question-list-item .right:after {
position: absolute;
display: inline-block;
border-top: 12px solid transparent;
border-right: 12px solid #E7E6E6;
border-bottom: 12px solid transparent;
left: 69px;
top: 15px;
content: '';
}
.viewQuestion .modal-title {
margin-right:15px;
text-align: center;
word-wrap: break-word;
word-break:break-all;
}
.viewQuestion .answer.selected .fa {
bottom:-4px;
opacity: 1;
}
.viewQuestion .answer .fa {
/*display: none;*/
/*color:#00CC00;*/
color:#fff;
font-size:28px;
line-height: 14px;
position: relative;
display: inline;
-webkit-transition: bottom 1s, opacity 1s;
transition: bottom 1s, opacity 1s;
opacity: 0;
position: relative;
bottom:30px;
}
.viewQuestion .answer-case {
display: inline-block;
width:48%;
text-align: center;
}
.viewQuestion iframe.embedly-embed{
width:100%;
max-height:300px;
}
.viewQuestion .answer {
padding:10px;
color:#fff;
font-weight: bold;
cursor:pointer;
width:100%;
text-align: center;
border-radius: 5px;
/*vertical-align: middle;*/
}
.viewQuestion .answer-case-0 {
margin-right:2%;
}
.viewQuestion .answer-case-1 {
margin-left:2%;
}
.viewQuestion .answer:active{
position: relative;
top:1px;
}
.viewQuestion .create-comment {
margin-bottom: 10px;
}
.viewQuestion .create-comment textarea {
width:100%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
}
.viewQuestion .comment-submit {
width:100%;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
.categories .category {
border-left:3px solid;
color:#fff;
width:100%;
font-weight: bold;
text-shadow:1px 1px #333;
cursor:pointer;
display: table;
-webkit-transition: border-left-color .3s, background-color .3s;
transition: border-left-color .3s, background-color .3s;
border-left-color:#fff;
background-color: #737373;
}
.categories .category.active {
border-left-color:#FF841A;
background-color: #888888;
}
.categories .category .cat-icon {
padding:10px;
display: table-cell;
border-left:1px solid;
line-height: 10px;
width:20px;
vertical-align: middle;
-webkit-transition: border-left-color .3s, font-size .3s, color .3s, text-shadow .3s;
transition: border-left-color .3s, font-size .3s, color .3s, text-shadow .3s;
border-left-color:transparent;
font-size:14px;
text-shadow:1px 1px #333;
color:#fff;
}
.categories .category.active .cat-icon {
border-left-color:#A24100;
font-size:20px;
color:#FF841A;
text-shadow:1px 1px #A24100;
}
.categories .category .cat-text {
display: table-cell;
padding:10px 0px;
vertical-align: middle;
}
.comment-title {
overflow: hidden;
padding:10px;
vertical-align: middle;
border:1px solid #ccc;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: #ffffff;
background-image: -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -ms-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #e0e0e0));
background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
}
.comment {
display: table;
width:100%;
}
.comment .comment-vote, .comment .comment-main, .comment .comment-img {
display: table-cell;
vertical-align: top;
padding:5px;
}
.comment .comment-vote,.comment .comment-img {
width:80px;
text-align: center;
}
.comment .comment-vote .vote-butt-up {
padding-bottom: 0px;
background-color:
}
.comment-vote .vote-score,
.comment-vote .vote-butt-down,
.comment-vote .vote-butt-up {
background-color:#eee;
}
.odd-comment .comment-vote .vote-score,
.odd-comment .comment-vote .vote-butt-down,
.odd-comment .comment-vote .vote-butt-up {
background-color:#dcdcdc;
}
.comment.odd-comment {
border-radius:5px;
background-color:#f1f1f1;
}
.comment .comment-vote .vote-butt-up {
border-bottom:none;
}
.comment .comment-vote .vote-butt-down {
border-top:none;
}
.comment .comment-vote .vote-score {
padding-top:0px;
padding-bottom: 0px;
cursor: default;
}
.comment .comment-vote .fa {
font-size:20px;
}
.extra-functions .buttons {
padding:0px 20px;
text-align: center;
}
.extra-functions .buttons button {
font-size:.85em;
}
.viewQuestion img {
border-radius: 5px;
border:1px solid #575757;
}
.viewQuestion .well {
border:none;
border-radius: 0px;
box-shadow: inset 0px 1px 7px #575757;
-webkit-box-shadow: inset 0px 1px 7px #575757;
background-color: #ccc;
min-height: 0px;
overflow: hidden;
}
.viewQuestion .recommend-well {
margin: 0px;
padding-left: 20px;
padding-right: 20px;
-webkit-transition: min-height .3s, max-height .3s, padding-top .3s, padding-bottom .3s;
transition: min-height .3s, max-height .3s, padding-top .3s, padding-bottom .3s;
min-height: 0px;
padding-top:0px;
padding-bottom: 0px;
max-height: 0px;
}
.viewQuestion .recommend-well.open {
min-height:72px;
max-height: 1000px;
padding-top:20px;
padding-bottom: 20px;
margin-top:10px;
}
.viewQuestion .recommend-well li.select2-search-field {
min-width:350px;
}
.question-notifiers {
margin-top:10px;
}
.question-info-icon {
color:#565656;
font-size:23px;
text-align:center;
padding-right: 28px;
}
.question-modal-top-row h6 {
margin:3px;
}
.question-modal-top-row .question-title .question-username,
.question-modal-top-row .question-title .question-date {
display: block;
text-align: center;
}
.question-modal-top-row .user-pocket {
/*text-align: center;
background-color: #f0f0f0;
border-right:1px solid #e0e0e0;
-webkit-border-top-left-radius: 5px;
-moz-border-radius-topleft: 5px;
border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topright: 5px;
border-top-right-radius: 5px;*/
display: none;
}
.question-modal-top-row .col{
padding: 15px;
margin-bottom: -99999px;
padding-bottom: 99999px;
}
.question-modal-top-row {
margin:-15px;
overflow: hidden;
}
.pagination li span {
cursor: pointer;
}
.vote-numbers .badge {
background-color: #e5e5e5;
color:#575757;
border:1px solid #ccc;
border-bottom-width: 2px;
text-align: center;
min-width: 50px;
line-height:1.5;
font-size:10px;
}
.add-answer-section-button {
text-align:center;
font-weight:bold;
cursor:pointer;
border:thin solid #ccc;
border-radius:4px;
padding:10px;
}
.add-answer-section-button.disabled {
cursor:not-allowed;
background-color:#f1f1f1;
color:#575757;
}
.vote-nub-holder {
overflow: hidden;
}
.vote-nub-holder .name {
padding-right:10px;
}
.vote-nub-holder .vote-nub {
width:10px;
height:10px;
border-bottom-width: 1px;
float:right;
margin-top:3px;
} | public/css/views/question.css | .question-list-item {
margin-bottom: 20px;
position:relative;
}
.question-list-item a {
color:#428bca;
}
.question-list-item,
.question-list-item .answers {
display:table;
width:100%;
}
.question-list .select2-container.the-question-filter a {
height: 40px;
padding:7px 0px 0px 11px;
}
body .select2-search input {
background:none;
}
.question-list .select2-container .select2-choice
{
border-radius: 5px;
border:1px solid #575757;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.5, #fff));
background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #fff 50%);
background-image: -moz-linear-gradient(center bottom, #ccc 0%, #fff 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#cccccc', GradientType = 0);
background-image: linear-gradient(top, #fff 0%, #ccc 50%)
}
.question-list .select2-container.select2-dropdown-open .select2-choice
{
-webkit-border-bottom-right-radius: 0px;
-webkit-border-bottom-left-radius: 0px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
border-color: #5897fb;
border-bottom: none;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
background-image: linear-gradient(top, #fff 0%, #eee 50%)
}
.question-list .select2-container .select2-choice .select2-arrow {
width:23px;
}
.question-list .select2-container .select2-choice .select2-arrow b {
background-position: 3px 5px;
}
.question-list .select2-container {
margin-bottom:15px;
}
/* Question Modal Select */
#questionModal .select2-container.category-select a {
height: 34px;
padding:3px 0px 0px 11px;
}
#questionModal .select2-container.category-select .select2-choice .select2-arrow {
width:23px;
}
#questionModal .select2-container.category-select .select2-choice .select2-arrow b {
background-position: 3px 5px;
}
#questionModal .control-group {
margin:25px 0px;
}
#questionModal .file-upload {
padding: 6px;
width:100%;
border:1px solid #ccc;
-webkit-border-top-left-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-topleft: 5px;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
}
/* Question Modal Select */
.question-list-item .side {
display:table-cell;
vertical-align: top;
}
.question-list-item .side.left {
width:80px;
}
.question-list-item .side.delete-question {
width:45px;
text-align: center;
}
.question-list-item .side.right {
background-color: #E7E6E6;
border-radius: 10px;
padding:10px 20px;
cursor:pointer;
}
.question-list-item .side.left .img-hold{
border-radius:10px;
border:thin solid #333;
display: inline-block;
}
.question-list-item .side.left .img-hold img {
border-radius: 10px;
display: block;
}
.question-list-item .answers {
font-size:.85em;
}
.question-list-item .answers .opb {
text-align: right;
}
.muted {
color:#bababa;
font-size:.9em;
}
.question-list-item .question-title{
font-size:1.2em;
margin-top:5px;
word-wrap: break-word;
word-break:break-all;
}
.vote-bar {
border-radius:5px;
overflow: hidden;
width:100%;
margin:10px 0px;
}
.vote-bar,
.vote-bar .vote-sec {
height: 20px;
}
.vote-bar .vote-sec {
display: inline-block;
}
.vote-bar .vote-sec-0 {
background-color:#FF841A;
background-image: linear-gradient(top, #FF841A 0%, #D85700 100%);
background-image: -webkit-linear-gradient(top, #FF841A 0%, #D85700 100%);
margin:0px;
}
.vote-bar .vote-sec-1 {
background-color:#375bf6;
background-image: linear-gradient(top, #375bf6 0%, #1b21a7 100%);
background-image: -webkit-linear-gradient(top, #375bf6 0%, #1b21a7 100%);
margin:0px;
}
.vote-bar.is-empty {
border:1px solid #ccc;
border-bottom-width: 2px;
}
.question-list-item {
-webkit-transition: height .5s, opacity .5s;
transition: height .5s, opacity .5s;
height: auto;
opacity: 1;
}
.question-list-item.hide-me {
height: 0px;
opacity: 0;
}
.question-list-item .right:before {
position: absolute;
display: inline-block;
border-top: 12px solid transparent;
border-right: 12px solid #E7E6E6;
border-bottom: 12px solid transparent;
border-right-color: rgba(0, 0, 0, 0.2);
left: 68px;
top: 14px;
content: '';
}
.question-list-item .right:after {
position: absolute;
display: inline-block;
border-top: 12px solid transparent;
border-right: 12px solid #E7E6E6;
border-bottom: 12px solid transparent;
left: 69px;
top: 15px;
content: '';
}
.viewQuestion .modal-title {
margin-right:15px;
text-align: center;
word-wrap: break-word;
word-break:break-all;
}
.viewQuestion .answer.selected .fa {
bottom:-4px;
opacity: 1;
}
.viewQuestion .answer .fa {
/*display: none;*/
/*color:#00CC00;*/
color:#fff;
font-size:28px;
line-height: 14px;
position: relative;
display: inline;
-webkit-transition: bottom 1s, opacity 1s;
transition: bottom 1s, opacity 1s;
opacity: 0;
position: relative;
bottom:30px;
}
.viewQuestion .answer-case {
display: inline-block;
width:48%;
text-align: center;
}
.viewQuestion iframe.embedly-embed{
width:100%;
max-height:300px;
}
.viewQuestion .answer {
padding:10px;
color:#fff;
font-weight: bold;
cursor:pointer;
width:100%;
text-align: center;
border-radius: 5px;
/*vertical-align: middle;*/
}
.viewQuestion .answer-case-0 {
margin-right:2%;
}
.viewQuestion .answer-case-1 {
margin-left:2%;
}
.viewQuestion .answer:active{
position: relative;
top:1px;
}
.viewQuestion .create-comment {
margin-bottom: 10px;
}
.viewQuestion .create-comment textarea {
width:100%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
}
.viewQuestion .comment-submit {
width:100%;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
.categories .category {
border-left:3px solid;
color:#fff;
width:100%;
font-weight: bold;
text-shadow:1px 1px #333;
cursor:pointer;
display: table;
-webkit-transition: border-left-color .3s, background-color .3s;
transition: border-left-color .3s, background-color .3s;
border-left-color:#fff;
background-color: #737373;
}
.categories .category.active {
border-left-color:#FF841A;
background-color: #888888;
}
.categories .category .cat-icon {
padding:10px;
display: table-cell;
border-left:1px solid;
line-height: 10px;
width:20px;
vertical-align: middle;
-webkit-transition: border-left-color .3s, font-size .3s, color .3s, text-shadow .3s;
transition: border-left-color .3s, font-size .3s, color .3s, text-shadow .3s;
border-left-color:transparent;
font-size:14px;
text-shadow:1px 1px #333;
color:#fff;
}
.categories .category.active .cat-icon {
border-left-color:#A24100;
font-size:20px;
color:#FF841A;
text-shadow:1px 1px #A24100;
}
.categories .category .cat-text {
display: table-cell;
padding:10px 0px;
vertical-align: middle;
}
.comment-title {
overflow: hidden;
padding:10px;
vertical-align: middle;
border:1px solid #ccc;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: #ffffff;
background-image: -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -ms-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #e0e0e0));
background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
}
.comment {
display: table;
width:100%;
}
.comment .comment-vote, .comment .comment-main, .comment .comment-img {
display: table-cell;
vertical-align: top;
padding:5px;
}
.comment .comment-vote,.comment .comment-img {
width:80px;
text-align: center;
}
.comment .comment-vote .vote-butt-up {
padding-bottom: 0px;
background-color:
}
.comment-vote .vote-score,
.comment-vote .vote-butt-down,
.comment-vote .vote-butt-up {
background-color:#eee;
}
.odd-comment .comment-vote .vote-score,
.odd-comment .comment-vote .vote-butt-down,
.odd-comment .comment-vote .vote-butt-up {
background-color:#dcdcdc;
}
.comment.odd-comment {
border-radius:5px;
background-color:#f1f1f1;
}
.comment .comment-vote .vote-butt-up {
border-bottom:none;
}
.comment .comment-vote .vote-butt-down {
border-top:none;
}
.comment .comment-vote .vote-score {
padding-top:0px;
padding-bottom: 0px;
cursor: default;
}
.comment .comment-vote .fa {
font-size:20px;
}
.extra-functions .buttons {
padding:0px 20px;
text-align: center;
}
.extra-functions .buttons button {
font-size:.85em;
}
.viewQuestion img {
border-radius: 5px;
border:1px solid #575757;
}
.viewQuestion .well {
border:none;
border-radius: 0px;
box-shadow: inset 0px 1px 7px #575757;
-webkit-box-shadow: inset 0px 1px 7px #575757;
background-color: #ccc;
min-height: 0px;
overflow: hidden;
}
.viewQuestion .recommend-well {
margin: 0px;
padding-left: 20px;
padding-right: 20px;
-webkit-transition: min-height .3s, max-height .3s, padding-top .3s, padding-bottom .3s;
transition: min-height .3s, max-height .3s, padding-top .3s, padding-bottom .3s;
min-height: 0px;
padding-top:0px;
padding-bottom: 0px;
max-height: 0px;
}
.viewQuestion .recommend-well.open {
min-height:72px;
max-height: 1000px;
padding-top:20px;
padding-bottom: 20px;
margin-top:10px;
}
.viewQuestion .recommend-well li.select2-search-field {
min-width:350px;
}
.question-notifiers {
margin-top:10px;
}
.question-info-icon {
color:#565656;
font-size:23px;
text-align:center;
padding-right: 28px;
}
.question-modal-top-row h6 {
margin:3px;
}
.question-modal-top-row .question-title .question-username,
.question-modal-top-row .question-title .question-date {
display: block;
text-align: center;
}
.question-modal-top-row .user-pocket {
/*text-align: center;
background-color: #f0f0f0;
border-right:1px solid #e0e0e0;
-webkit-border-top-left-radius: 5px;
-moz-border-radius-topleft: 5px;
border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topright: 5px;
border-top-right-radius: 5px;*/
display: none;
}
.question-modal-top-row .col{
padding: 15px;
margin-bottom: -99999px;
padding-bottom: 99999px;
}
.question-modal-top-row {
margin:-15px;
overflow: hidden;
}
.pagination li span {
cursor: pointer;
}
.vote-numbers .badge {
background-color: #e5e5e5;
color:#575757;
border:1px solid #ccc;
border-bottom-width: 2px;
text-align: center;
min-width: 50px;
line-height:1.5;
font-size:10px;
}
.add-answer-section-button {
text-align:center;
font-weight:bold;
cursor:pointer;
border:thin solid #ccc;
border-radius:4px;
padding:10px;
}
.add-answer-section-button.disabled {
cursor:not-allowed;
background-color:#f1f1f1;
color:#575757;
}
.vote-nub-holder {
overflow: hidden;
}
.vote-nub-holder .name {
padding-right:10px;
}
.vote-nub-holder .vote-nub {
width:10px;
height:10px;
border-bottom-width: 1px;
float:right;
margin-top:3px;
} | 0.309024 | 0.088544 |
@media screen and (max-width:1060px) {
/************************************************************************************
FOR PAGE SKIN
*************************************************************************************/
.skin-page .pagewidth,
.skin-page-black .pagewidth {
max-width:100%;
}
/* content */
.skin-page #content,
.skin-page-black #content {
width:67.8%;
}
/* sidebar */
.skin-page #sidebar,
.skin-page-black #sidebar {
width:26.2%;
}
}
@media screen and (max-width:1100px) {
/************************************************************************************
STRUCTURE
*************************************************************************************/
.pagewidth,
.module_row > .row_inner {
max-width:90%;
}
.module-layout-part .module_row.fullwidth > .row_inner,
.module_row.fullwidth > .row_inner {
max-width:100%;
}
/* content */
#content {
width:67.8%;
}
/* sidebar */
#sidebar {
width:26.2%;
}
}
@media screen and (max-width:760px) {
/************************************************************************************
STRUCTURE
*************************************************************************************/
#content {
width:100% !important;
max-width:100% !important;
float:none;
clear:both;
}
/* sidebar */
#sidebar {
width:100% !important;
max-width:100% !important;
float:none;
clear:both;
}
#sidebar .secondary {
width:48%;
}
/************************************************************************************
LAYOUT
*************************************************************************************/
.list-thumb-image .post-content {
overflow:visible;
}
.list-large-image .post-content {
overflow:visible;
}
}
@media screen and (max-width:680px) {
/************************************************************************************
HEADING
*************************************************************************************/
h1 {
font-size:1.8em;
}
h2,
.post-title,
.loops-wrapper.grid4 .post-title,
.loops-wrapper.grid3 .post-title,
.loops-wrapper.grid2 .post-title {
font-size:1.6em;
}
h3 {
font-size:1.4em;
}
h4 {
font-size:1.2em;
}
/************************************************************************************
POST VIDEO (css for fluid video)
*************************************************************************************/
.post-video {
clear:both;
}
/* disable webkit text size adjust (for iPhone) */
html {
-webkit-text-size-adjust:none;
}
/************************************************************************************
GRID
*************************************************************************************/
.col4-1,
.col4-2, .col2-1,
.col4-3,
.col3-1,
.col3-2 {
margin-left:0;
width:100%;
max-width:100%;
}
/************************************************************************************
LAYOUT
*************************************************************************************/
/* loops-wrapper */
.loops-wrapper {
margin-left:0 !important;
width:auto !important;
}
/* post */
.post {
width:auto !important;
max-width:100% !important;
margin-left:0 !important;
float:none !important;
}
/************************************************************************************
POST NAV
*************************************************************************************/
.post-nav .prev, .post-nav .next {
display:block;
width:100%;
clear:both;
margin-bottom:10px;
}
/************************************************************************************
COMMENTS
*************************************************************************************/
.commentlist {
padding-left:0;
}
.commentlist .commententry {
clear:left;
}
.commentlist .avatar {
float:left;
width:40px;
height:40px;
margin:0 10px 10px 0;
}
/************************************************************************************
WOOCOMMERCE SUPPORT
*************************************************************************************/
.woocommerce #content div.product div.images,
.woocommerce #content div.product div.summary {
float:none !important;
width:100% !important;
}
} | wordpress/wp-content/themes/basic/media-queries.css | @media screen and (max-width:1060px) {
/************************************************************************************
FOR PAGE SKIN
*************************************************************************************/
.skin-page .pagewidth,
.skin-page-black .pagewidth {
max-width:100%;
}
/* content */
.skin-page #content,
.skin-page-black #content {
width:67.8%;
}
/* sidebar */
.skin-page #sidebar,
.skin-page-black #sidebar {
width:26.2%;
}
}
@media screen and (max-width:1100px) {
/************************************************************************************
STRUCTURE
*************************************************************************************/
.pagewidth,
.module_row > .row_inner {
max-width:90%;
}
.module-layout-part .module_row.fullwidth > .row_inner,
.module_row.fullwidth > .row_inner {
max-width:100%;
}
/* content */
#content {
width:67.8%;
}
/* sidebar */
#sidebar {
width:26.2%;
}
}
@media screen and (max-width:760px) {
/************************************************************************************
STRUCTURE
*************************************************************************************/
#content {
width:100% !important;
max-width:100% !important;
float:none;
clear:both;
}
/* sidebar */
#sidebar {
width:100% !important;
max-width:100% !important;
float:none;
clear:both;
}
#sidebar .secondary {
width:48%;
}
/************************************************************************************
LAYOUT
*************************************************************************************/
.list-thumb-image .post-content {
overflow:visible;
}
.list-large-image .post-content {
overflow:visible;
}
}
@media screen and (max-width:680px) {
/************************************************************************************
HEADING
*************************************************************************************/
h1 {
font-size:1.8em;
}
h2,
.post-title,
.loops-wrapper.grid4 .post-title,
.loops-wrapper.grid3 .post-title,
.loops-wrapper.grid2 .post-title {
font-size:1.6em;
}
h3 {
font-size:1.4em;
}
h4 {
font-size:1.2em;
}
/************************************************************************************
POST VIDEO (css for fluid video)
*************************************************************************************/
.post-video {
clear:both;
}
/* disable webkit text size adjust (for iPhone) */
html {
-webkit-text-size-adjust:none;
}
/************************************************************************************
GRID
*************************************************************************************/
.col4-1,
.col4-2, .col2-1,
.col4-3,
.col3-1,
.col3-2 {
margin-left:0;
width:100%;
max-width:100%;
}
/************************************************************************************
LAYOUT
*************************************************************************************/
/* loops-wrapper */
.loops-wrapper {
margin-left:0 !important;
width:auto !important;
}
/* post */
.post {
width:auto !important;
max-width:100% !important;
margin-left:0 !important;
float:none !important;
}
/************************************************************************************
POST NAV
*************************************************************************************/
.post-nav .prev, .post-nav .next {
display:block;
width:100%;
clear:both;
margin-bottom:10px;
}
/************************************************************************************
COMMENTS
*************************************************************************************/
.commentlist {
padding-left:0;
}
.commentlist .commententry {
clear:left;
}
.commentlist .avatar {
float:left;
width:40px;
height:40px;
margin:0 10px 10px 0;
}
/************************************************************************************
WOOCOMMERCE SUPPORT
*************************************************************************************/
.woocommerce #content div.product div.images,
.woocommerce #content div.product div.summary {
float:none !important;
width:100% !important;
}
} | 0.128334 | 0.047758 |
@-moz-document domain("tweetdeck.twitter.com") {
:root {
--orange: #FFAC00;
--orangelight: #FFAC004D;
--green: #00CE99;
--darkest: #323232;
--lightgrey: #dbdbdb;
--darkgrey: #505050;
--notifgrey: #3e3e3e;
}
html.dark .is-wide-columns .column {
width: 450px;
}
/*.column-scroller {
overflow-y: scroll !important;
margin-right: -17px !important;
padding-right: 10px !important;
}*/
html.dark .scroll-styled-h, html.dark .scroll-styled-v {
scrollbar-color: var(--darkgrey) var(--darkest);
scrollbar-width: thin;
}
html.dark .txt-mute,
html.dark .Icon--notifications::before,
html.dark .icon-notifications::before,
html.dark .icon-search::before,
html.dark .icon-message::before,
html.dark .icon-plus::before,
html.dark .column-nav-link .column-heading,
html.dark .icon-home::before,
html.dark .btn-round i,
html.dark .icon-follow-color,
html.dark .icon-unread-color,
html.dark .icon-twitter-blue-color,
html.dark .is-new .column-type-icon,
html.dark .Button.Button--link,
html.dark button.Button--link,
html.dark input.Button--link[type="button"],
html.dark .icon-camera::before,
html.dark .icon-schedule::before,
html.dark .icon-compose::before,
html.dark .icon-arrow-r-double::before,
html.dark .icon-user-switch::before,
html.dark .icon-settings::before,
html.dark .icon-mention::before,
html.dark .icon-content::before,
html.dark .icon-check::before,
html.dark .icon-heart::before,
html.dark .icon-geo::before,
html.dark .icon-arrow-l-double::before,
html.dark .icon-user::before,
html.dark button.btn-on-dark,
html.dark input[type="button"].btn-on-dark,
html.dark .prf .lst-profile i,
html.dark .prf .lst-profile span,
html.dark .non-selectable-item,
html.dark .compose-reply-tweet .username,
html.dark .column-nav-updates,
html.dark .med-flaglink,
html.dark .med-origlink,
html.dark .med-flaglink:hover,
html.dark .med-origlink:hover html.dark .color-twitter-darker-gray,
html.dark .follow-btn .icon,
html.dark .follow-btn .Icon,
html.dark .conversation-more,
html.dark .thread {
color: var(--orange);
}
html.dark,
html.dark .column-nav-link::after,
html.dark .compose-text,
html.dark .txt-mute a:not(:hover):not(:focus),
html.dark .tweet-body .js-tweet-text,
html.dark .compose .other-replies,
html.dark .inline-reply .other-replies,
html.dark .quoted-tweet,
html.dark .chirp-container .stream-item:not(:hover):not(.is-selected-tweet) .dm-action,
html.dark .chirp-container .stream-item:not(:hover):not(.is-selected-tweet) .tweet-action,
html.dark .chirp-container .stream-item:not(:hover):not(.is-selected-tweet) .tweet-detail-action,
html.dark .txt-mute-text-only,
html.dark .list-placeholder,
html.dark .dm-action,
html.dark .tweet-action,
html.dark .tweet-detail-action,
html.dark .color-twitter-dark-gray,
html.dark .btn-on-blue,
html.dark .account-bio,
html.dark .other-replies,
html.dark .tweet-stat,
html.dark .stat-word,
html.dark .column-header-link,
.TwitterCard[data-theme="tweetdeck-dark"] .SummaryCard-destination,
.TwitterCard[data-theme="tweetdeck-dark"] .SummaryCard-content {
color: var(--lightgrey);
}
.account-link .fullname,
html.dark .color-twitter-blue,
html.dark a,
html.dark a:active,
html.dark a:focus,
html.dark a:hover,
html.dark .other-replies-link,
html.dark .other-replies-link:hover,
html.dark .link-hover-override:hover .link-hover-target,
html.dark .column-header.is-options-open .column-settings-link:hover,
html.dark .compose-reply-tweet .tweet-body a,
html.dark .prf-stats a,
html.dark .prf-stats a strong,
html.dark .txt-mute a,
html.dark .txt-mute a:not(:hover):not(:focus),
html.dark .compose .other-replies-link,
html.dark .compose .other-replies-link:hover,
html.dark .inline-reply .other-replies-link,
html.dark .inline-reply .other-replies-link:hover,
html.dark .compose-reply-tweet .fullname,
html.dark .facet-subtitle,
html.dark .column-nav-link .attribution {
color: #00ce99c4;
}
html.dark body,
html.dark .app-header,
html.dark .app-title,
html.dark .app-columns-container,
html.dark .app-content,
html.dark .app-navigator,
html.dark .column-nav-item,
html.dark .compose-content,
html.dark .column-header,
html.dark .column-header-temp,
html.dark .flex-column,
html.dark .scroll-none,
html.dark .scroll-conversation,
html.dark .is-minimalist .tweet-img,
html.dark .is-selected-tweet,
html.dark .in-tweet-divider::before,
html.dark .prf-meta,
html.dark .prf-actions,
html.dark .rpl,
html.dark .mdl,
html.dark .mdl-column-med,
html.dark .inline-reply,
html.dark .column-panel {
background-color: var(--darkest);
}
html.dark .list-account:hover:active,
html.dark .list-account:hover:focus,
html.dark .list-account:hover:hover,
html.dark .list-link:hover:active,
html.dark .list-link:hover:focus,
html.dark .list-link:hover:hover,
html.dark .list-listaccount:hover:active,
html.dark .list-listaccount:hover:focus,
html.dark .list-listaccount:hover:hover,
html.dark .list-listmember:hover:active,
html.dark .list-listmember:hover:focus,
html.dark .list-listmember:hover:hover,
html.dark .list-subtitle:hover:active,
html.dark .list-subtitle:hover:focus,
html.dark .list-subtitle:hover:hover,
html.dark .list-twitter-list:hover:active,
html.dark .list-twitter-list:hover:focus,
html.dark .list-twitter-list:hover:hover {
text-decoration: none;
color: var(--darkest);
background: var(--orange);
}
html.dark .Button.Button--primary.is-disabled,
html.dark .Button.Button--primary[disabled],
html.dark .Button.is-disabled.btn-fav.s-favorited,
html.dark .Button[disabled].btn-fav.s-favorited,
html.dark .ButtonGroup--primary > .Button.is-disabled,
html.dark .ButtonGroup--primary > .Button[disabled],
html.dark .ButtonGroup--primary > .ButtonGroup > .Button.is-disabled,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button[disabled],
html.dark .ButtonGroup--primary > .ButtonGroup > button.is-disabled,
html.dark .ButtonGroup--primary > .ButtonGroup > button.is-disabled:focus,
html.dark .ButtonGroup--primary > .ButtonGroup > button[disabled],
html.dark .ButtonGroup--primary > .ButtonGroup > input.is-disabled[type="button"],
html.dark .ButtonGroup--primary > .ButtonGroup > input[disabled][type="button"],
html.dark .ButtonGroup--primary > .ButtonGroup > input[type="button"].is-disabled:focus,
html.dark .ButtonGroup--primary > button.is-disabled,
html.dark .ButtonGroup--primary > button.is-disabled:focus,
html.dark .ButtonGroup--primary > button[disabled],
html.dark .ButtonGroup--primary > input.is-disabled[type="button"],
html.dark .ButtonGroup--primary > input[disabled][type="button"],
html.dark .ButtonGroup--primary > input[type="button"].is-disabled:focus,
html.dark .follow-btn.is-disabled .ButtonGroup--primary > .ButtonGroup > button,
html.dark .follow-btn.is-disabled .ButtonGroup--primary > button,
html.dark .follow-btn.is-disabled .s-following .follow-btn:hover button.following-text,
html.dark .follow-btn.is-disabled button.btn-fav.s-favorited,
html.dark .follow-btn.is-disabled button.Button--primary,
html.dark .s-following .follow-btn:hover .Button.is-disabled.following-text,
html.dark .s-following .follow-btn:hover .Button[disabled].following-text,
html.dark .s-following .follow-btn:hover .follow-btn.is-disabled button.following-text,
html.dark .s-following .follow-btn:hover button.is-disabled.following-text,
html.dark .s-following .follow-btn:hover button.is-disabled.following-text:focus,
html.dark .s-following .follow-btn:hover button[disabled].following-text,
html.dark .s-following .follow-btn:hover fieldset[disabled] .Button.following-text,
html.dark .s-following .follow-btn:hover fieldset[disabled] button.following-text,
html.dark .s-following .follow-btn:hover fieldset[disabled] input[type="button"].following-text,
html.dark .s-following .follow-btn:hover input.is-disabled[type="button"].following-text,
html.dark .s-following .follow-btn:hover input[disabled][type="button"].following-text,
html.dark .s-following .follow-btn:hover input[type="button"].is-disabled.following-text:focus,
html.dark button.Button--primary.is-disabled,
html.dark button.Button--primary.is-disabled:focus,
html.dark button.Button--primary[disabled],
html.dark button.is-disabled.btn-fav.s-favorited,
html.dark button.is-disabled.btn-fav.s-favorited:focus,
html.dark button[disabled].btn-fav.s-favorited,
html.dark fieldset[disabled] .Button.btn-fav.s-favorited,
html.dark fieldset[disabled] .Button.Button--primary,
html.dark fieldset[disabled] .ButtonGroup--primary > .Button,
html.dark fieldset[disabled] .ButtonGroup--primary > .ButtonGroup > .Button,
html.dark fieldset[disabled] .ButtonGroup--primary > .ButtonGroup > button,
html.dark fieldset[disabled] .ButtonGroup--primary > .ButtonGroup > input[type="button"],
html.dark fieldset[disabled] .ButtonGroup--primary > button,
html.dark fieldset[disabled] .ButtonGroup--primary > input[type="button"],
html.dark fieldset[disabled] .s-following .follow-btn:hover .Button.following-text,
html.dark fieldset[disabled] .s-following .follow-btn:hover button.following-text,
html.dark fieldset[disabled] .s-following .follow-btn:hover input[type="button"].following-text,
html.dark fieldset[disabled] button.btn-fav.s-favorited,
html.dark fieldset[disabled] button.Button--primary,
html.dark fieldset[disabled] input.Button--primary[type="button"],
html.dark fieldset[disabled] input[type="button"].btn-fav.s-favorited,
html.dark input.Button--primary.is-disabled[type="button"],
html.dark input.Button--primary[disabled][type="button"],
html.dark input.Button--primary[type="button"].is-disabled:focus,
html.dark input.is-disabled[type="button"].btn-fav.s-favorited,
html.dark input[disabled][type="button"].btn-fav.s-favorited,
html.dark input[type="button"].is-disabled.btn-fav.s-favorited:focus {
background-color: var(--orange);
border-color: var(--orange);
box-shadow: none;
color: var(--darkest);
}
html.dark .Button.btn-fav.s-favorited,
html.dark .Button.btn-fav.s-favorited:visited,
html.dark .Button.Button--primary,
html.dark .Button.Button--primary:visited,
html.dark .ButtonGroup--primary > .Button,
html.dark .ButtonGroup--primary > .Button:visited,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button:visited,
html.dark .ButtonGroup--primary > .ButtonGroup > button,
html.dark .ButtonGroup--primary > .ButtonGroup > button:visited,
html.dark .ButtonGroup--primary > .ButtonGroup > input[type="button"],
html.dark .ButtonGroup--primary > .ButtonGroup > input[type="button"]:visited,
html.dark .ButtonGroup--primary > button,
html.dark .ButtonGroup--primary > button:visited,
html.dark .ButtonGroup--primary > input[type="button"],
html.dark .ButtonGroup--primary > input[type="button"]:visited,
html.dark .s-following .follow-btn:hover .Button.following-text,
html.dark .s-following .follow-btn:hover .Button.following-text:visited,
html.dark .s-following .follow-btn:hover button.following-text,
html.dark .s-following .follow-btn:hover button.following-text:visited,
html.dark .s-following .follow-btn:hover input[type="button"].following-text,
html.dark .s-following .follow-btn:hover input[type="button"].following-text:visited,
html.dark button.btn-fav.s-favorited,
html.dark button.btn-fav.s-favorited:visited,
html.dark button.Button--primary,
html.dark button.Button--primary:visited,
html.dark input.Button--primary[type="button"],
html.dark input.Button--primary[type="button"]:visited,
html.dark input[type="button"].btn-fav.s-favorited,
html.dark input[type="button"].btn-fav.s-favorited:visited {
background-color: var(--darkgrey);
border: 1px solid var(--orange);
color: var(--orange);
}
html.dark .Button.btn-fav.s-favorited:hover,
html.dark .Button.Button--primary.is-hover,
html.dark .Button.Button--primary:hover,
html.dark .Button.is-hover.btn-fav.s-favorited,
html.dark .ButtonGroup--primary > .Button.is-hover,
html.dark .ButtonGroup--primary > .Button:hover,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button.is-hover,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button:hover,
html.dark .ButtonGroup--primary > .ButtonGroup > button.is-hover,
html.dark .ButtonGroup--primary > .ButtonGroup > button:hover,
html.dark .ButtonGroup--primary > .ButtonGroup > input.is-hover[type="button"],
html.dark .ButtonGroup--primary > .ButtonGroup > input[type="button"]:hover,
html.dark .ButtonGroup--primary > button.is-hover,
html.dark .ButtonGroup--primary > button:hover,
html.dark .ButtonGroup--primary > input.is-hover[type="button"],
html.dark .ButtonGroup--primary > input[type="button"]:hover,
html.dark .s-following .follow-btn:hover .Button.following-text:hover,
html.dark .s-following .follow-btn:hover .Button.is-hover.following-text,
html.dark .s-following .follow-btn:hover button.following-text:hover,
html.dark .s-following .follow-btn:hover button.is-hover.following-text,
html.dark .s-following .follow-btn:hover input.is-hover[type="button"].following-text,
html.dark .s-following .follow-btn:hover input[type="button"].following-text:hover,
html.dark button.btn-fav.s-favorited:hover,
html.dark button.Button--primary.is-hover,
html.dark button.Button--primary:hover,
html.dark button.is-hover.btn-fav.s-favorited,
html.dark input.Button--primary.is-hover[type="button"],
html.dark input.Button--primary[type="button"]:hover,
html.dark input.is-hover[type="button"].btn-fav.s-favorited,
html.dark input[type="button"].btn-fav.s-favorited:hover {
background-color: var(--orangelight);
border-color: var(--orange);
}
html.dark .Button,
html.dark .Button.is-visited,
html.dark .Button:visited,
html.dark button,
html.dark button.is-visited,
html.dark button:visited,
html.dark input.is-visited[type="button"],
html.dark input[type="button"],
html.dark input[type="button"]:visited {
border: 1px solid var(--orange);
}
html.dark body:before {
background-image: radial-gradient(circle, var(--darkgrey), var(--darkest));
}
html.dark .app-search-fake {
color: var(--orange);
border: 1px solid var(--orange);
}
html.dark .with-nav-border-t::before {
border-top: 1px solid var(--orangelight);
}
html.dark .attach-compose-buttons .tweet-button {
background-color: var(--darkgrey) !important;
}
html.dark .app-header {
border-right: solid 1px var(--darkest);
}
html.dark .bg-color-twitter-white {
background-color: var(--darkgrey) !important;
border-bottom: 1px solid var(--orange);
border-radius: 0px !important;
}
html.dark .border-color-twitter-blue {
border-color: var(--darkgrey);
}
html.dark .icon-image-color,
html.dark .icon-list-color,
html.dark .icon-mention-color,
html.dark ::selection,
html.dark ::-moz-selection {
color: var(--darkest);
}
html.dark .column-header,
html.dark .column-header-temp {
background-color: var(--darkest);
}
html.dark .column-header {
border-bottom: 1px solid var(--darkgrey);
}
html.dark .column-header.is-options-open .column-settings-link {
border-color: var(--darkgrey);
}
html.dark .stream-item {
border-bottom: 1px solid var(--orangelight);
background-color: var(--darkest);
}
html.dark .compose {
background-color: var(--darkest);
height: 100%;
}
html.dark .scroll-conversation,
html.dark .is-minimalist .tweet-img,
html.dark .is-selected-tweet,
html.dark .in-tweet-divider:before {
background: var(--darkest);
}
html.dark .quoted-tweet {
border-color: #292f33;
color: #999;
}
html.dark .prf-stats a:hover,
html.dark .prf-stats a:hover strong {
color: var(--green);
}
html.dark .btn-on-blue:hover {
background-color: var(--orange);
}
html.dark .column-options,
html.dark .column-options .button-tray,
html.dark .detail-view-inline,
html.dark .accordion-header {
background: var(--darkgrey);
}
html.dark .avatar {
border-bottom: 0px solid var(--orange);
}
html.dark .textarea:focus {
border-bottom: 1px solid var(--orange);
}
html.dark .list-item.is-selected,
html.dark .list-item:active,
html.dark .list-item:hover {
background-color: var(--orange);
color: var(--darkgrey);
}
html.dark .focus,
html.dark input:focus,
html.dark select:focus,
html.dark textarea:focus {
border-color: var(--orange);
box-shadow: none !important;
}
html.dark .app-header .search-input-control input,
html.dark .dropdown-menu a:not(:hover):not(:focus) {
background-color: var(--darkgrey);
color: var(--lightgrey);
}
html.dark .app-title {
display: none;
}
html.dark .more-tweets-glow {
background-color: var(--orange);
background: radial-gradient(ellipse farthest-corner at 50% 100%, var(--orange) 0, var(--orange) 25%, hsla(0, 0%, 100%, 0) 75%);
}
html.dark .stroke-twitter-blue {
stroke: var(--orange);
}
html.dark .prf .lst-profile a:hover i,
html.dark .prf .lst-profile a:hover span {
color: var(--orangelight);
}
html.dark .stroke-twitter-light-gray {
stroke: var(--lightgrey);
}
html.dark .lst-group .selected {
background: var(--darkgrey);
color: var(--lightgrey);
}
html.dark input,
html.dark select,
html.dark textarea {
background: var(--darkgrey);
border: 1px solid var(--orange);
}
html.dark .dropdown-menu .is-selected {
background: var(--orange);
color: var(--darkgrey);
}
html.dark .dropdown-menu .is-selected a:not(:hover):not(:focus),
html.dark .dropdown-menu .is-selected .dropdown-menu-url-item,
html.dark .dropdown-menu .is-selected [data-action] {
color: var(--darkgrey);
}
html.dark .compose-reply-tweet {
background-color: var(--darkgrey);
color: var(--lightgrey);
}
html.dark .compose-header,
html.dark .column-header {
border-bottom: 1px solid var(--orangelight);
}
html.dark .compose-header {
height: 50px;
}
html.dark .overlay,
html.dark .ovl {
background: #515554E6;
}
html.dark button.btn-options-tray,
html.dark input[type="button"].btn-options-tray {
color: var(--orange) !important;
}
html.dark button.btn-options-tray:focus,
html.dark button.btn-options-tray:hover,
html.dark input[type="button"].btn-options-tray:focus,
html.dark input[type="button"].btn-options-tray:hover {
color: var(--orange) !important;
text-decoration: underline;
}
html.dark .compose-message-recipient-input-container.is-focused {
box-shadow: 0 0 2px 3px var(--orangelight);
}
html.dark .compose-message-recipient {
border: 1px solid var(--orange);
}
html.dark .lst-group .selected a:hover {
background: var(--orange);
}
html.dark .detail-view-inline-text {
border: 1px solid var(--orange);
background-color: var(--darkgrey);
color: var(--green);
}
html.dark .spinner-large {
display: none !important
}
html.dark .is-unread,
html.dark .btn-on-blue,
html.dark .compose-text-container,
html.dark .compose-media-bar-holder,
html.dark .accordion .is-active .accordion-panel,
html.dark .column-message,
html.dark .facet-type.is-active,
.TwitterCard[data-theme="tweetdeck-dark"] .TwitterCard-container--clickable:hover {
background-color: var(--darkgrey);
}
html.dark .tweet-detail-actions,
html.dark .tweet-stats {
border-top: 1px solid var(--darkgrey);
}
html.dark .thread {
background-color: var(--orangelight);
}
html.dark .quoted-tweet {
border-color: var(--orangelight);
color: var(--lightgrey);
background-color: var(--darkgrey);
}
html.dark .rpl textarea {
overflow-y: auto !important;
}
html.dark .column-title-edit-box {
background-color: var(--darkgrey);
border-color: var(--orange);
}
html.dark .column-drag-handle,
html.dark .column-number {
display: none;
}
.TwitterCard[data-theme="tweetdeck-dark"] .TwitterCard-container--clickable:hover {
background-color: var(--darkgrey);
border-color: #292F33;
}
html.dark .with-column-divider-bottom {
border-bottom: 1px solid var(--darkgrey);
}
html.dark .old-composer-footer .new-composer-opt-in {
background-color: var(--darkest);
}
html.dark .old-composer-footer {
background-color: var(--darkest);
}
/** NEW COMPOSER **/
/** cadre tweet **/
.r-p1n3y5 {
border: 0px var(--orange) solid !important;
}
/** @ **/
.r-1qd0xha {
color: var(--orange);
}
/** tweet button **/
.r-urgr8i {
background-color: var(--darkgrey);
}
/** buttons bar **/
.r-yfoy6g {
background-color: var(--darkest);
}
.r-13gxpu9 {
color: var(--green);
}
.r-1444osr {
background-color: var(--darkest);
}
.r-xoduu5 {
background-color: var(--darkgrey);
}
.r-eqz5dr {
background-color: var(--darkgrey);
border-radius: 16px;
}
.r-1bq9uc5 {
border-radius: 16px;
}
.DraftEditor-editorContainer, .DraftEditor-root, .public-DraftEditor-content {
color: var(--lightgrey);
}
.r-13dxkaz {
background-color: var(--darkest);
}
/** emojis **/
.r-ifefl9 {
background-color: var(--darkest) !important;
}
.r-thhjwx {
max-width: 90%;
}
.r-18p3no4 {
border-bottom-color: var(--orange);
}
.r-a9iod9 {
box-shadow: var(--orange) !important;
}
.r-7cikom {
font-size: 1rem;
padding-left: 5px;
}
.r-1q3imqu {
background-color: var(--lightgrey)
}
html.dark .old-composer-footer .new-composer-opt-in:focus, html.dark .old-composer-footer .new-composer-opt-in:hover {
background-color: var(--darkest) !important;
}html.dark .old-composer-footer .new-composer-opt-in {
border: 0px solid var(--green);
}
html.dark .new-composer-bottom-button:hover {
background: var(--darkgrey);
}
html.dark .Button.is-hover, html.dark .Button:hover, html.dark button.is-hover, html.dark button:hover, html.dark input.is-hover[type="button"], html.dark input:hover[type="button"] {
color: var(--green);
}
html.dark .new-composer-bottom-button {
background: var(--darkest);
color:var(--orange);
}
html.dark input.light-on-dark, html.dark select.light-on-dark, html.dark textarea.light-on-dark {
color: var(--lightgrey);
background: var(--darkgrey);
}
.r-pdqwzc {
max-width: 10px;
}
.r-ou255f {
padding-right: 25px;
}
.js-typeahead-item.js-typeahead-user-item.typeahead-item.padding-am.cf.is-actionable {
background-color: var(--darkgrey);
color:var(--lightgrey) !important;
}
.js-typeahead-item.js-typeahead-user-item.typeahead-item.padding-am.cf.is-actionable:hover {
background-color: var(--orange);
color: var(--darkest) !important;
}
html.dark .new-composer-bottom-button:active, html.dark .new-composer-bottom-button:focus {
background: var(--darkest);
border: 2px solid var(--orange);
}
html.dark .Button.is-active, html.dark .Button:active, html.dark button.is-active, html.dark button:active, html.dark input.is-active[type="button"], html.dark input:active[type="button"] {
box-shadow: 0 0 0 2px #fff,0 0 0 4px var(--orange);
background: var(--darkest);
border-color: var(--orange);
color: var(--orange);
}
html.dark .dropdown-menu {
background-color: var(--darkgrey);
}
.is-actionable:hover .stat-word {
color: var(--orange);
}
html.dark .social-proof-for-tweet-title {
background-color: var(--darkest);
color: var(--orange);
border-bottom: 1px solid var(--orangelight);
}
html.dark ::-webkit-input-placeholder, html.dark ::placeholder, html.dark input::placeholder, html.dark textarea::placeholder {
color: var(--lightgrey);
}
} | data/usercss/168501.user.css | @-moz-document domain("tweetdeck.twitter.com") {
:root {
--orange: #FFAC00;
--orangelight: #FFAC004D;
--green: #00CE99;
--darkest: #323232;
--lightgrey: #dbdbdb;
--darkgrey: #505050;
--notifgrey: #3e3e3e;
}
html.dark .is-wide-columns .column {
width: 450px;
}
/*.column-scroller {
overflow-y: scroll !important;
margin-right: -17px !important;
padding-right: 10px !important;
}*/
html.dark .scroll-styled-h, html.dark .scroll-styled-v {
scrollbar-color: var(--darkgrey) var(--darkest);
scrollbar-width: thin;
}
html.dark .txt-mute,
html.dark .Icon--notifications::before,
html.dark .icon-notifications::before,
html.dark .icon-search::before,
html.dark .icon-message::before,
html.dark .icon-plus::before,
html.dark .column-nav-link .column-heading,
html.dark .icon-home::before,
html.dark .btn-round i,
html.dark .icon-follow-color,
html.dark .icon-unread-color,
html.dark .icon-twitter-blue-color,
html.dark .is-new .column-type-icon,
html.dark .Button.Button--link,
html.dark button.Button--link,
html.dark input.Button--link[type="button"],
html.dark .icon-camera::before,
html.dark .icon-schedule::before,
html.dark .icon-compose::before,
html.dark .icon-arrow-r-double::before,
html.dark .icon-user-switch::before,
html.dark .icon-settings::before,
html.dark .icon-mention::before,
html.dark .icon-content::before,
html.dark .icon-check::before,
html.dark .icon-heart::before,
html.dark .icon-geo::before,
html.dark .icon-arrow-l-double::before,
html.dark .icon-user::before,
html.dark button.btn-on-dark,
html.dark input[type="button"].btn-on-dark,
html.dark .prf .lst-profile i,
html.dark .prf .lst-profile span,
html.dark .non-selectable-item,
html.dark .compose-reply-tweet .username,
html.dark .column-nav-updates,
html.dark .med-flaglink,
html.dark .med-origlink,
html.dark .med-flaglink:hover,
html.dark .med-origlink:hover html.dark .color-twitter-darker-gray,
html.dark .follow-btn .icon,
html.dark .follow-btn .Icon,
html.dark .conversation-more,
html.dark .thread {
color: var(--orange);
}
html.dark,
html.dark .column-nav-link::after,
html.dark .compose-text,
html.dark .txt-mute a:not(:hover):not(:focus),
html.dark .tweet-body .js-tweet-text,
html.dark .compose .other-replies,
html.dark .inline-reply .other-replies,
html.dark .quoted-tweet,
html.dark .chirp-container .stream-item:not(:hover):not(.is-selected-tweet) .dm-action,
html.dark .chirp-container .stream-item:not(:hover):not(.is-selected-tweet) .tweet-action,
html.dark .chirp-container .stream-item:not(:hover):not(.is-selected-tweet) .tweet-detail-action,
html.dark .txt-mute-text-only,
html.dark .list-placeholder,
html.dark .dm-action,
html.dark .tweet-action,
html.dark .tweet-detail-action,
html.dark .color-twitter-dark-gray,
html.dark .btn-on-blue,
html.dark .account-bio,
html.dark .other-replies,
html.dark .tweet-stat,
html.dark .stat-word,
html.dark .column-header-link,
.TwitterCard[data-theme="tweetdeck-dark"] .SummaryCard-destination,
.TwitterCard[data-theme="tweetdeck-dark"] .SummaryCard-content {
color: var(--lightgrey);
}
.account-link .fullname,
html.dark .color-twitter-blue,
html.dark a,
html.dark a:active,
html.dark a:focus,
html.dark a:hover,
html.dark .other-replies-link,
html.dark .other-replies-link:hover,
html.dark .link-hover-override:hover .link-hover-target,
html.dark .column-header.is-options-open .column-settings-link:hover,
html.dark .compose-reply-tweet .tweet-body a,
html.dark .prf-stats a,
html.dark .prf-stats a strong,
html.dark .txt-mute a,
html.dark .txt-mute a:not(:hover):not(:focus),
html.dark .compose .other-replies-link,
html.dark .compose .other-replies-link:hover,
html.dark .inline-reply .other-replies-link,
html.dark .inline-reply .other-replies-link:hover,
html.dark .compose-reply-tweet .fullname,
html.dark .facet-subtitle,
html.dark .column-nav-link .attribution {
color: #00ce99c4;
}
html.dark body,
html.dark .app-header,
html.dark .app-title,
html.dark .app-columns-container,
html.dark .app-content,
html.dark .app-navigator,
html.dark .column-nav-item,
html.dark .compose-content,
html.dark .column-header,
html.dark .column-header-temp,
html.dark .flex-column,
html.dark .scroll-none,
html.dark .scroll-conversation,
html.dark .is-minimalist .tweet-img,
html.dark .is-selected-tweet,
html.dark .in-tweet-divider::before,
html.dark .prf-meta,
html.dark .prf-actions,
html.dark .rpl,
html.dark .mdl,
html.dark .mdl-column-med,
html.dark .inline-reply,
html.dark .column-panel {
background-color: var(--darkest);
}
html.dark .list-account:hover:active,
html.dark .list-account:hover:focus,
html.dark .list-account:hover:hover,
html.dark .list-link:hover:active,
html.dark .list-link:hover:focus,
html.dark .list-link:hover:hover,
html.dark .list-listaccount:hover:active,
html.dark .list-listaccount:hover:focus,
html.dark .list-listaccount:hover:hover,
html.dark .list-listmember:hover:active,
html.dark .list-listmember:hover:focus,
html.dark .list-listmember:hover:hover,
html.dark .list-subtitle:hover:active,
html.dark .list-subtitle:hover:focus,
html.dark .list-subtitle:hover:hover,
html.dark .list-twitter-list:hover:active,
html.dark .list-twitter-list:hover:focus,
html.dark .list-twitter-list:hover:hover {
text-decoration: none;
color: var(--darkest);
background: var(--orange);
}
html.dark .Button.Button--primary.is-disabled,
html.dark .Button.Button--primary[disabled],
html.dark .Button.is-disabled.btn-fav.s-favorited,
html.dark .Button[disabled].btn-fav.s-favorited,
html.dark .ButtonGroup--primary > .Button.is-disabled,
html.dark .ButtonGroup--primary > .Button[disabled],
html.dark .ButtonGroup--primary > .ButtonGroup > .Button.is-disabled,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button[disabled],
html.dark .ButtonGroup--primary > .ButtonGroup > button.is-disabled,
html.dark .ButtonGroup--primary > .ButtonGroup > button.is-disabled:focus,
html.dark .ButtonGroup--primary > .ButtonGroup > button[disabled],
html.dark .ButtonGroup--primary > .ButtonGroup > input.is-disabled[type="button"],
html.dark .ButtonGroup--primary > .ButtonGroup > input[disabled][type="button"],
html.dark .ButtonGroup--primary > .ButtonGroup > input[type="button"].is-disabled:focus,
html.dark .ButtonGroup--primary > button.is-disabled,
html.dark .ButtonGroup--primary > button.is-disabled:focus,
html.dark .ButtonGroup--primary > button[disabled],
html.dark .ButtonGroup--primary > input.is-disabled[type="button"],
html.dark .ButtonGroup--primary > input[disabled][type="button"],
html.dark .ButtonGroup--primary > input[type="button"].is-disabled:focus,
html.dark .follow-btn.is-disabled .ButtonGroup--primary > .ButtonGroup > button,
html.dark .follow-btn.is-disabled .ButtonGroup--primary > button,
html.dark .follow-btn.is-disabled .s-following .follow-btn:hover button.following-text,
html.dark .follow-btn.is-disabled button.btn-fav.s-favorited,
html.dark .follow-btn.is-disabled button.Button--primary,
html.dark .s-following .follow-btn:hover .Button.is-disabled.following-text,
html.dark .s-following .follow-btn:hover .Button[disabled].following-text,
html.dark .s-following .follow-btn:hover .follow-btn.is-disabled button.following-text,
html.dark .s-following .follow-btn:hover button.is-disabled.following-text,
html.dark .s-following .follow-btn:hover button.is-disabled.following-text:focus,
html.dark .s-following .follow-btn:hover button[disabled].following-text,
html.dark .s-following .follow-btn:hover fieldset[disabled] .Button.following-text,
html.dark .s-following .follow-btn:hover fieldset[disabled] button.following-text,
html.dark .s-following .follow-btn:hover fieldset[disabled] input[type="button"].following-text,
html.dark .s-following .follow-btn:hover input.is-disabled[type="button"].following-text,
html.dark .s-following .follow-btn:hover input[disabled][type="button"].following-text,
html.dark .s-following .follow-btn:hover input[type="button"].is-disabled.following-text:focus,
html.dark button.Button--primary.is-disabled,
html.dark button.Button--primary.is-disabled:focus,
html.dark button.Button--primary[disabled],
html.dark button.is-disabled.btn-fav.s-favorited,
html.dark button.is-disabled.btn-fav.s-favorited:focus,
html.dark button[disabled].btn-fav.s-favorited,
html.dark fieldset[disabled] .Button.btn-fav.s-favorited,
html.dark fieldset[disabled] .Button.Button--primary,
html.dark fieldset[disabled] .ButtonGroup--primary > .Button,
html.dark fieldset[disabled] .ButtonGroup--primary > .ButtonGroup > .Button,
html.dark fieldset[disabled] .ButtonGroup--primary > .ButtonGroup > button,
html.dark fieldset[disabled] .ButtonGroup--primary > .ButtonGroup > input[type="button"],
html.dark fieldset[disabled] .ButtonGroup--primary > button,
html.dark fieldset[disabled] .ButtonGroup--primary > input[type="button"],
html.dark fieldset[disabled] .s-following .follow-btn:hover .Button.following-text,
html.dark fieldset[disabled] .s-following .follow-btn:hover button.following-text,
html.dark fieldset[disabled] .s-following .follow-btn:hover input[type="button"].following-text,
html.dark fieldset[disabled] button.btn-fav.s-favorited,
html.dark fieldset[disabled] button.Button--primary,
html.dark fieldset[disabled] input.Button--primary[type="button"],
html.dark fieldset[disabled] input[type="button"].btn-fav.s-favorited,
html.dark input.Button--primary.is-disabled[type="button"],
html.dark input.Button--primary[disabled][type="button"],
html.dark input.Button--primary[type="button"].is-disabled:focus,
html.dark input.is-disabled[type="button"].btn-fav.s-favorited,
html.dark input[disabled][type="button"].btn-fav.s-favorited,
html.dark input[type="button"].is-disabled.btn-fav.s-favorited:focus {
background-color: var(--orange);
border-color: var(--orange);
box-shadow: none;
color: var(--darkest);
}
html.dark .Button.btn-fav.s-favorited,
html.dark .Button.btn-fav.s-favorited:visited,
html.dark .Button.Button--primary,
html.dark .Button.Button--primary:visited,
html.dark .ButtonGroup--primary > .Button,
html.dark .ButtonGroup--primary > .Button:visited,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button:visited,
html.dark .ButtonGroup--primary > .ButtonGroup > button,
html.dark .ButtonGroup--primary > .ButtonGroup > button:visited,
html.dark .ButtonGroup--primary > .ButtonGroup > input[type="button"],
html.dark .ButtonGroup--primary > .ButtonGroup > input[type="button"]:visited,
html.dark .ButtonGroup--primary > button,
html.dark .ButtonGroup--primary > button:visited,
html.dark .ButtonGroup--primary > input[type="button"],
html.dark .ButtonGroup--primary > input[type="button"]:visited,
html.dark .s-following .follow-btn:hover .Button.following-text,
html.dark .s-following .follow-btn:hover .Button.following-text:visited,
html.dark .s-following .follow-btn:hover button.following-text,
html.dark .s-following .follow-btn:hover button.following-text:visited,
html.dark .s-following .follow-btn:hover input[type="button"].following-text,
html.dark .s-following .follow-btn:hover input[type="button"].following-text:visited,
html.dark button.btn-fav.s-favorited,
html.dark button.btn-fav.s-favorited:visited,
html.dark button.Button--primary,
html.dark button.Button--primary:visited,
html.dark input.Button--primary[type="button"],
html.dark input.Button--primary[type="button"]:visited,
html.dark input[type="button"].btn-fav.s-favorited,
html.dark input[type="button"].btn-fav.s-favorited:visited {
background-color: var(--darkgrey);
border: 1px solid var(--orange);
color: var(--orange);
}
html.dark .Button.btn-fav.s-favorited:hover,
html.dark .Button.Button--primary.is-hover,
html.dark .Button.Button--primary:hover,
html.dark .Button.is-hover.btn-fav.s-favorited,
html.dark .ButtonGroup--primary > .Button.is-hover,
html.dark .ButtonGroup--primary > .Button:hover,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button.is-hover,
html.dark .ButtonGroup--primary > .ButtonGroup > .Button:hover,
html.dark .ButtonGroup--primary > .ButtonGroup > button.is-hover,
html.dark .ButtonGroup--primary > .ButtonGroup > button:hover,
html.dark .ButtonGroup--primary > .ButtonGroup > input.is-hover[type="button"],
html.dark .ButtonGroup--primary > .ButtonGroup > input[type="button"]:hover,
html.dark .ButtonGroup--primary > button.is-hover,
html.dark .ButtonGroup--primary > button:hover,
html.dark .ButtonGroup--primary > input.is-hover[type="button"],
html.dark .ButtonGroup--primary > input[type="button"]:hover,
html.dark .s-following .follow-btn:hover .Button.following-text:hover,
html.dark .s-following .follow-btn:hover .Button.is-hover.following-text,
html.dark .s-following .follow-btn:hover button.following-text:hover,
html.dark .s-following .follow-btn:hover button.is-hover.following-text,
html.dark .s-following .follow-btn:hover input.is-hover[type="button"].following-text,
html.dark .s-following .follow-btn:hover input[type="button"].following-text:hover,
html.dark button.btn-fav.s-favorited:hover,
html.dark button.Button--primary.is-hover,
html.dark button.Button--primary:hover,
html.dark button.is-hover.btn-fav.s-favorited,
html.dark input.Button--primary.is-hover[type="button"],
html.dark input.Button--primary[type="button"]:hover,
html.dark input.is-hover[type="button"].btn-fav.s-favorited,
html.dark input[type="button"].btn-fav.s-favorited:hover {
background-color: var(--orangelight);
border-color: var(--orange);
}
html.dark .Button,
html.dark .Button.is-visited,
html.dark .Button:visited,
html.dark button,
html.dark button.is-visited,
html.dark button:visited,
html.dark input.is-visited[type="button"],
html.dark input[type="button"],
html.dark input[type="button"]:visited {
border: 1px solid var(--orange);
}
html.dark body:before {
background-image: radial-gradient(circle, var(--darkgrey), var(--darkest));
}
html.dark .app-search-fake {
color: var(--orange);
border: 1px solid var(--orange);
}
html.dark .with-nav-border-t::before {
border-top: 1px solid var(--orangelight);
}
html.dark .attach-compose-buttons .tweet-button {
background-color: var(--darkgrey) !important;
}
html.dark .app-header {
border-right: solid 1px var(--darkest);
}
html.dark .bg-color-twitter-white {
background-color: var(--darkgrey) !important;
border-bottom: 1px solid var(--orange);
border-radius: 0px !important;
}
html.dark .border-color-twitter-blue {
border-color: var(--darkgrey);
}
html.dark .icon-image-color,
html.dark .icon-list-color,
html.dark .icon-mention-color,
html.dark ::selection,
html.dark ::-moz-selection {
color: var(--darkest);
}
html.dark .column-header,
html.dark .column-header-temp {
background-color: var(--darkest);
}
html.dark .column-header {
border-bottom: 1px solid var(--darkgrey);
}
html.dark .column-header.is-options-open .column-settings-link {
border-color: var(--darkgrey);
}
html.dark .stream-item {
border-bottom: 1px solid var(--orangelight);
background-color: var(--darkest);
}
html.dark .compose {
background-color: var(--darkest);
height: 100%;
}
html.dark .scroll-conversation,
html.dark .is-minimalist .tweet-img,
html.dark .is-selected-tweet,
html.dark .in-tweet-divider:before {
background: var(--darkest);
}
html.dark .quoted-tweet {
border-color: #292f33;
color: #999;
}
html.dark .prf-stats a:hover,
html.dark .prf-stats a:hover strong {
color: var(--green);
}
html.dark .btn-on-blue:hover {
background-color: var(--orange);
}
html.dark .column-options,
html.dark .column-options .button-tray,
html.dark .detail-view-inline,
html.dark .accordion-header {
background: var(--darkgrey);
}
html.dark .avatar {
border-bottom: 0px solid var(--orange);
}
html.dark .textarea:focus {
border-bottom: 1px solid var(--orange);
}
html.dark .list-item.is-selected,
html.dark .list-item:active,
html.dark .list-item:hover {
background-color: var(--orange);
color: var(--darkgrey);
}
html.dark .focus,
html.dark input:focus,
html.dark select:focus,
html.dark textarea:focus {
border-color: var(--orange);
box-shadow: none !important;
}
html.dark .app-header .search-input-control input,
html.dark .dropdown-menu a:not(:hover):not(:focus) {
background-color: var(--darkgrey);
color: var(--lightgrey);
}
html.dark .app-title {
display: none;
}
html.dark .more-tweets-glow {
background-color: var(--orange);
background: radial-gradient(ellipse farthest-corner at 50% 100%, var(--orange) 0, var(--orange) 25%, hsla(0, 0%, 100%, 0) 75%);
}
html.dark .stroke-twitter-blue {
stroke: var(--orange);
}
html.dark .prf .lst-profile a:hover i,
html.dark .prf .lst-profile a:hover span {
color: var(--orangelight);
}
html.dark .stroke-twitter-light-gray {
stroke: var(--lightgrey);
}
html.dark .lst-group .selected {
background: var(--darkgrey);
color: var(--lightgrey);
}
html.dark input,
html.dark select,
html.dark textarea {
background: var(--darkgrey);
border: 1px solid var(--orange);
}
html.dark .dropdown-menu .is-selected {
background: var(--orange);
color: var(--darkgrey);
}
html.dark .dropdown-menu .is-selected a:not(:hover):not(:focus),
html.dark .dropdown-menu .is-selected .dropdown-menu-url-item,
html.dark .dropdown-menu .is-selected [data-action] {
color: var(--darkgrey);
}
html.dark .compose-reply-tweet {
background-color: var(--darkgrey);
color: var(--lightgrey);
}
html.dark .compose-header,
html.dark .column-header {
border-bottom: 1px solid var(--orangelight);
}
html.dark .compose-header {
height: 50px;
}
html.dark .overlay,
html.dark .ovl {
background: #515554E6;
}
html.dark button.btn-options-tray,
html.dark input[type="button"].btn-options-tray {
color: var(--orange) !important;
}
html.dark button.btn-options-tray:focus,
html.dark button.btn-options-tray:hover,
html.dark input[type="button"].btn-options-tray:focus,
html.dark input[type="button"].btn-options-tray:hover {
color: var(--orange) !important;
text-decoration: underline;
}
html.dark .compose-message-recipient-input-container.is-focused {
box-shadow: 0 0 2px 3px var(--orangelight);
}
html.dark .compose-message-recipient {
border: 1px solid var(--orange);
}
html.dark .lst-group .selected a:hover {
background: var(--orange);
}
html.dark .detail-view-inline-text {
border: 1px solid var(--orange);
background-color: var(--darkgrey);
color: var(--green);
}
html.dark .spinner-large {
display: none !important
}
html.dark .is-unread,
html.dark .btn-on-blue,
html.dark .compose-text-container,
html.dark .compose-media-bar-holder,
html.dark .accordion .is-active .accordion-panel,
html.dark .column-message,
html.dark .facet-type.is-active,
.TwitterCard[data-theme="tweetdeck-dark"] .TwitterCard-container--clickable:hover {
background-color: var(--darkgrey);
}
html.dark .tweet-detail-actions,
html.dark .tweet-stats {
border-top: 1px solid var(--darkgrey);
}
html.dark .thread {
background-color: var(--orangelight);
}
html.dark .quoted-tweet {
border-color: var(--orangelight);
color: var(--lightgrey);
background-color: var(--darkgrey);
}
html.dark .rpl textarea {
overflow-y: auto !important;
}
html.dark .column-title-edit-box {
background-color: var(--darkgrey);
border-color: var(--orange);
}
html.dark .column-drag-handle,
html.dark .column-number {
display: none;
}
.TwitterCard[data-theme="tweetdeck-dark"] .TwitterCard-container--clickable:hover {
background-color: var(--darkgrey);
border-color: #292F33;
}
html.dark .with-column-divider-bottom {
border-bottom: 1px solid var(--darkgrey);
}
html.dark .old-composer-footer .new-composer-opt-in {
background-color: var(--darkest);
}
html.dark .old-composer-footer {
background-color: var(--darkest);
}
/** NEW COMPOSER **/
/** cadre tweet **/
.r-p1n3y5 {
border: 0px var(--orange) solid !important;
}
/** @ **/
.r-1qd0xha {
color: var(--orange);
}
/** tweet button **/
.r-urgr8i {
background-color: var(--darkgrey);
}
/** buttons bar **/
.r-yfoy6g {
background-color: var(--darkest);
}
.r-13gxpu9 {
color: var(--green);
}
.r-1444osr {
background-color: var(--darkest);
}
.r-xoduu5 {
background-color: var(--darkgrey);
}
.r-eqz5dr {
background-color: var(--darkgrey);
border-radius: 16px;
}
.r-1bq9uc5 {
border-radius: 16px;
}
.DraftEditor-editorContainer, .DraftEditor-root, .public-DraftEditor-content {
color: var(--lightgrey);
}
.r-13dxkaz {
background-color: var(--darkest);
}
/** emojis **/
.r-ifefl9 {
background-color: var(--darkest) !important;
}
.r-thhjwx {
max-width: 90%;
}
.r-18p3no4 {
border-bottom-color: var(--orange);
}
.r-a9iod9 {
box-shadow: var(--orange) !important;
}
.r-7cikom {
font-size: 1rem;
padding-left: 5px;
}
.r-1q3imqu {
background-color: var(--lightgrey)
}
html.dark .old-composer-footer .new-composer-opt-in:focus, html.dark .old-composer-footer .new-composer-opt-in:hover {
background-color: var(--darkest) !important;
}html.dark .old-composer-footer .new-composer-opt-in {
border: 0px solid var(--green);
}
html.dark .new-composer-bottom-button:hover {
background: var(--darkgrey);
}
html.dark .Button.is-hover, html.dark .Button:hover, html.dark button.is-hover, html.dark button:hover, html.dark input.is-hover[type="button"], html.dark input:hover[type="button"] {
color: var(--green);
}
html.dark .new-composer-bottom-button {
background: var(--darkest);
color:var(--orange);
}
html.dark input.light-on-dark, html.dark select.light-on-dark, html.dark textarea.light-on-dark {
color: var(--lightgrey);
background: var(--darkgrey);
}
.r-pdqwzc {
max-width: 10px;
}
.r-ou255f {
padding-right: 25px;
}
.js-typeahead-item.js-typeahead-user-item.typeahead-item.padding-am.cf.is-actionable {
background-color: var(--darkgrey);
color:var(--lightgrey) !important;
}
.js-typeahead-item.js-typeahead-user-item.typeahead-item.padding-am.cf.is-actionable:hover {
background-color: var(--orange);
color: var(--darkest) !important;
}
html.dark .new-composer-bottom-button:active, html.dark .new-composer-bottom-button:focus {
background: var(--darkest);
border: 2px solid var(--orange);
}
html.dark .Button.is-active, html.dark .Button:active, html.dark button.is-active, html.dark button:active, html.dark input.is-active[type="button"], html.dark input:active[type="button"] {
box-shadow: 0 0 0 2px #fff,0 0 0 4px var(--orange);
background: var(--darkest);
border-color: var(--orange);
color: var(--orange);
}
html.dark .dropdown-menu {
background-color: var(--darkgrey);
}
.is-actionable:hover .stat-word {
color: var(--orange);
}
html.dark .social-proof-for-tweet-title {
background-color: var(--darkest);
color: var(--orange);
border-bottom: 1px solid var(--orangelight);
}
html.dark ::-webkit-input-placeholder, html.dark ::placeholder, html.dark input::placeholder, html.dark textarea::placeholder {
color: var(--lightgrey);
}
} | 0.288168 | 0.031114 |
/*========== Popup ==========*/
div.wrapper .popup div.button {
margin : 0 auto 10px auto;
width : 210px;
}
div.popup .button button.accept,
div.popup .button button.reject {
background : #68b828;
border : 1px solid #5ca323;
display : block;
float : left;
line-height : 30px;
margin : 0 10px 0 0;
width : 100px;
}
div.popup .button button.reject {
background : #e51400;
border : 1px solid #b21000;
margin : 0;
}
div.popup .button button.accept:hover {
background : #5ca323;
}
div.popup .button button.reject:hover {
background : #b21000;
}
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 80px;
}
div.filter form select:nth-child(3) {
width : 100px;
}
div.filter form input:nth-child(4) {
width : 80px;
}
div.filter form select:nth-child(5) {
width : 100px;
}
div.filter form select:nth-child(6) {
width : 100px;
}
div.filter form select:nth-child(7) {
width : 100px;
}
div.filter form select:nth-child(8) {
width : 100px;
}
div.filter form select:nth-child(9) {
width : 100px;
}
div.content table td:last-child {
width : 140px;
}
table td button.load-detail {
background : #389af0;
border : 1px solid #367fa9;
margin : 5px 10px;
padding : 0;
width : 120px;
}
table td button.load-detail:hover {
background : #367fa9;
}
@media only screen and (max-width: 359px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
margin : 0 0 10px 0;
width : 210px;
}
div.filter form select:nth-child(3) {
width : 145px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 125px;
}
div.filter form select:nth-child(5) {
width : 145px;
}
div.filter form select:nth-child(6) {
margin : 0 0 10px 0;
width : 145px;
}
div.filter form select:nth-child(7) {
width : 145px;
}
div.filter form select:nth-child(8) {
margin : 0 0 10px 0;
width : 145px;
}
div.filter form select:nth-child(9) {
width : 190px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(3),
div.content table td:nth-child(3),
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
div.content table th:nth-child(2) p,
div.content table td:nth-child(2) p {
width : 116px;
}
}
@media only screen and (min-width: 360px) and (max-width: 479px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
margin : 0 0 10px 0;
width : 250px;
}
div.filter form select:nth-child(3) {
width : 165px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 145px;
}
div.filter form select:nth-child(5) {
width : 165px;
}
div.filter form select:nth-child(6) {
margin : 0 0 10px 0;
width : 165px;
}
div.filter form select:nth-child(7) {
width : 165px;
}
div.filter form select:nth-child(8) {
margin : 0 0 10px 0;
width : 165px;
}
div.filter form select:nth-child(9) {
width : 230px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(3),
div.content table td:nth-child(3),
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
div.content table th:nth-child(2) p,
div.content table td:nth-child(2) p {
width : 156px;
}
}
@media only screen and (min-width: 480px) and (max-width: 599px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 97px;
}
div.filter form select:nth-child(3) {
width : 117px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 96px;
}
div.filter form select:nth-child(5) {
width : 140px;
}
div.filter form select:nth-child(6) {
width : 140px;
}
div.filter form select:nth-child(7) {
margin : 0 0 10px 0;
width : 140px;
}
div.filter form select:nth-child(8) {
width : 160px;
}
div.filter form select:nth-child(9) {
width : 160px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(3),
div.content table td:nth-child(3),
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 600px) and (max-width: 639px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 137px;
}
div.filter form select:nth-child(3) {
width : 157px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 136px;
}
div.filter form select:nth-child(5) {
width : 180px;
}
div.filter form select:nth-child(6) {
width : 180px;
}
div.filter form select:nth-child(7) {
margin : 0 0 10px 0;
width : 180px;
}
div.filter form select:nth-child(8) {
width : 220px;
}
div.filter form select:nth-child(9) {
width : 220px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 150px;
}
div.filter form select:nth-child(3) {
width : 170px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 150px;
}
div.filter form select:nth-child(5) {
width : 193px;
}
div.filter form select:nth-child(6) {
width : 194px;
}
div.filter form select:nth-child(7) {
margin : 0 0 10px 0;
width : 193px;
}
div.filter form select:nth-child(8) {
width : 240px;
}
div.filter form select:nth-child(9) {
width : 240px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 768px) and (max-width: 799px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 140px;
}
div.filter form select:nth-child(3) {
width : 160px;
}
div.filter form input:nth-child(4) {
width : 140px;
}
div.filter form select:nth-child(5) {
margin : 0 0 10px 0;
width : 160px;
}
div.filter form select:nth-child(6) {
width : 150px;
}
div.filter form select:nth-child(7) {
width : 150px;
}
div.filter form select:nth-child(8) {
width : 150px;
}
div.filter form select:nth-child(9) {
width : 150px;
}
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 800px) and (max-width: 899px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 150px;
}
div.filter form select:nth-child(3) {
width : 170px;
}
div.filter form input:nth-child(4) {
width : 150px;
}
div.filter form select:nth-child(5) {
margin : 0 0 10px 0;
width : 170px;
}
div.filter form select:nth-child(6) {
width : 160px;
}
div.filter form select:nth-child(7) {
width : 160px;
}
div.filter form select:nth-child(8) {
width : 160px;
}
div.filter form select:nth-child(9) {
width : 160px;
}
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 900px) and (max-width: 979px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 175px;
}
div.filter form select:nth-child(3) {
width : 195px;
}
div.filter form input:nth-child(4) {
width : 175px;
}
div.filter form select:nth-child(5) {
margin : 0 0 10px 0;
width : 195px;
}
div.filter form select:nth-child(6) {
width : 185px;
}
div.filter form select:nth-child(7) {
width : 185px;
}
div.filter form select:nth-child(8) {
width : 185px;
}
div.filter form select:nth-child(9) {
width : 185px;
}
}
@media only screen and (min-width: 980px) and (max-width: 1023px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 190px;
}
div.filter form select:nth-child(3) {
width : 210px;
}
div.filter form input:nth-child(4) {
width : 190px;
}
div.filter form select:nth-child(5) {
margin : 0 0 10px 0;
width : 210px;
}
div.filter form select:nth-child(6) {
width : 200px;
}
div.filter form select:nth-child(7) {
width : 200px;
}
div.filter form select:nth-child(8) {
width : 200px;
}
div.filter form select:nth-child(9) {
width : 200px;
}
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 68px;
}
div.filter form select:nth-child(3) {
width : 89px;
}
div.filter form input:nth-child(4) {
width : 68px;
}
div.filter form select:nth-child(5) {
width : 89px;
}
div.filter form select:nth-child(6) {
width : 89px;
}
div.filter form select:nth-child(7) {
width : 89px;
}
div.filter form select:nth-child(8) {
width : 89px;
}
div.filter form select:nth-child(9) {
width : 89px;
}
}
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 73px;
}
div.filter form select:nth-child(3) {
width : 94px;
}
div.filter form input:nth-child(4) {
width : 73px;
}
div.filter form select:nth-child(5) {
width : 94px;
}
div.filter form select:nth-child(6) {
width : 94px;
}
div.filter form select:nth-child(7) {
width : 94px;
}
div.filter form select:nth-child(8) {
width : 94px;
}
div.filter form select:nth-child(9) {
width : 94px;
}
}
@media only screen and (min-width: 1366px) and (max-width: 1599px) {
/* Not set yet */
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 107px;
}
div.filter form select:nth-child(3) {
width : 128px;
}
div.filter form input:nth-child(4) {
width : 107px;
}
div.filter form select:nth-child(5) {
width : 127px;
}
div.filter form select:nth-child(6) {
width : 128px;
}
div.filter form select:nth-child(7) {
width : 128px;
}
div.filter form select:nth-child(8) {
width : 127px;
}
div.filter form select:nth-child(9) {
width : 128px;
}
}
@media only screen and (min-width: 1920px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 151px;
}
div.filter form select:nth-child(3) {
width : 171px;
}
div.filter form input:nth-child(4) {
width : 151px;
}
div.filter form select:nth-child(5) {
width : 171px;
}
div.filter form select:nth-child(6) {
width : 172px;
}
div.filter form select:nth-child(7) {
width : 172px;
}
div.filter form select:nth-child(8) {
width : 171px;
}
div.filter form select:nth-child(9) {
width : 171px;
}
} | asset/css/panel/transaction_request.css |
/*========== Popup ==========*/
div.wrapper .popup div.button {
margin : 0 auto 10px auto;
width : 210px;
}
div.popup .button button.accept,
div.popup .button button.reject {
background : #68b828;
border : 1px solid #5ca323;
display : block;
float : left;
line-height : 30px;
margin : 0 10px 0 0;
width : 100px;
}
div.popup .button button.reject {
background : #e51400;
border : 1px solid #b21000;
margin : 0;
}
div.popup .button button.accept:hover {
background : #5ca323;
}
div.popup .button button.reject:hover {
background : #b21000;
}
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 80px;
}
div.filter form select:nth-child(3) {
width : 100px;
}
div.filter form input:nth-child(4) {
width : 80px;
}
div.filter form select:nth-child(5) {
width : 100px;
}
div.filter form select:nth-child(6) {
width : 100px;
}
div.filter form select:nth-child(7) {
width : 100px;
}
div.filter form select:nth-child(8) {
width : 100px;
}
div.filter form select:nth-child(9) {
width : 100px;
}
div.content table td:last-child {
width : 140px;
}
table td button.load-detail {
background : #389af0;
border : 1px solid #367fa9;
margin : 5px 10px;
padding : 0;
width : 120px;
}
table td button.load-detail:hover {
background : #367fa9;
}
@media only screen and (max-width: 359px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
margin : 0 0 10px 0;
width : 210px;
}
div.filter form select:nth-child(3) {
width : 145px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 125px;
}
div.filter form select:nth-child(5) {
width : 145px;
}
div.filter form select:nth-child(6) {
margin : 0 0 10px 0;
width : 145px;
}
div.filter form select:nth-child(7) {
width : 145px;
}
div.filter form select:nth-child(8) {
margin : 0 0 10px 0;
width : 145px;
}
div.filter form select:nth-child(9) {
width : 190px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(3),
div.content table td:nth-child(3),
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
div.content table th:nth-child(2) p,
div.content table td:nth-child(2) p {
width : 116px;
}
}
@media only screen and (min-width: 360px) and (max-width: 479px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
margin : 0 0 10px 0;
width : 250px;
}
div.filter form select:nth-child(3) {
width : 165px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 145px;
}
div.filter form select:nth-child(5) {
width : 165px;
}
div.filter form select:nth-child(6) {
margin : 0 0 10px 0;
width : 165px;
}
div.filter form select:nth-child(7) {
width : 165px;
}
div.filter form select:nth-child(8) {
margin : 0 0 10px 0;
width : 165px;
}
div.filter form select:nth-child(9) {
width : 230px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(3),
div.content table td:nth-child(3),
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
div.content table th:nth-child(2) p,
div.content table td:nth-child(2) p {
width : 156px;
}
}
@media only screen and (min-width: 480px) and (max-width: 599px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 97px;
}
div.filter form select:nth-child(3) {
width : 117px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 96px;
}
div.filter form select:nth-child(5) {
width : 140px;
}
div.filter form select:nth-child(6) {
width : 140px;
}
div.filter form select:nth-child(7) {
margin : 0 0 10px 0;
width : 140px;
}
div.filter form select:nth-child(8) {
width : 160px;
}
div.filter form select:nth-child(9) {
width : 160px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(3),
div.content table td:nth-child(3),
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 600px) and (max-width: 639px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 137px;
}
div.filter form select:nth-child(3) {
width : 157px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 136px;
}
div.filter form select:nth-child(5) {
width : 180px;
}
div.filter form select:nth-child(6) {
width : 180px;
}
div.filter form select:nth-child(7) {
margin : 0 0 10px 0;
width : 180px;
}
div.filter form select:nth-child(8) {
width : 220px;
}
div.filter form select:nth-child(9) {
width : 220px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 150px;
}
div.filter form select:nth-child(3) {
width : 170px;
}
div.filter form input:nth-child(4) {
margin : 0 0 10px 0;
width : 150px;
}
div.filter form select:nth-child(5) {
width : 193px;
}
div.filter form select:nth-child(6) {
width : 194px;
}
div.filter form select:nth-child(7) {
margin : 0 0 10px 0;
width : 193px;
}
div.filter form select:nth-child(8) {
width : 240px;
}
div.filter form select:nth-child(9) {
width : 240px;
}
div.content table th:first-child,
div.content table td:first-child,
div.content table th:nth-child(4),
div.content table td:nth-child(4),
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 768px) and (max-width: 799px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 140px;
}
div.filter form select:nth-child(3) {
width : 160px;
}
div.filter form input:nth-child(4) {
width : 140px;
}
div.filter form select:nth-child(5) {
margin : 0 0 10px 0;
width : 160px;
}
div.filter form select:nth-child(6) {
width : 150px;
}
div.filter form select:nth-child(7) {
width : 150px;
}
div.filter form select:nth-child(8) {
width : 150px;
}
div.filter form select:nth-child(9) {
width : 150px;
}
div.content table th:nth-child(5),
div.content table td:nth-child(5),
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 800px) and (max-width: 899px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 150px;
}
div.filter form select:nth-child(3) {
width : 170px;
}
div.filter form input:nth-child(4) {
width : 150px;
}
div.filter form select:nth-child(5) {
margin : 0 0 10px 0;
width : 170px;
}
div.filter form select:nth-child(6) {
width : 160px;
}
div.filter form select:nth-child(7) {
width : 160px;
}
div.filter form select:nth-child(8) {
width : 160px;
}
div.filter form select:nth-child(9) {
width : 160px;
}
div.content table th:nth-child(6),
div.content table td:nth-child(6) {
display : none;
}
}
@media only screen and (min-width: 900px) and (max-width: 979px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 175px;
}
div.filter form select:nth-child(3) {
width : 195px;
}
div.filter form input:nth-child(4) {
width : 175px;
}
div.filter form select:nth-child(5) {
margin : 0 0 10px 0;
width : 195px;
}
div.filter form select:nth-child(6) {
width : 185px;
}
div.filter form select:nth-child(7) {
width : 185px;
}
div.filter form select:nth-child(8) {
width : 185px;
}
div.filter form select:nth-child(9) {
width : 185px;
}
}
@media only screen and (min-width: 980px) and (max-width: 1023px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 190px;
}
div.filter form select:nth-child(3) {
width : 210px;
}
div.filter form input:nth-child(4) {
width : 190px;
}
div.filter form select:nth-child(5) {
margin : 0 0 10px 0;
width : 210px;
}
div.filter form select:nth-child(6) {
width : 200px;
}
div.filter form select:nth-child(7) {
width : 200px;
}
div.filter form select:nth-child(8) {
width : 200px;
}
div.filter form select:nth-child(9) {
width : 200px;
}
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 68px;
}
div.filter form select:nth-child(3) {
width : 89px;
}
div.filter form input:nth-child(4) {
width : 68px;
}
div.filter form select:nth-child(5) {
width : 89px;
}
div.filter form select:nth-child(6) {
width : 89px;
}
div.filter form select:nth-child(7) {
width : 89px;
}
div.filter form select:nth-child(8) {
width : 89px;
}
div.filter form select:nth-child(9) {
width : 89px;
}
}
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 73px;
}
div.filter form select:nth-child(3) {
width : 94px;
}
div.filter form input:nth-child(4) {
width : 73px;
}
div.filter form select:nth-child(5) {
width : 94px;
}
div.filter form select:nth-child(6) {
width : 94px;
}
div.filter form select:nth-child(7) {
width : 94px;
}
div.filter form select:nth-child(8) {
width : 94px;
}
div.filter form select:nth-child(9) {
width : 94px;
}
}
@media only screen and (min-width: 1366px) and (max-width: 1599px) {
/* Not set yet */
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 107px;
}
div.filter form select:nth-child(3) {
width : 128px;
}
div.filter form input:nth-child(4) {
width : 107px;
}
div.filter form select:nth-child(5) {
width : 127px;
}
div.filter form select:nth-child(6) {
width : 128px;
}
div.filter form select:nth-child(7) {
width : 128px;
}
div.filter form select:nth-child(8) {
width : 127px;
}
div.filter form select:nth-child(9) {
width : 128px;
}
}
@media only screen and (min-width: 1920px) {
/*==================== Content ====================*/
div.filter form input:nth-child(2) {
width : 151px;
}
div.filter form select:nth-child(3) {
width : 171px;
}
div.filter form input:nth-child(4) {
width : 151px;
}
div.filter form select:nth-child(5) {
width : 171px;
}
div.filter form select:nth-child(6) {
width : 172px;
}
div.filter form select:nth-child(7) {
width : 172px;
}
div.filter form select:nth-child(8) {
width : 171px;
}
div.filter form select:nth-child(9) {
width : 171px;
}
} | 0.128813 | 0.087837 |
text-align: center;
padding: 0px 0px 20px 0px;
font-family: Lucida Sans Unicode;
font-size: 20px;
color: black;
}
#progress {
height: 250px;
font-size: 40px;
padding: 20px 0px 20px 0px;
}
#progress > svg {
height: 100%;
display: block;
}
#judge_error {
border-radius: 10px;
background: #FFCED7;
color: #D50E33;
font-family: 'Consolas', Courier, monospace;
font-size: 16px;
padding: 15px 20px 15px 20px;
min-width: 600px;
max-width: 1000px;
white-space: pre-wrap;
margin: 0 auto;
text-align: left;
display: none;
}
/* [Judge Summary] begin */
#judge_summary {
border-radius: 10px;
background: #EFEFEF;
padding: 15px 30px 15px 30px;
min-width: 300px;
max-width: 700px;
white-space: nowrap;
margin: auto;
margin-bottom: 30px;
visibility: hidden;
text-align: left;
font-family: Lucida Sans Unicode;
font-size: 16px;
}
#testset_link a {
text-decoration: none;
color: rgb(20, 135, 225);
}
#num_passed {
font-family: Lucida Console;
font-weight: bold;
}
#score {
font-family: Comic Sans MS;
color: #C38747;
}
#runtime {
color: #ABABAB;
float: right;
}
/* [Judge Summary] end */
/* [Judge Results Table] begin */
#judge_results_container {
visibility: hidden;
}
table {
border: 2px groove #68BAF9;
margin: auto;
border-collapse: collapse;
}
table tr {
border: 1px solid #AAD4F3;
padding: 5px 10px 5px 10px;
}
table tr:hover {
background: #F8FAFB;
}
table td {
max-width: 450px;
padding: 5px 10px 5px 10px;
border-right: 1px solid #E7E7E7
}
table hr {
border: 0px;
height: 1px;
background-image: linear-gradient(to right, #E6F6FF, #86CBF3, #E6F6FF);
margin-left: -5px;
margin-right: -5px;
}
.tr1 td {
font-weight: bold;
font-family: Lucida Sans Unicode;
text-align: center;
padding: 0px 10px 0px 10px;
background: #E1F2FF;
color: #2DA2FB;
}
.id {
font-family: Comic Sans MS;
text-align: center;
vertical-align: text-top;
color: #587CE6;
padding: 5px 13px 5px 13px;
}
.accepted {
font-weight: bold;
color: green;
text-align: center;
vertical-align: text-top;
}
.incorrect {
font-weight: bold;
color: red;
text-align: center;
vertical-align: text-top;
}
.io {
font-family: 'Consolas', Courier, monospace;
word-wrap: break-word;
white-space: pre-wrap;
word-break: break-all;
vertical-align: top;
}
.io_collapse {
color: #C0C0C0;
text-align: center;
display: none;
}
.answer_timedout {
color: #D50E33;
}
/* [Judge Results Table] end */
/* [Test set viewer] begin */
#page_judge_mask {
display: none;
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: rgba(0,0,0,0.6);
}
#testset_viewer {
display: none;
position: fixed;
left: 50%;
top: 50%;
width: 960px;
height: 540px;
margin-left: -480px;
margin-top: -270px;
background-color: rgba(0, 0, 0, 0.5);
}
#testset_viewer_icons {
position: absolute;
right: 0;
padding-top: 20px;
padding-right: 15px;
}
#testset_viewer_icons img {
width: 32px;
height: 32px;
margin-left: 10px;
cursor: pointer;
}
.tooltip_copy {
visibility: hidden;
opacity: 0;
background-color: #dadada;
color: #000000;
text-align: center;
border-radius: 6px;
padding: 5px 10px 5px 10px;
position: absolute;
z-index: 1;
bottom: 125%;
right: 0;
white-space: nowrap;
transition: opacity 0.3s;
font-family: sans-serif;
}
.tooltip_copy::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #dadada transparent transparent transparent;
}
#icon_copy:hover ~ .tooltip_copy {
visibility: visible;
opacity: 1;
}
#testset_text {
display: block;
margin: 0 auto;
resize: none;
width: 100%;
height: 100%;
background-color: #FCFCFC;
border: solid 2px #ACACAC;
font-family: monospace;
font-size: 14px;
}
/* [Test set viewer] end */ | webapp/stylesheets/judge.css | text-align: center;
padding: 0px 0px 20px 0px;
font-family: Lucida Sans Unicode;
font-size: 20px;
color: black;
}
#progress {
height: 250px;
font-size: 40px;
padding: 20px 0px 20px 0px;
}
#progress > svg {
height: 100%;
display: block;
}
#judge_error {
border-radius: 10px;
background: #FFCED7;
color: #D50E33;
font-family: 'Consolas', Courier, monospace;
font-size: 16px;
padding: 15px 20px 15px 20px;
min-width: 600px;
max-width: 1000px;
white-space: pre-wrap;
margin: 0 auto;
text-align: left;
display: none;
}
/* [Judge Summary] begin */
#judge_summary {
border-radius: 10px;
background: #EFEFEF;
padding: 15px 30px 15px 30px;
min-width: 300px;
max-width: 700px;
white-space: nowrap;
margin: auto;
margin-bottom: 30px;
visibility: hidden;
text-align: left;
font-family: Lucida Sans Unicode;
font-size: 16px;
}
#testset_link a {
text-decoration: none;
color: rgb(20, 135, 225);
}
#num_passed {
font-family: Lucida Console;
font-weight: bold;
}
#score {
font-family: Comic Sans MS;
color: #C38747;
}
#runtime {
color: #ABABAB;
float: right;
}
/* [Judge Summary] end */
/* [Judge Results Table] begin */
#judge_results_container {
visibility: hidden;
}
table {
border: 2px groove #68BAF9;
margin: auto;
border-collapse: collapse;
}
table tr {
border: 1px solid #AAD4F3;
padding: 5px 10px 5px 10px;
}
table tr:hover {
background: #F8FAFB;
}
table td {
max-width: 450px;
padding: 5px 10px 5px 10px;
border-right: 1px solid #E7E7E7
}
table hr {
border: 0px;
height: 1px;
background-image: linear-gradient(to right, #E6F6FF, #86CBF3, #E6F6FF);
margin-left: -5px;
margin-right: -5px;
}
.tr1 td {
font-weight: bold;
font-family: Lucida Sans Unicode;
text-align: center;
padding: 0px 10px 0px 10px;
background: #E1F2FF;
color: #2DA2FB;
}
.id {
font-family: Comic Sans MS;
text-align: center;
vertical-align: text-top;
color: #587CE6;
padding: 5px 13px 5px 13px;
}
.accepted {
font-weight: bold;
color: green;
text-align: center;
vertical-align: text-top;
}
.incorrect {
font-weight: bold;
color: red;
text-align: center;
vertical-align: text-top;
}
.io {
font-family: 'Consolas', Courier, monospace;
word-wrap: break-word;
white-space: pre-wrap;
word-break: break-all;
vertical-align: top;
}
.io_collapse {
color: #C0C0C0;
text-align: center;
display: none;
}
.answer_timedout {
color: #D50E33;
}
/* [Judge Results Table] end */
/* [Test set viewer] begin */
#page_judge_mask {
display: none;
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: rgba(0,0,0,0.6);
}
#testset_viewer {
display: none;
position: fixed;
left: 50%;
top: 50%;
width: 960px;
height: 540px;
margin-left: -480px;
margin-top: -270px;
background-color: rgba(0, 0, 0, 0.5);
}
#testset_viewer_icons {
position: absolute;
right: 0;
padding-top: 20px;
padding-right: 15px;
}
#testset_viewer_icons img {
width: 32px;
height: 32px;
margin-left: 10px;
cursor: pointer;
}
.tooltip_copy {
visibility: hidden;
opacity: 0;
background-color: #dadada;
color: #000000;
text-align: center;
border-radius: 6px;
padding: 5px 10px 5px 10px;
position: absolute;
z-index: 1;
bottom: 125%;
right: 0;
white-space: nowrap;
transition: opacity 0.3s;
font-family: sans-serif;
}
.tooltip_copy::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #dadada transparent transparent transparent;
}
#icon_copy:hover ~ .tooltip_copy {
visibility: visible;
opacity: 1;
}
#testset_text {
display: block;
margin: 0 auto;
resize: none;
width: 100%;
height: 100%;
background-color: #FCFCFC;
border: solid 2px #ACACAC;
font-family: monospace;
font-size: 14px;
}
/* [Test set viewer] end */ | 0.346762 | 0.101545 |
body {
display: flex;
flex-flow: row wrap;
}
button {
font: icon;
border-width: medium;
color: gold;
border-color: gold;
background-color: blue;
font-weight: bold;
}
legend {
font-family: serif;
font-variant: small-caps;
font-size: small;
font-weight: bold;
}
select {
font-family: monospace;
font-size: small;
box-sizing: border-box;
width: fit-content;
width: -moz-fit-content;
width: -webkit-fit-content;
border-radius: 400%/100%;
}
table {
border-collapse: collapse;
}
textarea {
overflow: auto;
}
#cwd {
max-width: 16em;
}
#db-form {
margin: 0 auto;
}
#hotwire {
line-height: 1.5em;
}
#msg-list {
list-style: none;
}
#msg-view {
display: flex;
flex-flow: column;
overflow: auto;
width: 100%;
max-width: 320px;
max-height: 5em;
}
#network {
max-width: 16em;
}
#portal {
display: flex;
flex-flow: column;
overflow: auto;
min-width: fit-content;
min-width: -moz-fit-content;
min-width: -webkit-fit-content;
width: 320px;
max-width: 320px;
height: 100%;
}
#querystring {
font-size: small;
font-style: italic;
color: gray;
}
#response {
display: flex;
flex-flow: column;
overflow: auto;
min-width: fit-content;
min-width: -moz-fit-content;
min-width: -webkit-fit-content;
width: 320px;
max-width: 100%;
height: 100%;
}
#store {
height: "unset";
}
.blue {
color: #0000FF;
}
.bottom {
left: 0;
vertical-align: bottom;
}
.center {
margin: 0 auto;
text-align: center;
vertical-align: middle;
}
.doc {
border: thin solid brown;
border-radius: 4px 3px 6px / 2px 4px;;
color: brown;
background-color: gold;
}
.gray {
color: #666666;
}
.green {
color: #00CC00;
}
.nowrap {
white-space: nowrap;
}
.param {
border-radius: 0;
}
.red {
color: #FF0000;
}
.right {
float: right;
}
.small {
font-family: monospace;
font-size: smaller;
}
.source {
font-weight: normal;
font-size: small;
border: thin solid brown;
border-radius: 10px;
color: brown;
background-color: gold;
}
.toggleView {
font-size: smaller;
border: thin solid brown;
border-radius: 400%/100%;
color: brown;
background-color: gold;
}
.top {
left: 0;
vertical-align: text-top;
}
.view {
display: flex;
flex-flow: column;
overflow: hidden;
min-width: fit-content;
min-width: -moz-fit-content;
min-width: -webkit-fit-content;
line-height: 1.4em;
}
.view>fieldset, .view>form, .view>form>fieldset {
display: flex;
flex-flow: column;
} | public/stylesheets/style.css | body {
display: flex;
flex-flow: row wrap;
}
button {
font: icon;
border-width: medium;
color: gold;
border-color: gold;
background-color: blue;
font-weight: bold;
}
legend {
font-family: serif;
font-variant: small-caps;
font-size: small;
font-weight: bold;
}
select {
font-family: monospace;
font-size: small;
box-sizing: border-box;
width: fit-content;
width: -moz-fit-content;
width: -webkit-fit-content;
border-radius: 400%/100%;
}
table {
border-collapse: collapse;
}
textarea {
overflow: auto;
}
#cwd {
max-width: 16em;
}
#db-form {
margin: 0 auto;
}
#hotwire {
line-height: 1.5em;
}
#msg-list {
list-style: none;
}
#msg-view {
display: flex;
flex-flow: column;
overflow: auto;
width: 100%;
max-width: 320px;
max-height: 5em;
}
#network {
max-width: 16em;
}
#portal {
display: flex;
flex-flow: column;
overflow: auto;
min-width: fit-content;
min-width: -moz-fit-content;
min-width: -webkit-fit-content;
width: 320px;
max-width: 320px;
height: 100%;
}
#querystring {
font-size: small;
font-style: italic;
color: gray;
}
#response {
display: flex;
flex-flow: column;
overflow: auto;
min-width: fit-content;
min-width: -moz-fit-content;
min-width: -webkit-fit-content;
width: 320px;
max-width: 100%;
height: 100%;
}
#store {
height: "unset";
}
.blue {
color: #0000FF;
}
.bottom {
left: 0;
vertical-align: bottom;
}
.center {
margin: 0 auto;
text-align: center;
vertical-align: middle;
}
.doc {
border: thin solid brown;
border-radius: 4px 3px 6px / 2px 4px;;
color: brown;
background-color: gold;
}
.gray {
color: #666666;
}
.green {
color: #00CC00;
}
.nowrap {
white-space: nowrap;
}
.param {
border-radius: 0;
}
.red {
color: #FF0000;
}
.right {
float: right;
}
.small {
font-family: monospace;
font-size: smaller;
}
.source {
font-weight: normal;
font-size: small;
border: thin solid brown;
border-radius: 10px;
color: brown;
background-color: gold;
}
.toggleView {
font-size: smaller;
border: thin solid brown;
border-radius: 400%/100%;
color: brown;
background-color: gold;
}
.top {
left: 0;
vertical-align: text-top;
}
.view {
display: flex;
flex-flow: column;
overflow: hidden;
min-width: fit-content;
min-width: -moz-fit-content;
min-width: -webkit-fit-content;
line-height: 1.4em;
}
.view>fieldset, .view>form, .view>form>fieldset {
display: flex;
flex-flow: column;
} | 0.407098 | 0.086093 |
.contenedor-header{
/*margin: 10px 20px 10px 20px;*/
}
html{
font-size: 62.5%;
}
body {
/*background-image: url("https://definicion.mx/wp-content/uploads/derecho/Derecho-Civil-justicia-arte-objetivo.jpg");*/
background-size: cover;
position: relative;
width: 60vw;
min-width: 50rem;
margin-left: auto;
margin-right: auto;
font-family: 'Segoe UI';
font-variant: normal;
font-size: 2.3rem;
color: #88495A;
}
h1 {
font-size: 4.4rem;
}
h2 {
font-size: 3.9rem;
font-weight: normal;
display: inline;
color: #88495A;
text-shadow: 1rem #000000;
text-transform: uppercase;
}
h3 {
font-size: 3.4rem;
}
h4 {
font-size: 2.9rem
}
#direccion{
text-align: center;
}
.menunav{
display: flex;
justify-content: space-between;
padding-top: 2rem;
align-items: center;
/* background-color: rgba(104, 100, 94, 0.9); */
}
.divisor_bloque{
background-color: #761732;
border-color: rgba(112 , 112, 112 1);
border-width: .1rem;
border-radius: .5rem;
border-style: groove;
display: flex;
justify-content: center;
height: 10.6rem;
}
.divisor_texto{
background-color: white;
margin: 27px 0px 27px 0px;
box-shadow: 0 0 2rem #E4C0CA;
}
.centrado{
display: flex;
align-items: center;
}
.horizontal{
display: flex;
flex-direction: column;
}
.texto_divisor{
font-weight: normal;
display: inline;
margin-left: .7rem;
margin-right: .8rem;
}
.navbartop a{
color: #761732;
font-size: 1.6rem;
text-decoration: none;
margin-right: 3rem;
margin-top: auto;
margin-bottom: auto;
}
/*
.page-header.img-inicio {
background-image: url(../Imagenes/Oficina2.jpg);
height: 75vh;
min-height: 70rem;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
width: 80vw;
min-width: 45rem;
margin: 10px auto 0 auto;
}
*/
/* <NAME> xdd */
.navcolor{
width: 100%;
background-color: rgba(181, 181, 181, 0.81);
}
a {
color: #761732;
text-decoration: none;
}
.navright{
display: block;
padding-top: 2rem;
float: right;
text-align: right;
}
.navleft{
float: left;
text-align: left;
}
footer{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 5rem;
border-color: rgba(136 , 73, 90, 1);
border-style: groove;
border-top-width: .2rem;
border-left-width: 0;
border-right-width: 0;
border-bottom-width: 0;
padding-top: 1rem;
}
.servicio {
margin-top: 1rem;
display: flex;
flex-direction: row;
height: 35rem;
border: 1px solid #761732;
}
.servicio h3{
font-weight: 600;
font-size: 3rem;
text-align:center;
}
.servicio-titulo{
display: flex;
flex-direction: column;
width: 40%;
min-width: 35rem;
justify-content: space-between;
padding-bottom: 1rem;
}
.servicio-texto{
text-align:center;
display: flex;
flex-direction: column;
justify-content: space-around;
padding: 0 1.5rem 0 3rem;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
.topnav .icon {
display: none;
}
@media screen and (max-width: 90rem) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 90rem) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
br {
clear:both ;
} | css/styles.css | .contenedor-header{
/*margin: 10px 20px 10px 20px;*/
}
html{
font-size: 62.5%;
}
body {
/*background-image: url("https://definicion.mx/wp-content/uploads/derecho/Derecho-Civil-justicia-arte-objetivo.jpg");*/
background-size: cover;
position: relative;
width: 60vw;
min-width: 50rem;
margin-left: auto;
margin-right: auto;
font-family: 'Segoe UI';
font-variant: normal;
font-size: 2.3rem;
color: #88495A;
}
h1 {
font-size: 4.4rem;
}
h2 {
font-size: 3.9rem;
font-weight: normal;
display: inline;
color: #88495A;
text-shadow: 1rem #000000;
text-transform: uppercase;
}
h3 {
font-size: 3.4rem;
}
h4 {
font-size: 2.9rem
}
#direccion{
text-align: center;
}
.menunav{
display: flex;
justify-content: space-between;
padding-top: 2rem;
align-items: center;
/* background-color: rgba(104, 100, 94, 0.9); */
}
.divisor_bloque{
background-color: #761732;
border-color: rgba(112 , 112, 112 1);
border-width: .1rem;
border-radius: .5rem;
border-style: groove;
display: flex;
justify-content: center;
height: 10.6rem;
}
.divisor_texto{
background-color: white;
margin: 27px 0px 27px 0px;
box-shadow: 0 0 2rem #E4C0CA;
}
.centrado{
display: flex;
align-items: center;
}
.horizontal{
display: flex;
flex-direction: column;
}
.texto_divisor{
font-weight: normal;
display: inline;
margin-left: .7rem;
margin-right: .8rem;
}
.navbartop a{
color: #761732;
font-size: 1.6rem;
text-decoration: none;
margin-right: 3rem;
margin-top: auto;
margin-bottom: auto;
}
/*
.page-header.img-inicio {
background-image: url(../Imagenes/Oficina2.jpg);
height: 75vh;
min-height: 70rem;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
width: 80vw;
min-width: 45rem;
margin: 10px auto 0 auto;
}
*/
/* <NAME> xdd */
.navcolor{
width: 100%;
background-color: rgba(181, 181, 181, 0.81);
}
a {
color: #761732;
text-decoration: none;
}
.navright{
display: block;
padding-top: 2rem;
float: right;
text-align: right;
}
.navleft{
float: left;
text-align: left;
}
footer{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 5rem;
border-color: rgba(136 , 73, 90, 1);
border-style: groove;
border-top-width: .2rem;
border-left-width: 0;
border-right-width: 0;
border-bottom-width: 0;
padding-top: 1rem;
}
.servicio {
margin-top: 1rem;
display: flex;
flex-direction: row;
height: 35rem;
border: 1px solid #761732;
}
.servicio h3{
font-weight: 600;
font-size: 3rem;
text-align:center;
}
.servicio-titulo{
display: flex;
flex-direction: column;
width: 40%;
min-width: 35rem;
justify-content: space-between;
padding-bottom: 1rem;
}
.servicio-texto{
text-align:center;
display: flex;
flex-direction: column;
justify-content: space-around;
padding: 0 1.5rem 0 3rem;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
.topnav .icon {
display: none;
}
@media screen and (max-width: 90rem) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 90rem) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
br {
clear:both ;
} | 0.347537 | 0.08318 |
body {
background-image: url('../images/green-background.jpg');
display: flex;
justify-content: center;
font-family: 'Roboto', 'sans-serif';
color: #3A3A3A;
}
form {
background-image: url('../images/gplaypattern.png');
display: flex;
flex-flow: column wrap;
align-items: center;
width: 500px;
border-radius: 1em;
padding: 2em;
}
h1 {
font-size: 2em;
font-weight: bold;
}
.account-type {
margin-top: 1em;
margin-bottom: 1em;
}
label.radio {
cursor: pointer;
text-indent: 2em;
display: inline-block;
position: relative;
}
input[type=radio] {
visibility: hidden;
}
label.radio:before {
content: '';
position: absolute;
background-color: rgb(2, 158, 86);
width: 1.25em;
height: 1.25em;
border-radius: 50%;
left: 0;
}
label.radio:after {
opacity: 0;
content: '';
position: absolute;
background-color: #f1f1f1;
width: 7px;
height: 7px;
border-radius: 50%;
top: 6px;
left: 6.5px;
}
input[type=radio]:checked+label:after {
opacity: 1;
}
.credentials {
display: flex;
align-items: center;
margin-top: 1.5em;
}
.fas {
cursor: pointer;
width: 2em;
height: 1.2em;
background-color: rgb(2, 158, 86);
padding: 5px 10px 5px 5px;
border-radius: 0.5em 0 0 0.5em;
color: #f1f1f1;
border: solid 1px #3A3A3A;
text-align: center;
}
.check {
cursor: none;
background-color: transparent;
padding: 0;
border: none;
text-align: end;
font-size: 1.5em !important;
}
.green {
color: rgb(2, 158, 86);
}
.red {
color: rgb(255, 0, 0);
}
.input {
background-color: transparent;
outline: none;
border: none;
border-bottom: 1px #3A3A3A solid;
padding: 0.5em 1em 0.5em 0;
font-size: 1.15em;
width: 100%;
margin-left: 0.5em;
}
#pass-strength {
font-size: 0.9em;
font-weight: bold;
margin: 5px 0 0 3.5em;
}
.very-weak {
color: rgb(175, 0, 0);
}
.weak {
color: rgb(255, 0, 0);
}
.good {
color: rgb(255, 200, 0);
}
.strong {
color: rgb(0, 200, 0);
}
button {
margin: 3em 0 1.5em 0;
padding: 1em 5em;
border-radius: 0.5em;
border: 0;
cursor: pointer;
background-color: #f1f1f1;
font-size: 1em;
font-weight: bold;
opacity: 0.7;
}
button:hover {
opacity: 1;
}
button::after {
content: " ";
display: block;
width: 100%;
margin-top: 5px;
height: 2px;
background-color: #3A3A3A;
transform: scaleX(0);
transition: all 0.3s ease-in-out;
}
button:hover::after {
transform: scaleX(1.75);
}
.display-errors {
font-size: 0.8em;
color: red;
margin-bottom: 2.5em;
}
#having-acc {
display: flex;
flex-direction: column;
align-items: center;
}
#having-acc>span {
font-size: 0.9em;
margin-bottom: 1em;
}
.link {
text-decoration: none;
color: #3A3A3A;
font-size: 0.8em;
}
.link:hover {
border-bottom: 1px #3A3A3A solid;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted #3A3A3A;
}
.tooltip .tooltiptext {
visibility: hidden;
font-size: 1em;
width: 25em;
background-color: #3A3A3A;
color: white;
border-radius: 1em;
padding: 1em;
position: absolute;
bottom: 150%;
left: -10em;
white-space: pre;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
#logo {
width: 10em;
height: 5em;
margin-bottom: 1.5em;
}
@media screen and (max-width: 600px) {
form {
width: 250px;
}
.tooltip .tooltiptext {
font-size: 0.8em;
left: -7em;
}
} | public/assets/css/register.css | body {
background-image: url('../images/green-background.jpg');
display: flex;
justify-content: center;
font-family: 'Roboto', 'sans-serif';
color: #3A3A3A;
}
form {
background-image: url('../images/gplaypattern.png');
display: flex;
flex-flow: column wrap;
align-items: center;
width: 500px;
border-radius: 1em;
padding: 2em;
}
h1 {
font-size: 2em;
font-weight: bold;
}
.account-type {
margin-top: 1em;
margin-bottom: 1em;
}
label.radio {
cursor: pointer;
text-indent: 2em;
display: inline-block;
position: relative;
}
input[type=radio] {
visibility: hidden;
}
label.radio:before {
content: '';
position: absolute;
background-color: rgb(2, 158, 86);
width: 1.25em;
height: 1.25em;
border-radius: 50%;
left: 0;
}
label.radio:after {
opacity: 0;
content: '';
position: absolute;
background-color: #f1f1f1;
width: 7px;
height: 7px;
border-radius: 50%;
top: 6px;
left: 6.5px;
}
input[type=radio]:checked+label:after {
opacity: 1;
}
.credentials {
display: flex;
align-items: center;
margin-top: 1.5em;
}
.fas {
cursor: pointer;
width: 2em;
height: 1.2em;
background-color: rgb(2, 158, 86);
padding: 5px 10px 5px 5px;
border-radius: 0.5em 0 0 0.5em;
color: #f1f1f1;
border: solid 1px #3A3A3A;
text-align: center;
}
.check {
cursor: none;
background-color: transparent;
padding: 0;
border: none;
text-align: end;
font-size: 1.5em !important;
}
.green {
color: rgb(2, 158, 86);
}
.red {
color: rgb(255, 0, 0);
}
.input {
background-color: transparent;
outline: none;
border: none;
border-bottom: 1px #3A3A3A solid;
padding: 0.5em 1em 0.5em 0;
font-size: 1.15em;
width: 100%;
margin-left: 0.5em;
}
#pass-strength {
font-size: 0.9em;
font-weight: bold;
margin: 5px 0 0 3.5em;
}
.very-weak {
color: rgb(175, 0, 0);
}
.weak {
color: rgb(255, 0, 0);
}
.good {
color: rgb(255, 200, 0);
}
.strong {
color: rgb(0, 200, 0);
}
button {
margin: 3em 0 1.5em 0;
padding: 1em 5em;
border-radius: 0.5em;
border: 0;
cursor: pointer;
background-color: #f1f1f1;
font-size: 1em;
font-weight: bold;
opacity: 0.7;
}
button:hover {
opacity: 1;
}
button::after {
content: " ";
display: block;
width: 100%;
margin-top: 5px;
height: 2px;
background-color: #3A3A3A;
transform: scaleX(0);
transition: all 0.3s ease-in-out;
}
button:hover::after {
transform: scaleX(1.75);
}
.display-errors {
font-size: 0.8em;
color: red;
margin-bottom: 2.5em;
}
#having-acc {
display: flex;
flex-direction: column;
align-items: center;
}
#having-acc>span {
font-size: 0.9em;
margin-bottom: 1em;
}
.link {
text-decoration: none;
color: #3A3A3A;
font-size: 0.8em;
}
.link:hover {
border-bottom: 1px #3A3A3A solid;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted #3A3A3A;
}
.tooltip .tooltiptext {
visibility: hidden;
font-size: 1em;
width: 25em;
background-color: #3A3A3A;
color: white;
border-radius: 1em;
padding: 1em;
position: absolute;
bottom: 150%;
left: -10em;
white-space: pre;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
#logo {
width: 10em;
height: 5em;
margin-bottom: 1.5em;
}
@media screen and (max-width: 600px) {
form {
width: 250px;
}
.tooltip .tooltiptext {
font-size: 0.8em;
left: -7em;
}
} | 0.593609 | 0.184694 |
@charset "UTF-8";
/* This is the first page of my website */
body {
font-family: 'Times New Roman', Georgia, Serif;
color: Black;
}
div {
font-family: myFirstFont;
}
blockquote {
font-family: 'Arial', 'Helvetica', 'sans-serif';
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
color: #1a0000;
text-decoration: underline;
}
h1 {
font-family: 'Arial', 'Helvetica', 'sans-serif';
font-size: 24px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
color: #1a0000;
text-decoration: underline;
width: 100%;
height: auto;
-moz-box-shadow: 2px 2px 10px rgba(0,255,0,.75), 5px 5px 20px rgba(125,0,0,.5);
-webkit-box-shadow: 2px 2px 10px rgba(0,255,0,.75), 5px 5px 20px rgba(125,0,0,.5);
box-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
h2 {
font-family: 'Arial', 'Helvetica', 'sans-serif';
color: #1a0000;
background: rgba (128,0,0);
text-shadow: 2px 2px 0 rgba(255,255,255,1), 6px 6px 0 rgba(50,50,50,.25);
font-size: 20px;
text-transform: uppercase;
font-weight: bold;
font-style: italic;
text-decoration: underline;
}
p {
font-family: 'Roboto Condensed', Arial, San Serif;
line-height: 1.5;
}
article, section, aside, nav, header, footer {
display: block;
}
nav ul {
font-size: 20px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
text-decoration: underline;
margin: 0;
padding: 15px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
border: 0px ;
position: relative;
text-transform: uppercase;
}
nav ul li {
display: inline;
padding: 1.0px;
}
nav ul li a {
margin: 0;
padding: 0.1px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
border: 0.5px dashed #808080;
position: relative;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
nav ul li a:hover {
color: #808080;
background-color: #fff;
}
article {
float:left;
margin-left:1.5%;
margin-bottom: 20px;
width: 70%;
min-height: 300px;
padding: 15px;
border: 0.1px dashed #f0f0f5;
background-color: #e0e0eb;
}
aside {
margin-left:76%;
width: 25.5%;
min-height: 150px;
background-color: #e0e0eb;
border: 0.1px dashed #f0f0f5;
}
#rightsidebar1 li a {
text-decoration: none;
color: #fff;
background-color: #e0e0eb;
border: 0.1px solid #f0f0f5;
width: 60px;
height: 5px;
padding: 0.5em 1em;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
#rightsidebar1 li a:hover {
color: #000;
background-color: #fff;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
#rightsidebar {
list-style-type: none;
display: block;
}
#rightsidebar li {
width: 200px;
background: #e0e0eb;
padding: 5px;
}
#rightsidebar li a {
font-family: 'Arial', 'Helvetica', 'sans-serif';
font-size: 15px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
text-decoration: underline;
text-decoration: none;
background-color: #e0e0eb;
border: 0.1px solid #f0f0f5;
width: 60px;
height: 5px;
padding: 0.5em 1em;
}
div ul {
font-size: 20px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
text-decoration: underline;
margin: 0;
padding: 15px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
border: 0px ;
position: relative;
text-transform: uppercase;
}
div ul li {
display: inline;
padding: 1.0px;
}
div ul li a {
margin: 0;
padding: 0.1px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
border: 0.5px dashed #808080;
position: relative;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
div ul li a:hover {
color: #808080;
background-color: #fff;
}
img {
width: 100%;
height: 50%;
-moz-border-radius-topleft: 75px;
-moz-border-top-left-radius: 75px;
-webkit-border-top-left-radius: 75px;
border-top-left-radius: 75px;
}
fieldset {
color: #808080;
padding: 14px 25px;
text-decoration: none;
margin: 0;
padding: 0.1px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
position: relative;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
.button {
background-color: white;
color: black;
border: 2px solid #e0e0eb;
position: relative;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
.button {
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
.button:hover {
background-color: #e0e0eb;
color: white;
}
#footer {
border-radius: 25px;
border: 4px solid #c2c2d6;
padding: 20px;
width: 95%;
height: 10%;
background-color: #e0e0eb;
}
#footer1{
font-size: 24px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
color: #1a0000;
text-decoration: underline;
width: 100%;
height: auto;
}
div{
font-size: 16px;
font-weight: bold;
font-style: italic;
color: #1a0000;
}
#small{
font-size: 16px;
font-weight: bold;
font-style: italic;
color: #1a0000;
} | themes/stylesheet.css | @charset "UTF-8";
/* This is the first page of my website */
body {
font-family: 'Times New Roman', Georgia, Serif;
color: Black;
}
div {
font-family: myFirstFont;
}
blockquote {
font-family: 'Arial', 'Helvetica', 'sans-serif';
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
color: #1a0000;
text-decoration: underline;
}
h1 {
font-family: 'Arial', 'Helvetica', 'sans-serif';
font-size: 24px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
color: #1a0000;
text-decoration: underline;
width: 100%;
height: auto;
-moz-box-shadow: 2px 2px 10px rgba(0,255,0,.75), 5px 5px 20px rgba(125,0,0,.5);
-webkit-box-shadow: 2px 2px 10px rgba(0,255,0,.75), 5px 5px 20px rgba(125,0,0,.5);
box-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
h2 {
font-family: 'Arial', 'Helvetica', 'sans-serif';
color: #1a0000;
background: rgba (128,0,0);
text-shadow: 2px 2px 0 rgba(255,255,255,1), 6px 6px 0 rgba(50,50,50,.25);
font-size: 20px;
text-transform: uppercase;
font-weight: bold;
font-style: italic;
text-decoration: underline;
}
p {
font-family: 'Roboto Condensed', Arial, San Serif;
line-height: 1.5;
}
article, section, aside, nav, header, footer {
display: block;
}
nav ul {
font-size: 20px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
text-decoration: underline;
margin: 0;
padding: 15px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
border: 0px ;
position: relative;
text-transform: uppercase;
}
nav ul li {
display: inline;
padding: 1.0px;
}
nav ul li a {
margin: 0;
padding: 0.1px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
border: 0.5px dashed #808080;
position: relative;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
nav ul li a:hover {
color: #808080;
background-color: #fff;
}
article {
float:left;
margin-left:1.5%;
margin-bottom: 20px;
width: 70%;
min-height: 300px;
padding: 15px;
border: 0.1px dashed #f0f0f5;
background-color: #e0e0eb;
}
aside {
margin-left:76%;
width: 25.5%;
min-height: 150px;
background-color: #e0e0eb;
border: 0.1px dashed #f0f0f5;
}
#rightsidebar1 li a {
text-decoration: none;
color: #fff;
background-color: #e0e0eb;
border: 0.1px solid #f0f0f5;
width: 60px;
height: 5px;
padding: 0.5em 1em;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
#rightsidebar1 li a:hover {
color: #000;
background-color: #fff;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
#rightsidebar {
list-style-type: none;
display: block;
}
#rightsidebar li {
width: 200px;
background: #e0e0eb;
padding: 5px;
}
#rightsidebar li a {
font-family: 'Arial', 'Helvetica', 'sans-serif';
font-size: 15px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
text-decoration: underline;
text-decoration: none;
background-color: #e0e0eb;
border: 0.1px solid #f0f0f5;
width: 60px;
height: 5px;
padding: 0.5em 1em;
}
div ul {
font-size: 20px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
text-decoration: underline;
margin: 0;
padding: 15px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
border: 0px ;
position: relative;
text-transform: uppercase;
}
div ul li {
display: inline;
padding: 1.0px;
}
div ul li a {
margin: 0;
padding: 0.1px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
border: 0.5px dashed #808080;
position: relative;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
div ul li a:hover {
color: #808080;
background-color: #fff;
}
img {
width: 100%;
height: 50%;
-moz-border-radius-topleft: 75px;
-moz-border-top-left-radius: 75px;
-webkit-border-top-left-radius: 75px;
border-top-left-radius: 75px;
}
fieldset {
color: #808080;
padding: 14px 25px;
text-decoration: none;
margin: 0;
padding: 0.1px;
list-style-type: none;
text-align: center;
background-color: #e0e0eb;
position: relative;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
.button {
background-color: white;
color: black;
border: 2px solid #e0e0eb;
position: relative;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
}
.button {
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
.button:hover {
background-color: #e0e0eb;
color: white;
}
#footer {
border-radius: 25px;
border: 4px solid #c2c2d6;
padding: 20px;
width: 95%;
height: 10%;
background-color: #e0e0eb;
}
#footer1{
font-size: 24px;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 2px 0 rgba(128,128,128,1), 6px 6px 0 rgba(134,121,121,.25);
font-weight: bold;
font-style: italic;
color: #1a0000;
text-decoration: underline;
width: 100%;
height: auto;
}
div{
font-size: 16px;
font-weight: bold;
font-style: italic;
color: #1a0000;
}
#small{
font-size: 16px;
font-weight: bold;
font-style: italic;
color: #1a0000;
} | 0.219756 | 0.045226 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--color-facebook: #3b5998;
--color-twitter: #3cf;
--color-gmail: #dc4a38;
--color-dribble: #f26798;
--color-skype: #00aff0;
--color-pinterest: #BD081C;
--color-instagram: #C13584;
--color-vimeo: #19B7EA;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #ecf0f1;
}
a {
text-decoration: none;
}
.socialBar a {
display: inline-block;
width: 70px;
height: 70px;
line-height: 70px;
text-align: center;
font-size: 25px;
border-radius: 50%;
background: transparent;
border: 2px solid #222;
color: #222;
margin: 20px;
position: relative;
overflow: hidden;
}
.socialBar a::before {
content: "";
position: absolute;
top: 4px;
left: 4px;
bottom: 4px;
right: 4px;
border-radius: 50%;
z-index: -1;
transform: translateY(-110%);
transition: all 0.3s;
}
.socialBar a:hover::before {
transform: translateY(0);
}
.socialBar a:nth-of-type(1) {
border-color: var(--color-facebook);
color: var(--color-facebook);
}
.socialBar a:nth-of-type(2) {
border-color: var(--color-twitter);
color: var(--color-twitter);
}
.socialBar a:nth-of-type(3) {
border-color: var(--color-gmail);
color: var(--color-gmail);
}
.socialBar a:nth-of-type(4) {
border-color: var(--color-dribble);
color: var(--color-dribble);
}
.socialBar a:nth-of-type(5) {
border-color: var(--color-skype);
color: var(--color-skype);
}
.socialBar a:nth-of-type(6) {
border-color: var(--color-pinterest);
color: var(--color-pinterest);
}
.socialBar a:nth-of-type(7) {
border-color: var(--color-instagram);
color: var(--color-instagram);
}
.socialBar a:nth-of-type(8) {
border-color: var(--color-vimeo);
color: var(--color-vimeo);
}
.socialBar a:nth-of-type(1):hover::before {
background: var(--color-facebook);
}
.socialBar a:nth-of-type(2):hover::before {
background: var(--color-twitter);
}
.socialBar a:nth-of-type(3):hover::before {
background: var(--color-gmail);
}
.socialBar a:nth-of-type(4):hover::before {
background: var(--color-dribble);
}
.socialBar a:nth-of-type(5):hover::before {
background: var(--color-skype);
}
.socialBar a:nth-of-type(6):hover::before {
background: var(--color-pinterest);
}
.socialBar a:nth-of-type(7):hover::before {
background: var(--color-instagram);
}
.socialBar a:nth-of-type(8):hover::before {
background: var(--color-vimeo);
}
.socialBar a i {
transition: all 0.2s;
}
.socialBar a:hover i {
color: #fff;
} | 8.Social Bar/socialBar-2/style.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--color-facebook: #3b5998;
--color-twitter: #3cf;
--color-gmail: #dc4a38;
--color-dribble: #f26798;
--color-skype: #00aff0;
--color-pinterest: #BD081C;
--color-instagram: #C13584;
--color-vimeo: #19B7EA;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #ecf0f1;
}
a {
text-decoration: none;
}
.socialBar a {
display: inline-block;
width: 70px;
height: 70px;
line-height: 70px;
text-align: center;
font-size: 25px;
border-radius: 50%;
background: transparent;
border: 2px solid #222;
color: #222;
margin: 20px;
position: relative;
overflow: hidden;
}
.socialBar a::before {
content: "";
position: absolute;
top: 4px;
left: 4px;
bottom: 4px;
right: 4px;
border-radius: 50%;
z-index: -1;
transform: translateY(-110%);
transition: all 0.3s;
}
.socialBar a:hover::before {
transform: translateY(0);
}
.socialBar a:nth-of-type(1) {
border-color: var(--color-facebook);
color: var(--color-facebook);
}
.socialBar a:nth-of-type(2) {
border-color: var(--color-twitter);
color: var(--color-twitter);
}
.socialBar a:nth-of-type(3) {
border-color: var(--color-gmail);
color: var(--color-gmail);
}
.socialBar a:nth-of-type(4) {
border-color: var(--color-dribble);
color: var(--color-dribble);
}
.socialBar a:nth-of-type(5) {
border-color: var(--color-skype);
color: var(--color-skype);
}
.socialBar a:nth-of-type(6) {
border-color: var(--color-pinterest);
color: var(--color-pinterest);
}
.socialBar a:nth-of-type(7) {
border-color: var(--color-instagram);
color: var(--color-instagram);
}
.socialBar a:nth-of-type(8) {
border-color: var(--color-vimeo);
color: var(--color-vimeo);
}
.socialBar a:nth-of-type(1):hover::before {
background: var(--color-facebook);
}
.socialBar a:nth-of-type(2):hover::before {
background: var(--color-twitter);
}
.socialBar a:nth-of-type(3):hover::before {
background: var(--color-gmail);
}
.socialBar a:nth-of-type(4):hover::before {
background: var(--color-dribble);
}
.socialBar a:nth-of-type(5):hover::before {
background: var(--color-skype);
}
.socialBar a:nth-of-type(6):hover::before {
background: var(--color-pinterest);
}
.socialBar a:nth-of-type(7):hover::before {
background: var(--color-instagram);
}
.socialBar a:nth-of-type(8):hover::before {
background: var(--color-vimeo);
}
.socialBar a i {
transition: all 0.2s;
}
.socialBar a:hover i {
color: #fff;
} | 0.464416 | 0.125413 |
==============================
Default CSS
==============================
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
body {
padding: 0;
margin: 0;
background: #111111;
font-family: "Poppins", sans-serif;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 0;
font-weight: 400;
line-height: 1;
color: #fff;
}
ul {
padding-left: 0;
margin-bottom: 0;
}
ul li {
list-style: none;
}
:focus {
outline: 0 !important;
}
p {
margin-bottom: 0;
font-weight: 300;
line-height: 1.8;
color: #dddddd;
}
a {
color: #dddddd;
text-decoration: none;
-webkit-transition: .4s;
transition: .4s;
}
a:hover,
a:focus {
color: #ff2c57;
text-decoration: none;
}
img {
max-width: 100%;
}
.ptb-80 {
padding-bottom: 80px;
padding-top: 80px;
}
.d-table {
width: 100%;
height: 100%;
}
.d-table-cell {
vertical-align: middle;
}
.bg-222222 {
background: #222222;
}
/*Btn Btn-Primary*/
.btn {
padding: 9px 25px;
font-size: 16px;
border-radius: 30px;
-webkit-transition: .4s;
transition: .4s;
}
.btn-primary {
color: #ffffff;
background-color: #ff2c57;
border-color: #ff2c57;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus {
color: #ff2c57;
background-color: #ffffff;
border-color: #ff2c57;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
color: #ffffff;
background-color: #ff2c57;
border-color: #ff2c57;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-primary.focus,
.btn-primary:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
color: #ffffff;
background-color: #ff2c57;
border-color: #ff2c57;
opacity: 1;
}
/* Section Title */
.section-title {
margin-bottom: 60px;
padding-left: 30px;
position: relative;
}
.section-title::before,
.section-title::after {
content: '';
position: absolute;
width: 3px;
height: 100%;
left: 10px;
top: 0;
background: #ff2c57;
-webkit-transition: .4s;
transition: .4s;
}
.section-title::after {
left: 0;
height: 50%;
}
.section-title:hover::before {
height: 50%;
}
.section-title:hover::after {
height: 100%;
}
.section-title h2 {
font-size: 35px;
font-weight: 200;
margin-bottom: 20px;
}
.section-title h2 span {
color: #ff2c57;
font-weight: 600;
}
.section-title p {
max-width: 635px;
margin-top: -7px;
}
.section-title h4 {
font-size: 18px;
font-weight: 300;
color: #ff2c57;
margin-bottom: 17px;
text-transform: capitalize;
}
/* Form Control */
.form-control {
height: 45px;
padding: 10px;
font-size: 15px;
background-color: #ffffff;
border: 1px solid #eeeeee;
border-radius: 0;
}
.form-control:focus {
border-color: #dddddd;
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
/* Owl Carousel Button */
.owl-theme .owl-controls {
margin-top: 50px;
line-height: 0;
}
.owl-theme .owl-nav {
margin-top: 0;
}
.owl-theme .owl-dots .owl-dot span {
width: 15px;
height: 15px;
margin: 0 4px;
background: transparent;
border-radius: 50%;
border: 2px solid #dddddd;
-webkit-transition: .4s;
transition: .4s;
}
.owl-theme .owl-dots .owl-dot.active span {
background: #869791;
border-radius: 5px;
width: 35px;
height: 10px;
border-color: #ff2c57;
background: #ff2c57;
}
.owl-theme .owl-dots .owl-dot:hover span {
background: #ff2c57;
border-color: #ff2c57;
}
.owl-theme .owl-nav [class*="owl-"] {
position: absolute;
left: 40px;
top: 50%;
margin-top: -20px;
background: rgba(255, 255, 255, 0.33);
width: 60px;
text-align: center;
height: 60px;
line-height: 54px;
border-radius: 50%;
font-size: 30px;
color: #ffffff;
-webkit-transition: .4s;
transition: .4s;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
background: #ff2c57;
color: #ffffff;
}
.owl-theme .owl-nav .owl-next {
left: auto;
right: 40px;
}
/*
==============================
Preloader CSS
==============================
*/
.preloader {
position: fixed;
width: 100%;
height: 100%;
background: #ffffff;
z-index: 99999;
}
.preloader .folding-cube {
left: 0;
width: 60px;
height: 60px;
position: absolute;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
top: 50%;
right: 0;
margin: -60px auto 0;
}
.preloader .folding-cube .cube {
float: left;
width: 50%;
height: 50%;
position: relative;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.preloader .folding-cube .cube::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ff2c57;
-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
animation: sk-foldCubeAngle 2.4s infinite linear both;
-webkit-transform-origin: 100% 100%;
transform-origin: 100% 100%;
}
.preloader .folding-cube .cube2 {
-webkit-transform: scale(1.1) rotateZ(90deg);
transform: scale(1.1) rotateZ(90deg);
}
.preloader .folding-cube .cube2::before {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.preloader .folding-cube .cube3 {
-webkit-transform: scale(1.1) rotateZ(180deg);
transform: scale(1.1) rotateZ(180deg);
}
.preloader .folding-cube .cube3::before {
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
.preloader .folding-cube .cube4 {
-webkit-transform: scale(1.1) rotateZ(270deg);
transform: scale(1.1) rotateZ(270deg);
}
.preloader .folding-cube .cube4::before {
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
0%,
10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
}
25%,
75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1;
}
90%,
100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
@keyframes sk-foldCubeAngle {
0%,
10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
}
25%,
75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1;
}
90%,
100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
/*
==============================
Main Header CSS
==============================
*/
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 2;
background: transparent !important;
padding-top: 20px;
padding-bottom: 20px;
}
.header-sticky.is-sticky {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
padding-top: 10px;
padding-bottom: 10px;
background: #000000 !important;
}
.navbar-light .navbar-brand {
color: #ffffff;
font-weight: 600;
text-transform: uppercase;
}
.navbar-light .navbar-brand span {
color: #ff2c57;
font-size: 35px;
font-weight: 700;
text-transform: lowercase;
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
color: #ffffff;
}
.navbar-light .navbar-nav .nav-item {
padding-right: 15px;
padding-left: 15px;
}
.navbar-light .navbar-nav .nav-item:last-child {
padding-right: 0;
}
.navbar-light .navbar-nav .nav-item .nav-link {
color: #ffffff;
padding-right: 0;
padding-left: 0;
}
.navbar-light .navbar-nav .nav-item .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link.show,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link:focus {
color: #ff2c57;
}
.navbar-light .navbar-nav .active .nav-link,
.navbar-light .navbar-nav.show .nav-link {
color: #ff2c57;
}
.navbar-light.header-sticky.is-sticky .navbar-brand {
color: #ffffff;
}
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link {
color: #ffffff;
padding-right: 0;
padding-left: 0;
}
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link.active,
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link.show,
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link:hover,
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link:focus {
color: #ff2c57;
}
.navbar-light.header-sticky.is-sticky .navbar-nav .active .nav-link,
.navbar-light.header-sticky.is-sticky .navbar-nav .show .nav-link {
color: #ff2c57;
}
/*
==============================
Main Banner CSS
==============================
*/
.main-banner {
height: 750px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
overflow: hidden;
}
.main-banner::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .77;
}
.item-bg-one {
background-image: url(../../assets/img/main-bg-1.jpg);
}
.item-bg-two {
background-image: url(../../assets/img/main-bg-2.jpg);
}
.item-bg-three {
background-image: url(../../assets/img/main-bg-3.jpg);
}
.main-banner-text {
text-align: center;
}
.main-banner-text h4 {
color: #ffffff;
font-weight: 200;
font-size: 24px;
letter-spacing: 1px;
}
.main-banner-text h1 {
color: #ffffff;
font-size: 55px;
font-weight: 200;
margin-top: 25px;
margin-bottom: 30px;
letter-spacing: 2px;
}
.main-banner-text h1 span {
color: #ff2c57;
font-weight: 600;
}
.main-banner-text p {
color: #ffffff;
max-width: 730px;
margin: auto;
margin-bottom: 30px;
}
.main-banner-text .btn:hover,
.main-banner-text .btn:focus {
border-color: #ffffff;
}
.main-banner-text .view-work {
background: transparent;
border-color: #fff;
margin-left: 10px;
}
.main-banner-text .view-work:hover,
.main-banner-text .view-work:focus {
border-color: #ff2c57;
background: #ff2c57;
color: #ffffff;
}
.home-slides .owl-controls {
margin-top: 0;
}
/*
==============================
Video Banner CSS
==============================
*/
.video-background {
position: absolute;
left: 0;
top: 0;
width: auto;
height: auto;
min-height: 100%;
min-width: 100%;
z-index: -100;
}
/*
==============================
Creative Banner CSS
==============================
*/
.creative-banner-one {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
border-width: 10rem 100vw 0 0;
border-color: transparent #111111 #111111 transparent;
border-style: solid;
}
.creative-banner-two {
position: relative;
top: 100%;
width: 100%;
height: 0;
}
.creative-banner-two::before {
content: "";
border-right: 50vw solid #111111;
border-top: 160px solid transparent;
bottom: 0;
right: 0;
position: absolute;
height: 0;
width: 0;
}
.creative-banner-two::after {
content: '';
position: absolute;
border-left: 50vw solid #111111;
border-top: 160px solid transparent;
bottom: 0;
height: 0;
left: 0;
width: 0;
}
.creative-banner-three {
position: relative;
top: 100%;
width: 100%;
height: 0;
}
.creative-banner-three::before {
content: '';
position: absolute;
bottom: -25px;
left: 0;
width: 100%;
background-image: url(../../assets/img/shape.png);
height: 150px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
/*
==============================
Particles Banner CSS
==============================
*/
#particles-js {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
#particles-js-two {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
/*
==============================
Welcome Area CSS
==============================
*/
.single-box {
text-align: center;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
padding: 30px 20px;
position: relative;
overflow: hidden;
-webkit-transition: .4s;
transition: .4s;
}
.single-box:hover {
-webkit-box-shadow: unset;
box-shadow: unset;
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.single-box .icon {
color: #ff2c57;
font-size: 45px;
}
.single-box h3 {
margin-top: 25px;
margin-bottom: 20px;
font-weight: 600;
font-size: 20px;
}
.single-box a {
position: absolute;
right: -20px;
bottom: -20px;
width: 45px;
height: 40px;
line-height: 44px;
text-align: center;
-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
border-radius: 50% 0 0 0;
opacity: 0;
visibility: hidden;
}
.single-box:hover a {
background: #ff2c57;
color: #ffffff;
opacity: 1;
visibility: visible;
right: 0;
bottom: 0;
}
/*
==============================
About Area CSS
==============================
*/
.about-area {
background-image: url(../../assets/img/patt.png);
background-position: center center;
}
.about-video {
position: relative;
}
.about-video .video-btn {
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
margin-top: -26px;
}
.about-video .video-btn a {
color: #ffffff;
display: inline-block;
width: 70px;
height: 70px;
line-height: 72px;
background: #ff2c57;
position: relative;
font-size: 30px;
border-radius: 50%;
}
.about-video .video-btn a::before,
.about-video .video-btn a::after {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
display: block;
width: 88px;
height: 88px;
border-radius: 50%;
-webkit-transition: all 200ms;
transition: all 200ms;
-webkit-animation: pulse-border 1500ms ease-out infinite;
animation: pulse-border 1500ms ease-out infinite;
border: 10px solid #fff;
}
.about-video .video-btn a::after {
width: 70px;
height: 70px;
-webkit-transition: all 200ms;
transition: all 200ms;
}
@-webkit-keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
opacity: 0;
}
}
@keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
opacity: 0;
}
}
.about-addax {
margin-top: 12px;
}
.about-addax .section-title {
margin-bottom: 20px;
padding-left: 0;
}
.about-addax .section-title::before,
.about-addax .section-title::after {
display: none;
}
.about-addax .section-title h2 {
font-size: 25px;
}
.about-addax ul {
margin-bottom: 30px;
}
.about-addax ul li {
margin-bottom: 10px;
font-weight: 300;
color: #dddddd;
}
.about-addax ul li i {
color: #ff2c57;
margin-right: 5px;
}
.about-addax ul li:last-child {
margin-bottom: 0;
}
.about-addax .pull-left {
margin-right: 45px;
}
/*
==============================
Who We Are Area CSS
==============================
*/
.who-we-are {
padding-bottom: 50px;
}
.single-who-we-are {
border-radius: 5px;
margin-bottom: 30px;
position: relative;
overflow: hidden;
-webkit-box-shadow: 0 20px 40px 0 rgba(28, 30, 35, 0.2);
box-shadow: 0 20px 40px 0 rgba(28, 30, 35, 0.2);
background: #0F0F0F;
padding: 50px 30px;
-webkit-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.single-who-we-are:hover {
background: #ff2c57;
color: #ffffff;
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.single-who-we-are i {
font-size: 50px;
color: #ff2c57;
-webkit-transition: .4s;
transition: .4s;
}
.single-who-we-are:hover i {
color: #ffffff;
}
.single-who-we-are h4 {
margin-bottom: 20px;
margin-top: 25px;
font-size: 22px;
font-weight: 500;
}
.single-who-we-are p {
-webkit-transition: .4s;
transition: .4s;
}
.single-who-we-are:hover p {
color: #ffffff;
}
.single-who-we-are span {
bottom: 0;
color: rgba(0, 0, 0, 0.03);
font-size: 200px;
line-height: 180px;
position: absolute;
right: 0;
-webkit-transition: .4s;
transition: .4s;
}
.single-who-we-are:hover span {
color: rgba(255, 255, 255, 0.2);
}
/*
==============================
Strategy Area CSS
==============================
*/
.strategy-area {
position: relative;
}
.strategy-area .image {
background-image: url(../../assets/img/about-strategy.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.strategy-area .image img {
display: none;
}
.about-strategy {
padding-left: 25px;
}
.about-strategy .section-title {
margin-bottom: 20px;
padding-left: 0;
}
.about-strategy .section-title::before,
.about-strategy .section-title::after {
display: none;
}
.about-strategy ul {
margin-bottom: 30px;
}
.about-strategy ul li {
margin-bottom: 10px;
font-weight: 300;
color: #dddddd;
}
.about-strategy ul li:last-child {
margin-bottom: 0;
}
.about-strategy ul li i {
color: #ff2c57;
margin-right: 5px;
}
/*
==============================
CTR Area CSS
==============================
*/
.ctr-area {
text-align: center;
background-image: url(../../assets/img/ctr-bg.jpg);
position: relative;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.ctr-area::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .88;
}
.ctr-area .section-title {
padding-left: 0;
}
.ctr-area .section-title::after,
.ctr-area .section-title::before {
display: none;
}
.ctr-area .section-title h2 {
color: #ffffff;
font-weight: 500;
margin-top: 30px;
margin-bottom: 30px;
}
.ctr-area .section-title p {
margin-left: auto;
margin-right: auto;
margin-bottom: 25px;
}
.ctr-area .view-work {
background: transparent;
border-color: #ffffff;
margin-left: 10px;
}
.ctr-area .view-work:hover,
.ctr-area .view-work:focus {
border-color: #ff2c57;
background: #ff2c57;
color: #ffffff;
}
.ctr-area .btn:hover,
.ctr-area .btn:focus {
border-color: #ffffff;
}
/*
==============================
Skill Area CSS
==============================
*/
.about-skill .section-title {
padding-left: 0;
}
.about-skill .section-title::before,
.about-skill .section-title::after {
display: none;
}
.about-skill .progress-title {
font-size: 17px;
margin-bottom: 13px;
}
.about-skill .progress {
height: 10px;
background: #fff;
border-radius: 5px;
-webkit-box-shadow: none;
box-shadow: none;
margin-bottom: 30px;
overflow: visible;
}
.about-skill .progress .progress-bar {
-webkit-box-shadow: none;
box-shadow: none;
position: relative;
-webkit-animation: animate-positive 2s;
animation: animate-positive 2s;
background: #ff2c57;
border-radius: 5px;
}
.about-skill .progress .progress-value {
font-size: 15px;
font-weight: 300;
color: #dddddd;
position: absolute;
top: -29px;
right: 0;
}
@-webkit-keyframes animate-positive {
0% {
width: 0;
}
}
@keyframes animate-positive {
0% {
width: 0;
}
}
.skill-video {
position: relative;
}
.skill-video .video-btn {
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
margin-top: -26px;
}
.skill-video .video-btn a {
color: #ffffff;
display: inline-block;
width: 70px;
height: 70px;
line-height: 72px;
background: #ff2c57;
position: relative;
font-size: 30px;
border-radius: 50%;
}
.skill-video .video-btn a::before,
.skill-video .video-btn a::after {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
display: block;
width: 88px;
height: 88px;
border-radius: 50%;
-webkit-transition: all 200ms;
transition: all 200ms;
-webkit-animation: pulse-border 1500ms ease-out infinite;
animation: pulse-border 1500ms ease-out infinite;
border: 10px solid #ffffff;
}
.skill-video .video-btn a::after {
width: 70px;
height: 70px;
-webkit-transition: all 200ms;
transition: all 200ms;
}
@-webkit-keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
opacity: 0;
}
}
@keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
opacity: 0;
}
}
/*
==============================
Fun Facts Area CSS
==============================
*/
.funFacts-area {
background-image: url(../../assets/img/funfact-bg.jpg);
position: relative;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.funFacts-area::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .77;
}
.funFact {
position: relative;
padding-left: 65px;
}
.funFact i {
font-size: 50px;
color: #ff2c57;
position: absolute;
left: 0;
top: 2px;
}
.funFact .fa.fa-users {
left: -10px;
}
.funFact h2 {
color: #ffffff;
margin-bottom: 5px;
font-size: 45px;
font-weight: 600;
}
.funFact p {
font-size: 18px;
}
/*
==============================
Team Area CSS
==============================
*/
.our-team {
text-align: center;
position: relative;
}
.our-team .team-content {
position: absolute;
left: 0;
bottom: 0;
width: 92%;
background: #111111;
margin-left: 15px;
padding-top: 20px;
z-index: 1;
-webkit-transition: .4s;
transition: .4s;
}
.our-team .team-content .title {
font-size: 20px;
font-weight: 600;
color: #ffffff;
margin-bottom: 6px;
-webkit-transition: .4s;
transition: .4s;
}
.our-team .team-content .post {
color: #dddddd;
-webkit-transition: .4s;
transition: .4s;
}
.our-team:hover .team-content .title {
color: #ffffff;
}
.our-team:hover .team-content .post {
color: #ffffff;
}
.our-team:hover .team-content {
bottom: 34%;
background: transparent;
}
.our-team .social {
position: absolute;
top: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.9)), color-stop(80%, rgba(0, 0, 0, 0.3)));
background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.3) 80%);
-webkit-transition: .4s;
transition: .4s;
opacity: 0;
visibility: hidden;
}
.our-team .social ul {
position: absolute;
left: 0;
right: 0;
top: 50%;
margin-top: -50px;
-webkit-transform: translateY(-35px);
transform: translateY(-35px);
-webkit-transition: .4s;
transition: .4s;
}
.our-team .social ul li {
display: inline-block;
}
.our-team .social ul li a {
width: 35px;
height: 35px;
line-height: 32px;
color: #ffffff;
border: 1px solid #ffffff;
border-radius: 50%;
}
.our-team .social ul li a:hover {
border-color: #ff2c57;
background: #ff2c57;
}
.our-team:hover .social {
opacity: 1;
visibility: visible;
}
.our-team:hover .social ul {
-webkit-transform: translateY(0);
transform: translateY(0);
}
/*
==============================
How We Work CSS
==============================
*/
.single-how-work {
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
background: #0F0F0F;
padding: 35px;
border-radius: 5px;
-webkit-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.single-how-work:hover {
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.single-how-work h3 {
color: #ff2c57;
font-size: 45px;
font-weight: 700;
}
.single-how-work h4 {
margin-top: 25px;
margin-bottom: 18px;
font-size: 22px;
}
/*
==============================
Services Area CSS
==============================
*/
.services-area {
padding-bottom: 50px;
}
.services-area .single-box {
margin-bottom: 30px;
}
.single-services {
margin-bottom: 30px;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
text-align: center;
position: relative;
-webkit-transition: .4s;
transition: .4s;
}
.single-services:hover {
-webkit-box-shadow: unset;
box-shadow: unset;
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.single-services::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
border-left: 2px solid #ff2c57;
height: 50px;
border-bottom: 2px solid #ff2c57;
opacity: 0;
-webkit-transition: .4s;
transition: .4s;
}
.single-services:hover::before {
opacity: 1;
width: 100%;
height: 50%;
}
.single-services .services-img {
position: relative;
}
.single-services .services-img::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .66;
}
.single-services .services-img .icon {
position: absolute;
top: 50%;
left: 0;
width: 100%;
margin-top: -30px;
}
.single-services i {
width: 70px;
height: 70px;
line-height: 71px;
border: 1px solid #ffffff;
font-size: 30px;
color: #ffffff;
border-radius: 50%;
-webkit-transition: .4s;
transition: .4s;
}
.single-services:hover i {
background: #ffffff;
color: #ff2c57;
}
.single-services .services-content {
padding: 30px 25px;
position: relative;
}
.single-services .services-content h3 {
font-size: 22px;
font-weight: 500;
margin-bottom: 18px;
}
/*
==============================
Why We Are Different CSS
==============================
*/
.tabset input[type="radio"] {
display: none;
}
.tabset .tab-panel {
display: none;
}
.tabset input:first-child:checked~.tab-panels .tab-panel:first-child {
display: block;
}
.tabset input:nth-child(3):checked~.tab-panels .tab-panel:nth-child(2) {
display: block;
}
.tabset input:nth-child(5):checked~.tab-panels .tab-panel:nth-child(3) {
display: block;
}
.tabset input:nth-child(7):checked~.tab-panels .tab-panel:nth-child(4) {
display: block;
}
.tabset input:nth-child(9):checked~.tab-panels .tab-panel:nth-child(5) {
display: block;
}
.tabset input:nth-child(11):checked~.tab-panels .tab-panel:nth-child(6) {
display: block;
}
.tabset label {
position: relative;
display: inline-block;
padding: 15px 32px;
margin-right: 6px;
margin-bottom: 0;
color: #ffffff;
cursor: pointer;
background: transparent;
-webkit-transition: background ease 0.2s;
transition: background ease 0.2s;
border: 1px solid #dddddd;
border-radius: 5px;
font-size: 18px;
}
.tabset input:checked+label {
border-color: #ff2c57;
background: #ff2c57;
color: #ffffff;
}
.tab-panel {
margin-top: 35px;
}
.tab-panel .why-we-different-text h4 {
font-size: 35px;
font-weight: 200;
margin-bottom: 20px;
}
.tab-panel .why-we-different-text p {
max-width: 635px;
margin-top: -7px;
}
.tab-panel .why-we-different-text ul {
margin-top: 25px;
margin-bottom: 30px;
}
.tab-panel .why-we-different-text ul li {
margin-bottom: 10px;
font-weight: 300;
color: #dddddd;
}
.tab-panel .why-we-different-text ul li:last-child {
margin-bottom: 0;
}
.tab-panel .why-we-different-text ul li i {
color: #ff2c57;
margin-right: 5px;
}
/*
==============================
Work Area CSS
==============================
*/
.shorting-menu {
display: inline-block;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
padding: 18px 20px;
border-radius: 50px;
background: #0F0F0F;
}
.shorting-menu .filter {
border: none;
background: #111111;
padding: 9px 24px;
text-transform: capitalize;
font-size: 16px;
cursor: pointer;
-webkit-transition: .4s;
transition: .4s;
border-radius: 30px;
color: #ffffff;
}
.shorting-menu .filter.active,
.shorting-menu .filter:hover {
background: #ff2c57;
color: #ffffff;
}
.shorting {
margin-top: 40px;
}
.shorting .mix {
display: none;
}
.single-work {
overflow: hidden;
position: relative;
padding: 5px;
}
.single-work::before {
content: '';
position: absolute;
top: 15px;
width: 95%;
height: 93%;
background: #000000;
left: 14px;
opacity: 0;
visibility: hidden;
-webkit-transition: .4s;
transition: .4s;
}
.single-work:hover::before {
top: 21px;
width: 93%;
height: 91%;
left: 21px;
opacity: .66;
visibility: visible;
}
.single-work .work-content {
position: absolute;
bottom: 20px;
width: 86%;
background: #0F0F0F;
left: 40px;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
opacity: 0;
visibility: hidden;
-webkit-transition: .4s;
transition: .4s;
}
.single-work .work-content h4 {
font-size: 22px;
margin-bottom: 10px;
}
.single-work .work-content ul li {
display: inline-block;
font-size: 14px;
color: #dddddd;
}
.single-work:hover .work-content {
bottom: 35px;
opacity: 1;
visibility: visible;
}
.single-work .popup-btn {
position: absolute;
top: 20px;
right: 40px;
width: 45px;
text-align: center;
height: 45px;
line-height: 46px;
border-radius: 50%;
color: #ffffff;
font-size: 22px;
opacity: 0;
visibility: hidden;
border: 1px solid #ffffff;
-webkit-transition: .4s;
transition: .4s;
}
.single-work .popup-btn:hover {
background: #ff2c57;
border-color: #ff2c57;
}
.single-work:hover .popup-btn {
top: 36px;
opacity: 1;
visibility: visible;
}
/*
==============================
Pricing Area CSS
==============================
*/
.pricingTable {
padding: 30px 0;
text-align: center;
position: relative;
background-image: url(../../assets/img/patt.png);
background-position: center center;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
-webkit-transition: .4s;
transition: .4s;
}
.pricingTable:hover {
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.pricingTable::after {
content: "";
width: 70px;
height: 30px;
background: #ff2c57;
margin: 0 auto;
position: absolute;
top: 80px;
left: 0;
right: 0;
-webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.pricingTable .title {
padding: 20px 0;
margin-bottom: 35px;
background: #ff2c57;
font-size: 25px;
color: #ffffff;
text-transform: uppercase;
}
.pricingTable .price-value {
margin-bottom: 25px;
color: #ff2c57;
}
.pricingTable .price-value .amount {
display: inline-block;
font-size: 44px;
font-weight: 500;
}
.pricingTable .price-value .month {
display: block;
font-size: 15px;
line-height: 16px;
text-transform: capitalize;
color: #dddddd;
margin-left: 50px;
}
.pricingTable .currency {
display: inline-block;
font-size: 25px;
vertical-align: top;
margin-top: 6px;
}
.pricingTable .pricing-content {
border-top: 2px solid #eeeeee;
border-bottom: 2px solid #eeeeee;
margin-bottom: 30px;
padding-top: 25px;
padding-bottom: 25px;
}
.pricingTable .pricing-content li {
color: #dddddd;
margin-top: 16px;
}
.pricingTable .pricing-content li:first-child {
margin-top: 0;
}
.pricingTable .pricing-content li i {
color: #ff2c57;
margin-right: 4px;
}
/*
==============================
FAQ Area CSS
==============================
*/
.faq-area .image {
background-image: url(../../assets/img/faq-img.jpg);
position: absolute;
left: 15px;
top: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.card {
background-color: transparent;
border-radius: 10px !important;
margin-bottom: 6px;
border: none;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
}
.card .card-header {
padding: 0;
margin-bottom: 0;
border: none;
background: transparent;
}
.card .card-header:first-child {
border-radius: 0;
}
.card .card-header a {
display: block;
}
.card .card-header a:hover {
background: #ff2c57;
}
.card .card-header a h5 {
font-size: 17px;
overflow: hidden;
padding: 20px;
color: #ffffff;
line-height: 16px;
background: #ff2c57;
}
.card .card-header a.collapsed h5 {
color: #ffffff;
background: transparent;
-webkit-transition: .4s;
transition: .4s;
}
.card .card-header a.collapsed h5:hover {
color: #ffffff;
}
.card .card-header a i {
float: right;
font-size: 16px;
}
.card .card-header a.collapsed .fa.fa-plus::before {
content: "\f067";
}
.card .card-header a .fa.fa-plus::before {
content: "\f068";
}
.card .card-body {
line-height: 1.9;
background: transparent;
color: #dddddd;
}
/*
==============================
Testimonials Area CSS
==============================
*/
.testimonials-area {
padding-bottom: 50px;
}
.single-feedback {
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
background-image: url(../../assets/img/patt.png);
padding: 30px;
margin-bottom: 30px;
border-radius: 5px;
position: relative;
-webkit-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.single-feedback .client-info {
position: relative;
margin-bottom: 35px;
padding-left: 100px;
padding-top: 15px;
}
.single-feedback .client-info .client-pic {
max-width: 80px;
position: absolute;
left: 0;
top: 0;
}
.single-feedback .client-info .client-pic img {
border-radius: 50%;
}
.single-feedback .client-info .client-title h4 {
font-size: 19px;
font-weight: 500;
-webkit-transition: .4s;
transition: .4s;
}
.single-feedback .client-info .client-title h5 {
font-size: 15px;
margin-top: 13px;
color: #666666;
-webkit-transition: .4s;
transition: .4s;
}
.single-feedback p {
-webkit-transition: .4s;
transition: .4s;
}
.single-feedback span {
font-size: 175px;
position: absolute;
bottom: 0;
right: 0;
color: rgba(0, 0, 0, 0.03);
-webkit-transition: .4s;
transition: .4s;
line-height: 0;
}
.single-feedback:hover {
-webkit-transform: translateX(5px);
transform: translateX(5px);
background: #ff2c57;
}
.single-feedback:hover .client-title h4,
.single-feedback:hover .client-title h5 {
color: #ffffff;
}
.single-feedback:hover p {
color: #ffffff;
}
.single-feedback:hover span {
color: rgba(255, 255, 255, 0.2);
}
/*
==============================
Blog Area CSS
==============================
*/
.single-blog-item {
position: relative;
padding: 30px;
border: 1px solid #000000;
overflow: hidden;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.single-blog-item::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
-webkit-transition: .4s;
transition: .4s;
}
.single-blog-item span,
.single-blog-item p,
.single-blog-item h4 {
position: relative;
-webkit-transition: .4s;
transition: .4s;
}
.single-blog-item span {
color: #dddddd;
}
.single-blog-item h4 {
margin-top: 15px;
margin-bottom: 15px;
line-height: 1.5;
font-size: 20px;
font-weight: 500;
}
.single-blog-item h4 a:hover {
color: #ff2c57 !important;
}
.single-blog-item .link-btn {
position: absolute;
right: 0;
bottom: 0;
width: 45px;
height: 40px;
line-height: 44px;
text-align: center;
-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
border-radius: 50% 0 0 0;
}
.single-blog-item:hover::before {
background: #000000;
opacity: .66;
}
.single-blog-item:hover span,
.single-blog-item:hover p,
.single-blog-item:hover h4 a {
color: #ffffff;
}
.single-blog-item:hover .link-btn {
background: #ff2c57;
color: #ffffff;
}
/*
==============================
Partner Area CSS
==============================
*/
.partner-area {
text-align: center;
}
.partner-area .owl-carousel .owl-item img {
width: 140px;
}
/*
==============================
Subscribe Area CSS
==============================
*/
.subscribe-area {
background-image: url(../../assets/img/pattern.png);
text-align: center;
background-position: center;
background-size: contain;
background-repeat: repeat;
background-attachment: fixed;
}
.newsletter {
max-width: 750px;
margin-left: auto;
margin-right: auto;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
background: #0F0F0F;
padding: 35px;
border-radius: 5px;
}
.newsletter h4 {
text-transform: capitalize;
margin-bottom: 30px;
font-size: 30px;
}
.newsletter form {
position: relative;
}
.newsletter form .form-control {
-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
border: none;
height: 75px;
border-radius: 50px;
padding-left: 20px;
font-size: 17px;
}
.newsletter form .btn {
position: absolute;
right: 7px;
top: 8px;
height: 60px;
width: 175px;
}
.newsletter form .validation-danger {
margin-top: 20px;
color: red;
}
.newsletter form .validation-success {
margin-top: 20px;
}
/*
==============================
Contact Area CSS
==============================
*/
#map {
width: 100%;
height: 400px;
}
.contact-info {
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
background: #0F0F0F;
padding: 30px;
border-top: 3px solid #ff2c57;
border-bottom: 3px solid #ff2c57;
}
.contact-info ul li {
position: relative;
padding-left: 60px;
font-size: 16px;
margin-bottom: 34px;
color: #ffffff;
}
.contact-info ul li:last-child {
margin-bottom: 0;
}
.contact-info ul li i {
position: absolute;
left: 0;
top: -11px;
color: #ff2c57;
font-size: 19px;
background: #f6f6f6;
width: 45px;
height: 45px;
line-height: 45px;
text-align: center;
border-radius: 50%;
}
.contact-info .follow-us {
text-align: right;
margin-top: 40px;
}
.contact-info .follow-us li {
padding-left: 0;
display: inline-block;
margin-bottom: 0;
}
.contact-info .follow-us li:first-child {
font-size: 18px;
font-weight: 400;
margin-right: 5px;
}
.contact-info .follow-us li a {
width: 35px;
height: 35px;
text-align: center;
line-height: 35px;
border: 1px solid #000000;
border-radius: 50%;
}
.contact-info .follow-us li a:hover,
.contact-info .follow-us li a:focus {
background: #ff2c57;
color: #ffffff;
border-color: #ff2c57;
}
.contact-form {
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
padding: 40px 30px;
border-top: 3px solid #ff2c57;
border-bottom: 3px solid #ff2c57;
background: #0F0F0F;
}
.contact-form h4 {
color: #ff2c57;
margin-bottom: 25px;
font-size: 22px;
}
.contact-form .list-unstyled li {
color: red;
}
.contact-form .form-control {
border-radius: 30px;
border-color: #222222;
background: #222222;
}
.contact-form label {
color: #fff;
}
.contact-form .btn {
margin-top: 20px;
}
.contact-form #message {
height: auto;
padding: 15px;
}
/*
==============================
Page Title CSS
==============================
*/
.page-title {
height: 550px;
position: relative;
background-position: center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
overflow: hidden;
text-align: center;
}
.page-title::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .6;
}
.page-title h1 {
margin-bottom: 35px;
margin-top: 65px;
color: #ffffff;
font-size: 45px;
font-weight: 600;
}
.page-title ul li {
display: inline-block;
margin: 0 3px;
color: #ffffff;
text-transform: uppercase;
font-weight: 500;
}
.page-title ul li.active {
color: #cccccc;
}
.page-title ul li a {
color: #ffffff;
}
.page-title ul li a:hover {
color: #ff2c57;
}
/*
==============================
Blog Details Area CSS
==============================
*/
.blog-details-area {
background: #222222;
}
.blog-details-area .title {
margin-top: 30px;
margin-bottom: 30px;
font-size: 27px;
}
.blog-details {
-webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
background: #0F0F0F;
}
.blog-details .article-img {
position: relative;
}
.blog-details .article-img .date {
position: absolute;
bottom: 15px;
width: 100px;
left: 15px;
height: 100px;
text-align: center;
font-size: 25px;
font-style: italic;
background: #ff2c57;
color: #ffffff;
border-radius: 5px;
padding-top: 19px;
line-height: 32px;
}
.blog-details .article-text {
padding: 30px;
}
.blog-details .article-text ul li {
display: inline-block;
}
.blog-details .article-text .category a {
background: #ff2c57;
color: #ffffff;
padding: 3px 15px;
display: inline-block;
border-radius: 3px;
font-weight: 400;
}
.blog-details .article-text p {
margin-bottom: 20px;
}
.blog-details .article-text .blockquote {
margin-bottom: 25px;
margin-top: 25px;
background: #222222;
padding: 30px;
font-size: 17px;
border-left: 4px solid #ff2c57;
}
.blog-details .article-text .blockquote p {
color: #dddddd;
}
.blog-details .article-text .author-share {
margin-top: 40px;
}
.blog-details .article-text .author-share .social-share {
text-align: right;
margin-top: 28px;
}
.blog-details .article-text .author-share .social-share a {
background: #ff2c57;
color: #ffffff;
width: 35px;
display: inline-block;
height: 35px;
text-align: center;
line-height: 35px;
border-radius: 50%;
}
.blog-details .article-text .article-author {
overflow: hidden;
}
.blog-details .article-text .article-author .author-img {
float: left;
width: 27%;
}
.blog-details .article-text .article-author .author-img img {
border-radius: 50%;
max-width: 100%;
width: auto !important;
}
.blog-details .article-text .article-author .author-title {
float: left;
width: 73%;
padding-left: 25px;
margin-top: 17px;
}
.blog-details .article-text .article-author .author-title h4 {
font-size: 20px;
margin-bottom: 6px;
text-transform: uppercase;
}
.blog-details .article-text .article-author .author-title span {
color: #666666;
font-size: 15px;
}
.post-controls-buttons {
margin-top: 50px;
margin-bottom: 50px;
padding-left: 70px;
padding-right: 70px;
}
.post-controls-buttons div {
display: inline-block;
}
.post-controls-buttons div a {
-webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
padding: 10px 20px;
border-radius: 5px;
background: #0F0F0F;
color: #ff2c57;
}
.post-controls-buttons div a:hover {
background: #ff2c57;
color: #ffffff;
}
.post-controls-buttons .controls-right {
float: right;
}
.post-comments .single-comment {
-webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
padding: 25px;
margin-bottom: 25px;
position: relative;
overflow: hidden;
background: #0F0F0F;
}
.post-comments .single-comment.left-m {
margin-left: 30px;
}
.post-comments .single-comment .comment-img {
float: left;
width: 13%;
}
.post-comments .single-comment .comment-img img {
border-radius: 50%;
}
.post-comments .single-comment .comment-content {
float: left;
width: 87%;
padding-left: 25px;
}
.post-comments .single-comment .comment-content h4 {
font-size: 20px;
text-transform: uppercase;
margin-bottom: 15px;
}
.post-comments .single-comment .comment-content span {
color: #dddddd;
}
.post-comments .single-comment .comment-content p {
margin-bottom: 15px;
}
.post-comments .single-comment .comment-content a {
position: absolute;
right: 25px;
bottom: 25px;
color: #ff2c57;
text-transform: uppercase;
font-size: 17px;
}
.leave-a-reply {
-webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
padding: 25px;
background: #0F0F0F;
margin-top: 50px;
}
.leave-a-reply .form-control {
background: #222222;
color: #ffffff;
border: none;
}
.leave-a-reply .btn {
margin-top: 0px;
}
/*
==============================
Footer Area CSS
==============================
*/
.footer-area {
text-align: center;
padding: 50px 0;
background: #111111;
}
.footer-area h4 {
line-height: 22px;
margin-bottom: 30px;
}
.footer-area h4 a {
color: #ffffff;
font-weight: 600;
text-transform: uppercase;
font-size: 35px;
}
.footer-area h4 span {
color: #ff2c57;
font-size: 40px;
font-weight: 700;
text-transform: lowercase;
}
.footer-area ul li {
display: inline-block;
}
.footer-area ul li a {
width: 35px;
height: 35px;
text-align: center;
line-height: 34px;
border: 1px solid #ffffff;
border-radius: 50%;
color: #ffffff;
font-size: 15px;
}
.footer-area ul li a:hover,
.footer-area ul li a:focus {
background: #ff2c57;
color: #ffffff;
border-color: #ff2c57;
}
.footer-area p {
line-height: 1;
margin-top: 30px;
color: #dddddd;
}
/*
==============================
Go Top CSS
==============================
*/
.go-top {
position: fixed;
cursor: pointer;
bottom: 30px;
right: 20px;
font-size: 25px;
color: #ffffff;
background-color: #000000;
z-index: 1;
display: none;
width: 40px;
text-align: center;
height: 40px;
line-height: 39px;
border-radius: 50%;
-webkit-transition: .4s;
transition: .4s;
}
.go-top:hover {
color: #ffffff;
background: #ff2c57;
}
/*# sourceMappingURL=style.css.map */ | public/assets/css/style.css | ==============================
Default CSS
==============================
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
body {
padding: 0;
margin: 0;
background: #111111;
font-family: "Poppins", sans-serif;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 0;
font-weight: 400;
line-height: 1;
color: #fff;
}
ul {
padding-left: 0;
margin-bottom: 0;
}
ul li {
list-style: none;
}
:focus {
outline: 0 !important;
}
p {
margin-bottom: 0;
font-weight: 300;
line-height: 1.8;
color: #dddddd;
}
a {
color: #dddddd;
text-decoration: none;
-webkit-transition: .4s;
transition: .4s;
}
a:hover,
a:focus {
color: #ff2c57;
text-decoration: none;
}
img {
max-width: 100%;
}
.ptb-80 {
padding-bottom: 80px;
padding-top: 80px;
}
.d-table {
width: 100%;
height: 100%;
}
.d-table-cell {
vertical-align: middle;
}
.bg-222222 {
background: #222222;
}
/*Btn Btn-Primary*/
.btn {
padding: 9px 25px;
font-size: 16px;
border-radius: 30px;
-webkit-transition: .4s;
transition: .4s;
}
.btn-primary {
color: #ffffff;
background-color: #ff2c57;
border-color: #ff2c57;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus {
color: #ff2c57;
background-color: #ffffff;
border-color: #ff2c57;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
color: #ffffff;
background-color: #ff2c57;
border-color: #ff2c57;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-primary.focus,
.btn-primary:focus {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
color: #ffffff;
background-color: #ff2c57;
border-color: #ff2c57;
opacity: 1;
}
/* Section Title */
.section-title {
margin-bottom: 60px;
padding-left: 30px;
position: relative;
}
.section-title::before,
.section-title::after {
content: '';
position: absolute;
width: 3px;
height: 100%;
left: 10px;
top: 0;
background: #ff2c57;
-webkit-transition: .4s;
transition: .4s;
}
.section-title::after {
left: 0;
height: 50%;
}
.section-title:hover::before {
height: 50%;
}
.section-title:hover::after {
height: 100%;
}
.section-title h2 {
font-size: 35px;
font-weight: 200;
margin-bottom: 20px;
}
.section-title h2 span {
color: #ff2c57;
font-weight: 600;
}
.section-title p {
max-width: 635px;
margin-top: -7px;
}
.section-title h4 {
font-size: 18px;
font-weight: 300;
color: #ff2c57;
margin-bottom: 17px;
text-transform: capitalize;
}
/* Form Control */
.form-control {
height: 45px;
padding: 10px;
font-size: 15px;
background-color: #ffffff;
border: 1px solid #eeeeee;
border-radius: 0;
}
.form-control:focus {
border-color: #dddddd;
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
/* Owl Carousel Button */
.owl-theme .owl-controls {
margin-top: 50px;
line-height: 0;
}
.owl-theme .owl-nav {
margin-top: 0;
}
.owl-theme .owl-dots .owl-dot span {
width: 15px;
height: 15px;
margin: 0 4px;
background: transparent;
border-radius: 50%;
border: 2px solid #dddddd;
-webkit-transition: .4s;
transition: .4s;
}
.owl-theme .owl-dots .owl-dot.active span {
background: #869791;
border-radius: 5px;
width: 35px;
height: 10px;
border-color: #ff2c57;
background: #ff2c57;
}
.owl-theme .owl-dots .owl-dot:hover span {
background: #ff2c57;
border-color: #ff2c57;
}
.owl-theme .owl-nav [class*="owl-"] {
position: absolute;
left: 40px;
top: 50%;
margin-top: -20px;
background: rgba(255, 255, 255, 0.33);
width: 60px;
text-align: center;
height: 60px;
line-height: 54px;
border-radius: 50%;
font-size: 30px;
color: #ffffff;
-webkit-transition: .4s;
transition: .4s;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
background: #ff2c57;
color: #ffffff;
}
.owl-theme .owl-nav .owl-next {
left: auto;
right: 40px;
}
/*
==============================
Preloader CSS
==============================
*/
.preloader {
position: fixed;
width: 100%;
height: 100%;
background: #ffffff;
z-index: 99999;
}
.preloader .folding-cube {
left: 0;
width: 60px;
height: 60px;
position: absolute;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
top: 50%;
right: 0;
margin: -60px auto 0;
}
.preloader .folding-cube .cube {
float: left;
width: 50%;
height: 50%;
position: relative;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.preloader .folding-cube .cube::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ff2c57;
-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
animation: sk-foldCubeAngle 2.4s infinite linear both;
-webkit-transform-origin: 100% 100%;
transform-origin: 100% 100%;
}
.preloader .folding-cube .cube2 {
-webkit-transform: scale(1.1) rotateZ(90deg);
transform: scale(1.1) rotateZ(90deg);
}
.preloader .folding-cube .cube2::before {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.preloader .folding-cube .cube3 {
-webkit-transform: scale(1.1) rotateZ(180deg);
transform: scale(1.1) rotateZ(180deg);
}
.preloader .folding-cube .cube3::before {
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
.preloader .folding-cube .cube4 {
-webkit-transform: scale(1.1) rotateZ(270deg);
transform: scale(1.1) rotateZ(270deg);
}
.preloader .folding-cube .cube4::before {
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
0%,
10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
}
25%,
75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1;
}
90%,
100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
@keyframes sk-foldCubeAngle {
0%,
10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
}
25%,
75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1;
}
90%,
100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
/*
==============================
Main Header CSS
==============================
*/
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 2;
background: transparent !important;
padding-top: 20px;
padding-bottom: 20px;
}
.header-sticky.is-sticky {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
padding-top: 10px;
padding-bottom: 10px;
background: #000000 !important;
}
.navbar-light .navbar-brand {
color: #ffffff;
font-weight: 600;
text-transform: uppercase;
}
.navbar-light .navbar-brand span {
color: #ff2c57;
font-size: 35px;
font-weight: 700;
text-transform: lowercase;
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
color: #ffffff;
}
.navbar-light .navbar-nav .nav-item {
padding-right: 15px;
padding-left: 15px;
}
.navbar-light .navbar-nav .nav-item:last-child {
padding-right: 0;
}
.navbar-light .navbar-nav .nav-item .nav-link {
color: #ffffff;
padding-right: 0;
padding-left: 0;
}
.navbar-light .navbar-nav .nav-item .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link.show,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link:focus {
color: #ff2c57;
}
.navbar-light .navbar-nav .active .nav-link,
.navbar-light .navbar-nav.show .nav-link {
color: #ff2c57;
}
.navbar-light.header-sticky.is-sticky .navbar-brand {
color: #ffffff;
}
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link {
color: #ffffff;
padding-right: 0;
padding-left: 0;
}
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link.active,
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link.show,
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link:hover,
.navbar-light.header-sticky.is-sticky .navbar-nav .nav-link:focus {
color: #ff2c57;
}
.navbar-light.header-sticky.is-sticky .navbar-nav .active .nav-link,
.navbar-light.header-sticky.is-sticky .navbar-nav .show .nav-link {
color: #ff2c57;
}
/*
==============================
Main Banner CSS
==============================
*/
.main-banner {
height: 750px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
overflow: hidden;
}
.main-banner::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .77;
}
.item-bg-one {
background-image: url(../../assets/img/main-bg-1.jpg);
}
.item-bg-two {
background-image: url(../../assets/img/main-bg-2.jpg);
}
.item-bg-three {
background-image: url(../../assets/img/main-bg-3.jpg);
}
.main-banner-text {
text-align: center;
}
.main-banner-text h4 {
color: #ffffff;
font-weight: 200;
font-size: 24px;
letter-spacing: 1px;
}
.main-banner-text h1 {
color: #ffffff;
font-size: 55px;
font-weight: 200;
margin-top: 25px;
margin-bottom: 30px;
letter-spacing: 2px;
}
.main-banner-text h1 span {
color: #ff2c57;
font-weight: 600;
}
.main-banner-text p {
color: #ffffff;
max-width: 730px;
margin: auto;
margin-bottom: 30px;
}
.main-banner-text .btn:hover,
.main-banner-text .btn:focus {
border-color: #ffffff;
}
.main-banner-text .view-work {
background: transparent;
border-color: #fff;
margin-left: 10px;
}
.main-banner-text .view-work:hover,
.main-banner-text .view-work:focus {
border-color: #ff2c57;
background: #ff2c57;
color: #ffffff;
}
.home-slides .owl-controls {
margin-top: 0;
}
/*
==============================
Video Banner CSS
==============================
*/
.video-background {
position: absolute;
left: 0;
top: 0;
width: auto;
height: auto;
min-height: 100%;
min-width: 100%;
z-index: -100;
}
/*
==============================
Creative Banner CSS
==============================
*/
.creative-banner-one {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
border-width: 10rem 100vw 0 0;
border-color: transparent #111111 #111111 transparent;
border-style: solid;
}
.creative-banner-two {
position: relative;
top: 100%;
width: 100%;
height: 0;
}
.creative-banner-two::before {
content: "";
border-right: 50vw solid #111111;
border-top: 160px solid transparent;
bottom: 0;
right: 0;
position: absolute;
height: 0;
width: 0;
}
.creative-banner-two::after {
content: '';
position: absolute;
border-left: 50vw solid #111111;
border-top: 160px solid transparent;
bottom: 0;
height: 0;
left: 0;
width: 0;
}
.creative-banner-three {
position: relative;
top: 100%;
width: 100%;
height: 0;
}
.creative-banner-three::before {
content: '';
position: absolute;
bottom: -25px;
left: 0;
width: 100%;
background-image: url(../../assets/img/shape.png);
height: 150px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
/*
==============================
Particles Banner CSS
==============================
*/
#particles-js {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
#particles-js-two {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
/*
==============================
Welcome Area CSS
==============================
*/
.single-box {
text-align: center;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
padding: 30px 20px;
position: relative;
overflow: hidden;
-webkit-transition: .4s;
transition: .4s;
}
.single-box:hover {
-webkit-box-shadow: unset;
box-shadow: unset;
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.single-box .icon {
color: #ff2c57;
font-size: 45px;
}
.single-box h3 {
margin-top: 25px;
margin-bottom: 20px;
font-weight: 600;
font-size: 20px;
}
.single-box a {
position: absolute;
right: -20px;
bottom: -20px;
width: 45px;
height: 40px;
line-height: 44px;
text-align: center;
-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
border-radius: 50% 0 0 0;
opacity: 0;
visibility: hidden;
}
.single-box:hover a {
background: #ff2c57;
color: #ffffff;
opacity: 1;
visibility: visible;
right: 0;
bottom: 0;
}
/*
==============================
About Area CSS
==============================
*/
.about-area {
background-image: url(../../assets/img/patt.png);
background-position: center center;
}
.about-video {
position: relative;
}
.about-video .video-btn {
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
margin-top: -26px;
}
.about-video .video-btn a {
color: #ffffff;
display: inline-block;
width: 70px;
height: 70px;
line-height: 72px;
background: #ff2c57;
position: relative;
font-size: 30px;
border-radius: 50%;
}
.about-video .video-btn a::before,
.about-video .video-btn a::after {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
display: block;
width: 88px;
height: 88px;
border-radius: 50%;
-webkit-transition: all 200ms;
transition: all 200ms;
-webkit-animation: pulse-border 1500ms ease-out infinite;
animation: pulse-border 1500ms ease-out infinite;
border: 10px solid #fff;
}
.about-video .video-btn a::after {
width: 70px;
height: 70px;
-webkit-transition: all 200ms;
transition: all 200ms;
}
@-webkit-keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
opacity: 0;
}
}
@keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
opacity: 0;
}
}
.about-addax {
margin-top: 12px;
}
.about-addax .section-title {
margin-bottom: 20px;
padding-left: 0;
}
.about-addax .section-title::before,
.about-addax .section-title::after {
display: none;
}
.about-addax .section-title h2 {
font-size: 25px;
}
.about-addax ul {
margin-bottom: 30px;
}
.about-addax ul li {
margin-bottom: 10px;
font-weight: 300;
color: #dddddd;
}
.about-addax ul li i {
color: #ff2c57;
margin-right: 5px;
}
.about-addax ul li:last-child {
margin-bottom: 0;
}
.about-addax .pull-left {
margin-right: 45px;
}
/*
==============================
Who We Are Area CSS
==============================
*/
.who-we-are {
padding-bottom: 50px;
}
.single-who-we-are {
border-radius: 5px;
margin-bottom: 30px;
position: relative;
overflow: hidden;
-webkit-box-shadow: 0 20px 40px 0 rgba(28, 30, 35, 0.2);
box-shadow: 0 20px 40px 0 rgba(28, 30, 35, 0.2);
background: #0F0F0F;
padding: 50px 30px;
-webkit-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.single-who-we-are:hover {
background: #ff2c57;
color: #ffffff;
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.single-who-we-are i {
font-size: 50px;
color: #ff2c57;
-webkit-transition: .4s;
transition: .4s;
}
.single-who-we-are:hover i {
color: #ffffff;
}
.single-who-we-are h4 {
margin-bottom: 20px;
margin-top: 25px;
font-size: 22px;
font-weight: 500;
}
.single-who-we-are p {
-webkit-transition: .4s;
transition: .4s;
}
.single-who-we-are:hover p {
color: #ffffff;
}
.single-who-we-are span {
bottom: 0;
color: rgba(0, 0, 0, 0.03);
font-size: 200px;
line-height: 180px;
position: absolute;
right: 0;
-webkit-transition: .4s;
transition: .4s;
}
.single-who-we-are:hover span {
color: rgba(255, 255, 255, 0.2);
}
/*
==============================
Strategy Area CSS
==============================
*/
.strategy-area {
position: relative;
}
.strategy-area .image {
background-image: url(../../assets/img/about-strategy.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.strategy-area .image img {
display: none;
}
.about-strategy {
padding-left: 25px;
}
.about-strategy .section-title {
margin-bottom: 20px;
padding-left: 0;
}
.about-strategy .section-title::before,
.about-strategy .section-title::after {
display: none;
}
.about-strategy ul {
margin-bottom: 30px;
}
.about-strategy ul li {
margin-bottom: 10px;
font-weight: 300;
color: #dddddd;
}
.about-strategy ul li:last-child {
margin-bottom: 0;
}
.about-strategy ul li i {
color: #ff2c57;
margin-right: 5px;
}
/*
==============================
CTR Area CSS
==============================
*/
.ctr-area {
text-align: center;
background-image: url(../../assets/img/ctr-bg.jpg);
position: relative;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.ctr-area::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .88;
}
.ctr-area .section-title {
padding-left: 0;
}
.ctr-area .section-title::after,
.ctr-area .section-title::before {
display: none;
}
.ctr-area .section-title h2 {
color: #ffffff;
font-weight: 500;
margin-top: 30px;
margin-bottom: 30px;
}
.ctr-area .section-title p {
margin-left: auto;
margin-right: auto;
margin-bottom: 25px;
}
.ctr-area .view-work {
background: transparent;
border-color: #ffffff;
margin-left: 10px;
}
.ctr-area .view-work:hover,
.ctr-area .view-work:focus {
border-color: #ff2c57;
background: #ff2c57;
color: #ffffff;
}
.ctr-area .btn:hover,
.ctr-area .btn:focus {
border-color: #ffffff;
}
/*
==============================
Skill Area CSS
==============================
*/
.about-skill .section-title {
padding-left: 0;
}
.about-skill .section-title::before,
.about-skill .section-title::after {
display: none;
}
.about-skill .progress-title {
font-size: 17px;
margin-bottom: 13px;
}
.about-skill .progress {
height: 10px;
background: #fff;
border-radius: 5px;
-webkit-box-shadow: none;
box-shadow: none;
margin-bottom: 30px;
overflow: visible;
}
.about-skill .progress .progress-bar {
-webkit-box-shadow: none;
box-shadow: none;
position: relative;
-webkit-animation: animate-positive 2s;
animation: animate-positive 2s;
background: #ff2c57;
border-radius: 5px;
}
.about-skill .progress .progress-value {
font-size: 15px;
font-weight: 300;
color: #dddddd;
position: absolute;
top: -29px;
right: 0;
}
@-webkit-keyframes animate-positive {
0% {
width: 0;
}
}
@keyframes animate-positive {
0% {
width: 0;
}
}
.skill-video {
position: relative;
}
.skill-video .video-btn {
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
margin-top: -26px;
}
.skill-video .video-btn a {
color: #ffffff;
display: inline-block;
width: 70px;
height: 70px;
line-height: 72px;
background: #ff2c57;
position: relative;
font-size: 30px;
border-radius: 50%;
}
.skill-video .video-btn a::before,
.skill-video .video-btn a::after {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
display: block;
width: 88px;
height: 88px;
border-radius: 50%;
-webkit-transition: all 200ms;
transition: all 200ms;
-webkit-animation: pulse-border 1500ms ease-out infinite;
animation: pulse-border 1500ms ease-out infinite;
border: 10px solid #ffffff;
}
.skill-video .video-btn a::after {
width: 70px;
height: 70px;
-webkit-transition: all 200ms;
transition: all 200ms;
}
@-webkit-keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
opacity: 0;
}
}
@keyframes pulse-border {
0% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}
100% {
-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
opacity: 0;
}
}
/*
==============================
Fun Facts Area CSS
==============================
*/
.funFacts-area {
background-image: url(../../assets/img/funfact-bg.jpg);
position: relative;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.funFacts-area::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .77;
}
.funFact {
position: relative;
padding-left: 65px;
}
.funFact i {
font-size: 50px;
color: #ff2c57;
position: absolute;
left: 0;
top: 2px;
}
.funFact .fa.fa-users {
left: -10px;
}
.funFact h2 {
color: #ffffff;
margin-bottom: 5px;
font-size: 45px;
font-weight: 600;
}
.funFact p {
font-size: 18px;
}
/*
==============================
Team Area CSS
==============================
*/
.our-team {
text-align: center;
position: relative;
}
.our-team .team-content {
position: absolute;
left: 0;
bottom: 0;
width: 92%;
background: #111111;
margin-left: 15px;
padding-top: 20px;
z-index: 1;
-webkit-transition: .4s;
transition: .4s;
}
.our-team .team-content .title {
font-size: 20px;
font-weight: 600;
color: #ffffff;
margin-bottom: 6px;
-webkit-transition: .4s;
transition: .4s;
}
.our-team .team-content .post {
color: #dddddd;
-webkit-transition: .4s;
transition: .4s;
}
.our-team:hover .team-content .title {
color: #ffffff;
}
.our-team:hover .team-content .post {
color: #ffffff;
}
.our-team:hover .team-content {
bottom: 34%;
background: transparent;
}
.our-team .social {
position: absolute;
top: 0;
width: 100%;
height: 100%;
background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.9)), color-stop(80%, rgba(0, 0, 0, 0.3)));
background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.3) 80%);
-webkit-transition: .4s;
transition: .4s;
opacity: 0;
visibility: hidden;
}
.our-team .social ul {
position: absolute;
left: 0;
right: 0;
top: 50%;
margin-top: -50px;
-webkit-transform: translateY(-35px);
transform: translateY(-35px);
-webkit-transition: .4s;
transition: .4s;
}
.our-team .social ul li {
display: inline-block;
}
.our-team .social ul li a {
width: 35px;
height: 35px;
line-height: 32px;
color: #ffffff;
border: 1px solid #ffffff;
border-radius: 50%;
}
.our-team .social ul li a:hover {
border-color: #ff2c57;
background: #ff2c57;
}
.our-team:hover .social {
opacity: 1;
visibility: visible;
}
.our-team:hover .social ul {
-webkit-transform: translateY(0);
transform: translateY(0);
}
/*
==============================
How We Work CSS
==============================
*/
.single-how-work {
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
background: #0F0F0F;
padding: 35px;
border-radius: 5px;
-webkit-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.single-how-work:hover {
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.single-how-work h3 {
color: #ff2c57;
font-size: 45px;
font-weight: 700;
}
.single-how-work h4 {
margin-top: 25px;
margin-bottom: 18px;
font-size: 22px;
}
/*
==============================
Services Area CSS
==============================
*/
.services-area {
padding-bottom: 50px;
}
.services-area .single-box {
margin-bottom: 30px;
}
.single-services {
margin-bottom: 30px;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
text-align: center;
position: relative;
-webkit-transition: .4s;
transition: .4s;
}
.single-services:hover {
-webkit-box-shadow: unset;
box-shadow: unset;
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.single-services::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
border-left: 2px solid #ff2c57;
height: 50px;
border-bottom: 2px solid #ff2c57;
opacity: 0;
-webkit-transition: .4s;
transition: .4s;
}
.single-services:hover::before {
opacity: 1;
width: 100%;
height: 50%;
}
.single-services .services-img {
position: relative;
}
.single-services .services-img::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .66;
}
.single-services .services-img .icon {
position: absolute;
top: 50%;
left: 0;
width: 100%;
margin-top: -30px;
}
.single-services i {
width: 70px;
height: 70px;
line-height: 71px;
border: 1px solid #ffffff;
font-size: 30px;
color: #ffffff;
border-radius: 50%;
-webkit-transition: .4s;
transition: .4s;
}
.single-services:hover i {
background: #ffffff;
color: #ff2c57;
}
.single-services .services-content {
padding: 30px 25px;
position: relative;
}
.single-services .services-content h3 {
font-size: 22px;
font-weight: 500;
margin-bottom: 18px;
}
/*
==============================
Why We Are Different CSS
==============================
*/
.tabset input[type="radio"] {
display: none;
}
.tabset .tab-panel {
display: none;
}
.tabset input:first-child:checked~.tab-panels .tab-panel:first-child {
display: block;
}
.tabset input:nth-child(3):checked~.tab-panels .tab-panel:nth-child(2) {
display: block;
}
.tabset input:nth-child(5):checked~.tab-panels .tab-panel:nth-child(3) {
display: block;
}
.tabset input:nth-child(7):checked~.tab-panels .tab-panel:nth-child(4) {
display: block;
}
.tabset input:nth-child(9):checked~.tab-panels .tab-panel:nth-child(5) {
display: block;
}
.tabset input:nth-child(11):checked~.tab-panels .tab-panel:nth-child(6) {
display: block;
}
.tabset label {
position: relative;
display: inline-block;
padding: 15px 32px;
margin-right: 6px;
margin-bottom: 0;
color: #ffffff;
cursor: pointer;
background: transparent;
-webkit-transition: background ease 0.2s;
transition: background ease 0.2s;
border: 1px solid #dddddd;
border-radius: 5px;
font-size: 18px;
}
.tabset input:checked+label {
border-color: #ff2c57;
background: #ff2c57;
color: #ffffff;
}
.tab-panel {
margin-top: 35px;
}
.tab-panel .why-we-different-text h4 {
font-size: 35px;
font-weight: 200;
margin-bottom: 20px;
}
.tab-panel .why-we-different-text p {
max-width: 635px;
margin-top: -7px;
}
.tab-panel .why-we-different-text ul {
margin-top: 25px;
margin-bottom: 30px;
}
.tab-panel .why-we-different-text ul li {
margin-bottom: 10px;
font-weight: 300;
color: #dddddd;
}
.tab-panel .why-we-different-text ul li:last-child {
margin-bottom: 0;
}
.tab-panel .why-we-different-text ul li i {
color: #ff2c57;
margin-right: 5px;
}
/*
==============================
Work Area CSS
==============================
*/
.shorting-menu {
display: inline-block;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
padding: 18px 20px;
border-radius: 50px;
background: #0F0F0F;
}
.shorting-menu .filter {
border: none;
background: #111111;
padding: 9px 24px;
text-transform: capitalize;
font-size: 16px;
cursor: pointer;
-webkit-transition: .4s;
transition: .4s;
border-radius: 30px;
color: #ffffff;
}
.shorting-menu .filter.active,
.shorting-menu .filter:hover {
background: #ff2c57;
color: #ffffff;
}
.shorting {
margin-top: 40px;
}
.shorting .mix {
display: none;
}
.single-work {
overflow: hidden;
position: relative;
padding: 5px;
}
.single-work::before {
content: '';
position: absolute;
top: 15px;
width: 95%;
height: 93%;
background: #000000;
left: 14px;
opacity: 0;
visibility: hidden;
-webkit-transition: .4s;
transition: .4s;
}
.single-work:hover::before {
top: 21px;
width: 93%;
height: 91%;
left: 21px;
opacity: .66;
visibility: visible;
}
.single-work .work-content {
position: absolute;
bottom: 20px;
width: 86%;
background: #0F0F0F;
left: 40px;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
opacity: 0;
visibility: hidden;
-webkit-transition: .4s;
transition: .4s;
}
.single-work .work-content h4 {
font-size: 22px;
margin-bottom: 10px;
}
.single-work .work-content ul li {
display: inline-block;
font-size: 14px;
color: #dddddd;
}
.single-work:hover .work-content {
bottom: 35px;
opacity: 1;
visibility: visible;
}
.single-work .popup-btn {
position: absolute;
top: 20px;
right: 40px;
width: 45px;
text-align: center;
height: 45px;
line-height: 46px;
border-radius: 50%;
color: #ffffff;
font-size: 22px;
opacity: 0;
visibility: hidden;
border: 1px solid #ffffff;
-webkit-transition: .4s;
transition: .4s;
}
.single-work .popup-btn:hover {
background: #ff2c57;
border-color: #ff2c57;
}
.single-work:hover .popup-btn {
top: 36px;
opacity: 1;
visibility: visible;
}
/*
==============================
Pricing Area CSS
==============================
*/
.pricingTable {
padding: 30px 0;
text-align: center;
position: relative;
background-image: url(../../assets/img/patt.png);
background-position: center center;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
-webkit-transition: .4s;
transition: .4s;
}
.pricingTable:hover {
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.pricingTable::after {
content: "";
width: 70px;
height: 30px;
background: #ff2c57;
margin: 0 auto;
position: absolute;
top: 80px;
left: 0;
right: 0;
-webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.pricingTable .title {
padding: 20px 0;
margin-bottom: 35px;
background: #ff2c57;
font-size: 25px;
color: #ffffff;
text-transform: uppercase;
}
.pricingTable .price-value {
margin-bottom: 25px;
color: #ff2c57;
}
.pricingTable .price-value .amount {
display: inline-block;
font-size: 44px;
font-weight: 500;
}
.pricingTable .price-value .month {
display: block;
font-size: 15px;
line-height: 16px;
text-transform: capitalize;
color: #dddddd;
margin-left: 50px;
}
.pricingTable .currency {
display: inline-block;
font-size: 25px;
vertical-align: top;
margin-top: 6px;
}
.pricingTable .pricing-content {
border-top: 2px solid #eeeeee;
border-bottom: 2px solid #eeeeee;
margin-bottom: 30px;
padding-top: 25px;
padding-bottom: 25px;
}
.pricingTable .pricing-content li {
color: #dddddd;
margin-top: 16px;
}
.pricingTable .pricing-content li:first-child {
margin-top: 0;
}
.pricingTable .pricing-content li i {
color: #ff2c57;
margin-right: 4px;
}
/*
==============================
FAQ Area CSS
==============================
*/
.faq-area .image {
background-image: url(../../assets/img/faq-img.jpg);
position: absolute;
left: 15px;
top: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.card {
background-color: transparent;
border-radius: 10px !important;
margin-bottom: 6px;
border: none;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
}
.card .card-header {
padding: 0;
margin-bottom: 0;
border: none;
background: transparent;
}
.card .card-header:first-child {
border-radius: 0;
}
.card .card-header a {
display: block;
}
.card .card-header a:hover {
background: #ff2c57;
}
.card .card-header a h5 {
font-size: 17px;
overflow: hidden;
padding: 20px;
color: #ffffff;
line-height: 16px;
background: #ff2c57;
}
.card .card-header a.collapsed h5 {
color: #ffffff;
background: transparent;
-webkit-transition: .4s;
transition: .4s;
}
.card .card-header a.collapsed h5:hover {
color: #ffffff;
}
.card .card-header a i {
float: right;
font-size: 16px;
}
.card .card-header a.collapsed .fa.fa-plus::before {
content: "\f067";
}
.card .card-header a .fa.fa-plus::before {
content: "\f068";
}
.card .card-body {
line-height: 1.9;
background: transparent;
color: #dddddd;
}
/*
==============================
Testimonials Area CSS
==============================
*/
.testimonials-area {
padding-bottom: 50px;
}
.single-feedback {
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
background-image: url(../../assets/img/patt.png);
padding: 30px;
margin-bottom: 30px;
border-radius: 5px;
position: relative;
-webkit-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.single-feedback .client-info {
position: relative;
margin-bottom: 35px;
padding-left: 100px;
padding-top: 15px;
}
.single-feedback .client-info .client-pic {
max-width: 80px;
position: absolute;
left: 0;
top: 0;
}
.single-feedback .client-info .client-pic img {
border-radius: 50%;
}
.single-feedback .client-info .client-title h4 {
font-size: 19px;
font-weight: 500;
-webkit-transition: .4s;
transition: .4s;
}
.single-feedback .client-info .client-title h5 {
font-size: 15px;
margin-top: 13px;
color: #666666;
-webkit-transition: .4s;
transition: .4s;
}
.single-feedback p {
-webkit-transition: .4s;
transition: .4s;
}
.single-feedback span {
font-size: 175px;
position: absolute;
bottom: 0;
right: 0;
color: rgba(0, 0, 0, 0.03);
-webkit-transition: .4s;
transition: .4s;
line-height: 0;
}
.single-feedback:hover {
-webkit-transform: translateX(5px);
transform: translateX(5px);
background: #ff2c57;
}
.single-feedback:hover .client-title h4,
.single-feedback:hover .client-title h5 {
color: #ffffff;
}
.single-feedback:hover p {
color: #ffffff;
}
.single-feedback:hover span {
color: rgba(255, 255, 255, 0.2);
}
/*
==============================
Blog Area CSS
==============================
*/
.single-blog-item {
position: relative;
padding: 30px;
border: 1px solid #000000;
overflow: hidden;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.single-blog-item::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
-webkit-transition: .4s;
transition: .4s;
}
.single-blog-item span,
.single-blog-item p,
.single-blog-item h4 {
position: relative;
-webkit-transition: .4s;
transition: .4s;
}
.single-blog-item span {
color: #dddddd;
}
.single-blog-item h4 {
margin-top: 15px;
margin-bottom: 15px;
line-height: 1.5;
font-size: 20px;
font-weight: 500;
}
.single-blog-item h4 a:hover {
color: #ff2c57 !important;
}
.single-blog-item .link-btn {
position: absolute;
right: 0;
bottom: 0;
width: 45px;
height: 40px;
line-height: 44px;
text-align: center;
-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
border-radius: 50% 0 0 0;
}
.single-blog-item:hover::before {
background: #000000;
opacity: .66;
}
.single-blog-item:hover span,
.single-blog-item:hover p,
.single-blog-item:hover h4 a {
color: #ffffff;
}
.single-blog-item:hover .link-btn {
background: #ff2c57;
color: #ffffff;
}
/*
==============================
Partner Area CSS
==============================
*/
.partner-area {
text-align: center;
}
.partner-area .owl-carousel .owl-item img {
width: 140px;
}
/*
==============================
Subscribe Area CSS
==============================
*/
.subscribe-area {
background-image: url(../../assets/img/pattern.png);
text-align: center;
background-position: center;
background-size: contain;
background-repeat: repeat;
background-attachment: fixed;
}
.newsletter {
max-width: 750px;
margin-left: auto;
margin-right: auto;
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
background: #0F0F0F;
padding: 35px;
border-radius: 5px;
}
.newsletter h4 {
text-transform: capitalize;
margin-bottom: 30px;
font-size: 30px;
}
.newsletter form {
position: relative;
}
.newsletter form .form-control {
-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
border: none;
height: 75px;
border-radius: 50px;
padding-left: 20px;
font-size: 17px;
}
.newsletter form .btn {
position: absolute;
right: 7px;
top: 8px;
height: 60px;
width: 175px;
}
.newsletter form .validation-danger {
margin-top: 20px;
color: red;
}
.newsletter form .validation-success {
margin-top: 20px;
}
/*
==============================
Contact Area CSS
==============================
*/
#map {
width: 100%;
height: 400px;
}
.contact-info {
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
background: #0F0F0F;
padding: 30px;
border-top: 3px solid #ff2c57;
border-bottom: 3px solid #ff2c57;
}
.contact-info ul li {
position: relative;
padding-left: 60px;
font-size: 16px;
margin-bottom: 34px;
color: #ffffff;
}
.contact-info ul li:last-child {
margin-bottom: 0;
}
.contact-info ul li i {
position: absolute;
left: 0;
top: -11px;
color: #ff2c57;
font-size: 19px;
background: #f6f6f6;
width: 45px;
height: 45px;
line-height: 45px;
text-align: center;
border-radius: 50%;
}
.contact-info .follow-us {
text-align: right;
margin-top: 40px;
}
.contact-info .follow-us li {
padding-left: 0;
display: inline-block;
margin-bottom: 0;
}
.contact-info .follow-us li:first-child {
font-size: 18px;
font-weight: 400;
margin-right: 5px;
}
.contact-info .follow-us li a {
width: 35px;
height: 35px;
text-align: center;
line-height: 35px;
border: 1px solid #000000;
border-radius: 50%;
}
.contact-info .follow-us li a:hover,
.contact-info .follow-us li a:focus {
background: #ff2c57;
color: #ffffff;
border-color: #ff2c57;
}
.contact-form {
-webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
padding: 40px 30px;
border-top: 3px solid #ff2c57;
border-bottom: 3px solid #ff2c57;
background: #0F0F0F;
}
.contact-form h4 {
color: #ff2c57;
margin-bottom: 25px;
font-size: 22px;
}
.contact-form .list-unstyled li {
color: red;
}
.contact-form .form-control {
border-radius: 30px;
border-color: #222222;
background: #222222;
}
.contact-form label {
color: #fff;
}
.contact-form .btn {
margin-top: 20px;
}
.contact-form #message {
height: auto;
padding: 15px;
}
/*
==============================
Page Title CSS
==============================
*/
.page-title {
height: 550px;
position: relative;
background-position: center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
overflow: hidden;
text-align: center;
}
.page-title::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000000;
opacity: .6;
}
.page-title h1 {
margin-bottom: 35px;
margin-top: 65px;
color: #ffffff;
font-size: 45px;
font-weight: 600;
}
.page-title ul li {
display: inline-block;
margin: 0 3px;
color: #ffffff;
text-transform: uppercase;
font-weight: 500;
}
.page-title ul li.active {
color: #cccccc;
}
.page-title ul li a {
color: #ffffff;
}
.page-title ul li a:hover {
color: #ff2c57;
}
/*
==============================
Blog Details Area CSS
==============================
*/
.blog-details-area {
background: #222222;
}
.blog-details-area .title {
margin-top: 30px;
margin-bottom: 30px;
font-size: 27px;
}
.blog-details {
-webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
background: #0F0F0F;
}
.blog-details .article-img {
position: relative;
}
.blog-details .article-img .date {
position: absolute;
bottom: 15px;
width: 100px;
left: 15px;
height: 100px;
text-align: center;
font-size: 25px;
font-style: italic;
background: #ff2c57;
color: #ffffff;
border-radius: 5px;
padding-top: 19px;
line-height: 32px;
}
.blog-details .article-text {
padding: 30px;
}
.blog-details .article-text ul li {
display: inline-block;
}
.blog-details .article-text .category a {
background: #ff2c57;
color: #ffffff;
padding: 3px 15px;
display: inline-block;
border-radius: 3px;
font-weight: 400;
}
.blog-details .article-text p {
margin-bottom: 20px;
}
.blog-details .article-text .blockquote {
margin-bottom: 25px;
margin-top: 25px;
background: #222222;
padding: 30px;
font-size: 17px;
border-left: 4px solid #ff2c57;
}
.blog-details .article-text .blockquote p {
color: #dddddd;
}
.blog-details .article-text .author-share {
margin-top: 40px;
}
.blog-details .article-text .author-share .social-share {
text-align: right;
margin-top: 28px;
}
.blog-details .article-text .author-share .social-share a {
background: #ff2c57;
color: #ffffff;
width: 35px;
display: inline-block;
height: 35px;
text-align: center;
line-height: 35px;
border-radius: 50%;
}
.blog-details .article-text .article-author {
overflow: hidden;
}
.blog-details .article-text .article-author .author-img {
float: left;
width: 27%;
}
.blog-details .article-text .article-author .author-img img {
border-radius: 50%;
max-width: 100%;
width: auto !important;
}
.blog-details .article-text .article-author .author-title {
float: left;
width: 73%;
padding-left: 25px;
margin-top: 17px;
}
.blog-details .article-text .article-author .author-title h4 {
font-size: 20px;
margin-bottom: 6px;
text-transform: uppercase;
}
.blog-details .article-text .article-author .author-title span {
color: #666666;
font-size: 15px;
}
.post-controls-buttons {
margin-top: 50px;
margin-bottom: 50px;
padding-left: 70px;
padding-right: 70px;
}
.post-controls-buttons div {
display: inline-block;
}
.post-controls-buttons div a {
-webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
padding: 10px 20px;
border-radius: 5px;
background: #0F0F0F;
color: #ff2c57;
}
.post-controls-buttons div a:hover {
background: #ff2c57;
color: #ffffff;
}
.post-controls-buttons .controls-right {
float: right;
}
.post-comments .single-comment {
-webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
padding: 25px;
margin-bottom: 25px;
position: relative;
overflow: hidden;
background: #0F0F0F;
}
.post-comments .single-comment.left-m {
margin-left: 30px;
}
.post-comments .single-comment .comment-img {
float: left;
width: 13%;
}
.post-comments .single-comment .comment-img img {
border-radius: 50%;
}
.post-comments .single-comment .comment-content {
float: left;
width: 87%;
padding-left: 25px;
}
.post-comments .single-comment .comment-content h4 {
font-size: 20px;
text-transform: uppercase;
margin-bottom: 15px;
}
.post-comments .single-comment .comment-content span {
color: #dddddd;
}
.post-comments .single-comment .comment-content p {
margin-bottom: 15px;
}
.post-comments .single-comment .comment-content a {
position: absolute;
right: 25px;
bottom: 25px;
color: #ff2c57;
text-transform: uppercase;
font-size: 17px;
}
.leave-a-reply {
-webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
padding: 25px;
background: #0F0F0F;
margin-top: 50px;
}
.leave-a-reply .form-control {
background: #222222;
color: #ffffff;
border: none;
}
.leave-a-reply .btn {
margin-top: 0px;
}
/*
==============================
Footer Area CSS
==============================
*/
.footer-area {
text-align: center;
padding: 50px 0;
background: #111111;
}
.footer-area h4 {
line-height: 22px;
margin-bottom: 30px;
}
.footer-area h4 a {
color: #ffffff;
font-weight: 600;
text-transform: uppercase;
font-size: 35px;
}
.footer-area h4 span {
color: #ff2c57;
font-size: 40px;
font-weight: 700;
text-transform: lowercase;
}
.footer-area ul li {
display: inline-block;
}
.footer-area ul li a {
width: 35px;
height: 35px;
text-align: center;
line-height: 34px;
border: 1px solid #ffffff;
border-radius: 50%;
color: #ffffff;
font-size: 15px;
}
.footer-area ul li a:hover,
.footer-area ul li a:focus {
background: #ff2c57;
color: #ffffff;
border-color: #ff2c57;
}
.footer-area p {
line-height: 1;
margin-top: 30px;
color: #dddddd;
}
/*
==============================
Go Top CSS
==============================
*/
.go-top {
position: fixed;
cursor: pointer;
bottom: 30px;
right: 20px;
font-size: 25px;
color: #ffffff;
background-color: #000000;
z-index: 1;
display: none;
width: 40px;
text-align: center;
height: 40px;
line-height: 39px;
border-radius: 50%;
-webkit-transition: .4s;
transition: .4s;
}
.go-top:hover {
color: #ffffff;
background: #ff2c57;
}
/*# sourceMappingURL=style.css.map */ | 0.429071 | 0.061961 |
p {
font-size: 16px;
color: #777777;
line-height: normal;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
margin-bottom: 15px;
}
body {
height: 100%;
width: 1003px;
padding-bottom: 85px;
}
.contactForm {
position: relative;
font-size: 16px;
display: block;
color: #777777;
line-height: normal;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
margin-bottom: 10px;
}
.formInput {
margin-bottom: 30px;
display: block;
}
.formSubmit {
color: #ffffff;
background-color: #4aaaa5;
display: block;
}
.header {
position: fixed;
height: 90px;
width: 100%;
background-color: #ffffff;
border-bottom: 2px solid #dddddd;
margin-bottom: 20px;
z-index: 2;
}
.name {
position: relative;
left: 85px;
height: auto;
width: 290px; /*enhancement needed*/
background-color: #4aaaa5;
padding: 20px;
color: #ffffff;
text-align: center;
}
.head1 {
font-size: 32px;
font-family: 'Georgia', Times, Times New Roman, serif;
font-weight: bold;
}
.head2 {
font-size: 22px;
font-family: 'Georgia', Times, Times New Roman, serif;
}
.head3 {
font-size: 20px;
font-family: 'Georgia', Times, Times New Roman, serif;
color: #777777;
}
.navBar {
position: relative;
left: 840px;
top: -50px; /*enhancement needed*/
width: 225px;
height:24px;
overflow: auto;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
color: #777777;
display: inline-block;
}
.navBar a {
text-decoration: none;
color: #777777;
}
.navText {
float: left;
display: inline-block;
}
.navDelim {
float: left;
padding-left: 10px;
padding-right: 10px;
display: inline-block;
}
.rowPosition {
position: relative;
top: 90px;
left: 85px;
width: 960;
padding-bottom: 100px;
}
.colMargin {
margin-top: 20px;
}
.bottomSpace {
height: 280px;
}
.mainSectionTitle {
display: block;
width: 100%;
color: #4aaaa5;
padding-bottom: 20px;
margin-bottom: 30px;
border-bottom: 3px solid #dddddd;
}
.sidebarTitle {
display: block;
width: 100%;
color: #4aaaa5;
padding-bottom: 15px;
border-bottom: 2px solid #dddddd;
margin-bottom: 20px;
display: inline-block;
}
.inlineImage {
float: left;
margin-right: 5px;
display: inline-block;
}
.socialBtn1 {
float: left;
}
.socialBtn2 {
float: left;
margin-left: 26px;
}
.footer {
position: absolute;
margin-top: 30px;
height: 80px;
width: 100%;
background-color: #666666;
border-top: 5px solid #4aaaa5;
}
.footerText {
font-size: 13px;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
position: relative;
top: 30px;
left: 380px;
color: #cccccc;
white-space: nowrap;
}
.bottomMargin {
margin-bottom: 30px;
}
.project-container {
/* height: 290px;
width: 290px; */
position: relative;
}
.project-img {
height: 290px;
width: 290px;
border-radius: 5px;
margin-top: 10px;
}
.project-link-bar {
background-color: white;
opacity: .9;
height: 70px;
width: 290px;
position: absolute;
/* left: 59px; */
bottom: 25px;
/* text-align: center; */
}
.project-description {
/* display: block; */
width: 290px;
text-align: center;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
font-weight: bold;
font-size: 18px;
}
.project-repo-link {
position: absolute;
bottom: 5px;
left: 80px;
border-radius: 2px;
}
.project-repo-img {
height: 40px;
width: 40px;
border-radius: 2px;
}
.project-www-link {
position: absolute;
bottom: 5px;
right: 80px;
border-radius: 2px;
}
.project-www-img {
height: 40px;
width: 40px;
/* margin: 5px; */
/* position: relative;
bottom: 2px;
left: 80px; */
border-radius: 2px;
}
/* .project-link:hover {
height: 30px;
width: 30px;
margin: 2px 7px 2px 7px;
position: relative;
bottom: 2px;
border-radius: 2px;
} */ | original/assets/css/style.css | p {
font-size: 16px;
color: #777777;
line-height: normal;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
margin-bottom: 15px;
}
body {
height: 100%;
width: 1003px;
padding-bottom: 85px;
}
.contactForm {
position: relative;
font-size: 16px;
display: block;
color: #777777;
line-height: normal;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
margin-bottom: 10px;
}
.formInput {
margin-bottom: 30px;
display: block;
}
.formSubmit {
color: #ffffff;
background-color: #4aaaa5;
display: block;
}
.header {
position: fixed;
height: 90px;
width: 100%;
background-color: #ffffff;
border-bottom: 2px solid #dddddd;
margin-bottom: 20px;
z-index: 2;
}
.name {
position: relative;
left: 85px;
height: auto;
width: 290px; /*enhancement needed*/
background-color: #4aaaa5;
padding: 20px;
color: #ffffff;
text-align: center;
}
.head1 {
font-size: 32px;
font-family: 'Georgia', Times, Times New Roman, serif;
font-weight: bold;
}
.head2 {
font-size: 22px;
font-family: 'Georgia', Times, Times New Roman, serif;
}
.head3 {
font-size: 20px;
font-family: 'Georgia', Times, Times New Roman, serif;
color: #777777;
}
.navBar {
position: relative;
left: 840px;
top: -50px; /*enhancement needed*/
width: 225px;
height:24px;
overflow: auto;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
color: #777777;
display: inline-block;
}
.navBar a {
text-decoration: none;
color: #777777;
}
.navText {
float: left;
display: inline-block;
}
.navDelim {
float: left;
padding-left: 10px;
padding-right: 10px;
display: inline-block;
}
.rowPosition {
position: relative;
top: 90px;
left: 85px;
width: 960;
padding-bottom: 100px;
}
.colMargin {
margin-top: 20px;
}
.bottomSpace {
height: 280px;
}
.mainSectionTitle {
display: block;
width: 100%;
color: #4aaaa5;
padding-bottom: 20px;
margin-bottom: 30px;
border-bottom: 3px solid #dddddd;
}
.sidebarTitle {
display: block;
width: 100%;
color: #4aaaa5;
padding-bottom: 15px;
border-bottom: 2px solid #dddddd;
margin-bottom: 20px;
display: inline-block;
}
.inlineImage {
float: left;
margin-right: 5px;
display: inline-block;
}
.socialBtn1 {
float: left;
}
.socialBtn2 {
float: left;
margin-left: 26px;
}
.footer {
position: absolute;
margin-top: 30px;
height: 80px;
width: 100%;
background-color: #666666;
border-top: 5px solid #4aaaa5;
}
.footerText {
font-size: 13px;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
position: relative;
top: 30px;
left: 380px;
color: #cccccc;
white-space: nowrap;
}
.bottomMargin {
margin-bottom: 30px;
}
.project-container {
/* height: 290px;
width: 290px; */
position: relative;
}
.project-img {
height: 290px;
width: 290px;
border-radius: 5px;
margin-top: 10px;
}
.project-link-bar {
background-color: white;
opacity: .9;
height: 70px;
width: 290px;
position: absolute;
/* left: 59px; */
bottom: 25px;
/* text-align: center; */
}
.project-description {
/* display: block; */
width: 290px;
text-align: center;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
font-weight: bold;
font-size: 18px;
}
.project-repo-link {
position: absolute;
bottom: 5px;
left: 80px;
border-radius: 2px;
}
.project-repo-img {
height: 40px;
width: 40px;
border-radius: 2px;
}
.project-www-link {
position: absolute;
bottom: 5px;
right: 80px;
border-radius: 2px;
}
.project-www-img {
height: 40px;
width: 40px;
/* margin: 5px; */
/* position: relative;
bottom: 2px;
left: 80px; */
border-radius: 2px;
}
/* .project-link:hover {
height: 30px;
width: 30px;
margin: 2px 7px 2px 7px;
position: relative;
bottom: 2px;
border-radius: 2px;
} */ | 0.354545 | 0.108685 |