code stringlengths 2k 1.04M | repo_path stringlengths 5 517 | parsed_code stringlengths 0 1.04M | quality_prob float64 0.02 0.95 | learning_prob float64 0.02 0.93 |
|---|---|---|---|---|
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
min-width: 600px;
min-height: 600px;
font-family: sans-serif;
}
input {
display: none;
}
/* Style */
form {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
.board {
flex: 1 1 auto;
display: grid;
grid-template: repeat(3, min-content) / repeat(3, min-content);
justify-content: center;
align-content: center;
}
.cell {
position: relative;
width: 88px;
height: 88px;
border: solid 4px #ddd;
}
.cell--1,
.cell--2,
.cell--3 {
border-top-color: transparent;
}
.cell--1,
.cell--4,
.cell--7 {
border-left-color: transparent;
}
.cell--3,
.cell--6,
.cell--9 {
border-right-color: transparent;
}
.cell--7,
.cell--8,
.cell--9 {
border-bottom-color: transparent;
}
.label {
position: absolute;
width: 100%;
height: 100%;
cursor: pointer;
visibility: hidden;
}
.label::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 12px;
border-radius: 6px;
background: #f4f4f4;
transform-origin: center;
transform: translate(-50%, -50%) rotate(45deg);
opacity: 0;
transition: opacity 0.2s;
}
.label::after {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 12px;
border-radius: 6px;
background: #f4f4f4;
transform-origin: center;
transform: translate(-50%, -50%) rotate(-45deg);
opacity: 0;
transition: opacity 0.2s;
}
.label:hover::before {
opacity: 1;
}
.label:hover::after {
opacity: 1;
}
.mark {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
display: none;
animation: mark-entrance 0.2s cubic-bezier(0, 0.8, 0.2, 1.2) both;
}
@keyframes mark-entrance {
from {
opacity: 0;
transform: scale(0) rotate(-15deg);
}
}
.mark--o {
animation-delay: 0.2s;
}
.mark--o::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 80%;
border-radius: 50%;
box-shadow: inset 0 0 0 12px #ef908c;
transform: translate(-50%, -50%);
}
.mark--x::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 12px;
border-radius: 6px;
background: #8c90ef;
transform-origin: center;
transform: translate(-50%, -50%) rotate(45deg);
}
.mark--x::after {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 12px;
border-radius: 6px;
background: #8c90ef;
transform-origin: center;
transform: translate(-50%, -50%) rotate(-45deg);
}
.endgame {
position: absolute;
left: 50%;
top: 50%;
width: 400px;
height: 400px;
border-radius: 6px;
background: white;
box-shadow: 0 0 120px #0002;
transform: translate(-50%, -50%);
display: none;
text-align: center;
z-index: 1000;
animation: endgame-entrance 0.3s 0.43s cubic-bezier(0, 0.8, 0.4, 1.2) both;
}
@keyframes endgame-entrance {
from {
opacity: 0;
transform: translate(-50%, -50%) scale(0.5);
}
}
.msg {
display: block;
text-align: center;
margin: 80px;
font-weight: bold;
font-size: 24pt;
line-height: 1.5;
color: #777;
}
.msg--o-win {
display: none;
}
.msg--draw {
display: none;
}
.endgame-newgame {
border: none;
margin: 20px;
padding: 18px;
text-transform: uppercase;
background: #d8eec0;
font-weight: bold;
border-radius: 6px;
color: #668870;
font-size: 12pt;
cursor: pointer;
}
.endgame-newgame:hover {
opacity: 0.8;
}
.bar {
flex: 1 1 auto;
text-align: center;
}
.newgame {
border: none;
padding: 18px;
text-transform: uppercase;
background: #d6d6d6;
border-radius: 6px;
font-weight: bold;
color: #909090;
font-size: 12pt;
cursor: pointer;
}
.newgame:hover {
opacity: 0.8;
}
/* Rules */
input[value="1"]:checked ~ .board .cell--1 .mark--x {
display: block;
}
input[value="2"]:checked ~ .board .cell--2 .mark--x {
display: block;
}
input[value="3"]:checked ~ .board .cell--3 .mark--x {
display: block;
}
input[value="4"]:checked ~ .board .cell--4 .mark--x {
display: block;
}
input[value="5"]:checked ~ .board .cell--5 .mark--x {
display: block;
}
input[value="6"]:checked ~ .board .cell--6 .mark--x {
display: block;
}
input[value="7"]:checked ~ .board .cell--7 .mark--x {
display: block;
}
input[value="8"]:checked ~ .board .cell--8 .mark--x {
display: block;
}
input[value="9"]:checked ~ .board .cell--9 .mark--x {
display: block;
}
.label--0 {
visibility: visible;
}
input[name="x0"]:checked ~ .board .label--0 {
visibility: hidden;
}
input[name="x0"]:checked ~ .board .label--1 {
visibility: visible;
}
input[name="x1"]:checked ~ .board .label--1 {
visibility: hidden;
}
input[name="x1"]:checked ~ .board .label--2 {
visibility: visible;
}
input[name="x2"]:checked ~ .board .label--2 {
visibility: hidden;
}
input[name="x2"]:checked ~ .board .label--3 {
visibility: visible;
}
input[name="x3"]:checked ~ .board .label--3 {
visibility: hidden;
}
input[name="x3"]:checked ~ .board .label--4 {
visibility: visible;
}
input[name="x4"]:checked ~ .board .label--4 {
visibility: hidden;
}
input[name="x4"]:checked ~ .endgame,
input[name="x4"]:checked ~ .endgame .msg--draw {
display: block;
}
/* Artificial Intelligence */
#x0-1:checked
~ .board .cell--5 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-4:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-7:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-2:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-2:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-3:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ .board .cell--1 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-5:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-5:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-3:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-7:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-4:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-5:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-5:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-7:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ .board .cell--5 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-4:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-4:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-6:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-6:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-3:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-4:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-7:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-1:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-1:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-1:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-2:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ .board .cell--1 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-3:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-3:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-7:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-2:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ .board .cell--6 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-3:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-5:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-5:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-4:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-5:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-5:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ .board .cell--1 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--9 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-2:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame,
#x0-5:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-5:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame,
#x0-5:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-9:checked
~ .endgame,
#x0-5:checked
~ #x1-3:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--9 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-2:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame,
#x0-5:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-5:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-5:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-5:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame,
#x0-5:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame,
#x0-5:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-5:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame,
#x0-5:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ .board .cell--3 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-5:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-7:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ .board .cell--5 .mark--o {
display: block;
}
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-5:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-5:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-5:checked
~ #x3-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-5:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-1:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-1:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-1:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-1:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-1:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-1:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-5:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-5:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-5:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-5:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-5:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ .board .cell--5 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-2:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-2:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-8:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-8:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-9:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-8:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-7:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-9:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-1:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-1:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-9:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-2:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-2:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-2:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-3:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-1:checked
~ .endgame,
#x0-7:checked
~ #x1-9:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-3:checked
~ .endgame,
#x0-7:checked
~ #x1-9:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame,
#x0-7:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame,
#x0-7:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ .board .cell--2 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-5:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-3:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-1:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-6:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-6:checked
~ #x3-5:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-5:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-5:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-5:checked
~ #x3-3:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-5:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-1:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-4:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-6:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-7:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-9:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-3:checked
~ #x3-5:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-1:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-3:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-3:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-1:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-5:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-5:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-1:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-5:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-3:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ .board .cell--5 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-7:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-2:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-7:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-3:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-3:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-2:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-1:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-1:checked
~ .endgame,
#x0-9:checked
~ #x1-7:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-7:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-3:checked
~ .endgame,
#x0-9:checked
~ #x1-7:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame,
#x0-9:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-9:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-1:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-1:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-3:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-1:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-2:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-2:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame .msg--o-win {
display: block;
} | css/style.css | * {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
min-width: 600px;
min-height: 600px;
font-family: sans-serif;
}
input {
display: none;
}
/* Style */
form {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
.board {
flex: 1 1 auto;
display: grid;
grid-template: repeat(3, min-content) / repeat(3, min-content);
justify-content: center;
align-content: center;
}
.cell {
position: relative;
width: 88px;
height: 88px;
border: solid 4px #ddd;
}
.cell--1,
.cell--2,
.cell--3 {
border-top-color: transparent;
}
.cell--1,
.cell--4,
.cell--7 {
border-left-color: transparent;
}
.cell--3,
.cell--6,
.cell--9 {
border-right-color: transparent;
}
.cell--7,
.cell--8,
.cell--9 {
border-bottom-color: transparent;
}
.label {
position: absolute;
width: 100%;
height: 100%;
cursor: pointer;
visibility: hidden;
}
.label::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 12px;
border-radius: 6px;
background: #f4f4f4;
transform-origin: center;
transform: translate(-50%, -50%) rotate(45deg);
opacity: 0;
transition: opacity 0.2s;
}
.label::after {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 12px;
border-radius: 6px;
background: #f4f4f4;
transform-origin: center;
transform: translate(-50%, -50%) rotate(-45deg);
opacity: 0;
transition: opacity 0.2s;
}
.label:hover::before {
opacity: 1;
}
.label:hover::after {
opacity: 1;
}
.mark {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
display: none;
animation: mark-entrance 0.2s cubic-bezier(0, 0.8, 0.2, 1.2) both;
}
@keyframes mark-entrance {
from {
opacity: 0;
transform: scale(0) rotate(-15deg);
}
}
.mark--o {
animation-delay: 0.2s;
}
.mark--o::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 80%;
border-radius: 50%;
box-shadow: inset 0 0 0 12px #ef908c;
transform: translate(-50%, -50%);
}
.mark--x::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 12px;
border-radius: 6px;
background: #8c90ef;
transform-origin: center;
transform: translate(-50%, -50%) rotate(45deg);
}
.mark--x::after {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 80%;
height: 12px;
border-radius: 6px;
background: #8c90ef;
transform-origin: center;
transform: translate(-50%, -50%) rotate(-45deg);
}
.endgame {
position: absolute;
left: 50%;
top: 50%;
width: 400px;
height: 400px;
border-radius: 6px;
background: white;
box-shadow: 0 0 120px #0002;
transform: translate(-50%, -50%);
display: none;
text-align: center;
z-index: 1000;
animation: endgame-entrance 0.3s 0.43s cubic-bezier(0, 0.8, 0.4, 1.2) both;
}
@keyframes endgame-entrance {
from {
opacity: 0;
transform: translate(-50%, -50%) scale(0.5);
}
}
.msg {
display: block;
text-align: center;
margin: 80px;
font-weight: bold;
font-size: 24pt;
line-height: 1.5;
color: #777;
}
.msg--o-win {
display: none;
}
.msg--draw {
display: none;
}
.endgame-newgame {
border: none;
margin: 20px;
padding: 18px;
text-transform: uppercase;
background: #d8eec0;
font-weight: bold;
border-radius: 6px;
color: #668870;
font-size: 12pt;
cursor: pointer;
}
.endgame-newgame:hover {
opacity: 0.8;
}
.bar {
flex: 1 1 auto;
text-align: center;
}
.newgame {
border: none;
padding: 18px;
text-transform: uppercase;
background: #d6d6d6;
border-radius: 6px;
font-weight: bold;
color: #909090;
font-size: 12pt;
cursor: pointer;
}
.newgame:hover {
opacity: 0.8;
}
/* Rules */
input[value="1"]:checked ~ .board .cell--1 .mark--x {
display: block;
}
input[value="2"]:checked ~ .board .cell--2 .mark--x {
display: block;
}
input[value="3"]:checked ~ .board .cell--3 .mark--x {
display: block;
}
input[value="4"]:checked ~ .board .cell--4 .mark--x {
display: block;
}
input[value="5"]:checked ~ .board .cell--5 .mark--x {
display: block;
}
input[value="6"]:checked ~ .board .cell--6 .mark--x {
display: block;
}
input[value="7"]:checked ~ .board .cell--7 .mark--x {
display: block;
}
input[value="8"]:checked ~ .board .cell--8 .mark--x {
display: block;
}
input[value="9"]:checked ~ .board .cell--9 .mark--x {
display: block;
}
.label--0 {
visibility: visible;
}
input[name="x0"]:checked ~ .board .label--0 {
visibility: hidden;
}
input[name="x0"]:checked ~ .board .label--1 {
visibility: visible;
}
input[name="x1"]:checked ~ .board .label--1 {
visibility: hidden;
}
input[name="x1"]:checked ~ .board .label--2 {
visibility: visible;
}
input[name="x2"]:checked ~ .board .label--2 {
visibility: hidden;
}
input[name="x2"]:checked ~ .board .label--3 {
visibility: visible;
}
input[name="x3"]:checked ~ .board .label--3 {
visibility: hidden;
}
input[name="x3"]:checked ~ .board .label--4 {
visibility: visible;
}
input[name="x4"]:checked ~ .board .label--4 {
visibility: hidden;
}
input[name="x4"]:checked ~ .endgame,
input[name="x4"]:checked ~ .endgame .msg--draw {
display: block;
}
/* Artificial Intelligence */
#x0-1:checked
~ .board .cell--5 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-4:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-7:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-2:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-2:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-1:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-3:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-1:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ .board .cell--2 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-1:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ .board .cell--1 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-5:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-5:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-3:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-7:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-4:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-5:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-5:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-5:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-5:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-2:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-7:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--9 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-8:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ .board .cell--5 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-7:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-2:checked
~ #x1-9:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ .board .cell--5 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-4:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-4:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-6:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-6:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-3:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame,
#x0-3:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-4:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-7:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame,
#x0-3:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-3:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-1:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-1:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-1:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-3:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ .board .cell--6 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-2:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-3:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-3:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame,
#x0-3:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ .board .cell--1 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-3:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-3:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-7:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-2:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame,
#x0-4:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ .board .cell--6 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-3:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-5:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-5:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-4:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-4:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-5:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-4:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ .board .cell--3 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-5:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-4:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-4:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame,
#x0-4:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ .board .cell--1 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--9 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-2:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame,
#x0-5:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-5:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame,
#x0-5:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-3:checked
~ #x2-9:checked
~ .endgame,
#x0-5:checked
~ #x1-3:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--9 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-5:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-2:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-5:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame,
#x0-5:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-5:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-5:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-5:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-5:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-9:checked
~ .board .cell--3 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame,
#x0-5:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame,
#x0-5:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-5:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-5:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-5:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame,
#x0-5:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ .board .cell--3 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-5:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-7:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ .board .cell--5 .mark--o {
display: block;
}
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-5:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-5:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-5:checked
~ #x3-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-5:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-1:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-1:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-1:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-1:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-1:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-1:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-7:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-8:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-5:checked
~ #x2-9:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-5:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-7:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame,
#x0-6:checked
~ #x1-7:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--9 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-5:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-8:checked
~ #x2-9:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame,
#x0-6:checked
~ #x1-8:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ .board .cell--1 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--7 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--5 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-5:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-5:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-5:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-5:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-5:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-7:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-6:checked
~ #x1-9:checked
~ #x2-8:checked
~ .board .cell--2 .mark--o,
#x0-6:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame,
#x0-6:checked
~ #x1-9:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ .board .cell--5 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-2:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-2:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-8:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-8:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-1:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-1:checked
~ #x2-9:checked
~ .endgame,
#x0-7:checked
~ #x1-1:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-8:checked
~ .endgame,
#x0-7:checked
~ #x1-2:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-2:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-2:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-7:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-3:checked
~ #x2-9:checked
~ .endgame,
#x0-7:checked
~ #x1-3:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-2:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-7:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-1:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-1:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-6:checked
~ #x2-9:checked
~ .endgame,
#x0-7:checked
~ #x1-6:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ .board .cell--9 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ .board .cell--4 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-2:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-2:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-3:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-2:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-3:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame,
#x0-7:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-9:checked
~ .board .cell--8 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-1:checked
~ .endgame,
#x0-7:checked
~ #x1-9:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-9:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-3:checked
~ .endgame,
#x0-7:checked
~ #x1-9:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame,
#x0-7:checked
~ #x1-9:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-7:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-7:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame,
#x0-7:checked
~ #x1-9:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ .board .cell--2 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-5:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-5:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-1:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-3:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-1:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-3:checked
~ #x2-5:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-3:checked
~ #x2-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-6:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-6:checked
~ #x3-5:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-3:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-5:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-5:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-5:checked
~ #x3-3:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-5:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-1:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-4:checked
~ #x2-9:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-3:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-4:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-6:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-7:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-7:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-5:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-5:checked
~ #x2-9:checked
~ .endgame,
#x0-8:checked
~ #x1-5:checked
~ #x2-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-3:checked
~ #x3-5:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-1:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-1:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-3:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-3:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-9:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-9:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-5:checked
~ #x3-9:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-6:checked
~ #x2-9:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ .board .cell--9 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-1:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-5:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-3:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-5:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-1:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-5:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-7:checked
~ #x2-6:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ .board .cell--7 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-1:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-3:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-3:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-5:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-1:checked
~ .board .cell--5 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-1:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-5:checked
~ .board .cell--1 .mark--o,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-5:checked
~ .endgame,
#x0-8:checked
~ #x1-9:checked
~ #x2-6:checked
~ #x3-5:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ .board .cell--5 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-3:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-7:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-1:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-3:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-2:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-2:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-7:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-7:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-3:checked
~ #x2-8:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame,
#x0-9:checked
~ #x1-3:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-2:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-3:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-6:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-3:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-3:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-7:checked
~ #x3-6:checked
~ .endgame .msg--o-win {
display: block;
}
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-4:checked
~ #x2-8:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-1:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-2:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-2:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-7:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-7:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-7:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-4:checked
~ #x3-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-1:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-2:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-4:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-7:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-6:checked
~ #x2-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame,
#x0-9:checked
~ #x1-6:checked
~ #x2-8:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-7:checked
~ .board .cell--8 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-1:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-1:checked
~ .endgame,
#x0-9:checked
~ #x1-7:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-7:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-3:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-3:checked
~ .endgame,
#x0-9:checked
~ #x1-7:checked
~ #x2-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-7:checked
~ #x2-4:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame,
#x0-9:checked
~ #x1-7:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-7:checked
~ #x2-6:checked
~ .board .cell--2 .mark--o,
#x0-9:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame,
#x0-9:checked
~ #x1-7:checked
~ #x2-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ .board .cell--7 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-1:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-1:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-1:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-3:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-3:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-3:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-2:checked
~ #x3-6:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ .board .cell--6 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-1:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-1:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-1:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-2:checked
~ .board .cell--4 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-2:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-2:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-3:checked
~ #x3-4:checked
~ .board .cell--1 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-4:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-4:checked
~ .endgame .msg--o-win,
#x0-9:checked
~ #x1-8:checked
~ #x2-6:checked
~ .board .cell--3 .mark--o,
#x0-9:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame,
#x0-9:checked
~ #x1-8:checked
~ #x2-6:checked
~ .endgame .msg--o-win {
display: block;
} | 0.522933 | 0.074804 |
.navBar {
display: flex;
max-width: 1140px;
width: 100%;
margin: 0 auto;
padding: 10px;
justify-content: space-between;
}
.header-container {
background-image: url("assets/main-img.jpg");
opacity: .3;
transition: opacity 750ms ease-in-out;
width: 100%;
background-position: center center;
height: 100vh;
background-size: cover;
}
.main-btn-container {
display: flex;
justify-content: center;
padding-top: 20%;
}
.button {
cursor: pointer;
}
button.main-btn {
padding: 3% 12%;
background-color: rgba(255, 255, 255, 0.64);
border: none;
text-align: center;
font-family: sans-serif;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 6px;
outline: 2px solid white;
outline-offset: 10px;
}
a.main-btn-a {
color: black;
}
.grow { transition: all 250ms ease-in-out; }
.grow:hover { transform: scale(1.1);}
.container {
max-width: 1140px;
width: 100%;
margin: 0 auto;
}
.scroll {
margin-top: 10%;
}
.scrolled {
margin-top: 0px;
transition: all 750ms ease-in-out;
}
.brand {
font-size: 25px;
letter-spacing: 2px;
}
.interiors {
color: #5e80b8;
}
.brand, .navAnchor {
text-transform: uppercase;
color: #303137;
}
.topNav {
margin: 0;
padding: 0;
display: flex;
list-style: none;
}
.topNav .navAnchor, a {
text-decoration: none;
padding-left: 20px;
}
.navAnchor:hover {
color: #5e80b8;
}
a.navA {
text-decoration: none;
padding-left: 20px;
font-size: 20px;
}
.dropdownLink {
display: none;
}
section#headshot {
display: flex;
justify-content: center;
}
.headershot-wrapper {
display: flex;
flex-direction: column;
text-align: center;
padding: 2rem 0;
}
.navA {
color: #303137;
}
.headshot {
border-radius: 50%;
max-width: 200px;
width: 100%;
}
.services, .contact-container {
padding: 4rem 1rem;
background-color: #f6f6f6;
}
.media-object {
display: flex;
align-items: center;
padding: 4rem 1rem;
}
.icon-left, .icon-right {
flex: 1;
display: flex;
justify-content: center;
}
.blurb-wrapper-right, .blurb-wrapper-left {
flex: 1;
}
.icon {
height: 180px;
}
.blurb-wrapper {
flex: 1;
}
.blurb-header {
font-size: 18px;
font-family: sans-serif;
letter-spacing: 4px;
text-transform: uppercase;
margin-top: 0;
}
.blurb-info {
color: #646b90;
font-size: 18px;
}
.icon-left, .blurb-wrapper-left {
order: 1;
}
.icon-right, .blurb-wrapper-right {
order: 2;
}
.quote-btn-wrapper {
display: flex;
justify-content: center;
margin-top: 3rem;
}
.quote-btn {
color: white;
background-color: #5e80b8;
font-size: 18px;
border: none;
padding: .8rem 4rem;
box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}
.section-header {
text-align: center;
padding: 6rem 0 4rem;
}
.subheading {
font-size: 18px;
font-family: sans-serif;
letter-spacing: 4px;
text-transform: uppercase;
}
.portfolio-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-bottom: 80px;
}
.portfolio-object {
max-width: 250px;
margin: 1rem 0;
}
.portfolio-box {
transition: .2s ease-in-out;
}
.projectImg {
width: 250px;
height: 250px;
}
.portfolio-box:hover {
cursor: pointer;
transform: scale(1.02);
}
h4 {
letter-spacing: 2px;
font-size: 18px;
text-transform: uppercase;
}
.portfolio-text {
letter-spacing: 1.1px;
font-size: 18px;
}
form label {
font-size: 16px;
text-transform: uppercase;
letter-spacing: 1.5px;
font-family: sans-serif;
}
.form-control {
margin-bottom: .75rem;
max-width: 800px;
width: 100%;
background-color: white;
color: #292b2c;
border-radius: 5px;
border: 1px solid #ced4da;
padding: .375rem .75rem;
font-size: 16px;
line-height: 1.5;
background-clip: padding-box;
display: block;
}
.submit-btn-wrapper {
margin-top: 4rem;
}
.contact {
padding-top: 10px;
padding-bottom: 20px;
display: flex;
justify-content: space-between;
}
.contactInfo {
font-size: 12px;
font-family: sans-serif;
letter-spacing: 2px;
text-transform: uppercase;
}
.bottomLogo {
padding-top: 30px;
}
@media (max-width: 1050px) {
.contact {
display: block;
justify-content: flex-start;
}
}
@media (max-width: 768px) {
ul.topNav li a.navAnchor {
display: none;
}
ul.topNav li.dropdownLink {
display: block;
position: absolute;
top: 15px;
right: 20px;
}
ul.topNav.responsive li.dropdownLink {
position: absolute;
top: 15px;
right: 20px;
}
ul.topNav.responsive {
flex-direction: column;
text-align: right;
}
ul.topNav.responsive li a.navAnchor {
display: block;
line-height: 2;
}
ul.topNav.responsive li a.navAnchor.bottomNav {
padding-bottom: 30px;
}
ul.topNav.responsive li {
position: relative;
top: 30px;
right: 30px;
}
.portfolio-wrapper {
text-align: center;
}
.form-group {
display: flex;
}
.submit-btn-wrapper {
text-align: center;
}
}
@media (max-width: 599px) {
.portfolio-wrapper {
justify-content: center;
}
.media-object {
display: flex;
text-align: center;
flex-direction: column;
}
.icon-right, .icon-left {
order: 1;
}
.blurb-wrapper-left, .blurb-wrapper-right {
order: 2;
padding-top: 2rem;
}
} | styles.css | .navBar {
display: flex;
max-width: 1140px;
width: 100%;
margin: 0 auto;
padding: 10px;
justify-content: space-between;
}
.header-container {
background-image: url("assets/main-img.jpg");
opacity: .3;
transition: opacity 750ms ease-in-out;
width: 100%;
background-position: center center;
height: 100vh;
background-size: cover;
}
.main-btn-container {
display: flex;
justify-content: center;
padding-top: 20%;
}
.button {
cursor: pointer;
}
button.main-btn {
padding: 3% 12%;
background-color: rgba(255, 255, 255, 0.64);
border: none;
text-align: center;
font-family: sans-serif;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 6px;
outline: 2px solid white;
outline-offset: 10px;
}
a.main-btn-a {
color: black;
}
.grow { transition: all 250ms ease-in-out; }
.grow:hover { transform: scale(1.1);}
.container {
max-width: 1140px;
width: 100%;
margin: 0 auto;
}
.scroll {
margin-top: 10%;
}
.scrolled {
margin-top: 0px;
transition: all 750ms ease-in-out;
}
.brand {
font-size: 25px;
letter-spacing: 2px;
}
.interiors {
color: #5e80b8;
}
.brand, .navAnchor {
text-transform: uppercase;
color: #303137;
}
.topNav {
margin: 0;
padding: 0;
display: flex;
list-style: none;
}
.topNav .navAnchor, a {
text-decoration: none;
padding-left: 20px;
}
.navAnchor:hover {
color: #5e80b8;
}
a.navA {
text-decoration: none;
padding-left: 20px;
font-size: 20px;
}
.dropdownLink {
display: none;
}
section#headshot {
display: flex;
justify-content: center;
}
.headershot-wrapper {
display: flex;
flex-direction: column;
text-align: center;
padding: 2rem 0;
}
.navA {
color: #303137;
}
.headshot {
border-radius: 50%;
max-width: 200px;
width: 100%;
}
.services, .contact-container {
padding: 4rem 1rem;
background-color: #f6f6f6;
}
.media-object {
display: flex;
align-items: center;
padding: 4rem 1rem;
}
.icon-left, .icon-right {
flex: 1;
display: flex;
justify-content: center;
}
.blurb-wrapper-right, .blurb-wrapper-left {
flex: 1;
}
.icon {
height: 180px;
}
.blurb-wrapper {
flex: 1;
}
.blurb-header {
font-size: 18px;
font-family: sans-serif;
letter-spacing: 4px;
text-transform: uppercase;
margin-top: 0;
}
.blurb-info {
color: #646b90;
font-size: 18px;
}
.icon-left, .blurb-wrapper-left {
order: 1;
}
.icon-right, .blurb-wrapper-right {
order: 2;
}
.quote-btn-wrapper {
display: flex;
justify-content: center;
margin-top: 3rem;
}
.quote-btn {
color: white;
background-color: #5e80b8;
font-size: 18px;
border: none;
padding: .8rem 4rem;
box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}
.section-header {
text-align: center;
padding: 6rem 0 4rem;
}
.subheading {
font-size: 18px;
font-family: sans-serif;
letter-spacing: 4px;
text-transform: uppercase;
}
.portfolio-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-bottom: 80px;
}
.portfolio-object {
max-width: 250px;
margin: 1rem 0;
}
.portfolio-box {
transition: .2s ease-in-out;
}
.projectImg {
width: 250px;
height: 250px;
}
.portfolio-box:hover {
cursor: pointer;
transform: scale(1.02);
}
h4 {
letter-spacing: 2px;
font-size: 18px;
text-transform: uppercase;
}
.portfolio-text {
letter-spacing: 1.1px;
font-size: 18px;
}
form label {
font-size: 16px;
text-transform: uppercase;
letter-spacing: 1.5px;
font-family: sans-serif;
}
.form-control {
margin-bottom: .75rem;
max-width: 800px;
width: 100%;
background-color: white;
color: #292b2c;
border-radius: 5px;
border: 1px solid #ced4da;
padding: .375rem .75rem;
font-size: 16px;
line-height: 1.5;
background-clip: padding-box;
display: block;
}
.submit-btn-wrapper {
margin-top: 4rem;
}
.contact {
padding-top: 10px;
padding-bottom: 20px;
display: flex;
justify-content: space-between;
}
.contactInfo {
font-size: 12px;
font-family: sans-serif;
letter-spacing: 2px;
text-transform: uppercase;
}
.bottomLogo {
padding-top: 30px;
}
@media (max-width: 1050px) {
.contact {
display: block;
justify-content: flex-start;
}
}
@media (max-width: 768px) {
ul.topNav li a.navAnchor {
display: none;
}
ul.topNav li.dropdownLink {
display: block;
position: absolute;
top: 15px;
right: 20px;
}
ul.topNav.responsive li.dropdownLink {
position: absolute;
top: 15px;
right: 20px;
}
ul.topNav.responsive {
flex-direction: column;
text-align: right;
}
ul.topNav.responsive li a.navAnchor {
display: block;
line-height: 2;
}
ul.topNav.responsive li a.navAnchor.bottomNav {
padding-bottom: 30px;
}
ul.topNav.responsive li {
position: relative;
top: 30px;
right: 30px;
}
.portfolio-wrapper {
text-align: center;
}
.form-group {
display: flex;
}
.submit-btn-wrapper {
text-align: center;
}
}
@media (max-width: 599px) {
.portfolio-wrapper {
justify-content: center;
}
.media-object {
display: flex;
text-align: center;
flex-direction: column;
}
.icon-right, .icon-left {
order: 1;
}
.blurb-wrapper-left, .blurb-wrapper-right {
order: 2;
padding-top: 2rem;
}
} | 0.513425 | 0.060142 |
@import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;500&display=swap");
.card-container h6, h5, h4, h3, h2, h1, a {
font-family: 'Baloo Paaji 2', cursive;
color: #fff;
transition: all 0.2s;
}
.card-container a:hover {
color: #fff;
}
.card-container {
width: calc(70vw/3);
max-width: 100%;
padding: 12px;
display: inline-block;
margin: 6px;
background: #2c2f33;
box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
box-sizing: border-box;
color: #fff;
font-family: 'Baloo Paaji 2', cursive;
transition: all 0.2s;
align-items: center;
}
.card-container:hover {
-webkit-transform: scale(1.02);
transform: scale(1.02);
}
.card-container .round {
border: 1px solid #23272a;
border-radius: 50%;
padding: 7px;
}
button.primary {
cursor: pointer;
background-color: #000;
border: 2px solid #000;
border-radius: 50%;
color: #fff;
font-weight: 500;
padding: 10px 10px;
transition: 0.2s;
margin: 2%;
box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
}
button.primary:hover {
color: #B3B8CD;
transition: 0.2s;
-webkit-transform: scale(1.12);
transform: scale(1.12);
}
.skills {
border-radius: 10px;
font-family: 'Baloo Paaji 2', cursive;
background-color: #23272a;
text-align: left;
padding: 15px;
margin-top: 30px;
box-sizing: border-box;
color: #fff;
font-family: 'Baloo Paaji 2', cursive;
transition: all 0.2s;
}
.skills ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.skills ul li {
border: 1px solid #2c2f33;
border-radius: 2px;
display: inline-block;
font-size: 12px;
margin: 0 7px 7px 0;
padding: 7px;
}
@media only screen and (max-width:768px) {
/* For tablets: */
.card-container {
display: block;
width: 75%;
}
.card-container:hover {
display: block;
width: 75%;
}
.tags-box {
opacity: 0%;
}
} | css/team.css | @import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;500&display=swap");
.card-container h6, h5, h4, h3, h2, h1, a {
font-family: 'Baloo Paaji 2', cursive;
color: #fff;
transition: all 0.2s;
}
.card-container a:hover {
color: #fff;
}
.card-container {
width: calc(70vw/3);
max-width: 100%;
padding: 12px;
display: inline-block;
margin: 6px;
background: #2c2f33;
box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
box-sizing: border-box;
color: #fff;
font-family: 'Baloo Paaji 2', cursive;
transition: all 0.2s;
align-items: center;
}
.card-container:hover {
-webkit-transform: scale(1.02);
transform: scale(1.02);
}
.card-container .round {
border: 1px solid #23272a;
border-radius: 50%;
padding: 7px;
}
button.primary {
cursor: pointer;
background-color: #000;
border: 2px solid #000;
border-radius: 50%;
color: #fff;
font-weight: 500;
padding: 10px 10px;
transition: 0.2s;
margin: 2%;
box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
}
button.primary:hover {
color: #B3B8CD;
transition: 0.2s;
-webkit-transform: scale(1.12);
transform: scale(1.12);
}
.skills {
border-radius: 10px;
font-family: 'Baloo Paaji 2', cursive;
background-color: #23272a;
text-align: left;
padding: 15px;
margin-top: 30px;
box-sizing: border-box;
color: #fff;
font-family: 'Baloo Paaji 2', cursive;
transition: all 0.2s;
}
.skills ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.skills ul li {
border: 1px solid #2c2f33;
border-radius: 2px;
display: inline-block;
font-size: 12px;
margin: 0 7px 7px 0;
padding: 7px;
}
@media only screen and (max-width:768px) {
/* For tablets: */
.card-container {
display: block;
width: 75%;
}
.card-container:hover {
display: block;
width: 75%;
}
.tags-box {
opacity: 0%;
}
} | 0.325521 | 0.108189 |
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
@import url(../fonts/calibri/calibri.css);
/* Helper classes
========================= */
.ir {
background-color: transparent;
border: 0;
overflow: hidden;
/* IE 6/7 fallback */
*text-indent: -9999px;
}
.ir:before {
content: "";
display: block;
width: 0;
height: 150%;
}
.hidden {
display: none !important;
visibility: hidden;
}
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
.invisible {
visibility: hidden;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
content: " ";
/* 1 */
display: table;
/* 2 */
}
.clearfix:after,
.container:after {
clear: both;
}
.clearfix,
.container {
*zoom: 1;
}
.img-responsive {
display: block;
width: 100% \9;
max-width: 100%;
height: auto;
}
.text-center {
text-align: center !important;
}
.text-right {
text-align: right !important;
}
/* Base styles
========================= */
* {
webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html,
button,
input,
select,
textarea {
color: #444;
}
html {
font-size: 14px;
min-height: 100%;
background: #fff;
position: relative;
line-height: 1.64285;
font-family: 'Open Sans', sans-serif;
}
body {
margin-bottom: 130px;
}
.container {
width: 1240px;
margin-left: auto;
margin-right: auto;
position: relative;
padding-left: 20px;
padding-right: 20px;
}
/* Header
============================ */
.header {
height: 390px;
background: url("../img/header_bg.jpg") top center no-repeat;
}
.header .header-top {
width: 100%;
height: 63px;
position: relative;
text-align: center;
}
.header .header-top .header-logo {
top: 8px;
left: 33px;
width: 164px;
height: 41px;
cursor: pointer;
position: absolute;
background: url("../img/logo.png") 0 0 no-repeat;
}
.header .header-top .header-address {
right: 0;
top: 8px;
color: #444;
width: 230px;
cursor: pointer;
font-size: 14px;
line-height: 15px;
text-align: right;
position: absolute;
padding-right: 40px;
text-decoration: none;
}
.header .header-top .header-address:before {
right: 0;
top: 10px;
width: 22px;
height: 31px;
content: " ";
position: absolute;
background: url("../img/sprite.png") -327px 0 no-repeat;
}
.header .header-top .header-address:hover {
text-decoration: underline;
}
.header .header-top .header-phone {
color: #444444;
font-size: 32px;
line-height: 33px;
padding: 15px 14px;
display: inline-block;
font-family: 'Calibri';
}
.header .header-top .header-phone .code {
color: #a86b00;
font-size: 27px;
}
.header .header-nav {
float: left;
width: 232px;
height: 327px;
background: rgba(255, 255, 255, 0.43);
}
.header .header-nav ul {
margin-bottom: 28px;
}
.header .header-nav li {
height: 45px;
background: url("../img/header_nav_bg.png") 0 -1px no-repeat;
}
.header .header-nav li a {
color: #444;
width: 100%;
height: 45px;
outline: none;
font-size: 19px;
line-height: 20px;
padding: 12px 16px;
display: inline-block;
text-decoration: none;
}
.header .header-nav li:hover {
text-decoration: none;
}
.header .header-nav li:hover {
background-position: 0 -47px;
}
.header .header-nav .leave-request {
color: #fff;
width: 100%;
border: none;
height: 32px;
outline: none;
display: block;
cursor: pointer;
font-size: 15px;
font-weight: 700;
padding: 5px 17px;
line-height: 20px;
position: relative;
background: #c29365;
text-decoration: none;
}
.header .header-nav .leave-request:before {
top: 12px;
z-index: 10;
right: 24px;
width: 22px;
height: 8px;
content: " ";
position: absolute;
background: url("../img/sprite.png") -349px 0;
}
.header .header-nav .leave-request:hover {
background: #ee9a1a;
}
.header .header-nav .leave-request:active {
top: 1px;
}
.header .header-service {
float: left;
width: 960px;
height: 327px;
position: relative;
}
.header .header-service a {
color: #fff;
display: block;
cursor: pointer;
font-size: 28px;
line-height: 36px;
position: absolute;
text-decoration: none;
font-family: 'Calibri';
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
background: url("../img/sprite.png") no-repeat;
}
.header .header-service a:hover {
color: #ba6410;
text-decoration: none;
}
.header .header-service a span {
position: relative;
display: inline-block;
}
.header .header-service a.item1 {
top: 60px;
left: 95px;
width: 327px;
height: 93px;
position: absolute;
background-position: 0 0;
}
.header .header-service a.item1:hover {
background-position: 0 -100px;
}
.header .header-service a.item1 span {
top: -8px;
}
.header .header-service a.item2 {
top: 20px;
right: 30px;
width: 205px;
height: 62px;
position: absolute;
padding-left: 35px;
background-position: 0 -300px;
}
.header .header-service a.item2:hover {
background-position: 0 -365px;
}
.header .header-service a.item2 span {
top: -8px;
}
.header .header-service a.item3 {
top: 185px;
left: 495px;
width: 208px;
height: 42px;
position: absolute;
background-position: 0 -200px;
}
.header .header-service a.item3:hover {
background-position: 0 -250px;
}
/* TopNav
============================ */
.topnav {
height: 50px;
margin-bottom: 30px;
background: #f9bd6c;
}
.topnav ul {
height: 50px;
font-size: 0;
text-align: center;
}
.topnav li {
font-size: 0;
height: 50px;
display: inline-block;
border-left: 1px solid #d3a05c;
border-right: 1px solid #e3b16d;
}
.topnav li:first-child {
border-left: 1px solid transparent;
}
.topnav li:last-child {
border-right: 1px solid transparent;
}
.topnav a {
height: 50px;
color: #383434;
font-size: 18px;
line-height: 30px;
padding: 10px 15px;
position: relative;
display: inline-block;
text-decoration: none;
}
.topnav a:hover {
text-decoration: none;
background-color: #dea860;
}
.topnav a:hover:before {
left: 15px;
right: 15px;
height: 1px;
z-index: 20;
bottom: 10px;
content: " ";
position: absolute;
background: #ad8b5c;
}
/* Form Request
============================ */
.form-request-block {
height: 440px;
padding-top: 80px;
background: url("../img/form_request_bg.jpg") top center no-repeat;
}
.form-request-block .form-request {
width: 830px;
margin: 0 auto;
text-align: center;
padding: 20px 142px 0 142px;
background: url("../img/form_request.png") top center no-repeat;
}
.form-request-block .form-request.form-request-start {
height: 269px;
}
.form-request-block .form-request.form-request-success {
height: 170px;
display: none;
margin-top: 55px;
background-position: 50% -55px;
}
.form-request-block .form-request.form-request-success p {
margin-bottom: 20px;
}
.form-request-block .form-request .form-request-title {
color: #000;
font-size: 31px;
line-height: 31px;
font-weight: 600;
margin-bottom: 10px;
text-transform: uppercase;
}
.form-request-block .form-request p {
color: #31343e;
font-weight: 600;
margin-bottom: 10px;
}
.form-request-block .form-request .form-group {
margin-bottom: 18px;
}
.form-request-block .form-request .form-control {
width: 100%;
border: 1px solid #fff;
outline: none;
color: #909297;
font-size: 19px;
background: #fff;
font-weight: 700;
line-height: 30px;
padding: 4px 20px;
text-align: center;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
display: inline-block;
vertical-align: middle;
}
.form-request-block .form-request .form-control::-moz-placeholder {
color: #909297;
opacity: 1;
}
.form-request-block .form-request .form-control:-ms-input-placeholder {
color: #909297;
}
.form-request-block .form-request .form-control::-webkit-input-placeholder {
color: #909297;
}
.form-request-block .form-request .has-error .form-control {
background-color: #ffe4e4;
}
.form-request-block .form-request .form-error {
display: none;
}
/* Action block
============================ */
.action {
margin-top: -20px;
margin-bottom: 8px;
}
.action .action-title {
color: #2e2e2e;
font-size: 46px;
line-height: 80px;
position: relative;
margin-bottom: 20px;
padding-bottom: 10px;
}
.action .action-title:before {
left: 0;
bottom: 2px;
height: 2px;
width: 147px;
content: " ";
position: absolute;
background: #f6a636;
}
.action .action-slider {
width: 100%;
height: 183px;
overflow: hidden;
margin-bottom: 22px;
}
.action .action-slider .action-item {
width: 100%;
height: 183px;
position: relative;
}
.action .action-slider .action-content {
top: 0;
left: 0;
color: #fff;
width: 100%;
height: 100%;
font-size: 22px;
font-weight: 700;
line-height: 36px;
position: absolute;
padding: 30px 40px 0 600px;
}
.action .action-slider .action-content .slide-title {
font-size: 28px;
line-height: 30px;
margin-bottom: 20px;
text-transform: uppercase;
}
.action .action-slider .slick-dots {
left: 0;
right: 0;
margin: 0;
padding: 0;
bottom: 10px;
list-style: none;
position: absolute;
text-align: center;
}
.action .action-slider .slick-dots li {
width: 13px;
height: 13px;
font-size: 0;
margin: 0 6px;
display: inline-block;
}
.action .action-slider .slick-dots li button {
width: 13px;
height: 13px;
font-size: 0;
border: none;
outline: none;
overflow: hidden;
display: inline-block;
background: url("../img/sprite.png") -349px -8px no-repeat;
}
.action .action-slider .slick-dots li.slick-active button {
background-position: -362px -8px;
}
.action p {
font-size: 18px;
font-weight: 300;
line-height: 22px;
}
/* Footer
============================ */
.footer {
left: 0;
bottom: 0;
width: 100%;
height: 168px;
position: absolute;
background: url("../img/footer_bg.png") bottom center no-repeat;
}
.footer .footer-top {
height: 78px;
color: #2a2828;
font-size: 14px;
font-weight: 600;
line-height: 20px;
padding-top: 50px;
text-align: center;
}
.footer .footer-top .ogr-name {
margin-right: 120px;
}
.footer .footer-nav {
height: 30px;
padding: 5px 0;
line-height: 20px;
text-align: center;
}
.footer .footer-nav li {
margin: 0 8px;
display: inline;
}
.footer .footer-nav a {
color: #2a2828;
font-size: 14px;
font-weight: 600;
text-decoration: none;
}
.footer .footer-nav a:hover {
text-decoration: underline;
}
.footer .footer-social {
text-align: center;
}
.footer .footer-social .social-title {
color: #1a1a1a;
font-size: 11px;
line-height: 28px;
}
.footer .footer-social ul {
margin: 0;
padding: 0;
font-size: 0;
list-style: none;
text-align: center;
}
.footer .footer-social li {
width: 20px;
height: 20px;
font-size: 0;
margin: 0 6px;
display: inline-block;
}
.footer .footer-social a {
width: 100%;
height: 100%;
font-size: 0;
cursor: pointer;
display: inline-block;
background: url("../img/icon-social.png") 0 0 no-repeat;
}
.footer .footer-social a.vk {
background-position: 0 0;
}
.footer .footer-social a.ok {
background-position: -31px 0;
}
.footer .footer-social a.yandex {
background-position: -62px 0;
}
.footer .footer-social a.mailru {
background-position: -93px 0;
}
.footer .footer-social a.fb {
background-position: -124px 0;
}
.footer .footer-social a.tw {
background-position: -156px 0;
}
.footer .footer-social a.soc01 {
background-position: -187px 0;
}
.footer .footer-social a.li {
background-position: -218px 0;
}
/* Content
============================ */
.main {
margin-bottom: 30px;
}
.content-service .content-service-title {
height: 103px;
color: #2b2a29;
font-size: 30px;
padding-top: 0;
line-height: 70px;
text-align: center;
margin-bottom: 35px;
background: #ffffff url("../img/content_service_bg.jpg") top center no-repeat;
}
.content-service .content-service-title span {
padding-left: 47px;
position: relative;
display: inline-block;
}
.content-service .content-service-title span:before {
left: 0;
top: 20px;
width: 31px;
height: 32px;
content: " ";
position: absolute;
background: url("../img/sprite.png") -327px -31px no-repeat;
}
.content-service .service-list {
padding: 0;
list-style: none;
position: relative;
margin: 0 0 -20px 0;
}
.content-service .service-list li {
z-index: 20;
font-size: 14px;
line-height: 18px;
position: relative;
text-align: justify;
}
.content-service .service-list li.item1 {
height: 320px;
margin-top: -95px;
padding-top: 90px;
background: url("../img/bmw.png") 50% 0 no-repeat;
}
.content-service .service-list li.item1 .service-text {
padding: 0 20px;
margin: 0 40px 100px 297px;
border-left: 2px solid #f6a636;
}
.content-service .service-list li.item2 {
height: 339px;
padding-top: 55px;
background: url("../img/volkswagen.png") 50% 5px no-repeat;
}
.content-service .service-list li.item2 .service-text {
padding: 0 20px;
margin: 0 355px 100px 40px;
border-right: 2px solid #f6a636;
}
.content-service .service-list li.item3 {
height: 320px;
padding-top: 80px;
margin-top: -50px;
background: url("../img/porshe.png") 50% 0 no-repeat;
}
.content-service .service-list li.item3 .service-text {
padding: 0 20px;
margin: 0 40px 100px 297px;
border-left: 2px solid #f6a636;
}
.portfolio {
height: 248px;
padding-top: 5px;
background: url("../img/work_bg.jpg") top center no-repeat;
}
.portfolio h2 {
color: #2b2a29;
font-size: 30px;
padding-top: 0;
line-height: 45px;
text-align: center;
margin-bottom: 17px;
padding-bottom: 5px;
background: url("../img/title-line.png") bottom center no-repeat;
}
.portfolio .portfolio-slider {
padding: 0;
height: 165px;
margin: 0 22px;
overflow: hidden;
list-style: none;
}
.portfolio .portfolio-slider li {
float: left;
width: 275px;
margin: 0 7px;
}
.portfolio .portfolio-slider li a {
display: block;
cursor: pointer;
}
.portfolio .portfolio-nav {
top: 140px;
width: 16px;
height: 19px;
cursor: pointer;
position: absolute;
background: url("../img/sprite.png") no-repeat;
}
.portfolio .portfolio-nav.prev {
left: 20px;
background-position: -327px -63px;
}
.portfolio .portfolio-nav.next {
right: 20px;
background-position: -349px -63px;
}
.contact {
padding: 0;
list-style: none;
margin: 0 0 50px 0;
}
.contact li {
font-size: 18px;
line-height: 24px;
text-align: center;
margin-bottom: 20px;
}
.contact li #map {
width: 100%;
height: 320px;
margin-bottom: 50px;
border: 1px solid #e9e5dc;
}
.contact li .contact-title {
color: #a87f58;
min-height: 24px;
padding-left: 40px;
position: relative;
display: inline-block;
}
.contact li .contact-title:before {
top: 0;
left: 0;
content: " ";
position: absolute;
background: url("../img/sprite.png") no-repeat;
}
.contact li.address .contact-title:before {
top: 4px;
width: 22px;
height: 22px;
background-position: -380px 0;
}
.contact li.phone .contact-title:before {
top: 4px;
width: 22px;
height: 22px;
background-position: -380px -60px;
}
.contact li.email .contact-title:before {
width: 23px;
height: 24px;
background-position: -380px -31px;
}
.contact li.worktime .contact-title:before {
top: 5px;
width: 23px;
height: 23px;
background-position: -380px -87px;
}
.cat-tabs {
margin-top: 30px;
min-height: 520px;
background: url("../img/cat_tabs_bg.jpg") 50% 40px no-repeat;
}
.cat-tabs > ul {
margin: 0;
padding: 0;
height: 330px;
list-style: none;
position: relative;
}
.cat-tabs > ul li {
position: absolute;
}
.cat-tabs > ul li a {
width: 100%;
height: 100%;
outline: none;
color: #908e8e;
display: block;
cursor: pointer;
font-size: 22px;
line-height: 30px;
text-decoration: none;
background: url("../img/sprite.png") no-repeat;
}
.cat-tabs > ul li a:hover {
color: #ffa854;
text-decoration: none;
}
.cat-tabs > ul li a span {
position: relative;
display: inline-block;
}
.cat-tabs > ul li.item1 {
top: 52px;
left: 159px;
width: 320px;
height: 58px;
}
.cat-tabs > ul li.item1 a {
padding: 20px 0 0 10px;
background-position: 0 -432px;
}
.cat-tabs > ul li.item1 a:hover {
background-position: 0 -501px;
}
.cat-tabs > ul li.item2 {
top: 0px;
left: 625px;
width: 425px;
height: 70px;
}
.cat-tabs > ul li.item2 a {
padding: 0 0 0 160px;
background-position: 0 -841px;
}
.cat-tabs > ul li.item2 a:hover {
background-position: 0 -912px;
}
.cat-tabs > ul li.item3 {
top: 185px;
left: 65px;
width: 425px;
height: 70px;
}
.cat-tabs > ul li.item3 a {
padding: 20px 0 0 10px;
background-position: 0 -710px;
}
.cat-tabs > ul li.item3 a:hover {
background-position: 0 -781px;
}
.cat-tabs > ul li.item4 {
top: 95px;
left: 730px;
width: 370px;
height: 70px;
}
.cat-tabs > ul li.item4 a {
padding: 20px 10px 0 160px;
background-position: 0 -990px;
}
.cat-tabs > ul li.item4 a span {
top: -10px;
}
.cat-tabs > ul li.item4 a:hover {
background-position: 0 -1060px;
}
.cat-tabs > ul li.item5 {
top: 170px;
left: 825px;
width: 350px;
height: 60px;
}
.cat-tabs > ul li.item5 a {
padding: 20px 10px 0 70px;
background-position: 0 -570px;
}
.cat-tabs > ul li.item5 a:hover {
background-position: 0 -640px;
}
.cat-tabs .cat-item {
margin-bottom: 30px;
}
.cat-tabs .cat-item p {
padding-left: 20px;
margin-bottom: 40px;
border-left: 2px solid #f6a636;
}
.result {
padding: 0;
width: 1038px;
margin: 0 auto;
list-style: none;
}
.result li {
float: left;
width: 304px;
margin: 0 21px;
}
.result li figure {
margin: 0;
padding: 0;
}
.result li .result-image {
width: 100%;
height: 389px;
overflow: hidden;
position: relative;
margin-bottom: 16px;
}
.result li .result-after {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
transform: translateZ(0);
backface-visibility: hidden;
}
.result li .is-visible .result-after {
width: 50%;
/* bounce in animation of the modified image */
animation: cd-bounce-in 0.7s;
}
.result li .result-title {
color: #4f4f4f;
font-size: 16px;
line-height: 23px;
text-align: center;
position: relative;
}
.result li .result-title:before {
top: 0;
left: 50%;
height: 1px;
width: 78px;
content: " ";
margin-left: -39px;
position: absolute;
background: #ee9a1a;
}
/* Button % Form
============================ */
.btn {
border: none;
outline: none;
cursor: pointer;
font-weight: 600;
line-height: 20px;
text-align: center;
position: relative;
display: inline-block;
text-decoration: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.btn:hover {
text-decoration: none;
}
.btn:active {
top: 1px;
position: relative;
}
.btn.btn-gray {
color: #fff;
font-size: 20px;
padding: 10px 50px;
background: #31343e;
text-transform: uppercase;
}
.btn.btn-gray:hover {
background: #686a71;
}
.btn.btn-orange {
color: #fff;
font-size: 18px;
padding: 8px 60px 8px 18px;
background: #ee9a1a;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
text-align: left;
}
.btn.btn-orange:before {
top: 16px;
z-index: 10;
right: 18px;
width: 22px;
height: 8px;
content: " ";
position: absolute;
background: url("../img/sprite.png") -349px 0;
}
.btn.btn-orange:hover {
background: #f18016;
}
.btn.btn-result {
color: #fff;
font-size: 23px;
padding: 6px 13px;
line-height: 30px;
cursor: default;
background: #ee9a1a;
margin-bottom: 20px;
text-transform: uppercase;
}
/* Typography
========================= */
h1,
h2,
h3,
h4 {
margin: 0;
padding: 0;
font-weight: 400;
}
h1,
h2 {
font-size: 30px;
line-height: 30px;
font-weight: 300;
margin-bottom: 30px;
}
h1 {
padding-bottom: 25px;
}
h2 {
padding-top: 20px;
}
p {
padding: 0;
margin: 0 0 20px 0;
}
a {
color: #c87401;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
.text-right {
text-align: center;
}
.text-yellow {
color: #ffd800;
}
.text-orange {
color: #ca7909;
}
.fs24 {
font-size: 24px;
} | frontend/web/css/main.css | @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
@import url(../fonts/calibri/calibri.css);
/* Helper classes
========================= */
.ir {
background-color: transparent;
border: 0;
overflow: hidden;
/* IE 6/7 fallback */
*text-indent: -9999px;
}
.ir:before {
content: "";
display: block;
width: 0;
height: 150%;
}
.hidden {
display: none !important;
visibility: hidden;
}
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
.invisible {
visibility: hidden;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
content: " ";
/* 1 */
display: table;
/* 2 */
}
.clearfix:after,
.container:after {
clear: both;
}
.clearfix,
.container {
*zoom: 1;
}
.img-responsive {
display: block;
width: 100% \9;
max-width: 100%;
height: auto;
}
.text-center {
text-align: center !important;
}
.text-right {
text-align: right !important;
}
/* Base styles
========================= */
* {
webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html,
button,
input,
select,
textarea {
color: #444;
}
html {
font-size: 14px;
min-height: 100%;
background: #fff;
position: relative;
line-height: 1.64285;
font-family: 'Open Sans', sans-serif;
}
body {
margin-bottom: 130px;
}
.container {
width: 1240px;
margin-left: auto;
margin-right: auto;
position: relative;
padding-left: 20px;
padding-right: 20px;
}
/* Header
============================ */
.header {
height: 390px;
background: url("../img/header_bg.jpg") top center no-repeat;
}
.header .header-top {
width: 100%;
height: 63px;
position: relative;
text-align: center;
}
.header .header-top .header-logo {
top: 8px;
left: 33px;
width: 164px;
height: 41px;
cursor: pointer;
position: absolute;
background: url("../img/logo.png") 0 0 no-repeat;
}
.header .header-top .header-address {
right: 0;
top: 8px;
color: #444;
width: 230px;
cursor: pointer;
font-size: 14px;
line-height: 15px;
text-align: right;
position: absolute;
padding-right: 40px;
text-decoration: none;
}
.header .header-top .header-address:before {
right: 0;
top: 10px;
width: 22px;
height: 31px;
content: " ";
position: absolute;
background: url("../img/sprite.png") -327px 0 no-repeat;
}
.header .header-top .header-address:hover {
text-decoration: underline;
}
.header .header-top .header-phone {
color: #444444;
font-size: 32px;
line-height: 33px;
padding: 15px 14px;
display: inline-block;
font-family: 'Calibri';
}
.header .header-top .header-phone .code {
color: #a86b00;
font-size: 27px;
}
.header .header-nav {
float: left;
width: 232px;
height: 327px;
background: rgba(255, 255, 255, 0.43);
}
.header .header-nav ul {
margin-bottom: 28px;
}
.header .header-nav li {
height: 45px;
background: url("../img/header_nav_bg.png") 0 -1px no-repeat;
}
.header .header-nav li a {
color: #444;
width: 100%;
height: 45px;
outline: none;
font-size: 19px;
line-height: 20px;
padding: 12px 16px;
display: inline-block;
text-decoration: none;
}
.header .header-nav li:hover {
text-decoration: none;
}
.header .header-nav li:hover {
background-position: 0 -47px;
}
.header .header-nav .leave-request {
color: #fff;
width: 100%;
border: none;
height: 32px;
outline: none;
display: block;
cursor: pointer;
font-size: 15px;
font-weight: 700;
padding: 5px 17px;
line-height: 20px;
position: relative;
background: #c29365;
text-decoration: none;
}
.header .header-nav .leave-request:before {
top: 12px;
z-index: 10;
right: 24px;
width: 22px;
height: 8px;
content: " ";
position: absolute;
background: url("../img/sprite.png") -349px 0;
}
.header .header-nav .leave-request:hover {
background: #ee9a1a;
}
.header .header-nav .leave-request:active {
top: 1px;
}
.header .header-service {
float: left;
width: 960px;
height: 327px;
position: relative;
}
.header .header-service a {
color: #fff;
display: block;
cursor: pointer;
font-size: 28px;
line-height: 36px;
position: absolute;
text-decoration: none;
font-family: 'Calibri';
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
background: url("../img/sprite.png") no-repeat;
}
.header .header-service a:hover {
color: #ba6410;
text-decoration: none;
}
.header .header-service a span {
position: relative;
display: inline-block;
}
.header .header-service a.item1 {
top: 60px;
left: 95px;
width: 327px;
height: 93px;
position: absolute;
background-position: 0 0;
}
.header .header-service a.item1:hover {
background-position: 0 -100px;
}
.header .header-service a.item1 span {
top: -8px;
}
.header .header-service a.item2 {
top: 20px;
right: 30px;
width: 205px;
height: 62px;
position: absolute;
padding-left: 35px;
background-position: 0 -300px;
}
.header .header-service a.item2:hover {
background-position: 0 -365px;
}
.header .header-service a.item2 span {
top: -8px;
}
.header .header-service a.item3 {
top: 185px;
left: 495px;
width: 208px;
height: 42px;
position: absolute;
background-position: 0 -200px;
}
.header .header-service a.item3:hover {
background-position: 0 -250px;
}
/* TopNav
============================ */
.topnav {
height: 50px;
margin-bottom: 30px;
background: #f9bd6c;
}
.topnav ul {
height: 50px;
font-size: 0;
text-align: center;
}
.topnav li {
font-size: 0;
height: 50px;
display: inline-block;
border-left: 1px solid #d3a05c;
border-right: 1px solid #e3b16d;
}
.topnav li:first-child {
border-left: 1px solid transparent;
}
.topnav li:last-child {
border-right: 1px solid transparent;
}
.topnav a {
height: 50px;
color: #383434;
font-size: 18px;
line-height: 30px;
padding: 10px 15px;
position: relative;
display: inline-block;
text-decoration: none;
}
.topnav a:hover {
text-decoration: none;
background-color: #dea860;
}
.topnav a:hover:before {
left: 15px;
right: 15px;
height: 1px;
z-index: 20;
bottom: 10px;
content: " ";
position: absolute;
background: #ad8b5c;
}
/* Form Request
============================ */
.form-request-block {
height: 440px;
padding-top: 80px;
background: url("../img/form_request_bg.jpg") top center no-repeat;
}
.form-request-block .form-request {
width: 830px;
margin: 0 auto;
text-align: center;
padding: 20px 142px 0 142px;
background: url("../img/form_request.png") top center no-repeat;
}
.form-request-block .form-request.form-request-start {
height: 269px;
}
.form-request-block .form-request.form-request-success {
height: 170px;
display: none;
margin-top: 55px;
background-position: 50% -55px;
}
.form-request-block .form-request.form-request-success p {
margin-bottom: 20px;
}
.form-request-block .form-request .form-request-title {
color: #000;
font-size: 31px;
line-height: 31px;
font-weight: 600;
margin-bottom: 10px;
text-transform: uppercase;
}
.form-request-block .form-request p {
color: #31343e;
font-weight: 600;
margin-bottom: 10px;
}
.form-request-block .form-request .form-group {
margin-bottom: 18px;
}
.form-request-block .form-request .form-control {
width: 100%;
border: 1px solid #fff;
outline: none;
color: #909297;
font-size: 19px;
background: #fff;
font-weight: 700;
line-height: 30px;
padding: 4px 20px;
text-align: center;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
display: inline-block;
vertical-align: middle;
}
.form-request-block .form-request .form-control::-moz-placeholder {
color: #909297;
opacity: 1;
}
.form-request-block .form-request .form-control:-ms-input-placeholder {
color: #909297;
}
.form-request-block .form-request .form-control::-webkit-input-placeholder {
color: #909297;
}
.form-request-block .form-request .has-error .form-control {
background-color: #ffe4e4;
}
.form-request-block .form-request .form-error {
display: none;
}
/* Action block
============================ */
.action {
margin-top: -20px;
margin-bottom: 8px;
}
.action .action-title {
color: #2e2e2e;
font-size: 46px;
line-height: 80px;
position: relative;
margin-bottom: 20px;
padding-bottom: 10px;
}
.action .action-title:before {
left: 0;
bottom: 2px;
height: 2px;
width: 147px;
content: " ";
position: absolute;
background: #f6a636;
}
.action .action-slider {
width: 100%;
height: 183px;
overflow: hidden;
margin-bottom: 22px;
}
.action .action-slider .action-item {
width: 100%;
height: 183px;
position: relative;
}
.action .action-slider .action-content {
top: 0;
left: 0;
color: #fff;
width: 100%;
height: 100%;
font-size: 22px;
font-weight: 700;
line-height: 36px;
position: absolute;
padding: 30px 40px 0 600px;
}
.action .action-slider .action-content .slide-title {
font-size: 28px;
line-height: 30px;
margin-bottom: 20px;
text-transform: uppercase;
}
.action .action-slider .slick-dots {
left: 0;
right: 0;
margin: 0;
padding: 0;
bottom: 10px;
list-style: none;
position: absolute;
text-align: center;
}
.action .action-slider .slick-dots li {
width: 13px;
height: 13px;
font-size: 0;
margin: 0 6px;
display: inline-block;
}
.action .action-slider .slick-dots li button {
width: 13px;
height: 13px;
font-size: 0;
border: none;
outline: none;
overflow: hidden;
display: inline-block;
background: url("../img/sprite.png") -349px -8px no-repeat;
}
.action .action-slider .slick-dots li.slick-active button {
background-position: -362px -8px;
}
.action p {
font-size: 18px;
font-weight: 300;
line-height: 22px;
}
/* Footer
============================ */
.footer {
left: 0;
bottom: 0;
width: 100%;
height: 168px;
position: absolute;
background: url("../img/footer_bg.png") bottom center no-repeat;
}
.footer .footer-top {
height: 78px;
color: #2a2828;
font-size: 14px;
font-weight: 600;
line-height: 20px;
padding-top: 50px;
text-align: center;
}
.footer .footer-top .ogr-name {
margin-right: 120px;
}
.footer .footer-nav {
height: 30px;
padding: 5px 0;
line-height: 20px;
text-align: center;
}
.footer .footer-nav li {
margin: 0 8px;
display: inline;
}
.footer .footer-nav a {
color: #2a2828;
font-size: 14px;
font-weight: 600;
text-decoration: none;
}
.footer .footer-nav a:hover {
text-decoration: underline;
}
.footer .footer-social {
text-align: center;
}
.footer .footer-social .social-title {
color: #1a1a1a;
font-size: 11px;
line-height: 28px;
}
.footer .footer-social ul {
margin: 0;
padding: 0;
font-size: 0;
list-style: none;
text-align: center;
}
.footer .footer-social li {
width: 20px;
height: 20px;
font-size: 0;
margin: 0 6px;
display: inline-block;
}
.footer .footer-social a {
width: 100%;
height: 100%;
font-size: 0;
cursor: pointer;
display: inline-block;
background: url("../img/icon-social.png") 0 0 no-repeat;
}
.footer .footer-social a.vk {
background-position: 0 0;
}
.footer .footer-social a.ok {
background-position: -31px 0;
}
.footer .footer-social a.yandex {
background-position: -62px 0;
}
.footer .footer-social a.mailru {
background-position: -93px 0;
}
.footer .footer-social a.fb {
background-position: -124px 0;
}
.footer .footer-social a.tw {
background-position: -156px 0;
}
.footer .footer-social a.soc01 {
background-position: -187px 0;
}
.footer .footer-social a.li {
background-position: -218px 0;
}
/* Content
============================ */
.main {
margin-bottom: 30px;
}
.content-service .content-service-title {
height: 103px;
color: #2b2a29;
font-size: 30px;
padding-top: 0;
line-height: 70px;
text-align: center;
margin-bottom: 35px;
background: #ffffff url("../img/content_service_bg.jpg") top center no-repeat;
}
.content-service .content-service-title span {
padding-left: 47px;
position: relative;
display: inline-block;
}
.content-service .content-service-title span:before {
left: 0;
top: 20px;
width: 31px;
height: 32px;
content: " ";
position: absolute;
background: url("../img/sprite.png") -327px -31px no-repeat;
}
.content-service .service-list {
padding: 0;
list-style: none;
position: relative;
margin: 0 0 -20px 0;
}
.content-service .service-list li {
z-index: 20;
font-size: 14px;
line-height: 18px;
position: relative;
text-align: justify;
}
.content-service .service-list li.item1 {
height: 320px;
margin-top: -95px;
padding-top: 90px;
background: url("../img/bmw.png") 50% 0 no-repeat;
}
.content-service .service-list li.item1 .service-text {
padding: 0 20px;
margin: 0 40px 100px 297px;
border-left: 2px solid #f6a636;
}
.content-service .service-list li.item2 {
height: 339px;
padding-top: 55px;
background: url("../img/volkswagen.png") 50% 5px no-repeat;
}
.content-service .service-list li.item2 .service-text {
padding: 0 20px;
margin: 0 355px 100px 40px;
border-right: 2px solid #f6a636;
}
.content-service .service-list li.item3 {
height: 320px;
padding-top: 80px;
margin-top: -50px;
background: url("../img/porshe.png") 50% 0 no-repeat;
}
.content-service .service-list li.item3 .service-text {
padding: 0 20px;
margin: 0 40px 100px 297px;
border-left: 2px solid #f6a636;
}
.portfolio {
height: 248px;
padding-top: 5px;
background: url("../img/work_bg.jpg") top center no-repeat;
}
.portfolio h2 {
color: #2b2a29;
font-size: 30px;
padding-top: 0;
line-height: 45px;
text-align: center;
margin-bottom: 17px;
padding-bottom: 5px;
background: url("../img/title-line.png") bottom center no-repeat;
}
.portfolio .portfolio-slider {
padding: 0;
height: 165px;
margin: 0 22px;
overflow: hidden;
list-style: none;
}
.portfolio .portfolio-slider li {
float: left;
width: 275px;
margin: 0 7px;
}
.portfolio .portfolio-slider li a {
display: block;
cursor: pointer;
}
.portfolio .portfolio-nav {
top: 140px;
width: 16px;
height: 19px;
cursor: pointer;
position: absolute;
background: url("../img/sprite.png") no-repeat;
}
.portfolio .portfolio-nav.prev {
left: 20px;
background-position: -327px -63px;
}
.portfolio .portfolio-nav.next {
right: 20px;
background-position: -349px -63px;
}
.contact {
padding: 0;
list-style: none;
margin: 0 0 50px 0;
}
.contact li {
font-size: 18px;
line-height: 24px;
text-align: center;
margin-bottom: 20px;
}
.contact li #map {
width: 100%;
height: 320px;
margin-bottom: 50px;
border: 1px solid #e9e5dc;
}
.contact li .contact-title {
color: #a87f58;
min-height: 24px;
padding-left: 40px;
position: relative;
display: inline-block;
}
.contact li .contact-title:before {
top: 0;
left: 0;
content: " ";
position: absolute;
background: url("../img/sprite.png") no-repeat;
}
.contact li.address .contact-title:before {
top: 4px;
width: 22px;
height: 22px;
background-position: -380px 0;
}
.contact li.phone .contact-title:before {
top: 4px;
width: 22px;
height: 22px;
background-position: -380px -60px;
}
.contact li.email .contact-title:before {
width: 23px;
height: 24px;
background-position: -380px -31px;
}
.contact li.worktime .contact-title:before {
top: 5px;
width: 23px;
height: 23px;
background-position: -380px -87px;
}
.cat-tabs {
margin-top: 30px;
min-height: 520px;
background: url("../img/cat_tabs_bg.jpg") 50% 40px no-repeat;
}
.cat-tabs > ul {
margin: 0;
padding: 0;
height: 330px;
list-style: none;
position: relative;
}
.cat-tabs > ul li {
position: absolute;
}
.cat-tabs > ul li a {
width: 100%;
height: 100%;
outline: none;
color: #908e8e;
display: block;
cursor: pointer;
font-size: 22px;
line-height: 30px;
text-decoration: none;
background: url("../img/sprite.png") no-repeat;
}
.cat-tabs > ul li a:hover {
color: #ffa854;
text-decoration: none;
}
.cat-tabs > ul li a span {
position: relative;
display: inline-block;
}
.cat-tabs > ul li.item1 {
top: 52px;
left: 159px;
width: 320px;
height: 58px;
}
.cat-tabs > ul li.item1 a {
padding: 20px 0 0 10px;
background-position: 0 -432px;
}
.cat-tabs > ul li.item1 a:hover {
background-position: 0 -501px;
}
.cat-tabs > ul li.item2 {
top: 0px;
left: 625px;
width: 425px;
height: 70px;
}
.cat-tabs > ul li.item2 a {
padding: 0 0 0 160px;
background-position: 0 -841px;
}
.cat-tabs > ul li.item2 a:hover {
background-position: 0 -912px;
}
.cat-tabs > ul li.item3 {
top: 185px;
left: 65px;
width: 425px;
height: 70px;
}
.cat-tabs > ul li.item3 a {
padding: 20px 0 0 10px;
background-position: 0 -710px;
}
.cat-tabs > ul li.item3 a:hover {
background-position: 0 -781px;
}
.cat-tabs > ul li.item4 {
top: 95px;
left: 730px;
width: 370px;
height: 70px;
}
.cat-tabs > ul li.item4 a {
padding: 20px 10px 0 160px;
background-position: 0 -990px;
}
.cat-tabs > ul li.item4 a span {
top: -10px;
}
.cat-tabs > ul li.item4 a:hover {
background-position: 0 -1060px;
}
.cat-tabs > ul li.item5 {
top: 170px;
left: 825px;
width: 350px;
height: 60px;
}
.cat-tabs > ul li.item5 a {
padding: 20px 10px 0 70px;
background-position: 0 -570px;
}
.cat-tabs > ul li.item5 a:hover {
background-position: 0 -640px;
}
.cat-tabs .cat-item {
margin-bottom: 30px;
}
.cat-tabs .cat-item p {
padding-left: 20px;
margin-bottom: 40px;
border-left: 2px solid #f6a636;
}
.result {
padding: 0;
width: 1038px;
margin: 0 auto;
list-style: none;
}
.result li {
float: left;
width: 304px;
margin: 0 21px;
}
.result li figure {
margin: 0;
padding: 0;
}
.result li .result-image {
width: 100%;
height: 389px;
overflow: hidden;
position: relative;
margin-bottom: 16px;
}
.result li .result-after {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
transform: translateZ(0);
backface-visibility: hidden;
}
.result li .is-visible .result-after {
width: 50%;
/* bounce in animation of the modified image */
animation: cd-bounce-in 0.7s;
}
.result li .result-title {
color: #4f4f4f;
font-size: 16px;
line-height: 23px;
text-align: center;
position: relative;
}
.result li .result-title:before {
top: 0;
left: 50%;
height: 1px;
width: 78px;
content: " ";
margin-left: -39px;
position: absolute;
background: #ee9a1a;
}
/* Button % Form
============================ */
.btn {
border: none;
outline: none;
cursor: pointer;
font-weight: 600;
line-height: 20px;
text-align: center;
position: relative;
display: inline-block;
text-decoration: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.btn:hover {
text-decoration: none;
}
.btn:active {
top: 1px;
position: relative;
}
.btn.btn-gray {
color: #fff;
font-size: 20px;
padding: 10px 50px;
background: #31343e;
text-transform: uppercase;
}
.btn.btn-gray:hover {
background: #686a71;
}
.btn.btn-orange {
color: #fff;
font-size: 18px;
padding: 8px 60px 8px 18px;
background: #ee9a1a;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
text-align: left;
}
.btn.btn-orange:before {
top: 16px;
z-index: 10;
right: 18px;
width: 22px;
height: 8px;
content: " ";
position: absolute;
background: url("../img/sprite.png") -349px 0;
}
.btn.btn-orange:hover {
background: #f18016;
}
.btn.btn-result {
color: #fff;
font-size: 23px;
padding: 6px 13px;
line-height: 30px;
cursor: default;
background: #ee9a1a;
margin-bottom: 20px;
text-transform: uppercase;
}
/* Typography
========================= */
h1,
h2,
h3,
h4 {
margin: 0;
padding: 0;
font-weight: 400;
}
h1,
h2 {
font-size: 30px;
line-height: 30px;
font-weight: 300;
margin-bottom: 30px;
}
h1 {
padding-bottom: 25px;
}
h2 {
padding-top: 20px;
}
p {
padding: 0;
margin: 0 0 20px 0;
}
a {
color: #c87401;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
.text-right {
text-align: center;
}
.text-yellow {
color: #ffd800;
}
.text-orange {
color: #ca7909;
}
.fs24 {
font-size: 24px;
} | 0.36139 | 0.062103 |
@media (max-width: 1925px) {
}
@media (max-width: 1605px) {
.reason-desc-inner ul.nav-tabs li a.nav-link {
padding-top: 1.7rem;
padding-bottom: 1.7rem;
}
.reason-desc-inner ul.nav-tabs li a.nav-link i {
font-size: 3rem;
line-height: 7.2125rem;
}
.reason-desc-inner > ul + a {margin-top: 1.8rem;}
}
@media (max-width: 1445px) {
.reason-desc {padding-left: 5rem;}
.reason-desc-inner ul.nav-tabs {
width: calc(100% + 5rem);
margin-left: -5rem;
}
.reason-desc-inner ul.nav-tabs li a.nav-link {padding-left: 5.1rem;}
.reason-desc-inner ul.nav-tabs li a.nav-link i {
width: 5.6rem;
font-size: 2.5rem;
}
.reason-desc-inner ul.nav-tabs li a.nav-link.active {padding-left: 7rem;}
.reason-desc-inner ul.nav-tabs li {font-size: 1.5rem;}
.reason-desc-inner {max-width: 32rem;}
.shp2.right {right: 3rem;}
.shp1.right {right: 8rem;}
.sponsor-caro > button.slick-prev {left: -5rem;}
.sponsor-caro > button.slick-next {right: -5rem;}
}
@media (max-width: 1370px) {
.blog-caro > button.slick-prev {left: -3.5rem;}
.blog-caro > button.slick-next {right: -3.5rem;}
.feat-caro > button.slick-arrow {
padding: 1.3rem 2.2rem;
font-size: .95rem;
opacity: 0;
}
.feat-caro:hover > button.slick-arrow {opacity: 1;}
.feat-caro > button.slick-prev {left: -13rem;}
.feat-caro > button.slick-next {right: -13rem;}
.feat-caro:hover > button.slick-prev {left: 0;}
.feat-caro:hover > button.slick-next {right: 0;}
.reason-desc-inner > a {display: none;}
.testi-box-inr {padding: 2.5rem 1rem 4.0625rem;}
}
@media (max-width: 1290px){
}
@media (max-width: 1210px) {
.fact-box {padding: 3rem 1rem;}
}
@media (max-width: 1030px) {
.container {padding: 0 0.9375rem;}
.container-fluid .container {padding: 0;}
header.style1.sticky,
header.style2.sticky,
header.style3.sticky {padding: 1.25rem 0;}
header.style2 .topbar {display: none !important;}
.feat-cap > h3 {
font-size: 3.5rem;
line-height: 4rem;
}
.feat-cap ul.countdown li {
font-size: 2.5rem;
padding: 1.4rem 2rem;
}
.feat-cap ul.countdown {min-width: 38rem;}
.about-info > i {font-size: 2.5rem;}
.about-info > i + .about-info-inner {width: calc(100% - 2.5rem);}
.about-info-inner > p {font-size: 1.13rem;}
.event-style1 {padding: 2rem 2.5rem 2.125rem 3rem;}
.event-wrap .tab-content {
width: calc(100% - 2.5rem);
margin-left: 2.5rem;
}
.event-wrap .nav-tabs {width: calc(100% + 5rem);}
.reason-wrap > div.row > div {
flex: 0 0 100%;
max-width: 100%;
}
.reason-desc {padding: 5rem;}
.reason-desc-inner {max-width: 35rem;}
.reason-desc-inner ul.nav-tabs,
.reason-desc-inner ul.nav-tabs li a.nav-link.active {
width: 100%;
margin-left: 0;
}
.package-body {padding: 2.5rem 1.5rem 5px;}
.blue-layer .package-box::before {left: 0;}
.package-box::before {
bottom: -4.5rem;
height: 4.75rem;
}
.speackers-desc .sec-title + p {margin-top: 3rem;}
.speaker-inner {padding-left: 0;}
.event-grid-info {padding: 1.875rem 1.8rem 1.5625rem 1.8rem;}
.event-grid-meta > li {font-size: .95rem;}
.event-grid-info > ul + span::before {
right: -1.8rem;
left: 0;
}
.event-grid-info > h3 {font-size: 1.55rem;}
.discount-inner {max-width: 55%;}
.footer-inner {max-width: 65%;}
.testi-wrap {padding: 0;}
.social-links3 > a {
font-size: 1rem;
padding: 1.2rem 2rem;
width: calc(20.08% - .75rem);
}
.social-links3.position-absolute {
left: .9375rem;
right: .9375rem;
}
.package-box2 {padding: 2.5rem 2.5rem 0;}
.thm-btn.lft-icon.brd-btn {padding: 1.0625rem 2.5rem;}
.package-body2::before {
right: 8px;
bottom: 10px;
-webkit-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
transform: rotate(-3deg);
}
.about-desc2 {
padding-left: .9375rem;
padding-right: .9375rem;
}
.facts-wrap .row.mrg.align-items-center > div {
flex: 0 0 100%;
max-width: 100%;
}
.facts-inner .fact-box {border-bottom: 1px dashed #c7c7c7;}
.facts-btn {margin: 1.25rem 0;}
.feat-cap-wrap {
position: static !important;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
padding: 4rem .9375rem;
}
.feat-cap2 {max-width: 90%;}
.feat-caro2 > button.slick-arrow {
width: 50%;
border-top: 2px solid #666;
}
.feat-caro2 > button.slick-prev {
right: 50%;
border-left: 0;
}
.shp3 {
left: auto;
right: -9rem;
}
.about-me-info > h2 {
font-size: 3rem;
line-height: 3rem;
}
.about-me-img:before {
right: -13px;
width: 30rem;
height: 30rem;
}
.countdown-wrap > ul li {padding: 0 2.3rem;}
.about-desc3 {padding-left: 0;}
.about-img.style2 {width: 100%;}
.how-work-box {padding: 3.5rem 2.5rem;}
.gallery-item > a {
height: 6rem;
line-height: 6rem;
width: 5rem;
font-size: 2.2rem;
}
.contact-form-wrap {
padding: 4rem .9375rem;
max-width: 100%;
}
.event-grid-box2.list-view .event-grid-img2 + .event-grid-info2 {padding-left: 2rem;}
.event-grid-info2 > p {max-width: 100%;}
.event-grid-box2.list-view {align-items: initial !important;}
.event-grid-info2 > p {font-size: 1rem;}
.post-style2.list-view .post-img2 + .post-info2 {padding: 0 0 0 2rem;}
.post-style2.list-view .post-info2 > h3 {
font-size: 1.9rem;
line-height: 2.3rem;
}
.product-box.list-view .product-img + .product-info {padding: 0 0 0 2rem;}
.cart-btns {padding: 2rem 2.5rem;}
.cart-btns > ul li span {margin-left: 1.3rem;}
.cart-btns > ul li:not(:first-child) {
padding-left: 1.8rem;
margin-left: 1.8rem;
}
.product-detail-wrap div.col-lg-10 {
flex: 0 0 90%;
max-width: 90%;
}
header.style1 .header-left,
header.style2 .header-left {margin-top: 1.6rem;}
header.style1 nav > div > ul > li,
header.style2 nav > div > ul > li {line-height: 3rem;}
header.style1 .header-right-btns {margin-top: 2.3rem;}
header.style2 .header-right-btns {margin-top: 1.9rem;}
header.style3,
header.style1 {padding-top: .9375rem;}
}
@media (min-width: 995px) and (max-width: 1080px) {
.lrg-btn,
.thm-btn.lft-icon.brd-btn.lrg-btn,
.thm-btn.brd-btn.lrg-btn {
padding-left: 2.2rem;
padding-right: 2.2rem;
font-size: 1rem;
}
.md-btn,
.thm-btn.lft-icon.brd-btn.md-btn,
.thm-btn.brd-btn.md-btn {
padding-left: 2.1rem;
padding-right: 2.1rem;
}
.blog-detail-social-tags {padding: 2.5rem;}
.blog-detail-tags-wrap .tagclouds > a {
padding: .7rem 1.05rem;
font-size: .9375rem;
}
.post-meta2 > span + span {
margin-left: .9rem;
padding-left: .9375rem;
}
.post-meta2 > span + i {margin-left: 1rem;}
.post-meta2 > span {font-size: .9375rem !important;}
}
@media (max-width: 995px) {
}
@media (max-width: 850px) {
.header-left {display: none !important;}
.reason-desc-inner > a {display: inline-block;}
.res-caro div[class^="col"] {
flex: 0 0 100%;
max-width: 100%;
}
.res-row {overflow-x: auto;}
.res-row > .row {flex-wrap: nowrap;}
.package-box::before {
height: 6rem;
bottom: -6rem;
}
.blue-layer .package-box::before {left: -0.625rem;}
.event-wrap .nav-tabs li a {padding-left: 2.5rem;}
.speaker-inner,
.about-desc3 {margin-top: 4rem;}
.reason-desc {padding: 5rem 7rem 5rem .9375rem;}
.feat-item-wrap {text-align: center;}
.feat-item {padding-top: 11rem;}
.feat-item-wrap span.d-block.text-right {
text-align: inherit !important;
margin-bottom: 1.25rem;
}
.feat-item-wrap span a.play-btn svg {
height: 8rem;
width: 8rem;
}
.sec-title-inner > span {font-size: 1.125rem;}
.sec-title-inner > h2,
.how-works > h2 {
font-size: 3.2rem;
line-height: 3.2rem;
}
.about-info-inner > p {font-size: 1.25rem;}
.event-style1 {padding: 2rem;}
.event-meta + .event-info {padding-left: 3.3rem;}
.event-info::before {left: 2rem;}
.sec-title-inner > h3 {
font-size: 2.9rem;
line-height: 2.9rem;
}
.discount-inner {max-width: 75%;}
.footer-inner {max-width: 100%;}
.slick-slide .post-style1 {padding-right: 0;}
.event-wrap .nav-tabs {
width: 100%;
display: flex;
padding-right: 0;
margin-bottom: 1rem;
text-align: center;
}
.event-wrap .nav-tabs li a.nav-link.active {margin-bottom: 0;}
.event-wrap .tab-content {
width: 100%;
margin-left: 0;
}
.event-wrap .nav-tabs li + li {margin-top: 0;}
.event-wrap .nav-tabs li:before,
.event-wrap .nav-tabs li a:before,
.event-wrap .nav-tabs li a:after,
.contact-map-wrap > h2 br {display: none;}
.event-wrap .nav-tabs li a {
width: 100%;
padding: 1.2rem 2rem;
}
.event-wrap .nav-tabs li a span {opacity: 1;}
.feat-cap2 > h3 {
font-size: 3.8rem;
line-height: 4.2rem;
}
.about-desc-inner {max-width: 100%;}
.event-wrap2 {overflow-x: auto;}
.event-style2 {min-width: 150%;}
.package-body2::before {
right: 14px;
bottom: 12px;
-webkit-transform: rotate(3deg);
-ms-transform: rotate(3deg);
-o-transform: rotate(3deg);
transform: rotate(3deg);
}
.testi-nav-caro + .testi-caro {padding-left: 1rem;}
.package-box2 {margin-top: .75rem;}
.newsletter-wrap {text-align: center;}
.newsletter-inner {
padding-left: 0;
margin-top: 3rem;
}
.testi-caro > button.slick-arrow {bottom: -2.5rem;}
.pt-100,
.pt-110,
.pt-120,
.pt-140 {padding-top: 5rem;}
.pb-100,
.pb-110,
.pb-120,
.pb-170 {padding-bottom: 5rem;}
.mt-100 {margin-top: 5rem;}
.mb-100 {margin-bottom: 5rem;}
.view-all.mt-70 {margin-top: 3rem;}
.clrs-wrap {top: -5.5rem;}
.about-wrap2 > div.row {align-items: initial !important;}
.feature-box > a {font-size: 1.25rem;}
.contact-map-wrap > h2 {padding: 0 .9375rem;}
.contact-map {height: 30rem;}
.bottom-bar-inner {
text-align: center;
justify-content: center !important;
}
.bottom-bar-inner .bottom-links {
margin: 1rem 0 0;
flex-wrap: wrap;
justify-content: center;
}
.contact-map-wrap > h2 {
font-size: 2rem;
line-height: 2.6rem;
}
.about-me-img::before {
width: 25rem;
height: 25rem;
right: -10px;
bottom: -12px;
}
.countdown-wrap > ul li span {
font-size: 4rem;
line-height: 4rem;
}
.event-grid-box2.list-view .event-grid-img2 {
flex: 0 0 100%;
max-width: 100%;
}
.event-grid-box2.list-view .event-grid-img2 + .event-grid-info2 {
flex: 0 0 100%;
max-width: 100%;
padding: 2rem 0 0;
}
.event-grid-info2 > p {font-size: 1.125rem;}
.event-detail-content > div {padding-left: 0;}
.event-detail-speaker .speaker-inner {margin-top: 0;}
.event-detail-content > div > h4 {
position: relative;
margin-bottom: 3rem !important;
}
.post-style1 {padding-right: 0;}
.blog-wrap > div.row > div:nth-child(2n) .post-style1 {padding-left: 6.25rem;}
.blog-wrap > div.row > div:nth-child(2n) .post-style1 .post-meta {left: 0;}
.sidebar-wrap,
.your-payment-method {margin-top: 5rem;}
.product-detail-img + .product-detail-info {padding-left: 1.875rem;}
.cart-form {overflow-x: auto;}
.product-cart,
.cart-btns {width: 150% !important;}
.toggle-item {padding-right: 0;}
.col-md-6 .gallery-item2::before {
left: 1.5rem;
top: 1.5rem;
right: 1.5rem;
bottom: 1.5rem;
}
.col-md-6 .gallery-info2 > h4 {font-size: 1.6rem;}
.gallery-info2 > h3 {font-size: 2rem;}
.gallery-info2 > span + a,
.col-md-6 .gallery-info2 > span + a {margin-top: 1.8rem;}
.gallery-info2 > a {
font-size: 2.3rem;
line-height: 2.3rem;
}
.facts-wrap.style2 {padding: 0;}
.contact-map-wrap.style2 .contact-map {
height: 25rem;
max-width: 100%;
margin-bottom: 4rem;
}
.speaker-detail-info {margin-top: 1rem;}
.feat-caro ul.slick-dots {
display: none!important;
position: absolute;
bottom: 7rem;
text-align: center;
left: 0;
right: 0;
z-index: 11;
}
.speackers-desc .sec-title + p {
padding-top: 0;
margin-top: -1rem;
}
.speackers-desc > p:before {display: none;}
.feat-item2 {display: block !important;}
.about-me {margin-top: 3rem;}
.about-me-info {padding-bottom: 0;}
.about-me-info > span.thm-clr {font-size: 1.2rem;}
.about-me-info > span + h2 {margin-top: .25rem;}
.about-me-info > h2 {
font-size: 2.2rem;
line-height: 2.4rem;
}
.about-me-info > h2 + i {margin-top: 1rem;}
.about-me-info > i {font-size: 1.3rem;}
.about-me-info > span + a {margin-top: 2rem;}
.blog-detail-social-tags > div.blog-detail-tags-wrap > span {margin-bottom: .5rem;}
.product-detail-wrap div.col-lg-10 {
flex: 0 0 100%;
max-width: 100%;
}
.product-detail {align-items: initial !important;}
.product-detail-img {
flex: 0 0 45%;
max-width: 45%;
}
.product-detail-img + .product-detail-info {
flex: 0 0 calc(100% - 45%);
max-width: calc(100% - 45%);
}
.quantity .bootstrap-touchspin {max-width: 8.5rem;}
.about-me-img img.shp4 {left: 1rem;}
.about-me-img img.shp3,
.about-me-img img.shp4 {z-index: -1;}
}
@media (max-width: 770px) {
.blue-layer .package-box::before {left: 0;}
.about-me-img::before {
width: 23rem;
height: 23rem;
right: -12px;
bottom: -12px;
}
.blog-detail-desc ul {max-width: 55%;}
.content-wrap > iframe {height: 25rem;}
}
@media (max-width: 576px) {
header .logo img {max-width: 75%;}
.feat-cap > h3 {
font-size: 3rem;
line-height: 3.5rem;
}
.feat-cap ul.countdown {
min-width: initial;
width: 100%;
padding: 0 1.2rem 0 0;
}
.feat-cap ul.countdown li {
font-size: 2.3rem;
padding: 1.2rem 1.8rem;
}
.about-img {padding-left: 0;}
.sec-title-btn {margin-top: 1.2rem;}
.event-wrap .nav-tabs li {
flex: 0 0 calc(50% - 2px);
max-width: calc(50% - 2px);
margin: 1px;
}
.event-style1 {
text-align: center;
justify-content: center;
}
.event-meta {text-align: inherit !important;}
.event-meta + .event-info {
flex: 0 0 100%;
max-width: 100%;
padding: 2.7rem 0 0;
}
.event-info::before {
left: 50%;
height: 6px;
width: 1rem;
margin-left: -.5rem;
top: 1rem;
}
.event-org {
justify-content: center;
flex-wrap: wrap;
}
.reason-desc {padding: 5rem .9375rem;}
.discount-inner {
max-width: 100%;
padding: 2.5rem;
}
.discount-wrap:before {
background-size: cover;
right: -.625rem;
}
.form-input-wrap {max-width: 100%;}
.form-input-wrap .input-field {
flex: 0 0 100%;
max-width: 100%;
margin: -1.5px 0;
}
.newsletter-wrap form .form-button {
width: 100%;
margin-top: 1.5px;
}
.newsletter-wrap form .form-button button {width: 100%;}
.footer-bottom {justify-content: center !important;}
.footer-bottom > p + .social-links {margin-top: 1.5rem;}
.feat-cap2 > h3 {
font-size: 2.8rem;
line-height: 3.5rem;
}
.feat-caro2 > button.slick-arrow {
height: 5rem;
font-size: .9375rem;
}
.sec-title-inner > h2 br {display: none;}
.event-style2 {min-width: 200%;}
.sponsors-wrap > div.row > div:not(:first-child) {
flex: 0 0 50%;
max-width: 50%;
}
.package-body2:before {
right: 16px;
-webkit-transform: rotate(7deg);
-ms-transform: rotate(7deg);
-o-transform: rotate(7deg);
transform: rotate(7deg);
}
.social-links3.position-absolute {
position: static !important;
margin-top: 3rem;
}
.social-links3 > a {
width: calc(50% - 8px);
margin: 2.5px !important;
}
.testi-nav-caro {max-width: 100%;}
.testi-nav-caro + .testi-caro {
width: initial;
padding: 2rem 0 0;
}
.testi-wrap {
text-align: center;
display: block !important;
}
.testi-item > p {
font-size: 1.8rem;
line-height: 2.4rem;
}
.btns-wrap.d-flex > a {
flex: 0 0 100%;
max-width: 100%;
}
.btns-wrap.d-flex {flex-wrap: wrap;}
.blue-layer .btns-wrap > a.brd-btn {border-left: 2px solid #67637e;}
.btns-wrap.d-flex > a + a {margin-top: .5rem;}
.newsletter-inner > form input {
height: 5rem;
padding-right: 9rem;
}
.newsletter-inner > form button {
right: 0;
font-size: 1rem;
padding: 0 1rem;
}
.pt-155 {padding-top: 5rem;}
.about-me {text-align: center;}
.about-me-img {
width: 100%;
margin-left: 0;
}
.about-me-img:before {display: none;}
.about-me-info {padding: 2.5rem 0 0;}
.countdown-wrap > ul li {padding: 0 1.3rem;}
.countdown-wrap > ul li span {
font-size: 2.5rem;
line-height: 2.5rem;
}
.countdown-wrap > ul li p {font-size: 1rem;}
.countdown-wrap > ul li:not(:first-child)::before,
.countdown-wrap > ul li:not(:first-child)::after {
height: .4rem;
width: .4rem;
}
.countdown-wrap > ul {padding: 1.8rem 0;}
.srv-box2 {padding: 0;}
.post-style1,
.blog-wrap > div.row > div:nth-child(2n) .post-style1 {padding-left: 5.2rem;}
.post-style1.big-img .post-info > h3 {
font-size: 1.75rem;
line-height: 2rem;
}
.post-style2.list-view .post-img2,
.product-box.list-view .product-img {
flex: 0 0 100%;
max-width: 100%;
}
.post-style2.list-view .post-img2 + .post-info2,
.product-box.list-view .product-img + .product-info {
flex: 0 0 100%;
max-width: 100%;
padding: 2rem 0 0;
}
.alignleft {
margin-right: 0;
width: 100%;
}
.alignright {
margin-left: 0;
width: 100%;
}
.blog-detail-desc ul {max-width: 100%;}
.detail-video > a svg,
.about-img > a svg {
height: 5rem;
width: 5rem;
}
.blog-detail-social-tags {padding: 2.5rem 1.5rem;}
.comment {
text-align: center;
justify-content: center;
}
.comment-thumb + .comment-info {
padding: 2rem 0 0;
flex: 0 0 100%;
max-width: 100%;
}
.comment-info > a.comment-reply-link {
margin: 0;
-webkit-transform: translate(0);
-ms-transform: translate(0);
-o-transform: translate(0);
transform: translate(0);
display: inline-block;
width: 100%;
}
.comment.comment-reply {padding-left: 0;}
.comment-info > span.product-rate {
position: static;
display: block !important;
}
.page-title-inner {margin: 0;}
.product-cart,
.cart-btns {width: 230% !important;}
.error-inner > h1 {
font-size: 10rem;
line-height: 10rem;
}
.error-inner > h1 span::before {
bottom: 1.7rem;
top: 1.7rem;
}
.error-inner > h1 + h3 {margin-top: 0;}
.error-inner > h3 {font-size: 2.2rem;}
.error-inner > h3 + p {margin-top: 1.8rem;}
.error-inner > p {font-size: 1.125rem;}
.pt-160 {padding-top: 5rem;}
.pb-150 {padding-bottom: 5rem;}
.toggle-item {
padding-left: 2rem;
max-width: calc(100% - 3rem);
margin-left: 3rem;
}
.toggle-item > h4 {font-size: 1.5rem;}
.toggle-item > h4 i {
height: 1.8rem;
width: 1.8rem;
left: -3rem;
}
.gallery-item2::before {
left: 1.5rem;
top: 1.5rem;
right: 1.5rem;
bottom: 1.5rem;
}
.gallery-info2 {min-width: 22rem;}
.gallery-info2 > h3 {font-size: 1.7rem;}
.gallery-info2 > span + a,
.col-md-6 .gallery-info2 > span + a {margin-top: 1rem;}
.gallery-info2 > span {font-size: 1rem;}
.gallery-info2 > a {
font-size: 1.8rem;
line-height: 1.8rem;
}
.facts-wrap.style2 > div.row > div {
flex: 0 0 50%;
max-width: 50%;
}
.facts-wrap.style2 > div.row > div:nth-child(3) .fact-box:before {display: none;}
.fact-box > h3 {
font-size: 3.8rem;
line-height: 3.8rem;
}
.speaker-detail-info {
margin-top: 3rem;
padding-left: 0;
}
.login-popup-inner {
max-width: 93%;
/*padding: 3rem 2.3rem;*/
}
.login-popup-inner > form input {height: 3.7rem;}
.content-wrap > iframe {height: 14.5rem;}
.banner-box.style4,
.banner-box.style6 {padding: 1.875rem;}
.banner-btn {margin-top: 1.5625rem;}
.product-detail-img {
flex: 0 0 100%;
max-width: 100%;
}
.product-detail-img + .product-detail-info {
padding: 3rem 0 0;
flex: 0 0 100%;
max-width: 100%;
}
.quantity + button {margin-left: .625rem;}
/* .res-row {overflow-x: initial;}
.res-row > .row {flex-wrap: wrap;} */
.res-row > .row div[class^="col"] {
flex: 0 0 100%;
max-width: 100%;
}
.srv-wrap2 > .row > div:not(:first-child) .srv-box2:before {display: none;}
}
@media (max-width: 490px) {
.package-box:before {
height: 7.3rem;
bottom: -7.25rem;
}
.speackers-desc .sec-title + p {
padding-top: 3rem;
margin-top: 1rem;
}
.speackers-desc .sec-title + p:before {
top: 0;
height: 1.8rem;
}
.sec-title-inner > h2 {
font-size: 2.8rem;
line-height: 2.8rem;
}
.event-grid-info > h3 {font-size: 1.625rem;}
.newsletter-wrap > h2 {font-size: 2.3rem;}
.newsletter-wrap > h2 br,
.sec-title-inner > h2 br,
.sec-title-inner > h3 br {display: none;}
.sec-title-inner > h3 {
font-size: 2.4rem;
line-height: 2.4rem;
}
.feat-cap ul.countdown li {
font-size: 2rem;
padding: 1.2rem;
}
.feat-cap > h3 {font-size: 2.8rem;}
.thm-btn {
font-size: .85rem;
padding: 1rem 2.3rem;
}
.thm-btn.wid-btn {
padding-left: 3rem;
padding-right: 3rem;
}
.thm-btn.brd-btn {padding: 1rem 2.3rem;}
.package-head > span {font-size: 5.5rem;}
.feat-caro2 > button.slick-arrow {font-size: .75rem;}
.page-title-inner > h1 {
font-size: 3.5rem;
line-height: 3.5rem;
}
.filter-links + .gallery-wrap {margin-top: 2.5rem;}
.filter-links > li {
font-size: 1rem;
padding: 0 1rem;
}
.pagination li.page-item a.page-link,
.pagination li.page-item span.page-link {
height: 2.4rem;
width: 2.5rem;
line-height: 2.4rem;
}
.pagination li.page-item.prev a.page-link,
.pagination li.page-item.next a.page-link {
height: 3.8rem;
line-height: 3.8rem;
width: 4rem;
padding: 0 .85rem;
}
.event-detail-features-list > li {
font-size: 1.5rem;
padding: 1rem 1.5rem 1rem 7rem;
}
.event-detail-features-list > li span {
font-size: .9375rem;
line-height: 1.4rem;
}
.event-detail-features-list > li i {
width: 5.5rem;
font-size: 2.5rem;
height: initial;
bottom: 0;
line-height: 2;
}
blockquote {
font-size: 1.4rem;
line-height: 2.2rem;
}
.blog-detail-social-tags > div > span {margin-bottom: 10px;}
.search-close-btn {
height: 3.5rem;
width: 3.5rem;
line-height: 3.5rem;
font-size: 1.5rem;
}
.banner-info > h3,
.banner-box > h3 {font-size: 1.875rem;}
.page-title-inner > h1 + .breadcrumb {
margin-top: 1.7rem;
padding-top: 1.5rem;
}
.alert {
padding: 1.875rem;
text-align: center;
justify-content: center;
}
.alert > i + .alert-inner-info {
padding: 1rem 0 0;
width: 100%;
}
.alert > button.close {
top: 1rem;
right: 1rem;
}
.about-icon {display: none;}
.feat-cap2 {max-width: 100%;}
.feat-caro2 > button.slick-arrow {bottom: -5rem;}
.btns-wrap > a + a {margin-top: .9375rem;}
.sign-up {text-align: center;}
.track {
padding: 0;
text-align: center;
}
.track > i {
position: static;
margin-bottom: .9375rem;
display: block;
}
.track + .social-links4 {justify-content: center;}
}
@media (max-width: 470px) {
.tabs-wrap .nav-tabs li.nav-item a.nav-link {padding: 13px 20px 25px;}
}
@media (max-width: 430px) {
.feat-cap ul.countdown li {font-size: 1.5rem;}
.feat-cap ul.countdown li:not(:first-child)::before {height: 75%;}
.event-style2 {min-width: 350%;}
.sponsors-wrap > div.row > div:not(:first-child) {
flex: 0 0 100%;
max-width: 100%;
}
.social-links3 > a i {
display: block;
margin: 0 0 5px;
}
.about-icon {
max-width: 11rem;
right: 2rem;
top: 2rem;
}
.about-icon > i {
font-size: 2.5rem;
line-height: 2.5rem;
}
.about-icon > span {font-size: 1.125rem;}
header.style3 {padding-top: 1.7rem;}
header.style3 .header-right-btns > a {
height: 3.125rem;
width: 3.125rem;
line-height: 3.125rem;
}
header.style3 .header-left + .header-right-btns {margin-left: 0;}
.gallery-item2::before {
left: 0.625rem;
top: 0.625rem;
right: 0.625rem;
bottom: 0.625rem;
}
.gallery-info2 > h3 {font-size: 1.5rem;}
.gallery-info2 > span {font-size: .9rem;}
.gallery-info2 > span + a {margin-top: .75rem;}
.gallery-info2 > a {
font-size: 1.5rem;
line-height: 1.5rem;
}
.product-cart,
.cart-btns {width: 250% !important;}
.countdown-wrap > ul li {padding: 0 .9375rem;}
.countdown-wrap > ul li span {
font-size: 1.6rem;
line-height: 1.6rem;
}
.countdown-wrap > ul li p {font-size: .8rem;}
.countdown-wrap > ul li:not(:first-child)::before,
.countdown-wrap > ul li:not(:first-child)::after {
height: .3rem;
width: .3rem;
}
.countdown-wrap > ul li:not(:first-child)::before {margin-top: -4px;}
.countdown-wrap > ul li:not(:first-child)::after {margin-top: 4px;}
.feat-cap > span + ul {margin-top: 0rem;}
.feat-item-wrap span a.play-btn svg {
height: 6rem;
width: 6rem;
}
header.style1,
header.style3 {padding-top: 1rem;}
header.style1 .header-right-btns,
header.style2 .header-right-btns {margin-top: 1.7rem;}
header.style3 .header-right-btns {margin-top: .625rem;}
}
@media (max-width: 380px) {
.product-detail-info .quantity {min-width: 15rem;}
.quantity + button {margin-left: 0;}
.product-cart,
.cart-btns {width: 270% !important;}
.feat-cap ul.countdown li {padding: .85rem;}
}
@media (max-width: 767.99px) {
.feat-wrap {
height: 430px;
}
.hide-mobile {
display: none;
}
.mobile-timer {
align-items: center !important;
}
} | assets/website/webinar/css/responsive.css | @media (max-width: 1925px) {
}
@media (max-width: 1605px) {
.reason-desc-inner ul.nav-tabs li a.nav-link {
padding-top: 1.7rem;
padding-bottom: 1.7rem;
}
.reason-desc-inner ul.nav-tabs li a.nav-link i {
font-size: 3rem;
line-height: 7.2125rem;
}
.reason-desc-inner > ul + a {margin-top: 1.8rem;}
}
@media (max-width: 1445px) {
.reason-desc {padding-left: 5rem;}
.reason-desc-inner ul.nav-tabs {
width: calc(100% + 5rem);
margin-left: -5rem;
}
.reason-desc-inner ul.nav-tabs li a.nav-link {padding-left: 5.1rem;}
.reason-desc-inner ul.nav-tabs li a.nav-link i {
width: 5.6rem;
font-size: 2.5rem;
}
.reason-desc-inner ul.nav-tabs li a.nav-link.active {padding-left: 7rem;}
.reason-desc-inner ul.nav-tabs li {font-size: 1.5rem;}
.reason-desc-inner {max-width: 32rem;}
.shp2.right {right: 3rem;}
.shp1.right {right: 8rem;}
.sponsor-caro > button.slick-prev {left: -5rem;}
.sponsor-caro > button.slick-next {right: -5rem;}
}
@media (max-width: 1370px) {
.blog-caro > button.slick-prev {left: -3.5rem;}
.blog-caro > button.slick-next {right: -3.5rem;}
.feat-caro > button.slick-arrow {
padding: 1.3rem 2.2rem;
font-size: .95rem;
opacity: 0;
}
.feat-caro:hover > button.slick-arrow {opacity: 1;}
.feat-caro > button.slick-prev {left: -13rem;}
.feat-caro > button.slick-next {right: -13rem;}
.feat-caro:hover > button.slick-prev {left: 0;}
.feat-caro:hover > button.slick-next {right: 0;}
.reason-desc-inner > a {display: none;}
.testi-box-inr {padding: 2.5rem 1rem 4.0625rem;}
}
@media (max-width: 1290px){
}
@media (max-width: 1210px) {
.fact-box {padding: 3rem 1rem;}
}
@media (max-width: 1030px) {
.container {padding: 0 0.9375rem;}
.container-fluid .container {padding: 0;}
header.style1.sticky,
header.style2.sticky,
header.style3.sticky {padding: 1.25rem 0;}
header.style2 .topbar {display: none !important;}
.feat-cap > h3 {
font-size: 3.5rem;
line-height: 4rem;
}
.feat-cap ul.countdown li {
font-size: 2.5rem;
padding: 1.4rem 2rem;
}
.feat-cap ul.countdown {min-width: 38rem;}
.about-info > i {font-size: 2.5rem;}
.about-info > i + .about-info-inner {width: calc(100% - 2.5rem);}
.about-info-inner > p {font-size: 1.13rem;}
.event-style1 {padding: 2rem 2.5rem 2.125rem 3rem;}
.event-wrap .tab-content {
width: calc(100% - 2.5rem);
margin-left: 2.5rem;
}
.event-wrap .nav-tabs {width: calc(100% + 5rem);}
.reason-wrap > div.row > div {
flex: 0 0 100%;
max-width: 100%;
}
.reason-desc {padding: 5rem;}
.reason-desc-inner {max-width: 35rem;}
.reason-desc-inner ul.nav-tabs,
.reason-desc-inner ul.nav-tabs li a.nav-link.active {
width: 100%;
margin-left: 0;
}
.package-body {padding: 2.5rem 1.5rem 5px;}
.blue-layer .package-box::before {left: 0;}
.package-box::before {
bottom: -4.5rem;
height: 4.75rem;
}
.speackers-desc .sec-title + p {margin-top: 3rem;}
.speaker-inner {padding-left: 0;}
.event-grid-info {padding: 1.875rem 1.8rem 1.5625rem 1.8rem;}
.event-grid-meta > li {font-size: .95rem;}
.event-grid-info > ul + span::before {
right: -1.8rem;
left: 0;
}
.event-grid-info > h3 {font-size: 1.55rem;}
.discount-inner {max-width: 55%;}
.footer-inner {max-width: 65%;}
.testi-wrap {padding: 0;}
.social-links3 > a {
font-size: 1rem;
padding: 1.2rem 2rem;
width: calc(20.08% - .75rem);
}
.social-links3.position-absolute {
left: .9375rem;
right: .9375rem;
}
.package-box2 {padding: 2.5rem 2.5rem 0;}
.thm-btn.lft-icon.brd-btn {padding: 1.0625rem 2.5rem;}
.package-body2::before {
right: 8px;
bottom: 10px;
-webkit-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
transform: rotate(-3deg);
}
.about-desc2 {
padding-left: .9375rem;
padding-right: .9375rem;
}
.facts-wrap .row.mrg.align-items-center > div {
flex: 0 0 100%;
max-width: 100%;
}
.facts-inner .fact-box {border-bottom: 1px dashed #c7c7c7;}
.facts-btn {margin: 1.25rem 0;}
.feat-cap-wrap {
position: static !important;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
padding: 4rem .9375rem;
}
.feat-cap2 {max-width: 90%;}
.feat-caro2 > button.slick-arrow {
width: 50%;
border-top: 2px solid #666;
}
.feat-caro2 > button.slick-prev {
right: 50%;
border-left: 0;
}
.shp3 {
left: auto;
right: -9rem;
}
.about-me-info > h2 {
font-size: 3rem;
line-height: 3rem;
}
.about-me-img:before {
right: -13px;
width: 30rem;
height: 30rem;
}
.countdown-wrap > ul li {padding: 0 2.3rem;}
.about-desc3 {padding-left: 0;}
.about-img.style2 {width: 100%;}
.how-work-box {padding: 3.5rem 2.5rem;}
.gallery-item > a {
height: 6rem;
line-height: 6rem;
width: 5rem;
font-size: 2.2rem;
}
.contact-form-wrap {
padding: 4rem .9375rem;
max-width: 100%;
}
.event-grid-box2.list-view .event-grid-img2 + .event-grid-info2 {padding-left: 2rem;}
.event-grid-info2 > p {max-width: 100%;}
.event-grid-box2.list-view {align-items: initial !important;}
.event-grid-info2 > p {font-size: 1rem;}
.post-style2.list-view .post-img2 + .post-info2 {padding: 0 0 0 2rem;}
.post-style2.list-view .post-info2 > h3 {
font-size: 1.9rem;
line-height: 2.3rem;
}
.product-box.list-view .product-img + .product-info {padding: 0 0 0 2rem;}
.cart-btns {padding: 2rem 2.5rem;}
.cart-btns > ul li span {margin-left: 1.3rem;}
.cart-btns > ul li:not(:first-child) {
padding-left: 1.8rem;
margin-left: 1.8rem;
}
.product-detail-wrap div.col-lg-10 {
flex: 0 0 90%;
max-width: 90%;
}
header.style1 .header-left,
header.style2 .header-left {margin-top: 1.6rem;}
header.style1 nav > div > ul > li,
header.style2 nav > div > ul > li {line-height: 3rem;}
header.style1 .header-right-btns {margin-top: 2.3rem;}
header.style2 .header-right-btns {margin-top: 1.9rem;}
header.style3,
header.style1 {padding-top: .9375rem;}
}
@media (min-width: 995px) and (max-width: 1080px) {
.lrg-btn,
.thm-btn.lft-icon.brd-btn.lrg-btn,
.thm-btn.brd-btn.lrg-btn {
padding-left: 2.2rem;
padding-right: 2.2rem;
font-size: 1rem;
}
.md-btn,
.thm-btn.lft-icon.brd-btn.md-btn,
.thm-btn.brd-btn.md-btn {
padding-left: 2.1rem;
padding-right: 2.1rem;
}
.blog-detail-social-tags {padding: 2.5rem;}
.blog-detail-tags-wrap .tagclouds > a {
padding: .7rem 1.05rem;
font-size: .9375rem;
}
.post-meta2 > span + span {
margin-left: .9rem;
padding-left: .9375rem;
}
.post-meta2 > span + i {margin-left: 1rem;}
.post-meta2 > span {font-size: .9375rem !important;}
}
@media (max-width: 995px) {
}
@media (max-width: 850px) {
.header-left {display: none !important;}
.reason-desc-inner > a {display: inline-block;}
.res-caro div[class^="col"] {
flex: 0 0 100%;
max-width: 100%;
}
.res-row {overflow-x: auto;}
.res-row > .row {flex-wrap: nowrap;}
.package-box::before {
height: 6rem;
bottom: -6rem;
}
.blue-layer .package-box::before {left: -0.625rem;}
.event-wrap .nav-tabs li a {padding-left: 2.5rem;}
.speaker-inner,
.about-desc3 {margin-top: 4rem;}
.reason-desc {padding: 5rem 7rem 5rem .9375rem;}
.feat-item-wrap {text-align: center;}
.feat-item {padding-top: 11rem;}
.feat-item-wrap span.d-block.text-right {
text-align: inherit !important;
margin-bottom: 1.25rem;
}
.feat-item-wrap span a.play-btn svg {
height: 8rem;
width: 8rem;
}
.sec-title-inner > span {font-size: 1.125rem;}
.sec-title-inner > h2,
.how-works > h2 {
font-size: 3.2rem;
line-height: 3.2rem;
}
.about-info-inner > p {font-size: 1.25rem;}
.event-style1 {padding: 2rem;}
.event-meta + .event-info {padding-left: 3.3rem;}
.event-info::before {left: 2rem;}
.sec-title-inner > h3 {
font-size: 2.9rem;
line-height: 2.9rem;
}
.discount-inner {max-width: 75%;}
.footer-inner {max-width: 100%;}
.slick-slide .post-style1 {padding-right: 0;}
.event-wrap .nav-tabs {
width: 100%;
display: flex;
padding-right: 0;
margin-bottom: 1rem;
text-align: center;
}
.event-wrap .nav-tabs li a.nav-link.active {margin-bottom: 0;}
.event-wrap .tab-content {
width: 100%;
margin-left: 0;
}
.event-wrap .nav-tabs li + li {margin-top: 0;}
.event-wrap .nav-tabs li:before,
.event-wrap .nav-tabs li a:before,
.event-wrap .nav-tabs li a:after,
.contact-map-wrap > h2 br {display: none;}
.event-wrap .nav-tabs li a {
width: 100%;
padding: 1.2rem 2rem;
}
.event-wrap .nav-tabs li a span {opacity: 1;}
.feat-cap2 > h3 {
font-size: 3.8rem;
line-height: 4.2rem;
}
.about-desc-inner {max-width: 100%;}
.event-wrap2 {overflow-x: auto;}
.event-style2 {min-width: 150%;}
.package-body2::before {
right: 14px;
bottom: 12px;
-webkit-transform: rotate(3deg);
-ms-transform: rotate(3deg);
-o-transform: rotate(3deg);
transform: rotate(3deg);
}
.testi-nav-caro + .testi-caro {padding-left: 1rem;}
.package-box2 {margin-top: .75rem;}
.newsletter-wrap {text-align: center;}
.newsletter-inner {
padding-left: 0;
margin-top: 3rem;
}
.testi-caro > button.slick-arrow {bottom: -2.5rem;}
.pt-100,
.pt-110,
.pt-120,
.pt-140 {padding-top: 5rem;}
.pb-100,
.pb-110,
.pb-120,
.pb-170 {padding-bottom: 5rem;}
.mt-100 {margin-top: 5rem;}
.mb-100 {margin-bottom: 5rem;}
.view-all.mt-70 {margin-top: 3rem;}
.clrs-wrap {top: -5.5rem;}
.about-wrap2 > div.row {align-items: initial !important;}
.feature-box > a {font-size: 1.25rem;}
.contact-map-wrap > h2 {padding: 0 .9375rem;}
.contact-map {height: 30rem;}
.bottom-bar-inner {
text-align: center;
justify-content: center !important;
}
.bottom-bar-inner .bottom-links {
margin: 1rem 0 0;
flex-wrap: wrap;
justify-content: center;
}
.contact-map-wrap > h2 {
font-size: 2rem;
line-height: 2.6rem;
}
.about-me-img::before {
width: 25rem;
height: 25rem;
right: -10px;
bottom: -12px;
}
.countdown-wrap > ul li span {
font-size: 4rem;
line-height: 4rem;
}
.event-grid-box2.list-view .event-grid-img2 {
flex: 0 0 100%;
max-width: 100%;
}
.event-grid-box2.list-view .event-grid-img2 + .event-grid-info2 {
flex: 0 0 100%;
max-width: 100%;
padding: 2rem 0 0;
}
.event-grid-info2 > p {font-size: 1.125rem;}
.event-detail-content > div {padding-left: 0;}
.event-detail-speaker .speaker-inner {margin-top: 0;}
.event-detail-content > div > h4 {
position: relative;
margin-bottom: 3rem !important;
}
.post-style1 {padding-right: 0;}
.blog-wrap > div.row > div:nth-child(2n) .post-style1 {padding-left: 6.25rem;}
.blog-wrap > div.row > div:nth-child(2n) .post-style1 .post-meta {left: 0;}
.sidebar-wrap,
.your-payment-method {margin-top: 5rem;}
.product-detail-img + .product-detail-info {padding-left: 1.875rem;}
.cart-form {overflow-x: auto;}
.product-cart,
.cart-btns {width: 150% !important;}
.toggle-item {padding-right: 0;}
.col-md-6 .gallery-item2::before {
left: 1.5rem;
top: 1.5rem;
right: 1.5rem;
bottom: 1.5rem;
}
.col-md-6 .gallery-info2 > h4 {font-size: 1.6rem;}
.gallery-info2 > h3 {font-size: 2rem;}
.gallery-info2 > span + a,
.col-md-6 .gallery-info2 > span + a {margin-top: 1.8rem;}
.gallery-info2 > a {
font-size: 2.3rem;
line-height: 2.3rem;
}
.facts-wrap.style2 {padding: 0;}
.contact-map-wrap.style2 .contact-map {
height: 25rem;
max-width: 100%;
margin-bottom: 4rem;
}
.speaker-detail-info {margin-top: 1rem;}
.feat-caro ul.slick-dots {
display: none!important;
position: absolute;
bottom: 7rem;
text-align: center;
left: 0;
right: 0;
z-index: 11;
}
.speackers-desc .sec-title + p {
padding-top: 0;
margin-top: -1rem;
}
.speackers-desc > p:before {display: none;}
.feat-item2 {display: block !important;}
.about-me {margin-top: 3rem;}
.about-me-info {padding-bottom: 0;}
.about-me-info > span.thm-clr {font-size: 1.2rem;}
.about-me-info > span + h2 {margin-top: .25rem;}
.about-me-info > h2 {
font-size: 2.2rem;
line-height: 2.4rem;
}
.about-me-info > h2 + i {margin-top: 1rem;}
.about-me-info > i {font-size: 1.3rem;}
.about-me-info > span + a {margin-top: 2rem;}
.blog-detail-social-tags > div.blog-detail-tags-wrap > span {margin-bottom: .5rem;}
.product-detail-wrap div.col-lg-10 {
flex: 0 0 100%;
max-width: 100%;
}
.product-detail {align-items: initial !important;}
.product-detail-img {
flex: 0 0 45%;
max-width: 45%;
}
.product-detail-img + .product-detail-info {
flex: 0 0 calc(100% - 45%);
max-width: calc(100% - 45%);
}
.quantity .bootstrap-touchspin {max-width: 8.5rem;}
.about-me-img img.shp4 {left: 1rem;}
.about-me-img img.shp3,
.about-me-img img.shp4 {z-index: -1;}
}
@media (max-width: 770px) {
.blue-layer .package-box::before {left: 0;}
.about-me-img::before {
width: 23rem;
height: 23rem;
right: -12px;
bottom: -12px;
}
.blog-detail-desc ul {max-width: 55%;}
.content-wrap > iframe {height: 25rem;}
}
@media (max-width: 576px) {
header .logo img {max-width: 75%;}
.feat-cap > h3 {
font-size: 3rem;
line-height: 3.5rem;
}
.feat-cap ul.countdown {
min-width: initial;
width: 100%;
padding: 0 1.2rem 0 0;
}
.feat-cap ul.countdown li {
font-size: 2.3rem;
padding: 1.2rem 1.8rem;
}
.about-img {padding-left: 0;}
.sec-title-btn {margin-top: 1.2rem;}
.event-wrap .nav-tabs li {
flex: 0 0 calc(50% - 2px);
max-width: calc(50% - 2px);
margin: 1px;
}
.event-style1 {
text-align: center;
justify-content: center;
}
.event-meta {text-align: inherit !important;}
.event-meta + .event-info {
flex: 0 0 100%;
max-width: 100%;
padding: 2.7rem 0 0;
}
.event-info::before {
left: 50%;
height: 6px;
width: 1rem;
margin-left: -.5rem;
top: 1rem;
}
.event-org {
justify-content: center;
flex-wrap: wrap;
}
.reason-desc {padding: 5rem .9375rem;}
.discount-inner {
max-width: 100%;
padding: 2.5rem;
}
.discount-wrap:before {
background-size: cover;
right: -.625rem;
}
.form-input-wrap {max-width: 100%;}
.form-input-wrap .input-field {
flex: 0 0 100%;
max-width: 100%;
margin: -1.5px 0;
}
.newsletter-wrap form .form-button {
width: 100%;
margin-top: 1.5px;
}
.newsletter-wrap form .form-button button {width: 100%;}
.footer-bottom {justify-content: center !important;}
.footer-bottom > p + .social-links {margin-top: 1.5rem;}
.feat-cap2 > h3 {
font-size: 2.8rem;
line-height: 3.5rem;
}
.feat-caro2 > button.slick-arrow {
height: 5rem;
font-size: .9375rem;
}
.sec-title-inner > h2 br {display: none;}
.event-style2 {min-width: 200%;}
.sponsors-wrap > div.row > div:not(:first-child) {
flex: 0 0 50%;
max-width: 50%;
}
.package-body2:before {
right: 16px;
-webkit-transform: rotate(7deg);
-ms-transform: rotate(7deg);
-o-transform: rotate(7deg);
transform: rotate(7deg);
}
.social-links3.position-absolute {
position: static !important;
margin-top: 3rem;
}
.social-links3 > a {
width: calc(50% - 8px);
margin: 2.5px !important;
}
.testi-nav-caro {max-width: 100%;}
.testi-nav-caro + .testi-caro {
width: initial;
padding: 2rem 0 0;
}
.testi-wrap {
text-align: center;
display: block !important;
}
.testi-item > p {
font-size: 1.8rem;
line-height: 2.4rem;
}
.btns-wrap.d-flex > a {
flex: 0 0 100%;
max-width: 100%;
}
.btns-wrap.d-flex {flex-wrap: wrap;}
.blue-layer .btns-wrap > a.brd-btn {border-left: 2px solid #67637e;}
.btns-wrap.d-flex > a + a {margin-top: .5rem;}
.newsletter-inner > form input {
height: 5rem;
padding-right: 9rem;
}
.newsletter-inner > form button {
right: 0;
font-size: 1rem;
padding: 0 1rem;
}
.pt-155 {padding-top: 5rem;}
.about-me {text-align: center;}
.about-me-img {
width: 100%;
margin-left: 0;
}
.about-me-img:before {display: none;}
.about-me-info {padding: 2.5rem 0 0;}
.countdown-wrap > ul li {padding: 0 1.3rem;}
.countdown-wrap > ul li span {
font-size: 2.5rem;
line-height: 2.5rem;
}
.countdown-wrap > ul li p {font-size: 1rem;}
.countdown-wrap > ul li:not(:first-child)::before,
.countdown-wrap > ul li:not(:first-child)::after {
height: .4rem;
width: .4rem;
}
.countdown-wrap > ul {padding: 1.8rem 0;}
.srv-box2 {padding: 0;}
.post-style1,
.blog-wrap > div.row > div:nth-child(2n) .post-style1 {padding-left: 5.2rem;}
.post-style1.big-img .post-info > h3 {
font-size: 1.75rem;
line-height: 2rem;
}
.post-style2.list-view .post-img2,
.product-box.list-view .product-img {
flex: 0 0 100%;
max-width: 100%;
}
.post-style2.list-view .post-img2 + .post-info2,
.product-box.list-view .product-img + .product-info {
flex: 0 0 100%;
max-width: 100%;
padding: 2rem 0 0;
}
.alignleft {
margin-right: 0;
width: 100%;
}
.alignright {
margin-left: 0;
width: 100%;
}
.blog-detail-desc ul {max-width: 100%;}
.detail-video > a svg,
.about-img > a svg {
height: 5rem;
width: 5rem;
}
.blog-detail-social-tags {padding: 2.5rem 1.5rem;}
.comment {
text-align: center;
justify-content: center;
}
.comment-thumb + .comment-info {
padding: 2rem 0 0;
flex: 0 0 100%;
max-width: 100%;
}
.comment-info > a.comment-reply-link {
margin: 0;
-webkit-transform: translate(0);
-ms-transform: translate(0);
-o-transform: translate(0);
transform: translate(0);
display: inline-block;
width: 100%;
}
.comment.comment-reply {padding-left: 0;}
.comment-info > span.product-rate {
position: static;
display: block !important;
}
.page-title-inner {margin: 0;}
.product-cart,
.cart-btns {width: 230% !important;}
.error-inner > h1 {
font-size: 10rem;
line-height: 10rem;
}
.error-inner > h1 span::before {
bottom: 1.7rem;
top: 1.7rem;
}
.error-inner > h1 + h3 {margin-top: 0;}
.error-inner > h3 {font-size: 2.2rem;}
.error-inner > h3 + p {margin-top: 1.8rem;}
.error-inner > p {font-size: 1.125rem;}
.pt-160 {padding-top: 5rem;}
.pb-150 {padding-bottom: 5rem;}
.toggle-item {
padding-left: 2rem;
max-width: calc(100% - 3rem);
margin-left: 3rem;
}
.toggle-item > h4 {font-size: 1.5rem;}
.toggle-item > h4 i {
height: 1.8rem;
width: 1.8rem;
left: -3rem;
}
.gallery-item2::before {
left: 1.5rem;
top: 1.5rem;
right: 1.5rem;
bottom: 1.5rem;
}
.gallery-info2 {min-width: 22rem;}
.gallery-info2 > h3 {font-size: 1.7rem;}
.gallery-info2 > span + a,
.col-md-6 .gallery-info2 > span + a {margin-top: 1rem;}
.gallery-info2 > span {font-size: 1rem;}
.gallery-info2 > a {
font-size: 1.8rem;
line-height: 1.8rem;
}
.facts-wrap.style2 > div.row > div {
flex: 0 0 50%;
max-width: 50%;
}
.facts-wrap.style2 > div.row > div:nth-child(3) .fact-box:before {display: none;}
.fact-box > h3 {
font-size: 3.8rem;
line-height: 3.8rem;
}
.speaker-detail-info {
margin-top: 3rem;
padding-left: 0;
}
.login-popup-inner {
max-width: 93%;
/*padding: 3rem 2.3rem;*/
}
.login-popup-inner > form input {height: 3.7rem;}
.content-wrap > iframe {height: 14.5rem;}
.banner-box.style4,
.banner-box.style6 {padding: 1.875rem;}
.banner-btn {margin-top: 1.5625rem;}
.product-detail-img {
flex: 0 0 100%;
max-width: 100%;
}
.product-detail-img + .product-detail-info {
padding: 3rem 0 0;
flex: 0 0 100%;
max-width: 100%;
}
.quantity + button {margin-left: .625rem;}
/* .res-row {overflow-x: initial;}
.res-row > .row {flex-wrap: wrap;} */
.res-row > .row div[class^="col"] {
flex: 0 0 100%;
max-width: 100%;
}
.srv-wrap2 > .row > div:not(:first-child) .srv-box2:before {display: none;}
}
@media (max-width: 490px) {
.package-box:before {
height: 7.3rem;
bottom: -7.25rem;
}
.speackers-desc .sec-title + p {
padding-top: 3rem;
margin-top: 1rem;
}
.speackers-desc .sec-title + p:before {
top: 0;
height: 1.8rem;
}
.sec-title-inner > h2 {
font-size: 2.8rem;
line-height: 2.8rem;
}
.event-grid-info > h3 {font-size: 1.625rem;}
.newsletter-wrap > h2 {font-size: 2.3rem;}
.newsletter-wrap > h2 br,
.sec-title-inner > h2 br,
.sec-title-inner > h3 br {display: none;}
.sec-title-inner > h3 {
font-size: 2.4rem;
line-height: 2.4rem;
}
.feat-cap ul.countdown li {
font-size: 2rem;
padding: 1.2rem;
}
.feat-cap > h3 {font-size: 2.8rem;}
.thm-btn {
font-size: .85rem;
padding: 1rem 2.3rem;
}
.thm-btn.wid-btn {
padding-left: 3rem;
padding-right: 3rem;
}
.thm-btn.brd-btn {padding: 1rem 2.3rem;}
.package-head > span {font-size: 5.5rem;}
.feat-caro2 > button.slick-arrow {font-size: .75rem;}
.page-title-inner > h1 {
font-size: 3.5rem;
line-height: 3.5rem;
}
.filter-links + .gallery-wrap {margin-top: 2.5rem;}
.filter-links > li {
font-size: 1rem;
padding: 0 1rem;
}
.pagination li.page-item a.page-link,
.pagination li.page-item span.page-link {
height: 2.4rem;
width: 2.5rem;
line-height: 2.4rem;
}
.pagination li.page-item.prev a.page-link,
.pagination li.page-item.next a.page-link {
height: 3.8rem;
line-height: 3.8rem;
width: 4rem;
padding: 0 .85rem;
}
.event-detail-features-list > li {
font-size: 1.5rem;
padding: 1rem 1.5rem 1rem 7rem;
}
.event-detail-features-list > li span {
font-size: .9375rem;
line-height: 1.4rem;
}
.event-detail-features-list > li i {
width: 5.5rem;
font-size: 2.5rem;
height: initial;
bottom: 0;
line-height: 2;
}
blockquote {
font-size: 1.4rem;
line-height: 2.2rem;
}
.blog-detail-social-tags > div > span {margin-bottom: 10px;}
.search-close-btn {
height: 3.5rem;
width: 3.5rem;
line-height: 3.5rem;
font-size: 1.5rem;
}
.banner-info > h3,
.banner-box > h3 {font-size: 1.875rem;}
.page-title-inner > h1 + .breadcrumb {
margin-top: 1.7rem;
padding-top: 1.5rem;
}
.alert {
padding: 1.875rem;
text-align: center;
justify-content: center;
}
.alert > i + .alert-inner-info {
padding: 1rem 0 0;
width: 100%;
}
.alert > button.close {
top: 1rem;
right: 1rem;
}
.about-icon {display: none;}
.feat-cap2 {max-width: 100%;}
.feat-caro2 > button.slick-arrow {bottom: -5rem;}
.btns-wrap > a + a {margin-top: .9375rem;}
.sign-up {text-align: center;}
.track {
padding: 0;
text-align: center;
}
.track > i {
position: static;
margin-bottom: .9375rem;
display: block;
}
.track + .social-links4 {justify-content: center;}
}
@media (max-width: 470px) {
.tabs-wrap .nav-tabs li.nav-item a.nav-link {padding: 13px 20px 25px;}
}
@media (max-width: 430px) {
.feat-cap ul.countdown li {font-size: 1.5rem;}
.feat-cap ul.countdown li:not(:first-child)::before {height: 75%;}
.event-style2 {min-width: 350%;}
.sponsors-wrap > div.row > div:not(:first-child) {
flex: 0 0 100%;
max-width: 100%;
}
.social-links3 > a i {
display: block;
margin: 0 0 5px;
}
.about-icon {
max-width: 11rem;
right: 2rem;
top: 2rem;
}
.about-icon > i {
font-size: 2.5rem;
line-height: 2.5rem;
}
.about-icon > span {font-size: 1.125rem;}
header.style3 {padding-top: 1.7rem;}
header.style3 .header-right-btns > a {
height: 3.125rem;
width: 3.125rem;
line-height: 3.125rem;
}
header.style3 .header-left + .header-right-btns {margin-left: 0;}
.gallery-item2::before {
left: 0.625rem;
top: 0.625rem;
right: 0.625rem;
bottom: 0.625rem;
}
.gallery-info2 > h3 {font-size: 1.5rem;}
.gallery-info2 > span {font-size: .9rem;}
.gallery-info2 > span + a {margin-top: .75rem;}
.gallery-info2 > a {
font-size: 1.5rem;
line-height: 1.5rem;
}
.product-cart,
.cart-btns {width: 250% !important;}
.countdown-wrap > ul li {padding: 0 .9375rem;}
.countdown-wrap > ul li span {
font-size: 1.6rem;
line-height: 1.6rem;
}
.countdown-wrap > ul li p {font-size: .8rem;}
.countdown-wrap > ul li:not(:first-child)::before,
.countdown-wrap > ul li:not(:first-child)::after {
height: .3rem;
width: .3rem;
}
.countdown-wrap > ul li:not(:first-child)::before {margin-top: -4px;}
.countdown-wrap > ul li:not(:first-child)::after {margin-top: 4px;}
.feat-cap > span + ul {margin-top: 0rem;}
.feat-item-wrap span a.play-btn svg {
height: 6rem;
width: 6rem;
}
header.style1,
header.style3 {padding-top: 1rem;}
header.style1 .header-right-btns,
header.style2 .header-right-btns {margin-top: 1.7rem;}
header.style3 .header-right-btns {margin-top: .625rem;}
}
@media (max-width: 380px) {
.product-detail-info .quantity {min-width: 15rem;}
.quantity + button {margin-left: 0;}
.product-cart,
.cart-btns {width: 270% !important;}
.feat-cap ul.countdown li {padding: .85rem;}
}
@media (max-width: 767.99px) {
.feat-wrap {
height: 430px;
}
.hide-mobile {
display: none;
}
.mobile-timer {
align-items: center !important;
}
} | 0.467575 | 0.075142 |
.dice-line {
width: 100%;
border-radius: 5em;
overflow: hidden;
height: 1.8em;
border: 0.4em solid rgba(0, 0, 0, 0.4);
margin-top: 1.8em;
position: relative;
}
.dice-line-part {
width: 50%;
height: 1em;
margin: 0;
}
.dice-line-position {
border-radius: 0.23em;
background-color: #fff;
height: 1em;
width: 1em;
position: absolute;
}
.dice-button {
background-color: rgb(37, 39, 41);
border-radius: 0.3em;
padding: 0.4em 0.7em;
color: rgb(204, 204, 204);
font-weight: 700;
font-size: 1.1em;
cursor: pointer;
transition-duration: 0.5s;
}
.dice-button.active {
color: rgb(37, 39, 41);
background-color: rgb(204, 204, 204);
}
.dice-button:hover {
background-color: rgb(27, 27, 27);
}
.dice-button.active:hover {
background-color: rgb(204, 204, 204);
}
.dice-input {
background-color: rgb(37, 39, 41);
border: none;
border-radius: 0.3em;
color: #fff;
padding: 0.4em 0.7em;
outline: none;
}
.button-group {
overflow: hidden;
border-radius: 0.3em;
}
.button-groupped {
border-radius: 0;
outline: rgb(65, 65, 65) solid 0.12em;
}
.green-option.active,
.green-option.active:hover {
color: #fff;
background-color: rgb(66, 199, 110);
}
.red-option.active,
.red-option.active:hover {
color: #fff;
background-color: rgb(221, 87, 77);
}
.dice-button.button-gold-gradient {
background-image: linear-gradient(to left, rgb(240, 174, 51), rgb(255, 145, 55));
padding: 0.5em 1.9em;
color: #fff;
}
.dice-button.button-red {
background-color: rgb(221, 87, 77);
color: #fff;
padding: 0.5em 1.9em;
}
.dice-button.button-gold-gradient:hover {
transform: scale(1.05);
}
.roll-message {
border-radius: 0.5em;
padding: 1em 1.7em;
}
.roll-message.win {
border: 0.3em solid rgb(59, 180, 116);
background-color: rgb(68, 206, 132);
color: #fff;
}
.dice-subcontainer {
background-color: rgb(42 47 51);
border-bottom-left-radius: 0.6em;
border-bottom-right-radius: 0.6em;
padding: 0.9em 1.5em;
margin: 0 0.4em;
display: none;
}
.dice-container.no-bottom-radius {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
SPAN.greenResult {
color: rgb(59, 180, 116);
}
SPAN.redResult {
color: rgb(239, 89, 70);
}
.auto-button {
font-weight: 500;
padding: 0.5em 1.1em;
background-color: #2c3033;
color: #62676b;
}
.auto-button:hover {
background-color: #25282a;
}
.auto-dice-container {
background-color: #2e3235;
border-radius: 0.6em;
padding: 1em 1.5em;
}
.auto-dice-container hr {
margin: 0.2em 0;
border-top: 0.3em solid rgb(144, 144, 144);
width: 30%;
}
.diceRollCheckbox {
width: 2em;
height: 0.9em;
} | src/css/client/dice.css | .dice-line {
width: 100%;
border-radius: 5em;
overflow: hidden;
height: 1.8em;
border: 0.4em solid rgba(0, 0, 0, 0.4);
margin-top: 1.8em;
position: relative;
}
.dice-line-part {
width: 50%;
height: 1em;
margin: 0;
}
.dice-line-position {
border-radius: 0.23em;
background-color: #fff;
height: 1em;
width: 1em;
position: absolute;
}
.dice-button {
background-color: rgb(37, 39, 41);
border-radius: 0.3em;
padding: 0.4em 0.7em;
color: rgb(204, 204, 204);
font-weight: 700;
font-size: 1.1em;
cursor: pointer;
transition-duration: 0.5s;
}
.dice-button.active {
color: rgb(37, 39, 41);
background-color: rgb(204, 204, 204);
}
.dice-button:hover {
background-color: rgb(27, 27, 27);
}
.dice-button.active:hover {
background-color: rgb(204, 204, 204);
}
.dice-input {
background-color: rgb(37, 39, 41);
border: none;
border-radius: 0.3em;
color: #fff;
padding: 0.4em 0.7em;
outline: none;
}
.button-group {
overflow: hidden;
border-radius: 0.3em;
}
.button-groupped {
border-radius: 0;
outline: rgb(65, 65, 65) solid 0.12em;
}
.green-option.active,
.green-option.active:hover {
color: #fff;
background-color: rgb(66, 199, 110);
}
.red-option.active,
.red-option.active:hover {
color: #fff;
background-color: rgb(221, 87, 77);
}
.dice-button.button-gold-gradient {
background-image: linear-gradient(to left, rgb(240, 174, 51), rgb(255, 145, 55));
padding: 0.5em 1.9em;
color: #fff;
}
.dice-button.button-red {
background-color: rgb(221, 87, 77);
color: #fff;
padding: 0.5em 1.9em;
}
.dice-button.button-gold-gradient:hover {
transform: scale(1.05);
}
.roll-message {
border-radius: 0.5em;
padding: 1em 1.7em;
}
.roll-message.win {
border: 0.3em solid rgb(59, 180, 116);
background-color: rgb(68, 206, 132);
color: #fff;
}
.dice-subcontainer {
background-color: rgb(42 47 51);
border-bottom-left-radius: 0.6em;
border-bottom-right-radius: 0.6em;
padding: 0.9em 1.5em;
margin: 0 0.4em;
display: none;
}
.dice-container.no-bottom-radius {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
SPAN.greenResult {
color: rgb(59, 180, 116);
}
SPAN.redResult {
color: rgb(239, 89, 70);
}
.auto-button {
font-weight: 500;
padding: 0.5em 1.1em;
background-color: #2c3033;
color: #62676b;
}
.auto-button:hover {
background-color: #25282a;
}
.auto-dice-container {
background-color: #2e3235;
border-radius: 0.6em;
padding: 1em 1.5em;
}
.auto-dice-container hr {
margin: 0.2em 0;
border-top: 0.3em solid rgb(144, 144, 144);
width: 30%;
}
.diceRollCheckbox {
width: 2em;
height: 0.9em;
} | 0.802168 | 0.194865 |
@charset "UTF-8";
/*
这是每个都组件都应该引用的部分
*/
.oni-datepicker {
position: relative;
display: block;
font-size: 0;
white-space: nowrap;
color: #333;
z-index: 10;
width: auto;
margin-left: -1px; }
.oni-datepicker tr, .oni-datepicker td, .oni-datepicker th {
border: 0; }
.oni-datepicker .oni-icon {
text-indent: 0; }
.oni-datepicker .oni-icon-calendar-o {
padding: 0 6px;
vertical-align: top;
text-indent: 0;
display: inline; }
.oni-datepicker .oni-dropdown-source {
margin-top: -2px;
*margin-top: 0; }
.oni-datepicker .oni-dropdown-source .oni-dropdown-input {
padding: 0 21px 0 6px;
line-height: 20px;
height: 20px; }
.oni-datepicker .oni-dropdown-source .oni-dropdown-icon {
top: -20px;
line-height: 20px; }
.oni-datepicker-wrapper {
padding: 9px 0 9px 10px;
border: 1px solid #cccccc;
box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.1);
position: absolute;
background: #fff; }
.oni-datepicker-wrapper-right {
right: -1px; }
.oni-datepicker-wrapper-top {
bottom: 24px; }
.oni-datepicker-wrapper-top-right {
bottom: 24px;
right: -1px; }
.oni-datepicker-content {
border: 1px solid #e5e5e5;
font-size: 12px;
margin-right: 10px;
background: #fff; }
.oni-datepicker-label {
background-color: #f8f8f8;
border-bottom: 1px solid #e5e5e5;
font-weight: 700;
padding: 7px 0;
text-align: center; }
.oni-datepicker-timer {
border-top: 1px solid #efefef;
padding: 5px 0; }
.oni-datepicker-timer .oni-btn {
height: 26px;
overflow: visible;
_overflow-y: hidden;
padding: 0 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
font-size: 12px;
color: #333333;
background-color: #f8f8f8;
border: 1px solid #cccccc;
cursor: pointer; }
.oni-datepicker-timer .oni-btn:hover {
box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
background-color: #f8f8f8;
border-color: #bbbbbb;
color: #333333; }
.oni-datepicker-timer .oni-btn-small {
height: 22px;
padding: 0 5px;
font-size: 12px; }
.oni-datepicker-timer p, .oni-datepicker-timer label {
margin: 0; }
.oni-datepicker-timer p span, .oni-datepicker-timer label span {
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
zoom: 1;
*display: inline;
width: 50px; }
.oni-datepicker-content-content {
padding: 0 10px;
position: relative;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
zoom: 1;
*display: inline;
white-space: normal;
word-break: break-word; }
.oni-datepicker-watermark {
position: absolute;
top: 60px;
left: 10px;
background: transparent;
color: #000;
_color: #f2f2f2;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=5);
opacity: 0.05;
text-align: center; }
.oni-datepicker-month-year span {
display: block;
width: 23%;
height: 42px;
line-height: 42px;
float: left;
margin: 1%;
cursor: pointer;
text-align: center;
_margin-left: -1px; }
.oni-datepicker-month-year .oni-datepicker-prev, .oni-datepicker-month-year .oni-datepicker-next {
height: auto;
line-height: auto;
position: relative;
width: auto; }
.oni-datepicker-month-year .oni-datepicker-day-hover {
background: #dbebff; }
.oni-datepicker-month-year .oni-datepicker-selected {
background: #3775c0;
color: #fff; }
.oni-datepicker-month-year .oni-datepicker-prev-year, .oni-datepicker-month-year .oni-datepicker-next-year {
color: #999999; }
.oni-datepicker-month-year .oni-state-disabled {
color: #cccccc;
cursor: default;
background: transparent; }
.oni-datepicker-header {
position: relative;
height: 30px;
line-height: 30px; }
.oni-datepicker .oni-datepicker-prev, .oni-datepicker .oni-datepicker-next {
color: #3775c0;
cursor: pointer;
height: 30px;
line-height: 30px;
position: absolute;
text-align: center;
width: 20px;
z-index: 1; }
.oni-datepicker .oni-datepicker-prev {
left: 0; }
.oni-datepicker .oni-datepicker-next {
right: 0; }
.oni-datepicker-content-content .oni-datepicker-prev {
left: 0;
top: 0; }
.oni-datepicker-content-content .oni-datepicker-next {
right: 0;
top: 0; }
.oni-datepicker .oni-datepicker-prev-disabled, .oni-datepicker .oni-datepicker-next-disabled {
color: #cccccc;
cursor: default; }
.oni-datepicker-title {
color: #3775c0;
font-weight: 700;
text-align: center; }
.oni-datepicker-title span.oni-state-hover {
background: #dbebff;
padding: 5px 10px; }
.oni-datepicker-calendar-days {
height: 150px;
position: relative;
z-index: 20; }
.oni-datepicker-calendar-week, .oni-datepicker-calendar-days {
border-collapse: collapse;
margin-bottom: 5px;
table-layout: fixed;
width: 100%;
border-spacing: 0; }
.oni-datepicker-calendar-week th {
border-bottom: 1px solid #efefef;
border-top: 1px solid #efefef;
padding: 3px 0;
text-align: center;
line-height: 18px;
font-weight: 400;
font-size: 12px; }
.oni-datepicker-week-end, .oni-datepicker-calendar-days .oni-datepicker-week-end {
color: #ff5555; }
.oni-datepicker-calendar-days td {
color: #333333;
cursor: pointer;
text-align: center;
line-height: 18px;
padding: 3px 0;
background: transparent; }
.oni-datepicker-default {
background: #fff; }
.oni-datepicker-calendar-days .oni-datepicker-day-hover {
background: #dbebff; }
.oni-datepicker-today {
font-family: pmingliu, arial, sans-serif;
font-size: 11px; }
@media screen and (-webkit-transform-2d: 1) {
.oni-datepicker-today {
/* font-size: 12px; */
-webkit-transform: scale(0.91667); } }
.oni-datepicker-day-none {
cursor: auto; }
.oni-datepicker-calendar-days .oni-datepicker-selected {
background: #3775c0;
color: #fff; }
.oni-datepicker-calendar-days .oni-state-disabled {
color: #cccccc;
cursor: default;
background: transparent; }
.oni-datepicker-multiple .oni-datepicker-content {
border-right: 0; }
.oni-datepicker-multiple .oni-datepicker-content-content {
border-right: 1px solid #e5e5e5; }
.oni-datepicker-dropdown .oni-dropdown-item {
color: #333333;
font-size: 12px;
padding: 0;
text-indent: 0;
text-align: center; }
.oni-datepicker-dropdown .oni-dropdown-item-hover {
background: #f5f5f5; }
.oni-datepicker-dropdown .oni-dropdown-item-selected {
background: #3775c0; }
.oni-datepicker-dropdown .oni-dropdown:hover .oni-dropdown-source {
border-color: #3775c0;
border-bottom-color: #cccccc; }
.oni-datepicker-input-wrapper {
background: #ffffff;
border: 1px solid #cccccc;
cursor: pointer;
color: #333;
font-size: 12px;
position: relative;
display: inline-block;
*display: inline;
zoom: 1;
z-index: 1; }
.oni-datepicker-input-wrapper input {
border: 0 none;
cursor: pointer;
outline: none;
padding: 3px 90px 3px 6px;
width: 90px;
height: 18px;
margin: 0;
font-size: 12px; }
.oni-datepicker-tip {
position: absolute;
top: 3px;
right: 10px;
line-height: 18px;
height: 18px;
color: #b5b5b5; }
.oni-datepicker-active {
border-color: #3775c0; }
/*# sourceMappingURL=avalon.datepicker.css.map */ | src/assets/vendor/oniui/datepicker/avalon.datepicker.css | @charset "UTF-8";
/*
这是每个都组件都应该引用的部分
*/
.oni-datepicker {
position: relative;
display: block;
font-size: 0;
white-space: nowrap;
color: #333;
z-index: 10;
width: auto;
margin-left: -1px; }
.oni-datepicker tr, .oni-datepicker td, .oni-datepicker th {
border: 0; }
.oni-datepicker .oni-icon {
text-indent: 0; }
.oni-datepicker .oni-icon-calendar-o {
padding: 0 6px;
vertical-align: top;
text-indent: 0;
display: inline; }
.oni-datepicker .oni-dropdown-source {
margin-top: -2px;
*margin-top: 0; }
.oni-datepicker .oni-dropdown-source .oni-dropdown-input {
padding: 0 21px 0 6px;
line-height: 20px;
height: 20px; }
.oni-datepicker .oni-dropdown-source .oni-dropdown-icon {
top: -20px;
line-height: 20px; }
.oni-datepicker-wrapper {
padding: 9px 0 9px 10px;
border: 1px solid #cccccc;
box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.1);
position: absolute;
background: #fff; }
.oni-datepicker-wrapper-right {
right: -1px; }
.oni-datepicker-wrapper-top {
bottom: 24px; }
.oni-datepicker-wrapper-top-right {
bottom: 24px;
right: -1px; }
.oni-datepicker-content {
border: 1px solid #e5e5e5;
font-size: 12px;
margin-right: 10px;
background: #fff; }
.oni-datepicker-label {
background-color: #f8f8f8;
border-bottom: 1px solid #e5e5e5;
font-weight: 700;
padding: 7px 0;
text-align: center; }
.oni-datepicker-timer {
border-top: 1px solid #efefef;
padding: 5px 0; }
.oni-datepicker-timer .oni-btn {
height: 26px;
overflow: visible;
_overflow-y: hidden;
padding: 0 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
font-size: 12px;
color: #333333;
background-color: #f8f8f8;
border: 1px solid #cccccc;
cursor: pointer; }
.oni-datepicker-timer .oni-btn:hover {
box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
background-color: #f8f8f8;
border-color: #bbbbbb;
color: #333333; }
.oni-datepicker-timer .oni-btn-small {
height: 22px;
padding: 0 5px;
font-size: 12px; }
.oni-datepicker-timer p, .oni-datepicker-timer label {
margin: 0; }
.oni-datepicker-timer p span, .oni-datepicker-timer label span {
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
zoom: 1;
*display: inline;
width: 50px; }
.oni-datepicker-content-content {
padding: 0 10px;
position: relative;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
zoom: 1;
*display: inline;
white-space: normal;
word-break: break-word; }
.oni-datepicker-watermark {
position: absolute;
top: 60px;
left: 10px;
background: transparent;
color: #000;
_color: #f2f2f2;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=5);
opacity: 0.05;
text-align: center; }
.oni-datepicker-month-year span {
display: block;
width: 23%;
height: 42px;
line-height: 42px;
float: left;
margin: 1%;
cursor: pointer;
text-align: center;
_margin-left: -1px; }
.oni-datepicker-month-year .oni-datepicker-prev, .oni-datepicker-month-year .oni-datepicker-next {
height: auto;
line-height: auto;
position: relative;
width: auto; }
.oni-datepicker-month-year .oni-datepicker-day-hover {
background: #dbebff; }
.oni-datepicker-month-year .oni-datepicker-selected {
background: #3775c0;
color: #fff; }
.oni-datepicker-month-year .oni-datepicker-prev-year, .oni-datepicker-month-year .oni-datepicker-next-year {
color: #999999; }
.oni-datepicker-month-year .oni-state-disabled {
color: #cccccc;
cursor: default;
background: transparent; }
.oni-datepicker-header {
position: relative;
height: 30px;
line-height: 30px; }
.oni-datepicker .oni-datepicker-prev, .oni-datepicker .oni-datepicker-next {
color: #3775c0;
cursor: pointer;
height: 30px;
line-height: 30px;
position: absolute;
text-align: center;
width: 20px;
z-index: 1; }
.oni-datepicker .oni-datepicker-prev {
left: 0; }
.oni-datepicker .oni-datepicker-next {
right: 0; }
.oni-datepicker-content-content .oni-datepicker-prev {
left: 0;
top: 0; }
.oni-datepicker-content-content .oni-datepicker-next {
right: 0;
top: 0; }
.oni-datepicker .oni-datepicker-prev-disabled, .oni-datepicker .oni-datepicker-next-disabled {
color: #cccccc;
cursor: default; }
.oni-datepicker-title {
color: #3775c0;
font-weight: 700;
text-align: center; }
.oni-datepicker-title span.oni-state-hover {
background: #dbebff;
padding: 5px 10px; }
.oni-datepicker-calendar-days {
height: 150px;
position: relative;
z-index: 20; }
.oni-datepicker-calendar-week, .oni-datepicker-calendar-days {
border-collapse: collapse;
margin-bottom: 5px;
table-layout: fixed;
width: 100%;
border-spacing: 0; }
.oni-datepicker-calendar-week th {
border-bottom: 1px solid #efefef;
border-top: 1px solid #efefef;
padding: 3px 0;
text-align: center;
line-height: 18px;
font-weight: 400;
font-size: 12px; }
.oni-datepicker-week-end, .oni-datepicker-calendar-days .oni-datepicker-week-end {
color: #ff5555; }
.oni-datepicker-calendar-days td {
color: #333333;
cursor: pointer;
text-align: center;
line-height: 18px;
padding: 3px 0;
background: transparent; }
.oni-datepicker-default {
background: #fff; }
.oni-datepicker-calendar-days .oni-datepicker-day-hover {
background: #dbebff; }
.oni-datepicker-today {
font-family: pmingliu, arial, sans-serif;
font-size: 11px; }
@media screen and (-webkit-transform-2d: 1) {
.oni-datepicker-today {
/* font-size: 12px; */
-webkit-transform: scale(0.91667); } }
.oni-datepicker-day-none {
cursor: auto; }
.oni-datepicker-calendar-days .oni-datepicker-selected {
background: #3775c0;
color: #fff; }
.oni-datepicker-calendar-days .oni-state-disabled {
color: #cccccc;
cursor: default;
background: transparent; }
.oni-datepicker-multiple .oni-datepicker-content {
border-right: 0; }
.oni-datepicker-multiple .oni-datepicker-content-content {
border-right: 1px solid #e5e5e5; }
.oni-datepicker-dropdown .oni-dropdown-item {
color: #333333;
font-size: 12px;
padding: 0;
text-indent: 0;
text-align: center; }
.oni-datepicker-dropdown .oni-dropdown-item-hover {
background: #f5f5f5; }
.oni-datepicker-dropdown .oni-dropdown-item-selected {
background: #3775c0; }
.oni-datepicker-dropdown .oni-dropdown:hover .oni-dropdown-source {
border-color: #3775c0;
border-bottom-color: #cccccc; }
.oni-datepicker-input-wrapper {
background: #ffffff;
border: 1px solid #cccccc;
cursor: pointer;
color: #333;
font-size: 12px;
position: relative;
display: inline-block;
*display: inline;
zoom: 1;
z-index: 1; }
.oni-datepicker-input-wrapper input {
border: 0 none;
cursor: pointer;
outline: none;
padding: 3px 90px 3px 6px;
width: 90px;
height: 18px;
margin: 0;
font-size: 12px; }
.oni-datepicker-tip {
position: absolute;
top: 3px;
right: 10px;
line-height: 18px;
height: 18px;
color: #b5b5b5; }
.oni-datepicker-active {
border-color: #3775c0; }
/*# sourceMappingURL=avalon.datepicker.css.map */ | 0.265976 | 0.064979 |
.l-region {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@media (min-width: 768px) {
.panel-sidebar-left-right {
position: relative;
}
.panel-sidebar-left-right:after {
content: "";
display: table;
clear: both;
}
.l-region--sidebar-left {
width: 21.73913%;
float: left;
margin-right: -100%;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
clear: left;
}
.l-region--sidebar-left:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 0%;
width: 21.73913%;
bottom: 0;
background: "";
}
.l-region--main-column {
max-width: 50em;
}
.with-both-sidebars .l-region--main-column {
max-width: none;
width: 52.17391%;
float: left;
margin-right: -100%;
margin-left: 21.73913%;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-right: 0;
}
.with-both-sidebars .l-region--main-column:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 21.73913%;
width: 52.17391%;
bottom: 0;
background: "";
}
.with-sidebar-left .l-region--main-column {
max-width: none;
width: 78.26087%;
float: right;
margin-left: 0;
margin-right: 0;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-right: 0;
}
.with-sidebar-left .l-region--main-column:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 21.73913%;
width: 78.26087%;
bottom: 0;
background: "";
}
.with-sidebar-right .l-region--main-column {
max-width: none;
width: 73.91304%;
float: left;
margin-right: -100%;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
padding-right: 0;
}
.with-sidebar-right .l-region--main-column:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 0%;
width: 73.91304%;
bottom: 0;
background: "";
}
.l-region--sidebar-right {
width: 26.08696%;
clear: right;
float: right;
padding-left: 20px;
padding-right: 20px;
padding-right: 0;
}
.l-region--sidebar-right:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 73.91304%;
width: 26.08696%;
bottom: 0;
background: "";
}
.l-region--main,
.l-region--secondary {
width: 100%;
float: right;
margin-left: 0;
margin-right: 0;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
padding-right: 0;
clear: both;
float: left;
}
.l-region--below-main-left,
.l-region--below-secondary-left {
width: 50%;
float: left;
margin-right: -100%;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
clear: left;
}
.l-region--below-main-right,
.l-region--below-secondary-right {
width: 50%;
float: right;
margin-left: 0;
margin-right: 0;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
padding-right: 0;
clear: right;
}
}
@media (max-width: 767px) {
.l-region--below-main-left,
.l-region--below-main-right,
.l-region--below-secondary-left,
.l-region--below-secondary-right {
margin-top: 15px;
margin-bottom: 15px;
}
}
/*# sourceMappingURL=sidebar-left-right.layout.css.map */ | www/sites/all/themes/uclalib_omega/css/layouts/sidebar-left-right/sidebar-left-right.layout.css | .l-region {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@media (min-width: 768px) {
.panel-sidebar-left-right {
position: relative;
}
.panel-sidebar-left-right:after {
content: "";
display: table;
clear: both;
}
.l-region--sidebar-left {
width: 21.73913%;
float: left;
margin-right: -100%;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
clear: left;
}
.l-region--sidebar-left:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 0%;
width: 21.73913%;
bottom: 0;
background: "";
}
.l-region--main-column {
max-width: 50em;
}
.with-both-sidebars .l-region--main-column {
max-width: none;
width: 52.17391%;
float: left;
margin-right: -100%;
margin-left: 21.73913%;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-right: 0;
}
.with-both-sidebars .l-region--main-column:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 21.73913%;
width: 52.17391%;
bottom: 0;
background: "";
}
.with-sidebar-left .l-region--main-column {
max-width: none;
width: 78.26087%;
float: right;
margin-left: 0;
margin-right: 0;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-right: 0;
}
.with-sidebar-left .l-region--main-column:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 21.73913%;
width: 78.26087%;
bottom: 0;
background: "";
}
.with-sidebar-right .l-region--main-column {
max-width: none;
width: 73.91304%;
float: left;
margin-right: -100%;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
padding-right: 0;
}
.with-sidebar-right .l-region--main-column:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 0%;
width: 73.91304%;
bottom: 0;
background: "";
}
.l-region--sidebar-right {
width: 26.08696%;
clear: right;
float: right;
padding-left: 20px;
padding-right: 20px;
padding-right: 0;
}
.l-region--sidebar-right:before {
content: " ";
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 73.91304%;
width: 26.08696%;
bottom: 0;
background: "";
}
.l-region--main,
.l-region--secondary {
width: 100%;
float: right;
margin-left: 0;
margin-right: 0;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
padding-right: 0;
clear: both;
float: left;
}
.l-region--below-main-left,
.l-region--below-secondary-left {
width: 50%;
float: left;
margin-right: -100%;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
clear: left;
}
.l-region--below-main-right,
.l-region--below-secondary-right {
width: 50%;
float: right;
margin-left: 0;
margin-right: 0;
clear: none;
padding-left: 20px;
padding-right: 20px;
padding-left: 0;
padding-right: 0;
clear: right;
}
}
@media (max-width: 767px) {
.l-region--below-main-left,
.l-region--below-main-right,
.l-region--below-secondary-left,
.l-region--below-secondary-right {
margin-top: 15px;
margin-bottom: 15px;
}
}
/*# sourceMappingURL=sidebar-left-right.layout.css.map */ | 0.424173 | 0.087252 |
@font-face{font-family:IRANSans;font-style:normal;font-weight:400;src:url('../fonts/IRANSansWeb(FaNum).eot');src:url('../fonts/IRANSansWeb(FaNum).eot?#iefix') format("embedded-opentype"),url('../fonts/IRANSansWeb(FaNum).woff2') format("woff2"),url('../fonts/IRANSansWeb(FaNum).woff') format("woff"),url('../fonts/IRANSansWeb(FaNum).ttf') format("truetype")}
body {
background: #f3f3f3;
font-family: 'IRANSans';
}
main.main {
padding: 12.5rem 0;
text-align: center;
}
main.main header h2 {
font-size: 1.75rem;
color: #333;
margin: 0 0 3.125rem;
}
main.main header h6 {
font-size: 16.5625rem;
color: #e31e24;
font-weight: bold;
height: 13.5rem;
margin: 0;
}
.search_box {
display: inline-block;
width: 35%;
margin-top: 3.125rem;
}
.search_box form {
float: right;
width: 100%;
margin-bottom: 1rem;
}
.search_box form input[type="text"] {
float: right;
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
width: -moz-calc(100% - 1.875rem);
width: -webkit-calc(100% - 1.875rem);
width: calc(100% - 1.875rem);
background: none;
height: 4.0625rem;
padding: 0 0.625rem;
border-bottom: 1px solid #eaeaea;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
font-size: 18px;
}
.search_box form button {
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
float: right;
width: 1.875rem;
background: none;
border-bottom: 1px solid #eaeaea;
height: 4.0625rem;
line-height: 4.8rem;
text-align: center;
font-size: 1.875rem;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
color: #9b9b9b;
padding: 0;
}
.search_box form input[type="text"]:hover,
.search_box form button:hover {
color: #333;
}
.search_box form input[type="text"]:focus,
.search_box form input[type="text"]:focus + button {
border-bottom-color: #e31e24;
color: #e31e24;
}
.rock {
position: relative;
margin-top: 5rem;
}
.rock img {
max-width: 100%
}
.rock .alien_right {
position: absolute;
right: 30%;
top: -55px;
}
.rock .alien_left {
position: absolute;
left: 35%;
top: 0;
}
.return {
padding: 2rem 0;
} | assets/css/404.css | @font-face{font-family:IRANSans;font-style:normal;font-weight:400;src:url('../fonts/IRANSansWeb(FaNum).eot');src:url('../fonts/IRANSansWeb(FaNum).eot?#iefix') format("embedded-opentype"),url('../fonts/IRANSansWeb(FaNum).woff2') format("woff2"),url('../fonts/IRANSansWeb(FaNum).woff') format("woff"),url('../fonts/IRANSansWeb(FaNum).ttf') format("truetype")}
body {
background: #f3f3f3;
font-family: 'IRANSans';
}
main.main {
padding: 12.5rem 0;
text-align: center;
}
main.main header h2 {
font-size: 1.75rem;
color: #333;
margin: 0 0 3.125rem;
}
main.main header h6 {
font-size: 16.5625rem;
color: #e31e24;
font-weight: bold;
height: 13.5rem;
margin: 0;
}
.search_box {
display: inline-block;
width: 35%;
margin-top: 3.125rem;
}
.search_box form {
float: right;
width: 100%;
margin-bottom: 1rem;
}
.search_box form input[type="text"] {
float: right;
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
width: -moz-calc(100% - 1.875rem);
width: -webkit-calc(100% - 1.875rem);
width: calc(100% - 1.875rem);
background: none;
height: 4.0625rem;
padding: 0 0.625rem;
border-bottom: 1px solid #eaeaea;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
font-size: 18px;
}
.search_box form button {
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
float: right;
width: 1.875rem;
background: none;
border-bottom: 1px solid #eaeaea;
height: 4.0625rem;
line-height: 4.8rem;
text-align: center;
font-size: 1.875rem;
-webkit-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
color: #9b9b9b;
padding: 0;
}
.search_box form input[type="text"]:hover,
.search_box form button:hover {
color: #333;
}
.search_box form input[type="text"]:focus,
.search_box form input[type="text"]:focus + button {
border-bottom-color: #e31e24;
color: #e31e24;
}
.rock {
position: relative;
margin-top: 5rem;
}
.rock img {
max-width: 100%
}
.rock .alien_right {
position: absolute;
right: 30%;
top: -55px;
}
.rock .alien_left {
position: absolute;
left: 35%;
top: 0;
}
.return {
padding: 2rem 0;
} | 0.284278 | 0.05902 |
body {
background: #fff;
}
/* ------------------------------------------------------------------ */
/* b. Header Styles
/* ------------------------------------------------------------------ */
header {
position: relative;
height: 150px;
min-height: 150px;
width: 100%;
background: #fff;
text-align: center;
overflow: hidden;
}
/* vertically center banner section */
header:before {
content: '';
display: inline-block;
vertical-align: middle;
height: 100%;
}
header .banner {
display: inline-block;
vertical-align: middle;
margin: 0 auto;
width: 85%;
padding-bottom: 30px;
s text-align: center;
}
header .banner-text {
width: 100%;
}
header .banner-text h1 {
font: 90px/1.1em 'opensans-bold', sans-serif;
color: #fff;
letter-spacing: -2px;
margin: 0 auto 18px auto;
text-shadow: 0px 1px 3px rgba(0, 0, 0, .8);
}
header .banner-text h3 {
font: 18px/1.9em 'librebaskerville-regular', serif;
/*color: #A8A8A8;*/
/*color: #363636;*/
color: #fff;
margin: 0 auto;
width: 70%;
text-shadow: 0px 1px 2px rgba(0, 0, 0, .5);
/*background-color: rgba(98, 98, 98, 0.4);*/
}
header .banner-text h3 span,
header .banner-text h3 a {
color: #fff;
}
header .banner-text hr {
width: 60%;
margin: 18px auto 24px auto;
border-color: #2F2D2E;
border-color: rgba(150, 150, 150, .1);
}
/* header social links */
header .social {
margin: 24px 0;
padding: 0;
font-size: 30px;
text-shadow: 0px 1px 2px rgba(0, 0, 0, .8);
}
header .social li {
display: inline-block;
margin: 0 15px;
padding: 0;
}
header .social li a {
color: #fff;
}
header .social li a:hover {
color: #11ABB0;
}
/* scrolldown link */
header .scrolldown a {
position: absolute;
bottom: 30px;
left: 50%;
margin-left: -29px;
color: #fff;
display: block;
height: 42px;
width: 42px;
font-size: 42px;
line-height: 42px;
color: #fff;
border-radius: 100%;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
header .scrolldown a:hover {
color: #11ABB0;
}
/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap ul,
#nav-wrap li,
#nav-wrap a {
margin: 0;
padding: 0;
border: none;
outline: none;
background: #333
}
/* nav-wrap */
#nav-wrap {
font: 12px 'opensans-bold', sans-serif;
width: 100%;
text-transform: uppercase;
letter-spacing: 2.5px;
margin: 0 auto;
z-index: 100;
position: fixed;
left: 0;
top: 0;
}
.opaque {
background-color: #333;
}
/* hide toggle button */
#nav-wrap>a.mobile-btn {
display: none;
}
ul#nav {
min-height: 48px;
width: auto;
/* center align the menu */
text-align: center;
}
ul#nav li {
position: relative;
list-style: none;
height: 48px;
display: inline-block;
}
/* Links */
ul#nav li a {
/* 8px padding top + 8px padding bottom + 32px line-height = 48px */
display: inline-block;
padding: 8px 13px;
line-height: 32px;
text-decoration: none;
text-align: left;
color: #fff;
-webkit-transition: color .2s ease-in-out;
-moz-transition: color .2s ease-in-out;
-o-transition: color .2s ease-in-out;
-ms-transition: color .2s ease-in-out;
transition: color .2s ease-in-out;
}
ul#nav li a:active {
background-color: transparent !important;
}
ul#nav li.current a {
color: #F06000;
}
ul#bullet {
min-height: 10px;
width: auto;
text-align: left;
}
ul#bullet li {
position: relative;
list-style: none outside;
margin-left: 1em;
height: 10px;
display: list-item;
}
/* Links */
ul#bullet li a {
/* 8px padding top + 8px padding bottom + 32px line-height = 48px */
display: inline-block;
padding: 8px 13px;
line-height: 10px;
text-decoration: none;
text-align: left;
color: #fff;
-webkit-transition: color .2s ease-in-out;
-moz-transition: color .2s ease-in-out;
-o-transition: color .2s ease-in-out;
-ms-transition: color .2s ease-in-out;
transition: color .2s ease-in-out;
}
ul#bullet li a:active {
background-color: transparent !important;
}
ul#bullet li.current a {
color: #F06000;
}
/* ------------------------------------------------------------------ */
/* d. general Section
/* ------------------------------------------------------------------ */
#general {
background: #fff;
padding-top: 0px;
padding-bottom: 0px;
overflow: hidden;
}
#general a,
#general a:visited {
color: #313131;
}
#general a:hover,
#general a:focus {
color: #11ABB0;
}
#general h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
}
#general h1 span {
border-bottom: 3px solid #11ABB0;
padding-bottom: 6px;
}
#general h3 {
font: 25px/30px 'opensans-bold', sans-serif;
}
#general .header-col {
padding-top: 9px;
}
#general .main-col {
padding-right: 10%;
}
.general {
margin-bottom: 48px;
padding-bottom: 48px;
border-bottom: 1px solid #E8E8E8;
}
#general .info {
font: 16px/24px 'librebaskerville-italic', serif;
color: #6E7881;
margin-bottom: 18px;
margin-top: 9px;
}
#general .info span {
margin-right: 5px;
margin-left: 5px;
}
#general .date {
font: 15px/24px 'opensans-regular', sans-serif;
margin-top: 6px;
}
/* ------------------------------------------------------------------ */
/* d. course-content Section
/* ------------------------------------------------------------------ */
#course-content {
background: #fff;
padding-top: 0px;
padding-bottom: 0px;
overflow: hidden;
}
#course-content a,
#course-content a:visited {
color: #313131;
}
#course-content a:hover,
#course-content a:focus {
color: #11ABB0;
}
#course-content h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
/*line-height: 40px*/
}
#course-content h1 span {
/*border-bottom: 3px solid #11ABB0;*/
padding-bottom: 6px;
}
#course-content h3 {
font: 25px/30px 'opensans-bold', sans-serif;
}
#course-content pre {
line-height: 20px;
}
#course-content ul {
list-style: none;
padding: 0;
}
#course-content li {
padding-left: 16px;
}
#course-content li:before {
content: "•";
/* Insert content that looks like bullets */
padding-right: 8px;
}
#course-content .header-col {
padding-top: 9px;
}
#course-content .main-col {
padding-right: 10%;
}
.course-content {
margin-bottom: 48px;
padding-bottom: 48px;
border-bottom: 1px solid #E8E8E8;
}
#course-content .info {
font: 16px/24px 'librebaskerville-italic', serif;
color: #6E7881;
margin-bottom: 18px;
margin-top: 9px;
}
#course-content .info span {
margin-right: 5px;
margin-left: 5px;
}
#course-content .date {
font: 15px/24px 'opensans-regular', sans-serif;
margin-top: 6px;
}
/* ------------------------------------------------------------------ */
/* d. project-page Section
/* ------------------------------------------------------------------ */
.project-page-section h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
}
.project-page-section h1 span {
border-bottom: 3px solid #11ABB0;
padding-bottom: 6px;
}
.project-page-section h3 {
font: 25px/30px 'opensans-bold', sans-serif;
}
.project-page-section {
background: #fff;
padding-top: 0px;
padding-bottom: 0px;
overflow: hidden;
text-align: justify;
}
.project-page-section a,
.project-page-section a:visited {
color: #313131;
}
.project-page-section a:hover,
.project-page-section a:focus {
color: #11ABB0;
}
.project-page-section h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
/*line-height: 40px*/
}
.project-page-section h1 span {
/*border-bottom: 3px solid #11ABB0;*/
padding-bottom: 6px;
}
.project-page-section h3 {
font: 25px/30px 'opensans-bold', sans-serif;
}
.project-page-section pre {
line-height: 20px;
}
.project-page-section ul {
list-style: none;
padding: 0;
}
.project-page-section li {
padding-left: 16px;
}
.project-page-section li:before {
content: "•";
/* Insert content that looks like bullets */
padding-right: 8px;
}
.project-page-section .header-col {
padding-top: 9px;
}
.project-page-section .main-col {
padding-right: 10%;
}
.project-page {
margin-bottom: 48px;
padding-bottom: 48px;
border-bottom: 1px solid #E8E8E8;
}
.project-page-section .info {
font: 16px/24px 'librebaskerville-italic', serif;
color: #6E7881;
margin-bottom: 18px;
margin-top: 9px;
}
.project-page-section .info span {
margin-right: 5px;
margin-left: 5px;
}
.project-page-section .date {
font: 15px/24px 'opensans-regular', sans-serif;
margin-top: 6px;
}
.project-page-section .download {
width: 58.33333%;
padding-top: 6px;
}
.project-page-section .main-col {
padding-right: 5%;
}
.project-page-section .download .button {
margin-top: 6px;
background: #444;
color: #fff;
}
.project-page-section .download .button:hover {
background: #11ABB0;
color: #2B2B2B;
}
.project-page-section .download .button i {
margin-right: 15px;
font-size: 20px;
}
/* h. Contact Section
/* ------------------------------------------------------------------ */
#contact {
background: #191919;
padding-top: 96px;
padding-bottom: 102px;
color: #636363;
}
#contact .section-head {
margin-bottom: 42px;
}
#contact a,
#contact a:visited {
color: #11ABB0;
}
#contact a:hover,
#contact a:focus {
color: #fff;
}
#contact h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 3px;
color: #EBEEEE;
margin-bottom: 6px;
}
#contact h1 span {
display: none;
}
#contact h1:before {
font-family: 'FontAwesome';
content: "\f0e0";
padding-right: 10px;
font-size: 72px;
line-height: 72px;
text-align: left;
float: left;
color: #ebeeee;
}
#contact h4 {
font: 16px/24px 'opensans-bold', sans-serif;
color: #EBEEEE;
margin-bottom: 6px;
}
#contact p.lead {
font: 18px/36px 'opensans-light', sans-serif;
padding-right: 3%;
}
#contact .header-col {
padding-top: 6px;
}
/* contact form */
#contact form {
margin-bottom: 30px;
}
#contact label {
font: 15px/24px 'opensans-bold', sans-serif;
margin: 12px 0;
color: #EBEEEE;
display: inline-block;
float: left;
width: 26%;
}
#contact input,
#contact textarea,
#contact select {
padding: 18px 20px;
color: #eee;
background: #373233;
margin-bottom: 42px;
border: 0;
outline: none;
font-size: 15px;
line-height: 24px;
width: 65%;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus {
color: #fff;
background-color: #11ABB0;
}
#contact button.submit {
text-transform: uppercase;
letter-spacing: 3px;
color: #fff;
background: #0D0D0D;
border: none;
cursor: pointer;
height: auto;
display: inline-block;
border-radius: 3px;
margin-left: 26%;
}
#contact button.submit:hover {
color: #0D0D0D;
background: #fff;
}
#contact span.required {
color: #11ABB0;
font-size: 13px;
}
#message-warning,
#message-success {
display: none;
background: #0F0F0F;
padding: 24px 24px;
margin-bottom: 36px;
width: 65%;
margin-left: 26%;
}
#message-warning {
color: #D72828;
}
#message-success {
color: #11ABB0;
}
#message-warning i,
#message-success i {
margin-right: 10px;
}
#image-loader {
display: none;
position: relative;
left: 18px;
top: 17px;
}
/* Twitter Feed */
#twitter {
margin-top: 12px;
padding: 0;
}
#twitter li {
margin: 6px 0px 12px 0;
line-height: 30px;
}
#twitter li span {
display: block;
}
#twitter li b a {
font: 13px/36px 'opensans-regular', Sans-serif;
color: #474747 !important;
border: none;
}
/* ------------------------------------------------------------------ */
/* i. Footer
/* ------------------------------------------------------------------ */
footer {
padding-top: 48px;
margin-bottom: 48px;
color: #303030;
font-size: 14px;
text-align: center;
position: relative;
}
footer a,
footer a:visited {
color: #525252;
}
footer a:hover,
footer a:focus {
color: #fff;
}
/* copyright */
footer .copyright {
margin: 0;
padding: 0;
}
footer .copyright li {
display: inline-block;
margin: 0;
padding: 0;
line-height: 24px;
}
.ie footer .copyright li {
display: inline;
}
footer .copyright li:before {
content: "\2022";
padding-left: 10px;
padding-right: 10px;
color: #095153;
}
footer .copyright li:first-child:before {
display: none;
}
/* social links */
footer .social-links {
margin: 18px 0 30px 0;
padding: 0;
font-size: 30px;
}
footer .social-links li {
display: inline-block;
margin: 0;
padding: 0;
margin-left: 42px;
color: #F06000;
}
footer .social-links li:first-child {
margin-left: 0;
}
/* Go To Top Button */
#go-top {
position: absolute;
top: -24px;
left: 50%;
margin-left: -30px;
}
#go-top a {
text-decoration: none;
border: 0 none;
display: block;
width: 60px;
height: 60px;
background-color: #525252;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
color: #fff;
font-size: 21px;
line-height: 60px;
border-radius: 100%;
}
#go-top a:hover {
background-color: #0F9095;
} | css/teaching-layout.css | body {
background: #fff;
}
/* ------------------------------------------------------------------ */
/* b. Header Styles
/* ------------------------------------------------------------------ */
header {
position: relative;
height: 150px;
min-height: 150px;
width: 100%;
background: #fff;
text-align: center;
overflow: hidden;
}
/* vertically center banner section */
header:before {
content: '';
display: inline-block;
vertical-align: middle;
height: 100%;
}
header .banner {
display: inline-block;
vertical-align: middle;
margin: 0 auto;
width: 85%;
padding-bottom: 30px;
s text-align: center;
}
header .banner-text {
width: 100%;
}
header .banner-text h1 {
font: 90px/1.1em 'opensans-bold', sans-serif;
color: #fff;
letter-spacing: -2px;
margin: 0 auto 18px auto;
text-shadow: 0px 1px 3px rgba(0, 0, 0, .8);
}
header .banner-text h3 {
font: 18px/1.9em 'librebaskerville-regular', serif;
/*color: #A8A8A8;*/
/*color: #363636;*/
color: #fff;
margin: 0 auto;
width: 70%;
text-shadow: 0px 1px 2px rgba(0, 0, 0, .5);
/*background-color: rgba(98, 98, 98, 0.4);*/
}
header .banner-text h3 span,
header .banner-text h3 a {
color: #fff;
}
header .banner-text hr {
width: 60%;
margin: 18px auto 24px auto;
border-color: #2F2D2E;
border-color: rgba(150, 150, 150, .1);
}
/* header social links */
header .social {
margin: 24px 0;
padding: 0;
font-size: 30px;
text-shadow: 0px 1px 2px rgba(0, 0, 0, .8);
}
header .social li {
display: inline-block;
margin: 0 15px;
padding: 0;
}
header .social li a {
color: #fff;
}
header .social li a:hover {
color: #11ABB0;
}
/* scrolldown link */
header .scrolldown a {
position: absolute;
bottom: 30px;
left: 50%;
margin-left: -29px;
color: #fff;
display: block;
height: 42px;
width: 42px;
font-size: 42px;
line-height: 42px;
color: #fff;
border-radius: 100%;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
header .scrolldown a:hover {
color: #11ABB0;
}
/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap ul,
#nav-wrap li,
#nav-wrap a {
margin: 0;
padding: 0;
border: none;
outline: none;
background: #333
}
/* nav-wrap */
#nav-wrap {
font: 12px 'opensans-bold', sans-serif;
width: 100%;
text-transform: uppercase;
letter-spacing: 2.5px;
margin: 0 auto;
z-index: 100;
position: fixed;
left: 0;
top: 0;
}
.opaque {
background-color: #333;
}
/* hide toggle button */
#nav-wrap>a.mobile-btn {
display: none;
}
ul#nav {
min-height: 48px;
width: auto;
/* center align the menu */
text-align: center;
}
ul#nav li {
position: relative;
list-style: none;
height: 48px;
display: inline-block;
}
/* Links */
ul#nav li a {
/* 8px padding top + 8px padding bottom + 32px line-height = 48px */
display: inline-block;
padding: 8px 13px;
line-height: 32px;
text-decoration: none;
text-align: left;
color: #fff;
-webkit-transition: color .2s ease-in-out;
-moz-transition: color .2s ease-in-out;
-o-transition: color .2s ease-in-out;
-ms-transition: color .2s ease-in-out;
transition: color .2s ease-in-out;
}
ul#nav li a:active {
background-color: transparent !important;
}
ul#nav li.current a {
color: #F06000;
}
ul#bullet {
min-height: 10px;
width: auto;
text-align: left;
}
ul#bullet li {
position: relative;
list-style: none outside;
margin-left: 1em;
height: 10px;
display: list-item;
}
/* Links */
ul#bullet li a {
/* 8px padding top + 8px padding bottom + 32px line-height = 48px */
display: inline-block;
padding: 8px 13px;
line-height: 10px;
text-decoration: none;
text-align: left;
color: #fff;
-webkit-transition: color .2s ease-in-out;
-moz-transition: color .2s ease-in-out;
-o-transition: color .2s ease-in-out;
-ms-transition: color .2s ease-in-out;
transition: color .2s ease-in-out;
}
ul#bullet li a:active {
background-color: transparent !important;
}
ul#bullet li.current a {
color: #F06000;
}
/* ------------------------------------------------------------------ */
/* d. general Section
/* ------------------------------------------------------------------ */
#general {
background: #fff;
padding-top: 0px;
padding-bottom: 0px;
overflow: hidden;
}
#general a,
#general a:visited {
color: #313131;
}
#general a:hover,
#general a:focus {
color: #11ABB0;
}
#general h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
}
#general h1 span {
border-bottom: 3px solid #11ABB0;
padding-bottom: 6px;
}
#general h3 {
font: 25px/30px 'opensans-bold', sans-serif;
}
#general .header-col {
padding-top: 9px;
}
#general .main-col {
padding-right: 10%;
}
.general {
margin-bottom: 48px;
padding-bottom: 48px;
border-bottom: 1px solid #E8E8E8;
}
#general .info {
font: 16px/24px 'librebaskerville-italic', serif;
color: #6E7881;
margin-bottom: 18px;
margin-top: 9px;
}
#general .info span {
margin-right: 5px;
margin-left: 5px;
}
#general .date {
font: 15px/24px 'opensans-regular', sans-serif;
margin-top: 6px;
}
/* ------------------------------------------------------------------ */
/* d. course-content Section
/* ------------------------------------------------------------------ */
#course-content {
background: #fff;
padding-top: 0px;
padding-bottom: 0px;
overflow: hidden;
}
#course-content a,
#course-content a:visited {
color: #313131;
}
#course-content a:hover,
#course-content a:focus {
color: #11ABB0;
}
#course-content h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
/*line-height: 40px*/
}
#course-content h1 span {
/*border-bottom: 3px solid #11ABB0;*/
padding-bottom: 6px;
}
#course-content h3 {
font: 25px/30px 'opensans-bold', sans-serif;
}
#course-content pre {
line-height: 20px;
}
#course-content ul {
list-style: none;
padding: 0;
}
#course-content li {
padding-left: 16px;
}
#course-content li:before {
content: "•";
/* Insert content that looks like bullets */
padding-right: 8px;
}
#course-content .header-col {
padding-top: 9px;
}
#course-content .main-col {
padding-right: 10%;
}
.course-content {
margin-bottom: 48px;
padding-bottom: 48px;
border-bottom: 1px solid #E8E8E8;
}
#course-content .info {
font: 16px/24px 'librebaskerville-italic', serif;
color: #6E7881;
margin-bottom: 18px;
margin-top: 9px;
}
#course-content .info span {
margin-right: 5px;
margin-left: 5px;
}
#course-content .date {
font: 15px/24px 'opensans-regular', sans-serif;
margin-top: 6px;
}
/* ------------------------------------------------------------------ */
/* d. project-page Section
/* ------------------------------------------------------------------ */
.project-page-section h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
}
.project-page-section h1 span {
border-bottom: 3px solid #11ABB0;
padding-bottom: 6px;
}
.project-page-section h3 {
font: 25px/30px 'opensans-bold', sans-serif;
}
.project-page-section {
background: #fff;
padding-top: 0px;
padding-bottom: 0px;
overflow: hidden;
text-align: justify;
}
.project-page-section a,
.project-page-section a:visited {
color: #313131;
}
.project-page-section a:hover,
.project-page-section a:focus {
color: #11ABB0;
}
.project-page-section h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
/*line-height: 40px*/
}
.project-page-section h1 span {
/*border-bottom: 3px solid #11ABB0;*/
padding-bottom: 6px;
}
.project-page-section h3 {
font: 25px/30px 'opensans-bold', sans-serif;
}
.project-page-section pre {
line-height: 20px;
}
.project-page-section ul {
list-style: none;
padding: 0;
}
.project-page-section li {
padding-left: 16px;
}
.project-page-section li:before {
content: "•";
/* Insert content that looks like bullets */
padding-right: 8px;
}
.project-page-section .header-col {
padding-top: 9px;
}
.project-page-section .main-col {
padding-right: 10%;
}
.project-page {
margin-bottom: 48px;
padding-bottom: 48px;
border-bottom: 1px solid #E8E8E8;
}
.project-page-section .info {
font: 16px/24px 'librebaskerville-italic', serif;
color: #6E7881;
margin-bottom: 18px;
margin-top: 9px;
}
.project-page-section .info span {
margin-right: 5px;
margin-left: 5px;
}
.project-page-section .date {
font: 15px/24px 'opensans-regular', sans-serif;
margin-top: 6px;
}
.project-page-section .download {
width: 58.33333%;
padding-top: 6px;
}
.project-page-section .main-col {
padding-right: 5%;
}
.project-page-section .download .button {
margin-top: 6px;
background: #444;
color: #fff;
}
.project-page-section .download .button:hover {
background: #11ABB0;
color: #2B2B2B;
}
.project-page-section .download .button i {
margin-right: 15px;
font-size: 20px;
}
/* h. Contact Section
/* ------------------------------------------------------------------ */
#contact {
background: #191919;
padding-top: 96px;
padding-bottom: 102px;
color: #636363;
}
#contact .section-head {
margin-bottom: 42px;
}
#contact a,
#contact a:visited {
color: #11ABB0;
}
#contact a:hover,
#contact a:focus {
color: #fff;
}
#contact h1 {
font: 18px/24px 'opensans-bold', sans-serif;
text-transform: uppercase;
letter-spacing: 3px;
color: #EBEEEE;
margin-bottom: 6px;
}
#contact h1 span {
display: none;
}
#contact h1:before {
font-family: 'FontAwesome';
content: "\f0e0";
padding-right: 10px;
font-size: 72px;
line-height: 72px;
text-align: left;
float: left;
color: #ebeeee;
}
#contact h4 {
font: 16px/24px 'opensans-bold', sans-serif;
color: #EBEEEE;
margin-bottom: 6px;
}
#contact p.lead {
font: 18px/36px 'opensans-light', sans-serif;
padding-right: 3%;
}
#contact .header-col {
padding-top: 6px;
}
/* contact form */
#contact form {
margin-bottom: 30px;
}
#contact label {
font: 15px/24px 'opensans-bold', sans-serif;
margin: 12px 0;
color: #EBEEEE;
display: inline-block;
float: left;
width: 26%;
}
#contact input,
#contact textarea,
#contact select {
padding: 18px 20px;
color: #eee;
background: #373233;
margin-bottom: 42px;
border: 0;
outline: none;
font-size: 15px;
line-height: 24px;
width: 65%;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus {
color: #fff;
background-color: #11ABB0;
}
#contact button.submit {
text-transform: uppercase;
letter-spacing: 3px;
color: #fff;
background: #0D0D0D;
border: none;
cursor: pointer;
height: auto;
display: inline-block;
border-radius: 3px;
margin-left: 26%;
}
#contact button.submit:hover {
color: #0D0D0D;
background: #fff;
}
#contact span.required {
color: #11ABB0;
font-size: 13px;
}
#message-warning,
#message-success {
display: none;
background: #0F0F0F;
padding: 24px 24px;
margin-bottom: 36px;
width: 65%;
margin-left: 26%;
}
#message-warning {
color: #D72828;
}
#message-success {
color: #11ABB0;
}
#message-warning i,
#message-success i {
margin-right: 10px;
}
#image-loader {
display: none;
position: relative;
left: 18px;
top: 17px;
}
/* Twitter Feed */
#twitter {
margin-top: 12px;
padding: 0;
}
#twitter li {
margin: 6px 0px 12px 0;
line-height: 30px;
}
#twitter li span {
display: block;
}
#twitter li b a {
font: 13px/36px 'opensans-regular', Sans-serif;
color: #474747 !important;
border: none;
}
/* ------------------------------------------------------------------ */
/* i. Footer
/* ------------------------------------------------------------------ */
footer {
padding-top: 48px;
margin-bottom: 48px;
color: #303030;
font-size: 14px;
text-align: center;
position: relative;
}
footer a,
footer a:visited {
color: #525252;
}
footer a:hover,
footer a:focus {
color: #fff;
}
/* copyright */
footer .copyright {
margin: 0;
padding: 0;
}
footer .copyright li {
display: inline-block;
margin: 0;
padding: 0;
line-height: 24px;
}
.ie footer .copyright li {
display: inline;
}
footer .copyright li:before {
content: "\2022";
padding-left: 10px;
padding-right: 10px;
color: #095153;
}
footer .copyright li:first-child:before {
display: none;
}
/* social links */
footer .social-links {
margin: 18px 0 30px 0;
padding: 0;
font-size: 30px;
}
footer .social-links li {
display: inline-block;
margin: 0;
padding: 0;
margin-left: 42px;
color: #F06000;
}
footer .social-links li:first-child {
margin-left: 0;
}
/* Go To Top Button */
#go-top {
position: absolute;
top: -24px;
left: 50%;
margin-left: -30px;
}
#go-top a {
text-decoration: none;
border: 0 none;
display: block;
width: 60px;
height: 60px;
background-color: #525252;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
color: #fff;
font-size: 21px;
line-height: 60px;
border-radius: 100%;
}
#go-top a:hover {
background-color: #0F9095;
} | 0.281208 | 0.034619 |
.hender_dh .mor:first-child a{
color: #ff0000;
}
.dianh{
font-size: 20px;
color: #000;
line-height:100px;
}
.banner{
width: 100%;
height: auto;
background-size: 100% auto;
}
.banner img{
width: 100%;
height: auto;
}
.banner img:nth-child(2){
display: none;
}
.banner img:nth-child(3){
display: none;
}
.banner img:nth-child(4){
display: none;
}
.banner img:nth-child(5){
display: none;
}
.banner img:nth-child(6){
display: none;
}
/*头部 结束*/
/*内容 开始*/
.product{
width: 1000px;
height: auto;
margin:50px auto;
font-size: 0;
border: 2px solid #1aa6e4;
}
.product a{
display: inline-block;
width: 200px;
height: 200px;
margin:30px auto;
}
.product_tb{
width: 200px;
height: 200px;
border-radius: 200px;
transition:all 0.5s ease;
}
.product_tb:hover{
border-radius: 0px;
}
.product a:nth-child(1n) div{
background-color: #fff;
/* border: 2px solid #1aa6e4;
box-shadow: 0px 0px 8px 8px #deeef5 inset;*/
}
#product_hjzx_mor{
border-radius: 0px;
}
.product a:nth-child(1n) div img{
width: 50%;
height: auto;
margin: 0 auto;
}
.product a:nth-child(1n) div:hover img{
transition:all 0.5s ease-in;
transform: rotateY(360deg);
}
.product a:nth-child(1n) div h3{
font-size: 20px;
text-align: center;
color: #333;
margin-top: 20px;
}
.product a:nth-child(1n) div p{
font-size: 14px;
text-align: center;
color: #333;
margin-top: 8px;
}
.dianh{
margin-top: 50px;
width: 1200px;
height: 750px;
margin:0 auto;
background: url(../images/400js.jpg);
background-size: ;
background-repeat: no-repeat;
}
.wyx{
width: 1000px;
height: 750px;
margin: 40px auto;
background: url(../images/wyx_img.png);
background-size: 100%;
background-repeat: no-repeat;
}
.product_zxkf_bt{
text-align: center;
font-size: 30px;
color: #333;
margin-top: 40px;
margin-bottom: 30px;
}
.cpzxkf{
width: 1200px;
height: auto;
margin: 0 auto;
position: relative;
}
.product_diyige{
width: 600px;
height: 400px;
}
.cpzxkf div:first-child{
width: 600px;
height: 400px;
background: url(../images/zxkf_10.png);
}
.cpzxkf div{
display: inline-block;
}
.cpzxkf div:nth-child(2){
position: absolute;
left: 54%;
top: 20%;
}
.cpzxkf div p{
font-size: 26px;
color: #333;
line-height: 60px;
}
.phone h3{
font-size: 30px;
margin-top: 50px;
text-align: center;
}
.phone p{
font-size: 16px;
margin-top: 20px;
text-align: center;
}
.product_dierge{
width: 1200px;
height: auto;
margin:40px auto;
text-align: center;
}
.product_dierge h3{
font-size: 30px;
color: #333;
}
.product_dierge p{
font-size: 16px;
color: #333;
}
.product_dierge div{
width: 1000px;
height: auto;
margin: 40px auto;
}
.function{
margin-top: 50px;
}
.function h4{
font-size: 30px;
text-align: center;
}
.function div{
width: 1200px;
height: 116px;
margin: 30px auto;
background: url(../images/400js2.jpg);
}
.product_wyx_er{
width: 100%;
height: auto;
text-align: center;
}
.product_wyx_er h3{
font-size: 30px;
margin-top: 40px;
}
.product_wyx_er .xian{
width: 82px;
height: 2px;
background-color: #15a1df;
margin: 10px auto;
}
.product_wyx_er_img{
width: 1000px;
height: 620px;
margin: 40px auto;
}
.product_scrm{
width: 100%;
height: auto;
margin-top: 20px;
}
.product_srm{
width: 1200px;
height: auto;
margin:0 auto;
}
.product_srm ul:nth-child(1){
width: 264px;
height: auto;
margin: 0 auto;
transform: translate(3 px,0px);
}
.product_srm ul:nth-child(2){
position: relative;
width: 400px;
height: auto;
margin: 0 auto;
transition:all 0.5s ease;
}
.product_srm ul li a{
font-size: 20px;
line-height: 130px;
}
.product_srm ul{
position: relative;
}
.product_srm ul:nth-child(3){
width: 540px;
margin:0 auto;
transform:translate(4px,-66px);
transition:all 0.5s ease;
}
.product_srm ul:nth-child(4){
width: 670px;
margin:0 auto;
transform:translate(2px,-132px);
}
.product_srm ul li{
position: relative;
width: 130px;
height: 130px;
text-align: center;
text-align: 130px;
display: inline-block;
transition:all 0.7s ease;
background-size: cover;
}
.product_srm ul li:hover{
transform:rotate(360deg);
}
.product_srm ul .langs{
background: url(../images/crm_06.png);
background-size: cover;
}
.product_srm ul .langs a{
color: #fff;
}
.product_srm ul .huns{
background: url(../images/crm_03.png);
background-size: cover;
}
.product_scrm .product_srm ul .huns a{
color: #15a1df;
}
.product_srm ul:nth-child(2){
transform:translate(4px,-66px);
}
.product_wyx_bt{
text-align: center;
width: 100%;
height: auto;
}
.product_wyx_bt h3{
font-size: 30px;
margin-top: 30px;
color: #333;
}
.product_wyx_bt .xian{
width: 82px;
height: 2px;
margin: 10px auto;
background-color: #ff0000;
}
.product_wyx_bt p{
font-size: 16px;
color: #333;
}
.product_fgk{
width: 100%;
height: 100px;
background-color: #ff0000;
}
.product_fgk>div{
width: 810px;
height: 100px;
margin: 0 auto;
}
.product_fgk h4{
font-size: 26px;
color: #FFF;
margin-top: 10px;
}
.product_fgk p{
font-size: 26px;
color: #FFF;
}
.product_fgk p span{
font-size: 40px;
color: #FFF;
}
.product_fgk_nr div{
display: inline-block;
}
.product_fgk_nr div a{
display: inline-block;
width: 258px;
height: 60px;
font-size: 30px;
text-align: center;
line-height: 66px;
color: #fff;
border: 1px solid #fff;
}
.product_fgk_nr div:nth-child(2){
margin-left: 60px;
transform:translate(0,-16px);
}
.product_scrm_ner{
position: relative;
width: 1180px;
height: 2010px;
margin: 0 auto;
background:url(../images/scrm_03.png);
background-size: cover;
}
.product_scrm_ner .wosdiyi{
margin-top: 90px;
}
.product_scrm_ner .product_scrm_ner_bt{
font-size: 26px;
margin-top: 10px;
color: #333;
}
.product_scrm_ner .product_scrm_ner_bt2{
font-size: 16px;
color: #333;
}
.product_jt{
margin-top: 54px;
}
.product_scrm_ner_1{
position: absolute;
top: 3%;
left: 2%;
}
.product_scrm_ner_3{
position: absolute;
top: 72%;
left: 4%;
}
.product_scrm_ner_2{
position: absolute;
top: 37%;
right: 4%;
}
.product_scrm_ner_2 p{
margin-top:
}
.product_zxkf_nr{
width: 100%;
height: auto;
}
.product_zxkf_nr{
text-align: center;
width:1000px;
height: auto;
margin: 0px auto;
background-size: 100% auto;
}
.product_zxkf_nr img{
width: 100%;
height: auto;
margin-top: 30px;
}
>div:nth-child(1){
text-align:center;
}
.product_zxkf_yi h3{
font-size: 20px;
color: #333;
text-align: center;
font-weight: bold;
}
.product_zxkf_yi .xian{
width: 82px;
height: 2px;
margin:10px auto;
background-color: #ff0000;
}
.product_zxkf_yi p{
font-size: 14px;
color: #333;
text-align: center;
}
.product_zxkf_kuan{
width: 100%;
height: auto;
background-color: #FFF;
text-align: center;
padding-top: 20px;
}
.product_zxkf_kuan h3{
font-size: 20px;
color: #333;
font-weight: bold;
}
.product_zxkf_er{
width: 50%;
height: auto;
margin: 30px auto;
}
.product_zxkf_er img{
width: 100%;
height: auto;
margin: 0 auto;
}
.fgk{
position:relative;
width: 100%;
height: 80px;
background-color:#1aa6e4;
margin-top: 40px;
}
.fgk div{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:666px;
height:auto;
font-size:20px;
color:#fff;
}
.fgk div a{
margin-top:20px;
padding:10px 66px;
border:1px solid #fff;
color:#fff;
transition:all 0.5s ease;
}
.fgk div a:hover{
background-color:#fff;
color:#1aa6e4;
border-radius: 20px;
}
.fgk div span{
margin-left:230px;
}
.product_zxkf_kuan p{
font-size: 14px;
color: #333;
}
.product_zxkf_kuan div{
width: 82px;
height: 2px;
margin: 10px auto;
background-color: #ff0000;
}
.product_zxkf_san{
text-align: center;
}
.product_zxkf_san h3{
font-size: 20px;
margin-top: 50px;
color: #333;
font-weight: bold;
}
.product_zxkf_san p{
font-size: 14px;
color: #333;
}
.product_zxkf_san .xian{
width: 82px;
height: 2px;
margin: 10px auto;
background-color: #ff0000;
}
.product_zxkf_er_img{
width: 50%;
height:auto;
margin: 20px auto;
}
.product_zxkf_er_img img{
width: 100%;
height: auto;
}
.product_zxkf_ldtp{
width: 60%;
height: auto;
margin: 0 auto;
text-align: center;
}
.product_zxkf_ldtp h3{
font-size: 20px;
color: #333;
margin-top: 50px;
font-weight: bold;
}
.product_zxkf_ldtp .xian{
width: 82px;
height: 2px;
background-color: #ff0000;
margin:10px auto;
}
.product_zxkf_ldtp p{
font-size: 14px;
color: #333;
}
.product_zxkf_ldtpimg{
width: 55%;
height: auto;
margin: 0 auto;
}
.product_zxkf_ldtpimg img{
width: 100%;
height: auto;
margin: 30px auto;
}
/*内容 结束*/
/*底部 开始*/
@media screen and (min-width: 1200px) and (max-width: 1400px){
.banner{
height: 350px;
}
.product_zxkf_nr{
width: 1000px;
}
.product_zxkf_er{
width: 1000px;
}
.product_zxkf_er_img{
width: 1000px;
}
.product_zxkf_ldtpimg{
width: 1000px;
}
div>.product_zxkf_yi{
height: 630px;
}
.product a{
margin: 20px 2%;
width: 120px;
height: 120px;
}
.product_tb{
width: 100%;
height: 100%;
}
.product a:nth-child(1n) div h3{
margin-top: 10px;
}
.product{
width: 760px;
}
.product a:nth-child(1n) div p{
font-size: 12px;
}
.product a:nth-child(1n) div h3{
font-size: 18px;
}
.product_zxkf_kuan{
margin-top: 0;
}
div>.product_zxkf_yi{
margin: 70px auto 0;
}
.product_zxkf_er_img{
margin:30px auto;
}
.product_zxkf_ldtpimg img{
margin: 30px auto;
}
.product_zxkf_ldtp h3{
margin-top: 30px;
}
}
@media screen and (min-width: 750px) and (max-width: 970px){
.product_tb{
width: 150px;
height: 150px;
}
.product a:nth-child(1n) div h3{
margin-top: 10px;
}
.product a:nth-child(1n) div p{
margin-top: 4px;
font-size: 14px;
}
.product a{
width: 150px;
height: 150px;
}
.product{
width:750px;
}
.product_scrm_wenzi div h4{
font-size: 20px;
}
.product_scrm_wenzi div p{
font-size: 14px;
margin-top: 20px;
}
.product_zxkf_nr{
width: 80%;
height: auto;
}
.product_zxkf_er{
width: 80%;
}
.product_zxkf_kuan p{
width: 70%;
margin: 0 auto;
}
.product_zxkf_er_img{
width: 80%;
height: auto;
}
.product_zxkf_ldtpimg{
width: 80%;
}
.product_zxkf_ldtp h3{
font-size: 20px;
}
.product_zxkf_er img{
width: 100%;
}
.product_zxkf_kuan h3{
font-size: 20px;
}
.product_zxkf_san p{
width: 70%;
margin: 0 auto;
}
}
@media screen and (min-width: 970px) and (max-width: 1200px){
.product_tb{
width: 160px;
height: 160px;
}
.product a:nth-child(1n) div h3{
margin-top: 10px;
}
.product a:nth-child(1n) div p{
margin-top: 4px;
}
.product a{
width: 160px;
height: 160px;
}
.product{
width: 80%;
}
.product_zxkf_nr{
width: 80%;
}
.product_zxkf_kuan p{
width: 80%;
margin: 0 auto;
}
.product_zxkf_er_img{
width: 80%;
}
.product_zxkf_ldtp h3{
margin-top: 30px;
}
.product_zxkf_er{
width: 80%;
}
.product_zxkf_ldtpimg{
width: 80%;
}
.product_zxkf_ldtp{
width: 80%;
}
}
@media screen and (min-width: 1401px) and (max-width: 1500px){
.product_zxkf_nr{
width: 900px;
}
.product_zxkf_er{
width: 900px;
}
.product_zxkf_er_img {
width: 900px;
}
.product_zxkf_ldtpimg{
width: 900px;
}
.fgk div span{
margin-left: 230px;
}
}
@media screen and (max-width: 749px){
.banner img:nth-child(1){
display: none;
}
.banner img:nth-child(2){
display: block;
}
} | src/main/webapp/templets/1/ec85/css/ec_product_hjzx.css | .hender_dh .mor:first-child a{
color: #ff0000;
}
.dianh{
font-size: 20px;
color: #000;
line-height:100px;
}
.banner{
width: 100%;
height: auto;
background-size: 100% auto;
}
.banner img{
width: 100%;
height: auto;
}
.banner img:nth-child(2){
display: none;
}
.banner img:nth-child(3){
display: none;
}
.banner img:nth-child(4){
display: none;
}
.banner img:nth-child(5){
display: none;
}
.banner img:nth-child(6){
display: none;
}
/*头部 结束*/
/*内容 开始*/
.product{
width: 1000px;
height: auto;
margin:50px auto;
font-size: 0;
border: 2px solid #1aa6e4;
}
.product a{
display: inline-block;
width: 200px;
height: 200px;
margin:30px auto;
}
.product_tb{
width: 200px;
height: 200px;
border-radius: 200px;
transition:all 0.5s ease;
}
.product_tb:hover{
border-radius: 0px;
}
.product a:nth-child(1n) div{
background-color: #fff;
/* border: 2px solid #1aa6e4;
box-shadow: 0px 0px 8px 8px #deeef5 inset;*/
}
#product_hjzx_mor{
border-radius: 0px;
}
.product a:nth-child(1n) div img{
width: 50%;
height: auto;
margin: 0 auto;
}
.product a:nth-child(1n) div:hover img{
transition:all 0.5s ease-in;
transform: rotateY(360deg);
}
.product a:nth-child(1n) div h3{
font-size: 20px;
text-align: center;
color: #333;
margin-top: 20px;
}
.product a:nth-child(1n) div p{
font-size: 14px;
text-align: center;
color: #333;
margin-top: 8px;
}
.dianh{
margin-top: 50px;
width: 1200px;
height: 750px;
margin:0 auto;
background: url(../images/400js.jpg);
background-size: ;
background-repeat: no-repeat;
}
.wyx{
width: 1000px;
height: 750px;
margin: 40px auto;
background: url(../images/wyx_img.png);
background-size: 100%;
background-repeat: no-repeat;
}
.product_zxkf_bt{
text-align: center;
font-size: 30px;
color: #333;
margin-top: 40px;
margin-bottom: 30px;
}
.cpzxkf{
width: 1200px;
height: auto;
margin: 0 auto;
position: relative;
}
.product_diyige{
width: 600px;
height: 400px;
}
.cpzxkf div:first-child{
width: 600px;
height: 400px;
background: url(../images/zxkf_10.png);
}
.cpzxkf div{
display: inline-block;
}
.cpzxkf div:nth-child(2){
position: absolute;
left: 54%;
top: 20%;
}
.cpzxkf div p{
font-size: 26px;
color: #333;
line-height: 60px;
}
.phone h3{
font-size: 30px;
margin-top: 50px;
text-align: center;
}
.phone p{
font-size: 16px;
margin-top: 20px;
text-align: center;
}
.product_dierge{
width: 1200px;
height: auto;
margin:40px auto;
text-align: center;
}
.product_dierge h3{
font-size: 30px;
color: #333;
}
.product_dierge p{
font-size: 16px;
color: #333;
}
.product_dierge div{
width: 1000px;
height: auto;
margin: 40px auto;
}
.function{
margin-top: 50px;
}
.function h4{
font-size: 30px;
text-align: center;
}
.function div{
width: 1200px;
height: 116px;
margin: 30px auto;
background: url(../images/400js2.jpg);
}
.product_wyx_er{
width: 100%;
height: auto;
text-align: center;
}
.product_wyx_er h3{
font-size: 30px;
margin-top: 40px;
}
.product_wyx_er .xian{
width: 82px;
height: 2px;
background-color: #15a1df;
margin: 10px auto;
}
.product_wyx_er_img{
width: 1000px;
height: 620px;
margin: 40px auto;
}
.product_scrm{
width: 100%;
height: auto;
margin-top: 20px;
}
.product_srm{
width: 1200px;
height: auto;
margin:0 auto;
}
.product_srm ul:nth-child(1){
width: 264px;
height: auto;
margin: 0 auto;
transform: translate(3 px,0px);
}
.product_srm ul:nth-child(2){
position: relative;
width: 400px;
height: auto;
margin: 0 auto;
transition:all 0.5s ease;
}
.product_srm ul li a{
font-size: 20px;
line-height: 130px;
}
.product_srm ul{
position: relative;
}
.product_srm ul:nth-child(3){
width: 540px;
margin:0 auto;
transform:translate(4px,-66px);
transition:all 0.5s ease;
}
.product_srm ul:nth-child(4){
width: 670px;
margin:0 auto;
transform:translate(2px,-132px);
}
.product_srm ul li{
position: relative;
width: 130px;
height: 130px;
text-align: center;
text-align: 130px;
display: inline-block;
transition:all 0.7s ease;
background-size: cover;
}
.product_srm ul li:hover{
transform:rotate(360deg);
}
.product_srm ul .langs{
background: url(../images/crm_06.png);
background-size: cover;
}
.product_srm ul .langs a{
color: #fff;
}
.product_srm ul .huns{
background: url(../images/crm_03.png);
background-size: cover;
}
.product_scrm .product_srm ul .huns a{
color: #15a1df;
}
.product_srm ul:nth-child(2){
transform:translate(4px,-66px);
}
.product_wyx_bt{
text-align: center;
width: 100%;
height: auto;
}
.product_wyx_bt h3{
font-size: 30px;
margin-top: 30px;
color: #333;
}
.product_wyx_bt .xian{
width: 82px;
height: 2px;
margin: 10px auto;
background-color: #ff0000;
}
.product_wyx_bt p{
font-size: 16px;
color: #333;
}
.product_fgk{
width: 100%;
height: 100px;
background-color: #ff0000;
}
.product_fgk>div{
width: 810px;
height: 100px;
margin: 0 auto;
}
.product_fgk h4{
font-size: 26px;
color: #FFF;
margin-top: 10px;
}
.product_fgk p{
font-size: 26px;
color: #FFF;
}
.product_fgk p span{
font-size: 40px;
color: #FFF;
}
.product_fgk_nr div{
display: inline-block;
}
.product_fgk_nr div a{
display: inline-block;
width: 258px;
height: 60px;
font-size: 30px;
text-align: center;
line-height: 66px;
color: #fff;
border: 1px solid #fff;
}
.product_fgk_nr div:nth-child(2){
margin-left: 60px;
transform:translate(0,-16px);
}
.product_scrm_ner{
position: relative;
width: 1180px;
height: 2010px;
margin: 0 auto;
background:url(../images/scrm_03.png);
background-size: cover;
}
.product_scrm_ner .wosdiyi{
margin-top: 90px;
}
.product_scrm_ner .product_scrm_ner_bt{
font-size: 26px;
margin-top: 10px;
color: #333;
}
.product_scrm_ner .product_scrm_ner_bt2{
font-size: 16px;
color: #333;
}
.product_jt{
margin-top: 54px;
}
.product_scrm_ner_1{
position: absolute;
top: 3%;
left: 2%;
}
.product_scrm_ner_3{
position: absolute;
top: 72%;
left: 4%;
}
.product_scrm_ner_2{
position: absolute;
top: 37%;
right: 4%;
}
.product_scrm_ner_2 p{
margin-top:
}
.product_zxkf_nr{
width: 100%;
height: auto;
}
.product_zxkf_nr{
text-align: center;
width:1000px;
height: auto;
margin: 0px auto;
background-size: 100% auto;
}
.product_zxkf_nr img{
width: 100%;
height: auto;
margin-top: 30px;
}
>div:nth-child(1){
text-align:center;
}
.product_zxkf_yi h3{
font-size: 20px;
color: #333;
text-align: center;
font-weight: bold;
}
.product_zxkf_yi .xian{
width: 82px;
height: 2px;
margin:10px auto;
background-color: #ff0000;
}
.product_zxkf_yi p{
font-size: 14px;
color: #333;
text-align: center;
}
.product_zxkf_kuan{
width: 100%;
height: auto;
background-color: #FFF;
text-align: center;
padding-top: 20px;
}
.product_zxkf_kuan h3{
font-size: 20px;
color: #333;
font-weight: bold;
}
.product_zxkf_er{
width: 50%;
height: auto;
margin: 30px auto;
}
.product_zxkf_er img{
width: 100%;
height: auto;
margin: 0 auto;
}
.fgk{
position:relative;
width: 100%;
height: 80px;
background-color:#1aa6e4;
margin-top: 40px;
}
.fgk div{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:666px;
height:auto;
font-size:20px;
color:#fff;
}
.fgk div a{
margin-top:20px;
padding:10px 66px;
border:1px solid #fff;
color:#fff;
transition:all 0.5s ease;
}
.fgk div a:hover{
background-color:#fff;
color:#1aa6e4;
border-radius: 20px;
}
.fgk div span{
margin-left:230px;
}
.product_zxkf_kuan p{
font-size: 14px;
color: #333;
}
.product_zxkf_kuan div{
width: 82px;
height: 2px;
margin: 10px auto;
background-color: #ff0000;
}
.product_zxkf_san{
text-align: center;
}
.product_zxkf_san h3{
font-size: 20px;
margin-top: 50px;
color: #333;
font-weight: bold;
}
.product_zxkf_san p{
font-size: 14px;
color: #333;
}
.product_zxkf_san .xian{
width: 82px;
height: 2px;
margin: 10px auto;
background-color: #ff0000;
}
.product_zxkf_er_img{
width: 50%;
height:auto;
margin: 20px auto;
}
.product_zxkf_er_img img{
width: 100%;
height: auto;
}
.product_zxkf_ldtp{
width: 60%;
height: auto;
margin: 0 auto;
text-align: center;
}
.product_zxkf_ldtp h3{
font-size: 20px;
color: #333;
margin-top: 50px;
font-weight: bold;
}
.product_zxkf_ldtp .xian{
width: 82px;
height: 2px;
background-color: #ff0000;
margin:10px auto;
}
.product_zxkf_ldtp p{
font-size: 14px;
color: #333;
}
.product_zxkf_ldtpimg{
width: 55%;
height: auto;
margin: 0 auto;
}
.product_zxkf_ldtpimg img{
width: 100%;
height: auto;
margin: 30px auto;
}
/*内容 结束*/
/*底部 开始*/
@media screen and (min-width: 1200px) and (max-width: 1400px){
.banner{
height: 350px;
}
.product_zxkf_nr{
width: 1000px;
}
.product_zxkf_er{
width: 1000px;
}
.product_zxkf_er_img{
width: 1000px;
}
.product_zxkf_ldtpimg{
width: 1000px;
}
div>.product_zxkf_yi{
height: 630px;
}
.product a{
margin: 20px 2%;
width: 120px;
height: 120px;
}
.product_tb{
width: 100%;
height: 100%;
}
.product a:nth-child(1n) div h3{
margin-top: 10px;
}
.product{
width: 760px;
}
.product a:nth-child(1n) div p{
font-size: 12px;
}
.product a:nth-child(1n) div h3{
font-size: 18px;
}
.product_zxkf_kuan{
margin-top: 0;
}
div>.product_zxkf_yi{
margin: 70px auto 0;
}
.product_zxkf_er_img{
margin:30px auto;
}
.product_zxkf_ldtpimg img{
margin: 30px auto;
}
.product_zxkf_ldtp h3{
margin-top: 30px;
}
}
@media screen and (min-width: 750px) and (max-width: 970px){
.product_tb{
width: 150px;
height: 150px;
}
.product a:nth-child(1n) div h3{
margin-top: 10px;
}
.product a:nth-child(1n) div p{
margin-top: 4px;
font-size: 14px;
}
.product a{
width: 150px;
height: 150px;
}
.product{
width:750px;
}
.product_scrm_wenzi div h4{
font-size: 20px;
}
.product_scrm_wenzi div p{
font-size: 14px;
margin-top: 20px;
}
.product_zxkf_nr{
width: 80%;
height: auto;
}
.product_zxkf_er{
width: 80%;
}
.product_zxkf_kuan p{
width: 70%;
margin: 0 auto;
}
.product_zxkf_er_img{
width: 80%;
height: auto;
}
.product_zxkf_ldtpimg{
width: 80%;
}
.product_zxkf_ldtp h3{
font-size: 20px;
}
.product_zxkf_er img{
width: 100%;
}
.product_zxkf_kuan h3{
font-size: 20px;
}
.product_zxkf_san p{
width: 70%;
margin: 0 auto;
}
}
@media screen and (min-width: 970px) and (max-width: 1200px){
.product_tb{
width: 160px;
height: 160px;
}
.product a:nth-child(1n) div h3{
margin-top: 10px;
}
.product a:nth-child(1n) div p{
margin-top: 4px;
}
.product a{
width: 160px;
height: 160px;
}
.product{
width: 80%;
}
.product_zxkf_nr{
width: 80%;
}
.product_zxkf_kuan p{
width: 80%;
margin: 0 auto;
}
.product_zxkf_er_img{
width: 80%;
}
.product_zxkf_ldtp h3{
margin-top: 30px;
}
.product_zxkf_er{
width: 80%;
}
.product_zxkf_ldtpimg{
width: 80%;
}
.product_zxkf_ldtp{
width: 80%;
}
}
@media screen and (min-width: 1401px) and (max-width: 1500px){
.product_zxkf_nr{
width: 900px;
}
.product_zxkf_er{
width: 900px;
}
.product_zxkf_er_img {
width: 900px;
}
.product_zxkf_ldtpimg{
width: 900px;
}
.fgk div span{
margin-left: 230px;
}
}
@media screen and (max-width: 749px){
.banner img:nth-child(1){
display: none;
}
.banner img:nth-child(2){
display: block;
}
} | 0.207496 | 0.104981 |
html,
body,
.main {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#container {
min-width: 1100px;
min-height: 560px;
}
::-webkit-scrollbar {
width: 10px;
height: 7px;
}
::-webkit-scrollbar-button {
width: 10px;
height: 1px;
}
::-webkit-scrollbar-thumb {
background-clip: padding-box;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 8px;
min-height: 30px;
}
::-webkit-scrollbar-thumb:hover {
background-clip: padding-box;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 8px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
border-left: 2px solid transparent;
border-right: 2px solid transparent;
}
::-webkit-scrollbar-track:hover {
background-clip: padding-box;
background-color: rgba(0, 0, 0, 0.15);
}
body::-webkit-scrollbar {
height: 0;
}
.cm-error-rule {
text-decoration: line-through !important;
color: #af2018 !important;
font-style: italic;
}
pre {
background: transparent;
border: none;
padding: 0;
margin: 0;
font-size: 12px;
font-family: inherit;
display: block;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
.n-monospace {
font-family: monospace;
}
body .CodeMirror pre {
font-family: consolas, monospace;
}
input[type='checkbox'],
input[type='radio'] {
margin: 0;
vertical-align: text-bottom;
}
.glyphicon-ban-circle {
color: #f66;
}
.w-filter-input {
width: 100%;
background: rgba(0, 0, 0, 0.8);
height: 30px;
color: #fff;
padding: 2px 5px;
border: none;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.shadow {
border: 1px solid rgba(0, 0, 0, 0.15) !important;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175) !important;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175) !important;
}
textarea[readonly] {
outline: none;
}
textarea {
resize: none;
display: block;
font-size: 12px;
}
.hide {
display: none !important;
}
.box {
display: -webkit-box;
display: -moz-box;
display: box;
}
.orient-vertical-box {
-moz-box-orient: vertical;
-webkit-box-orient: vertical;
box-orient: vertical;
display: -moz-box;
display: -webkit-box;
display: box;
}
.fill {
-moz-box-flex: 1;
-webkit-box-flex: 1;
box-flex: 1;
}
.box > .fill {
width: 0;
}
.orient-vertical-box > .fill {
height: 0;
} /**不加这个滚动会有问题**/
.table {
table-layout: fixed;
margin: 0 !important;
}
.table .w-empty {
text-align: center;
font-style: italic;
color: #ccc;
}
.w-expand-collapse {
margin-left: 5px;
height: 20px;
line-height: 16px;
font-size: 12px;
color: #000;
}
.w-arrow,
.w-arrow::after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.w-arrow {
border-width: 7px;
}
.w-arrow::after {
content: '';
border-width: 6px;
}
.w-arrow-left {
top: 50%;
left: -7px;
margin-top: -7px;
border-right-color: #ccc;
border-right-color: rgba(0, 0, 0, 0.25);
border-left-width: 0;
}
.w-arrow-left::after {
bottom: -6px;
left: 1px;
border-right-color: #f1f3f4;
border-left-width: 0;
}
.w-arrow-right {
top: 50%;
right: -7px;
margin-top: -7px;
border-left-color: #ccc;
border-left-color: rgba(0, 0, 0, 0.25);
border-right-width: 0;
}
.w-arrow-right::after {
bottom: -6px;
right: 1px;
border-left-color: lightyellow;
border-right-width: 0;
}
.modal-dialog .modal-body,
.modal-dialog .modal-footer {
padding: 10px;
}
.modal-footer .btn {
padding: 5px 10px;
}
.cm-s-ambiance ::-webkit-scrollbar-thumb,
.cm-s-blackboard ::-webkit-scrollbar-thumb,
.cm-s-cobalt ::-webkit-scrollbar-thumb,
.cm-s-erlang-dark ::-webkit-scrollbar-thumb,
.cm-s-lesser-dark ::-webkit-scrollbar-thumb,
.cm-s-midnight ::-webkit-scrollbar-thumb,
.cm-s-monokai ::-webkit-scrollbar-thumb,
.cm-s-night ::-webkit-scrollbar-thumb,
.cm-s-dark ::-webkit-scrollbar-thumb,
.cm-s-twilight ::-webkit-scrollbar-thumb,
.cm-s-vibrant-ink ::-webkit-scrollbar-thumb,
.cm-s-xq-dark ::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.5);
}
.cm-s-ambiance ::-webkit-scrollbar-thumb:hover,
.cm-s-blackboard ::-webkit-scrollbar-thumb:hover,
.cm-s-cobalt ::-webkit-scrollbar-thumb:hover,
.cm-s-erlang-dark ::-webkit-scrollbar-thumb:hover,
.cm-s-lesser-dark ::-webkit-scrollbar-thumb:hover,
.cm-s-midnight ::-webkit-scrollbar-thumb:hover,
.cm-s-monokai ::-webkit-scrollbar-thumb:hover,
.cm-s-night ::-webkit-scrollbar-thumb:hover,
.cm-s-dark ::-webkit-scrollbar-thumb:hover,
.cm-s-twilight ::-webkit-scrollbar-thumb:hover,
.cm-s-vibrant-ink ::-webkit-scrollbar-thumb:hover,
.cm-s-xq-dark ::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.7);
}
.cm-s-ambiance ::-webkit-scrollbar-track:hover,
.cm-s-blackboard ::-webkit-scrollbar-track:hover,
.cm-s-cobalt ::-webkit-scrollbar-track:hover,
.cm-s-erlang-dark ::-webkit-scrollbar-track:hover,
.cm-s-lesser-dark ::-webkit-scrollbar-track:hover,
.cm-s-midnight ::-webkit-scrollbar-track:hover,
.cm-s-monokai ::-webkit-scrollbar-track:hover,
.cm-s-night ::-webkit-scrollbar-track:hover,
.cm-s-dark ::-webkit-scrollbar-track:hover,
.cm-s-twilight ::-webkit-scrollbar-track:hover,
.cm-s-vibrant-ink ::-webkit-scrollbar-track:hover,
.cm-s-xq-dark ::-webkit-scrollbar-track:hover {
background-color: rgba(255, 255, 255, 0.15);
}
.w-offline-status .w-menu a,
.w-offline-status .w-left-menu a {
color: #ccc !important;
}
body .cm-s-cobalt span.cm-number {
color: #ff1605;
}
.w-hide-no-value .w-no-value {
display: none !important;
}
.w-detail .w-dock-btn {
border: none;
background: transparent;
padding: 4px 0;
width: 20px;
text-align: center;
position: absolute;
right: 0;
top: 0;
outline: none;
}
.w-detail .w-dock-btn .glyphicon {
margin: 0 !important;
}
.btn.active,
.btn:active {
box-shadow: none !important;
}
.CodeMirror-hints {
z-index: 999999 !important;
}
.w-mark th,
.w-mark td {
background-color: #3b88fd !important;
color: #fff !important;
}
.ReactVirtualized__Grid.ReactVirtualized__List {
outline: none;
}
.w-not-allowed {
cursor: not-allowed;
}
.w-bold {
font-weight: bold !important;
}
a {
cursor: pointer;
}
.w-delete {
color: #f66;
}
.w-delete:hover {
color: red;
}
.w-editor-dialog .modal-dialog {
width: 720px;
}
.w-editor-dialog textarea {
width: 700px;
height: 320px;
padding: 5px;
}
.w-win-dialog .modal-dialog {
width: 480px;
}
.w-win-dialog pre {
font-size: 15px;
padding: 12px 10px;
line-height: 2;
margin: 0;
word-break: break-word;
}
.w-win-dialog .modal-body {
margin: 0;
} | biz/webui/htdocs/src/css/base.css | html,
body,
.main {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#container {
min-width: 1100px;
min-height: 560px;
}
::-webkit-scrollbar {
width: 10px;
height: 7px;
}
::-webkit-scrollbar-button {
width: 10px;
height: 1px;
}
::-webkit-scrollbar-thumb {
background-clip: padding-box;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 8px;
min-height: 30px;
}
::-webkit-scrollbar-thumb:hover {
background-clip: padding-box;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 8px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
border-left: 2px solid transparent;
border-right: 2px solid transparent;
}
::-webkit-scrollbar-track:hover {
background-clip: padding-box;
background-color: rgba(0, 0, 0, 0.15);
}
body::-webkit-scrollbar {
height: 0;
}
.cm-error-rule {
text-decoration: line-through !important;
color: #af2018 !important;
font-style: italic;
}
pre {
background: transparent;
border: none;
padding: 0;
margin: 0;
font-size: 12px;
font-family: inherit;
display: block;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
.n-monospace {
font-family: monospace;
}
body .CodeMirror pre {
font-family: consolas, monospace;
}
input[type='checkbox'],
input[type='radio'] {
margin: 0;
vertical-align: text-bottom;
}
.glyphicon-ban-circle {
color: #f66;
}
.w-filter-input {
width: 100%;
background: rgba(0, 0, 0, 0.8);
height: 30px;
color: #fff;
padding: 2px 5px;
border: none;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.shadow {
border: 1px solid rgba(0, 0, 0, 0.15) !important;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175) !important;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175) !important;
}
textarea[readonly] {
outline: none;
}
textarea {
resize: none;
display: block;
font-size: 12px;
}
.hide {
display: none !important;
}
.box {
display: -webkit-box;
display: -moz-box;
display: box;
}
.orient-vertical-box {
-moz-box-orient: vertical;
-webkit-box-orient: vertical;
box-orient: vertical;
display: -moz-box;
display: -webkit-box;
display: box;
}
.fill {
-moz-box-flex: 1;
-webkit-box-flex: 1;
box-flex: 1;
}
.box > .fill {
width: 0;
}
.orient-vertical-box > .fill {
height: 0;
} /**不加这个滚动会有问题**/
.table {
table-layout: fixed;
margin: 0 !important;
}
.table .w-empty {
text-align: center;
font-style: italic;
color: #ccc;
}
.w-expand-collapse {
margin-left: 5px;
height: 20px;
line-height: 16px;
font-size: 12px;
color: #000;
}
.w-arrow,
.w-arrow::after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.w-arrow {
border-width: 7px;
}
.w-arrow::after {
content: '';
border-width: 6px;
}
.w-arrow-left {
top: 50%;
left: -7px;
margin-top: -7px;
border-right-color: #ccc;
border-right-color: rgba(0, 0, 0, 0.25);
border-left-width: 0;
}
.w-arrow-left::after {
bottom: -6px;
left: 1px;
border-right-color: #f1f3f4;
border-left-width: 0;
}
.w-arrow-right {
top: 50%;
right: -7px;
margin-top: -7px;
border-left-color: #ccc;
border-left-color: rgba(0, 0, 0, 0.25);
border-right-width: 0;
}
.w-arrow-right::after {
bottom: -6px;
right: 1px;
border-left-color: lightyellow;
border-right-width: 0;
}
.modal-dialog .modal-body,
.modal-dialog .modal-footer {
padding: 10px;
}
.modal-footer .btn {
padding: 5px 10px;
}
.cm-s-ambiance ::-webkit-scrollbar-thumb,
.cm-s-blackboard ::-webkit-scrollbar-thumb,
.cm-s-cobalt ::-webkit-scrollbar-thumb,
.cm-s-erlang-dark ::-webkit-scrollbar-thumb,
.cm-s-lesser-dark ::-webkit-scrollbar-thumb,
.cm-s-midnight ::-webkit-scrollbar-thumb,
.cm-s-monokai ::-webkit-scrollbar-thumb,
.cm-s-night ::-webkit-scrollbar-thumb,
.cm-s-dark ::-webkit-scrollbar-thumb,
.cm-s-twilight ::-webkit-scrollbar-thumb,
.cm-s-vibrant-ink ::-webkit-scrollbar-thumb,
.cm-s-xq-dark ::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.5);
}
.cm-s-ambiance ::-webkit-scrollbar-thumb:hover,
.cm-s-blackboard ::-webkit-scrollbar-thumb:hover,
.cm-s-cobalt ::-webkit-scrollbar-thumb:hover,
.cm-s-erlang-dark ::-webkit-scrollbar-thumb:hover,
.cm-s-lesser-dark ::-webkit-scrollbar-thumb:hover,
.cm-s-midnight ::-webkit-scrollbar-thumb:hover,
.cm-s-monokai ::-webkit-scrollbar-thumb:hover,
.cm-s-night ::-webkit-scrollbar-thumb:hover,
.cm-s-dark ::-webkit-scrollbar-thumb:hover,
.cm-s-twilight ::-webkit-scrollbar-thumb:hover,
.cm-s-vibrant-ink ::-webkit-scrollbar-thumb:hover,
.cm-s-xq-dark ::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.7);
}
.cm-s-ambiance ::-webkit-scrollbar-track:hover,
.cm-s-blackboard ::-webkit-scrollbar-track:hover,
.cm-s-cobalt ::-webkit-scrollbar-track:hover,
.cm-s-erlang-dark ::-webkit-scrollbar-track:hover,
.cm-s-lesser-dark ::-webkit-scrollbar-track:hover,
.cm-s-midnight ::-webkit-scrollbar-track:hover,
.cm-s-monokai ::-webkit-scrollbar-track:hover,
.cm-s-night ::-webkit-scrollbar-track:hover,
.cm-s-dark ::-webkit-scrollbar-track:hover,
.cm-s-twilight ::-webkit-scrollbar-track:hover,
.cm-s-vibrant-ink ::-webkit-scrollbar-track:hover,
.cm-s-xq-dark ::-webkit-scrollbar-track:hover {
background-color: rgba(255, 255, 255, 0.15);
}
.w-offline-status .w-menu a,
.w-offline-status .w-left-menu a {
color: #ccc !important;
}
body .cm-s-cobalt span.cm-number {
color: #ff1605;
}
.w-hide-no-value .w-no-value {
display: none !important;
}
.w-detail .w-dock-btn {
border: none;
background: transparent;
padding: 4px 0;
width: 20px;
text-align: center;
position: absolute;
right: 0;
top: 0;
outline: none;
}
.w-detail .w-dock-btn .glyphicon {
margin: 0 !important;
}
.btn.active,
.btn:active {
box-shadow: none !important;
}
.CodeMirror-hints {
z-index: 999999 !important;
}
.w-mark th,
.w-mark td {
background-color: #3b88fd !important;
color: #fff !important;
}
.ReactVirtualized__Grid.ReactVirtualized__List {
outline: none;
}
.w-not-allowed {
cursor: not-allowed;
}
.w-bold {
font-weight: bold !important;
}
a {
cursor: pointer;
}
.w-delete {
color: #f66;
}
.w-delete:hover {
color: red;
}
.w-editor-dialog .modal-dialog {
width: 720px;
}
.w-editor-dialog textarea {
width: 700px;
height: 320px;
padding: 5px;
}
.w-win-dialog .modal-dialog {
width: 480px;
}
.w-win-dialog pre {
font-size: 15px;
padding: 12px 10px;
line-height: 2;
margin: 0;
word-break: break-word;
}
.w-win-dialog .modal-body {
margin: 0;
} | 0.380183 | 0.043083 |
@-moz-document domain("opswiki.squiz.net") {
/* Full page styles */
body, html {
background: #212121;
color: #ffffff !important;
}
p,
.info,
li,
ul {
color: #ffffff !important;
}
a {
color: #64B5F6 !important;
}
/* Buttons */
/* Header and navbar */
#header {
background: #212121;
padding-bottom: 10px;
}
/* Search box */
#searchinput {
background: #424242;
border: none !important;
padding: 10px !important;
width: 30vw !important;
height: 15px !important;
color: #fff;
}
/* Search box buttons */
#titlesearch {
background: #424242;
color: #fff;
padding: 9px;
border-radius: 0;
border: none;
}
#fullsearch {
background: #424242;
color: #fff;
padding: 9px;
border-radius: 0;
border: none;
}
#titlesearch:hover {
background: #64B5F6 !important;
}
#fullsearch:hover {
background: #64B5F6 !important;
}
/* Drop down menus */
select {
background: #212121 !important;
border: none !important;
color: #fff !important;
height: 25px !important;
}
/* Navbar */
.editbar,
#message {
background: #424242 !important;
border: none !important;
padding: 10px !important;
}
.wikilink {
background: #212121 !important;
border: none !important;
padding: 10px !important;
margin-top: 20px !important;
}
/* Current active tab in wikilinks */
.current {
background: #424242 !important;
border: none !important;
padding: 10px !important;
margin-top: 20px !important;
}
#pageline {
background: #424242;
border: none !important;
}
/* Page styles */
#page {
background: #303030 !important;
}
/* Search stats element */
.searchstats {
background: #303030 !important;
color: #fff !important;
border: none !important;
}
/* Code block synatx highlighting */
.line {
color: #ffffff !important;
}
.Comment {
color: #81C784 !important;
}
.ResWord {
color: #e57373 !important;
}
.ID {
color: #9E9E9E !important;
}
.String {
color: #29B6F6 !important;
}
/* Content boxes set to darker background colour */
.tip,
.note,
.important,
.caution,
.warning,
.codearea,
pre,
.table-of-contents {
background: #212121 !important;
border: none !important;
padding-top: 10px;
color: #fff;
}
.red {
background: #212121 !important;
}
/* Table styles */
td {
background: #212121 !important;
border-color: #424242 !important;
padding-top: 10px;
color: #fff !important;
}
} | data/usercss/151737.user.css | @-moz-document domain("opswiki.squiz.net") {
/* Full page styles */
body, html {
background: #212121;
color: #ffffff !important;
}
p,
.info,
li,
ul {
color: #ffffff !important;
}
a {
color: #64B5F6 !important;
}
/* Buttons */
/* Header and navbar */
#header {
background: #212121;
padding-bottom: 10px;
}
/* Search box */
#searchinput {
background: #424242;
border: none !important;
padding: 10px !important;
width: 30vw !important;
height: 15px !important;
color: #fff;
}
/* Search box buttons */
#titlesearch {
background: #424242;
color: #fff;
padding: 9px;
border-radius: 0;
border: none;
}
#fullsearch {
background: #424242;
color: #fff;
padding: 9px;
border-radius: 0;
border: none;
}
#titlesearch:hover {
background: #64B5F6 !important;
}
#fullsearch:hover {
background: #64B5F6 !important;
}
/* Drop down menus */
select {
background: #212121 !important;
border: none !important;
color: #fff !important;
height: 25px !important;
}
/* Navbar */
.editbar,
#message {
background: #424242 !important;
border: none !important;
padding: 10px !important;
}
.wikilink {
background: #212121 !important;
border: none !important;
padding: 10px !important;
margin-top: 20px !important;
}
/* Current active tab in wikilinks */
.current {
background: #424242 !important;
border: none !important;
padding: 10px !important;
margin-top: 20px !important;
}
#pageline {
background: #424242;
border: none !important;
}
/* Page styles */
#page {
background: #303030 !important;
}
/* Search stats element */
.searchstats {
background: #303030 !important;
color: #fff !important;
border: none !important;
}
/* Code block synatx highlighting */
.line {
color: #ffffff !important;
}
.Comment {
color: #81C784 !important;
}
.ResWord {
color: #e57373 !important;
}
.ID {
color: #9E9E9E !important;
}
.String {
color: #29B6F6 !important;
}
/* Content boxes set to darker background colour */
.tip,
.note,
.important,
.caution,
.warning,
.codearea,
pre,
.table-of-contents {
background: #212121 !important;
border: none !important;
padding-top: 10px;
color: #fff;
}
.red {
background: #212121 !important;
}
/* Table styles */
td {
background: #212121 !important;
border-color: #424242 !important;
padding-top: 10px;
color: #fff !important;
}
} | 0.114901 | 0.04406 |
.swal2-title {
font-size: 1.3em;
}
.custom-file-multiple {
position: relative;
display: inline-block;
width: 100%;
height: calc(1.5em + .75rem + 2px);
margin-bottom: 0;
}
.custom-file-multiple {
background: #eaecf4;
box-shadow: 0px 16px 24px rgba(190, 190, 190, 0.16);
border-radius: 8px;
border: none;
height: 200px;
width: 172px;
/* padding: .375rem 1.1rem; */
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 120%;
color: #252525;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.custom-file-multiple .custom-file-label {
background: transparent;
margin-bottom: 0px;
border: none;
height: 100%;
width: 100%;
display: flex;
justify-content: flex-end;
align-items: flex-start;
padding: .375rem .35rem;
}
.custom-file-multiple .custom-file-label::after {
/* color: #fff; */
background-color: transparent;
content: "";
display: none;
/* background-image: url('../image/icon/icon-upload.svg');
background-repeat: no-repeat;
top: 12px;
right: 17px; */
}
.custom-file-multiple .custom-file-label button {
border: none;
border-radius: 4px;
color: grey;
padding: 4px 9px;
background: #d5d5d5;
}
.custom-file-multiple .custom-file-input {
background: transparent;
height: calc(100% - 40px);
margin-top: 40px;
}
.custom-file-multiple span {
position: absolute;
top: 80px;
left: 67px;
}
.custom-file-multiple span i {
font-size: 35px;
opacity: .4;
}
.custom-switch {
height: 37px;
display: flex;
align-items: center;
padding-left: 3.5rem;
}
.custom-switch .custom-control-label::before {
height: 1.5rem;
top: 0rem;
left: -3.3rem;
width: 2.75rem;
border-radius: 1.5rem;
}
.custom-switch .custom-control-label::after {
top: calc(.11rem + 1.5px);
left: calc(-3.3rem + 2px);
width: calc(1.3rem - 4px);
height: calc(1.3rem - 4px);
}
.custom-switch .custom-control-input:checked~.custom-control-label::after {
transform: translateX(1.4rem);
}
.btn-action {
text-decoration: none;
border: none;
outline: none;
}
.with-eye input {
position: relative;
}
.with-eye .eye-content {
position: absolute;
top: 38px;
right: 30px;
cursor: pointer;
} | resources/assets/css/style.css | .swal2-title {
font-size: 1.3em;
}
.custom-file-multiple {
position: relative;
display: inline-block;
width: 100%;
height: calc(1.5em + .75rem + 2px);
margin-bottom: 0;
}
.custom-file-multiple {
background: #eaecf4;
box-shadow: 0px 16px 24px rgba(190, 190, 190, 0.16);
border-radius: 8px;
border: none;
height: 200px;
width: 172px;
/* padding: .375rem 1.1rem; */
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 120%;
color: #252525;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.custom-file-multiple .custom-file-label {
background: transparent;
margin-bottom: 0px;
border: none;
height: 100%;
width: 100%;
display: flex;
justify-content: flex-end;
align-items: flex-start;
padding: .375rem .35rem;
}
.custom-file-multiple .custom-file-label::after {
/* color: #fff; */
background-color: transparent;
content: "";
display: none;
/* background-image: url('../image/icon/icon-upload.svg');
background-repeat: no-repeat;
top: 12px;
right: 17px; */
}
.custom-file-multiple .custom-file-label button {
border: none;
border-radius: 4px;
color: grey;
padding: 4px 9px;
background: #d5d5d5;
}
.custom-file-multiple .custom-file-input {
background: transparent;
height: calc(100% - 40px);
margin-top: 40px;
}
.custom-file-multiple span {
position: absolute;
top: 80px;
left: 67px;
}
.custom-file-multiple span i {
font-size: 35px;
opacity: .4;
}
.custom-switch {
height: 37px;
display: flex;
align-items: center;
padding-left: 3.5rem;
}
.custom-switch .custom-control-label::before {
height: 1.5rem;
top: 0rem;
left: -3.3rem;
width: 2.75rem;
border-radius: 1.5rem;
}
.custom-switch .custom-control-label::after {
top: calc(.11rem + 1.5px);
left: calc(-3.3rem + 2px);
width: calc(1.3rem - 4px);
height: calc(1.3rem - 4px);
}
.custom-switch .custom-control-input:checked~.custom-control-label::after {
transform: translateX(1.4rem);
}
.btn-action {
text-decoration: none;
border: none;
outline: none;
}
.with-eye input {
position: relative;
}
.with-eye .eye-content {
position: absolute;
top: 38px;
right: 30px;
cursor: pointer;
} | 0.451085 | 0.093844 |
.post{
display: flex;
flex-direction: column;
flex:1;
align-items: center;
}
.story{
display: flex;
padding:10px;
overflow-x:auto;
max-width: 700px;
margin-bottom:20px;
}
.post__send{
background:white;
padding:10px;
display:flex;
flex-direction: column;
width:500px;
border-radius: 10px;
border:1px solid lightgray;
-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}
.post__send__info{
display: flex;
}
.post__send__info>form{
flex:1;
display: flex;
}
.post__send__info>form >input{
flex:1;
border:none;
outline:none;
background-color: #E4E6E9;
padding:10px;
margin-left:10px;
border-radius: 999px;
}
.post__send__info >form >button{
display: none;
}
.post__send__option{
display:flex;
justify-content: space-evenly;
margin-top:5px;
}
.option__variant{
display: flex;
height: 100%;
width: 100%;
padding:10px;
padding:10px;
justify-content: center;
cursor:pointer;
align-items: center;
border-radius: 5px;
}
.option__variant:hover{
background-color: lightgrey;
}
.option__variant > h5{
color:grey;
margin-left: 2px;
}
.post__body{
margin:20px;
background-color: white;
width:500px;
border-radius: 5px;
border-radius: 10px;
border:1px solid lightgray;
-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}
.post__author{
display: flex;
align-items: center;
margin-left:10px;
padding:10px 0px;
}
.post__timestamp{
padding:10px;
}
.post__timestamp> h6{
color:grey;
}
.post__caption
{
padding:5px 12px;
}
.post__image >img{
width: 100%;
}
.post__option{
padding:5px 20px;
display: flex;
justify-content: space-evenly;
border-top:1px solid rgba(128, 128, 128, 0.486);
border-bottom: 1px solid rgba(128, 128, 128, 0.468);
}
.post__option__variant{
display: flex;
flex:1;
padding:6px;
justify-content: center;
align-items: center;
color:grey;
border-radius: 10px;
cursor: pointer;
}
.post__option__variant:hover{
background-color:rgba(211, 211, 211, 0.507) ;
}
.post__option__variant >p{
margin-left:10px;
} | src/Post.css | .post{
display: flex;
flex-direction: column;
flex:1;
align-items: center;
}
.story{
display: flex;
padding:10px;
overflow-x:auto;
max-width: 700px;
margin-bottom:20px;
}
.post__send{
background:white;
padding:10px;
display:flex;
flex-direction: column;
width:500px;
border-radius: 10px;
border:1px solid lightgray;
-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}
.post__send__info{
display: flex;
}
.post__send__info>form{
flex:1;
display: flex;
}
.post__send__info>form >input{
flex:1;
border:none;
outline:none;
background-color: #E4E6E9;
padding:10px;
margin-left:10px;
border-radius: 999px;
}
.post__send__info >form >button{
display: none;
}
.post__send__option{
display:flex;
justify-content: space-evenly;
margin-top:5px;
}
.option__variant{
display: flex;
height: 100%;
width: 100%;
padding:10px;
padding:10px;
justify-content: center;
cursor:pointer;
align-items: center;
border-radius: 5px;
}
.option__variant:hover{
background-color: lightgrey;
}
.option__variant > h5{
color:grey;
margin-left: 2px;
}
.post__body{
margin:20px;
background-color: white;
width:500px;
border-radius: 5px;
border-radius: 10px;
border:1px solid lightgray;
-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}
.post__author{
display: flex;
align-items: center;
margin-left:10px;
padding:10px 0px;
}
.post__timestamp{
padding:10px;
}
.post__timestamp> h6{
color:grey;
}
.post__caption
{
padding:5px 12px;
}
.post__image >img{
width: 100%;
}
.post__option{
padding:5px 20px;
display: flex;
justify-content: space-evenly;
border-top:1px solid rgba(128, 128, 128, 0.486);
border-bottom: 1px solid rgba(128, 128, 128, 0.468);
}
.post__option__variant{
display: flex;
flex:1;
padding:6px;
justify-content: center;
align-items: center;
color:grey;
border-radius: 10px;
cursor: pointer;
}
.post__option__variant:hover{
background-color:rgba(211, 211, 211, 0.507) ;
}
.post__option__variant >p{
margin-left:10px;
} | 0.52683 | 0.07403 |
* {
font-family: Open Sans;
outline: none !important;
}
body {
background: #f5f5f5 !important;
overflow-x: hidden;
}
.userProfileContainer {
--accent: #456ca8;
--accent-lighter: #ced9eb;
}
.userProfileContainer .panel-heading a {
font-size:0.9em;
color:#3cbeef;
}
.userProfileContainer .panel-heading a {
font-size:0.9em;
color:#3cbeef;
}
#contentFormBody .fa{
font: normal normal normal 14px/1 FontAwesome !important;
}
#contentFormBody .contentForm_options .btn_container .label-public{
right: 50px;
}
/*
.modal-content .modal-header .close {
margin-top: 2px;
margin-right: 5px;
}
.modal-dialog .close{
position: absolute;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000;
opacity: 0.2;
padding: 0 !important;
margin: 0;
top: 10px;
right: 10px;
}
.modal-dialog h4{
font-size: 20px;
font-weight: 600 !important;
letter-spacing: -0.3px;
}
#globalModal{
padding: 0 !important;
}
@media (min-width: 768px){
.modal-dialog {
max-width: 600px !important;
margin: 30px auto !important;
}
}
*/
.activities li .media {
display: flex;
align-items: center;
}
.activities li .media .img-space {
top: 60px !important;
}
#activityStream .activity-entry{
display: flex;
align-items: center;
}
#activityStream .activity-entry .media{
min-height: 120px;
}
/* */
.userInfo {
background: #FFFFFF;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
}
.userInfo>div {
position: relative;
}
.userInfo .cover {
height: 226px;
width: 100%;
object-fit: cover;
box-sizing: border-box;
}
.userInfo .topInfo {
padding-top: 30px;
}
.userInfo .badges span {
font-style: normal;
font-weight: 600;
font-size: 10px;
line-height: 14px;
/* identical to box height */
text-align: center;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #000000;
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 14px;
padding: 7px 15px;
display: inline-block;
margin: 0 0 10px;
}
.userInfo .profilePicture {
text-align: center;
}
.userInfo .profilePicture > a {
position: relative;
z-index: 3;
}
.userInfo .profilePicture img {
width: 113px;
height: 113px;
object-fit: cover;
border-radius: 50%;
}
.userInfo .detailInfo {
text-align: center;
}
.userInfo .socialLinks {
text-align: right
}
.userInfo .socialLinks > a:not(:last-child) {
margin-right: 7px;
}
.userInfo .socialLinks i {
font-size: 22px;
}
.userInfo .detailInfo .name {
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 33px;
/* identical to box height */
text-align: center;
color: #000000;
margin: 0;
}
.userInfo .detailInfo .title {
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
/* identical to box height */
text-align: center;
color: #000000;
margin: 0;
}
.userInfo .detailInfo .address {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
/* identical to box height */
text-align: center;
/* Grey */
color: #B9B9B9;
margin: 0;
}
.userInfo .bio {
margin-top: 9px !important;
margin: 50px auto;
padding: 0 7%;
}
.userInfo .bio p {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 25px;
/* or 179% */
text-align: center;
/* Black */
color: #1E1E1E;
margin: 0;
}
.userInfo .social {
display: flex;
align-items: center;
justify-content: space-between;
padding: 22px 45px;
border-top: 1px solid #E6E6E6;
}
.userInfo .contact {
display: flex;
}
.userInfo .contact button {
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 26px;
padding: 7px 20px;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
text-align: center;
color: #1E1E1E;
box-shadow: none;
outline: none;
}
.userInfo .contact button:not(:last-child) {
margin-right: 15px;
}
.userInfo .contact button>span {
display: flex;
align-items: center;
}
.userInfo .contact button img {
margin-right: 7px;
}
.userInfo .contact button:not(.connect) {
background: white !important;
}
.userInfo .contact .connect,.userInfo .contact .disconnect {
background: #456CA8;
border: 1px solid #456CA8;
box-sizing: border-box;
border-radius: 26px;
font-style: normal;
font-weight: bold;
font-size: 14px;
text-align: center;
color: #FFFFFF;
display: flex;
align-items: center;
}
.tabletViewTasks{
display: none;
}
.panelHeadingCustomBlock span{
font-size: 15px;
}
/* mobile items */
.userInfo .socialLinks.mobileView, .userInfo .badges.mobileView, .userCoins.tabletView {
display: none;
}
.userInfo .socialLinks.mobileView, .userInfo .badges.mobileView, .userCoins.tabletViewTasks {
display: none;
}
.userInfo .badges.mobileView {
margin: 20px auto;
}
.userInfo .badges.mobileView span {
margin: 0 !important;
}
.userInfo .socialLinks.mobileView {
text-align: left;
}
/* media queries */
@media (max-width:991px) {
.profile-layout-container {
max-width: 100% !important;
/*padding: 0 25px ;*/
}
.userInfo .badges span {
display: inline-block;
}
.userInfo .badges span:not(:last-child) {
margin-bottom: 10px;
}
.userInfo .topInfo {
padding-top: 20px;
}
.userInfo .detailInfo {
margin-top: 0;
}
.userInfo .contact button:not(.connect) {
padding: 0;
width: 45px;
height: 45px;
text-indent: 73%;
}
.userInfo .contact button:not(.connect) img {
margin: 0 auto;
}
.userInfo .contact button:not(.connect) img+span {
display: none;
}
.userInfo .social {
padding: 22px 30px;
}
.userInfo .contact button.connect {
height: 45px;
}
.ongoingprojects, .offersMayLike, .peopleMayLike {
display: none;
}
.userCoins {
display: none;
}
.userCoins.tabletView {
display: block;
}
.tabletViewTasks {
display: block;
}
.userInfo .followButton,
.userInfo .unfollowButton {
padding: 0 !important;
width: 45px !important;
height: 45px !important;
text-indent: 40% !important;
white-space: nowrap !important;
overflow: hidden !important;
color: white !important;
}
}
@media (max-width:767px) {
.userInfo .profilePicture img{
margin-left: 20px;
}
.profile-layout-container {
max-width: 100% !important;
padding: 0 15px !important;
}
.userInfo>div>div:not(:last-child) {
padding: 0 15px !important;
}
.userInfo, .userInfo .cover {
border: unset;
}
.userInfo .socialLinks, .userInfo .badges {
display: none;
}
.userInfo .socialLinks.mobileView, .userInfo .badges.mobileView {
display: block;
}
.userInfo .contact {
display: flex;
position: absolute;
top: 10px;
right: 15px;
text-align: right;
}
.userInfo .contact button:not(:last-child) {
margin-right: 6px;
width: 33px;
height: 33px;
text-indent: 7px;
}
.userInfo .contact button.connect {
height: 33px;
}
.userInfo .profilePicture {
text-align: left;
padding: 0;
}
.userInfo .detailInfo {
margin-top: 20px;
margin-left: 25px;
}
.userInfo .detailInfo h2, .userInfo .detailInfo h4, .userInfo .detailInfo p {
text-align: left !important;
}
.userInfo .bio {
margin-top: 0;
margin-bottom: 25px;
}
.userInfo .bio p {
text-align: left;
}
.userInfo .social {
border: none;
padding: 22px 15px;
}
.userInfo .contact button img {
height: 15px;
}
.userInfo .contact button>span {
font-size: 10px;
}
.userInfo .detailInfo .name {
font-size: 20px;
}
.userInfo .detailInfo .title {
font-size: 14px;
}
.userInfo .detailInfo .address, .userInfo .bio p {
font-size: 12px;
}
.userInfo .bio p {
line-height: 20px;
}
.profileLeftContainer,.layout-sidebar-container{
padding: 0 !important;
}
.contact.mobileView{
display: flex;
position: absolute;
top: 10px;
right: 10px;
}
.social .contact{
display: none;
}
.userInfo .followButton,
.userInfo .unfollowButton {
margin-right: 6px !important;
width: 33px !important;
height: 33px !important;
text-indent: 3px !important;
}
.profileConnect{
font-size: 10px !important;
}
}
@media (min-width:768px) {
.contact.mobileView{
display: none;
}
}
/* timeline */
.timeLine>div {
padding-left: 0;
}
/* experience block */
.experience {
background: white;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
}
.experience .position,
.experience .companyName {
font-style: normal;
font-weight: 600;
font-size: 14px;
margin-bottom: 6px;
margin-top: 0;
}
.experience .position {
color: #000000;
}
.experience .companyName {
color: var(--accent);
}
.experience .dateAndPlace {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
color: #B9B9B9;
margin-bottom: 0;
margin-top: 0;
}
.listExperience li {
margin-top: 20px;
position: relative;
}
.experience .moreDetails {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 25px;
color: #1E1E1E;
}
.postFooter .wall-entry-controls{
border-top: 1px solid #E6E6E6;
padding: 12px 17px;
margin: 0 -10px -10px;
}
.postFooter .wall-entry-controls a, .postFooter .wall-entry-controls i{
font-style: normal;
font-size: 14px;
line-height: 19px;
color: #1E1E1E;
}
.postFooter .wall-entry-controls a{
font-weight: 600;
}
.postFooter .wall-entry-controls i{
margin-right: 10px;
}
.postFooter .wall-entry-controls i.liked{
color: red;
font-weight: 600;
}
.imageContainer{
margin-bottom: 20px;
height: 180px;
}
.imageContainer> a{
display: block;
width: 100%;
height: 100%;
position: relative;
}
.imageContainer img{
width: 100%;
height: 100%;
object-fit: cover;
}
h2.moreImages{
position: absolute;
top: 0;
left: 0;
color: white;
font-size: 30px;
font-weight: bold;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #0000008c;
}
/* */
.recentPosts .post {
background: #FFFFFF;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
/* padding: 11px 17px 0; */
padding-top: 10px;
margin-bottom: 30px;
}
.post .postHeader, .post .postBody {
padding: 0 17px;
}
.post .postHeader {
display: flex;
align-items: center;
}
.post .postHeader>img {
width: 42px;
height: 42px;
object-fit: cover;
border-radius: 50%;
margin-right: 20px;
}
.post .postInfo .postDate, .activity .activityDate {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
color: #B9B9B9;
}
.post .postInfo>h2, .activity .activityKeyWords {
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 19px;
color: #000000;
}
.post .postInfo i {
color: #C4C4C4;
margin: 0 10px;
}
.post .postImages {
height: 245px;
margin: 0 -10px 25px;
}
.post .postImages>div {
padding: 0 10px;
}
.post .postImages img {
width: 100%;
height: 100%;
object-fit: cover;
}
.post .postFooter span, .post .postFooter span i {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #1E1E1E;
}
.post .postFooter i:not(.commentsLikesSeparator) {
margin-right: 10px;
}
.post .commentsLikesSeparator {
color: #E0E0E0;
margin: 0 22px;
font-size: 5px;
}
.recentPosts .viewMorePosts, .recentActivities .viewMoreActivities {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
text-align: center;
color: #1E1E1E;
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 26px;
padding: 13px;
width: 100%;
background: white;
}
.recentPosts #image-viewer {
display: none;
position: fixed;
z-index: 1;
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.9);
}
.recentPosts .modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
.recentPosts .imageViewerSlider .slick-prev {
left: 30px;
z-index: 9999;
}
.recentPosts .imageViewerSlider .slick-next {
right: 60px;
z-index: 9999;
}
.recentPosts .imageViewerSlider i {
font-size: 100px;
color: #858585;
position: relative;
top: -60px;
}
.recentPosts .imageViewerSlider .slick-arrow.slick-disabled i {
display: none;
}
/*
.recentPosts .modal-content {
animation-name: zoom;
animation-duration: 0.6s;
}
@keyframes zoom {
from {
transform: scale(0)
}
to {
transform: scale(1)
}
} */
.recentPosts #image-viewer .close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.recentPosts #image-viewer .close:hover, .recentPosts #image-viewer .close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
@media only screen and (max-width: 700px) {
.recentPosts {
padding: 25px 15px;
}
.recentPosts .modal-content {
width: 100%;
}
}
/* recent activities */
.activity {
display: flex;
align-items: center;
padding: 30px 0;
border-bottom: 1px solid #E6E6E6;
}
.activity>img {
width: 42px;
height: 42px;
object-fit: cover;
border-radius: 50%;
margin-right: 20px;
}
.activity .activityType {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
color: #000000;
}
.recentActivities .viewMoreActivities {
margin-top: 30px;
}
/* what i offer && what i need */
.whatWeOffer{
margin-bottom: 5%;
}
.whatIOffer, .whatINeed {
background: #FFFFFF;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
padding: 25px;
margin-bottom: 30px;
position: relative;
}
.whatIOffer h2, .whatINeed h2 {
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
color: #000000;
margin-bottom: 22px;
}
.whatIOffer p, .whatINeed p {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 25px;
color: #000000;
margin-left: 3%;
}
.whatWeOffer,.whatWeNeed{
position: relative;
}
.whatWeOffer .edit-btn i,.whatWeNeed .edit-btn i{
margin-left: auto;
}
/* coins */
.userCoins {
background: #FFFFFF;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
}
.userCoins .panel-heading {
display: flex;
align-items: baseline;
justify-content: space-between;
}
.userCoins .panel-body .coin {
display: inline-flex;
flex-direction: column;
align-items: center;
margin: 0px 10px 10px 0;
}
.userCoins .panel-body .coin span {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #000000;
}
/* ongoingprojects */
.ongoingprojects, .offersMayLike, .peopleMayLike {
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 4px;
padding: 20px;
margin-bottom: 30px;
}
.ongoingprojects h2, .offersMayLike h2, .peopleMayLike h2 {
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
color: #000000;
}
.ongoingproject, .offerMayLike, .personMayLike {
display: flex;
align-items: center;
margin-top: 25px;
}
.ongoingproject img, .offerMayLike img {
width: 58px;
height: 58px;
object-fit: cover;
border-radius: 4px;
}
.ongoingproject p, .offerMayLike p {
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 20px;
color: #1E1E1E;
display: block;
display: -webkit-box;
margin: 0 auto;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
padding-left: 10px;
}
/* people you may like */
.personMayLike {
justify-content: space-between;
}
.personMayLike>div:first-child {
display: flex;
align-items: center;
}
.personMayLike .personProfilePicture {
width: 58px;
height: 58px;
object-fit: cover;
border-radius: 50%;
margin-right: 10px;
}
.personMayLike .personName {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #1E1E1E;
margin: 0;
}
.personMayLike .personPost {
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 16px;
color: #1E1E1E;
margin: 0;
}
.personMayLike .addPerson {
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 26px;
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
}
.userInfo .followButton,
.userInfo .unfollowButton {
border: 1px solid #B9B9B9 ;
box-sizing: border-box ;
border-radius: 26px !important;
padding: 7px 20px ;
font-style: normal ;
font-weight: 600 ;
font-size: 14px ;
line-height: 19px ;
text-align: center ;
box-shadow: none ;
outline: none ;
margin-right: 15px ;
background: white !important;
opacity: 1 ;
display: flex ;
align-items: center ;
max-height: 45px !important;
}
.userInfo .followButton::before,
.userInfo .unfollowButton::before {
content: url(../images/follow.svg);
position: relative;
display: inline-block;
margin-right: 7px;
top: 2px;
}
.profileConnect{
background: #3CBEEF;
border: 1px solid #3CBEEF;
color: white !important;
box-shadow: none;
box-sizing: border-box;
border-radius: 26px;
padding: 7px 20px;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
text-align: center;
display: flex;
align-items: center;
}
.contact button[data-action-click="ui.modal.load"]{
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 26px;
padding: 7px 20px;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
text-align: center;
box-shadow: none;
outline: none;
background: white;
margin-right: 15px;
display: flex;
align-items: center;
}
.contact button[data-action-click="ui.modal.load"]:hover{
background: white !important;
}
.contact button[data-action-click="ui.modal.load"]::before{
content: url(../images/message.svg);
position: relative;
display: inline-block;
margin-right: 7px;
top: 2px;
}
.topInfo.row{
margin: 0;
}
.userInfo #profile-image-upload-buttons{
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 5;
}
.userInfo #profilefileupload:hover ~ #profile-image-upload-buttons,#profile-image-upload-buttons:hover{
opacity: 1 !important;
}
.userInfo #profilefileupload {
position: absolute;
top: 0;
left: 50%;
opacity: 0;
width: 113px;
height: 100%;
transform: translateX(-50%);
z-index: 4;
}
.userInfo #profilefileupload input {
width: 100%;
height: 100%;
cursor: pointer;
}
.profilePicture{
margin-top: -95px;
}
.userInfo #profile-image-upload-loader{
display: none;
}
.userInfo .image-upload-container{
height: 226px !important;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
background: linear-gradient(0deg, #9B9B9B, #9B9B9B), #FFFFFF;
}
.userInfo #banner-image-upload-buttons {
z-index: 2;
}
.userInfo .banner-upload-placeholder {
z-index: 1;
}
.userInfo #bannerfileupload:hover{
opacity: 1 !important;
}
.userInfo #bannerfileupload:hover::before {
content: '';
position: absolute;
background-color: black;
height: 100%;
width: 100%;
left: 0;
opacity: .35;
}
.userInfo #bannerfileupload{
position: absolute;
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
}
.userInfo #bannerfileupload input{
top: 0;
height: 100%;
left: 0;
width: 100%;
cursor: pointer;
z-index: 2;
}
.userInfo #bannerfileupload >div{
text-align: center;
}
.userInfo #bannerfileupload i{
color: white;
font-size: 25px;
}
.userInfo #bannerfileupload h2{
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
text-align: center;
color: #FFFFFF;
}
.userInfo #bannerfileupload p{
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
text-align: center;
color: #FFFFFF;
}
@media screen and (max-width: 767px) {
.userInfo #profilefileupload {
left: 0;
width: 133px;
transform: none;
}
.userInfo #profile-image-upload-buttons{
left: 30px;
top: 65px;
transform: none;
}
}
.contact .editProfile{
/* width: 152px; */
height: 45px;
box-sizing: border-box;
border-radius: 26px;
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 19px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.editProfile img{
margin-right: 7px;
}
.contact .editProfile::before{
margin-right: 10px;
}
.panel-profile:after{
content: none !important;
}
@media(max-width:600px){
.imageContainer{
height: 120px;
}
}
@media(min-width:992px){
.contact button[data-action-click="ui.modal.load"]{
color: #1E1E1E !important;
}
.userInfo .followButton,
.userInfo .unfollowButton {
color: #1E1E1E !important;
}
}
.editPencil{
width: 40px;
height: 40px;
cursor: pointer;
display: flex !important;
align-items: center;
justify-content: center;
border: 0.893204px solid #B9B9B9;
box-sizing: border-box;
border-radius: 23.2233px;
color: var(--accent);
font-size: 18px;
position: absolute;
top: 0;
right: 0;
}
.experience ul{
position: relative;
padding-left: 13px;
}
.addExperience,.editExperience{
position: absolute;
top: 0;
display: flex;
align-items: center;
}
.addExperience {
top: 17px;
right: 10px;
}
.editExperience{
right: 0;
}
.userSpace{
display: flex;
align-items: first baseline;
}
.addExperience,.editExperience .pencilEdit,.deleteExperience{
background: white !important;
width: 45px !important;
height: 45px !important;
border-radius: 50% !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.editExperience .pencilEdit{
margin-right: 7px;
}
.userProfileContainer{
max-width: 100% !important;
}
.userCoins .coinsBody {
display: flex;
align-items: center;
}
.userCoins .coinsBody .myCoinBlock{
display: inline-block;
}
.userCoins .coinsBody .myCoinName {
width: 24px;
height: 24px;
font-size: 10.56px;
padding: 4.32px 0;
border-radius: 12px;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.projectOwner>span
{
display: flex;
align-items: center;
justify-content: center;
position: relative;
transform: translateY(-50%);
}
.hack-to-fix-wrong-position {
position: absolute !important;
}
/*
.space-funding .modal-dialog {
max-width: 80% !important;
width: 100%;
}
*/
/*
.details-popup {
display: flex;
justify-content: center;
align-items: center;
min-height: 100%;
}
.details-popup .modal-dialog {
max-width: 95% !important;
width: 70% !important;
}
.details-popup .modal-header {
padding: 0;
text-align: left;
}
.details-popup .modal-title {
font-size: 16px;
font-weight: bold;
color: #202020;
margin-top: 0;
padding: 10px;
}
.details-popup .panel {
box-shadow: none;
}
.details-popup .panel .panel-heading .img-container img{
height: 400px;
}
.details-popup .modal-dialog {
margin: auto;
}
.details-popup .panel .panel-body{
margin-bottom: 0;
}
.details-popup .panel .panel-body .description p {
margin-top: 0;
}
.details-popup .panel .product-content {
padding: 24px;
}
.details-popup .value,
.details-popup .location,
.details-popup .categories,
.details-popup .description {
padding: 5px;
}
.details-popup .value .nameValue ,
.details-popup .location .nameValue,
.details-popup .categories .nameValue,
.details-popup .description .nameValue {
display: inline-block;
margin-right: 20px;
text-transform: capitalize;
color: #7f7f7f;
font-size: inherit;
font-weight: bold
}
@media (min-width: 992px) {
.details-popup .panel .panel-body {
padding-top: 0;
padding-bottom: 0;
}
.details-popup .panel .product-content {
padding: 48px 24px;
}
}
@media (max-width: 575px) {
.details-popup .modal-dialog {
width: 100% !important;
}
.details-popup .panel .panel-heading .img-container img{
height: 180px;
}
}
*/
@media (max-width: 991px) {
.styleState .stateFriend{
display: none !important;
}
.styleState{
justify-content: space-evenly;
}
.styleState .caret{
margin-left: -7px;
}
}
.styleState .caret{
color: #456ca8;
} | resources/css/user.css | * {
font-family: Open Sans;
outline: none !important;
}
body {
background: #f5f5f5 !important;
overflow-x: hidden;
}
.userProfileContainer {
--accent: #456ca8;
--accent-lighter: #ced9eb;
}
.userProfileContainer .panel-heading a {
font-size:0.9em;
color:#3cbeef;
}
.userProfileContainer .panel-heading a {
font-size:0.9em;
color:#3cbeef;
}
#contentFormBody .fa{
font: normal normal normal 14px/1 FontAwesome !important;
}
#contentFormBody .contentForm_options .btn_container .label-public{
right: 50px;
}
/*
.modal-content .modal-header .close {
margin-top: 2px;
margin-right: 5px;
}
.modal-dialog .close{
position: absolute;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000;
opacity: 0.2;
padding: 0 !important;
margin: 0;
top: 10px;
right: 10px;
}
.modal-dialog h4{
font-size: 20px;
font-weight: 600 !important;
letter-spacing: -0.3px;
}
#globalModal{
padding: 0 !important;
}
@media (min-width: 768px){
.modal-dialog {
max-width: 600px !important;
margin: 30px auto !important;
}
}
*/
.activities li .media {
display: flex;
align-items: center;
}
.activities li .media .img-space {
top: 60px !important;
}
#activityStream .activity-entry{
display: flex;
align-items: center;
}
#activityStream .activity-entry .media{
min-height: 120px;
}
/* */
.userInfo {
background: #FFFFFF;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
}
.userInfo>div {
position: relative;
}
.userInfo .cover {
height: 226px;
width: 100%;
object-fit: cover;
box-sizing: border-box;
}
.userInfo .topInfo {
padding-top: 30px;
}
.userInfo .badges span {
font-style: normal;
font-weight: 600;
font-size: 10px;
line-height: 14px;
/* identical to box height */
text-align: center;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #000000;
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 14px;
padding: 7px 15px;
display: inline-block;
margin: 0 0 10px;
}
.userInfo .profilePicture {
text-align: center;
}
.userInfo .profilePicture > a {
position: relative;
z-index: 3;
}
.userInfo .profilePicture img {
width: 113px;
height: 113px;
object-fit: cover;
border-radius: 50%;
}
.userInfo .detailInfo {
text-align: center;
}
.userInfo .socialLinks {
text-align: right
}
.userInfo .socialLinks > a:not(:last-child) {
margin-right: 7px;
}
.userInfo .socialLinks i {
font-size: 22px;
}
.userInfo .detailInfo .name {
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 33px;
/* identical to box height */
text-align: center;
color: #000000;
margin: 0;
}
.userInfo .detailInfo .title {
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
/* identical to box height */
text-align: center;
color: #000000;
margin: 0;
}
.userInfo .detailInfo .address {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
/* identical to box height */
text-align: center;
/* Grey */
color: #B9B9B9;
margin: 0;
}
.userInfo .bio {
margin-top: 9px !important;
margin: 50px auto;
padding: 0 7%;
}
.userInfo .bio p {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 25px;
/* or 179% */
text-align: center;
/* Black */
color: #1E1E1E;
margin: 0;
}
.userInfo .social {
display: flex;
align-items: center;
justify-content: space-between;
padding: 22px 45px;
border-top: 1px solid #E6E6E6;
}
.userInfo .contact {
display: flex;
}
.userInfo .contact button {
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 26px;
padding: 7px 20px;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
text-align: center;
color: #1E1E1E;
box-shadow: none;
outline: none;
}
.userInfo .contact button:not(:last-child) {
margin-right: 15px;
}
.userInfo .contact button>span {
display: flex;
align-items: center;
}
.userInfo .contact button img {
margin-right: 7px;
}
.userInfo .contact button:not(.connect) {
background: white !important;
}
.userInfo .contact .connect,.userInfo .contact .disconnect {
background: #456CA8;
border: 1px solid #456CA8;
box-sizing: border-box;
border-radius: 26px;
font-style: normal;
font-weight: bold;
font-size: 14px;
text-align: center;
color: #FFFFFF;
display: flex;
align-items: center;
}
.tabletViewTasks{
display: none;
}
.panelHeadingCustomBlock span{
font-size: 15px;
}
/* mobile items */
.userInfo .socialLinks.mobileView, .userInfo .badges.mobileView, .userCoins.tabletView {
display: none;
}
.userInfo .socialLinks.mobileView, .userInfo .badges.mobileView, .userCoins.tabletViewTasks {
display: none;
}
.userInfo .badges.mobileView {
margin: 20px auto;
}
.userInfo .badges.mobileView span {
margin: 0 !important;
}
.userInfo .socialLinks.mobileView {
text-align: left;
}
/* media queries */
@media (max-width:991px) {
.profile-layout-container {
max-width: 100% !important;
/*padding: 0 25px ;*/
}
.userInfo .badges span {
display: inline-block;
}
.userInfo .badges span:not(:last-child) {
margin-bottom: 10px;
}
.userInfo .topInfo {
padding-top: 20px;
}
.userInfo .detailInfo {
margin-top: 0;
}
.userInfo .contact button:not(.connect) {
padding: 0;
width: 45px;
height: 45px;
text-indent: 73%;
}
.userInfo .contact button:not(.connect) img {
margin: 0 auto;
}
.userInfo .contact button:not(.connect) img+span {
display: none;
}
.userInfo .social {
padding: 22px 30px;
}
.userInfo .contact button.connect {
height: 45px;
}
.ongoingprojects, .offersMayLike, .peopleMayLike {
display: none;
}
.userCoins {
display: none;
}
.userCoins.tabletView {
display: block;
}
.tabletViewTasks {
display: block;
}
.userInfo .followButton,
.userInfo .unfollowButton {
padding: 0 !important;
width: 45px !important;
height: 45px !important;
text-indent: 40% !important;
white-space: nowrap !important;
overflow: hidden !important;
color: white !important;
}
}
@media (max-width:767px) {
.userInfo .profilePicture img{
margin-left: 20px;
}
.profile-layout-container {
max-width: 100% !important;
padding: 0 15px !important;
}
.userInfo>div>div:not(:last-child) {
padding: 0 15px !important;
}
.userInfo, .userInfo .cover {
border: unset;
}
.userInfo .socialLinks, .userInfo .badges {
display: none;
}
.userInfo .socialLinks.mobileView, .userInfo .badges.mobileView {
display: block;
}
.userInfo .contact {
display: flex;
position: absolute;
top: 10px;
right: 15px;
text-align: right;
}
.userInfo .contact button:not(:last-child) {
margin-right: 6px;
width: 33px;
height: 33px;
text-indent: 7px;
}
.userInfo .contact button.connect {
height: 33px;
}
.userInfo .profilePicture {
text-align: left;
padding: 0;
}
.userInfo .detailInfo {
margin-top: 20px;
margin-left: 25px;
}
.userInfo .detailInfo h2, .userInfo .detailInfo h4, .userInfo .detailInfo p {
text-align: left !important;
}
.userInfo .bio {
margin-top: 0;
margin-bottom: 25px;
}
.userInfo .bio p {
text-align: left;
}
.userInfo .social {
border: none;
padding: 22px 15px;
}
.userInfo .contact button img {
height: 15px;
}
.userInfo .contact button>span {
font-size: 10px;
}
.userInfo .detailInfo .name {
font-size: 20px;
}
.userInfo .detailInfo .title {
font-size: 14px;
}
.userInfo .detailInfo .address, .userInfo .bio p {
font-size: 12px;
}
.userInfo .bio p {
line-height: 20px;
}
.profileLeftContainer,.layout-sidebar-container{
padding: 0 !important;
}
.contact.mobileView{
display: flex;
position: absolute;
top: 10px;
right: 10px;
}
.social .contact{
display: none;
}
.userInfo .followButton,
.userInfo .unfollowButton {
margin-right: 6px !important;
width: 33px !important;
height: 33px !important;
text-indent: 3px !important;
}
.profileConnect{
font-size: 10px !important;
}
}
@media (min-width:768px) {
.contact.mobileView{
display: none;
}
}
/* timeline */
.timeLine>div {
padding-left: 0;
}
/* experience block */
.experience {
background: white;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
}
.experience .position,
.experience .companyName {
font-style: normal;
font-weight: 600;
font-size: 14px;
margin-bottom: 6px;
margin-top: 0;
}
.experience .position {
color: #000000;
}
.experience .companyName {
color: var(--accent);
}
.experience .dateAndPlace {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
color: #B9B9B9;
margin-bottom: 0;
margin-top: 0;
}
.listExperience li {
margin-top: 20px;
position: relative;
}
.experience .moreDetails {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 25px;
color: #1E1E1E;
}
.postFooter .wall-entry-controls{
border-top: 1px solid #E6E6E6;
padding: 12px 17px;
margin: 0 -10px -10px;
}
.postFooter .wall-entry-controls a, .postFooter .wall-entry-controls i{
font-style: normal;
font-size: 14px;
line-height: 19px;
color: #1E1E1E;
}
.postFooter .wall-entry-controls a{
font-weight: 600;
}
.postFooter .wall-entry-controls i{
margin-right: 10px;
}
.postFooter .wall-entry-controls i.liked{
color: red;
font-weight: 600;
}
.imageContainer{
margin-bottom: 20px;
height: 180px;
}
.imageContainer> a{
display: block;
width: 100%;
height: 100%;
position: relative;
}
.imageContainer img{
width: 100%;
height: 100%;
object-fit: cover;
}
h2.moreImages{
position: absolute;
top: 0;
left: 0;
color: white;
font-size: 30px;
font-weight: bold;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #0000008c;
}
/* */
.recentPosts .post {
background: #FFFFFF;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
/* padding: 11px 17px 0; */
padding-top: 10px;
margin-bottom: 30px;
}
.post .postHeader, .post .postBody {
padding: 0 17px;
}
.post .postHeader {
display: flex;
align-items: center;
}
.post .postHeader>img {
width: 42px;
height: 42px;
object-fit: cover;
border-radius: 50%;
margin-right: 20px;
}
.post .postInfo .postDate, .activity .activityDate {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
color: #B9B9B9;
}
.post .postInfo>h2, .activity .activityKeyWords {
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 19px;
color: #000000;
}
.post .postInfo i {
color: #C4C4C4;
margin: 0 10px;
}
.post .postImages {
height: 245px;
margin: 0 -10px 25px;
}
.post .postImages>div {
padding: 0 10px;
}
.post .postImages img {
width: 100%;
height: 100%;
object-fit: cover;
}
.post .postFooter span, .post .postFooter span i {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #1E1E1E;
}
.post .postFooter i:not(.commentsLikesSeparator) {
margin-right: 10px;
}
.post .commentsLikesSeparator {
color: #E0E0E0;
margin: 0 22px;
font-size: 5px;
}
.recentPosts .viewMorePosts, .recentActivities .viewMoreActivities {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
text-align: center;
color: #1E1E1E;
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 26px;
padding: 13px;
width: 100%;
background: white;
}
.recentPosts #image-viewer {
display: none;
position: fixed;
z-index: 1;
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.9);
}
.recentPosts .modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
.recentPosts .imageViewerSlider .slick-prev {
left: 30px;
z-index: 9999;
}
.recentPosts .imageViewerSlider .slick-next {
right: 60px;
z-index: 9999;
}
.recentPosts .imageViewerSlider i {
font-size: 100px;
color: #858585;
position: relative;
top: -60px;
}
.recentPosts .imageViewerSlider .slick-arrow.slick-disabled i {
display: none;
}
/*
.recentPosts .modal-content {
animation-name: zoom;
animation-duration: 0.6s;
}
@keyframes zoom {
from {
transform: scale(0)
}
to {
transform: scale(1)
}
} */
.recentPosts #image-viewer .close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.recentPosts #image-viewer .close:hover, .recentPosts #image-viewer .close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
@media only screen and (max-width: 700px) {
.recentPosts {
padding: 25px 15px;
}
.recentPosts .modal-content {
width: 100%;
}
}
/* recent activities */
.activity {
display: flex;
align-items: center;
padding: 30px 0;
border-bottom: 1px solid #E6E6E6;
}
.activity>img {
width: 42px;
height: 42px;
object-fit: cover;
border-radius: 50%;
margin-right: 20px;
}
.activity .activityType {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
color: #000000;
}
.recentActivities .viewMoreActivities {
margin-top: 30px;
}
/* what i offer && what i need */
.whatWeOffer{
margin-bottom: 5%;
}
.whatIOffer, .whatINeed {
background: #FFFFFF;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
padding: 25px;
margin-bottom: 30px;
position: relative;
}
.whatIOffer h2, .whatINeed h2 {
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
color: #000000;
margin-bottom: 22px;
}
.whatIOffer p, .whatINeed p {
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 25px;
color: #000000;
margin-left: 3%;
}
.whatWeOffer,.whatWeNeed{
position: relative;
}
.whatWeOffer .edit-btn i,.whatWeNeed .edit-btn i{
margin-left: auto;
}
/* coins */
.userCoins {
background: #FFFFFF;
border: 1px solid #ECECEC;
box-sizing: border-box;
border-radius: 4px;
}
.userCoins .panel-heading {
display: flex;
align-items: baseline;
justify-content: space-between;
}
.userCoins .panel-body .coin {
display: inline-flex;
flex-direction: column;
align-items: center;
margin: 0px 10px 10px 0;
}
.userCoins .panel-body .coin span {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #000000;
}
/* ongoingprojects */
.ongoingprojects, .offersMayLike, .peopleMayLike {
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 4px;
padding: 20px;
margin-bottom: 30px;
}
.ongoingprojects h2, .offersMayLike h2, .peopleMayLike h2 {
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 25px;
color: #000000;
}
.ongoingproject, .offerMayLike, .personMayLike {
display: flex;
align-items: center;
margin-top: 25px;
}
.ongoingproject img, .offerMayLike img {
width: 58px;
height: 58px;
object-fit: cover;
border-radius: 4px;
}
.ongoingproject p, .offerMayLike p {
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 20px;
color: #1E1E1E;
display: block;
display: -webkit-box;
margin: 0 auto;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
padding-left: 10px;
}
/* people you may like */
.personMayLike {
justify-content: space-between;
}
.personMayLike>div:first-child {
display: flex;
align-items: center;
}
.personMayLike .personProfilePicture {
width: 58px;
height: 58px;
object-fit: cover;
border-radius: 50%;
margin-right: 10px;
}
.personMayLike .personName {
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #1E1E1E;
margin: 0;
}
.personMayLike .personPost {
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 16px;
color: #1E1E1E;
margin: 0;
}
.personMayLike .addPerson {
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 26px;
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
}
.userInfo .followButton,
.userInfo .unfollowButton {
border: 1px solid #B9B9B9 ;
box-sizing: border-box ;
border-radius: 26px !important;
padding: 7px 20px ;
font-style: normal ;
font-weight: 600 ;
font-size: 14px ;
line-height: 19px ;
text-align: center ;
box-shadow: none ;
outline: none ;
margin-right: 15px ;
background: white !important;
opacity: 1 ;
display: flex ;
align-items: center ;
max-height: 45px !important;
}
.userInfo .followButton::before,
.userInfo .unfollowButton::before {
content: url(../images/follow.svg);
position: relative;
display: inline-block;
margin-right: 7px;
top: 2px;
}
.profileConnect{
background: #3CBEEF;
border: 1px solid #3CBEEF;
color: white !important;
box-shadow: none;
box-sizing: border-box;
border-radius: 26px;
padding: 7px 20px;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
text-align: center;
display: flex;
align-items: center;
}
.contact button[data-action-click="ui.modal.load"]{
border: 1px solid #B9B9B9;
box-sizing: border-box;
border-radius: 26px;
padding: 7px 20px;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
text-align: center;
box-shadow: none;
outline: none;
background: white;
margin-right: 15px;
display: flex;
align-items: center;
}
.contact button[data-action-click="ui.modal.load"]:hover{
background: white !important;
}
.contact button[data-action-click="ui.modal.load"]::before{
content: url(../images/message.svg);
position: relative;
display: inline-block;
margin-right: 7px;
top: 2px;
}
.topInfo.row{
margin: 0;
}
.userInfo #profile-image-upload-buttons{
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 5;
}
.userInfo #profilefileupload:hover ~ #profile-image-upload-buttons,#profile-image-upload-buttons:hover{
opacity: 1 !important;
}
.userInfo #profilefileupload {
position: absolute;
top: 0;
left: 50%;
opacity: 0;
width: 113px;
height: 100%;
transform: translateX(-50%);
z-index: 4;
}
.userInfo #profilefileupload input {
width: 100%;
height: 100%;
cursor: pointer;
}
.profilePicture{
margin-top: -95px;
}
.userInfo #profile-image-upload-loader{
display: none;
}
.userInfo .image-upload-container{
height: 226px !important;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
background: linear-gradient(0deg, #9B9B9B, #9B9B9B), #FFFFFF;
}
.userInfo #banner-image-upload-buttons {
z-index: 2;
}
.userInfo .banner-upload-placeholder {
z-index: 1;
}
.userInfo #bannerfileupload:hover{
opacity: 1 !important;
}
.userInfo #bannerfileupload:hover::before {
content: '';
position: absolute;
background-color: black;
height: 100%;
width: 100%;
left: 0;
opacity: .35;
}
.userInfo #bannerfileupload{
position: absolute;
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
}
.userInfo #bannerfileupload input{
top: 0;
height: 100%;
left: 0;
width: 100%;
cursor: pointer;
z-index: 2;
}
.userInfo #bannerfileupload >div{
text-align: center;
}
.userInfo #bannerfileupload i{
color: white;
font-size: 25px;
}
.userInfo #bannerfileupload h2{
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
text-align: center;
color: #FFFFFF;
}
.userInfo #bannerfileupload p{
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
text-align: center;
color: #FFFFFF;
}
@media screen and (max-width: 767px) {
.userInfo #profilefileupload {
left: 0;
width: 133px;
transform: none;
}
.userInfo #profile-image-upload-buttons{
left: 30px;
top: 65px;
transform: none;
}
}
.contact .editProfile{
/* width: 152px; */
height: 45px;
box-sizing: border-box;
border-radius: 26px;
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 19px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.editProfile img{
margin-right: 7px;
}
.contact .editProfile::before{
margin-right: 10px;
}
.panel-profile:after{
content: none !important;
}
@media(max-width:600px){
.imageContainer{
height: 120px;
}
}
@media(min-width:992px){
.contact button[data-action-click="ui.modal.load"]{
color: #1E1E1E !important;
}
.userInfo .followButton,
.userInfo .unfollowButton {
color: #1E1E1E !important;
}
}
.editPencil{
width: 40px;
height: 40px;
cursor: pointer;
display: flex !important;
align-items: center;
justify-content: center;
border: 0.893204px solid #B9B9B9;
box-sizing: border-box;
border-radius: 23.2233px;
color: var(--accent);
font-size: 18px;
position: absolute;
top: 0;
right: 0;
}
.experience ul{
position: relative;
padding-left: 13px;
}
.addExperience,.editExperience{
position: absolute;
top: 0;
display: flex;
align-items: center;
}
.addExperience {
top: 17px;
right: 10px;
}
.editExperience{
right: 0;
}
.userSpace{
display: flex;
align-items: first baseline;
}
.addExperience,.editExperience .pencilEdit,.deleteExperience{
background: white !important;
width: 45px !important;
height: 45px !important;
border-radius: 50% !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.editExperience .pencilEdit{
margin-right: 7px;
}
.userProfileContainer{
max-width: 100% !important;
}
.userCoins .coinsBody {
display: flex;
align-items: center;
}
.userCoins .coinsBody .myCoinBlock{
display: inline-block;
}
.userCoins .coinsBody .myCoinName {
width: 24px;
height: 24px;
font-size: 10.56px;
padding: 4.32px 0;
border-radius: 12px;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.projectOwner>span
{
display: flex;
align-items: center;
justify-content: center;
position: relative;
transform: translateY(-50%);
}
.hack-to-fix-wrong-position {
position: absolute !important;
}
/*
.space-funding .modal-dialog {
max-width: 80% !important;
width: 100%;
}
*/
/*
.details-popup {
display: flex;
justify-content: center;
align-items: center;
min-height: 100%;
}
.details-popup .modal-dialog {
max-width: 95% !important;
width: 70% !important;
}
.details-popup .modal-header {
padding: 0;
text-align: left;
}
.details-popup .modal-title {
font-size: 16px;
font-weight: bold;
color: #202020;
margin-top: 0;
padding: 10px;
}
.details-popup .panel {
box-shadow: none;
}
.details-popup .panel .panel-heading .img-container img{
height: 400px;
}
.details-popup .modal-dialog {
margin: auto;
}
.details-popup .panel .panel-body{
margin-bottom: 0;
}
.details-popup .panel .panel-body .description p {
margin-top: 0;
}
.details-popup .panel .product-content {
padding: 24px;
}
.details-popup .value,
.details-popup .location,
.details-popup .categories,
.details-popup .description {
padding: 5px;
}
.details-popup .value .nameValue ,
.details-popup .location .nameValue,
.details-popup .categories .nameValue,
.details-popup .description .nameValue {
display: inline-block;
margin-right: 20px;
text-transform: capitalize;
color: #7f7f7f;
font-size: inherit;
font-weight: bold
}
@media (min-width: 992px) {
.details-popup .panel .panel-body {
padding-top: 0;
padding-bottom: 0;
}
.details-popup .panel .product-content {
padding: 48px 24px;
}
}
@media (max-width: 575px) {
.details-popup .modal-dialog {
width: 100% !important;
}
.details-popup .panel .panel-heading .img-container img{
height: 180px;
}
}
*/
@media (max-width: 991px) {
.styleState .stateFriend{
display: none !important;
}
.styleState{
justify-content: space-evenly;
}
.styleState .caret{
margin-left: -7px;
}
}
.styleState .caret{
color: #456ca8;
} | 0.326593 | 0.055031 |
@font-face {
font-family: PTSans;
src: local("☺"), url("images/game_channel/PTSans.svg#webfontmBFaK3EM") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansBold;
src: local("☺"), url("images/game_channel/PTSansBold.svg#webfontpfl2y6jq") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansItalic;
src: local("☺"), url("images/game_channel/PTSansItalic.svg#webfontYVflOw0s") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansBoldItalic;
src: local("☺"), url("images/game_channel/PTSansBoldItalic.svg#webfont2OZu98Lg") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansNarrow;
src: local("☺"), url("images/game_channel/PTSansNarrow.svg#webfontzjaCm4lR") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansNarrowBold;
src: local("☺"), url("images/game_channel/PTSansNarrowBold.svg#webfontSAYAwFVt") format("svg");
font-weight: normal;
font-style: normal; }
.manifest_dependency_hints {
background-image: url(images/game_channel/logo.mdpi.png);
background-image: url(images/game_channel/placeholder.firesale.png);
background-image: url(images/game_channel/placeholder.cc.png); }
.foo {
display: none; }
body {
font-size: 12px;
font-family: helvetica;
background: transparent; }
body.ios .spinner {
background: white url(images/game_channel/spinner.ios.mdpi.gif) center center no-repeat;
width: 25px;
height: 25px;
-webkit-background-size: 16px 16px !important;
-webkit-animation-name: none;
-webkit-border-radius: 3px; }
#spotlight {
color: #666666;
margin: 0 10px; }
#spotlight section, #spotlight .section {
-webkit-border-radius: 4px;
margin: 12px 0;
-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6); }
#spotlight section.header_section, #spotlight .section.header_section {
-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4); }
#spotlight section h3.section_title, #spotlight .section h3.section_title {
font-family: PTSansBold, helvetica;
white-space: nowrap;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b9c6c9), color-stop(1, #9ca8ab));
overflow: hidden;
white-space: nowrap;
text-overflow: clip;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 1px;
border-bottom: 1px solid #999999; }
#spotlight section .cell, #spotlight .section .cell {
height: auto;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eff6f8), color-stop(1, #e0e9eb));
border: 0;
border-top: 1px solid white;
border-bottom: 1px solid silver; }
#spotlight section .cell.touched, #spotlight .section .cell.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #cfd6d8), color-stop(1, #c0c9cb)); }
#spotlight section .cell:first-child, #spotlight .section .cell:first-child {
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px; }
#spotlight section .cell:last-child, #spotlight .section .cell:last-child {
-webkit-border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom: 0; }
#spotlight .button {
-webkit-border-radius: 10px;
-webkit-border-image: none;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #bbbbbb), color-stop(1, #999999));
-webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.6);
color: white;
font-weight: bold;
text-shadow: rgba(0, 0, 0, 0.65) 0px -1px 1px; }
#spotlight .button.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #999999), color-stop(1, #aaaaaa)); }
#spotlight #index {
color: white;
font-family: helvetica; }
#spotlight #index section .cell, #spotlight #index .section .cell {
padding: 0;
border: 0; }
#spotlight #index section .cell.loading, #spotlight #index .section .cell.loading {
background: #666666; }
#spotlight #index section #about_game_channel, #spotlight #index .section #about_game_channel {
color: white;
background: darkgreen url(images/game_channel/welcome.mdpi.png) center no-repeat;
-webkit-background-size: 303px 39px;
text-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px;
font-weight: normal;
font-size: 16px;
font-family: PTSansBold, helvetica;
padding-left: 36px;
height: 35px;
line-height: 35px;
padding-top: 4px; }
#spotlight #index section #about_game_channel.touched, #spotlight #index .section #about_game_channel.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.4)), color-stop(1, rgba(0, 0, 0, 0.4))), url(images/game_channel/welcome.mdpi.png); }
#spotlight #index section .link_cell, #spotlight #index .section .link_cell {
color: #21373d;
font-size: 13px;
padding: 0 10px; }
#spotlight #index section .link_cell p, #spotlight #index .section .link_cell p {
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px;
font-family: PTSansBold, helvetica;
font-weight: normal;
padding: 0;
margin: 0;
line-height: 35px;
height: 35px;
padding-top: 4px;
color: inherit; }
#spotlight #index section#fgotd .overlay, #spotlight #index .section#fgotd .overlay {
background-image: url(images/game_channel/star.mdpi.png); }
#spotlight #index section#gold .overlay, #spotlight #index .section#gold .overlay {
background-image: url(images/game_channel/gold.mdpi.png); }
#spotlight #index section#fire_sale .overlay, #spotlight #index .section#fire_sale .overlay {
background-image: url(images/game_channel/fire.mdpi.png); }
#spotlight #index section#channel_challenge .overlay, #spotlight #index .section#channel_challenge .overlay {
background-image: url(images/game_channel/vs.mdpi.png); }
#spotlight #index section .loading, #spotlight #index .section .loading {
height: 117px;
display: -webkit-box;
-webkit-box-pack: center;
-webkit-box-align: center; }
#spotlight #index section .feature_cell, #spotlight #index .section .feature_cell {
-webkit-background-size: 100% auto;
background: #666666 center center; }
#spotlight #index section .feature_cell .inner, #spotlight #index .section .feature_cell .inner {
padding-top: 76px;
background-color: transparent;
-webkit-border-radius: 4px; }
#spotlight #index section .feature_cell.touched .inner, #spotlight #index .section .feature_cell.touched .inner {
background-color: rgba(0, 0, 0, 0.5); }
#spotlight #index section .feature_cell:last-child .overlay, #spotlight #index .section .feature_cell:last-child .overlay {
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px; }
#spotlight #index section .feature_cell .overlay, #spotlight #index .section .feature_cell .overlay {
padding: 5px 5px 5px 34px;
-webkit-background-size: 30px 30px;
background-color: rgba(0, 0, 0, 0.5);
background-position: 2px 5px;
background-repeat: no-repeat; }
#spotlight #index section .feature_cell .overlay #time_left, #spotlight #index .section .feature_cell .overlay #time_left {
float: right;
width: 82px;
height: 32px;
-webkit-box-sizing: border-box;
border: 1px solid #24768d;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3ab9c4), color-stop(1, #1c8fb0));
-webkit-border-radius: 5px;
-webkit-box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.5);
padding: 2px 4px;
color: #004a5f;
text-shadow: #83d7e3 0px 1px 1px;
font-family: helvetica;
font-weight: bold;
font-size: 10px; }
#spotlight #index section .feature_cell .overlay #time_left .clock, #spotlight #index .section .feature_cell .overlay #time_left .clock {
color: white;
text-shadow: #282828 0px -1px 1px rgba(100, 100, 100, 0.65);
line-height: 15px;
font-family: PTSansNarrowBold, helvetica;
font-size: 15px;
font-weight: normal; }
#spotlight #index section .feature_cell .overlay h2.game_title, #spotlight #index section .feature_cell .overlay h3.section_title, #spotlight #index .section .feature_cell .overlay h2.game_title, #spotlight #index .section .feature_cell .overlay h3.section_title {
font-family: PTSansBold, helvetica;
font-weight: normal;
background-image: none;
margin: 0;
padding: 0;
border: 0; }
#spotlight #index section .feature_cell .overlay h3.section_title, #spotlight #index .section .feature_cell .overlay h3.section_title {
height: auto;
line-height: 13px;
margin-top: 2px;
-webkit-border-radius: 0px;
font-family: PTSansNarrowBold, helvetica;
font-wieght: normal;
font-size: 13px; }
#spotlight #index section .feature_cell .overlay h2.game_title, #spotlight #index .section .feature_cell .overlay h2.game_title {
line-height: 18px;
max-height: 36px;
overflow: hidden;
font-weight: bold;
font-size: 18px; }
#spotlight #games section .game_cell, #spotlight #games .section .game_cell {
display: -webkit-box;
-webkit-box-orient: horizontal; }
#spotlight #games section .game_cell .image, #spotlight #games .section .game_cell .image {
border: 1px solid #aaaaaa;
background: white;
-webkit-border-radius: 8px;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
width: 112px;
height: 64px;
-webkit-background-size: 112px 64px; }
#spotlight #games section .game_cell .image.icon_image, #spotlight #games .section .game_cell .image.icon_image {
width: 54px;
height: 54px;
padding: 0;
margin: 0px;
-webkit-background-size: 54px 54px; }
#spotlight #games section .game_cell .cell_content, #spotlight #games .section .game_cell .cell_content {
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px;
-webkit-box-flex: 1;
margin-left: 10px; }
#spotlight #games section .game_cell .cell_content .title, #spotlight #games .section .game_cell .cell_content .title {
color: #21373c;
font-family: PTSansBold, helvetica;
font-weight: normal;
padding: 3px 0 0 0;
margin: 0; }
#spotlight #games section .game_cell .cell_content .description, #spotlight #games .section .game_cell .cell_content .description {
margin: 0;
padding: 0;
min-height: 32px; }
#spotlight #games section .game_cell .cell_content .price, #spotlight #games .section .game_cell .cell_content .price {
height: 13px;
border: 1px solid silver;
padding: 1px 4px;
margin: 4px 2px;
-webkit-border-radius: 3px;
font-size: 10px;
font-weight: bold;
line-height: 13px;
display: inline-block;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dfdfdf), color-stop(1, #efefef)); }
#spotlight #games section .game_cell .cell_content .price.free, #spotlight #games .section .game_cell .cell_content .price.free {
text-transform: uppercase;
color: #0d656e;
font-style: italic;
font-size: 9.5px;
line-height: 13px;
text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 1px; }
#spotlight section .cell.coming_soon, #spotlight .section .cell.coming_soon {
height: 40px;
line-height: 40px;
padding: 0 12px 0 38px;
border: 0;
margin-top: 12px;
margin-bottom: 12px;
color: white;
font-weight: bold;
font-size: 17px;
background-position: 6px center, 0 0;
background-repeat: no-repeat, repeat;
-webkit-background-size: 30px 30px, 100% 100%; }
#spotlight section span, #spotlight .section span {
font-family: PTSansBoldItalic, helvetica;
float: right;
font-size: 15px;
text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 1px; }
#spotlight #fire_sale {
font-family: PTSansBold;
font-weight: normal; }
#spotlight #fire_sale section .cell.coming_soon, #spotlight #fire_sale .section .cell.coming_soon {
background-image: url(images/game_channel/fire.white.mdpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fa9b33), color-stop(1, #f96923));
text-shadow: #934720 0px 1px 1px; }
#spotlight #fire_sale section .cell.coming_soon span, #spotlight #fire_sale .section .cell.coming_soon span {
color: #a93700; }
#spotlight #channel_challenge {
font-family: PTSansBold;
font-weight: normal; }
#spotlight #channel_challenge section .cell.coming_soon, #spotlight #channel_challenge .section .cell.coming_soon {
background-image: url(images/game_channel/vs.white.mdpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #90ce38), color-stop(1, #79b821));
text-shadow: #828282 0px 1px 1px; }
#spotlight #channel_challenge section .cell.coming_soon span, #spotlight #channel_challenge .section .cell.coming_soon span {
color: #3c6600; }
/* --- game_channel/fire_sale, game_channel/channel_challenge --- */
#spotlight section.step_list .cell, #spotlight .section.step_list .cell {
height: 54px;
-webkit-box-sizing: border-box;
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: center; }
#spotlight section.step_list .cell .icon, #spotlight .section.step_list .cell .icon {
width: 34px;
height: 34px;
float: none;
-webkit-background-size: 26px 26px;
background-position: center center;
background-repeat: no-repeat; }
#spotlight section.step_list .cell:nth-child(2) .icon, #spotlight .section.step_list .cell:nth-child(2) .icon {
background-image: url(images/game_channel/step.1.mdpi.png); }
#spotlight section.step_list .cell:nth-child(3) .icon, #spotlight .section.step_list .cell:nth-child(3) .icon {
background-image: url(images/game_channel/step.2.mdpi.png); }
#spotlight section.step_list .cell:nth-child(4) .icon, #spotlight .section.step_list .cell:nth-child(4) .icon {
background-image: url(images/game_channel/step.3.mdpi.png); }
#spotlight section.step_list .cell:nth-child(5) .icon, #spotlight .section.step_list .cell:nth-child(5) .icon {
background-image: url(images/game_channel/step.4.mdpi.png); }
#spotlight section.step_list .cell .cell_content, #spotlight .section.step_list .cell .cell_content {
-webkit-box-flex: 1;
color: #21373d;
font-weight: bold;
font-size: 14px;
line-height: 16px; }
/* --- game_channel/about --- */
#about_game_channel h1 {
font-family: PTSansBold, helvetica;
color: #21373d;
font-size: 17px;
line-height: 18px;
margin: 0;
padding: 0; }
#about_game_channel p {
color: #595959;
font-size: 13px;
line-height: 15px;
font-weight: normal; }
#about_game_channel p:last-child {
margin-bottom: 1px; }
#about_game_channel ul {
background: white;
border: 1px solid #bfcacd;
-webkit-border-radius: 3px;
list-style-type: none;
padding: 0;
margin: 15px 0; }
#about_game_channel ul li {
border-bottom: 1px solid #bfcacd;
padding: 10px 10px 10px 50px;
margin: 0;
-webkit-background-size: 30px 30px;
background-position: 12px center;
background-repeat: no-repeat; }
#about_game_channel ul li:last-child {
border: 0; }
#about_game_channel ul li.fgotd {
background-image: url(images/game_channel/star.mdpi.png); }
#about_game_channel ul li.fire_sale {
background-image: url(images/game_channel/fire.mdpi.png); }
#about_game_channel ul li.channel_challenge {
background-image: url(images/game_channel/vs.mdpi.png); }
#about_game_channel ul li h2 {
font-family: PTSansBold, helvetica;
font-weight: normal;
margin: 0;
padding: 0;
font-size: 14px;
color: #21373d; }
#about_game_channel ul li h2 span {
font-size: 13px;
font-style: normal;
float: none !important; }
#about_game_channel ul li p {
margin: 0;
padding: 0;
font-size: 12px; }
/* --- game_channel/enable_feint --- */
#enable_feint, #offline {
background: #254856 url(images/game_channel/enable_bg.mdpi.png) center center;
-webkit-background-size: 320px 415px;
text-align: center;
padding: 20px;
margin: 0 -10px;
min-height: 356px;
font-family: PTSansBold, helvetica;
font-weight: normal !important; }
#enable_feint h1, #offline h1 {
color: white;
font-size: 25px;
line-height: 28px; }
#enable_feint p, #offline p {
font-size: 16px;
line-height: 19px;
color: white; }
#enable_feint ul, #offline ul {
-webkit-box-sizing: border-box;
width: 283px;
height: 160px;
margin: 0 auto;
padding: 1px;
background: url(images/game_channel/enable.table.mdpi.png) no-repeat;
-webkit-background-size: 283px 160px;
list-style-type: none;
text-align: left; }
#enable_feint ul li, #offline ul li {
margin: 10px;
height: 35px;
line-height: 35px;
padding-top: 4px;
color: #234351;
font-size: 17px;
font-weight: bold;
padding-left: 42px;
-webkit-background-size: 30px 30px;
background-position: 6px center;
background-repeat: no-repeat; }
#enable_feint ul li.fgotd, #offline ul li.fgotd {
background-image: url(images/game_channel/star.mdpi.png); }
#enable_feint ul li.fire_sale, #offline ul li.fire_sale {
background-image: url(images/game_channel/fire.mdpi.png); }
#enable_feint ul li.channel_challenge, #offline ul li.channel_challenge {
background-image: url(images/game_channel/vs.mdpi.png); }
#enable_feint .sad, #offline .sad {
height: 179px;
-webkit-background-size: 104px 179px;
background: url(images/game_channel/iphone.sad.mdpi.png) center center no-repeat; }
#enable_feint .button, #offline .button {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2f9f57), color-stop(1, #06653c));
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 2px;
font-size: 21px;
padding: 0;
line-height: 37px;
padding-top: 5px;
-webkit-border-radius: 5px; }
#enable_feint .button.touched, #offline .button.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #06653c), color-stop(1, #2f9f57)); }
#enable_feint .tos, #offline .tos {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #254d5b), color-stop(1, #1e3b43));
-webkit-box-sizing: border-box;
font-family: helvetica;
text-align: left;
margin: 0 -20px;
padding: 8px 12px;
-webkit-box-shadow: black 0px 0px 15px;
height: 52px;
position: absolute;
top: 388px; }
#enable_feint .tos.touched, #offline .tos.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #153d4b), color-stop(1, #0e2b33)); }
#enable_feint .tos p, #offline .tos p {
color: #99bfc2;
font-weight: normal;
font-size: 11px;
line-height: 16px;
padding: 0;
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px;
margin: 0;
margin-right: 20px; }
#offline h1 {
margin: 1px 0 12px; }
#offline p {
margin: 8px 0; }
#offline .button {
margin: 19px 0; }
/* --- game_channel/tos -- */
#terms_of_service {
padding: 10px; }
#terms_of_service h1, #terms_of_service strong {
color: #06727c; }
/* --- game_channel/game --- */
#game .cell p {
color: #595959;
font-size: 12px;
font-weight: normal; }
#game .cell.link_cell p {
font-family: PTSansBold, helvetica;
font-weight: normal;
font-size: 14px;
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px; }
#game #comments #take_action_to_post {
border-top-left-radius: 4px;
border-top-right-radius: 4px; }
#game #comments #take_action_to_post .button {
margin: 0; }
#game #comments #add_comment {
margin: 0; }
#game #comments form#comment_form textarea {
display: block;
width: 100%;
height: 60px;
border: 1px solid #aaaaaa;
-webkit-border-radius: 6px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
-webkit-box-sizing: border-box; }
#game #comments .comment_cell {
height: auto; }
#game #comments .comment_cell.last {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: 0; }
#game #comments .comment_cell .image {
border: 1px solid #aaaaaa;
background: white;
-webkit-border-radius: 8px;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
*display: inline-block;
width: 48px;
height: 48px;
background-image: url(images/icon.user.male.mdpi.png);
-webkit-background-size: 48px 48px;
margin: 0 10px 12px 0px;
float: left; }
#game #comments .comment_cell .image:after {
content: " ";
display: block;
height: 0;
clear: both;
visibility: hidden; }
#game #comments .comment_cell .cell_content {
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px;
min-height: 50px; }
#game #comments .comment_cell .cell_content .username {
font-family: PTSansBold, helvetica;
font-size: 14px;
font-weight: normal;
color: #21373d; }
#game #comments .comment_cell .cell_content .comment_body {
margin: 0 0 4px 60px; }
#game #comments .comment_cell .cell_content .comment_body .inner {
overflow: hidden; }
#game #comments .comment_cell .cell_content .date {
margin-left: 60px;
color: #aaaaaa;
font-size: 11px; }
#game #comments #load_more {
text-align: center;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: 0; }
#game #comments #load_more p {
font-family: PTSansBold, helvetica;
font-weight: normal;
font-size: 14px; }
#game #text_description {
padding: 10px; }
#game #text_description p {
margin: 0; }
#game #screenshots .icon {
background: url("images/game_channel/screenshot.mdpi.png") top left no-repeat;
-webkit-background-size: 44px 35px;
margin: 0;
width: 44px;
height: 35px; }
#game #screenshots p {
margin-left: 50px;
color: #21373d; }
#game #video {
padding: 0;
border-top: none;
max-height: 185px;
overflow: hidden; }
#game #video #youtube_object {
min-height: 150px; }
#game #video #youtube_object object, #game #video #youtube_object embed {
padding: 0;
margin: 0;
margin-bottom: -3px; }
#game #countdown, #game #gold {
position: relative;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #1faeba), color-stop(1, #1c8fb0)); }
#game #countdown .cell, #game #gold .cell {
border-top: none;
padding-left: 34px;
height: 22px;
background: url(images/game_channel/star.white.mdpi.png) 5px center no-repeat;
-webkit-background-size: 23px 23px; }
#game #countdown .cell .title, #game #gold .cell .title {
color: white;
font-weight: normal;
text-shadow: rgba(0, 0, 0, 0.65) 0px -1px 1px;
font-size: 17px;
font-family: PTSansBold, helvetica;
line-height: 18px;
padding-top: 4px;
font-weight: normal;
margin-top: 0; }
#game #countdown .cell .timer, #game #gold .cell .timer {
float: right;
margin: 0;
width: 72px; }
#game #countdown .cell .timer h4, #game #gold .cell .timer h4 {
color: #004a5f;
margin: 0;
text-shadow: #83d7e3 0px 1px 1px;
position: relative;
top: -4px;
font-family: helvetica;
font-weight: bold;
font-size: 10px; }
#game #countdown .cell .timer span, #game #gold .cell .timer span {
color: white;
text-shadow: #282828 0px -1px 1px rgba(100, 100, 100, 0.65);
line-height: 13px;
position: relative;
top: -2px;
float: none;
font-style: normal;
font-family: PTSansNarrowBold, helvetica;
font-size: 15px;
font-weight: normal; }
#game section#gold, #game .section#gold {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f1b108), color-stop(1, #dd922e));
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; }
#game section#gold div.cell, #game .section#gold div.cell {
background-image: url(images/game_channel/leaf.white.mdpi.png); }
#game section#gold div.cell div.title, #game .section#gold div.cell div.title {
padding: 0;
position: relative;
top: -3px; }
#game section#gold div.cell div.subtitle, #game .section#gold div.cell div.subtitle {
color: #775400;
font-style: italic;
font-weight: bold;
font-size: 11px;
text-shadow: rgba(255, 255, 255, 0.35) 0px 1px 0px;
position: relative;
top: -5px; }
#game .game_info {
position: relative; }
#game .game_info .icon_image {
border: 1px solid #aaaaaa;
background: white;
-webkit-border-radius: 8px;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
width: 54px;
height: 54px;
margin: 8px;
-webkit-background-size: 54px 54px;
position: absolute;
top: 0;
left: 0; }
#game .game_info .cell_content {
margin-left: 66px;
font-weight: bold;
min-height: 57px; }
#game .game_info .cell_content .developer {
font-size: 11px;
color: #969696;
font-weight: bold;
text-overflow: clip; }
#game .game_info .cell_content .title {
font-family: PTSansBold, helvetica;
font-weight: normal;
font-size: 16px;
color: #21373d;
margin-top: 0;
width: 150px;
text-overflow: clip;
white-space: normal;
overflow: visible; }
#game .game_info .buy_button {
-webkit-box-sizing: border-box;
font-family: PTSansBold, helvetica;
font-weight: normal;
position: absolute;
top: 10px;
right: 10px;
width: 54px;
height: 25px;
padding: 8px 0 0 0;
font-size: 14px;
text-align: center;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #34ab40), color-stop(1, #338e3d));
-webkit-border-radius: 4px;
color: white;
-webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.6);
text-transform: uppercase; }
#game .game_info .buy_button.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #116611), color-stop(1, #227722)); }
#game .game_info .buy_button.installed, #game .game_info .buy_button.installed.touched {
background-image: none;
background-color: #dddddd;
color: #999999; }
#game .game_info .price {
-webkit-box-sizing: border-box;
color: #595959;
height: 16px;
border: 1px solid #aaaaaa;
padding: 0 4px;
margin-top: 4px;
-webkit-border-radius: 3px;
font-size: 10px;
font-weight: bold;
font-style: normal;
line-height: 14px;
display: inline-block;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dfdfdf), color-stop(1, #efefef));
text-shadow: none; }
#game .game_info .price.free {
text-transform: uppercase;
color: #0d656e;
font-style: italic;
font-size: 9.5px;
line-height: 13px;
text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 1px; }
#game .game_info .price span {
font-family: PTSansBold;
font-style: normal;
font-size: 10px;
float: none;
text-shadow: none; }
#game .game_info .price span.strike_through {
text-decoration: line-through; }
#screenshots {
position: relative; }
#screenshots .cell.loading {
margin: 15px 0 0 10px;
position: relative;
display: block;
height: 410px;
width: 256px; }
#screenshots .cell.loading .spinner {
position: absolute;
top: 50%;
left: 50%;
margin: -12px 0 0 -12px; }
#screenshots img#size_test {
display: none; }
#screenshots .cell {
height: 272px; }
#screenshots #slides_wrapper {
position: relative;
top: 15px;
height: 410px;
margin-left: 10px; }
#screenshots #slides_wrapper #slides {
position: absolute;
float: left;
width: 3000px;
height: 410px;
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000; }
#screenshots #slides_wrapper #slides .slide {
position: relative;
float: left;
width: 256px;
height: 386px;
margin: 0 10px;
-webkit-box-shadow: 0px 0px 4px #888888;
background: white url(images/game_channel/spinner.ios.mdpi.gif) center center no-repeat; }
#screenshots #slides_wrapper #slides .slide img {
position: absolute;
left: 0;
top: 0;
height: 386px; }
#screenshots #slides_wrapper #slides .slide img.landscape_to_portrait {
position: absolute;
left: -65px;
top: 65px;
-webkit-transform: rotate(90deg);
width: 386px;
height: 256px; }
#screenshots #slides_wrapper #slides .slide .slide_laminate {
position: absolute;
left: 0;
top: 0;
width: 256px;
height: 386px; }
#screenshots .slide_indicator {
position: absolute;
bottom: 25px;
margin-left: 150px; }
#screenshots .slide_indicator li {
height: 8px;
width: 8px;
background: #bababa;
-webkit-border-radius: 5px;
border: 1px solid #656565;
display: inline-block;
margin-right: 6px; }
#screenshots .slide_indicator li.current {
background: #50ad5a; }
/*
* 1.5x pixel scale
*/
body.hdpi #enable_feint ul li.fgotd, body.hdpi #offline ul li.fgotd {
background-image: url(images/game_channel/star.hdpi.png);
}
body.hdpi #about_game_channel ul li.channel_challenge {
background-image: url(images/game_channel/vs.hdpi.png);
}
body.hdpi #about_game_channel ul li.fgotd {
background-image: url(images/game_channel/star.hdpi.png);
}
body.hdpi #spotlight section.step_list .cell:nth-child(4) .icon, body.hdpi #spotlight .section.step_list .cell:nth-child(4) .icon {
background-image: url(images/game_channel/step.3.hdpi.png);
}
body.hdpi #spotlight #index section#gold .overlay, body.hdpi #spotlight #index .section#gold .overlay {
background-image: url(images/game_channel/gold.hdpi.png);
}
body.hdpi #game #countdown .cell, body.hdpi #game #gold .cell {
background: url(images/game_channel/star.white.hdpi.png) 5px center no-repeat;
}
body.hdpi #spotlight #index section#fire_sale .overlay, body.hdpi #spotlight #index .section#fire_sale .overlay {
background-image: url(images/game_channel/fire.hdpi.png);
}
body.hdpi #spotlight #index section#fgotd .overlay, body.hdpi #spotlight #index .section#fgotd .overlay {
background-image: url(images/game_channel/star.hdpi.png);
}
body.hdpi #spotlight section.step_list .cell:nth-child(5) .icon, body.hdpi #spotlight .section.step_list .cell:nth-child(5) .icon {
background-image: url(images/game_channel/step.4.hdpi.png);
}
body.hdpi.ios .spinner {
background: white url(images/game_channel/spinner.ios.hdpi.gif) center center no-repeat;
}
body.hdpi #enable_feint ul li.channel_challenge, body.hdpi #offline ul li.channel_challenge {
background-image: url(images/game_channel/vs.hdpi.png);
}
body.hdpi #spotlight #games section .game_cell .cell_content, body.hdpi #spotlight #games .section .game_cell .cell_content {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
body.hdpi #game section#gold div.cell, body.hdpi #game .section#gold div.cell {
background-image: url(images/game_channel/leaf.white.hdpi.png);
}
body.hdpi #spotlight #fire_sale section .cell.coming_soon, body.hdpi #spotlight #fire_sale .section .cell.coming_soon {
background-image: url(images/game_channel/fire.white.hdpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fa9b33), color-stop(1, #f96923));
}
body.hdpi #spotlight section.step_list .cell:nth-child(2) .icon, body.hdpi #spotlight .section.step_list .cell:nth-child(2) .icon {
background-image: url(images/game_channel/step.1.hdpi.png);
}
body.hdpi #game #comments .comment_cell .cell_content {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
body.hdpi #spotlight #channel_challenge section .cell.coming_soon, body.hdpi #spotlight #channel_challenge .section .cell.coming_soon {
background-image: url(images/game_channel/vs.white.hdpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #90ce38), color-stop(1, #79b821));
}
body.hdpi #spotlight #index section #about_game_channel.touched, body.hdpi #spotlight #index .section #about_game_channel.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.4)), color-stop(1, rgba(0, 0, 0, 0.4))), url(images/game_channel/welcome.hdpi.png);
}
body.hdpi #spotlight #index section #about_game_channel, body.hdpi #spotlight #index .section #about_game_channel {
background: darkgreen url(images/game_channel/welcome.hdpi.png) center no-repeat;
}
body.hdpi #screenshots #slides_wrapper #slides .slide {
background: white url(images/game_channel/spinner.ios.hdpi.gif) center center no-repeat;
}
body.hdpi #game .cell.link_cell p {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
body.hdpi #enable_feint .sad, body.hdpi #offline .sad {
background: url(images/game_channel/iphone.sad.hdpi.png) center center no-repeat;
}
body.hdpi #game #screenshots .icon {
background: url("images/game_channel/screenshot.hdpi.png") top left no-repeat;
}
body.hdpi #about_game_channel ul li.fire_sale {
background-image: url(images/game_channel/fire.hdpi.png);
}
body.hdpi .manifest_dependency_hints {
background-image: url(images/game_channel/logo.hdpi.png);
}
body.hdpi #enable_feint .tos p, body.hdpi #offline .tos p {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
body.hdpi #enable_feint ul li.fire_sale, body.hdpi #offline ul li.fire_sale {
background-image: url(images/game_channel/fire.hdpi.png);
}
body.hdpi #enable_feint ul, body.hdpi #offline ul {
background: url(images/game_channel/enable.table.hdpi.png) no-repeat;
}
body.hdpi #spotlight section.step_list .cell:nth-child(3) .icon, body.hdpi #spotlight .section.step_list .cell:nth-child(3) .icon {
background-image: url(images/game_channel/step.2.hdpi.png);
}
body.hdpi #enable_feint, body.hdpi #offline {
background: #254856 url(images/game_channel/enable_bg.hdpi.png) center center;
}
body.hdpi #spotlight #index section#channel_challenge .overlay, body.hdpi #spotlight #index .section#channel_challenge .overlay {
background-image: url(images/game_channel/vs.hdpi.png);
}
body.hdpi #spotlight #index section .link_cell p, body.hdpi #spotlight #index .section .link_cell p {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
/*
* 2x pixel scale
*/
body.udpi #enable_feint ul li.fgotd, body.udpi #offline ul li.fgotd {
background-image: url(images/game_channel/star.udpi.png);
}
body.udpi #about_game_channel ul li.channel_challenge {
background-image: url(images/game_channel/vs.udpi.png);
}
body.udpi #about_game_channel ul li.fgotd {
background-image: url(images/game_channel/star.udpi.png);
}
body.udpi #spotlight section.step_list .cell:nth-child(4) .icon, body.udpi #spotlight .section.step_list .cell:nth-child(4) .icon {
background-image: url(images/game_channel/step.3.udpi.png);
}
body.udpi #spotlight #index section#gold .overlay, body.udpi #spotlight #index .section#gold .overlay {
background-image: url(images/game_channel/gold.udpi.png);
}
body.udpi #game #countdown .cell, body.udpi #game #gold .cell {
background: url(images/game_channel/star.white.udpi.png) 5px center no-repeat;
}
body.udpi #spotlight #index section#fire_sale .overlay, body.udpi #spotlight #index .section#fire_sale .overlay {
background-image: url(images/game_channel/fire.udpi.png);
}
body.udpi #spotlight #index section#fgotd .overlay, body.udpi #spotlight #index .section#fgotd .overlay {
background-image: url(images/game_channel/star.udpi.png);
}
body.udpi #spotlight section.step_list .cell:nth-child(5) .icon, body.udpi #spotlight .section.step_list .cell:nth-child(5) .icon {
background-image: url(images/game_channel/step.4.udpi.png);
}
body.udpi.ios .spinner {
background: white url(images/game_channel/spinner.ios.udpi.gif) center center no-repeat;
}
body.udpi #enable_feint ul li.channel_challenge, body.udpi #offline ul li.channel_challenge {
background-image: url(images/game_channel/vs.udpi.png);
}
body.udpi #spotlight #games section .game_cell .cell_content, body.udpi #spotlight #games .section .game_cell .cell_content {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
}
body.udpi #game section#gold div.cell, body.udpi #game .section#gold div.cell {
background-image: url(images/game_channel/leaf.white.udpi.png);
}
body.udpi #spotlight #fire_sale section .cell.coming_soon, body.udpi #spotlight #fire_sale .section .cell.coming_soon {
background-image: url(images/game_channel/fire.white.udpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fa9b33), color-stop(1, #f96923));
}
body.udpi #spotlight section.step_list .cell:nth-child(2) .icon, body.udpi #spotlight .section.step_list .cell:nth-child(2) .icon {
background-image: url(images/game_channel/step.1.udpi.png);
}
body.udpi #game #comments .comment_cell .cell_content {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
}
body.udpi #spotlight #channel_challenge section .cell.coming_soon, body.udpi #spotlight #channel_challenge .section .cell.coming_soon {
background-image: url(images/game_channel/vs.white.udpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #90ce38), color-stop(1, #79b821));
}
body.udpi #spotlight #index section #about_game_channel.touched, body.udpi #spotlight #index .section #about_game_channel.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.4)), color-stop(1, rgba(0, 0, 0, 0.4))), url(images/game_channel/welcome.udpi.png);
}
body.udpi #spotlight #index section #about_game_channel, body.udpi #spotlight #index .section #about_game_channel {
background: darkgreen url(images/game_channel/welcome.udpi.png) center no-repeat;
}
body.udpi #screenshots #slides_wrapper #slides .slide {
background: white url(images/game_channel/spinner.ios.udpi.gif) center center no-repeat;
}
body.udpi #game .cell.link_cell p {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
}
body.udpi #enable_feint .sad, body.udpi #offline .sad {
background: url(images/game_channel/iphone.sad.udpi.png) center center no-repeat;
}
body.udpi #game #screenshots .icon {
background: url("images/game_channel/screenshot.udpi.png") top left no-repeat;
}
body.udpi #about_game_channel ul li.fire_sale {
background-image: url(images/game_channel/fire.udpi.png);
}
body.udpi .manifest_dependency_hints {
background-image: url(images/game_channel/logo.udpi.png);
}
body.udpi #enable_feint .tos p, body.udpi #offline .tos p {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
}
body.udpi #enable_feint ul li.fire_sale, body.udpi #offline ul li.fire_sale {
background-image: url(images/game_channel/fire.udpi.png);
}
body.udpi #enable_feint ul, body.udpi #offline ul {
background: url(images/game_channel/enable.table.udpi.png) no-repeat;
}
body.udpi #spotlight section.step_list .cell:nth-child(3) .icon, body.udpi #spotlight .section.step_list .cell:nth-child(3) .icon {
background-image: url(images/game_channel/step.2.udpi.png);
}
body.udpi #enable_feint, body.udpi #offline {
background: #254856 url(images/game_channel/enable_bg.udpi.png) center center;
}
body.udpi #spotlight #index section#channel_challenge .overlay, body.udpi #spotlight #index .section#channel_challenge .overlay {
background-image: url(images/game_channel/vs.udpi.png);
}
body.udpi #spotlight #index section .link_cell p, body.udpi #spotlight #index .section .link_cell p {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
} | Resources/OFResources_iPhone_Portrait.bundle/webui.bundle/stylesheets/game_channel.css | @font-face {
font-family: PTSans;
src: local("☺"), url("images/game_channel/PTSans.svg#webfontmBFaK3EM") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansBold;
src: local("☺"), url("images/game_channel/PTSansBold.svg#webfontpfl2y6jq") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansItalic;
src: local("☺"), url("images/game_channel/PTSansItalic.svg#webfontYVflOw0s") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansBoldItalic;
src: local("☺"), url("images/game_channel/PTSansBoldItalic.svg#webfont2OZu98Lg") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansNarrow;
src: local("☺"), url("images/game_channel/PTSansNarrow.svg#webfontzjaCm4lR") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: PTSansNarrowBold;
src: local("☺"), url("images/game_channel/PTSansNarrowBold.svg#webfontSAYAwFVt") format("svg");
font-weight: normal;
font-style: normal; }
.manifest_dependency_hints {
background-image: url(images/game_channel/logo.mdpi.png);
background-image: url(images/game_channel/placeholder.firesale.png);
background-image: url(images/game_channel/placeholder.cc.png); }
.foo {
display: none; }
body {
font-size: 12px;
font-family: helvetica;
background: transparent; }
body.ios .spinner {
background: white url(images/game_channel/spinner.ios.mdpi.gif) center center no-repeat;
width: 25px;
height: 25px;
-webkit-background-size: 16px 16px !important;
-webkit-animation-name: none;
-webkit-border-radius: 3px; }
#spotlight {
color: #666666;
margin: 0 10px; }
#spotlight section, #spotlight .section {
-webkit-border-radius: 4px;
margin: 12px 0;
-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6); }
#spotlight section.header_section, #spotlight .section.header_section {
-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4); }
#spotlight section h3.section_title, #spotlight .section h3.section_title {
font-family: PTSansBold, helvetica;
white-space: nowrap;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b9c6c9), color-stop(1, #9ca8ab));
overflow: hidden;
white-space: nowrap;
text-overflow: clip;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 1px;
border-bottom: 1px solid #999999; }
#spotlight section .cell, #spotlight .section .cell {
height: auto;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eff6f8), color-stop(1, #e0e9eb));
border: 0;
border-top: 1px solid white;
border-bottom: 1px solid silver; }
#spotlight section .cell.touched, #spotlight .section .cell.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #cfd6d8), color-stop(1, #c0c9cb)); }
#spotlight section .cell:first-child, #spotlight .section .cell:first-child {
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px; }
#spotlight section .cell:last-child, #spotlight .section .cell:last-child {
-webkit-border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom: 0; }
#spotlight .button {
-webkit-border-radius: 10px;
-webkit-border-image: none;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #bbbbbb), color-stop(1, #999999));
-webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.6);
color: white;
font-weight: bold;
text-shadow: rgba(0, 0, 0, 0.65) 0px -1px 1px; }
#spotlight .button.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #999999), color-stop(1, #aaaaaa)); }
#spotlight #index {
color: white;
font-family: helvetica; }
#spotlight #index section .cell, #spotlight #index .section .cell {
padding: 0;
border: 0; }
#spotlight #index section .cell.loading, #spotlight #index .section .cell.loading {
background: #666666; }
#spotlight #index section #about_game_channel, #spotlight #index .section #about_game_channel {
color: white;
background: darkgreen url(images/game_channel/welcome.mdpi.png) center no-repeat;
-webkit-background-size: 303px 39px;
text-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px;
font-weight: normal;
font-size: 16px;
font-family: PTSansBold, helvetica;
padding-left: 36px;
height: 35px;
line-height: 35px;
padding-top: 4px; }
#spotlight #index section #about_game_channel.touched, #spotlight #index .section #about_game_channel.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.4)), color-stop(1, rgba(0, 0, 0, 0.4))), url(images/game_channel/welcome.mdpi.png); }
#spotlight #index section .link_cell, #spotlight #index .section .link_cell {
color: #21373d;
font-size: 13px;
padding: 0 10px; }
#spotlight #index section .link_cell p, #spotlight #index .section .link_cell p {
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px;
font-family: PTSansBold, helvetica;
font-weight: normal;
padding: 0;
margin: 0;
line-height: 35px;
height: 35px;
padding-top: 4px;
color: inherit; }
#spotlight #index section#fgotd .overlay, #spotlight #index .section#fgotd .overlay {
background-image: url(images/game_channel/star.mdpi.png); }
#spotlight #index section#gold .overlay, #spotlight #index .section#gold .overlay {
background-image: url(images/game_channel/gold.mdpi.png); }
#spotlight #index section#fire_sale .overlay, #spotlight #index .section#fire_sale .overlay {
background-image: url(images/game_channel/fire.mdpi.png); }
#spotlight #index section#channel_challenge .overlay, #spotlight #index .section#channel_challenge .overlay {
background-image: url(images/game_channel/vs.mdpi.png); }
#spotlight #index section .loading, #spotlight #index .section .loading {
height: 117px;
display: -webkit-box;
-webkit-box-pack: center;
-webkit-box-align: center; }
#spotlight #index section .feature_cell, #spotlight #index .section .feature_cell {
-webkit-background-size: 100% auto;
background: #666666 center center; }
#spotlight #index section .feature_cell .inner, #spotlight #index .section .feature_cell .inner {
padding-top: 76px;
background-color: transparent;
-webkit-border-radius: 4px; }
#spotlight #index section .feature_cell.touched .inner, #spotlight #index .section .feature_cell.touched .inner {
background-color: rgba(0, 0, 0, 0.5); }
#spotlight #index section .feature_cell:last-child .overlay, #spotlight #index .section .feature_cell:last-child .overlay {
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px; }
#spotlight #index section .feature_cell .overlay, #spotlight #index .section .feature_cell .overlay {
padding: 5px 5px 5px 34px;
-webkit-background-size: 30px 30px;
background-color: rgba(0, 0, 0, 0.5);
background-position: 2px 5px;
background-repeat: no-repeat; }
#spotlight #index section .feature_cell .overlay #time_left, #spotlight #index .section .feature_cell .overlay #time_left {
float: right;
width: 82px;
height: 32px;
-webkit-box-sizing: border-box;
border: 1px solid #24768d;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3ab9c4), color-stop(1, #1c8fb0));
-webkit-border-radius: 5px;
-webkit-box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.5);
padding: 2px 4px;
color: #004a5f;
text-shadow: #83d7e3 0px 1px 1px;
font-family: helvetica;
font-weight: bold;
font-size: 10px; }
#spotlight #index section .feature_cell .overlay #time_left .clock, #spotlight #index .section .feature_cell .overlay #time_left .clock {
color: white;
text-shadow: #282828 0px -1px 1px rgba(100, 100, 100, 0.65);
line-height: 15px;
font-family: PTSansNarrowBold, helvetica;
font-size: 15px;
font-weight: normal; }
#spotlight #index section .feature_cell .overlay h2.game_title, #spotlight #index section .feature_cell .overlay h3.section_title, #spotlight #index .section .feature_cell .overlay h2.game_title, #spotlight #index .section .feature_cell .overlay h3.section_title {
font-family: PTSansBold, helvetica;
font-weight: normal;
background-image: none;
margin: 0;
padding: 0;
border: 0; }
#spotlight #index section .feature_cell .overlay h3.section_title, #spotlight #index .section .feature_cell .overlay h3.section_title {
height: auto;
line-height: 13px;
margin-top: 2px;
-webkit-border-radius: 0px;
font-family: PTSansNarrowBold, helvetica;
font-wieght: normal;
font-size: 13px; }
#spotlight #index section .feature_cell .overlay h2.game_title, #spotlight #index .section .feature_cell .overlay h2.game_title {
line-height: 18px;
max-height: 36px;
overflow: hidden;
font-weight: bold;
font-size: 18px; }
#spotlight #games section .game_cell, #spotlight #games .section .game_cell {
display: -webkit-box;
-webkit-box-orient: horizontal; }
#spotlight #games section .game_cell .image, #spotlight #games .section .game_cell .image {
border: 1px solid #aaaaaa;
background: white;
-webkit-border-radius: 8px;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
width: 112px;
height: 64px;
-webkit-background-size: 112px 64px; }
#spotlight #games section .game_cell .image.icon_image, #spotlight #games .section .game_cell .image.icon_image {
width: 54px;
height: 54px;
padding: 0;
margin: 0px;
-webkit-background-size: 54px 54px; }
#spotlight #games section .game_cell .cell_content, #spotlight #games .section .game_cell .cell_content {
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px;
-webkit-box-flex: 1;
margin-left: 10px; }
#spotlight #games section .game_cell .cell_content .title, #spotlight #games .section .game_cell .cell_content .title {
color: #21373c;
font-family: PTSansBold, helvetica;
font-weight: normal;
padding: 3px 0 0 0;
margin: 0; }
#spotlight #games section .game_cell .cell_content .description, #spotlight #games .section .game_cell .cell_content .description {
margin: 0;
padding: 0;
min-height: 32px; }
#spotlight #games section .game_cell .cell_content .price, #spotlight #games .section .game_cell .cell_content .price {
height: 13px;
border: 1px solid silver;
padding: 1px 4px;
margin: 4px 2px;
-webkit-border-radius: 3px;
font-size: 10px;
font-weight: bold;
line-height: 13px;
display: inline-block;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dfdfdf), color-stop(1, #efefef)); }
#spotlight #games section .game_cell .cell_content .price.free, #spotlight #games .section .game_cell .cell_content .price.free {
text-transform: uppercase;
color: #0d656e;
font-style: italic;
font-size: 9.5px;
line-height: 13px;
text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 1px; }
#spotlight section .cell.coming_soon, #spotlight .section .cell.coming_soon {
height: 40px;
line-height: 40px;
padding: 0 12px 0 38px;
border: 0;
margin-top: 12px;
margin-bottom: 12px;
color: white;
font-weight: bold;
font-size: 17px;
background-position: 6px center, 0 0;
background-repeat: no-repeat, repeat;
-webkit-background-size: 30px 30px, 100% 100%; }
#spotlight section span, #spotlight .section span {
font-family: PTSansBoldItalic, helvetica;
float: right;
font-size: 15px;
text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 1px; }
#spotlight #fire_sale {
font-family: PTSansBold;
font-weight: normal; }
#spotlight #fire_sale section .cell.coming_soon, #spotlight #fire_sale .section .cell.coming_soon {
background-image: url(images/game_channel/fire.white.mdpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fa9b33), color-stop(1, #f96923));
text-shadow: #934720 0px 1px 1px; }
#spotlight #fire_sale section .cell.coming_soon span, #spotlight #fire_sale .section .cell.coming_soon span {
color: #a93700; }
#spotlight #channel_challenge {
font-family: PTSansBold;
font-weight: normal; }
#spotlight #channel_challenge section .cell.coming_soon, #spotlight #channel_challenge .section .cell.coming_soon {
background-image: url(images/game_channel/vs.white.mdpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #90ce38), color-stop(1, #79b821));
text-shadow: #828282 0px 1px 1px; }
#spotlight #channel_challenge section .cell.coming_soon span, #spotlight #channel_challenge .section .cell.coming_soon span {
color: #3c6600; }
/* --- game_channel/fire_sale, game_channel/channel_challenge --- */
#spotlight section.step_list .cell, #spotlight .section.step_list .cell {
height: 54px;
-webkit-box-sizing: border-box;
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: center; }
#spotlight section.step_list .cell .icon, #spotlight .section.step_list .cell .icon {
width: 34px;
height: 34px;
float: none;
-webkit-background-size: 26px 26px;
background-position: center center;
background-repeat: no-repeat; }
#spotlight section.step_list .cell:nth-child(2) .icon, #spotlight .section.step_list .cell:nth-child(2) .icon {
background-image: url(images/game_channel/step.1.mdpi.png); }
#spotlight section.step_list .cell:nth-child(3) .icon, #spotlight .section.step_list .cell:nth-child(3) .icon {
background-image: url(images/game_channel/step.2.mdpi.png); }
#spotlight section.step_list .cell:nth-child(4) .icon, #spotlight .section.step_list .cell:nth-child(4) .icon {
background-image: url(images/game_channel/step.3.mdpi.png); }
#spotlight section.step_list .cell:nth-child(5) .icon, #spotlight .section.step_list .cell:nth-child(5) .icon {
background-image: url(images/game_channel/step.4.mdpi.png); }
#spotlight section.step_list .cell .cell_content, #spotlight .section.step_list .cell .cell_content {
-webkit-box-flex: 1;
color: #21373d;
font-weight: bold;
font-size: 14px;
line-height: 16px; }
/* --- game_channel/about --- */
#about_game_channel h1 {
font-family: PTSansBold, helvetica;
color: #21373d;
font-size: 17px;
line-height: 18px;
margin: 0;
padding: 0; }
#about_game_channel p {
color: #595959;
font-size: 13px;
line-height: 15px;
font-weight: normal; }
#about_game_channel p:last-child {
margin-bottom: 1px; }
#about_game_channel ul {
background: white;
border: 1px solid #bfcacd;
-webkit-border-radius: 3px;
list-style-type: none;
padding: 0;
margin: 15px 0; }
#about_game_channel ul li {
border-bottom: 1px solid #bfcacd;
padding: 10px 10px 10px 50px;
margin: 0;
-webkit-background-size: 30px 30px;
background-position: 12px center;
background-repeat: no-repeat; }
#about_game_channel ul li:last-child {
border: 0; }
#about_game_channel ul li.fgotd {
background-image: url(images/game_channel/star.mdpi.png); }
#about_game_channel ul li.fire_sale {
background-image: url(images/game_channel/fire.mdpi.png); }
#about_game_channel ul li.channel_challenge {
background-image: url(images/game_channel/vs.mdpi.png); }
#about_game_channel ul li h2 {
font-family: PTSansBold, helvetica;
font-weight: normal;
margin: 0;
padding: 0;
font-size: 14px;
color: #21373d; }
#about_game_channel ul li h2 span {
font-size: 13px;
font-style: normal;
float: none !important; }
#about_game_channel ul li p {
margin: 0;
padding: 0;
font-size: 12px; }
/* --- game_channel/enable_feint --- */
#enable_feint, #offline {
background: #254856 url(images/game_channel/enable_bg.mdpi.png) center center;
-webkit-background-size: 320px 415px;
text-align: center;
padding: 20px;
margin: 0 -10px;
min-height: 356px;
font-family: PTSansBold, helvetica;
font-weight: normal !important; }
#enable_feint h1, #offline h1 {
color: white;
font-size: 25px;
line-height: 28px; }
#enable_feint p, #offline p {
font-size: 16px;
line-height: 19px;
color: white; }
#enable_feint ul, #offline ul {
-webkit-box-sizing: border-box;
width: 283px;
height: 160px;
margin: 0 auto;
padding: 1px;
background: url(images/game_channel/enable.table.mdpi.png) no-repeat;
-webkit-background-size: 283px 160px;
list-style-type: none;
text-align: left; }
#enable_feint ul li, #offline ul li {
margin: 10px;
height: 35px;
line-height: 35px;
padding-top: 4px;
color: #234351;
font-size: 17px;
font-weight: bold;
padding-left: 42px;
-webkit-background-size: 30px 30px;
background-position: 6px center;
background-repeat: no-repeat; }
#enable_feint ul li.fgotd, #offline ul li.fgotd {
background-image: url(images/game_channel/star.mdpi.png); }
#enable_feint ul li.fire_sale, #offline ul li.fire_sale {
background-image: url(images/game_channel/fire.mdpi.png); }
#enable_feint ul li.channel_challenge, #offline ul li.channel_challenge {
background-image: url(images/game_channel/vs.mdpi.png); }
#enable_feint .sad, #offline .sad {
height: 179px;
-webkit-background-size: 104px 179px;
background: url(images/game_channel/iphone.sad.mdpi.png) center center no-repeat; }
#enable_feint .button, #offline .button {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2f9f57), color-stop(1, #06653c));
-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 2px;
font-size: 21px;
padding: 0;
line-height: 37px;
padding-top: 5px;
-webkit-border-radius: 5px; }
#enable_feint .button.touched, #offline .button.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #06653c), color-stop(1, #2f9f57)); }
#enable_feint .tos, #offline .tos {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #254d5b), color-stop(1, #1e3b43));
-webkit-box-sizing: border-box;
font-family: helvetica;
text-align: left;
margin: 0 -20px;
padding: 8px 12px;
-webkit-box-shadow: black 0px 0px 15px;
height: 52px;
position: absolute;
top: 388px; }
#enable_feint .tos.touched, #offline .tos.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #153d4b), color-stop(1, #0e2b33)); }
#enable_feint .tos p, #offline .tos p {
color: #99bfc2;
font-weight: normal;
font-size: 11px;
line-height: 16px;
padding: 0;
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px;
margin: 0;
margin-right: 20px; }
#offline h1 {
margin: 1px 0 12px; }
#offline p {
margin: 8px 0; }
#offline .button {
margin: 19px 0; }
/* --- game_channel/tos -- */
#terms_of_service {
padding: 10px; }
#terms_of_service h1, #terms_of_service strong {
color: #06727c; }
/* --- game_channel/game --- */
#game .cell p {
color: #595959;
font-size: 12px;
font-weight: normal; }
#game .cell.link_cell p {
font-family: PTSansBold, helvetica;
font-weight: normal;
font-size: 14px;
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px; }
#game #comments #take_action_to_post {
border-top-left-radius: 4px;
border-top-right-radius: 4px; }
#game #comments #take_action_to_post .button {
margin: 0; }
#game #comments #add_comment {
margin: 0; }
#game #comments form#comment_form textarea {
display: block;
width: 100%;
height: 60px;
border: 1px solid #aaaaaa;
-webkit-border-radius: 6px;
-webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0 1px 3px;
-webkit-box-sizing: border-box; }
#game #comments .comment_cell {
height: auto; }
#game #comments .comment_cell.last {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: 0; }
#game #comments .comment_cell .image {
border: 1px solid #aaaaaa;
background: white;
-webkit-border-radius: 8px;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
*display: inline-block;
width: 48px;
height: 48px;
background-image: url(images/icon.user.male.mdpi.png);
-webkit-background-size: 48px 48px;
margin: 0 10px 12px 0px;
float: left; }
#game #comments .comment_cell .image:after {
content: " ";
display: block;
height: 0;
clear: both;
visibility: hidden; }
#game #comments .comment_cell .cell_content {
padding-right: 20px;
background: url(images/game_channel/disclosure.mdpi.png) center right no-repeat;
-webkit-background-size: 9px 13px;
min-height: 50px; }
#game #comments .comment_cell .cell_content .username {
font-family: PTSansBold, helvetica;
font-size: 14px;
font-weight: normal;
color: #21373d; }
#game #comments .comment_cell .cell_content .comment_body {
margin: 0 0 4px 60px; }
#game #comments .comment_cell .cell_content .comment_body .inner {
overflow: hidden; }
#game #comments .comment_cell .cell_content .date {
margin-left: 60px;
color: #aaaaaa;
font-size: 11px; }
#game #comments #load_more {
text-align: center;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: 0; }
#game #comments #load_more p {
font-family: PTSansBold, helvetica;
font-weight: normal;
font-size: 14px; }
#game #text_description {
padding: 10px; }
#game #text_description p {
margin: 0; }
#game #screenshots .icon {
background: url("images/game_channel/screenshot.mdpi.png") top left no-repeat;
-webkit-background-size: 44px 35px;
margin: 0;
width: 44px;
height: 35px; }
#game #screenshots p {
margin-left: 50px;
color: #21373d; }
#game #video {
padding: 0;
border-top: none;
max-height: 185px;
overflow: hidden; }
#game #video #youtube_object {
min-height: 150px; }
#game #video #youtube_object object, #game #video #youtube_object embed {
padding: 0;
margin: 0;
margin-bottom: -3px; }
#game #countdown, #game #gold {
position: relative;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #1faeba), color-stop(1, #1c8fb0)); }
#game #countdown .cell, #game #gold .cell {
border-top: none;
padding-left: 34px;
height: 22px;
background: url(images/game_channel/star.white.mdpi.png) 5px center no-repeat;
-webkit-background-size: 23px 23px; }
#game #countdown .cell .title, #game #gold .cell .title {
color: white;
font-weight: normal;
text-shadow: rgba(0, 0, 0, 0.65) 0px -1px 1px;
font-size: 17px;
font-family: PTSansBold, helvetica;
line-height: 18px;
padding-top: 4px;
font-weight: normal;
margin-top: 0; }
#game #countdown .cell .timer, #game #gold .cell .timer {
float: right;
margin: 0;
width: 72px; }
#game #countdown .cell .timer h4, #game #gold .cell .timer h4 {
color: #004a5f;
margin: 0;
text-shadow: #83d7e3 0px 1px 1px;
position: relative;
top: -4px;
font-family: helvetica;
font-weight: bold;
font-size: 10px; }
#game #countdown .cell .timer span, #game #gold .cell .timer span {
color: white;
text-shadow: #282828 0px -1px 1px rgba(100, 100, 100, 0.65);
line-height: 13px;
position: relative;
top: -2px;
float: none;
font-style: normal;
font-family: PTSansNarrowBold, helvetica;
font-size: 15px;
font-weight: normal; }
#game section#gold, #game .section#gold {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f1b108), color-stop(1, #dd922e));
text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; }
#game section#gold div.cell, #game .section#gold div.cell {
background-image: url(images/game_channel/leaf.white.mdpi.png); }
#game section#gold div.cell div.title, #game .section#gold div.cell div.title {
padding: 0;
position: relative;
top: -3px; }
#game section#gold div.cell div.subtitle, #game .section#gold div.cell div.subtitle {
color: #775400;
font-style: italic;
font-weight: bold;
font-size: 11px;
text-shadow: rgba(255, 255, 255, 0.35) 0px 1px 0px;
position: relative;
top: -5px; }
#game .game_info {
position: relative; }
#game .game_info .icon_image {
border: 1px solid #aaaaaa;
background: white;
-webkit-border-radius: 8px;
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
width: 54px;
height: 54px;
margin: 8px;
-webkit-background-size: 54px 54px;
position: absolute;
top: 0;
left: 0; }
#game .game_info .cell_content {
margin-left: 66px;
font-weight: bold;
min-height: 57px; }
#game .game_info .cell_content .developer {
font-size: 11px;
color: #969696;
font-weight: bold;
text-overflow: clip; }
#game .game_info .cell_content .title {
font-family: PTSansBold, helvetica;
font-weight: normal;
font-size: 16px;
color: #21373d;
margin-top: 0;
width: 150px;
text-overflow: clip;
white-space: normal;
overflow: visible; }
#game .game_info .buy_button {
-webkit-box-sizing: border-box;
font-family: PTSansBold, helvetica;
font-weight: normal;
position: absolute;
top: 10px;
right: 10px;
width: 54px;
height: 25px;
padding: 8px 0 0 0;
font-size: 14px;
text-align: center;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #34ab40), color-stop(1, #338e3d));
-webkit-border-radius: 4px;
color: white;
-webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.6);
text-transform: uppercase; }
#game .game_info .buy_button.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #116611), color-stop(1, #227722)); }
#game .game_info .buy_button.installed, #game .game_info .buy_button.installed.touched {
background-image: none;
background-color: #dddddd;
color: #999999; }
#game .game_info .price {
-webkit-box-sizing: border-box;
color: #595959;
height: 16px;
border: 1px solid #aaaaaa;
padding: 0 4px;
margin-top: 4px;
-webkit-border-radius: 3px;
font-size: 10px;
font-weight: bold;
font-style: normal;
line-height: 14px;
display: inline-block;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dfdfdf), color-stop(1, #efefef));
text-shadow: none; }
#game .game_info .price.free {
text-transform: uppercase;
color: #0d656e;
font-style: italic;
font-size: 9.5px;
line-height: 13px;
text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 1px; }
#game .game_info .price span {
font-family: PTSansBold;
font-style: normal;
font-size: 10px;
float: none;
text-shadow: none; }
#game .game_info .price span.strike_through {
text-decoration: line-through; }
#screenshots {
position: relative; }
#screenshots .cell.loading {
margin: 15px 0 0 10px;
position: relative;
display: block;
height: 410px;
width: 256px; }
#screenshots .cell.loading .spinner {
position: absolute;
top: 50%;
left: 50%;
margin: -12px 0 0 -12px; }
#screenshots img#size_test {
display: none; }
#screenshots .cell {
height: 272px; }
#screenshots #slides_wrapper {
position: relative;
top: 15px;
height: 410px;
margin-left: 10px; }
#screenshots #slides_wrapper #slides {
position: absolute;
float: left;
width: 3000px;
height: 410px;
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000; }
#screenshots #slides_wrapper #slides .slide {
position: relative;
float: left;
width: 256px;
height: 386px;
margin: 0 10px;
-webkit-box-shadow: 0px 0px 4px #888888;
background: white url(images/game_channel/spinner.ios.mdpi.gif) center center no-repeat; }
#screenshots #slides_wrapper #slides .slide img {
position: absolute;
left: 0;
top: 0;
height: 386px; }
#screenshots #slides_wrapper #slides .slide img.landscape_to_portrait {
position: absolute;
left: -65px;
top: 65px;
-webkit-transform: rotate(90deg);
width: 386px;
height: 256px; }
#screenshots #slides_wrapper #slides .slide .slide_laminate {
position: absolute;
left: 0;
top: 0;
width: 256px;
height: 386px; }
#screenshots .slide_indicator {
position: absolute;
bottom: 25px;
margin-left: 150px; }
#screenshots .slide_indicator li {
height: 8px;
width: 8px;
background: #bababa;
-webkit-border-radius: 5px;
border: 1px solid #656565;
display: inline-block;
margin-right: 6px; }
#screenshots .slide_indicator li.current {
background: #50ad5a; }
/*
* 1.5x pixel scale
*/
body.hdpi #enable_feint ul li.fgotd, body.hdpi #offline ul li.fgotd {
background-image: url(images/game_channel/star.hdpi.png);
}
body.hdpi #about_game_channel ul li.channel_challenge {
background-image: url(images/game_channel/vs.hdpi.png);
}
body.hdpi #about_game_channel ul li.fgotd {
background-image: url(images/game_channel/star.hdpi.png);
}
body.hdpi #spotlight section.step_list .cell:nth-child(4) .icon, body.hdpi #spotlight .section.step_list .cell:nth-child(4) .icon {
background-image: url(images/game_channel/step.3.hdpi.png);
}
body.hdpi #spotlight #index section#gold .overlay, body.hdpi #spotlight #index .section#gold .overlay {
background-image: url(images/game_channel/gold.hdpi.png);
}
body.hdpi #game #countdown .cell, body.hdpi #game #gold .cell {
background: url(images/game_channel/star.white.hdpi.png) 5px center no-repeat;
}
body.hdpi #spotlight #index section#fire_sale .overlay, body.hdpi #spotlight #index .section#fire_sale .overlay {
background-image: url(images/game_channel/fire.hdpi.png);
}
body.hdpi #spotlight #index section#fgotd .overlay, body.hdpi #spotlight #index .section#fgotd .overlay {
background-image: url(images/game_channel/star.hdpi.png);
}
body.hdpi #spotlight section.step_list .cell:nth-child(5) .icon, body.hdpi #spotlight .section.step_list .cell:nth-child(5) .icon {
background-image: url(images/game_channel/step.4.hdpi.png);
}
body.hdpi.ios .spinner {
background: white url(images/game_channel/spinner.ios.hdpi.gif) center center no-repeat;
}
body.hdpi #enable_feint ul li.channel_challenge, body.hdpi #offline ul li.channel_challenge {
background-image: url(images/game_channel/vs.hdpi.png);
}
body.hdpi #spotlight #games section .game_cell .cell_content, body.hdpi #spotlight #games .section .game_cell .cell_content {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
body.hdpi #game section#gold div.cell, body.hdpi #game .section#gold div.cell {
background-image: url(images/game_channel/leaf.white.hdpi.png);
}
body.hdpi #spotlight #fire_sale section .cell.coming_soon, body.hdpi #spotlight #fire_sale .section .cell.coming_soon {
background-image: url(images/game_channel/fire.white.hdpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fa9b33), color-stop(1, #f96923));
}
body.hdpi #spotlight section.step_list .cell:nth-child(2) .icon, body.hdpi #spotlight .section.step_list .cell:nth-child(2) .icon {
background-image: url(images/game_channel/step.1.hdpi.png);
}
body.hdpi #game #comments .comment_cell .cell_content {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
body.hdpi #spotlight #channel_challenge section .cell.coming_soon, body.hdpi #spotlight #channel_challenge .section .cell.coming_soon {
background-image: url(images/game_channel/vs.white.hdpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #90ce38), color-stop(1, #79b821));
}
body.hdpi #spotlight #index section #about_game_channel.touched, body.hdpi #spotlight #index .section #about_game_channel.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.4)), color-stop(1, rgba(0, 0, 0, 0.4))), url(images/game_channel/welcome.hdpi.png);
}
body.hdpi #spotlight #index section #about_game_channel, body.hdpi #spotlight #index .section #about_game_channel {
background: darkgreen url(images/game_channel/welcome.hdpi.png) center no-repeat;
}
body.hdpi #screenshots #slides_wrapper #slides .slide {
background: white url(images/game_channel/spinner.ios.hdpi.gif) center center no-repeat;
}
body.hdpi #game .cell.link_cell p {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
body.hdpi #enable_feint .sad, body.hdpi #offline .sad {
background: url(images/game_channel/iphone.sad.hdpi.png) center center no-repeat;
}
body.hdpi #game #screenshots .icon {
background: url("images/game_channel/screenshot.hdpi.png") top left no-repeat;
}
body.hdpi #about_game_channel ul li.fire_sale {
background-image: url(images/game_channel/fire.hdpi.png);
}
body.hdpi .manifest_dependency_hints {
background-image: url(images/game_channel/logo.hdpi.png);
}
body.hdpi #enable_feint .tos p, body.hdpi #offline .tos p {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
body.hdpi #enable_feint ul li.fire_sale, body.hdpi #offline ul li.fire_sale {
background-image: url(images/game_channel/fire.hdpi.png);
}
body.hdpi #enable_feint ul, body.hdpi #offline ul {
background: url(images/game_channel/enable.table.hdpi.png) no-repeat;
}
body.hdpi #spotlight section.step_list .cell:nth-child(3) .icon, body.hdpi #spotlight .section.step_list .cell:nth-child(3) .icon {
background-image: url(images/game_channel/step.2.hdpi.png);
}
body.hdpi #enable_feint, body.hdpi #offline {
background: #254856 url(images/game_channel/enable_bg.hdpi.png) center center;
}
body.hdpi #spotlight #index section#channel_challenge .overlay, body.hdpi #spotlight #index .section#channel_challenge .overlay {
background-image: url(images/game_channel/vs.hdpi.png);
}
body.hdpi #spotlight #index section .link_cell p, body.hdpi #spotlight #index .section .link_cell p {
background: url(images/game_channel/disclosure.hdpi.png) center right no-repeat;
}
/*
* 2x pixel scale
*/
body.udpi #enable_feint ul li.fgotd, body.udpi #offline ul li.fgotd {
background-image: url(images/game_channel/star.udpi.png);
}
body.udpi #about_game_channel ul li.channel_challenge {
background-image: url(images/game_channel/vs.udpi.png);
}
body.udpi #about_game_channel ul li.fgotd {
background-image: url(images/game_channel/star.udpi.png);
}
body.udpi #spotlight section.step_list .cell:nth-child(4) .icon, body.udpi #spotlight .section.step_list .cell:nth-child(4) .icon {
background-image: url(images/game_channel/step.3.udpi.png);
}
body.udpi #spotlight #index section#gold .overlay, body.udpi #spotlight #index .section#gold .overlay {
background-image: url(images/game_channel/gold.udpi.png);
}
body.udpi #game #countdown .cell, body.udpi #game #gold .cell {
background: url(images/game_channel/star.white.udpi.png) 5px center no-repeat;
}
body.udpi #spotlight #index section#fire_sale .overlay, body.udpi #spotlight #index .section#fire_sale .overlay {
background-image: url(images/game_channel/fire.udpi.png);
}
body.udpi #spotlight #index section#fgotd .overlay, body.udpi #spotlight #index .section#fgotd .overlay {
background-image: url(images/game_channel/star.udpi.png);
}
body.udpi #spotlight section.step_list .cell:nth-child(5) .icon, body.udpi #spotlight .section.step_list .cell:nth-child(5) .icon {
background-image: url(images/game_channel/step.4.udpi.png);
}
body.udpi.ios .spinner {
background: white url(images/game_channel/spinner.ios.udpi.gif) center center no-repeat;
}
body.udpi #enable_feint ul li.channel_challenge, body.udpi #offline ul li.channel_challenge {
background-image: url(images/game_channel/vs.udpi.png);
}
body.udpi #spotlight #games section .game_cell .cell_content, body.udpi #spotlight #games .section .game_cell .cell_content {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
}
body.udpi #game section#gold div.cell, body.udpi #game .section#gold div.cell {
background-image: url(images/game_channel/leaf.white.udpi.png);
}
body.udpi #spotlight #fire_sale section .cell.coming_soon, body.udpi #spotlight #fire_sale .section .cell.coming_soon {
background-image: url(images/game_channel/fire.white.udpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fa9b33), color-stop(1, #f96923));
}
body.udpi #spotlight section.step_list .cell:nth-child(2) .icon, body.udpi #spotlight .section.step_list .cell:nth-child(2) .icon {
background-image: url(images/game_channel/step.1.udpi.png);
}
body.udpi #game #comments .comment_cell .cell_content {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
}
body.udpi #spotlight #channel_challenge section .cell.coming_soon, body.udpi #spotlight #channel_challenge .section .cell.coming_soon {
background-image: url(images/game_channel/vs.white.udpi.png), -webkit-gradient(linear, left top, left bottom, color-stop(0, #90ce38), color-stop(1, #79b821));
}
body.udpi #spotlight #index section #about_game_channel.touched, body.udpi #spotlight #index .section #about_game_channel.touched {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.4)), color-stop(1, rgba(0, 0, 0, 0.4))), url(images/game_channel/welcome.udpi.png);
}
body.udpi #spotlight #index section #about_game_channel, body.udpi #spotlight #index .section #about_game_channel {
background: darkgreen url(images/game_channel/welcome.udpi.png) center no-repeat;
}
body.udpi #screenshots #slides_wrapper #slides .slide {
background: white url(images/game_channel/spinner.ios.udpi.gif) center center no-repeat;
}
body.udpi #game .cell.link_cell p {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
}
body.udpi #enable_feint .sad, body.udpi #offline .sad {
background: url(images/game_channel/iphone.sad.udpi.png) center center no-repeat;
}
body.udpi #game #screenshots .icon {
background: url("images/game_channel/screenshot.udpi.png") top left no-repeat;
}
body.udpi #about_game_channel ul li.fire_sale {
background-image: url(images/game_channel/fire.udpi.png);
}
body.udpi .manifest_dependency_hints {
background-image: url(images/game_channel/logo.udpi.png);
}
body.udpi #enable_feint .tos p, body.udpi #offline .tos p {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
}
body.udpi #enable_feint ul li.fire_sale, body.udpi #offline ul li.fire_sale {
background-image: url(images/game_channel/fire.udpi.png);
}
body.udpi #enable_feint ul, body.udpi #offline ul {
background: url(images/game_channel/enable.table.udpi.png) no-repeat;
}
body.udpi #spotlight section.step_list .cell:nth-child(3) .icon, body.udpi #spotlight .section.step_list .cell:nth-child(3) .icon {
background-image: url(images/game_channel/step.2.udpi.png);
}
body.udpi #enable_feint, body.udpi #offline {
background: #254856 url(images/game_channel/enable_bg.udpi.png) center center;
}
body.udpi #spotlight #index section#channel_challenge .overlay, body.udpi #spotlight #index .section#channel_challenge .overlay {
background-image: url(images/game_channel/vs.udpi.png);
}
body.udpi #spotlight #index section .link_cell p, body.udpi #spotlight #index .section .link_cell p {
background: url(images/game_channel/disclosure.udpi.png) center right no-repeat;
} | 0.238107 | 0.109277 |
body{
background-position: center;
background-repeat: no-repeat;
background-size: initial;
}
h1 {
font-family: sans-serif;
font-weight: bolder;
text-align: center;
color: rgb(0, 0, 0);
margin-bottom: 10px;
margin-top: 10px;
padding-bottom: 10px;
font-size: 48px;
text-shadow: 2px 2px 5px black;
}
.page-footer{
background-color: rgba(255, 255, 255, 0.8);
width: 100%;
}
.overlay{
background-color: rgb(255, 255, 255);
margin-right: auto;
opacity: 0.9;
border-radius: 40px;
}
#get{
color: rgb(0, 26, 255);
text-shadow: 2px 2px 5px rgb(206, 26, 26);
margin-bottom: 10px;
}
h2{
text-align: left;
font-weight: bold;
color:rgb(0, 0, 0);
font-family: sans-serif;
}
.form {
margin-bottom: 100px;
padding-bottom: 100px;
}
.form-group{
color: rgb(0, 0, 0);
font-weight: 300;
font-size: 40px;
font-family: sans-serif;
text-align: center;
}
.form-check-label{
color: rgb(0, 0, 0);
}
input[type="radio"] {
-webkit-transform: scale(2.05);
transform: scale(2.05);
}
@media only screen and (max-width: 600px){
.overlay{
margin-left: 1%;
margin-right: 2%;
}
}
@media only screen and (max-width: 800px) {
.overlay{
margin-left: 1%;
margin-right: 1%;
}
h1 {
font-size: 40px;
}
h2 {
font-size: 40px;
}
#heading img {
float: left;
width: 70%;
height: 60%;;
}
}
.card{
background: rgb(0, 62, 128);
text-align: center;
}
.card-body{
color: rgb(0, 0, 0);
}
.card-deck {
padding-bottom: 20px;
font-weight: 600;
font-family: '<NAME>', serif;
font-size: 18px;
}
.footer-copyright {
color: rgb(17, 0, 255);
font-weight: 600;
font-size: 18px;
}
.footer-copyright a {
color: rgb(7, 65, 255);;
font-weight: 600;
}
.footer-copyright a:hover {
color: rgb(0, 0, 0);
font-weight: 700;
text-decoration: none;
}
.card-text a:hover {
color: rgb(0, 0, 0);
text-decoration: dotted;
}
.align {
float: inline-start;
}
h3 {
text-align: left;
font-family: sans-serif;
}
.btn btn-primary {
text-align: center;
text-indent: inherit;
position: absolute;
top: 50%;
bottom: 50%;
}
.card {
align-content: center;
}
.form-check-inline {
text-align: center;
}
.form-check-label {
text-align: left;
} | css/styles.css | body{
background-position: center;
background-repeat: no-repeat;
background-size: initial;
}
h1 {
font-family: sans-serif;
font-weight: bolder;
text-align: center;
color: rgb(0, 0, 0);
margin-bottom: 10px;
margin-top: 10px;
padding-bottom: 10px;
font-size: 48px;
text-shadow: 2px 2px 5px black;
}
.page-footer{
background-color: rgba(255, 255, 255, 0.8);
width: 100%;
}
.overlay{
background-color: rgb(255, 255, 255);
margin-right: auto;
opacity: 0.9;
border-radius: 40px;
}
#get{
color: rgb(0, 26, 255);
text-shadow: 2px 2px 5px rgb(206, 26, 26);
margin-bottom: 10px;
}
h2{
text-align: left;
font-weight: bold;
color:rgb(0, 0, 0);
font-family: sans-serif;
}
.form {
margin-bottom: 100px;
padding-bottom: 100px;
}
.form-group{
color: rgb(0, 0, 0);
font-weight: 300;
font-size: 40px;
font-family: sans-serif;
text-align: center;
}
.form-check-label{
color: rgb(0, 0, 0);
}
input[type="radio"] {
-webkit-transform: scale(2.05);
transform: scale(2.05);
}
@media only screen and (max-width: 600px){
.overlay{
margin-left: 1%;
margin-right: 2%;
}
}
@media only screen and (max-width: 800px) {
.overlay{
margin-left: 1%;
margin-right: 1%;
}
h1 {
font-size: 40px;
}
h2 {
font-size: 40px;
}
#heading img {
float: left;
width: 70%;
height: 60%;;
}
}
.card{
background: rgb(0, 62, 128);
text-align: center;
}
.card-body{
color: rgb(0, 0, 0);
}
.card-deck {
padding-bottom: 20px;
font-weight: 600;
font-family: '<NAME>', serif;
font-size: 18px;
}
.footer-copyright {
color: rgb(17, 0, 255);
font-weight: 600;
font-size: 18px;
}
.footer-copyright a {
color: rgb(7, 65, 255);;
font-weight: 600;
}
.footer-copyright a:hover {
color: rgb(0, 0, 0);
font-weight: 700;
text-decoration: none;
}
.card-text a:hover {
color: rgb(0, 0, 0);
text-decoration: dotted;
}
.align {
float: inline-start;
}
h3 {
text-align: left;
font-family: sans-serif;
}
.btn btn-primary {
text-align: center;
text-indent: inherit;
position: absolute;
top: 50%;
bottom: 50%;
}
.card {
align-content: center;
}
.form-check-inline {
text-align: center;
}
.form-check-label {
text-align: left;
} | 0.516595 | 0.0643 |
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
* {
box-sizing: border-box;
}
html,
body {
font-family: "Montserrat", sans-serif;
min-width: 320px;
margin: 0 auto;
}
h1,
h3 {
font-weight: 700;
line-height: 1.375;
padding: 10px;
}
h1 {
font-size: 2.5rem;
}
h3 {
font-size: 1.25rem;
}
p {
font-size: 1rem;
line-height: 1.625;
min-height: 1rem;
padding: 10px;
}
i {
font-size: 4vw;
}
strong {
font-weight: 700;
}
/* HERO SECTION */
.hero {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
width: 95%;
padding: 6vw 10vw;
margin: 0 auto;
}
.hero-copy {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.hero-title {
font-size: 2.5rem;
font-weight: 700;
line-height: 1.375;
padding: 10px;
}
.hero-button button {
background-color: #2b44ff;
}
.hero-button button:hover {
cursor: pointer;
background-color: #2236cc;
}
.hero-info {
padding: 10px;
font-size: 1rem;
color: #666666;
}
.hero-image {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
}
.hero-image img {
width: 100%;
}
/* WHY SECTION */
.why {
width: 100%;
background-color: #f2f2f2;
text-align: center;
padding: 6vw 0;
}
.reason {
padding-top: 3vw;
padding-right: 1vw;
padding-bottom: 1vw;
padding-left: 1vw;
}
.fas.fa-medkit {
color: #8991dc;
}
.far.fa-credit-card {
color: #69a1ac;
}
.fas.fa-heart {
color: #db2721;
}
.fas.fa-smile {
color: #ff9b21;
}
/* TESTIMONIAL SECTION */
.testimonial {
background-color: #191847;
padding: 6vw;
width: 100%;
}
.testimonial-container {
width: 50%;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.testimonial-text {
display: block;
font-size: 2rem;
font-style: italic;
color: #f2f2f2;
line-height: 1.375;
text-align: center;
}
.testimonial-name {
display: block;
font-size: 1.125rem;
color: #f2f2f2;
text-align: center;
}
/* JIMMY SECTION */
.jimmy {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
width: 95%;
padding: 6vw 10vw;
margin: 0 auto;
}
.jimmy-image {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.jimmy-image img {
width: 60%;
}
.jimmy-testimonial {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.jimmy-signature img {
width: 100%;
max-width: 80px;
}
/* FOOTER */
.footer {
position: relative;
min-height: 75vh;
background-color: #ff9b21;
color: #191847;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
width: 100%;
padding: 6vw 10vw;
text-align: center;
}
.footer-button button {
background-color: #191847;
}
.footer-button button:hover {
cursor: pointer;
background-color: #070714;
}
.social-links {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.social-links a {
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
width: 48px;
height: 48px;
transition: all 0.25s ease-in-out;
}
.social-links a .fab {
color: #191847;
font-size: 24px;
}
.social-links a:hover {
cursor: pointer;
background-color: #cc7c1a;
}
.footer-copyright {
font-size: 1rem;
}
/* UTILITIES */
.grid {
display: grid;
}
.hero .grid-2 {
grid-template-columns: 3fr 2fr;
}
.jimmy .grid-2 {
grid-template-columns: 2fr 2fr;
}
.grid-4 {
grid-template-columns: repeat(4, 1fr);
}
.padding {
padding: 10px;
}
.button {
width: fit-content;
padding: 10px;
}
.button button {
width: 100%;
padding: 12px 48px;
color: #fff;
font-size: 1.25rem;
font-weight: 600;
text-transform: capitalize;
text-align: center;
border: none;
border-radius: 50px;
transition: all 0.25s ease-in-out;
}
.grey {
color: #666666;
}
.dark {
color: #444444;
}
.arrow-down {
position: absolute;
top: 0;
width: 0;
height: 0;
border-left: 30px solid transparent;
border-right: 30px solid transparent;
border-top: 20px solid #ffffff;
}
/* MEDIA QUERIES */
@media (max-width: 768px) {
/* UTILITIES */
.hero .grid-2,
.jimmy .grid-2 {
grid-template-columns: 1fr;
}
.grid-4 {
grid-template-columns: 1fr 1fr;
}
/* HERO SECTION*/
.hero {
margin: 0;
width: 100%;
}
.hero-title {
font-size: 1.875rem;
}
.hero-paragraph,
.hero-info {
font-size: 0.875rem;
}
.hero-button {
width: 100%;
}
.hero-image img {
width: 60%;
justify-self: center;
align-self: center;
}
/* WHY SECTION */
i {
font-size: 6vw;
}
.why-title {
font-size: 1.875rem;
}
/* TESTIMONIAL SECTION */
.testimonial-container {
width: 100%;
margin: 0;
}
.testimonial-text {
font-size: 1.5rem;
}
.testimonial-name {
font-size: 1rem;
}
/* JIMMY SECTION*/
.jimmy {
margin: 0;
width: 100%;
}
.jimmy-title {
font-size: 1.875rem;
}
.jimmy-testimonial {
font-size: 0.875rem;
}
.jimmy-image img {
width: 60%;
justify-self: center;
align-self: center;
}
/* FOOTER */
.footer-title {
font-size: 1.875rem;
}
.footer-button {
width: 100%;
}
}
@media (max-width: 576px) {
/* UTILITIES */
.grid-4 {
grid-template-columns: 1fr;
}
/* WHY SECTION */
i {
font-size: max(10vw, 32px);
}
} | assets/css/style.css | @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
* {
box-sizing: border-box;
}
html,
body {
font-family: "Montserrat", sans-serif;
min-width: 320px;
margin: 0 auto;
}
h1,
h3 {
font-weight: 700;
line-height: 1.375;
padding: 10px;
}
h1 {
font-size: 2.5rem;
}
h3 {
font-size: 1.25rem;
}
p {
font-size: 1rem;
line-height: 1.625;
min-height: 1rem;
padding: 10px;
}
i {
font-size: 4vw;
}
strong {
font-weight: 700;
}
/* HERO SECTION */
.hero {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
width: 95%;
padding: 6vw 10vw;
margin: 0 auto;
}
.hero-copy {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.hero-title {
font-size: 2.5rem;
font-weight: 700;
line-height: 1.375;
padding: 10px;
}
.hero-button button {
background-color: #2b44ff;
}
.hero-button button:hover {
cursor: pointer;
background-color: #2236cc;
}
.hero-info {
padding: 10px;
font-size: 1rem;
color: #666666;
}
.hero-image {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
}
.hero-image img {
width: 100%;
}
/* WHY SECTION */
.why {
width: 100%;
background-color: #f2f2f2;
text-align: center;
padding: 6vw 0;
}
.reason {
padding-top: 3vw;
padding-right: 1vw;
padding-bottom: 1vw;
padding-left: 1vw;
}
.fas.fa-medkit {
color: #8991dc;
}
.far.fa-credit-card {
color: #69a1ac;
}
.fas.fa-heart {
color: #db2721;
}
.fas.fa-smile {
color: #ff9b21;
}
/* TESTIMONIAL SECTION */
.testimonial {
background-color: #191847;
padding: 6vw;
width: 100%;
}
.testimonial-container {
width: 50%;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.testimonial-text {
display: block;
font-size: 2rem;
font-style: italic;
color: #f2f2f2;
line-height: 1.375;
text-align: center;
}
.testimonial-name {
display: block;
font-size: 1.125rem;
color: #f2f2f2;
text-align: center;
}
/* JIMMY SECTION */
.jimmy {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
width: 95%;
padding: 6vw 10vw;
margin: 0 auto;
}
.jimmy-image {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.jimmy-image img {
width: 60%;
}
.jimmy-testimonial {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.jimmy-signature img {
width: 100%;
max-width: 80px;
}
/* FOOTER */
.footer {
position: relative;
min-height: 75vh;
background-color: #ff9b21;
color: #191847;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
width: 100%;
padding: 6vw 10vw;
text-align: center;
}
.footer-button button {
background-color: #191847;
}
.footer-button button:hover {
cursor: pointer;
background-color: #070714;
}
.social-links {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.social-links a {
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
width: 48px;
height: 48px;
transition: all 0.25s ease-in-out;
}
.social-links a .fab {
color: #191847;
font-size: 24px;
}
.social-links a:hover {
cursor: pointer;
background-color: #cc7c1a;
}
.footer-copyright {
font-size: 1rem;
}
/* UTILITIES */
.grid {
display: grid;
}
.hero .grid-2 {
grid-template-columns: 3fr 2fr;
}
.jimmy .grid-2 {
grid-template-columns: 2fr 2fr;
}
.grid-4 {
grid-template-columns: repeat(4, 1fr);
}
.padding {
padding: 10px;
}
.button {
width: fit-content;
padding: 10px;
}
.button button {
width: 100%;
padding: 12px 48px;
color: #fff;
font-size: 1.25rem;
font-weight: 600;
text-transform: capitalize;
text-align: center;
border: none;
border-radius: 50px;
transition: all 0.25s ease-in-out;
}
.grey {
color: #666666;
}
.dark {
color: #444444;
}
.arrow-down {
position: absolute;
top: 0;
width: 0;
height: 0;
border-left: 30px solid transparent;
border-right: 30px solid transparent;
border-top: 20px solid #ffffff;
}
/* MEDIA QUERIES */
@media (max-width: 768px) {
/* UTILITIES */
.hero .grid-2,
.jimmy .grid-2 {
grid-template-columns: 1fr;
}
.grid-4 {
grid-template-columns: 1fr 1fr;
}
/* HERO SECTION*/
.hero {
margin: 0;
width: 100%;
}
.hero-title {
font-size: 1.875rem;
}
.hero-paragraph,
.hero-info {
font-size: 0.875rem;
}
.hero-button {
width: 100%;
}
.hero-image img {
width: 60%;
justify-self: center;
align-self: center;
}
/* WHY SECTION */
i {
font-size: 6vw;
}
.why-title {
font-size: 1.875rem;
}
/* TESTIMONIAL SECTION */
.testimonial-container {
width: 100%;
margin: 0;
}
.testimonial-text {
font-size: 1.5rem;
}
.testimonial-name {
font-size: 1rem;
}
/* JIMMY SECTION*/
.jimmy {
margin: 0;
width: 100%;
}
.jimmy-title {
font-size: 1.875rem;
}
.jimmy-testimonial {
font-size: 0.875rem;
}
.jimmy-image img {
width: 60%;
justify-self: center;
align-self: center;
}
/* FOOTER */
.footer-title {
font-size: 1.875rem;
}
.footer-button {
width: 100%;
}
}
@media (max-width: 576px) {
/* UTILITIES */
.grid-4 {
grid-template-columns: 1fr;
}
/* WHY SECTION */
i {
font-size: max(10vw, 32px);
}
} | 0.377885 | 0.095983 |
@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #fff;
background: #f5f5f5;
-webkit-font-smoothing: antialiased;
}
#rogue_recipes {
display: flex;
align-items: center;
width: 100%;
}
.rogue-wrapper {
width: 100%;
}
.rogue-header {
position: fixed;
width: 100%;
top: 0;
background: #f2784b !important;
box-sizing: border-box;
z-index: 2;
height: 60px !important;
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);
padding-left: 280px !important;
justify-content: center !important;
}
.rogue-header .search-item input {
border: 0;
font-family: 'Roboto', Arial, sans-serif;
font-size: 14px;
letter-spacing: .005em;
width: 400px;
height: 45px;
float: left;
line-height: 40px;
padding: 0 15px;
}
.rogue-header .search-item .submit-button {
background: #222;
border: 0;
height: 45px;
width: 50px;
float: left;
}
.rogue-header .search-item .submit-button,
.rogue-header .search-item input:focus {
outline: 0;
}
.rogue-main-menu a {
color: #fff;
font-family: 'Roboto', Arial, sans-serif;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
.rogue-main-page,
.rogue-search-page {
background: #f5f5f5;
padding-top: 76px;
display: flex;
float: left;
width: calc(100% - 257px);
height: calc(100% - 56px);
flex-wrap: wrap;
justify-content: center;
padding-left: 257px;
}
.rogue-loading {
position: absolute !important;
top: 50%;
margin: auto;
transform: translateY(-50%);
}
.index {
width: 40%;
margin: 50px auto;
padding: 10px;
background: #333;
border: 1px solid #000;
border-radius: 2px;
text-align: center;
box-sizing: border-box;
}
.video-card {
width: 280px;
float: left;
margin: 10px;
height: 320px;
background: #fff;
font-family: 'Roboto', Arial, sans-serif;
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);
border-radius: 2px;
transition: .3s ease-out;
}
.video-card:hover {
box-shadow: 0 7px 7px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 3px 1px -6px rgba(0,0,0,0.2);
}
.video-card a {
text-decoration: none;
}
.video-card .video-thumbnail {
width: 100%;
height: 210px;
background: #ccc;
}
.video-card .video-info {
padding: 5px 10px;
color: #333;
}
.video-card h2 {
text-align: left;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
}
.video-card img {
width: 100%;
height: auto;
border-radius: 2px 2px 0 0;
}
.video-card h4 {
font-size: 12px;
margin: 5px 0;
}
.video-card p {
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
}
.rogue-sidebar-header {
position: relative;
width: 100%;
top: 0;
text-align: center;
background: #f2784b;
height: 80px;
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);
}
.rogue-sidebar-header a {
color: #fff;
text-transform: uppercase;
line-height: 80px;
font-size: 30px;
text-decoration: none;
}
.filters {
margin: 0 auto;
display: block;
clear: both;
padding: 20px 10px;
}
/* Main */
.rogue-recipe-container {
padding: 100px 0 50px 257px;
width: calc(100% - 257px)
}
.rogue-video {
width: 800px;
height: auto;
margin: auto;
}
.rogue-iframe-container {
width: 100%;
height: 450px;
}
.rogue-video h1,
.rogue-video h3,
.rogue-video p {
color: #333;
font-family: 'Roboto', Arial, sans-serif
}
.rogue-video h1 {
font-size: 20px;
}
.rogue-video h3 {
font-size: 16px;
}
.rogue-video p {
font-size: 14px;
}
/* Search Error */
.rogue-search-error {
text-align: center;
margin-top: 30px;
}
.rogue-search-error h1 {
font-size: 24px;
color: rgba(0,0,0,.7);
}
.rogue-search-error .search-error-icon {
vertical-align: bottom;
}
.rogue-search-error h3 {
font-size: 18px;
color: rgba(0,0,0,.7);
}
/* Footer */
.rogue-footer {
float: left;
font-family: 'Roboto', Arial, sans-serif;
margin-top: 50px;
padding: 30px 10px 30px 257px;
width: calc(100% - 257px);
background: rgba(0,0,0,.87);
text-align: center;
}
.rogue-footer h1 {
font-size: 16px;
font-weight: 300;
color: rgba(255, 255, 255, .54);
}
.rogue-footer .rogue-love {
vertical-align: top;
}
.rogue-footer h1 span {
font-size: 18px;
color: rgba(255, 255, 255, .87);
}
.rogue-footer p {
font-size: 12px;
color: rgba(255, 255, 255, .54);
} | src/styles/app.css | @import url('https://fonts.googleapis.com/css?family=Roboto');
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #fff;
background: #f5f5f5;
-webkit-font-smoothing: antialiased;
}
#rogue_recipes {
display: flex;
align-items: center;
width: 100%;
}
.rogue-wrapper {
width: 100%;
}
.rogue-header {
position: fixed;
width: 100%;
top: 0;
background: #f2784b !important;
box-sizing: border-box;
z-index: 2;
height: 60px !important;
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);
padding-left: 280px !important;
justify-content: center !important;
}
.rogue-header .search-item input {
border: 0;
font-family: 'Roboto', Arial, sans-serif;
font-size: 14px;
letter-spacing: .005em;
width: 400px;
height: 45px;
float: left;
line-height: 40px;
padding: 0 15px;
}
.rogue-header .search-item .submit-button {
background: #222;
border: 0;
height: 45px;
width: 50px;
float: left;
}
.rogue-header .search-item .submit-button,
.rogue-header .search-item input:focus {
outline: 0;
}
.rogue-main-menu a {
color: #fff;
font-family: 'Roboto', Arial, sans-serif;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
.rogue-main-page,
.rogue-search-page {
background: #f5f5f5;
padding-top: 76px;
display: flex;
float: left;
width: calc(100% - 257px);
height: calc(100% - 56px);
flex-wrap: wrap;
justify-content: center;
padding-left: 257px;
}
.rogue-loading {
position: absolute !important;
top: 50%;
margin: auto;
transform: translateY(-50%);
}
.index {
width: 40%;
margin: 50px auto;
padding: 10px;
background: #333;
border: 1px solid #000;
border-radius: 2px;
text-align: center;
box-sizing: border-box;
}
.video-card {
width: 280px;
float: left;
margin: 10px;
height: 320px;
background: #fff;
font-family: 'Roboto', Arial, sans-serif;
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);
border-radius: 2px;
transition: .3s ease-out;
}
.video-card:hover {
box-shadow: 0 7px 7px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 3px 1px -6px rgba(0,0,0,0.2);
}
.video-card a {
text-decoration: none;
}
.video-card .video-thumbnail {
width: 100%;
height: 210px;
background: #ccc;
}
.video-card .video-info {
padding: 5px 10px;
color: #333;
}
.video-card h2 {
text-align: left;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
}
.video-card img {
width: 100%;
height: auto;
border-radius: 2px 2px 0 0;
}
.video-card h4 {
font-size: 12px;
margin: 5px 0;
}
.video-card p {
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
}
.rogue-sidebar-header {
position: relative;
width: 100%;
top: 0;
text-align: center;
background: #f2784b;
height: 80px;
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);
}
.rogue-sidebar-header a {
color: #fff;
text-transform: uppercase;
line-height: 80px;
font-size: 30px;
text-decoration: none;
}
.filters {
margin: 0 auto;
display: block;
clear: both;
padding: 20px 10px;
}
/* Main */
.rogue-recipe-container {
padding: 100px 0 50px 257px;
width: calc(100% - 257px)
}
.rogue-video {
width: 800px;
height: auto;
margin: auto;
}
.rogue-iframe-container {
width: 100%;
height: 450px;
}
.rogue-video h1,
.rogue-video h3,
.rogue-video p {
color: #333;
font-family: 'Roboto', Arial, sans-serif
}
.rogue-video h1 {
font-size: 20px;
}
.rogue-video h3 {
font-size: 16px;
}
.rogue-video p {
font-size: 14px;
}
/* Search Error */
.rogue-search-error {
text-align: center;
margin-top: 30px;
}
.rogue-search-error h1 {
font-size: 24px;
color: rgba(0,0,0,.7);
}
.rogue-search-error .search-error-icon {
vertical-align: bottom;
}
.rogue-search-error h3 {
font-size: 18px;
color: rgba(0,0,0,.7);
}
/* Footer */
.rogue-footer {
float: left;
font-family: 'Roboto', Arial, sans-serif;
margin-top: 50px;
padding: 30px 10px 30px 257px;
width: calc(100% - 257px);
background: rgba(0,0,0,.87);
text-align: center;
}
.rogue-footer h1 {
font-size: 16px;
font-weight: 300;
color: rgba(255, 255, 255, .54);
}
.rogue-footer .rogue-love {
vertical-align: top;
}
.rogue-footer h1 span {
font-size: 18px;
color: rgba(255, 255, 255, .87);
}
.rogue-footer p {
font-size: 12px;
color: rgba(255, 255, 255, .54);
} | 0.394434 | 0.085748 |
margin-left: 0px;
cursor: pointer;
}
#appInboxTab span {
color: #4DA55A;
background-image: url("/images/hgrow_middle_blue.png");
cursor: pointer;
}
#appInboxTab .alerts {
background-image: url("/images/alert_badge.png");
position: relative;
right: -33px;
top: -23px;
z-index: 10;
width: 22px;
height: 20px;
padding-top: 2px;
color: white;
text-align: center;
font-weight: bold;
margin: 0;
cursor: pointer;
}
.freeoffers_button {right: 0px!important;}
.mousehuntHud-marketPlace {top: 73px;}
.convertibledetails input[type="text"] {width:50px}
.campPage-trap-statsContainer .campPage-trap-itemStats {
height: 83px;
border: 1px solid #534022;
padding: 5px 10px;
margin-bottom: 10px;
overflow: visible;
}
#mousehuntContainer.simplified .campPage-trap-itemBrowser-item-content {display: none;}
#mousehuntContainer.simplified .campPage-trap-itemBrowser-item {display: inline-block;}
.inventoryPage-item-contentContainer {display:none}
.inventoryPage-item-name {font-size:inherit;font-weight:inherit;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.inventoryPage-item.full {
width: 60px;
height:80px;
float:left!important;
margin-left: 0;
margin-right: 1%;
}
.inventoryPage-item.full .inventoryPage-item-imageContainer {padding:0}
.inventoryPage-item-imageContainer .itemImage {margin:0;width: 60px;height: 50px;}
.inventoryPage-item-imageContainer .itemImage img {width:50px;height:50px;}
#btn-friend {margin: 70px 0px 0px 20px; background: url("/images/navbuttons.en.gif") no-repeat -313px -38px;
width: 74px;
height: 26px;
}
#campButton {
height: 26px;
width: 69px;
background: url("/images/navbuttons.en.gif") no-repeat 0px 0px;
background-size: 600%;
}
#UOP_imagePhotoZoomBox {
opacity: 0;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
padding-left: 5px;
-webkit-transition-duration: 0s;
-moz-transition: opacity 0s ease-in-out;
-webkit-transition: opacity 0s ease-in-out;
transition: opacity 0s ease-in-out;
position: absolute;
overflow: hidden;
font-size: 0;
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,1);
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,1);
box-shadow: 0px 0px 10px rgba(0,0,0,1);
min-height: 50px;
min-width: 50px;
pointer-events: none;
background: white url("/images/zoomboxloading.gif") no-repeat center center;
z-index: 99999;
}
#UOP_imagePhotoZoomPhoto {
position: relative;
z-index: 2;
width: auto;
height: auto;
}
#hgDropDownCommunity {right: 91px;}
#hgDropDownSupport {right: 5px;}
.mousehuntHud-shield {
background-image:url("/images/LGS.png") !important;
transition: opacity 2s;
}
#UOP_LGSTimerDayLeft {
position: relative;
top: 10px;
left: 2px;
text-align: center;
color: white;
font-weight: bold;
}
#UOP_LGSTimerDay {
position: relative;
font-weight: bolder;
text-align: center;
color: white;
}
.UOP_LGSTimerDay {
top: 10px;
left: 41px;
width: 50px;
font-size: 24px;
}
.UOP_LGSTimerToday {
top: 20px;
left: 1px;
font-size: 20px;
}
.UOP_LGSTimerToday + #UOP_LGSTimerDayLeft {
display: none;
}
#UOP_LGSTimerHourMin {
position: relative;
top: 84px;
color: #9A1107;
font-size: 17px;
font-weight: bolder;
text-align: center;
}
#UOP_simpleSkin {float: left;}
#UOP_simpleSkin .picture {
background: url("/images/simpleskinbutton.png");
}
#UOP_campTravel {
background: transparent url("/images/head_larry.png") no-repeat scroll left top;
}
#UOP_campTravel>.header {
height: 50px;
margin-bottom: 4px;
padding: 25px 0 8px 90px;
}
#UOP_campTravel .environment {
font-size: 16px;
font-weight: bold;
}
#UOP_campTravel .byline {
padding: 1px 0 2px;
}
#UOP_campTravel>.footer {
margin-top: 0px;
background: transparent url("/images/content_foot.png") 0 0 no-repeat;
}
#UOP_campTravel .content>div {
display: inline-block;
margin-right: 5px;
}
#UOP_travelcontentChild {
background: transparent url("/images/content_body.png") 0 0 repeat-y;
padding: 1px 15px 2px;
}
.UOP_waitingTab {
display: block!important;
background: url("/images/mouse_loading_large.gif") center center no-repeat;
height: 300px;
}
#UOP_travelcontentChild>div:first-child {margin-top: 5px;}
.UOP_groupPlacesArea {display:inline-block;float: left;}
.UOP_groupPlacesDiv.Normal {display:inline-block;float: right;overflow: hidden;}
.UOP_groupPlacesDiv.Mobile {display:inline-block;margin-left: 10px;float: left;overflow: hidden;}
.UOP_buttonTravel {
box-shadow:rgba(0,0,0,0.2) 0 1px 0 0;
color:#333;
border-radius:5px;
border:none;
font-family:'Helvetica Neue',Arial,sans-serif;
font-size:11px;
font-weight:700;
text-transform:uppercase;
padding: 4px 9px;
cursor:pointer;
margin-bottom: 5px;
height: 22px;
line-height: 22px;
text-overflow: ellipsis;
white-space: nowrap;
}
.UOP_travelRegionMobile {
text-align:center;
background-color:#F16C9D;
margin-left: 5px;
margin-right: 10px;
}
.UOP_travelRegionMobile:hover {background-color:#F5518D;}
.UOP_travelPlaceMobile {background-color:#61A2DB;color:#fff;max-width: 131px;}
.UOP_travelPlaceMobile:hover {background-color: #4094DD;}
.UOP_travelPlaceMobileImpossible {background-color:#acacac;color:#fff;max-width: 131px;}
.UOP_travelPlaceMobileImpossible:hover {background-color: #bdbdbd;}
.UOP_travelRegion {background-color:#12CC28;}
.UOP_travelRegion:hover {background-color: #4CCF5C;}
.UOP_travelPlaceDiv {
color:#333;
border:none;
font-family:'Helvetica Neue',Arial,sans-serif;
font-size:11px;
font-weight:700;
cursor:pointer;
margin-bottom: 5px;
text-align:center;
float: right;
}
.UOP_travelPlaceDiv>div {
height:18px;
line-height: 18px;
box-shadow:rgba(0,0,0,0.2) 0 1px 0 0;
padding: 4px 9px;
display:inline-block;
}
.UOP_travelPlaceDiv .UOP_travelPlaceName {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
margin-right: 0px;
color: #fff;
background-color:#61A2DB;
max-width: 130px;
text-overflow: ellipsis;
white-space: nowrap;
}
.UOP_travelPlaceDiv .UOP_travelPlaceCost {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
background-color:#FFE661;
min-width: 24px;
}
.UOP_travelPlaceDiv .UOP_travelPlaceImpossible {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
background-color:#bdbdbd;
min-width: 24px;
}
.UOP_travelPlaceDiv:hover .UOP_travelPlaceName {background-color:#4094DD;}
.UOP_travelPlaceDiv:hover .UOP_travelPlaceCost {background-color:gold;}
.UOP_travelPlaceDiv:hover .UOP_travelPlaceImpossible {background-color:#acacac;}
/*For editing default skin*/
.menuItem.play, .menuItem.chat, .menuItem.premiumShop, .menuItem.superBrie .getMore:nth-child(2) {display: none;}
.menuItem.superBrie .quantity {
position:static!important;
margin-right:5px;
}
.menuItem.superBrie {padding-right:0px!important;}
.UOP_toggleFavorite {
float:right;
width: 25px;
height: 25px;
z-index: 5;
-webkit-background-size: contain;
-moz-background-size: contain;
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
}
.UOP_addFavorite {
background-image: url('/images/star_empty.png');
}
.UOP_removeFavorite {
background-image: url('/images/star_favorite.png');
}
#UOP_toggleSimplifiedSelector {
position: absolute;
display: none;
right: 240px;
top: 1px;
padding: 2px 8px;
text-align: center;
font-size: 9px;
color: #000;
background: #fff;
border: 1px solid #008fff;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 2px 2px 5px #333;
-moz-box-shadow: 2px 2px 5px #333;
box-shadow: 2px 2px 5px #333;
z-index: 10;
cursor: pointer;
}
.showBlueprint #UOP_toggleSimplifiedSelector {
display: block;
}
.sidebarTitle {cursor:pointer;}
.UOP_sunkenRevealHUD {
display:none;
text-align:left;
height:84px!important;
}
.UOP_sunkenRevealHUDElement {text-transform:capitalize;}
.UOP_currentSunken {background-color: lightblue!important;}
.UOP_sunkenRevealHUDElement:nth-child(even) {background-color: #DDD;}
.UOP_showHUD .sidebarContent.UOP_sunkenRevealHUD {display:block;}
.UOP_showHUD .diveControls {display:none;}
.UOP_showHUD .sidebarContent {display:none;}
.UOP_barnacle {color:blue;}
.UOP_damaged_coral {color:green;}
.UOP_mouse_scale {color:purple;}
.UOP_danger {color:red;}
.UOP_treasure {color:gold;background-color:rgb(70, 130, 180)!important;}
.UOP_bonus {color:rgb(123, 104, 238);}
.winterHunt2014Minigame-board-row-cell a{
text-decoration: none;
font-size: 20px;
font-weight: bold;
}
#UOP_battleShipDiv:before {
content: "Battleship: ";
}
#UOP_battleShipDiv {
margin-top: 4px;
}
#UOP_battleShipCalculateButton {
margin-right: 5px;
} | Extension/css/defaultskin.css | margin-left: 0px;
cursor: pointer;
}
#appInboxTab span {
color: #4DA55A;
background-image: url("/images/hgrow_middle_blue.png");
cursor: pointer;
}
#appInboxTab .alerts {
background-image: url("/images/alert_badge.png");
position: relative;
right: -33px;
top: -23px;
z-index: 10;
width: 22px;
height: 20px;
padding-top: 2px;
color: white;
text-align: center;
font-weight: bold;
margin: 0;
cursor: pointer;
}
.freeoffers_button {right: 0px!important;}
.mousehuntHud-marketPlace {top: 73px;}
.convertibledetails input[type="text"] {width:50px}
.campPage-trap-statsContainer .campPage-trap-itemStats {
height: 83px;
border: 1px solid #534022;
padding: 5px 10px;
margin-bottom: 10px;
overflow: visible;
}
#mousehuntContainer.simplified .campPage-trap-itemBrowser-item-content {display: none;}
#mousehuntContainer.simplified .campPage-trap-itemBrowser-item {display: inline-block;}
.inventoryPage-item-contentContainer {display:none}
.inventoryPage-item-name {font-size:inherit;font-weight:inherit;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.inventoryPage-item.full {
width: 60px;
height:80px;
float:left!important;
margin-left: 0;
margin-right: 1%;
}
.inventoryPage-item.full .inventoryPage-item-imageContainer {padding:0}
.inventoryPage-item-imageContainer .itemImage {margin:0;width: 60px;height: 50px;}
.inventoryPage-item-imageContainer .itemImage img {width:50px;height:50px;}
#btn-friend {margin: 70px 0px 0px 20px; background: url("/images/navbuttons.en.gif") no-repeat -313px -38px;
width: 74px;
height: 26px;
}
#campButton {
height: 26px;
width: 69px;
background: url("/images/navbuttons.en.gif") no-repeat 0px 0px;
background-size: 600%;
}
#UOP_imagePhotoZoomBox {
opacity: 0;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
padding-left: 5px;
-webkit-transition-duration: 0s;
-moz-transition: opacity 0s ease-in-out;
-webkit-transition: opacity 0s ease-in-out;
transition: opacity 0s ease-in-out;
position: absolute;
overflow: hidden;
font-size: 0;
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,1);
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,1);
box-shadow: 0px 0px 10px rgba(0,0,0,1);
min-height: 50px;
min-width: 50px;
pointer-events: none;
background: white url("/images/zoomboxloading.gif") no-repeat center center;
z-index: 99999;
}
#UOP_imagePhotoZoomPhoto {
position: relative;
z-index: 2;
width: auto;
height: auto;
}
#hgDropDownCommunity {right: 91px;}
#hgDropDownSupport {right: 5px;}
.mousehuntHud-shield {
background-image:url("/images/LGS.png") !important;
transition: opacity 2s;
}
#UOP_LGSTimerDayLeft {
position: relative;
top: 10px;
left: 2px;
text-align: center;
color: white;
font-weight: bold;
}
#UOP_LGSTimerDay {
position: relative;
font-weight: bolder;
text-align: center;
color: white;
}
.UOP_LGSTimerDay {
top: 10px;
left: 41px;
width: 50px;
font-size: 24px;
}
.UOP_LGSTimerToday {
top: 20px;
left: 1px;
font-size: 20px;
}
.UOP_LGSTimerToday + #UOP_LGSTimerDayLeft {
display: none;
}
#UOP_LGSTimerHourMin {
position: relative;
top: 84px;
color: #9A1107;
font-size: 17px;
font-weight: bolder;
text-align: center;
}
#UOP_simpleSkin {float: left;}
#UOP_simpleSkin .picture {
background: url("/images/simpleskinbutton.png");
}
#UOP_campTravel {
background: transparent url("/images/head_larry.png") no-repeat scroll left top;
}
#UOP_campTravel>.header {
height: 50px;
margin-bottom: 4px;
padding: 25px 0 8px 90px;
}
#UOP_campTravel .environment {
font-size: 16px;
font-weight: bold;
}
#UOP_campTravel .byline {
padding: 1px 0 2px;
}
#UOP_campTravel>.footer {
margin-top: 0px;
background: transparent url("/images/content_foot.png") 0 0 no-repeat;
}
#UOP_campTravel .content>div {
display: inline-block;
margin-right: 5px;
}
#UOP_travelcontentChild {
background: transparent url("/images/content_body.png") 0 0 repeat-y;
padding: 1px 15px 2px;
}
.UOP_waitingTab {
display: block!important;
background: url("/images/mouse_loading_large.gif") center center no-repeat;
height: 300px;
}
#UOP_travelcontentChild>div:first-child {margin-top: 5px;}
.UOP_groupPlacesArea {display:inline-block;float: left;}
.UOP_groupPlacesDiv.Normal {display:inline-block;float: right;overflow: hidden;}
.UOP_groupPlacesDiv.Mobile {display:inline-block;margin-left: 10px;float: left;overflow: hidden;}
.UOP_buttonTravel {
box-shadow:rgba(0,0,0,0.2) 0 1px 0 0;
color:#333;
border-radius:5px;
border:none;
font-family:'Helvetica Neue',Arial,sans-serif;
font-size:11px;
font-weight:700;
text-transform:uppercase;
padding: 4px 9px;
cursor:pointer;
margin-bottom: 5px;
height: 22px;
line-height: 22px;
text-overflow: ellipsis;
white-space: nowrap;
}
.UOP_travelRegionMobile {
text-align:center;
background-color:#F16C9D;
margin-left: 5px;
margin-right: 10px;
}
.UOP_travelRegionMobile:hover {background-color:#F5518D;}
.UOP_travelPlaceMobile {background-color:#61A2DB;color:#fff;max-width: 131px;}
.UOP_travelPlaceMobile:hover {background-color: #4094DD;}
.UOP_travelPlaceMobileImpossible {background-color:#acacac;color:#fff;max-width: 131px;}
.UOP_travelPlaceMobileImpossible:hover {background-color: #bdbdbd;}
.UOP_travelRegion {background-color:#12CC28;}
.UOP_travelRegion:hover {background-color: #4CCF5C;}
.UOP_travelPlaceDiv {
color:#333;
border:none;
font-family:'Helvetica Neue',Arial,sans-serif;
font-size:11px;
font-weight:700;
cursor:pointer;
margin-bottom: 5px;
text-align:center;
float: right;
}
.UOP_travelPlaceDiv>div {
height:18px;
line-height: 18px;
box-shadow:rgba(0,0,0,0.2) 0 1px 0 0;
padding: 4px 9px;
display:inline-block;
}
.UOP_travelPlaceDiv .UOP_travelPlaceName {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
margin-right: 0px;
color: #fff;
background-color:#61A2DB;
max-width: 130px;
text-overflow: ellipsis;
white-space: nowrap;
}
.UOP_travelPlaceDiv .UOP_travelPlaceCost {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
background-color:#FFE661;
min-width: 24px;
}
.UOP_travelPlaceDiv .UOP_travelPlaceImpossible {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
background-color:#bdbdbd;
min-width: 24px;
}
.UOP_travelPlaceDiv:hover .UOP_travelPlaceName {background-color:#4094DD;}
.UOP_travelPlaceDiv:hover .UOP_travelPlaceCost {background-color:gold;}
.UOP_travelPlaceDiv:hover .UOP_travelPlaceImpossible {background-color:#acacac;}
/*For editing default skin*/
.menuItem.play, .menuItem.chat, .menuItem.premiumShop, .menuItem.superBrie .getMore:nth-child(2) {display: none;}
.menuItem.superBrie .quantity {
position:static!important;
margin-right:5px;
}
.menuItem.superBrie {padding-right:0px!important;}
.UOP_toggleFavorite {
float:right;
width: 25px;
height: 25px;
z-index: 5;
-webkit-background-size: contain;
-moz-background-size: contain;
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
}
.UOP_addFavorite {
background-image: url('/images/star_empty.png');
}
.UOP_removeFavorite {
background-image: url('/images/star_favorite.png');
}
#UOP_toggleSimplifiedSelector {
position: absolute;
display: none;
right: 240px;
top: 1px;
padding: 2px 8px;
text-align: center;
font-size: 9px;
color: #000;
background: #fff;
border: 1px solid #008fff;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 2px 2px 5px #333;
-moz-box-shadow: 2px 2px 5px #333;
box-shadow: 2px 2px 5px #333;
z-index: 10;
cursor: pointer;
}
.showBlueprint #UOP_toggleSimplifiedSelector {
display: block;
}
.sidebarTitle {cursor:pointer;}
.UOP_sunkenRevealHUD {
display:none;
text-align:left;
height:84px!important;
}
.UOP_sunkenRevealHUDElement {text-transform:capitalize;}
.UOP_currentSunken {background-color: lightblue!important;}
.UOP_sunkenRevealHUDElement:nth-child(even) {background-color: #DDD;}
.UOP_showHUD .sidebarContent.UOP_sunkenRevealHUD {display:block;}
.UOP_showHUD .diveControls {display:none;}
.UOP_showHUD .sidebarContent {display:none;}
.UOP_barnacle {color:blue;}
.UOP_damaged_coral {color:green;}
.UOP_mouse_scale {color:purple;}
.UOP_danger {color:red;}
.UOP_treasure {color:gold;background-color:rgb(70, 130, 180)!important;}
.UOP_bonus {color:rgb(123, 104, 238);}
.winterHunt2014Minigame-board-row-cell a{
text-decoration: none;
font-size: 20px;
font-weight: bold;
}
#UOP_battleShipDiv:before {
content: "Battleship: ";
}
#UOP_battleShipDiv {
margin-top: 4px;
}
#UOP_battleShipCalculateButton {
margin-right: 5px;
} | 0.243552 | 0.076649 |
font-size: larger;
max-height: 600px;
overflow-y: scroll;
}
#document.short {
max-height: 200px;
}
span.sentence {
display: inline-block;
margin-right: 1em;
line-height: 36px;
}
span.token {
display: inline-block;
}
span.token.with-space {
display: inline-block;
margin-left: 0.5em;
}
span.token.underline {
text-decoration: underline;
}
span.token.highlight {
text-shadow:0px 0px 1px black;
}
.mention.highlight {
text-shadow:0px 0px 1px;
}
span.selected {
font-weight:bold;
background-color: lightgray;
}
span.token.mention {
font-style: italic;
}
span.token.suggestion {
text-shadow: 0px 0px 1px black;
text-decoration: underline;
}
span.token.suggestion-end {
padding-right: 10px;
}
span.token.true-suggestion {
text-shadow: 0px 0px 1px green;
}
span.token.suggestion.true-suggestion {
text-decoration: underline;
}
.mention span.token.suggestion {
text-shadow: unset;
text-decoration: unset;
}
.mention span.token.suggestion-end {
padding-right: 0px;
}
.mention span.token.suggestion.highlight {
text-shadow: 0px 0px 1px;
}
span.mention {
font-style: italic;
position: relative;
}
span.type-marker {
vertical-align: super;
font-size: small;
z-index:0;
}
span.link-marker {
font-size: small;
font-variant: small-caps;
position: absolute;
top: 25px;
z-index:0;
line-height: 10px;
}
span.linked-mention {
font-weight: bold;
}
span.subject {
color: red;
}
span.canonical {
text-decoration: underline;
font-weight: bold;
}
span.object {
color: blue;
}
div.btn.relation-option {
text-align: center;
display: inline-block;
padding: 6px;
}
div.relation-option span.icon {
margin: 0 auto;
}
div#relation-option-preview {
font-size: large;
height: 90px;
}
div#relation-option-preview span.subject {
font-weight: bold;
}
div#relation-option-preview span.object {
font-weight: bold;
}
#instruction-widget-modal>.modal-dialog {
width: 90%;
}
.sentence.highlight {
background-color: palegoldenrod;
}
#relation-option-preview>.sentence.highlight {
background-color: transparent;
border: 1px solid black;
border-radius: 16px;
}
#relation-options {
margin-bottom: 10px;
} | old-interface/css/kbpo.css | font-size: larger;
max-height: 600px;
overflow-y: scroll;
}
#document.short {
max-height: 200px;
}
span.sentence {
display: inline-block;
margin-right: 1em;
line-height: 36px;
}
span.token {
display: inline-block;
}
span.token.with-space {
display: inline-block;
margin-left: 0.5em;
}
span.token.underline {
text-decoration: underline;
}
span.token.highlight {
text-shadow:0px 0px 1px black;
}
.mention.highlight {
text-shadow:0px 0px 1px;
}
span.selected {
font-weight:bold;
background-color: lightgray;
}
span.token.mention {
font-style: italic;
}
span.token.suggestion {
text-shadow: 0px 0px 1px black;
text-decoration: underline;
}
span.token.suggestion-end {
padding-right: 10px;
}
span.token.true-suggestion {
text-shadow: 0px 0px 1px green;
}
span.token.suggestion.true-suggestion {
text-decoration: underline;
}
.mention span.token.suggestion {
text-shadow: unset;
text-decoration: unset;
}
.mention span.token.suggestion-end {
padding-right: 0px;
}
.mention span.token.suggestion.highlight {
text-shadow: 0px 0px 1px;
}
span.mention {
font-style: italic;
position: relative;
}
span.type-marker {
vertical-align: super;
font-size: small;
z-index:0;
}
span.link-marker {
font-size: small;
font-variant: small-caps;
position: absolute;
top: 25px;
z-index:0;
line-height: 10px;
}
span.linked-mention {
font-weight: bold;
}
span.subject {
color: red;
}
span.canonical {
text-decoration: underline;
font-weight: bold;
}
span.object {
color: blue;
}
div.btn.relation-option {
text-align: center;
display: inline-block;
padding: 6px;
}
div.relation-option span.icon {
margin: 0 auto;
}
div#relation-option-preview {
font-size: large;
height: 90px;
}
div#relation-option-preview span.subject {
font-weight: bold;
}
div#relation-option-preview span.object {
font-weight: bold;
}
#instruction-widget-modal>.modal-dialog {
width: 90%;
}
.sentence.highlight {
background-color: palegoldenrod;
}
#relation-option-preview>.sentence.highlight {
background-color: transparent;
border: 1px solid black;
border-radius: 16px;
}
#relation-options {
margin-bottom: 10px;
} | 0.394901 | 0.142024 |
top {
margin: 3em;
background-color: white;
border: none;
}
top div.top {
margin: 3em;
padding: 20px;
background-color: #c3d9ff;
color: #0000cc;
}
div.directory {
color: #0000cc;
background-color: #000000;
margin: 10px;
}
div.title {
color: #0000cc;
display: inline;
width: 30%;
}
div.help {
display: inline;
background-color: red;
margin-left: 20px;
}
div.contents {
display: block;
}
script {
font-family: arial, sans-serif;
margin: 10px;
background-color: white;
border: none;
}
div.header {
padding: 20px;
background-color: #c3d9ff;
color: #0000cc;
white-space: nowrap;
font-size: 100%;
}
div.header * {
font-weight: bold;
}
div.header a:link {
color: #0000cc;
text-decoration: underline;
}
div.header a:visited {
color: #0000cc;
}
div.header a:focus:hover {
color: #c3d9ff;
background-color: white;
}
script div.header logo {
display: table-cell;
width: 40%;
color: white;
background-color: #1f499b;
padding: 10px;
text-align: center;
font-family: cursive;
font-style: italic;
font-size: 225%;
}
script div.header title {
display: table-cell;
width: 45%;
text-align: center;
font-size: 150%;
}
script div.header author {
display: table-cell;
width: auto;
text-align: right;
position: absolute;
top: 21px;
right: 21px;
}
script div.header synopsis {
text-align: center;
padding: 20px;
white-space: normal;
display: block;
}
div.debug-container {
display: none;
color: blue;
border: thin blue solid;
background-color: #c0c0ff;
margin: 5em;
padding: 1em;
}
textarea.debug-log {
padding: 10px;
display: block;
width: 95%;
font-family: "Bitstream Vera Sans Mono", monospace;
height: 400px;
}
div.debug-container span.title {
font-weight: bold;
border: none;
}
div.debug-log {
padding: 20px;
border: none;
white-space: pre;
}
div.debug-line {
border: none;
padding: 0px;
white-space: pre;
}
div.tab-header {
padding: 13px 4px 9px 4px;
color: #0000cc;
background-color: #c3d9ff;
white-space: nowrap;
font-size: 100%;
margin-top: 20px;
}
div.tab {
padding: 10px;
display: inline;
background-color: #c3d9ff;
color: black;
}
div.tab.current {
background-color: #c3d9ff;
}
div.tab-container {
padding: 0px 4px 6px 4px;
background-color: #c3d9ff;
color: #0000cc;
margin-bottom: 20px;
}
div.tab-body {
background-color: white;
color: black;
padding: 20px;
font-size: 100%;
}
div.tab-contents {
display: block;
border: none;
}
div.tab-contents {
border: none;
}
div.tab-contents div.title {
font-size: 100%;
text-decoration: underline;
}
div.tab-contents div.description {
ignore-padding: 3px 3px 20px 3px;
white-space: pre;
}
div.load-file {
display: none;
}
div.file-header {
padding: 10px 3px 7px 0px;
white-space: nowrap;
font-size: 100%;
background-color: #e5ecf9;
}
div.file-tab {
padding: 10px;
display: inline;
color: black;
background-color: #e5ecf9;
}
div.file-contents {
display: block;
color: white;
background-color: #e5ecf9;
padding: 3px;
margin-bottom: 20px;
}
textarea.file-contents {
border: thin #e5ecf9 solid;
padding: 4px;
display: block;
width: 99%;
font-family: "Bitstream Vera Sans Mono", monospace;
height: auto;
color: black;
background-color: white;
}
div.download {
padding: 10px;
}
div.download:before {
content: "Download: ";
font-size: 90%;
margin-right: 30px;
}
div.download div.button {
display: inline;
background-color: white;
padding: 10px;
margin-right: 30px;
}
div.download div.button a {
color: black;
padding: 10px;
} | web/jstm.css | top {
margin: 3em;
background-color: white;
border: none;
}
top div.top {
margin: 3em;
padding: 20px;
background-color: #c3d9ff;
color: #0000cc;
}
div.directory {
color: #0000cc;
background-color: #000000;
margin: 10px;
}
div.title {
color: #0000cc;
display: inline;
width: 30%;
}
div.help {
display: inline;
background-color: red;
margin-left: 20px;
}
div.contents {
display: block;
}
script {
font-family: arial, sans-serif;
margin: 10px;
background-color: white;
border: none;
}
div.header {
padding: 20px;
background-color: #c3d9ff;
color: #0000cc;
white-space: nowrap;
font-size: 100%;
}
div.header * {
font-weight: bold;
}
div.header a:link {
color: #0000cc;
text-decoration: underline;
}
div.header a:visited {
color: #0000cc;
}
div.header a:focus:hover {
color: #c3d9ff;
background-color: white;
}
script div.header logo {
display: table-cell;
width: 40%;
color: white;
background-color: #1f499b;
padding: 10px;
text-align: center;
font-family: cursive;
font-style: italic;
font-size: 225%;
}
script div.header title {
display: table-cell;
width: 45%;
text-align: center;
font-size: 150%;
}
script div.header author {
display: table-cell;
width: auto;
text-align: right;
position: absolute;
top: 21px;
right: 21px;
}
script div.header synopsis {
text-align: center;
padding: 20px;
white-space: normal;
display: block;
}
div.debug-container {
display: none;
color: blue;
border: thin blue solid;
background-color: #c0c0ff;
margin: 5em;
padding: 1em;
}
textarea.debug-log {
padding: 10px;
display: block;
width: 95%;
font-family: "Bitstream Vera Sans Mono", monospace;
height: 400px;
}
div.debug-container span.title {
font-weight: bold;
border: none;
}
div.debug-log {
padding: 20px;
border: none;
white-space: pre;
}
div.debug-line {
border: none;
padding: 0px;
white-space: pre;
}
div.tab-header {
padding: 13px 4px 9px 4px;
color: #0000cc;
background-color: #c3d9ff;
white-space: nowrap;
font-size: 100%;
margin-top: 20px;
}
div.tab {
padding: 10px;
display: inline;
background-color: #c3d9ff;
color: black;
}
div.tab.current {
background-color: #c3d9ff;
}
div.tab-container {
padding: 0px 4px 6px 4px;
background-color: #c3d9ff;
color: #0000cc;
margin-bottom: 20px;
}
div.tab-body {
background-color: white;
color: black;
padding: 20px;
font-size: 100%;
}
div.tab-contents {
display: block;
border: none;
}
div.tab-contents {
border: none;
}
div.tab-contents div.title {
font-size: 100%;
text-decoration: underline;
}
div.tab-contents div.description {
ignore-padding: 3px 3px 20px 3px;
white-space: pre;
}
div.load-file {
display: none;
}
div.file-header {
padding: 10px 3px 7px 0px;
white-space: nowrap;
font-size: 100%;
background-color: #e5ecf9;
}
div.file-tab {
padding: 10px;
display: inline;
color: black;
background-color: #e5ecf9;
}
div.file-contents {
display: block;
color: white;
background-color: #e5ecf9;
padding: 3px;
margin-bottom: 20px;
}
textarea.file-contents {
border: thin #e5ecf9 solid;
padding: 4px;
display: block;
width: 99%;
font-family: "Bitstream Vera Sans Mono", monospace;
height: auto;
color: black;
background-color: white;
}
div.download {
padding: 10px;
}
div.download:before {
content: "Download: ";
font-size: 90%;
margin-right: 30px;
}
div.download div.button {
display: inline;
background-color: white;
padding: 10px;
margin-right: 30px;
}
div.download div.button a {
color: black;
padding: 10px;
} | 0.432063 | 0.084568 |
body {
margin: 0;
background: #2d3436;
font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
}
.home {
color: white;
display: -ms-grid;
display: grid;
grid-template-rows: 1fr;
}
main {
color: white;
display: -ms-grid;
display: grid;
grid-template-rows: 1fr;
padding: 10px;
overflow: auto;
}
header {
-ms-grid-row: 1;
-ms-grid-column: 2;
grid-area: flix;
display: -ms-grid;
display: grid;
grid-template-areas: "user search" "list list";
grid-template-rows: auto 1fr;
-ms-grid-columns: 300px 1fr;
grid-template-columns: 300px 1fr;
padding: 10px;
overflow: auto;
}
footer {
color: white;
display: -ms-grid;
display: grid;
grid-template-rows: 1fr;
padding: 10px;
overflow: auto;
}
.logo p {
display: flex;
align-items: center;
font-weight: 300;
margin: 0;
}
.logo img {
width: 45px;
height: 45px;
-o-object-fit: cover;
object-fit: cover;
border-radius: 50%;
margin-right: 10px;
}
.nav {
-ms-grid-column-align: end;
justify-self: end;
}
.flix-list {
-ms-grid-row: 2;
-ms-grid-column: 1;
-ms-grid-column-span: 2;
grid-area: list;
overflow: auto;
}
.flixMovieList-topic {
margin: 15px 0 0;
color: #b2bec3;
font-size: 14px;
font-weight: 300;
}
.flixMovieList-title {
margin: 0 0 15px;
color: #dfe6e9;
font-size: 20px;
font-weight: 400;
}
.flixMovieList-list {
display: flex;
overflow: auto;
}
.flixMovieList-list::-webkit-scrollbar {
display: none;
}
.flixMovieList-list .flixMovieListItem {
margin-right: 10px;
}
.flixMovieListItem {
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.flixMovieListItem:hover {
transform: scale(1.05);
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}
.flixMovieListItem img {
width: 210px;
height: 295px;
-o-object-fit: cover;
object-fit: cover;
}
.flixMovieListItem-title {
margin: 5px 10px;
color: white;
font-size: 14px;
font-weight: normal;
} | css/style.css | body {
margin: 0;
background: #2d3436;
font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
}
.home {
color: white;
display: -ms-grid;
display: grid;
grid-template-rows: 1fr;
}
main {
color: white;
display: -ms-grid;
display: grid;
grid-template-rows: 1fr;
padding: 10px;
overflow: auto;
}
header {
-ms-grid-row: 1;
-ms-grid-column: 2;
grid-area: flix;
display: -ms-grid;
display: grid;
grid-template-areas: "user search" "list list";
grid-template-rows: auto 1fr;
-ms-grid-columns: 300px 1fr;
grid-template-columns: 300px 1fr;
padding: 10px;
overflow: auto;
}
footer {
color: white;
display: -ms-grid;
display: grid;
grid-template-rows: 1fr;
padding: 10px;
overflow: auto;
}
.logo p {
display: flex;
align-items: center;
font-weight: 300;
margin: 0;
}
.logo img {
width: 45px;
height: 45px;
-o-object-fit: cover;
object-fit: cover;
border-radius: 50%;
margin-right: 10px;
}
.nav {
-ms-grid-column-align: end;
justify-self: end;
}
.flix-list {
-ms-grid-row: 2;
-ms-grid-column: 1;
-ms-grid-column-span: 2;
grid-area: list;
overflow: auto;
}
.flixMovieList-topic {
margin: 15px 0 0;
color: #b2bec3;
font-size: 14px;
font-weight: 300;
}
.flixMovieList-title {
margin: 0 0 15px;
color: #dfe6e9;
font-size: 20px;
font-weight: 400;
}
.flixMovieList-list {
display: flex;
overflow: auto;
}
.flixMovieList-list::-webkit-scrollbar {
display: none;
}
.flixMovieList-list .flixMovieListItem {
margin-right: 10px;
}
.flixMovieListItem {
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.flixMovieListItem:hover {
transform: scale(1.05);
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}
.flixMovieListItem img {
width: 210px;
height: 295px;
-o-object-fit: cover;
object-fit: cover;
}
.flixMovieListItem-title {
margin: 5px 10px;
color: white;
font-size: 14px;
font-weight: normal;
} | 0.464416 | 0.166134 |
@charset "utf-8";
/**************************************************************
tags add
*************************************************************/
.theme-dark .ddp-wrap-edit3 .ddp-ui-edit-option .ddp-list-tags {
margin-top: 0;
}
.theme-dark .ddp-list-tags {
margin-top: -5px;
}
.theme-dark .ddp-list-tags .ddp-tags {
display: inline-block;
position: relative;
padding: 5px 15px;
background-color: #f2f1f7;
border-radius: 4px;
color: #666fad;
font-size: 13px;
cursor: pointer;
}
.theme-dark .ddp-list-tags .ddp-tags {
margin: 3px 6px 3px 0;
}
.theme-dark .ddp-list-tags .ddp-tags a.ddp-btn-delete {
display: none;
position: absolute;
top: -4px;
right: -4px;
content: '';
width: 14px;
height: 14px;
background: url(../../../images/btn_sclose.png) no-repeat;
background-position: 0 -131px;
}
.theme-dark .ddp-list-tags .ddp-tags:hover a.ddp-btn-delete {
display: block;
}
.theme-dark .ddp-list-tags .ddp-tags.ddp-txt {
cursor: default;
}
.theme-dark .ddp-list-tags .ddp-tags.ddp-txt:hover {
padding: 5px 15px;
}
.theme-dark .ddp-list-tags .ddp-tags.ddp-txt:hover a.ddp-btn-delete {
display: none;
}
.theme-dark .ddp-list-tags .ddp-tag-default {
display: inline-block;
position: relative;
padding: 5px 5px 5px 20px;
margin: 3px 6px 3px 0;
border-radius: 4px;
color: #666fad;
font-size: 13px;
box-sizing: border-box;
}
.theme-dark .ddp-list-tags .ddp-tag-default:before {
display: inline-block;
position: absolute;
top: 5px;
left: 9px;
content: '#';
color: #666fad;
font-size: 13px;
}
.theme-dark .ddp-list-tags .ddp-tag-default input {
display: block;
width: 100%;
border: none;
background: none;
color: #666fad;
font-size: 13px;
}
/**************************************************************
box-tag
**************************************************************/
.theme-dark .ddp-box-tag {
display: inline-block;
float: left;
padding: 1px 3px 1px 3px;
margin-right: 8px;
border-radius: 1px;
font-size: 10px;
font-weight: normal;
vertical-align: top;
box-sizing: border-box;
}
.theme-dark .ddp-box-tag.ddp-workbook {
border: 1px solid #7e8aa5;
color: #565c65;
}
.theme-dark .ddp-box-tag.ddp-notebook {
border: 1px solid #5ecfea;
color: #5ecfea;
}
.theme-dark .ddp-box-tag.ddp-workbench {
border: 1px solid #8c97d3;
color: #8c97d3;
}
.theme-dark .ddp-box-tag.ddp-wargled {
min-width: 54px;
border: 1px solid #ee5398;
color: #ee5398;
text-align: center;
}
.theme-dark .ddp-box-tag.ddp-imported {
min-width: 54px;
border: 1px solid #50549a;
color: #50549a;
text-align: center;
}
.theme-dark .ddp-box-tag.ddp-personal {
width: 52px;
border: 1px solid #cd2287;
color: #cd2287;
text-align: center;
}
.theme-dark .ddp-box-tag.ddp-shared {
width: 52px;
border: 1px solid #3f72c1;
color: #3f72c1;
text-align: center;
}
.theme-dark .ddp-box-tag.ddp-wargled,
.theme-dark .ddp-box-tag-value.ddp-database,
.theme-dark .ddp-box-tag-value.ddp-datasource,
.theme-dark .ddp-box-tag-value.ddp-hive,
.theme-dark .ddp-box-tag-value.ddp-stagingdb,
.theme-dark .ddp-box-tag-value.ddp-dataset {
display: inline-block;
min-width: 63px;
padding: 0 3px;
text-align: center;
font-size: 10px;
box-sizing: Border-box;
}
.theme-dark .ddp-box-tag-value.ddp-datasource {
border: 1px solid #313869;
color: #313869;
}
.theme-dark .ddp-box-tag-value.ddp-hive {
border: 1px solid #f6a300;
color: #f6a300;
}
.theme-dark .ddp-box-tag-value.ddp-stagingdb {
border: 1px solid #8476df;
color: #8476df;
}
.theme-dark .ddp-box-tag-value.ddp-database {
border: 1px solid #5b8fe4;
color: #5b8fe4;
}
.theme-dark .ddp-box-tag-value.ddp-dataset {
border: 1px solid #46a8be;
color: #46a8be;
}
.theme-dark .ddp-box-power {
display: inline-block;
padding: 2px 4px 1px 4px;
width: 60px;
border-radius: 2px;
color: #fff;
font-size: 10px;
text-align: center;
box-sizing: border-box;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
word-wrap: normal;
}
.theme-dark .ddp-box-power.ddp-watcher {
background-color: #293a63;
color: #aab5d3;
}
.theme-dark .ddp-box-power.ddp-editor {
background-color: #b7b9c2;
}
.theme-dark .ddp-box-power.ddp-owner,
.theme-dark .ddp-box-power.ddp-manager {
background-color: #293a63;
color:#aab5d3;
}
/**************************************************************
new
**************************************************************/
.theme-dark .ddp-icon-new {color:#707cc4; font-size:10px !important;}
.theme-dark .ddp-icon-new:before {display:inline-block; content:''; width:5px; height:5px; margin-right:5px; border-radius:50%; background-color:#707cc4;}
/**************************************************************
status
**************************************************************/
.theme-dark .ddp-status-pending {
color: #ffb700;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-status-rejected {
color: #f4434b;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-status-approved {
color: #7e8aa5;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-status-active {
color: #4b525b;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-status-active.ddp-inactive {
color: #7e8aa5;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-waiting {
font-weight: bold;
font-size: 12px;
color: #7e8aa5;
}
.theme-dark .ddp-data-state.ddp-rejected {
font-weight: bold;
font-size: 12px;
color: #eb5f58;
}
.theme-dark .ddp-data-state.ddp-approved {
font-weight: bold;
font-size: 12px;
color: #4c92e0;
}
.theme-dark .ddp-data-state.ddp-inprogress {
position: relative;
font-weight: bold;
font-size: 12px;
color: #7e8aa5;
}
.theme-dark .ddp-data-state.ddp-fail {
font-size: 11px;
color: #eb5f58;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-success {
font-size: 11px;
color: #4c92e0;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-preparing {
font-size: 11px;
color: #4e5368;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-running {
font-size: 11px;
color: #ffba00;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-cancelled {
font-size: 11px;
color: #7e8aa5;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-scheduling {
font-size: 11px;
color: #10bf83;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-creating {
font-size: 11px;
color: #ffba00;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-unscheduled {
font-size: 11px;
color: #b7b9c2;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-warning {
font-size: 11px;
color: #edb817;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-ok {
font-size: 11px;
color: #5188d7;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-inprogress .ddp-icon-error2 {
position: relative;
top: 0;
margin-left: 2px;
background-position-x: -28px;
}
.theme-dark .ddp-data-state.ddp-inprogress .ddp-ui-tooltip-info {
display: none;
position: absolute;
top: -5px;
left: 100%;
margin-left: 8px;
}
.theme-dark .ddp-data-state.ddp-inprogress:hover .ddp-ui-tooltip-info {
display: block;
font-weight: normal;
}
.theme-dark .ddp-data-status.ddp-fail {
font-size: 11px;
color: #dc494f;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-enabled {
font-size: 11px;
color: #10bf83;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-preparing {
font-size: 11px;
color: #ffb700;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-disabled {
font-size: 11px;
color: #b7b9c2;
font-weight: bold;
}
.theme-dark .ddp-tag-status {
display: inline-block;
width: 36px;
padding: 3px 0 2px 0;
border-radius: 3px;
background-color: rgba(120, 196, 164, 0.1);
color: #58bb90;
font-size: 12px;
text-align: center;
box-sizing: border-box;
}
.theme-dark .ddp-tag-status.type-error {
color: #fff;
background-color: #dc494f;
}
.theme-dark .ddp-data-status.ddp-running {
font-size: 12px;
color: #10bf83;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-pending {
font-size: 12px;
color: #8c6dd2;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-waiting {
font-size: 12px;
color: #ffba00;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-fail {
font-size: 12px;
color: #dc494f;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-success {
font-size: 12px;
color: #3f72c1;
font-weight: bold;
} | discovery-frontend/src/assets/css/theme_dark/component/component.tag.css | @charset "utf-8";
/**************************************************************
tags add
*************************************************************/
.theme-dark .ddp-wrap-edit3 .ddp-ui-edit-option .ddp-list-tags {
margin-top: 0;
}
.theme-dark .ddp-list-tags {
margin-top: -5px;
}
.theme-dark .ddp-list-tags .ddp-tags {
display: inline-block;
position: relative;
padding: 5px 15px;
background-color: #f2f1f7;
border-radius: 4px;
color: #666fad;
font-size: 13px;
cursor: pointer;
}
.theme-dark .ddp-list-tags .ddp-tags {
margin: 3px 6px 3px 0;
}
.theme-dark .ddp-list-tags .ddp-tags a.ddp-btn-delete {
display: none;
position: absolute;
top: -4px;
right: -4px;
content: '';
width: 14px;
height: 14px;
background: url(../../../images/btn_sclose.png) no-repeat;
background-position: 0 -131px;
}
.theme-dark .ddp-list-tags .ddp-tags:hover a.ddp-btn-delete {
display: block;
}
.theme-dark .ddp-list-tags .ddp-tags.ddp-txt {
cursor: default;
}
.theme-dark .ddp-list-tags .ddp-tags.ddp-txt:hover {
padding: 5px 15px;
}
.theme-dark .ddp-list-tags .ddp-tags.ddp-txt:hover a.ddp-btn-delete {
display: none;
}
.theme-dark .ddp-list-tags .ddp-tag-default {
display: inline-block;
position: relative;
padding: 5px 5px 5px 20px;
margin: 3px 6px 3px 0;
border-radius: 4px;
color: #666fad;
font-size: 13px;
box-sizing: border-box;
}
.theme-dark .ddp-list-tags .ddp-tag-default:before {
display: inline-block;
position: absolute;
top: 5px;
left: 9px;
content: '#';
color: #666fad;
font-size: 13px;
}
.theme-dark .ddp-list-tags .ddp-tag-default input {
display: block;
width: 100%;
border: none;
background: none;
color: #666fad;
font-size: 13px;
}
/**************************************************************
box-tag
**************************************************************/
.theme-dark .ddp-box-tag {
display: inline-block;
float: left;
padding: 1px 3px 1px 3px;
margin-right: 8px;
border-radius: 1px;
font-size: 10px;
font-weight: normal;
vertical-align: top;
box-sizing: border-box;
}
.theme-dark .ddp-box-tag.ddp-workbook {
border: 1px solid #7e8aa5;
color: #565c65;
}
.theme-dark .ddp-box-tag.ddp-notebook {
border: 1px solid #5ecfea;
color: #5ecfea;
}
.theme-dark .ddp-box-tag.ddp-workbench {
border: 1px solid #8c97d3;
color: #8c97d3;
}
.theme-dark .ddp-box-tag.ddp-wargled {
min-width: 54px;
border: 1px solid #ee5398;
color: #ee5398;
text-align: center;
}
.theme-dark .ddp-box-tag.ddp-imported {
min-width: 54px;
border: 1px solid #50549a;
color: #50549a;
text-align: center;
}
.theme-dark .ddp-box-tag.ddp-personal {
width: 52px;
border: 1px solid #cd2287;
color: #cd2287;
text-align: center;
}
.theme-dark .ddp-box-tag.ddp-shared {
width: 52px;
border: 1px solid #3f72c1;
color: #3f72c1;
text-align: center;
}
.theme-dark .ddp-box-tag.ddp-wargled,
.theme-dark .ddp-box-tag-value.ddp-database,
.theme-dark .ddp-box-tag-value.ddp-datasource,
.theme-dark .ddp-box-tag-value.ddp-hive,
.theme-dark .ddp-box-tag-value.ddp-stagingdb,
.theme-dark .ddp-box-tag-value.ddp-dataset {
display: inline-block;
min-width: 63px;
padding: 0 3px;
text-align: center;
font-size: 10px;
box-sizing: Border-box;
}
.theme-dark .ddp-box-tag-value.ddp-datasource {
border: 1px solid #313869;
color: #313869;
}
.theme-dark .ddp-box-tag-value.ddp-hive {
border: 1px solid #f6a300;
color: #f6a300;
}
.theme-dark .ddp-box-tag-value.ddp-stagingdb {
border: 1px solid #8476df;
color: #8476df;
}
.theme-dark .ddp-box-tag-value.ddp-database {
border: 1px solid #5b8fe4;
color: #5b8fe4;
}
.theme-dark .ddp-box-tag-value.ddp-dataset {
border: 1px solid #46a8be;
color: #46a8be;
}
.theme-dark .ddp-box-power {
display: inline-block;
padding: 2px 4px 1px 4px;
width: 60px;
border-radius: 2px;
color: #fff;
font-size: 10px;
text-align: center;
box-sizing: border-box;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
word-wrap: normal;
}
.theme-dark .ddp-box-power.ddp-watcher {
background-color: #293a63;
color: #aab5d3;
}
.theme-dark .ddp-box-power.ddp-editor {
background-color: #b7b9c2;
}
.theme-dark .ddp-box-power.ddp-owner,
.theme-dark .ddp-box-power.ddp-manager {
background-color: #293a63;
color:#aab5d3;
}
/**************************************************************
new
**************************************************************/
.theme-dark .ddp-icon-new {color:#707cc4; font-size:10px !important;}
.theme-dark .ddp-icon-new:before {display:inline-block; content:''; width:5px; height:5px; margin-right:5px; border-radius:50%; background-color:#707cc4;}
/**************************************************************
status
**************************************************************/
.theme-dark .ddp-status-pending {
color: #ffb700;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-status-rejected {
color: #f4434b;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-status-approved {
color: #7e8aa5;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-status-active {
color: #4b525b;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-status-active.ddp-inactive {
color: #7e8aa5;
font-size: 11px;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-waiting {
font-weight: bold;
font-size: 12px;
color: #7e8aa5;
}
.theme-dark .ddp-data-state.ddp-rejected {
font-weight: bold;
font-size: 12px;
color: #eb5f58;
}
.theme-dark .ddp-data-state.ddp-approved {
font-weight: bold;
font-size: 12px;
color: #4c92e0;
}
.theme-dark .ddp-data-state.ddp-inprogress {
position: relative;
font-weight: bold;
font-size: 12px;
color: #7e8aa5;
}
.theme-dark .ddp-data-state.ddp-fail {
font-size: 11px;
color: #eb5f58;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-success {
font-size: 11px;
color: #4c92e0;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-preparing {
font-size: 11px;
color: #4e5368;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-running {
font-size: 11px;
color: #ffba00;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-cancelled {
font-size: 11px;
color: #7e8aa5;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-scheduling {
font-size: 11px;
color: #10bf83;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-creating {
font-size: 11px;
color: #ffba00;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-unscheduled {
font-size: 11px;
color: #b7b9c2;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-warning {
font-size: 11px;
color: #edb817;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-ok {
font-size: 11px;
color: #5188d7;
font-weight: bold;
}
.theme-dark .ddp-data-state.ddp-inprogress .ddp-icon-error2 {
position: relative;
top: 0;
margin-left: 2px;
background-position-x: -28px;
}
.theme-dark .ddp-data-state.ddp-inprogress .ddp-ui-tooltip-info {
display: none;
position: absolute;
top: -5px;
left: 100%;
margin-left: 8px;
}
.theme-dark .ddp-data-state.ddp-inprogress:hover .ddp-ui-tooltip-info {
display: block;
font-weight: normal;
}
.theme-dark .ddp-data-status.ddp-fail {
font-size: 11px;
color: #dc494f;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-enabled {
font-size: 11px;
color: #10bf83;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-preparing {
font-size: 11px;
color: #ffb700;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-disabled {
font-size: 11px;
color: #b7b9c2;
font-weight: bold;
}
.theme-dark .ddp-tag-status {
display: inline-block;
width: 36px;
padding: 3px 0 2px 0;
border-radius: 3px;
background-color: rgba(120, 196, 164, 0.1);
color: #58bb90;
font-size: 12px;
text-align: center;
box-sizing: border-box;
}
.theme-dark .ddp-tag-status.type-error {
color: #fff;
background-color: #dc494f;
}
.theme-dark .ddp-data-status.ddp-running {
font-size: 12px;
color: #10bf83;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-pending {
font-size: 12px;
color: #8c6dd2;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-waiting {
font-size: 12px;
color: #ffba00;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-fail {
font-size: 12px;
color: #dc494f;
font-weight: bold;
}
.theme-dark .ddp-data-status.ddp-success {
font-size: 12px;
color: #3f72c1;
font-weight: bold;
} | 0.326916 | 0.063832 |
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Baloo Regular'), local('Baloo-Regular'),
url(https://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9MWOCm7bLnwIcOM.woff2)
format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8,
U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* vietnamese */
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Baloo Regular'), local('Baloo-Regular'),
url(https://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9MWACm7bLnwIcOM.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Baloo Regular'), local('Baloo-Regular'),
url(https://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9MWBCm7bLnwIcOM.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Baloo Regular'), local('Baloo-Regular'),
url(https://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9MWPCm7bLnwI.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Raleway'), local('Raleway-Regular'),
url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT4ttDfCmxA.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Raleway'), local('Raleway-Regular'),
url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
} | src/index.css | @font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Baloo Regular'), local('Baloo-Regular'),
url(https://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9MWOCm7bLnwIcOM.woff2)
format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8,
U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* vietnamese */
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Baloo Regular'), local('Baloo-Regular'),
url(https://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9MWACm7bLnwIcOM.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Baloo Regular'), local('Baloo-Regular'),
url(https://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9MWBCm7bLnwIcOM.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Baloo Regular'), local('Baloo-Regular'),
url(https://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9MWPCm7bLnwI.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Raleway'), local('Raleway-Regular'),
url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT4ttDfCmxA.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Raleway'), local('Raleway-Regular'),
url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
} | 0.424531 | 0.081703 |
margin-left: 20px;
margin-right: 20px;
}
#home nav{
background-color: transparent !important;
}
h4{
color: --text;
}
#intro{
display: inline-block;
width: 30%;
margin-top: 15%;
margin-left: 10%;
vertical-align: top;
align-content: center !important;
justify-content: space-around;
}
#intro p {
color: var(--primary-color);
font-size: 40px;
font-weight: bold;
overflow-wrap: break-word;
line-height: 50px;
}
#graph{
display: inline-block;
max-width: 60%;
max-height: 60%;
margin-right: -50px !important;
vertical-align: bottom;
}
#home{
background-image: url(../../../assets/dots.svg), url(../../../assets/purple_circle.jpg), url(../../../assets/dots.svg), url(../../../assets/dots.svg);
background-position: -5% 15%, -38% 90% , 90% 75%, 105% 14%;
background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
background-size: 150px, 900px, 180px, 150px;
height: 700px;
}
#services{
margin-top: 5%;
background-image: url(../../../assets/dots.svg);
background-position: 2% 95%;
background-repeat: no-repeat;
background-size: 180px 250px;
height: 400px;
}
.sectionTitle{
color: var(--primary-color);
font-size: 36px;
font-weight: bold;
overflow-wrap: break-word;
line-height: 40px;
}
.row {
display: flex;
flex-wrap: wrap;
}
.row > div[class*='col-'] {
display: flex;
}
.card-img-top{
width: 90px;
height: 90px;
align-self: center;
}
.card {
margin-top: 15%;
background-color: var(--secondary-bg);
color: var(--text);
box-shadow: var(--box-shadow-bottom);
border: none;
justify-content: center;
padding: 20px;
width: fit-content;
}
.card-text{
padding-top: 15px;
color: var(--text);
text-align: center;
}
#aboutUs{
background-image: url(../../../assets/dots.svg);
background-position: 105% 95%;
background-repeat: no-repeat;
background-size: 180px;
height: 550px;
}
.line {
border-left: 4px solid var(--primary-color);
height: fit-content;
text-indent: 10px;
}
#desktop{
float: left;
max-width: 50%;
}
#aboutUsText{
float: right;
max-width: 50%;
padding-right: 5%;
}
p, span {
color: var(--text);
font-size: 20px;
overflow-wrap: break-word;
line-height: 30px;
text-align: left;
font-size: medium;
}
#features{
background-image: url(../../../assets/dots.svg);
background-position: 2% 110%;
background-repeat: no-repeat;
background-size: 180px;
height: 600px;
}
#performance-chart{
padding-top: 5%;
float: right;
max-width: 50%;
}
#FeatureText{
float: left;
max-width: 50%;
padding: 5%;
}
#testimonial{
padding-top: 1%;
background-image: url(../../../assets/dots.svg);
background-position: 105% 95%;
background-repeat: no-repeat;
background-size: 180px;
height: 600px;
}
.testimonialText{
float: left;
width: 40%;
max-height: 50%;
align-content: center;
vertical-align: bottom;
padding-left: 13%;
padding-top: 10%;
justify-content: center;
}
.testimonialText p{
max-width: 70%;
}
#testimonial .card{
min-width: 300px;
}
.card-footer{
display: inline-flex;
justify-content: space-evenly;
}
.card-img-btm{
width: 70px;
height: 70px;
border-radius: 90%;
}
.testimonial-card{
background-image: url(../../../assets/quotes.svg);
background-position: 105% 0%;
background-repeat: no-repeat;
background-size: 90px;
max-width: 90%;
min-height: 70%;
}
.user{
color: var(--primary-color);
font-weight: bold;
font-size: small !important;
line-height: 3;
}
#testimonial p {
font-size: medium;
}
.aboutUser p{
font-size: x-small !important;
line-height: 5px;
}
#updates{
padding-top: 5%;
background-image: url(../../../assets/blueBox.svg);
background-position: center center;
background-repeat: no-repeat;
background-size: 860px 550px;
height: 300px;
color: white !important;
display: flex;
}
#updatesText{
min-width: 30% !important;
display: inline-block;
}
#updatesForm{
min-width: 70% !important;
display: inline-block;
}
#updates p, #updates h1 {
color: white !important;
overflow-wrap: break-word;
max-width: 500px;
}
::-webkit-scrollbar {
width: 1px !important;
}
::-webkit-scrollbar-thumb {
background: var(--scrollbar-color);
border-radius: 10px;
}
input:focus {
border-color: var(--primary-color);
border-radius: 7px;
min-height: 40px;
box-shadow: transparent;
}
input {
border-color: transparent;
border-radius: 7px;
min-height: 40px;
background-color: var(--input-field);
outline: transparent;
} | src/app/body/home/home.component.css |
margin-left: 20px;
margin-right: 20px;
}
#home nav{
background-color: transparent !important;
}
h4{
color: --text;
}
#intro{
display: inline-block;
width: 30%;
margin-top: 15%;
margin-left: 10%;
vertical-align: top;
align-content: center !important;
justify-content: space-around;
}
#intro p {
color: var(--primary-color);
font-size: 40px;
font-weight: bold;
overflow-wrap: break-word;
line-height: 50px;
}
#graph{
display: inline-block;
max-width: 60%;
max-height: 60%;
margin-right: -50px !important;
vertical-align: bottom;
}
#home{
background-image: url(../../../assets/dots.svg), url(../../../assets/purple_circle.jpg), url(../../../assets/dots.svg), url(../../../assets/dots.svg);
background-position: -5% 15%, -38% 90% , 90% 75%, 105% 14%;
background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
background-size: 150px, 900px, 180px, 150px;
height: 700px;
}
#services{
margin-top: 5%;
background-image: url(../../../assets/dots.svg);
background-position: 2% 95%;
background-repeat: no-repeat;
background-size: 180px 250px;
height: 400px;
}
.sectionTitle{
color: var(--primary-color);
font-size: 36px;
font-weight: bold;
overflow-wrap: break-word;
line-height: 40px;
}
.row {
display: flex;
flex-wrap: wrap;
}
.row > div[class*='col-'] {
display: flex;
}
.card-img-top{
width: 90px;
height: 90px;
align-self: center;
}
.card {
margin-top: 15%;
background-color: var(--secondary-bg);
color: var(--text);
box-shadow: var(--box-shadow-bottom);
border: none;
justify-content: center;
padding: 20px;
width: fit-content;
}
.card-text{
padding-top: 15px;
color: var(--text);
text-align: center;
}
#aboutUs{
background-image: url(../../../assets/dots.svg);
background-position: 105% 95%;
background-repeat: no-repeat;
background-size: 180px;
height: 550px;
}
.line {
border-left: 4px solid var(--primary-color);
height: fit-content;
text-indent: 10px;
}
#desktop{
float: left;
max-width: 50%;
}
#aboutUsText{
float: right;
max-width: 50%;
padding-right: 5%;
}
p, span {
color: var(--text);
font-size: 20px;
overflow-wrap: break-word;
line-height: 30px;
text-align: left;
font-size: medium;
}
#features{
background-image: url(../../../assets/dots.svg);
background-position: 2% 110%;
background-repeat: no-repeat;
background-size: 180px;
height: 600px;
}
#performance-chart{
padding-top: 5%;
float: right;
max-width: 50%;
}
#FeatureText{
float: left;
max-width: 50%;
padding: 5%;
}
#testimonial{
padding-top: 1%;
background-image: url(../../../assets/dots.svg);
background-position: 105% 95%;
background-repeat: no-repeat;
background-size: 180px;
height: 600px;
}
.testimonialText{
float: left;
width: 40%;
max-height: 50%;
align-content: center;
vertical-align: bottom;
padding-left: 13%;
padding-top: 10%;
justify-content: center;
}
.testimonialText p{
max-width: 70%;
}
#testimonial .card{
min-width: 300px;
}
.card-footer{
display: inline-flex;
justify-content: space-evenly;
}
.card-img-btm{
width: 70px;
height: 70px;
border-radius: 90%;
}
.testimonial-card{
background-image: url(../../../assets/quotes.svg);
background-position: 105% 0%;
background-repeat: no-repeat;
background-size: 90px;
max-width: 90%;
min-height: 70%;
}
.user{
color: var(--primary-color);
font-weight: bold;
font-size: small !important;
line-height: 3;
}
#testimonial p {
font-size: medium;
}
.aboutUser p{
font-size: x-small !important;
line-height: 5px;
}
#updates{
padding-top: 5%;
background-image: url(../../../assets/blueBox.svg);
background-position: center center;
background-repeat: no-repeat;
background-size: 860px 550px;
height: 300px;
color: white !important;
display: flex;
}
#updatesText{
min-width: 30% !important;
display: inline-block;
}
#updatesForm{
min-width: 70% !important;
display: inline-block;
}
#updates p, #updates h1 {
color: white !important;
overflow-wrap: break-word;
max-width: 500px;
}
::-webkit-scrollbar {
width: 1px !important;
}
::-webkit-scrollbar-thumb {
background: var(--scrollbar-color);
border-radius: 10px;
}
input:focus {
border-color: var(--primary-color);
border-radius: 7px;
min-height: 40px;
box-shadow: transparent;
}
input {
border-color: transparent;
border-radius: 7px;
min-height: 40px;
background-color: var(--input-field);
outline: transparent;
} | 0.278846 | 0.074064 |
.slidePanel {
position: fixed;
z-index: 1310;
max-width: 100%;
max-height: 100%;
visibility: hidden;
background: #fff;
-webkit-box-shadow: -10px 0 20px 0 rgba(66, 66, 66, .2);
box-shadow: -10px 0 20px 0 rgba(66, 66, 66, .2);
}
.slidePanel-right, .slidePanel-left {
width: 700px;
height: 100%;
height: -webkit-calc(100% - 66px);
height: calc(100% - 66px);
margin-top: 66px;
}
@media (max-width: 1199px) {
.slidePanel-right, .slidePanel-left {
width: -webkit-calc(100% - 230px);
width: calc(100% - 230px);
}
}
@media (max-width: 767px) {
.slidePanel-right, .slidePanel-left {
width: 100%;
}
}
.slidePanel-top, .slidePanel-bottom {
width: 100%;
height: 500px;
}
@media (max-width: 1199px) {
.slidePanel-top, .slidePanel-bottom {
height: 100%;
}
}
.slidePanel-left {
top: 0;
left: 0;
}
.slidePanel-right {
top: 0;
right: 0;
}
.slidePanel-top {
top: 0;
left: 0;
}
.slidePanel-bottom {
bottom: 0;
left: 0;
}
.slidePanel-html {
height: 100%;
overflow: hidden;
}
.slidePanel-html body {
height: 100%;
}
.slidePanel .scrollable-container {
height: 100%;
}
.slidePanel-show {
visibility: visible;
}
.slidePanel-handler {
position: absolute;
top: 0;
left: 0;
width: 30px;
height: 100%;
cursor: e-resize;
background-color: transparent;
}
.slidePanel-loading {
position: absolute;
top: 0;
width: 100%;
height: 100%;
font-size: 0;
text-align: center;
visibility: hidden;
}
.slidePanel-loading:before {
display: inline-block;
height: 100%;
vertical-align: middle;
content: "";
}
.slidePanel-loading .loader {
vertical-align: middle;
}
.slidePanel-loading-show {
visibility: visible;
}
.slidePanel-scrollable {
height: 100%;
}
.slidePanel-header {
position: relative;
padding: 40px 30px;
padding-right: 120px;
color: #fff;
}
.slidePanel-header h1 {
margin: 0;
font-size: 22px;
line-height: 33px;
color: #fff;
}
.slidePanel-actions {
float: right;
min-height: 67px;
margin: 0;
margin-left: 15px;
text-align: right;
list-style: none;
}
.slidePanel-actions .btn {
line-height: 33px;
}
.slidePanel-action {
border: 1px solid transparent;
border-radius: 3px;
-webkit-transition: border .25s linear;
-o-transition: border .25s linear;
transition: border .25s linear;
}
.slidePanel-action:last-child {
margin-right: 0;
}
.slidePanel-action.dropdown.open {
border-color: #fff;
}
.slidePanel-action .icon {
cursor: pointer;
}
.slidePanel-action .icon:hover {
color: #ecf0f3;
}
.slidePanel-action .dropdown-menu {
right: 0;
left: auto;
margin-top: 10px;
}
.slidePanel-action .dropdown-menu .icon {
margin-right: 10px;
}
.slidePanel-inner {
padding: 0 30px;
}
.slidePanel-inner-section {
padding-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid #e4eaec;
}
.slidePanel-comment {
position: relative;
margin-top: 50px;
margin-bottom: 50px;
}
.slidePanel-comment textarea {
margin-bottom: 5px;
}
.slidePanel-comment .reply {
position: absolute;
top: 10px;
left: 10px;
} | public/css/css_old/slidePanel.css | .slidePanel {
position: fixed;
z-index: 1310;
max-width: 100%;
max-height: 100%;
visibility: hidden;
background: #fff;
-webkit-box-shadow: -10px 0 20px 0 rgba(66, 66, 66, .2);
box-shadow: -10px 0 20px 0 rgba(66, 66, 66, .2);
}
.slidePanel-right, .slidePanel-left {
width: 700px;
height: 100%;
height: -webkit-calc(100% - 66px);
height: calc(100% - 66px);
margin-top: 66px;
}
@media (max-width: 1199px) {
.slidePanel-right, .slidePanel-left {
width: -webkit-calc(100% - 230px);
width: calc(100% - 230px);
}
}
@media (max-width: 767px) {
.slidePanel-right, .slidePanel-left {
width: 100%;
}
}
.slidePanel-top, .slidePanel-bottom {
width: 100%;
height: 500px;
}
@media (max-width: 1199px) {
.slidePanel-top, .slidePanel-bottom {
height: 100%;
}
}
.slidePanel-left {
top: 0;
left: 0;
}
.slidePanel-right {
top: 0;
right: 0;
}
.slidePanel-top {
top: 0;
left: 0;
}
.slidePanel-bottom {
bottom: 0;
left: 0;
}
.slidePanel-html {
height: 100%;
overflow: hidden;
}
.slidePanel-html body {
height: 100%;
}
.slidePanel .scrollable-container {
height: 100%;
}
.slidePanel-show {
visibility: visible;
}
.slidePanel-handler {
position: absolute;
top: 0;
left: 0;
width: 30px;
height: 100%;
cursor: e-resize;
background-color: transparent;
}
.slidePanel-loading {
position: absolute;
top: 0;
width: 100%;
height: 100%;
font-size: 0;
text-align: center;
visibility: hidden;
}
.slidePanel-loading:before {
display: inline-block;
height: 100%;
vertical-align: middle;
content: "";
}
.slidePanel-loading .loader {
vertical-align: middle;
}
.slidePanel-loading-show {
visibility: visible;
}
.slidePanel-scrollable {
height: 100%;
}
.slidePanel-header {
position: relative;
padding: 40px 30px;
padding-right: 120px;
color: #fff;
}
.slidePanel-header h1 {
margin: 0;
font-size: 22px;
line-height: 33px;
color: #fff;
}
.slidePanel-actions {
float: right;
min-height: 67px;
margin: 0;
margin-left: 15px;
text-align: right;
list-style: none;
}
.slidePanel-actions .btn {
line-height: 33px;
}
.slidePanel-action {
border: 1px solid transparent;
border-radius: 3px;
-webkit-transition: border .25s linear;
-o-transition: border .25s linear;
transition: border .25s linear;
}
.slidePanel-action:last-child {
margin-right: 0;
}
.slidePanel-action.dropdown.open {
border-color: #fff;
}
.slidePanel-action .icon {
cursor: pointer;
}
.slidePanel-action .icon:hover {
color: #ecf0f3;
}
.slidePanel-action .dropdown-menu {
right: 0;
left: auto;
margin-top: 10px;
}
.slidePanel-action .dropdown-menu .icon {
margin-right: 10px;
}
.slidePanel-inner {
padding: 0 30px;
}
.slidePanel-inner-section {
padding-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid #e4eaec;
}
.slidePanel-comment {
position: relative;
margin-top: 50px;
margin-bottom: 50px;
}
.slidePanel-comment textarea {
margin-bottom: 5px;
}
.slidePanel-comment .reply {
position: absolute;
top: 10px;
left: 10px;
} | 0.365004 | 0.058373 |
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
background-color: #f1faee;
font-family: "Roboto", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-family: "Roboto", sans-serif;
}
.my05 {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.my1 {
margin-top: 1em;
margin-bottom: 1em;
}
.card {
min-width: 200px;
min-height: 220px;
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
-webkit-transition: 0.3s;
transition: 0.3s;
background-color: white;
border-radius: 9px;
overflow: hidden;
}
.card img {
max-height: 200px;
max-width: 200px;
background-position: 50% 50%;
border-radius: 100%;
padding: 10px;
}
.card.Cardcontainer {
margin: 2em;
padding: 2px 16px;
background-color: #f1faee;
}
.card.card:hover {
-webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.container {
max-width: 1920px;
margin: 0 auto;
}
.container-fluid {
margin: 0;
max-width: 100%;
}
.container .row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
}
.hidden {
display: none;
}
.btn {
background-color: #e63946;
cursor: pointer;
border-radius: 28px;
margin: 1em;
padding: 0.5em;
color: #f1faee;
font-size: 1em;
border: none;
}
form .btn {
margin-left: 20%;
}
.item-center {
display: -ms-grid;
display: grid;
place-items: center;
}
.space-between {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.justify-content-center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.align-content-center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-line-pack: center;
align-content: center;
}
.nav {
background-color: #457b9d;
}
.navLogo {
margin: 0.5em;
color: #f1faee;
}
.modal {
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: black;
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover, .close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
form {
width: 100%;
}
form div {
margin: 1em 0;
}
label {
width: 20%;
display: inline-block;
}
input {
display: inline-block;
vertical-align: top;
width: 60%;
}
textarea {
width: 60%;
display: inline-block;
padding: 1em;
border: 2px solid rgba(56, 51, 51, 0.171);
border-radius: 9px;
}
.image-center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.navArrow {
color: #457b9d;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: auto;
margin: 16px;
font-size: 10em;
text-decoration: none;
}
.navArrow:hover, .navArrow:focus {
text-decoration: none;
opacity: 0.7;
}
@media screen and (max-width: 768px) {
.col-sm-1 {
-ms-flex-preferred-size: 8.33333%;
flex-basis: 8.33333%;
}
.col-sm-2 {
-ms-flex-preferred-size: 16.66667%;
flex-basis: 16.66667%;
}
.col-sm-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
}
.col-sm-4 {
-ms-flex-preferred-size: 33.33333%;
flex-basis: 33.33333%;
}
.col-sm-5 {
-ms-flex-preferred-size: 41.66667%;
flex-basis: 41.66667%;
}
.col-sm-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
}
.col-sm-7 {
-ms-flex-preferred-size: 58.33333%;
flex-basis: 58.33333%;
}
.col-sm-8 {
-ms-flex-preferred-size: 66.66667%;
flex-basis: 66.66667%;
}
.col-sm-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
}
.col-sm-10 {
-ms-flex-preferred-size: 83.33333%;
flex-basis: 83.33333%;
}
.col-sm-11 {
-ms-flex-preferred-size: 91.66667%;
flex-basis: 91.66667%;
}
.col-sm-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
}
}
@media screen and (min-width: 768px) {
.col-md-1 {
-ms-flex-preferred-size: 8.33333%;
flex-basis: 8.33333%;
}
.col-md-2 {
-ms-flex-preferred-size: 16.66667%;
flex-basis: 16.66667%;
}
.col-md-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
}
.col-md-4 {
-ms-flex-preferred-size: 33.33333%;
flex-basis: 33.33333%;
}
.col-md-5 {
-ms-flex-preferred-size: 41.66667%;
flex-basis: 41.66667%;
}
.col-md-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
}
.col-md-7 {
-ms-flex-preferred-size: 58.33333%;
flex-basis: 58.33333%;
}
.col-md-8 {
-ms-flex-preferred-size: 66.66667%;
flex-basis: 66.66667%;
}
.col-md-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
}
.col-md-10 {
-ms-flex-preferred-size: 83.33333%;
flex-basis: 83.33333%;
}
.col-md-11 {
-ms-flex-preferred-size: 91.66667%;
flex-basis: 91.66667%;
}
.col-md-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
}
}
@media screen and (min-width: 1920px) {
.col-lg-1 {
-ms-flex-preferred-size: 8.33333%;
flex-basis: 8.33333%;
}
.col-lg-2 {
-ms-flex-preferred-size: 16.66667%;
flex-basis: 16.66667%;
}
.col-lg-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
}
.col-lg-4 {
-ms-flex-preferred-size: 33.33333%;
flex-basis: 33.33333%;
}
.col-lg-5 {
-ms-flex-preferred-size: 41.66667%;
flex-basis: 41.66667%;
}
.col-lg-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
}
.col-lg-7 {
-ms-flex-preferred-size: 58.33333%;
flex-basis: 58.33333%;
}
.col-lg-8 {
-ms-flex-preferred-size: 66.66667%;
flex-basis: 66.66667%;
}
.col-lg-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
}
.col-lg-10 {
-ms-flex-preferred-size: 83.33333%;
flex-basis: 83.33333%;
}
.col-lg-11 {
-ms-flex-preferred-size: 91.66667%;
flex-basis: 91.66667%;
}
.col-lg-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
}
}
/*# sourceMappingURL=style.css.map */ | public/style.css | * {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
background-color: #f1faee;
font-family: "Roboto", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-family: "Roboto", sans-serif;
}
.my05 {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.my1 {
margin-top: 1em;
margin-bottom: 1em;
}
.card {
min-width: 200px;
min-height: 220px;
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
-webkit-transition: 0.3s;
transition: 0.3s;
background-color: white;
border-radius: 9px;
overflow: hidden;
}
.card img {
max-height: 200px;
max-width: 200px;
background-position: 50% 50%;
border-radius: 100%;
padding: 10px;
}
.card.Cardcontainer {
margin: 2em;
padding: 2px 16px;
background-color: #f1faee;
}
.card.card:hover {
-webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.container {
max-width: 1920px;
margin: 0 auto;
}
.container-fluid {
margin: 0;
max-width: 100%;
}
.container .row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
}
.hidden {
display: none;
}
.btn {
background-color: #e63946;
cursor: pointer;
border-radius: 28px;
margin: 1em;
padding: 0.5em;
color: #f1faee;
font-size: 1em;
border: none;
}
form .btn {
margin-left: 20%;
}
.item-center {
display: -ms-grid;
display: grid;
place-items: center;
}
.space-between {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.justify-content-center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.align-content-center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-line-pack: center;
align-content: center;
}
.nav {
background-color: #457b9d;
}
.navLogo {
margin: 0.5em;
color: #f1faee;
}
.modal {
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: black;
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover, .close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
form {
width: 100%;
}
form div {
margin: 1em 0;
}
label {
width: 20%;
display: inline-block;
}
input {
display: inline-block;
vertical-align: top;
width: 60%;
}
textarea {
width: 60%;
display: inline-block;
padding: 1em;
border: 2px solid rgba(56, 51, 51, 0.171);
border-radius: 9px;
}
.image-center {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.navArrow {
color: #457b9d;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: auto;
margin: 16px;
font-size: 10em;
text-decoration: none;
}
.navArrow:hover, .navArrow:focus {
text-decoration: none;
opacity: 0.7;
}
@media screen and (max-width: 768px) {
.col-sm-1 {
-ms-flex-preferred-size: 8.33333%;
flex-basis: 8.33333%;
}
.col-sm-2 {
-ms-flex-preferred-size: 16.66667%;
flex-basis: 16.66667%;
}
.col-sm-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
}
.col-sm-4 {
-ms-flex-preferred-size: 33.33333%;
flex-basis: 33.33333%;
}
.col-sm-5 {
-ms-flex-preferred-size: 41.66667%;
flex-basis: 41.66667%;
}
.col-sm-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
}
.col-sm-7 {
-ms-flex-preferred-size: 58.33333%;
flex-basis: 58.33333%;
}
.col-sm-8 {
-ms-flex-preferred-size: 66.66667%;
flex-basis: 66.66667%;
}
.col-sm-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
}
.col-sm-10 {
-ms-flex-preferred-size: 83.33333%;
flex-basis: 83.33333%;
}
.col-sm-11 {
-ms-flex-preferred-size: 91.66667%;
flex-basis: 91.66667%;
}
.col-sm-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
}
}
@media screen and (min-width: 768px) {
.col-md-1 {
-ms-flex-preferred-size: 8.33333%;
flex-basis: 8.33333%;
}
.col-md-2 {
-ms-flex-preferred-size: 16.66667%;
flex-basis: 16.66667%;
}
.col-md-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
}
.col-md-4 {
-ms-flex-preferred-size: 33.33333%;
flex-basis: 33.33333%;
}
.col-md-5 {
-ms-flex-preferred-size: 41.66667%;
flex-basis: 41.66667%;
}
.col-md-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
}
.col-md-7 {
-ms-flex-preferred-size: 58.33333%;
flex-basis: 58.33333%;
}
.col-md-8 {
-ms-flex-preferred-size: 66.66667%;
flex-basis: 66.66667%;
}
.col-md-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
}
.col-md-10 {
-ms-flex-preferred-size: 83.33333%;
flex-basis: 83.33333%;
}
.col-md-11 {
-ms-flex-preferred-size: 91.66667%;
flex-basis: 91.66667%;
}
.col-md-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
}
}
@media screen and (min-width: 1920px) {
.col-lg-1 {
-ms-flex-preferred-size: 8.33333%;
flex-basis: 8.33333%;
}
.col-lg-2 {
-ms-flex-preferred-size: 16.66667%;
flex-basis: 16.66667%;
}
.col-lg-3 {
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
}
.col-lg-4 {
-ms-flex-preferred-size: 33.33333%;
flex-basis: 33.33333%;
}
.col-lg-5 {
-ms-flex-preferred-size: 41.66667%;
flex-basis: 41.66667%;
}
.col-lg-6 {
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
}
.col-lg-7 {
-ms-flex-preferred-size: 58.33333%;
flex-basis: 58.33333%;
}
.col-lg-8 {
-ms-flex-preferred-size: 66.66667%;
flex-basis: 66.66667%;
}
.col-lg-9 {
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
}
.col-lg-10 {
-ms-flex-preferred-size: 83.33333%;
flex-basis: 83.33333%;
}
.col-lg-11 {
-ms-flex-preferred-size: 91.66667%;
flex-basis: 91.66667%;
}
.col-lg-12 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
}
}
/*# sourceMappingURL=style.css.map */ | 0.334372 | 0.065635 |
.customize-control-title {
color: rgb(0, 142, 214);
}
.shop_isle_repeater_container,
.shop_isle_general_control_repeater_container {
float: left;
width: 100%;
padding: 5px 0;
cursor: move;
}
.shop_isle_repeater_container .shop-isle-customize-control-label,
.shop_isle_general_control_repeater_container .shop-isle-customize-control-label {
padding: 5px;
padding-top: 0;
border: 1px solid #dfdfdf;
border-top: 0;
}
button.shop_isle_remove_field {
display: inline-block;
float: right;
width: 25% !important;
height: 57px !important;
line-height: 17px !important;
white-space: initial !important;
}
button.shop_isle_general_control_remove_field {
width: 100%;
margin-top: 10px!important;
}
button.shop_isle_general_control_remove_field:hover {
border: 0;
color: #fff!important;
background-color: #00a0d2!important;
}
.shop_isle_repeater_container .shop_isle_icon_link,
.shop_isle_general_control_repeater_container .shop_isle_text_control,
.shop_isle_general_control_repeater_container .shop_isle_link_control {
width: 100% !important;
margin: 3px 0 0 !important;
}
.shop_isle_repeater_container .shop_isle_icons,
.shop_isle_general_control_repeater_container .shop_isle_icon_control {
width: 100%;
margin: 0;
padding: 0;
}
#shop_isle_new_field,
#shop_isle_general_control_new_field {
width: 100%;
}
.customize-control-widget_form .widget-control-save {
display: block !important;
}
.shop_isle_our_services_image_control {
display: none;
}
.shop_isle_our_services_icon_control {
display: none;
}
.shop_isle_general_control_repeater_container .shop-isle-customize-control-label {
display: none;
}
.shop-isle-customize-control-title {
overflow: hidden;
height: 40px;
padding: 0 10px !important;
border: 1px solid #dfdfdf;
border-radius: 3px;
color: #00a0d2;
background-color: #f1f1f1;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
background-image: -webkit-linear-gradient(to bottom, #f9f9f9, #ececec);
background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
background-image: linear-gradient(to bottom, #f9f9f9, #ececec);
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
font-weight: bold;
line-height: 40px !important;
text-align: center;
cursor: move !important;
}
.shop_isle_image_control .custom_media_button_shop_isle {
margin-top: 5px;
}
#customize-control-shop_isle_contact_form_shortcode {
display: none;
}
.shop-isle-upgrade-to-pro-button {
padding: 3px 6px !important;
color: #fff !important;
background-color: #ea6f60;
font-size: 9px !important;
line-height: 1.5 !important;
letter-spacing: 1px;
text-transform: uppercase;
}
/***********************************/
/***** Sections order control ******/
/***********************************/
.shop_isle_pro_order_ul li {
display: block;
width: 95%;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #dfdfdf;
border-radius: 3px;
color: #008ed6;
background-color: #fff;
font-weight: bold;
cursor: move;
}
.shop_isle_pro_shake.ui-sortable-helper {
background-color: rgba(255, 255, 255, 0.8)!important;
}
@-webkit-keyframes spaceboots {
0% {
-webkit-transform: translate(0px, 0px) rotate(0deg);
}
0% {
-webkit-transform: translate(2px, 1px) rotate(0deg);
}
10% {
-webkit-transform: translate(-1px, -2px) rotate(-1deg);
}
20% {
-webkit-transform: translate(-3px, 0px) rotate(1deg);
}
30% {
-webkit-transform: translate(0px, 2px) rotate(0deg);
}
40% {
-webkit-transform: translate(1px, -1px) rotate(1deg);
}
50% {
-webkit-transform: translate(-1px, 2px) rotate(-1deg);
}
60% {
-webkit-transform: translate(-3px, 1px) rotate(0deg);
}
70% {
-webkit-transform: translate(2px, 1px) rotate(-1deg);
}
80% {
-webkit-transform: translate(-1px, -1px) rotate(1deg);
}
90% {
-webkit-transform: translate(2px, 2px) rotate(0deg);
}
100% {
-webkit-transform: translate(1px, -2px) rotate(-1deg);
}
}
.shop_isle_pro_shake {
-webkit-transform-origin: 50% 50%;
-webkit-animation-name: spaceboots;
-webkit-animation-duration: 1.5s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
}
.shop_isle_pro_shake:nth-child(even) {
-webkit-animation-delay: 0.2s;
/* Chrome, Safari, Opera */
animation-delay: 0.2s;
}
.ui-sortable-placeholder {
visibility: visible!important;
border: 2px dashed #0590d6!important;
}
.shop_isle_pro_default {
width: 100%;
border: 1px solid #dfdfdf;
border-radius: 3px;
color: #fff;
background-color: #008ed6;
-webkit-transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
.shop_isle_pro_default:hover {
width: 100%;
border: 1px solid #008ed6;
color: #008ed6;
background-color: #fff;
}
.shop_isle_pro_go_to_section {
float: right;
border: 1px solid #008ed6;
border-radius: 4px;
color: #008ed6;
background-color: #fff;
cursor: pointer;
-webkit-transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
.shop_isle_pro_go_to_section:hover {
color: #fff;
background-color: #008ed6;
}
/* END Section Order Control*/
/***********************************/
/***** Palette picker control ******/
/***********************************/
#customize-control-metro_customizr_contact_form_shortcode {
display: none;
}
.metro_customizr_radio_control {
margin-top: 0;
}
.metro_customizr_general_control_repeater_container .metrox-box-content-hidden {
padding-top: 5px;
}
.shop_isle_pro_palette_picker li span {
display: inline-block;
width: 43px;
height: 40px;
}
.shop_isle_pro_palette_input {
float: left;
width: 209px;
height: 40px;
padding: 5px;
border: 1px solid #cfcfcf;
background-color: #fff;
font-size: 16px;
line-height: 40px;
cursor: pointer;
}
.shop_isle_pro_palette_input span {
display: block;
float: left;
width: 40px;
height: 40px;
}
.shop_isle_pro_dropdown {
float: left;
width: 20px;
height: 50px;
border: 1px solid #cfcfcf;
border-left: 0;
color: #fff;
background-color: #00a5f9;
font-size: 20px;
font-size: 12px;
line-height: 50px;
text-align: center;
cursor: pointer;
}
.shop_isle_pro_dropdown span {
line-height: 50px;
}
.shop_isle_pro_palette_picker {
display: none;
clear: both;
width: 240px;
padding-top: 6px;
border: 1px solid #cfcfcf;
border-top: 0;
background-color: #fff;
text-align: center;
}
.shop_isle_pro_palette_picker li span {
cursor: pointer;
}
.shop_isle_pro_pallete_default {
line-height: 40px;
cursor: pointer;
}
.shop-isle-require-woo {
padding: 10px;
background-color: #f0ad4e;
}
.shopisle-theme-info {
text-align: center;
}
.shopisle-theme-info a {
text-decoration: none;
}
.shopisle-theme-info hr {
margin: 10px auto;
} | web/app/themes/shop-isle/assets/css/admin-style.css | .customize-control-title {
color: rgb(0, 142, 214);
}
.shop_isle_repeater_container,
.shop_isle_general_control_repeater_container {
float: left;
width: 100%;
padding: 5px 0;
cursor: move;
}
.shop_isle_repeater_container .shop-isle-customize-control-label,
.shop_isle_general_control_repeater_container .shop-isle-customize-control-label {
padding: 5px;
padding-top: 0;
border: 1px solid #dfdfdf;
border-top: 0;
}
button.shop_isle_remove_field {
display: inline-block;
float: right;
width: 25% !important;
height: 57px !important;
line-height: 17px !important;
white-space: initial !important;
}
button.shop_isle_general_control_remove_field {
width: 100%;
margin-top: 10px!important;
}
button.shop_isle_general_control_remove_field:hover {
border: 0;
color: #fff!important;
background-color: #00a0d2!important;
}
.shop_isle_repeater_container .shop_isle_icon_link,
.shop_isle_general_control_repeater_container .shop_isle_text_control,
.shop_isle_general_control_repeater_container .shop_isle_link_control {
width: 100% !important;
margin: 3px 0 0 !important;
}
.shop_isle_repeater_container .shop_isle_icons,
.shop_isle_general_control_repeater_container .shop_isle_icon_control {
width: 100%;
margin: 0;
padding: 0;
}
#shop_isle_new_field,
#shop_isle_general_control_new_field {
width: 100%;
}
.customize-control-widget_form .widget-control-save {
display: block !important;
}
.shop_isle_our_services_image_control {
display: none;
}
.shop_isle_our_services_icon_control {
display: none;
}
.shop_isle_general_control_repeater_container .shop-isle-customize-control-label {
display: none;
}
.shop-isle-customize-control-title {
overflow: hidden;
height: 40px;
padding: 0 10px !important;
border: 1px solid #dfdfdf;
border-radius: 3px;
color: #00a0d2;
background-color: #f1f1f1;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec));
background-image: -webkit-linear-gradient(to bottom, #f9f9f9, #ececec);
background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec);
background-image: linear-gradient(to bottom, #f9f9f9, #ececec);
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
font-weight: bold;
line-height: 40px !important;
text-align: center;
cursor: move !important;
}
.shop_isle_image_control .custom_media_button_shop_isle {
margin-top: 5px;
}
#customize-control-shop_isle_contact_form_shortcode {
display: none;
}
.shop-isle-upgrade-to-pro-button {
padding: 3px 6px !important;
color: #fff !important;
background-color: #ea6f60;
font-size: 9px !important;
line-height: 1.5 !important;
letter-spacing: 1px;
text-transform: uppercase;
}
/***********************************/
/***** Sections order control ******/
/***********************************/
.shop_isle_pro_order_ul li {
display: block;
width: 95%;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #dfdfdf;
border-radius: 3px;
color: #008ed6;
background-color: #fff;
font-weight: bold;
cursor: move;
}
.shop_isle_pro_shake.ui-sortable-helper {
background-color: rgba(255, 255, 255, 0.8)!important;
}
@-webkit-keyframes spaceboots {
0% {
-webkit-transform: translate(0px, 0px) rotate(0deg);
}
0% {
-webkit-transform: translate(2px, 1px) rotate(0deg);
}
10% {
-webkit-transform: translate(-1px, -2px) rotate(-1deg);
}
20% {
-webkit-transform: translate(-3px, 0px) rotate(1deg);
}
30% {
-webkit-transform: translate(0px, 2px) rotate(0deg);
}
40% {
-webkit-transform: translate(1px, -1px) rotate(1deg);
}
50% {
-webkit-transform: translate(-1px, 2px) rotate(-1deg);
}
60% {
-webkit-transform: translate(-3px, 1px) rotate(0deg);
}
70% {
-webkit-transform: translate(2px, 1px) rotate(-1deg);
}
80% {
-webkit-transform: translate(-1px, -1px) rotate(1deg);
}
90% {
-webkit-transform: translate(2px, 2px) rotate(0deg);
}
100% {
-webkit-transform: translate(1px, -2px) rotate(-1deg);
}
}
.shop_isle_pro_shake {
-webkit-transform-origin: 50% 50%;
-webkit-animation-name: spaceboots;
-webkit-animation-duration: 1.5s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
}
.shop_isle_pro_shake:nth-child(even) {
-webkit-animation-delay: 0.2s;
/* Chrome, Safari, Opera */
animation-delay: 0.2s;
}
.ui-sortable-placeholder {
visibility: visible!important;
border: 2px dashed #0590d6!important;
}
.shop_isle_pro_default {
width: 100%;
border: 1px solid #dfdfdf;
border-radius: 3px;
color: #fff;
background-color: #008ed6;
-webkit-transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
.shop_isle_pro_default:hover {
width: 100%;
border: 1px solid #008ed6;
color: #008ed6;
background-color: #fff;
}
.shop_isle_pro_go_to_section {
float: right;
border: 1px solid #008ed6;
border-radius: 4px;
color: #008ed6;
background-color: #fff;
cursor: pointer;
-webkit-transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
.shop_isle_pro_go_to_section:hover {
color: #fff;
background-color: #008ed6;
}
/* END Section Order Control*/
/***********************************/
/***** Palette picker control ******/
/***********************************/
#customize-control-metro_customizr_contact_form_shortcode {
display: none;
}
.metro_customizr_radio_control {
margin-top: 0;
}
.metro_customizr_general_control_repeater_container .metrox-box-content-hidden {
padding-top: 5px;
}
.shop_isle_pro_palette_picker li span {
display: inline-block;
width: 43px;
height: 40px;
}
.shop_isle_pro_palette_input {
float: left;
width: 209px;
height: 40px;
padding: 5px;
border: 1px solid #cfcfcf;
background-color: #fff;
font-size: 16px;
line-height: 40px;
cursor: pointer;
}
.shop_isle_pro_palette_input span {
display: block;
float: left;
width: 40px;
height: 40px;
}
.shop_isle_pro_dropdown {
float: left;
width: 20px;
height: 50px;
border: 1px solid #cfcfcf;
border-left: 0;
color: #fff;
background-color: #00a5f9;
font-size: 20px;
font-size: 12px;
line-height: 50px;
text-align: center;
cursor: pointer;
}
.shop_isle_pro_dropdown span {
line-height: 50px;
}
.shop_isle_pro_palette_picker {
display: none;
clear: both;
width: 240px;
padding-top: 6px;
border: 1px solid #cfcfcf;
border-top: 0;
background-color: #fff;
text-align: center;
}
.shop_isle_pro_palette_picker li span {
cursor: pointer;
}
.shop_isle_pro_pallete_default {
line-height: 40px;
cursor: pointer;
}
.shop-isle-require-woo {
padding: 10px;
background-color: #f0ad4e;
}
.shopisle-theme-info {
text-align: center;
}
.shopisle-theme-info a {
text-decoration: none;
}
.shopisle-theme-info hr {
margin: 10px auto;
} | 0.227384 | 0.074265 |
/* Navigation
----------------------------------------------------------------------------------------------------*/
.wk-slideset-lava .nav {
margin-top: 40px;
text-align: center;
}
.wk-slideset-lava .nav li {
display: inline-block;
padding: 4px;
background: rgba(0,0,0,0.1);
border-radius: 50%;
-webkit-transition: all linear 0.06s;
transition: all linear 0.06s;
}
.wk-slideset-lava .nav.icon span {
width: 12px;
height: 12px;
border: 2px solid #fff;
border-radius: 50%;
-webkit-transition: all linear 0.06s;
transition: all linear 0.06s;
}
.wk-slideset-lava .nav.icon li:hover {
background: rgba(0,0,0,0.2);
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
.wk-slideset-lava .nav.icon li:hover span { background: #fff; }
.wk-slideset-lava .nav.icon span:active,
.wk-slideset-lava .nav.icon .active span { background: #fff; }
.wk-slideset-lava .nav.icon li { margin-left: 8px; }
.wk-slideset-lava .nav.text li { margin-left: 40px; }
.wk-slideset-lava .nav li:first-child { margin-left: 0; }
.wk-slideset-lava .nav.text span { padding: 0 11px; }
.wk-slideset-lava .nav.text .active span {
padding: 0 10px;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 4px;
background: rgba(0,0,0,0.05);
}
/* Buttons
----------------------------------------------------------------------------------------------------*/
.wk-slideset-lava > div { position: relative; }
.wk-slideset-lava:hover > div .next,
.wk-slideset-lava:hover > div .prev {
top: 50%;
width: 64px;
height: 64px;
margin-top: -32px;
background: #eef3f5;
background-image: url(images/buttons.svg);
background-repeat: no-repeat;
background-position: 0 0;
border-radius: 50%;
box-shadow: 0 0 0 5px rgba(110,115,120,0);
}
.wk-slideset-lava:hover > div .next {
right: 10px;
background-position: 0 -90px;
}
.wk-slideset-lava:hover > div .prev { left: 10px; }
.wk-slideset-lava > div .next:hover,
.wk-slideset-lava > div .prev:hover {
background-color: #fff;
box-shadow: 0 0 0 5px rgba(110,115,120,0.05);
-webkit-transform: scale(1.2);
transform: scale(1.2);
transition: all ease-in-out 0.22s;
}
.wk-slideset-lava > div .next:active,
.wk-slideset-lava > div .prev:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
/* Content
----------------------------------------------------------------------------------------------------*/
.wk-slideset-lava .sets { margin: 0 -10px; }
.wk-slideset-lava article { margin: 0; }
.wk-slideset-lava article {
border-radius: 50%;
border: 15px solid #eef3f5;
}
.wk-slideset-lava article:first-child { margin-right: -7px; }
.wk-slideset-lava article:last-child { margin-left: -7px; }
.wk-slideset-lava img { border-radius: 50%; }
body .wk-slideset-lava .overlay { background: none; }
body .wk-slideset-lava .overlay > div {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 40px;
background: rgba(0,0,0,0.5);
border-radius: 50%;
}
.wk-slideset-lava .sub-content { margin-top: 40px; }
/* Responsive
----------------------------------------------------------------------------------------------------*/
/* Only Touch Devices */
@media (max-device-width: 1024px) {
.wk-slideset-lava .next,
.wk-slideset-lava .prev { display: none; }
}
/* Only Phones */
@media (max-width: 767px) {
.wk-slideset-lava .nav.text li { margin-left: 10px; }
.wk-slideset-lava .nav.text li:first-child { margin-left: 0; }
.wk-slideset-lava .nav.text span {
padding: 0 6px;
font-size: 12px;
}
.wk-slideset-lava .nav.text .active span { padding: 0 5px; }
.wk-slideset-lava article:first-child,
.wk-slideset-lava article:last-child { margin: 4px; }
} | media/widgetkit/widgets/slideset/styles/lava/style.css | /* Navigation
----------------------------------------------------------------------------------------------------*/
.wk-slideset-lava .nav {
margin-top: 40px;
text-align: center;
}
.wk-slideset-lava .nav li {
display: inline-block;
padding: 4px;
background: rgba(0,0,0,0.1);
border-radius: 50%;
-webkit-transition: all linear 0.06s;
transition: all linear 0.06s;
}
.wk-slideset-lava .nav.icon span {
width: 12px;
height: 12px;
border: 2px solid #fff;
border-radius: 50%;
-webkit-transition: all linear 0.06s;
transition: all linear 0.06s;
}
.wk-slideset-lava .nav.icon li:hover {
background: rgba(0,0,0,0.2);
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
.wk-slideset-lava .nav.icon li:hover span { background: #fff; }
.wk-slideset-lava .nav.icon span:active,
.wk-slideset-lava .nav.icon .active span { background: #fff; }
.wk-slideset-lava .nav.icon li { margin-left: 8px; }
.wk-slideset-lava .nav.text li { margin-left: 40px; }
.wk-slideset-lava .nav li:first-child { margin-left: 0; }
.wk-slideset-lava .nav.text span { padding: 0 11px; }
.wk-slideset-lava .nav.text .active span {
padding: 0 10px;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 4px;
background: rgba(0,0,0,0.05);
}
/* Buttons
----------------------------------------------------------------------------------------------------*/
.wk-slideset-lava > div { position: relative; }
.wk-slideset-lava:hover > div .next,
.wk-slideset-lava:hover > div .prev {
top: 50%;
width: 64px;
height: 64px;
margin-top: -32px;
background: #eef3f5;
background-image: url(images/buttons.svg);
background-repeat: no-repeat;
background-position: 0 0;
border-radius: 50%;
box-shadow: 0 0 0 5px rgba(110,115,120,0);
}
.wk-slideset-lava:hover > div .next {
right: 10px;
background-position: 0 -90px;
}
.wk-slideset-lava:hover > div .prev { left: 10px; }
.wk-slideset-lava > div .next:hover,
.wk-slideset-lava > div .prev:hover {
background-color: #fff;
box-shadow: 0 0 0 5px rgba(110,115,120,0.05);
-webkit-transform: scale(1.2);
transform: scale(1.2);
transition: all ease-in-out 0.22s;
}
.wk-slideset-lava > div .next:active,
.wk-slideset-lava > div .prev:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
/* Content
----------------------------------------------------------------------------------------------------*/
.wk-slideset-lava .sets { margin: 0 -10px; }
.wk-slideset-lava article { margin: 0; }
.wk-slideset-lava article {
border-radius: 50%;
border: 15px solid #eef3f5;
}
.wk-slideset-lava article:first-child { margin-right: -7px; }
.wk-slideset-lava article:last-child { margin-left: -7px; }
.wk-slideset-lava img { border-radius: 50%; }
body .wk-slideset-lava .overlay { background: none; }
body .wk-slideset-lava .overlay > div {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 40px;
background: rgba(0,0,0,0.5);
border-radius: 50%;
}
.wk-slideset-lava .sub-content { margin-top: 40px; }
/* Responsive
----------------------------------------------------------------------------------------------------*/
/* Only Touch Devices */
@media (max-device-width: 1024px) {
.wk-slideset-lava .next,
.wk-slideset-lava .prev { display: none; }
}
/* Only Phones */
@media (max-width: 767px) {
.wk-slideset-lava .nav.text li { margin-left: 10px; }
.wk-slideset-lava .nav.text li:first-child { margin-left: 0; }
.wk-slideset-lava .nav.text span {
padding: 0 6px;
font-size: 12px;
}
.wk-slideset-lava .nav.text .active span { padding: 0 5px; }
.wk-slideset-lava article:first-child,
.wk-slideset-lava article:last-child { margin: 4px; }
} | 0.28877 | 0.063077 |
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Josefin+Sans:wght@300&family=Poppins:wght@300&family=Roboto:wght@300&family=Rubik:wght@300&display=swap');
* {
margin: 0;
padding: 0;
scroll-behavior: smooth;
}
@media all and (min-width: 1001px){
.gradient{
background: rgb(169,188,208);
background: linear-gradient(180deg, rgba(169,188,208,1) 0%, rgba(216,219,226,0.8) 100%);
height: 15vw;
display: flex;
justify-content: space-between;
}
.member{
padding: 1vw 2vw;
width: 15vw;
height: 3.8vw;
margin: 3.1vw 0vw 0 0;
background-color: #58A4B0;
border: 0;
border-radius: 0.8vw;
font-family: 'Roboto', sans-serif;
font-style: normal;
font-weight: 500;
color: #FFFFFF;
justify-content: center;
font-size: 1.3vw;
}
.member:hover{
background-color: #1FB9D1;
}
.map{
padding: 1vw 2vw;
width: 15vw;
height: 3.8vw;
margin: 3.1vw 2vw 0 0;
background-color: transparent;
border: 0.1vw solid #252525;
border-radius: 0.8vw;
font-family: 'Roboto', sans-serif;
font-style: normal;
font-weight: 500;
color: #505050;
font-size: 1.3vw;
}
.buttons{
display: flex;
flex-direction: row-reverse;
margin-right: 2vw;
}
.logo svg{
margin: 2.5vw 0 0 1vw;
width: 20vw;
}
#menu-burger{
display: none;
}
#menu{
display: none;
}
body{
background-color: #D8DBE2;
overflow-x: hidden;
}
.firstTitle{
display: flex;
justify-content: center;
}
.secondeTitle{
width: 32vw;
height: 14vw;
display: flex;
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 3vw;
line-height: 3.5vw;
text-align: center;
letter-spacing: -0.02em;
color: #000000;
}
.location{
display:block;
justify-content: center;
width: 20%;
margin-left: 40vw;
}
.firstWave{
margin-top: 5vw;
width: 100%;
}
.secondeWave{
width: 100%;
}
.betweenWave{
background-color: #0C2D48;
height: 100%;
margin-top: -1vw;
display: flex;
flex-direction: column;
align-items: center;
}
.culturalArea{
width: 60vw;
height: 5vw;
font-family: Poppins;
font-style: normal;
font-size: 2vw;
color: #FFFFFF;
margin-bottom: 1vw;
}
.betweenWave img{
display:inline-block;
}
.blueRectangle{
width: 20.8vw;
}
.schedule{
color: #FFFFFF;
font-family: Roboto;
text-align: center;
position: absolute;
font-size: 1vw;
}
.schedule p:nth-child(1){
margin-bottom: 1vw;
}
.divCulturalArea{
display: flex;
justify-content: center;
align-items: center;
}
.imgCulturaArea{
width: 20.8vw;
height: 13.9vw;
}
.containerDownload{
display: flex;
width: 100%;
flex-direction: column;
justify-content: end;
align-items: center;
margin-top: 2.5vw;
}
.discoverBtn{
display: flex;
align-items: center;
width: 9.5vw;
height: 3.5vw;
margin-top: 3vw;
background-color: #58A4B0;
border: 0;
border-radius: 0.4vw;
font-family: 'Roboto', sans-serif;
font-style: normal;
color: #FFFFFF;
justify-content: center;
align-content: center;
font-size: 0.8vw;
}
.discoverBtn:hover{
background-color: #1FB9D1;
}
.joinSpan{
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 1.75vw;
letter-spacing: -0.02em;
display: flex;
justify-content: center;
margin-top: 2vw;
text-align: center;
}
.downloadBtn{
width: 10vw;
background-color: #A9BCD0;
border: 0;
border-radius: 1vw;
padding: 0.5vw 1vw;
display: inline-flex;
justify-content: space-around;
align-items: center;
margin-top: 0.5vw;
}
.downloadBtn:last-child{
margin-bottom: 3vw;
}
.downloadBtn svg{
width: 1.9vw;
height: 1.9vw;
margin-right: 1.3vw;
}
.downloadBtn:hover{
background-color: #90AECD;
}
.informationContainer{
background-color: #0C2D48;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
margin-top: 2vw;
}
.informationContainer ul li:nth-child(1){
list-style-type: none;
margin-top: 3vw;
}
ul li a{
color: gainsboro;
text-decoration: none;
font-family: Poppins;
}
ul li p{
color: white;
text-decoration: underline;
font-family: Poppins;
}
ul a:visited{
color:gainsboro;
text-decoration: none;
font-family: Poppins;
}
.applicationContainer{
display: flex;
justify-content: center;
margin: 6vw auto;
}
.ndapplicationContainer{
display: flex;
flex-direction: row;
background-color: white;
width: 760px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}
.sliderContainer {
width: 90%;
height: 800px;
overflow: hidden;
}
.slidesContainer {
width: calc(360px * 5);
animation: glisse 15s infinite;
}
.slideContainer {
float: left;
}
@keyframes glisse {
0% {
transform: translateX(0);
}
5% {
transform: translateX(0);
}
20% {
transform: translateX(-360px);
}
25% {
transform: translateX(-360px);
}
40% {
transform: translateX(-720px);
}
45% {
transform: translateX(-720px);
}
60% {
transform: translateX(-1080px);
}
65% {
transform: translateX(-1080px);
}
80% {
transform: translateX(-1440px);
}
85% {
transform: translateX(-1440px);
}
100% {
transform: translateX(0);
}
}
.bottomUl{
margin-bottom: 2vw;
}
}
@media all and (max-width: 1000px) {
.gradient{
background: rgb(169,188,208);
background: linear-gradient(180deg, rgba(169,188,208,1) 0%, rgba(216,219,226,0.8) 100%);
height: 15vw;
display: flex;
justify-content:space-between;
}
.buttons{
display: flex;
justify-content: right;
}
.member{
visibility: collapse;
}
.phoneBtn{
position: absolute;
visibility: visible;
width: 12vw;
height: 10vw;
background-color: transparent;
border: solid 0.1vw black;
margin: 1vw 1vw 0 0;
}
.menuImg{
width: 10vw;
}
.phoneBtn:hover{
opacity: 50%;
}
.map{
visibility: collapse;
}
.logo svg{
visibility: visible;
width: 70%;
margin: 7vw 0 0 5vw;
}
.titleSpan{
visibility: collapse;
}
#menu-burger {position:absolute; top:1em; right:3.5vw; display:inline-block; cursor:pointer;}
#menu-burger .bar1,
#menu-burger .bar2,
#menu-burger .bar3 {width:10vw; height: 1.5vw; background-color:#F1F1F1; margin:1.7vw; transition:0.4s;}
#menu-burger:hover {opacity:.75; transition:.5s;}
#menu-burger.clicked .bar1 {-webkit-transform:rotate(-45deg) translate(-9px, 6px); transform:rotate(-45deg) translate(-9px, 6px);}
#menu-burger.clicked .bar2 {opacity: 0;}
#menu-burger.clicked .bar3 {-webkit-transform:rotate(45deg) translate(-8px, -8px); transform:rotate(45deg) translate(-8px, -8px);}
#menu {position:fixed; z-index:9998; left:-25%; top:auto; background-color: #D8DBE2; padding:4em 2em; width:25%; min-height:100%;}
#menu ul li {list-style:none;}
#menu ul li a {display:block; color:#fff; text-decoration:none; font-weight:500; background:#0C2D48; transition:background .5s; padding:2vw; text-align:center; margin: 6vw 0 5vw 0; font-family: Poppins;}
#menu ul li a:hover {background: #0C2D48; transition:background .5s;}
#menu.visible {animation:.5s slideRight ease-in forwards; transition-delay:0;}
#menu.invisible {animation:1s slideLeft ease-out forwards; transition-delay:0;}
#menu-burger:nth-child(1){
margin-top: 3.5vw;
margin-right: 2vw;
}
/* Animations pour le menu slide */
@keyframes slideRight {
from {left:-25%;}
to {left:0%;}
}
@-webkit-keyframes slideRight {
from {left:-25%;}
to {left:0%;}
}
@keyframes slideLeft {
from {left:0%;}
to {left:-25%;}
}
@-webkit-keyframes slideLeft {
from {left:0%;}
to {left:-25%;}
}
#menu-burger {top:1em; right:2em; z-index:9999;}
#menu {left:-100%; width: 83.7%;}
/* Animations pour le menu slide */
@keyframes slideRight {
from {left:-100%;}
to {left:0%;}
}
@-webkit-keyframes slideRight {
from {left:-100%;}
to {left:0%;}
}
@keyframes slideLeft {
from {left:0%;}
to {left:-100%;}
}
@-webkit-keyframes slideLeft {
from {left:0%;}
to {left:-100%;}
}
body{
background-color: #D8DBE2;
}
.firstTitle{
display: flex;
justify-content: center;
margin-top: 15vw;;
}
.secondeTitle{
width: 80vw;
height: 20vw;
display: flex;
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 7vw;
line-height: 7.5vw;
text-align: center;
letter-spacing: -0.02em;
color: #000000;
}
.location{
display:block;
justify-content: center;
width: 50%;
margin-left: 25vw;
margin-top: 8vw;
}
.firstWave{
visibility: visible;
margin-top: 10vw;
}
.secondeWave{
visibility: visible;
margin-top: -2vw;
}
.betweenWave{
background-color: #0C2D48;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-top: -2vw;
}
.culturalArea{
width: 80vw;
text-align: center;
height: 5vw;
font-family: Poppins;
font-style: normal;
font-size: 4vw;
color: #FFFFFF;
margin-bottom: 1vw;
}
.betweenWave img{
display:inline-block;
}
.blueRectangle{
width: 60vw;
}
.schedule{
color: #FFFFFF;
font-family: Roboto;
text-align: center;
position: absolute;
font-size: 3.5vw;
}
.schedule p:nth-child(1){
margin-bottom: 1vw;
}
.divCulturalArea{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 15vw;
}
.imgCulturaArea{
width: 60vw;
height: 40vw;
}
.containerDownload{
display: flex;
width: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 2.5vw;
}
.discoverBtn{
display: flex;
align-items: center;
width: 45vw;
height: 10vw;
margin-top: 10vw;
margin-bottom: 10vw;
background-color: #58A4B0;
border: 0;
border-radius: 0.4vw;
font-family: 'Roboto', sans-serif;
font-style: normal;
color: #FFFFFF;
justify-content: center;
align-content: center;
font-size: 3.5vw;
}
.discoverBtn:hover{
background-color: #1FB9D1;
}
.joinSpan{
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 5vw;
display: flex;
text-align: center;
letter-spacing: -0.02em;
margin-top: 10vw;
}
.downloadBtn{
width: 48vw;
height: 12vw;
background-color: #A9BCD0;
border: 0;
border-radius: 1vw;
padding: 0.75vw 1.25vw;
display: inline-flex;
margin-top: 4vw;
}
.downloadBtn:first-child{
margin-top: 5vw;
}
.downloadBtn svg{
width: 9vw;
height: 6vw;
margin-left: 2vw;
margin-top: 1vw;
}
.downloadBtn:hover{
background-color: #90AECD;
}
.informationContainer{
background-color: #0C2D48;
display: flex;
flex-direction: column;
align-items: center;
margin-top: -30vw;
}
.informationContainer ul li:nth-child(1){
list-style-type: none;
margin-top: 10vw;
}
ul li a{
color: gainsboro;
text-decoration: none;
font-family: Poppins;
}
ul li p{
color: white;
text-decoration: underline;
font-family: Poppins;
}
ul a:visited{
color:gainsboro;
text-decoration: none;
font-family: Poppins;
}
.applicationContainer{
display: flex;
justify-content: center;
}
.ndapplicationContainer{
display: flex;
flex-direction: column-reverse;
align-items: center;
width: 100%;
background-color: transparent;
margin-top: 5vw;
}
.sliderContainer {
width: 68%;
height: 800px;
overflow: hidden;
margin-top: 10vw;
}
.slidesContainer {
width: calc(270px * 5);
animation: glisse 15s infinite;
}
.slideContainer {
float: left;
}
.slideContainer img{
width: 270px;
height: 600px;
}
@keyframes glisse {
0% {
transform: translateX(0);
}
5% {
transform: translateX(0);
}
20% {
transform: translateX(-270px);
}
25% {
transform: translateX(-270px);
}
40% {
transform: translateX(-540px);
}
45% {
transform: translateX(-540px);
}
60% {
transform: translateX(-810px);
}
65% {
transform: translateX(-810px);
}
80% {
transform: translateX(-1080px);
}
85% {
transform: translateX(-1080px);
}
100% {
transform: translateX(0);
}
}
} | style.css | @import url('https://fonts.googleapis.com/css2?family=Anton&family=Josefin+Sans:wght@300&family=Poppins:wght@300&family=Roboto:wght@300&family=Rubik:wght@300&display=swap');
* {
margin: 0;
padding: 0;
scroll-behavior: smooth;
}
@media all and (min-width: 1001px){
.gradient{
background: rgb(169,188,208);
background: linear-gradient(180deg, rgba(169,188,208,1) 0%, rgba(216,219,226,0.8) 100%);
height: 15vw;
display: flex;
justify-content: space-between;
}
.member{
padding: 1vw 2vw;
width: 15vw;
height: 3.8vw;
margin: 3.1vw 0vw 0 0;
background-color: #58A4B0;
border: 0;
border-radius: 0.8vw;
font-family: 'Roboto', sans-serif;
font-style: normal;
font-weight: 500;
color: #FFFFFF;
justify-content: center;
font-size: 1.3vw;
}
.member:hover{
background-color: #1FB9D1;
}
.map{
padding: 1vw 2vw;
width: 15vw;
height: 3.8vw;
margin: 3.1vw 2vw 0 0;
background-color: transparent;
border: 0.1vw solid #252525;
border-radius: 0.8vw;
font-family: 'Roboto', sans-serif;
font-style: normal;
font-weight: 500;
color: #505050;
font-size: 1.3vw;
}
.buttons{
display: flex;
flex-direction: row-reverse;
margin-right: 2vw;
}
.logo svg{
margin: 2.5vw 0 0 1vw;
width: 20vw;
}
#menu-burger{
display: none;
}
#menu{
display: none;
}
body{
background-color: #D8DBE2;
overflow-x: hidden;
}
.firstTitle{
display: flex;
justify-content: center;
}
.secondeTitle{
width: 32vw;
height: 14vw;
display: flex;
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 3vw;
line-height: 3.5vw;
text-align: center;
letter-spacing: -0.02em;
color: #000000;
}
.location{
display:block;
justify-content: center;
width: 20%;
margin-left: 40vw;
}
.firstWave{
margin-top: 5vw;
width: 100%;
}
.secondeWave{
width: 100%;
}
.betweenWave{
background-color: #0C2D48;
height: 100%;
margin-top: -1vw;
display: flex;
flex-direction: column;
align-items: center;
}
.culturalArea{
width: 60vw;
height: 5vw;
font-family: Poppins;
font-style: normal;
font-size: 2vw;
color: #FFFFFF;
margin-bottom: 1vw;
}
.betweenWave img{
display:inline-block;
}
.blueRectangle{
width: 20.8vw;
}
.schedule{
color: #FFFFFF;
font-family: Roboto;
text-align: center;
position: absolute;
font-size: 1vw;
}
.schedule p:nth-child(1){
margin-bottom: 1vw;
}
.divCulturalArea{
display: flex;
justify-content: center;
align-items: center;
}
.imgCulturaArea{
width: 20.8vw;
height: 13.9vw;
}
.containerDownload{
display: flex;
width: 100%;
flex-direction: column;
justify-content: end;
align-items: center;
margin-top: 2.5vw;
}
.discoverBtn{
display: flex;
align-items: center;
width: 9.5vw;
height: 3.5vw;
margin-top: 3vw;
background-color: #58A4B0;
border: 0;
border-radius: 0.4vw;
font-family: 'Roboto', sans-serif;
font-style: normal;
color: #FFFFFF;
justify-content: center;
align-content: center;
font-size: 0.8vw;
}
.discoverBtn:hover{
background-color: #1FB9D1;
}
.joinSpan{
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 1.75vw;
letter-spacing: -0.02em;
display: flex;
justify-content: center;
margin-top: 2vw;
text-align: center;
}
.downloadBtn{
width: 10vw;
background-color: #A9BCD0;
border: 0;
border-radius: 1vw;
padding: 0.5vw 1vw;
display: inline-flex;
justify-content: space-around;
align-items: center;
margin-top: 0.5vw;
}
.downloadBtn:last-child{
margin-bottom: 3vw;
}
.downloadBtn svg{
width: 1.9vw;
height: 1.9vw;
margin-right: 1.3vw;
}
.downloadBtn:hover{
background-color: #90AECD;
}
.informationContainer{
background-color: #0C2D48;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
margin-top: 2vw;
}
.informationContainer ul li:nth-child(1){
list-style-type: none;
margin-top: 3vw;
}
ul li a{
color: gainsboro;
text-decoration: none;
font-family: Poppins;
}
ul li p{
color: white;
text-decoration: underline;
font-family: Poppins;
}
ul a:visited{
color:gainsboro;
text-decoration: none;
font-family: Poppins;
}
.applicationContainer{
display: flex;
justify-content: center;
margin: 6vw auto;
}
.ndapplicationContainer{
display: flex;
flex-direction: row;
background-color: white;
width: 760px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}
.sliderContainer {
width: 90%;
height: 800px;
overflow: hidden;
}
.slidesContainer {
width: calc(360px * 5);
animation: glisse 15s infinite;
}
.slideContainer {
float: left;
}
@keyframes glisse {
0% {
transform: translateX(0);
}
5% {
transform: translateX(0);
}
20% {
transform: translateX(-360px);
}
25% {
transform: translateX(-360px);
}
40% {
transform: translateX(-720px);
}
45% {
transform: translateX(-720px);
}
60% {
transform: translateX(-1080px);
}
65% {
transform: translateX(-1080px);
}
80% {
transform: translateX(-1440px);
}
85% {
transform: translateX(-1440px);
}
100% {
transform: translateX(0);
}
}
.bottomUl{
margin-bottom: 2vw;
}
}
@media all and (max-width: 1000px) {
.gradient{
background: rgb(169,188,208);
background: linear-gradient(180deg, rgba(169,188,208,1) 0%, rgba(216,219,226,0.8) 100%);
height: 15vw;
display: flex;
justify-content:space-between;
}
.buttons{
display: flex;
justify-content: right;
}
.member{
visibility: collapse;
}
.phoneBtn{
position: absolute;
visibility: visible;
width: 12vw;
height: 10vw;
background-color: transparent;
border: solid 0.1vw black;
margin: 1vw 1vw 0 0;
}
.menuImg{
width: 10vw;
}
.phoneBtn:hover{
opacity: 50%;
}
.map{
visibility: collapse;
}
.logo svg{
visibility: visible;
width: 70%;
margin: 7vw 0 0 5vw;
}
.titleSpan{
visibility: collapse;
}
#menu-burger {position:absolute; top:1em; right:3.5vw; display:inline-block; cursor:pointer;}
#menu-burger .bar1,
#menu-burger .bar2,
#menu-burger .bar3 {width:10vw; height: 1.5vw; background-color:#F1F1F1; margin:1.7vw; transition:0.4s;}
#menu-burger:hover {opacity:.75; transition:.5s;}
#menu-burger.clicked .bar1 {-webkit-transform:rotate(-45deg) translate(-9px, 6px); transform:rotate(-45deg) translate(-9px, 6px);}
#menu-burger.clicked .bar2 {opacity: 0;}
#menu-burger.clicked .bar3 {-webkit-transform:rotate(45deg) translate(-8px, -8px); transform:rotate(45deg) translate(-8px, -8px);}
#menu {position:fixed; z-index:9998; left:-25%; top:auto; background-color: #D8DBE2; padding:4em 2em; width:25%; min-height:100%;}
#menu ul li {list-style:none;}
#menu ul li a {display:block; color:#fff; text-decoration:none; font-weight:500; background:#0C2D48; transition:background .5s; padding:2vw; text-align:center; margin: 6vw 0 5vw 0; font-family: Poppins;}
#menu ul li a:hover {background: #0C2D48; transition:background .5s;}
#menu.visible {animation:.5s slideRight ease-in forwards; transition-delay:0;}
#menu.invisible {animation:1s slideLeft ease-out forwards; transition-delay:0;}
#menu-burger:nth-child(1){
margin-top: 3.5vw;
margin-right: 2vw;
}
/* Animations pour le menu slide */
@keyframes slideRight {
from {left:-25%;}
to {left:0%;}
}
@-webkit-keyframes slideRight {
from {left:-25%;}
to {left:0%;}
}
@keyframes slideLeft {
from {left:0%;}
to {left:-25%;}
}
@-webkit-keyframes slideLeft {
from {left:0%;}
to {left:-25%;}
}
#menu-burger {top:1em; right:2em; z-index:9999;}
#menu {left:-100%; width: 83.7%;}
/* Animations pour le menu slide */
@keyframes slideRight {
from {left:-100%;}
to {left:0%;}
}
@-webkit-keyframes slideRight {
from {left:-100%;}
to {left:0%;}
}
@keyframes slideLeft {
from {left:0%;}
to {left:-100%;}
}
@-webkit-keyframes slideLeft {
from {left:0%;}
to {left:-100%;}
}
body{
background-color: #D8DBE2;
}
.firstTitle{
display: flex;
justify-content: center;
margin-top: 15vw;;
}
.secondeTitle{
width: 80vw;
height: 20vw;
display: flex;
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 7vw;
line-height: 7.5vw;
text-align: center;
letter-spacing: -0.02em;
color: #000000;
}
.location{
display:block;
justify-content: center;
width: 50%;
margin-left: 25vw;
margin-top: 8vw;
}
.firstWave{
visibility: visible;
margin-top: 10vw;
}
.secondeWave{
visibility: visible;
margin-top: -2vw;
}
.betweenWave{
background-color: #0C2D48;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-top: -2vw;
}
.culturalArea{
width: 80vw;
text-align: center;
height: 5vw;
font-family: Poppins;
font-style: normal;
font-size: 4vw;
color: #FFFFFF;
margin-bottom: 1vw;
}
.betweenWave img{
display:inline-block;
}
.blueRectangle{
width: 60vw;
}
.schedule{
color: #FFFFFF;
font-family: Roboto;
text-align: center;
position: absolute;
font-size: 3.5vw;
}
.schedule p:nth-child(1){
margin-bottom: 1vw;
}
.divCulturalArea{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 15vw;
}
.imgCulturaArea{
width: 60vw;
height: 40vw;
}
.containerDownload{
display: flex;
width: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 2.5vw;
}
.discoverBtn{
display: flex;
align-items: center;
width: 45vw;
height: 10vw;
margin-top: 10vw;
margin-bottom: 10vw;
background-color: #58A4B0;
border: 0;
border-radius: 0.4vw;
font-family: 'Roboto', sans-serif;
font-style: normal;
color: #FFFFFF;
justify-content: center;
align-content: center;
font-size: 3.5vw;
}
.discoverBtn:hover{
background-color: #1FB9D1;
}
.joinSpan{
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 5vw;
display: flex;
text-align: center;
letter-spacing: -0.02em;
margin-top: 10vw;
}
.downloadBtn{
width: 48vw;
height: 12vw;
background-color: #A9BCD0;
border: 0;
border-radius: 1vw;
padding: 0.75vw 1.25vw;
display: inline-flex;
margin-top: 4vw;
}
.downloadBtn:first-child{
margin-top: 5vw;
}
.downloadBtn svg{
width: 9vw;
height: 6vw;
margin-left: 2vw;
margin-top: 1vw;
}
.downloadBtn:hover{
background-color: #90AECD;
}
.informationContainer{
background-color: #0C2D48;
display: flex;
flex-direction: column;
align-items: center;
margin-top: -30vw;
}
.informationContainer ul li:nth-child(1){
list-style-type: none;
margin-top: 10vw;
}
ul li a{
color: gainsboro;
text-decoration: none;
font-family: Poppins;
}
ul li p{
color: white;
text-decoration: underline;
font-family: Poppins;
}
ul a:visited{
color:gainsboro;
text-decoration: none;
font-family: Poppins;
}
.applicationContainer{
display: flex;
justify-content: center;
}
.ndapplicationContainer{
display: flex;
flex-direction: column-reverse;
align-items: center;
width: 100%;
background-color: transparent;
margin-top: 5vw;
}
.sliderContainer {
width: 68%;
height: 800px;
overflow: hidden;
margin-top: 10vw;
}
.slidesContainer {
width: calc(270px * 5);
animation: glisse 15s infinite;
}
.slideContainer {
float: left;
}
.slideContainer img{
width: 270px;
height: 600px;
}
@keyframes glisse {
0% {
transform: translateX(0);
}
5% {
transform: translateX(0);
}
20% {
transform: translateX(-270px);
}
25% {
transform: translateX(-270px);
}
40% {
transform: translateX(-540px);
}
45% {
transform: translateX(-540px);
}
60% {
transform: translateX(-810px);
}
65% {
transform: translateX(-810px);
}
80% {
transform: translateX(-1080px);
}
85% {
transform: translateX(-1080px);
}
100% {
transform: translateX(0);
}
}
} | 0.215516 | 0.061199 |
.bty-page-error-4 {
background: #2d607b;
}
.bty-page-error-4 > div:first-of-type {
display: block;
position: relative;
width: 200px;
margin: 2% auto 0;
-webkit-animation: shvr-bty-page-error-4 0.2s infinite;
animation: shvr-bty-page-error-4 0.2s infinite;
}
.bty-page-error-4 > div:first-of-type::after {
content: "";
width: 20px;
height: 20px;
background: #000;
position: absolute;
top: 30px;
left: 25px;
border-radius: 50%;
box-shadow: 125px 0 0 #000;
-webkit-animation: eye-bty-page-error-4 2.5s infinite;
animation: eye-bty-page-error-4 2.5s infinite;
}
.bty-page-error-4 > div:first-of-type div {
position: relative;
display: inline-block;
background: #fff;
width: 75px;
height: 80px;
border-radius: 50% 50% 50% 50%/45px 45px 45% 45%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.bty-page-error-4 > div:first-of-type div::after {
content: "";
position: absolute;
border-bottom: 2px solid #fff;
width: 70px;
height: 50px;
left: 0;
bottom: -10px;
border-radius: 50%;
}
.bty-page-error-4 > div:first-of-type div::before {
bottom: auto;
top: -100px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
left: 0;
}
.bty-page-error-4 > div:first-of-type div:nth-of-type(2) {
float: right;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.bty-page-error-4 > div:first-of-type div:nth-of-type(2)::after {
left: 5px;
}
.bty-page-error-4 > div:last-of-type {
margin-top: 100px;
text-align: center;
color: #fff;
}
.bty-page-error-4 > div:last-of-type::before {
content: "404";
font-size: 80px;
font-weight: 800;
display: block;
margin-bottom: 10px;
}
.bty-page-error-4 > div:last-of-type::after {
content: "Got lost? How.....? why.....? Ahhhh....";
color: #b7b7b7;
width: 120px;
font-size: 30px;
overflow: hidden;
display: inline-block;
white-space: nowrap;
-webkit-animation: text-bty-page-error-4 2s infinite steps(3);
animation: text-bty-page-error-4 2s infinite steps(3);
}
@-webkit-keyframes eye-bty-page-error-4 {
0%, 30%, 55%, 90%, 100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
10%, 25% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px);
}
65% {
-webkit-transform: translate(-20px, 0);
transform: translate(-20px, 0);
}
80% {
-webkit-transform: translate(20px, 0);
transform: translate(20px, 0);
}
}
@keyframes eye-bty-page-error-4 {
0%, 30%, 55%, 90%, 100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
10%, 25% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px);
}
65% {
-webkit-transform: translate(-20px, 0);
transform: translate(-20px, 0);
}
80% {
-webkit-transform: translate(20px, 0);
transform: translate(20px, 0);
}
}
@-webkit-keyframes shvr-bty-page-error-4 {
0% {
-webkit-transform: translate(1px, 1em);
transform: translate(1px, 1em);
}
50% {
-webkit-transform: translate(0, 1em);
transform: translate(0, 1em);
}
100% {
-webkit-transform: translate(-1px, 1em);
transform: translate(-1px, 1em);
}
}
@keyframes shvr-bty-page-error-4 {
0% {
-webkit-transform: translate(1px, 1em);
transform: translate(1px, 1em);
}
50% {
-webkit-transform: translate(0, 1em);
transform: translate(0, 1em);
}
100% {
-webkit-transform: translate(-1px, 1em);
transform: translate(-1px, 1em);
}
}
@-webkit-keyframes text-bty-page-error-4 {
to {
text-indent: -373px;
}
}
@keyframes text-bty-page-error-4 {
to {
text-indent: -373px;
}
}.bty-page-error-eyes-4 {
background: #865c5c;
}
.bty-page-error-eyes-4 > div:first-of-type {
display: block;
position: relative;
width: 200px;
margin: 2% auto 0;
-webkit-animation: shvr-bty-page-error-eyes-4 0.2s infinite;
animation: shvr-bty-page-error-eyes-4 0.2s infinite;
}
.bty-page-error-eyes-4 > div:first-of-type::after {
content: "";
width: 20px;
height: 20px;
background: #000;
position: absolute;
top: 30px;
left: 25px;
border-radius: 50%;
box-shadow: 125px 0 0 #000;
-webkit-animation: eye-bty-page-error-eyes-4 2.5s infinite;
animation: eye-bty-page-error-eyes-4 2.5s infinite;
}
.bty-page-error-eyes-4 > div:first-of-type div {
position: relative;
display: inline-block;
width: 75px;
height: 80px;
border-radius: 50% 50% 50% 50%/45px 45px 45% 45%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
background: -moz-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 99%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.7)), color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 99%);
background: -o-linear-gradient(top, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 99%);
background: -ms-linear-gradient(top, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 99%);
background: linear-gradient(to bottom, rgba(251, 1, 1, 0.73) 0%,rgba(255, 255, 255, 0.45) 50%,rgba(234, 87, 87, 0.3) 99%);
}
.bty-page-error-eyes-4 > div:first-of-type div::after {
content: "";
position: absolute;
border-bottom: 2px solid #000;
width: 70px;
height: 50px;
left: 0;
bottom: -10px;
border-radius: 50%;
}
.bty-page-error-eyes-4 > div:first-of-type div::before {
bottom: auto;
top: -100px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
left: 0;
}
.bty-page-error-eyes-4 > div:first-of-type div:nth-of-type(2) {
float: right;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.bty-page-error-eyes-4 > div:first-of-type div:nth-of-type(2)::after {
left: 5px;
}
.bty-page-error-eyes-4 > div:last-of-type {
margin-top: 100px;
text-align: center;
color: #a0323c;
}
.bty-page-error-eyes-4 > div:last-of-type::before {
content: "404";
font-size: 80px;
font-weight: 800;
display: block;
margin-bottom: 10px;
text-shadow: 1px 1px 4px #0000006e;
}
.bty-page-error-eyes-4 > div:last-of-type::after {
content: "Got lost? How.....? why.....? Ahhhh....";
color: #f3f3f3;
width: 120px;
font-size: 30px;
overflow: hidden;
display: inline-block;
white-space: nowrap;
-webkit-animation: text-bty-page-error-eyes-4 2s infinite steps(3);
animation: text-bty-page-error-eyes-4 2s infinite steps(3);
}
@-webkit-keyframes eye-bty-page-error-eyes-4 {
0%, 30%, 55%, 90%, 100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
10%, 25% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px);
}
65% {
-webkit-transform: translate(-20px, 0);
transform: translate(-20px, 0);
}
80% {
-webkit-transform: translate(20px, 0);
transform: translate(20px, 0);
}
}
@keyframes eye-bty-page-error-eyes-4 {
0%, 30%, 55%, 90%, 100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
10%, 25% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px);
}
65% {
-webkit-transform: translate(-20px, 0);
transform: translate(-20px, 0);
}
80% {
-webkit-transform: translate(20px, 0);
transform: translate(20px, 0);
}
}
@-webkit-keyframes shvr-bty-page-error-eyes-4 {
0% {
-webkit-transform: translate(1px, 1em);
transform: translate(1px, 1em);
}
50% {
-webkit-transform: translate(0, 1em);
transform: translate(0, 1em);
}
100% {
-webkit-transform: translate(-1px, 1em);
transform: translate(-1px, 1em);
}
}
@keyframes shvr-bty-page-error-eyes-4 {
0% {
-webkit-transform: translate(1px, 1em);
transform: translate(1px, 1em);
}
50% {
-webkit-transform: translate(0, 1em);
transform: translate(0, 1em);
}
100% {
-webkit-transform: translate(-1px, 1em);
transform: translate(-1px, 1em);
}
}
@-webkit-keyframes text-bty-page-error-eyes-4 {
to {
text-indent: -373px;
}
}
@keyframes text-bty-page-error-eyes-4 {
to {
text-indent: -373px;
}
} | public/components/404 Page/404_eyes.css | .bty-page-error-4 {
background: #2d607b;
}
.bty-page-error-4 > div:first-of-type {
display: block;
position: relative;
width: 200px;
margin: 2% auto 0;
-webkit-animation: shvr-bty-page-error-4 0.2s infinite;
animation: shvr-bty-page-error-4 0.2s infinite;
}
.bty-page-error-4 > div:first-of-type::after {
content: "";
width: 20px;
height: 20px;
background: #000;
position: absolute;
top: 30px;
left: 25px;
border-radius: 50%;
box-shadow: 125px 0 0 #000;
-webkit-animation: eye-bty-page-error-4 2.5s infinite;
animation: eye-bty-page-error-4 2.5s infinite;
}
.bty-page-error-4 > div:first-of-type div {
position: relative;
display: inline-block;
background: #fff;
width: 75px;
height: 80px;
border-radius: 50% 50% 50% 50%/45px 45px 45% 45%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.bty-page-error-4 > div:first-of-type div::after {
content: "";
position: absolute;
border-bottom: 2px solid #fff;
width: 70px;
height: 50px;
left: 0;
bottom: -10px;
border-radius: 50%;
}
.bty-page-error-4 > div:first-of-type div::before {
bottom: auto;
top: -100px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
left: 0;
}
.bty-page-error-4 > div:first-of-type div:nth-of-type(2) {
float: right;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.bty-page-error-4 > div:first-of-type div:nth-of-type(2)::after {
left: 5px;
}
.bty-page-error-4 > div:last-of-type {
margin-top: 100px;
text-align: center;
color: #fff;
}
.bty-page-error-4 > div:last-of-type::before {
content: "404";
font-size: 80px;
font-weight: 800;
display: block;
margin-bottom: 10px;
}
.bty-page-error-4 > div:last-of-type::after {
content: "Got lost? How.....? why.....? Ahhhh....";
color: #b7b7b7;
width: 120px;
font-size: 30px;
overflow: hidden;
display: inline-block;
white-space: nowrap;
-webkit-animation: text-bty-page-error-4 2s infinite steps(3);
animation: text-bty-page-error-4 2s infinite steps(3);
}
@-webkit-keyframes eye-bty-page-error-4 {
0%, 30%, 55%, 90%, 100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
10%, 25% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px);
}
65% {
-webkit-transform: translate(-20px, 0);
transform: translate(-20px, 0);
}
80% {
-webkit-transform: translate(20px, 0);
transform: translate(20px, 0);
}
}
@keyframes eye-bty-page-error-4 {
0%, 30%, 55%, 90%, 100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
10%, 25% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px);
}
65% {
-webkit-transform: translate(-20px, 0);
transform: translate(-20px, 0);
}
80% {
-webkit-transform: translate(20px, 0);
transform: translate(20px, 0);
}
}
@-webkit-keyframes shvr-bty-page-error-4 {
0% {
-webkit-transform: translate(1px, 1em);
transform: translate(1px, 1em);
}
50% {
-webkit-transform: translate(0, 1em);
transform: translate(0, 1em);
}
100% {
-webkit-transform: translate(-1px, 1em);
transform: translate(-1px, 1em);
}
}
@keyframes shvr-bty-page-error-4 {
0% {
-webkit-transform: translate(1px, 1em);
transform: translate(1px, 1em);
}
50% {
-webkit-transform: translate(0, 1em);
transform: translate(0, 1em);
}
100% {
-webkit-transform: translate(-1px, 1em);
transform: translate(-1px, 1em);
}
}
@-webkit-keyframes text-bty-page-error-4 {
to {
text-indent: -373px;
}
}
@keyframes text-bty-page-error-4 {
to {
text-indent: -373px;
}
}.bty-page-error-eyes-4 {
background: #865c5c;
}
.bty-page-error-eyes-4 > div:first-of-type {
display: block;
position: relative;
width: 200px;
margin: 2% auto 0;
-webkit-animation: shvr-bty-page-error-eyes-4 0.2s infinite;
animation: shvr-bty-page-error-eyes-4 0.2s infinite;
}
.bty-page-error-eyes-4 > div:first-of-type::after {
content: "";
width: 20px;
height: 20px;
background: #000;
position: absolute;
top: 30px;
left: 25px;
border-radius: 50%;
box-shadow: 125px 0 0 #000;
-webkit-animation: eye-bty-page-error-eyes-4 2.5s infinite;
animation: eye-bty-page-error-eyes-4 2.5s infinite;
}
.bty-page-error-eyes-4 > div:first-of-type div {
position: relative;
display: inline-block;
width: 75px;
height: 80px;
border-radius: 50% 50% 50% 50%/45px 45px 45% 45%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
background: -moz-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 99%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.7)), color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 99%);
background: -o-linear-gradient(top, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 99%);
background: -ms-linear-gradient(top, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 99%);
background: linear-gradient(to bottom, rgba(251, 1, 1, 0.73) 0%,rgba(255, 255, 255, 0.45) 50%,rgba(234, 87, 87, 0.3) 99%);
}
.bty-page-error-eyes-4 > div:first-of-type div::after {
content: "";
position: absolute;
border-bottom: 2px solid #000;
width: 70px;
height: 50px;
left: 0;
bottom: -10px;
border-radius: 50%;
}
.bty-page-error-eyes-4 > div:first-of-type div::before {
bottom: auto;
top: -100px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
left: 0;
}
.bty-page-error-eyes-4 > div:first-of-type div:nth-of-type(2) {
float: right;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.bty-page-error-eyes-4 > div:first-of-type div:nth-of-type(2)::after {
left: 5px;
}
.bty-page-error-eyes-4 > div:last-of-type {
margin-top: 100px;
text-align: center;
color: #a0323c;
}
.bty-page-error-eyes-4 > div:last-of-type::before {
content: "404";
font-size: 80px;
font-weight: 800;
display: block;
margin-bottom: 10px;
text-shadow: 1px 1px 4px #0000006e;
}
.bty-page-error-eyes-4 > div:last-of-type::after {
content: "Got lost? How.....? why.....? Ahhhh....";
color: #f3f3f3;
width: 120px;
font-size: 30px;
overflow: hidden;
display: inline-block;
white-space: nowrap;
-webkit-animation: text-bty-page-error-eyes-4 2s infinite steps(3);
animation: text-bty-page-error-eyes-4 2s infinite steps(3);
}
@-webkit-keyframes eye-bty-page-error-eyes-4 {
0%, 30%, 55%, 90%, 100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
10%, 25% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px);
}
65% {
-webkit-transform: translate(-20px, 0);
transform: translate(-20px, 0);
}
80% {
-webkit-transform: translate(20px, 0);
transform: translate(20px, 0);
}
}
@keyframes eye-bty-page-error-eyes-4 {
0%, 30%, 55%, 90%, 100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
10%, 25% {
-webkit-transform: translate(0, 20px);
transform: translate(0, 20px);
}
65% {
-webkit-transform: translate(-20px, 0);
transform: translate(-20px, 0);
}
80% {
-webkit-transform: translate(20px, 0);
transform: translate(20px, 0);
}
}
@-webkit-keyframes shvr-bty-page-error-eyes-4 {
0% {
-webkit-transform: translate(1px, 1em);
transform: translate(1px, 1em);
}
50% {
-webkit-transform: translate(0, 1em);
transform: translate(0, 1em);
}
100% {
-webkit-transform: translate(-1px, 1em);
transform: translate(-1px, 1em);
}
}
@keyframes shvr-bty-page-error-eyes-4 {
0% {
-webkit-transform: translate(1px, 1em);
transform: translate(1px, 1em);
}
50% {
-webkit-transform: translate(0, 1em);
transform: translate(0, 1em);
}
100% {
-webkit-transform: translate(-1px, 1em);
transform: translate(-1px, 1em);
}
}
@-webkit-keyframes text-bty-page-error-eyes-4 {
to {
text-indent: -373px;
}
}
@keyframes text-bty-page-error-eyes-4 {
to {
text-indent: -373px;
}
} | 0.428831 | 0.174692 |
@import "./simple-page-variables.css";
.Checkbox {
display: inline-block;
}
.Checkbox .svg-icon {
width: 20px;
height: 20px;
}
.Checkbox .Checkbox-wrapper {
display: flex;
align-items: center;
}
.Checkbox input[type="checkbox"] {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.Checkbox .Checkbox-indicator {
display: flex;
border: 1px solid;
border-color: rgba(73, 73, 73, 0.5);
border-color: var(--checkbox-border);
border-radius: 3px;
cursor: pointer;
}
.Checkbox .Checkbox-text {
margin-left: 5px;
cursor: pointer;
}
.Checkbox .svg-icon {
opacity: 0;
transition: opacity 0.1s linear;
}
.Checkbox input[type="checkbox"] + .Checkbox-indicator {
background-color: #fff;
background-color: var(--background-medium);
}
.Checkbox input[type="checkbox"]:checked + .Checkbox-indicator {
background-color: #0b6aa2;
background-color: var(--btn-primary-bg);
border-color: #0b6aa2;
border-color: var(--btn-primary-bg);
}
.Checkbox input[type="checkbox"]:checked + .Checkbox-indicator .svg-icon {
opacity: 1;
}
.Checkbox input[type="checkbox"]:focus + .Checkbox-indicator,
.Checkbox.focus .Checkbox-indicator {
outline: 0;
box-shadow: inset 0 0 2px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 2px 3px var(--box-shadow);
}
.Checkbox input[disabled] + .Checkbox-indicator,
fieldset[disabled] .Checkbox input + .Checkbox-indicator,
.Checkbox input[disabled] ~ .Checkbox-text,
fieldset[disabled] .Checkbox input ~ .Checkbox-text {
opacity: 0.4;
cursor: auto;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.Checkbox input[type="checkbox"]:focus + .Checkbox-indicator,
.Checkbox.focus .Checkbox-indicator {
box-shadow: inset 0 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 1px 3px var(--box-shadow);
}
}
@supports (-ms-ime-align:auto) {
.Checkbox input[type="checkbox"]:focus + .Checkbox-indicator,
.Checkbox.focus .Checkbox-indicator {
box-shadow: inset 0 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 1px 3px var(--box-shadow);
}
}
.Checkbox-small .svg-icon {
width: 16px;
height: 16px;
}
.Checkbox-medium .svg-icon {
width: 20px;
height: 20px;
}
.Checkbox-large .svg-icon {
width: 24px;
height: 24px;
} | war/src/main/webapp/css/simple-page-forms.css | @import "./simple-page-variables.css";
.Checkbox {
display: inline-block;
}
.Checkbox .svg-icon {
width: 20px;
height: 20px;
}
.Checkbox .Checkbox-wrapper {
display: flex;
align-items: center;
}
.Checkbox input[type="checkbox"] {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.Checkbox .Checkbox-indicator {
display: flex;
border: 1px solid;
border-color: rgba(73, 73, 73, 0.5);
border-color: var(--checkbox-border);
border-radius: 3px;
cursor: pointer;
}
.Checkbox .Checkbox-text {
margin-left: 5px;
cursor: pointer;
}
.Checkbox .svg-icon {
opacity: 0;
transition: opacity 0.1s linear;
}
.Checkbox input[type="checkbox"] + .Checkbox-indicator {
background-color: #fff;
background-color: var(--background-medium);
}
.Checkbox input[type="checkbox"]:checked + .Checkbox-indicator {
background-color: #0b6aa2;
background-color: var(--btn-primary-bg);
border-color: #0b6aa2;
border-color: var(--btn-primary-bg);
}
.Checkbox input[type="checkbox"]:checked + .Checkbox-indicator .svg-icon {
opacity: 1;
}
.Checkbox input[type="checkbox"]:focus + .Checkbox-indicator,
.Checkbox.focus .Checkbox-indicator {
outline: 0;
box-shadow: inset 0 0 2px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 2px 3px var(--box-shadow);
}
.Checkbox input[disabled] + .Checkbox-indicator,
fieldset[disabled] .Checkbox input + .Checkbox-indicator,
.Checkbox input[disabled] ~ .Checkbox-text,
fieldset[disabled] .Checkbox input ~ .Checkbox-text {
opacity: 0.4;
cursor: auto;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.Checkbox input[type="checkbox"]:focus + .Checkbox-indicator,
.Checkbox.focus .Checkbox-indicator {
box-shadow: inset 0 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 1px 3px var(--box-shadow);
}
}
@supports (-ms-ime-align:auto) {
.Checkbox input[type="checkbox"]:focus + .Checkbox-indicator,
.Checkbox.focus .Checkbox-indicator {
box-shadow: inset 0 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 1px 3px var(--box-shadow);
}
}
.Checkbox-small .svg-icon {
width: 16px;
height: 16px;
}
.Checkbox-medium .svg-icon {
width: 20px;
height: 20px;
}
.Checkbox-large .svg-icon {
width: 24px;
height: 24px;
} | 0.450601 | 0.086054 |
.sub-nav dd a {
padding: 0.1rem 0.5rem;
}
.hero-unit > .button.secondary {
background-color: #ffffff;
}
.text-together {
display: inline-block;
}
.container {
padding-left: 10px;
padding-right: 10px;
}
.firstletter {
float: left;
color: #4ad;
font-size: 75px;
line-height: 60px;
padding-top: 8px;
padding-right: 4px;
padding-left: 4px;
font-family: Georgia;
}
.avatar {
border-radius: 50%;
max-height: 125px;
float: right;
margin-left: 24px;
margin-bottom: 24px;
}
.badges {
display: inline-block;
}
.top-bar {
margin-bottom: 60px;
}
.home-container {
margin: auto;
max-width: 850px;
}
.home-hero-unit {
margin: auto;
width: 100%;
text-align: justify;
}
.home-hero-unit.170 {
min-height: 170px;
}
.home-hero-unit.140 {
min-height: 140px;
}
.hero-units {
border-style: solid;
border-width: 1px;
border-color: #d8d8d8;
background: #f2f2f2;
}
.hero-unit {
margin: auto;
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
max-width: 850px;
}
.hero-unit-right {
display: block;
float: right;
margin-left: 24px;
}
.hero-unit img {
margin: auto;
margin-bottom: 10px;
max-width: 267px;
max-height: 200px;
}
.hero-unit p {
text-align: justify;
}
.semi-avatar {
margin-right: 16px;
float: left;
max-height: 100px;
}
.sub-nav {
background-color: #f2f2f2;
padding: 10px 10px 10px 0;
}
.sub-nav dt, .sub-nav dd {
margin-top: 10px;
margin-bottom: 10px;
}
.no-orbit-bottom {
padding-bottom: 30px;
}
.items-short {
margin-top: 30px;
}
.item-short {
width: 100%;
}
.item-short > .th {
width: 100%;
padding: 5px;
}
.item-short-hero > .th {
background-color: #f2f2f2;
border-color: #f2f2f2;
}
.item-short > .th > p {
text-align: justify;
color: #000000;
}
.item-short img {
max-width: 267px;
max-height: 200px;
}
.item-short-img {
float: left;
width: auto;
margin-right: 24px;
}
.item-short-img-small {
margin-bottom: 10px;
}
.category-links {
margin-top: 60px;
margin-bottom: 60px;
padding-left: 0px;
padding-right: 0px;
}
.category-links > li h4 {
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
color: #008CBA;
}
.category-links > li p {
padding-left: 10px;
padding-right: 10px;
color: #000000;
}
.category-img {
width: 100%;
}
.category-img > img {
display: block;
margin-left: auto;
margin-right: auto;
}
.category-img-productions {
background: #319966;
}
.item-images {
max-width: 300px;
}
.item-images.show-for-small-only {
margin: auto;
margin-bottom: 10px;
}
.item-images.show-for-medium-up {
margin-left: 35px;
float: right;
}
.item-images > div {
background-color: #f2f2f2;
border-style: solid;
border-width: 1px;
border-color: #d8d8d8;
}
.item-images img {
width: 300px;
}
.item-images p {
margin: 8px;
}
.item-page p {
text-align: justify;
}
.youtube-videos {
overflow: hidden;
margin-top: 30px;
}
.youtube-video {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
margin-bottom: 15px;
}
.youtube-video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.media-content {
margin-top: 30px;
margin-bottom: 30px;
}
.flash-content {
width: 100%;
display: inline-block;
position: relative;
}
.flash-content:after {
padding-top: 56.25%;
display: block;
content: ' ';
}
.flash-content object {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.footer-back {
background: url(/static/img/footer.png) no-repeat center bottom;
min-height: 160px;
padding-top: 3em;
}
.footer-small {
margin-top: 40px;
margin-bottom: 20px;
}
.footer-back {
margin-top: 60px;
}
.footer a {
color: #ffffff;
}
.footer ul {
list-style-type: none;
text-align: center;
}
.footer-small li {
margin-top: 10px;
margin-bottom: 10px;
}
.footer-back li {
display: inline;
margin-left: 20px;
margin-right: 20px;
}
.footer-small a {
color: #000000;
}
.footer-small a:hover {
color: #999999;
}
.footer-back a:hover {
color: #000000;
}
.social {
margin-right: 8px;
font-size: 22px;
}
.footer .fa-twitter {
position: relative;
top: 2px;
margin-right: 4px;
} | static/css/revolutiontech.css | .sub-nav dd a {
padding: 0.1rem 0.5rem;
}
.hero-unit > .button.secondary {
background-color: #ffffff;
}
.text-together {
display: inline-block;
}
.container {
padding-left: 10px;
padding-right: 10px;
}
.firstletter {
float: left;
color: #4ad;
font-size: 75px;
line-height: 60px;
padding-top: 8px;
padding-right: 4px;
padding-left: 4px;
font-family: Georgia;
}
.avatar {
border-radius: 50%;
max-height: 125px;
float: right;
margin-left: 24px;
margin-bottom: 24px;
}
.badges {
display: inline-block;
}
.top-bar {
margin-bottom: 60px;
}
.home-container {
margin: auto;
max-width: 850px;
}
.home-hero-unit {
margin: auto;
width: 100%;
text-align: justify;
}
.home-hero-unit.170 {
min-height: 170px;
}
.home-hero-unit.140 {
min-height: 140px;
}
.hero-units {
border-style: solid;
border-width: 1px;
border-color: #d8d8d8;
background: #f2f2f2;
}
.hero-unit {
margin: auto;
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
max-width: 850px;
}
.hero-unit-right {
display: block;
float: right;
margin-left: 24px;
}
.hero-unit img {
margin: auto;
margin-bottom: 10px;
max-width: 267px;
max-height: 200px;
}
.hero-unit p {
text-align: justify;
}
.semi-avatar {
margin-right: 16px;
float: left;
max-height: 100px;
}
.sub-nav {
background-color: #f2f2f2;
padding: 10px 10px 10px 0;
}
.sub-nav dt, .sub-nav dd {
margin-top: 10px;
margin-bottom: 10px;
}
.no-orbit-bottom {
padding-bottom: 30px;
}
.items-short {
margin-top: 30px;
}
.item-short {
width: 100%;
}
.item-short > .th {
width: 100%;
padding: 5px;
}
.item-short-hero > .th {
background-color: #f2f2f2;
border-color: #f2f2f2;
}
.item-short > .th > p {
text-align: justify;
color: #000000;
}
.item-short img {
max-width: 267px;
max-height: 200px;
}
.item-short-img {
float: left;
width: auto;
margin-right: 24px;
}
.item-short-img-small {
margin-bottom: 10px;
}
.category-links {
margin-top: 60px;
margin-bottom: 60px;
padding-left: 0px;
padding-right: 0px;
}
.category-links > li h4 {
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
color: #008CBA;
}
.category-links > li p {
padding-left: 10px;
padding-right: 10px;
color: #000000;
}
.category-img {
width: 100%;
}
.category-img > img {
display: block;
margin-left: auto;
margin-right: auto;
}
.category-img-productions {
background: #319966;
}
.item-images {
max-width: 300px;
}
.item-images.show-for-small-only {
margin: auto;
margin-bottom: 10px;
}
.item-images.show-for-medium-up {
margin-left: 35px;
float: right;
}
.item-images > div {
background-color: #f2f2f2;
border-style: solid;
border-width: 1px;
border-color: #d8d8d8;
}
.item-images img {
width: 300px;
}
.item-images p {
margin: 8px;
}
.item-page p {
text-align: justify;
}
.youtube-videos {
overflow: hidden;
margin-top: 30px;
}
.youtube-video {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
margin-bottom: 15px;
}
.youtube-video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.media-content {
margin-top: 30px;
margin-bottom: 30px;
}
.flash-content {
width: 100%;
display: inline-block;
position: relative;
}
.flash-content:after {
padding-top: 56.25%;
display: block;
content: ' ';
}
.flash-content object {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.footer-back {
background: url(/static/img/footer.png) no-repeat center bottom;
min-height: 160px;
padding-top: 3em;
}
.footer-small {
margin-top: 40px;
margin-bottom: 20px;
}
.footer-back {
margin-top: 60px;
}
.footer a {
color: #ffffff;
}
.footer ul {
list-style-type: none;
text-align: center;
}
.footer-small li {
margin-top: 10px;
margin-bottom: 10px;
}
.footer-back li {
display: inline;
margin-left: 20px;
margin-right: 20px;
}
.footer-small a {
color: #000000;
}
.footer-small a:hover {
color: #999999;
}
.footer-back a:hover {
color: #000000;
}
.social {
margin-right: 8px;
font-size: 22px;
}
.footer .fa-twitter {
position: relative;
top: 2px;
margin-right: 4px;
} | 0.618665 | 0.118896 |
.w-layout-grid {
display: -ms-grid;
display: grid;
grid-auto-columns: 1fr;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
grid-row-gap: 16px;
grid-column-gap: 16px;
}
.navbar {
background-color: #fff;
}
.navigation-item {
padding-right: 12px;
padding-left: 12px;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.navigation-item.w--current {
color: #333;
}
.nav-link-2 {
font-family: Montserrat, sans-serif;
}
.nav-link-3 {
font-family: Montserrat, sans-serif;
}
.logo {
background-image: url('../images/r-finder-logo.png');
background-position: 50% 50%;
background-size: contain;
background-repeat: no-repeat;
font-size: 14px;
line-height: 15px;
}
.home-link {
margin-left: 8px;
padding-right: 5px;
padding-left: 5px;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.home-link.w--current {
color: #333;
font-weight: 300;
}
.navigation-logo {
margin-top: 11px;
margin-left: 10px;
}
.navigation-items {
display: inline;
margin-left: 0px;
}
.navigation {
position: static;
top: 0px;
margin-top: 0px;
margin-bottom: 10px;
background-color: #fff;
box-shadow: 1px 1px 10px -5px #000;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
font-family: quasimoda, sans-serif;
}
.login-button {
margin-top: 14px;
margin-left: 15px;
padding: 6px 30px;
border-radius: 18px;
background-color: #dc3545;
box-shadow: 1px 3px 4px -3px #000;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 16px;
font-weight: 300;
}
.login-button:hover {
box-shadow: 0 2px 8px -2px #000;
}
.section {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
min-height: 75vh;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/google-ads-dashboard.jpg');
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/google-ads-dashboard.jpg');
background-position: 0px 0px, 50% 50%;
background-size: auto, auto;
background-repeat: repeat, no-repeat;
}
.container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.form-block {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: baseline;
-webkit-align-items: baseline;
-ms-flex-align: baseline;
align-items: baseline;
background-color: #fff;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.div-block {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.registration-container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-left: 0px;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-flex: 0;
-webkit-flex: 0 100%;
-ms-flex: 0 100%;
flex: 0 100%;
grid-auto-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.form {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: auto;
max-width: 80%;
margin-top: 0px;
margin-bottom: 0px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-color: #fff;
}
.text-field {
margin-top: 15px;
margin-bottom: 15px;
padding-top: 5px;
padding-bottom: 5px;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
border-radius: 20px;
font-family: Montserrat, sans-serif;
font-size: 12px;
line-height: 20px;
font-weight: 300;
}
.text-field-2 {
font-family: Montserrat, sans-serif;
font-weight: 500;
}
.get-started-button {
display: inline-block;
padding: 8px 20px;
border-radius: 10px;
background-color: #dc3545;
box-shadow: 1px 1px 9px -4px #000;
font-family: quasimoda, sans-serif;
color: #fff;
font-weight: 300;
text-align: center;
}
.text-field-3 {
font-family: Montserrat, sans-serif;
font-weight: 500;
}
.form-wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
max-width: 450px;
margin-top: 20px;
margin-right: 7%;
margin-bottom: 0px;
padding: 20px 10px 35px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
-webkit-box-ordinal-group: 1;
-webkit-order: 0;
-ms-flex-order: 0;
order: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 40vw;
-ms-flex: 0 0 40vw;
flex: 0 0 40vw;
border-radius: 20px;
background-color: #fff;
box-shadow: 3px 3px 11px -6px #000;
text-align: left;
}
.heading {
margin-bottom: 0px;
padding-right: 0px;
padding-left: 0px;
font-family: quasimoda, sans-serif;
font-size: 29px;
line-height: 37px;
font-weight: 300;
text-align: center;
letter-spacing: 0.1px;
}
.form-block-2 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin: 0px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.paragraph {
font-family: Montserrat, sans-serif;
color: grey;
font-weight: 300;
}
.paragraph.are-you-a {
padding-top: 9px;
}
.button {
display: block;
margin-top: 10px;
margin-bottom: 15px;
padding-right: 5px;
padding-left: 30px;
background-color: #eceff1;
background-image: url('../images/google-logo.png');
background-position: 8vw 50%;
background-size: 30px;
background-repeat: no-repeat;
font-family: Montserrat, sans-serif;
color: #000;
font-weight: 600;
text-align: center;
}
.heading-2 {
font-family: Montserrat, sans-serif;
font-weight: 500;
text-align: center;
}
.section-title {
margin-top: auto;
margin-bottom: 10px;
font-family: quasimoda, sans-serif;
font-weight: 500;
text-align: center;
}
.section-description {
display: inline-block;
max-width: 100%;
margin-top: 0px;
margin-bottom: 41px;
font-family: quasimoda, sans-serif;
color: grey;
font-size: 15px;
line-height: 25px;
font-weight: 100;
text-align: left;
}
.grid {
grid-template-areas: "Area" "Area";
-ms-grid-columns: 1fr 2fr;
grid-template-columns: 1fr 2fr;
}
.demonstration-grid {
margin-top: 0px;
margin-bottom: 0px;
padding-right: 5%;
padding-left: 5%;
justify-items: start;
grid-column-gap: 43px;
grid-row-gap: 35px;
-ms-grid-columns: 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
text-align: left;
}
.demonstration {
margin-top: 0px;
margin-bottom: 0px;
text-align: left;
}
.heading-3 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-family: Montserrat, sans-serif;
}
.footer {
padding-top: 5px;
padding-bottom: 5px;
background-color: #dc3545;
}
.demonstration-section {
margin-top: 40px;
margin-bottom: 60px;
opacity: 1;
}
.customers-section {
margin-bottom: 0px;
padding-bottom: 26px;
background-color: transparent;
font-family: quasimoda, sans-serif;
text-align: center;
}
.image {
max-width: 70%;
margin-top: 16px;
text-align: center;
}
.customer-container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 0px;
padding-top: 30px;
padding-bottom: 30px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.heading-4 {
font-family: Montserrat, sans-serif;
color: #fff;
text-align: center;
}
.about-title {
margin-top: 32px;
margin-bottom: 40px;
font-family: quasimoda, sans-serif;
font-size: 30px;
line-height: 30px;
font-weight: 300;
text-align: center;
}
.about-description {
margin-top: 30px;
margin-bottom: 10px;
font-family: quasimoda, sans-serif;
text-align: center;
}
.heading-6 {
margin-bottom: 20px;
padding-right: 60px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
font-size: 22px;
font-weight: 300;
}
.heading-7 {
margin-bottom: 20px;
padding-right: 60px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
font-size: 22px;
font-weight: 300;
}
.paragraph-3 {
padding-right: 60px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.paragraph-4 {
margin-right: 0px;
padding-right: 60px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
}
.columns {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 10px;
}
.column {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.column-2 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.sign-up-button {
padding: 4px 20px;
border-radius: 12px;
background-color: #dc3545;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 170ms ease-out;
transition: all 170ms ease-out;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
text-transform: none;
white-space: normal;
}
.sign-up-button:hover {
box-shadow: 0 2px 13px -3px #1a1a1a;
}
.button-3 {
border-radius: 20px;
background-color: #dc3545;
font-weight: 700;
}
.splash-section {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
min-height: 75vh;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/google-ads-dashboard.jpg');
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/google-ads-dashboard.jpg');
background-position: 0px 0px, 50% 50%;
background-size: auto, auto;
background-repeat: repeat, no-repeat;
}
.button-4 {
border-radius: 20px;
background-color: #dc3545;
font-family: Montserrat, sans-serif;
font-weight: 600;
}
.learn-more-button {
padding-right: 20px;
padding-left: 20px;
border-radius: 8px;
background-color: #dc3545;
font-family: Montserrat, sans-serif;
font-weight: 600;
}
.column-1 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.action-container {
margin-top: 24px;
}
.google-button {
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
.story-section {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.mission-section {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.team-section {
margin-bottom: 0px;
}
.kristian-photo {
border-radius: 100%;
}
.tanmay-photo {
border-radius: 20%;
}
.team-member-card {
margin-bottom: 20px;
}
.team-member-name {
margin-bottom: 0px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.body {
font-family: Montserrat, sans-serif;
}
.body-2 {
font-family: Montserrat, sans-serif;
}
.team-member-role {
margin-top: 3px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.contact-section {
margin-top: 100px;
}
.send-button {
display: block;
margin-right: auto;
margin-left: auto;
padding-right: 30px;
padding-left: 30px;
border-radius: 20px;
background-color: #dc3545;
font-weight: 600;
}
.contact-form-black {
-webkit-box-flex: 0;
-webkit-flex: 0 33vw;
-ms-flex: 0 33vw;
flex: 0 33vw;
}
.contact-form-title {
margin-bottom: 20px;
font-weight: 500;
text-align: center;
}
.utility-page-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100vw;
height: 100vh;
max-height: 100%;
max-width: 100%;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.utility-page-content {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 260px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
}
.image-2 {
max-width: 70%;
margin-left: 17%;
padding-top: 16px;
padding-left: 0px;
}
.column-3 {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
text-align: left;
}
.column-4 {
display: block;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.section-2 {
padding-top: 62px;
}
.container-2 {
margin-right: 15%;
margin-left: 4%;
}
.div-block-2 {
margin-right: 5%;
margin-left: 5%;
}
.grid-2 {
margin-top: 62px;
margin-bottom: 40px;
padding-right: 60px;
padding-left: 60px;
justify-items: end;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-auto-flow: row;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.homepage-subtitle {
margin-top: 10px;
margin-bottom: 30px;
padding-right: 10px;
padding-left: 20px;
font-size: 15px;
font-weight: 300;
text-align: center;
}
.div-block-3 {
margin-top: 20px;
text-align: center;
}
.div-block-4 {
text-align: center;
}
.grid-3 {
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 20px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.button-5 {
display: block;
margin-left: 10px;
padding: 13px 35px;
border-style: solid;
border-width: 0px;
border-color: rgba(0, 0, 0, 0.56);
border-radius: 7px;
background-color: #f4f4f4;
box-shadow: 1px 1px 6px -2px #000;
color: #514d4d;
text-align: center;
}
.button-6 {
padding: 20px 35px;
border-radius: 7px;
text-align: left;
}
.button-5-copy {
display: block;
margin-right: 10px;
padding: 13px 30px;
border-style: solid;
border-width: 0px;
border-color: rgba(0, 0, 0, 0.56);
border-radius: 7px;
background-color: #f4f4f4;
box-shadow: 1px 1px 6px -2px #000;
-webkit-transition: box-shadow 275ms ease;
transition: box-shadow 275ms ease;
color: #514d4d;
text-align: center;
}
.button-5-copy:hover {
padding: 13px 30px;
box-shadow: 1px 1px 16px -6px #000;
-webkit-transition: margin-right 200ms ease, margin-bottom 200ms ease, margin-left 200ms ease, box-shadow 200ms ease;
transition: margin-right 200ms ease, margin-bottom 200ms ease, margin-left 200ms ease, box-shadow 200ms ease;
}
.div-block-5 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 70px;
height: 70px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
border-radius: 100%;
background-color: #c71919;
box-shadow: 1px 1px 14px -5px #000;
color: #fff;
font-size: 18px;
text-align: center;
}
.image-3 {
text-align: right;
}
.image-4 {
display: inline-block;
min-width: 100%;
padding-left: 20px;
text-align: right;
}
.three-steps {
display: block;
font-weight: 400;
text-align: right;
}
.div-block-6 {
padding-right: 28px;
text-align: right;
}
.bold-text {
font-size: 25px;
}
.container-3 {
font-family: quasimoda, sans-serif;
text-align: center;
}
.grid-4 {
-ms-grid-columns: 1fr 1.5fr;
grid-template-columns: 1fr 1.5fr;
}
.div-block-7 {
display: block;
padding-top: 20px;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
text-align: center;
}
.grid-5 {
margin-top: 20px;
grid-column-gap: 54px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-8 {
width: 100%;
text-align: right;
}
.div-block-9 {
display: block;
text-align: right;
}
.div-block-10 {
text-align: right;
}
.div-block-11 {
text-align: right;
}
.image-5 {
max-height: 500px;
}
.image-6 {
position: static;
display: block;
text-align: left;
}
.div-block-12 {
display: inline-block;
margin-top: -107px;
padding-top: 0px;
text-align: center;
}
.image-7 {
display: block;
text-align: left;
}
.image-8 {
display: block;
}
.heading-8 {
margin-top: 5px;
margin-bottom: 3px;
font-size: 40px;
font-weight: 200;
text-align: left;
}
.image-9 {
display: inline-block;
padding-right: 10px;
padding-left: 15px;
text-align: center;
}
.div-block-13 {
text-align: right;
}
.image-10 {
display: block;
padding-left: 10px;
text-align: center;
}
.div-block-14 {
text-align: right;
}
.grid-6 {
-ms-grid-columns: 0.25fr 1fr;
grid-template-columns: 0.25fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-7 {
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.section-description-2 {
margin-top: 0px;
font-size: 15px;
font-weight: 100;
text-align: left;
}
.div-block-15 {
margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}
.services-button {
margin-right: 20px;
margin-left: 20px;
padding: 20px 40px;
border-radius: 6px;
}
.grid-8 {
-ms-grid-columns: 1fr 0.75fr;
grid-template-columns: 1fr 0.75fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.ad-management-grid {
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.ad-management-grid.feature-grid-template {
margin-top: 10px;
grid-column-gap: 73px;
-ms-grid-columns: 1fr 0.6fr;
grid-template-columns: 1fr 0.6fr;
}
.grid-9 {
-ms-grid-columns: 0.75fr;
grid-template-columns: 0.75fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.text-block {
font-size: 15px;
}
.subpoint-title {
font-family: quasimoda, sans-serif;
font-size: 17px;
font-weight: 400;
}
.subpoint-explanation {
margin-top: 10px;
font-family: quasimoda, sans-serif;
line-height: 19px;
font-weight: 200;
}
.text-block-2 {
text-align: center;
}
.heading-9 {
text-align: center;
}
.what-s-included-heading {
margin-top: 17px;
margin-bottom: 1px;
font-family: quasimoda, sans-serif;
font-size: 30px;
font-weight: 300;
text-align: center;
}
.what-s-included-intro-explanation {
padding-top: 10px;
padding-bottom: 10px;
font-family: quasimoda, sans-serif;
color: #5e5e5e;
font-size: 16px;
line-height: 22px;
font-weight: 300;
text-align: center;
}
.container-4 {
margin-top: 10px;
margin-bottom: 20px;
padding-top: 20px;
padding-bottom: 20px;
}
.subpoint-wrapper {
margin-top: 5px;
margin-bottom: 5px;
}
.heading-10 {
text-align: center;
}
.div-block-16 {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}
.button-7 {
padding: 20px 60px;
}
.business-nonprofit-button {
margin-right: 20px;
margin-left: 20px;
padding: 30px 60px;
border-radius: 12px;
}
.image-11 {
opacity: 0.91;
text-align: right;
text-decoration: none;
}
.div-block-17 {
text-align: right;
}
.heading-11 {
font-size: 22px;
}
.div-block-18 {
max-width: 70%;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.heading-12 {
font-size: 20px;
line-height: 30px;
font-weight: 300;
}
.section-3 {
margin-bottom: 100px;
font-family: quasimoda, sans-serif;
}
.div-block-19 {
padding-top: 60px;
}
.div-block-20 {
display: block;
margin-top: 0px;
margin-bottom: auto;
text-align: center;
}
.grid-10 {
-ms-grid-columns: 1fr 3fr 1fr;
grid-template-columns: 1fr 3fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-12 {
margin-top: 1px;
margin-bottom: 10px;
padding-bottom: 0px;
text-align: center;
}
.footer-link-text {
margin-top: 20px;
padding-right: 0px;
padding-left: 0px;
font-family: quasimoda, sans-serif;
color: #fff;
text-align: center;
text-decoration: none;
text-transform: none;
}
.link-block {
text-decoration: none;
}
.link-block.link-block-footer {
padding-right: 20px;
padding-left: 20px;
}
.link-block-2 {
padding-right: 20px;
padding-left: 20px;
text-align: center;
text-decoration: none;
}
.link-block-3 {
padding-right: 20px;
padding-left: 20px;
text-decoration: none;
}
.div-block-21 {
padding-top: 20px;
text-align: center;
}
.grid-11 {
margin-top: 8px;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: uppercase;
}
.footer-link-block {
padding-right: 15px;
padding-bottom: 15px;
padding-left: 15px;
text-decoration: none;
}
.div-block-22 {
position: fixed;
width: 100%;
height: 10%;
box-shadow: 0 0 8px 9px #000;
opacity: 0.07;
-webkit-filter: blur(5px);
filter: blur(5px);
}
.services-tab {
display: inline-block;
margin-right: 40px;
margin-left: 40px;
padding: 20px 40px;
grid-auto-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
border: 0.5px none #000;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
text-transform: uppercase;
}
.services-tab.w--current {
background-color: #dc3545;
color: #fff;
text-transform: uppercase;
}
.tabs-menu {
margin-bottom: 0px;
text-align: center;
}
.section-4 {
margin-bottom: 73px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.container-5 {
margin-top: 60px;
}
.business-vs-nonprofits {
margin-right: 100px;
margin-left: 100px;
padding: 35px 80px;
border-radius: 8px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: uppercase;
}
.business-vs-nonprofits.w--current {
background-color: #dc3545;
color: #fff;
}
.business-vs-nonprofits.w--current {
padding-right: 80px;
padding-left: 80px;
box-shadow: 1px 1px 4px -2px #000;
text-transform: uppercase;
}
.tabs-content {
margin-top: 20px;
}
.tabs-menu-2 {
margin-top: 9px;
margin-bottom: 60px;
text-align: center;
}
.text-block-3 {
text-transform: uppercase;
}
.text-block-4 {
text-transform: uppercase;
}
.grid-12 {
-ms-grid-columns: 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-13 {
grid-row-gap: 5px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.div-block-23 {
margin-top: 5px;
}
.timeline-block {
position: -webkit-sticky;
position: sticky;
z-index: -1;
display: inline-block;
max-width: 90%;
margin-top: -25px;
margin-bottom: 33px;
margin-left: -55px;
padding-right: 74px;
padding-left: 57px;
border-style: solid;
border-width: 1px;
border-color: #f5f5f5;
border-radius: 20px;
box-shadow: 3px 3px 7px -7px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.text-block-5 {
display: block;
padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}
.text-block-5.invisible-text-block {
display: none;
padding: 0px;
color: #fff;
}
.div-block-24 {
text-align: center;
}
.timeline-title {
font-family: quasimoda, sans-serif;
font-size: 20px;
font-weight: 300;
}
.grid-14 {
margin-top: 38px;
grid-auto-flow: row;
grid-row-gap: 16px;
-ms-grid-columns: minmax(0px, 0.25fr) 1fr;
grid-template-columns: minmax(0px, 0.25fr) 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.div-block-25 {
position: relative;
z-index: 2;
display: block;
padding: 15px 21px 16px 22px;
border-radius: 100%;
background-color: #dc3545;
box-shadow: 1px 1px 4px -2px #000;
color: #fff;
font-size: 20px;
text-align: center;
text-decoration: none;
}
.what-we-do-description {
margin-top: -13px;
padding-right: 40px;
padding-left: 40px;
color: #5e5e5e;
font-size: 16px;
line-height: 22px;
text-align: left;
}
.what-we-do-heading {
margin-bottom: 40px;
padding-right: 40px;
padding-left: 40px;
font-size: 30px;
font-weight: 300;
text-align: left;
}
.container-6 {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
min-height: 410%;
background-color: #949494;
-o-object-fit: fill;
object-fit: fill;
}
.section-5 {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: -10;
background-color: #a5a5a5;
opacity: 1;
}
.grid-15 {
grid-column-gap: 60px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.container-7 {
margin-top: 82px;
padding-right: 25px;
padding-left: 25px;
}
.div-block-26 {
border-style: none;
border-width: 1px;
border-color: #000;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
}
.section-6 {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 0;
background-color: #fff;
}
.section-6.login-modal {
z-index: 1000;
display: block;
opacity: 1;
}
.sign-in-title {
margin-top: 40px;
margin-bottom: 20px;
padding-left: 40px;
font-family: quasimoda, sans-serif;
font-size: 25px;
font-weight: 300;
text-align: left;
}
.login-text-field {
border-style: solid;
border-width: 1px;
border-color: #e2e2e2;
border-radius: 6px;
box-shadow: inset 0 1px 1px -5px #000;
opacity: 1;
}
.form-block-3 {
padding-right: 40px;
padding-left: 40px;
text-align: center;
}
.field-label {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.sign-in-button {
margin-top: 15px;
padding: 6px 40px;
border-radius: 11px;
background-color: #dc3545;
box-shadow: 1px 1px 4px -2px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.div-block-27 {
text-align: right;
}
.button-8 {
position: absolute;
margin-top: -15px;
margin-left: -26px;
border-radius: 20px;
background-color: #dc3545;
box-shadow: 1px 1px 7px -3px #000;
}
.div-block-28 {
text-align: center;
}
.grid-16 {
padding-right: 40px;
padding-left: 40px;
grid-column-gap: 29px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-13 {
position: static;
top: -122px;
z-index: 1;
}
.div-block-29 {
display: block;
margin-bottom: 15px;
padding-bottom: 0px;
text-align: center;
}
.company-logo {
margin-right: 20px;
margin-left: 20px;
}
.div-block-30 {
display: inline;
margin-top: -85px;
padding: 10px 20px;
grid-auto-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
border-radius: 9px;
}
.div-block-31 {
margin-bottom: 22px;
padding-top: 0px;
text-align: center;
}
.image-14 {
position: relative;
top: 0px;
z-index: -1;
display: inline-block;
padding-top: 0px;
-webkit-filter: blur(0px);
filter: blur(0px);
}
.div-block-32 {
position: relative;
top: -160%;
margin-top: -29%;
margin-bottom: 35px;
padding: 15px 25px 15px 20px;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
}
.div-block-33 {
position: relative;
display: block;
}
.container-8 {
margin-top: 14px;
padding-bottom: 27px;
text-align: center;
}
.utility-page-form {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
.dashboard-navigation {
background-color: #fff;
box-shadow: 1px 1px 10px -5px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: uppercase;
}
.image-15 {
margin-left: 22px;
opacity: 0.38;
color: #868686;
text-align: center;
}
.link-block-4 {
padding-top: 15px;
padding-right: 22px;
}
.link-block-4.dashboard-tabs {
padding-bottom: 13px;
}
.image-16 {
display: inline-block;
margin-top: 5px;
padding-top: 0px;
padding-bottom: 8px;
padding-left: 0px;
}
.nav-link-4 {
padding-right: 22px;
padding-left: 22px;
}
.numbers {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.container-9 {
margin-top: 24px;
}
.heading-13 {
margin-top: 14px;
margin-bottom: 0px;
font-size: 29px;
line-height: 38px;
font-weight: 300;
text-align: center;
}
.div-block-34 {
margin-top: -2px;
margin-bottom: 6px;
text-align: center;
}
.div-block-35 {
margin-bottom: 31px;
padding: 40px 40px 0px;
border-radius: 10px;
box-shadow: 1px 1px 4px -2px #000;
}
.div-block-35.graph-div {
margin-top: 15px;
}
.grid-17 {
margin-top: 0px;
padding: 10px 70px;
grid-column-gap: 8px;
-ms-grid-columns: 0.45fr 0.7fr;
grid-template-columns: 0.45fr 0.7fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-17.web-visits-grid {
margin-top: 61px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
border-radius: 18px;
}
.grid-17.cpc-grid {
margin-top: 10px;
}
.metric-buttons {
margin-right: 10px;
margin-left: 10px;
padding: 5px 20px;
border-radius: 7px;
background-color: #f7f7f7;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
color: #757575;
}
.metric-buttons:hover {
box-shadow: 2px 2px 5px -2px #000;
}
.metric-buttons.clicks-button {
background-color: #f7f7f7;
color: #757575;
}
.metric-buttons.impressions-button {
background-color: #f7f7f7;
color: #757575;
}
.metric-buttons.cpc-button {
background-color: rgba(247, 247, 247, 0);
background-image: linear-gradient(153deg, #97c0d0, rgba(7, 144, 185, 0.87));
color: #fff;
}
.div-block-36 {
margin-top: 0px;
margin-bottom: 9px;
text-align: center;
}
.text-block-6 {
margin-top: 0px;
margin-bottom: 0px;
font-size: 20px;
font-weight: 400;
text-align: center;
}
.text-block-6.visits-header {
margin-top: 0px;
margin-right: 40px;
margin-bottom: 22px;
padding-right: 0px;
color: #fff;
cursor: pointer;
}
.text-block-6.visits-count {
display: block;
margin-top: 5px;
margin-left: -10px;
color: #fff;
font-size: 45px;
line-height: 52px;
cursor: pointer;
}
.text-block-6.visits-count.cpc-count {
margin-left: 7px;
text-align: left;
}
.text-block-6.visits-count.avg-cpc {
padding-left: 41px;
}
.text-block-6.visits-subheader {
margin-top: 12px;
color: #f5f5f5;
font-size: 13px;
font-weight: 300;
}
.button-9 {
margin-bottom: 10px;
padding: 5px 40px;
border-radius: 20px;
background-color: #fdfdfd;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 325ms ease;
transition: all 325ms ease;
color: #8d8d8d;
}
.button-9:hover {
box-shadow: 2px 2px 5px -2px #000;
}
.div-block-37 {
margin-bottom: 10px;
}
.div-block-38 {
display: block;
margin-top: -17px;
}
.div-block-39 {
display: block;
}
.container-10 {
margin-top: 90px;
margin-bottom: 0px;
}
.image-17 {
margin-top: 20px;
text-align: center;
}
.container-11 {
text-align: center;
}
.text-block-7 {
margin-top: 20px;
}
.employee-photo {
max-width: 80%;
border-radius: 100%;
box-shadow: 3px 3px 5px -4px #000;
text-align: center;
}
.column-5 {
padding-right: 10px;
padding-left: 100px;
}
.container-12 {
margin-top: 40px;
}
.column-6 {
padding-right: 100px;
}
.grid-18 {
margin-right: 100px;
margin-left: 100px;
padding-right: 0px;
padding-left: 0px;
grid-column-gap: 10px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-19 {
-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.container-13 {
margin-top: 40px;
}
.education-description {
margin-top: 5px;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
text-align: center;
}
.div-block-40 {
text-align: center;
}
.div-block-41 {
text-align: center;
}
.div-block-42 {
text-align: center;
}
.action-button {
display: inline-block;
margin-top: 20px;
padding: 10px 40px;
border-radius: 20px;
background-color: #dc3545;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 200ms ease-out;
transition: all 200ms ease-out;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: uppercase;
}
.action-button:hover {
box-shadow: 1px 1px 13px -3px #000;
}
.action-button.keyword-view-button {
margin-top: 18px;
padding: 3px 20px;
border-radius: 8px;
box-shadow: 1px 1px 3px -2px #000;
opacity: 0.9;
font-size: 12px;
text-transform: none;
}
.action-button.keyword-view-button:hover {
box-shadow: 1px 1px 6px -2px #000;
}
.action-button.keyword-button {
margin-top: 10px;
padding: 5px 20px;
background-color: rgba(213, 87, 99, 0.23);
background-image: linear-gradient(321deg, rgba(56, 31, 241, 0.64), #8975d1);
box-shadow: none;
opacity: 0.9;
font-size: 12px;
text-transform: none;
}
.action-button.keyword-button:hover {
box-shadow: 1px 1px 10px -3px #000;
}
.action-button.keyword-button.red-keyword-button {
background-color: #dc3545;
background-image: none;
}
.action-button.save-budget-button {
display: inline;
text-align: center;
}
.action-button.update-account-button {
display: inline-block;
background-color: #3f3d56;
box-shadow: none;
opacity: 1;
text-transform: capitalize;
}
.action-button.update-account-button:hover {
box-shadow: 1px 1px 4px -2px #000;
}
.action-button.delete-r-finder-account {
position: static;
display: inline-block;
margin-top: 17px;
margin-right: auto;
margin-left: 88px;
padding: 5px 0px;
background-color: rgba(199, 199, 199, 0);
box-shadow: none;
opacity: 0.55;
color: #000;
font-size: 12px;
text-align: right;
text-decoration: underline;
text-transform: capitalize;
}
.action-button.back-to-all-ads {
position: fixed;
left: 15%;
top: 85px;
z-index: 1001;
margin-top: 0px;
padding: 7px 25px;
color: #fff;
font-size: 12px;
text-transform: uppercase;
}
.div-block-43 {
text-align: center;
}
.grid-20 {
-ms-grid-columns: 1.15fr 1fr 1fr 1fr 1.15fr;
grid-template-columns: 1.15fr 1fr 1fr 1fr 1.15fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-21 {
margin-top: 40px;
-ms-grid-columns: 0.5fr 1fr 1fr 1fr 1fr 0.5fr;
grid-template-columns: 0.5fr 1fr 1fr 1fr 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.heading-14 {
margin-top: 53px;
margin-bottom: -33px;
opacity: 1;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.text-block-8 {
margin-top: 31px;
padding-top: 20px;
padding-bottom: 20px;
font-family: quasimoda, sans-serif;
font-size: 30px;
font-weight: 300;
text-align: center;
}
.section-8 {
margin-top: 29px;
margin-bottom: 20px;
}
.grid-22 {
margin-bottom: -13px;
justify-items: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 6px;
-ms-grid-columns: 0.5fr 1fr 1fr 0.5fr;
grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-9 {
margin-top: 11px;
color: grey;
font-size: 15px;
line-height: 25px;
font-weight: 300;
}
.money-icon {
margin-top: 7px;
font-family: quasimoda-2, sans-serif;
color: #000;
font-weight: 300;
text-align: center;
}
.div-block-44 {
display: block;
}
.div-block-45 {
text-align: justify;
}
.three-steps-right {
font-weight: 400;
text-align: left;
}
.section-description-right {
margin-top: 10px;
padding-right: 139px;
color: grey;
font-size: 15px;
line-height: 25px;
font-weight: 300;
text-align: left;
}
.section-description-left {
margin-top: 10px;
padding-left: 107px;
color: grey;
font-size: 15px;
font-weight: 300;
text-align: right;
}
.image-18 {
position: relative;
left: -15px;
top: 118px;
right: -26px;
bottom: -76px;
}
.image-19 {
position: relative;
left: 45px;
top: 155px;
z-index: 1;
}
.div-block-46 {
margin-top: -60px;
padding-top: 0px;
}
.image-20 {
position: relative;
left: -131px;
top: 10px;
}
.text-block-10 {
margin-top: -10px;
margin-bottom: 4px;
padding-top: 0px;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 12px;
font-weight: 300;
text-decoration: none;
}
.div-block-47 {
text-align: center;
text-decoration: none;
}
.grid-23 {
padding-top: 10px;
padding-right: 40px;
}
.link-block-6 {
text-decoration: none;
}
.get-started-modal {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 1000;
display: block;
background-color: #fff;
}
.grid-24 {
padding-right: 20px;
padding-left: 20px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 95px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.container-15 {
margin-top: 10px;
padding-right: 20px;
padding-left: 20px;
}
.heading-15 {
margin-top: 35px;
margin-bottom: 66px;
padding-right: 230px;
padding-left: 230px;
font-family: quasimoda, sans-serif;
font-size: 29px;
line-height: 40px;
font-weight: 300;
text-align: center;
}
.div-block-49 {
position: relative;
left: 4px;
top: 60px;
display: inline-block;
padding: 12px 15px;
border-radius: 100%;
background-color: #dc3545;
box-shadow: 1px 1px 4px -1px #000;
font-size: 25px;
}
.div-block-50 {
color: #fff;
text-align: right;
}
.div-block-51 {
position: relative;
z-index: 50;
padding: 20px 40px;
border-radius: 10px;
box-shadow: 1px 1px 4px -2px #000;
font-family: quasimoda, sans-serif;
}
.text-block-12 {
display: block;
margin-top: 20px;
margin-bottom: 20px;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.form-2 {
margin-top: 9px;
text-align: center;
}
.field-label-2 {
margin-bottom: 3px;
text-align: left;
}
.field-label-3 {
margin-bottom: 3px;
text-align: left;
}
.text-field-4 {
border-radius: 3px;
}
.grid-25 {
position: relative;
top: -64px;
grid-column-gap: 0px;
-ms-grid-columns: 0.75fr 0.4fr;
grid-template-columns: 0.75fr 0.4fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-52 {
margin-top: 4px;
text-align: right;
}
.text-block-13 {
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
}
.section-9 {
display: none;
opacity: 0;
}
.button-10 {
position: relative;
left: 14px;
top: 21px;
padding-top: 13px;
padding-bottom: 13px;
border-radius: 100%;
background-color: #dc3545;
box-shadow: 1px 1px 4px -1px #000;
font-size: 25px;
}
.dropdown-list {
display: none;
margin-top: -4px;
border-radius: 0px;
background-color: transparent;
}
.time-dropdown {
margin: 7px 20px;
padding: 5px 10px;
border-radius: 14px;
background-color: rgba(250, 250, 250, 0.92);
box-shadow: 1px 1px 4px -2px #000;
opacity: 0.67;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
color: #353535;
font-size: 12px;
font-weight: 300;
text-align: center;
}
.time-dropdown:hover {
box-shadow: 3px 3px 4px -2px #000;
}
.r-finder-field {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.r-finder-text-field {
border-radius: 6px;
font-weight: 300;
}
.container-16 {
margin-bottom: 6px;
}
.div-block-58 {
display: inline;
width: 90%;
height: 100%;
max-width: 370px;
margin-right: 45px;
padding-top: 27px;
padding-right: 0px;
padding-bottom: 30px;
border-radius: 20px;
box-shadow: 3px 3px 11px -6px #000;
}
.div-block-59 {
margin-top: 20px;
text-align: center;
}
.heading-16 {
font-weight: 300;
}
.heading-17 {
margin-top: 48px;
padding-right: 40px;
padding-left: 40px;
font-size: 29px;
line-height: 37px;
font-weight: 300;
text-align: center;
}
.div-block-64.but-u-special {
display: none;
}
.div-block-66 {
display: none;
}
.dashboard-tabs {
width: 170px;
margin: 8px 0px;
padding: 13px 0px;
grid-column-gap: 12px;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 11px;
background-color: hsla(0, 0%, 100%, 0);
-webkit-transition: all 375ms ease;
transition: all 375ms ease;
text-align: center;
text-transform: none;
}
.dashboard-tabs:hover {
border-radius: 11px;
background-color: rgba(255, 255, 255, 0);
box-shadow: 1px 1px 7px -2px #000;
opacity: 0.95;
color: #fff;
}
.dashboard-tabs:active {
box-shadow: 1px 1px 4px -2px #000;
}
.dashboard-tabs.w--current {
position: relative;
left: auto;
margin-right: 5px;
margin-left: 5px;
padding: 0px;
border-radius: 11px;
background-color: #fff;
box-shadow: 1px 1px 8px -4px #000;
color: #fff;
text-align: center;
text-transform: none;
}
.grid-26 {
grid-column-gap: 0px;
grid-template-areas: "Area";
-ms-grid-columns: 1fr 0px 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: minmax(auto, 1fr);
grid-template-rows: minmax(auto, 1fr);
}
.title-grid {
margin-top: 23px;
margin-bottom: -13px;
padding-left: 0px;
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 0.26fr 1fr;
grid-template-columns: 0.26fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.heading-18 {
display: inline-block;
font-family: quasimoda, sans-serif;
font-size: 48px;
font-weight: 300;
text-align: center;
}
.div-block-74 {
margin-right: 20px;
margin-left: 20px;
}
.container-17 {
margin-top: 30px;
}
.dropdown-toggle-2 {
display: inline-block;
margin-right: 10px;
margin-left: 0px;
padding: 0px 57px 0px 0px;
}
.dropdown-toggle-3 {
display: block;
margin-right: 10px;
margin-bottom: 10px;
margin-left: 10px;
padding-top: 0px;
padding-bottom: 0px;
}
.dropdown-2 {
z-index: 1;
margin-bottom: 10px;
padding: 10px 0px 10px 32px;
border-radius: 20px;
box-shadow: 0 0 0 -20px #000;
text-align: center;
}
.ad-block {
margin-top: 5px;
margin-bottom: 21px;
padding-top: 17px;
padding-bottom: 12px;
border-radius: 0vw;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 175ms ease;
transition: all 175ms ease;
}
.ad-block:hover {
box-shadow: 3px 3px 11px -4px #000;
}
.ad-block:focus {
background-image: linear-gradient(60deg, #ff7a70, #d13a2e);
opacity: 1;
}
.ad-block.experiment-ad-block {
padding-bottom: 17px;
border-radius: 4vw;
box-shadow: 1px 1px 6px -4px #000;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.ad-block.experiment-ad-block:hover {
box-shadow: 1px 1px 6px -4px #000;
}
.body-3 {
border-radius: 10px;
box-shadow: 1px 1px 4px -2px #000;
line-height: 22px;
}
.text-block-17 {
font-family: quasimoda, sans-serif;
font-size: 17px;
font-weight: 300;
}
.text-block-18 {
font-family: quasimoda, sans-serif;
font-size: 17px;
font-weight: 300;
}
.icon-2 {
margin-top: 6px;
}
.icon-3 {
margin-top: 4px;
padding-left: 10px;
opacity: 0.73;
}
.grid-27 {
padding-right: 15px;
padding-left: 15px;
-ms-grid-columns: 0.25fr 4.5fr 1fr 1fr 1fr;
grid-template-columns: 0.25fr 4.5fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.checkbox-label {
display: none;
}
.checkbox-field {
margin-bottom: 0px;
padding-left: 0px;
font-size: 20px;
text-align: left;
}
.checkbox {
display: inline;
width: 30px;
height: 30px;
margin-top: 0px;
margin-left: 0px;
border-radius: 0px;
opacity: 1;
font-size: 100px;
}
.form-block-4 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 50px;
height: 30px;
margin-bottom: 0px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.form-3 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.checkbox-div {
display: block;
margin-right: 0px;
margin-left: 34px;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
}
.form-block-5 {
font-size: 20px;
}
.checkbox-2 {
position: static;
right: 100%;
display: inline;
width: 50px;
height: 50px;
margin-left: 0px;
padding-right: 0px;
padding-left: 0px;
-webkit-transform: scale(2);
-ms-transform: scale(2);
transform: scale(2);
font-size: 100px;
line-height: 100px;
text-align: center;
}
.checkbox-label-2 {
display: none;
}
.checkbox-field-2 {
overflow: visible;
min-height: 40px;
min-width: 40px;
padding-left: 60%;
-webkit-filter: blur(0px);
filter: blur(0px);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
font-size: 40px;
-o-object-fit: fill;
object-fit: fill;
}
.html-embed {
display: inline-block;
padding-bottom: 5px;
}
.div-block-75 {
display: inline-block;
margin-left: 0px;
padding: 10px 20px 10px 32px;
}
.div-block-75:focus {
padding-left: 20px;
border-radius: 2px;
background-color: #f5f5f5;
box-shadow: 1px 1px 3px 0 #000;
opacity: 1;
}
.search-title {
margin-bottom: 0px;
padding-top: 0px;
font-family: Roboto, sans-serif;
color: #1a0dab;
font-size: 17px;
line-height: 27px;
text-align: left;
}
.search-title.deactivated-search-title {
color: #7a72cf;
}
.text-block-19 {
max-width: 400px;
margin-bottom: 1px;
font-family: Roboto, sans-serif;
color: #3c4043;
font-size: 12px;
line-height: 19px;
text-align: left;
}
.subheader-above-title {
color: #202124;
}
.subheader-above-title-wrapper {
padding-top: 1px;
padding-bottom: 0px;
color: #444;
font-size: 14px;
line-height: 18px;
text-align: left;
}
.website-link-text {
display: inline;
font-family: Roboto, sans-serif;
font-size: 13px;
line-height: 21px;
}
.text-block-20 {
display: inline;
font-family: Roboto, sans-serif;
font-size: 13px;
line-height: 21px;
font-weight: 700;
}
.grid-28 {
display: -ms-grid;
display: grid;
margin-left: 24px;
padding-right: 46px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-auto-columns: 1fr;
grid-column-gap: 6px;
grid-row-gap: 16px;
-ms-grid-columns: 0.25fr 1.75fr 0.5fr 0.25fr 0.25fr;
grid-template-columns: 0.25fr 1.75fr 0.5fr 0.25fr 0.25fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-76 {
text-align: center;
}
.text-block-21 {
font-family: quasimoda, sans-serif;
font-size: 12px;
text-align: center;
}
.text-block-22 {
display: block;
margin-top: 5px;
margin-left: 0px;
padding-top: 0px;
font-family: quasimoda, sans-serif;
font-size: 12px;
line-height: 18px;
font-weight: 300;
text-align: center;
}
.number-of-clicks {
display: block;
margin-right: 5px;
margin-left: 6px;
padding: 0px;
font-family: quasimoda, sans-serif;
font-size: 17px;
font-weight: 300;
text-align: center;
}
.cost {
display: inline;
font-family: quasimoda, sans-serif;
font-size: 25px;
font-weight: 300;
}
.dollar-sign {
display: inline;
font-family: quasimoda, sans-serif;
font-size: 25px;
font-weight: 300;
}
.div-block-77 {
text-align: center;
}
.div-block-78 {
padding: 20px;
}
.div-block-79 {
padding: 20px;
}
.text-block-23 {
display: none;
}
.image-27 {
display: block;
width: 100px;
}
.text-block-24 {
position: relative;
top: 3px;
display: inline;
padding-right: 5px;
padding-left: 5px;
color: #2a3e56;
}
.div-block-80 {
position: static;
top: 3px;
display: block;
margin-top: 13px;
margin-left: 0px;
text-align: left;
}
.div-block-81 {
margin-top: 0px;
}
.image-28 {
display: block;
margin-left: 87px;
opacity: 0.73;
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
text-align: right;
}
.div-block-82 {
margin-top: 0px;
text-align: left;
}
.keyword-modal {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 100;
display: none;
background-color: hsla(0, 0%, 100%, 0);
opacity: 0;
}
.div-block-83 {
border-radius: 11px;
box-shadow: 1px 1px 4px -2px #000;
}
.image-29 {
margin-right: 3px;
margin-bottom: -6px;
margin-left: 12px;
padding-bottom: 0px;
border-radius: 20px;
opacity: 0.79;
}
.grid-29 {
-ms-grid-columns: minmax(196px, 4.25fr);
grid-template-columns: minmax(196px, 4.25fr);
-ms-grid-rows: 62px auto;
grid-template-rows: 62px auto;
}
.image-30 {
display: inline-block;
margin-top: -9px;
margin-bottom: -4px;
margin-left: 12px;
border-radius: 20px;
text-align: left;
}
.grid-30 {
margin-top: 32px;
grid-column-gap: 0px;
-ms-grid-columns: 0.75fr 0.5fr;
grid-template-columns: 0.75fr 0.5fr;
-ms-grid-rows: 72px;
grid-template-rows: 72px;
}
.div-block-84 {
display: inline-block;
margin-top: 15px;
margin-bottom: 15px;
font-family: Roboto, sans-serif;
}
.div-block-84.ad-grid-clicks-page {
position: relative;
margin-top: 0px;
margin-bottom: 0px;
padding: 18px 15px 19px 20px;
border-radius: 20px;
-webkit-transition: top 200ms ease, border-radius 200ms ease, box-shadow 350ms ease;
transition: top 200ms ease, border-radius 200ms ease, box-shadow 350ms ease;
}
.div-block-84.ad-grid-clicks-page:hover {
top: 15px;
}
.heading-19 {
margin-top: 80px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.div-block-86 {
margin-top: 5px;
margin-bottom: 39px;
text-align: center;
}
.image-31 {
display: inline-block;
margin-top: -67px;
margin-right: 17px;
margin-left: -70px;
opacity: 0.9;
}
.dropdown-link {
border-radius: 20px;
background-color: #f5f5f5;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.dropdown-list-3 {
opacity: 1;
}
.dropdown-list-3.w--open {
border-radius: 20px;
opacity: 1;
}
.budget-simulator-card {
margin: 10px 20px;
padding: 10px 20px;
border-radius: 6px;
box-shadow: 1px 1px 4px -2px #000;
}
.edit-budget-card {
margin-top: 10px;
margin-right: 20px;
margin-left: 20px;
border-radius: 6px;
box-shadow: 1px 1px 4px -2px #000;
}
.body-4 {
border-radius: 6px;
}
.grid-31 {
padding-top: 10px;
padding-bottom: 10px;
-ms-grid-columns: 0.5fr 1fr;
grid-template-columns: 0.5fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-25 {
padding-top: 10px;
padding-bottom: 10px;
font-family: quasimoda, sans-serif;
font-size: 20px;
font-weight: 300;
text-align: center;
}
.div-block-87 {
padding: 20px;
}
.text-block-26 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.heading-20 {
display: inline-block;
margin: 50px 20px 30px;
font-family: quasimoda, sans-serif;
font-weight: 400;
}
.text-block-27 {
padding-right: 5px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
text-align: center;
}
.grid-32 {
-ms-grid-columns: 1fr 2.5fr 1fr;
grid-template-columns: 1fr 2.5fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-field-5 {
position: relative;
display: inline;
width: 50%;
margin-right: 10px;
margin-left: 10px;
}
.field-label-4 {
display: inline;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.form-4 {
text-align: center;
}
.div-block-88 {
text-align: center;
}
.heading-21 {
position: static;
padding-right: 15px;
padding-left: 15px;
font-family: quasimoda, sans-serif;
color: #fff;
font-weight: 300;
}
.settings-card {
padding: 25px;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 6px -4px #000;
}
.heading-22 {
margin-bottom: 25px;
font-family: quasimoda, sans-serif;
font-size: 33px;
font-weight: 300;
}
.image-32 {
text-align: center;
}
.tab-pane-tab-2 {
text-align: center;
}
.text-block-28 {
display: inline-block;
padding-right: 2px;
padding-left: 2px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-29 {
display: inline-block;
padding-right: 2px;
padding-left: 2px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-30 {
display: inline-block;
padding-right: 2px;
padding-left: 2px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.image-33 {
margin-right: 13px;
margin-left: 13px;
}
.grid-33 {
-ms-grid-columns: 0.75fr 0.4fr 0.75fr;
grid-template-columns: 0.75fr 0.4fr 0.75fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.delete-card-button {
display: inline-block;
padding: 1px 15px 2px;
border-radius: 6px;
background-color: #3f3d56;
opacity: 1;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
}
.tabs-menu-3 {
margin-top: 0px;
margin-bottom: 27px;
padding-right: 20px;
padding-left: 20px;
text-align: center;
}
.div-block-89 {
display: inline;
}
.div-block-90 {
margin-top: 0px;
text-align: center;
}
.text-block-31 {
display: inline-block;
padding-right: 10px;
text-decoration: underline;
}
.text-block-32 {
display: inline-block;
margin-top: 20px;
padding-right: 10px;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
cursor: pointer;
}
.text-block-32:hover {
font-weight: 400;
}
.settings-tab {
padding: 12px 45px;
background-color: #fff;
}
.settings-tab.w--current {
padding: 12px 45px;
border-radius: 5vw;
background-color: #dc3545;
opacity: 1;
font-family: quasimoda, sans-serif;
color: #fff;
font-weight: 300;
}
.text-block-33 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-34 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.heading-23 {
margin-top: 6px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.div-block-91 {
margin-left: 0px;
text-align: center;
}
.div-block-92 {
display: inline;
min-width: 80%;
padding-left: 0%;
font-family: quasimoda, sans-serif;
font-size: 14px;
font-weight: 300;
}
.div-block-93 {
margin-top: 26px;
text-align: center;
}
.image-34 {
margin-top: 38px;
margin-left: 54px;
}
.text-block-35 {
margin-top: 1px;
margin-bottom: 15px;
padding-top: 5px;
padding-bottom: 5px;
text-align: left;
cursor: default;
}
.form-5 {
padding-right: 0%;
padding-left: 0%;
text-align: right;
}
.div-block-94 {
text-align: center;
}
.already-filled-area {
padding-right: 5px;
padding-left: 5px;
border-style: solid;
border-width: 1px;
border-color: #fff;
border-radius: 6px;
opacity: 1;
text-align: left;
}
.already-filled-area.name-form {
cursor: default;
}
.already-filled-area.email-form {
cursor: default;
}
.already-filled-area.org-form {
cursor: default;
}
.already-filled-area.website-form {
cursor: default;
}
.account-info-subtitle {
margin-bottom: 3px;
font-weight: 400;
text-align: left;
}
.grid-34 {
padding-left: 56px;
-ms-grid-columns: 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-35 {
margin-top: 25px;
}
.form-block-6 {
margin-top: 20px;
margin-bottom: 0px;
}
.text-block-36 {
margin-top: 2px;
margin-bottom: 8px;
padding-right: 80px;
padding-left: 80px;
text-align: center;
}
.text-block-37 {
display: inline-block;
width: 55%;
text-align: center;
}
.button-description {
margin-left: 10px;
color: #757575;
}
.button-description.button-description-placeholder {
position: absolute;
}
.button-description.click-description {
position: fixed;
display: inline;
border-radius: 0px;
opacity: 0;
-webkit-transform: translate(300px, 0px);
-ms-transform: translate(300px, 0px);
transform: translate(300px, 0px);
}
.button-description.impression-description {
display: inline;
margin-left: 14px;
opacity: 0;
text-align: right;
}
.div-block-95 {
margin-bottom: 10px;
}
.grid-35 {
grid-column-gap: 3px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-36 {
display: block;
}
.html-embed-2 {
padding-bottom: 20px;
}
.grid-36 {
margin-top: 15px;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-38 {
display: inline-block;
width: 60%;
margin-top: 0px;
margin-bottom: 0px;
font-family: quasimoda, sans-serif;
color: #333;
line-height: 22px;
font-weight: 300;
text-align: center;
}
.text-block-39 {
margin-top: 0px;
margin-bottom: 5px;
padding-top: 30px;
padding-bottom: 10px;
font-family: quasimoda, sans-serif;
color: #333;
font-size: 30px;
text-align: center;
}
.keyword-category-card {
border-radius: 6px;
box-shadow: 1px 1px 4px -2px #000;
}
.keyword-category-title {
margin-bottom: 0px;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.keyword-category-subtitle {
margin-bottom: 10px;
padding-top: 7px;
opacity: 0.62;
font-family: quasimoda, sans-serif;
line-height: 20px;
font-weight: 300;
}
.div-block-96 {
margin-top: 22px;
margin-bottom: 22px;
text-align: center;
}
.container-18 {
margin-top: 0px;
padding-top: 0px;
background-color: hsla(0, 0%, 100%, 0);
}
.card-wrapper-for-ad {
display: inline-block;
padding: 10px 20px 10px 40px;
border-radius: 20px;
box-shadow: 1px 1px 4px -2px #000;
opacity: 1;
}
.keyword-card {
margin-top: 8px;
margin-bottom: 8px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 0vw;
font-family: quasimoda, sans-serif;
font-size: 15px;
}
.keyword-grid {
margin-top: 3px;
margin-bottom: 3px;
padding: 2px 0px;
-ms-grid-columns: 1fr 0.75fr;
grid-template-columns: 1fr 0.75fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
-webkit-transition: all 150ms ease-in;
transition: all 150ms ease-in;
font-weight: 300;
}
.keyword-grid:hover {
border-radius: 6px;
background-color: #e6e6e6;
color: #333;
}
.keyword-grid.grid-title:hover {
background-color: #fff;
}
.text-block-40 {
text-align: center;
}
.text-block-41 {
padding-left: 25px;
font-size: 14px;
text-align: left;
}
.text-block-42 {
display: inline-block;
}
.everything-but-the-button {
margin-top: -13px;
padding: 30px;
border-radius: 20px;
background-color: #fff;
box-shadow: 2px 2px 14px -9px #000;
}
.grid-37 {
grid-column-gap: 75px;
-ms-grid-columns: 1fr 0.55fr;
grid-template-columns: 1fr 0.55fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.keyword-title-div {
margin-top: 10px;
margin-bottom: 12px;
padding-right: 16px;
font-family: quasimoda, sans-serif;
color: #0e0e0e;
text-align: center;
}
.title-block {
margin-top: 89px;
padding-bottom: 27px;
background-color: #fff;
opacity: 1;
color: #fff;
}
.div-block-97 {
margin-bottom: 25px;
text-align: center;
}
.tab-link-tab-1 {
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.tab-link-tab-1.w--current {
font-family: quasimoda, sans-serif;
font-size: 12px;
}
.keyword-category-tab {
margin-right: 17px;
padding: 3px 25px;
border-radius: 20px;
}
.keyword-category-tab.w--current {
background-color: #3f3d56;
color: #e7e7e7;
}
._2-important-numbers {
margin-top: 0px;
padding-top: 40px;
padding-bottom: 40px;
font-size: 42px;
text-align: center;
}
._2-important-numbers.website-visits {
position: static;
left: 0%;
top: -66px;
z-index: 1;
display: inline-block;
overflow: hidden;
margin-left: 0px;
padding: 20px 32px;
border-radius: 0px;
background-color: transparent;
box-shadow: 2px 2px 6px -2px #000;
color: #fff;
font-size: 37px;
font-weight: 300;
}
._2-important-numbers.budget {
display: inline-block;
margin-top: 0px;
padding: 20px 32px;
border-radius: 15px;
background-color: #65a5c0;
box-shadow: 2px 2px 6px -2px #000;
color: #fff;
font-size: 37px;
font-weight: 300;
}
.image-37 {
position: relative;
left: 87px;
top: -6px;
display: inline-block;
margin-top: -49px;
margin-bottom: 0px;
margin-left: 30px;
opacity: 1;
cursor: pointer;
}
.image-37.cpc-image {
left: 38px;
top: 54px;
margin-bottom: 65px;
}
.div-block-98 {
position: relative;
z-index: -1;
display: none;
margin-top: 0px;
margin-bottom: 35px;
opacity: 0;
text-align: center;
}
.div-block-99 {
position: relative;
top: 0px;
margin-top: 0px;
text-align: center;
}
.div-block-100 {
display: inline;
}
.div-block-101 {
margin-top: 21px;
}
.image-38 {
display: inline-block;
margin: 0px 0px 15px;
padding: 0px;
}
.div-block-102 {
display: block;
margin-top: 5px;
padding: 0px;
border-radius: 1vw;
background-color: #fff;
color: #fff;
font-size: 13px;
text-align: center;
}
.div-block-103 {
position: static;
top: -5px;
margin-top: 5px;
opacity: 1;
text-align: center;
}
.heading-24 {
position: relative;
margin-top: 5px;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.main-metric-block {
padding: 20px 40px;
border-radius: 14px;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(224, 85, 75, 0.86)), to(rgba(220, 53, 69, 0.86)));
background-image: linear-gradient(180deg, rgba(224, 85, 75, 0.86), rgba(220, 53, 69, 0.86));
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
}
.main-metric-block:hover {
box-shadow: 4px 4px 4px -4px #000;
}
.main-metric-block.website-visits-block {
position: static;
z-index: 2;
width: 100%;
margin-top: 26px;
margin-bottom: -5px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 33px;
background-color: hsla(0, 0%, 100%, 0);
background-image: -webkit-gradient(linear, left top, left bottom, from(#df736b), to(#d14452));
background-image: linear-gradient(180deg, #df736b, #d14452);
opacity: 1;
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
color: #fff;
cursor: pointer;
}
.main-metric-block.website-visits-block.cpc-block {
position: static;
z-index: 2;
margin-top: 25px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#98c6d8), to(#49a3be));
background-image: linear-gradient(180deg, #98c6d8, #49a3be);
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.main-metric-block.website-visits-block.budget-block {
position: static;
background-image: -webkit-gradient(linear, left top, left bottom, from(#b9d6af), to(#79a062));
background-image: linear-gradient(180deg, #b9d6af, #79a062);
}
.main-metric-block.cost-per-click-block {
width: 100%;
margin-bottom: 22px;
padding-right: 0px;
padding-bottom: 0px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#a6d0df), to(#6d7ba7));
background-image: linear-gradient(180deg, #a6d0df, #6d7ba7);
-webkit-transform: translate(245px, 0px);
-ms-transform: translate(245px, 0px);
transform: translate(245px, 0px);
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
}
.main-metric-block.cost-per-click-block:hover {
-webkit-transform: translate(240px, 0px);
-ms-transform: translate(240px, 0px);
transform: translate(240px, 0px);
}
.div-block-105 {
display: inline-block;
margin-top: 7px;
text-align: center;
}
.div-block-105.cpc-wrapper {
margin-top: 14px;
}
.clicks-graph-wrapper {
position: static;
z-index: 1;
display: block;
margin-top: -21px;
padding: 25px;
border-radius: 20px;
background-color: #424242;
opacity: 1;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.div-block-107 {
text-align: center;
}
.html-embed-3 {
display: block;
opacity: 1;
}
.click-to-view-click-details {
position: relative;
top: -15px;
opacity: 0;
text-align: center;
}
.click-to-view-cpc-details {
position: relative;
top: -15px;
opacity: 0;
text-align: center;
}
.click-to-hide-click-details {
position: relative;
top: -35px;
padding-left: 160px;
opacity: 0;
color: #fff;
}
.grid-38 {
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-108 {
position: relative;
}
.cpc-graph-wrapper {
position: absolute;
left: 53.5%;
z-index: 1;
margin-top: -12px;
padding: 25px;
border-radius: 20px;
background-color: #424242;
opacity: 0;
}
.click-to-hide-cpc-details {
position: relative;
top: -35px;
padding-left: 160px;
color: #fff;
}
.grid-39 {
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-40 {
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-41 {
margin-top: 40px;
justify-items: center;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.div-block-109 {
display: block;
margin-top: 0px;
margin-right: 190px;
}
.text-block-43 {
margin-top: 34px;
text-align: center;
text-decoration: none;
}
.div-block-110 {
position: absolute;
top: 0px;
display: block;
width: 200px;
height: 30px;
background-color: #f44;
}
.div-block-111 {
position: absolute;
left: 33%;
top: 91px;
width: 33%;
height: 15%;
background-color: #e03030;
}
.heading-25 {
margin-top: 10px;
margin-bottom: 0px;
color: #fff;
font-size: 28px;
line-height: 35px;
font-weight: 400;
text-align: center;
}
.container-19 {
margin-top: 10px;
margin-bottom: 25px;
}
.tab-header {
position: fixed;
left: 0%;
top: 33%;
right: auto;
bottom: 0%;
z-index: 1;
width: 18%;
height: 50%;
padding: 25px 0px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
text-align: center;
}
.tab-content {
border-radius: 20px;
background-color: #fff;
}
.dashboard-background {
background-color: rgba(177, 192, 221, 0);
}
.mini-container-for-content-tab {
padding: 50px 10px;
}
.mini-container-for-content-tab.budget-mini-container-for-tab {
padding: 40px 25px 11px;
}
.content-title {
display: block;
padding-left: 0px;
font-family: quasimoda, sans-serif;
font-size: 24px;
line-height: 24px;
font-weight: 300;
text-align: center;
}
.content-title.new-budget-title {
display: inline-block;
margin-right: 23px;
font-size: 22px;
}
.content-title.budget-title {
margin-top: 10px;
padding-left: 0px;
font-size: 29px;
line-height: 38px;
font-weight: 300;
text-align: center;
}
.content-title.content-title-ads-page {
margin-top: 10px;
margin-bottom: 0px;
padding-left: 0px;
font-size: 29px;
line-height: 31px;
text-align: center;
}
.content-title.title-clicks-page {
padding-left: 0px;
font-size: 29px;
line-height: 29px;
text-align: center;
}
.content-title.search-terms-expand-title {
margin-top: 50px;
padding-left: 100px;
font-size: 21px;
line-height: 22px;
text-align: left;
}
.text-block-45 {
display: inline-block;
}
.text-block-46 {
display: block;
margin-top: 10px;
margin-bottom: 3px;
padding-left: 0px;
font-size: 11px;
line-height: 20px;
font-weight: 300;
text-align: center;
text-transform: none;
}
.content-subtitle {
margin-top: 4px;
padding-top: 0px;
padding-left: 0px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.content-subtitle.projected-clicks-subtitle {
margin-top: 10px;
font-size: 13px;
text-align: center;
}
.content-subtitle.budget-subtitle {
margin-top: 10px;
margin-bottom: 18px;
padding-left: 0px;
font-size: 15px;
line-height: 22px;
text-align: center;
}
.content-subtitle.clicks-subtitle {
height: 10px;
text-align: center;
}
.content-subtitle.subtitle-ads-page {
margin-top: 13px;
margin-bottom: 10px;
text-align: center;
}
.grid-42 {
display: -ms-grid;
display: grid;
margin-top: 20px;
padding-right: 10px;
padding-left: 0px;
grid-auto-columns: 1fr;
grid-column-gap: 6px;
grid-row-gap: 16px;
-ms-grid-columns: 0.4fr 1fr;
grid-template-columns: 0.4fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.click-graph {
display: block;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
.grid-43 {
display: block;
margin-right: 0px;
-ms-grid-columns: 1fr 0.75fr;
grid-template-columns: 1fr 0.75fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
text-align: left;
}
.dropdown-toggle-4 {
padding: 3px 34px 3px 14px;
border-radius: 0px;
}
.icon-4 {
display: inline-block;
margin-top: -4px;
margin-right: -20px;
margin-left: 15px;
opacity: 1;
color: #4e4e4e;
font-size: 13px;
}
.dropdown-3 {
border: 0px solid #000;
border-radius: 11px;
box-shadow: 1px 1px 3px 0 hsla(0, 0%, 49.3%, 0.57);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
text-align: right;
}
.dropdown-3:hover {
box-shadow: 3px 3px 7px -1px hsla(0, 0%, 49.3%, 0.57);
}
.image-39 {
display: block;
width: 100%;
margin-top: 25px;
}
.div-block-113 {
margin-top: 40px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.container-20 {
padding-top: 5px;
padding-bottom: 5px;
}
.searches-wrapper {
margin-top: 7px;
margin-right: 20px;
margin-left: 20px;
padding-left: 0px;
}
.search-result-grid-clicks-page {
position: relative;
z-index: 1;
margin-top: 0px;
margin-bottom: 0px;
padding: 5px 25px;
grid-column-gap: 8px;
-ms-grid-columns: 1.4fr 0.3fr;
grid-template-columns: 1.4fr 0.3fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 7px -4px #000;
-webkit-transition: border-radius 200ms ease, box-shadow 200ms ease;
transition: border-radius 200ms ease, box-shadow 200ms ease;
cursor: pointer;
}
.search-result-grid-clicks-page:hover {
box-shadow: 1px 1px 16px -4px #474747;
}
.search-result-grid-clicks-page.clicks-page-ad-1 {
-webkit-transition: border-radius 200ms ease, box-shadow 350ms ease;
transition: border-radius 200ms ease, box-shadow 350ms ease;
}
.search-result-grid-clicks-page.clicks-page-ad-2 {
grid-column-gap: 8px;
-ms-grid-columns: 1.4fr 0.35fr;
grid-template-columns: 1.4fr 0.35fr;
}
.text-block-47 {
display: inline-block;
padding-left: 11px;
font-family: quasimoda, sans-serif;
color: #333;
font-size: 14px;
font-weight: 300;
}
.text-block-48 {
display: inline-block;
margin-right: 0px;
margin-left: -10px;
font-family: quasimoda, sans-serif;
color: #3f3d56;
font-size: 15px;
text-decoration: none;
}
.image-40 {
margin-top: 0px;
margin-right: 10px;
margin-left: 25px;
}
.whole-timeline-wrapper {
margin-top: 6px;
padding-left: 0%;
}
.red-line {
position: relative;
left: 20px;
top: -73px;
z-index: 0;
display: inline-block;
width: 41%;
height: 6px;
border-radius: 40px;
background-color: #f44336;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
box-shadow: 1px 1px 13px -4px #adadad;
}
.red-line.grey-line {
left: -10px;
background-color: #e0e0e0;
background-image: none;
}
.timeline-dot-wrapper {
position: relative;
top: -14px;
z-index: 1;
display: inline-block;
}
.one-timeline-dot {
display: inline-block;
width: 25%;
text-align: left;
}
.one-timeline-dot.left-timeline-dot {
position: relative;
z-index: 1;
display: inline-block;
width: 12.5%;
text-align: center;
cursor: pointer;
}
.one-timeline-dot.regular-timeline-dot {
position: relative;
z-index: 1;
text-align: center;
cursor: pointer;
}
.one-timeline-dot.right-timeline-dot {
position: relative;
z-index: 1;
width: 12.5%;
text-align: right;
}
.red-timeline-dot {
position: relative;
z-index: 1;
display: inline-block;
width: 23px;
height: 23px;
border-radius: 100%;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
text-align: left;
}
.red-timeline-dot:hover {
box-shadow: 2px 2px 5px -1px rgba(0, 0, 0, 0.51);
}
.red-timeline-dot.current-month-dot {
border: 4px solid #f44336;
background-color: #fff;
background-image: none;
}
.red-timeline-dot.future-dot {
border: 4px solid #bdbdbd;
background-color: #fff;
background-image: none;
}
.red-timeline-dot.future-dot.last-dot {
margin-left: 1px;
}
.just-the-timeline-wrapper {
text-align: center;
}
.grid-44 {
position: relative;
top: 0px;
margin-top: 58px;
padding-right: 20px;
padding-left: 20px;
grid-column-gap: 5px;
grid-row-gap: 11px;
-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
-ms-grid-rows: minmax(33px, 0.25fr) auto minmax(24px, 0.25fr) auto;
grid-template-rows: minmax(33px, 0.25fr) auto minmax(24px, 0.25fr) auto;
}
.timeline-form-dollar-signs {
position: relative;
left: 22px;
top: 3px;
z-index: 1;
display: inline-block;
margin-top: 2px;
margin-right: 0px;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 16px;
font-weight: 300;
cursor: default;
}
.timeline-form-dollar-signs.budget-simulator-dollar-sign {
top: -1px;
margin-top: 0px;
color: #333;
}
.budget-month-text-field {
display: inline-block;
max-width: 77px;
margin: 0px 8px 0px 1px;
padding: 0px 0px 0px 21px;
border-style: solid;
border-width: 0px;
border-color: #fff;
border-radius: 10px;
background-color: #f35247;
background-image: -webkit-gradient(linear, left top, right top, from(#f16459), to(#f44336));
background-image: linear-gradient(90deg, #f16459, #f44336);
box-shadow: 1px 1px 6px -2px #949494;
opacity: 1;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 17px;
line-height: 19px;
font-weight: 400;
text-align: center;
cursor: default;
}
.budget-month-text-field:hover {
box-shadow: 1px 1px 6px -2px #000;
}
.budget-month-text-field.month--2-dollars-field {
display: inline-block;
}
.budget-month-text-field.month-1-dollars-field.future-text-field {
background-color: #bdbdbd;
background-image: none;
-webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.budget-month-text-field.month-2-dollars-field.future-text-field {
background-color: #bdbdbd;
background-image: none;
-webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.budget-month-text-field.new-budget-text-field {
max-width: 81px;
margin-top: -9px;
padding-right: 2px;
padding-left: 21px;
border-color: #cfcfcf;
border-radius: 5px;
background-color: #f8f8f8;
font-family: quasimoda, sans-serif;
color: #333;
font-size: 19px;
font-weight: 300;
}
.budget-month-text-field.new-budget-text-field.simulator-input {
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
}
.budget-month-text-field.month-0-dollars-field {
-webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.text-block-49 {
display: inline-block;
margin-right: 0px;
margin-left: -10px;
font-family: quasimoda, sans-serif;
color: #3f3d56;
font-size: 15px;
}
.text-block-50 {
display: inline-block;
margin-right: 0px;
margin-left: -10px;
font-family: quasimoda, sans-serif;
color: #3f3d56;
font-size: 15px;
}
.grid-45 {
-ms-grid-columns: 1fr 0.25fr;
grid-template-columns: 1fr 0.25fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.edit-budget-button {
display: inline-block;
padding: 2px 30px 5px;
border-radius: 8em;
background-color: #dd4150;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.edit-budget-button.simulate-button {
margin-left: -7px;
padding: 3px 25px 5px;
box-shadow: 1px 1px 3px 0 #afafaf;
opacity: 0;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
cursor: pointer;
}
.edit-budget-button.simulate-button:hover {
box-shadow: 1px 1px 5px 0 #7e7e7e;
}
.edit-budget-button.simulate-button:active {
box-shadow: 0 0 0 0 #7e7e7e;
}
.edit-budget-button.simulate-button.try-it-out {
margin-top: 22px;
margin-left: 17px;
}
.edit-budget-button.open-simulator {
margin-left: 0px;
background-color: #f44336;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
box-shadow: 1px 1px 3px 0 #afafaf;
-webkit-transition: opacity 300ms ease;
transition: opacity 300ms ease;
}
.edit-budget-button.open-simulator:active {
box-shadow: 0 0 0 0 #afafaf;
}
.month-info-card-wrapper {
display: block;
margin-top: 0px;
opacity: 0;
}
.month-info-card {
overflow: visible;
margin-top: 5px;
margin-right: -62px;
margin-left: -30px;
padding: 15px;
border-style: none;
border-width: 0.5px;
border-color: #ca1717;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.24);
opacity: 1;
}
.grid-46 {
grid-column-gap: 2px;
grid-row-gap: 10px;
-ms-grid-columns: 1fr 0.25fr;
grid-template-columns: 1fr 0.25fr;
}
.text-block-51 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.text-block-52 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.text-block-53 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.month-spend-wrapper {
margin-top: 10px;
}
.div-block-114 {
margin-top: 37px;
text-align: center;
}
.div-block-115 {
margin-top: 22px;
text-align: center;
}
.div-block-116 {
text-align: center;
}
.type-in-budget-div-block {
display: block;
height: auto;
margin-top: 10px;
margin-bottom: 0px;
opacity: 1;
-webkit-transition: height 200ms ease;
transition: height 200ms ease;
text-align: center;
}
.metrics-card {
display: inline-block;
width: 164px;
padding: 22px 20px;
border-radius: 11px;
background-color: #fff;
box-shadow: 3px 2px 10px -7px #000;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
-webkit-transition: top 200ms ease, box-shadow 200ms ease;
transition: top 200ms ease, box-shadow 200ms ease;
}
.metrics-card:hover {
box-shadow: 3px 2px 18px -7px #636363;
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.metrics-card.views-card:hover {
box-shadow: 3px 2px 16px -7px #636363;
}
.metric-block-title {
margin-bottom: 7px;
font-family: quasimoda, sans-serif;
font-size: 12px;
line-height: 17px;
font-weight: 300;
text-align: center;
cursor: default;
}
.metric-block-number {
font-family: quasimoda, sans-serif;
font-size: 18px;
line-height: 22px;
font-weight: 400;
text-align: center;
cursor: default;
}
.comparison-statement {
margin-top: 0px;
font-size: 12px;
text-align: center;
}
.text-block-54 {
display: inline-block;
margin-right: 5px;
font-family: quasimoda, sans-serif;
color: #7cfd31;
font-size: 11px;
line-height: 19px;
font-weight: 400;
}
.text-block-55 {
display: inline-block;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 11px;
line-height: 19px;
font-weight: 400;
}
.text-block-56 {
display: inline-block;
padding-right: 5px;
}
.metrics-card-wrapper {
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}
.text-block-57 {
font-family: quasimoda, sans-serif;
font-size: 17px;
line-height: 21px;
font-weight: 300;
text-align: center;
}
.text-block-58 {
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.button-14 {
padding: 7px 12px;
border-radius: 100vw;
background-color: #dd4150;
font-family: quasimoda, sans-serif;
font-size: 13px;
line-height: 18px;
font-weight: 300;
}
.text-block-59 {
display: inline-block;
font-family: quasimoda, sans-serif;
color: #000;
font-size: 16px;
font-weight: 300;
}
.month-text {
margin-bottom: 30px;
font-family: quasimoda, sans-serif;
font-size: 19px;
line-height: 26px;
font-weight: 300;
}
.month-text.month--2-text {
line-height: 26px;
font-weight: 300;
}
.month-text.month-0-text {
font-weight: 400;
}
.month-text.month--2-text {
-webkit-transition: font-size 300ms ease;
transition: font-size 300ms ease;
}
.dashboard-sidebar {
position: fixed;
left: 0%;
top: 0%;
right: auto;
bottom: 0%;
z-index: 1;
display: inline-block;
width: 19%;
padding: 20px 0px;
background-color: #fff;
box-shadow: 1px 1px 13px -9px #000;
}
.dashboard-content-block {
display: block;
height: 100%;
margin-left: 19%;
text-align: center;
}
.dashboard-content-block.dashboard-content-block-activate-ads-page {
margin-left: auto;
}
.tabs-2 {
display: inline-block;
width: 91%;
max-width: 930px;
margin: 55px 0px 35px;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 13px -9px #000;
}
.tabs-2.keyword-popup-modal {
margin-top: 38px;
}
.div-block-120 {
text-align: center;
}
.company-logo-wrapper {
text-align: center;
}
.dashboard-title-wrapper {
text-align: center;
}
.dashboard-buttons-wrapper {
margin-top: 20px;
text-align: center;
}
.heading-26 {
display: inline-block;
margin-top: 50px;
margin-bottom: 0px;
font-family: quasimoda, sans-serif;
color: #4a4a4a;
font-size: 26px;
line-height: 30px;
font-weight: 300;
text-align: center;
}
.dashboard-title-line {
display: inline-block;
width: 80%;
height: 1px;
max-width: 200px;
border-radius: 0px;
background-color: #4a4a4a;
opacity: 0.5;
color: #4a4a4a;
}
.dashboard-main-button {
display: inline-block;
width: 120px;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px 0px;
border-radius: 11px;
background-color: #fff;
color: #3f3d56;
}
.dashboard-main-button.clicks-button {
background-image: url('../images/Group-140.svg');
background-position: 50% 50%;
background-size: 205px;
background-repeat: no-repeat;
background-attachment: fixed;
}
.text-block-60 {
display: inline-block;
}
.image-41 {
display: inline-block;
}
.grid-47 {
padding-right: 30px;
padding-left: 10px;
justify-items: center;
grid-column-gap: 1px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.settings-button {
display: inline-block;
width: 130px;
margin-top: 0px;
margin-bottom: 0px;
padding-right: 0px;
padding-left: 0px;
}
.settings-wrapper {
position: fixed;
left: 0%;
top: 77%;
right: auto;
bottom: 0%;
z-index: 2;
display: block;
width: 18%;
padding-top: 0%;
padding-right: 0px;
text-align: center;
}
.text-block-61 {
display: block;
margin-left: -10px;
font-family: quasimoda, sans-serif;
color: #3f3d56;
font-size: 15px;
font-weight: 300;
}
.text-block-62 {
display: inline-block;
}
.grid-48 {
width: 150px;
padding: 10px 0px;
grid-column-gap: 16px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-42 {
margin-top: 0px;
margin-right: 10px;
margin-left: 15px;
}
.image-43 {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
padding-right: 0px;
padding-left: 0px;
}
.div-block-121 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.div-block-122 {
margin-top: 15px;
text-align: center;
}
.div-block-123 {
position: static;
left: 82%;
text-align: center;
}
.text-block-63 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-64 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-65 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.edit-ads-button-wrapper {
margin-top: 5px;
margin-bottom: 5px;
padding: 4px 13px 4px 7px;
border-radius: 20px;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
text-align: left;
cursor: pointer;
}
.edit-ads-button-wrapper:hover {
box-shadow: 1px 1px 4px 0 #818181;
}
.edit-ads-button-wrapper:active {
box-shadow: 1px 1px 2px -1px #818181;
}
.edit-button-text {
display: inline-block;
margin-top: 3px;
margin-left: 9px;
direction: ltr;
font-family: quasimoda, sans-serif;
color: #dd4150;
line-height: 22px;
font-weight: 400;
text-decoration: none;
text-transform: none;
}
.new-ad-card {
margin: 10px 0px;
padding-right: 25px;
border-radius: 10px;
box-shadow: 1px 1px 7px -4px #000;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
}
.new-ad-card:hover {
box-shadow: 1px 1px 16px -4px #000;
}
.grid-49 {
position: relative;
padding: 5px 30px;
grid-column-gap: 7px;
-ms-grid-columns: 5fr 1fr 1fr;
grid-template-columns: 5fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 7px -4px #000;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
cursor: pointer;
}
.grid-49:hover {
box-shadow: 1px 1px 16px -4px #000;
}
.grid-49.select-ads-ad-grid {
padding: 0px;
-ms-grid-columns: minmax(15px, 15px) minmax(60px, 60px) 1fr 0.5fr;
grid-template-columns: minmax(15px, 15px) minmax(60px, 60px) 1fr 0.5fr;
box-shadow: 1px 1px 8px -5px #000;
cursor: default;
}
.grid-49.select-ads-ad-grid:hover {
box-shadow: 1px 1px 16px -5px #000;
}
.green-strip {
width: 10px;
height: 100%;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
background-color: #fff;
opacity: 0.87;
-webkit-transition: background-color 200ms ease;
transition: background-color 200ms ease;
}
.text-block-67 {
display: block;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.button-15 {
padding: 7px 13px;
border-radius: 11px;
background-color: #dd4150;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
font-family: quasimoda, sans-serif;
font-size: 10px;
font-weight: 300;
}
.button-15:hover {
box-shadow: 1px 1px 6px -2px #000;
}
.grid-50 {
margin-top: 15px;
margin-right: 0px;
margin-left: 0px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.dropdown-4 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.image-44 {
margin-top: -5px;
margin-right: 7px;
}
.dropdown-toggle-5 {
padding-top: 6px;
padding-right: 32px;
padding-bottom: 6px;
border-radius: 20px;
}
.google-ads-drop-icon {
margin-right: 17px;
opacity: 0.26;
}
.time-period-selection-wrapper {
margin-top: 0px;
padding-left: 1px;
font-size: 14px;
}
.text-block-68 {
font-family: quasimoda, sans-serif;
font-size: 14px;
font-weight: 300;
}
.dropdown-toggle-6 {
z-index: 1;
padding: 3px 45px 3px 30px;
border-radius: 20px;
}
.dropdown-toggle-6.w--open {
z-index: 5;
}
.body-6 {
background-color: #22314d;
}
.submit-button {
display: none;
}
.div-block-125 {
display: inline-block;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 10px;
padding-bottom: 0px;
}
.grid-51 {
margin-top: 10px;
margin-bottom: 35px;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.dropdown-5 {
margin-left: 0px;
}
.div-block-126 {
display: inline-block;
}
.image-45 {
margin-top: -4px;
margin-left: 5px;
border-radius: 20px;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
cursor: pointer;
}
.image-45:hover {
box-shadow: 1px 1px 5px 0 #bebebe;
}
.dropdown-list-4 {
border-bottom-left-radius: 1px;
}
.dropdown-list-4.w--open {
z-index: 0;
width: 50px;
margin-top: 10px;
padding-top: 10px;
border-radius: 12px;
background-color: #fff;
box-shadow: 1px 1px 6px -2px #000;
opacity: 0;
-webkit-transform: translate(0px, -22px);
-ms-transform: translate(0px, -22px);
transform: translate(0px, -22px);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
}
.dropdown-link-2 {
overflow: visible;
height: 100px;
padding-top: 6px;
padding-bottom: 6px;
font-size: 12px;
-o-object-fit: contain;
object-fit: contain;
}
.fixed-backdrop {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: -1;
background-color: #f6f7fc;
background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(255, 255, 255, 0.44), rgba(236, 236, 236, 0));
}
.month--2-dollars {
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.month--1-dollars {
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.div-block-128 {
text-align: center;
}
.grid-52 {
grid-column-gap: 8px;
grid-row-gap: 8px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.tab-wrapper {
padding: 0px;
background-color: transparent;
text-align: center;
}
.tab-wrapper.w--current {
padding: 0px;
background-color: hsla(0, 0%, 100%, 0);
}
.div-block-129 {
text-align: center;
}
.link-block-7 {
text-decoration: none;
}
.div-block-130 {
text-align: center;
}
.link-block-8 {
text-decoration: none;
}
.div-block-131 {
display: block;
text-align: center;
}
.link-block-9 {
text-decoration: none;
}
.dashbaord-main-buttons-wrapper {
margin-top: 60px;
}
.div-block-132 {
text-align: center;
}
.text-block-69 {
font-family: quasimoda, sans-serif;
font-size: 13px;
font-weight: 300;
}
.ads-grid {
margin-left: -30px;
justify-items: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 14px;
grid-row-gap: 0px;
-ms-grid-columns: minmax(0px, 25px) 1fr;
grid-template-columns: minmax(0px, 25px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
-webkit-transition: margin 200ms ease;
transition: margin 200ms ease;
}
.ad-checkbox-wrapper {
position: relative;
display: block;
padding-right: 23px;
opacity: 0;
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
}
.image-46 {
padding: 0%;
border: 3px solid transparent;
border-radius: 0%;
opacity: 1;
}
.pencil-icon-wrapper {
display: inline-block;
padding: 5px;
border: 0px solid #dd4150;
border-radius: 100%;
background-color: #dd4150;
}
.body-7 {
background-image: radial-gradient(circle farthest-corner at 50% 50%, #fff, #0f0f0f);
text-align: center;
}
.grid-54 {
margin-top: 36px;
padding-right: 15px;
padding-bottom: 19px;
padding-left: 15px;
-ms-grid-columns: 0.5fr 1fr 0.5fr;
grid-template-columns: 0.5fr 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-70 {
display: inline-block;
color: #e8eaf2;
font-size: 19px;
}
.back-button-keywords-modal {
display: inline-block;
width: 130px;
margin-top: -7px;
padding-top: 17px;
padding-bottom: 13px;
border-radius: 15px;
background-color: #dd4150;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
cursor: pointer;
}
.back-button-keywords-modal:hover {
box-shadow: 0 0 8px 2px #b9b9b9;
}
.back-button-wrapper {
padding-right: 34px;
}
.image-47 {
margin-top: -10px;
margin-right: 14px;
}
.active-since-wrapper {
margin-top: 0px;
font-family: quasimoda, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 300;
}
.grid-55 {
margin-top: 0px;
padding-right: 24px;
padding-left: 33px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: minmax(38px, 0.25fr) 1fr;
grid-template-columns: minmax(38px, 0.25fr) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.ad-activity-dot {
display: inline-block;
width: 16px;
height: 16px;
border-radius: 20px;
background-color: #00d343;
}
.ad-activity-dot.keyword-activity-dot {
margin-bottom: -3px;
}
.active-date {
font-size: 15px;
line-height: 23px;
}
.keyord-modal-top {
box-shadow: 0 4px 3px -4px #999;
}
.all-time-performance-wrapper {
margin-top: 40px;
margin-bottom: 20px;
font-family: quasimoda, sans-serif;
}
.text-block-71 {
font-size: 13px;
font-weight: 300;
}
.text-block-72 {
padding-top: 10px;
padding-bottom: 0px;
padding-left: 100px;
font-size: 21px;
line-height: 22px;
font-weight: 300;
text-align: left;
}
.keyword-graph-wrapper {
overflow: scroll;
max-height: 1px;
margin-top: 10px;
margin-bottom: 10px;
padding-bottom: 10px;
opacity: 0;
-webkit-transition: opacity 300ms ease, max-height 300ms ease;
transition: opacity 300ms ease, max-height 300ms ease;
}
.selected-search-terms-grid {
margin-top: 0px;
padding-right: 60px;
padding-left: 100px;
grid-column-gap: 12px;
-ms-grid-columns: 0.3fr 1fr;
grid-template-columns: 0.3fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
opacity: 1;
}
.text-block-73 {
display: inline-block;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.image-48 {
margin-top: -6px;
margin-right: 7px;
}
.grid-57 {
justify-items: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 5px;
grid-row-gap: 5px;
-ms-grid-columns: 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.keyword-button {
padding: 6px 15px 7px;
border-radius: 27vh;
background-color: #3988aa;
}
.keyword-text {
display: inline-block;
color: #fff;
font-size: 13px;
line-height: 19px;
}
.text-block-74 {
display: inline-block;
margin-left: 10px;
color: #fff;
}
.pivot-table-title {
margin-top: 20px;
padding-right: 170px;
padding-left: 170px;
grid-column-gap: 45px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.pivot-table-triangle-up-side-down {
display: inline-block;
width: 0px;
height: 0px;
border-style: solid;
border-width: 8px 8px 0px;
border-color: #000 transparent transparent;
border-radius: 0px;
background-color: transparent;
}
.text-block-75 {
font-family: quasimoda, sans-serif;
font-size: 18px;
line-height: 26px;
font-weight: 300;
text-decoration: none;
}
.keyword-list-title-wrapper {
text-align: center;
cursor: pointer;
}
.pivot-table-triangle-right-side-up {
display: inline-block;
border-style: solid;
border-width: 0px 9px 18px;
border-color: transparent transparent #000;
}
.title-text-wrapper {
display: inline-block;
}
.triangles-wrapper {
position: relative;
top: -3px;
display: inline-block;
margin-left: 23px;
}
.triangles-wrapper.clicks-triangle-wrapper {
opacity: 0;
}
.grid-58 {
display: -ms-grid;
display: grid;
height: 63px;
margin-top: 16px;
padding-right: 20px;
padding-left: 20px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-auto-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 19px;
background-color: #fff;
box-shadow: 2px 2px 7px -4px #979797;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
cursor: pointer;
}
.grid-58:hover {
box-shadow: 2px 2px 14px -4px #979797;
}
.grid-58:active {
box-shadow: 2px 2px 6px -4px #979797;
}
.keyword-row-entry-wrapper {
display: inline-block;
text-align: center;
}
.text-block-76 {
display: inline-block;
margin-left: 18px;
font-family: quasimoda, sans-serif;
font-size: 17px;
line-height: 20px;
font-weight: 300;
text-align: center;
}
.div-block-134 {
margin-left: 0px;
}
.text-block-77 {
margin-top: 10px;
margin-bottom: 8px;
font-family: quasimoda, sans-serif;
font-size: 14px;
line-height: 21px;
font-weight: 300;
text-align: left;
}
.keyword-click-row-entry-wrapper {
display: inline-block;
}
.text-block-78 {
display: inline-block;
font-family: quasimoda, sans-serif;
font-size: 17px;
line-height: 20px;
font-weight: 300;
}
.text-block-79 {
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.html-embed-4 {
margin-top: auto;
padding-top: 0px;
}
.comparison-hover-wrapper {
position: relative;
z-index: 2;
margin-top: -24px;
-webkit-transform: translate(0px, 15px);
-ms-transform: translate(0px, 15px);
transform: translate(0px, 15px);
}
.comparison-hover-wrapper.views-comparison {
opacity: 0;
-webkit-transform: translate(0px, 15px);
-ms-transform: translate(0px, 15px);
transform: translate(0px, 15px);
}
.comparison-hover-wrapper.clicks-comparison {
opacity: 0;
-webkit-transform: translate(0px, 15px);
-ms-transform: translate(0px, 15px);
transform: translate(0px, 15px);
cursor: default;
}
.comparison-hover-wrapper.cpc-comparison {
opacity: 0;
-webkit-transform: translate(0px, 15px);
-ms-transform: translate(0px, 15px);
transform: translate(0px, 15px);
}
.comparison-hover-element {
padding: 5px 8px;
border-radius: 34vw;
background-color: #617d8a;
box-shadow: 1px 1px 18px -1px #969696;
cursor: default;
}
.text-block-80 {
margin-top: 10px;
margin-bottom: 40px;
padding-left: 30px;
color: #3b3b3b;
font-size: 13px;
line-height: 19px;
text-align: left;
}
.dropdown-list-5 {
padding-top: 10px;
}
.dropdown-list-5.w--open {
position: absolute;
z-index: -1;
margin-top: 5px;
padding-top: 0px;
border-radius: 8px;
background-color: hsla(0, 0%, 100%, 0.85);
box-shadow: 1px 1px 8px -3px #707070;
font-size: 12px;
line-height: 15px;
}
.dropdown-time-element-clicks-page {
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
}
.dropdown-time-element-clicks-page:hover {
font-weight: 400;
}
.div-block-135 {
position: relative;
top: -2px;
display: inline-block;
margin-right: 4px;
padding: 5px 8px 8px;
border-radius: 100%;
background-color: #f44336;
}
.grid-59 {
grid-column-gap: 4px;
grid-row-gap: 7px;
-ms-grid-columns: 1.5fr;
grid-template-columns: 1.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-60 {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-row-gap: 0px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
}
.text-block-81 {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
font-family: quasimoda, sans-serif;
font-size: 16px;
line-height: 20px;
font-weight: 300;
}
.text-block-82 {
font-family: quasimoda, sans-serif;
font-weight: 300;
cursor: default;
}
.budget-cards-wrapper {
display: -ms-grid;
display: grid;
margin-top: 60px;
padding-right: 5px;
padding-left: 5px;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
grid-auto-columns: 1fr;
grid-column-gap: 1px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr 1.1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1.1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.budget-card {
margin-top: 27px;
margin-right: 5px;
margin-left: 5px;
padding-right: 0px;
padding-bottom: 18px;
padding-left: 0px;
border-radius: 12px;
box-shadow: 1px 1px 6px -2px #474747;
-webkit-transition: box-shadow 200ms ease, -webkit-transform 400ms ease;
transition: box-shadow 200ms ease, -webkit-transform 400ms ease;
transition: box-shadow 200ms ease, transform 400ms ease;
transition: box-shadow 200ms ease, transform 400ms ease, -webkit-transform 400ms ease;
font-family: quasimoda, sans-serif;
font-weight: 300;
cursor: default;
}
.budget-card:hover {
-webkit-transform: translate(0px, -10px);
-ms-transform: translate(0px, -10px);
transform: translate(0px, -10px);
}
.budget-card.current-month-card {
width: 20%;
margin-top: 0px;
border: 0px solid #dd4150;
cursor: default;
}
.budget-card.current-month-card.budget-card-0 {
width: auto;
}
.grid-61 {
grid-column-gap: 0px;
-ms-grid-columns: minmax(25px, 25px) 1fr minmax(25px, 25px);
grid-template-columns: minmax(25px, 25px) 1fr minmax(25px, 25px);
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-83 {
margin-top: 10px;
font-size: 18px;
line-height: 19px;
font-weight: 400;
}
.text-block-83.total-spent-value {
margin-top: 0px;
}
.text-block-83.total-spent-value.current-total-spent-value {
font-size: 20px;
line-height: 22px;
}
.text-block-84 {
margin-top: 2px;
font-size: 12px;
line-height: 17px;
font-weight: 300;
}
.grid-62 {
margin-top: 21px;
padding-right: 15px;
padding-left: 15px;
grid-column-gap: 11px;
grid-row-gap: 8px;
-ms-grid-columns: 2fr 1fr;
grid-template-columns: 2fr 1fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.grid-62.grid-for-current-month-expenses {
margin-top: 30px;
}
.red-tops {
height: 24px;
margin-bottom: 15px;
border-radius: 9px 9px 0px 0px;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
}
.red-tops.future-card-color-top {
background-color: #e0e0e0;
background-image: none;
}
.text-block-85 {
font-size: 11px;
text-align: left;
}
.text-block-86 {
font-size: 11px;
text-align: left;
}
.text-block-87 {
font-size: 11px;
text-align: left;
}
.text-block-88 {
font-size: 11px;
}
.text-block-88.max-budget-value {
padding: 0px 4px;
border-radius: 6px;
background-color: #f35247;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-89 {
font-size: 11px;
}
.text-block-89.max-budget-value {
padding-right: 4px;
padding-left: 4px;
border-radius: 6px;
background-color: #f35247;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-90 {
font-size: 11px;
}
.text-block-91 {
font-size: 11px;
}
.text-block-92 {
font-size: 11px;
}
.text-block-92.max-budget-value {
padding-right: 4px;
padding-left: 4px;
border-radius: 6px;
background-color: #f35247;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-93 {
font-size: 11px;
}
.text-block-94 {
font-size: 11px;
}
.text-block-95 {
font-size: 11px;
}
.text-block-96 {
font-size: 11px;
}
.text-block-97 {
font-size: 11px;
}
.text-block-97.max-budget-value {
padding-right: 4px;
padding-left: 4px;
border-radius: 6px;
background-color: #bdbdbd;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-98 {
font-size: 11px;
}
.text-block-99 {
font-size: 11px;
}
.text-block-100 {
font-size: 11px;
}
.text-block-100.max-budget-value {
padding-right: 4px;
padding-left: 4px;
border-radius: 6px;
background-color: #bdbdbd;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-101 {
font-size: 11px;
}
.text-block-102 {
font-size: 11px;
}
.grid-63 {
grid-column-gap: 7px;
-ms-grid-columns: 1fr 2.5fr 1fr;
grid-template-columns: 1fr 2.5fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-103 {
margin-top: 5px;
margin-bottom: 0px;
padding-left: 0px;
font-family: quasimoda, sans-serif;
font-size: 11px;
line-height: 20px;
font-weight: 300;
text-align: center;
}
.div-block-137 {
display: inline-block;
margin-top: 11px;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 2px;
border: 0px solid #dd4150;
border-radius: 20px;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
cursor: pointer;
}
.div-block-137:hover {
box-shadow: 1px 1px 4px 0 #818181;
}
.div-block-137:active {
box-shadow: 1px 1px 0 -7px #3f3f3f;
}
.div-block-137.e-budget-whole-button {
overflow: hidden;
width: 170px;
margin-top: 0px;
padding: 5px 10px 5px 15px;
border-radius: 100vw;
background-color: #fff;
-webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.div-block-137.e-budget-whole-button:active {
box-shadow: 1px 1px 10px -7px #3f3f3f;
}
.edit-budget-text-button {
position: relative;
top: 2px;
display: inline-block;
padding: 7px 10px;
border-radius: 0px;
font-family: quasimoda, sans-serif;
color: #f44336;
font-size: 16px;
line-height: 20px;
font-weight: 400;
}
.text-block-104 {
display: inline-block;
font-family: quasimoda, sans-serif;
color: #000;
font-size: 13px;
font-weight: 300;
text-align: left;
text-decoration: none;
}
.billing-notice {
position: relative;
top: 20px;
display: inline-block;
margin-top: 0px;
padding: 13px 25px 13px 10px;
border-radius: 20px;
background-color: #f5f5f5;
background-image: linear-gradient(92deg, #f7f7f7, #f5f5f5);
box-shadow: 1px 1px 6px -3px #414141;
opacity: 0;
-webkit-transition: top 325ms ease, opacity 325ms ease;
transition: top 325ms ease, opacity 325ms ease;
}
.simulator-graph-wrapper {
height: 0px;
margin-top: 0px;
padding-bottom: 20px;
opacity: 0;
-webkit-transition: height 100ms ease, opacity 400ms ease;
transition: height 100ms ease, opacity 400ms ease;
}
.grid-64 {
padding-right: 130px;
padding-left: 36px;
justify-items: end;
grid-column-gap: 7px;
-ms-grid-columns: minmax(60px, 60px) 1fr;
grid-template-columns: minmax(60px, 60px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-105 {
padding-top: 40px;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
font-family: quasimoda, sans-serif;
font-size: 20px;
font-weight: 300;
}
.text-block-106 {
padding-left: 0%;
font-family: quasimoda, sans-serif;
font-size: 20px;
font-weight: 300;
}
.div-block-138 {
width: 100%;
}
.div-block-139 {
display: inline-block;
width: 80%;
}
.div-block-140 {
padding-top: 40px;
text-align: center;
}
.grid-65 {
grid-column-gap: 0px;
-ms-grid-columns: 0.25fr 1fr;
grid-template-columns: 0.25fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-107 {
font-size: 30px;
line-height: 30px;
}
.html-embed-6 {
background-color: #fff;
}
.grid-66 {
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-67 {
grid-column-gap: 6px;
-ms-grid-columns: 1.75fr 1fr;
grid-template-columns: 1.75fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.click-for-more-info-slider {
position: relative;
display: inline-block;
width: 80%;
height: 38px;
padding-top: 7px;
border-radius: 5px;
background-color: #f6665c;
box-shadow: 1px 0 4px -2px #000;
opacity: 1;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 16px;
font-weight: 300;
}
.click-for-more-info-slider.ads-page-click-on-ad-for-more-info-popup {
background-color: #f6665c;
-webkit-transition: background-color 200ms ease;
transition: background-color 200ms ease;
}
.click-for-details-tab {
position: relative;
top: 29px;
z-index: 0;
background-color: hsla(0, 0%, 100%, 0);
text-align: center;
}
.click-for-details-tab.click-for-details-tab-for-result-2 {
top: 29px;
}
.search-result-element-with-background {
position: static;
z-index: 0;
}
.search-result-element-with-background.clicks-page-ad-element {
margin-top: 5px;
margin-bottom: 5px;
}
.search-result-element-with-background.clicks-page-ad-element.ad-element-select-ads-page {
margin-top: 50px;
margin-bottom: 50px;
}
.grid-68 {
grid-row-gap: 11px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
}
.div-block-144 {
margin-bottom: 4px;
}
.div-block-145 {
width: 100%;
height: 100%;
background-color: #720a0a;
}
.save-chances-card {
position: fixed;
left: 54.5%;
top: 33%;
width: 20%;
min-height: 6%;
padding: 10px 10px 15px;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 6px -2px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-108 {
margin-top: 5px;
margin-bottom: 25px;
font-family: quasimoda, sans-serif;
font-size: 19px;
line-height: 25px;
font-weight: 300;
text-align: center;
}
.button-16 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 127px;
margin-right: 5px;
margin-left: 5px;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
border-radius: 8px;
background-color: #dd4150;
font-size: 17px;
text-align: center;
}
.button-16.don-t-save-button {
margin-right: 10px;
margin-left: 10px;
padding-top: 9px;
border: 1px solid #dd4150;
background-color: #fff;
box-shadow: 1px 1px 6px -3px #000;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
color: #333;
font-size: 15px;
line-height: 16px;
}
.button-16.don-t-save-button:hover {
box-shadow: 1px 1px 9px -3px #000;
}
.button-16.don-t-save-button:active {
box-shadow: 1px 1px 6px -3px #000;
}
.button-16.save-button {
margin-right: 10px;
margin-left: 10px;
padding-top: 9px;
box-shadow: 1px 1px 6px -3px #000;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
font-size: 15px;
line-height: 18px;
}
.button-16.save-button:hover {
box-shadow: 1px 1px 9px -3px #000;
}
.button-16.save-button:active {
box-shadow: 1px 1px 6px -3px #000;
}
.div-block-146 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.save-changes-card {
left: 49.5%;
z-index: 11;
display: block;
background-color: #fff;
opacity: 1;
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
}
.div-block-147 {
left: 45.5%;
top: 32%;
display: block;
width: 28%;
max-width: 395px;
padding: 30px 15px;
opacity: 0;
}
.grid-69 {
height: 75px;
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.container-21 {
margin-top: 10px;
}
.try-it-out-wrapper {
height: 30px;
margin-top: 15px;
-webkit-transition: height 200ms ease, opacity 200ms ease;
transition: height 200ms ease, opacity 200ms ease;
}
.div-block-148 {
padding-top: 29px;
}
.div-block-149 {
padding-top: 13px;
}
.div-block-150 {
padding-top: 8px;
}
.div-block-151 {
padding-top: 8px;
}
.div-block-152 {
padding-top: 8px;
}
.div-block-153 {
padding-top: 8px;
}
.grid-70 {
-ms-grid-columns: 1fr minmax(296px, 0px) 1fr;
grid-template-columns: 1fr minmax(296px, 0px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-70.simulator-button-grid {
-ms-grid-columns: 1fr auto 1fr;
grid-template-columns: 1fr auto 1fr;
}
.open-simulator-button-wrapper {
width: 350px;
padding-right: 0px;
-webkit-transition: width 300ms cubic-bezier(.497, .237, .257, .944), opacity 150ms ease;
transition: width 300ms cubic-bezier(.497, .237, .257, .944), opacity 150ms ease;
}
.simulator-input-wrapper {
margin-right: -10px;
opacity: 0;
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
}
.div-block-155 {
margin-left: -22px;
}
.div-block-156 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-109 {
font-size: 17px;
line-height: 21px;
}
.text-block-110 {
font-size: 16px;
}
.searches-wrapper-a-page {
margin-top: 5px;
padding-right: 80px;
padding-left: 80px;
}
.searches-wrapper-a-page.deactivated-searches-wrapper-a-page {
margin-top: 5px;
}
.div-block-157 {
text-align: left;
}
.edit-budget-button-wrapper {
width: 200px;
padding-right: 0px;
-webkit-transition: width 300ms ease, opacity 150ms ease;
transition: width 300ms ease, opacity 150ms ease;
}
.tabs-menu-4 {
margin-top: 40px;
font-family: quasimoda, sans-serif;
font-size: 15px;
font-weight: 400;
}
.div-block-159 {
display: inline-block;
}
.grid-71 {
padding: 4px 100px 4px 5px;
grid-column-gap: 5px;
-ms-grid-columns: minmax(20px, 20px) 1fr;
grid-template-columns: minmax(20px, 20px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 12px;
box-shadow: 1px 1px 7px -4px #000;
cursor: default;
}
.div-block-160 {
display: inline-block;
min-width: 80%;
padding-right: 10px;
padding-left: 10px;
}
.tab-pane-tab-1 {
padding-top: 22px;
padding-bottom: 30px;
}
.tab-link-tab-1-2 {
width: 200px;
background-color: transparent;
font-weight: 300;
text-align: center;
}
.tab-link-tab-1-2.w--current {
background-color: transparent;
font-weight: 400;
text-align: center;
}
.tab-link-tab-2 {
width: 200px;
background-color: transparent;
font-weight: 300;
text-align: center;
}
.tab-link-tab-2.w--current {
background-color: transparent;
font-weight: 400;
}
.div-block-161 {
display: -ms-grid;
display: grid;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 70px;
grid-auto-columns: 1fr;
grid-column-gap: 2px;
grid-row-gap: 16px;
-ms-grid-columns: minmax(28px, 28px) 1fr;
grid-template-columns: minmax(28px, 28px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-111 {
display: inline-block;
margin-left: 35px;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
font-family: quasimoda, sans-serif;
font-size: 18px;
font-weight: 300;
}
.grid-72 {
grid-column-gap: 2px;
-ms-grid-columns: 0.5fr 0.8fr 0.5fr;
grid-template-columns: 0.5fr 0.8fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-72.deactivated-title-grid {
margin-top: 25px;
}
.grid-73 {
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-73.grid-ads-page {
padding-left: 20px;
}
.calendar-icon {
position: relative;
z-index: 2;
display: inline-block;
padding: 8px 9px;
border-radius: 100%;
background-color: #68b6f4;
box-shadow: 0 1px 7px -4px #000;
opacity: 1;
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
cursor: pointer;
}
.calendar-icon:hover {
box-shadow: 0 1px 10px -4px #000;
}
.calendar-icon:active {
box-shadow: 0 1px 6px -4px #000;
}
.platform-icon {
position: relative;
z-index: 2;
display: inline-block;
padding: 8px;
border-radius: 100%;
background-color: #f7f7f7;
box-shadow: 0 1px 7px -4px #000;
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
cursor: pointer;
}
.platform-icon:hover {
box-shadow: 0 1px 10px -4px #000;
}
.div-block-164 {
padding-right: 58px;
}
.div-block-165 {
overflow: visible;
padding-top: 10px;
padding-bottom: 10px;
}
.div-block-166 {
padding-top: 10px;
padding-bottom: 10px;
}
.div-block-167 {
padding-right: 62px;
}
.div-block-168 {
background-color: #db0000;
}
.div-block-169 {
position: relative;
top: 29px;
display: inline-block;
width: 80%;
height: 38px;
border-radius: 5px;
background-color: #f6665c;
box-shadow: 1px 1px 6px -2px #000;
-webkit-transition: top 300ms ease;
transition: top 300ms ease;
}
.div-block-169.deactivated-slider {
background-color: #9c9c9c;
}
.text-block-112 {
padding-top: 7px;
color: #e6e6e6;
}
.text-block-113 {
font-size: 20px;
line-height: 25px;
}
.text-block-114 {
font-size: 20px;
line-height: 25px;
}
.keyword-card-new {
padding-right: 175px;
padding-left: 175px;
}
.div-block-170 {
display: block;
text-align: center;
}
.text-block-115 {
margin-top: 14px;
margin-bottom: 14px;
padding-left: 100px;
font-family: quasimoda, sans-serif;
font-size: 14px;
line-height: 23px;
font-weight: 300;
text-align: left;
}
.grid-74 {
-ms-grid-columns: 2.5fr 1fr 0.5fr;
grid-template-columns: 2.5fr 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.show-terms-button {
padding-right: 18px;
padding-left: 18px;
border-radius: 20px;
background-color: #f44336;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
-webkit-transition: background-color 200ms ease, width 200ms ease;
transition: background-color 200ms ease, width 200ms ease;
}
.tab-pane-tab-2-2 {
margin-top: 22px;
margin-bottom: 40px;
}
.div-block-171 {
padding-right: 150px;
padding-left: 150px;
}
.body-8 {
margin-top: 194px;
}
.cal-slider-bar {
position: relative;
top: 3px;
z-index: 0;
display: inline-block;
width: 0px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 64vh;
background-color: #fff;
box-shadow: 1px 1px 3px -1px #747474;
opacity: 0;
-webkit-transition: opacity 200ms ease, width 400ms ease;
transition: opacity 200ms ease, width 400ms ease;
}
.select-date-placeholder-text {
position: relative;
z-index: -1;
display: block;
height: 20px;
padding-left: 51px;
border-radius: 100vh;
opacity: 0;
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
font-family: quasimoda, sans-serif;
color: #999;
line-height: 20px;
font-weight: 300;
}
.cal-dropdown {
position: relative;
left: 19px;
top: -32px;
z-index: -1;
width: 166px;
padding-top: 8px;
padding-bottom: 8px;
border-radius: 9px;
background-color: #f6f7fc;
box-shadow: 1px 1px 5px -1px #9e9e9e;
opacity: 0;
-webkit-transition: box-shadow 200ms ease, opacity 200ms ease, top 400ms ease;
transition: box-shadow 200ms ease, opacity 200ms ease, top 400ms ease;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.cal-dropdown:hover {
box-shadow: 1px 1px 11px -1px #9e9e9e;
}
.text-block-117 {
padding-top: 8px;
padding-bottom: 8px;
padding-left: 31px;
color: #333;
text-align: left;
cursor: pointer;
}
.text-block-117:hover {
font-weight: 400;
}
.text-block-117.special {
position: relative;
z-index: 4;
color: #1a9aff;
text-decoration: none;
}
.date-selector-dropdown {
display: inline-block;
-webkit-transition: width 400ms ease, opacity 200ms ease;
transition: width 400ms ease, opacity 200ms ease;
}
.platform-element {
position: fixed;
display: inline-block;
margin-top: 45px;
text-align: center;
}
.div-block-176 {
display: inline-block;
width: 185px;
margin-left: 0px;
color: #999;
}
.text-block-118 {
position: relative;
top: 4px;
z-index: -1;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 25px;
border-radius: 64vh;
box-shadow: 1px 1px 3px -1px #747474;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.div-block-177 {
position: relative;
top: 12px;
display: inline-block;
width: 170px;
padding-top: 8px;
padding-bottom: 8px;
border-radius: 9px;
background-color: #f6f7fc;
box-shadow: 1px 1px 5px -1px #9e9e9e;
}
.div-block-177.platform-dropdown {
top: 0px;
opacity: 0;
-webkit-transition: top 200ms ease, opacity 200ms ease;
transition: top 200ms ease, opacity 200ms ease;
}
.div-block-178 {
text-align: center;
}
.text-block-119 {
position: relative;
top: 3px;
display: inline-block;
padding-right: 13px;
padding-left: 14px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-119.no-other-available {
font-size: 14px;
line-height: 21px;
}
.div-block-179 {
padding-top: 8px;
padding-bottom: 8px;
cursor: pointer;
}
.div-block-180 {
text-align: center;
}
.div-block-181 {
text-align: center;
}
.div-block-182 {
position: relative;
z-index: -1;
}
.cancel-calendar-period {
position: relative;
left: -11px;
top: -76px;
display: inline-block;
padding: 0px 6px;
border-radius: 100%;
background-color: #f44336;
box-shadow: 1px 1px 4px -2px #000;
opacity: 0;
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
color: #fff;
font-size: 10px;
cursor: pointer;
}
.cancel-calendar-period:hover {
box-shadow: 1px 1px 4px 0 grey;
}
.cancel-calendar-period.cancel-cal-dropdown {
left: -12px;
top: -80px;
opacity: 0;
-webkit-transition: top 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
transition: top 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
}
.cancel-calendar-period.cancel-cal-period-button {
left: -15px;
top: -13px;
opacity: 0;
}
.div-block-183 {
position: fixed;
}
.active-tab {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
background-color: #e0e0e0;
-webkit-transition: background-color 200ms ease;
transition: background-color 200ms ease;
}
.activate-ads-button {
display: inline-block;
padding: 13px 20px;
border-radius: 49vh;
background-color: #fff;
background-image: linear-gradient(144deg, #f6695e, #f44336);
box-shadow: 1px 1px 8px -5px #000;
opacity: 0.3;
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
font-family: quasimoda, sans-serif;
font-size: 21px;
font-weight: 300;
cursor: pointer;
}
.activate-ads-button:hover {
box-shadow: 1px 1px 14px -5px #000;
}
.activate-ads-button:active {
box-shadow: 1px 1px 8px -5px #000;
}
.div-block-184 {
padding-right: 30px;
}
.grid-75 {
margin-top: 34px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 11px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.more-info-button-activate-ads {
position: relative;
left: 25px;
top: -17px;
padding: 17px 33px;
border-radius: 54vh;
background-color: #7dca5d;
box-shadow: 1px 1px 2px 0 #aaa;
opacity: 1;
-webkit-transition: left 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
transition: left 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
font-family: quasimoda, sans-serif;
font-size: 15px;
font-weight: 400;
text-transform: uppercase;
}
.more-info-button-activate-ads:hover {
box-shadow: 1px 1px 8px 0 #aaa;
}
.text-block-120 {
position: static;
top: 4px;
display: inline-block;
margin-left: 0px;
color: #fff;
font-size: 21px;
text-transform: none;
}
.div-block-185 {
padding: 5px;
border-radius: 100%;
background-color: #f7f7f7;
}
.image-49 {
padding: 5px;
}
.text-block-121 {
margin-top: 45px;
padding-right: 170px;
padding-left: 170px;
font-family: quasimoda, sans-serif;
font-size: 16px;
line-height: 23px;
font-weight: 300;
text-align: center;
}
.div-block-186 {
padding-right: 100px;
padding-left: 0px;
color: #747474;
}
.image-50 {
padding-right: 20px;
}
.real-keyword-graph-wrapper {
padding-right: 60px;
padding-left: 60px;
text-align: center;
}
.second-inner-keyword-graph-grid-wrapper {
display: inline-block;
width: 84%;
}
.grid-76 {
grid-column-gap: 0px;
-ms-grid-columns: auto auto auto;
grid-template-columns: auto auto auto;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-51 {
display: inline-block;
width: 45px;
max-width: none;
border-radius: 100%;
box-shadow: 1px 1px 3px -1px #5e5e5e;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
text-align: center;
cursor: pointer;
}
.image-51:hover {
box-shadow: 1px 1px 5px -1px #5e5e5e;
}
.image-51:active {
box-shadow: 1px 1px 2px -1px #5e5e5e;
}
.text-block-122 {
padding-top: 5px;
font-family: quasimoda, sans-serif;
font-size: 13px;
font-weight: 300;
text-align: center;
}
.image-52 {
width: 44px;
max-width: none;
padding: 10px;
border: 0px solid #556e7a;
border-radius: 100%;
background-color: #556e7a;
box-shadow: 1px 1px 3px -1px #5e5e5e;
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
cursor: pointer;
}
.image-52:hover {
overflow: visible;
box-shadow: 1px 1px 7px -1px #5e5e5e;
}
.image-52:active {
box-shadow: 1px 1px 2px -1px #5e5e5e;
}
.cancel-button-div-wrapper {
width: 0px;
opacity: 0;
-webkit-transition: width 200ms ease, opacity 200ms ease;
transition: width 200ms ease, opacity 200ms ease;
}
.save-button-div-wrapper {
width: 0px;
opacity: 0;
-webkit-transition: width 200ms ease, opacity 200ms ease;
transition: width 200ms ease, opacity 200ms ease;
}
.image-53 {
padding-right: 7px;
}
.html-embed-7 {
padding-right: 50px;
padding-left: 50px;
}
.free-trial-text {
color: #fff;
font-size: 11px;
line-height: 25px;
font-style: normal;
font-weight: 300;
}
.grid-77 {
margin-top: 55px;
grid-column-gap: 12px;
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.deactivated-button {
border: 1px solid #606060;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 5px -3px #000;
-webkit-transition: background-color 200ms ease, box-shadow 200ms ease;
transition: background-color 200ms ease, box-shadow 200ms ease;
font-family: quasimoda, sans-serif;
color: #333;
cursor: pointer;
}
.deactivated-button:hover {
background-color: #606060;
box-shadow: 1px 1px 9px -3px #000;
color: #fff;
}
.deactivated-button:active {
box-shadow: 1px 1px 0 -3px #000;
}
.grid-78 {
position: relative;
top: 30px;
z-index: 3;
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-188 {
display: -ms-grid;
display: grid;
grid-auto-columns: 1fr;
grid-column-gap: 13px;
grid-row-gap: 0px;
-ms-grid-columns: 0.5fr 1fr;
grid-template-columns: 0.5fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-54 {
text-align: right;
}
.div-block-189 {
display: inline-block;
padding: 8px 20px;
border-radius: 5px;
background-color: #f46760;
box-shadow: 1px 1px 3px 0 #a5a5a5;
}
.text-block-123 {
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 16px;
font-weight: 300;
cursor: default;
}
.text-block-124 {
font-family: quasimoda, sans-serif;
color: #494949;
font-style: italic;
cursor: default;
}
.div-block-190 {
margin-bottom: 5px;
}
.div-block-191 {
margin-bottom: 15px;
}
.google-search-image-wrapper {
margin-top: 25px;
}
.image-55 {
padding-left: 2px;
}
@media screen and (max-width: 991px) {
.home-link {
position: static;
top: -10px;
}
.home-link.w--current {
position: static;
}
.navigation-logo {
position: static;
margin-top: 0px;
}
.navigation-items {
position: static;
display: block;
margin-top: 464px;
margin-right: 19px;
padding-right: 0px;
background-color: #fff;
}
.navigation {
position: -webkit-sticky;
position: sticky;
}
.login-button {
background-color: #fff;
color: #333;
}
.menu-button {
position: static;
left: 392px;
top: 29px;
display: inline;
background-color: #fff;
font-size: 50px;
}
.menu-button.w--open {
background-color: #000;
}
.form-wrapper {
margin-right: -11%;
padding-top: 16px;
}
.heading {
font-size: 23px;
}
.section-description {
font-size: 13px;
}
.image-2 {
max-width: 80%;
}
.container-2 {
display: inline-block;
margin-top: 0px;
margin-right: 0%;
margin-left: 0%;
padding-top: 0px;
}
.div-block-2 {
display: inline-block;
}
.grid-2 {
padding-right: 40px;
padding-left: 40px;
}
.homepage-subtitle {
margin-top: 20px;
margin-bottom: 20px;
}
.ad-management-grid.feature-grid-template {
grid-column-gap: 36px;
}
.subpoint-title {
font-size: 16px;
}
.subpoint-explanation {
display: inline;
font-size: 13px;
}
.what-s-included-heading {
margin-top: 10px;
margin-bottom: 5px;
}
.services-tab {
margin-right: 10px;
margin-left: 10px;
padding-right: 32px;
padding-left: 32px;
}
.business-vs-nonprofits {
margin-right: 50px;
margin-left: 50px;
}
.business-vs-nonprofits.w--current {
margin-right: 45px;
margin-left: 45px;
}
.what-we-do-description {
margin-top: -20px;
padding-right: 10px;
padding-left: 10px;
font-size: 15px;
}
.what-we-do-heading {
margin-bottom: 30px;
}
.grid-15 {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.container-7 {
padding-right: 60px;
padding-left: 60px;
}
.section-6.login-modal {
display: block;
opacity: 1;
}
.sign-in-title {
margin-top: 30px;
}
.login-text-field {
padding-top: 6px;
padding-bottom: 6px;
}
.field-label {
margin-bottom: 3px;
}
.sign-in-button {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: none;
}
.container-10 {
margin-bottom: 0px;
}
.grid-18 {
margin-right: 50px;
margin-left: 50px;
}
.grid-22 {
-ms-grid-columns: 0.3fr 1fr 1fr 0.3fr;
grid-template-columns: 0.3fr 1fr 1fr 0.3fr;
}
.section-description-right {
padding-right: 49px;
opacity: 1;
}
.section-description-left {
padding-left: 37px;
}
.link-block-5 {
position: static;
top: -10px;
padding-top: 8px;
}
.link-block-5.w--current {
position: static;
padding-top: 8px;
}
.icon {
position: relative;
left: -5px;
top: 5px;
}
.div-block-48 {
display: block;
text-align: right;
}
.grid-23 {
padding-top: 0px;
padding-right: 30px;
padding-left: 30px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-11 {
font-size: 13px;
}
.tabs {
padding-right: 0px;
padding-left: 0px;
}
.container-14 {
padding-right: 30px;
padding-left: 30px;
}
.get-started-modal {
display: none;
opacity: 0;
}
.heading-15 {
margin-top: 21px;
margin-bottom: 44px;
padding-right: 120px;
padding-left: 120px;
line-height: 38px;
}
.div-block-51 {
padding-top: 10px;
}
.text-block-12 {
font-size: 14px;
}
.field-label-2 {
font-weight: 300;
}
.field-label-3 {
font-weight: 300;
}
.grid-25 {
left: -2px;
top: -75px;
}
.button-10 {
left: 8px;
top: 11px;
}
.sign-in-field {
text-align: left;
}
.r-finder-field {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.r-finder-text-field {
border: 1px solid #e2e2e2;
border-radius: 6px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.div-block-58 {
margin-right: 33px;
padding-right: 10px;
padding-left: 10px;
}
.heading-17 {
margin-top: 10px;
padding-right: 10px;
padding-left: 10px;
}
.dropdown-list-2 {
display: block;
margin-top: -4px;
background-color: hsla(0, 0%, 86.7%, 0);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
}
.nav-dropdown {
display: block;
margin-top: 10px;
border-radius: 6px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 200ms ease-in;
transition: all 200ms ease-in;
text-transform: uppercase;
}
.nav-dropdown:hover {
box-shadow: 2px 2px 7px -2px #000;
}
.nav-dropdown.dropdown-login {
background-color: #dc3545;
color: #fff;
}
.dropdown {
margin-right: 7px;
}
.dropdown-toggle {
display: block;
}
.div-block-60 {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 2;
display: none;
background-color: #fff;
opacity: 1;
}
.mobile-login {
width: 100vw;
height: 0%;
background-color: #dc3545;
}
.mobile-login.menu-item-4 {
background-color: #f6f9fc;
color: #333;
}
.div-block-61 {
width: 100px;
}
.div-block-62 {
width: auto;
}
.button-12 {
width: 100vw;
}
.div-block-63 {
width: auto;
}
.button-13 {
width: 100vw;
}
.mobile-menu-item {
width: 100vw;
background-color: #fff;
font-family: quasimoda, sans-serif;
color: #333;
font-weight: 300;
}
.div-block-64 {
position: relative;
z-index: 3;
display: block;
font-family: quasimoda, sans-serif;
}
.div-block-64.menu-item-1 {
display: none;
opacity: 0;
}
.div-block-64.but-u-special {
position: fixed;
display: none;
}
.div-block-66 {
display: block;
}
.grid-33 {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 3px;
-ms-grid-columns: 0.5fr 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr 0.5fr;
}
.delete-card-button {
display: inline-block;
padding-top: 3px;
padding-right: 20px;
padding-bottom: 3px;
border-radius: 1vw;
background-color: #757575;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
}
}
@media screen and (max-width: 767px) {
.login-button {
margin-left: 0px;
padding-left: 10px;
border-radius: 0px;
}
.text-field {
margin-top: 0px;
margin-bottom: 5px;
}
.form-wrapper {
padding-right: 5px;
padding-bottom: 21px;
padding-left: 5px;
}
.heading {
font-size: 18px;
line-height: 26px;
}
.demonstration-grid {
-ms-grid-rows: minmax(auto, 0.33fr) minmax(auto, 0.33fr) minmax(auto, 0.33fr);
grid-template-rows: minmax(auto, 0.33fr) minmax(auto, 0.33fr) minmax(auto, 0.33fr);
}
.about-title {
font-size: 28px;
line-height: 35px;
}
.heading-6 {
padding-right: 20px;
padding-left: 20px;
}
.heading-7 {
padding-right: 20px;
padding-left: 20px;
}
.paragraph-3 {
padding-right: 20px;
padding-left: 20px;
}
.paragraph-4 {
padding-right: 30px;
padding-left: 30px;
}
.grid-2 {
margin-right: 10px;
margin-left: 10px;
-ms-grid-columns: 1fr 0.63fr;
grid-template-columns: 1fr 0.63fr;
}
.homepage-subtitle {
margin-top: 0px;
margin-bottom: 19px;
padding-right: 0px;
padding-left: 0px;
font-size: 13px;
}
.button-5-copy {
padding-bottom: 13px;
}
.image-3 {
margin-right: -24px;
}
.image-4 {
padding-left: 0px;
}
.subpoint-explanation {
margin-right: -15px;
}
.what-s-included-intro-explanation {
font-size: 12px;
}
.container-4 {
margin-top: -21px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
}
.subpoint-wrapper {
display: block;
margin-right: -40px;
padding-right: 0px;
}
.div-block-18 {
margin-left: 20px;
}
.heading-12 {
font-size: 18px;
}
.grid-10 {
margin-right: 126px;
-ms-grid-columns: 1fr 3fr;
grid-template-columns: 1fr 3fr;
}
.grid-11 {
margin-top: 15px;
}
.footer-link-block {
padding-right: 0px;
padding-left: 0px;
}
.footer-link-block.w--current {
padding-right: 0px;
padding-left: 0px;
}
.services-tab {
margin-right: 5px;
margin-left: 5px;
padding: 15px 20px;
}
.services-tab.w--current {
margin-right: 5px;
margin-left: 5px;
padding-right: 20px;
padding-left: 20px;
}
.section-4 {
margin-bottom: 26px;
}
.business-vs-nonprofits {
margin-right: 30px;
margin-left: 30px;
padding: 25px 55px;
}
.business-vs-nonprofits.w--current {
margin-right: 30px;
margin-left: 30px;
padding-right: 55px;
padding-left: 55px;
}
.grid-12 {
margin-top: -25px;
margin-bottom: 20px;
}
.grid-13 {
margin-top: 63px;
grid-row-gap: 0px;
}
.timeline-block {
position: relative;
top: -12px;
margin-top: -10px;
padding-right: 35px;
padding-left: 45px;
}
.text-block-5 {
padding: 15px 10px;
color: #6b6b6b;
}
.timeline-title {
font-size: 18px;
}
.grid-14 {
margin-top: -16px;
margin-bottom: 0px;
margin-left: 86px;
padding-top: 0px;
}
.what-we-do-description {
margin-top: -10px;
padding-right: 25px;
padding-left: 25px;
font-size: 12px;
line-height: 20px;
text-transform: none;
}
.what-we-do-heading {
margin-bottom: 8px;
padding-right: 25px;
padding-left: 25px;
font-size: 25px;
}
.div-block-26 {
margin-top: 10px;
}
.section-6.login-modal {
display: block;
opacity: 1;
}
.sign-in-title {
margin-top: 20px;
margin-bottom: 15px;
}
.login-text-field {
padding-top: 0px;
padding-bottom: 0px;
font-family: quasimoda, sans-serif;
font-size: 10px;
font-weight: 300;
}
.field-label {
margin-bottom: 0px;
font-size: 12px;
}
.button-8 {
left: 90%;
display: block;
}
.grid-16 {
grid-column-gap: 13px;
}
.image-13 {
display: block;
}
.div-block-29 {
margin-top: 4px;
margin-bottom: -47px;
margin-left: 0px;
padding-left: 0px;
}
.div-block-31 {
position: relative;
top: -1px;
margin: 0px -40px 11px;
padding-top: 0px;
}
.image-14 {
top: 52px;
margin-top: 112px;
padding-top: 0px;
}
.div-block-32 {
top: -25px;
margin-top: -2%;
margin-right: -13px;
margin-left: -15px;
padding: 10px 0px 10px 19px;
}
.div-block-33 {
top: -61px;
margin-top: 1px;
}
.div-block-33.small {
top: -106px;
}
.grid-20 {
grid-column-gap: 10px;
-ms-grid-columns: 0.35fr 1fr 1fr 1fr 0.35fr;
grid-template-columns: 0.35fr 1fr 1fr 1fr 0.35fr;
}
.grid-21 {
grid-column-gap: 11px;
-ms-grid-columns: 0.5fr 0.5fr 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr;
}
.heading-14 {
margin-bottom: -56px;
}
.grid-22 {
margin-right: 4px;
margin-bottom: -25px;
margin-left: 4px;
}
.text-block-10 {
font-size: 10px;
}
.div-block-47 {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 23px;
padding-left: 0px;
}
.text-block-11 {
font-size: 12px;
}
.container-14 {
padding-right: 20px;
padding-left: 20px;
}
.get-started-modal {
display: none;
opacity: 0;
}
.grid-24 {
grid-row-gap: 107px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.heading-15 {
margin-top: 14px;
margin-bottom: 23px;
padding-right: 70px;
padding-left: 70px;
font-size: 25px;
}
.grid-25 {
left: 0px;
top: 0px;
display: block;
margin-top: -122px;
margin-right: 0px;
margin-left: 0px;
padding-right: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 0.5fr;
grid-template-columns: 0.5fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
text-align: center;
}
.div-block-52 {
display: inline;
}
.text-block-13 {
margin-top: -15px;
padding-right: 100px;
padding-left: 100px;
}
.button-10 {
left: -3px;
top: 14px;
}
.text-block-14 {
font-size: 12px;
}
.text-block-15 {
font-size: 12px;
}
.div-block-57 {
margin-right: 4px;
margin-left: 4px;
}
.r-finder-text-field {
padding-top: 0px;
padding-bottom: 0px;
font-size: 12px;
}
.image-23 {
display: inline;
margin-top: 17px;
margin-right: 8px;
padding-bottom: 0px;
text-align: center;
}
.image-24 {
display: none;
padding-left: 0px;
}
.heading-17 {
margin-top: 0px;
margin-bottom: 7px;
font-size: 22px;
line-height: 29px;
}
.grid-26 {
justify-items: end;
text-align: right;
}
.div-block-73 {
text-align: center;
}
.heading-19 {
padding-right: 140px;
padding-left: 140px;
font-size: 32px;
line-height: 38px;
}
}
@media screen and (max-width: 479px) {
.home-link {
position: static;
margin-top: 4px;
padding-left: 0px;
font-size: 14px;
}
.navigation {
display: block;
}
.form-wrapper {
margin-top: 12px;
margin-right: 0%;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
border-radius: 3px;
}
.heading {
margin-right: -2px;
margin-left: -2px;
color: #6b6b6b;
font-size: 19px;
}
.section-title {
padding-right: 10px;
padding-left: 10px;
font-size: 36px;
}
.section-description {
margin-bottom: 19px;
padding-right: 10px;
font-size: 12px;
line-height: 20px;
text-align: left;
}
.demonstration-grid {
grid-row-gap: 8px;
-ms-grid-rows: minmax(auto, 0.75fr) auto auto;
grid-template-rows: minmax(auto, 0.75fr) auto auto;
}
.customer-container {
padding-bottom: 5px;
}
.about-title {
margin-right: auto;
margin-bottom: 17px;
margin-left: auto;
padding-right: 20px;
padding-left: 20px;
font-size: 25px;
}
.heading-6 {
padding-right: 10px;
padding-left: 10px;
}
.heading-7 {
margin-right: auto;
margin-left: auto;
padding-right: 10px;
padding-left: 10px;
}
.paragraph-3 {
padding-right: 10px;
padding-left: 10px;
}
.paragraph-4 {
margin-right: auto;
margin-left: auto;
padding-right: 10px;
padding-left: 10px;
}
.team-member-role {
font-size: 12px;
}
.image-2 {
display: none;
padding-right: 0px;
padding-left: 46px;
}
.grid-2 {
margin-top: 28px;
margin-right: 4px;
margin-bottom: -85px;
padding-right: 0px;
padding-left: 63px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.homepage-subtitle {
margin-right: -5px;
margin-bottom: 24px;
margin-left: -5px;
padding-right: 25px;
padding-left: 25px;
color: #707070;
}
.image-3 {
position: relative;
left: 14%;
top: 95%;
right: auto;
bottom: auto;
display: block;
width: 75px;
margin-right: 0px;
padding-right: 0px;
padding-left: 0px;
text-align: right;
}
.image-4 {
position: static;
left: 26%;
top: 94%;
right: 0%;
bottom: 0%;
display: block;
min-width: 65%;
margin-left: 9px;
padding-right: 0px;
padding-left: 0px;
}
.three-steps {
font-size: 22px;
}
.div-block-6 {
padding-right: 0px;
}
.container-3 {
padding-right: 5px;
padding-left: 5px;
}
.ad-management-grid.feature-grid-template {
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: 124px auto;
grid-template-rows: 124px auto;
}
.grid-9 {
margin-top: 18px;
margin-right: 20px;
margin-left: 20px;
}
.subpoint-explanation {
font-size: 11px;
line-height: 10px;
}
.what-s-included-heading {
margin-top: 5px;
font-size: 20px;
}
.what-s-included-intro-explanation {
padding-right: 15px;
padding-left: 15px;
font-size: 11px;
}
.container-4 {
margin-top: -56px;
}
.subpoint-wrapper {
margin-top: -6px;
margin-bottom: 0px;
padding-left: 10px;
font-size: 14px;
}
.image-11 {
padding-top: 30px;
padding-right: 40px;
padding-left: 40px;
}
.div-block-17 {
margin-top: 0px;
}
.div-block-18 {
margin-top: -13px;
margin-left: 0px;
}
.heading-12 {
margin-right: -30px;
margin-left: -30px;
font-size: 15px;
text-align: center;
}
.services-image {
margin-top: 28px;
margin-bottom: 0px;
padding-top: 80px;
padding-right: 67px;
padding-left: 54px;
}
.services-image.mgmt {
margin-top: 1px;
padding-top: 160px;
padding-right: 50px;
padding-left: 50px;
}
.services-image.dsh {
max-width: 300px;
margin-top: -93px;
padding-top: 0px;
padding-right: 65px;
padding-left: 50px;
}
.services-image.act {
max-width: 300px;
margin-top: -89px;
padding-top: 0px;
padding-right: 85px;
}
.div-block-20 {
margin-top: 24px;
padding-right: 20px;
padding-left: 20px;
}
.grid-10 {
margin-right: 10px;
margin-left: 10px;
}
.image-12 {
margin-top: 3px;
padding-right: 9px;
padding-left: 6px;
}
.footer-link-text {
margin-right: -9px;
margin-left: -8px;
font-size: 12px;
}
.grid-11 {
margin-top: 3px;
}
.services-tab {
margin-right: 2px;
margin-left: 2px;
padding: 10px 7px;
}
.services-tab.w--current {
margin-right: 2px;
margin-left: 2px;
padding: 10px 7px;
}
.business-vs-nonprofits {
display: inline-block;
margin-right: 3px;
margin-left: 5px;
padding: 15px 30px;
}
.business-vs-nonprofits.w--current {
margin-right: 5px;
margin-left: 3px;
padding-right: 30px;
padding-left: 30px;
}
.tabs-menu-2 {
margin-bottom: 47px;
}
.grid-12 {
margin-top: -13px;
grid-row-gap: 0px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: 134px auto;
grid-template-rows: 134px auto;
}
.grid-13 {
margin-top: 53px;
justify-items: start;
}
.timeline-block {
display: block;
margin-right: 15px;
padding-right: 19px;
padding-bottom: 0px;
padding-left: 5px;
}
.text-block-5 {
padding-right: 2px;
}
.text-block-5.text-block-small {
display: inline-block;
padding-bottom: 0px;
}
.text-block-5.invisible-text-block {
display: inline;
color: #fff;
}
.timeline-title {
font-size: 16px;
}
.grid-14 {
margin-left: 18px;
}
.what-we-do-description {
margin-top: 0px;
text-align: center;
}
.what-we-do-heading {
margin-top: 10px;
padding-right: 40px;
padding-left: 40px;
font-size: 20px;
text-align: center;
}
.grid-15 {
display: block;
margin-left: -8px;
padding-right: 0px;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
grid-column-gap: 0px;
-ms-grid-columns: 5fr;
grid-template-columns: 5fr;
}
.container-7 {
margin-top: 25px;
}
.div-block-26 {
position: relative;
left: -2%;
z-index: 1;
padding: 9px;
}
.section-6.login-modal {
display: block;
opacity: 1;
}
.sign-in-title {
font-size: 22px;
}
.button-8 {
left: 94%;
top: 17%;
z-index: 3;
margin-top: -29px;
margin-left: -56px;
}
.grid-16 {
padding-right: 0px;
padding-left: 0px;
-ms-grid-columns: 1.5fr;
grid-template-columns: 1.5fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.div-block-29 {
margin-top: 9px;
}
.company-logo {
margin-right: 15px;
margin-left: 15px;
}
.div-block-30 {
margin-left: -8px;
padding-right: 0px;
padding-left: 0px;
}
.div-block-31 {
left: 6px;
margin-top: 15px;
margin-left: -53px;
}
.image-14 {
left: 9px;
margin-top: 106px;
margin-left: 5px;
padding-right: 10px;
padding-left: 0px;
}
.div-block-32 {
left: 4px;
margin-top: 12%;
margin-right: -28px;
margin-left: -9px;
padding-right: 14px;
}
.div-block-33 {
padding-right: 89px;
padding-left: 77px;
}
.div-block-33.small {
padding-left: 70px;
}
.container-8 {
padding-bottom: 0px;
}
.div-block-38 {
margin-top: -54px;
}
.image-17 {
margin-top: -17px;
padding-right: 43px;
padding-left: 43px;
}
.container-12 {
margin-top: 6px;
}
.grid-18 {
margin-right: 20px;
margin-left: 20px;
padding-right: 40px;
padding-left: 40px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.education-description {
padding-left: 0px;
font-size: 11px;
}
.action-button.get-started {
margin-bottom: 0px;
}
.grid-20 {
padding-right: 40px;
padding-left: 40px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.grid-21 {
padding-right: 40px;
padding-left: 40px;
grid-column-gap: 16px;
-ms-grid-columns: 1.08fr;
grid-template-columns: 1.08fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.heading-14 {
margin-bottom: -99px;
font-size: 22px;
}
.grid-22 {
margin-bottom: 9px;
grid-column-gap: 2px;
-ms-grid-columns: 0.55fr 0.5fr;
grid-template-columns: 0.55fr 0.5fr;
}
.money-icon {
margin-top: -13px;
font-size: 22px;
}
.three-steps-right {
font-size: 22px;
}
.section-description-right {
padding-right: 12px;
font-size: 12px;
line-height: 22px;
}
.section-description-left {
padding-left: 9px;
font-size: 12px;
line-height: 22px;
}
.image-18 {
left: -19px;
top: 121px;
padding: 5px;
}
.image-20 {
left: 17px;
top: -19px;
display: inline;
}
.text-block-10 {
font-size: 8px;
}
.div-block-47 {
margin-left: 0px;
}
.link-block-5 {
position: static;
padding-top: 13px;
}
.icon {
position: static;
margin-top: -4px;
}
.grid-23 {
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
-ms-grid-columns: 1.5fr 0.75fr;
grid-template-columns: 1.5fr 0.75fr;
}
.text-block-11 {
font-size: 8px;
}
.container-14 {
padding-right: 10px;
padding-left: 10px;
}
.get-started-modal {
display: none;
opacity: 0;
}
.grid-24 {
margin-left: -16px;
}
.container-15 {
margin-top: 0px;
}
.heading-15 {
margin-top: 28px;
margin-bottom: 18px;
padding-right: 30px;
padding-left: 30px;
font-size: 18px;
line-height: 28px;
}
.div-block-51 {
left: 1px;
}
.grid-25 {
left: 22px;
top: 131px;
margin-top: -244px;
margin-right: 0px;
margin-left: -43px;
-ms-grid-columns: 0.25fr 0.5fr;
grid-template-columns: 0.25fr 0.5fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.text-block-13 {
margin-top: -11px;
margin-right: 0px;
padding-right: 30px;
padding-left: 30px;
font-size: 12px;
line-height: 17px;
}
.button-10 {
left: -2px;
top: 16px;
}
.text-block-14 {
font-size: 8px;
}
.text-block-15 {
font-size: 8px;
}
.image-21 {
padding-right: 50px;
padding-left: 50px;
}
.div-block-53 {
padding-left: 0px;
}
.text-block-16 {
font-size: 12px;
}
.div-block-54 {
display: none;
}
.div-block-55 {
display: none;
}
.div-block-56 {
display: none;
}
.div-block-57 {
display: none;
}
.image-22 {
display: none;
}
.r-finder-field {
margin-bottom: 0px;
font-size: 13px;
}
.image-23 {
max-width: none;
margin-top: 7px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.div-block-58 {
width: 100%;
}
.heading-17 {
font-size: 20px;
line-height: 30px;
}
.mobile-menu-item.menu-item-2 {
display: block;
opacity: 0;
}
.div-block-64 {
position: relative;
display: block;
opacity: 0;
}
.div-block-64.menu-item-1 {
position: static;
display: none;
}
.div-block-64.but-u-special {
position: fixed;
}
.div-block-65 {
position: fixed;
}
.div-block-67 {
display: none;
}
.div-block-68 {
display: none;
}
.div-block-69 {
display: none;
}
.div-block-70 {
display: none;
}
.image-25 {
padding-bottom: 10px;
}
.image-26 {
position: relative;
top: 53px;
display: inline-block;
}
.div-block-71 {
display: inline;
}
.div-block-72 {
left: 18px;
margin-top: 0px;
}
.section-10 {
margin-bottom: 26px;
}
.grid-26 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100px;
margin-right: 0px;
margin-left: 9px;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
-ms-grid-columns: 0.75fr minmax(38px, 0.25fr);
grid-template-columns: 0.75fr minmax(38px, 0.25fr);
}
.heading-19 {
margin-top: 25px;
padding-right: 40px;
padding-left: 40px;
font-size: 26px;
line-height: 31px;
}
.div-block-85 {
display: block;
margin-right: 0%;
margin-left: 0px;
}
}
#w-node-2e0717dbafe4-7d9abb31 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-a6923b84582d-7d9abb31 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-03fde21f3f12-7d9abb31 {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-01337bff7fb0-7d9abb31 {
-webkit-align-self: end;
-ms-flex-item-align: end;
-ms-grid-row-align: end;
align-self: end;
}
#w-node-32b7f34e434b-7d9abb31 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-3df8a231ffeb-7d9abb31 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-492f2f330756-1dd0385d {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-492f2f330757-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-54a812aa2ba3-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-54a812aa2ba4-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-6ac7b108014d-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-6ac7b108014e-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-ef581dd0386b-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-ef581dd0386c-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-c2da78f33564-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-c2da78f33565-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-ef581dd03870-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-d46a3582140c-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-5a7a742fcfb3-5b9abb32 {
-ms-grid-column-align: end;
justify-self: end;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-6f7e9e17d8c6-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-914bff0f3fdf-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-dc9a9351f3a2-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-4a061b0c3bb3-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-cf6447f1277a-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-c355c84eddd2-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-f0260de9bfb5-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-b8322d8b8f20-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-023388c7a083-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-4b4b6953f679-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-f25215a864ea-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-f34d38b77d50-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-520b1d3695b5-5b9abb32 {
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-d5fb0ef6a1b3-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-e8a916c1598f-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-061cc04bd378-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-715b2cc0eb14-5b9abb32 {
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-715b2cc0eb1d-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-715b2cc0eb21-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-715b2cc0eb25-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-3f7638a3041d-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-3f7638a30421-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-3f7638a30425-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-dd7c40e48b4e-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-dd7c40e48b52-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-dd7c40e48b56-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-2942de21e5a1-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-2942de21e5a5-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-2942de21e5a9-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-b8b8b99f504c-5b9abb32 {
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-d18eb4ee1084-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-edbf39d629a9-5b9abb32 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-c4dae169a65c-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-8c4724db7fae-b89abb33 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-d0b3a7d803a6-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-5f05a7423417-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-574093b527df-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-574093b527e4-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-55b6274f86eb-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-70e7a1c10cbe-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-70e7a1c10cc3-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-4f7d76c17951-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-4f7d76c17956-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-4f7d76c1796a-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-4f7d76c1796f-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-887967b056b8-67b056ad {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-887967b056bc-67b056ad {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-887967b056df-67b056ad {
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-887967b056e0-67b056ad {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-887967b056e7-67b056ad {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-c384b1131033-42d9bc04 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-175a25825b15-42d9bc04 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-0c6542d9bc3f-42d9bc04 {
-webkit-align-self: end;
-ms-flex-item-align: end;
-ms-grid-row-align: end;
align-self: end;
}
#w-node-0c6542d9bc41-42d9bc04 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-0c6542d9bc47-42d9bc04 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-0c6542d9bc4d-42d9bc04 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-0c6542d9bc56-42d9bc04 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-a353f437a7e4-cc9abb3a {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-c4dae169a65c-cc9abb3a {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-1264eec4ac16-cc9abb3a {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-e68110bbc741-cc9abb3a {
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-5a4f843be988-cc9abb3a {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-5a4f843be995-cc9abb3a {
-ms-grid-column-align: end;
justify-self: end;
}
@media screen and (max-width: 991px) {
#w-node-887967b056df-67b056ad {
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-887967b056e0-67b056ad {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-887967b056e7-67b056ad {
-ms-grid-column-align: start;
justify-self: start;
}
} | backend/account/static/css/ad-launcher-website-c61ef933eac37281ed9.webflow.css | .w-layout-grid {
display: -ms-grid;
display: grid;
grid-auto-columns: 1fr;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
grid-row-gap: 16px;
grid-column-gap: 16px;
}
.navbar {
background-color: #fff;
}
.navigation-item {
padding-right: 12px;
padding-left: 12px;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.navigation-item.w--current {
color: #333;
}
.nav-link-2 {
font-family: Montserrat, sans-serif;
}
.nav-link-3 {
font-family: Montserrat, sans-serif;
}
.logo {
background-image: url('../images/r-finder-logo.png');
background-position: 50% 50%;
background-size: contain;
background-repeat: no-repeat;
font-size: 14px;
line-height: 15px;
}
.home-link {
margin-left: 8px;
padding-right: 5px;
padding-left: 5px;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.home-link.w--current {
color: #333;
font-weight: 300;
}
.navigation-logo {
margin-top: 11px;
margin-left: 10px;
}
.navigation-items {
display: inline;
margin-left: 0px;
}
.navigation {
position: static;
top: 0px;
margin-top: 0px;
margin-bottom: 10px;
background-color: #fff;
box-shadow: 1px 1px 10px -5px #000;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
font-family: quasimoda, sans-serif;
}
.login-button {
margin-top: 14px;
margin-left: 15px;
padding: 6px 30px;
border-radius: 18px;
background-color: #dc3545;
box-shadow: 1px 3px 4px -3px #000;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 16px;
font-weight: 300;
}
.login-button:hover {
box-shadow: 0 2px 8px -2px #000;
}
.section {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
min-height: 75vh;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/google-ads-dashboard.jpg');
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/google-ads-dashboard.jpg');
background-position: 0px 0px, 50% 50%;
background-size: auto, auto;
background-repeat: repeat, no-repeat;
}
.container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.form-block {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: baseline;
-webkit-align-items: baseline;
-ms-flex-align: baseline;
align-items: baseline;
background-color: #fff;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.div-block {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.registration-container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-left: 0px;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-flex: 0;
-webkit-flex: 0 100%;
-ms-flex: 0 100%;
flex: 0 100%;
grid-auto-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.form {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: auto;
max-width: 80%;
margin-top: 0px;
margin-bottom: 0px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-color: #fff;
}
.text-field {
margin-top: 15px;
margin-bottom: 15px;
padding-top: 5px;
padding-bottom: 5px;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
border-radius: 20px;
font-family: Montserrat, sans-serif;
font-size: 12px;
line-height: 20px;
font-weight: 300;
}
.text-field-2 {
font-family: Montserrat, sans-serif;
font-weight: 500;
}
.get-started-button {
display: inline-block;
padding: 8px 20px;
border-radius: 10px;
background-color: #dc3545;
box-shadow: 1px 1px 9px -4px #000;
font-family: quasimoda, sans-serif;
color: #fff;
font-weight: 300;
text-align: center;
}
.text-field-3 {
font-family: Montserrat, sans-serif;
font-weight: 500;
}
.form-wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
max-width: 450px;
margin-top: 20px;
margin-right: 7%;
margin-bottom: 0px;
padding: 20px 10px 35px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
-webkit-box-ordinal-group: 1;
-webkit-order: 0;
-ms-flex-order: 0;
order: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 40vw;
-ms-flex: 0 0 40vw;
flex: 0 0 40vw;
border-radius: 20px;
background-color: #fff;
box-shadow: 3px 3px 11px -6px #000;
text-align: left;
}
.heading {
margin-bottom: 0px;
padding-right: 0px;
padding-left: 0px;
font-family: quasimoda, sans-serif;
font-size: 29px;
line-height: 37px;
font-weight: 300;
text-align: center;
letter-spacing: 0.1px;
}
.form-block-2 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin: 0px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.paragraph {
font-family: Montserrat, sans-serif;
color: grey;
font-weight: 300;
}
.paragraph.are-you-a {
padding-top: 9px;
}
.button {
display: block;
margin-top: 10px;
margin-bottom: 15px;
padding-right: 5px;
padding-left: 30px;
background-color: #eceff1;
background-image: url('../images/google-logo.png');
background-position: 8vw 50%;
background-size: 30px;
background-repeat: no-repeat;
font-family: Montserrat, sans-serif;
color: #000;
font-weight: 600;
text-align: center;
}
.heading-2 {
font-family: Montserrat, sans-serif;
font-weight: 500;
text-align: center;
}
.section-title {
margin-top: auto;
margin-bottom: 10px;
font-family: quasimoda, sans-serif;
font-weight: 500;
text-align: center;
}
.section-description {
display: inline-block;
max-width: 100%;
margin-top: 0px;
margin-bottom: 41px;
font-family: quasimoda, sans-serif;
color: grey;
font-size: 15px;
line-height: 25px;
font-weight: 100;
text-align: left;
}
.grid {
grid-template-areas: "Area" "Area";
-ms-grid-columns: 1fr 2fr;
grid-template-columns: 1fr 2fr;
}
.demonstration-grid {
margin-top: 0px;
margin-bottom: 0px;
padding-right: 5%;
padding-left: 5%;
justify-items: start;
grid-column-gap: 43px;
grid-row-gap: 35px;
-ms-grid-columns: 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
text-align: left;
}
.demonstration {
margin-top: 0px;
margin-bottom: 0px;
text-align: left;
}
.heading-3 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-family: Montserrat, sans-serif;
}
.footer {
padding-top: 5px;
padding-bottom: 5px;
background-color: #dc3545;
}
.demonstration-section {
margin-top: 40px;
margin-bottom: 60px;
opacity: 1;
}
.customers-section {
margin-bottom: 0px;
padding-bottom: 26px;
background-color: transparent;
font-family: quasimoda, sans-serif;
text-align: center;
}
.image {
max-width: 70%;
margin-top: 16px;
text-align: center;
}
.customer-container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 0px;
padding-top: 30px;
padding-bottom: 30px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.heading-4 {
font-family: Montserrat, sans-serif;
color: #fff;
text-align: center;
}
.about-title {
margin-top: 32px;
margin-bottom: 40px;
font-family: quasimoda, sans-serif;
font-size: 30px;
line-height: 30px;
font-weight: 300;
text-align: center;
}
.about-description {
margin-top: 30px;
margin-bottom: 10px;
font-family: quasimoda, sans-serif;
text-align: center;
}
.heading-6 {
margin-bottom: 20px;
padding-right: 60px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
font-size: 22px;
font-weight: 300;
}
.heading-7 {
margin-bottom: 20px;
padding-right: 60px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
font-size: 22px;
font-weight: 300;
}
.paragraph-3 {
padding-right: 60px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.paragraph-4 {
margin-right: 0px;
padding-right: 60px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
}
.columns {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 10px;
}
.column {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.column-2 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.sign-up-button {
padding: 4px 20px;
border-radius: 12px;
background-color: #dc3545;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 170ms ease-out;
transition: all 170ms ease-out;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
text-transform: none;
white-space: normal;
}
.sign-up-button:hover {
box-shadow: 0 2px 13px -3px #1a1a1a;
}
.button-3 {
border-radius: 20px;
background-color: #dc3545;
font-weight: 700;
}
.splash-section {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
min-height: 75vh;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url('../images/google-ads-dashboard.jpg');
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/google-ads-dashboard.jpg');
background-position: 0px 0px, 50% 50%;
background-size: auto, auto;
background-repeat: repeat, no-repeat;
}
.button-4 {
border-radius: 20px;
background-color: #dc3545;
font-family: Montserrat, sans-serif;
font-weight: 600;
}
.learn-more-button {
padding-right: 20px;
padding-left: 20px;
border-radius: 8px;
background-color: #dc3545;
font-family: Montserrat, sans-serif;
font-weight: 600;
}
.column-1 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.action-container {
margin-top: 24px;
}
.google-button {
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
.story-section {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.mission-section {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.team-section {
margin-bottom: 0px;
}
.kristian-photo {
border-radius: 100%;
}
.tanmay-photo {
border-radius: 20%;
}
.team-member-card {
margin-bottom: 20px;
}
.team-member-name {
margin-bottom: 0px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.body {
font-family: Montserrat, sans-serif;
}
.body-2 {
font-family: Montserrat, sans-serif;
}
.team-member-role {
margin-top: 3px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.contact-section {
margin-top: 100px;
}
.send-button {
display: block;
margin-right: auto;
margin-left: auto;
padding-right: 30px;
padding-left: 30px;
border-radius: 20px;
background-color: #dc3545;
font-weight: 600;
}
.contact-form-black {
-webkit-box-flex: 0;
-webkit-flex: 0 33vw;
-ms-flex: 0 33vw;
flex: 0 33vw;
}
.contact-form-title {
margin-bottom: 20px;
font-weight: 500;
text-align: center;
}
.utility-page-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100vw;
height: 100vh;
max-height: 100%;
max-width: 100%;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.utility-page-content {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 260px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
}
.image-2 {
max-width: 70%;
margin-left: 17%;
padding-top: 16px;
padding-left: 0px;
}
.column-3 {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
text-align: left;
}
.column-4 {
display: block;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.section-2 {
padding-top: 62px;
}
.container-2 {
margin-right: 15%;
margin-left: 4%;
}
.div-block-2 {
margin-right: 5%;
margin-left: 5%;
}
.grid-2 {
margin-top: 62px;
margin-bottom: 40px;
padding-right: 60px;
padding-left: 60px;
justify-items: end;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-auto-flow: row;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.homepage-subtitle {
margin-top: 10px;
margin-bottom: 30px;
padding-right: 10px;
padding-left: 20px;
font-size: 15px;
font-weight: 300;
text-align: center;
}
.div-block-3 {
margin-top: 20px;
text-align: center;
}
.div-block-4 {
text-align: center;
}
.grid-3 {
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 20px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.button-5 {
display: block;
margin-left: 10px;
padding: 13px 35px;
border-style: solid;
border-width: 0px;
border-color: rgba(0, 0, 0, 0.56);
border-radius: 7px;
background-color: #f4f4f4;
box-shadow: 1px 1px 6px -2px #000;
color: #514d4d;
text-align: center;
}
.button-6 {
padding: 20px 35px;
border-radius: 7px;
text-align: left;
}
.button-5-copy {
display: block;
margin-right: 10px;
padding: 13px 30px;
border-style: solid;
border-width: 0px;
border-color: rgba(0, 0, 0, 0.56);
border-radius: 7px;
background-color: #f4f4f4;
box-shadow: 1px 1px 6px -2px #000;
-webkit-transition: box-shadow 275ms ease;
transition: box-shadow 275ms ease;
color: #514d4d;
text-align: center;
}
.button-5-copy:hover {
padding: 13px 30px;
box-shadow: 1px 1px 16px -6px #000;
-webkit-transition: margin-right 200ms ease, margin-bottom 200ms ease, margin-left 200ms ease, box-shadow 200ms ease;
transition: margin-right 200ms ease, margin-bottom 200ms ease, margin-left 200ms ease, box-shadow 200ms ease;
}
.div-block-5 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 70px;
height: 70px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
border-radius: 100%;
background-color: #c71919;
box-shadow: 1px 1px 14px -5px #000;
color: #fff;
font-size: 18px;
text-align: center;
}
.image-3 {
text-align: right;
}
.image-4 {
display: inline-block;
min-width: 100%;
padding-left: 20px;
text-align: right;
}
.three-steps {
display: block;
font-weight: 400;
text-align: right;
}
.div-block-6 {
padding-right: 28px;
text-align: right;
}
.bold-text {
font-size: 25px;
}
.container-3 {
font-family: quasimoda, sans-serif;
text-align: center;
}
.grid-4 {
-ms-grid-columns: 1fr 1.5fr;
grid-template-columns: 1fr 1.5fr;
}
.div-block-7 {
display: block;
padding-top: 20px;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
text-align: center;
}
.grid-5 {
margin-top: 20px;
grid-column-gap: 54px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-8 {
width: 100%;
text-align: right;
}
.div-block-9 {
display: block;
text-align: right;
}
.div-block-10 {
text-align: right;
}
.div-block-11 {
text-align: right;
}
.image-5 {
max-height: 500px;
}
.image-6 {
position: static;
display: block;
text-align: left;
}
.div-block-12 {
display: inline-block;
margin-top: -107px;
padding-top: 0px;
text-align: center;
}
.image-7 {
display: block;
text-align: left;
}
.image-8 {
display: block;
}
.heading-8 {
margin-top: 5px;
margin-bottom: 3px;
font-size: 40px;
font-weight: 200;
text-align: left;
}
.image-9 {
display: inline-block;
padding-right: 10px;
padding-left: 15px;
text-align: center;
}
.div-block-13 {
text-align: right;
}
.image-10 {
display: block;
padding-left: 10px;
text-align: center;
}
.div-block-14 {
text-align: right;
}
.grid-6 {
-ms-grid-columns: 0.25fr 1fr;
grid-template-columns: 0.25fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-7 {
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.section-description-2 {
margin-top: 0px;
font-size: 15px;
font-weight: 100;
text-align: left;
}
.div-block-15 {
margin-top: 40px;
margin-bottom: 40px;
text-align: center;
}
.services-button {
margin-right: 20px;
margin-left: 20px;
padding: 20px 40px;
border-radius: 6px;
}
.grid-8 {
-ms-grid-columns: 1fr 0.75fr;
grid-template-columns: 1fr 0.75fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.ad-management-grid {
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.ad-management-grid.feature-grid-template {
margin-top: 10px;
grid-column-gap: 73px;
-ms-grid-columns: 1fr 0.6fr;
grid-template-columns: 1fr 0.6fr;
}
.grid-9 {
-ms-grid-columns: 0.75fr;
grid-template-columns: 0.75fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.text-block {
font-size: 15px;
}
.subpoint-title {
font-family: quasimoda, sans-serif;
font-size: 17px;
font-weight: 400;
}
.subpoint-explanation {
margin-top: 10px;
font-family: quasimoda, sans-serif;
line-height: 19px;
font-weight: 200;
}
.text-block-2 {
text-align: center;
}
.heading-9 {
text-align: center;
}
.what-s-included-heading {
margin-top: 17px;
margin-bottom: 1px;
font-family: quasimoda, sans-serif;
font-size: 30px;
font-weight: 300;
text-align: center;
}
.what-s-included-intro-explanation {
padding-top: 10px;
padding-bottom: 10px;
font-family: quasimoda, sans-serif;
color: #5e5e5e;
font-size: 16px;
line-height: 22px;
font-weight: 300;
text-align: center;
}
.container-4 {
margin-top: 10px;
margin-bottom: 20px;
padding-top: 20px;
padding-bottom: 20px;
}
.subpoint-wrapper {
margin-top: 5px;
margin-bottom: 5px;
}
.heading-10 {
text-align: center;
}
.div-block-16 {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}
.button-7 {
padding: 20px 60px;
}
.business-nonprofit-button {
margin-right: 20px;
margin-left: 20px;
padding: 30px 60px;
border-radius: 12px;
}
.image-11 {
opacity: 0.91;
text-align: right;
text-decoration: none;
}
.div-block-17 {
text-align: right;
}
.heading-11 {
font-size: 22px;
}
.div-block-18 {
max-width: 70%;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.heading-12 {
font-size: 20px;
line-height: 30px;
font-weight: 300;
}
.section-3 {
margin-bottom: 100px;
font-family: quasimoda, sans-serif;
}
.div-block-19 {
padding-top: 60px;
}
.div-block-20 {
display: block;
margin-top: 0px;
margin-bottom: auto;
text-align: center;
}
.grid-10 {
-ms-grid-columns: 1fr 3fr 1fr;
grid-template-columns: 1fr 3fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-12 {
margin-top: 1px;
margin-bottom: 10px;
padding-bottom: 0px;
text-align: center;
}
.footer-link-text {
margin-top: 20px;
padding-right: 0px;
padding-left: 0px;
font-family: quasimoda, sans-serif;
color: #fff;
text-align: center;
text-decoration: none;
text-transform: none;
}
.link-block {
text-decoration: none;
}
.link-block.link-block-footer {
padding-right: 20px;
padding-left: 20px;
}
.link-block-2 {
padding-right: 20px;
padding-left: 20px;
text-align: center;
text-decoration: none;
}
.link-block-3 {
padding-right: 20px;
padding-left: 20px;
text-decoration: none;
}
.div-block-21 {
padding-top: 20px;
text-align: center;
}
.grid-11 {
margin-top: 8px;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: uppercase;
}
.footer-link-block {
padding-right: 15px;
padding-bottom: 15px;
padding-left: 15px;
text-decoration: none;
}
.div-block-22 {
position: fixed;
width: 100%;
height: 10%;
box-shadow: 0 0 8px 9px #000;
opacity: 0.07;
-webkit-filter: blur(5px);
filter: blur(5px);
}
.services-tab {
display: inline-block;
margin-right: 40px;
margin-left: 40px;
padding: 20px 40px;
grid-auto-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
border: 0.5px none #000;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
text-transform: uppercase;
}
.services-tab.w--current {
background-color: #dc3545;
color: #fff;
text-transform: uppercase;
}
.tabs-menu {
margin-bottom: 0px;
text-align: center;
}
.section-4 {
margin-bottom: 73px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.container-5 {
margin-top: 60px;
}
.business-vs-nonprofits {
margin-right: 100px;
margin-left: 100px;
padding: 35px 80px;
border-radius: 8px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: uppercase;
}
.business-vs-nonprofits.w--current {
background-color: #dc3545;
color: #fff;
}
.business-vs-nonprofits.w--current {
padding-right: 80px;
padding-left: 80px;
box-shadow: 1px 1px 4px -2px #000;
text-transform: uppercase;
}
.tabs-content {
margin-top: 20px;
}
.tabs-menu-2 {
margin-top: 9px;
margin-bottom: 60px;
text-align: center;
}
.text-block-3 {
text-transform: uppercase;
}
.text-block-4 {
text-transform: uppercase;
}
.grid-12 {
-ms-grid-columns: 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-13 {
grid-row-gap: 5px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.div-block-23 {
margin-top: 5px;
}
.timeline-block {
position: -webkit-sticky;
position: sticky;
z-index: -1;
display: inline-block;
max-width: 90%;
margin-top: -25px;
margin-bottom: 33px;
margin-left: -55px;
padding-right: 74px;
padding-left: 57px;
border-style: solid;
border-width: 1px;
border-color: #f5f5f5;
border-radius: 20px;
box-shadow: 3px 3px 7px -7px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.text-block-5 {
display: block;
padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}
.text-block-5.invisible-text-block {
display: none;
padding: 0px;
color: #fff;
}
.div-block-24 {
text-align: center;
}
.timeline-title {
font-family: quasimoda, sans-serif;
font-size: 20px;
font-weight: 300;
}
.grid-14 {
margin-top: 38px;
grid-auto-flow: row;
grid-row-gap: 16px;
-ms-grid-columns: minmax(0px, 0.25fr) 1fr;
grid-template-columns: minmax(0px, 0.25fr) 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.div-block-25 {
position: relative;
z-index: 2;
display: block;
padding: 15px 21px 16px 22px;
border-radius: 100%;
background-color: #dc3545;
box-shadow: 1px 1px 4px -2px #000;
color: #fff;
font-size: 20px;
text-align: center;
text-decoration: none;
}
.what-we-do-description {
margin-top: -13px;
padding-right: 40px;
padding-left: 40px;
color: #5e5e5e;
font-size: 16px;
line-height: 22px;
text-align: left;
}
.what-we-do-heading {
margin-bottom: 40px;
padding-right: 40px;
padding-left: 40px;
font-size: 30px;
font-weight: 300;
text-align: left;
}
.container-6 {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
min-height: 410%;
background-color: #949494;
-o-object-fit: fill;
object-fit: fill;
}
.section-5 {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: -10;
background-color: #a5a5a5;
opacity: 1;
}
.grid-15 {
grid-column-gap: 60px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.container-7 {
margin-top: 82px;
padding-right: 25px;
padding-left: 25px;
}
.div-block-26 {
border-style: none;
border-width: 1px;
border-color: #000;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
}
.section-6 {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 0;
background-color: #fff;
}
.section-6.login-modal {
z-index: 1000;
display: block;
opacity: 1;
}
.sign-in-title {
margin-top: 40px;
margin-bottom: 20px;
padding-left: 40px;
font-family: quasimoda, sans-serif;
font-size: 25px;
font-weight: 300;
text-align: left;
}
.login-text-field {
border-style: solid;
border-width: 1px;
border-color: #e2e2e2;
border-radius: 6px;
box-shadow: inset 0 1px 1px -5px #000;
opacity: 1;
}
.form-block-3 {
padding-right: 40px;
padding-left: 40px;
text-align: center;
}
.field-label {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.sign-in-button {
margin-top: 15px;
padding: 6px 40px;
border-radius: 11px;
background-color: #dc3545;
box-shadow: 1px 1px 4px -2px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.div-block-27 {
text-align: right;
}
.button-8 {
position: absolute;
margin-top: -15px;
margin-left: -26px;
border-radius: 20px;
background-color: #dc3545;
box-shadow: 1px 1px 7px -3px #000;
}
.div-block-28 {
text-align: center;
}
.grid-16 {
padding-right: 40px;
padding-left: 40px;
grid-column-gap: 29px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-13 {
position: static;
top: -122px;
z-index: 1;
}
.div-block-29 {
display: block;
margin-bottom: 15px;
padding-bottom: 0px;
text-align: center;
}
.company-logo {
margin-right: 20px;
margin-left: 20px;
}
.div-block-30 {
display: inline;
margin-top: -85px;
padding: 10px 20px;
grid-auto-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
border-radius: 9px;
}
.div-block-31 {
margin-bottom: 22px;
padding-top: 0px;
text-align: center;
}
.image-14 {
position: relative;
top: 0px;
z-index: -1;
display: inline-block;
padding-top: 0px;
-webkit-filter: blur(0px);
filter: blur(0px);
}
.div-block-32 {
position: relative;
top: -160%;
margin-top: -29%;
margin-bottom: 35px;
padding: 15px 25px 15px 20px;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
}
.div-block-33 {
position: relative;
display: block;
}
.container-8 {
margin-top: 14px;
padding-bottom: 27px;
text-align: center;
}
.utility-page-form {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
.dashboard-navigation {
background-color: #fff;
box-shadow: 1px 1px 10px -5px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: uppercase;
}
.image-15 {
margin-left: 22px;
opacity: 0.38;
color: #868686;
text-align: center;
}
.link-block-4 {
padding-top: 15px;
padding-right: 22px;
}
.link-block-4.dashboard-tabs {
padding-bottom: 13px;
}
.image-16 {
display: inline-block;
margin-top: 5px;
padding-top: 0px;
padding-bottom: 8px;
padding-left: 0px;
}
.nav-link-4 {
padding-right: 22px;
padding-left: 22px;
}
.numbers {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.container-9 {
margin-top: 24px;
}
.heading-13 {
margin-top: 14px;
margin-bottom: 0px;
font-size: 29px;
line-height: 38px;
font-weight: 300;
text-align: center;
}
.div-block-34 {
margin-top: -2px;
margin-bottom: 6px;
text-align: center;
}
.div-block-35 {
margin-bottom: 31px;
padding: 40px 40px 0px;
border-radius: 10px;
box-shadow: 1px 1px 4px -2px #000;
}
.div-block-35.graph-div {
margin-top: 15px;
}
.grid-17 {
margin-top: 0px;
padding: 10px 70px;
grid-column-gap: 8px;
-ms-grid-columns: 0.45fr 0.7fr;
grid-template-columns: 0.45fr 0.7fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-17.web-visits-grid {
margin-top: 61px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
border-radius: 18px;
}
.grid-17.cpc-grid {
margin-top: 10px;
}
.metric-buttons {
margin-right: 10px;
margin-left: 10px;
padding: 5px 20px;
border-radius: 7px;
background-color: #f7f7f7;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
color: #757575;
}
.metric-buttons:hover {
box-shadow: 2px 2px 5px -2px #000;
}
.metric-buttons.clicks-button {
background-color: #f7f7f7;
color: #757575;
}
.metric-buttons.impressions-button {
background-color: #f7f7f7;
color: #757575;
}
.metric-buttons.cpc-button {
background-color: rgba(247, 247, 247, 0);
background-image: linear-gradient(153deg, #97c0d0, rgba(7, 144, 185, 0.87));
color: #fff;
}
.div-block-36 {
margin-top: 0px;
margin-bottom: 9px;
text-align: center;
}
.text-block-6 {
margin-top: 0px;
margin-bottom: 0px;
font-size: 20px;
font-weight: 400;
text-align: center;
}
.text-block-6.visits-header {
margin-top: 0px;
margin-right: 40px;
margin-bottom: 22px;
padding-right: 0px;
color: #fff;
cursor: pointer;
}
.text-block-6.visits-count {
display: block;
margin-top: 5px;
margin-left: -10px;
color: #fff;
font-size: 45px;
line-height: 52px;
cursor: pointer;
}
.text-block-6.visits-count.cpc-count {
margin-left: 7px;
text-align: left;
}
.text-block-6.visits-count.avg-cpc {
padding-left: 41px;
}
.text-block-6.visits-subheader {
margin-top: 12px;
color: #f5f5f5;
font-size: 13px;
font-weight: 300;
}
.button-9 {
margin-bottom: 10px;
padding: 5px 40px;
border-radius: 20px;
background-color: #fdfdfd;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 325ms ease;
transition: all 325ms ease;
color: #8d8d8d;
}
.button-9:hover {
box-shadow: 2px 2px 5px -2px #000;
}
.div-block-37 {
margin-bottom: 10px;
}
.div-block-38 {
display: block;
margin-top: -17px;
}
.div-block-39 {
display: block;
}
.container-10 {
margin-top: 90px;
margin-bottom: 0px;
}
.image-17 {
margin-top: 20px;
text-align: center;
}
.container-11 {
text-align: center;
}
.text-block-7 {
margin-top: 20px;
}
.employee-photo {
max-width: 80%;
border-radius: 100%;
box-shadow: 3px 3px 5px -4px #000;
text-align: center;
}
.column-5 {
padding-right: 10px;
padding-left: 100px;
}
.container-12 {
margin-top: 40px;
}
.column-6 {
padding-right: 100px;
}
.grid-18 {
margin-right: 100px;
margin-left: 100px;
padding-right: 0px;
padding-left: 0px;
grid-column-gap: 10px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-19 {
-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.container-13 {
margin-top: 40px;
}
.education-description {
margin-top: 5px;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
text-align: center;
}
.div-block-40 {
text-align: center;
}
.div-block-41 {
text-align: center;
}
.div-block-42 {
text-align: center;
}
.action-button {
display: inline-block;
margin-top: 20px;
padding: 10px 40px;
border-radius: 20px;
background-color: #dc3545;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 200ms ease-out;
transition: all 200ms ease-out;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: uppercase;
}
.action-button:hover {
box-shadow: 1px 1px 13px -3px #000;
}
.action-button.keyword-view-button {
margin-top: 18px;
padding: 3px 20px;
border-radius: 8px;
box-shadow: 1px 1px 3px -2px #000;
opacity: 0.9;
font-size: 12px;
text-transform: none;
}
.action-button.keyword-view-button:hover {
box-shadow: 1px 1px 6px -2px #000;
}
.action-button.keyword-button {
margin-top: 10px;
padding: 5px 20px;
background-color: rgba(213, 87, 99, 0.23);
background-image: linear-gradient(321deg, rgba(56, 31, 241, 0.64), #8975d1);
box-shadow: none;
opacity: 0.9;
font-size: 12px;
text-transform: none;
}
.action-button.keyword-button:hover {
box-shadow: 1px 1px 10px -3px #000;
}
.action-button.keyword-button.red-keyword-button {
background-color: #dc3545;
background-image: none;
}
.action-button.save-budget-button {
display: inline;
text-align: center;
}
.action-button.update-account-button {
display: inline-block;
background-color: #3f3d56;
box-shadow: none;
opacity: 1;
text-transform: capitalize;
}
.action-button.update-account-button:hover {
box-shadow: 1px 1px 4px -2px #000;
}
.action-button.delete-r-finder-account {
position: static;
display: inline-block;
margin-top: 17px;
margin-right: auto;
margin-left: 88px;
padding: 5px 0px;
background-color: rgba(199, 199, 199, 0);
box-shadow: none;
opacity: 0.55;
color: #000;
font-size: 12px;
text-align: right;
text-decoration: underline;
text-transform: capitalize;
}
.action-button.back-to-all-ads {
position: fixed;
left: 15%;
top: 85px;
z-index: 1001;
margin-top: 0px;
padding: 7px 25px;
color: #fff;
font-size: 12px;
text-transform: uppercase;
}
.div-block-43 {
text-align: center;
}
.grid-20 {
-ms-grid-columns: 1.15fr 1fr 1fr 1fr 1.15fr;
grid-template-columns: 1.15fr 1fr 1fr 1fr 1.15fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-21 {
margin-top: 40px;
-ms-grid-columns: 0.5fr 1fr 1fr 1fr 1fr 0.5fr;
grid-template-columns: 0.5fr 1fr 1fr 1fr 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.heading-14 {
margin-top: 53px;
margin-bottom: -33px;
opacity: 1;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.text-block-8 {
margin-top: 31px;
padding-top: 20px;
padding-bottom: 20px;
font-family: quasimoda, sans-serif;
font-size: 30px;
font-weight: 300;
text-align: center;
}
.section-8 {
margin-top: 29px;
margin-bottom: 20px;
}
.grid-22 {
margin-bottom: -13px;
justify-items: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 6px;
-ms-grid-columns: 0.5fr 1fr 1fr 0.5fr;
grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-9 {
margin-top: 11px;
color: grey;
font-size: 15px;
line-height: 25px;
font-weight: 300;
}
.money-icon {
margin-top: 7px;
font-family: quasimoda-2, sans-serif;
color: #000;
font-weight: 300;
text-align: center;
}
.div-block-44 {
display: block;
}
.div-block-45 {
text-align: justify;
}
.three-steps-right {
font-weight: 400;
text-align: left;
}
.section-description-right {
margin-top: 10px;
padding-right: 139px;
color: grey;
font-size: 15px;
line-height: 25px;
font-weight: 300;
text-align: left;
}
.section-description-left {
margin-top: 10px;
padding-left: 107px;
color: grey;
font-size: 15px;
font-weight: 300;
text-align: right;
}
.image-18 {
position: relative;
left: -15px;
top: 118px;
right: -26px;
bottom: -76px;
}
.image-19 {
position: relative;
left: 45px;
top: 155px;
z-index: 1;
}
.div-block-46 {
margin-top: -60px;
padding-top: 0px;
}
.image-20 {
position: relative;
left: -131px;
top: 10px;
}
.text-block-10 {
margin-top: -10px;
margin-bottom: 4px;
padding-top: 0px;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 12px;
font-weight: 300;
text-decoration: none;
}
.div-block-47 {
text-align: center;
text-decoration: none;
}
.grid-23 {
padding-top: 10px;
padding-right: 40px;
}
.link-block-6 {
text-decoration: none;
}
.get-started-modal {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 1000;
display: block;
background-color: #fff;
}
.grid-24 {
padding-right: 20px;
padding-left: 20px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 95px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.container-15 {
margin-top: 10px;
padding-right: 20px;
padding-left: 20px;
}
.heading-15 {
margin-top: 35px;
margin-bottom: 66px;
padding-right: 230px;
padding-left: 230px;
font-family: quasimoda, sans-serif;
font-size: 29px;
line-height: 40px;
font-weight: 300;
text-align: center;
}
.div-block-49 {
position: relative;
left: 4px;
top: 60px;
display: inline-block;
padding: 12px 15px;
border-radius: 100%;
background-color: #dc3545;
box-shadow: 1px 1px 4px -1px #000;
font-size: 25px;
}
.div-block-50 {
color: #fff;
text-align: right;
}
.div-block-51 {
position: relative;
z-index: 50;
padding: 20px 40px;
border-radius: 10px;
box-shadow: 1px 1px 4px -2px #000;
font-family: quasimoda, sans-serif;
}
.text-block-12 {
display: block;
margin-top: 20px;
margin-bottom: 20px;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.form-2 {
margin-top: 9px;
text-align: center;
}
.field-label-2 {
margin-bottom: 3px;
text-align: left;
}
.field-label-3 {
margin-bottom: 3px;
text-align: left;
}
.text-field-4 {
border-radius: 3px;
}
.grid-25 {
position: relative;
top: -64px;
grid-column-gap: 0px;
-ms-grid-columns: 0.75fr 0.4fr;
grid-template-columns: 0.75fr 0.4fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-52 {
margin-top: 4px;
text-align: right;
}
.text-block-13 {
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
}
.section-9 {
display: none;
opacity: 0;
}
.button-10 {
position: relative;
left: 14px;
top: 21px;
padding-top: 13px;
padding-bottom: 13px;
border-radius: 100%;
background-color: #dc3545;
box-shadow: 1px 1px 4px -1px #000;
font-size: 25px;
}
.dropdown-list {
display: none;
margin-top: -4px;
border-radius: 0px;
background-color: transparent;
}
.time-dropdown {
margin: 7px 20px;
padding: 5px 10px;
border-radius: 14px;
background-color: rgba(250, 250, 250, 0.92);
box-shadow: 1px 1px 4px -2px #000;
opacity: 0.67;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
color: #353535;
font-size: 12px;
font-weight: 300;
text-align: center;
}
.time-dropdown:hover {
box-shadow: 3px 3px 4px -2px #000;
}
.r-finder-field {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.r-finder-text-field {
border-radius: 6px;
font-weight: 300;
}
.container-16 {
margin-bottom: 6px;
}
.div-block-58 {
display: inline;
width: 90%;
height: 100%;
max-width: 370px;
margin-right: 45px;
padding-top: 27px;
padding-right: 0px;
padding-bottom: 30px;
border-radius: 20px;
box-shadow: 3px 3px 11px -6px #000;
}
.div-block-59 {
margin-top: 20px;
text-align: center;
}
.heading-16 {
font-weight: 300;
}
.heading-17 {
margin-top: 48px;
padding-right: 40px;
padding-left: 40px;
font-size: 29px;
line-height: 37px;
font-weight: 300;
text-align: center;
}
.div-block-64.but-u-special {
display: none;
}
.div-block-66 {
display: none;
}
.dashboard-tabs {
width: 170px;
margin: 8px 0px;
padding: 13px 0px;
grid-column-gap: 12px;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 11px;
background-color: hsla(0, 0%, 100%, 0);
-webkit-transition: all 375ms ease;
transition: all 375ms ease;
text-align: center;
text-transform: none;
}
.dashboard-tabs:hover {
border-radius: 11px;
background-color: rgba(255, 255, 255, 0);
box-shadow: 1px 1px 7px -2px #000;
opacity: 0.95;
color: #fff;
}
.dashboard-tabs:active {
box-shadow: 1px 1px 4px -2px #000;
}
.dashboard-tabs.w--current {
position: relative;
left: auto;
margin-right: 5px;
margin-left: 5px;
padding: 0px;
border-radius: 11px;
background-color: #fff;
box-shadow: 1px 1px 8px -4px #000;
color: #fff;
text-align: center;
text-transform: none;
}
.grid-26 {
grid-column-gap: 0px;
grid-template-areas: "Area";
-ms-grid-columns: 1fr 0px 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: minmax(auto, 1fr);
grid-template-rows: minmax(auto, 1fr);
}
.title-grid {
margin-top: 23px;
margin-bottom: -13px;
padding-left: 0px;
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 0.26fr 1fr;
grid-template-columns: 0.26fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.heading-18 {
display: inline-block;
font-family: quasimoda, sans-serif;
font-size: 48px;
font-weight: 300;
text-align: center;
}
.div-block-74 {
margin-right: 20px;
margin-left: 20px;
}
.container-17 {
margin-top: 30px;
}
.dropdown-toggle-2 {
display: inline-block;
margin-right: 10px;
margin-left: 0px;
padding: 0px 57px 0px 0px;
}
.dropdown-toggle-3 {
display: block;
margin-right: 10px;
margin-bottom: 10px;
margin-left: 10px;
padding-top: 0px;
padding-bottom: 0px;
}
.dropdown-2 {
z-index: 1;
margin-bottom: 10px;
padding: 10px 0px 10px 32px;
border-radius: 20px;
box-shadow: 0 0 0 -20px #000;
text-align: center;
}
.ad-block {
margin-top: 5px;
margin-bottom: 21px;
padding-top: 17px;
padding-bottom: 12px;
border-radius: 0vw;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 175ms ease;
transition: all 175ms ease;
}
.ad-block:hover {
box-shadow: 3px 3px 11px -4px #000;
}
.ad-block:focus {
background-image: linear-gradient(60deg, #ff7a70, #d13a2e);
opacity: 1;
}
.ad-block.experiment-ad-block {
padding-bottom: 17px;
border-radius: 4vw;
box-shadow: 1px 1px 6px -4px #000;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.ad-block.experiment-ad-block:hover {
box-shadow: 1px 1px 6px -4px #000;
}
.body-3 {
border-radius: 10px;
box-shadow: 1px 1px 4px -2px #000;
line-height: 22px;
}
.text-block-17 {
font-family: quasimoda, sans-serif;
font-size: 17px;
font-weight: 300;
}
.text-block-18 {
font-family: quasimoda, sans-serif;
font-size: 17px;
font-weight: 300;
}
.icon-2 {
margin-top: 6px;
}
.icon-3 {
margin-top: 4px;
padding-left: 10px;
opacity: 0.73;
}
.grid-27 {
padding-right: 15px;
padding-left: 15px;
-ms-grid-columns: 0.25fr 4.5fr 1fr 1fr 1fr;
grid-template-columns: 0.25fr 4.5fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.checkbox-label {
display: none;
}
.checkbox-field {
margin-bottom: 0px;
padding-left: 0px;
font-size: 20px;
text-align: left;
}
.checkbox {
display: inline;
width: 30px;
height: 30px;
margin-top: 0px;
margin-left: 0px;
border-radius: 0px;
opacity: 1;
font-size: 100px;
}
.form-block-4 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 50px;
height: 30px;
margin-bottom: 0px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.form-3 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.checkbox-div {
display: block;
margin-right: 0px;
margin-left: 34px;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
}
.form-block-5 {
font-size: 20px;
}
.checkbox-2 {
position: static;
right: 100%;
display: inline;
width: 50px;
height: 50px;
margin-left: 0px;
padding-right: 0px;
padding-left: 0px;
-webkit-transform: scale(2);
-ms-transform: scale(2);
transform: scale(2);
font-size: 100px;
line-height: 100px;
text-align: center;
}
.checkbox-label-2 {
display: none;
}
.checkbox-field-2 {
overflow: visible;
min-height: 40px;
min-width: 40px;
padding-left: 60%;
-webkit-filter: blur(0px);
filter: blur(0px);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
font-size: 40px;
-o-object-fit: fill;
object-fit: fill;
}
.html-embed {
display: inline-block;
padding-bottom: 5px;
}
.div-block-75 {
display: inline-block;
margin-left: 0px;
padding: 10px 20px 10px 32px;
}
.div-block-75:focus {
padding-left: 20px;
border-radius: 2px;
background-color: #f5f5f5;
box-shadow: 1px 1px 3px 0 #000;
opacity: 1;
}
.search-title {
margin-bottom: 0px;
padding-top: 0px;
font-family: Roboto, sans-serif;
color: #1a0dab;
font-size: 17px;
line-height: 27px;
text-align: left;
}
.search-title.deactivated-search-title {
color: #7a72cf;
}
.text-block-19 {
max-width: 400px;
margin-bottom: 1px;
font-family: Roboto, sans-serif;
color: #3c4043;
font-size: 12px;
line-height: 19px;
text-align: left;
}
.subheader-above-title {
color: #202124;
}
.subheader-above-title-wrapper {
padding-top: 1px;
padding-bottom: 0px;
color: #444;
font-size: 14px;
line-height: 18px;
text-align: left;
}
.website-link-text {
display: inline;
font-family: Roboto, sans-serif;
font-size: 13px;
line-height: 21px;
}
.text-block-20 {
display: inline;
font-family: Roboto, sans-serif;
font-size: 13px;
line-height: 21px;
font-weight: 700;
}
.grid-28 {
display: -ms-grid;
display: grid;
margin-left: 24px;
padding-right: 46px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-auto-columns: 1fr;
grid-column-gap: 6px;
grid-row-gap: 16px;
-ms-grid-columns: 0.25fr 1.75fr 0.5fr 0.25fr 0.25fr;
grid-template-columns: 0.25fr 1.75fr 0.5fr 0.25fr 0.25fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-76 {
text-align: center;
}
.text-block-21 {
font-family: quasimoda, sans-serif;
font-size: 12px;
text-align: center;
}
.text-block-22 {
display: block;
margin-top: 5px;
margin-left: 0px;
padding-top: 0px;
font-family: quasimoda, sans-serif;
font-size: 12px;
line-height: 18px;
font-weight: 300;
text-align: center;
}
.number-of-clicks {
display: block;
margin-right: 5px;
margin-left: 6px;
padding: 0px;
font-family: quasimoda, sans-serif;
font-size: 17px;
font-weight: 300;
text-align: center;
}
.cost {
display: inline;
font-family: quasimoda, sans-serif;
font-size: 25px;
font-weight: 300;
}
.dollar-sign {
display: inline;
font-family: quasimoda, sans-serif;
font-size: 25px;
font-weight: 300;
}
.div-block-77 {
text-align: center;
}
.div-block-78 {
padding: 20px;
}
.div-block-79 {
padding: 20px;
}
.text-block-23 {
display: none;
}
.image-27 {
display: block;
width: 100px;
}
.text-block-24 {
position: relative;
top: 3px;
display: inline;
padding-right: 5px;
padding-left: 5px;
color: #2a3e56;
}
.div-block-80 {
position: static;
top: 3px;
display: block;
margin-top: 13px;
margin-left: 0px;
text-align: left;
}
.div-block-81 {
margin-top: 0px;
}
.image-28 {
display: block;
margin-left: 87px;
opacity: 0.73;
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
text-align: right;
}
.div-block-82 {
margin-top: 0px;
text-align: left;
}
.keyword-modal {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 100;
display: none;
background-color: hsla(0, 0%, 100%, 0);
opacity: 0;
}
.div-block-83 {
border-radius: 11px;
box-shadow: 1px 1px 4px -2px #000;
}
.image-29 {
margin-right: 3px;
margin-bottom: -6px;
margin-left: 12px;
padding-bottom: 0px;
border-radius: 20px;
opacity: 0.79;
}
.grid-29 {
-ms-grid-columns: minmax(196px, 4.25fr);
grid-template-columns: minmax(196px, 4.25fr);
-ms-grid-rows: 62px auto;
grid-template-rows: 62px auto;
}
.image-30 {
display: inline-block;
margin-top: -9px;
margin-bottom: -4px;
margin-left: 12px;
border-radius: 20px;
text-align: left;
}
.grid-30 {
margin-top: 32px;
grid-column-gap: 0px;
-ms-grid-columns: 0.75fr 0.5fr;
grid-template-columns: 0.75fr 0.5fr;
-ms-grid-rows: 72px;
grid-template-rows: 72px;
}
.div-block-84 {
display: inline-block;
margin-top: 15px;
margin-bottom: 15px;
font-family: Roboto, sans-serif;
}
.div-block-84.ad-grid-clicks-page {
position: relative;
margin-top: 0px;
margin-bottom: 0px;
padding: 18px 15px 19px 20px;
border-radius: 20px;
-webkit-transition: top 200ms ease, border-radius 200ms ease, box-shadow 350ms ease;
transition: top 200ms ease, border-radius 200ms ease, box-shadow 350ms ease;
}
.div-block-84.ad-grid-clicks-page:hover {
top: 15px;
}
.heading-19 {
margin-top: 80px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.div-block-86 {
margin-top: 5px;
margin-bottom: 39px;
text-align: center;
}
.image-31 {
display: inline-block;
margin-top: -67px;
margin-right: 17px;
margin-left: -70px;
opacity: 0.9;
}
.dropdown-link {
border-radius: 20px;
background-color: #f5f5f5;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.dropdown-list-3 {
opacity: 1;
}
.dropdown-list-3.w--open {
border-radius: 20px;
opacity: 1;
}
.budget-simulator-card {
margin: 10px 20px;
padding: 10px 20px;
border-radius: 6px;
box-shadow: 1px 1px 4px -2px #000;
}
.edit-budget-card {
margin-top: 10px;
margin-right: 20px;
margin-left: 20px;
border-radius: 6px;
box-shadow: 1px 1px 4px -2px #000;
}
.body-4 {
border-radius: 6px;
}
.grid-31 {
padding-top: 10px;
padding-bottom: 10px;
-ms-grid-columns: 0.5fr 1fr;
grid-template-columns: 0.5fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-25 {
padding-top: 10px;
padding-bottom: 10px;
font-family: quasimoda, sans-serif;
font-size: 20px;
font-weight: 300;
text-align: center;
}
.div-block-87 {
padding: 20px;
}
.text-block-26 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.heading-20 {
display: inline-block;
margin: 50px 20px 30px;
font-family: quasimoda, sans-serif;
font-weight: 400;
}
.text-block-27 {
padding-right: 5px;
padding-left: 60px;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
text-align: center;
}
.grid-32 {
-ms-grid-columns: 1fr 2.5fr 1fr;
grid-template-columns: 1fr 2.5fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-field-5 {
position: relative;
display: inline;
width: 50%;
margin-right: 10px;
margin-left: 10px;
}
.field-label-4 {
display: inline;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.form-4 {
text-align: center;
}
.div-block-88 {
text-align: center;
}
.heading-21 {
position: static;
padding-right: 15px;
padding-left: 15px;
font-family: quasimoda, sans-serif;
color: #fff;
font-weight: 300;
}
.settings-card {
padding: 25px;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 6px -4px #000;
}
.heading-22 {
margin-bottom: 25px;
font-family: quasimoda, sans-serif;
font-size: 33px;
font-weight: 300;
}
.image-32 {
text-align: center;
}
.tab-pane-tab-2 {
text-align: center;
}
.text-block-28 {
display: inline-block;
padding-right: 2px;
padding-left: 2px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-29 {
display: inline-block;
padding-right: 2px;
padding-left: 2px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-30 {
display: inline-block;
padding-right: 2px;
padding-left: 2px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.image-33 {
margin-right: 13px;
margin-left: 13px;
}
.grid-33 {
-ms-grid-columns: 0.75fr 0.4fr 0.75fr;
grid-template-columns: 0.75fr 0.4fr 0.75fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.delete-card-button {
display: inline-block;
padding: 1px 15px 2px;
border-radius: 6px;
background-color: #3f3d56;
opacity: 1;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
}
.tabs-menu-3 {
margin-top: 0px;
margin-bottom: 27px;
padding-right: 20px;
padding-left: 20px;
text-align: center;
}
.div-block-89 {
display: inline;
}
.div-block-90 {
margin-top: 0px;
text-align: center;
}
.text-block-31 {
display: inline-block;
padding-right: 10px;
text-decoration: underline;
}
.text-block-32 {
display: inline-block;
margin-top: 20px;
padding-right: 10px;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
cursor: pointer;
}
.text-block-32:hover {
font-weight: 400;
}
.settings-tab {
padding: 12px 45px;
background-color: #fff;
}
.settings-tab.w--current {
padding: 12px 45px;
border-radius: 5vw;
background-color: #dc3545;
opacity: 1;
font-family: quasimoda, sans-serif;
color: #fff;
font-weight: 300;
}
.text-block-33 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-34 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.heading-23 {
margin-top: 6px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.div-block-91 {
margin-left: 0px;
text-align: center;
}
.div-block-92 {
display: inline;
min-width: 80%;
padding-left: 0%;
font-family: quasimoda, sans-serif;
font-size: 14px;
font-weight: 300;
}
.div-block-93 {
margin-top: 26px;
text-align: center;
}
.image-34 {
margin-top: 38px;
margin-left: 54px;
}
.text-block-35 {
margin-top: 1px;
margin-bottom: 15px;
padding-top: 5px;
padding-bottom: 5px;
text-align: left;
cursor: default;
}
.form-5 {
padding-right: 0%;
padding-left: 0%;
text-align: right;
}
.div-block-94 {
text-align: center;
}
.already-filled-area {
padding-right: 5px;
padding-left: 5px;
border-style: solid;
border-width: 1px;
border-color: #fff;
border-radius: 6px;
opacity: 1;
text-align: left;
}
.already-filled-area.name-form {
cursor: default;
}
.already-filled-area.email-form {
cursor: default;
}
.already-filled-area.org-form {
cursor: default;
}
.already-filled-area.website-form {
cursor: default;
}
.account-info-subtitle {
margin-bottom: 3px;
font-weight: 400;
text-align: left;
}
.grid-34 {
padding-left: 56px;
-ms-grid-columns: 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-35 {
margin-top: 25px;
}
.form-block-6 {
margin-top: 20px;
margin-bottom: 0px;
}
.text-block-36 {
margin-top: 2px;
margin-bottom: 8px;
padding-right: 80px;
padding-left: 80px;
text-align: center;
}
.text-block-37 {
display: inline-block;
width: 55%;
text-align: center;
}
.button-description {
margin-left: 10px;
color: #757575;
}
.button-description.button-description-placeholder {
position: absolute;
}
.button-description.click-description {
position: fixed;
display: inline;
border-radius: 0px;
opacity: 0;
-webkit-transform: translate(300px, 0px);
-ms-transform: translate(300px, 0px);
transform: translate(300px, 0px);
}
.button-description.impression-description {
display: inline;
margin-left: 14px;
opacity: 0;
text-align: right;
}
.div-block-95 {
margin-bottom: 10px;
}
.grid-35 {
grid-column-gap: 3px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-36 {
display: block;
}
.html-embed-2 {
padding-bottom: 20px;
}
.grid-36 {
margin-top: 15px;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-38 {
display: inline-block;
width: 60%;
margin-top: 0px;
margin-bottom: 0px;
font-family: quasimoda, sans-serif;
color: #333;
line-height: 22px;
font-weight: 300;
text-align: center;
}
.text-block-39 {
margin-top: 0px;
margin-bottom: 5px;
padding-top: 30px;
padding-bottom: 10px;
font-family: quasimoda, sans-serif;
color: #333;
font-size: 30px;
text-align: center;
}
.keyword-category-card {
border-radius: 6px;
box-shadow: 1px 1px 4px -2px #000;
}
.keyword-category-title {
margin-bottom: 0px;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.keyword-category-subtitle {
margin-bottom: 10px;
padding-top: 7px;
opacity: 0.62;
font-family: quasimoda, sans-serif;
line-height: 20px;
font-weight: 300;
}
.div-block-96 {
margin-top: 22px;
margin-bottom: 22px;
text-align: center;
}
.container-18 {
margin-top: 0px;
padding-top: 0px;
background-color: hsla(0, 0%, 100%, 0);
}
.card-wrapper-for-ad {
display: inline-block;
padding: 10px 20px 10px 40px;
border-radius: 20px;
box-shadow: 1px 1px 4px -2px #000;
opacity: 1;
}
.keyword-card {
margin-top: 8px;
margin-bottom: 8px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 0vw;
font-family: quasimoda, sans-serif;
font-size: 15px;
}
.keyword-grid {
margin-top: 3px;
margin-bottom: 3px;
padding: 2px 0px;
-ms-grid-columns: 1fr 0.75fr;
grid-template-columns: 1fr 0.75fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
-webkit-transition: all 150ms ease-in;
transition: all 150ms ease-in;
font-weight: 300;
}
.keyword-grid:hover {
border-radius: 6px;
background-color: #e6e6e6;
color: #333;
}
.keyword-grid.grid-title:hover {
background-color: #fff;
}
.text-block-40 {
text-align: center;
}
.text-block-41 {
padding-left: 25px;
font-size: 14px;
text-align: left;
}
.text-block-42 {
display: inline-block;
}
.everything-but-the-button {
margin-top: -13px;
padding: 30px;
border-radius: 20px;
background-color: #fff;
box-shadow: 2px 2px 14px -9px #000;
}
.grid-37 {
grid-column-gap: 75px;
-ms-grid-columns: 1fr 0.55fr;
grid-template-columns: 1fr 0.55fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.keyword-title-div {
margin-top: 10px;
margin-bottom: 12px;
padding-right: 16px;
font-family: quasimoda, sans-serif;
color: #0e0e0e;
text-align: center;
}
.title-block {
margin-top: 89px;
padding-bottom: 27px;
background-color: #fff;
opacity: 1;
color: #fff;
}
.div-block-97 {
margin-bottom: 25px;
text-align: center;
}
.tab-link-tab-1 {
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.tab-link-tab-1.w--current {
font-family: quasimoda, sans-serif;
font-size: 12px;
}
.keyword-category-tab {
margin-right: 17px;
padding: 3px 25px;
border-radius: 20px;
}
.keyword-category-tab.w--current {
background-color: #3f3d56;
color: #e7e7e7;
}
._2-important-numbers {
margin-top: 0px;
padding-top: 40px;
padding-bottom: 40px;
font-size: 42px;
text-align: center;
}
._2-important-numbers.website-visits {
position: static;
left: 0%;
top: -66px;
z-index: 1;
display: inline-block;
overflow: hidden;
margin-left: 0px;
padding: 20px 32px;
border-radius: 0px;
background-color: transparent;
box-shadow: 2px 2px 6px -2px #000;
color: #fff;
font-size: 37px;
font-weight: 300;
}
._2-important-numbers.budget {
display: inline-block;
margin-top: 0px;
padding: 20px 32px;
border-radius: 15px;
background-color: #65a5c0;
box-shadow: 2px 2px 6px -2px #000;
color: #fff;
font-size: 37px;
font-weight: 300;
}
.image-37 {
position: relative;
left: 87px;
top: -6px;
display: inline-block;
margin-top: -49px;
margin-bottom: 0px;
margin-left: 30px;
opacity: 1;
cursor: pointer;
}
.image-37.cpc-image {
left: 38px;
top: 54px;
margin-bottom: 65px;
}
.div-block-98 {
position: relative;
z-index: -1;
display: none;
margin-top: 0px;
margin-bottom: 35px;
opacity: 0;
text-align: center;
}
.div-block-99 {
position: relative;
top: 0px;
margin-top: 0px;
text-align: center;
}
.div-block-100 {
display: inline;
}
.div-block-101 {
margin-top: 21px;
}
.image-38 {
display: inline-block;
margin: 0px 0px 15px;
padding: 0px;
}
.div-block-102 {
display: block;
margin-top: 5px;
padding: 0px;
border-radius: 1vw;
background-color: #fff;
color: #fff;
font-size: 13px;
text-align: center;
}
.div-block-103 {
position: static;
top: -5px;
margin-top: 5px;
opacity: 1;
text-align: center;
}
.heading-24 {
position: relative;
margin-top: 5px;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.main-metric-block {
padding: 20px 40px;
border-radius: 14px;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(224, 85, 75, 0.86)), to(rgba(220, 53, 69, 0.86)));
background-image: linear-gradient(180deg, rgba(224, 85, 75, 0.86), rgba(220, 53, 69, 0.86));
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
}
.main-metric-block:hover {
box-shadow: 4px 4px 4px -4px #000;
}
.main-metric-block.website-visits-block {
position: static;
z-index: 2;
width: 100%;
margin-top: 26px;
margin-bottom: -5px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 33px;
background-color: hsla(0, 0%, 100%, 0);
background-image: -webkit-gradient(linear, left top, left bottom, from(#df736b), to(#d14452));
background-image: linear-gradient(180deg, #df736b, #d14452);
opacity: 1;
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
color: #fff;
cursor: pointer;
}
.main-metric-block.website-visits-block.cpc-block {
position: static;
z-index: 2;
margin-top: 25px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#98c6d8), to(#49a3be));
background-image: linear-gradient(180deg, #98c6d8, #49a3be);
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.main-metric-block.website-visits-block.budget-block {
position: static;
background-image: -webkit-gradient(linear, left top, left bottom, from(#b9d6af), to(#79a062));
background-image: linear-gradient(180deg, #b9d6af, #79a062);
}
.main-metric-block.cost-per-click-block {
width: 100%;
margin-bottom: 22px;
padding-right: 0px;
padding-bottom: 0px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#a6d0df), to(#6d7ba7));
background-image: linear-gradient(180deg, #a6d0df, #6d7ba7);
-webkit-transform: translate(245px, 0px);
-ms-transform: translate(245px, 0px);
transform: translate(245px, 0px);
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
}
.main-metric-block.cost-per-click-block:hover {
-webkit-transform: translate(240px, 0px);
-ms-transform: translate(240px, 0px);
transform: translate(240px, 0px);
}
.div-block-105 {
display: inline-block;
margin-top: 7px;
text-align: center;
}
.div-block-105.cpc-wrapper {
margin-top: 14px;
}
.clicks-graph-wrapper {
position: static;
z-index: 1;
display: block;
margin-top: -21px;
padding: 25px;
border-radius: 20px;
background-color: #424242;
opacity: 1;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.div-block-107 {
text-align: center;
}
.html-embed-3 {
display: block;
opacity: 1;
}
.click-to-view-click-details {
position: relative;
top: -15px;
opacity: 0;
text-align: center;
}
.click-to-view-cpc-details {
position: relative;
top: -15px;
opacity: 0;
text-align: center;
}
.click-to-hide-click-details {
position: relative;
top: -35px;
padding-left: 160px;
opacity: 0;
color: #fff;
}
.grid-38 {
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-108 {
position: relative;
}
.cpc-graph-wrapper {
position: absolute;
left: 53.5%;
z-index: 1;
margin-top: -12px;
padding: 25px;
border-radius: 20px;
background-color: #424242;
opacity: 0;
}
.click-to-hide-cpc-details {
position: relative;
top: -35px;
padding-left: 160px;
color: #fff;
}
.grid-39 {
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-40 {
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-41 {
margin-top: 40px;
justify-items: center;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.div-block-109 {
display: block;
margin-top: 0px;
margin-right: 190px;
}
.text-block-43 {
margin-top: 34px;
text-align: center;
text-decoration: none;
}
.div-block-110 {
position: absolute;
top: 0px;
display: block;
width: 200px;
height: 30px;
background-color: #f44;
}
.div-block-111 {
position: absolute;
left: 33%;
top: 91px;
width: 33%;
height: 15%;
background-color: #e03030;
}
.heading-25 {
margin-top: 10px;
margin-bottom: 0px;
color: #fff;
font-size: 28px;
line-height: 35px;
font-weight: 400;
text-align: center;
}
.container-19 {
margin-top: 10px;
margin-bottom: 25px;
}
.tab-header {
position: fixed;
left: 0%;
top: 33%;
right: auto;
bottom: 0%;
z-index: 1;
width: 18%;
height: 50%;
padding: 25px 0px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
text-align: center;
}
.tab-content {
border-radius: 20px;
background-color: #fff;
}
.dashboard-background {
background-color: rgba(177, 192, 221, 0);
}
.mini-container-for-content-tab {
padding: 50px 10px;
}
.mini-container-for-content-tab.budget-mini-container-for-tab {
padding: 40px 25px 11px;
}
.content-title {
display: block;
padding-left: 0px;
font-family: quasimoda, sans-serif;
font-size: 24px;
line-height: 24px;
font-weight: 300;
text-align: center;
}
.content-title.new-budget-title {
display: inline-block;
margin-right: 23px;
font-size: 22px;
}
.content-title.budget-title {
margin-top: 10px;
padding-left: 0px;
font-size: 29px;
line-height: 38px;
font-weight: 300;
text-align: center;
}
.content-title.content-title-ads-page {
margin-top: 10px;
margin-bottom: 0px;
padding-left: 0px;
font-size: 29px;
line-height: 31px;
text-align: center;
}
.content-title.title-clicks-page {
padding-left: 0px;
font-size: 29px;
line-height: 29px;
text-align: center;
}
.content-title.search-terms-expand-title {
margin-top: 50px;
padding-left: 100px;
font-size: 21px;
line-height: 22px;
text-align: left;
}
.text-block-45 {
display: inline-block;
}
.text-block-46 {
display: block;
margin-top: 10px;
margin-bottom: 3px;
padding-left: 0px;
font-size: 11px;
line-height: 20px;
font-weight: 300;
text-align: center;
text-transform: none;
}
.content-subtitle {
margin-top: 4px;
padding-top: 0px;
padding-left: 0px;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.content-subtitle.projected-clicks-subtitle {
margin-top: 10px;
font-size: 13px;
text-align: center;
}
.content-subtitle.budget-subtitle {
margin-top: 10px;
margin-bottom: 18px;
padding-left: 0px;
font-size: 15px;
line-height: 22px;
text-align: center;
}
.content-subtitle.clicks-subtitle {
height: 10px;
text-align: center;
}
.content-subtitle.subtitle-ads-page {
margin-top: 13px;
margin-bottom: 10px;
text-align: center;
}
.grid-42 {
display: -ms-grid;
display: grid;
margin-top: 20px;
padding-right: 10px;
padding-left: 0px;
grid-auto-columns: 1fr;
grid-column-gap: 6px;
grid-row-gap: 16px;
-ms-grid-columns: 0.4fr 1fr;
grid-template-columns: 0.4fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.click-graph {
display: block;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
.grid-43 {
display: block;
margin-right: 0px;
-ms-grid-columns: 1fr 0.75fr;
grid-template-columns: 1fr 0.75fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
text-align: left;
}
.dropdown-toggle-4 {
padding: 3px 34px 3px 14px;
border-radius: 0px;
}
.icon-4 {
display: inline-block;
margin-top: -4px;
margin-right: -20px;
margin-left: 15px;
opacity: 1;
color: #4e4e4e;
font-size: 13px;
}
.dropdown-3 {
border: 0px solid #000;
border-radius: 11px;
box-shadow: 1px 1px 3px 0 hsla(0, 0%, 49.3%, 0.57);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
text-align: right;
}
.dropdown-3:hover {
box-shadow: 3px 3px 7px -1px hsla(0, 0%, 49.3%, 0.57);
}
.image-39 {
display: block;
width: 100%;
margin-top: 25px;
}
.div-block-113 {
margin-top: 40px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.container-20 {
padding-top: 5px;
padding-bottom: 5px;
}
.searches-wrapper {
margin-top: 7px;
margin-right: 20px;
margin-left: 20px;
padding-left: 0px;
}
.search-result-grid-clicks-page {
position: relative;
z-index: 1;
margin-top: 0px;
margin-bottom: 0px;
padding: 5px 25px;
grid-column-gap: 8px;
-ms-grid-columns: 1.4fr 0.3fr;
grid-template-columns: 1.4fr 0.3fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 7px -4px #000;
-webkit-transition: border-radius 200ms ease, box-shadow 200ms ease;
transition: border-radius 200ms ease, box-shadow 200ms ease;
cursor: pointer;
}
.search-result-grid-clicks-page:hover {
box-shadow: 1px 1px 16px -4px #474747;
}
.search-result-grid-clicks-page.clicks-page-ad-1 {
-webkit-transition: border-radius 200ms ease, box-shadow 350ms ease;
transition: border-radius 200ms ease, box-shadow 350ms ease;
}
.search-result-grid-clicks-page.clicks-page-ad-2 {
grid-column-gap: 8px;
-ms-grid-columns: 1.4fr 0.35fr;
grid-template-columns: 1.4fr 0.35fr;
}
.text-block-47 {
display: inline-block;
padding-left: 11px;
font-family: quasimoda, sans-serif;
color: #333;
font-size: 14px;
font-weight: 300;
}
.text-block-48 {
display: inline-block;
margin-right: 0px;
margin-left: -10px;
font-family: quasimoda, sans-serif;
color: #3f3d56;
font-size: 15px;
text-decoration: none;
}
.image-40 {
margin-top: 0px;
margin-right: 10px;
margin-left: 25px;
}
.whole-timeline-wrapper {
margin-top: 6px;
padding-left: 0%;
}
.red-line {
position: relative;
left: 20px;
top: -73px;
z-index: 0;
display: inline-block;
width: 41%;
height: 6px;
border-radius: 40px;
background-color: #f44336;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
box-shadow: 1px 1px 13px -4px #adadad;
}
.red-line.grey-line {
left: -10px;
background-color: #e0e0e0;
background-image: none;
}
.timeline-dot-wrapper {
position: relative;
top: -14px;
z-index: 1;
display: inline-block;
}
.one-timeline-dot {
display: inline-block;
width: 25%;
text-align: left;
}
.one-timeline-dot.left-timeline-dot {
position: relative;
z-index: 1;
display: inline-block;
width: 12.5%;
text-align: center;
cursor: pointer;
}
.one-timeline-dot.regular-timeline-dot {
position: relative;
z-index: 1;
text-align: center;
cursor: pointer;
}
.one-timeline-dot.right-timeline-dot {
position: relative;
z-index: 1;
width: 12.5%;
text-align: right;
}
.red-timeline-dot {
position: relative;
z-index: 1;
display: inline-block;
width: 23px;
height: 23px;
border-radius: 100%;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
text-align: left;
}
.red-timeline-dot:hover {
box-shadow: 2px 2px 5px -1px rgba(0, 0, 0, 0.51);
}
.red-timeline-dot.current-month-dot {
border: 4px solid #f44336;
background-color: #fff;
background-image: none;
}
.red-timeline-dot.future-dot {
border: 4px solid #bdbdbd;
background-color: #fff;
background-image: none;
}
.red-timeline-dot.future-dot.last-dot {
margin-left: 1px;
}
.just-the-timeline-wrapper {
text-align: center;
}
.grid-44 {
position: relative;
top: 0px;
margin-top: 58px;
padding-right: 20px;
padding-left: 20px;
grid-column-gap: 5px;
grid-row-gap: 11px;
-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
-ms-grid-rows: minmax(33px, 0.25fr) auto minmax(24px, 0.25fr) auto;
grid-template-rows: minmax(33px, 0.25fr) auto minmax(24px, 0.25fr) auto;
}
.timeline-form-dollar-signs {
position: relative;
left: 22px;
top: 3px;
z-index: 1;
display: inline-block;
margin-top: 2px;
margin-right: 0px;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 16px;
font-weight: 300;
cursor: default;
}
.timeline-form-dollar-signs.budget-simulator-dollar-sign {
top: -1px;
margin-top: 0px;
color: #333;
}
.budget-month-text-field {
display: inline-block;
max-width: 77px;
margin: 0px 8px 0px 1px;
padding: 0px 0px 0px 21px;
border-style: solid;
border-width: 0px;
border-color: #fff;
border-radius: 10px;
background-color: #f35247;
background-image: -webkit-gradient(linear, left top, right top, from(#f16459), to(#f44336));
background-image: linear-gradient(90deg, #f16459, #f44336);
box-shadow: 1px 1px 6px -2px #949494;
opacity: 1;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 17px;
line-height: 19px;
font-weight: 400;
text-align: center;
cursor: default;
}
.budget-month-text-field:hover {
box-shadow: 1px 1px 6px -2px #000;
}
.budget-month-text-field.month--2-dollars-field {
display: inline-block;
}
.budget-month-text-field.month-1-dollars-field.future-text-field {
background-color: #bdbdbd;
background-image: none;
-webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.budget-month-text-field.month-2-dollars-field.future-text-field {
background-color: #bdbdbd;
background-image: none;
-webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.budget-month-text-field.new-budget-text-field {
max-width: 81px;
margin-top: -9px;
padding-right: 2px;
padding-left: 21px;
border-color: #cfcfcf;
border-radius: 5px;
background-color: #f8f8f8;
font-family: quasimoda, sans-serif;
color: #333;
font-size: 19px;
font-weight: 300;
}
.budget-month-text-field.new-budget-text-field.simulator-input {
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
}
.budget-month-text-field.month-0-dollars-field {
-webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.text-block-49 {
display: inline-block;
margin-right: 0px;
margin-left: -10px;
font-family: quasimoda, sans-serif;
color: #3f3d56;
font-size: 15px;
}
.text-block-50 {
display: inline-block;
margin-right: 0px;
margin-left: -10px;
font-family: quasimoda, sans-serif;
color: #3f3d56;
font-size: 15px;
}
.grid-45 {
-ms-grid-columns: 1fr 0.25fr;
grid-template-columns: 1fr 0.25fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.edit-budget-button {
display: inline-block;
padding: 2px 30px 5px;
border-radius: 8em;
background-color: #dd4150;
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.edit-budget-button.simulate-button {
margin-left: -7px;
padding: 3px 25px 5px;
box-shadow: 1px 1px 3px 0 #afafaf;
opacity: 0;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
cursor: pointer;
}
.edit-budget-button.simulate-button:hover {
box-shadow: 1px 1px 5px 0 #7e7e7e;
}
.edit-budget-button.simulate-button:active {
box-shadow: 0 0 0 0 #7e7e7e;
}
.edit-budget-button.simulate-button.try-it-out {
margin-top: 22px;
margin-left: 17px;
}
.edit-budget-button.open-simulator {
margin-left: 0px;
background-color: #f44336;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
box-shadow: 1px 1px 3px 0 #afafaf;
-webkit-transition: opacity 300ms ease;
transition: opacity 300ms ease;
}
.edit-budget-button.open-simulator:active {
box-shadow: 0 0 0 0 #afafaf;
}
.month-info-card-wrapper {
display: block;
margin-top: 0px;
opacity: 0;
}
.month-info-card {
overflow: visible;
margin-top: 5px;
margin-right: -62px;
margin-left: -30px;
padding: 15px;
border-style: none;
border-width: 0.5px;
border-color: #ca1717;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.24);
opacity: 1;
}
.grid-46 {
grid-column-gap: 2px;
grid-row-gap: 10px;
-ms-grid-columns: 1fr 0.25fr;
grid-template-columns: 1fr 0.25fr;
}
.text-block-51 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.text-block-52 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.text-block-53 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.month-spend-wrapper {
margin-top: 10px;
}
.div-block-114 {
margin-top: 37px;
text-align: center;
}
.div-block-115 {
margin-top: 22px;
text-align: center;
}
.div-block-116 {
text-align: center;
}
.type-in-budget-div-block {
display: block;
height: auto;
margin-top: 10px;
margin-bottom: 0px;
opacity: 1;
-webkit-transition: height 200ms ease;
transition: height 200ms ease;
text-align: center;
}
.metrics-card {
display: inline-block;
width: 164px;
padding: 22px 20px;
border-radius: 11px;
background-color: #fff;
box-shadow: 3px 2px 10px -7px #000;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
-webkit-transition: top 200ms ease, box-shadow 200ms ease;
transition: top 200ms ease, box-shadow 200ms ease;
}
.metrics-card:hover {
box-shadow: 3px 2px 18px -7px #636363;
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.metrics-card.views-card:hover {
box-shadow: 3px 2px 16px -7px #636363;
}
.metric-block-title {
margin-bottom: 7px;
font-family: quasimoda, sans-serif;
font-size: 12px;
line-height: 17px;
font-weight: 300;
text-align: center;
cursor: default;
}
.metric-block-number {
font-family: quasimoda, sans-serif;
font-size: 18px;
line-height: 22px;
font-weight: 400;
text-align: center;
cursor: default;
}
.comparison-statement {
margin-top: 0px;
font-size: 12px;
text-align: center;
}
.text-block-54 {
display: inline-block;
margin-right: 5px;
font-family: quasimoda, sans-serif;
color: #7cfd31;
font-size: 11px;
line-height: 19px;
font-weight: 400;
}
.text-block-55 {
display: inline-block;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 11px;
line-height: 19px;
font-weight: 400;
}
.text-block-56 {
display: inline-block;
padding-right: 5px;
}
.metrics-card-wrapper {
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}
.text-block-57 {
font-family: quasimoda, sans-serif;
font-size: 17px;
line-height: 21px;
font-weight: 300;
text-align: center;
}
.text-block-58 {
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
text-align: center;
}
.button-14 {
padding: 7px 12px;
border-radius: 100vw;
background-color: #dd4150;
font-family: quasimoda, sans-serif;
font-size: 13px;
line-height: 18px;
font-weight: 300;
}
.text-block-59 {
display: inline-block;
font-family: quasimoda, sans-serif;
color: #000;
font-size: 16px;
font-weight: 300;
}
.month-text {
margin-bottom: 30px;
font-family: quasimoda, sans-serif;
font-size: 19px;
line-height: 26px;
font-weight: 300;
}
.month-text.month--2-text {
line-height: 26px;
font-weight: 300;
}
.month-text.month-0-text {
font-weight: 400;
}
.month-text.month--2-text {
-webkit-transition: font-size 300ms ease;
transition: font-size 300ms ease;
}
.dashboard-sidebar {
position: fixed;
left: 0%;
top: 0%;
right: auto;
bottom: 0%;
z-index: 1;
display: inline-block;
width: 19%;
padding: 20px 0px;
background-color: #fff;
box-shadow: 1px 1px 13px -9px #000;
}
.dashboard-content-block {
display: block;
height: 100%;
margin-left: 19%;
text-align: center;
}
.dashboard-content-block.dashboard-content-block-activate-ads-page {
margin-left: auto;
}
.tabs-2 {
display: inline-block;
width: 91%;
max-width: 930px;
margin: 55px 0px 35px;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 13px -9px #000;
}
.tabs-2.keyword-popup-modal {
margin-top: 38px;
}
.div-block-120 {
text-align: center;
}
.company-logo-wrapper {
text-align: center;
}
.dashboard-title-wrapper {
text-align: center;
}
.dashboard-buttons-wrapper {
margin-top: 20px;
text-align: center;
}
.heading-26 {
display: inline-block;
margin-top: 50px;
margin-bottom: 0px;
font-family: quasimoda, sans-serif;
color: #4a4a4a;
font-size: 26px;
line-height: 30px;
font-weight: 300;
text-align: center;
}
.dashboard-title-line {
display: inline-block;
width: 80%;
height: 1px;
max-width: 200px;
border-radius: 0px;
background-color: #4a4a4a;
opacity: 0.5;
color: #4a4a4a;
}
.dashboard-main-button {
display: inline-block;
width: 120px;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px 0px;
border-radius: 11px;
background-color: #fff;
color: #3f3d56;
}
.dashboard-main-button.clicks-button {
background-image: url('../images/Group-140.svg');
background-position: 50% 50%;
background-size: 205px;
background-repeat: no-repeat;
background-attachment: fixed;
}
.text-block-60 {
display: inline-block;
}
.image-41 {
display: inline-block;
}
.grid-47 {
padding-right: 30px;
padding-left: 10px;
justify-items: center;
grid-column-gap: 1px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.settings-button {
display: inline-block;
width: 130px;
margin-top: 0px;
margin-bottom: 0px;
padding-right: 0px;
padding-left: 0px;
}
.settings-wrapper {
position: fixed;
left: 0%;
top: 77%;
right: auto;
bottom: 0%;
z-index: 2;
display: block;
width: 18%;
padding-top: 0%;
padding-right: 0px;
text-align: center;
}
.text-block-61 {
display: block;
margin-left: -10px;
font-family: quasimoda, sans-serif;
color: #3f3d56;
font-size: 15px;
font-weight: 300;
}
.text-block-62 {
display: inline-block;
}
.grid-48 {
width: 150px;
padding: 10px 0px;
grid-column-gap: 16px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-42 {
margin-top: 0px;
margin-right: 10px;
margin-left: 15px;
}
.image-43 {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
padding-right: 0px;
padding-left: 0px;
}
.div-block-121 {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: center;
}
.div-block-122 {
margin-top: 15px;
text-align: center;
}
.div-block-123 {
position: static;
left: 82%;
text-align: center;
}
.text-block-63 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-64 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-65 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.edit-ads-button-wrapper {
margin-top: 5px;
margin-bottom: 5px;
padding: 4px 13px 4px 7px;
border-radius: 20px;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
text-align: left;
cursor: pointer;
}
.edit-ads-button-wrapper:hover {
box-shadow: 1px 1px 4px 0 #818181;
}
.edit-ads-button-wrapper:active {
box-shadow: 1px 1px 2px -1px #818181;
}
.edit-button-text {
display: inline-block;
margin-top: 3px;
margin-left: 9px;
direction: ltr;
font-family: quasimoda, sans-serif;
color: #dd4150;
line-height: 22px;
font-weight: 400;
text-decoration: none;
text-transform: none;
}
.new-ad-card {
margin: 10px 0px;
padding-right: 25px;
border-radius: 10px;
box-shadow: 1px 1px 7px -4px #000;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
}
.new-ad-card:hover {
box-shadow: 1px 1px 16px -4px #000;
}
.grid-49 {
position: relative;
padding: 5px 30px;
grid-column-gap: 7px;
-ms-grid-columns: 5fr 1fr 1fr;
grid-template-columns: 5fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 10px;
background-color: #fff;
box-shadow: 1px 1px 7px -4px #000;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
cursor: pointer;
}
.grid-49:hover {
box-shadow: 1px 1px 16px -4px #000;
}
.grid-49.select-ads-ad-grid {
padding: 0px;
-ms-grid-columns: minmax(15px, 15px) minmax(60px, 60px) 1fr 0.5fr;
grid-template-columns: minmax(15px, 15px) minmax(60px, 60px) 1fr 0.5fr;
box-shadow: 1px 1px 8px -5px #000;
cursor: default;
}
.grid-49.select-ads-ad-grid:hover {
box-shadow: 1px 1px 16px -5px #000;
}
.green-strip {
width: 10px;
height: 100%;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
background-color: #fff;
opacity: 0.87;
-webkit-transition: background-color 200ms ease;
transition: background-color 200ms ease;
}
.text-block-67 {
display: block;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.button-15 {
padding: 7px 13px;
border-radius: 11px;
background-color: #dd4150;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
font-family: quasimoda, sans-serif;
font-size: 10px;
font-weight: 300;
}
.button-15:hover {
box-shadow: 1px 1px 6px -2px #000;
}
.grid-50 {
margin-top: 15px;
margin-right: 0px;
margin-left: 0px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.dropdown-4 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.image-44 {
margin-top: -5px;
margin-right: 7px;
}
.dropdown-toggle-5 {
padding-top: 6px;
padding-right: 32px;
padding-bottom: 6px;
border-radius: 20px;
}
.google-ads-drop-icon {
margin-right: 17px;
opacity: 0.26;
}
.time-period-selection-wrapper {
margin-top: 0px;
padding-left: 1px;
font-size: 14px;
}
.text-block-68 {
font-family: quasimoda, sans-serif;
font-size: 14px;
font-weight: 300;
}
.dropdown-toggle-6 {
z-index: 1;
padding: 3px 45px 3px 30px;
border-radius: 20px;
}
.dropdown-toggle-6.w--open {
z-index: 5;
}
.body-6 {
background-color: #22314d;
}
.submit-button {
display: none;
}
.div-block-125 {
display: inline-block;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 10px;
padding-bottom: 0px;
}
.grid-51 {
margin-top: 10px;
margin-bottom: 35px;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.dropdown-5 {
margin-left: 0px;
}
.div-block-126 {
display: inline-block;
}
.image-45 {
margin-top: -4px;
margin-left: 5px;
border-radius: 20px;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
cursor: pointer;
}
.image-45:hover {
box-shadow: 1px 1px 5px 0 #bebebe;
}
.dropdown-list-4 {
border-bottom-left-radius: 1px;
}
.dropdown-list-4.w--open {
z-index: 0;
width: 50px;
margin-top: 10px;
padding-top: 10px;
border-radius: 12px;
background-color: #fff;
box-shadow: 1px 1px 6px -2px #000;
opacity: 0;
-webkit-transform: translate(0px, -22px);
-ms-transform: translate(0px, -22px);
transform: translate(0px, -22px);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
}
.dropdown-link-2 {
overflow: visible;
height: 100px;
padding-top: 6px;
padding-bottom: 6px;
font-size: 12px;
-o-object-fit: contain;
object-fit: contain;
}
.fixed-backdrop {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: -1;
background-color: #f6f7fc;
background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(255, 255, 255, 0.44), rgba(236, 236, 236, 0));
}
.month--2-dollars {
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.month--1-dollars {
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.div-block-128 {
text-align: center;
}
.grid-52 {
grid-column-gap: 8px;
grid-row-gap: 8px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.tab-wrapper {
padding: 0px;
background-color: transparent;
text-align: center;
}
.tab-wrapper.w--current {
padding: 0px;
background-color: hsla(0, 0%, 100%, 0);
}
.div-block-129 {
text-align: center;
}
.link-block-7 {
text-decoration: none;
}
.div-block-130 {
text-align: center;
}
.link-block-8 {
text-decoration: none;
}
.div-block-131 {
display: block;
text-align: center;
}
.link-block-9 {
text-decoration: none;
}
.dashbaord-main-buttons-wrapper {
margin-top: 60px;
}
.div-block-132 {
text-align: center;
}
.text-block-69 {
font-family: quasimoda, sans-serif;
font-size: 13px;
font-weight: 300;
}
.ads-grid {
margin-left: -30px;
justify-items: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 14px;
grid-row-gap: 0px;
-ms-grid-columns: minmax(0px, 25px) 1fr;
grid-template-columns: minmax(0px, 25px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
-webkit-transition: margin 200ms ease;
transition: margin 200ms ease;
}
.ad-checkbox-wrapper {
position: relative;
display: block;
padding-right: 23px;
opacity: 0;
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
}
.image-46 {
padding: 0%;
border: 3px solid transparent;
border-radius: 0%;
opacity: 1;
}
.pencil-icon-wrapper {
display: inline-block;
padding: 5px;
border: 0px solid #dd4150;
border-radius: 100%;
background-color: #dd4150;
}
.body-7 {
background-image: radial-gradient(circle farthest-corner at 50% 50%, #fff, #0f0f0f);
text-align: center;
}
.grid-54 {
margin-top: 36px;
padding-right: 15px;
padding-bottom: 19px;
padding-left: 15px;
-ms-grid-columns: 0.5fr 1fr 0.5fr;
grid-template-columns: 0.5fr 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-70 {
display: inline-block;
color: #e8eaf2;
font-size: 19px;
}
.back-button-keywords-modal {
display: inline-block;
width: 130px;
margin-top: -7px;
padding-top: 17px;
padding-bottom: 13px;
border-radius: 15px;
background-color: #dd4150;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
cursor: pointer;
}
.back-button-keywords-modal:hover {
box-shadow: 0 0 8px 2px #b9b9b9;
}
.back-button-wrapper {
padding-right: 34px;
}
.image-47 {
margin-top: -10px;
margin-right: 14px;
}
.active-since-wrapper {
margin-top: 0px;
font-family: quasimoda, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 300;
}
.grid-55 {
margin-top: 0px;
padding-right: 24px;
padding-left: 33px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: minmax(38px, 0.25fr) 1fr;
grid-template-columns: minmax(38px, 0.25fr) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.ad-activity-dot {
display: inline-block;
width: 16px;
height: 16px;
border-radius: 20px;
background-color: #00d343;
}
.ad-activity-dot.keyword-activity-dot {
margin-bottom: -3px;
}
.active-date {
font-size: 15px;
line-height: 23px;
}
.keyord-modal-top {
box-shadow: 0 4px 3px -4px #999;
}
.all-time-performance-wrapper {
margin-top: 40px;
margin-bottom: 20px;
font-family: quasimoda, sans-serif;
}
.text-block-71 {
font-size: 13px;
font-weight: 300;
}
.text-block-72 {
padding-top: 10px;
padding-bottom: 0px;
padding-left: 100px;
font-size: 21px;
line-height: 22px;
font-weight: 300;
text-align: left;
}
.keyword-graph-wrapper {
overflow: scroll;
max-height: 1px;
margin-top: 10px;
margin-bottom: 10px;
padding-bottom: 10px;
opacity: 0;
-webkit-transition: opacity 300ms ease, max-height 300ms ease;
transition: opacity 300ms ease, max-height 300ms ease;
}
.selected-search-terms-grid {
margin-top: 0px;
padding-right: 60px;
padding-left: 100px;
grid-column-gap: 12px;
-ms-grid-columns: 0.3fr 1fr;
grid-template-columns: 0.3fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
opacity: 1;
}
.text-block-73 {
display: inline-block;
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.image-48 {
margin-top: -6px;
margin-right: 7px;
}
.grid-57 {
justify-items: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 5px;
grid-row-gap: 5px;
-ms-grid-columns: 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.keyword-button {
padding: 6px 15px 7px;
border-radius: 27vh;
background-color: #3988aa;
}
.keyword-text {
display: inline-block;
color: #fff;
font-size: 13px;
line-height: 19px;
}
.text-block-74 {
display: inline-block;
margin-left: 10px;
color: #fff;
}
.pivot-table-title {
margin-top: 20px;
padding-right: 170px;
padding-left: 170px;
grid-column-gap: 45px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.pivot-table-triangle-up-side-down {
display: inline-block;
width: 0px;
height: 0px;
border-style: solid;
border-width: 8px 8px 0px;
border-color: #000 transparent transparent;
border-radius: 0px;
background-color: transparent;
}
.text-block-75 {
font-family: quasimoda, sans-serif;
font-size: 18px;
line-height: 26px;
font-weight: 300;
text-decoration: none;
}
.keyword-list-title-wrapper {
text-align: center;
cursor: pointer;
}
.pivot-table-triangle-right-side-up {
display: inline-block;
border-style: solid;
border-width: 0px 9px 18px;
border-color: transparent transparent #000;
}
.title-text-wrapper {
display: inline-block;
}
.triangles-wrapper {
position: relative;
top: -3px;
display: inline-block;
margin-left: 23px;
}
.triangles-wrapper.clicks-triangle-wrapper {
opacity: 0;
}
.grid-58 {
display: -ms-grid;
display: grid;
height: 63px;
margin-top: 16px;
padding-right: 20px;
padding-left: 20px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-auto-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 19px;
background-color: #fff;
box-shadow: 2px 2px 7px -4px #979797;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
cursor: pointer;
}
.grid-58:hover {
box-shadow: 2px 2px 14px -4px #979797;
}
.grid-58:active {
box-shadow: 2px 2px 6px -4px #979797;
}
.keyword-row-entry-wrapper {
display: inline-block;
text-align: center;
}
.text-block-76 {
display: inline-block;
margin-left: 18px;
font-family: quasimoda, sans-serif;
font-size: 17px;
line-height: 20px;
font-weight: 300;
text-align: center;
}
.div-block-134 {
margin-left: 0px;
}
.text-block-77 {
margin-top: 10px;
margin-bottom: 8px;
font-family: quasimoda, sans-serif;
font-size: 14px;
line-height: 21px;
font-weight: 300;
text-align: left;
}
.keyword-click-row-entry-wrapper {
display: inline-block;
}
.text-block-78 {
display: inline-block;
font-family: quasimoda, sans-serif;
font-size: 17px;
line-height: 20px;
font-weight: 300;
}
.text-block-79 {
font-family: quasimoda, sans-serif;
font-size: 16px;
font-weight: 300;
}
.html-embed-4 {
margin-top: auto;
padding-top: 0px;
}
.comparison-hover-wrapper {
position: relative;
z-index: 2;
margin-top: -24px;
-webkit-transform: translate(0px, 15px);
-ms-transform: translate(0px, 15px);
transform: translate(0px, 15px);
}
.comparison-hover-wrapper.views-comparison {
opacity: 0;
-webkit-transform: translate(0px, 15px);
-ms-transform: translate(0px, 15px);
transform: translate(0px, 15px);
}
.comparison-hover-wrapper.clicks-comparison {
opacity: 0;
-webkit-transform: translate(0px, 15px);
-ms-transform: translate(0px, 15px);
transform: translate(0px, 15px);
cursor: default;
}
.comparison-hover-wrapper.cpc-comparison {
opacity: 0;
-webkit-transform: translate(0px, 15px);
-ms-transform: translate(0px, 15px);
transform: translate(0px, 15px);
}
.comparison-hover-element {
padding: 5px 8px;
border-radius: 34vw;
background-color: #617d8a;
box-shadow: 1px 1px 18px -1px #969696;
cursor: default;
}
.text-block-80 {
margin-top: 10px;
margin-bottom: 40px;
padding-left: 30px;
color: #3b3b3b;
font-size: 13px;
line-height: 19px;
text-align: left;
}
.dropdown-list-5 {
padding-top: 10px;
}
.dropdown-list-5.w--open {
position: absolute;
z-index: -1;
margin-top: 5px;
padding-top: 0px;
border-radius: 8px;
background-color: hsla(0, 0%, 100%, 0.85);
box-shadow: 1px 1px 8px -3px #707070;
font-size: 12px;
line-height: 15px;
}
.dropdown-time-element-clicks-page {
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
}
.dropdown-time-element-clicks-page:hover {
font-weight: 400;
}
.div-block-135 {
position: relative;
top: -2px;
display: inline-block;
margin-right: 4px;
padding: 5px 8px 8px;
border-radius: 100%;
background-color: #f44336;
}
.grid-59 {
grid-column-gap: 4px;
grid-row-gap: 7px;
-ms-grid-columns: 1.5fr;
grid-template-columns: 1.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-60 {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-row-gap: 0px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
}
.text-block-81 {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
font-family: quasimoda, sans-serif;
font-size: 16px;
line-height: 20px;
font-weight: 300;
}
.text-block-82 {
font-family: quasimoda, sans-serif;
font-weight: 300;
cursor: default;
}
.budget-cards-wrapper {
display: -ms-grid;
display: grid;
margin-top: 60px;
padding-right: 5px;
padding-left: 5px;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
grid-auto-columns: 1fr;
grid-column-gap: 1px;
grid-row-gap: 16px;
-ms-grid-columns: 1fr 1fr 1.1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1.1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.budget-card {
margin-top: 27px;
margin-right: 5px;
margin-left: 5px;
padding-right: 0px;
padding-bottom: 18px;
padding-left: 0px;
border-radius: 12px;
box-shadow: 1px 1px 6px -2px #474747;
-webkit-transition: box-shadow 200ms ease, -webkit-transform 400ms ease;
transition: box-shadow 200ms ease, -webkit-transform 400ms ease;
transition: box-shadow 200ms ease, transform 400ms ease;
transition: box-shadow 200ms ease, transform 400ms ease, -webkit-transform 400ms ease;
font-family: quasimoda, sans-serif;
font-weight: 300;
cursor: default;
}
.budget-card:hover {
-webkit-transform: translate(0px, -10px);
-ms-transform: translate(0px, -10px);
transform: translate(0px, -10px);
}
.budget-card.current-month-card {
width: 20%;
margin-top: 0px;
border: 0px solid #dd4150;
cursor: default;
}
.budget-card.current-month-card.budget-card-0 {
width: auto;
}
.grid-61 {
grid-column-gap: 0px;
-ms-grid-columns: minmax(25px, 25px) 1fr minmax(25px, 25px);
grid-template-columns: minmax(25px, 25px) 1fr minmax(25px, 25px);
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-83 {
margin-top: 10px;
font-size: 18px;
line-height: 19px;
font-weight: 400;
}
.text-block-83.total-spent-value {
margin-top: 0px;
}
.text-block-83.total-spent-value.current-total-spent-value {
font-size: 20px;
line-height: 22px;
}
.text-block-84 {
margin-top: 2px;
font-size: 12px;
line-height: 17px;
font-weight: 300;
}
.grid-62 {
margin-top: 21px;
padding-right: 15px;
padding-left: 15px;
grid-column-gap: 11px;
grid-row-gap: 8px;
-ms-grid-columns: 2fr 1fr;
grid-template-columns: 2fr 1fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.grid-62.grid-for-current-month-expenses {
margin-top: 30px;
}
.red-tops {
height: 24px;
margin-bottom: 15px;
border-radius: 9px 9px 0px 0px;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
}
.red-tops.future-card-color-top {
background-color: #e0e0e0;
background-image: none;
}
.text-block-85 {
font-size: 11px;
text-align: left;
}
.text-block-86 {
font-size: 11px;
text-align: left;
}
.text-block-87 {
font-size: 11px;
text-align: left;
}
.text-block-88 {
font-size: 11px;
}
.text-block-88.max-budget-value {
padding: 0px 4px;
border-radius: 6px;
background-color: #f35247;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-89 {
font-size: 11px;
}
.text-block-89.max-budget-value {
padding-right: 4px;
padding-left: 4px;
border-radius: 6px;
background-color: #f35247;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-90 {
font-size: 11px;
}
.text-block-91 {
font-size: 11px;
}
.text-block-92 {
font-size: 11px;
}
.text-block-92.max-budget-value {
padding-right: 4px;
padding-left: 4px;
border-radius: 6px;
background-color: #f35247;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-93 {
font-size: 11px;
}
.text-block-94 {
font-size: 11px;
}
.text-block-95 {
font-size: 11px;
}
.text-block-96 {
font-size: 11px;
}
.text-block-97 {
font-size: 11px;
}
.text-block-97.max-budget-value {
padding-right: 4px;
padding-left: 4px;
border-radius: 6px;
background-color: #bdbdbd;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-98 {
font-size: 11px;
}
.text-block-99 {
font-size: 11px;
}
.text-block-100 {
font-size: 11px;
}
.text-block-100.max-budget-value {
padding-right: 4px;
padding-left: 4px;
border-radius: 6px;
background-color: #bdbdbd;
box-shadow: 1px 1px 6px -4px #000;
color: #fff;
}
.text-block-101 {
font-size: 11px;
}
.text-block-102 {
font-size: 11px;
}
.grid-63 {
grid-column-gap: 7px;
-ms-grid-columns: 1fr 2.5fr 1fr;
grid-template-columns: 1fr 2.5fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-103 {
margin-top: 5px;
margin-bottom: 0px;
padding-left: 0px;
font-family: quasimoda, sans-serif;
font-size: 11px;
line-height: 20px;
font-weight: 300;
text-align: center;
}
.div-block-137 {
display: inline-block;
margin-top: 11px;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 2px;
border: 0px solid #dd4150;
border-radius: 20px;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
cursor: pointer;
}
.div-block-137:hover {
box-shadow: 1px 1px 4px 0 #818181;
}
.div-block-137:active {
box-shadow: 1px 1px 0 -7px #3f3f3f;
}
.div-block-137.e-budget-whole-button {
overflow: hidden;
width: 170px;
margin-top: 0px;
padding: 5px 10px 5px 15px;
border-radius: 100vw;
background-color: #fff;
-webkit-transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.div-block-137.e-budget-whole-button:active {
box-shadow: 1px 1px 10px -7px #3f3f3f;
}
.edit-budget-text-button {
position: relative;
top: 2px;
display: inline-block;
padding: 7px 10px;
border-radius: 0px;
font-family: quasimoda, sans-serif;
color: #f44336;
font-size: 16px;
line-height: 20px;
font-weight: 400;
}
.text-block-104 {
display: inline-block;
font-family: quasimoda, sans-serif;
color: #000;
font-size: 13px;
font-weight: 300;
text-align: left;
text-decoration: none;
}
.billing-notice {
position: relative;
top: 20px;
display: inline-block;
margin-top: 0px;
padding: 13px 25px 13px 10px;
border-radius: 20px;
background-color: #f5f5f5;
background-image: linear-gradient(92deg, #f7f7f7, #f5f5f5);
box-shadow: 1px 1px 6px -3px #414141;
opacity: 0;
-webkit-transition: top 325ms ease, opacity 325ms ease;
transition: top 325ms ease, opacity 325ms ease;
}
.simulator-graph-wrapper {
height: 0px;
margin-top: 0px;
padding-bottom: 20px;
opacity: 0;
-webkit-transition: height 100ms ease, opacity 400ms ease;
transition: height 100ms ease, opacity 400ms ease;
}
.grid-64 {
padding-right: 130px;
padding-left: 36px;
justify-items: end;
grid-column-gap: 7px;
-ms-grid-columns: minmax(60px, 60px) 1fr;
grid-template-columns: minmax(60px, 60px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-105 {
padding-top: 40px;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
font-family: quasimoda, sans-serif;
font-size: 20px;
font-weight: 300;
}
.text-block-106 {
padding-left: 0%;
font-family: quasimoda, sans-serif;
font-size: 20px;
font-weight: 300;
}
.div-block-138 {
width: 100%;
}
.div-block-139 {
display: inline-block;
width: 80%;
}
.div-block-140 {
padding-top: 40px;
text-align: center;
}
.grid-65 {
grid-column-gap: 0px;
-ms-grid-columns: 0.25fr 1fr;
grid-template-columns: 0.25fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-107 {
font-size: 30px;
line-height: 30px;
}
.html-embed-6 {
background-color: #fff;
}
.grid-66 {
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-67 {
grid-column-gap: 6px;
-ms-grid-columns: 1.75fr 1fr;
grid-template-columns: 1.75fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.click-for-more-info-slider {
position: relative;
display: inline-block;
width: 80%;
height: 38px;
padding-top: 7px;
border-radius: 5px;
background-color: #f6665c;
box-shadow: 1px 0 4px -2px #000;
opacity: 1;
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 16px;
font-weight: 300;
}
.click-for-more-info-slider.ads-page-click-on-ad-for-more-info-popup {
background-color: #f6665c;
-webkit-transition: background-color 200ms ease;
transition: background-color 200ms ease;
}
.click-for-details-tab {
position: relative;
top: 29px;
z-index: 0;
background-color: hsla(0, 0%, 100%, 0);
text-align: center;
}
.click-for-details-tab.click-for-details-tab-for-result-2 {
top: 29px;
}
.search-result-element-with-background {
position: static;
z-index: 0;
}
.search-result-element-with-background.clicks-page-ad-element {
margin-top: 5px;
margin-bottom: 5px;
}
.search-result-element-with-background.clicks-page-ad-element.ad-element-select-ads-page {
margin-top: 50px;
margin-bottom: 50px;
}
.grid-68 {
grid-row-gap: 11px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
}
.div-block-144 {
margin-bottom: 4px;
}
.div-block-145 {
width: 100%;
height: 100%;
background-color: #720a0a;
}
.save-chances-card {
position: fixed;
left: 54.5%;
top: 33%;
width: 20%;
min-height: 6%;
padding: 10px 10px 15px;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 6px -2px #000;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-108 {
margin-top: 5px;
margin-bottom: 25px;
font-family: quasimoda, sans-serif;
font-size: 19px;
line-height: 25px;
font-weight: 300;
text-align: center;
}
.button-16 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 127px;
margin-right: 5px;
margin-left: 5px;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
border-radius: 8px;
background-color: #dd4150;
font-size: 17px;
text-align: center;
}
.button-16.don-t-save-button {
margin-right: 10px;
margin-left: 10px;
padding-top: 9px;
border: 1px solid #dd4150;
background-color: #fff;
box-shadow: 1px 1px 6px -3px #000;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
color: #333;
font-size: 15px;
line-height: 16px;
}
.button-16.don-t-save-button:hover {
box-shadow: 1px 1px 9px -3px #000;
}
.button-16.don-t-save-button:active {
box-shadow: 1px 1px 6px -3px #000;
}
.button-16.save-button {
margin-right: 10px;
margin-left: 10px;
padding-top: 9px;
box-shadow: 1px 1px 6px -3px #000;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
font-size: 15px;
line-height: 18px;
}
.button-16.save-button:hover {
box-shadow: 1px 1px 9px -3px #000;
}
.button-16.save-button:active {
box-shadow: 1px 1px 6px -3px #000;
}
.div-block-146 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.save-changes-card {
left: 49.5%;
z-index: 11;
display: block;
background-color: #fff;
opacity: 1;
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
}
.div-block-147 {
left: 45.5%;
top: 32%;
display: block;
width: 28%;
max-width: 395px;
padding: 30px 15px;
opacity: 0;
}
.grid-69 {
height: 75px;
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.container-21 {
margin-top: 10px;
}
.try-it-out-wrapper {
height: 30px;
margin-top: 15px;
-webkit-transition: height 200ms ease, opacity 200ms ease;
transition: height 200ms ease, opacity 200ms ease;
}
.div-block-148 {
padding-top: 29px;
}
.div-block-149 {
padding-top: 13px;
}
.div-block-150 {
padding-top: 8px;
}
.div-block-151 {
padding-top: 8px;
}
.div-block-152 {
padding-top: 8px;
}
.div-block-153 {
padding-top: 8px;
}
.grid-70 {
-ms-grid-columns: 1fr minmax(296px, 0px) 1fr;
grid-template-columns: 1fr minmax(296px, 0px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-70.simulator-button-grid {
-ms-grid-columns: 1fr auto 1fr;
grid-template-columns: 1fr auto 1fr;
}
.open-simulator-button-wrapper {
width: 350px;
padding-right: 0px;
-webkit-transition: width 300ms cubic-bezier(.497, .237, .257, .944), opacity 150ms ease;
transition: width 300ms cubic-bezier(.497, .237, .257, .944), opacity 150ms ease;
}
.simulator-input-wrapper {
margin-right: -10px;
opacity: 0;
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
}
.div-block-155 {
margin-left: -22px;
}
.div-block-156 {
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-109 {
font-size: 17px;
line-height: 21px;
}
.text-block-110 {
font-size: 16px;
}
.searches-wrapper-a-page {
margin-top: 5px;
padding-right: 80px;
padding-left: 80px;
}
.searches-wrapper-a-page.deactivated-searches-wrapper-a-page {
margin-top: 5px;
}
.div-block-157 {
text-align: left;
}
.edit-budget-button-wrapper {
width: 200px;
padding-right: 0px;
-webkit-transition: width 300ms ease, opacity 150ms ease;
transition: width 300ms ease, opacity 150ms ease;
}
.tabs-menu-4 {
margin-top: 40px;
font-family: quasimoda, sans-serif;
font-size: 15px;
font-weight: 400;
}
.div-block-159 {
display: inline-block;
}
.grid-71 {
padding: 4px 100px 4px 5px;
grid-column-gap: 5px;
-ms-grid-columns: minmax(20px, 20px) 1fr;
grid-template-columns: minmax(20px, 20px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
border-radius: 12px;
box-shadow: 1px 1px 7px -4px #000;
cursor: default;
}
.div-block-160 {
display: inline-block;
min-width: 80%;
padding-right: 10px;
padding-left: 10px;
}
.tab-pane-tab-1 {
padding-top: 22px;
padding-bottom: 30px;
}
.tab-link-tab-1-2 {
width: 200px;
background-color: transparent;
font-weight: 300;
text-align: center;
}
.tab-link-tab-1-2.w--current {
background-color: transparent;
font-weight: 400;
text-align: center;
}
.tab-link-tab-2 {
width: 200px;
background-color: transparent;
font-weight: 300;
text-align: center;
}
.tab-link-tab-2.w--current {
background-color: transparent;
font-weight: 400;
}
.div-block-161 {
display: -ms-grid;
display: grid;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 70px;
grid-auto-columns: 1fr;
grid-column-gap: 2px;
grid-row-gap: 16px;
-ms-grid-columns: minmax(28px, 28px) 1fr;
grid-template-columns: minmax(28px, 28px) 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-111 {
display: inline-block;
margin-left: 35px;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
font-family: quasimoda, sans-serif;
font-size: 18px;
font-weight: 300;
}
.grid-72 {
grid-column-gap: 2px;
-ms-grid-columns: 0.5fr 0.8fr 0.5fr;
grid-template-columns: 0.5fr 0.8fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-72.deactivated-title-grid {
margin-top: 25px;
}
.grid-73 {
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.grid-73.grid-ads-page {
padding-left: 20px;
}
.calendar-icon {
position: relative;
z-index: 2;
display: inline-block;
padding: 8px 9px;
border-radius: 100%;
background-color: #68b6f4;
box-shadow: 0 1px 7px -4px #000;
opacity: 1;
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
cursor: pointer;
}
.calendar-icon:hover {
box-shadow: 0 1px 10px -4px #000;
}
.calendar-icon:active {
box-shadow: 0 1px 6px -4px #000;
}
.platform-icon {
position: relative;
z-index: 2;
display: inline-block;
padding: 8px;
border-radius: 100%;
background-color: #f7f7f7;
box-shadow: 0 1px 7px -4px #000;
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
cursor: pointer;
}
.platform-icon:hover {
box-shadow: 0 1px 10px -4px #000;
}
.div-block-164 {
padding-right: 58px;
}
.div-block-165 {
overflow: visible;
padding-top: 10px;
padding-bottom: 10px;
}
.div-block-166 {
padding-top: 10px;
padding-bottom: 10px;
}
.div-block-167 {
padding-right: 62px;
}
.div-block-168 {
background-color: #db0000;
}
.div-block-169 {
position: relative;
top: 29px;
display: inline-block;
width: 80%;
height: 38px;
border-radius: 5px;
background-color: #f6665c;
box-shadow: 1px 1px 6px -2px #000;
-webkit-transition: top 300ms ease;
transition: top 300ms ease;
}
.div-block-169.deactivated-slider {
background-color: #9c9c9c;
}
.text-block-112 {
padding-top: 7px;
color: #e6e6e6;
}
.text-block-113 {
font-size: 20px;
line-height: 25px;
}
.text-block-114 {
font-size: 20px;
line-height: 25px;
}
.keyword-card-new {
padding-right: 175px;
padding-left: 175px;
}
.div-block-170 {
display: block;
text-align: center;
}
.text-block-115 {
margin-top: 14px;
margin-bottom: 14px;
padding-left: 100px;
font-family: quasimoda, sans-serif;
font-size: 14px;
line-height: 23px;
font-weight: 300;
text-align: left;
}
.grid-74 {
-ms-grid-columns: 2.5fr 1fr 0.5fr;
grid-template-columns: 2.5fr 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.show-terms-button {
padding-right: 18px;
padding-left: 18px;
border-radius: 20px;
background-color: #f44336;
background-image: -webkit-gradient(linear, left top, right top, from(#f6695e), to(#f44336));
background-image: linear-gradient(90deg, #f6695e, #f44336);
-webkit-transition: background-color 200ms ease, width 200ms ease;
transition: background-color 200ms ease, width 200ms ease;
}
.tab-pane-tab-2-2 {
margin-top: 22px;
margin-bottom: 40px;
}
.div-block-171 {
padding-right: 150px;
padding-left: 150px;
}
.body-8 {
margin-top: 194px;
}
.cal-slider-bar {
position: relative;
top: 3px;
z-index: 0;
display: inline-block;
width: 0px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 64vh;
background-color: #fff;
box-shadow: 1px 1px 3px -1px #747474;
opacity: 0;
-webkit-transition: opacity 200ms ease, width 400ms ease;
transition: opacity 200ms ease, width 400ms ease;
}
.select-date-placeholder-text {
position: relative;
z-index: -1;
display: block;
height: 20px;
padding-left: 51px;
border-radius: 100vh;
opacity: 0;
-webkit-transition: opacity 200ms ease;
transition: opacity 200ms ease;
font-family: quasimoda, sans-serif;
color: #999;
line-height: 20px;
font-weight: 300;
}
.cal-dropdown {
position: relative;
left: 19px;
top: -32px;
z-index: -1;
width: 166px;
padding-top: 8px;
padding-bottom: 8px;
border-radius: 9px;
background-color: #f6f7fc;
box-shadow: 1px 1px 5px -1px #9e9e9e;
opacity: 0;
-webkit-transition: box-shadow 200ms ease, opacity 200ms ease, top 400ms ease;
transition: box-shadow 200ms ease, opacity 200ms ease, top 400ms ease;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.cal-dropdown:hover {
box-shadow: 1px 1px 11px -1px #9e9e9e;
}
.text-block-117 {
padding-top: 8px;
padding-bottom: 8px;
padding-left: 31px;
color: #333;
text-align: left;
cursor: pointer;
}
.text-block-117:hover {
font-weight: 400;
}
.text-block-117.special {
position: relative;
z-index: 4;
color: #1a9aff;
text-decoration: none;
}
.date-selector-dropdown {
display: inline-block;
-webkit-transition: width 400ms ease, opacity 200ms ease;
transition: width 400ms ease, opacity 200ms ease;
}
.platform-element {
position: fixed;
display: inline-block;
margin-top: 45px;
text-align: center;
}
.div-block-176 {
display: inline-block;
width: 185px;
margin-left: 0px;
color: #999;
}
.text-block-118 {
position: relative;
top: 4px;
z-index: -1;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 25px;
border-radius: 64vh;
box-shadow: 1px 1px 3px -1px #747474;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.div-block-177 {
position: relative;
top: 12px;
display: inline-block;
width: 170px;
padding-top: 8px;
padding-bottom: 8px;
border-radius: 9px;
background-color: #f6f7fc;
box-shadow: 1px 1px 5px -1px #9e9e9e;
}
.div-block-177.platform-dropdown {
top: 0px;
opacity: 0;
-webkit-transition: top 200ms ease, opacity 200ms ease;
transition: top 200ms ease, opacity 200ms ease;
}
.div-block-178 {
text-align: center;
}
.text-block-119 {
position: relative;
top: 3px;
display: inline-block;
padding-right: 13px;
padding-left: 14px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.text-block-119.no-other-available {
font-size: 14px;
line-height: 21px;
}
.div-block-179 {
padding-top: 8px;
padding-bottom: 8px;
cursor: pointer;
}
.div-block-180 {
text-align: center;
}
.div-block-181 {
text-align: center;
}
.div-block-182 {
position: relative;
z-index: -1;
}
.cancel-calendar-period {
position: relative;
left: -11px;
top: -76px;
display: inline-block;
padding: 0px 6px;
border-radius: 100%;
background-color: #f44336;
box-shadow: 1px 1px 4px -2px #000;
opacity: 0;
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
color: #fff;
font-size: 10px;
cursor: pointer;
}
.cancel-calendar-period:hover {
box-shadow: 1px 1px 4px 0 grey;
}
.cancel-calendar-period.cancel-cal-dropdown {
left: -12px;
top: -80px;
opacity: 0;
-webkit-transition: top 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
transition: top 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
}
.cancel-calendar-period.cancel-cal-period-button {
left: -15px;
top: -13px;
opacity: 0;
}
.div-block-183 {
position: fixed;
}
.active-tab {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
background-color: #e0e0e0;
-webkit-transition: background-color 200ms ease;
transition: background-color 200ms ease;
}
.activate-ads-button {
display: inline-block;
padding: 13px 20px;
border-radius: 49vh;
background-color: #fff;
background-image: linear-gradient(144deg, #f6695e, #f44336);
box-shadow: 1px 1px 8px -5px #000;
opacity: 0.3;
-webkit-transition: opacity 200ms ease, box-shadow 200ms ease;
transition: opacity 200ms ease, box-shadow 200ms ease;
font-family: quasimoda, sans-serif;
font-size: 21px;
font-weight: 300;
cursor: pointer;
}
.activate-ads-button:hover {
box-shadow: 1px 1px 14px -5px #000;
}
.activate-ads-button:active {
box-shadow: 1px 1px 8px -5px #000;
}
.div-block-184 {
padding-right: 30px;
}
.grid-75 {
margin-top: 34px;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 11px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.more-info-button-activate-ads {
position: relative;
left: 25px;
top: -17px;
padding: 17px 33px;
border-radius: 54vh;
background-color: #7dca5d;
box-shadow: 1px 1px 2px 0 #aaa;
opacity: 1;
-webkit-transition: left 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
transition: left 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
font-family: quasimoda, sans-serif;
font-size: 15px;
font-weight: 400;
text-transform: uppercase;
}
.more-info-button-activate-ads:hover {
box-shadow: 1px 1px 8px 0 #aaa;
}
.text-block-120 {
position: static;
top: 4px;
display: inline-block;
margin-left: 0px;
color: #fff;
font-size: 21px;
text-transform: none;
}
.div-block-185 {
padding: 5px;
border-radius: 100%;
background-color: #f7f7f7;
}
.image-49 {
padding: 5px;
}
.text-block-121 {
margin-top: 45px;
padding-right: 170px;
padding-left: 170px;
font-family: quasimoda, sans-serif;
font-size: 16px;
line-height: 23px;
font-weight: 300;
text-align: center;
}
.div-block-186 {
padding-right: 100px;
padding-left: 0px;
color: #747474;
}
.image-50 {
padding-right: 20px;
}
.real-keyword-graph-wrapper {
padding-right: 60px;
padding-left: 60px;
text-align: center;
}
.second-inner-keyword-graph-grid-wrapper {
display: inline-block;
width: 84%;
}
.grid-76 {
grid-column-gap: 0px;
-ms-grid-columns: auto auto auto;
grid-template-columns: auto auto auto;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-51 {
display: inline-block;
width: 45px;
max-width: none;
border-radius: 100%;
box-shadow: 1px 1px 3px -1px #5e5e5e;
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
text-align: center;
cursor: pointer;
}
.image-51:hover {
box-shadow: 1px 1px 5px -1px #5e5e5e;
}
.image-51:active {
box-shadow: 1px 1px 2px -1px #5e5e5e;
}
.text-block-122 {
padding-top: 5px;
font-family: quasimoda, sans-serif;
font-size: 13px;
font-weight: 300;
text-align: center;
}
.image-52 {
width: 44px;
max-width: none;
padding: 10px;
border: 0px solid #556e7a;
border-radius: 100%;
background-color: #556e7a;
box-shadow: 1px 1px 3px -1px #5e5e5e;
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: box-shadow 200ms ease;
transition: box-shadow 200ms ease;
cursor: pointer;
}
.image-52:hover {
overflow: visible;
box-shadow: 1px 1px 7px -1px #5e5e5e;
}
.image-52:active {
box-shadow: 1px 1px 2px -1px #5e5e5e;
}
.cancel-button-div-wrapper {
width: 0px;
opacity: 0;
-webkit-transition: width 200ms ease, opacity 200ms ease;
transition: width 200ms ease, opacity 200ms ease;
}
.save-button-div-wrapper {
width: 0px;
opacity: 0;
-webkit-transition: width 200ms ease, opacity 200ms ease;
transition: width 200ms ease, opacity 200ms ease;
}
.image-53 {
padding-right: 7px;
}
.html-embed-7 {
padding-right: 50px;
padding-left: 50px;
}
.free-trial-text {
color: #fff;
font-size: 11px;
line-height: 25px;
font-style: normal;
font-weight: 300;
}
.grid-77 {
margin-top: 55px;
grid-column-gap: 12px;
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.deactivated-button {
border: 1px solid #606060;
border-radius: 20px;
background-color: #fff;
box-shadow: 1px 1px 5px -3px #000;
-webkit-transition: background-color 200ms ease, box-shadow 200ms ease;
transition: background-color 200ms ease, box-shadow 200ms ease;
font-family: quasimoda, sans-serif;
color: #333;
cursor: pointer;
}
.deactivated-button:hover {
background-color: #606060;
box-shadow: 1px 1px 9px -3px #000;
color: #fff;
}
.deactivated-button:active {
box-shadow: 1px 1px 0 -3px #000;
}
.grid-78 {
position: relative;
top: 30px;
z-index: 3;
-ms-grid-columns: 1fr 0.5fr;
grid-template-columns: 1fr 0.5fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.div-block-188 {
display: -ms-grid;
display: grid;
grid-auto-columns: 1fr;
grid-column-gap: 13px;
grid-row-gap: 0px;
-ms-grid-columns: 0.5fr 1fr;
grid-template-columns: 0.5fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.image-54 {
text-align: right;
}
.div-block-189 {
display: inline-block;
padding: 8px 20px;
border-radius: 5px;
background-color: #f46760;
box-shadow: 1px 1px 3px 0 #a5a5a5;
}
.text-block-123 {
font-family: quasimoda, sans-serif;
color: #fff;
font-size: 16px;
font-weight: 300;
cursor: default;
}
.text-block-124 {
font-family: quasimoda, sans-serif;
color: #494949;
font-style: italic;
cursor: default;
}
.div-block-190 {
margin-bottom: 5px;
}
.div-block-191 {
margin-bottom: 15px;
}
.google-search-image-wrapper {
margin-top: 25px;
}
.image-55 {
padding-left: 2px;
}
@media screen and (max-width: 991px) {
.home-link {
position: static;
top: -10px;
}
.home-link.w--current {
position: static;
}
.navigation-logo {
position: static;
margin-top: 0px;
}
.navigation-items {
position: static;
display: block;
margin-top: 464px;
margin-right: 19px;
padding-right: 0px;
background-color: #fff;
}
.navigation {
position: -webkit-sticky;
position: sticky;
}
.login-button {
background-color: #fff;
color: #333;
}
.menu-button {
position: static;
left: 392px;
top: 29px;
display: inline;
background-color: #fff;
font-size: 50px;
}
.menu-button.w--open {
background-color: #000;
}
.form-wrapper {
margin-right: -11%;
padding-top: 16px;
}
.heading {
font-size: 23px;
}
.section-description {
font-size: 13px;
}
.image-2 {
max-width: 80%;
}
.container-2 {
display: inline-block;
margin-top: 0px;
margin-right: 0%;
margin-left: 0%;
padding-top: 0px;
}
.div-block-2 {
display: inline-block;
}
.grid-2 {
padding-right: 40px;
padding-left: 40px;
}
.homepage-subtitle {
margin-top: 20px;
margin-bottom: 20px;
}
.ad-management-grid.feature-grid-template {
grid-column-gap: 36px;
}
.subpoint-title {
font-size: 16px;
}
.subpoint-explanation {
display: inline;
font-size: 13px;
}
.what-s-included-heading {
margin-top: 10px;
margin-bottom: 5px;
}
.services-tab {
margin-right: 10px;
margin-left: 10px;
padding-right: 32px;
padding-left: 32px;
}
.business-vs-nonprofits {
margin-right: 50px;
margin-left: 50px;
}
.business-vs-nonprofits.w--current {
margin-right: 45px;
margin-left: 45px;
}
.what-we-do-description {
margin-top: -20px;
padding-right: 10px;
padding-left: 10px;
font-size: 15px;
}
.what-we-do-heading {
margin-bottom: 30px;
}
.grid-15 {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.container-7 {
padding-right: 60px;
padding-left: 60px;
}
.section-6.login-modal {
display: block;
opacity: 1;
}
.sign-in-title {
margin-top: 30px;
}
.login-text-field {
padding-top: 6px;
padding-bottom: 6px;
}
.field-label {
margin-bottom: 3px;
}
.sign-in-button {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-transform: none;
}
.container-10 {
margin-bottom: 0px;
}
.grid-18 {
margin-right: 50px;
margin-left: 50px;
}
.grid-22 {
-ms-grid-columns: 0.3fr 1fr 1fr 0.3fr;
grid-template-columns: 0.3fr 1fr 1fr 0.3fr;
}
.section-description-right {
padding-right: 49px;
opacity: 1;
}
.section-description-left {
padding-left: 37px;
}
.link-block-5 {
position: static;
top: -10px;
padding-top: 8px;
}
.link-block-5.w--current {
position: static;
padding-top: 8px;
}
.icon {
position: relative;
left: -5px;
top: 5px;
}
.div-block-48 {
display: block;
text-align: right;
}
.grid-23 {
padding-top: 0px;
padding-right: 30px;
padding-left: 30px;
-ms-grid-rows: auto;
grid-template-rows: auto;
}
.text-block-11 {
font-size: 13px;
}
.tabs {
padding-right: 0px;
padding-left: 0px;
}
.container-14 {
padding-right: 30px;
padding-left: 30px;
}
.get-started-modal {
display: none;
opacity: 0;
}
.heading-15 {
margin-top: 21px;
margin-bottom: 44px;
padding-right: 120px;
padding-left: 120px;
line-height: 38px;
}
.div-block-51 {
padding-top: 10px;
}
.text-block-12 {
font-size: 14px;
}
.field-label-2 {
font-weight: 300;
}
.field-label-3 {
font-weight: 300;
}
.grid-25 {
left: -2px;
top: -75px;
}
.button-10 {
left: 8px;
top: 11px;
}
.sign-in-field {
text-align: left;
}
.r-finder-field {
font-family: quasimoda, sans-serif;
font-weight: 300;
text-align: left;
}
.r-finder-text-field {
border: 1px solid #e2e2e2;
border-radius: 6px;
font-family: quasimoda, sans-serif;
font-weight: 300;
}
.div-block-58 {
margin-right: 33px;
padding-right: 10px;
padding-left: 10px;
}
.heading-17 {
margin-top: 10px;
padding-right: 10px;
padding-left: 10px;
}
.dropdown-list-2 {
display: block;
margin-top: -4px;
background-color: hsla(0, 0%, 86.7%, 0);
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
}
.nav-dropdown {
display: block;
margin-top: 10px;
border-radius: 6px;
background-color: #fff;
box-shadow: 1px 1px 4px -2px #000;
-webkit-transition: all 200ms ease-in;
transition: all 200ms ease-in;
text-transform: uppercase;
}
.nav-dropdown:hover {
box-shadow: 2px 2px 7px -2px #000;
}
.nav-dropdown.dropdown-login {
background-color: #dc3545;
color: #fff;
}
.dropdown {
margin-right: 7px;
}
.dropdown-toggle {
display: block;
}
.div-block-60 {
position: fixed;
left: 0%;
top: 0%;
right: 0%;
bottom: 0%;
z-index: 2;
display: none;
background-color: #fff;
opacity: 1;
}
.mobile-login {
width: 100vw;
height: 0%;
background-color: #dc3545;
}
.mobile-login.menu-item-4 {
background-color: #f6f9fc;
color: #333;
}
.div-block-61 {
width: 100px;
}
.div-block-62 {
width: auto;
}
.button-12 {
width: 100vw;
}
.div-block-63 {
width: auto;
}
.button-13 {
width: 100vw;
}
.mobile-menu-item {
width: 100vw;
background-color: #fff;
font-family: quasimoda, sans-serif;
color: #333;
font-weight: 300;
}
.div-block-64 {
position: relative;
z-index: 3;
display: block;
font-family: quasimoda, sans-serif;
}
.div-block-64.menu-item-1 {
display: none;
opacity: 0;
}
.div-block-64.but-u-special {
position: fixed;
display: none;
}
.div-block-66 {
display: block;
}
.grid-33 {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-column-gap: 3px;
-ms-grid-columns: 0.5fr 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr 0.5fr;
}
.delete-card-button {
display: inline-block;
padding-top: 3px;
padding-right: 20px;
padding-bottom: 3px;
border-radius: 1vw;
background-color: #757575;
font-family: quasimoda, sans-serif;
font-size: 12px;
font-weight: 300;
}
}
@media screen and (max-width: 767px) {
.login-button {
margin-left: 0px;
padding-left: 10px;
border-radius: 0px;
}
.text-field {
margin-top: 0px;
margin-bottom: 5px;
}
.form-wrapper {
padding-right: 5px;
padding-bottom: 21px;
padding-left: 5px;
}
.heading {
font-size: 18px;
line-height: 26px;
}
.demonstration-grid {
-ms-grid-rows: minmax(auto, 0.33fr) minmax(auto, 0.33fr) minmax(auto, 0.33fr);
grid-template-rows: minmax(auto, 0.33fr) minmax(auto, 0.33fr) minmax(auto, 0.33fr);
}
.about-title {
font-size: 28px;
line-height: 35px;
}
.heading-6 {
padding-right: 20px;
padding-left: 20px;
}
.heading-7 {
padding-right: 20px;
padding-left: 20px;
}
.paragraph-3 {
padding-right: 20px;
padding-left: 20px;
}
.paragraph-4 {
padding-right: 30px;
padding-left: 30px;
}
.grid-2 {
margin-right: 10px;
margin-left: 10px;
-ms-grid-columns: 1fr 0.63fr;
grid-template-columns: 1fr 0.63fr;
}
.homepage-subtitle {
margin-top: 0px;
margin-bottom: 19px;
padding-right: 0px;
padding-left: 0px;
font-size: 13px;
}
.button-5-copy {
padding-bottom: 13px;
}
.image-3 {
margin-right: -24px;
}
.image-4 {
padding-left: 0px;
}
.subpoint-explanation {
margin-right: -15px;
}
.what-s-included-intro-explanation {
font-size: 12px;
}
.container-4 {
margin-top: -21px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
}
.subpoint-wrapper {
display: block;
margin-right: -40px;
padding-right: 0px;
}
.div-block-18 {
margin-left: 20px;
}
.heading-12 {
font-size: 18px;
}
.grid-10 {
margin-right: 126px;
-ms-grid-columns: 1fr 3fr;
grid-template-columns: 1fr 3fr;
}
.grid-11 {
margin-top: 15px;
}
.footer-link-block {
padding-right: 0px;
padding-left: 0px;
}
.footer-link-block.w--current {
padding-right: 0px;
padding-left: 0px;
}
.services-tab {
margin-right: 5px;
margin-left: 5px;
padding: 15px 20px;
}
.services-tab.w--current {
margin-right: 5px;
margin-left: 5px;
padding-right: 20px;
padding-left: 20px;
}
.section-4 {
margin-bottom: 26px;
}
.business-vs-nonprofits {
margin-right: 30px;
margin-left: 30px;
padding: 25px 55px;
}
.business-vs-nonprofits.w--current {
margin-right: 30px;
margin-left: 30px;
padding-right: 55px;
padding-left: 55px;
}
.grid-12 {
margin-top: -25px;
margin-bottom: 20px;
}
.grid-13 {
margin-top: 63px;
grid-row-gap: 0px;
}
.timeline-block {
position: relative;
top: -12px;
margin-top: -10px;
padding-right: 35px;
padding-left: 45px;
}
.text-block-5 {
padding: 15px 10px;
color: #6b6b6b;
}
.timeline-title {
font-size: 18px;
}
.grid-14 {
margin-top: -16px;
margin-bottom: 0px;
margin-left: 86px;
padding-top: 0px;
}
.what-we-do-description {
margin-top: -10px;
padding-right: 25px;
padding-left: 25px;
font-size: 12px;
line-height: 20px;
text-transform: none;
}
.what-we-do-heading {
margin-bottom: 8px;
padding-right: 25px;
padding-left: 25px;
font-size: 25px;
}
.div-block-26 {
margin-top: 10px;
}
.section-6.login-modal {
display: block;
opacity: 1;
}
.sign-in-title {
margin-top: 20px;
margin-bottom: 15px;
}
.login-text-field {
padding-top: 0px;
padding-bottom: 0px;
font-family: quasimoda, sans-serif;
font-size: 10px;
font-weight: 300;
}
.field-label {
margin-bottom: 0px;
font-size: 12px;
}
.button-8 {
left: 90%;
display: block;
}
.grid-16 {
grid-column-gap: 13px;
}
.image-13 {
display: block;
}
.div-block-29 {
margin-top: 4px;
margin-bottom: -47px;
margin-left: 0px;
padding-left: 0px;
}
.div-block-31 {
position: relative;
top: -1px;
margin: 0px -40px 11px;
padding-top: 0px;
}
.image-14 {
top: 52px;
margin-top: 112px;
padding-top: 0px;
}
.div-block-32 {
top: -25px;
margin-top: -2%;
margin-right: -13px;
margin-left: -15px;
padding: 10px 0px 10px 19px;
}
.div-block-33 {
top: -61px;
margin-top: 1px;
}
.div-block-33.small {
top: -106px;
}
.grid-20 {
grid-column-gap: 10px;
-ms-grid-columns: 0.35fr 1fr 1fr 1fr 0.35fr;
grid-template-columns: 0.35fr 1fr 1fr 1fr 0.35fr;
}
.grid-21 {
grid-column-gap: 11px;
-ms-grid-columns: 0.5fr 0.5fr 0.5fr 0.5fr;
grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr;
}
.heading-14 {
margin-bottom: -56px;
}
.grid-22 {
margin-right: 4px;
margin-bottom: -25px;
margin-left: 4px;
}
.text-block-10 {
font-size: 10px;
}
.div-block-47 {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 23px;
padding-left: 0px;
}
.text-block-11 {
font-size: 12px;
}
.container-14 {
padding-right: 20px;
padding-left: 20px;
}
.get-started-modal {
display: none;
opacity: 0;
}
.grid-24 {
grid-row-gap: 107px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.heading-15 {
margin-top: 14px;
margin-bottom: 23px;
padding-right: 70px;
padding-left: 70px;
font-size: 25px;
}
.grid-25 {
left: 0px;
top: 0px;
display: block;
margin-top: -122px;
margin-right: 0px;
margin-left: 0px;
padding-right: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 0.5fr;
grid-template-columns: 0.5fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
text-align: center;
}
.div-block-52 {
display: inline;
}
.text-block-13 {
margin-top: -15px;
padding-right: 100px;
padding-left: 100px;
}
.button-10 {
left: -3px;
top: 14px;
}
.text-block-14 {
font-size: 12px;
}
.text-block-15 {
font-size: 12px;
}
.div-block-57 {
margin-right: 4px;
margin-left: 4px;
}
.r-finder-text-field {
padding-top: 0px;
padding-bottom: 0px;
font-size: 12px;
}
.image-23 {
display: inline;
margin-top: 17px;
margin-right: 8px;
padding-bottom: 0px;
text-align: center;
}
.image-24 {
display: none;
padding-left: 0px;
}
.heading-17 {
margin-top: 0px;
margin-bottom: 7px;
font-size: 22px;
line-height: 29px;
}
.grid-26 {
justify-items: end;
text-align: right;
}
.div-block-73 {
text-align: center;
}
.heading-19 {
padding-right: 140px;
padding-left: 140px;
font-size: 32px;
line-height: 38px;
}
}
@media screen and (max-width: 479px) {
.home-link {
position: static;
margin-top: 4px;
padding-left: 0px;
font-size: 14px;
}
.navigation {
display: block;
}
.form-wrapper {
margin-top: 12px;
margin-right: 0%;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
border-radius: 3px;
}
.heading {
margin-right: -2px;
margin-left: -2px;
color: #6b6b6b;
font-size: 19px;
}
.section-title {
padding-right: 10px;
padding-left: 10px;
font-size: 36px;
}
.section-description {
margin-bottom: 19px;
padding-right: 10px;
font-size: 12px;
line-height: 20px;
text-align: left;
}
.demonstration-grid {
grid-row-gap: 8px;
-ms-grid-rows: minmax(auto, 0.75fr) auto auto;
grid-template-rows: minmax(auto, 0.75fr) auto auto;
}
.customer-container {
padding-bottom: 5px;
}
.about-title {
margin-right: auto;
margin-bottom: 17px;
margin-left: auto;
padding-right: 20px;
padding-left: 20px;
font-size: 25px;
}
.heading-6 {
padding-right: 10px;
padding-left: 10px;
}
.heading-7 {
margin-right: auto;
margin-left: auto;
padding-right: 10px;
padding-left: 10px;
}
.paragraph-3 {
padding-right: 10px;
padding-left: 10px;
}
.paragraph-4 {
margin-right: auto;
margin-left: auto;
padding-right: 10px;
padding-left: 10px;
}
.team-member-role {
font-size: 12px;
}
.image-2 {
display: none;
padding-right: 0px;
padding-left: 46px;
}
.grid-2 {
margin-top: 28px;
margin-right: 4px;
margin-bottom: -85px;
padding-right: 0px;
padding-left: 63px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.homepage-subtitle {
margin-right: -5px;
margin-bottom: 24px;
margin-left: -5px;
padding-right: 25px;
padding-left: 25px;
color: #707070;
}
.image-3 {
position: relative;
left: 14%;
top: 95%;
right: auto;
bottom: auto;
display: block;
width: 75px;
margin-right: 0px;
padding-right: 0px;
padding-left: 0px;
text-align: right;
}
.image-4 {
position: static;
left: 26%;
top: 94%;
right: 0%;
bottom: 0%;
display: block;
min-width: 65%;
margin-left: 9px;
padding-right: 0px;
padding-left: 0px;
}
.three-steps {
font-size: 22px;
}
.div-block-6 {
padding-right: 0px;
}
.container-3 {
padding-right: 5px;
padding-left: 5px;
}
.ad-management-grid.feature-grid-template {
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: 124px auto;
grid-template-rows: 124px auto;
}
.grid-9 {
margin-top: 18px;
margin-right: 20px;
margin-left: 20px;
}
.subpoint-explanation {
font-size: 11px;
line-height: 10px;
}
.what-s-included-heading {
margin-top: 5px;
font-size: 20px;
}
.what-s-included-intro-explanation {
padding-right: 15px;
padding-left: 15px;
font-size: 11px;
}
.container-4 {
margin-top: -56px;
}
.subpoint-wrapper {
margin-top: -6px;
margin-bottom: 0px;
padding-left: 10px;
font-size: 14px;
}
.image-11 {
padding-top: 30px;
padding-right: 40px;
padding-left: 40px;
}
.div-block-17 {
margin-top: 0px;
}
.div-block-18 {
margin-top: -13px;
margin-left: 0px;
}
.heading-12 {
margin-right: -30px;
margin-left: -30px;
font-size: 15px;
text-align: center;
}
.services-image {
margin-top: 28px;
margin-bottom: 0px;
padding-top: 80px;
padding-right: 67px;
padding-left: 54px;
}
.services-image.mgmt {
margin-top: 1px;
padding-top: 160px;
padding-right: 50px;
padding-left: 50px;
}
.services-image.dsh {
max-width: 300px;
margin-top: -93px;
padding-top: 0px;
padding-right: 65px;
padding-left: 50px;
}
.services-image.act {
max-width: 300px;
margin-top: -89px;
padding-top: 0px;
padding-right: 85px;
}
.div-block-20 {
margin-top: 24px;
padding-right: 20px;
padding-left: 20px;
}
.grid-10 {
margin-right: 10px;
margin-left: 10px;
}
.image-12 {
margin-top: 3px;
padding-right: 9px;
padding-left: 6px;
}
.footer-link-text {
margin-right: -9px;
margin-left: -8px;
font-size: 12px;
}
.grid-11 {
margin-top: 3px;
}
.services-tab {
margin-right: 2px;
margin-left: 2px;
padding: 10px 7px;
}
.services-tab.w--current {
margin-right: 2px;
margin-left: 2px;
padding: 10px 7px;
}
.business-vs-nonprofits {
display: inline-block;
margin-right: 3px;
margin-left: 5px;
padding: 15px 30px;
}
.business-vs-nonprofits.w--current {
margin-right: 5px;
margin-left: 3px;
padding-right: 30px;
padding-left: 30px;
}
.tabs-menu-2 {
margin-bottom: 47px;
}
.grid-12 {
margin-top: -13px;
grid-row-gap: 0px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: 134px auto;
grid-template-rows: 134px auto;
}
.grid-13 {
margin-top: 53px;
justify-items: start;
}
.timeline-block {
display: block;
margin-right: 15px;
padding-right: 19px;
padding-bottom: 0px;
padding-left: 5px;
}
.text-block-5 {
padding-right: 2px;
}
.text-block-5.text-block-small {
display: inline-block;
padding-bottom: 0px;
}
.text-block-5.invisible-text-block {
display: inline;
color: #fff;
}
.timeline-title {
font-size: 16px;
}
.grid-14 {
margin-left: 18px;
}
.what-we-do-description {
margin-top: 0px;
text-align: center;
}
.what-we-do-heading {
margin-top: 10px;
padding-right: 40px;
padding-left: 40px;
font-size: 20px;
text-align: center;
}
.grid-15 {
display: block;
margin-left: -8px;
padding-right: 0px;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
grid-column-gap: 0px;
-ms-grid-columns: 5fr;
grid-template-columns: 5fr;
}
.container-7 {
margin-top: 25px;
}
.div-block-26 {
position: relative;
left: -2%;
z-index: 1;
padding: 9px;
}
.section-6.login-modal {
display: block;
opacity: 1;
}
.sign-in-title {
font-size: 22px;
}
.button-8 {
left: 94%;
top: 17%;
z-index: 3;
margin-top: -29px;
margin-left: -56px;
}
.grid-16 {
padding-right: 0px;
padding-left: 0px;
-ms-grid-columns: 1.5fr;
grid-template-columns: 1.5fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.div-block-29 {
margin-top: 9px;
}
.company-logo {
margin-right: 15px;
margin-left: 15px;
}
.div-block-30 {
margin-left: -8px;
padding-right: 0px;
padding-left: 0px;
}
.div-block-31 {
left: 6px;
margin-top: 15px;
margin-left: -53px;
}
.image-14 {
left: 9px;
margin-top: 106px;
margin-left: 5px;
padding-right: 10px;
padding-left: 0px;
}
.div-block-32 {
left: 4px;
margin-top: 12%;
margin-right: -28px;
margin-left: -9px;
padding-right: 14px;
}
.div-block-33 {
padding-right: 89px;
padding-left: 77px;
}
.div-block-33.small {
padding-left: 70px;
}
.container-8 {
padding-bottom: 0px;
}
.div-block-38 {
margin-top: -54px;
}
.image-17 {
margin-top: -17px;
padding-right: 43px;
padding-left: 43px;
}
.container-12 {
margin-top: 6px;
}
.grid-18 {
margin-right: 20px;
margin-left: 20px;
padding-right: 40px;
padding-left: 40px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.education-description {
padding-left: 0px;
font-size: 11px;
}
.action-button.get-started {
margin-bottom: 0px;
}
.grid-20 {
padding-right: 40px;
padding-left: 40px;
-ms-grid-columns: 1fr;
grid-template-columns: 1fr;
-ms-grid-rows: auto auto auto;
grid-template-rows: auto auto auto;
}
.grid-21 {
padding-right: 40px;
padding-left: 40px;
grid-column-gap: 16px;
-ms-grid-columns: 1.08fr;
grid-template-columns: 1.08fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.heading-14 {
margin-bottom: -99px;
font-size: 22px;
}
.grid-22 {
margin-bottom: 9px;
grid-column-gap: 2px;
-ms-grid-columns: 0.55fr 0.5fr;
grid-template-columns: 0.55fr 0.5fr;
}
.money-icon {
margin-top: -13px;
font-size: 22px;
}
.three-steps-right {
font-size: 22px;
}
.section-description-right {
padding-right: 12px;
font-size: 12px;
line-height: 22px;
}
.section-description-left {
padding-left: 9px;
font-size: 12px;
line-height: 22px;
}
.image-18 {
left: -19px;
top: 121px;
padding: 5px;
}
.image-20 {
left: 17px;
top: -19px;
display: inline;
}
.text-block-10 {
font-size: 8px;
}
.div-block-47 {
margin-left: 0px;
}
.link-block-5 {
position: static;
padding-top: 13px;
}
.icon {
position: static;
margin-top: -4px;
}
.grid-23 {
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
-ms-grid-columns: 1.5fr 0.75fr;
grid-template-columns: 1.5fr 0.75fr;
}
.text-block-11 {
font-size: 8px;
}
.container-14 {
padding-right: 10px;
padding-left: 10px;
}
.get-started-modal {
display: none;
opacity: 0;
}
.grid-24 {
margin-left: -16px;
}
.container-15 {
margin-top: 0px;
}
.heading-15 {
margin-top: 28px;
margin-bottom: 18px;
padding-right: 30px;
padding-left: 30px;
font-size: 18px;
line-height: 28px;
}
.div-block-51 {
left: 1px;
}
.grid-25 {
left: 22px;
top: 131px;
margin-top: -244px;
margin-right: 0px;
margin-left: -43px;
-ms-grid-columns: 0.25fr 0.5fr;
grid-template-columns: 0.25fr 0.5fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
}
.text-block-13 {
margin-top: -11px;
margin-right: 0px;
padding-right: 30px;
padding-left: 30px;
font-size: 12px;
line-height: 17px;
}
.button-10 {
left: -2px;
top: 16px;
}
.text-block-14 {
font-size: 8px;
}
.text-block-15 {
font-size: 8px;
}
.image-21 {
padding-right: 50px;
padding-left: 50px;
}
.div-block-53 {
padding-left: 0px;
}
.text-block-16 {
font-size: 12px;
}
.div-block-54 {
display: none;
}
.div-block-55 {
display: none;
}
.div-block-56 {
display: none;
}
.div-block-57 {
display: none;
}
.image-22 {
display: none;
}
.r-finder-field {
margin-bottom: 0px;
font-size: 13px;
}
.image-23 {
max-width: none;
margin-top: 7px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
.div-block-58 {
width: 100%;
}
.heading-17 {
font-size: 20px;
line-height: 30px;
}
.mobile-menu-item.menu-item-2 {
display: block;
opacity: 0;
}
.div-block-64 {
position: relative;
display: block;
opacity: 0;
}
.div-block-64.menu-item-1 {
position: static;
display: none;
}
.div-block-64.but-u-special {
position: fixed;
}
.div-block-65 {
position: fixed;
}
.div-block-67 {
display: none;
}
.div-block-68 {
display: none;
}
.div-block-69 {
display: none;
}
.div-block-70 {
display: none;
}
.image-25 {
padding-bottom: 10px;
}
.image-26 {
position: relative;
top: 53px;
display: inline-block;
}
.div-block-71 {
display: inline;
}
.div-block-72 {
left: 18px;
margin-top: 0px;
}
.section-10 {
margin-bottom: 26px;
}
.grid-26 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100px;
margin-right: 0px;
margin-left: 9px;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
-ms-grid-columns: 0.75fr minmax(38px, 0.25fr);
grid-template-columns: 0.75fr minmax(38px, 0.25fr);
}
.heading-19 {
margin-top: 25px;
padding-right: 40px;
padding-left: 40px;
font-size: 26px;
line-height: 31px;
}
.div-block-85 {
display: block;
margin-right: 0%;
margin-left: 0px;
}
}
#w-node-2e0717dbafe4-7d9abb31 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-a6923b84582d-7d9abb31 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-03fde21f3f12-7d9abb31 {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-01337bff7fb0-7d9abb31 {
-webkit-align-self: end;
-ms-flex-item-align: end;
-ms-grid-row-align: end;
align-self: end;
}
#w-node-32b7f34e434b-7d9abb31 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-3df8a231ffeb-7d9abb31 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-492f2f330756-1dd0385d {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-492f2f330757-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-54a812aa2ba3-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-54a812aa2ba4-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-6ac7b108014d-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-6ac7b108014e-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-ef581dd0386b-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-ef581dd0386c-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-c2da78f33564-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-c2da78f33565-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-ef581dd03870-1dd0385d {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-d46a3582140c-1dd0385d {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-5a7a742fcfb3-5b9abb32 {
-ms-grid-column-align: end;
justify-self: end;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-6f7e9e17d8c6-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-914bff0f3fdf-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-dc9a9351f3a2-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-4a061b0c3bb3-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-cf6447f1277a-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-c355c84eddd2-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-f0260de9bfb5-5b9abb32 {
-ms-grid-row-align: center;
align-self: center;
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-b8322d8b8f20-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-023388c7a083-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-4b4b6953f679-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-f25215a864ea-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-f34d38b77d50-5b9abb32 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-520b1d3695b5-5b9abb32 {
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-d5fb0ef6a1b3-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-e8a916c1598f-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-061cc04bd378-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-715b2cc0eb14-5b9abb32 {
-ms-grid-row: span 1;
grid-row-start: span 1;
-ms-grid-row-span: 1;
grid-row-end: span 1;
-ms-grid-column: span 1;
grid-column-start: span 1;
-ms-grid-column-span: 1;
grid-column-end: span 1;
}
#w-node-715b2cc0eb1d-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-715b2cc0eb21-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-715b2cc0eb25-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-3f7638a3041d-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-3f7638a30421-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-3f7638a30425-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-dd7c40e48b4e-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-dd7c40e48b52-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-dd7c40e48b56-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-2942de21e5a1-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-2942de21e5a5-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-2942de21e5a9-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-b8b8b99f504c-5b9abb32 {
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-d18eb4ee1084-5b9abb32 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-edbf39d629a9-5b9abb32 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-c4dae169a65c-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-8c4724db7fae-b89abb33 {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-d0b3a7d803a6-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-5f05a7423417-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-574093b527df-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-574093b527e4-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-55b6274f86eb-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-70e7a1c10cbe-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-70e7a1c10cc3-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-4f7d76c17951-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-4f7d76c17956-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-4f7d76c1796a-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-4f7d76c1796f-b89abb33 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-887967b056b8-67b056ad {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-887967b056bc-67b056ad {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-887967b056df-67b056ad {
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-887967b056e0-67b056ad {
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-887967b056e7-67b056ad {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-c384b1131033-42d9bc04 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-175a25825b15-42d9bc04 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-0c6542d9bc3f-42d9bc04 {
-webkit-align-self: end;
-ms-flex-item-align: end;
-ms-grid-row-align: end;
align-self: end;
}
#w-node-0c6542d9bc41-42d9bc04 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-0c6542d9bc47-42d9bc04 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-0c6542d9bc4d-42d9bc04 {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-0c6542d9bc56-42d9bc04 {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-a353f437a7e4-cc9abb3a {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-c4dae169a65c-cc9abb3a {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}
#w-node-1264eec4ac16-cc9abb3a {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-e68110bbc741-cc9abb3a {
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-5a4f843be988-cc9abb3a {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
-ms-grid-column-align: center;
justify-self: center;
}
#w-node-5a4f843be995-cc9abb3a {
-ms-grid-column-align: end;
justify-self: end;
}
@media screen and (max-width: 991px) {
#w-node-887967b056df-67b056ad {
-ms-grid-column-align: end;
justify-self: end;
}
#w-node-887967b056e0-67b056ad {
-ms-grid-column-align: start;
justify-self: start;
}
#w-node-887967b056e7-67b056ad {
-ms-grid-column-align: start;
justify-self: start;
}
} | 0.346541 | 0.107672 |
label{
font-weight: normal;
}
form .box-body{
/* padding: 15px 20px; */
}
.box-header {
/* padding: 10px 20px; */
}
.box-footer {
/* padding: 10px 20px; */
}
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus{
outline: 0;
}
form .btn{
/*min-width: 150px;*/
border-radius: 1px;
}
form#message-form .btn{
min-width: auto;
}
form .btn-xs{
min-width: auto;
}
.table-actions .btn-social-icon {
height: 25px;
width: 25px;
}
.table-actions .btn-social-icon > :first-child {
line-height: 23px;
font-size: 15px;
color: #000;
}
.table-actions form, .delete-form{
display: inline;
}
.jconfirm-box-container .content-pane{
/*height: 20px !important;*/
}
.label{
font-weight: normal;
font-size: 95%;
border-radius: 1px;
}
textarea{
resize: none;
}
.alert{
border-radius: 1px;
}
.mailbox-messages table tr td {
/*padding: 5px 10px !important;*/
}
.message-destroy-form .btn{
min-width: auto;
}
.side-news .products-list .product-info{
margin-left: 2px;
}
.masonry .row {
-moz-column-width: 18em;
-webkit-column-width: 18em;
-moz-column-gap: 7px;
-webkit-column-gap:7px;
}
.masonry .item {
display: inline-block;
padding: .25rem;
width: 100%;
}
.masonry .well {
position:relative;
display: block;
min-height: 20px;
margin-bottom: 7px;
padding: 0;
border: 0;
}
.masonry .well img{
width: 100%;
}
.masonry .img-path{
word-break: break-all;
background: #ECF0F5;
padding: 3px 8px;
}
.box-footer .overlay{
border-radius: 3px;
position: absolute;
top: 0;
background: rgba(255, 255, 255, 0.7);
width: 100%;
height: 100%;
right: 0;
}
.message {
background-color: #EDFBF8 ;
}
div.mce-fullscreen {
z-index: 9999;
}
.callout span{
position: relative;
left: 10px;
}
.text-justify{
text-align: justify;
}
.float-img{
margin-left: 5px;
}
.article-author{
font-size: 14px;
margin-top: 5px;
color: #999;
}
label::first-letter{
text-transform: uppercase;
}
.timer-holder{
width: 100px;
padding: 5px 12px;
border-radius: 2px;
margin: auto;
font-size: 18px;
position: fixed;
right: 0;
top: 45%;
}
.timer-holder i.fa{
position: absolute;
right: 8px;
top: 3px;
font-size: 28px;
color: rgba(35, 23, 23, 0.29);
}
.slimScrollDiv ul.menu, .slimScrollDiv{
height: auto !important;
}
.profile-pic-upload{
position: relative;
}
.profile-pic-upload #profile-input{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
cursor: pointer;
}
.profile-pic-upload #profile-input:hover{
cursor: pointer;
}
#profile-photo #preview img{
max-width: 100%;
}
#preview-image-container{
}
#preview-image-container img{
}
.coheart-logo{
text-align: center;
}
.coheart-logo img{
display: inline-block;
}
.delete-news-image{
position: absolute;
top: -10px;
right: -10px;
padding: 3px 8px;
background-color: rgba(58, 27, 38, 0.59) !important;
}
/*select box in attendance */
.switch {
position: relative;
display: block;
vertical-align: top;
width: 100px;
height: 30px;
padding: 3px;
margin:0;
background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
border-radius: 18px;
box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
cursor: pointer;
}
.switch-input {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.switch-label {
position: relative;
display: block;
height: inherit;
font-size: 10px;
text-transform: uppercase;
background: #eceeef;
border-radius: inherit;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before, .switch-label:after {
position: absolute;
top: 50%;
margin-top: -.5em;
line-height: 1;
-webkit-transition: inherit;
-moz-transition: inherit;
-o-transition: inherit;
transition: inherit;
}
.switch-label:before {
content: attr(data-on);
left: 11px;
color: #228B22;
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
}
.switch-label:after {
content: attr(data-off);
right: 11px;
color: #FF0000;
text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-input:checked ~ .switch-label {
background: #E1B42B;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
opacity: 1;
}
.switch-handle {
position: absolute;
top: 4px;
left: 4px;
width: 28px;
height: 28px;
background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
border-radius: 100%;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
margin: -6px 0 0 -6px;
width: 12px;
height: 12px;
background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
border-radius: 6px;
box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
left: 74px;
box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
/* Switch Slide
==========================*/
.switch-slide {
padding: 0;
background: #FFF;
border-radius: 0;
background-image: none;
}
.switch-slide .switch-label {
box-shadow: none;
background: none;
overflow: hidden;
}
.switch-slide .switch-label:after, .switch-slide .switch-label:before {
width: 100%;
height: 100px;
top: 5px;
left: 0;
text-align: center;
padding-top: 10%;
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2), inset 0 0 3px rgba(0, 0, 0, 0.1);
}
.switch-slide .switch-label:after {
color: #0000;
background: #B0E0E6 ;
left: -100px;
}
.switch-slide .switch-label:before {
background: #B0E0E6;
}
.switch-slide .switch-handle {
display: none;
}
.switch-slide .switch-input:checked ~ .switch-label {
background: #FFF;
border-color: #0088cc;
}
.switch-slide .switch-input:checked ~ .switch-label:before {
left: 100px;
}
.switch-slide .switch-input:checked ~ .switch-label:after {
left: 0;
}
/* Transition
============================================================ */
.switch-label, .switch-handle {
transition: All 0.3s ease;
-webkit-transition: All 0.3s ease;
-moz-transition: All 0.3s ease;
-o-transition: All 0.3s ease;
}
.attendance-button{
float:right;
} | public/dist/css/custom.css | label{
font-weight: normal;
}
form .box-body{
/* padding: 15px 20px; */
}
.box-header {
/* padding: 10px 20px; */
}
.box-footer {
/* padding: 10px 20px; */
}
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus{
outline: 0;
}
form .btn{
/*min-width: 150px;*/
border-radius: 1px;
}
form#message-form .btn{
min-width: auto;
}
form .btn-xs{
min-width: auto;
}
.table-actions .btn-social-icon {
height: 25px;
width: 25px;
}
.table-actions .btn-social-icon > :first-child {
line-height: 23px;
font-size: 15px;
color: #000;
}
.table-actions form, .delete-form{
display: inline;
}
.jconfirm-box-container .content-pane{
/*height: 20px !important;*/
}
.label{
font-weight: normal;
font-size: 95%;
border-radius: 1px;
}
textarea{
resize: none;
}
.alert{
border-radius: 1px;
}
.mailbox-messages table tr td {
/*padding: 5px 10px !important;*/
}
.message-destroy-form .btn{
min-width: auto;
}
.side-news .products-list .product-info{
margin-left: 2px;
}
.masonry .row {
-moz-column-width: 18em;
-webkit-column-width: 18em;
-moz-column-gap: 7px;
-webkit-column-gap:7px;
}
.masonry .item {
display: inline-block;
padding: .25rem;
width: 100%;
}
.masonry .well {
position:relative;
display: block;
min-height: 20px;
margin-bottom: 7px;
padding: 0;
border: 0;
}
.masonry .well img{
width: 100%;
}
.masonry .img-path{
word-break: break-all;
background: #ECF0F5;
padding: 3px 8px;
}
.box-footer .overlay{
border-radius: 3px;
position: absolute;
top: 0;
background: rgba(255, 255, 255, 0.7);
width: 100%;
height: 100%;
right: 0;
}
.message {
background-color: #EDFBF8 ;
}
div.mce-fullscreen {
z-index: 9999;
}
.callout span{
position: relative;
left: 10px;
}
.text-justify{
text-align: justify;
}
.float-img{
margin-left: 5px;
}
.article-author{
font-size: 14px;
margin-top: 5px;
color: #999;
}
label::first-letter{
text-transform: uppercase;
}
.timer-holder{
width: 100px;
padding: 5px 12px;
border-radius: 2px;
margin: auto;
font-size: 18px;
position: fixed;
right: 0;
top: 45%;
}
.timer-holder i.fa{
position: absolute;
right: 8px;
top: 3px;
font-size: 28px;
color: rgba(35, 23, 23, 0.29);
}
.slimScrollDiv ul.menu, .slimScrollDiv{
height: auto !important;
}
.profile-pic-upload{
position: relative;
}
.profile-pic-upload #profile-input{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
cursor: pointer;
}
.profile-pic-upload #profile-input:hover{
cursor: pointer;
}
#profile-photo #preview img{
max-width: 100%;
}
#preview-image-container{
}
#preview-image-container img{
}
.coheart-logo{
text-align: center;
}
.coheart-logo img{
display: inline-block;
}
.delete-news-image{
position: absolute;
top: -10px;
right: -10px;
padding: 3px 8px;
background-color: rgba(58, 27, 38, 0.59) !important;
}
/*select box in attendance */
.switch {
position: relative;
display: block;
vertical-align: top;
width: 100px;
height: 30px;
padding: 3px;
margin:0;
background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
border-radius: 18px;
box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
cursor: pointer;
}
.switch-input {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.switch-label {
position: relative;
display: block;
height: inherit;
font-size: 10px;
text-transform: uppercase;
background: #eceeef;
border-radius: inherit;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before, .switch-label:after {
position: absolute;
top: 50%;
margin-top: -.5em;
line-height: 1;
-webkit-transition: inherit;
-moz-transition: inherit;
-o-transition: inherit;
transition: inherit;
}
.switch-label:before {
content: attr(data-on);
left: 11px;
color: #228B22;
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
}
.switch-label:after {
content: attr(data-off);
right: 11px;
color: #FF0000;
text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-input:checked ~ .switch-label {
background: #E1B42B;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
opacity: 1;
}
.switch-handle {
position: absolute;
top: 4px;
left: 4px;
width: 28px;
height: 28px;
background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
border-radius: 100%;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
margin: -6px 0 0 -6px;
width: 12px;
height: 12px;
background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
border-radius: 6px;
box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
left: 74px;
box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
/* Switch Slide
==========================*/
.switch-slide {
padding: 0;
background: #FFF;
border-radius: 0;
background-image: none;
}
.switch-slide .switch-label {
box-shadow: none;
background: none;
overflow: hidden;
}
.switch-slide .switch-label:after, .switch-slide .switch-label:before {
width: 100%;
height: 100px;
top: 5px;
left: 0;
text-align: center;
padding-top: 10%;
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2), inset 0 0 3px rgba(0, 0, 0, 0.1);
}
.switch-slide .switch-label:after {
color: #0000;
background: #B0E0E6 ;
left: -100px;
}
.switch-slide .switch-label:before {
background: #B0E0E6;
}
.switch-slide .switch-handle {
display: none;
}
.switch-slide .switch-input:checked ~ .switch-label {
background: #FFF;
border-color: #0088cc;
}
.switch-slide .switch-input:checked ~ .switch-label:before {
left: 100px;
}
.switch-slide .switch-input:checked ~ .switch-label:after {
left: 0;
}
/* Transition
============================================================ */
.switch-label, .switch-handle {
transition: All 0.3s ease;
-webkit-transition: All 0.3s ease;
-moz-transition: All 0.3s ease;
-o-transition: All 0.3s ease;
}
.attendance-button{
float:right;
} | 0.271445 | 0.061452 |
.range-slider {
*zoom: 1;
margin: 0px 0px;
padding-top: 2.5em;
position: relative;
text-align: center;
direction: ltr;
}
.range-slider_sidebar{
margin: 0px 0px;
padding-top: 5px !important;
position: relative;
text-align: center;
direction: ltr;
padding-bottom: 15px;
}
.range-slider:before, .range-slider:after {
content: " ";
display: table;
}
.range-slider:after {
clear: both;
}
@media (min-width: 640px) {
.range-slider {
}
}
@media (min-width: 1024px) {
.range-slider {
padding-top: 1.3em;
}
}
.range-slider .track {
bottom: 15px;
height: 6px;
right: 0px;
margin-bottom: 0px;
position: absolute;
width: 0;
z-index: 50;
/* left: 0; */
}
@media (min-width: 640px) {
.range-slider_sidebar .track {
bottom: 30px;
}
.range-slider .track {
bottom: 36px !important;
}
}
@media (min-width: 1024px) {
.range-slider_sidebar .track {
bottom: 30px !important;
}
.range-slider .track {
bottom: 36px;
}
}
.range-slider .track--full {
background: #ffffff66;
width: 100%;
border-radius: 10px;
height: 5px;
border: 1px solid transparent;
}
.range-slider_sidebar .track--full {
background: #ccc;
width: 100%;
border-radius: 10px;
height: 5px;
border: 1px solid #fff;
}
.range-slider .track--included {
background: #E54D42e0;
border-radius: 10px;
height: 5px;
}
.range-slider_sidebar .track--included {
background: #E54D42b0;
border-radius: 10px;
height: 5px;
}
.range-slider .slider-thumb {
background: #FBB040;
border-radius: 50%;
cursor: pointer;
display: none;
display: block/9;
height: 15px;
left: 0;
position: absolute;
width: 15px;
z-index: 101;
top:1px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.range-slider .slider-thumb {
display: block;
}
}
.range-slider [type=range] {
-webkit-appearance: none;
background: none;
height: 30px;
margin: 0;
outline: none;
padding: 0;
pointer-events: none;
position: relative;
width: 100%;
z-index: 75;
bottom: 18px;
}
.range-slider_sidebar [type=range] {
-webkit-appearance: none;
background: none;
height: 30px;
margin: 0;
outline: none;
padding: 0;
pointer-events: none;
position: relative;
width: 100%;
z-index: 75;
bottom: 3px;
}
@media (min-width: 640px) {
.range-slider [type=range] {
height: 30px;
}
}
@media (min-width: 1024px) {
.range-slider [type=range] {
height: 25px;
}
}
.range-slider [type=range]:focus {
outline: none;
}
.range-slider [type=range]::-moz-focus-outer {
border: 0;
}
.range-slider [type=range]:first-of-type {
float: left;
margin-bottom: -30px;
}
@media (min-width: 640px) {
.range-slider [type=range]:first-of-type {
margin-bottom: -30px;
}
}
@media (min-width: 1024px) {
.range-slider [type=range]:first-of-type {
margin-bottom: -30px;
}
}
.range-slider [type=range]:last-of-type {
float: right;
margin-bottom: 0;
}
.range-slider [type=range]::-webkit-slider-runnable-track {
background: none;
border: 0;
height: 6px;
z-index: -1;
}
.range-slider [type=range]::-ms-fill-lower {
background: none;
border: 0;
}
.range-slider [type=range]::-ms-fill-upper {
background: none;
border: 0;
}
.range-slider [type=range]::-ms-track {
background: transparent;
border: 0;
border-color: transparent;
color: transparent;
height: 6px;
z-index: -1;
}
.range-slider [type=range]:focus::-ms-fill-lower {
background: none;
border: 0;
}
.range-slider [type=range]:focus::-ms-fill-upper {
background: none;
border: 0;
}
.range-slider [type=range]::-moz-range-track {
-moz-appearance: none;
background: none;
border: 0;
height: 6px;
z-index: -1;
}
.range-slider [type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
background: #fff;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: -10px;
outline: 0;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider_sidebar [type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
background: #FBB040;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: -10px;
outline: 0;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider [type=range]::-ms-thumb {
background: #fff;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 10px;
margin-top: 0;
pointer-events: all;
position: relative;
width: 10px;
z-index: 100;
}
.range-slider_sidebar [type=range]::-ms-thumb {
background: #fff;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: 0;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider_sidebar [type=range]::-ms-thumb {
background: #FBB040;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: 0;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider [type=range]::-moz-range-thumb {
-moz-appearance: none;
background: #FBB040;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: -10px;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider_sidebar [type=range]::-moz-range-thumb {
-moz-appearance: none;
background: #fff;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: -10px;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider .output,
.range-slider output {
border: 1px solid transparent;
border-radius: 5px;
color: #ffffff;
display: inline-block;
height: 0.6em;
left: 50%;
line-height: 1.6em;
padding: 0;
position: absolute;
text-align: center;
top: 21px;
transform: translate(-50%, 0);
font-size: 13px;
}
.range-slider_sidebar .output,
.range-slider_sidebar output {
border: 1px solid transparent;
border-radius: 5px;
color: #968e96;
display: inline-block;
height: 0.6em;
left: 50%;
padding: 0;
position: absolute;
text-align: center;
top: 20px;
transform: translate(-50%, 0);
font-size: 13px;
} | assets/vendor/range-slider/range-slider.css | .range-slider {
*zoom: 1;
margin: 0px 0px;
padding-top: 2.5em;
position: relative;
text-align: center;
direction: ltr;
}
.range-slider_sidebar{
margin: 0px 0px;
padding-top: 5px !important;
position: relative;
text-align: center;
direction: ltr;
padding-bottom: 15px;
}
.range-slider:before, .range-slider:after {
content: " ";
display: table;
}
.range-slider:after {
clear: both;
}
@media (min-width: 640px) {
.range-slider {
}
}
@media (min-width: 1024px) {
.range-slider {
padding-top: 1.3em;
}
}
.range-slider .track {
bottom: 15px;
height: 6px;
right: 0px;
margin-bottom: 0px;
position: absolute;
width: 0;
z-index: 50;
/* left: 0; */
}
@media (min-width: 640px) {
.range-slider_sidebar .track {
bottom: 30px;
}
.range-slider .track {
bottom: 36px !important;
}
}
@media (min-width: 1024px) {
.range-slider_sidebar .track {
bottom: 30px !important;
}
.range-slider .track {
bottom: 36px;
}
}
.range-slider .track--full {
background: #ffffff66;
width: 100%;
border-radius: 10px;
height: 5px;
border: 1px solid transparent;
}
.range-slider_sidebar .track--full {
background: #ccc;
width: 100%;
border-radius: 10px;
height: 5px;
border: 1px solid #fff;
}
.range-slider .track--included {
background: #E54D42e0;
border-radius: 10px;
height: 5px;
}
.range-slider_sidebar .track--included {
background: #E54D42b0;
border-radius: 10px;
height: 5px;
}
.range-slider .slider-thumb {
background: #FBB040;
border-radius: 50%;
cursor: pointer;
display: none;
display: block/9;
height: 15px;
left: 0;
position: absolute;
width: 15px;
z-index: 101;
top:1px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.range-slider .slider-thumb {
display: block;
}
}
.range-slider [type=range] {
-webkit-appearance: none;
background: none;
height: 30px;
margin: 0;
outline: none;
padding: 0;
pointer-events: none;
position: relative;
width: 100%;
z-index: 75;
bottom: 18px;
}
.range-slider_sidebar [type=range] {
-webkit-appearance: none;
background: none;
height: 30px;
margin: 0;
outline: none;
padding: 0;
pointer-events: none;
position: relative;
width: 100%;
z-index: 75;
bottom: 3px;
}
@media (min-width: 640px) {
.range-slider [type=range] {
height: 30px;
}
}
@media (min-width: 1024px) {
.range-slider [type=range] {
height: 25px;
}
}
.range-slider [type=range]:focus {
outline: none;
}
.range-slider [type=range]::-moz-focus-outer {
border: 0;
}
.range-slider [type=range]:first-of-type {
float: left;
margin-bottom: -30px;
}
@media (min-width: 640px) {
.range-slider [type=range]:first-of-type {
margin-bottom: -30px;
}
}
@media (min-width: 1024px) {
.range-slider [type=range]:first-of-type {
margin-bottom: -30px;
}
}
.range-slider [type=range]:last-of-type {
float: right;
margin-bottom: 0;
}
.range-slider [type=range]::-webkit-slider-runnable-track {
background: none;
border: 0;
height: 6px;
z-index: -1;
}
.range-slider [type=range]::-ms-fill-lower {
background: none;
border: 0;
}
.range-slider [type=range]::-ms-fill-upper {
background: none;
border: 0;
}
.range-slider [type=range]::-ms-track {
background: transparent;
border: 0;
border-color: transparent;
color: transparent;
height: 6px;
z-index: -1;
}
.range-slider [type=range]:focus::-ms-fill-lower {
background: none;
border: 0;
}
.range-slider [type=range]:focus::-ms-fill-upper {
background: none;
border: 0;
}
.range-slider [type=range]::-moz-range-track {
-moz-appearance: none;
background: none;
border: 0;
height: 6px;
z-index: -1;
}
.range-slider [type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
background: #fff;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: -10px;
outline: 0;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider_sidebar [type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
background: #FBB040;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: -10px;
outline: 0;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider [type=range]::-ms-thumb {
background: #fff;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 10px;
margin-top: 0;
pointer-events: all;
position: relative;
width: 10px;
z-index: 100;
}
.range-slider_sidebar [type=range]::-ms-thumb {
background: #fff;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: 0;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider_sidebar [type=range]::-ms-thumb {
background: #FBB040;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: 0;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider [type=range]::-moz-range-thumb {
-moz-appearance: none;
background: #FBB040;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: -10px;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider_sidebar [type=range]::-moz-range-thumb {
-moz-appearance: none;
background: #fff;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 15px;
margin-top: -10px;
pointer-events: all;
position: relative;
width: 15px;
z-index: 100;
}
.range-slider .output,
.range-slider output {
border: 1px solid transparent;
border-radius: 5px;
color: #ffffff;
display: inline-block;
height: 0.6em;
left: 50%;
line-height: 1.6em;
padding: 0;
position: absolute;
text-align: center;
top: 21px;
transform: translate(-50%, 0);
font-size: 13px;
}
.range-slider_sidebar .output,
.range-slider_sidebar output {
border: 1px solid transparent;
border-radius: 5px;
color: #968e96;
display: inline-block;
height: 0.6em;
left: 50%;
padding: 0;
position: absolute;
text-align: center;
top: 20px;
transform: translate(-50%, 0);
font-size: 13px;
} | 0.380874 | 0.121947 |
/* Control section headers */
.fl-uiOptions h2 {
font-size: 1.29em;
font-weight: bold;
clear: both;
color: #444444;
padding: 14px 0px 5px 25px;
}
/* Save, reset, cancel buttons */
.fl-uiOptions .fl-uiOptions-buttons {
margin-top: 1em;
float: left;
width: 100%;
}
.fl-uiOptions .fl-uiOptions-buttons input {
text-transform: uppercase;
text-decoration: underline;
font-weight: bold;
border: 2px solid #cecece;
font-size: 1em;
padding: 5px;
height: 2.5em;
margin-right: 3px;
background-color: #F0F0F0;
}
.fl-uiOptions .fl-uiOptions-buttons .fl-uiOptions-save {
padding-left: 20px;
/* background: -moz-linear-gradient(bottom, #e0e0e0, #fff;) */
background-image: url("../images/default/uio_icon_save_default_13x13.png");
background-repeat: no-repeat;
background-position: 2% 50%;
}
.fl-uiOptions .fl-uiOptions-buttons .fl-uiOptions-cancel {
padding-left: 20px;
background-image: url("../images/default/uio_icon_cancel_default_13x13.png");
background-repeat: no-repeat;
background-position: 2% 50%;
}
/* Section header icons */
.fl-uiOptions h2 img {
margin-bottom: -3px;
padding-right: 5px;
}
.fl-uiOptions h2.fl-uiOptions-text-icon {
background-image: url("../images/default/uio_icon_textanddisplay_default_18x18.png");
background-repeat: no-repeat;
background-position: 0px 55%;
}
.fl-uiOptions h2.fl-uiOptions-layout-icon {
background-image: url("../images/default/uio_icon_layoutandnavigation_default_18x18.png");
background-repeat: no-repeat;
background-position: 0px 55%;
}
.fl-uiOptions h2.fl-uiOptions-links-icon {
background-image: url("../images/default/uio_icon_linksandbuttons_default_18x18.png");
background-repeat: no-repeat;
background-position: 0px 55%;
}
/* Text controls */
.fl-uiOptions .fl-uiOptions-text ul li {
clear: left;
height: 3.5em;
}
.fl-uiOptions .fl-slider-input {
float: right;
}
/* Theming */
.fl-theme-bw .fl-uiOptions .fl-uiOptions-text-icon { background-image: url("../images/bw/uio_icon_textanddisplay_hc_18x18.png"); }
.fl-theme-bw .fl-uiOptions .fl-uiOptions-layout-icon { background-image: url("../images/bw/uio_icon_layoutandnavigation_hc_18x18.png"); }
.fl-theme-bw .fl-uiOptions .fl-uiOptions-links-icon { background-image: url("../images/bw/uio_icon_linksandbuttons_hc_18x18.png"); }
.fl-theme-wb .fl-uiOptions .fl-uiOptions-text-icon { background-image: url("../images/wb/uio_icon_textanddisplay_hci_18x18.png"); }
.fl-theme-wb .fl-uiOptions .fl-uiOptions-layout-icon { background-image: url("../images/wb/uio_icon_layoutandnavigation_hci_18x18.png"); }
.fl-theme-wb .fl-uiOptions .fl-uiOptions-links-icon { background-image: url("../images/wb/uio_icon_linksandbuttons_hci_18x18.png"); }
.fl-theme-yb .fl-uiOptions .fl-uiOptions-text-icon { background-image: url("../images/yb/uio_icon_textanddisplay_yellowBlack_18x18.png"); }
.fl-theme-yb .fl-uiOptions .fl-uiOptions-layout-icon { background-image: url("../images/yb/uio_icon_layoutandnavigation_yellowBlack_18x18.png"); }
.fl-theme-yb .fl-uiOptions .fl-uiOptions-links-icon { background-image: url("../images/yb/uio_icon_linksandbuttons_yellowBlack_18x18.png"); }
.fl-theme-by .fl-uiOptions .fl-uiOptions-text-icon { background-image: url("../images/by/uio_icon_textanddisplay_blackYellow_18x18.png"); }
.fl-theme-by .fl-uiOptions .fl-uiOptions-layout-icon { background-image: url("../images/by/uio_icon_layoutandnavigation_blackYellow_18x18.png"); }
.fl-theme-by .fl-uiOptions .fl-uiOptions-links-icon { background-image: url("../images/by/uio_icon_linksandbuttons_blackYellow_18x18.png"); }
/* Linearization tweaks */
.fl-layout-linear .fl-uiOptions .fl-uiOptions-text-icon, .fl-layout-linear .fl-uiOptions .fl-uiOptions-layout-icon, .fl-layout-linear .fl-uiOptions .fl-uiOptions-links-icon {
padding-left: 20px !important;
} | src/webapp/components/uiOptions/css/FullUIOptions.css |
/* Control section headers */
.fl-uiOptions h2 {
font-size: 1.29em;
font-weight: bold;
clear: both;
color: #444444;
padding: 14px 0px 5px 25px;
}
/* Save, reset, cancel buttons */
.fl-uiOptions .fl-uiOptions-buttons {
margin-top: 1em;
float: left;
width: 100%;
}
.fl-uiOptions .fl-uiOptions-buttons input {
text-transform: uppercase;
text-decoration: underline;
font-weight: bold;
border: 2px solid #cecece;
font-size: 1em;
padding: 5px;
height: 2.5em;
margin-right: 3px;
background-color: #F0F0F0;
}
.fl-uiOptions .fl-uiOptions-buttons .fl-uiOptions-save {
padding-left: 20px;
/* background: -moz-linear-gradient(bottom, #e0e0e0, #fff;) */
background-image: url("../images/default/uio_icon_save_default_13x13.png");
background-repeat: no-repeat;
background-position: 2% 50%;
}
.fl-uiOptions .fl-uiOptions-buttons .fl-uiOptions-cancel {
padding-left: 20px;
background-image: url("../images/default/uio_icon_cancel_default_13x13.png");
background-repeat: no-repeat;
background-position: 2% 50%;
}
/* Section header icons */
.fl-uiOptions h2 img {
margin-bottom: -3px;
padding-right: 5px;
}
.fl-uiOptions h2.fl-uiOptions-text-icon {
background-image: url("../images/default/uio_icon_textanddisplay_default_18x18.png");
background-repeat: no-repeat;
background-position: 0px 55%;
}
.fl-uiOptions h2.fl-uiOptions-layout-icon {
background-image: url("../images/default/uio_icon_layoutandnavigation_default_18x18.png");
background-repeat: no-repeat;
background-position: 0px 55%;
}
.fl-uiOptions h2.fl-uiOptions-links-icon {
background-image: url("../images/default/uio_icon_linksandbuttons_default_18x18.png");
background-repeat: no-repeat;
background-position: 0px 55%;
}
/* Text controls */
.fl-uiOptions .fl-uiOptions-text ul li {
clear: left;
height: 3.5em;
}
.fl-uiOptions .fl-slider-input {
float: right;
}
/* Theming */
.fl-theme-bw .fl-uiOptions .fl-uiOptions-text-icon { background-image: url("../images/bw/uio_icon_textanddisplay_hc_18x18.png"); }
.fl-theme-bw .fl-uiOptions .fl-uiOptions-layout-icon { background-image: url("../images/bw/uio_icon_layoutandnavigation_hc_18x18.png"); }
.fl-theme-bw .fl-uiOptions .fl-uiOptions-links-icon { background-image: url("../images/bw/uio_icon_linksandbuttons_hc_18x18.png"); }
.fl-theme-wb .fl-uiOptions .fl-uiOptions-text-icon { background-image: url("../images/wb/uio_icon_textanddisplay_hci_18x18.png"); }
.fl-theme-wb .fl-uiOptions .fl-uiOptions-layout-icon { background-image: url("../images/wb/uio_icon_layoutandnavigation_hci_18x18.png"); }
.fl-theme-wb .fl-uiOptions .fl-uiOptions-links-icon { background-image: url("../images/wb/uio_icon_linksandbuttons_hci_18x18.png"); }
.fl-theme-yb .fl-uiOptions .fl-uiOptions-text-icon { background-image: url("../images/yb/uio_icon_textanddisplay_yellowBlack_18x18.png"); }
.fl-theme-yb .fl-uiOptions .fl-uiOptions-layout-icon { background-image: url("../images/yb/uio_icon_layoutandnavigation_yellowBlack_18x18.png"); }
.fl-theme-yb .fl-uiOptions .fl-uiOptions-links-icon { background-image: url("../images/yb/uio_icon_linksandbuttons_yellowBlack_18x18.png"); }
.fl-theme-by .fl-uiOptions .fl-uiOptions-text-icon { background-image: url("../images/by/uio_icon_textanddisplay_blackYellow_18x18.png"); }
.fl-theme-by .fl-uiOptions .fl-uiOptions-layout-icon { background-image: url("../images/by/uio_icon_layoutandnavigation_blackYellow_18x18.png"); }
.fl-theme-by .fl-uiOptions .fl-uiOptions-links-icon { background-image: url("../images/by/uio_icon_linksandbuttons_blackYellow_18x18.png"); }
/* Linearization tweaks */
.fl-layout-linear .fl-uiOptions .fl-uiOptions-text-icon, .fl-layout-linear .fl-uiOptions .fl-uiOptions-layout-icon, .fl-layout-linear .fl-uiOptions .fl-uiOptions-links-icon {
padding-left: 20px !important;
} | 0.344333 | 0.081593 |
html {
height: 100%;
}
.banner-container {
height: 400px;
/* background-image: url("../img/North%20Oceans_%20Effectively%20Handling%20Your%20Freight%20Forwarding%20Operations.jpg"); */
background-image: linear-gradient(
45deg,
rgba(0, 0, 0, 0.7) 100%,
rgba(255, 255, 255, 0.3) 40%
),
url("../img/North%20Oceans_%20Effectively%20Handling%20Your%20Freight%20Forwarding%20Operations.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
display: flex;
flex-direction: row;
align-items: center;
}
.icon-section {
max-width: 100%;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
margin: 20px;
}
.icon-div {
width: 22%;
font-family: Abel;
text-align: center;
font-weight: 700;
color: #484545;
padding: 10px;
}
.icon-img {
height: auto;
width: 100%;
max-height: 200px;
}
.article-section {
padding: 0.5em;
max-width: 100%;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
}
.article-text {
padding: none;
width: 45%;
font-size: 20px;
font-family: Anaheim;
text-align: left;
color: rgba(0, 0, 0, 0.49);
}
.article-img {
width: 40%;
height: auto;
}
.banner-text {
color: white;
padding: 1.2em;
width: 40%;
font-size: 18px;
text-align: left;
}
h2 {
font-family: Abel;
font-size: 3em;
font-style: italic;
text-align: center;
color: #3a3838;
font-weight: lighter;
}
hr {
border: 1 solid #000000;
margin: auto;
width: 50%;
}
.btn-red {
font-family: Abel;
margin: auto;
padding: 0.2em 2em;
width: 50%;
background-color: var(--bg-red);
color: white;
}
.btn-red:hover {
background-color: white;
border: 1px solid var(--bg-red);
color: red;
}
@media (max-width: 599px) {
.banner-text {
width: 90%;
text-align: center;
}
.icon-div {
width: 70%;
}
.icon-section {
flex-direction: column;
align-items: center;
justify-content: center;
}
.article-section {
flex-direction: column;
align-items: center;
}
.reverse-article-order {
flex-direction: column-reverse;
}
.article-text {
width: 100%;
text-align: center;
}
.article-img {
width: 100%;
height: auto;
}
} | css/index.css | html {
height: 100%;
}
.banner-container {
height: 400px;
/* background-image: url("../img/North%20Oceans_%20Effectively%20Handling%20Your%20Freight%20Forwarding%20Operations.jpg"); */
background-image: linear-gradient(
45deg,
rgba(0, 0, 0, 0.7) 100%,
rgba(255, 255, 255, 0.3) 40%
),
url("../img/North%20Oceans_%20Effectively%20Handling%20Your%20Freight%20Forwarding%20Operations.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
display: flex;
flex-direction: row;
align-items: center;
}
.icon-section {
max-width: 100%;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
margin: 20px;
}
.icon-div {
width: 22%;
font-family: Abel;
text-align: center;
font-weight: 700;
color: #484545;
padding: 10px;
}
.icon-img {
height: auto;
width: 100%;
max-height: 200px;
}
.article-section {
padding: 0.5em;
max-width: 100%;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
}
.article-text {
padding: none;
width: 45%;
font-size: 20px;
font-family: Anaheim;
text-align: left;
color: rgba(0, 0, 0, 0.49);
}
.article-img {
width: 40%;
height: auto;
}
.banner-text {
color: white;
padding: 1.2em;
width: 40%;
font-size: 18px;
text-align: left;
}
h2 {
font-family: Abel;
font-size: 3em;
font-style: italic;
text-align: center;
color: #3a3838;
font-weight: lighter;
}
hr {
border: 1 solid #000000;
margin: auto;
width: 50%;
}
.btn-red {
font-family: Abel;
margin: auto;
padding: 0.2em 2em;
width: 50%;
background-color: var(--bg-red);
color: white;
}
.btn-red:hover {
background-color: white;
border: 1px solid var(--bg-red);
color: red;
}
@media (max-width: 599px) {
.banner-text {
width: 90%;
text-align: center;
}
.icon-div {
width: 70%;
}
.icon-section {
flex-direction: column;
align-items: center;
justify-content: center;
}
.article-section {
flex-direction: column;
align-items: center;
}
.reverse-article-order {
flex-direction: column-reverse;
}
.article-text {
width: 100%;
text-align: center;
}
.article-img {
width: 100%;
height: auto;
}
} | 0.533641 | 0.104204 |
:host {
/*! @noflip */
box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
background: #fff;
border-radius: 2px;
display: block;
height: auto;
max-height: 60vh;
max-width: 1240px;
overflow: hidden;
}
@media (max-height: 1200px) {
:host {
max-height: calc(560px + (100vh - 600px) * .267);
}
}
@media (max-height: 600px) {
:host {
max-height: calc(100vh - 32px);
}
}
@media (max-width: 1800px) {
:host {
max-width: calc(880px + (100vw - 920px) * .4);
}
}
@media (max-width: 920px) {
:host {
max-width: calc(100vw - 32px);
}
}
focus-trap {
height: inherit;
max-height: inherit;
min-height: inherit;
width: 100%;
}
.wrapper {
display: flex;
flex-direction: column;
height: inherit;
overflow: hidden;
max-height: inherit;
min-height: inherit;
}
.error {
font-size: 13px;
font-weight: 400;
box-sizing: border-box;
flex-shrink: 0;
background: #eeeeee;
color: #c53929;
padding: 0 24px;
transition: padding 218ms cubic-bezier(0.4, 0, 0.2, 1) 0s;
width: 100%;
}
.error.expanded {
border-bottom: 1px #e0e0e0 solid;
border-top: 1px #e0e0e0 solid;
padding: 8px 24px;
}
main {
font-size: 13px;
font-weight: 400;
box-sizing: border-box;
flex-grow: 1;
color: rgba(0, 0, 0, 0.87);
overflow: auto;
padding: 0 24px;
width: 100%;
}
main.top-scroll-stroke {
border-top: 1px #e0e0e0 solid;
}
main.bottom-scroll-stroke {
border-bottom: 1px #e0e0e0 solid;
}
footer {
box-sizing: border-box;
flex-shrink: 0;
padding: 0 8px 8px;
width: 100%;
}
:host ::ng-deep .wrapper > header {
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 24px 24px 0;
width: 100%;
flex-shrink: 0;
}
:host ::ng-deep .wrapper > header ::ng-deep h1,
:host ::ng-deep .wrapper > header ::ng-deep h3 {
font-size: 20px;
font-weight: 500;
margin: 0 0 8px;
}
:host ::ng-deep .wrapper > header ::ng-deep p {
font-size: 12px;
font-weight: 400;
margin: 0;
}
:host ::ng-deep .wrapper > footer [footer] {
display: flex;
flex-shrink: 0;
justify-content: flex-end;
}
:host[headered] ::ng-deep .wrapper > header {
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 24px 24px 0;
width: 100%;
background: #616161;
padding-bottom: 16px;
}
:host[headered] ::ng-deep .wrapper > header ::ng-deep h1,
:host[headered] ::ng-deep .wrapper > header ::ng-deep h3 {
font-size: 20px;
font-weight: 500;
margin: 0 0 8px;
}
:host[headered] ::ng-deep .wrapper > header ::ng-deep p {
font-size: 12px;
font-weight: 400;
margin: 0;
}
:host[headered] ::ng-deep .wrapper > header ::ng-deep h1,
:host[headered] ::ng-deep .wrapper > header ::ng-deep h3 {
color: #fff;
margin-bottom: 4px;
}
:host[headered] ::ng-deep .wrapper > header ::ng-deep p {
color: white;
}
:host[headered] ::ng-deep .wrapper > main {
padding-top: 8px;
}
:host[info] ::ng-deep .wrapper > header ::ng-deep h1,
:host[info] ::ng-deep .wrapper > header ::ng-deep h3 {
line-height: 40px;
margin: 0;
}
:host[info] ::ng-deep .wrapper > header ::ng-deep material-button {
float: right;
}
:host[info] ::ng-deep .wrapper > footer {
padding-bottom: 24px;
} | magic-eight-ball-frontend/.dart_tool/build/generated/angular_components/lib/material_dialog/material_dialog.scss.css | :host {
/*! @noflip */
box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
background: #fff;
border-radius: 2px;
display: block;
height: auto;
max-height: 60vh;
max-width: 1240px;
overflow: hidden;
}
@media (max-height: 1200px) {
:host {
max-height: calc(560px + (100vh - 600px) * .267);
}
}
@media (max-height: 600px) {
:host {
max-height: calc(100vh - 32px);
}
}
@media (max-width: 1800px) {
:host {
max-width: calc(880px + (100vw - 920px) * .4);
}
}
@media (max-width: 920px) {
:host {
max-width: calc(100vw - 32px);
}
}
focus-trap {
height: inherit;
max-height: inherit;
min-height: inherit;
width: 100%;
}
.wrapper {
display: flex;
flex-direction: column;
height: inherit;
overflow: hidden;
max-height: inherit;
min-height: inherit;
}
.error {
font-size: 13px;
font-weight: 400;
box-sizing: border-box;
flex-shrink: 0;
background: #eeeeee;
color: #c53929;
padding: 0 24px;
transition: padding 218ms cubic-bezier(0.4, 0, 0.2, 1) 0s;
width: 100%;
}
.error.expanded {
border-bottom: 1px #e0e0e0 solid;
border-top: 1px #e0e0e0 solid;
padding: 8px 24px;
}
main {
font-size: 13px;
font-weight: 400;
box-sizing: border-box;
flex-grow: 1;
color: rgba(0, 0, 0, 0.87);
overflow: auto;
padding: 0 24px;
width: 100%;
}
main.top-scroll-stroke {
border-top: 1px #e0e0e0 solid;
}
main.bottom-scroll-stroke {
border-bottom: 1px #e0e0e0 solid;
}
footer {
box-sizing: border-box;
flex-shrink: 0;
padding: 0 8px 8px;
width: 100%;
}
:host ::ng-deep .wrapper > header {
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 24px 24px 0;
width: 100%;
flex-shrink: 0;
}
:host ::ng-deep .wrapper > header ::ng-deep h1,
:host ::ng-deep .wrapper > header ::ng-deep h3 {
font-size: 20px;
font-weight: 500;
margin: 0 0 8px;
}
:host ::ng-deep .wrapper > header ::ng-deep p {
font-size: 12px;
font-weight: 400;
margin: 0;
}
:host ::ng-deep .wrapper > footer [footer] {
display: flex;
flex-shrink: 0;
justify-content: flex-end;
}
:host[headered] ::ng-deep .wrapper > header {
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 24px 24px 0;
width: 100%;
background: #616161;
padding-bottom: 16px;
}
:host[headered] ::ng-deep .wrapper > header ::ng-deep h1,
:host[headered] ::ng-deep .wrapper > header ::ng-deep h3 {
font-size: 20px;
font-weight: 500;
margin: 0 0 8px;
}
:host[headered] ::ng-deep .wrapper > header ::ng-deep p {
font-size: 12px;
font-weight: 400;
margin: 0;
}
:host[headered] ::ng-deep .wrapper > header ::ng-deep h1,
:host[headered] ::ng-deep .wrapper > header ::ng-deep h3 {
color: #fff;
margin-bottom: 4px;
}
:host[headered] ::ng-deep .wrapper > header ::ng-deep p {
color: white;
}
:host[headered] ::ng-deep .wrapper > main {
padding-top: 8px;
}
:host[info] ::ng-deep .wrapper > header ::ng-deep h1,
:host[info] ::ng-deep .wrapper > header ::ng-deep h3 {
line-height: 40px;
margin: 0;
}
:host[info] ::ng-deep .wrapper > header ::ng-deep material-button {
float: right;
}
:host[info] ::ng-deep .wrapper > footer {
padding-bottom: 24px;
} | 0.505859 | 0.126515 |
@-moz-document domain("ingame.de") {
/* bw.de */
img[src^="images/smilies/deliver.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://starcraft2.ingame.de/forum/images/smilies/wdeliver.gif) no-repeat;
width: 51px;
height: 36px;
padding-left: 51px;
}
img[src^="images/smilies/elefant.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://starcraft2.ingame.de/forum/images/smilies/welefant.gif) no-repeat;
width: 31px;
height: 35px;
padding-left: 31px;
}
img[src^="images/smilies/biggrin.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/biggrin_weihnacht.gif) no-repeat;
width: 30px;
height: 30px;
padding-left: 30px;
}
img[src^="images/smilies/ugly.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/ugly_weihnacht.gif) no-repeat;
width: 24px;
height: 24px;
padding-left: 24px;
}
img[src^="images/smilies/catch.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/catch_weihnacht.gif) no-repeat;
width: 46px; /* Width of new image */
height: 42px;
padding-left: 46px;
}
img[src^="images/smilies/xyxthumbs.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/thumb_weihnacht.gif) no-repeat;
width: 34px;
height: 24px;
padding-left: 34px;
}
/* pq */
img[src^="images/smilies/inquake/deliver.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://starcraft2.ingame.de/forum/images/smilies/wdeliver.gif) no-repeat;
width: 51px;
height: 36px;
padding-left: 51px;
}
img[src^="images/smilies/inquake/biggrin.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/biggrin_weihnacht.gif) no-repeat;
width: 30px;
height: 30px;
padding-left: 30px;
}
img[src^="images/smilies/inquake/ugly.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/ugly_weihnacht.gif) no-repeat;
width: 24px;
height: 24px;
padding-left: 24px;
}
img[src^="images/smilies/inquake/catch.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/catch_weihnacht.gif) no-repeat;
width: 46px; /* Width of new image */
height: 42px;
padding-left: 46px;
}
img[src^="images/smilies/inquake/thumb.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/thumb_weihnacht.gif) no-repeat;
width: 34px;
height: 24px;
padding-left: 34px;
}
img[src^="images/smilies/inquake/wall.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/wall_weihnacht.gif) no-repeat;
width: 35px;
height: 23px;
padding-left: 35px;
}
img[src^="images/smilies/inquake/mad.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://i.imgur.com/0I3t1kq.gif) no-repeat;
width: 24px;
height: 24px;
padding-left: 24px;
}
img[src^="images/smilies/inquake/ubla.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://i.imgur.com/jSDDm7h.gif) no-repeat;
width: 24px;
height: 38px;
padding-left: 24px;
}
} | data/usercss/107853.user.css | @-moz-document domain("ingame.de") {
/* bw.de */
img[src^="images/smilies/deliver.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://starcraft2.ingame.de/forum/images/smilies/wdeliver.gif) no-repeat;
width: 51px;
height: 36px;
padding-left: 51px;
}
img[src^="images/smilies/elefant.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://starcraft2.ingame.de/forum/images/smilies/welefant.gif) no-repeat;
width: 31px;
height: 35px;
padding-left: 31px;
}
img[src^="images/smilies/biggrin.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/biggrin_weihnacht.gif) no-repeat;
width: 30px;
height: 30px;
padding-left: 30px;
}
img[src^="images/smilies/ugly.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/ugly_weihnacht.gif) no-repeat;
width: 24px;
height: 24px;
padding-left: 24px;
}
img[src^="images/smilies/catch.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/catch_weihnacht.gif) no-repeat;
width: 46px; /* Width of new image */
height: 42px;
padding-left: 46px;
}
img[src^="images/smilies/xyxthumbs.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/thumb_weihnacht.gif) no-repeat;
width: 34px;
height: 24px;
padding-left: 34px;
}
/* pq */
img[src^="images/smilies/inquake/deliver.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://starcraft2.ingame.de/forum/images/smilies/wdeliver.gif) no-repeat;
width: 51px;
height: 36px;
padding-left: 51px;
}
img[src^="images/smilies/inquake/biggrin.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/biggrin_weihnacht.gif) no-repeat;
width: 30px;
height: 30px;
padding-left: 30px;
}
img[src^="images/smilies/inquake/ugly.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/ugly_weihnacht.gif) no-repeat;
width: 24px;
height: 24px;
padding-left: 24px;
}
img[src^="images/smilies/inquake/catch.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/catch_weihnacht.gif) no-repeat;
width: 46px; /* Width of new image */
height: 42px;
padding-left: 46px;
}
img[src^="images/smilies/inquake/thumb.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/thumb_weihnacht.gif) no-repeat;
width: 34px;
height: 24px;
padding-left: 34px;
}
img[src^="images/smilies/inquake/wall.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://quake.ingame.de/forum/images/smilies/wall_weihnacht.gif) no-repeat;
width: 35px;
height: 23px;
padding-left: 35px;
}
img[src^="images/smilies/inquake/mad.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://i.imgur.com/0I3t1kq.gif) no-repeat;
width: 24px;
height: 24px;
padding-left: 24px;
}
img[src^="images/smilies/inquake/ubla.gif"] {
/*display: inline-block;*/
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://i.imgur.com/jSDDm7h.gif) no-repeat;
width: 24px;
height: 38px;
padding-left: 24px;
}
} | 0.234319 | 0.071982 |
*{
box-sizing: border-box;
padding: 0;
margin: 0;
text-decoration: none;
}
a{
color: black;
}
ul{
list-style-type: none;
}
body{
background-color: #EEEEEE;
}
#navbar{
width: 100%;
height: 5rem;
display: flex;
justify-content: space-between;
align-items: center;
position:fixed;
background-color: #EEEEEE;
}
#left-logo{
width: 20%;
height: 2rem;
}
.navbar-list{
width: 33%;
display: flex;
justify-content: space-around;
list-style-type: none;
}
.page{
padding-top: 7rem;
margin-left: 21%;
margin-right: 21%;
}
#start-point h2{
font-family: 'Open Sans', sans-serif;
font-weight: bolder;
}
.started{
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 5rem;
}
#email{
width: 35%;
margin-top: 1.5rem;
height: 1.8rem;
}
.start-button{
width: 25%;
height: 2rem;
background-color: #f1c40f;
border-style: none;
color: black;
font-weight:900;
}
.flex-row{
width: auto;
height: 8rem;
display: flex;
justify-content: space-between;
}
.color-orange{
color: rgb(255, 140, 0);
margin-right: 7rem;
}
.bold-h3{
font-size:x-large;
}
.video-roman{
width: auto;
height: auto;
text-align: center;
margin-bottom: 5rem
}
#products .products {
justify-content: space-between;
text-align: center;
margin-bottom: 12rem;
}
#products .box {
line-height: 2rem;
width: 32%;
height: 22rem;
border: 1px solid black;
border-radius: 0.1rem;
}
.box h3{
font-family: 'Open Sans', sans-serif;
background-color: #DDDDDD;
font-weight: bold;
padding: 1rem;
}
.box p{
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 0.8rem;
}
.box h4{
font-family: 'Times New Roman', Times, serif;
font-size: x-large;
padding: 1rem;
}
.product-select-btn{
margin-top: 1rem;
height: 2rem;
width: 7rem;
background-color: #f1c40f;
border-style: none;
font-size: 1.2rem;
border-radius: 0.4rem;
}
#footer{
margin-top: 17rem;
width: auto;
height: 5rem;
background-color: #DDDDDD;
}
.footer-list{
display: flex;
justify-content: flex-end;
}
.footer-list li{
padding: 1rem;
}
#footer p{
padding-right: 1rem;
display: flex;
justify-content: flex-end;
} | Product Landing Page/css/style.css | *{
box-sizing: border-box;
padding: 0;
margin: 0;
text-decoration: none;
}
a{
color: black;
}
ul{
list-style-type: none;
}
body{
background-color: #EEEEEE;
}
#navbar{
width: 100%;
height: 5rem;
display: flex;
justify-content: space-between;
align-items: center;
position:fixed;
background-color: #EEEEEE;
}
#left-logo{
width: 20%;
height: 2rem;
}
.navbar-list{
width: 33%;
display: flex;
justify-content: space-around;
list-style-type: none;
}
.page{
padding-top: 7rem;
margin-left: 21%;
margin-right: 21%;
}
#start-point h2{
font-family: 'Open Sans', sans-serif;
font-weight: bolder;
}
.started{
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 5rem;
}
#email{
width: 35%;
margin-top: 1.5rem;
height: 1.8rem;
}
.start-button{
width: 25%;
height: 2rem;
background-color: #f1c40f;
border-style: none;
color: black;
font-weight:900;
}
.flex-row{
width: auto;
height: 8rem;
display: flex;
justify-content: space-between;
}
.color-orange{
color: rgb(255, 140, 0);
margin-right: 7rem;
}
.bold-h3{
font-size:x-large;
}
.video-roman{
width: auto;
height: auto;
text-align: center;
margin-bottom: 5rem
}
#products .products {
justify-content: space-between;
text-align: center;
margin-bottom: 12rem;
}
#products .box {
line-height: 2rem;
width: 32%;
height: 22rem;
border: 1px solid black;
border-radius: 0.1rem;
}
.box h3{
font-family: 'Open Sans', sans-serif;
background-color: #DDDDDD;
font-weight: bold;
padding: 1rem;
}
.box p{
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 0.8rem;
}
.box h4{
font-family: 'Times New Roman', Times, serif;
font-size: x-large;
padding: 1rem;
}
.product-select-btn{
margin-top: 1rem;
height: 2rem;
width: 7rem;
background-color: #f1c40f;
border-style: none;
font-size: 1.2rem;
border-radius: 0.4rem;
}
#footer{
margin-top: 17rem;
width: auto;
height: 5rem;
background-color: #DDDDDD;
}
.footer-list{
display: flex;
justify-content: flex-end;
}
.footer-list li{
padding: 1rem;
}
#footer p{
padding-right: 1rem;
display: flex;
justify-content: flex-end;
} | 0.390941 | 0.057865 |
@namespace url(http://www.w3.org/1999/xhtml);@-moz-document url-prefix("http://www.toodledo.com"){
/*
Toodledo Skin Version 1.4b1
Skin created by Nonimage - http://www.nonimage.com
Feel free to edit this, and if you improve it, please let me know.
*/
/* GLOBAL */
body {
font-family: Georgia, 'Lucida Grande', Helvetica,sans-serif !important;
background-color: #fff !important;
background-image: none !important;
font-size: 130% !important;
color: #333 !important;
}
a:link, a:visited {
font-weight: normal !important;
}
/* LEFT BAR */
#toc {
display: none !important;
}
/* MAIN */
#main {
margin: 0 30px 0 -130px !important;
}
/* 'ADD TASK' BUTTON */
#action_addtask {
padding: 5px 0 0 25px !important;
height: 19px !important;
background: url(http://www.nonimage.com/stylish/toodledo/button2.png) no-repeat left 2px !important;
margin: 0 -16px 0 0 !important;
text-align: left !important;
color: #000 !important;
font-size: 0.9em !important;
}
#action_addtask img {
display: none !important;
}
#action_cancelAdd {
margin: 5px -5px 0 0 !important;
color: #000 !important;
font-size: 0.85em !important;
}
a#action_cancelAdd {
color: #d57800 !important;
}
/* 'ADD TASK' FORM */
#addtask {
background-color: #fff !important;
border: 1px solid #333 !important;
margin: 0 -16px 20px 0 !important;
padding: 10px !important;
color: #333 !important;
}
#addtask a {
color: #333 !important;
text-decoration: none !important;
}
#trg, #tlg, #brg, #blg {
background-image: none !important;
}
.field {
margin-bottom: 10px !important;
}
/* 'VIEW BY' BAR AT THE TOP */
#viewby {
display: none !important;
}
/* TABS */
img.tl {
display: none !important;
}
.tabon {
padding: 3px 7px 5px 9px !important;
margin: 0px 5px 0 0 !important;
color: #fff !important;
font-size: 0.9em !important;
background-image: none !important;
background-color: #000 !important;
}
.tabon a:link, .tabon a:visited {
color: #fff !important;
}
.tabon a:hover {
text-decoration: none !important;
}
.tab {
background-image: none !important;
background-color: transparent !important;
border: 0 !important;
padding: 3px 7px 5px 9px !important;
font-size: 0.9em !important;
}
.tab a:link, .tab a:visited {
color: #000 !important;
}
.tab a:hover {
text-decoration: none !important;
color: #545353 !important;
}
#moretabs {
background-color: transparent !important;
padding: 2px 5px 5px 5px !important;
margin: 0 -23px 0 0 !important;
border: 0 !important;
color: #000 !important;
font-size: 0.85em !important;
}
#taboverflow {
background-color: #fff !important;
border: 1px solid #ccc !important;
}
#taboverflow a:link, #taboverflow a:visited {
text-decoration: none !important;
color: #000 !important;
}
#taboverflow a:hover {
text-decoration: none !important;
color: #ccc !important;
}
/* BAR BELOW TABS */
#head {
display: none !important;
}
/* COLUMN HEADERS */
#colhead {
display: none !important;
}
/* SEPERATORS */
.sep {
background: none !important;
padding: 6px 0 6px 0 !important;
margin: 10px 0 10px -21px !important;
}
.sep img {
display: none !important;
}
.sep a:link, .sep a:visited {
text-decoration: none !important;
color: #333 !important;
}
.sep a:hover {
color: #545353 !important;
}
/* TASKS */
#tasks {
font-size: 0.85em !important;
color: #3d3d3d !important;
}
.row {
padding: 7px 0 2px 3px !important;
margin: -1px 0 0 0 !important;
border-top: 1px dotted #333 !important;
border-bottom: 1px dotted #333 !important;
}
/* CHECKBOX */
.ch {
width: 27px !important;
height: 28px !important;
text-align: center !important;
margin: 3px 0 0 -3px !important;
}
.chd {
width: 27px !important;
height: 28px !important;
text-align: center !important;
margin: 3px 0 0 -3px !important;
}
/* STAR */
.st {
width: 20px !important;
height: 16px !important;
margin: 3px 5px 0 0 !important;
}
.std {
width: 20px !important;
height: 16px !important;
margin: 3px 5px 0 0 !important;
}
/* NOTES */
.note {
margin: 10px 0 10px 45px !important;
}
.note a {
color: #000 !important;
}
.ednote {
margin-bottom: 6px !important;
background-color: #f5f4e8 !important;
}
/* DATE STYLES */
.date0 {
color: #3d3d3d !important;
}
.date1 {
color: #3d3d3d !important;
}
.date2 {
color: #63c459 !important;
}
.date3 {
color: #aa4545 !important;
}
/* PRIORITY STYLES */
.pri0 {
color: #443107 !important;
}
.pri1 {
color: #443107 !important;
}
.pri2 {
color: #443107 !important;
font-weight: normal !important;
}
.pri3 {
color: #d57800 !important;
}
/* FLUID WIDTHS (EXPERIMENTAL) */
#tasks {
width: 100% !important;
}
.col0 {
width: 30% !important;
min-width: 250px !important;
}
.col1, .col3, .col4, .col5, .col6, .col7, .col9, .col10, .col11, .col12, .col13, .col14, .col15, .col16, .col512, .col1024 {
width: 10% !important;
min-width: 70px !important;
}
.col2 {
width: 140px !important;
}
.col2048, .col8, .col256 {
width: 4% !important;
min-width: 60px !important;
}
} | data/usercss/7957.user.css | @namespace url(http://www.w3.org/1999/xhtml);@-moz-document url-prefix("http://www.toodledo.com"){
/*
Toodledo Skin Version 1.4b1
Skin created by Nonimage - http://www.nonimage.com
Feel free to edit this, and if you improve it, please let me know.
*/
/* GLOBAL */
body {
font-family: Georgia, 'Lucida Grande', Helvetica,sans-serif !important;
background-color: #fff !important;
background-image: none !important;
font-size: 130% !important;
color: #333 !important;
}
a:link, a:visited {
font-weight: normal !important;
}
/* LEFT BAR */
#toc {
display: none !important;
}
/* MAIN */
#main {
margin: 0 30px 0 -130px !important;
}
/* 'ADD TASK' BUTTON */
#action_addtask {
padding: 5px 0 0 25px !important;
height: 19px !important;
background: url(http://www.nonimage.com/stylish/toodledo/button2.png) no-repeat left 2px !important;
margin: 0 -16px 0 0 !important;
text-align: left !important;
color: #000 !important;
font-size: 0.9em !important;
}
#action_addtask img {
display: none !important;
}
#action_cancelAdd {
margin: 5px -5px 0 0 !important;
color: #000 !important;
font-size: 0.85em !important;
}
a#action_cancelAdd {
color: #d57800 !important;
}
/* 'ADD TASK' FORM */
#addtask {
background-color: #fff !important;
border: 1px solid #333 !important;
margin: 0 -16px 20px 0 !important;
padding: 10px !important;
color: #333 !important;
}
#addtask a {
color: #333 !important;
text-decoration: none !important;
}
#trg, #tlg, #brg, #blg {
background-image: none !important;
}
.field {
margin-bottom: 10px !important;
}
/* 'VIEW BY' BAR AT THE TOP */
#viewby {
display: none !important;
}
/* TABS */
img.tl {
display: none !important;
}
.tabon {
padding: 3px 7px 5px 9px !important;
margin: 0px 5px 0 0 !important;
color: #fff !important;
font-size: 0.9em !important;
background-image: none !important;
background-color: #000 !important;
}
.tabon a:link, .tabon a:visited {
color: #fff !important;
}
.tabon a:hover {
text-decoration: none !important;
}
.tab {
background-image: none !important;
background-color: transparent !important;
border: 0 !important;
padding: 3px 7px 5px 9px !important;
font-size: 0.9em !important;
}
.tab a:link, .tab a:visited {
color: #000 !important;
}
.tab a:hover {
text-decoration: none !important;
color: #545353 !important;
}
#moretabs {
background-color: transparent !important;
padding: 2px 5px 5px 5px !important;
margin: 0 -23px 0 0 !important;
border: 0 !important;
color: #000 !important;
font-size: 0.85em !important;
}
#taboverflow {
background-color: #fff !important;
border: 1px solid #ccc !important;
}
#taboverflow a:link, #taboverflow a:visited {
text-decoration: none !important;
color: #000 !important;
}
#taboverflow a:hover {
text-decoration: none !important;
color: #ccc !important;
}
/* BAR BELOW TABS */
#head {
display: none !important;
}
/* COLUMN HEADERS */
#colhead {
display: none !important;
}
/* SEPERATORS */
.sep {
background: none !important;
padding: 6px 0 6px 0 !important;
margin: 10px 0 10px -21px !important;
}
.sep img {
display: none !important;
}
.sep a:link, .sep a:visited {
text-decoration: none !important;
color: #333 !important;
}
.sep a:hover {
color: #545353 !important;
}
/* TASKS */
#tasks {
font-size: 0.85em !important;
color: #3d3d3d !important;
}
.row {
padding: 7px 0 2px 3px !important;
margin: -1px 0 0 0 !important;
border-top: 1px dotted #333 !important;
border-bottom: 1px dotted #333 !important;
}
/* CHECKBOX */
.ch {
width: 27px !important;
height: 28px !important;
text-align: center !important;
margin: 3px 0 0 -3px !important;
}
.chd {
width: 27px !important;
height: 28px !important;
text-align: center !important;
margin: 3px 0 0 -3px !important;
}
/* STAR */
.st {
width: 20px !important;
height: 16px !important;
margin: 3px 5px 0 0 !important;
}
.std {
width: 20px !important;
height: 16px !important;
margin: 3px 5px 0 0 !important;
}
/* NOTES */
.note {
margin: 10px 0 10px 45px !important;
}
.note a {
color: #000 !important;
}
.ednote {
margin-bottom: 6px !important;
background-color: #f5f4e8 !important;
}
/* DATE STYLES */
.date0 {
color: #3d3d3d !important;
}
.date1 {
color: #3d3d3d !important;
}
.date2 {
color: #63c459 !important;
}
.date3 {
color: #aa4545 !important;
}
/* PRIORITY STYLES */
.pri0 {
color: #443107 !important;
}
.pri1 {
color: #443107 !important;
}
.pri2 {
color: #443107 !important;
font-weight: normal !important;
}
.pri3 {
color: #d57800 !important;
}
/* FLUID WIDTHS (EXPERIMENTAL) */
#tasks {
width: 100% !important;
}
.col0 {
width: 30% !important;
min-width: 250px !important;
}
.col1, .col3, .col4, .col5, .col6, .col7, .col9, .col10, .col11, .col12, .col13, .col14, .col15, .col16, .col512, .col1024 {
width: 10% !important;
min-width: 70px !important;
}
.col2 {
width: 140px !important;
}
.col2048, .col8, .col256 {
width: 4% !important;
min-width: 60px !important;
}
} | 0.102912 | 0.079782 |
html, body {
background-color: #f3ecdb;
color: #636b6f;
font-family: 'Nunito', sans-serif;
font-weight: 200;
height: 100vh;
margin: 0;
}
*{
box-sizing: border-box;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
padding:0px 10px 0 10px;
}
.title {
font-size: 64px;
text-align: center;
margin:0 auto;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
margin:0 auto;
}
.offer-card{
width: 600px;
}
#offer_table{
margin: 0 auto;
}
#offer_table tr td:first-child{
font-weight: bold;
}
#offer_table tr{
border-bottom: 1px solid grey;
}
.offer-card{
margin:0 auto;
margin-bottom: 40px;;
background-color: rgb(204, 204, 204);
}
.card-img-top{
height: 21vw;
width:21vw !important;
margin: 0 auto;
}
.prace_do_wykonania{
border:1px solid grey;
display: inline;
padding: 20px;
}
.main-content{
margin: 0 auto;
}
.layout-footer{
width:100%;
background-color: rgba(153, 153, 153, 0.5);
height: 30px;;
position: fixed;
bottom: 0;
text-align: center;
font-size: 18px;;
}
.flex-box{
display:flex;
}
.flex_1{
flex:1;
text-align: center;
font-size: 30px;
}
.admin-item{
width:80%;
min-height: 65px;;
background-color: rgb(172, 172, 172);
margin: 0 auto;
border-radius: 15px;;
font-size: 20px;;
padding:10px;
margin-bottom: 10px;;
}
.admin-actions{
position: absolute;
left: 20px;
min-height: 600px;
min-width: 200px;
background-color: rgb(0, 179, 110);
border-radius: 10px;
}
.admin-actions h3{
text-align: center;
text-decoration: underline;
font-family: 'Nunito', sans-serif;
font-weight: bold;
padding: 10px;
color:black;
}
.admin-actions ul{
color:rgb(30, 0, 70);
font-size: 20px;;
margin: 0;
padding-left:10px;
}
.admin-actions ul button{
background-color: transparent;
border:none;
color:rgb(30, 0, 70);
font-size: 20px;;
}
#app{
margin-bottom: 100px;;
}
.dev-table td{
border:1px solid black;
padding:10px;
}
.dev-table{
margin:0 auto;
}
.profile-table{
margin: 0 auto;
display:inline;
}
.profile-table td{
margin:0 auto;
padding: 10px;;
font-size: 0.7rem;
}
.profile-label{
font-size: 26px;;
}
#desc{
display: block;
width: 100%;
height: calc(3em + 2rem + 2px);
padding: 0.375rem 0.75rem;
font-size: 0.9rem;
font-weight: 400;
line-height: 1.6;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
resize: none;
}
#offer_desc{
display: inline;
padding: 0.375rem 0.75rem;
font-size: 0.9rem;
font-weight: 400;
line-height: 1.6;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
resize: none;
}
#offer_buttons_fieldset{
border: 0;
display: inline;
padding:15px;
}
#czestotliwosc{
display: none;
}
.flex-container{
display: flex;
margin-bottom: 40px;;
}
.flex-1{
flex:1;
}
.profile-fieldset{
border:1px solid red;
display:inline;
width:80%;
margin-bottom: 25px;;
}
.profile-offer-line{
background-color: rgb(223, 223, 223);
display:inline-block;
margin-bottom:10px;
box-sizing: border-box;
}
.profile-item{
width:80%;
min-height: 65px;;
background-color: rgb(172, 172, 172);
margin: 0 auto;
border-radius: 15px;;
font-size: 12px;;
padding:10px;
margin-bottom: 10px;;
}
.profile-item table tr td:first-child{
font-weight: bold;
}
.scrolled{
height: 400px;
overflow: scroll;
}
.offer-actions{
font-size: 20px;;
}
.review-form{
margin:0 auto;
min-height: 200px;
width: 400px;
background-color: rgb(187, 187, 187);
margin-top:150px;
padding: 30px;
text-align: center;
}
#searchtxt{
resize: none;
height: 30px;
}
#sticky_footer{
position: fixed;
bottom: 0;
width:100%;
}
body{
background-color: #f3ecdb ;
font-family: cursive;
text-align: justify;
font-size: 20px;
max-width: auto;
max-height: auto;
padding: 0;
margin: 0;
padding-bottom: 50px;
}
.profilek{
margin: 0 auto;
text-align: center;
}
.zmiana{
text-align: center;
}
.navbar a{
color: #f3ecdb;
}
.navbar.navbar-light.bg-warning.navbar-expand-md{
width: 100%;
}
#logo{
width: 50px;
height: 50px;
}
#info{
padding:20px;
background-color: #d49d11;
border-radius: 40px;
text-align: center;
}
.col-xs-12.col-sm-8.col-md-6.col-lg-4.col-xl-3{
margin: 0 auto;
margin-top: 30px;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
#content{
margin:0;
padding-right: 40px;
padding-left: 10px;
}
#oferta{
margin-top: 2%;
height: 400px;
}
.oferta{
width: 50%;
float:left;
margin-top: 20px;
}
#przyjmij_oferte{
margin-left: 10%;
}
.card{
border-radius: 8px;
border: 3px solid ;
margin-top: 10px;
font-size: 14px;
min-height: 550px;
margin: 0 auto;
}
.card-body{
height:160px;
}
.row{
margin: 30px;
}
img{
width: 240px;
height: 362.3px;
}
label{
padding: 5px;
}
.form-check-label{
padding: 5px;
}
.form-check-input{
margin-top:15px;
}
#stworz_oferte{
border: 1px solid red;
margin: 5%;
background-color: #d49d11;
border: 3px solid ;
border-radius: 1%;
padding: 5px;
padding-bottom: 15px;
margin: auto;
margin-top: 20px;
}
.btn.btn-info{
width: 150px;
height: 50px;
border: 2px solid black;
}
#edycja{
margin:auto;
max-width:initial !important;
font-size:1.125rem !important;
}
#opinie{
background-color: lightblue;
width: 100%;
height: 500px;
overflow: auto;
border-radius: 1%;
margin-top: 10px;
}
.card.text-white.bg-secondary.mb-3{
margin-top: 10px;
width: 200%;
}
a{
text-decoration:none;
margin:0;
padding: 0;
}
#f1{
width: 400px;
height: 100%;
margin: auto;
margin-top: 300px;
background-color: #e8d45c;
border-radius: 5px;
border: 4px solid #808080;
padding:20px;
}
#f2{
width: 600px;
height: 100%;
margin: auto;
margin-top: 20px;
padding-bottom: 40px;
background-color: #e8d45c;
border-radius: 5px;
border: 4px solid #808080;
padding: 20px;
padding-right: 0;
}
#form_2{
margin-bottom: 10%3;
}
.szukanie{
margin: 0 auto;
width: 250px;
text-align: center;
}
#f3{
width: 400px;
height: 100%;
margin: auto;
margin-top: 300px;
background-color: #e8d45c;
border-radius: 5px;
border: 4px solid #808080;
padding: 20px;
}
.logowanie{
border: 2px solid #808080;
padding: 10px 0px 10px 10px;
border-radius: 10px;
width: 80%;
margin: 0 auto;
margin-left: 15px;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.searchs{
width: 250px;
margin: 0 auto;
margin-top: 20px;
}
#male{
width: 19%;
}
#female{
width: 15%;
}
#logowanie_ch{
border: 2px solid #808080;
padding: 10px;
border-radius: 10px;
margin-top: 5px;
}
#zaloguj{
padding: 15px;
border-radius: 10px;
background-color: #2e8b57;
font-family: cursive;
font-size: 20px;
margin-left:10%;
}
#zarejestruj{
padding: 15px;
border-radius: 10px;
background-color: #2e8b57;
font-family: cursive;
font-size: 20px;
margin:auto;
margin-left: 33%;
}
#zapomniales{
margin-left: 25%;
}
#nie_masz{
margin-left: 25%;
}
#masz_konto{
margin-left: 35%;
}
#wyslij_link{
padding: 15px;
border-radius: 10px;
background-color: #2e8b57;
font-family: cursive;
font-size: 20px;
margin-left: 10%;
}
#wroc_logowanie{
margin-left: 20%;
}
#settings{
width: 100%;
height: auto;
background-color: #e8d45c;
border-radius: 5px;
border: 4px solid #808080;
padding: 20px;
}
#ch_change{
padding: 15px;
padding-left: 5px;
border-radius: 10px;
background-color: #2e8b57;
font-family: cursive;
font-size: 20px;
margin-left: 35%;
margin-bottom: 10px;
width: 30%;
}
footer{
position: fixed;
bottom: 0;
width: 100%;
}
.cointainer-fluid{
margin-bottom: 5%;
}
.nav-item.login{
flex-grow: 1;
}
.nav-item.rejestacja{
flex-grow: 1;
}
h5{
padding: 10px;
padding-top: 10px;
}
label{
width: 15%;
}
textarea {
resize: none;
border-radius: 1%;
}
#profilowe{
margin-bottom: 20px;
width:300px;
}
.offer-table td{
font-size: 30px;
}
.offer-table td:nth-child(2) span{
padding: 10px;
font-size: 30px;
border-left: 3px solid rgb(241, 191, 53);;
border-bottom: 3px solid rgb(241, 191, 53);;
margin-bottom: 10px;
}
.offer-table tr:last-child td span{
padding: 10px;
font-size: 30px;
border-left: none;
border-bottom: none;
}
.offer_table{
font-size: 1rem;
margin: 0 auto;
text-align: center;
}
#offer_table td:nth-child(2) span{
padding: 10px;
font-size: 30px;
border-left: 3px solid rgb(241, 191, 53);;
border-bottom: 3px solid rgb(241, 191, 53);;
margin-bottom: 10px;
}
.card-text{
overflow-y: scroll;
}
.uzytkownik2{
width: 330px;
height:auto;
margin: 0 auto;
align-self: center;
text-align: center;
}
.uzytkownik{
padding:20px;
margin: 0 auto;
text-align: center;
border:5px solid #d49d11;
box-shadow: 3px 3px black;
}
.profile-card .card-text{
overflow:initial;
}
.profile-x{
border: 2px solid #f3ecdb;;
}
#index-img{
widows: 50% ;
height: auto;
}
.main-card{
overflow-y:initial !important;
text-align: center;
}
.black-font{
color:black !important;
}
.uwagi{
text-align: center;
}
.users-show{
text-align:center;
}
.idk_klasa{
width:350px;
height:auto;
}
.latest-offer{
background-color: rgb(128, 231, 191);
box-shadow: 3px 3px black;
padding: 30px;
margin-bottom: 30px;
}
.latest-offer td{
padding:5px;
}
.profile-offer-header{
margin-bottom: 30px;
box-shadow: 2px 2px black;;
}
.msg{
background-color:rgba(0, 173, 0, 0.602);
text-align: center;
}
@media only screen and (min-width: 600px) {
.profile-table td {
font-size: 1.2rem;
}
}
@media only screen and (max-width: 768px) {
.card-img-top{
height: 45vw;
width:45vw !important;
margin: 0 auto;
}
}
@media only screen and (min-width: 1200px) {
.card .offer_table td {
font-size: 1.3rem;
}
}
#praca-list{
width:250px;
}
.page_button{
text-align: center;
}
.cena-search{
width: 150px;
box-sizing: border-box;
}
.remember{
width: 100px;
}
.body-kufa{
height: auto;
}
.jakie-min-height{
min-height: auto !important;
} | public/css/main.css | html, body {
background-color: #f3ecdb;
color: #636b6f;
font-family: 'Nunito', sans-serif;
font-weight: 200;
height: 100vh;
margin: 0;
}
*{
box-sizing: border-box;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
padding:0px 10px 0 10px;
}
.title {
font-size: 64px;
text-align: center;
margin:0 auto;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
margin:0 auto;
}
.offer-card{
width: 600px;
}
#offer_table{
margin: 0 auto;
}
#offer_table tr td:first-child{
font-weight: bold;
}
#offer_table tr{
border-bottom: 1px solid grey;
}
.offer-card{
margin:0 auto;
margin-bottom: 40px;;
background-color: rgb(204, 204, 204);
}
.card-img-top{
height: 21vw;
width:21vw !important;
margin: 0 auto;
}
.prace_do_wykonania{
border:1px solid grey;
display: inline;
padding: 20px;
}
.main-content{
margin: 0 auto;
}
.layout-footer{
width:100%;
background-color: rgba(153, 153, 153, 0.5);
height: 30px;;
position: fixed;
bottom: 0;
text-align: center;
font-size: 18px;;
}
.flex-box{
display:flex;
}
.flex_1{
flex:1;
text-align: center;
font-size: 30px;
}
.admin-item{
width:80%;
min-height: 65px;;
background-color: rgb(172, 172, 172);
margin: 0 auto;
border-radius: 15px;;
font-size: 20px;;
padding:10px;
margin-bottom: 10px;;
}
.admin-actions{
position: absolute;
left: 20px;
min-height: 600px;
min-width: 200px;
background-color: rgb(0, 179, 110);
border-radius: 10px;
}
.admin-actions h3{
text-align: center;
text-decoration: underline;
font-family: 'Nunito', sans-serif;
font-weight: bold;
padding: 10px;
color:black;
}
.admin-actions ul{
color:rgb(30, 0, 70);
font-size: 20px;;
margin: 0;
padding-left:10px;
}
.admin-actions ul button{
background-color: transparent;
border:none;
color:rgb(30, 0, 70);
font-size: 20px;;
}
#app{
margin-bottom: 100px;;
}
.dev-table td{
border:1px solid black;
padding:10px;
}
.dev-table{
margin:0 auto;
}
.profile-table{
margin: 0 auto;
display:inline;
}
.profile-table td{
margin:0 auto;
padding: 10px;;
font-size: 0.7rem;
}
.profile-label{
font-size: 26px;;
}
#desc{
display: block;
width: 100%;
height: calc(3em + 2rem + 2px);
padding: 0.375rem 0.75rem;
font-size: 0.9rem;
font-weight: 400;
line-height: 1.6;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
resize: none;
}
#offer_desc{
display: inline;
padding: 0.375rem 0.75rem;
font-size: 0.9rem;
font-weight: 400;
line-height: 1.6;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
resize: none;
}
#offer_buttons_fieldset{
border: 0;
display: inline;
padding:15px;
}
#czestotliwosc{
display: none;
}
.flex-container{
display: flex;
margin-bottom: 40px;;
}
.flex-1{
flex:1;
}
.profile-fieldset{
border:1px solid red;
display:inline;
width:80%;
margin-bottom: 25px;;
}
.profile-offer-line{
background-color: rgb(223, 223, 223);
display:inline-block;
margin-bottom:10px;
box-sizing: border-box;
}
.profile-item{
width:80%;
min-height: 65px;;
background-color: rgb(172, 172, 172);
margin: 0 auto;
border-radius: 15px;;
font-size: 12px;;
padding:10px;
margin-bottom: 10px;;
}
.profile-item table tr td:first-child{
font-weight: bold;
}
.scrolled{
height: 400px;
overflow: scroll;
}
.offer-actions{
font-size: 20px;;
}
.review-form{
margin:0 auto;
min-height: 200px;
width: 400px;
background-color: rgb(187, 187, 187);
margin-top:150px;
padding: 30px;
text-align: center;
}
#searchtxt{
resize: none;
height: 30px;
}
#sticky_footer{
position: fixed;
bottom: 0;
width:100%;
}
body{
background-color: #f3ecdb ;
font-family: cursive;
text-align: justify;
font-size: 20px;
max-width: auto;
max-height: auto;
padding: 0;
margin: 0;
padding-bottom: 50px;
}
.profilek{
margin: 0 auto;
text-align: center;
}
.zmiana{
text-align: center;
}
.navbar a{
color: #f3ecdb;
}
.navbar.navbar-light.bg-warning.navbar-expand-md{
width: 100%;
}
#logo{
width: 50px;
height: 50px;
}
#info{
padding:20px;
background-color: #d49d11;
border-radius: 40px;
text-align: center;
}
.col-xs-12.col-sm-8.col-md-6.col-lg-4.col-xl-3{
margin: 0 auto;
margin-top: 30px;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
#content{
margin:0;
padding-right: 40px;
padding-left: 10px;
}
#oferta{
margin-top: 2%;
height: 400px;
}
.oferta{
width: 50%;
float:left;
margin-top: 20px;
}
#przyjmij_oferte{
margin-left: 10%;
}
.card{
border-radius: 8px;
border: 3px solid ;
margin-top: 10px;
font-size: 14px;
min-height: 550px;
margin: 0 auto;
}
.card-body{
height:160px;
}
.row{
margin: 30px;
}
img{
width: 240px;
height: 362.3px;
}
label{
padding: 5px;
}
.form-check-label{
padding: 5px;
}
.form-check-input{
margin-top:15px;
}
#stworz_oferte{
border: 1px solid red;
margin: 5%;
background-color: #d49d11;
border: 3px solid ;
border-radius: 1%;
padding: 5px;
padding-bottom: 15px;
margin: auto;
margin-top: 20px;
}
.btn.btn-info{
width: 150px;
height: 50px;
border: 2px solid black;
}
#edycja{
margin:auto;
max-width:initial !important;
font-size:1.125rem !important;
}
#opinie{
background-color: lightblue;
width: 100%;
height: 500px;
overflow: auto;
border-radius: 1%;
margin-top: 10px;
}
.card.text-white.bg-secondary.mb-3{
margin-top: 10px;
width: 200%;
}
a{
text-decoration:none;
margin:0;
padding: 0;
}
#f1{
width: 400px;
height: 100%;
margin: auto;
margin-top: 300px;
background-color: #e8d45c;
border-radius: 5px;
border: 4px solid #808080;
padding:20px;
}
#f2{
width: 600px;
height: 100%;
margin: auto;
margin-top: 20px;
padding-bottom: 40px;
background-color: #e8d45c;
border-radius: 5px;
border: 4px solid #808080;
padding: 20px;
padding-right: 0;
}
#form_2{
margin-bottom: 10%3;
}
.szukanie{
margin: 0 auto;
width: 250px;
text-align: center;
}
#f3{
width: 400px;
height: 100%;
margin: auto;
margin-top: 300px;
background-color: #e8d45c;
border-radius: 5px;
border: 4px solid #808080;
padding: 20px;
}
.logowanie{
border: 2px solid #808080;
padding: 10px 0px 10px 10px;
border-radius: 10px;
width: 80%;
margin: 0 auto;
margin-left: 15px;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.searchs{
width: 250px;
margin: 0 auto;
margin-top: 20px;
}
#male{
width: 19%;
}
#female{
width: 15%;
}
#logowanie_ch{
border: 2px solid #808080;
padding: 10px;
border-radius: 10px;
margin-top: 5px;
}
#zaloguj{
padding: 15px;
border-radius: 10px;
background-color: #2e8b57;
font-family: cursive;
font-size: 20px;
margin-left:10%;
}
#zarejestruj{
padding: 15px;
border-radius: 10px;
background-color: #2e8b57;
font-family: cursive;
font-size: 20px;
margin:auto;
margin-left: 33%;
}
#zapomniales{
margin-left: 25%;
}
#nie_masz{
margin-left: 25%;
}
#masz_konto{
margin-left: 35%;
}
#wyslij_link{
padding: 15px;
border-radius: 10px;
background-color: #2e8b57;
font-family: cursive;
font-size: 20px;
margin-left: 10%;
}
#wroc_logowanie{
margin-left: 20%;
}
#settings{
width: 100%;
height: auto;
background-color: #e8d45c;
border-radius: 5px;
border: 4px solid #808080;
padding: 20px;
}
#ch_change{
padding: 15px;
padding-left: 5px;
border-radius: 10px;
background-color: #2e8b57;
font-family: cursive;
font-size: 20px;
margin-left: 35%;
margin-bottom: 10px;
width: 30%;
}
footer{
position: fixed;
bottom: 0;
width: 100%;
}
.cointainer-fluid{
margin-bottom: 5%;
}
.nav-item.login{
flex-grow: 1;
}
.nav-item.rejestacja{
flex-grow: 1;
}
h5{
padding: 10px;
padding-top: 10px;
}
label{
width: 15%;
}
textarea {
resize: none;
border-radius: 1%;
}
#profilowe{
margin-bottom: 20px;
width:300px;
}
.offer-table td{
font-size: 30px;
}
.offer-table td:nth-child(2) span{
padding: 10px;
font-size: 30px;
border-left: 3px solid rgb(241, 191, 53);;
border-bottom: 3px solid rgb(241, 191, 53);;
margin-bottom: 10px;
}
.offer-table tr:last-child td span{
padding: 10px;
font-size: 30px;
border-left: none;
border-bottom: none;
}
.offer_table{
font-size: 1rem;
margin: 0 auto;
text-align: center;
}
#offer_table td:nth-child(2) span{
padding: 10px;
font-size: 30px;
border-left: 3px solid rgb(241, 191, 53);;
border-bottom: 3px solid rgb(241, 191, 53);;
margin-bottom: 10px;
}
.card-text{
overflow-y: scroll;
}
.uzytkownik2{
width: 330px;
height:auto;
margin: 0 auto;
align-self: center;
text-align: center;
}
.uzytkownik{
padding:20px;
margin: 0 auto;
text-align: center;
border:5px solid #d49d11;
box-shadow: 3px 3px black;
}
.profile-card .card-text{
overflow:initial;
}
.profile-x{
border: 2px solid #f3ecdb;;
}
#index-img{
widows: 50% ;
height: auto;
}
.main-card{
overflow-y:initial !important;
text-align: center;
}
.black-font{
color:black !important;
}
.uwagi{
text-align: center;
}
.users-show{
text-align:center;
}
.idk_klasa{
width:350px;
height:auto;
}
.latest-offer{
background-color: rgb(128, 231, 191);
box-shadow: 3px 3px black;
padding: 30px;
margin-bottom: 30px;
}
.latest-offer td{
padding:5px;
}
.profile-offer-header{
margin-bottom: 30px;
box-shadow: 2px 2px black;;
}
.msg{
background-color:rgba(0, 173, 0, 0.602);
text-align: center;
}
@media only screen and (min-width: 600px) {
.profile-table td {
font-size: 1.2rem;
}
}
@media only screen and (max-width: 768px) {
.card-img-top{
height: 45vw;
width:45vw !important;
margin: 0 auto;
}
}
@media only screen and (min-width: 1200px) {
.card .offer_table td {
font-size: 1.3rem;
}
}
#praca-list{
width:250px;
}
.page_button{
text-align: center;
}
.cena-search{
width: 150px;
box-sizing: border-box;
}
.remember{
width: 100px;
}
.body-kufa{
height: auto;
}
.jakie-min-height{
min-height: auto !important;
} | 0.385259 | 0.082586 |
html, body { height:100%; }
body {
padding:0;
margin:0;
background:#333;
-webkit-user-select:none;
-webkit-text-size-adjust:none;
color:#eee;
font-family:helvetica;
font-size:12px;
}
#wrapper {
width:100%;
min-width:320px;
height:100%;
}
#nav {
position:absolute;
z-index:100;
top:8px;
width:200px;
height:20px;
left:50%;
background:rgba(0,0,0,0.75);
padding:0;
margin:0 0 0 -100px;
-webkit-border-radius:10px;
}
#nav li {
display:block;
float:left;
width:14px;
height:14px; line-height:14px;
-webkit-border-radius:7px;
background:rgba(255,255,255,0.1);
overflow:hidden;
padding:0;
margin:3px 11px 0 0;
text-align:center;
}
#nav li#prev {
margin-left:5px;
background:transparent;
}
#nav li#next {
margin-right:0;
background:transparent;
}
#nav li.selected {
background:rgba(255,255,255,0.4);
}
#swipeview-slider > div {
position:relative;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-box-pack:center;
-webkit-box-align:center;
overflow:hidden;
}
#swipeview-slider img {
display:block;
border:5px solid #eee;
-webkit-box-shadow:0 2px 6px #000;
-webkit-border-radius:2px;
-webkit-transition-duration:.4s;
-webkit-transition-property:opacity;
opacity:1;
pointer-events:none;
}
#swipeview-slider span {
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px 0;
display:block;
background:rgba(0,0,0,0.75);
font-size:20px;
text-align:center;
text-shadow:0 1px 0 #000;
border-top:1px solid rgba(255,255,255,0.2);
-webkit-border-top-left-radius:10px;
-webkit-border-top-right-radius:10px;
-webkit-transition-duration:.3s;
-webkit-transition-property:-webkit-transform;
-webkit-transform:translate3d(0,100%,0);
}
#swipeview-slider .swipeview-active span {
-webkit-transform:translate3d(0,0,0);
}
#wrapper > div > .swipeview-loading {
background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#555)),
-webkit-gradient(linear, 0 0, 100% 0, from(#777), to(#777));
background-position:50% 50%, 50% 50%;
background-size:200px 140px, 210px 150px;
background-repeat:no-repeat;
}
#wrapper > div > .swipeview-loading img,
#swipeview-slider img.loading {
-webkit-transition-duration:0;
opacity:0;
}
#wrapper > div > .swipeview-loading span {
-webkit-transition-duration:0;
-webkit-transform:translate3d(0,100%,0);
} | demo/gallery/style.css | html, body { height:100%; }
body {
padding:0;
margin:0;
background:#333;
-webkit-user-select:none;
-webkit-text-size-adjust:none;
color:#eee;
font-family:helvetica;
font-size:12px;
}
#wrapper {
width:100%;
min-width:320px;
height:100%;
}
#nav {
position:absolute;
z-index:100;
top:8px;
width:200px;
height:20px;
left:50%;
background:rgba(0,0,0,0.75);
padding:0;
margin:0 0 0 -100px;
-webkit-border-radius:10px;
}
#nav li {
display:block;
float:left;
width:14px;
height:14px; line-height:14px;
-webkit-border-radius:7px;
background:rgba(255,255,255,0.1);
overflow:hidden;
padding:0;
margin:3px 11px 0 0;
text-align:center;
}
#nav li#prev {
margin-left:5px;
background:transparent;
}
#nav li#next {
margin-right:0;
background:transparent;
}
#nav li.selected {
background:rgba(255,255,255,0.4);
}
#swipeview-slider > div {
position:relative;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-box-pack:center;
-webkit-box-align:center;
overflow:hidden;
}
#swipeview-slider img {
display:block;
border:5px solid #eee;
-webkit-box-shadow:0 2px 6px #000;
-webkit-border-radius:2px;
-webkit-transition-duration:.4s;
-webkit-transition-property:opacity;
opacity:1;
pointer-events:none;
}
#swipeview-slider span {
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px 0;
display:block;
background:rgba(0,0,0,0.75);
font-size:20px;
text-align:center;
text-shadow:0 1px 0 #000;
border-top:1px solid rgba(255,255,255,0.2);
-webkit-border-top-left-radius:10px;
-webkit-border-top-right-radius:10px;
-webkit-transition-duration:.3s;
-webkit-transition-property:-webkit-transform;
-webkit-transform:translate3d(0,100%,0);
}
#swipeview-slider .swipeview-active span {
-webkit-transform:translate3d(0,0,0);
}
#wrapper > div > .swipeview-loading {
background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#555)),
-webkit-gradient(linear, 0 0, 100% 0, from(#777), to(#777));
background-position:50% 50%, 50% 50%;
background-size:200px 140px, 210px 150px;
background-repeat:no-repeat;
}
#wrapper > div > .swipeview-loading img,
#swipeview-slider img.loading {
-webkit-transition-duration:0;
opacity:0;
}
#wrapper > div > .swipeview-loading span {
-webkit-transition-duration:0;
-webkit-transform:translate3d(0,100%,0);
} | 0.348756 | 0.041501 |
.collapserMap div.ant-collapse-header {
padding: 8px;
font-size: 1rem;
text-align: left;
font-weight: 400;
color: #212529;
}
@media (max-width: 1440px) {
.collapseText.ant-collapse-item {
margin: 0 3% 0 0 ;
}
}
@media (max-width: 800px) {
.map-menu {
position: absolute;
top: 41%;
right: 0px;
}
}
@media (max-width: 768px) {
.collapseText.ant-collapse-item {
margin: -171% 0 0 -55%;
}
}
@media (max-width: 600px) {
.collapseText.ant-collapse-item {
margin: -218% 5% 0 -25%;
}
}
@media (max-width: 540px) {
.map-menu {
position: absolute;
left: 8.5%;
top: 77%;
}
div.ant-collapse-item.collapseText {
width: 345px;
}
}
@media (max-width: 430px) {
.map-menu {
position: absolute;
z-index: 1;
color: black;
margin-bottom: 10px;
top: 122%;
left: 20%;
width: 298px;
padding-top: 30%;
}
}
@media (max-width: 414px) {
.map-menu {
position: absolute;
left: 21%;
}
div.ant-collapse-item.collapseText {
width: 350px;
}
}
@media (max-width: 411px) {
.map-menu {
position: absolute;
width: 110px;
top: 42%;
left: 10%;
}
}
@media (max-width: 380px) {
.map-menu {
position: absolute;
z-index: 1;
bottom: 190px;
color: black;
margin-bottom: 10px;
top: 36%;
width: 100px;
padding-right: 5px;
}
}
@media (max-width: 375px) {
.map-menu {
position: absolute;
left: 10.5%;
top: 43%;
}
div.ant-collapse-item.collapseText {
width: 326px;
}
}
@media (max-width: 360px) {
.map-menu {
position: absolute;
left: 11%;
top: 46%;
}
div.ant-collapse-item.collapseText {
width: 314px;
}
}
@media (max-width: 320px) {
.map-menu {
position: absolute;
top: 56%;
left: 12.5%;
}
div.ant-collapse-item.collapseText {
width: 278px;
}
}
@media (max-width: 280px) {
.map-menu {
position: absolute;
top: 51%;
left: 15%;
}
div.ant-collapse-item.collapseText {
width: 242px;
}
} | src/components/Home/Map/IncidentFocus.css |
.collapserMap div.ant-collapse-header {
padding: 8px;
font-size: 1rem;
text-align: left;
font-weight: 400;
color: #212529;
}
@media (max-width: 1440px) {
.collapseText.ant-collapse-item {
margin: 0 3% 0 0 ;
}
}
@media (max-width: 800px) {
.map-menu {
position: absolute;
top: 41%;
right: 0px;
}
}
@media (max-width: 768px) {
.collapseText.ant-collapse-item {
margin: -171% 0 0 -55%;
}
}
@media (max-width: 600px) {
.collapseText.ant-collapse-item {
margin: -218% 5% 0 -25%;
}
}
@media (max-width: 540px) {
.map-menu {
position: absolute;
left: 8.5%;
top: 77%;
}
div.ant-collapse-item.collapseText {
width: 345px;
}
}
@media (max-width: 430px) {
.map-menu {
position: absolute;
z-index: 1;
color: black;
margin-bottom: 10px;
top: 122%;
left: 20%;
width: 298px;
padding-top: 30%;
}
}
@media (max-width: 414px) {
.map-menu {
position: absolute;
left: 21%;
}
div.ant-collapse-item.collapseText {
width: 350px;
}
}
@media (max-width: 411px) {
.map-menu {
position: absolute;
width: 110px;
top: 42%;
left: 10%;
}
}
@media (max-width: 380px) {
.map-menu {
position: absolute;
z-index: 1;
bottom: 190px;
color: black;
margin-bottom: 10px;
top: 36%;
width: 100px;
padding-right: 5px;
}
}
@media (max-width: 375px) {
.map-menu {
position: absolute;
left: 10.5%;
top: 43%;
}
div.ant-collapse-item.collapseText {
width: 326px;
}
}
@media (max-width: 360px) {
.map-menu {
position: absolute;
left: 11%;
top: 46%;
}
div.ant-collapse-item.collapseText {
width: 314px;
}
}
@media (max-width: 320px) {
.map-menu {
position: absolute;
top: 56%;
left: 12.5%;
}
div.ant-collapse-item.collapseText {
width: 278px;
}
}
@media (max-width: 280px) {
.map-menu {
position: absolute;
top: 51%;
left: 15%;
}
div.ant-collapse-item.collapseText {
width: 242px;
}
} | 0.552298 | 0.095139 |
h1,h2,h3,h4,h5,h6{color:#444;cursor:default}
span{cursor:default}
header{background:url(images/heading1.jpg) no-repeat top center;background-size:cover;height:100%;position:relative;min-height:600px;}
header h1{text-align:center;font-weight:900;font-size:5em;color:#2c3e50;position:absolute;top:6.5em;right:32%;transform:rotate(-9.6deg)}
.rtl header h1{top: 5.5em;}
header strong{color:#10A1A6;font-weight:900}
header .container{height: 100%;}
body{height:100%;background-color:#fff;}
body p{cursor:default}
.about-ermile{padding:2em 0;background-color:#fff}
.about-ermile .container{position:initial!important;text-align:center}
/* cards */
.benefits li {-webkit-perspective: 400px;perspective: 400px;}
.info {width: 100%;height: 100%;padding: 20px;position: absolute;top: 0;left: 0;border-radius: 4px;pointer-events: none;background-color: rgba(16, 161, 166, .9); -webkit-transform: rotate3d(1, 0, 0, 90deg); transform: rotate3d(1, 0, 0, 90deg);}
.in-top .info { -webkit-transform-origin: 50% 0%; transform-origin: 50% 0%; -webkit-animation: in-top 300ms ease 0ms 1 forwards; animation: in-top 300ms ease 0ms 1 forwards;}
.in-right .info { -webkit-transform-origin: 100% 0%; transform-origin: 100% 0%; -webkit-animation: in-right 300ms ease 0ms 1 forwards; animation: in-right 300ms ease 0ms 1 forwards;}
.in-bottom .info { -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; -webkit-animation: in-bottom 300ms ease 0ms 1 forwards; animation: in-bottom 300ms ease 0ms 1 forwards;}
.in-left .info { -webkit-transform-origin: 0% 0%; transform-origin: 0% 0%; -webkit-animation: in-left 300ms ease 0ms 1 forwards; animation: in-left 300ms ease 0ms 1 forwards;}
.out-top .info { -webkit-transform-origin: 50% 0%; transform-origin: 50% 0%; -webkit-animation: out-top 300ms ease 0ms 1 forwards; animation: out-top 300ms ease 0ms 1 forwards;}
.out-right .info { -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-animation: out-right 300ms ease 0ms 1 forwards; animation: out-right 300ms ease 0ms 1 forwards;}
.out-bottom .info { -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; -webkit-animation: out-bottom 300ms ease 0ms 1 forwards; animation: out-bottom 300ms ease 0ms 1 forwards;}
.out-left .info { -webkit-transform-origin: 0% 0%; transform-origin: 0% 0%; -webkit-animation: out-left 300ms ease 0ms 1 forwards; animation: out-left 300ms ease 0ms 1 forwards;}
@-webkit-keyframes in-top { from { -webkit-transform: rotate3d(-1, 0, 0, 90deg);transform: rotate3d(-1, 0, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg);transform: rotate3d(0, 0, 0, 0deg);}}
@keyframes in-top { from { -webkit-transform: rotate3d(-1, 0, 0, 90deg);transform: rotate3d(-1, 0, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg);transform: rotate3d(0, 0, 0, 0deg);}}
@-webkit-keyframes in-right { from { -webkit-transform: rotate3d(0, -1, 0, 90deg); transform: rotate3d(0, -1, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@keyframes in-right { from { -webkit-transform: rotate3d(0, -1, 0, 90deg); transform: rotate3d(0, -1, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@-webkit-keyframes in-bottom { from { -webkit-transform: rotate3d(1, 0, 0, 90deg); transform: rotate3d(1, 0, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@keyframes in-bottom { from { -webkit-transform: rotate3d(1, 0, 0, 90deg); transform: rotate3d(1, 0, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@-webkit-keyframes in-left { from { -webkit-transform: rotate3d(0, 1, 0, 90deg); transform: rotate3d(0, 1, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@keyframes in-left { from { -webkit-transform: rotate3d(0, 1, 0, 90deg); transform: rotate3d(0, 1, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 107.35deg); transform: rotate3d(-1, 0, 0, 107.35deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 107.35deg); transform: rotate3d(-1, 0, 0, 107.35deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 107.35deg); transform: rotate3d(0, -1, 0, 107.35deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 107.35deg); transform: rotate3d(0, -1, 0, 107.35deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 107.35deg); transform: rotate3d(1, 0, 0, 107.35deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 107.35deg); transform: rotate3d(1, 0, 0, 107.35deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 107.35deg); transform: rotate3d(0, 1, 0, 107.35deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 107.35deg); transform: rotate3d(0, 1, 0, 107.35deg);}}
/* benefits */
.benefits{padding:40px 0}
.benefits .span4 p{padding:10px 30px;color:#666;text-align:left}
.rtl .benefits .span4 p{padding:10px 30px;color:#666;text-align:right}
.benefits h2{text-align:center;margin-top:25px;margin-bottom:28px;color:#666;font-weight:600;font-size:3em}
.benefits h2 strong,.our-opportunity h2 strong{color:#10A1A6;font-weight:900;border-bottom:5px solid #10A1A6}
.benefits li img{width:100%;padding:52px}
.benefits ul{padding:0;margin:0 0 50px}
.benefits ul:after{content:"";display:table;clear:both}
.benefits li{position:relative;width:250px;height:250px;margin:5px;padding:0;list-style:none;display: inline-block;}
.benefits li a{display:inline-block;vertical-align:top;text-decoration:none;border-radius:4px}
.benefits li h3{font-weight:500;margin:0;font-size:16px;color:rgba(255,255,255,0.9); line-height:1.8em;}
.benefits li p{font-size:13px;line-height:1.5;color:rgba(255,255,255,0.8)}
.benefits li .normal{width:100%;height:100%;background-color:#ECF0F1;color:rgba(52,73,94,0.6);box-shadow:inset 0 2px 20px #e6ebed;text-align:center;font-size:50px;cursor:default;overflow: hidden;}
.benefits li .normal svg{pointer-events:none;width:50px}
.benefits li .normal svg path{fill:rgba(52,73,94,0.2)}
*{box-sizing:border-box}
/* video */
#bgvid{width:100%;}
div.video{position: relative;}
div.video::after{content:"";width: 100%; height:50px; background-color:#fff;display:block;position: absolute;bottom: 0;height: 18%;}
/* contract process */
.contract-process{background-color:#fff;padding:3em 0;padding-bottom:7em}
.contract-process{background-color:#fff;padding:3em 0;padding-bottom:11em; padding-top:0; }
.contract-process .img-contain{width:29%;display:inline-block;position:relative;border-radius:50%}
.contract-process-boxes img{opacity:.85;width:100%;border-radius:50%;border:8px solid transparent;transition:all .3s ease}
.contract-process-boxes img:hover{opacity:1;border:1px solid transparent}
.contract-process-boxes h3{font-size:1.6em;font-weight:600}
.contract-process h2{text-align:center;margin:1em;margin-bottom:1.5em;font-weight:700;color:#666; font-size: 3em; margin-top:0;}
.rtl .contract-process h2{text-align:center;margin:1em;margin-bottom:3em;font-weight:600;color:#666}
.contract-process h2 .ermile-hover{color:#10A1A6;border-bottom:5px solid #10A1A6;transition:.3s}
.contract-process-boxes .text-top-right{display:inline-block;text-align:right;position:absolute; right: 35%;top:initial; bottom: -55px;width:55%}
.rtl .contract-process-boxes .text-top-right{display:inline-block;text-align:right;position:absolute;right: 33%;top:initial; bottom: -61px;width:55%}
.contract-process-boxes .text-top-left{display:inline-block;text-align:right;position:absolute;right:13%;bottom:-45px;background-color:#fff;width:130%}
.contract-process-boxes .text-top-left h3{margin-bottom:0}
.contract-process-boxes .text-bottom-left{text-align:right;display:inline-block;position:absolute;right: 24%;bottom: -60px;width: 100%;}
.rtl .contract-process-boxes .text-bottom-left{text-align: right; display: inline-block; position: absolute; right: 32%; bottom: -5.5em; width: 100%;}
.contract-process-boxes .text-bottom-right{width:100%; text-align:right;display:inline-block;position:absolute;right:100%;top:62px}
.rtl .contract-process-boxes .text-bottom-right{text-align:right;display:inline-block;position:absolute;right:-64%;top:62px}
.contract-process-boxes .line-Horizontal{width:39%;display:inline-block;height:6em;border-top:1px solid #ddd}
.contract-process-boxes .Top-line-Horizontal{height:10em}
.contract-process-boxes .first-interview img{float:left}
.contract-process-boxes .final-contract{float:left;}
.rtl .contract-process-boxes .final-contract{float:right;}
.contract-process-boxes .check-resume{float:right;}
.rtl .contract-process-boxes .check-resume{float:left;}
.contract-process .first-line{padding:0 21%;min-height:200px;padding-bottom:10px}
.contract-process .second-line{padding:0 21%;width:48%;margin-left:22%;border-right:1px solid #ddd;border-top:none;margin-bottom:15px}
.rtl .contract-process .second-line{border-right:none ;padding:0 21%;width:48%;margin-right:22%;border-left:1px solid #ddd;border-top:none;margin-bottom:15px}
.contract-process .second-line .line-Horizontal{border-top:none}
.contract-process .third-line{padding:0 21%;min-height:200px;padding-top:10px}
.contract-process .third-line .line-Horizontal{height:10em;border-bottom:1px solid #ddd;width:39%;border-top: none;}
/* general properties */
.general-property{background-color:#f7f7f7;padding:40px 0;cursor:default;}
.general-property .green{border-bottom:none;color:#58acaf}
.general-property .span6{margin:15px 0;padding:0 15px;padding-left:35px}
.general-property .span9{padding-top:6em}
.general-property img{margin:12px;width:3em;margin-top:1em;margin-bottom:0}
.general-property h2{text-align:center;font-weight:600;font-size:5em;color:#8e8e8e}
.general-property .important_taps h2{bottom:0;right:7.8%;top:.48em}
.general-property .important_taps h2.absolute_title{position:absolute;bottom:-.5em;right:7.8%;top:initial}
.general-property .not_important_taps h2{right:6.6%;top:initial}
.general-property .not_important_taps h2.fixed_title{position:fixed;top:.65em;right:13.4%}
.general-property .not_important_taps h2.absolute_title{position:absolute;bottom:0;right:6.6%}
.general-property .general_texts_taps{position:relative}
.general-property .important_taps{position:relative}
.general-property .span9 p{padding-left:2em;text-align:left;margin-top:1.5em}
.rtl .general-property .span9 p{padding-right:2em;text-align:right;margin-top:1.5em}
.general-property .span9 p::before{content:"";background-image:url(images/svg/right-chevron.svg);width:17px;height:17px;background-size:17px;background-repeat:no-repeat;display:inline-block;position:absolute;left:5px;top:3px}
.rtl .general-property .span9 p::before{content:"";background-image:url(images/svg/left-chevron.svg);width:17px;height:17px;background-size:17px;background-repeat:no-repeat;display:inline-block;position:absolute;right:5px;top:10px}
.general-property .not-important{position:absolute;right:4%;width:87px;top:6px}
/* our opportunities */
.our-opportunity{background-color:#fff;padding:60px 0}
.our-opportunity h2{text-align:center}
.rtl .our-opportunity h3{z-index:45;font-weight:700;transition:.3s;position:relative;padding:15px;margin:0;border-radius:0 8px 8px 0;padding-left:6%;cursor:pointer}
.our-opportunity h3{z-index:45;font-weight:700;transition:.3s;position:relative;padding:15px;margin:0;border-radius:8px 0 0 8px;padding-right:5%;cursor:pointer}
.rtl .our-opportunity h3::after{content:"";height:10px;width:5px;position:absolute;left:0;bottom:50%;transition:.3s;right:initial;}
.our-opportunity h3::after{content:"";height:10px;width:5px;position:absolute;right:0;bottom:50%;transition:.3s}
.our-opportunity h3:hover{color:#666;font-weight:700}
.our-opportunity h3:hover::after{background-color:#666;height:100%;bottom:0}
.our-opportunity .active:hover h3{font-weight:700;color:#fff}
.our-opportunity .active:hover h3::after{background-color:#10A1A6;height:100%;bottom:0}
.our-opportunity h3::before{background-color:transparent;right:0;z-index:-2;content:"";height:100%;width:0;position:absolute;bottom:0;transition:.3s}
.our-opportunity .active h3{font-weight:700;color:#fff;transition-delay:.15s}
.rtl .our-opportunity .active h3::before{transition-delay:.15s;left:0;color:#fff;background-color:#10A1A6;height:100%;bottom:0;width:100%;z-index:-222;border-radius:0px 8px 8px 0px;right:initial;}
.our-opportunity .active h3::before{transition-delay:.15s;right:0;color:#fff;background-color:#10A1A6;height:100%;bottom:0;width:100%;z-index:-222;border-radius:8px 0 0 8px}
.our-opportunity .opportunity-desc{background-color:#f4f4f4;height:550px;padding:40px 30px;overflow-y:auto;position:relative}
.our-opportunity .titles{border-right:1px solid rgba(153,153,153,.4);height:550px;border-left: none;text-align: right}
.rtl .our-opportunity .titles{border-left:1px solid rgba(153,153,153,.4);height:550px;text-align: left;border-right: none;}
.our-opportunity .opportunity-desc #tab_data li{display:none}
.our-opportunity .opportunity-desc #tab_data li.selected{display:block}
.our-opportunity #generalBackImg{background-image:url(images/Job-Search.png);background-size:cover;height:470px;padding:40px 30px;background-position:center}
.our-opportunity .opportunity-desc #tab_data li .go_btn{padding:20px 30px;border:none;cursor:pointer;background-color:#737373;color:#fff;font-weight:500;font-size:1.4em;position:absolute;bottom:1em;right:3%; border-radius:2px; }
.rtl .our-opportunity .opportunity-desc #tab_data li .go_btn{padding:20px 30px;border:none;cursor:pointer;background-color:#737373;color:#fff;font-weight:500;font-size:1.4em;position:absolute;bottom:1em;left:3%}
.our-opportunity .opportunity-desc #tab_data li .go_btn:hover{background-color:#10A1A6;color:#fff}
.our-opportunity .opportunity-desc #tab_data li.selected p{position:relative;padding-left:8px;margin-bottom:.9em}
.rtl .our-opportunity .opportunity-desc #tab_data li.selected p{position:relative;padding-right:8px;margin-bottom:.9em}
.our-opportunity .opportunity-desc #tab_data li.selected p::before{content:"";background-image:url(images/svg/right-chevron.svg);width:10px;height:10px;background-size:10px;background-repeat:no-repeat;display:inline-block;position:absolute;left:-15px;top:8px}
.rtl .our-opportunity .opportunity-desc #tab_data li.selected p::before{content:"";background-image:url(images/svg/left-chevron.svg);width:10px;height:10px;background-size:10px;background-repeat:no-repeat;display:inline-block;position:absolute;right:-15px;top:8px}
/*resume taps*/
.resume-taps{background-color:#f7f7f7;padding:8em 0}
.resume-taps h2{text-align:center; font-weight:700;margin-bottom:2em; font-size:2.4em; color:#666;}
.resume-taps img{width:70%;vertical-align:text-top;margin-left:15%}
.rtl .resume-taps img{width:70%;vertical-align:text-top;margin-right:15%}
.resume-taps li{padding-left:35px}
.rtl .resume-taps li{padding-right:35px}
.resume-taps li p{position:relative;color:#555;margin-bottom:1.3em; text-align: left;}
.rtl .resume-taps li p{text-align: right;}
.resume-taps li p::before{content:"";background-image:url(images/svg/right-chevron.svg);width:17px;height:17px;background-size:17px;background-repeat:no-repeat;display:inline-block;position:absolute;left:-32px;top:3px}
.rtl .resume-taps li p::before{content:"";background-image:url(images/svg/left-chevron.svg);width:17px;height:17px;background-size:17px;background-repeat:no-repeat;display:inline-block;position:absolute;right:-32px;top:9px}
.resume-taps li p img{width:22px;float:right;float:right;vertical-align:text-top}
/*footer*/
footer{background-image:url(images/shattered_@2X.png);min-height:200px}
footer .row{padding:40px 10px;padding-bottom:10px; padding: 1em;}
footer a{color:#444;}
footer a:hover{color:#222}
footer a:focus{color:#222}
footer .contact-details{color:#222}
footer h4{color:#222;font-size:1.4em;margin:0}
footer h2{color:#222;font-weight:700;font-size:2.6em}
footer .contact-details .social-links{text-align:center;padding:20px}
footer .contact-details .social-links img{width:40px;display:inline-block;margin:10px 1%;filter:brightness(94%);transition:.3s;-webkit-filter:grayscale(100%)}
footer .contact-details .social-links img:hover{-webkit-filter:grayscale(0%)}
footer .contact-details .social-links p{text-align:center;margin-top:30px}
footer .contact-details .phone-links{display:inline-block;width:48%}
footer .contact-details .phone-links p{text-align:center}
footer .contact-details .phone-links img{margin:0;width:27px;margin-left:10px;vertical-align:text-top}
.rtl footer .contact-details .phone-links img{margin:0;width:27px;margin-right:9px;vertical-align:text-top}
footer .company-logo{padding:20px;padding: 20px;width: 30%; position: absolute;right: 10%;margin-top: 2em;}
footer .company-logo img{text-align:center;margin-right:15%;margin-top:1em; width:68%;}
footer div.lang-btn{display:block;clear:both;position:absolute;background-color:#cacaca;top:0;right:16%; }
footer div.lang-btn a{padding:1em;display:inline-block;transition:.3s; }
footer div.lang-btn a:hover{background-color:#c3c3c3; }
footer #langList a{ padding:5px; background-color:#ccc; border-radius:2px; transition:.3s; }
footer #langList a:hover{ background-color:#c1c1c1;}
/*modal form css*/
.modal p{margin:0;cursor:default}
.modal input[type=text]{background-color:#f7f7f7;border:none;border-left:5px solid transparent;display:block;width:90%;margin-left:5%;text-align:left;background-image:url(images/svg/phone-book.svg);background-position:94% 9px;background-size:25px;background-repeat:no-repeat;text-align:left;padding:10px 20px;padding-left:5%;direction:ltr;border:none;border-left:5px solid transparent;margin-top:40px}
.rtl .modal input[type=text]{background-color:#f7f7f7;border:none;border-right:5px solid transparent;display:block;width:90%;margin-right:5%;text-align:right;background-image:url(images/svg/phone-book.svg);background-position:6% 9px;background-size:25px;background-repeat:no-repeat;text-align:right;padding:10px 20px;padding-right:5%;direction:rtl;border:none;border-right:5px solid transparent;margin-top:40px}
.modal input[type=text]:focus,.modal input[type=number]:focus{border-left:5px solid #10A1A6;border-right:none;}
.rtl .modal input[type=text]:focus,.rtl .modal input[type=number]:focus{border-left:none;border-right:5px solid #10A1A6}
.modal input[type=number]{background-color:#f7f7f7;direction:ltr;display:block;width:90%;margin-left:5%;text-align:left;background-image:url(images/svg/phone-book2.svg);background-position:94% 9px;background-size:25px;background-repeat:no-repeat;padding:10px 20px;padding-right:5%;border:none;border-left:5px solid transparent;margin-top:40px;}
.rtl .modal input[type=number]{background-color:#f7f7f7;direction:ltr;display:block;width:90%;margin-right:5%;text-align:left;background-image:url(images/svg/phone-book2.svg);background-position:94% 9px;background-size:25px;background-repeat:no-repeat;padding:10px 20px;padding-right:5%;border:none;border-right:5px solid transparent;margin-top:40px;}
.rtl .modal input[type=number]{background-color:#f7f7f7;direction:ltr;display:block;width:90%;margin-right:5%;text-align:left;background-image:url(images/svg/phone-book2.svg);background-position:6% 9px;background-size:25px;background-repeat:no-repeat;padding:10px 20px;padding-right:5%;border:none;border-right:5px solid transparent;margin-top:40px;padding-left:14%}
.modal input[type=number]:hover,.modal input[type=text]:hover{border-color:rgba(16,161,166,.8)}
.modal input[type=number]:not(:placeholder-shown),.rtl .modal input[type=text]:not(:placeholder-shown){border-left:5px solid #10A1A6; border-right:none;}
.rtl .modal input[type=number]:not(:placeholder-shown),.rtl .modal input[type=text]:not(:placeholder-shown){border-left:none;border-right:5px solid #10A1A6}
.modal input[type=submit]{font-weight:600;font-size:1.2em;color:#fff;border:none;background-color:#10A1A6;cursor:pointer;width:90%;margin-left:5%;padding:10px 20px;margin-top:40px;background-image:url(images/svg/upload.svg);background-position:28% 10px;background-size:20px;background-repeat:no-repeat;outline:none;display:block}
.rtl .modal input[type=submit]{font-size:1.2em;color:#fff;border:none;background-color:#10A1A6;cursor:pointer;width:90%;margin-right:5%;padding:10px 20px;margin-top:40px;background-image:url(images/svg/upload.svg);background-position:70% 10px;background-size:20px;background-repeat:no-repeat;outline:none;display:block}
.modal input[type=submit]:hover{background-color:#15adb1}
.modal .close{width:30px;position:absolute;right:2%;top:10px;-webkit-filter:grayscale(100%);transition:.3s;cursor:pointer}
.modal .close:hover{-webkit-filter:grayscale(0%)}
.modal input[type="file"]{width:.1px;height:.1px;opacity:0;overflow:hidden;position:absolute;z-index:-1}
.modal-body label.successful{background-image:url(images/svg/checked.svg)}
.custom-file-upload{font-size:1.2em;color:#fff;border:none;background-color:#737373;cursor:pointer;width:90%;margin-left:5%;padding:10px 20px;margin-top:40px;background-image:url(images/svg/curriculum.svg);background-position:28% 10px;background-size:20px;background-repeat:no-repeat;outline:none;display:block}
.rtl .custom-file-upload{font-size:1.2em;color:#fff;border:none;background-color:#737373;cursor:pointer;width:90%;margin-right:5%;padding:10px 20px;margin-top:40px;background-image:url(images/svg/curriculum.svg);background-position:70% 10px;background-size:20px;background-repeat:no-repeat;outline:none;display:block}
.custom-file-upload:hover{background-color:#878787}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
.modal .modal-dialog{padding:30px;width:40%}
.modal .modal-title{margin-top:1em}
.modal .modal-body{opacity:0;transition:.2s}
.modal .modal-body{opacity:1;transition:.2s}
/*careers get*/
#careers_get{background:#BE93C5;background:-webkit-linear-gradient(to left, #BE93C5 , #7BC6CC);background:linear-gradient(to left, #BE93C5 , #7BC6CC);padding-top:2em}
.careers-get-list{width:65%;margin:0 auto;box-shadow:0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);border-radius:2px;overflow:hidden}
.careers-get-list li{background-color:#fff;transition:.2s;padding:10px;display:-webkit-flex;display:flex;justify-content:space-between}
.careers-get-list li:not(:last-child){border-bottom:1px solid #f1edee}
.careers-get-list li:hover{background-color:#f7f7f7}
.careers-get-list li div{color:#858585;font-size:1.4em;-webkit-flex:1;flex:1}
.careers-get-list li i{font-size:1.4em;color:#e2dedb;vertical-align:middle}
.careers-get-list li .item-user{-webkit-flex:3;flex:3}
.careers-get-list li .item-user i{color:#f77565;transition:.2s}
.careers-get-list li div:not(.item-user){text-align:center}
/* media */
@media only screen and (min-width: 1800px) { header h1{top: 4.5em;font-size: 6em;}}
@media only screen and (max-width: 1380px) {
.benefits li{width:200px;height:200px}
.benefits li img{padding:42px}
.benefits li h3{font-weight:500;margin:0;font-size:14px;color:rgba(255,255,255,0.9)}
.benefits li p{font-size:12px;line-height:1.5;color:rgba(255,255,255,0.8)}
.info{padding: 10px;padding-top:8px;}
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 104deg); transform: rotate3d(-1, 0, 0, 104deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 104deg); transform: rotate3d(-1, 0, 0, 104deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 104deg); transform: rotate3d(0, -1, 0, 104deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 104deg); transform: rotate3d(0, -1, 0, 104deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 104deg); transform: rotate3d(1, 0, 0, 104deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 104deg); transform: rotate3d(1, 0, 0, 104deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 104deg); transform: rotate3d(0, 1, 0, 104deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 104deg); transform: rotate3d(0, 1, 0, 104deg);}}
}
@media only screen and (max-width: 1300px) {
/* .general-property .important_taps h2.fixed_title{position:fixed;top:.5em;right:11%}
.general-property .important_taps h2.absolute_title{position:absolute;bottom:.55em;right:6.6%;top:initial}
.general-property .not_important_taps h2.fixed_title{top:.5em;right:11%}
.general-property .not_important_taps h2.absolute_title{position:absolute;bottom:.54em;right:6.6%}*/
.custom-file-upload{background-position:25% 9px}
.modal .modal-dialog input[type=submit]{background-position:25% 10px}
}
@media only screen and (max-width: 1170px) {
.contract-process-boxes .text-bottom-right{right:107%;top:47px}
.rtl .contract-process-boxes .text-bottom-right{right:-77%;top:47px}
footer .contact-details .social-links{padding:0}
footer .contact-details .social-links p{width:100%;margin-top:20px}
header h1{top:4.25em;right:36%;font-size:4.25em;}
.modal .modal-dialog{width:56%}
.modal .modal-dialog input[type=submit]{background-position:25% 9px}
.rtl .modal .modal-dialog input[type=submit]{background-position:70% 10px}
footer .company-logo img{width: 100%; }
}
@media only screen and (max-width: 1100px) and (orientation : landscape){
header h1{top: 4em;right: 34%;font-size: 4.25em;}
}
/*@media only screen and (max-width: 1025px) {
.general-property h2.fixed_title{right:6%}
.general-property h2.absolute_title{right:2.5%}
}*/
@media only screen and (max-width: 1000px) {
.contract-process-boxes .text-top-right{width:70%}
.contract-process-boxes .text-top-left{right:24%;bottom:-42px}
.contract-process-boxes .line-Horizontal{width:27%}
.contract-process .img-contain{width:35%}
.contract-process .third-line .line-Horizontal{width:27%}
.contract-process{padding-right:0}
.contract-process .first-line{padding:0 6%}
.contract-process .third-line{padding:0 6%}
.contract-process .second-line{margin-bottom:20px;min-height:90px;width:55.5%;}
.rtl .contract-process .second-line{margin-bottom:20px;min-height:90px;width:55.5%;}
.contract-process-boxes .text-bottom-right{ right: 19%; bottom: -6em; top:initial; }
.rtl .contract-process-boxes .text-bottom-right{right:29%;top:284px}
.resume-taps{padding:3em 0}
/* .general-property .important_taps h2.fixed_title{position:fixed;top:1.1em;right:11%}
.general-property .important_taps h2.absolute_title{position:absolute;bottom:.55em;right:6.6%;top:initial}
.general-property .not_important_taps h2.fixed_title{top:.5em;right:11%}
.general-property .not_important_taps h2.absolute_title{position:absolute;bottom:.54em;right:6.6%}*/
footer .company-logo img{margin-top: 2em;margin-right:0; }
}
@media only screen and (max-width: 900px) {
header h1{top:6.5em;right:29%}
.contract-process-boxes .text-bottom-right{right: 17%; top: 252px;}
.rtl .contract-process-boxes .text-bottom-right{right:25%;top:253px}
footer .company-logo img{margin-top: 4em;width: 90%; margin-right: 0;}
/*footer .contact-details .social-links img{ width: 38px;}*/
}
@media only screen and (max-width: 820px) {
header h1{ top: 6.6em; right: 21%; font-size: 5em;}
.rtl header h1{ top:5.3em; right:33%; font-size:3.5em; }
}
@media only screen and (max-width: 767px) {
header h1{top:8em;right:27%}
.our-opportunity .titles{height:auto}
.our-opportunity{padding:0;padding:30px 0}
.our-opportunity a h3{text-align:center}
.general-property .span6{padding:20px 10px}
.general-property .not-important{top:23px}
.general-property .span9{padding-top:0}
.general-property h2{font-size:4em;position:initial!important;margin-bottom:0}
.general-property h2 br{display:none}
.our-opportunity h3{text-align: center;}
.resume-taps img{width:22%;margin-bottom:30px; float:left; margin: 0; margin-right: 1%; margin-bottom: 2em;}
.resume-taps h2{text-align:left;font-weight:700;margin-bottom:2em; font-size:2.5em; color:#666; width:77%; display:inline-block; margin-top:3em;}
.rtl .resume-taps h2{text-align:right;}
.rtl .resume-taps img{width:23%;margin-bottom:30px; float:right; margin: 0;}
.contract-process-boxes .text-bottom-right{top:203px; right:14%; }
.rtl .contract-process-boxes .text-bottom-right{top: 23em; right: 24%;}
.rtl .our-opportunity .titles{height: auto;}
.modal .modal-dialog{width:90%}
.modal .modal-dialog input[type=submit]{background-position:30% 7px}
.rtl .modal .modal-dialog input[type=submit]{background-position:68% 10px}
.custom-file-upload{background-position:30% 7px}
.rtl .custom-file-upload{background-position:68% 7px}
.benefits li h3{font-size:13px; line-height:1.3em; }
.benefits li p{font-size:10px}
footer div.lang-btn{right:5%; }
footer .contact-details .social-links .phone-links img{margin:0;width:27px;margin-left:10px;vertical-align:middle;}
footer .company-logo{padding: 0;}
footer .company-logo img{ position: absolute; top: 82px; right: 2%; width: 28%; margin-top: 1em;}
footer .contact-details .phone-links{display: block;}
footer .contact-details .social-links p{ width:80%;}
.rtl footer .contact-details .social-links p{ margin-right:20%; }
}
@media only screen and (max-width: 768px) and (orientation : landscape){
header h1{top:5em;right: 34%;font-size: 3.5em;}
.benefits{ padding:1.4em 0; }
.our-opportunity .opportunity-desc{ height: auto;}
.benefits li img{padding: 28px;}
.benefits li {width: 144px; height: 144px;}
.info{padding-top:.18em;}
.our-opportunity .opportunity-desc{ height:auto; padding-bottom: 9em; }
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 100.2deg); transform: rotate3d(-1, 0, 0, 100.2deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 100.2deg); transform: rotate3d(-1, 0, 0, 100.2deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 100.2deg); transform: rotate3d(0, -1, 0, 100.2deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 100.2deg); transform: rotate3d(0, -1, 0, 100.2deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 100.2deg); transform: rotate3d(1, 0, 0, 100.2deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 100.2deg); transform: rotate3d(1, 0, 0, 100.2deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 100.2deg); transform: rotate3d(0, 1, 0, 100.2deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 100.2deg); transform: rotate3d(0, 1, 0, 100.2deg);}}
div.video{display: none;}
.modal .modal-body{ margin-bottom: 0;}
.modal .modal .modal-dialog{ padding: 7px 30px;}
.modal .modal-title{ margin: 0; }
.modal input[type=text], .modal input[type=number], .modal .custom-file-upload, .modal input[type=submit]{ margin-top:10px; }
.modal-dialog{ top: 49%; }
footer .company-logo img{width:73%; top:74px; }
}
@media only screen and (max-width: 570px) and (orientation: landscape){
header h1 { top: 4.2em; right: 35%; font-size: 2.8em;}
.contract-process-boxes .text-bottom-right {top: 22.4em; right: 8%;}
}
@media only screen and (max-width: 550px) {
header{min-height:500px;height: 500px;}
header h1 {top:7em;right:27%;font-size:3.4em;}
.rtl header h1 { right: 17%;}
.contract-process-boxes .text-bottom-right, .rtl .contract-process-boxes .text-bottom-right {top: 19em; right: 4%;}
.contract-process-boxes .text-bottom-left {right:-3%;bottom:-8.2em;text-align:center;}
.rtl .contract-process-boxes .text-bottom-left {right:-3%;bottom:-5.2em;text-align:center;}
.resume-taps h2{font-size:2em;}
div.video{display:none;}
footer .row{padding:1em;}
footer #langList a{padding:8px; }
footer .contact-details .social-links img{ width:37px; }
}
@media only screen and (max-width: 480px){
header h1 {top: 7.5em;right: 11%;}
.benefits li img{padding: 28px;}
.benefits li {width: 144px; height: 144px;}
.info{padding-top:1px;}
.our-opportunity .opportunity-desc{ height:auto; padding-bottom: 9em; }
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 100.2deg); transform: rotate3d(-1, 0, 0, 100.2deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 100.2deg); transform: rotate3d(-1, 0, 0, 100.2deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 100.2deg); transform: rotate3d(0, -1, 0, 100.2deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 100.2deg); transform: rotate3d(0, -1, 0, 100.2deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 100.2deg); transform: rotate3d(1, 0, 0, 100.2deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 100.2deg); transform: rotate3d(1, 0, 0, 100.2deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 100.2deg); transform: rotate3d(0, 1, 0, 100.2deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 100.2deg); transform: rotate3d(0, 1, 0, 100.2deg);}}
.benefits li h3{font-size:12px; margin: 5px 0;}
.modal .modal-dialog input[type=submit]{background-image:none}
.modal-body label.successful{background-image:none}
.custom-file-upload{background-image:none}
.rtl .custom-file-upload{background-image:none}
.modal .modal-dialog{width:90%;padding:0}
.modal .modal-dialog input[type=text]{width:80%;margin-left:10%}
.rtl .modal .modal-dialog input[type=text]{width:80%;margin-right:10%}
.custom-file-upload{width:80%;margin-left:10%}
.modal .modal-dialog input[type=number]{width:80%;margin-left:10%;}
.rtl .modal .modal-dialog input[type=number] {width:80%; margin-right:10%; padding-left:15%;}
.rtl .custom-file-upload{width:80%; margin-right:10%;}
.modal .modal-dialog input[type=submit]{width:80%;margin-left:10%}
.rtl .modal .modal-dialog input[type=submit]{width:80%;margin-right:10%}
.contract-process .first-line , .rtl .contract-process .first-line{ min-height:135px;}
.contract-process .second-line, .rtl .contract-process .second-line{ min-height:49px;}
.contract-process-boxes .Top-line-Horizontal{height:6em; }
.contract-process .third-line .line-Horizontal{ height: 6em; }
.contract-process{padding: 0;}
}
@media only screen and (max-width: 450px) {
header h1{top:7em;right:21%;font-size:3.4em;}
.info{padding:6px;padding-top:1px;}
.about-ermile{padding:0; }
div.video::after{display:none;}
.contract-process-boxes .text-bottom-right {top:13em;text-align:center;right:-13%;width:126%;}
.rtl .contract-process-boxes .text-bottom-right {top: 11.8em; right: 2%;}
.resume-taps h2 { font-size: 2em; margin-top: 0em;}
footer .contact-details .social-links img{ width:32px;}
footer .contact-details .social-links .phone-links img{width:24px;}
footer .contact-details .social-links p{width: 63%;}
.rtl footer .contact-details .social-links p{ margin-right: 37%;}
footer .company-logo img{ width: 100%; margin-top: 4em; right: -5%; }
.contract-process-boxes .text-top-right {right: 26%; bottom: -5em; }
.rtl .contract-process-boxes .text-top-right {display: inline-block;text-align: right;position: absolute;right: 19%;top: initial;bottom: -5em;width: 77%;}
.contract-process-boxes .text-top-left {right: 10%;bottom: -4em; }
.rtl .contract-process-boxes .text-top-left {right: -8%;bottom: -4em; }
}
@media only screen and (max-width: 350px) {
header h1{ font-size: 3.2em; top: 7.6em; right: 0;}
.rtl header h1{right: 12%;}
.info{padding: 5px;padding-top: 2px;}
.benefits li {width: 130px; height: 130px;}
.benefits .card.span4 { width: 100%!important;margin-right:0%!important;}
.row:before, .row:after{ display: initial;}
.row>[class*=span]:nth-child(even), .row .row>[class*=span]:nth-child(even){ margin-right:0!important;}
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 99.22deg); transform: rotate3d(-1, 0, 0, 99.22deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 99.22deg); transform: rotate3d(-1, 0, 0, 99.22deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 99.22deg); transform: rotate3d(0, -1, 0, 99.22deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 99.22deg); transform: rotate3d(0, -1, 0, 99.22deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 99.22deg); transform: rotate3d(1, 0, 0, 99.22deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 99.22deg); transform: rotate3d(1, 0, 0, 99.22deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 99.22deg); transform: rotate3d(0, 1, 0, 99.22deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 99.22deg); transform: rotate3d(0, 1, 0, 99.22deg);}}
} | public_html/static/careers/careers.css | h1,h2,h3,h4,h5,h6{color:#444;cursor:default}
span{cursor:default}
header{background:url(images/heading1.jpg) no-repeat top center;background-size:cover;height:100%;position:relative;min-height:600px;}
header h1{text-align:center;font-weight:900;font-size:5em;color:#2c3e50;position:absolute;top:6.5em;right:32%;transform:rotate(-9.6deg)}
.rtl header h1{top: 5.5em;}
header strong{color:#10A1A6;font-weight:900}
header .container{height: 100%;}
body{height:100%;background-color:#fff;}
body p{cursor:default}
.about-ermile{padding:2em 0;background-color:#fff}
.about-ermile .container{position:initial!important;text-align:center}
/* cards */
.benefits li {-webkit-perspective: 400px;perspective: 400px;}
.info {width: 100%;height: 100%;padding: 20px;position: absolute;top: 0;left: 0;border-radius: 4px;pointer-events: none;background-color: rgba(16, 161, 166, .9); -webkit-transform: rotate3d(1, 0, 0, 90deg); transform: rotate3d(1, 0, 0, 90deg);}
.in-top .info { -webkit-transform-origin: 50% 0%; transform-origin: 50% 0%; -webkit-animation: in-top 300ms ease 0ms 1 forwards; animation: in-top 300ms ease 0ms 1 forwards;}
.in-right .info { -webkit-transform-origin: 100% 0%; transform-origin: 100% 0%; -webkit-animation: in-right 300ms ease 0ms 1 forwards; animation: in-right 300ms ease 0ms 1 forwards;}
.in-bottom .info { -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; -webkit-animation: in-bottom 300ms ease 0ms 1 forwards; animation: in-bottom 300ms ease 0ms 1 forwards;}
.in-left .info { -webkit-transform-origin: 0% 0%; transform-origin: 0% 0%; -webkit-animation: in-left 300ms ease 0ms 1 forwards; animation: in-left 300ms ease 0ms 1 forwards;}
.out-top .info { -webkit-transform-origin: 50% 0%; transform-origin: 50% 0%; -webkit-animation: out-top 300ms ease 0ms 1 forwards; animation: out-top 300ms ease 0ms 1 forwards;}
.out-right .info { -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-animation: out-right 300ms ease 0ms 1 forwards; animation: out-right 300ms ease 0ms 1 forwards;}
.out-bottom .info { -webkit-transform-origin: 50% 100%; transform-origin: 50% 100%; -webkit-animation: out-bottom 300ms ease 0ms 1 forwards; animation: out-bottom 300ms ease 0ms 1 forwards;}
.out-left .info { -webkit-transform-origin: 0% 0%; transform-origin: 0% 0%; -webkit-animation: out-left 300ms ease 0ms 1 forwards; animation: out-left 300ms ease 0ms 1 forwards;}
@-webkit-keyframes in-top { from { -webkit-transform: rotate3d(-1, 0, 0, 90deg);transform: rotate3d(-1, 0, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg);transform: rotate3d(0, 0, 0, 0deg);}}
@keyframes in-top { from { -webkit-transform: rotate3d(-1, 0, 0, 90deg);transform: rotate3d(-1, 0, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg);transform: rotate3d(0, 0, 0, 0deg);}}
@-webkit-keyframes in-right { from { -webkit-transform: rotate3d(0, -1, 0, 90deg); transform: rotate3d(0, -1, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@keyframes in-right { from { -webkit-transform: rotate3d(0, -1, 0, 90deg); transform: rotate3d(0, -1, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@-webkit-keyframes in-bottom { from { -webkit-transform: rotate3d(1, 0, 0, 90deg); transform: rotate3d(1, 0, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@keyframes in-bottom { from { -webkit-transform: rotate3d(1, 0, 0, 90deg); transform: rotate3d(1, 0, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@-webkit-keyframes in-left { from { -webkit-transform: rotate3d(0, 1, 0, 90deg); transform: rotate3d(0, 1, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@keyframes in-left { from { -webkit-transform: rotate3d(0, 1, 0, 90deg); transform: rotate3d(0, 1, 0, 90deg);} to { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);}}
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 107.35deg); transform: rotate3d(-1, 0, 0, 107.35deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 107.35deg); transform: rotate3d(-1, 0, 0, 107.35deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 107.35deg); transform: rotate3d(0, -1, 0, 107.35deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 107.35deg); transform: rotate3d(0, -1, 0, 107.35deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 107.35deg); transform: rotate3d(1, 0, 0, 107.35deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 107.35deg); transform: rotate3d(1, 0, 0, 107.35deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 107.35deg); transform: rotate3d(0, 1, 0, 107.35deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 107.35deg); transform: rotate3d(0, 1, 0, 107.35deg);}}
/* benefits */
.benefits{padding:40px 0}
.benefits .span4 p{padding:10px 30px;color:#666;text-align:left}
.rtl .benefits .span4 p{padding:10px 30px;color:#666;text-align:right}
.benefits h2{text-align:center;margin-top:25px;margin-bottom:28px;color:#666;font-weight:600;font-size:3em}
.benefits h2 strong,.our-opportunity h2 strong{color:#10A1A6;font-weight:900;border-bottom:5px solid #10A1A6}
.benefits li img{width:100%;padding:52px}
.benefits ul{padding:0;margin:0 0 50px}
.benefits ul:after{content:"";display:table;clear:both}
.benefits li{position:relative;width:250px;height:250px;margin:5px;padding:0;list-style:none;display: inline-block;}
.benefits li a{display:inline-block;vertical-align:top;text-decoration:none;border-radius:4px}
.benefits li h3{font-weight:500;margin:0;font-size:16px;color:rgba(255,255,255,0.9); line-height:1.8em;}
.benefits li p{font-size:13px;line-height:1.5;color:rgba(255,255,255,0.8)}
.benefits li .normal{width:100%;height:100%;background-color:#ECF0F1;color:rgba(52,73,94,0.6);box-shadow:inset 0 2px 20px #e6ebed;text-align:center;font-size:50px;cursor:default;overflow: hidden;}
.benefits li .normal svg{pointer-events:none;width:50px}
.benefits li .normal svg path{fill:rgba(52,73,94,0.2)}
*{box-sizing:border-box}
/* video */
#bgvid{width:100%;}
div.video{position: relative;}
div.video::after{content:"";width: 100%; height:50px; background-color:#fff;display:block;position: absolute;bottom: 0;height: 18%;}
/* contract process */
.contract-process{background-color:#fff;padding:3em 0;padding-bottom:7em}
.contract-process{background-color:#fff;padding:3em 0;padding-bottom:11em; padding-top:0; }
.contract-process .img-contain{width:29%;display:inline-block;position:relative;border-radius:50%}
.contract-process-boxes img{opacity:.85;width:100%;border-radius:50%;border:8px solid transparent;transition:all .3s ease}
.contract-process-boxes img:hover{opacity:1;border:1px solid transparent}
.contract-process-boxes h3{font-size:1.6em;font-weight:600}
.contract-process h2{text-align:center;margin:1em;margin-bottom:1.5em;font-weight:700;color:#666; font-size: 3em; margin-top:0;}
.rtl .contract-process h2{text-align:center;margin:1em;margin-bottom:3em;font-weight:600;color:#666}
.contract-process h2 .ermile-hover{color:#10A1A6;border-bottom:5px solid #10A1A6;transition:.3s}
.contract-process-boxes .text-top-right{display:inline-block;text-align:right;position:absolute; right: 35%;top:initial; bottom: -55px;width:55%}
.rtl .contract-process-boxes .text-top-right{display:inline-block;text-align:right;position:absolute;right: 33%;top:initial; bottom: -61px;width:55%}
.contract-process-boxes .text-top-left{display:inline-block;text-align:right;position:absolute;right:13%;bottom:-45px;background-color:#fff;width:130%}
.contract-process-boxes .text-top-left h3{margin-bottom:0}
.contract-process-boxes .text-bottom-left{text-align:right;display:inline-block;position:absolute;right: 24%;bottom: -60px;width: 100%;}
.rtl .contract-process-boxes .text-bottom-left{text-align: right; display: inline-block; position: absolute; right: 32%; bottom: -5.5em; width: 100%;}
.contract-process-boxes .text-bottom-right{width:100%; text-align:right;display:inline-block;position:absolute;right:100%;top:62px}
.rtl .contract-process-boxes .text-bottom-right{text-align:right;display:inline-block;position:absolute;right:-64%;top:62px}
.contract-process-boxes .line-Horizontal{width:39%;display:inline-block;height:6em;border-top:1px solid #ddd}
.contract-process-boxes .Top-line-Horizontal{height:10em}
.contract-process-boxes .first-interview img{float:left}
.contract-process-boxes .final-contract{float:left;}
.rtl .contract-process-boxes .final-contract{float:right;}
.contract-process-boxes .check-resume{float:right;}
.rtl .contract-process-boxes .check-resume{float:left;}
.contract-process .first-line{padding:0 21%;min-height:200px;padding-bottom:10px}
.contract-process .second-line{padding:0 21%;width:48%;margin-left:22%;border-right:1px solid #ddd;border-top:none;margin-bottom:15px}
.rtl .contract-process .second-line{border-right:none ;padding:0 21%;width:48%;margin-right:22%;border-left:1px solid #ddd;border-top:none;margin-bottom:15px}
.contract-process .second-line .line-Horizontal{border-top:none}
.contract-process .third-line{padding:0 21%;min-height:200px;padding-top:10px}
.contract-process .third-line .line-Horizontal{height:10em;border-bottom:1px solid #ddd;width:39%;border-top: none;}
/* general properties */
.general-property{background-color:#f7f7f7;padding:40px 0;cursor:default;}
.general-property .green{border-bottom:none;color:#58acaf}
.general-property .span6{margin:15px 0;padding:0 15px;padding-left:35px}
.general-property .span9{padding-top:6em}
.general-property img{margin:12px;width:3em;margin-top:1em;margin-bottom:0}
.general-property h2{text-align:center;font-weight:600;font-size:5em;color:#8e8e8e}
.general-property .important_taps h2{bottom:0;right:7.8%;top:.48em}
.general-property .important_taps h2.absolute_title{position:absolute;bottom:-.5em;right:7.8%;top:initial}
.general-property .not_important_taps h2{right:6.6%;top:initial}
.general-property .not_important_taps h2.fixed_title{position:fixed;top:.65em;right:13.4%}
.general-property .not_important_taps h2.absolute_title{position:absolute;bottom:0;right:6.6%}
.general-property .general_texts_taps{position:relative}
.general-property .important_taps{position:relative}
.general-property .span9 p{padding-left:2em;text-align:left;margin-top:1.5em}
.rtl .general-property .span9 p{padding-right:2em;text-align:right;margin-top:1.5em}
.general-property .span9 p::before{content:"";background-image:url(images/svg/right-chevron.svg);width:17px;height:17px;background-size:17px;background-repeat:no-repeat;display:inline-block;position:absolute;left:5px;top:3px}
.rtl .general-property .span9 p::before{content:"";background-image:url(images/svg/left-chevron.svg);width:17px;height:17px;background-size:17px;background-repeat:no-repeat;display:inline-block;position:absolute;right:5px;top:10px}
.general-property .not-important{position:absolute;right:4%;width:87px;top:6px}
/* our opportunities */
.our-opportunity{background-color:#fff;padding:60px 0}
.our-opportunity h2{text-align:center}
.rtl .our-opportunity h3{z-index:45;font-weight:700;transition:.3s;position:relative;padding:15px;margin:0;border-radius:0 8px 8px 0;padding-left:6%;cursor:pointer}
.our-opportunity h3{z-index:45;font-weight:700;transition:.3s;position:relative;padding:15px;margin:0;border-radius:8px 0 0 8px;padding-right:5%;cursor:pointer}
.rtl .our-opportunity h3::after{content:"";height:10px;width:5px;position:absolute;left:0;bottom:50%;transition:.3s;right:initial;}
.our-opportunity h3::after{content:"";height:10px;width:5px;position:absolute;right:0;bottom:50%;transition:.3s}
.our-opportunity h3:hover{color:#666;font-weight:700}
.our-opportunity h3:hover::after{background-color:#666;height:100%;bottom:0}
.our-opportunity .active:hover h3{font-weight:700;color:#fff}
.our-opportunity .active:hover h3::after{background-color:#10A1A6;height:100%;bottom:0}
.our-opportunity h3::before{background-color:transparent;right:0;z-index:-2;content:"";height:100%;width:0;position:absolute;bottom:0;transition:.3s}
.our-opportunity .active h3{font-weight:700;color:#fff;transition-delay:.15s}
.rtl .our-opportunity .active h3::before{transition-delay:.15s;left:0;color:#fff;background-color:#10A1A6;height:100%;bottom:0;width:100%;z-index:-222;border-radius:0px 8px 8px 0px;right:initial;}
.our-opportunity .active h3::before{transition-delay:.15s;right:0;color:#fff;background-color:#10A1A6;height:100%;bottom:0;width:100%;z-index:-222;border-radius:8px 0 0 8px}
.our-opportunity .opportunity-desc{background-color:#f4f4f4;height:550px;padding:40px 30px;overflow-y:auto;position:relative}
.our-opportunity .titles{border-right:1px solid rgba(153,153,153,.4);height:550px;border-left: none;text-align: right}
.rtl .our-opportunity .titles{border-left:1px solid rgba(153,153,153,.4);height:550px;text-align: left;border-right: none;}
.our-opportunity .opportunity-desc #tab_data li{display:none}
.our-opportunity .opportunity-desc #tab_data li.selected{display:block}
.our-opportunity #generalBackImg{background-image:url(images/Job-Search.png);background-size:cover;height:470px;padding:40px 30px;background-position:center}
.our-opportunity .opportunity-desc #tab_data li .go_btn{padding:20px 30px;border:none;cursor:pointer;background-color:#737373;color:#fff;font-weight:500;font-size:1.4em;position:absolute;bottom:1em;right:3%; border-radius:2px; }
.rtl .our-opportunity .opportunity-desc #tab_data li .go_btn{padding:20px 30px;border:none;cursor:pointer;background-color:#737373;color:#fff;font-weight:500;font-size:1.4em;position:absolute;bottom:1em;left:3%}
.our-opportunity .opportunity-desc #tab_data li .go_btn:hover{background-color:#10A1A6;color:#fff}
.our-opportunity .opportunity-desc #tab_data li.selected p{position:relative;padding-left:8px;margin-bottom:.9em}
.rtl .our-opportunity .opportunity-desc #tab_data li.selected p{position:relative;padding-right:8px;margin-bottom:.9em}
.our-opportunity .opportunity-desc #tab_data li.selected p::before{content:"";background-image:url(images/svg/right-chevron.svg);width:10px;height:10px;background-size:10px;background-repeat:no-repeat;display:inline-block;position:absolute;left:-15px;top:8px}
.rtl .our-opportunity .opportunity-desc #tab_data li.selected p::before{content:"";background-image:url(images/svg/left-chevron.svg);width:10px;height:10px;background-size:10px;background-repeat:no-repeat;display:inline-block;position:absolute;right:-15px;top:8px}
/*resume taps*/
.resume-taps{background-color:#f7f7f7;padding:8em 0}
.resume-taps h2{text-align:center; font-weight:700;margin-bottom:2em; font-size:2.4em; color:#666;}
.resume-taps img{width:70%;vertical-align:text-top;margin-left:15%}
.rtl .resume-taps img{width:70%;vertical-align:text-top;margin-right:15%}
.resume-taps li{padding-left:35px}
.rtl .resume-taps li{padding-right:35px}
.resume-taps li p{position:relative;color:#555;margin-bottom:1.3em; text-align: left;}
.rtl .resume-taps li p{text-align: right;}
.resume-taps li p::before{content:"";background-image:url(images/svg/right-chevron.svg);width:17px;height:17px;background-size:17px;background-repeat:no-repeat;display:inline-block;position:absolute;left:-32px;top:3px}
.rtl .resume-taps li p::before{content:"";background-image:url(images/svg/left-chevron.svg);width:17px;height:17px;background-size:17px;background-repeat:no-repeat;display:inline-block;position:absolute;right:-32px;top:9px}
.resume-taps li p img{width:22px;float:right;float:right;vertical-align:text-top}
/*footer*/
footer{background-image:url(images/shattered_@2X.png);min-height:200px}
footer .row{padding:40px 10px;padding-bottom:10px; padding: 1em;}
footer a{color:#444;}
footer a:hover{color:#222}
footer a:focus{color:#222}
footer .contact-details{color:#222}
footer h4{color:#222;font-size:1.4em;margin:0}
footer h2{color:#222;font-weight:700;font-size:2.6em}
footer .contact-details .social-links{text-align:center;padding:20px}
footer .contact-details .social-links img{width:40px;display:inline-block;margin:10px 1%;filter:brightness(94%);transition:.3s;-webkit-filter:grayscale(100%)}
footer .contact-details .social-links img:hover{-webkit-filter:grayscale(0%)}
footer .contact-details .social-links p{text-align:center;margin-top:30px}
footer .contact-details .phone-links{display:inline-block;width:48%}
footer .contact-details .phone-links p{text-align:center}
footer .contact-details .phone-links img{margin:0;width:27px;margin-left:10px;vertical-align:text-top}
.rtl footer .contact-details .phone-links img{margin:0;width:27px;margin-right:9px;vertical-align:text-top}
footer .company-logo{padding:20px;padding: 20px;width: 30%; position: absolute;right: 10%;margin-top: 2em;}
footer .company-logo img{text-align:center;margin-right:15%;margin-top:1em; width:68%;}
footer div.lang-btn{display:block;clear:both;position:absolute;background-color:#cacaca;top:0;right:16%; }
footer div.lang-btn a{padding:1em;display:inline-block;transition:.3s; }
footer div.lang-btn a:hover{background-color:#c3c3c3; }
footer #langList a{ padding:5px; background-color:#ccc; border-radius:2px; transition:.3s; }
footer #langList a:hover{ background-color:#c1c1c1;}
/*modal form css*/
.modal p{margin:0;cursor:default}
.modal input[type=text]{background-color:#f7f7f7;border:none;border-left:5px solid transparent;display:block;width:90%;margin-left:5%;text-align:left;background-image:url(images/svg/phone-book.svg);background-position:94% 9px;background-size:25px;background-repeat:no-repeat;text-align:left;padding:10px 20px;padding-left:5%;direction:ltr;border:none;border-left:5px solid transparent;margin-top:40px}
.rtl .modal input[type=text]{background-color:#f7f7f7;border:none;border-right:5px solid transparent;display:block;width:90%;margin-right:5%;text-align:right;background-image:url(images/svg/phone-book.svg);background-position:6% 9px;background-size:25px;background-repeat:no-repeat;text-align:right;padding:10px 20px;padding-right:5%;direction:rtl;border:none;border-right:5px solid transparent;margin-top:40px}
.modal input[type=text]:focus,.modal input[type=number]:focus{border-left:5px solid #10A1A6;border-right:none;}
.rtl .modal input[type=text]:focus,.rtl .modal input[type=number]:focus{border-left:none;border-right:5px solid #10A1A6}
.modal input[type=number]{background-color:#f7f7f7;direction:ltr;display:block;width:90%;margin-left:5%;text-align:left;background-image:url(images/svg/phone-book2.svg);background-position:94% 9px;background-size:25px;background-repeat:no-repeat;padding:10px 20px;padding-right:5%;border:none;border-left:5px solid transparent;margin-top:40px;}
.rtl .modal input[type=number]{background-color:#f7f7f7;direction:ltr;display:block;width:90%;margin-right:5%;text-align:left;background-image:url(images/svg/phone-book2.svg);background-position:94% 9px;background-size:25px;background-repeat:no-repeat;padding:10px 20px;padding-right:5%;border:none;border-right:5px solid transparent;margin-top:40px;}
.rtl .modal input[type=number]{background-color:#f7f7f7;direction:ltr;display:block;width:90%;margin-right:5%;text-align:left;background-image:url(images/svg/phone-book2.svg);background-position:6% 9px;background-size:25px;background-repeat:no-repeat;padding:10px 20px;padding-right:5%;border:none;border-right:5px solid transparent;margin-top:40px;padding-left:14%}
.modal input[type=number]:hover,.modal input[type=text]:hover{border-color:rgba(16,161,166,.8)}
.modal input[type=number]:not(:placeholder-shown),.rtl .modal input[type=text]:not(:placeholder-shown){border-left:5px solid #10A1A6; border-right:none;}
.rtl .modal input[type=number]:not(:placeholder-shown),.rtl .modal input[type=text]:not(:placeholder-shown){border-left:none;border-right:5px solid #10A1A6}
.modal input[type=submit]{font-weight:600;font-size:1.2em;color:#fff;border:none;background-color:#10A1A6;cursor:pointer;width:90%;margin-left:5%;padding:10px 20px;margin-top:40px;background-image:url(images/svg/upload.svg);background-position:28% 10px;background-size:20px;background-repeat:no-repeat;outline:none;display:block}
.rtl .modal input[type=submit]{font-size:1.2em;color:#fff;border:none;background-color:#10A1A6;cursor:pointer;width:90%;margin-right:5%;padding:10px 20px;margin-top:40px;background-image:url(images/svg/upload.svg);background-position:70% 10px;background-size:20px;background-repeat:no-repeat;outline:none;display:block}
.modal input[type=submit]:hover{background-color:#15adb1}
.modal .close{width:30px;position:absolute;right:2%;top:10px;-webkit-filter:grayscale(100%);transition:.3s;cursor:pointer}
.modal .close:hover{-webkit-filter:grayscale(0%)}
.modal input[type="file"]{width:.1px;height:.1px;opacity:0;overflow:hidden;position:absolute;z-index:-1}
.modal-body label.successful{background-image:url(images/svg/checked.svg)}
.custom-file-upload{font-size:1.2em;color:#fff;border:none;background-color:#737373;cursor:pointer;width:90%;margin-left:5%;padding:10px 20px;margin-top:40px;background-image:url(images/svg/curriculum.svg);background-position:28% 10px;background-size:20px;background-repeat:no-repeat;outline:none;display:block}
.rtl .custom-file-upload{font-size:1.2em;color:#fff;border:none;background-color:#737373;cursor:pointer;width:90%;margin-right:5%;padding:10px 20px;margin-top:40px;background-image:url(images/svg/curriculum.svg);background-position:70% 10px;background-size:20px;background-repeat:no-repeat;outline:none;display:block}
.custom-file-upload:hover{background-color:#878787}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
.modal .modal-dialog{padding:30px;width:40%}
.modal .modal-title{margin-top:1em}
.modal .modal-body{opacity:0;transition:.2s}
.modal .modal-body{opacity:1;transition:.2s}
/*careers get*/
#careers_get{background:#BE93C5;background:-webkit-linear-gradient(to left, #BE93C5 , #7BC6CC);background:linear-gradient(to left, #BE93C5 , #7BC6CC);padding-top:2em}
.careers-get-list{width:65%;margin:0 auto;box-shadow:0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);border-radius:2px;overflow:hidden}
.careers-get-list li{background-color:#fff;transition:.2s;padding:10px;display:-webkit-flex;display:flex;justify-content:space-between}
.careers-get-list li:not(:last-child){border-bottom:1px solid #f1edee}
.careers-get-list li:hover{background-color:#f7f7f7}
.careers-get-list li div{color:#858585;font-size:1.4em;-webkit-flex:1;flex:1}
.careers-get-list li i{font-size:1.4em;color:#e2dedb;vertical-align:middle}
.careers-get-list li .item-user{-webkit-flex:3;flex:3}
.careers-get-list li .item-user i{color:#f77565;transition:.2s}
.careers-get-list li div:not(.item-user){text-align:center}
/* media */
@media only screen and (min-width: 1800px) { header h1{top: 4.5em;font-size: 6em;}}
@media only screen and (max-width: 1380px) {
.benefits li{width:200px;height:200px}
.benefits li img{padding:42px}
.benefits li h3{font-weight:500;margin:0;font-size:14px;color:rgba(255,255,255,0.9)}
.benefits li p{font-size:12px;line-height:1.5;color:rgba(255,255,255,0.8)}
.info{padding: 10px;padding-top:8px;}
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 104deg); transform: rotate3d(-1, 0, 0, 104deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 104deg); transform: rotate3d(-1, 0, 0, 104deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 104deg); transform: rotate3d(0, -1, 0, 104deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 104deg); transform: rotate3d(0, -1, 0, 104deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 104deg); transform: rotate3d(1, 0, 0, 104deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 104deg); transform: rotate3d(1, 0, 0, 104deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 104deg); transform: rotate3d(0, 1, 0, 104deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 104deg); transform: rotate3d(0, 1, 0, 104deg);}}
}
@media only screen and (max-width: 1300px) {
/* .general-property .important_taps h2.fixed_title{position:fixed;top:.5em;right:11%}
.general-property .important_taps h2.absolute_title{position:absolute;bottom:.55em;right:6.6%;top:initial}
.general-property .not_important_taps h2.fixed_title{top:.5em;right:11%}
.general-property .not_important_taps h2.absolute_title{position:absolute;bottom:.54em;right:6.6%}*/
.custom-file-upload{background-position:25% 9px}
.modal .modal-dialog input[type=submit]{background-position:25% 10px}
}
@media only screen and (max-width: 1170px) {
.contract-process-boxes .text-bottom-right{right:107%;top:47px}
.rtl .contract-process-boxes .text-bottom-right{right:-77%;top:47px}
footer .contact-details .social-links{padding:0}
footer .contact-details .social-links p{width:100%;margin-top:20px}
header h1{top:4.25em;right:36%;font-size:4.25em;}
.modal .modal-dialog{width:56%}
.modal .modal-dialog input[type=submit]{background-position:25% 9px}
.rtl .modal .modal-dialog input[type=submit]{background-position:70% 10px}
footer .company-logo img{width: 100%; }
}
@media only screen and (max-width: 1100px) and (orientation : landscape){
header h1{top: 4em;right: 34%;font-size: 4.25em;}
}
/*@media only screen and (max-width: 1025px) {
.general-property h2.fixed_title{right:6%}
.general-property h2.absolute_title{right:2.5%}
}*/
@media only screen and (max-width: 1000px) {
.contract-process-boxes .text-top-right{width:70%}
.contract-process-boxes .text-top-left{right:24%;bottom:-42px}
.contract-process-boxes .line-Horizontal{width:27%}
.contract-process .img-contain{width:35%}
.contract-process .third-line .line-Horizontal{width:27%}
.contract-process{padding-right:0}
.contract-process .first-line{padding:0 6%}
.contract-process .third-line{padding:0 6%}
.contract-process .second-line{margin-bottom:20px;min-height:90px;width:55.5%;}
.rtl .contract-process .second-line{margin-bottom:20px;min-height:90px;width:55.5%;}
.contract-process-boxes .text-bottom-right{ right: 19%; bottom: -6em; top:initial; }
.rtl .contract-process-boxes .text-bottom-right{right:29%;top:284px}
.resume-taps{padding:3em 0}
/* .general-property .important_taps h2.fixed_title{position:fixed;top:1.1em;right:11%}
.general-property .important_taps h2.absolute_title{position:absolute;bottom:.55em;right:6.6%;top:initial}
.general-property .not_important_taps h2.fixed_title{top:.5em;right:11%}
.general-property .not_important_taps h2.absolute_title{position:absolute;bottom:.54em;right:6.6%}*/
footer .company-logo img{margin-top: 2em;margin-right:0; }
}
@media only screen and (max-width: 900px) {
header h1{top:6.5em;right:29%}
.contract-process-boxes .text-bottom-right{right: 17%; top: 252px;}
.rtl .contract-process-boxes .text-bottom-right{right:25%;top:253px}
footer .company-logo img{margin-top: 4em;width: 90%; margin-right: 0;}
/*footer .contact-details .social-links img{ width: 38px;}*/
}
@media only screen and (max-width: 820px) {
header h1{ top: 6.6em; right: 21%; font-size: 5em;}
.rtl header h1{ top:5.3em; right:33%; font-size:3.5em; }
}
@media only screen and (max-width: 767px) {
header h1{top:8em;right:27%}
.our-opportunity .titles{height:auto}
.our-opportunity{padding:0;padding:30px 0}
.our-opportunity a h3{text-align:center}
.general-property .span6{padding:20px 10px}
.general-property .not-important{top:23px}
.general-property .span9{padding-top:0}
.general-property h2{font-size:4em;position:initial!important;margin-bottom:0}
.general-property h2 br{display:none}
.our-opportunity h3{text-align: center;}
.resume-taps img{width:22%;margin-bottom:30px; float:left; margin: 0; margin-right: 1%; margin-bottom: 2em;}
.resume-taps h2{text-align:left;font-weight:700;margin-bottom:2em; font-size:2.5em; color:#666; width:77%; display:inline-block; margin-top:3em;}
.rtl .resume-taps h2{text-align:right;}
.rtl .resume-taps img{width:23%;margin-bottom:30px; float:right; margin: 0;}
.contract-process-boxes .text-bottom-right{top:203px; right:14%; }
.rtl .contract-process-boxes .text-bottom-right{top: 23em; right: 24%;}
.rtl .our-opportunity .titles{height: auto;}
.modal .modal-dialog{width:90%}
.modal .modal-dialog input[type=submit]{background-position:30% 7px}
.rtl .modal .modal-dialog input[type=submit]{background-position:68% 10px}
.custom-file-upload{background-position:30% 7px}
.rtl .custom-file-upload{background-position:68% 7px}
.benefits li h3{font-size:13px; line-height:1.3em; }
.benefits li p{font-size:10px}
footer div.lang-btn{right:5%; }
footer .contact-details .social-links .phone-links img{margin:0;width:27px;margin-left:10px;vertical-align:middle;}
footer .company-logo{padding: 0;}
footer .company-logo img{ position: absolute; top: 82px; right: 2%; width: 28%; margin-top: 1em;}
footer .contact-details .phone-links{display: block;}
footer .contact-details .social-links p{ width:80%;}
.rtl footer .contact-details .social-links p{ margin-right:20%; }
}
@media only screen and (max-width: 768px) and (orientation : landscape){
header h1{top:5em;right: 34%;font-size: 3.5em;}
.benefits{ padding:1.4em 0; }
.our-opportunity .opportunity-desc{ height: auto;}
.benefits li img{padding: 28px;}
.benefits li {width: 144px; height: 144px;}
.info{padding-top:.18em;}
.our-opportunity .opportunity-desc{ height:auto; padding-bottom: 9em; }
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 100.2deg); transform: rotate3d(-1, 0, 0, 100.2deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 100.2deg); transform: rotate3d(-1, 0, 0, 100.2deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 100.2deg); transform: rotate3d(0, -1, 0, 100.2deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 100.2deg); transform: rotate3d(0, -1, 0, 100.2deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 100.2deg); transform: rotate3d(1, 0, 0, 100.2deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 100.2deg); transform: rotate3d(1, 0, 0, 100.2deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 100.2deg); transform: rotate3d(0, 1, 0, 100.2deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 100.2deg); transform: rotate3d(0, 1, 0, 100.2deg);}}
div.video{display: none;}
.modal .modal-body{ margin-bottom: 0;}
.modal .modal .modal-dialog{ padding: 7px 30px;}
.modal .modal-title{ margin: 0; }
.modal input[type=text], .modal input[type=number], .modal .custom-file-upload, .modal input[type=submit]{ margin-top:10px; }
.modal-dialog{ top: 49%; }
footer .company-logo img{width:73%; top:74px; }
}
@media only screen and (max-width: 570px) and (orientation: landscape){
header h1 { top: 4.2em; right: 35%; font-size: 2.8em;}
.contract-process-boxes .text-bottom-right {top: 22.4em; right: 8%;}
}
@media only screen and (max-width: 550px) {
header{min-height:500px;height: 500px;}
header h1 {top:7em;right:27%;font-size:3.4em;}
.rtl header h1 { right: 17%;}
.contract-process-boxes .text-bottom-right, .rtl .contract-process-boxes .text-bottom-right {top: 19em; right: 4%;}
.contract-process-boxes .text-bottom-left {right:-3%;bottom:-8.2em;text-align:center;}
.rtl .contract-process-boxes .text-bottom-left {right:-3%;bottom:-5.2em;text-align:center;}
.resume-taps h2{font-size:2em;}
div.video{display:none;}
footer .row{padding:1em;}
footer #langList a{padding:8px; }
footer .contact-details .social-links img{ width:37px; }
}
@media only screen and (max-width: 480px){
header h1 {top: 7.5em;right: 11%;}
.benefits li img{padding: 28px;}
.benefits li {width: 144px; height: 144px;}
.info{padding-top:1px;}
.our-opportunity .opportunity-desc{ height:auto; padding-bottom: 9em; }
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 100.2deg); transform: rotate3d(-1, 0, 0, 100.2deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 100.2deg); transform: rotate3d(-1, 0, 0, 100.2deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 100.2deg); transform: rotate3d(0, -1, 0, 100.2deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 100.2deg); transform: rotate3d(0, -1, 0, 100.2deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 100.2deg); transform: rotate3d(1, 0, 0, 100.2deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 100.2deg); transform: rotate3d(1, 0, 0, 100.2deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 100.2deg); transform: rotate3d(0, 1, 0, 100.2deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 100.2deg); transform: rotate3d(0, 1, 0, 100.2deg);}}
.benefits li h3{font-size:12px; margin: 5px 0;}
.modal .modal-dialog input[type=submit]{background-image:none}
.modal-body label.successful{background-image:none}
.custom-file-upload{background-image:none}
.rtl .custom-file-upload{background-image:none}
.modal .modal-dialog{width:90%;padding:0}
.modal .modal-dialog input[type=text]{width:80%;margin-left:10%}
.rtl .modal .modal-dialog input[type=text]{width:80%;margin-right:10%}
.custom-file-upload{width:80%;margin-left:10%}
.modal .modal-dialog input[type=number]{width:80%;margin-left:10%;}
.rtl .modal .modal-dialog input[type=number] {width:80%; margin-right:10%; padding-left:15%;}
.rtl .custom-file-upload{width:80%; margin-right:10%;}
.modal .modal-dialog input[type=submit]{width:80%;margin-left:10%}
.rtl .modal .modal-dialog input[type=submit]{width:80%;margin-right:10%}
.contract-process .first-line , .rtl .contract-process .first-line{ min-height:135px;}
.contract-process .second-line, .rtl .contract-process .second-line{ min-height:49px;}
.contract-process-boxes .Top-line-Horizontal{height:6em; }
.contract-process .third-line .line-Horizontal{ height: 6em; }
.contract-process{padding: 0;}
}
@media only screen and (max-width: 450px) {
header h1{top:7em;right:21%;font-size:3.4em;}
.info{padding:6px;padding-top:1px;}
.about-ermile{padding:0; }
div.video::after{display:none;}
.contract-process-boxes .text-bottom-right {top:13em;text-align:center;right:-13%;width:126%;}
.rtl .contract-process-boxes .text-bottom-right {top: 11.8em; right: 2%;}
.resume-taps h2 { font-size: 2em; margin-top: 0em;}
footer .contact-details .social-links img{ width:32px;}
footer .contact-details .social-links .phone-links img{width:24px;}
footer .contact-details .social-links p{width: 63%;}
.rtl footer .contact-details .social-links p{ margin-right: 37%;}
footer .company-logo img{ width: 100%; margin-top: 4em; right: -5%; }
.contract-process-boxes .text-top-right {right: 26%; bottom: -5em; }
.rtl .contract-process-boxes .text-top-right {display: inline-block;text-align: right;position: absolute;right: 19%;top: initial;bottom: -5em;width: 77%;}
.contract-process-boxes .text-top-left {right: 10%;bottom: -4em; }
.rtl .contract-process-boxes .text-top-left {right: -8%;bottom: -4em; }
}
@media only screen and (max-width: 350px) {
header h1{ font-size: 3.2em; top: 7.6em; right: 0;}
.rtl header h1{right: 12%;}
.info{padding: 5px;padding-top: 2px;}
.benefits li {width: 130px; height: 130px;}
.benefits .card.span4 { width: 100%!important;margin-right:0%!important;}
.row:before, .row:after{ display: initial;}
.row>[class*=span]:nth-child(even), .row .row>[class*=span]:nth-child(even){ margin-right:0!important;}
@-webkit-keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 99.22deg); transform: rotate3d(-1, 0, 0, 99.22deg);}}
@keyframes out-top { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(-1, 0, 0, 99.22deg); transform: rotate3d(-1, 0, 0, 99.22deg);}}
@-webkit-keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 99.22deg); transform: rotate3d(0, -1, 0, 99.22deg);}}
@keyframes out-right { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, -1, 0, 99.22deg); transform: rotate3d(0, -1, 0, 99.22deg);}}
@-webkit-keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 99.22deg); transform: rotate3d(1, 0, 0, 99.22deg);}}
@keyframes out-bottom { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(1, 0, 0, 99.22deg); transform: rotate3d(1, 0, 0, 99.22deg);}}
@-webkit-keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 99.22deg); transform: rotate3d(0, 1, 0, 99.22deg);}}
@keyframes out-left { from { -webkit-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg);} to { -webkit-transform: rotate3d(0, 1, 0, 99.22deg); transform: rotate3d(0, 1, 0, 99.22deg);}}
} | 0.359926 | 0.180974 |
.footer {
text-align: center;
font-family: sans-serif;
text-decoration-color: black;
}
.content {
height: 400px;
margin-bottom: 15px;
}
.main-section {
overflow: hidden;
height: 500px;
position: relative;
}
.main-section-text {
bottom: 10px;
left: 10px;
position: absolute;
font-family: 'Satisfy', sans-serif;
text-shadow: 2px 2px black;
height: 250px;
margin-bottom: 150px;
}
.main-title {
color: white;
font-size: 3.0em;
margin-top: 0px;
}
.main-section-img {
height: 80%;
width: 100%;
object-fit: cover;
}
.main-description {
color: white;
font-size: 2.5em;
margin-top: 0px;
}
/*.About-container{
display: flex;
justify-content: space-evenly;
}
.About-us{
font-family: sans-serif;
text-align: center;
background-image: url(/img/gg.jpg);
padding: 10px;
margin-top: 15px;
}
.About-Desc{
margin-left: 70px;
margin-right: 70px;
}*/
.map-section {
background-color: darkcyan;
padding: 2px;
margin-top: 15px;
display: flex;
flex-wrap: wrap;
}
#map {
height: 350px;
width: 100%;
}
.map-text {
font-size: 50px;
text-align: center;
margin: auto;
}
/* aqui empecé*/
/* formulario*/
.form {
background-color: black;
opacity: 0.8;
max-height: 100%;
width: 98%;
max-width: 400px;
color: white;
box-shadow: 7px 13px 37px #000;
font-family: 'calibri';
padding: 30px;
margin: auto;
border-radius: 15px;
}
/* titulo */
.lee {
padding-top: 90px;
font-family: 'Satisfy', sans-serif;
font-size: 50px;
color: white;
text-align: center;
}
/* submit*/
.sub {
margin-left: 250px;
background-color: aliceblue;
}
/* contenedor de seccion*/
.cont-section {
background-image: url(gg.jpg);
background-size: cover;
margin-top: 10px;
height: 600px;
margin-bottom: 10px;
align-content: center;
}
.email,
.name {
width: 300px;
}
.lab_email {
margin-top: 45px;
}
.sub {
border-radius: 10px;
margin-top: 15px;
margin-left: 240px;
} | ExamenEquipofinal-master/index.css | .footer {
text-align: center;
font-family: sans-serif;
text-decoration-color: black;
}
.content {
height: 400px;
margin-bottom: 15px;
}
.main-section {
overflow: hidden;
height: 500px;
position: relative;
}
.main-section-text {
bottom: 10px;
left: 10px;
position: absolute;
font-family: 'Satisfy', sans-serif;
text-shadow: 2px 2px black;
height: 250px;
margin-bottom: 150px;
}
.main-title {
color: white;
font-size: 3.0em;
margin-top: 0px;
}
.main-section-img {
height: 80%;
width: 100%;
object-fit: cover;
}
.main-description {
color: white;
font-size: 2.5em;
margin-top: 0px;
}
/*.About-container{
display: flex;
justify-content: space-evenly;
}
.About-us{
font-family: sans-serif;
text-align: center;
background-image: url(/img/gg.jpg);
padding: 10px;
margin-top: 15px;
}
.About-Desc{
margin-left: 70px;
margin-right: 70px;
}*/
.map-section {
background-color: darkcyan;
padding: 2px;
margin-top: 15px;
display: flex;
flex-wrap: wrap;
}
#map {
height: 350px;
width: 100%;
}
.map-text {
font-size: 50px;
text-align: center;
margin: auto;
}
/* aqui empecé*/
/* formulario*/
.form {
background-color: black;
opacity: 0.8;
max-height: 100%;
width: 98%;
max-width: 400px;
color: white;
box-shadow: 7px 13px 37px #000;
font-family: 'calibri';
padding: 30px;
margin: auto;
border-radius: 15px;
}
/* titulo */
.lee {
padding-top: 90px;
font-family: 'Satisfy', sans-serif;
font-size: 50px;
color: white;
text-align: center;
}
/* submit*/
.sub {
margin-left: 250px;
background-color: aliceblue;
}
/* contenedor de seccion*/
.cont-section {
background-image: url(gg.jpg);
background-size: cover;
margin-top: 10px;
height: 600px;
margin-bottom: 10px;
align-content: center;
}
.email,
.name {
width: 300px;
}
.lab_email {
margin-top: 45px;
}
.sub {
border-radius: 10px;
margin-top: 15px;
margin-left: 240px;
} | 0.359589 | 0.057229 |
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400|Passion+One:400");
/* Reset */
html, body, div, nav, ul, li, footer, span, applet, object, iframe, h1, h2, h3, h4{
margin: 0;
padding: 0;
border: 0;
justify-content: center;
font-size: 0;
font: inherit;
vertical-align: baseline;
}
nav ul:hover{
background-attachment: local;
}
.ul{
padding-top: 4em;
padding-right: 12em;
padding-left: 5em;
padding-bottom: 12em;
text-align: center;
background-color:rgb(0, 0, 0)
}
nav ul li:hover{
color: rgb(255, 222, 34);
}
nav ul li{
border-color: goldenrod;
border-width: 50px;
display: block;
text-align: center;
float:right;
font-weight: bold;
margin-top: 20px;
font-size: 1.4em;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
text-transform: capitalize;
padding-bottom: 1em;
padding-top: 1em;
padding-right: 1.5em;
padding-left: 1.2em;
margin-right: 1em;
margin-left: 1em;
margin-bottom: 10em;
background-color: rgb(17, 1, 1);
color: wheat;
}
.h1{
font-size: 1em;
text-transform: capitalize;
font-family:'Times New Roman', Times, serif;
padding-left: 1em;
padding-top: 1.8em;
padding-bottom: 1.6em;
padding-right: 1em;
font-size: 9em;
text-align: center;
color:wheat;
background-color:rgb(0, 0, 0);
}
div h2{
text-transform: capitalize;
font-family:'Times New Roman', Times, serif;
padding-left: 2em;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 5em;
font-size: 8em;
color: wheat;
background-color: #000102;
}
.more:hover{
color: goldenrod;
}
.more{
display: block;
font-size: large;
text-transform: capitalize;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
padding-top: 1em;
padding-bottom: 1em;
font-size: 2em;
text-align: center;
color: wheat;
background-color: rgb(17, 1, 1);
}
div ul li{
display: block;
padding-right: 2em;
}
.label{
text-transform: uppercase;
font-family: 'Times New Roman', Times;
color: red;
font-size: medium;
}
.thumbnails{
background-color: rgb(15, 41, 8);
padding-left: 1em;
padding-top:2.4em;
padding-bottom: 2em;
padding-right: 1em;
align-items: center;
}
footer div ul li:hover{
color: yellow;
}
footer div ul li{
color:beige;
float: left;
}
footer{
padding-top: 3em;
padding-bottom: 5em;
padding-right: 4em;
padding-left: 2em;
font-size: 2em;
color:goldenrod;
background-color: rgb(0, 0, 0);
}
.block{
float: right;
} | style.css | @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400|Passion+One:400");
/* Reset */
html, body, div, nav, ul, li, footer, span, applet, object, iframe, h1, h2, h3, h4{
margin: 0;
padding: 0;
border: 0;
justify-content: center;
font-size: 0;
font: inherit;
vertical-align: baseline;
}
nav ul:hover{
background-attachment: local;
}
.ul{
padding-top: 4em;
padding-right: 12em;
padding-left: 5em;
padding-bottom: 12em;
text-align: center;
background-color:rgb(0, 0, 0)
}
nav ul li:hover{
color: rgb(255, 222, 34);
}
nav ul li{
border-color: goldenrod;
border-width: 50px;
display: block;
text-align: center;
float:right;
font-weight: bold;
margin-top: 20px;
font-size: 1.4em;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
text-transform: capitalize;
padding-bottom: 1em;
padding-top: 1em;
padding-right: 1.5em;
padding-left: 1.2em;
margin-right: 1em;
margin-left: 1em;
margin-bottom: 10em;
background-color: rgb(17, 1, 1);
color: wheat;
}
.h1{
font-size: 1em;
text-transform: capitalize;
font-family:'Times New Roman', Times, serif;
padding-left: 1em;
padding-top: 1.8em;
padding-bottom: 1.6em;
padding-right: 1em;
font-size: 9em;
text-align: center;
color:wheat;
background-color:rgb(0, 0, 0);
}
div h2{
text-transform: capitalize;
font-family:'Times New Roman', Times, serif;
padding-left: 2em;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 5em;
font-size: 8em;
color: wheat;
background-color: #000102;
}
.more:hover{
color: goldenrod;
}
.more{
display: block;
font-size: large;
text-transform: capitalize;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
padding-top: 1em;
padding-bottom: 1em;
font-size: 2em;
text-align: center;
color: wheat;
background-color: rgb(17, 1, 1);
}
div ul li{
display: block;
padding-right: 2em;
}
.label{
text-transform: uppercase;
font-family: 'Times New Roman', Times;
color: red;
font-size: medium;
}
.thumbnails{
background-color: rgb(15, 41, 8);
padding-left: 1em;
padding-top:2.4em;
padding-bottom: 2em;
padding-right: 1em;
align-items: center;
}
footer div ul li:hover{
color: yellow;
}
footer div ul li{
color:beige;
float: left;
}
footer{
padding-top: 3em;
padding-bottom: 5em;
padding-right: 4em;
padding-left: 2em;
font-size: 2em;
color:goldenrod;
background-color: rgb(0, 0, 0);
}
.block{
float: right;
} | 0.575349 | 0.122628 |
@font-face {
font-family: "Poppins";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/Poppins-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Poppins";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url("/Poppins-Bold.ttf") format("truetype");
}
body {
background-color: #202124;
width: 30rem;
height: 35rem;
color: white;
font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.err {
background-color: #fe4645bb;
color: white;
display: flex;
padding: 0.4rem;
border-radius: 3px;
}
.err-text {
padding: 0 0.4rem;
}
.origin-input:focus, .origin-input:hover {
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
outline: none;
}
.origin-input {
padding: 4px 8px;
background-color: rgba(0, 0, 0, 0.2);
color: white;
border: 0;
border-radius: 2px;
font-family: 'Poppins';
display: flex;
flex: 1;
}
.origin-input-wrapper {
display: flex;
}
.origin-input-label {
color: rgba(255, 255, 255, 0.5);
margin: 8px;
display: flex;
font-size: 0.7rem;
}
.origin-list {
display: flex;
flex-direction: column;
list-style-type: none;
padding: 0;
margin: 0;
overflow: auto;
max-height: 500px;
}
.origin-add {
background-color: #31c48d;
color: rgba(0, 0, 0, 0.82);
border-radius: 2px;
padding: 4px 12px;
outline: none;
font-weight: bold;
border: 0;
margin-left: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.origin-delete {
cursor: pointer;
background-color: transparent;
color: #fe4645;
border-radius: 2px;
padding: 4px 12px;
outline: none;
border: 0;
margin-left: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.origin-delete:disabled {
color: #ffffff55;
cursor: auto;
}
.button-text {
margin-left: 2px;
}
.origin-list-entry {
display: flex;
padding: 4px 0;
align-items: center;
margin-left: 8px;
}
.origin-list-entry-origin {
flex: 1;
display: flex;
} | src/popup-style.css | @font-face {
font-family: "Poppins";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/Poppins-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Poppins";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url("/Poppins-Bold.ttf") format("truetype");
}
body {
background-color: #202124;
width: 30rem;
height: 35rem;
color: white;
font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.err {
background-color: #fe4645bb;
color: white;
display: flex;
padding: 0.4rem;
border-radius: 3px;
}
.err-text {
padding: 0 0.4rem;
}
.origin-input:focus, .origin-input:hover {
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
outline: none;
}
.origin-input {
padding: 4px 8px;
background-color: rgba(0, 0, 0, 0.2);
color: white;
border: 0;
border-radius: 2px;
font-family: 'Poppins';
display: flex;
flex: 1;
}
.origin-input-wrapper {
display: flex;
}
.origin-input-label {
color: rgba(255, 255, 255, 0.5);
margin: 8px;
display: flex;
font-size: 0.7rem;
}
.origin-list {
display: flex;
flex-direction: column;
list-style-type: none;
padding: 0;
margin: 0;
overflow: auto;
max-height: 500px;
}
.origin-add {
background-color: #31c48d;
color: rgba(0, 0, 0, 0.82);
border-radius: 2px;
padding: 4px 12px;
outline: none;
font-weight: bold;
border: 0;
margin-left: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.origin-delete {
cursor: pointer;
background-color: transparent;
color: #fe4645;
border-radius: 2px;
padding: 4px 12px;
outline: none;
border: 0;
margin-left: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.origin-delete:disabled {
color: #ffffff55;
cursor: auto;
}
.button-text {
margin-left: 2px;
}
.origin-list-entry {
display: flex;
padding: 4px 0;
align-items: center;
margin-left: 8px;
}
.origin-list-entry-origin {
flex: 1;
display: flex;
} | 0.431824 | 0.082586 |
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
text-align: center;
}
/*alternatieve achtergrond= background-image: url("../assets/BG2.jpg");*/
html, body{
background-color: #F3FAFF;
background-image: url("../assets/BG2.jpg");
background-attachment: fixed;
background-repeat:no-repeat;
background-size:100% 100%;
margin: 0;
padding: 0px;
height: 100%;
}
.navdiv{
width: 100%;
margin-top: 0px;
margin-bottom: 20px;
position:fixed;
z-index: 999;
}
.nav{
border:2px solid #222;
border-width:2px 1;
list-style:none;
margin:0;
padding:10px;
text-align:center;
background-color: #0B1933;
width: 100%;
}
.nav ul{
top:0px;
}
.nav li{
display:inline;
border-right: 1px solid #bbb;
}
.nav li:last-child{
border-right: none;
}
.nav a{
display:inline-block;
padding:10px;
color: #ffffff;
font-family: 'Metamorphous', cursive;
text-decoration: none;
font-size: 18px;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
-ms-transition: all 0.5s ease-out;
}
.nav a:hover {
background-color: #F3FAFF;
color: black;
transition-duration: 0.4s;
border-radius: 5px;
transform: scale(1.15, 1.15);
}
.nav a:hover::after {
opacity: 1;
}
.navspacer{
padding: 40px;
}
.content{
background-color: #F3FAFF;
min-height: fit-content;
max-height: 90vh;
width: 70%;
margin: auto;
opacity: 0.7;
overflow: auto;
padding-bottom: 20px;
border: 3px solid #506285;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
-ms-transition: all 1s ease-out;
}
b{
font-family: 'Metamorphous', cursive;
font-size: 14pt;
}
.contentform:hover{
opacity: 0.9;
transition-duration: 0.4s;
transition: all 1s ease-out;
}
.content:hover{
opacity: 0.9;
transition-duration: 0.4s;
transition: all 1s ease-out;
}
h1{
font-family: 'lobster', cursive;
font-size: 40pt;
}
h2{
font-family: 'Source Code Pro', monospace;
font-size: 24pt;
padding-bottom: 10px;
}
.titelportfolio{
font-family: 'Source Code Pro', monospace;
font-size: 32pt;
padding: 10px;
}
.gallery {
width: 70%;
margin: 0 auto;
padding: 5px;
background: #F3FAFF;
box-shadow: 0 1px 2px rgba(0,0,0,.3);
border: 3px solid #506285;
opacity:0.9;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
-ms-transition: all 1s ease-out;
}
.gallery > div {
position: relative;
display: inline-block;
padding: 10px;
}
.gallery > div > img {
display: block;
width: 200px;
transition: .1s transform;
transform: translateZ(0);
border: 2px solid #555;
}
.gallery > div:hover {
z-index: 1;
}
.gallery > div:hover > img {
transform: scale(1.2,1.2);
transition: .3s transform;
}
.gallery:hover{
opacity: 1;
transition-duration: 0.4s;
transition: all 1s ease-out;
}
.cf:before, .cf:after {
display: table;
content: "";
line-height: 0;
}
.cf:after {
clear: both;
}
#map{
height: 100%;
}
.list li {
background: url("") no-repeat 97% 50%;
border-bottom: 1px solid #ccc;
display: table;
border-collapse: collapse;
width: 100%;
}
.pattern{
display: inline-block;
background-color: #F3FAFF;
width: fit-content;
min-width:500px;
max-width: 70%;
border: 3px solid #506285;
opacity: 0.8;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
-ms-transition: all 0.5s ease-out;
}
.pattern:hover{
opacity: 1;
transition-duration: 0.4s;
transition: all 0.5s ease-out;
}
.pattern li{
min-width: 500px;
max-width: 70%;
max-height:70%;
display:inline-block;
}
.inner {
display: table-row;
overflow: hidden;
}
.li-img {
display: table-cell;
vertical-align: middle;
width: 30%;
padding-right: 1em;
}
.li-img img {
display: block;
width: 100%;
height: auto;
}
.li-text {
display: table-cell;
vertical-align: middle;
width: 70%;
}
.li-head {
margin: 0;
font-family: 'Metamorphous', cursive;
font-size: 22pt;
}
.li-sub {
margin: 0;
font-family: 'Lato', sans-serif;
font-size: 18pt;
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Set a style for all buttons */
button {
background-color: #506285;
color: white;
padding: 14px 20px;
border: 3px solid black;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
font-family: 'Source Code Pro', monospace;
}
button:hover {
opacity: 0.8;
transition-duration: 0.4s;
}
.cancelbtn {
width: 100%;
padding: 10px 18px;
background-color: #506285;
color: white;
font-family: 'Source Code Pro', monospace;
}
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
position: relative;
}
.container {
padding: 16px;
}
span.psw {
float: right;
padding-top: 16px;
padding: 10px;
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
padding-top: 60px;
}
.modal-content {
background-color: #F3FAFF;
margin: 5% auto 15% auto;
border: 2px solid #888;
width: 80%;
}
.close:hover,
.close:focus {
cursor: pointer;
}
.animate {
-webkit-animation: animatezoom 0.6s;
animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
from {-webkit-transform: scale(0)}
to {-webkit-transform: scale(1)}
}
@keyframes animatezoom {
from {transform: scale(0)}
to {transform: scale(1)}
}
@media screen and (max-width: 300px) {
span.psw {
display: block;
float: none;
}
.cancelbtn {
width: 100%;
}
}
label{
font-family: 'Source Code Pro', monospace;
font-size: 18pt;
}
span{
font-family: 'Source Code Pro', monospace;
width:100%;
}
.info{
text-decoration:none;
font-family: 'Source Code Pro', monospace;
font-size: 22pt;
color:#506285;
}
.info:hover{
color:black;
transition-duration: 0.4s;
}
.social{
font-family: 'Source Code Pro', monospace;
text-decoration:none;
color:#506285;
font-size: 18pt;
} | css/css.css | * {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
text-align: center;
}
/*alternatieve achtergrond= background-image: url("../assets/BG2.jpg");*/
html, body{
background-color: #F3FAFF;
background-image: url("../assets/BG2.jpg");
background-attachment: fixed;
background-repeat:no-repeat;
background-size:100% 100%;
margin: 0;
padding: 0px;
height: 100%;
}
.navdiv{
width: 100%;
margin-top: 0px;
margin-bottom: 20px;
position:fixed;
z-index: 999;
}
.nav{
border:2px solid #222;
border-width:2px 1;
list-style:none;
margin:0;
padding:10px;
text-align:center;
background-color: #0B1933;
width: 100%;
}
.nav ul{
top:0px;
}
.nav li{
display:inline;
border-right: 1px solid #bbb;
}
.nav li:last-child{
border-right: none;
}
.nav a{
display:inline-block;
padding:10px;
color: #ffffff;
font-family: 'Metamorphous', cursive;
text-decoration: none;
font-size: 18px;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
-ms-transition: all 0.5s ease-out;
}
.nav a:hover {
background-color: #F3FAFF;
color: black;
transition-duration: 0.4s;
border-radius: 5px;
transform: scale(1.15, 1.15);
}
.nav a:hover::after {
opacity: 1;
}
.navspacer{
padding: 40px;
}
.content{
background-color: #F3FAFF;
min-height: fit-content;
max-height: 90vh;
width: 70%;
margin: auto;
opacity: 0.7;
overflow: auto;
padding-bottom: 20px;
border: 3px solid #506285;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
-ms-transition: all 1s ease-out;
}
b{
font-family: 'Metamorphous', cursive;
font-size: 14pt;
}
.contentform:hover{
opacity: 0.9;
transition-duration: 0.4s;
transition: all 1s ease-out;
}
.content:hover{
opacity: 0.9;
transition-duration: 0.4s;
transition: all 1s ease-out;
}
h1{
font-family: 'lobster', cursive;
font-size: 40pt;
}
h2{
font-family: 'Source Code Pro', monospace;
font-size: 24pt;
padding-bottom: 10px;
}
.titelportfolio{
font-family: 'Source Code Pro', monospace;
font-size: 32pt;
padding: 10px;
}
.gallery {
width: 70%;
margin: 0 auto;
padding: 5px;
background: #F3FAFF;
box-shadow: 0 1px 2px rgba(0,0,0,.3);
border: 3px solid #506285;
opacity:0.9;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
-ms-transition: all 1s ease-out;
}
.gallery > div {
position: relative;
display: inline-block;
padding: 10px;
}
.gallery > div > img {
display: block;
width: 200px;
transition: .1s transform;
transform: translateZ(0);
border: 2px solid #555;
}
.gallery > div:hover {
z-index: 1;
}
.gallery > div:hover > img {
transform: scale(1.2,1.2);
transition: .3s transform;
}
.gallery:hover{
opacity: 1;
transition-duration: 0.4s;
transition: all 1s ease-out;
}
.cf:before, .cf:after {
display: table;
content: "";
line-height: 0;
}
.cf:after {
clear: both;
}
#map{
height: 100%;
}
.list li {
background: url("") no-repeat 97% 50%;
border-bottom: 1px solid #ccc;
display: table;
border-collapse: collapse;
width: 100%;
}
.pattern{
display: inline-block;
background-color: #F3FAFF;
width: fit-content;
min-width:500px;
max-width: 70%;
border: 3px solid #506285;
opacity: 0.8;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
-ms-transition: all 0.5s ease-out;
}
.pattern:hover{
opacity: 1;
transition-duration: 0.4s;
transition: all 0.5s ease-out;
}
.pattern li{
min-width: 500px;
max-width: 70%;
max-height:70%;
display:inline-block;
}
.inner {
display: table-row;
overflow: hidden;
}
.li-img {
display: table-cell;
vertical-align: middle;
width: 30%;
padding-right: 1em;
}
.li-img img {
display: block;
width: 100%;
height: auto;
}
.li-text {
display: table-cell;
vertical-align: middle;
width: 70%;
}
.li-head {
margin: 0;
font-family: 'Metamorphous', cursive;
font-size: 22pt;
}
.li-sub {
margin: 0;
font-family: 'Lato', sans-serif;
font-size: 18pt;
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Set a style for all buttons */
button {
background-color: #506285;
color: white;
padding: 14px 20px;
border: 3px solid black;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
font-family: 'Source Code Pro', monospace;
}
button:hover {
opacity: 0.8;
transition-duration: 0.4s;
}
.cancelbtn {
width: 100%;
padding: 10px 18px;
background-color: #506285;
color: white;
font-family: 'Source Code Pro', monospace;
}
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
position: relative;
}
.container {
padding: 16px;
}
span.psw {
float: right;
padding-top: 16px;
padding: 10px;
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
padding-top: 60px;
}
.modal-content {
background-color: #F3FAFF;
margin: 5% auto 15% auto;
border: 2px solid #888;
width: 80%;
}
.close:hover,
.close:focus {
cursor: pointer;
}
.animate {
-webkit-animation: animatezoom 0.6s;
animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
from {-webkit-transform: scale(0)}
to {-webkit-transform: scale(1)}
}
@keyframes animatezoom {
from {transform: scale(0)}
to {transform: scale(1)}
}
@media screen and (max-width: 300px) {
span.psw {
display: block;
float: none;
}
.cancelbtn {
width: 100%;
}
}
label{
font-family: 'Source Code Pro', monospace;
font-size: 18pt;
}
span{
font-family: 'Source Code Pro', monospace;
width:100%;
}
.info{
text-decoration:none;
font-family: 'Source Code Pro', monospace;
font-size: 22pt;
color:#506285;
}
.info:hover{
color:black;
transition-duration: 0.4s;
}
.social{
font-family: 'Source Code Pro', monospace;
text-decoration:none;
color:#506285;
font-size: 18pt;
} | 0.394784 | 0.080105 |
*{ margin:0px; padding:0px;}
#bn {
width:970px;
height: 300px;
margin-right: auto;
margin-left: auto;
overflow:hidden;
}
#bn .tu {
text-align: center;
display: block;
}
#bn .tu img{ width:100%; height:100%;}
.xu {
border:1px solid #333;
display: inline;
float: left;
height:20px;
width: 20px;
line-height: 20px;
color:#FFF;
font-size: 14px;
font-weight: bolder;
cursor:pointer;
background-repeat: no-repeat;
background-position: center center;
text-align:center;
margin-left:3px;
background:#CCC;
text-decoration:none;
}
.fenhong{
text-align:center;
margin-left:3px;
display: inline;
float: left;
height:20px;
width: 20px;
line-height: 20px;
font-size: 14px;
color:#FFF;
border:1px solid #900;
background:#C00;
text-decoration:none !important;
}
#bn #hao {
position:absolute;
right: 0px;
height: 53px;
width: 300px;
z-index: 3;
bottom: 150px;
margin-right: auto;
margin-left: auto;
}
#bn .txt {
display: block;
position: absolute;
top: 423px;
height: 53px;
width: 385px;
right: 50px;
z-index: 3;
}
#bn .txt .zi1 {
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 7px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
}
#bn .txt .zi2 {
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 66px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
text-align:center;
}
#bn .txt .zi3 {
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 125px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
text-align:center;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
}
#bn .txt .zi4{
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 183px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
text-align:center;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
}
#bn .txt .zi5 {
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 243px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
}
#bn .tiao {
background-color: #000000;
height: 25px;
width: 100%;
position: absolute;
bottom: 0px;
z-index: 2;
left: 0px;
filter:alpha(opacity=30);
-moz-opacity:0.3;
-khtml-opacity: 0.3;
opacity: 0.3;
margin-right: auto;
margin-left: auto;
}
#bn .tu .lianjie {
width:970px !important;
display: block;
height: 300px;
}
/* 代码整理:懒人之家 www.lanrenzhijia.com */ | frontend/web/css/zzsc.css | *{ margin:0px; padding:0px;}
#bn {
width:970px;
height: 300px;
margin-right: auto;
margin-left: auto;
overflow:hidden;
}
#bn .tu {
text-align: center;
display: block;
}
#bn .tu img{ width:100%; height:100%;}
.xu {
border:1px solid #333;
display: inline;
float: left;
height:20px;
width: 20px;
line-height: 20px;
color:#FFF;
font-size: 14px;
font-weight: bolder;
cursor:pointer;
background-repeat: no-repeat;
background-position: center center;
text-align:center;
margin-left:3px;
background:#CCC;
text-decoration:none;
}
.fenhong{
text-align:center;
margin-left:3px;
display: inline;
float: left;
height:20px;
width: 20px;
line-height: 20px;
font-size: 14px;
color:#FFF;
border:1px solid #900;
background:#C00;
text-decoration:none !important;
}
#bn #hao {
position:absolute;
right: 0px;
height: 53px;
width: 300px;
z-index: 3;
bottom: 150px;
margin-right: auto;
margin-left: auto;
}
#bn .txt {
display: block;
position: absolute;
top: 423px;
height: 53px;
width: 385px;
right: 50px;
z-index: 3;
}
#bn .txt .zi1 {
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 7px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
}
#bn .txt .zi2 {
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 66px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
text-align:center;
}
#bn .txt .zi3 {
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 125px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
text-align:center;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
}
#bn .txt .zi4{
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 183px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
text-align:center;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
}
#bn .txt .zi5 {
background-image: url(../images/txtbg.png);
background-repeat: no-repeat;
display: block;
height: 53px;
width: 154px;
font-size: 14px;
font-style: normal;
line-height: 50px;
color: #FFFFFF;
font-weight: bold;
position: absolute;
left: 243px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
background-position: center center;
z-index: 3;
}
#bn .tiao {
background-color: #000000;
height: 25px;
width: 100%;
position: absolute;
bottom: 0px;
z-index: 2;
left: 0px;
filter:alpha(opacity=30);
-moz-opacity:0.3;
-khtml-opacity: 0.3;
opacity: 0.3;
margin-right: auto;
margin-left: auto;
}
#bn .tu .lianjie {
width:970px !important;
display: block;
height: 300px;
}
/* 代码整理:懒人之家 www.lanrenzhijia.com */ | 0.313945 | 0.047802 |
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
ul, ol {
list-style: none;
}
img {
max-width: 100%;
max-height: 100%;
vertical-align: top;
display: block;
margin: 0 auto;
}
input[type=radio] {
display: none;
}
a {
outline: none;
text-decoration: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
color: #333;
}
a.submit {
display: block;
}
a, a:hover {
text-decoration: none;
}
html {
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
font-size: 13.33333333vw;
}
body {
margin: 0 auto;
color: #333;
position: relative;
max-width: 7.5rem;
min-width: 3.2rem;
font-family: "Helvetica Neue", Helvetica, 'Microsoft Yahei', Arial, sans-serif;
font-size: 0.24rem;
}
@-webkit-keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate {
0% {
-webkit-transform: rotate(360deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes rotate2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
@keyframes rotate2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
.fl {
float: left;
}
.fr {
float: right;
}
.clear {
clear: both;
}
.hide {
display: none;
}
.show {
display: block;
}
.body {
height: 100%;
overflow: hidden;
}
.paddingT30 {
padding-top: 0.3rem;
}
.marginT20 {
margin-top: 0.2rem;
}
.marginT30 {
margin-top: 0.3rem;
}
.marginT40 {
margin-top: 0.4rem;
}
.text-center {
text-align: center;
justify-content: center;
align-items: center;
display: -webkit-flex;
}
.fix-grid {
display: flex;
}
.fix-grid-cell {
flex: 1;
}
.cell-u-full {
flex: 0 0 100%;
}
.cell-u-1of2 {
flex: 0 0 50%;
}
.cell-u-1of3 {
flex: 0 0 33.3333%;
}
.cell-u-1of4 {
flex: 0 0 25%;
}
.cell-u-1of5 {
flex: 0 0 20%;
}
.cell-u-1of8 {
flex: 0 0 12.5%;
}
.cell-u-1of10 {
flex: 0 0 10%;
}
.color_lover {
color: #C31A26;
}
.luckYear {
background: #9f2f30;
}
.flower {
background: #feb9bc;
}
.loveAstrolabe {
background: #be264a;
}
.lover {
background: #F0C6C7;
}
.main {
padding: 0.3rem 0.3rem;
}
.words {
width: 95%;
margin: 0.3rem auto;
position: relative;
}
.words .words-title {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
color: #fff;
font-size: 0.32rem;
}
.form {
border: 1px solid #e6dac6;
background-color: white;
border-radius: 0.1rem;
padding: 0.1rem 0.3rem;
}
.form li {
height: 0.8rem;
line-height: 0.8rem;
border-bottom: 1px solid #e6dac6;
font-size: 0.28rem;
color: #666666;
}
.form li span {
height: 100%;
}
.form li .text {
color: #6f0011;
margin-right: 0.15rem;
}
.form li .input, .form li .select {
width: 4.1rem;
height: 0.6rem;
border: 0;
background-color: white;
font-size: 0.28rem;
outline: none;
color: #666666;
}
.form li .radio-button {
cursor: pointer;
border: 1px solid #edcda4;
border-radius: 50%;
background: white;
padding: 0.05rem 0.1rem;
}
.form li .radio > input[type=radio]:checked ~ .radio-button {
background-color: #fe6d32;
color: white;
}
.submit {
height: 0.84rem;
line-height: 0.84rem;
border-radius: 0.1rem;
background: #f7c64f;
color: #9f2f30;
cursor: pointer;
font-size: 0.3rem;
font-weight: bold;
}
.number {
font-size: 0.24rem;
color: white;
}
.number span {
color: #ffd800;
}
.score, .comment {
width: 100%;
height: auto;
}
.luckYear-area {
border: 1px solid rgba(227, 221, 185, 0.7);
border-radius: 0.1rem;
background: white;
padding: 0.2rem 0.3rem;
}
.luckYear-score p {
margin-top: 0.15rem;
font-size: 0.28rem;
line-height: 0.5rem;
}
.luckYear-score span.color1 {
color: #f8a78c;
}
.luckYear-score span.color2 {
color: #ddb434;
}
.luckYear-score .px span {
display: inline-block;
}
.luckYear-score .px span:nth-of-type(1) {
margin-right: 0.15rem;
}
.luckYear-score .px img {
width: 0.3rem;
height: 0.4rem;
margin-left: 0.1rem;
padding-top: 0.1rem;
}
.luckYear-score .yx .area {
color: #fff;
border-radius: 0.1rem;
background: red;
padding: 0.05rem 0.3rem;
}
.luckYear-score .yx .bg_color1 {
background: #f3abbf;
}
.luckYear-score .yx .bg_color2 {
background: #fbcc7a;
}
.luckYear-score .yx .bg_color3 {
background: #e3a7ff;
}
.luckYear-comment {
padding-top: 0;
height: 3.4rem;
overflow: hidden;
}
.luckYear-comment ul li {
font-size: 0.28rem;
border-bottom: 1px dashed rgba(227, 221, 185, 0.9);
padding: 0.1rem 0;
}
.luckYear-comment ul li span {
color: #c2a04a;
}
.tips {
position: fixed;
top: 40%;
left: 50%;
width: 3.6rem;
height: 0.6rem;
line-height: 0.6rem;
background: rgba(0, 0, 0, 0.6);
border-radius: 0.05rem;
color: white;
text-align: center;
font-size: 0.24rem;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
margin-left: -1.8rem;
margin-top: -0.3rem;
}
.luopan_bg_color {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
z-index: 9999998;
background: #000;
opacity: 0.7;
transition: opacity 0.5s;
display: none;
}
#luopan_box {
height: 3.4rem;
width: 3.4rem;
margin: 0 auto;
position: fixed;
top: 50%;
left: 50%;
margin-left: -1.7rem;
margin-top: -1.7rem;
z-index: 9999999;
display: none;
vertical-align: middle;
}
#luopan_box img.img-1 {
-webkit-animation: rotate 4s linear infinite;
animation: rotate 4s linear infinite;
}
#luopan_box img.img-1 {
height: 3.4rem;
width: 3.4rem;
}
#luopan_box .img-2 {
position: absolute;
width: 0.4rem;
height: 2.8rem;
top: 0.3rem;
left: 1.5rem;
-webkit-animation: rotate2 4s linear infinite;
animation: rotate2 4s linear infinite;
}
.showPayMain {
padding: 0.2rem;
}
.showPayMain .info {
height: auto;
padding: 0.3rem 0.25rem;
background: white;
border-radius: 0.1rem;
font-size: 0.28rem;
}
.showPayMain .info .bir_img {
position: relative;
height: 1.7rem;
width: 1.7rem;
margin-top: 0.2rem;
}
.showPayMain .info .bir_img img {
width: 100%;
height: 100%;
}
.showPayMain .info .bir_img p {
position: absolute;
top: 0.45rem;
left: 0.55rem;
bottom: 0;
}
.showPayMain .info .user-info li {
padding: 0.05rem 0;
}
.showPayMain .info .user-info .color_fate {
color: #c48c61;
}
.payMain {
height: auto;
padding: 0.3rem;
background: white;
border-radius: 0.1rem;
font-size: 0.28rem;
}
.payMain .line {
width: 50%;
margin: 0.25rem auto;
}
.payMain .priceArea {
text-align: center;
margin: 0.3rem 0;
}
.payMain .priceArea .price {
color: #adadad;
text-decoration: line-through;
}
.payMain .priceArea .total_fee {
font-size: 0.34rem;
}
.payMain .pay {
width: 5.6rem;
margin: 0.2rem auto;
text-align: center;
}
.payMain .pay a {
display: block;
}
.payMain .pay img {
margin: 0.2rem auto;
vertical-align: middle;
}
.result_list {
padding-top: 0.3rem;
}
.result_list h3 {
font-size: 0.32rem;
font-weight: bold;
color: white;
}
.result_list h3 img {
display: inline-block;
width: 0.9rem;
vertical-align: bottom;
margin-right: 0.1rem;
}
.result_list .listMain {
position: relative;
font-size: 0.26rem;
}
.result_list .listMain ul {
width: 4.8rem;
position: absolute;
top: 0.6rem;
left: 1.2rem;
height: 1.6rem;
}
.result_list .listMain ul li {
position: relative;
padding: 0.08rem 0;
font-weight: bold;
}
.result_list .listMain ul li span {
position: absolute;
display: block;
width: 0.1rem;
height: 0.1rem;
background: #cd2522;
border-radius: 50%;
top: 0.2rem;
left: 0;
}
.result_list .listMain .payBut {
width: 2.6rem;
height: 0.7rem;
position: absolute;
top: 2.9rem;
left: 2.2rem;
cursor: pointer;
}
.payButAlert {
padding: 0 0.2rem;
width: 100%;
height: auto;
position: fixed;
top: 50%;
left: 50%;
z-index: 99999;
max-width: 7.5rem;
margin-left: -3.75rem;
margin-top: -2.77rem;
}
.mask {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background: rgba(0, 0, 0, 0.7);
}
.contentMain {
background: white;
border-radius: 0.1rem;
padding: 0.2rem;
font-size: 0.32rem;
line-height: 0.6rem;
}
.payReturn {
padding: 0 0.4rem;
}
.payReturn p {
text-align: center;
font-size: 0.3rem;
padding: 0.5rem 0;
}
.payReturn .is_pay {
position: relative;
margin-bottom: 0.3rem;
}
.payReturn .is_pay p {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
color: white;
font-size: 0.4rem;
}
.qrCodePay {
padding-top: 0.3rem;
padding-left: 0.2rem;
background: white;
height: auto;
}
.qrCodePay p {
font-size: 0.2rem;
padding: 0.05rem 0;
}
.qrCodePay p span {
font-weight: bold;
}
.qrCodePay p .price {
color: red;
}
.qrCodePay .qrcode {
width: 2rem;
height: 2rem;
margin: 0.1rem auto;
position: relative;
padding-bottom: 2.6rem;
}
.qrCodePay .qrcode .pay-tips {
width: 100%;
position: absolute;
height: 0.3rem;
line-height: 0.3rem;
background: #00c800;
text-align: center;
color: white;
top: 2rem;
font-size: 0.12rem;
margin-bottom: 0.3rem;
}
.hot {
height: auto;
background: white;
border-radius: 0.1rem;
padding: 0 0.1rem;
}
.hot .top {
padding: 0.3rem 0;
text-align: center;
font-weight: bold;
color: #d3556c;
font-size: 0.3rem;
}
.hot ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.hot ul li {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
width: 25%;
padding: 0 0.1rem 0.2rem;
}
.hot ul li a {
display: block;
text-decoration: none;
}
.hot ul li a h3 {
font-size: 0.26rem;
text-align: center;
color: #666666;
padding: 0.1rem 0;
}
.measureIndex .nav {
margin-bottom: 0.2rem;
}
.measureIndex .nav ul {
width: 100%;
height: 1rem;
line-height: 1rem;
background: #F1DFCF;
font-size: 0.32rem;
}
.measureIndex .nav ul li {
float: left;
width: 33.33%;
text-align: center;
}
.measureIndex .nav ul li a {
color: #333333;
}
.measureIndex .nav ul li a.on {
padding: 0.05rem 0;
color: #EB5D41;
border-bottom: 2px solid #EB5D41;
font-weight: bold;
}
.measureIndex .list {
clear: both;
}
.measureIndex .list li {
float: left;
width: 50%;
padding: 0 0.2rem 0.2rem 0.2rem;
}
.measureIndex .list li a {
color: #666;
display: block;
}
.measureIndex .list li h3 {
font-size: 0.26rem;
vertical-align: bottom;
line-height: 0.56rem;
border-bottom: 1px dashed #ccc;
}
.measureIndex .list li h3 img {
display: inline-block;
height: 0.48rem;
}
.measureIndex .list li .listimg {
margin-top: 0.1rem;
}
.reward {
border-radius: 0.1rem;
background: white;
margin-top: 0.3rem;
padding: 0.2rem;
}
.reward .text {
text-align: center;
padding: 0.1rem 0;
font-weight: bold;
color: #d3556c;
font-size: 0.3rem;
}
.reward li {
float: left;
width: 33.33%;
margin-top: 0.2rem;
}
.reward li div {
text-align: center;
font-size: 0.4rem;
border: 2px solid #d15d50;
border-radius: 0.1rem;
padding: 0.15rem 0;
color: #d15d50;
margin-right: 0.15rem;
}
.reward li div.on {
color: white;
background: #d15d50;
}
.port1_mainBox_info {
height: 0.68rem;
line-height: 0.68rem;
color: #9298ac;
font-size: 0.36rem;
text-align: center;
margin: 0.3rem 0;
}
.port1_mainBox_row {
flex-flow: row wrap;
align-content: flex-start;
padding: 0 0.4rem;
}
.port1_mainBox_cell {
box-sizing: border-box;
flex: 0 0 25%;
height: auto;
margin-bottom: 0.4rem;
text-align: center;
}
.port1_mainBox_cell a {
display: block;
}
.port1_mainBox_cell img {
width: 1.4rem;
}
.select-share-footer img {
width: 2.5rem;
margin: 0.2rem;
}
.loadingBox {
position: fixed;
left: 0;
right: 0;
top: 30%;
margin: 0 auto;
text-align: center;
width: 100%;
}
.loadingBox .loading {
width: 1.2rem;
-webkit-animation: roting 1s linear infinite;
}
.loadingBox p {
padding: 0.2rem;
color: #bfbafa;
font-size: 0.28rem;
}
@-webkit-keyframes roting {
0% {
-webkit-transform: rotateZ(0deg);
}
100% {
-webkit-transform: rotateZ(360deg);
}
}
.zwfy-report-cartoonBox {
display: none;
width: 3rem;
height: 3rem;
position: fixed;
z-index: 5;
left: 0;
right: 0;
top: 50%;
margin: -3rem auto;
}
.zwfy-report-cartoonBox-filter {
width: 100%;
height: 100%;
background: black;
opacity: 0.6;
border-radius: 0.2rem;
}
.zwfy-report-cartoon {
display: none;
}
.zwfy-report-cartoon-active {
display: block;
position: absolute;
width: 1.3rem;
top: 0.24rem;
left: 0;
right: 0;
margin: 0 auto 0 auto;
}
.zwfy-report-cartoonBox > p {
display: inline-block;
width: 100%;
text-align: center;
position: absolute;
top: 56%;
color: white;
font-size: 0.34rem;
line-height: 0.56rem;
right: 0;
}
footer {
width: 100%;
padding: 0.08rem 0;
position: fixed;
left: 0;
bottom: 0;
height: 0.98rem;
display: flex;
background-color: #F1453D;
color: white;
text-align: center;
font-size: 0.24rem;
}
footer a {
display: block;
flex: 1;
flex-direction: column;
align-items: center;
justify-content: center;
-webkit-tap-highlight-color: transparent;
color: white;
}
footer .active {
color: #FEC93E;
}
footer .iconfont {
height: 0.48rem;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
font-size: 0.44rem;
}
.indexBanner, .swiper-container {
width: 100%;
height: 3.2rem;
}
.indexBanner img, .swiper-container img {
width: 100%;
height: 3.2rem;
}
.indexBanner .swiper-pagination-fraction {
bottom: 0;
height: 0.64rem;
line-height: 0.64rem;
}
.swiper-container-horizontal > .swiper-pagination-bullets {
bottom: 0;
}
.hotMain {
padding: 0.24rem;
background: white;
border-radius: 0.2rem;
margin-top: 0.48rem;
}
.hotMain .top {
height: 0.68rem;
line-height: 0.68rem;
font-size: 0.34rem;
text-align: center;
color: #d3556c;
font-weight: bold;
}
.hotMain .grids {
display: flex;
flex-direction: row;
flex-wrap: wrap;
background: white
}
.hotMain .grids .grid-item {
margin-top: 0.24rem;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
width: 25%;
}
.hotMain .grids .grid-item img {
width: 1.12rem;
height: 1.12rem;
}
.hotMain .grids .grid-item .text {
margin-top: 0.08rem;
font-size: 0.28rem;
color: #333333;
-webkit-tap-highlight-color: transparent;
text-decoration: none;
}
.display-flex {
display: flex;
flex-direction: row;
}
.display-flex .flex-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.bjwhite {
background: white;
}
.flex-wrap-nowrap {
flex-wrap: nowrap;
}
.flex-wrap-wrap {
flex-wrap: wrap;
}
.paddingLR24 {
padding: 0 0.24rem;
}
.paddingTB24 {
padding: 0.24rem 0;
}
.text-align-center {
text-align: center;
}
.icon {
width: 0.44rem;
height: 0.44rem;
fill: currentColor;
overflow: hidden;
}
.userMain {
position: relative;
background-repeat: no-repeat;
}
.userMain .headimgurl {
width: 1.58rem;
height: 1.58rem;
position: absolute;
top: 0.4rem;
left: 0;
right: 0;
margin: 0 auto;
z-index: 999;
border-radius: 50%;
border: 0.02rem solid white;
}
.userMain .userInfo {
width: 93.6%;
height: auto;
margin: 0 auto;
background: white;
border-radius: 0.08rem;
box-shadow: 0 0.04rem 0.1rem 0 rgba(0, 0, 0, 0.1);
}
.userMain .userInfo .nickname {
padding-top: 0.8rem;
font-size: 0.3rem;
font-weight: 600;
}
.userMain .userInfo .uid {
font-size: 0.28rem;
padding: 0.16rem 0;
}
.userMain .userInfo .line {
height: 0.1rem;
width: 100%;
display: flex;
align-items: center;
}
.userMain .userInfo .line span {
display: inline-block;
width: 0.1rem;
height: 0.2rem;
background: #ebebeb;
}
.userMain .userInfo .line i {
width: 100%;
height: 1px;
position: relative;
}
.userMain .userInfo .line i:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px dashed #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.userMain .userInfo .line span.left {
border-radius: 0 0.1rem 0.1rem 0;
}
.userMain .userInfo .line span.right {
border-radius: 0.1rem 0 0 0.1rem;
}
.userMain .userInfo .display-flex {
font-size: 0.24rem;
padding: 0.24rem 0;
}
.userMain .userInfo .display-flex .flex-item {
width: 100%;
position: relative;
}
.userMain .userInfo .display-flex .flex-item:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-right: 1px solid #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.userMain .userInfo .display-flex .flex-item:last-child:after {
border-right: 0;
}
.userMain .userInfo .display-flex .flex-item span {
margin-top: 0.08rem;
font-size: 0.26rem;
}
.userMain .userInfo .display-flex .flex-item span.weight {
font-size: 0.32rem;
font-weight: 700;
}
.userMain .list {
position: relative;
}
.userMain .list:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-top: 1px solid #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.userMain .list.display-flex {
font-size: 0.24rem;
margin-top: 0.24rem;
}
.userMain .list.display-flex .flex-item {
color: #666666;
padding: 0.48rem 0;
width: 33.33%;
position: relative;
}
.userMain .list.display-flex .flex-item .icon {
width: 0.64rem;
height: 0.64rem;
}
.userMain .list.display-flex .flex-item:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.userMain .list.display-flex .flex-item:nth-child(3n):after {
border-right: 0;
}
.userMain .list.display-flex .flex-item span {
margin-top: 0.16rem;
font-size: 0.26rem;
}
.rankingMain .topList {
padding-top: 0.24rem;
background-size: cover;
background-position: 50%;
}
.rankingMain .topList .tab {
width: 90%;
height: 0.88rem;
line-height: 0.88rem;
margin: 0 auto;
}
.rankingMain .topList .tab .flex-item {
font-size: 0.32rem;
width: 33.33%;
}
.rankingMain .topList .tab .flex-item a {
text-align: center;
color: white;
}
.rankingMain .topList .tab .flex-item.active {
position: relative;
font-weight: 700;
font-size: 0.34rem;
}
.rankingMain .topList .tab .flex-item.active:after {
content: "";
position: absolute;
bottom: 0.08rem;
left: 0;
width: 100%;
height: 0.04rem;
border-radius: 0.04rem;
background: #fff;
}
.rankingMain .topList .top {
width: 100%;
display: flex;
justify-content: space-around;
align-items: flex-end;
padding: 0 0.24rem;
margin-top: 0.32rem;
}
.rankingMain .topList .top li {
background: white;
position: relative;
width: 33.33%;
margin-right: 0.08rem;
border-radius: 0.16rem 0.16rem 0 0;
height: 3.52rem;
padding: 0 0.08rem;
}
.rankingMain .topList .top li:last-child {
margin-right: 0;
}
.rankingMain .topList .top li:nth-child(2) {
height: 4.24rem;
}
.rankingMain .topList .top li .topImg {
position: absolute;
width: 0.56rem;
height: 0.64rem;
top: 0;
left: 50%;
right: 0;
margin-left: -0.24rem;
}
.rankingMain .topList .top li .headimgurl {
width: 1.28rem;
height: 1.28rem;
margin: 0 auto;
margin-top: 0.4rem;
border-radius: 50%;
display: block;
}
.rankingMain .topList .top li .level1 {
border: 2px solid #ffdc33;
}
.rankingMain .topList .top li .level2 {
border: 2px solid #b7c9d5;
}
.rankingMain .topList .top li .level3 {
border: 2px solid #d7b166;
}
.rankingMain .topList .top li .nickname {
color: #333;
font-size: 0.3rem;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
margin-top: 0.16rem;
}
.rankingMain .topList .top li .gold {
color: #f44336;
font-weight: 700;
font-size: 0.34rem;
text-align: center;
}
.rankingMain .orderlist {
height: 1.36rem;
line-height: 1.36rem;
position: relative;
display: flex;
}
.rankingMain .orderlist:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px solid #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.rankingMain .orderlist .headimgurl {
width: 0.8rem;
height: 0.8rem;
margin-top: 0.24rem;
align-items: center;
border-radius: 50%;
margin-left: 0.16rem;
margin-right: 0.24rem;
}
.rankingMain .orderlist .nickname {
font-size: 0.28rem;
}
.rankingMain .orderlist .number {
font-size: 0.28rem;
margin-left: 0.24rem;
}
.rankingMain .orderlist .right {
font-weight: 700;
font-size: 0.28rem;
color: #f44336;
margin-right: 0.24rem;
}
.budgetMain .top {
background: #F1453D;
padding-bottom: 0.24rem;
color: white;
}
.budgetMain .top .title {
padding-top: 0.56rem;
font-size: 0.26rem;
}
.budgetMain .top .balance {
margin-top: 0.16rem;
font-size: 0.56rem;
}
.budgetMain .top .buy {
width: 2.24rem;
font-size: 0.28rem;
height: 0.56rem;
line-height: 0.56rem;
border-radius: 0.32rem;
padding: 0 0.32rem;
background: white;
margin: 0.16rem auto;
text-align: center;
}
.budgetMain .list {
background: white;
margin-top: 0.24rem;
}
.budgetMain .list .title {
padding: 0 0.24rem;
height: 0.8rem;
line-height: 0.8rem;
font-size: 0.28rem;
color: #666666;
display: flex;
}
.budgetMain .list .title .left {
flex: 1;
}
.budgetMain .list li {
padding: 0.24rem;
display: flex;
position: relative;
align-items: center;
}
.budgetMain .list li:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-top: 1px solid #dddddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.budgetMain .list li .left {
flex: 1;
}
.budgetMain .list li .left .body {
font-size: 0.32rem;
}
.budgetMain .list li .left .date {
color: #999999;
}
.budgetMain .list li .right {
font-size: 0.32rem;
align-items: center;
font-weight: 700;
color: #f44336;
}
.agentMain .display-flex {
height: 0.88rem;
line-height: 0.88rem;
position: relative;
}
.agentMain .display-flex:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px solid #dddddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.agentMain .display-flex .flex-item {
width: 50%;
font-size: 0.28rem;
}
.agentMain .display-flex .flex-item.active {
font-weight: 700;
font-size: 0.32rem;
color: #F1453D;
}
.agentMain .orderlist {
line-height: 1.5;
}
.agentMain .orderlist .number {
line-height: 1.36rem;
}
.agentMain .orderlist .info {
padding-top: 0.24rem;
margin-left: 0.24rem;
}
.agentMain .orderlist .date {
color: #999999;
}
.cashMain .cash {
background: white;
margin-top: 0.24rem;
}
.cashMain .cash .li {
display: flex;
align-items: center;
height: 0.88rem;
line-height: 0.88rem;
position: relative;
font-size: 0.28rem;
padding: 0 0.24rem;
}
.cashMain .cash .li:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px solid #dddddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.cashMain .cash .li input {
flex: 1;
height: 0.80rem;
font-size: 0.28rem;
border: 0;
align-items: center;
}
.cashMain .cash .li input:disabled {
background: white;
}
.cashMain .cash h4.zhuyi {
height: 0.64rem;
line-height: 0.64rem;
}
.cashMain .cash p {
height: 0.48rem;
line-height: 0.48rem;
color: #666666;
}
.cashMain .goCash {
width: 80%;
height: 0.8rem;
line-height: 0.8rem;
font-size: 0.32rem;
font-weight: 700;
color: white;
background: #F1453D;
margin: 0.56rem auto;
border-radius: 0.44rem;
text-align: center;
}
.commissionLog .list .title {
position: relative;
}
.commissionLog .list .title:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px solid #dddddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.commissionLog .orderlist .headimgurl {
margin-left: 0.24rem;
}
.commissionLog .orderlist .right {
line-height: 1.36rem;
}
.userQrcodeMain {
width: 100%;
position: relative;
}
.userQrcodeMain .qrcode {
width: 3.2rem;
height: 3.2rem;
position: absolute;
left: 0;
right: 0;
top: 3.84rem;
margin: 0 auto;
}
.userQrcodeMain img {
width: 100%;
height: 100%;
}
.userQrcodeMain p {
text-align: center;
color: white;
font-size: 0.32rem;
}
.showPoster {
width: 80%;
margin: 0.24rem auto;
background: white;
padding-bottom: 0.24rem;
box-shadow: 0 0.04rem 0.1rem 0 rgba(0, 0, 0, 0.1);
}
.showPoster .gz {
padding: 0.24rem;
font-size: 0.26rem;
}
.showPoster .gz h4 {
height: 0.56rem;
line-height: 0.56rem;
}
.showPoster .gz ul li {
height: 0.48rem;
line-height: 0.48rem;
}
.showPoster img {
width: 100%;
}
.showPoster p {
text-align: center;
color: #666666;
font-size: 0.28rem;
}
.showPoster .bottom {
width: 60%;
margin: 0.24rem auto;
height: 0.64rem;
line-height: 0.64rem;
text-align: center;
color: white;
font-size: 0.3rem;
background: #F1453D;
}
/*share cartoon*/
.zwfy-report-cartoonBox {
display: none;
width: 2.4rem;
height: 2.4rem;
position: fixed;
z-index: 5;
left: 0;
right: 0;
top: calc(50% - 1.2rem);
margin: 0 auto;
}
.zwfy-report-cartoonBox-filter {
width: 100%;
height: 100%;
background: black;
opacity: 0.6;
border-radius: 0.08rem;
}
.zwfy-report-cartoon {
display: none;
}
.zwfy-report-cartoon-active {
display: block;
position: absolute;
width: 0.88rem;
top: 0.24rem;
left: 0;
right: 0;
margin: 0 auto 0 auto;
}
.zwfy-report-cartoonBox > p {
display: inline-block;
width: 100%;
text-align: center;
position: absolute;
top: 56%;
color: white;
font-size: 0.28rem;
right: 0;
} | public/css/web/main.css | * {
padding: 0;
margin: 0;
box-sizing: border-box;
}
ul, ol {
list-style: none;
}
img {
max-width: 100%;
max-height: 100%;
vertical-align: top;
display: block;
margin: 0 auto;
}
input[type=radio] {
display: none;
}
a {
outline: none;
text-decoration: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
color: #333;
}
a.submit {
display: block;
}
a, a:hover {
text-decoration: none;
}
html {
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
font-size: 13.33333333vw;
}
body {
margin: 0 auto;
color: #333;
position: relative;
max-width: 7.5rem;
min-width: 3.2rem;
font-family: "Helvetica Neue", Helvetica, 'Microsoft Yahei', Arial, sans-serif;
font-size: 0.24rem;
}
@-webkit-keyframes rotate {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate {
0% {
-webkit-transform: rotate(360deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes rotate2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
@keyframes rotate2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
.fl {
float: left;
}
.fr {
float: right;
}
.clear {
clear: both;
}
.hide {
display: none;
}
.show {
display: block;
}
.body {
height: 100%;
overflow: hidden;
}
.paddingT30 {
padding-top: 0.3rem;
}
.marginT20 {
margin-top: 0.2rem;
}
.marginT30 {
margin-top: 0.3rem;
}
.marginT40 {
margin-top: 0.4rem;
}
.text-center {
text-align: center;
justify-content: center;
align-items: center;
display: -webkit-flex;
}
.fix-grid {
display: flex;
}
.fix-grid-cell {
flex: 1;
}
.cell-u-full {
flex: 0 0 100%;
}
.cell-u-1of2 {
flex: 0 0 50%;
}
.cell-u-1of3 {
flex: 0 0 33.3333%;
}
.cell-u-1of4 {
flex: 0 0 25%;
}
.cell-u-1of5 {
flex: 0 0 20%;
}
.cell-u-1of8 {
flex: 0 0 12.5%;
}
.cell-u-1of10 {
flex: 0 0 10%;
}
.color_lover {
color: #C31A26;
}
.luckYear {
background: #9f2f30;
}
.flower {
background: #feb9bc;
}
.loveAstrolabe {
background: #be264a;
}
.lover {
background: #F0C6C7;
}
.main {
padding: 0.3rem 0.3rem;
}
.words {
width: 95%;
margin: 0.3rem auto;
position: relative;
}
.words .words-title {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
color: #fff;
font-size: 0.32rem;
}
.form {
border: 1px solid #e6dac6;
background-color: white;
border-radius: 0.1rem;
padding: 0.1rem 0.3rem;
}
.form li {
height: 0.8rem;
line-height: 0.8rem;
border-bottom: 1px solid #e6dac6;
font-size: 0.28rem;
color: #666666;
}
.form li span {
height: 100%;
}
.form li .text {
color: #6f0011;
margin-right: 0.15rem;
}
.form li .input, .form li .select {
width: 4.1rem;
height: 0.6rem;
border: 0;
background-color: white;
font-size: 0.28rem;
outline: none;
color: #666666;
}
.form li .radio-button {
cursor: pointer;
border: 1px solid #edcda4;
border-radius: 50%;
background: white;
padding: 0.05rem 0.1rem;
}
.form li .radio > input[type=radio]:checked ~ .radio-button {
background-color: #fe6d32;
color: white;
}
.submit {
height: 0.84rem;
line-height: 0.84rem;
border-radius: 0.1rem;
background: #f7c64f;
color: #9f2f30;
cursor: pointer;
font-size: 0.3rem;
font-weight: bold;
}
.number {
font-size: 0.24rem;
color: white;
}
.number span {
color: #ffd800;
}
.score, .comment {
width: 100%;
height: auto;
}
.luckYear-area {
border: 1px solid rgba(227, 221, 185, 0.7);
border-radius: 0.1rem;
background: white;
padding: 0.2rem 0.3rem;
}
.luckYear-score p {
margin-top: 0.15rem;
font-size: 0.28rem;
line-height: 0.5rem;
}
.luckYear-score span.color1 {
color: #f8a78c;
}
.luckYear-score span.color2 {
color: #ddb434;
}
.luckYear-score .px span {
display: inline-block;
}
.luckYear-score .px span:nth-of-type(1) {
margin-right: 0.15rem;
}
.luckYear-score .px img {
width: 0.3rem;
height: 0.4rem;
margin-left: 0.1rem;
padding-top: 0.1rem;
}
.luckYear-score .yx .area {
color: #fff;
border-radius: 0.1rem;
background: red;
padding: 0.05rem 0.3rem;
}
.luckYear-score .yx .bg_color1 {
background: #f3abbf;
}
.luckYear-score .yx .bg_color2 {
background: #fbcc7a;
}
.luckYear-score .yx .bg_color3 {
background: #e3a7ff;
}
.luckYear-comment {
padding-top: 0;
height: 3.4rem;
overflow: hidden;
}
.luckYear-comment ul li {
font-size: 0.28rem;
border-bottom: 1px dashed rgba(227, 221, 185, 0.9);
padding: 0.1rem 0;
}
.luckYear-comment ul li span {
color: #c2a04a;
}
.tips {
position: fixed;
top: 40%;
left: 50%;
width: 3.6rem;
height: 0.6rem;
line-height: 0.6rem;
background: rgba(0, 0, 0, 0.6);
border-radius: 0.05rem;
color: white;
text-align: center;
font-size: 0.24rem;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
margin-left: -1.8rem;
margin-top: -0.3rem;
}
.luopan_bg_color {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
z-index: 9999998;
background: #000;
opacity: 0.7;
transition: opacity 0.5s;
display: none;
}
#luopan_box {
height: 3.4rem;
width: 3.4rem;
margin: 0 auto;
position: fixed;
top: 50%;
left: 50%;
margin-left: -1.7rem;
margin-top: -1.7rem;
z-index: 9999999;
display: none;
vertical-align: middle;
}
#luopan_box img.img-1 {
-webkit-animation: rotate 4s linear infinite;
animation: rotate 4s linear infinite;
}
#luopan_box img.img-1 {
height: 3.4rem;
width: 3.4rem;
}
#luopan_box .img-2 {
position: absolute;
width: 0.4rem;
height: 2.8rem;
top: 0.3rem;
left: 1.5rem;
-webkit-animation: rotate2 4s linear infinite;
animation: rotate2 4s linear infinite;
}
.showPayMain {
padding: 0.2rem;
}
.showPayMain .info {
height: auto;
padding: 0.3rem 0.25rem;
background: white;
border-radius: 0.1rem;
font-size: 0.28rem;
}
.showPayMain .info .bir_img {
position: relative;
height: 1.7rem;
width: 1.7rem;
margin-top: 0.2rem;
}
.showPayMain .info .bir_img img {
width: 100%;
height: 100%;
}
.showPayMain .info .bir_img p {
position: absolute;
top: 0.45rem;
left: 0.55rem;
bottom: 0;
}
.showPayMain .info .user-info li {
padding: 0.05rem 0;
}
.showPayMain .info .user-info .color_fate {
color: #c48c61;
}
.payMain {
height: auto;
padding: 0.3rem;
background: white;
border-radius: 0.1rem;
font-size: 0.28rem;
}
.payMain .line {
width: 50%;
margin: 0.25rem auto;
}
.payMain .priceArea {
text-align: center;
margin: 0.3rem 0;
}
.payMain .priceArea .price {
color: #adadad;
text-decoration: line-through;
}
.payMain .priceArea .total_fee {
font-size: 0.34rem;
}
.payMain .pay {
width: 5.6rem;
margin: 0.2rem auto;
text-align: center;
}
.payMain .pay a {
display: block;
}
.payMain .pay img {
margin: 0.2rem auto;
vertical-align: middle;
}
.result_list {
padding-top: 0.3rem;
}
.result_list h3 {
font-size: 0.32rem;
font-weight: bold;
color: white;
}
.result_list h3 img {
display: inline-block;
width: 0.9rem;
vertical-align: bottom;
margin-right: 0.1rem;
}
.result_list .listMain {
position: relative;
font-size: 0.26rem;
}
.result_list .listMain ul {
width: 4.8rem;
position: absolute;
top: 0.6rem;
left: 1.2rem;
height: 1.6rem;
}
.result_list .listMain ul li {
position: relative;
padding: 0.08rem 0;
font-weight: bold;
}
.result_list .listMain ul li span {
position: absolute;
display: block;
width: 0.1rem;
height: 0.1rem;
background: #cd2522;
border-radius: 50%;
top: 0.2rem;
left: 0;
}
.result_list .listMain .payBut {
width: 2.6rem;
height: 0.7rem;
position: absolute;
top: 2.9rem;
left: 2.2rem;
cursor: pointer;
}
.payButAlert {
padding: 0 0.2rem;
width: 100%;
height: auto;
position: fixed;
top: 50%;
left: 50%;
z-index: 99999;
max-width: 7.5rem;
margin-left: -3.75rem;
margin-top: -2.77rem;
}
.mask {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background: rgba(0, 0, 0, 0.7);
}
.contentMain {
background: white;
border-radius: 0.1rem;
padding: 0.2rem;
font-size: 0.32rem;
line-height: 0.6rem;
}
.payReturn {
padding: 0 0.4rem;
}
.payReturn p {
text-align: center;
font-size: 0.3rem;
padding: 0.5rem 0;
}
.payReturn .is_pay {
position: relative;
margin-bottom: 0.3rem;
}
.payReturn .is_pay p {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
color: white;
font-size: 0.4rem;
}
.qrCodePay {
padding-top: 0.3rem;
padding-left: 0.2rem;
background: white;
height: auto;
}
.qrCodePay p {
font-size: 0.2rem;
padding: 0.05rem 0;
}
.qrCodePay p span {
font-weight: bold;
}
.qrCodePay p .price {
color: red;
}
.qrCodePay .qrcode {
width: 2rem;
height: 2rem;
margin: 0.1rem auto;
position: relative;
padding-bottom: 2.6rem;
}
.qrCodePay .qrcode .pay-tips {
width: 100%;
position: absolute;
height: 0.3rem;
line-height: 0.3rem;
background: #00c800;
text-align: center;
color: white;
top: 2rem;
font-size: 0.12rem;
margin-bottom: 0.3rem;
}
.hot {
height: auto;
background: white;
border-radius: 0.1rem;
padding: 0 0.1rem;
}
.hot .top {
padding: 0.3rem 0;
text-align: center;
font-weight: bold;
color: #d3556c;
font-size: 0.3rem;
}
.hot ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.hot ul li {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
width: 25%;
padding: 0 0.1rem 0.2rem;
}
.hot ul li a {
display: block;
text-decoration: none;
}
.hot ul li a h3 {
font-size: 0.26rem;
text-align: center;
color: #666666;
padding: 0.1rem 0;
}
.measureIndex .nav {
margin-bottom: 0.2rem;
}
.measureIndex .nav ul {
width: 100%;
height: 1rem;
line-height: 1rem;
background: #F1DFCF;
font-size: 0.32rem;
}
.measureIndex .nav ul li {
float: left;
width: 33.33%;
text-align: center;
}
.measureIndex .nav ul li a {
color: #333333;
}
.measureIndex .nav ul li a.on {
padding: 0.05rem 0;
color: #EB5D41;
border-bottom: 2px solid #EB5D41;
font-weight: bold;
}
.measureIndex .list {
clear: both;
}
.measureIndex .list li {
float: left;
width: 50%;
padding: 0 0.2rem 0.2rem 0.2rem;
}
.measureIndex .list li a {
color: #666;
display: block;
}
.measureIndex .list li h3 {
font-size: 0.26rem;
vertical-align: bottom;
line-height: 0.56rem;
border-bottom: 1px dashed #ccc;
}
.measureIndex .list li h3 img {
display: inline-block;
height: 0.48rem;
}
.measureIndex .list li .listimg {
margin-top: 0.1rem;
}
.reward {
border-radius: 0.1rem;
background: white;
margin-top: 0.3rem;
padding: 0.2rem;
}
.reward .text {
text-align: center;
padding: 0.1rem 0;
font-weight: bold;
color: #d3556c;
font-size: 0.3rem;
}
.reward li {
float: left;
width: 33.33%;
margin-top: 0.2rem;
}
.reward li div {
text-align: center;
font-size: 0.4rem;
border: 2px solid #d15d50;
border-radius: 0.1rem;
padding: 0.15rem 0;
color: #d15d50;
margin-right: 0.15rem;
}
.reward li div.on {
color: white;
background: #d15d50;
}
.port1_mainBox_info {
height: 0.68rem;
line-height: 0.68rem;
color: #9298ac;
font-size: 0.36rem;
text-align: center;
margin: 0.3rem 0;
}
.port1_mainBox_row {
flex-flow: row wrap;
align-content: flex-start;
padding: 0 0.4rem;
}
.port1_mainBox_cell {
box-sizing: border-box;
flex: 0 0 25%;
height: auto;
margin-bottom: 0.4rem;
text-align: center;
}
.port1_mainBox_cell a {
display: block;
}
.port1_mainBox_cell img {
width: 1.4rem;
}
.select-share-footer img {
width: 2.5rem;
margin: 0.2rem;
}
.loadingBox {
position: fixed;
left: 0;
right: 0;
top: 30%;
margin: 0 auto;
text-align: center;
width: 100%;
}
.loadingBox .loading {
width: 1.2rem;
-webkit-animation: roting 1s linear infinite;
}
.loadingBox p {
padding: 0.2rem;
color: #bfbafa;
font-size: 0.28rem;
}
@-webkit-keyframes roting {
0% {
-webkit-transform: rotateZ(0deg);
}
100% {
-webkit-transform: rotateZ(360deg);
}
}
.zwfy-report-cartoonBox {
display: none;
width: 3rem;
height: 3rem;
position: fixed;
z-index: 5;
left: 0;
right: 0;
top: 50%;
margin: -3rem auto;
}
.zwfy-report-cartoonBox-filter {
width: 100%;
height: 100%;
background: black;
opacity: 0.6;
border-radius: 0.2rem;
}
.zwfy-report-cartoon {
display: none;
}
.zwfy-report-cartoon-active {
display: block;
position: absolute;
width: 1.3rem;
top: 0.24rem;
left: 0;
right: 0;
margin: 0 auto 0 auto;
}
.zwfy-report-cartoonBox > p {
display: inline-block;
width: 100%;
text-align: center;
position: absolute;
top: 56%;
color: white;
font-size: 0.34rem;
line-height: 0.56rem;
right: 0;
}
footer {
width: 100%;
padding: 0.08rem 0;
position: fixed;
left: 0;
bottom: 0;
height: 0.98rem;
display: flex;
background-color: #F1453D;
color: white;
text-align: center;
font-size: 0.24rem;
}
footer a {
display: block;
flex: 1;
flex-direction: column;
align-items: center;
justify-content: center;
-webkit-tap-highlight-color: transparent;
color: white;
}
footer .active {
color: #FEC93E;
}
footer .iconfont {
height: 0.48rem;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
font-size: 0.44rem;
}
.indexBanner, .swiper-container {
width: 100%;
height: 3.2rem;
}
.indexBanner img, .swiper-container img {
width: 100%;
height: 3.2rem;
}
.indexBanner .swiper-pagination-fraction {
bottom: 0;
height: 0.64rem;
line-height: 0.64rem;
}
.swiper-container-horizontal > .swiper-pagination-bullets {
bottom: 0;
}
.hotMain {
padding: 0.24rem;
background: white;
border-radius: 0.2rem;
margin-top: 0.48rem;
}
.hotMain .top {
height: 0.68rem;
line-height: 0.68rem;
font-size: 0.34rem;
text-align: center;
color: #d3556c;
font-weight: bold;
}
.hotMain .grids {
display: flex;
flex-direction: row;
flex-wrap: wrap;
background: white
}
.hotMain .grids .grid-item {
margin-top: 0.24rem;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
width: 25%;
}
.hotMain .grids .grid-item img {
width: 1.12rem;
height: 1.12rem;
}
.hotMain .grids .grid-item .text {
margin-top: 0.08rem;
font-size: 0.28rem;
color: #333333;
-webkit-tap-highlight-color: transparent;
text-decoration: none;
}
.display-flex {
display: flex;
flex-direction: row;
}
.display-flex .flex-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.bjwhite {
background: white;
}
.flex-wrap-nowrap {
flex-wrap: nowrap;
}
.flex-wrap-wrap {
flex-wrap: wrap;
}
.paddingLR24 {
padding: 0 0.24rem;
}
.paddingTB24 {
padding: 0.24rem 0;
}
.text-align-center {
text-align: center;
}
.icon {
width: 0.44rem;
height: 0.44rem;
fill: currentColor;
overflow: hidden;
}
.userMain {
position: relative;
background-repeat: no-repeat;
}
.userMain .headimgurl {
width: 1.58rem;
height: 1.58rem;
position: absolute;
top: 0.4rem;
left: 0;
right: 0;
margin: 0 auto;
z-index: 999;
border-radius: 50%;
border: 0.02rem solid white;
}
.userMain .userInfo {
width: 93.6%;
height: auto;
margin: 0 auto;
background: white;
border-radius: 0.08rem;
box-shadow: 0 0.04rem 0.1rem 0 rgba(0, 0, 0, 0.1);
}
.userMain .userInfo .nickname {
padding-top: 0.8rem;
font-size: 0.3rem;
font-weight: 600;
}
.userMain .userInfo .uid {
font-size: 0.28rem;
padding: 0.16rem 0;
}
.userMain .userInfo .line {
height: 0.1rem;
width: 100%;
display: flex;
align-items: center;
}
.userMain .userInfo .line span {
display: inline-block;
width: 0.1rem;
height: 0.2rem;
background: #ebebeb;
}
.userMain .userInfo .line i {
width: 100%;
height: 1px;
position: relative;
}
.userMain .userInfo .line i:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px dashed #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.userMain .userInfo .line span.left {
border-radius: 0 0.1rem 0.1rem 0;
}
.userMain .userInfo .line span.right {
border-radius: 0.1rem 0 0 0.1rem;
}
.userMain .userInfo .display-flex {
font-size: 0.24rem;
padding: 0.24rem 0;
}
.userMain .userInfo .display-flex .flex-item {
width: 100%;
position: relative;
}
.userMain .userInfo .display-flex .flex-item:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-right: 1px solid #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.userMain .userInfo .display-flex .flex-item:last-child:after {
border-right: 0;
}
.userMain .userInfo .display-flex .flex-item span {
margin-top: 0.08rem;
font-size: 0.26rem;
}
.userMain .userInfo .display-flex .flex-item span.weight {
font-size: 0.32rem;
font-weight: 700;
}
.userMain .list {
position: relative;
}
.userMain .list:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-top: 1px solid #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.userMain .list.display-flex {
font-size: 0.24rem;
margin-top: 0.24rem;
}
.userMain .list.display-flex .flex-item {
color: #666666;
padding: 0.48rem 0;
width: 33.33%;
position: relative;
}
.userMain .list.display-flex .flex-item .icon {
width: 0.64rem;
height: 0.64rem;
}
.userMain .list.display-flex .flex-item:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.userMain .list.display-flex .flex-item:nth-child(3n):after {
border-right: 0;
}
.userMain .list.display-flex .flex-item span {
margin-top: 0.16rem;
font-size: 0.26rem;
}
.rankingMain .topList {
padding-top: 0.24rem;
background-size: cover;
background-position: 50%;
}
.rankingMain .topList .tab {
width: 90%;
height: 0.88rem;
line-height: 0.88rem;
margin: 0 auto;
}
.rankingMain .topList .tab .flex-item {
font-size: 0.32rem;
width: 33.33%;
}
.rankingMain .topList .tab .flex-item a {
text-align: center;
color: white;
}
.rankingMain .topList .tab .flex-item.active {
position: relative;
font-weight: 700;
font-size: 0.34rem;
}
.rankingMain .topList .tab .flex-item.active:after {
content: "";
position: absolute;
bottom: 0.08rem;
left: 0;
width: 100%;
height: 0.04rem;
border-radius: 0.04rem;
background: #fff;
}
.rankingMain .topList .top {
width: 100%;
display: flex;
justify-content: space-around;
align-items: flex-end;
padding: 0 0.24rem;
margin-top: 0.32rem;
}
.rankingMain .topList .top li {
background: white;
position: relative;
width: 33.33%;
margin-right: 0.08rem;
border-radius: 0.16rem 0.16rem 0 0;
height: 3.52rem;
padding: 0 0.08rem;
}
.rankingMain .topList .top li:last-child {
margin-right: 0;
}
.rankingMain .topList .top li:nth-child(2) {
height: 4.24rem;
}
.rankingMain .topList .top li .topImg {
position: absolute;
width: 0.56rem;
height: 0.64rem;
top: 0;
left: 50%;
right: 0;
margin-left: -0.24rem;
}
.rankingMain .topList .top li .headimgurl {
width: 1.28rem;
height: 1.28rem;
margin: 0 auto;
margin-top: 0.4rem;
border-radius: 50%;
display: block;
}
.rankingMain .topList .top li .level1 {
border: 2px solid #ffdc33;
}
.rankingMain .topList .top li .level2 {
border: 2px solid #b7c9d5;
}
.rankingMain .topList .top li .level3 {
border: 2px solid #d7b166;
}
.rankingMain .topList .top li .nickname {
color: #333;
font-size: 0.3rem;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
margin-top: 0.16rem;
}
.rankingMain .topList .top li .gold {
color: #f44336;
font-weight: 700;
font-size: 0.34rem;
text-align: center;
}
.rankingMain .orderlist {
height: 1.36rem;
line-height: 1.36rem;
position: relative;
display: flex;
}
.rankingMain .orderlist:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px solid #ddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.rankingMain .orderlist .headimgurl {
width: 0.8rem;
height: 0.8rem;
margin-top: 0.24rem;
align-items: center;
border-radius: 50%;
margin-left: 0.16rem;
margin-right: 0.24rem;
}
.rankingMain .orderlist .nickname {
font-size: 0.28rem;
}
.rankingMain .orderlist .number {
font-size: 0.28rem;
margin-left: 0.24rem;
}
.rankingMain .orderlist .right {
font-weight: 700;
font-size: 0.28rem;
color: #f44336;
margin-right: 0.24rem;
}
.budgetMain .top {
background: #F1453D;
padding-bottom: 0.24rem;
color: white;
}
.budgetMain .top .title {
padding-top: 0.56rem;
font-size: 0.26rem;
}
.budgetMain .top .balance {
margin-top: 0.16rem;
font-size: 0.56rem;
}
.budgetMain .top .buy {
width: 2.24rem;
font-size: 0.28rem;
height: 0.56rem;
line-height: 0.56rem;
border-radius: 0.32rem;
padding: 0 0.32rem;
background: white;
margin: 0.16rem auto;
text-align: center;
}
.budgetMain .list {
background: white;
margin-top: 0.24rem;
}
.budgetMain .list .title {
padding: 0 0.24rem;
height: 0.8rem;
line-height: 0.8rem;
font-size: 0.28rem;
color: #666666;
display: flex;
}
.budgetMain .list .title .left {
flex: 1;
}
.budgetMain .list li {
padding: 0.24rem;
display: flex;
position: relative;
align-items: center;
}
.budgetMain .list li:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-top: 1px solid #dddddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.budgetMain .list li .left {
flex: 1;
}
.budgetMain .list li .left .body {
font-size: 0.32rem;
}
.budgetMain .list li .left .date {
color: #999999;
}
.budgetMain .list li .right {
font-size: 0.32rem;
align-items: center;
font-weight: 700;
color: #f44336;
}
.agentMain .display-flex {
height: 0.88rem;
line-height: 0.88rem;
position: relative;
}
.agentMain .display-flex:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px solid #dddddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.agentMain .display-flex .flex-item {
width: 50%;
font-size: 0.28rem;
}
.agentMain .display-flex .flex-item.active {
font-weight: 700;
font-size: 0.32rem;
color: #F1453D;
}
.agentMain .orderlist {
line-height: 1.5;
}
.agentMain .orderlist .number {
line-height: 1.36rem;
}
.agentMain .orderlist .info {
padding-top: 0.24rem;
margin-left: 0.24rem;
}
.agentMain .orderlist .date {
color: #999999;
}
.cashMain .cash {
background: white;
margin-top: 0.24rem;
}
.cashMain .cash .li {
display: flex;
align-items: center;
height: 0.88rem;
line-height: 0.88rem;
position: relative;
font-size: 0.28rem;
padding: 0 0.24rem;
}
.cashMain .cash .li:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px solid #dddddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.cashMain .cash .li input {
flex: 1;
height: 0.80rem;
font-size: 0.28rem;
border: 0;
align-items: center;
}
.cashMain .cash .li input:disabled {
background: white;
}
.cashMain .cash h4.zhuyi {
height: 0.64rem;
line-height: 0.64rem;
}
.cashMain .cash p {
height: 0.48rem;
line-height: 0.48rem;
color: #666666;
}
.cashMain .goCash {
width: 80%;
height: 0.8rem;
line-height: 0.8rem;
font-size: 0.32rem;
font-weight: 700;
color: white;
background: #F1453D;
margin: 0.56rem auto;
border-radius: 0.44rem;
text-align: center;
}
.commissionLog .list .title {
position: relative;
}
.commissionLog .list .title:after {
content: "";
position: absolute;
left: 0;
width: 200%;
height: 200%;
top: 0;
border-bottom: 1px solid #dddddd;
-ms-transform: scale(0.5);
transform: scale(0.5);
transform-origin: 0 0;
pointer-events: none;
}
.commissionLog .orderlist .headimgurl {
margin-left: 0.24rem;
}
.commissionLog .orderlist .right {
line-height: 1.36rem;
}
.userQrcodeMain {
width: 100%;
position: relative;
}
.userQrcodeMain .qrcode {
width: 3.2rem;
height: 3.2rem;
position: absolute;
left: 0;
right: 0;
top: 3.84rem;
margin: 0 auto;
}
.userQrcodeMain img {
width: 100%;
height: 100%;
}
.userQrcodeMain p {
text-align: center;
color: white;
font-size: 0.32rem;
}
.showPoster {
width: 80%;
margin: 0.24rem auto;
background: white;
padding-bottom: 0.24rem;
box-shadow: 0 0.04rem 0.1rem 0 rgba(0, 0, 0, 0.1);
}
.showPoster .gz {
padding: 0.24rem;
font-size: 0.26rem;
}
.showPoster .gz h4 {
height: 0.56rem;
line-height: 0.56rem;
}
.showPoster .gz ul li {
height: 0.48rem;
line-height: 0.48rem;
}
.showPoster img {
width: 100%;
}
.showPoster p {
text-align: center;
color: #666666;
font-size: 0.28rem;
}
.showPoster .bottom {
width: 60%;
margin: 0.24rem auto;
height: 0.64rem;
line-height: 0.64rem;
text-align: center;
color: white;
font-size: 0.3rem;
background: #F1453D;
}
/*share cartoon*/
.zwfy-report-cartoonBox {
display: none;
width: 2.4rem;
height: 2.4rem;
position: fixed;
z-index: 5;
left: 0;
right: 0;
top: calc(50% - 1.2rem);
margin: 0 auto;
}
.zwfy-report-cartoonBox-filter {
width: 100%;
height: 100%;
background: black;
opacity: 0.6;
border-radius: 0.08rem;
}
.zwfy-report-cartoon {
display: none;
}
.zwfy-report-cartoon-active {
display: block;
position: absolute;
width: 0.88rem;
top: 0.24rem;
left: 0;
right: 0;
margin: 0 auto 0 auto;
}
.zwfy-report-cartoonBox > p {
display: inline-block;
width: 100%;
text-align: center;
position: absolute;
top: 56%;
color: white;
font-size: 0.28rem;
right: 0;
} | 0.566258 | 0.117167 |
.main-nav, .main-nav * {
margin: 0;
padding: 0;
list-style: none;
}
.main-nav {
line-height: 1.0;
position: relative;
}
.main-nav ul {
position: absolute;
top: -999em;
width: 170px; /* left offset of submenus need to match (see below) */
z-index: 10;
}
.main-nav ul li {
width: 100%;
padding-right:0!important;
border:none;
display:block!important;
}
.main-nav ul li a{
text-transform:none;
}
.main-nav li:hover {
visibility: inherit; /* fixes IE7 'sticky bug' */
}
.main-nav li {
display: inline-block;
position: relative;
}
.main-nav a {
display: block;
}
.main-nav li:hover ul, .main-nav li.sfHover ul {
left: 0;
top: 30px; /* match top ul list item height */
z-index: 99;
}
ul.main-nav li:hover li ul, ul.main-nav li.sfHover li ul {
top: -999em;
}
ul.main-nav li li:hover ul, ul.main-nav li li.sfHover ul {
left: 170px; /* match ul width */
top: 0;
}
ul.main-nav li li:hover li ul, ul.main-nav li li.sfHover li ul {
top: -999em;
}
ul.main-nav li li li:hover ul, ul.main-nav li li li.sfHover ul {
left: 170px; /* match ul width */
top: 0;
}
#nav-bar{
float: left;
padding-top: 31px;
padding-right: 15px;
}
/*** Skin ***/
.main-nav {
}
.main-nav li {
float: left;
margin: 0 10px
}
.main-nav li a {
padding: 7px 10px;
color: #fff;
font-size: 18px;
position: relative;
font-weight: 500;
}
.main-nav li a:hover, .main-nav li.current-menu-item a, .main-nav li:hover > a, .main-nav li.current-menu-ancestor a, .main-nav li.current-menu-parent a,
.main-nav li.sfHover li li a:hover {
color: #7bd44a ;
}
.main-nav li a span {
display:block;
}
/*Second Level*/
.main-nav ul{
border-radius: 0 5px 5px 5px;
background: #fff;
padding-top: 10px;
padding: 10px;
}
.main-nav ul ul{
background:none;
}
.main-nav li li{
padding:0px;
background-image:none;
height:auto;
margin: 0;
border-bottom: 1px solid #d4d4d4;
}
.main-nav li li:last-child{
border: none;
}
.main-nav li li li{
}
.main-nav li li a,
.main-nav li.sfHover li a,
.main-nav li.current-menu-item li a,
.main-nav li.current-menu-parent li a,
.main-nav li.current-menu-ancestor li a,
.main-nav li li.current-menu-item li a,
.main-nav li li.current-menu-parent li a,
/*3rd level*/
.main-nav li.sfHover li li a:hover,
.main-nav li.sfHover li li.current-menu-item a,
.main-nav li li.current-menu-parent li.current-menu-item a
{
color: #0a3b94;
zoom:1;
display:block!important;
float:none;
text-align:left;
padding: 5px 0;
line-height: 1;
font-size: 14px;
font-weight: normal;
margin: 0;
font-family: 'Open Sans', 'sans-serif';
}
.main-nav li li a:hover,
.main-nav li li:hover > a,
.main-nav li.sfHover li a:hover,
.main-nav li.current-menu-item li a:hover,
.main-nav li.current-menu-parent li a:hover,
.main-nav li.current-menu-ancestor li a:hover,
.main-nav li li.current-menu-item a,
.main-nav li li.current-menu-parent a,
.main-nav li li li.current-menu-item a,
/*3rd level*/
.main-nav li.sfHover li li a {
color:#000;
background: none;
}
@media (max-width: 767px) {
#nav-bar{
float: none;
padding-right: 0;
padding-bottom: 30px;
}
.main-nav ul{
padding-left: 20px;
border: none;
background: #fff;
border-radius: 0;
}
.main-nav li{
float: none;
display: block;
text-align: right;
background: none;
margin: 0;
}
.main-nav li a{
padding:5px ;
font-family: 'Open Sans', 'sans-serif';
}
.main-nav li a:hover, .main-nav li.current-menu-item a, .main-nav li:hover > a, .main-nav li.current-menu-ancestor a, .main-nav li.current-menu-parent a,
.main-nav li.sfHover li li a:hover {
color: #0a3b94;
background: #fff;
display: block;
border-radius: 0;
}
.main-nav li:hover ul, .main-nav li.sfHover ul{
left: 0;
position: relative;
top: 0;
width: 100%;
}
.main-nav li li{
padding:0px;
background-image:none;
height:auto;
margin: 0;
}
.main-nav li li a,
.main-nav li.sfHover li a,
.main-nav li.current-menu-item li a,
.main-nav li.current-menu-parent li a,
.main-nav li.current-menu-ancestor li a,
.main-nav li li.current-menu-item li a,
.main-nav li li.current-menu-parent li a,
/*3rd level*/
.main-nav li.sfHover li li a:hover,
.main-nav li.sfHover li li.current-menu-item a,
.main-nav li li.current-menu-parent li.current-menu-item a
{
color: #0a3b94;
zoom:1;
display:block!important;
float:none;
text-align:right;
padding: 5px 0;
line-height: 1;
font-size: 14px;
font-weight: normal;
margin: 0;
font-family: 'Open Sans', 'sans-serif';
}
.main-nav li li a:hover,
.main-nav li li:hover > a,
.main-nav li.sfHover li a:hover,
.main-nav li.current-menu-item li a:hover,
.main-nav li.current-menu-parent li a:hover,
.main-nav li.current-menu-ancestor li a:hover,
.main-nav li li.current-menu-item a,
.main-nav li li.current-menu-parent a,
.main-nav li li li.current-menu-item a,
/*3rd level*/
.main-nav li.sfHover li li a {
background: transparent;
text-decoration: none;
border-radius: 0;
}
} | public/assets/css/superfish.css | .main-nav, .main-nav * {
margin: 0;
padding: 0;
list-style: none;
}
.main-nav {
line-height: 1.0;
position: relative;
}
.main-nav ul {
position: absolute;
top: -999em;
width: 170px; /* left offset of submenus need to match (see below) */
z-index: 10;
}
.main-nav ul li {
width: 100%;
padding-right:0!important;
border:none;
display:block!important;
}
.main-nav ul li a{
text-transform:none;
}
.main-nav li:hover {
visibility: inherit; /* fixes IE7 'sticky bug' */
}
.main-nav li {
display: inline-block;
position: relative;
}
.main-nav a {
display: block;
}
.main-nav li:hover ul, .main-nav li.sfHover ul {
left: 0;
top: 30px; /* match top ul list item height */
z-index: 99;
}
ul.main-nav li:hover li ul, ul.main-nav li.sfHover li ul {
top: -999em;
}
ul.main-nav li li:hover ul, ul.main-nav li li.sfHover ul {
left: 170px; /* match ul width */
top: 0;
}
ul.main-nav li li:hover li ul, ul.main-nav li li.sfHover li ul {
top: -999em;
}
ul.main-nav li li li:hover ul, ul.main-nav li li li.sfHover ul {
left: 170px; /* match ul width */
top: 0;
}
#nav-bar{
float: left;
padding-top: 31px;
padding-right: 15px;
}
/*** Skin ***/
.main-nav {
}
.main-nav li {
float: left;
margin: 0 10px
}
.main-nav li a {
padding: 7px 10px;
color: #fff;
font-size: 18px;
position: relative;
font-weight: 500;
}
.main-nav li a:hover, .main-nav li.current-menu-item a, .main-nav li:hover > a, .main-nav li.current-menu-ancestor a, .main-nav li.current-menu-parent a,
.main-nav li.sfHover li li a:hover {
color: #7bd44a ;
}
.main-nav li a span {
display:block;
}
/*Second Level*/
.main-nav ul{
border-radius: 0 5px 5px 5px;
background: #fff;
padding-top: 10px;
padding: 10px;
}
.main-nav ul ul{
background:none;
}
.main-nav li li{
padding:0px;
background-image:none;
height:auto;
margin: 0;
border-bottom: 1px solid #d4d4d4;
}
.main-nav li li:last-child{
border: none;
}
.main-nav li li li{
}
.main-nav li li a,
.main-nav li.sfHover li a,
.main-nav li.current-menu-item li a,
.main-nav li.current-menu-parent li a,
.main-nav li.current-menu-ancestor li a,
.main-nav li li.current-menu-item li a,
.main-nav li li.current-menu-parent li a,
/*3rd level*/
.main-nav li.sfHover li li a:hover,
.main-nav li.sfHover li li.current-menu-item a,
.main-nav li li.current-menu-parent li.current-menu-item a
{
color: #0a3b94;
zoom:1;
display:block!important;
float:none;
text-align:left;
padding: 5px 0;
line-height: 1;
font-size: 14px;
font-weight: normal;
margin: 0;
font-family: 'Open Sans', 'sans-serif';
}
.main-nav li li a:hover,
.main-nav li li:hover > a,
.main-nav li.sfHover li a:hover,
.main-nav li.current-menu-item li a:hover,
.main-nav li.current-menu-parent li a:hover,
.main-nav li.current-menu-ancestor li a:hover,
.main-nav li li.current-menu-item a,
.main-nav li li.current-menu-parent a,
.main-nav li li li.current-menu-item a,
/*3rd level*/
.main-nav li.sfHover li li a {
color:#000;
background: none;
}
@media (max-width: 767px) {
#nav-bar{
float: none;
padding-right: 0;
padding-bottom: 30px;
}
.main-nav ul{
padding-left: 20px;
border: none;
background: #fff;
border-radius: 0;
}
.main-nav li{
float: none;
display: block;
text-align: right;
background: none;
margin: 0;
}
.main-nav li a{
padding:5px ;
font-family: 'Open Sans', 'sans-serif';
}
.main-nav li a:hover, .main-nav li.current-menu-item a, .main-nav li:hover > a, .main-nav li.current-menu-ancestor a, .main-nav li.current-menu-parent a,
.main-nav li.sfHover li li a:hover {
color: #0a3b94;
background: #fff;
display: block;
border-radius: 0;
}
.main-nav li:hover ul, .main-nav li.sfHover ul{
left: 0;
position: relative;
top: 0;
width: 100%;
}
.main-nav li li{
padding:0px;
background-image:none;
height:auto;
margin: 0;
}
.main-nav li li a,
.main-nav li.sfHover li a,
.main-nav li.current-menu-item li a,
.main-nav li.current-menu-parent li a,
.main-nav li.current-menu-ancestor li a,
.main-nav li li.current-menu-item li a,
.main-nav li li.current-menu-parent li a,
/*3rd level*/
.main-nav li.sfHover li li a:hover,
.main-nav li.sfHover li li.current-menu-item a,
.main-nav li li.current-menu-parent li.current-menu-item a
{
color: #0a3b94;
zoom:1;
display:block!important;
float:none;
text-align:right;
padding: 5px 0;
line-height: 1;
font-size: 14px;
font-weight: normal;
margin: 0;
font-family: 'Open Sans', 'sans-serif';
}
.main-nav li li a:hover,
.main-nav li li:hover > a,
.main-nav li.sfHover li a:hover,
.main-nav li.current-menu-item li a:hover,
.main-nav li.current-menu-parent li a:hover,
.main-nav li.current-menu-ancestor li a:hover,
.main-nav li li.current-menu-item a,
.main-nav li li.current-menu-parent a,
.main-nav li li li.current-menu-item a,
/*3rd level*/
.main-nav li.sfHover li li a {
background: transparent;
text-decoration: none;
border-radius: 0;
}
} | 0.294824 | 0.038286 |
.clockface {
--size: 80vmin;
position: relative;
border-radius: 50%;
width: var(--size);
min-height: var(--size);
box-shadow: inset -9px 10px 23px -6px rgba(0,0,0,0.75), -9px 10px 23px -6px rgba(0,0,0,0.75);
background: radial-gradient(ellipse at center, rgba(254,252,234,1) 0%,rgba(254,252,234,1) 59%,rgba(241,218,54,1) 100%);
}
.clockface::before {
content: "";
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
z-index: -1;
border-radius: inherit;
margin: calc(var(--size) / -80);
background: linear-gradient(45deg, red, orange);
}
.bobble {
--bobblesize: calc(var(--size) / 25);
--bobbleoffset: calc(var(--size) - var(--bobblesize));
--bobbleoffset2: calc(var(--bobbleoffset) / 2);
position: absolute;
border-radius: 50%;
width: var(--bobblesize);
height: var(--bobblesize);
transform: translateX(var(--bobbleoffset2)) translateY(var(--bobbleoffset2));
background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,1) 0%, rgba(146,146,146,1) 67%, rgba(00,00,00,1) 100%);
}
.moonphase {
--moonsize: calc(var(--size) / 8);
--moonXoffset: calc(var(--size) - var(--moonsize));
--moonXoffset2: calc(var(--moonXoffset) / 2);
--moonYoffset: calc(var(--size) / 5.33);
position: absolute;
width: var(--moonsize);
height: var(--moonsize);
background-size: contain;
background-repeat: no-repeat;
transform: translateX(var(--moonXoffset2)) translateY(var(--moonYoffset));
opacity: 0.6;
}
.temperature {
--tempsize: calc(var(--size) / 8);
--tempXoffset: calc(var(--size) - var(--tempsize));
--tempXoffset2: calc(var(--tempXoffset) / 2);
--tempYoffset: calc(var(--size) * 0.75);
position: absolute;
width: var(--tempsize);
height: var(--tempsize);
opacity: 0.8;
text-align: center;
font-size: calc(var(--size) / 13.33);
color: #444;
transform: translateX( var(--tempXoffset2) ) translateY( var(--tempYoffset) );
}
.calendar {
position: absolute;
width: 100%;
text-align: center;
color: rgba(0,0,0,0.5);
text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
font-size: calc( var(--size) / 11);
transform: translateY( calc( var(--size) / 1.77) );
}
.weathericon {
--iconsize: calc(var(--size) / 8);
--iconXoffset: calc(var(--size) / 5.33);
--iconYoffset: calc(var(--size) / 2.286);
position: absolute;
width: var(--iconsize);
height: var(--iconsize);
opacity: 0.6;
transform: translateX( var(--iconXoffset) ) translateY( var(--iconYoffset) );
}
.windicon{
--iconsize: calc(var(--size) / 8);
--iconXoffset: calc(var(--size) * 0.62);
--iconYoffset: calc(var(--size) * 0.425);
position:absolute;
width: var(--iconsize);
height: var(--iconsize);
opacity: 0.8;
transform: translateX( var(--iconXoffset) ) translateY( var(--iconYoffset) );
}
.mph {
--iconXsize: calc(var(--size) / 8);
--iconYsize: calc(var(--size) * 0.075);
--iconXoffset: calc(var(--size) * 0.725);
--iconYoffset: calc(var(--size) * 0.45);
position: absolute;
display: inline-block;
color: #444;
width: var(--iconXsize);
height: var(--iconYsize);
font-size: calc(var(--size) * 0.075);
text-align: center;
opacity: 0.8;
transform: translateX( var(--iconXoffset) ) translateY( var(--iconYoffset) );
}
.hour {
--handwidth: calc(var(--size) * 0.025);
--handheight: calc(var(--size) * 0.375);
background: rgba(255,0,0,1.0);
border: solid 1px black;
}
.minute {
--handwidth: calc(var(--size) * 0.02);
--handheight: calc(var(--size) * 0.475);
background: rgba(0,0,0,1.0);
}
.second {
--handwidth: calc(var(--size) * 0.01);
--handheight: calc(var(--size) * 0.4875);
background: rgba(255,255,255,1.0);
border: solid 1px black;
}
.hand {
--handXoffset: calc(var(--size) - var(--handwidth));
--handXoffset2: calc(var(--handXoffset) / 2);
--handYoffset: calc(var(--size) * 0.5);
--handheight90: calc(var(--handheight) * 0.9);
--handYoffset2: calc(var(--handYoffset) - var(--handheight90));
position: absolute;
width: var(--handwidth);
min-height: var(--handheight);
transform-origin: 50% 90%;
transform: translateX( var(--handXoffset2) ) translateY( var(--handYoffset2) );
}
.shadow {
--shadowX: calc(var(--handXoffset2) - calc(var(--size) * 0.0125));
--shadowY: calc(var(--handYoffset2) + calc(var(--size) * 0.0125));
--blur: calc(var(--size) * 0.0025);
background: rgba(80,80,80,0.5);
transform: translateX( var(--shadowX) ) translateY( var(--shadowY) );
filter: blur(var(--blur));
border: none;
}
.numerals {
--dialsize: calc(var(--size) * 0.925);
--dialoffset: calc(var(--size) * 0.0375);
position: absolute;
width: var(--dialsize);
height: var(--dialsize);
left: var(--dialoffset);
top: var(--dialoffset);
opacity: 0.8;
}
.glass {
position:absolute;
width: var(--size);
height: var(--size);
background: radial-gradient(ellipse at 10% 80%, rgba(255,210,0,0.3) 0%,rgba(255,255,255,0) 50%),
radial-gradient(ellipse at 70% 35%, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 30%);
border-radius: 50%;
} | clock.css | .clockface {
--size: 80vmin;
position: relative;
border-radius: 50%;
width: var(--size);
min-height: var(--size);
box-shadow: inset -9px 10px 23px -6px rgba(0,0,0,0.75), -9px 10px 23px -6px rgba(0,0,0,0.75);
background: radial-gradient(ellipse at center, rgba(254,252,234,1) 0%,rgba(254,252,234,1) 59%,rgba(241,218,54,1) 100%);
}
.clockface::before {
content: "";
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
z-index: -1;
border-radius: inherit;
margin: calc(var(--size) / -80);
background: linear-gradient(45deg, red, orange);
}
.bobble {
--bobblesize: calc(var(--size) / 25);
--bobbleoffset: calc(var(--size) - var(--bobblesize));
--bobbleoffset2: calc(var(--bobbleoffset) / 2);
position: absolute;
border-radius: 50%;
width: var(--bobblesize);
height: var(--bobblesize);
transform: translateX(var(--bobbleoffset2)) translateY(var(--bobbleoffset2));
background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,1) 0%, rgba(146,146,146,1) 67%, rgba(00,00,00,1) 100%);
}
.moonphase {
--moonsize: calc(var(--size) / 8);
--moonXoffset: calc(var(--size) - var(--moonsize));
--moonXoffset2: calc(var(--moonXoffset) / 2);
--moonYoffset: calc(var(--size) / 5.33);
position: absolute;
width: var(--moonsize);
height: var(--moonsize);
background-size: contain;
background-repeat: no-repeat;
transform: translateX(var(--moonXoffset2)) translateY(var(--moonYoffset));
opacity: 0.6;
}
.temperature {
--tempsize: calc(var(--size) / 8);
--tempXoffset: calc(var(--size) - var(--tempsize));
--tempXoffset2: calc(var(--tempXoffset) / 2);
--tempYoffset: calc(var(--size) * 0.75);
position: absolute;
width: var(--tempsize);
height: var(--tempsize);
opacity: 0.8;
text-align: center;
font-size: calc(var(--size) / 13.33);
color: #444;
transform: translateX( var(--tempXoffset2) ) translateY( var(--tempYoffset) );
}
.calendar {
position: absolute;
width: 100%;
text-align: center;
color: rgba(0,0,0,0.5);
text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
font-size: calc( var(--size) / 11);
transform: translateY( calc( var(--size) / 1.77) );
}
.weathericon {
--iconsize: calc(var(--size) / 8);
--iconXoffset: calc(var(--size) / 5.33);
--iconYoffset: calc(var(--size) / 2.286);
position: absolute;
width: var(--iconsize);
height: var(--iconsize);
opacity: 0.6;
transform: translateX( var(--iconXoffset) ) translateY( var(--iconYoffset) );
}
.windicon{
--iconsize: calc(var(--size) / 8);
--iconXoffset: calc(var(--size) * 0.62);
--iconYoffset: calc(var(--size) * 0.425);
position:absolute;
width: var(--iconsize);
height: var(--iconsize);
opacity: 0.8;
transform: translateX( var(--iconXoffset) ) translateY( var(--iconYoffset) );
}
.mph {
--iconXsize: calc(var(--size) / 8);
--iconYsize: calc(var(--size) * 0.075);
--iconXoffset: calc(var(--size) * 0.725);
--iconYoffset: calc(var(--size) * 0.45);
position: absolute;
display: inline-block;
color: #444;
width: var(--iconXsize);
height: var(--iconYsize);
font-size: calc(var(--size) * 0.075);
text-align: center;
opacity: 0.8;
transform: translateX( var(--iconXoffset) ) translateY( var(--iconYoffset) );
}
.hour {
--handwidth: calc(var(--size) * 0.025);
--handheight: calc(var(--size) * 0.375);
background: rgba(255,0,0,1.0);
border: solid 1px black;
}
.minute {
--handwidth: calc(var(--size) * 0.02);
--handheight: calc(var(--size) * 0.475);
background: rgba(0,0,0,1.0);
}
.second {
--handwidth: calc(var(--size) * 0.01);
--handheight: calc(var(--size) * 0.4875);
background: rgba(255,255,255,1.0);
border: solid 1px black;
}
.hand {
--handXoffset: calc(var(--size) - var(--handwidth));
--handXoffset2: calc(var(--handXoffset) / 2);
--handYoffset: calc(var(--size) * 0.5);
--handheight90: calc(var(--handheight) * 0.9);
--handYoffset2: calc(var(--handYoffset) - var(--handheight90));
position: absolute;
width: var(--handwidth);
min-height: var(--handheight);
transform-origin: 50% 90%;
transform: translateX( var(--handXoffset2) ) translateY( var(--handYoffset2) );
}
.shadow {
--shadowX: calc(var(--handXoffset2) - calc(var(--size) * 0.0125));
--shadowY: calc(var(--handYoffset2) + calc(var(--size) * 0.0125));
--blur: calc(var(--size) * 0.0025);
background: rgba(80,80,80,0.5);
transform: translateX( var(--shadowX) ) translateY( var(--shadowY) );
filter: blur(var(--blur));
border: none;
}
.numerals {
--dialsize: calc(var(--size) * 0.925);
--dialoffset: calc(var(--size) * 0.0375);
position: absolute;
width: var(--dialsize);
height: var(--dialsize);
left: var(--dialoffset);
top: var(--dialoffset);
opacity: 0.8;
}
.glass {
position:absolute;
width: var(--size);
height: var(--size);
background: radial-gradient(ellipse at 10% 80%, rgba(255,210,0,0.3) 0%,rgba(255,255,255,0) 50%),
radial-gradient(ellipse at 70% 35%, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 30%);
border-radius: 50%;
} | 0.606964 | 0.176299 |
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: transparent;
margin: 0;
padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
display: block;
}
audio,
canvas,
video {
display: inline-block;
*display: inline;
*zoom: 1;
}
audio:not([controls]) {
display: none;
}
html {
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
margin: 0;
}
a:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
a:hover,
a:active {
outline: 0;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
width: auto 9;
height: auto;
max-width: 100%;
vertical-align: middle;
border: 0;
-ms-interpolation-mode: bicubic;
}
#map_canvas img,
.google-maps img {
max-width: none;
}
button,
input,
select,
textarea {
margin: 0;
font-size: 100%;
vertical-align: middle;
outline-style: none;
border-color: transparent;
border: none;
}
button,
input {
*overflow: visible;
line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
padding: 0;
border: 0;
}
ul {
-webkit-margin-before: 0;
-webkit-margin-after: 0;
-webkit-margin-start: 0;
-webkit-margin-end: 0px;
-webkit-padding-start: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer;
-webkit-appearance: button;
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
cursor: pointer;
}
input[type="search"] {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
textarea {
overflow: auto;
vertical-align: top;
}
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
-webkit-appearance none {
-moz-appearance: none;
appearance: none;
border: none;
ouline-style: none;
background-color: #f00;
}
html,
body {
width: 100%;
}
*,
*:before,
*:after {
transition: 0.17s;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
word-break: break-word;
hyphens: auto;
}
*::selection {
color: #fafafa;
background: #ff5638;
}
*::-moz-selection {
color: #fafafa;
background: #ff5638;
}
a {
text-decoration: none;
color: #44484b;
}
a:hover {
cursor: pointer;
color: #ff5638;
}
body {
background: #fafafa;
color: #44484b;
}
[contenteditable="true"] {
resize: none;
outline-style: none;
border: none;
background: transparent;
padding: 0;
marging: 0;
}
[contenteditable="true"]:hover {
cursor: text;
}
[contenteditable="true"]:empty:before {
content: attr(placeholder);
display: block;
color: #afb3b6;
}
.form-error {
animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
}
.form-error:empty:before {
color: #ff5638;
}
@-moz-keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
@-webkit-keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
@-o-keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
.articleview {
display: flex;
flex-direction: column;
justify-content: center;
min-height: 100vh;
}
.articleview .articleComponent {
margin: 2rem auto;
}
.articleview .articleComponent>* {
margin: 1rem 0;
}
.articleview .articleComponent .info {
font-style: normal;
font-size: 0.875rem;
line-height: 1.5rem;
color: #777e83;
letter-spacing: 0.03125rem;
min-height: 1.5rem;
}
.articleview .articleComponent .title {
font-size: 2rem;
line-height: lh_134;
font-weight: bold;
margin-left: -0.0625rem;
min-height: lh_134;
}
.articleview .articleComponent .article {
font-size: 1rem;
line-height: 1.5rem;
min-height: 1.5rem;
}
.articleview .articleComponent .article>* {
margin: 1rem 0;
}
.articleview .articleComponent .actions {
display: flex;
flex-direction: row;
margin-left: -0.25rem;
position: relative;
width: 100%;
margin-top: 2rem;
}
.articleview .articleComponent .actions button {
border: solid #afb3b6 1px;
border-radius: 99px;
padding: 0.5rem 0.75rem;
min-width: 5rem;
font-size: 0.875rem;
background-color: transparent;
color: #44484b;
}
.articleview .articleComponent .actions button:hover:enabled {
cursor: pointer;
background: #f4f5f5;
}
.articleview .articleComponent .actions button:active:enabled {
background: #afb3b6;
}
.articleview .articleComponent .actions button:disabled {
color: #afb3b6;
border-color: rgba(175,179,182,0.5);
cursor: not-allowed;
}
.articleview[mode*='edit'] .articleComponent {
font-family: monospace, monospace;
}
.articleview[mode*='edit'] .articleComponent .info:first-child {
display: none;
}
.articleview[mode*='edit'] .articleComponent .info>:not(.authorName) {
display: none;
}
@media (min-width: 320px) {
.articleview[mode*='edit'] .articleComponent {
width: 17rem;
}
}
@media (min-width: 360px) {
.articleview[mode*='edit'] .articleComponent {
width: 20rem;
}
}
@media (min-width: 375px) {
.articleview[mode*='edit'] .articleComponent {
width: 21rem;
}
}
@media (min-width: 411px) {
.articleview[mode*='edit'] .articleComponent {
width: 23rem;
}
}
@media (min-width: 480px) {
.articleview[mode*='edit'] .articleComponent {
width: 27rem;
}
}
@media (min-width: 540px) {
.articleview[mode*='edit'] .articleComponent {
width: 31rem;
}
}
@media (min-width: 600px) {
.articleview[mode*='edit'] .articleComponent {
width: 35rem;
}
}
.articleview[mode*='edit'] .articleComponent .actions .btn-edit {
display: none;
}
.articleview[mode*='read'] .articleComponent {
font-family: -apple-system, 'PingFang SC', 'Source Sans Pro', 'Helvetica Neue', "Microsoft YaHei", Arial, serif;
}
.articleview[mode*='read'] .articleComponent .info a {
display: inline-block;
}
.articleview[mode*='read'] .articleComponent .info a:hover {
color: #ff5638;
}
.articleview[mode*='read'] .articleComponent .info>* {
display: inline-block;
}
.articleview[mode*='read'] .articleComponent .info .authorName:after,
.articleview[mode*='read'] .articleComponent .info .publishDate:after {
content: " · ";
content: "";
float: right;
display: inline-block;
line-height: 1.5rem;
margin: 0.6875rem 0.375rem;
width: 0.125rem;
height: 0.125rem;
border-radius: 99px;
background: #afb3b6;
}
.articleview[mode*='read'] .articleComponent .info:last-of-type:before {
content: " - ";
margin: 1rem auto;
color: #afb3b6;
display: block;
}
.articleview[mode*='read'] .articleComponent .info .authorName:empty:before {
display: inline-block;
content: "匿名用户";
color: #afb3b6;
}
.articleview[mode*='read'] .articleComponent .article ul,
.articleview[mode*='read'] .articleComponent .article ol {
list-style-position: outside;
padding-left: 2rem;
}
.articleview[mode*='read'] .articleComponent .article ul li,
.articleview[mode*='read'] .articleComponent .article ol li {
line-height: 1.5rem;
}
.articleview[mode*='read'] .articleComponent .article a:not(:only-child) {
color: #44484b;
border-bottom: #ff5638 dotted 1px;
}
.articleview[mode*='read'] .articleComponent .article a:not(:only-child):hover {
color: #ff5638;
border-bottom: #ff5638 dotted 1px;
}
.articleview[mode*='read'] .articleComponent .article a:only-child {
color: #ff5638;
border-bottom: rgba(255,86,56,0) solid 2px;
}
.articleview[mode*='read'] .articleComponent .article a:only-child:hover {
border-bottom: #ff5638 solid 2px;
}
.articleview[mode*='read'] .articleComponent .article q,
.articleview[mode*='read'] .articleComponent .article blockquote {
display: block;
border-left: solid 0.25rem #afb3b6;
padding-left: 0.5rem;
}
.articleview[mode*='read'] .articleComponent .article q:before {
content: '';
}
.articleview[mode*='read'] .articleComponent .article q:after {
content: '';
}
@media (min-width: 320px) {
.articleview[mode*='read'] .articleComponent {
max-width: 17rem;
}
}
@media (min-width: 360px) {
.articleview[mode*='read'] .articleComponent {
max-width: 20rem;
}
}
@media (min-width: 375px) {
.articleview[mode*='read'] .articleComponent {
max-width: 21rem;
}
}
@media (min-width: 411px) {
.articleview[mode*='read'] .articleComponent {
max-width: 23rem;
}
}
@media (min-width: 480px) {
.articleview[mode*='read'] .articleComponent {
max-width: 27rem;
}
}
@media (min-width: 540px) {
.articleview[mode*='read'] .articleComponent {
max-width: 31rem;
}
}
@media (min-width: 600px) {
.articleview[mode*='read'] .articleComponent {
max-width: 35rem;
}
}
.articleview[mode*='read'] .articleComponent .actions .btn-publish {
display: none;
}
.articleview[mode*='audience'] .actions {
display: none;
} | web/build/styl/article.css | *,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: transparent;
margin: 0;
padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
display: block;
}
audio,
canvas,
video {
display: inline-block;
*display: inline;
*zoom: 1;
}
audio:not([controls]) {
display: none;
}
html {
font-size: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
margin: 0;
}
a:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
a:hover,
a:active {
outline: 0;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
width: auto 9;
height: auto;
max-width: 100%;
vertical-align: middle;
border: 0;
-ms-interpolation-mode: bicubic;
}
#map_canvas img,
.google-maps img {
max-width: none;
}
button,
input,
select,
textarea {
margin: 0;
font-size: 100%;
vertical-align: middle;
outline-style: none;
border-color: transparent;
border: none;
}
button,
input {
*overflow: visible;
line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
padding: 0;
border: 0;
}
ul {
-webkit-margin-before: 0;
-webkit-margin-after: 0;
-webkit-margin-start: 0;
-webkit-margin-end: 0px;
-webkit-padding-start: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
cursor: pointer;
-webkit-appearance: button;
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
cursor: pointer;
}
input[type="search"] {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
textarea {
overflow: auto;
vertical-align: top;
}
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
-webkit-appearance none {
-moz-appearance: none;
appearance: none;
border: none;
ouline-style: none;
background-color: #f00;
}
html,
body {
width: 100%;
}
*,
*:before,
*:after {
transition: 0.17s;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
word-break: break-word;
hyphens: auto;
}
*::selection {
color: #fafafa;
background: #ff5638;
}
*::-moz-selection {
color: #fafafa;
background: #ff5638;
}
a {
text-decoration: none;
color: #44484b;
}
a:hover {
cursor: pointer;
color: #ff5638;
}
body {
background: #fafafa;
color: #44484b;
}
[contenteditable="true"] {
resize: none;
outline-style: none;
border: none;
background: transparent;
padding: 0;
marging: 0;
}
[contenteditable="true"]:hover {
cursor: text;
}
[contenteditable="true"]:empty:before {
content: attr(placeholder);
display: block;
color: #afb3b6;
}
.form-error {
animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
}
.form-error:empty:before {
color: #ff5638;
}
@-moz-keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
@-webkit-keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
@-o-keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
.articleview {
display: flex;
flex-direction: column;
justify-content: center;
min-height: 100vh;
}
.articleview .articleComponent {
margin: 2rem auto;
}
.articleview .articleComponent>* {
margin: 1rem 0;
}
.articleview .articleComponent .info {
font-style: normal;
font-size: 0.875rem;
line-height: 1.5rem;
color: #777e83;
letter-spacing: 0.03125rem;
min-height: 1.5rem;
}
.articleview .articleComponent .title {
font-size: 2rem;
line-height: lh_134;
font-weight: bold;
margin-left: -0.0625rem;
min-height: lh_134;
}
.articleview .articleComponent .article {
font-size: 1rem;
line-height: 1.5rem;
min-height: 1.5rem;
}
.articleview .articleComponent .article>* {
margin: 1rem 0;
}
.articleview .articleComponent .actions {
display: flex;
flex-direction: row;
margin-left: -0.25rem;
position: relative;
width: 100%;
margin-top: 2rem;
}
.articleview .articleComponent .actions button {
border: solid #afb3b6 1px;
border-radius: 99px;
padding: 0.5rem 0.75rem;
min-width: 5rem;
font-size: 0.875rem;
background-color: transparent;
color: #44484b;
}
.articleview .articleComponent .actions button:hover:enabled {
cursor: pointer;
background: #f4f5f5;
}
.articleview .articleComponent .actions button:active:enabled {
background: #afb3b6;
}
.articleview .articleComponent .actions button:disabled {
color: #afb3b6;
border-color: rgba(175,179,182,0.5);
cursor: not-allowed;
}
.articleview[mode*='edit'] .articleComponent {
font-family: monospace, monospace;
}
.articleview[mode*='edit'] .articleComponent .info:first-child {
display: none;
}
.articleview[mode*='edit'] .articleComponent .info>:not(.authorName) {
display: none;
}
@media (min-width: 320px) {
.articleview[mode*='edit'] .articleComponent {
width: 17rem;
}
}
@media (min-width: 360px) {
.articleview[mode*='edit'] .articleComponent {
width: 20rem;
}
}
@media (min-width: 375px) {
.articleview[mode*='edit'] .articleComponent {
width: 21rem;
}
}
@media (min-width: 411px) {
.articleview[mode*='edit'] .articleComponent {
width: 23rem;
}
}
@media (min-width: 480px) {
.articleview[mode*='edit'] .articleComponent {
width: 27rem;
}
}
@media (min-width: 540px) {
.articleview[mode*='edit'] .articleComponent {
width: 31rem;
}
}
@media (min-width: 600px) {
.articleview[mode*='edit'] .articleComponent {
width: 35rem;
}
}
.articleview[mode*='edit'] .articleComponent .actions .btn-edit {
display: none;
}
.articleview[mode*='read'] .articleComponent {
font-family: -apple-system, 'PingFang SC', 'Source Sans Pro', 'Helvetica Neue', "Microsoft YaHei", Arial, serif;
}
.articleview[mode*='read'] .articleComponent .info a {
display: inline-block;
}
.articleview[mode*='read'] .articleComponent .info a:hover {
color: #ff5638;
}
.articleview[mode*='read'] .articleComponent .info>* {
display: inline-block;
}
.articleview[mode*='read'] .articleComponent .info .authorName:after,
.articleview[mode*='read'] .articleComponent .info .publishDate:after {
content: " · ";
content: "";
float: right;
display: inline-block;
line-height: 1.5rem;
margin: 0.6875rem 0.375rem;
width: 0.125rem;
height: 0.125rem;
border-radius: 99px;
background: #afb3b6;
}
.articleview[mode*='read'] .articleComponent .info:last-of-type:before {
content: " - ";
margin: 1rem auto;
color: #afb3b6;
display: block;
}
.articleview[mode*='read'] .articleComponent .info .authorName:empty:before {
display: inline-block;
content: "匿名用户";
color: #afb3b6;
}
.articleview[mode*='read'] .articleComponent .article ul,
.articleview[mode*='read'] .articleComponent .article ol {
list-style-position: outside;
padding-left: 2rem;
}
.articleview[mode*='read'] .articleComponent .article ul li,
.articleview[mode*='read'] .articleComponent .article ol li {
line-height: 1.5rem;
}
.articleview[mode*='read'] .articleComponent .article a:not(:only-child) {
color: #44484b;
border-bottom: #ff5638 dotted 1px;
}
.articleview[mode*='read'] .articleComponent .article a:not(:only-child):hover {
color: #ff5638;
border-bottom: #ff5638 dotted 1px;
}
.articleview[mode*='read'] .articleComponent .article a:only-child {
color: #ff5638;
border-bottom: rgba(255,86,56,0) solid 2px;
}
.articleview[mode*='read'] .articleComponent .article a:only-child:hover {
border-bottom: #ff5638 solid 2px;
}
.articleview[mode*='read'] .articleComponent .article q,
.articleview[mode*='read'] .articleComponent .article blockquote {
display: block;
border-left: solid 0.25rem #afb3b6;
padding-left: 0.5rem;
}
.articleview[mode*='read'] .articleComponent .article q:before {
content: '';
}
.articleview[mode*='read'] .articleComponent .article q:after {
content: '';
}
@media (min-width: 320px) {
.articleview[mode*='read'] .articleComponent {
max-width: 17rem;
}
}
@media (min-width: 360px) {
.articleview[mode*='read'] .articleComponent {
max-width: 20rem;
}
}
@media (min-width: 375px) {
.articleview[mode*='read'] .articleComponent {
max-width: 21rem;
}
}
@media (min-width: 411px) {
.articleview[mode*='read'] .articleComponent {
max-width: 23rem;
}
}
@media (min-width: 480px) {
.articleview[mode*='read'] .articleComponent {
max-width: 27rem;
}
}
@media (min-width: 540px) {
.articleview[mode*='read'] .articleComponent {
max-width: 31rem;
}
}
@media (min-width: 600px) {
.articleview[mode*='read'] .articleComponent {
max-width: 35rem;
}
}
.articleview[mode*='read'] .articleComponent .actions .btn-publish {
display: none;
}
.articleview[mode*='audience'] .actions {
display: none;
} | 0.37319 | 0.065485 |
body {
padding-top: 50px;
padding-bottom: 20px;
}
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
padding-right: 15px;
}
/* Carousel */
.carousel-caption p {
font-size: 20px;
line-height: 1.4;
}
/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
width: 100%;
}
/* QR code generator */
#qrCode {
margin: 15px;
}
/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
/* Hide captions */
.carousel-caption {
display: none;
}
/* Unset panels for smaller screens*/
.affix {
position:unset;
}
}
/*@media screen and (min-width: 767px) {
.affix {
position: fixed;
}
}*/
.sidenav {
height: 100%; /* Full-height: remove this if you want "auto" height */
width: 160px; /* Set the width of the sidebar */
position: fixed; /* Fixed Sidebar (stay in place on scroll) */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
overflow-x: hidden; /* Disable horizontal scroll */
overflow-y: auto; /*Show the scrollbar */
margin-left: 20px;
}
.sidebar-nav-fixed {
width: 100%;
}
.transaction {
font-size: 11px;
table-layout: fixed;
width: 100%;
white-space: nowrap;
}
.transaction thead {
font-size: 11px;
}
.transaction td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.row-process {
width: 20%;
}
.row-lob {
width: 15%;
}
.row-premium {
width: 15%;
}
.row-received {
width: 25%;
}
.row-docId {
width: 15%;
}
.row-status {
width: 15%;
}
.dashboard {
padding-top: 20px;
padding-left: 0px;
padding-right: 0px;
}
.panel-height {
padding-top: 5px;
padding-bottom: 5px;
}
.field-validation-error {
color: Red;
}
.btn-xs {
font-size: 11px;
line-height: 1.1;
background-color: #00A4E4;
}
.headerLogo {
position: absolute;
margin: 0px;
text-align: center;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
color: #fff;
background-color: #00A4E4;
} | Metrics_Track/Metrics_Track.Web/wwwroot/css/site.css | body {
padding-top: 50px;
padding-bottom: 20px;
}
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
padding-right: 15px;
}
/* Carousel */
.carousel-caption p {
font-size: 20px;
line-height: 1.4;
}
/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
width: 100%;
}
/* QR code generator */
#qrCode {
margin: 15px;
}
/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
/* Hide captions */
.carousel-caption {
display: none;
}
/* Unset panels for smaller screens*/
.affix {
position:unset;
}
}
/*@media screen and (min-width: 767px) {
.affix {
position: fixed;
}
}*/
.sidenav {
height: 100%; /* Full-height: remove this if you want "auto" height */
width: 160px; /* Set the width of the sidebar */
position: fixed; /* Fixed Sidebar (stay in place on scroll) */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
overflow-x: hidden; /* Disable horizontal scroll */
overflow-y: auto; /*Show the scrollbar */
margin-left: 20px;
}
.sidebar-nav-fixed {
width: 100%;
}
.transaction {
font-size: 11px;
table-layout: fixed;
width: 100%;
white-space: nowrap;
}
.transaction thead {
font-size: 11px;
}
.transaction td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.row-process {
width: 20%;
}
.row-lob {
width: 15%;
}
.row-premium {
width: 15%;
}
.row-received {
width: 25%;
}
.row-docId {
width: 15%;
}
.row-status {
width: 15%;
}
.dashboard {
padding-top: 20px;
padding-left: 0px;
padding-right: 0px;
}
.panel-height {
padding-top: 5px;
padding-bottom: 5px;
}
.field-validation-error {
color: Red;
}
.btn-xs {
font-size: 11px;
line-height: 1.1;
background-color: #00A4E4;
}
.headerLogo {
position: absolute;
margin: 0px;
text-align: center;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
color: #fff;
background-color: #00A4E4;
} | 0.471223 | 0.082771 |
@charset "UTF-8";
a.red {
color: #FA6400;
}
.clr {
clear: both;
display: block;
font-size: 0;
height: 0;
line-height: 0;
overflow: hidden;
padding: 0px;
margin: 0px;
}
.clear {
clear: both;
padding: 0px;
font-size: 0px;
margin: 0px;
height: 0px;
line-height: 0;
overflow: hidden;
display: block;
}
.clear1 {
clear: both;
height: 5px;
font-size: 0px;
margin: 0px;
padding: 0px;
line-height: 0;
overflow: hidden;
display: block;
}
.clear2 {
clear: both;
height: 10px;
font-size: 0px;
margin: 0px;
padding: 0px;
line-height: 0;
overflow: hidden;
display: block;
}
.hide {
display: none;
}
/*顶部banner*/
.topbanner {
margin: 0 auto;
position: relative;
text-align: center;
}
.topbanner .banner {
background: url(http://001.sfimg.cn/web/df545cf2/df545cf2a716a21af6203b522f8bc469.jpg) no-repeat center top;
display: block;
margin: 0 auto;
position: relative;
text-align: center;
width: 100%;
height: 80px;
}
.topbanner .banner a {
width: 1200px;
height: 80px;
display: block;
text-indent: -9999px;
margin: 0 auto;
}
.topbanner .topclose {
display: block;
position: absolute;
top: 5px;
left: 50%;
margin-left: 575px;
width: 25px;
height: 16px;
background: url(http://i.sfimg.cn/html/images/topclose.png) no-repeat center center;
cursor: pointer;
text-indent: -9999px;
}
/* ---------顶部导航条----------- */
.topMenu {
width: 100%;
height: 33px;
text-align: center;
position: relative;
z-index: 101;
background: #f7f7f7;
border-bottom: 1px solid #eeeeee;
}
.topMenu .menu {
width: 1200px;
margin: auto;
}
.topMenu .menu .f_left {
float: left;
}
.topMenu .menu .f_right {
float: right;
}
.topMenu a {
color: #969696;
}
.topMenu a:hover {
color: #669900;
}
.topTh li {
float: left;
position: relative;
line-height: 33px;
}
.topTh .d1 {
color: #969696;
}
.topTh .d2 {
padding: 0 10px 0 28px;
}
.topTh .d2 q {
background: url(../img/header.png) no-repeat -73px -122px;
width: 10px;
left: 10px;
transition: all 0.2s ease 0s;
}
.topTh .d3, .topTh .d4 {
width: 30px;
height: 30px;
}
.topTh .d2 q, .topTh .d3 q, .topTh .d4 q {
height: 16px;
position: absolute;
top: 9px;
}
.d2:hover q {
background: url(../img/header.png) no-repeat -73px -138px;
}
/* 城市选择 */
.topTh .d6 .pshort {
width: 50px;
height: 20px;
line-height: 20px;
border: 1px solid #DCDCDC;
margin: 6px 0 0 0;
overflow: hidden;
}
.topTh .d6 .city_title1 {
margin: 0 0 0 5px;
width: 30px;
overflow: hidden;
display: block;
color: #333333;
}
.topTh .d6 b {
background: url(../img/header.png) no-repeat -86px -130px;
width: 8px;
height: 4px;
position: absolute;
top: 15px;
right: 5px;
}
.d6:hover b {
transform: rotate(180deg);
}
/* 扫描二维码下载客户端 */
.topTh .d2 .dd {
/* display: none; */
width: 230px;
top: 32px;
left: -50px;
padding: 15px 0 0 0;
}
.dd .sf-client {
margin-bottom: 10px;
margin-left: 15px;
position: relative;
text-align: left;
}
.dd .client-img {
width: 73px;
height: 74px;
overflow: hidden;
background: url(../img/header.png) no-repeat 0 -93px;
display: block;
}
.dd i {
position: absolute;
width: 50px;
height: 29px;
left: 80px;
top: 5px;
background: url(../img/header.png) no-repeat -73px -93px;
display: block;
}
.dd .client-txt {
position: absolute;
left: 95px;
top: 34px;
}
.dd .client-txt em {
display: block;
line-height: 20px;
}
.dd .client-txt strong {
color: #76ac25;
line-height: 20px;
}
.dd .client-promo {
height: 30px;
background: url(../img/indexImg20130307.png) no-repeat -182px -210px #fcfbe4;
text-align: center;
color: #fa6400;
font-size: 14px;
font-weight: bold;
line-height: 30px;
}
.dd .client-promo a:link, .dd .client-promo a:visited {
color: #fa6400;
}
.dd .app-btn {
font-size: 0;
height: 29px;
margin: 0 0 10px 15px;
}
.dd .app-apple {
float: left;
display: block;
width: 96px;
height: 29px;
background: url(../img/header.png) no-repeat 0 -167px;
margin-right: 5px;
}
.dd .app-android {
float: left;
display: block;
width: 96px;
height: 29px;
background: url(../img/header.png) no-repeat 0 -196px;
}
/* 微博 */
.d3 q {
background: url(../img/header.png) no-repeat -55px 0;
width: 19px;
left: 12px;
cursor: pointer;
quotes: none;
}
/* 微信 */
.d4 q {
background: url(../img/header.png) no-repeat -74px 0;
width: 17px;
left: 8px;
quotes: none;
}
.d4 dd {
/* display: none; */
left: -50px;
top: 32px;
}
.d4 dd .sf_wx_t {
width: 136px;
height: 20px;
line-height: 22px;
color: #515151;
}
.d4 dd .sf_wx {
display: block;
width: 136px;
height: 110px;
background: url(http://i.sfimg.cn/html/images/weixin.png) no-repeat top center #fff;
}
/* 登陆注册 */
.login {
color: #999999;
padding: 0 10px;
}
.login a:link, .login a:visited {
color: #969696;
}
.login a:hover {
color: #669900;
}
/* 我的订单/在线客服 */
.topTh .myOrder {
padding: 0 10px;
}
/* 我的优选 */
.topTh .menus {
padding: 0 10px 0 10px;
width: 60px;
cursor: default;
margin: 6px 0 0 0;
line-height: 22px;
}
.topMenu .f_right b {
position: absolute;
right: 5px;
top: 8px;
background: url(../img/header.png) no-repeat -86px -130px;
width: 8px;
height: 4px;
transition: transform .2s ease-in 0s;
overflow: hidden;
}
/* 网站导航 */
.topTh .allCat {
padding: 0 15px;
cursor: default;
margin: 6px 0 0 0;
line-height: 22px;
}
.topTh .allCat .site {
color: #969696;
}
.topTh .allCat s {
position: absolute;
right: 0;
top: 8px;
background: url(../img/header.png) no-repeat -86px -130px;
width: 8px;
height: 4px;
transition: transform .2s ease-in 0s;
overflow: hidden;
}
/*注册样式*/
.newregbox {
position: relative;
display: inline-block;
}
.newregTips {
display: inline-block;
margin-top: 7px;
}
.newregdiv {
cursor: pointer;
width: 292px;
height: 34px;
text-align: center;
position: absolute;
top: 25px;
left: -146px;
padding-left: 22px;
}
.newwords {
color: #fff;
font-size: 12px;
height: 22px;
float: left;
padding: 0 8px;
min-width: 60px;
text-align: left;
overflow: hidden;
background: #f14431;
border-radius: 10px;
line-height: 22px;
}
.up-icon {
display: inline-block;
width: 11px;
height: 7px;
background: url(http://i.sfimg.cn/html/images/regicon-top.png) left top;
position: absolute;
top: 0;
left: 165px;
}
/*end注册样式*/
/*----下拉框样式----*/
.topTh .blank, .topTh .dd, .topTh .outline {
display: none;
position: absolute;
border: 1px solid #dadada;
background-color: white;
z-index: 1000;
}
.topTh .blank {
margin-left: 5px;
top: 0;
height: 33px;
z-index: -1;
left: 0;
width: 78px;
box-shadow: 0 0 5px #dadada;
}
.topTh .menus .dd {
margin-left: 5px;
line-height: 22px;
left: 0;
width: 78px;
box-shadow: 0 0 5px #dadada;
top: 28px;
}
.topTh .outline {
z-index: 1;
left: 6px;
width: 78px;
height: 8px;
top: 22px;
border: 0 none;
overflow: hidden;
}
/* 网站导航下拉框 */
.allCat .blank, .allCat .outline {
width: 81px;
}
.allCat .dd {
top: 28px;
width: 815px;
right: 0;
margin-right: -10px;
left: auto;
padding-top: 10px;
box-shadow: 0 0 5px #dadada;
}
.allCat dl {
float: left;
width: 200px;
padding: 15px 19px 0 20px;
text-align: left;
margin-bottom: 10px;
}
.allCat dl dt {
font-weight: bold;
margin-bottom: 5px;
font-size: 16px;
font-family: Microsoft Yahei;
}
.allCat dl dd {
line-height: 20px;
height: 100px;
overflow: hidden;
}
.allCat .line {
background: url(../img/line.jpg) center repeat-y;
height: 90px;
width: 5px;
margin: 20px 0 0 0;
}
dl dd a {
display: block;
width: 65px;
float: left;
line-height: 30px;
color: #666666;
}
dl dd p {
width: 100%;
float: left;
}
dl .dh1 {
color: #669900;
}
dl .dh2 {
color: #FA6400;
}
dl .dh3 {
color: #646464;
}
dl .fore1 {
height: auto;
}
/* ---------hover样式----------- */
/* 网站导航小三角翻转动画 */
.allCat:hover s {
transform: rotate(180deg);
}
/* 帮助中心/我的优选小三角翻转动画 */
.menus:hover b {
transform: rotate(180deg);
}
/* 鼠标移入时出现小三角 */
.tShow .corner {
display: none;
width: 8px;
height: 15px;
position: absolute;
top: 25px;
left: 8px;
z-index: 2;
}
.tShow .corner .aBg, .tShow .corner .aCt {
display: block;
font-size: 0;
height: 0;
line-height: 0;
overflow: hidden;
width: 0;
}
.tShow .aBg {
border-left: 8px dashed rgba(0, 0, 0, 0);
border-bottom: 8px solid #dadada;
border-right: 8px dashed rgba(0, 0, 0, 0);
border-top: 0 none;
position: relative;
}
.tShow .aCt {
border-left: 8px dashed rgba(0, 0, 0, 0);
border-bottom: 8px solid #ffffff;
border-right: 8px dashed rgba(0, 0, 0, 0);
border-top: 0 none;
position: relative;
margin: -7px 0 0 0px;
}
.tShow:hover .corner {
display: block;
}
.topTh .d2 .corner {
left: 45px;
}
/* 鼠标移入时显示下拉框 */
.topTh .menus:hover .t, .topTh .allCat:hover .t, .topTh .tShow:hover .t {
color: #669900;
}
.topTh .menus:hover .blank, .topTh .menus:hover .dd, .topTh .menus:hover .outline, .topTh .allCat:hover .blank, .topTh .allCat:hover .dd, .topTh .allCat:hover .outline, .topTh .tShow:hover .blank, .topTh .tShow:hover .dd, .topTh .tShow:hover .outline {
display: block;
}
/* ---------end顶部导航条----------- */
/* ------------header-------------- */
#header {
padding: 0;
height: 104px;
width: 1200px;
margin: 0 auto;
}
.header_inner {
width: 1200px;
margin: auto;
position: relative;
z-index: 31;
}
/*↓logo↓*/
.header_inner .logo {
width: 240px;
margin: 0px;
float: left;
padding: 5px 0px 0px 0px;
position: relative;
}
.header_inner .logo .index_logo {
width: 220px;
border: 0;
height: 69px;
}
/*↓搜索框↓*/
.header_inner .search {
position: absolute;
width: 514px;
margin: 0px;
padding: 0px;
right: 248px;
top: 28px;
}
.header_inner .search input.text {
color: #999999;
border: 1px solid #669900;
width: 425px;
height: 34px;
line-height: 34px;
padding: 0 0 0 4px;
vertical-align: middle;
float: left;
}
.header_inner .search input.submit {
margin: 0px;
height: 36px;
width: 80px;
cursor: pointer;
float: left;
vertical-align: middle;
border: 0;
background: url(../img/header.png) no-repeat -99px -179px;
color: #fff;
}
/*↓搜索热词↓*/
.search_hot {
clear: both;
text-align: left;
padding: 4px 0px 0px 0px;
}
.search_hot a {
margin: 0px 8px 0px 0px;
color: #979797;
}
.search_hot a:hover {
color: #669900;
}
/*↓顶部购物车↓*/
.shopingcar {
width: 146px;
padding-left: 48px;
position: absolute;
top: 28px;
right: 0px;
height: 33px;
border: 1px solid #efefef;
line-height: 33px;
font-size: 12px;
}
/* 购物车小图标 */
.shopingcar s {
background: url(../img/header.png) no-repeat -102px -235px;
width: 23px;
height: 21px;
left: 17px;
position: absolute;
top: 4px;
}
.shopingcar b#cartNum {
position: absolute;
top: -1px;
left: 154px;
width: 40px;
height: 34px;
text-align: center;
line-height: 34px;
background-color: #fa9600;
color: white;
font-size: 16px;
font-weight: 600;
}
#topCart:hover .blank, #topCart:hover #cart_lists, #topCart:hover .outline {
display: block;
position: absolute;
border: 1px solid #efefef;
background-color: white;
}
#topCart:hover .blank {
top: -1px;
height: 33px;
z-index: -1;
left: -1px;
width: 194px;
box-shadow: 0 0 5px #efefef;
}
#topCart:hover .outline {
z-index: 1;
left: 0;
width: 154px;
height: 8px;
top: 28px;
border: 0 none;
}
#topCart:hover .t {
color: #669900;
}
#topCart .t {
color: #666666;
}
#topCart .setCart {
margin: 2px 0 0 0;
}
/*↓购物车列表↓*/
#cart_lists {
display: none;
width: 360px;
right: -1px;
box-shadow: 0 0 5px #dadada;
top: 34px;
}
.floatcar {
padding: 10px;
width: 340px;
font-size: 12px;
font-weight: normal;
line-height: 20px;
}
.floatcar1 {
padding: 10px 0;
}
/*↓购物车中暂无商品↓*/
.floatcar .nopro {
width: 240px;
height: 42px;
margin: 0 0 0 85px;
background: url(../img/header.png) no-repeat -99px -123px;
}
.floatcar .nopro p {
padding-left: 50px;
}
/*---------------mainnav------------- */
.mainNav {
width: 100%;
height: 32px;
border-bottom: 2px solid #679800;
}
.navmenu {
margin: 0px auto;
color: #303437;
padding: 0;
width: 1200px;
clear: both;
}
.navmenu .categories {
float: left;
width: 200px;
background: #76ac25;
height: 34px;
text-align: left;
position: relative;
z-index: 100;
}
.navmenu .categories a.topall {
height: 32px;
line-height: 32px;
display: block;
margin: 0px;
padding: 0px;
color: #fff;
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: bold;
width: 200px;
text-align: center;
text-decoration: none;
}
.navmenu .categories .dt {
height: 34px;
overflow: hidden;
background: url(../img/cate_bg.jpg);
}
/* -----------------↓menufloat↓----------------- */
.menu1 {
width: 1000px;
float: right;
position: relative;
z-index: 30;
}
.menu1 ul {
width: 1000px;
overflow: hidden;
height: 32px;
line-height: 32px;
}
.menu1 li {
float: left;
text-align: center;
color: #303437;
}
.menu1 li a {
padding: 0 24px;
font-size: 14px;
text-align: center;
text-decoration: none;
display: block;
height: 32px;
font-family: Microsoft YaHei;
color: #333;
font-weight: 700;
}
.menu1 li a:hover {
font-size: 14px;
color: #669900;
text-decoration: none;
}
.menu1 li a.btndown {
color: #669900;
}
.menu1 .ad {
float: right;
width: 196px;
height: 32px;
overflow: hidden;
}
.menu1 .ad a {
padding: 0;
}
.menu1 .ad img {
width: 196px;
height: 32px;
}
/* ------------------------↓footer↓----------------------- */
/* 分割线footer_zd1 */
#footer .footer_zd1 {
width: 100%;
border-bottom: 1px solid #E0E0E0;
margin: 20px 0 0 0;
}
/* end分割线footer_zd1 */
.pageFooter {
width: 1200px;
margin: 0 auto;
}
.pageFooter .middle {
float: left;
width: 290px;
height: 145px;
margin: 20px 0px 0px 10px;
background: url(../img/logo.jpg) no-repeat left top;
}
.pageFooter .middle ul {
padding: 85px 0 0 0;
}
.pageFooter .middle .kefu {
font-size: 20px;
color: #646464;
font-weight: bold;
padding: 6px 0;
}
.pageFooter .left {
float: left;
margin: 35px 0 0 0;
width: 235px;
height: 145px;
}
.pageFooter .left ul {
margin: 0px;
padding: 0px 0px 0px 0px;
float: left;
}
.pageFooter .left li {
font-size: 14px;
color: #666666;
font-family: Microsoft YaHei;
font-weight: bold;
}
.left li.fWeibo {
height: 40px;
line-height: 40px;
}
.left li.fWeibo span {
display: block;
width: 29px;
height: 29px;
float: left;
background: url(../img/indexImg20130307.png) no-repeat -322px -70px;
margin-right: 4px;
}
.left li.fWeibo font {
float: left;
font-size: 14px;
font-weight: bold;
padding: 0px 16px 0px 0px;
}
.left li.fWeibo a {
display: block;
width: 130px;
height: 36px;
float: left;
background: url(../img/footer_ico.jpg) no-repeat -7px -52px;
}
.left li.fTel {
height: 36px;
line-height: 36px;
}
.left li.fTel span {
display: block;
width: 29px;
height: 29px;
float: left;
background: url(../img/indexImg20130307.png?v=1.4) no-repeat -358px -70px;
margin-right: 4px;
}
.left li.fTel font {
font-size: 20px;
padding: 0px 0px 0px 10px;
}
.left li.fNum {
font-size: 22px;
color: #565656;
font-weight: bold;
}
.left .f_ios li {
width: 80px;
text-align: center;
margin: 0 50px 8px 0;
line-height: 24px;
}
.left .f_ios span {
display: block;
width: 80px;
height: 80px;
background: url(../img/foot_bottom.png) no-repeat 0px 0px;
margin: auto;
}
.left .f_wx span {
display: block;
width: 80px;
height: 80px;
background: url(../img/foot_bottom.png) no-repeat -83px 0px;
margin: auto;
}
.left .f_wx li {
width: 80px;
text-align: center;
margin: 0 0 8px 0;
line-height: 24px;
}
.left .f_icon {
width: 80px;
}
.left .f_icon span {
display: block;
width: 45px;
height: 45px;
background: url(../img/footer_ico.jpg) no-repeat;
margin: auto;
}
.left .f_icon span.a {
background-position: -146px -5px;
}
.left .f_icon span.b {
background-position: -198px -5px;
}
.left .f_icon span.c {
background-position: -246px -5px;
}
.left .f_tel {
width: 230px;
text-align: left;
font-size: 12px;
font-weight: normal;
}
.right {
float: left;
margin: 35px 0 0 0;
width: 645px;
}
.right ul {
float: left;
margin: 0px 8px 0px 0px;
padding: 0px 0px 0px 0px;
width: 120px;
}
.right li {
text-align: left;
font-family: Microsoft YaHei;
height: 24px;
line-height: 24px;
color: #646464;
}
.right li a {
color: #707070;
display: block;
padding: 0px 0px 0px 0px;
}
.right li.title {
color: #707070;
font-weight: bold;
font-size: 14px;
}
.right li.title span {
background: url(images/footer_ico.jpg) no-repeat;
display: block;
height: 26px;
width: 26px;
float: left;
margin: 0px 9px 0px 0px;
}
.right li.title .style_a {
background-position: -7px -5px;
}
.right li.title .style_b {
background-position: -39px -5px;
}
.right li.title .style_c {
background-position: -74px -5px;
}
.right li.title .style_d {
background-position: -109px -5px;
}
.pageFooter .pic {
height: 44px;
width: 1200px;
background: #ededed;
text-align: center;
padding: 6px 0px 0px 0px;
margin: 0px 0px 0px 0px;
clear: both;
}
.pageFooter .pic span {
display: block;
height: 40px;
width: 750px;
background: url(../img/footer_ico.jpg) no-repeat 0px -120px;
margin: auto;
}
#footer {
line-height: 18px;
color: #969696;
width: 100%;
overflow: hidden;
}
#footer a {
color: #646464;
text-decoration: none;
}
#footer a:hover {
color: #669900;
text-decoration: none;
}
#footer .f_ios a:hover {
color: #646464;
text-decoration: none;
}
#footer a.beian {
color: #969696;
text-decoration: none;
}
#footer a.beian:hover {
color: #669900;
text-decoration: none;
}
#footer .footer_zd1 {
width: 100%;
border-bottom: 1px solid #E0E0E0;
margin: 20px 0 0 0;
}
#footer .footer_zd {
height: 120px;
background: #F5F5F5;
width: 100%;
margin: 10px 0 0 0;
}
#footer .footer_zd ul {
width: 1200px;
margin: 0px auto;
}
#footer .footer_zd li {
width: 300px;
height: 120px;
float: left;
}
#footer .quanqiu {
background: url(http://i.sfimg.cn/html/images/foot/f1.png) no-repeat center center;
}
#footer .chandi {
background: url(http://i.sfimg.cn/html/images/foot/f2.png) no-repeat center center;
}
#footer .qcll {
background: url(http://i.sfimg.cn/html/images/foot/f3.png) no-repeat center center;
}
#footer .sfzd {
background: url(http://i.sfimg.cn/html/images/foot/f4.png) no-repeat center center;
}
#footer .foot {
width: 100%;
height: 285px;
}
#footer .bottom {
width: 1180px;
height: 50px;
margin: 0px auto;
border-top: 1px solid #E0E0E0;
padding-top: 15px;
position: relative;
}
#footer ._bottom_kx {
float: left;
}
#footer ._bottom_kx span {
display: inline-block;
position: relative;
width: 94px;
height: 33px;
}
#footer .siteinfo {
float: left;
position: absolute;
top: 13px;
left: 280px;
padding: 0;
}
#footer .siteinfo span {
padding-left: 13px;
}
.footer_zd li a {
width: 200px;
cursor: pointer;
display: block;
height: 60px;
outline-style: none;
margin: 30px 0 0 50px;
}
._bottom_kx a img {
border: 0px;
height: 33px;
}
/* ------------------------↓侧边导航↓----------------------- */
.side-wrap {
position: fixed;
bottom: 20px;
left: 50%;
margin-left: 610px;
z-index: 999;
}
.side-wrap .side-c {
width: 44px;
height: 44px;
position: relative;
margin-top: 6px;
}
.side-wrap .s-cart-num {
height: 18px;
width: 34px;
line-height: 18px;
border-radius: 10px;
overflow: hidden;
position: absolute;
top: -5px;
right: -9px;
text-align: center;
background-color: #FA9600;
color: white;
border: 1px solid #FA9600;
}
.side-wrap .s-kefu {
background: url(../img/index_kefu.png) center center no-repeat;
width: 42px;
height: 42px;
display: block;
border: 1px solid #dadada;
}
.side-wrap .side_v {
background: url(../img/paid_bg.png) no-repeat -41px -182px;
width: 44px;
height: 44px;
display: block;
}
.side-wrap .s-cart {
background: url(../img/productList.png) no-repeat 0 -45px;
width: 42px;
height: 42px;
display: block;
border: 1px solid #dadada;
}
.side-wrap .s-guang {
background: url(../img/productList.png) no-repeat -42px -82px;
width: 42px;
height: 42px;
display: block;
border: 1px solid #dadada;
}
.side-wrap .s-app {
background: url(../img/productList.png) no-repeat -42px -40px;
width: 42px;
height: 42px;
display: block;
border: 1px solid #dadada;
text-indent: -9999px;
overflow: hidden;
}
.side-wrap .s-promote {
width: 42px;
height: 42px;
display: none;
background: url(../img/sf_new_bg.png) no-repeat 0 -27px;
border: 1px solid #dadada;
display: block;
text-indent: -9999px;
}
.side-wrap .s-top {
width: 42px;
height: 42px;
display: block;
background: url(../img/productList.png) no-repeat 0 -82px;
border: 1px solid #dadada;
}
.side-wrap a.s-cart:hover {
background: url(../img/productList.png) no-repeat 0 -147px;
}
.side-wrap a.s-guang:hover {
background: url(../img/productList.png) no-repeat -42px -184px;
}
.side-wrap a.s-app:hover {
background: url(../img/productList.png) no-repeat -42px -142px;
}
.side-wrap a.s-promote:hover {
background: url(../img/sf_new_bg.png) no-repeat 0 -69px;
}
.side-wrap a.s-top:hover {
background: url(../img/productList.png) no-repeat 0 -184px;
}
/* ------左边弹出的框------- */
.cart-shopping, .history, .appDown, .promote-wrap {
position: absolute;
right: 44px;
bottom: 50px;
width: 372px;
overflow: hidden;
display: none;
}
/*弹出框右边小三角*/
.cart-wrap .cart-arr, .guang .cart-arr, .appDown .cart-arr {
width: 8px;
height: 15px;
position: absolute;
right: -8px;
margin-left: -1px;
background: url(../img/productList.png) no-repeat -88px -88px;
}
.cart-wrap .cart-arr {
bottom: 160px;
}
.guang .cart-arr {
bottom: 110px;
}
.appDown .cart-arr {
bottom: 63px;
}
/*end弹出框右边小三角*/
.cart-list, .his-list, .appItem {
position: relative;
bottom: 0;
border: 1px solid #dadada;
width: 360px;
background-color: white;
}
.cart-list .floatcar, .his-list .floatcar {
position: static;
border: 0 none;
box-shadow: none;
background-color: white;
}
/* -----↓您有X件商品加入购物车↓------ */
.cart-list .cart-num {
height: 48px;
text-align: center;
color: #000000;
display: none;
}
.cart-list .cart-num-icon {
background: url(../img/productList.png) no-repeat -88px -39px;
height: 18px;
padding: 0 0 0 25px;
display: inline-block;
margin-top: 20px;
}
.cart-list #add-num {
color: #EA5404;
}
/* ↓去购物车结算↓ */
a.submit5 {
margin: 10px 0 0 0;
display: block;
font-size: 14px;
color: #fff;
height: 28px;
line-height: 28px;
cursor: pointer;
text-decoration: none;
width: 110px;
text-align: center;
background: url(../img/productinfo.png) no-repeat -182px -234px;
}
a.submit5:hover {
background: url(../img/productinfo.png) no-repeat -182px -262px;
}
/* ↓冷链配送,顺丰到家! */
.floatcar {
padding: 10px;
width: 340px;
font-size: 12px;
font-weight: normal;
line-height: 20px;
}
.floatcar .title {
color: #666;
border-bottom: 1px solid #1b6146;
height: 24px;
}
.floatcar .total p {
width: 170px;
float: left;
}
.floatcar ul {
margin: 0px;
padding: 0px;
display: block;
position: relative;
max-height: 195px;
overflow: auto;
}
.floatcar li {
margin: 0px;
padding: 12px 0px 12px 0px;
height: 40px;
position: relative;
border-bottom: 1px dashed #ccc;
line-height: 18px;
color: #565656;
}
.floatcar li:hover {
background: #f5f5f5;
}
.floatcar .l {
position: absolute;
width: 45px;
height: 45px;
}
.floatcar .l img {
width: 40px;
height: 40px;
vertical-align: middle;
border: 1px solid #ccc;
}
.floatcar .c {
position: absolute;
width: 200px;
height: 36px;
left: 48px;
top: 14px;
overflow: hidden;
}
.floatcar .c a {
color: #565656;
height: 18px;
overflow: hidden;
display: block;
}
.floatcar .c a:hover {
color: #669900;
cursor: pointer;
}
.floatcar .c b {
font-weight: normal;
color: #cecece;
}
.floatcar .r {
position: absolute;
text-align: right;
width: 80px;
height: 36px;
right: 0px;
}
.floatcar .r font {
color: #f05404;
font-size: 14px;
font-weight: bold;
}
.floatcar .r a {
clear: both;
color: #999999;
}
#listCartNum {
color: #ea5404;
font-size: 14px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.guang .cart-num {
text-align: center;
color: #000000;
padding: 10px;
border-bottom: 1px solid #1B6146;
}
.guang .r a:link, .guang .r a:visited {
color: #547e01;
}
.guang .floatcar ul, .cart-wrap .floatcar ul {
max-height: 260px;
}
.appItem {
padding: 20px 0 0 0;
}
.appItem .sf-client {
margin-bottom: 10px;
margin-left: 50px;
position: relative;
text-align: left;
}
.appItem .client-img {
width: 115px;
height: 116px;
overflow: hidden;
background: url(../img/indexImg20130307.png?v=1.4) no-repeat 0 -210px;
display: block;
}
.appItem i {
position: absolute;
width: 50px;
height: 29px;
left: 135px;
top: 20px;
background: url(../img/header.png) no-repeat -73px -93px;
display: block;
}
.appItem .client-txt {
position: absolute;
left: 145px;
top: 54px;
}
.appItem .client-txt em {
display: block;
line-height: 20px;
}
.appItem .client-txt strong {
color: #76ac25;
line-height: 20px;
}
/*# sourceMappingURL=public.css.map */ | dist/css/public.css | @charset "UTF-8";
a.red {
color: #FA6400;
}
.clr {
clear: both;
display: block;
font-size: 0;
height: 0;
line-height: 0;
overflow: hidden;
padding: 0px;
margin: 0px;
}
.clear {
clear: both;
padding: 0px;
font-size: 0px;
margin: 0px;
height: 0px;
line-height: 0;
overflow: hidden;
display: block;
}
.clear1 {
clear: both;
height: 5px;
font-size: 0px;
margin: 0px;
padding: 0px;
line-height: 0;
overflow: hidden;
display: block;
}
.clear2 {
clear: both;
height: 10px;
font-size: 0px;
margin: 0px;
padding: 0px;
line-height: 0;
overflow: hidden;
display: block;
}
.hide {
display: none;
}
/*顶部banner*/
.topbanner {
margin: 0 auto;
position: relative;
text-align: center;
}
.topbanner .banner {
background: url(http://001.sfimg.cn/web/df545cf2/df545cf2a716a21af6203b522f8bc469.jpg) no-repeat center top;
display: block;
margin: 0 auto;
position: relative;
text-align: center;
width: 100%;
height: 80px;
}
.topbanner .banner a {
width: 1200px;
height: 80px;
display: block;
text-indent: -9999px;
margin: 0 auto;
}
.topbanner .topclose {
display: block;
position: absolute;
top: 5px;
left: 50%;
margin-left: 575px;
width: 25px;
height: 16px;
background: url(http://i.sfimg.cn/html/images/topclose.png) no-repeat center center;
cursor: pointer;
text-indent: -9999px;
}
/* ---------顶部导航条----------- */
.topMenu {
width: 100%;
height: 33px;
text-align: center;
position: relative;
z-index: 101;
background: #f7f7f7;
border-bottom: 1px solid #eeeeee;
}
.topMenu .menu {
width: 1200px;
margin: auto;
}
.topMenu .menu .f_left {
float: left;
}
.topMenu .menu .f_right {
float: right;
}
.topMenu a {
color: #969696;
}
.topMenu a:hover {
color: #669900;
}
.topTh li {
float: left;
position: relative;
line-height: 33px;
}
.topTh .d1 {
color: #969696;
}
.topTh .d2 {
padding: 0 10px 0 28px;
}
.topTh .d2 q {
background: url(../img/header.png) no-repeat -73px -122px;
width: 10px;
left: 10px;
transition: all 0.2s ease 0s;
}
.topTh .d3, .topTh .d4 {
width: 30px;
height: 30px;
}
.topTh .d2 q, .topTh .d3 q, .topTh .d4 q {
height: 16px;
position: absolute;
top: 9px;
}
.d2:hover q {
background: url(../img/header.png) no-repeat -73px -138px;
}
/* 城市选择 */
.topTh .d6 .pshort {
width: 50px;
height: 20px;
line-height: 20px;
border: 1px solid #DCDCDC;
margin: 6px 0 0 0;
overflow: hidden;
}
.topTh .d6 .city_title1 {
margin: 0 0 0 5px;
width: 30px;
overflow: hidden;
display: block;
color: #333333;
}
.topTh .d6 b {
background: url(../img/header.png) no-repeat -86px -130px;
width: 8px;
height: 4px;
position: absolute;
top: 15px;
right: 5px;
}
.d6:hover b {
transform: rotate(180deg);
}
/* 扫描二维码下载客户端 */
.topTh .d2 .dd {
/* display: none; */
width: 230px;
top: 32px;
left: -50px;
padding: 15px 0 0 0;
}
.dd .sf-client {
margin-bottom: 10px;
margin-left: 15px;
position: relative;
text-align: left;
}
.dd .client-img {
width: 73px;
height: 74px;
overflow: hidden;
background: url(../img/header.png) no-repeat 0 -93px;
display: block;
}
.dd i {
position: absolute;
width: 50px;
height: 29px;
left: 80px;
top: 5px;
background: url(../img/header.png) no-repeat -73px -93px;
display: block;
}
.dd .client-txt {
position: absolute;
left: 95px;
top: 34px;
}
.dd .client-txt em {
display: block;
line-height: 20px;
}
.dd .client-txt strong {
color: #76ac25;
line-height: 20px;
}
.dd .client-promo {
height: 30px;
background: url(../img/indexImg20130307.png) no-repeat -182px -210px #fcfbe4;
text-align: center;
color: #fa6400;
font-size: 14px;
font-weight: bold;
line-height: 30px;
}
.dd .client-promo a:link, .dd .client-promo a:visited {
color: #fa6400;
}
.dd .app-btn {
font-size: 0;
height: 29px;
margin: 0 0 10px 15px;
}
.dd .app-apple {
float: left;
display: block;
width: 96px;
height: 29px;
background: url(../img/header.png) no-repeat 0 -167px;
margin-right: 5px;
}
.dd .app-android {
float: left;
display: block;
width: 96px;
height: 29px;
background: url(../img/header.png) no-repeat 0 -196px;
}
/* 微博 */
.d3 q {
background: url(../img/header.png) no-repeat -55px 0;
width: 19px;
left: 12px;
cursor: pointer;
quotes: none;
}
/* 微信 */
.d4 q {
background: url(../img/header.png) no-repeat -74px 0;
width: 17px;
left: 8px;
quotes: none;
}
.d4 dd {
/* display: none; */
left: -50px;
top: 32px;
}
.d4 dd .sf_wx_t {
width: 136px;
height: 20px;
line-height: 22px;
color: #515151;
}
.d4 dd .sf_wx {
display: block;
width: 136px;
height: 110px;
background: url(http://i.sfimg.cn/html/images/weixin.png) no-repeat top center #fff;
}
/* 登陆注册 */
.login {
color: #999999;
padding: 0 10px;
}
.login a:link, .login a:visited {
color: #969696;
}
.login a:hover {
color: #669900;
}
/* 我的订单/在线客服 */
.topTh .myOrder {
padding: 0 10px;
}
/* 我的优选 */
.topTh .menus {
padding: 0 10px 0 10px;
width: 60px;
cursor: default;
margin: 6px 0 0 0;
line-height: 22px;
}
.topMenu .f_right b {
position: absolute;
right: 5px;
top: 8px;
background: url(../img/header.png) no-repeat -86px -130px;
width: 8px;
height: 4px;
transition: transform .2s ease-in 0s;
overflow: hidden;
}
/* 网站导航 */
.topTh .allCat {
padding: 0 15px;
cursor: default;
margin: 6px 0 0 0;
line-height: 22px;
}
.topTh .allCat .site {
color: #969696;
}
.topTh .allCat s {
position: absolute;
right: 0;
top: 8px;
background: url(../img/header.png) no-repeat -86px -130px;
width: 8px;
height: 4px;
transition: transform .2s ease-in 0s;
overflow: hidden;
}
/*注册样式*/
.newregbox {
position: relative;
display: inline-block;
}
.newregTips {
display: inline-block;
margin-top: 7px;
}
.newregdiv {
cursor: pointer;
width: 292px;
height: 34px;
text-align: center;
position: absolute;
top: 25px;
left: -146px;
padding-left: 22px;
}
.newwords {
color: #fff;
font-size: 12px;
height: 22px;
float: left;
padding: 0 8px;
min-width: 60px;
text-align: left;
overflow: hidden;
background: #f14431;
border-radius: 10px;
line-height: 22px;
}
.up-icon {
display: inline-block;
width: 11px;
height: 7px;
background: url(http://i.sfimg.cn/html/images/regicon-top.png) left top;
position: absolute;
top: 0;
left: 165px;
}
/*end注册样式*/
/*----下拉框样式----*/
.topTh .blank, .topTh .dd, .topTh .outline {
display: none;
position: absolute;
border: 1px solid #dadada;
background-color: white;
z-index: 1000;
}
.topTh .blank {
margin-left: 5px;
top: 0;
height: 33px;
z-index: -1;
left: 0;
width: 78px;
box-shadow: 0 0 5px #dadada;
}
.topTh .menus .dd {
margin-left: 5px;
line-height: 22px;
left: 0;
width: 78px;
box-shadow: 0 0 5px #dadada;
top: 28px;
}
.topTh .outline {
z-index: 1;
left: 6px;
width: 78px;
height: 8px;
top: 22px;
border: 0 none;
overflow: hidden;
}
/* 网站导航下拉框 */
.allCat .blank, .allCat .outline {
width: 81px;
}
.allCat .dd {
top: 28px;
width: 815px;
right: 0;
margin-right: -10px;
left: auto;
padding-top: 10px;
box-shadow: 0 0 5px #dadada;
}
.allCat dl {
float: left;
width: 200px;
padding: 15px 19px 0 20px;
text-align: left;
margin-bottom: 10px;
}
.allCat dl dt {
font-weight: bold;
margin-bottom: 5px;
font-size: 16px;
font-family: Microsoft Yahei;
}
.allCat dl dd {
line-height: 20px;
height: 100px;
overflow: hidden;
}
.allCat .line {
background: url(../img/line.jpg) center repeat-y;
height: 90px;
width: 5px;
margin: 20px 0 0 0;
}
dl dd a {
display: block;
width: 65px;
float: left;
line-height: 30px;
color: #666666;
}
dl dd p {
width: 100%;
float: left;
}
dl .dh1 {
color: #669900;
}
dl .dh2 {
color: #FA6400;
}
dl .dh3 {
color: #646464;
}
dl .fore1 {
height: auto;
}
/* ---------hover样式----------- */
/* 网站导航小三角翻转动画 */
.allCat:hover s {
transform: rotate(180deg);
}
/* 帮助中心/我的优选小三角翻转动画 */
.menus:hover b {
transform: rotate(180deg);
}
/* 鼠标移入时出现小三角 */
.tShow .corner {
display: none;
width: 8px;
height: 15px;
position: absolute;
top: 25px;
left: 8px;
z-index: 2;
}
.tShow .corner .aBg, .tShow .corner .aCt {
display: block;
font-size: 0;
height: 0;
line-height: 0;
overflow: hidden;
width: 0;
}
.tShow .aBg {
border-left: 8px dashed rgba(0, 0, 0, 0);
border-bottom: 8px solid #dadada;
border-right: 8px dashed rgba(0, 0, 0, 0);
border-top: 0 none;
position: relative;
}
.tShow .aCt {
border-left: 8px dashed rgba(0, 0, 0, 0);
border-bottom: 8px solid #ffffff;
border-right: 8px dashed rgba(0, 0, 0, 0);
border-top: 0 none;
position: relative;
margin: -7px 0 0 0px;
}
.tShow:hover .corner {
display: block;
}
.topTh .d2 .corner {
left: 45px;
}
/* 鼠标移入时显示下拉框 */
.topTh .menus:hover .t, .topTh .allCat:hover .t, .topTh .tShow:hover .t {
color: #669900;
}
.topTh .menus:hover .blank, .topTh .menus:hover .dd, .topTh .menus:hover .outline, .topTh .allCat:hover .blank, .topTh .allCat:hover .dd, .topTh .allCat:hover .outline, .topTh .tShow:hover .blank, .topTh .tShow:hover .dd, .topTh .tShow:hover .outline {
display: block;
}
/* ---------end顶部导航条----------- */
/* ------------header-------------- */
#header {
padding: 0;
height: 104px;
width: 1200px;
margin: 0 auto;
}
.header_inner {
width: 1200px;
margin: auto;
position: relative;
z-index: 31;
}
/*↓logo↓*/
.header_inner .logo {
width: 240px;
margin: 0px;
float: left;
padding: 5px 0px 0px 0px;
position: relative;
}
.header_inner .logo .index_logo {
width: 220px;
border: 0;
height: 69px;
}
/*↓搜索框↓*/
.header_inner .search {
position: absolute;
width: 514px;
margin: 0px;
padding: 0px;
right: 248px;
top: 28px;
}
.header_inner .search input.text {
color: #999999;
border: 1px solid #669900;
width: 425px;
height: 34px;
line-height: 34px;
padding: 0 0 0 4px;
vertical-align: middle;
float: left;
}
.header_inner .search input.submit {
margin: 0px;
height: 36px;
width: 80px;
cursor: pointer;
float: left;
vertical-align: middle;
border: 0;
background: url(../img/header.png) no-repeat -99px -179px;
color: #fff;
}
/*↓搜索热词↓*/
.search_hot {
clear: both;
text-align: left;
padding: 4px 0px 0px 0px;
}
.search_hot a {
margin: 0px 8px 0px 0px;
color: #979797;
}
.search_hot a:hover {
color: #669900;
}
/*↓顶部购物车↓*/
.shopingcar {
width: 146px;
padding-left: 48px;
position: absolute;
top: 28px;
right: 0px;
height: 33px;
border: 1px solid #efefef;
line-height: 33px;
font-size: 12px;
}
/* 购物车小图标 */
.shopingcar s {
background: url(../img/header.png) no-repeat -102px -235px;
width: 23px;
height: 21px;
left: 17px;
position: absolute;
top: 4px;
}
.shopingcar b#cartNum {
position: absolute;
top: -1px;
left: 154px;
width: 40px;
height: 34px;
text-align: center;
line-height: 34px;
background-color: #fa9600;
color: white;
font-size: 16px;
font-weight: 600;
}
#topCart:hover .blank, #topCart:hover #cart_lists, #topCart:hover .outline {
display: block;
position: absolute;
border: 1px solid #efefef;
background-color: white;
}
#topCart:hover .blank {
top: -1px;
height: 33px;
z-index: -1;
left: -1px;
width: 194px;
box-shadow: 0 0 5px #efefef;
}
#topCart:hover .outline {
z-index: 1;
left: 0;
width: 154px;
height: 8px;
top: 28px;
border: 0 none;
}
#topCart:hover .t {
color: #669900;
}
#topCart .t {
color: #666666;
}
#topCart .setCart {
margin: 2px 0 0 0;
}
/*↓购物车列表↓*/
#cart_lists {
display: none;
width: 360px;
right: -1px;
box-shadow: 0 0 5px #dadada;
top: 34px;
}
.floatcar {
padding: 10px;
width: 340px;
font-size: 12px;
font-weight: normal;
line-height: 20px;
}
.floatcar1 {
padding: 10px 0;
}
/*↓购物车中暂无商品↓*/
.floatcar .nopro {
width: 240px;
height: 42px;
margin: 0 0 0 85px;
background: url(../img/header.png) no-repeat -99px -123px;
}
.floatcar .nopro p {
padding-left: 50px;
}
/*---------------mainnav------------- */
.mainNav {
width: 100%;
height: 32px;
border-bottom: 2px solid #679800;
}
.navmenu {
margin: 0px auto;
color: #303437;
padding: 0;
width: 1200px;
clear: both;
}
.navmenu .categories {
float: left;
width: 200px;
background: #76ac25;
height: 34px;
text-align: left;
position: relative;
z-index: 100;
}
.navmenu .categories a.topall {
height: 32px;
line-height: 32px;
display: block;
margin: 0px;
padding: 0px;
color: #fff;
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: bold;
width: 200px;
text-align: center;
text-decoration: none;
}
.navmenu .categories .dt {
height: 34px;
overflow: hidden;
background: url(../img/cate_bg.jpg);
}
/* -----------------↓menufloat↓----------------- */
.menu1 {
width: 1000px;
float: right;
position: relative;
z-index: 30;
}
.menu1 ul {
width: 1000px;
overflow: hidden;
height: 32px;
line-height: 32px;
}
.menu1 li {
float: left;
text-align: center;
color: #303437;
}
.menu1 li a {
padding: 0 24px;
font-size: 14px;
text-align: center;
text-decoration: none;
display: block;
height: 32px;
font-family: Microsoft YaHei;
color: #333;
font-weight: 700;
}
.menu1 li a:hover {
font-size: 14px;
color: #669900;
text-decoration: none;
}
.menu1 li a.btndown {
color: #669900;
}
.menu1 .ad {
float: right;
width: 196px;
height: 32px;
overflow: hidden;
}
.menu1 .ad a {
padding: 0;
}
.menu1 .ad img {
width: 196px;
height: 32px;
}
/* ------------------------↓footer↓----------------------- */
/* 分割线footer_zd1 */
#footer .footer_zd1 {
width: 100%;
border-bottom: 1px solid #E0E0E0;
margin: 20px 0 0 0;
}
/* end分割线footer_zd1 */
.pageFooter {
width: 1200px;
margin: 0 auto;
}
.pageFooter .middle {
float: left;
width: 290px;
height: 145px;
margin: 20px 0px 0px 10px;
background: url(../img/logo.jpg) no-repeat left top;
}
.pageFooter .middle ul {
padding: 85px 0 0 0;
}
.pageFooter .middle .kefu {
font-size: 20px;
color: #646464;
font-weight: bold;
padding: 6px 0;
}
.pageFooter .left {
float: left;
margin: 35px 0 0 0;
width: 235px;
height: 145px;
}
.pageFooter .left ul {
margin: 0px;
padding: 0px 0px 0px 0px;
float: left;
}
.pageFooter .left li {
font-size: 14px;
color: #666666;
font-family: Microsoft YaHei;
font-weight: bold;
}
.left li.fWeibo {
height: 40px;
line-height: 40px;
}
.left li.fWeibo span {
display: block;
width: 29px;
height: 29px;
float: left;
background: url(../img/indexImg20130307.png) no-repeat -322px -70px;
margin-right: 4px;
}
.left li.fWeibo font {
float: left;
font-size: 14px;
font-weight: bold;
padding: 0px 16px 0px 0px;
}
.left li.fWeibo a {
display: block;
width: 130px;
height: 36px;
float: left;
background: url(../img/footer_ico.jpg) no-repeat -7px -52px;
}
.left li.fTel {
height: 36px;
line-height: 36px;
}
.left li.fTel span {
display: block;
width: 29px;
height: 29px;
float: left;
background: url(../img/indexImg20130307.png?v=1.4) no-repeat -358px -70px;
margin-right: 4px;
}
.left li.fTel font {
font-size: 20px;
padding: 0px 0px 0px 10px;
}
.left li.fNum {
font-size: 22px;
color: #565656;
font-weight: bold;
}
.left .f_ios li {
width: 80px;
text-align: center;
margin: 0 50px 8px 0;
line-height: 24px;
}
.left .f_ios span {
display: block;
width: 80px;
height: 80px;
background: url(../img/foot_bottom.png) no-repeat 0px 0px;
margin: auto;
}
.left .f_wx span {
display: block;
width: 80px;
height: 80px;
background: url(../img/foot_bottom.png) no-repeat -83px 0px;
margin: auto;
}
.left .f_wx li {
width: 80px;
text-align: center;
margin: 0 0 8px 0;
line-height: 24px;
}
.left .f_icon {
width: 80px;
}
.left .f_icon span {
display: block;
width: 45px;
height: 45px;
background: url(../img/footer_ico.jpg) no-repeat;
margin: auto;
}
.left .f_icon span.a {
background-position: -146px -5px;
}
.left .f_icon span.b {
background-position: -198px -5px;
}
.left .f_icon span.c {
background-position: -246px -5px;
}
.left .f_tel {
width: 230px;
text-align: left;
font-size: 12px;
font-weight: normal;
}
.right {
float: left;
margin: 35px 0 0 0;
width: 645px;
}
.right ul {
float: left;
margin: 0px 8px 0px 0px;
padding: 0px 0px 0px 0px;
width: 120px;
}
.right li {
text-align: left;
font-family: Microsoft YaHei;
height: 24px;
line-height: 24px;
color: #646464;
}
.right li a {
color: #707070;
display: block;
padding: 0px 0px 0px 0px;
}
.right li.title {
color: #707070;
font-weight: bold;
font-size: 14px;
}
.right li.title span {
background: url(images/footer_ico.jpg) no-repeat;
display: block;
height: 26px;
width: 26px;
float: left;
margin: 0px 9px 0px 0px;
}
.right li.title .style_a {
background-position: -7px -5px;
}
.right li.title .style_b {
background-position: -39px -5px;
}
.right li.title .style_c {
background-position: -74px -5px;
}
.right li.title .style_d {
background-position: -109px -5px;
}
.pageFooter .pic {
height: 44px;
width: 1200px;
background: #ededed;
text-align: center;
padding: 6px 0px 0px 0px;
margin: 0px 0px 0px 0px;
clear: both;
}
.pageFooter .pic span {
display: block;
height: 40px;
width: 750px;
background: url(../img/footer_ico.jpg) no-repeat 0px -120px;
margin: auto;
}
#footer {
line-height: 18px;
color: #969696;
width: 100%;
overflow: hidden;
}
#footer a {
color: #646464;
text-decoration: none;
}
#footer a:hover {
color: #669900;
text-decoration: none;
}
#footer .f_ios a:hover {
color: #646464;
text-decoration: none;
}
#footer a.beian {
color: #969696;
text-decoration: none;
}
#footer a.beian:hover {
color: #669900;
text-decoration: none;
}
#footer .footer_zd1 {
width: 100%;
border-bottom: 1px solid #E0E0E0;
margin: 20px 0 0 0;
}
#footer .footer_zd {
height: 120px;
background: #F5F5F5;
width: 100%;
margin: 10px 0 0 0;
}
#footer .footer_zd ul {
width: 1200px;
margin: 0px auto;
}
#footer .footer_zd li {
width: 300px;
height: 120px;
float: left;
}
#footer .quanqiu {
background: url(http://i.sfimg.cn/html/images/foot/f1.png) no-repeat center center;
}
#footer .chandi {
background: url(http://i.sfimg.cn/html/images/foot/f2.png) no-repeat center center;
}
#footer .qcll {
background: url(http://i.sfimg.cn/html/images/foot/f3.png) no-repeat center center;
}
#footer .sfzd {
background: url(http://i.sfimg.cn/html/images/foot/f4.png) no-repeat center center;
}
#footer .foot {
width: 100%;
height: 285px;
}
#footer .bottom {
width: 1180px;
height: 50px;
margin: 0px auto;
border-top: 1px solid #E0E0E0;
padding-top: 15px;
position: relative;
}
#footer ._bottom_kx {
float: left;
}
#footer ._bottom_kx span {
display: inline-block;
position: relative;
width: 94px;
height: 33px;
}
#footer .siteinfo {
float: left;
position: absolute;
top: 13px;
left: 280px;
padding: 0;
}
#footer .siteinfo span {
padding-left: 13px;
}
.footer_zd li a {
width: 200px;
cursor: pointer;
display: block;
height: 60px;
outline-style: none;
margin: 30px 0 0 50px;
}
._bottom_kx a img {
border: 0px;
height: 33px;
}
/* ------------------------↓侧边导航↓----------------------- */
.side-wrap {
position: fixed;
bottom: 20px;
left: 50%;
margin-left: 610px;
z-index: 999;
}
.side-wrap .side-c {
width: 44px;
height: 44px;
position: relative;
margin-top: 6px;
}
.side-wrap .s-cart-num {
height: 18px;
width: 34px;
line-height: 18px;
border-radius: 10px;
overflow: hidden;
position: absolute;
top: -5px;
right: -9px;
text-align: center;
background-color: #FA9600;
color: white;
border: 1px solid #FA9600;
}
.side-wrap .s-kefu {
background: url(../img/index_kefu.png) center center no-repeat;
width: 42px;
height: 42px;
display: block;
border: 1px solid #dadada;
}
.side-wrap .side_v {
background: url(../img/paid_bg.png) no-repeat -41px -182px;
width: 44px;
height: 44px;
display: block;
}
.side-wrap .s-cart {
background: url(../img/productList.png) no-repeat 0 -45px;
width: 42px;
height: 42px;
display: block;
border: 1px solid #dadada;
}
.side-wrap .s-guang {
background: url(../img/productList.png) no-repeat -42px -82px;
width: 42px;
height: 42px;
display: block;
border: 1px solid #dadada;
}
.side-wrap .s-app {
background: url(../img/productList.png) no-repeat -42px -40px;
width: 42px;
height: 42px;
display: block;
border: 1px solid #dadada;
text-indent: -9999px;
overflow: hidden;
}
.side-wrap .s-promote {
width: 42px;
height: 42px;
display: none;
background: url(../img/sf_new_bg.png) no-repeat 0 -27px;
border: 1px solid #dadada;
display: block;
text-indent: -9999px;
}
.side-wrap .s-top {
width: 42px;
height: 42px;
display: block;
background: url(../img/productList.png) no-repeat 0 -82px;
border: 1px solid #dadada;
}
.side-wrap a.s-cart:hover {
background: url(../img/productList.png) no-repeat 0 -147px;
}
.side-wrap a.s-guang:hover {
background: url(../img/productList.png) no-repeat -42px -184px;
}
.side-wrap a.s-app:hover {
background: url(../img/productList.png) no-repeat -42px -142px;
}
.side-wrap a.s-promote:hover {
background: url(../img/sf_new_bg.png) no-repeat 0 -69px;
}
.side-wrap a.s-top:hover {
background: url(../img/productList.png) no-repeat 0 -184px;
}
/* ------左边弹出的框------- */
.cart-shopping, .history, .appDown, .promote-wrap {
position: absolute;
right: 44px;
bottom: 50px;
width: 372px;
overflow: hidden;
display: none;
}
/*弹出框右边小三角*/
.cart-wrap .cart-arr, .guang .cart-arr, .appDown .cart-arr {
width: 8px;
height: 15px;
position: absolute;
right: -8px;
margin-left: -1px;
background: url(../img/productList.png) no-repeat -88px -88px;
}
.cart-wrap .cart-arr {
bottom: 160px;
}
.guang .cart-arr {
bottom: 110px;
}
.appDown .cart-arr {
bottom: 63px;
}
/*end弹出框右边小三角*/
.cart-list, .his-list, .appItem {
position: relative;
bottom: 0;
border: 1px solid #dadada;
width: 360px;
background-color: white;
}
.cart-list .floatcar, .his-list .floatcar {
position: static;
border: 0 none;
box-shadow: none;
background-color: white;
}
/* -----↓您有X件商品加入购物车↓------ */
.cart-list .cart-num {
height: 48px;
text-align: center;
color: #000000;
display: none;
}
.cart-list .cart-num-icon {
background: url(../img/productList.png) no-repeat -88px -39px;
height: 18px;
padding: 0 0 0 25px;
display: inline-block;
margin-top: 20px;
}
.cart-list #add-num {
color: #EA5404;
}
/* ↓去购物车结算↓ */
a.submit5 {
margin: 10px 0 0 0;
display: block;
font-size: 14px;
color: #fff;
height: 28px;
line-height: 28px;
cursor: pointer;
text-decoration: none;
width: 110px;
text-align: center;
background: url(../img/productinfo.png) no-repeat -182px -234px;
}
a.submit5:hover {
background: url(../img/productinfo.png) no-repeat -182px -262px;
}
/* ↓冷链配送,顺丰到家! */
.floatcar {
padding: 10px;
width: 340px;
font-size: 12px;
font-weight: normal;
line-height: 20px;
}
.floatcar .title {
color: #666;
border-bottom: 1px solid #1b6146;
height: 24px;
}
.floatcar .total p {
width: 170px;
float: left;
}
.floatcar ul {
margin: 0px;
padding: 0px;
display: block;
position: relative;
max-height: 195px;
overflow: auto;
}
.floatcar li {
margin: 0px;
padding: 12px 0px 12px 0px;
height: 40px;
position: relative;
border-bottom: 1px dashed #ccc;
line-height: 18px;
color: #565656;
}
.floatcar li:hover {
background: #f5f5f5;
}
.floatcar .l {
position: absolute;
width: 45px;
height: 45px;
}
.floatcar .l img {
width: 40px;
height: 40px;
vertical-align: middle;
border: 1px solid #ccc;
}
.floatcar .c {
position: absolute;
width: 200px;
height: 36px;
left: 48px;
top: 14px;
overflow: hidden;
}
.floatcar .c a {
color: #565656;
height: 18px;
overflow: hidden;
display: block;
}
.floatcar .c a:hover {
color: #669900;
cursor: pointer;
}
.floatcar .c b {
font-weight: normal;
color: #cecece;
}
.floatcar .r {
position: absolute;
text-align: right;
width: 80px;
height: 36px;
right: 0px;
}
.floatcar .r font {
color: #f05404;
font-size: 14px;
font-weight: bold;
}
.floatcar .r a {
clear: both;
color: #999999;
}
#listCartNum {
color: #ea5404;
font-size: 14px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.guang .cart-num {
text-align: center;
color: #000000;
padding: 10px;
border-bottom: 1px solid #1B6146;
}
.guang .r a:link, .guang .r a:visited {
color: #547e01;
}
.guang .floatcar ul, .cart-wrap .floatcar ul {
max-height: 260px;
}
.appItem {
padding: 20px 0 0 0;
}
.appItem .sf-client {
margin-bottom: 10px;
margin-left: 50px;
position: relative;
text-align: left;
}
.appItem .client-img {
width: 115px;
height: 116px;
overflow: hidden;
background: url(../img/indexImg20130307.png?v=1.4) no-repeat 0 -210px;
display: block;
}
.appItem i {
position: absolute;
width: 50px;
height: 29px;
left: 135px;
top: 20px;
background: url(../img/header.png) no-repeat -73px -93px;
display: block;
}
.appItem .client-txt {
position: absolute;
left: 145px;
top: 54px;
}
.appItem .client-txt em {
display: block;
line-height: 20px;
}
.appItem .client-txt strong {
color: #76ac25;
line-height: 20px;
}
/*# sourceMappingURL=public.css.map */ | 0.299208 | 0.075721 |
.boxAll {
width: 100%;
font-family: Source Han Sans SC;
}
/* 头部 */
.boxHeader {
width: 60%;
margin: 0 auto;
height: 120px;
line-height: 120px;
}
.headLeft {
width: 30%;
height: 61px;
display: inline-block;
vertical-align: middle;
}
.headLeft img {
width: 100%;
}
.headNav {
display: inline-block;
margin-left: 10%;
position: relative;
}
.headNav a {
width: 81px;
height: 21px;
font-size: 20px;
font-weight: 400;
color: #1D1D1D;
margin-left: 95px;
}
.headNav a:nth-child(2) {
font-weight: 800;
}
.navimg {
width: 100px;
height: 4px;
position: absolute;
left: 50%;
top: 80px;
}
.navimg img {
width: 100%;
}
/* banner图 */
.banner {
height: 840px;
}
.banner img {
width: 100%;
}
/* 公司介绍 */
.aboutsmall {
width: 100%;
margin-top: 45px;
height: 174px;
}
.aboutsmall img {
width: 100%;
}
.aboutusContent {
width: 60%;
padding-bottom: 200px;
margin: 0 auto;
}
.aboutusContent2 ul li {
width: 33%;
float: left;
text-align: center;
font-size: 24px;
font-family: Source Han Sans SC;
font-weight: 500;
color: #1F1F1F;
margin-bottom: 50px;
}
.aboutusContent2 ul li div {
width: 86px;
height: 109px;
margin: 10px auto;
}
.aboutusContent2 ul li div img{
width: 100%;
}
.aboutusContent .jieshao {
font-size: 20px;
font-family: Source Han Sans SC;
font-weight: 400;
color: #444444;
margin-top: 50px;
text-indent: 40px;
}
.aboutwujing p {
font-size: 20px;
font-family: Source Han Sans SC;
font-weight: 400;
text-indent: 40px;
color: #444444;
margin-top: 30px;
}
.aboutwujing p span {
font-size: 38px;
}
.aboutusbox {
width: 100%;
position: relative;
}
.aboutnumber {
width: 100%;
height: 120px;
position: absolute;
bottom: 0;
}
.aboutnumber img {
width: 100%;
}
/* 底部 */
.footer {
/* margin-top: 80px; */
width: 100%;
height: 300px;
background: #272727;
}
.footercenter {
width: 60%;
margin: 0 auto;
}
.footerLeft, .footercenter2, .footeright {
display: inline-block;
width: 25%;
vertical-align: middle;
line-height: 2;
}
.footerLeft, .footercenter2 {
width: 32%;
height: 235px;
border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.footercenter2 {
margin-left: 80px;
}
.borderleft {
margin-top: 65px;
}
.footerLeft h1, .footerLeft h2, .footerLeft h3, .footercenter2 h4{
font-size: 20px;
font-weight: bold;
color: #FFFFFF;
}
.footerLeft h2, .footerLeft h3 {
font-size: 14px;
}
.footercenter2 span {
color: rgba(217, 4, 4, 1);
}
.footercenter2 div {
color: #fff;
font-size: 14px;
margin-top: 12px;
}
.footercenter2 input {
width: 256px;
height: 32px;
background: #344050;
}
.sub {
width: 160px;
height: 36px;
}
.sub img {
width: 100%;
}
.footeright {
margin: 0 auto;
text-align: center;
}
.footeright div {
width: 164px;
height: 164px;
background-color: #fff;
margin: 0 auto 20px;
}
.footeright div img {
width: 100%;
}
.footeright span {
font-size: 12px;
font-weight: 400;
color: #FFFFFF;
} | public/home/css/about.css | .boxAll {
width: 100%;
font-family: Source Han Sans SC;
}
/* 头部 */
.boxHeader {
width: 60%;
margin: 0 auto;
height: 120px;
line-height: 120px;
}
.headLeft {
width: 30%;
height: 61px;
display: inline-block;
vertical-align: middle;
}
.headLeft img {
width: 100%;
}
.headNav {
display: inline-block;
margin-left: 10%;
position: relative;
}
.headNav a {
width: 81px;
height: 21px;
font-size: 20px;
font-weight: 400;
color: #1D1D1D;
margin-left: 95px;
}
.headNav a:nth-child(2) {
font-weight: 800;
}
.navimg {
width: 100px;
height: 4px;
position: absolute;
left: 50%;
top: 80px;
}
.navimg img {
width: 100%;
}
/* banner图 */
.banner {
height: 840px;
}
.banner img {
width: 100%;
}
/* 公司介绍 */
.aboutsmall {
width: 100%;
margin-top: 45px;
height: 174px;
}
.aboutsmall img {
width: 100%;
}
.aboutusContent {
width: 60%;
padding-bottom: 200px;
margin: 0 auto;
}
.aboutusContent2 ul li {
width: 33%;
float: left;
text-align: center;
font-size: 24px;
font-family: Source Han Sans SC;
font-weight: 500;
color: #1F1F1F;
margin-bottom: 50px;
}
.aboutusContent2 ul li div {
width: 86px;
height: 109px;
margin: 10px auto;
}
.aboutusContent2 ul li div img{
width: 100%;
}
.aboutusContent .jieshao {
font-size: 20px;
font-family: Source Han Sans SC;
font-weight: 400;
color: #444444;
margin-top: 50px;
text-indent: 40px;
}
.aboutwujing p {
font-size: 20px;
font-family: Source Han Sans SC;
font-weight: 400;
text-indent: 40px;
color: #444444;
margin-top: 30px;
}
.aboutwujing p span {
font-size: 38px;
}
.aboutusbox {
width: 100%;
position: relative;
}
.aboutnumber {
width: 100%;
height: 120px;
position: absolute;
bottom: 0;
}
.aboutnumber img {
width: 100%;
}
/* 底部 */
.footer {
/* margin-top: 80px; */
width: 100%;
height: 300px;
background: #272727;
}
.footercenter {
width: 60%;
margin: 0 auto;
}
.footerLeft, .footercenter2, .footeright {
display: inline-block;
width: 25%;
vertical-align: middle;
line-height: 2;
}
.footerLeft, .footercenter2 {
width: 32%;
height: 235px;
border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.footercenter2 {
margin-left: 80px;
}
.borderleft {
margin-top: 65px;
}
.footerLeft h1, .footerLeft h2, .footerLeft h3, .footercenter2 h4{
font-size: 20px;
font-weight: bold;
color: #FFFFFF;
}
.footerLeft h2, .footerLeft h3 {
font-size: 14px;
}
.footercenter2 span {
color: rgba(217, 4, 4, 1);
}
.footercenter2 div {
color: #fff;
font-size: 14px;
margin-top: 12px;
}
.footercenter2 input {
width: 256px;
height: 32px;
background: #344050;
}
.sub {
width: 160px;
height: 36px;
}
.sub img {
width: 100%;
}
.footeright {
margin: 0 auto;
text-align: center;
}
.footeright div {
width: 164px;
height: 164px;
background-color: #fff;
margin: 0 auto 20px;
}
.footeright div img {
width: 100%;
}
.footeright span {
font-size: 12px;
font-weight: 400;
color: #FFFFFF;
} | 0.26693 | 0.063832 |
@media screen and (min-width: 1200px) {
.container-farm{
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
}
@media screen and (min-width: 1800px) {
.container-farm, #intro{
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5);
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
}
@media screen and (min-width: 2600px) {
.container-farm, #intro{
-webkit-transform: scale(2);
-ms-transform: scale(2);
transform: scale(2);
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
}
@font-face{
font-family: 'Nexa Script Light';
src: url(../fonts/19442.ttf);
}
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
min-width: 800px;
min-height: 800px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: url(../img/cursor.png), default;
}
#body {
background-color: #fff;
font-family: 'Nexa Script Light';
}
#container{
width: 100%;
height: 100%;
background-image: url(../img/bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#gold-panel, #amountWaterTop, #amountWheatTop, #amountEggsTop {
height: 60px;
width: 170px;
position: absolute;
text-align: center;
background-size: 100% 100%;
}
#gold-panel{
top: 20px;
right: 40px;
background-image: url(../img/gold.png);
}
#gold_btn {
height: 20px;
width: 20px;
position: absolute;
top: 24px;
right: 8px;
background-image: url(../img/gold_btn.png);
background-size: 100% 100%;
cursor: url(../img/pointer.png), pointer;
}
#gold_btn:active {
-webkit-transform: translateY(1px);
-ms-transform: translateY(1px);
transform: translateY(1px);
}
#amountWaterTop{
top: 20px;
left: 30px;
background-image: url(../img/water-panel.png);
}
#amountWheatTop{
top: 20px;
left: 210px;
background-image: url(../img/wheat-panel.png);
}
#amountEggsTop{
top: 20px;
left: 390px;
background-image: url(../img/eggs-panel.png);
}
#gold-show, #amountWheatTop, #amountWaterTop, #amountEggsTop {
font-size: 18px;
color: gold;
line-height: 67px;
}
.container-farm{
margin: auto;
width: 700px;
min-width: 650px;
height: 400px;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
.field {
width: 170px;
height: 130px;
background-image: url('../img/field.png');
background-size: contain;
background-repeat: no-repeat;
margin: 10px;
-webkit-perspective: 900px;
perspective: 900px;
position: relative;
cursor: url(../img/pointer.png), pointer;
}
.field-container{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 150px;
}
.field-container, .progress-bar-container, .count-container{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.img-wheat, .img-well, .img-chicken{
display: inline-block;
vertical-align: top;
position: absolute;
cursor: url(../img/pointer.png), pointer;
background-size: 100% 100%;
}
.img-wheat{
width: 50px;
height: 90px;
background-image: url(../img/wheat.png);
}
.img-well{
width: 80px;
height: 120px;
background-image: url(../img/well.png);
top: -45px;
left: 45px;
}
.wheat1{
top: -45px;
left: 60px;
}
.wheat2{
top: 5px;
left: 65px;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.wheat3{
top: -20px;
left: 25px;
}
.wheat4{
top: -20px;
left: 100px;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.img-chicken{
width: 100px;
height: 120px;
background-image: url(../img/chicken.png);
top: -45px;
left: 30px;
}
.progress-bar {
background-color: #1a1a1a;
height: 5px;
padding: 5px;
width: 150px;
margin: 10px 15px;
border-radius: 5px;
-webkit-box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
}
.progress-bar span {
display: inline-block;
height: 7px;
width: 0%;
border-radius: 3px;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;-webkit-transition: width .4s ease-in-out;-o-transition: width .4s ease-in-out;transition: width .4s ease-in-out;
margin-bottom: 7px;
/* style="width: 40%" */
}
.green span {
background-color: #a5df41;
background-image: -webkit-gradient(linear, left top, left bottom, from(#a5df41), to(#4ca916));
background-image: -o-linear-gradient(top, #a5df41, #4ca916);
background-image: linear-gradient(top, #a5df41, #4ca916);
}
.count {
display: inline-block;
vertical-align: top;
width: 60px;
height: 30px;
border: 2px solid brown;
background-color: wheat;
border-radius: 5px;
margin: 5px;
line-height: 30px;
text-align: center;
margin: 0 70px;
color: brown;
}
.button-store-cover,
.button-sound-cover,
.button-fs-cover {
position: absolute;
bottom: -95px;
left: -70px;
width: 300px;
height: 100px;
background-image: url(../img/label.png);
background-size: 100% 100%;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.button-sound-cover{
bottom: -47px;
left: 80px;
width: 150px;
height: 50px;
}
.button-fs-cover{
bottom: -47px;
left: 133px;
width: 150px;
height: 50px;
}
.button-store,
.button-sound,
.button-fs {
position: absolute;
bottom: 12px;
left: 15px;
width: 78px;
height: 78px;
background-image: url(../img/btn-store.png);
background-size: 100% 100%;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transition: 0.25s;
-o-transition: 0.25s;
transition: 0.25s;
cursor: url(../img/pointer.png), pointer;
}
.button-sound,
.button-fs{
width: 39px;
height: 39px;
bottom: 6px;
left: 8px;
}
.button-sound {
background-image: url(../img/sound.png);
}
.button-fs{
background-image: url(../img/fs-in.png);
}
.change_icon_fs{
background-image: url(../img/fs-out.png);
}
.button-store:hover,
.button-sound:hover,
.button-fs:hover {
-webkit-filter: drop-shadow(-1px 0px 13px #f5a80d);
filter: drop-shadow(-1px 0px 13px #f5a80d);
-webkit-transform: rotate(-90deg), translate(2px);
-ms-transform: rotate(-90deg), translate(2px);
transform: rotate(-90deg), translate(2px);
}
.button-store:active,
.button-sound:active,
.button-fs:active {
-webkit-filter: drop-shadow(-1px 0px 10px #f5a80d);
filter: drop-shadow(-1px 0px 10px #f5a80d);
-webkit-transform: rotate(-90deg), translate(2px);
-ms-transform: rotate(-90deg), translate(2px);
transform: rotate(-90deg), translate(2px);
left: 16px;
}
.button-sound:active,
.button-fs:active {
-webkit-transform: rotate(-90deg), translateY(2px);
-ms-transform: rotate(-90deg), translateY(2px);
transform: rotate(-90deg), translateY(2px);
left: 9px;
}
.error {
-webkit-filter: drop-shadow(0px 0px 10px #f53b0d);
filter: drop-shadow(0px 0px 10px #f53b0d);
} | css/farm.css | @media screen and (min-width: 1200px) {
.container-farm{
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
}
@media screen and (min-width: 1800px) {
.container-farm, #intro{
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5);
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
}
@media screen and (min-width: 2600px) {
.container-farm, #intro{
-webkit-transform: scale(2);
-ms-transform: scale(2);
transform: scale(2);
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
}
@font-face{
font-family: 'Nexa Script Light';
src: url(../fonts/19442.ttf);
}
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
min-width: 800px;
min-height: 800px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: url(../img/cursor.png), default;
}
#body {
background-color: #fff;
font-family: 'Nexa Script Light';
}
#container{
width: 100%;
height: 100%;
background-image: url(../img/bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#gold-panel, #amountWaterTop, #amountWheatTop, #amountEggsTop {
height: 60px;
width: 170px;
position: absolute;
text-align: center;
background-size: 100% 100%;
}
#gold-panel{
top: 20px;
right: 40px;
background-image: url(../img/gold.png);
}
#gold_btn {
height: 20px;
width: 20px;
position: absolute;
top: 24px;
right: 8px;
background-image: url(../img/gold_btn.png);
background-size: 100% 100%;
cursor: url(../img/pointer.png), pointer;
}
#gold_btn:active {
-webkit-transform: translateY(1px);
-ms-transform: translateY(1px);
transform: translateY(1px);
}
#amountWaterTop{
top: 20px;
left: 30px;
background-image: url(../img/water-panel.png);
}
#amountWheatTop{
top: 20px;
left: 210px;
background-image: url(../img/wheat-panel.png);
}
#amountEggsTop{
top: 20px;
left: 390px;
background-image: url(../img/eggs-panel.png);
}
#gold-show, #amountWheatTop, #amountWaterTop, #amountEggsTop {
font-size: 18px;
color: gold;
line-height: 67px;
}
.container-farm{
margin: auto;
width: 700px;
min-width: 650px;
height: 400px;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
.field {
width: 170px;
height: 130px;
background-image: url('../img/field.png');
background-size: contain;
background-repeat: no-repeat;
margin: 10px;
-webkit-perspective: 900px;
perspective: 900px;
position: relative;
cursor: url(../img/pointer.png), pointer;
}
.field-container{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 150px;
}
.field-container, .progress-bar-container, .count-container{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.img-wheat, .img-well, .img-chicken{
display: inline-block;
vertical-align: top;
position: absolute;
cursor: url(../img/pointer.png), pointer;
background-size: 100% 100%;
}
.img-wheat{
width: 50px;
height: 90px;
background-image: url(../img/wheat.png);
}
.img-well{
width: 80px;
height: 120px;
background-image: url(../img/well.png);
top: -45px;
left: 45px;
}
.wheat1{
top: -45px;
left: 60px;
}
.wheat2{
top: 5px;
left: 65px;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.wheat3{
top: -20px;
left: 25px;
}
.wheat4{
top: -20px;
left: 100px;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.img-chicken{
width: 100px;
height: 120px;
background-image: url(../img/chicken.png);
top: -45px;
left: 30px;
}
.progress-bar {
background-color: #1a1a1a;
height: 5px;
padding: 5px;
width: 150px;
margin: 10px 15px;
border-radius: 5px;
-webkit-box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
}
.progress-bar span {
display: inline-block;
height: 7px;
width: 0%;
border-radius: 3px;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;-webkit-transition: width .4s ease-in-out;-o-transition: width .4s ease-in-out;transition: width .4s ease-in-out;
margin-bottom: 7px;
/* style="width: 40%" */
}
.green span {
background-color: #a5df41;
background-image: -webkit-gradient(linear, left top, left bottom, from(#a5df41), to(#4ca916));
background-image: -o-linear-gradient(top, #a5df41, #4ca916);
background-image: linear-gradient(top, #a5df41, #4ca916);
}
.count {
display: inline-block;
vertical-align: top;
width: 60px;
height: 30px;
border: 2px solid brown;
background-color: wheat;
border-radius: 5px;
margin: 5px;
line-height: 30px;
text-align: center;
margin: 0 70px;
color: brown;
}
.button-store-cover,
.button-sound-cover,
.button-fs-cover {
position: absolute;
bottom: -95px;
left: -70px;
width: 300px;
height: 100px;
background-image: url(../img/label.png);
background-size: 100% 100%;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.button-sound-cover{
bottom: -47px;
left: 80px;
width: 150px;
height: 50px;
}
.button-fs-cover{
bottom: -47px;
left: 133px;
width: 150px;
height: 50px;
}
.button-store,
.button-sound,
.button-fs {
position: absolute;
bottom: 12px;
left: 15px;
width: 78px;
height: 78px;
background-image: url(../img/btn-store.png);
background-size: 100% 100%;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transition: 0.25s;
-o-transition: 0.25s;
transition: 0.25s;
cursor: url(../img/pointer.png), pointer;
}
.button-sound,
.button-fs{
width: 39px;
height: 39px;
bottom: 6px;
left: 8px;
}
.button-sound {
background-image: url(../img/sound.png);
}
.button-fs{
background-image: url(../img/fs-in.png);
}
.change_icon_fs{
background-image: url(../img/fs-out.png);
}
.button-store:hover,
.button-sound:hover,
.button-fs:hover {
-webkit-filter: drop-shadow(-1px 0px 13px #f5a80d);
filter: drop-shadow(-1px 0px 13px #f5a80d);
-webkit-transform: rotate(-90deg), translate(2px);
-ms-transform: rotate(-90deg), translate(2px);
transform: rotate(-90deg), translate(2px);
}
.button-store:active,
.button-sound:active,
.button-fs:active {
-webkit-filter: drop-shadow(-1px 0px 10px #f5a80d);
filter: drop-shadow(-1px 0px 10px #f5a80d);
-webkit-transform: rotate(-90deg), translate(2px);
-ms-transform: rotate(-90deg), translate(2px);
transform: rotate(-90deg), translate(2px);
left: 16px;
}
.button-sound:active,
.button-fs:active {
-webkit-transform: rotate(-90deg), translateY(2px);
-ms-transform: rotate(-90deg), translateY(2px);
transform: rotate(-90deg), translateY(2px);
left: 9px;
}
.error {
-webkit-filter: drop-shadow(0px 0px 10px #f53b0d);
filter: drop-shadow(0px 0px 10px #f53b0d);
} | 0.295128 | 0.050799 |
.cart-details{
width: 95%;
margin-top: 2em;
margin-left: auto;
margin-right: auto;
}
.cart-board{
margin: auto;
}
.cart-info{
background-color: rgb(80, 80, 80);
width: 80%;
margin: auto;
border: 3px solid rgb(209, 171, 0);
padding: 0.5em;
text-indent: 1em;
}
.cart-title{
text-align: center;
color: rgb(252, 206, 0);
font-size: 1.7em;
font-weight: bold;
cursor: default;
}
.submit-order{
margin-top: 1em;
background-color: rgb(209, 171, 0);
color: black;
border: 2px solid black;
padding: 0.3em;
cursor: pointer;
font-size: 1.4em;
}
.submit-order:hover{
background-color: rgb(255, 208, 0);
}
.back{
margin-top: 1em;
background-color: rgb(209, 171, 0);
color: black;
border: 2px solid black;
padding: 0.3em;
cursor: pointer;
font-size: 1.4em;
margin-right: 0.4em;
}
.back:hover{
background-color: rgb(255, 208, 0);
}
.title-column{
text-align: center;
color: rgb(252, 206, 0);
font-size: 22px;
font-weight: 600;
cursor: default;
}
.cart-list-header,
.cart-list-item{
display: grid;
grid-template-columns: 1fr 5fr 3fr 3fr 2fr 1fr;
border: 1px solid rgb(209, 171, 0);
font-size: 18px;
text-align: center;
color: white;
}
.cart-list-item{
background-color: rgb(80, 80, 80);
color: rgb(245,245,245);
}
.cart-list-header{
background-color:rgb(58, 58, 58);
font-weight: bold;
}
.Product_List_Icon{
cursor: pointer;
color: rgb(252, 206, 0);
}
.cart-list-item:hover{
background-color: rgb(90, 90, 90);
font-weight: bold;
cursor: default;
}
.contrete-date{
color: black;
cursor: default;
font-size: 1.5em;
}
.input_style{
width: 100%;
max-width: 8em;
border: 2px solid rgb(209, 171, 0);
padding: 0.25em;
cursor: pointer;
}
.customer{
background-color: rgb(209, 171, 0);
color: black;
border: 2px solid black;
padding: 0.3em;
cursor: pointer;
font-size: 1.4em;
margin-bottom: 1em;
margin-right: 1em;
}
.customer:hover{
background-color: rgb(255, 208, 0);
} | front/src/app/components/cart/cart.component.css | .cart-details{
width: 95%;
margin-top: 2em;
margin-left: auto;
margin-right: auto;
}
.cart-board{
margin: auto;
}
.cart-info{
background-color: rgb(80, 80, 80);
width: 80%;
margin: auto;
border: 3px solid rgb(209, 171, 0);
padding: 0.5em;
text-indent: 1em;
}
.cart-title{
text-align: center;
color: rgb(252, 206, 0);
font-size: 1.7em;
font-weight: bold;
cursor: default;
}
.submit-order{
margin-top: 1em;
background-color: rgb(209, 171, 0);
color: black;
border: 2px solid black;
padding: 0.3em;
cursor: pointer;
font-size: 1.4em;
}
.submit-order:hover{
background-color: rgb(255, 208, 0);
}
.back{
margin-top: 1em;
background-color: rgb(209, 171, 0);
color: black;
border: 2px solid black;
padding: 0.3em;
cursor: pointer;
font-size: 1.4em;
margin-right: 0.4em;
}
.back:hover{
background-color: rgb(255, 208, 0);
}
.title-column{
text-align: center;
color: rgb(252, 206, 0);
font-size: 22px;
font-weight: 600;
cursor: default;
}
.cart-list-header,
.cart-list-item{
display: grid;
grid-template-columns: 1fr 5fr 3fr 3fr 2fr 1fr;
border: 1px solid rgb(209, 171, 0);
font-size: 18px;
text-align: center;
color: white;
}
.cart-list-item{
background-color: rgb(80, 80, 80);
color: rgb(245,245,245);
}
.cart-list-header{
background-color:rgb(58, 58, 58);
font-weight: bold;
}
.Product_List_Icon{
cursor: pointer;
color: rgb(252, 206, 0);
}
.cart-list-item:hover{
background-color: rgb(90, 90, 90);
font-weight: bold;
cursor: default;
}
.contrete-date{
color: black;
cursor: default;
font-size: 1.5em;
}
.input_style{
width: 100%;
max-width: 8em;
border: 2px solid rgb(209, 171, 0);
padding: 0.25em;
cursor: pointer;
}
.customer{
background-color: rgb(209, 171, 0);
color: black;
border: 2px solid black;
padding: 0.3em;
cursor: pointer;
font-size: 1.4em;
margin-bottom: 1em;
margin-right: 1em;
}
.customer:hover{
background-color: rgb(255, 208, 0);
} | 0.735642 | 0.12943 |
vertical-align: top;
width: 100%;
table-layout: auto;
}
#Browsing_records .name img.icon {
position: absolute;
clip: rect(0px 32px 28px 0px);
margin-top: -2px;
}
#Browsing_records .name .label {
margin-left: 40px;
margin-top: 2px;
}
#Browsing_records .name .label a {
color: white;
text-decoration: underline;
}
.epesi_rtl #Browsing_records .name .label {
margin-left: 0px;
margin-right: 40px;
}
#Browsing_records .name {
text-align: left;
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
height: 24px;
white-space: nowrap;
vertical-align: top;
margin-left: 10px;
margin-right: 10px;
padding: 3px 18px;
background: #9c9c9c;
}
#Browsing_records .filters {
text-align: right;
vertical-align: top;
}
#Browsing_records .filters_button {
float: right;
width: 100px;
height: 20px;
margin-right: 20px;
cursor: pointer;
}
#Browsing_records .filters_button:hover {
}
#Browsing_records .filters_button #filters_button_text {
display: block;
float: right;
width: 80px;
padding-top: 4px;
text-align: center;
color: white;
}
#Browsing_records .filters_button #filters_button_icon_up,
#Browsing_records .filters_button #filters_button_icon_down {
display: block;
float: right;
width: 14px;
height: 14px;
margin: 3px;
background-repeat: no-repeat;
}
#Browsing_records .filters_button #filters_button_icon_up {
background-image: url('images/roll-up.png');
}
#Browsing_records .filters_button:hover #filters_button_icon_up {
background-image: url('images/roll-up-hover.png');
}
#Browsing_records .filters_button #filters_button_icon_down {
background-image: url('images/roll-down.png');
}
#Browsing_records .filters_button:hover #filters_button_icon_down {
background-image: url('images/roll-down-hover.png');
}
#Utils_GenericBrowser input,
#Utils_GenericBrowser select {
background-color:#E6ECF2;
border: 0 none;
width: 100%;
}
#Utils_GenericBrowser input:focus,
#Utils_GenericBrowser select:focus {
background-color:#FFFFA5;
}
#Utils_GenericBrowser input[type="submit"] {
color: white;
border: 0 none;
width: auto;
}
/*
#Utils_GenericBrowser .utils_datepicket_element td {
border: 0 none;
}
table#Utils_GenericBrowser .Utils_RecordBrowser__grid_table td {
border-right: 0px none;
border-bottom: 0px none;
height: 0px;
padding: 0px;
margin: 0px;
}
table#Utils_GenericBrowser .Utils_RecordBrowser__grid_table tr {
background-color: transparent;
padding: 0px;
margin: 0px;
}
*/ | modules/Utils/RecordBrowser/theme/Browsing_records.css | vertical-align: top;
width: 100%;
table-layout: auto;
}
#Browsing_records .name img.icon {
position: absolute;
clip: rect(0px 32px 28px 0px);
margin-top: -2px;
}
#Browsing_records .name .label {
margin-left: 40px;
margin-top: 2px;
}
#Browsing_records .name .label a {
color: white;
text-decoration: underline;
}
.epesi_rtl #Browsing_records .name .label {
margin-left: 0px;
margin-right: 40px;
}
#Browsing_records .name {
text-align: left;
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
height: 24px;
white-space: nowrap;
vertical-align: top;
margin-left: 10px;
margin-right: 10px;
padding: 3px 18px;
background: #9c9c9c;
}
#Browsing_records .filters {
text-align: right;
vertical-align: top;
}
#Browsing_records .filters_button {
float: right;
width: 100px;
height: 20px;
margin-right: 20px;
cursor: pointer;
}
#Browsing_records .filters_button:hover {
}
#Browsing_records .filters_button #filters_button_text {
display: block;
float: right;
width: 80px;
padding-top: 4px;
text-align: center;
color: white;
}
#Browsing_records .filters_button #filters_button_icon_up,
#Browsing_records .filters_button #filters_button_icon_down {
display: block;
float: right;
width: 14px;
height: 14px;
margin: 3px;
background-repeat: no-repeat;
}
#Browsing_records .filters_button #filters_button_icon_up {
background-image: url('images/roll-up.png');
}
#Browsing_records .filters_button:hover #filters_button_icon_up {
background-image: url('images/roll-up-hover.png');
}
#Browsing_records .filters_button #filters_button_icon_down {
background-image: url('images/roll-down.png');
}
#Browsing_records .filters_button:hover #filters_button_icon_down {
background-image: url('images/roll-down-hover.png');
}
#Utils_GenericBrowser input,
#Utils_GenericBrowser select {
background-color:#E6ECF2;
border: 0 none;
width: 100%;
}
#Utils_GenericBrowser input:focus,
#Utils_GenericBrowser select:focus {
background-color:#FFFFA5;
}
#Utils_GenericBrowser input[type="submit"] {
color: white;
border: 0 none;
width: auto;
}
/*
#Utils_GenericBrowser .utils_datepicket_element td {
border: 0 none;
}
table#Utils_GenericBrowser .Utils_RecordBrowser__grid_table td {
border-right: 0px none;
border-bottom: 0px none;
height: 0px;
padding: 0px;
margin: 0px;
}
table#Utils_GenericBrowser .Utils_RecordBrowser__grid_table tr {
background-color: transparent;
padding: 0px;
margin: 0px;
}
*/ | 0.432782 | 0.052038 |
.virchual {
margin-left: auto;
margin-right: auto;
position: relative;
overflow: hidden;
list-style: none;
padding: 0;
z-index: 1;
}
.virchual__frame {
position: relative;
z-index: 0;
height: 100%;
user-select: none;
}
.virchual__slide {
background-color: #fff;
flex-shrink: 0;
width: 100%;
height: 100%;
top: 0;
position: absolute;
transform: translate3d(0%, 0px, 0px);
will-change: transform;
touch-action: pan-y;
-ms-touch-action: pan-y;
}
.virchual__slide * {
-webkit-user-drag: none;
-ms-user-drag: none;
-moz-user-drag: none;
user-drag: none;
user-select: none;
pointer-events: none;
}
.virchual__slide--active {
z-index: 10;
}
.virchual__control {
appearance: none;
position: absolute;
border: none;
background-color: transparent;
top: 0;
display: flex;
justify-content: center;
align-items: center;
width: 40px;
position: absolute;
z-index: 1;
outline: 0;
height: 100%;
cursor: pointer;
transition: background 0.3s ease 0s;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
.virchual__control:focus {
outline: none;
}
.virchual__control--prev {
left: 0;
}
.virchual__control--next {
right: 0;
}
.virchual__control svg {
height: 20px;
width: 20px;
display: block;
fill: currentcolor;
color: #fff;
filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}
.virchual__pagination {
position: absolute;
z-index: 10;
overflow: hidden;
left: 50%;
transform: translateX(-50%);
bottom: 10px;
}
.virchual__pagination-bullet {
width: 16px;
height: 16px;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 0;
margin: 0;
position: absolute;
transition: 0.2s transform;
}
.virchual__pagination-bullet::before {
content: '';
height: 8px;
width: 8px;
display: block;
transform: scale(0.75);
opacity: 0.65;
border-radius: 100%;
background: #fff;
filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}
.virchual__pagination-bullet--edge::before {
transform: scale(0.5);
}
.virchual__pagination-bullet--active::before {
transform: scale(1);
transition-duration: inherit;
opacity: 1;
}
.virchual__lazy {
opacity: 0.4;
transition: opacity 0.5s;
}
.virchual__lazy--loaded {
opacity: 1;
} | packages/virchual/src/css/styles.css | .virchual {
margin-left: auto;
margin-right: auto;
position: relative;
overflow: hidden;
list-style: none;
padding: 0;
z-index: 1;
}
.virchual__frame {
position: relative;
z-index: 0;
height: 100%;
user-select: none;
}
.virchual__slide {
background-color: #fff;
flex-shrink: 0;
width: 100%;
height: 100%;
top: 0;
position: absolute;
transform: translate3d(0%, 0px, 0px);
will-change: transform;
touch-action: pan-y;
-ms-touch-action: pan-y;
}
.virchual__slide * {
-webkit-user-drag: none;
-ms-user-drag: none;
-moz-user-drag: none;
user-drag: none;
user-select: none;
pointer-events: none;
}
.virchual__slide--active {
z-index: 10;
}
.virchual__control {
appearance: none;
position: absolute;
border: none;
background-color: transparent;
top: 0;
display: flex;
justify-content: center;
align-items: center;
width: 40px;
position: absolute;
z-index: 1;
outline: 0;
height: 100%;
cursor: pointer;
transition: background 0.3s ease 0s;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
.virchual__control:focus {
outline: none;
}
.virchual__control--prev {
left: 0;
}
.virchual__control--next {
right: 0;
}
.virchual__control svg {
height: 20px;
width: 20px;
display: block;
fill: currentcolor;
color: #fff;
filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}
.virchual__pagination {
position: absolute;
z-index: 10;
overflow: hidden;
left: 50%;
transform: translateX(-50%);
bottom: 10px;
}
.virchual__pagination-bullet {
width: 16px;
height: 16px;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 0;
margin: 0;
position: absolute;
transition: 0.2s transform;
}
.virchual__pagination-bullet::before {
content: '';
height: 8px;
width: 8px;
display: block;
transform: scale(0.75);
opacity: 0.65;
border-radius: 100%;
background: #fff;
filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}
.virchual__pagination-bullet--edge::before {
transform: scale(0.5);
}
.virchual__pagination-bullet--active::before {
transform: scale(1);
transition-duration: inherit;
opacity: 1;
}
.virchual__lazy {
opacity: 0.4;
transition: opacity 0.5s;
}
.virchual__lazy--loaded {
opacity: 1;
} | 0.606382 | 0.117623 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("www.google.hu") {
#hplogo {
margin-top: -30px;
background: url("http://i.imgur.com/QjS6eua.png") no-repeat scroll 50% 50% / 300px 120px transparent !important;
}
#hplogo>div {
color: #FFF !important;
}
body {
background: url("http://i.imgur.com/nVBzBSB.jpg") no-repeat;
background-size: 100% 100%;
background-attachment: fixed !important;
}
#gb#gb a.gb_e, #gb#gb a.gb_f {
color: #FFF !important;
}
#fbar {
background: #121212;
}
.gb_Sa {
background-image: url("http://i.imgur.com/D78q9YY.png");
background-size: 356px 144px;
}
.gbqfqw {
background: none repeat scroll 0% 0% padding-box rgb(0, 0, 0) !important;
}
.sbib_a {
background: none repeat scroll 0% 0% #D6D6D6 !important;
}
.gbqfif, .gbqfsf {
color: #000000 !important;
}
.gb_I {
background: none repeat scroll 0% 0% #394AA8 !important;
}
div.gb_Wb.gb_F.gb_V.gb_H.gb_L {
background: #3B3B3B !important;
}
a.gb_J.gb_Xb {
color: #BFBFBF !important;
}
div.gb_7.gb_Rc.gb_h.gb_Qc {
background: #2E2E2E !important;
}
div.gb_h.gb_Cb {
background: #2E2E2E !important;
}
div.gb_Oa {
background: #2E2E2E !important;
}
div#hdtbSum {
background: #404040 !important;
color: #FFF !important;
}
a.q.qs {
color: #FFF;
}
a.q.qs {
color: #FFF !important;
}
span.mn-hd-txt {
color: #FFF;
}
a#hdtb_tls.hdtb-tl {
color: #FFF !important;
}
div#topabar {
background: #404040 !important;
}
h3.r>a {
font-weight: bold !important;
color: #BAD5FF !important;
background: #0062FF !important;
border-radius: 5px !important;
}
cite._Rm {
color: #C8FF00 !important;
background: #0088FF !important;
border-radius: 5px !important;
}
span.st {
color: #D9D9D9 !important;
background: #575757 !important;
border-radius: 5px !important;
}
div._Icb._kk._wI>a {
font-weight: bold !important;
color: #BAD5FF !important;
background: #0062FF !important;
border-radius: 5px !important;
}
a#vs3p1.r-bottomads-6 {
font-weight: bold !important;
color: #F2FF61 !important;
background: #42A103 !important;
border-radius: 5px !important;
}
div.ads-visurl>cite {
color: #C8FF00 !important;
background: #0088FF !important;
border-radius: 5px !important;
}
div.ads-creative {
color: #D9D9D9 !important;
background: #575757 !important;
border-radius: 5px !important;
}
div._knd._Tv {
color: #D9D9D9 !important;
background: #575757 !important;
border-radius: 5px !important;
}
ul._MEc._LEc {
background: #2B2B2B !important;
border-radius: 5px !important;
}
ul._MEc._LEc>li>a {
color: #CFCFCF !important;
}
div.osl>a {
color: #CFCFCF !important;
background: #2B2B2B !important;
border-radius: 5px !important;
}
div.kno-ecr-pt.kno-fb-ctx {
color: #FFF !important;
background: #242424 !important;
border-radius: 7px !important;
}
div.kno-rdesc {
color: #FFF !important;
background: #404040 !important;
}
div._mr.kno-fb-ctx {
color: #FFF !important;
background: #404040 !important;
}
div._CLb.kno-fb-ctx {
color: #EBEBEB !important;
background: #404040 !important;
}
div._OKe>ol>li>div>div>span>a {
color: #FFF !important;
}
li.ads-ad>h3 {
font-weight: bold !important;
color: #BAD5FF !important;
background: #0062FF !important;
border-radius: 10px !important;
text-decoration: none !important;
}
ul._G8>li>h3>a {
font-weight: bold !important;
color: #BAD5FF !important;
background: #0062FF !important;
border-radius: 10px !important;
text-decoration: none !important;
}
div#extrares.med {
background: #6166FF !important;
border-radius: 5px !important;
}
h3.med._kk._wI {
color: #E3E3E3 !important;
}
div.st {
background: #6B6B6B !important;
color: #DEDEDE !important;
border-radius: 5px !important;
}
div.s>div>div>a.fl {
background: #000000 !important;
color: #FFF !important;
border-radius: 3px !important;
}
div#navcnt {
background: #9195FF !important;
border-radius: 5px !important;
}
span.gb_Sa {
background: url("http://i.imgur.com/QjS6eua.png") no-repeat scroll 50% 50% / 92px 33px transparent !important;
background-position: 0px 0px !important;
}
span.gbqfi.gb_Sa {
background: url("http://i.imgur.com/gbCuLoc.png") no-repeat scroll 50% 50% / 15px 15px transparent !important;
}
div#center_col {
background: url("http://i.imgur.com/nVBzBSB.jpg") no-repeat;
background-size: 100% 100%;
background-attachment: fixed !important;
}
div._Tib {
background: #00334D !important;
color: #B3E5FF !important;
border-radius: 5px !important;
}
p.sp_cnt.card-section {
background: #FF5D3D !important;
color: #FADFD9 !important;
border-radius: 5px !important;
}
a._Eu.irg-footer {
background: #189E00 !important;
color: #99FFA2 !important;
border-radius: 3px !important;
}
div.f.slp {
color: #FFF !important;
background: #000000 !important;
border-radius: 5px !important;
}
div.gb_Wb.gb_F.gb_V.gb_H {
background: #595959 !important;
}
a.gb_E.gb_4b {
background: #595959 !important;
color: #C9C9C9 !important;
}
div.gb_ka.gb_F {
background: #D4D4D4 !important;
}
div.gb_ta {
background: #666666 !important;
}
div.std.stp.card-section {
background: #FFBB00 !important;
border-radius: 5px !important;
}
div.gb_Qb.gb_jb.gb_h.gb_Kc>div.gb_Xa>a.gb_C.gb_Sa {
background: url("http://i.imgur.com/3fyxsKH.png") no-repeat scroll 50% 50% / 30px 30px transparent !important;
background-size: 90% 90% !important;
}
div#gbwa.gb_B.gb_jb.gb_h>div.gb_Xa>a.gb_C.gb_Sa {
background: url("http://i.imgur.com/qZ8hLkX.png") no-repeat scroll 50% 50% / 30px 30px transparent !important;
background-size: 70% 70% !important;
}
div.gb_Wa.gb_jb.gb_h>div.gb_Xa>a.gb_C>div.gb_Za.gb_Sa.gb_Kc {
background: url("http://i.imgur.com/Q0E34bk.png") no-repeat scroll 50% 50% / 30px 30px transparent !important;
background-size: 90% 90% !important;
}
div.f.nwd {
background: #30BF51 !important;
color: #BFFFCE !important;
border-radius: 10px !important;
}
div.gb_8.gb_Sc.gb_i.gb_Rc.gb_Vc {
background: #303030 !important;
}
div.gb_Vb.gb_Sc {
background: #303030 !important;
}
div.gb_8.gb_Sc.gb_i.gb_Rc.gb_Vc>div>div>a{
color: #D1D1D1 !important;
}
a.gb_g.gb_i {
color: #D1D1D1 !important;
}
div.gb_Fc.gb_i.gb_Uc.gb_Nc div a {
color: #FFF !important;
}
div.sfbgg {
background-color: #2D2D2D !important;
}
div.gb_ea.gb_0c.gb_n.gb_Zc.gb_p.gb_3c>div>div>a {
color: #FFF !important;
}
div.gb_Mc.gb_o.gb_1c.gb_Tc>div>a {
color: #FFF !important;
}
div.gb_Lc.gb_r.gb_0c.gb_Sc>div>a {
color: #FFF !important;
}
span.gb_ma.gb_r {
color: #FFF !important;
}
} | data/usercss/108254.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("www.google.hu") {
#hplogo {
margin-top: -30px;
background: url("http://i.imgur.com/QjS6eua.png") no-repeat scroll 50% 50% / 300px 120px transparent !important;
}
#hplogo>div {
color: #FFF !important;
}
body {
background: url("http://i.imgur.com/nVBzBSB.jpg") no-repeat;
background-size: 100% 100%;
background-attachment: fixed !important;
}
#gb#gb a.gb_e, #gb#gb a.gb_f {
color: #FFF !important;
}
#fbar {
background: #121212;
}
.gb_Sa {
background-image: url("http://i.imgur.com/D78q9YY.png");
background-size: 356px 144px;
}
.gbqfqw {
background: none repeat scroll 0% 0% padding-box rgb(0, 0, 0) !important;
}
.sbib_a {
background: none repeat scroll 0% 0% #D6D6D6 !important;
}
.gbqfif, .gbqfsf {
color: #000000 !important;
}
.gb_I {
background: none repeat scroll 0% 0% #394AA8 !important;
}
div.gb_Wb.gb_F.gb_V.gb_H.gb_L {
background: #3B3B3B !important;
}
a.gb_J.gb_Xb {
color: #BFBFBF !important;
}
div.gb_7.gb_Rc.gb_h.gb_Qc {
background: #2E2E2E !important;
}
div.gb_h.gb_Cb {
background: #2E2E2E !important;
}
div.gb_Oa {
background: #2E2E2E !important;
}
div#hdtbSum {
background: #404040 !important;
color: #FFF !important;
}
a.q.qs {
color: #FFF;
}
a.q.qs {
color: #FFF !important;
}
span.mn-hd-txt {
color: #FFF;
}
a#hdtb_tls.hdtb-tl {
color: #FFF !important;
}
div#topabar {
background: #404040 !important;
}
h3.r>a {
font-weight: bold !important;
color: #BAD5FF !important;
background: #0062FF !important;
border-radius: 5px !important;
}
cite._Rm {
color: #C8FF00 !important;
background: #0088FF !important;
border-radius: 5px !important;
}
span.st {
color: #D9D9D9 !important;
background: #575757 !important;
border-radius: 5px !important;
}
div._Icb._kk._wI>a {
font-weight: bold !important;
color: #BAD5FF !important;
background: #0062FF !important;
border-radius: 5px !important;
}
a#vs3p1.r-bottomads-6 {
font-weight: bold !important;
color: #F2FF61 !important;
background: #42A103 !important;
border-radius: 5px !important;
}
div.ads-visurl>cite {
color: #C8FF00 !important;
background: #0088FF !important;
border-radius: 5px !important;
}
div.ads-creative {
color: #D9D9D9 !important;
background: #575757 !important;
border-radius: 5px !important;
}
div._knd._Tv {
color: #D9D9D9 !important;
background: #575757 !important;
border-radius: 5px !important;
}
ul._MEc._LEc {
background: #2B2B2B !important;
border-radius: 5px !important;
}
ul._MEc._LEc>li>a {
color: #CFCFCF !important;
}
div.osl>a {
color: #CFCFCF !important;
background: #2B2B2B !important;
border-radius: 5px !important;
}
div.kno-ecr-pt.kno-fb-ctx {
color: #FFF !important;
background: #242424 !important;
border-radius: 7px !important;
}
div.kno-rdesc {
color: #FFF !important;
background: #404040 !important;
}
div._mr.kno-fb-ctx {
color: #FFF !important;
background: #404040 !important;
}
div._CLb.kno-fb-ctx {
color: #EBEBEB !important;
background: #404040 !important;
}
div._OKe>ol>li>div>div>span>a {
color: #FFF !important;
}
li.ads-ad>h3 {
font-weight: bold !important;
color: #BAD5FF !important;
background: #0062FF !important;
border-radius: 10px !important;
text-decoration: none !important;
}
ul._G8>li>h3>a {
font-weight: bold !important;
color: #BAD5FF !important;
background: #0062FF !important;
border-radius: 10px !important;
text-decoration: none !important;
}
div#extrares.med {
background: #6166FF !important;
border-radius: 5px !important;
}
h3.med._kk._wI {
color: #E3E3E3 !important;
}
div.st {
background: #6B6B6B !important;
color: #DEDEDE !important;
border-radius: 5px !important;
}
div.s>div>div>a.fl {
background: #000000 !important;
color: #FFF !important;
border-radius: 3px !important;
}
div#navcnt {
background: #9195FF !important;
border-radius: 5px !important;
}
span.gb_Sa {
background: url("http://i.imgur.com/QjS6eua.png") no-repeat scroll 50% 50% / 92px 33px transparent !important;
background-position: 0px 0px !important;
}
span.gbqfi.gb_Sa {
background: url("http://i.imgur.com/gbCuLoc.png") no-repeat scroll 50% 50% / 15px 15px transparent !important;
}
div#center_col {
background: url("http://i.imgur.com/nVBzBSB.jpg") no-repeat;
background-size: 100% 100%;
background-attachment: fixed !important;
}
div._Tib {
background: #00334D !important;
color: #B3E5FF !important;
border-radius: 5px !important;
}
p.sp_cnt.card-section {
background: #FF5D3D !important;
color: #FADFD9 !important;
border-radius: 5px !important;
}
a._Eu.irg-footer {
background: #189E00 !important;
color: #99FFA2 !important;
border-radius: 3px !important;
}
div.f.slp {
color: #FFF !important;
background: #000000 !important;
border-radius: 5px !important;
}
div.gb_Wb.gb_F.gb_V.gb_H {
background: #595959 !important;
}
a.gb_E.gb_4b {
background: #595959 !important;
color: #C9C9C9 !important;
}
div.gb_ka.gb_F {
background: #D4D4D4 !important;
}
div.gb_ta {
background: #666666 !important;
}
div.std.stp.card-section {
background: #FFBB00 !important;
border-radius: 5px !important;
}
div.gb_Qb.gb_jb.gb_h.gb_Kc>div.gb_Xa>a.gb_C.gb_Sa {
background: url("http://i.imgur.com/3fyxsKH.png") no-repeat scroll 50% 50% / 30px 30px transparent !important;
background-size: 90% 90% !important;
}
div#gbwa.gb_B.gb_jb.gb_h>div.gb_Xa>a.gb_C.gb_Sa {
background: url("http://i.imgur.com/qZ8hLkX.png") no-repeat scroll 50% 50% / 30px 30px transparent !important;
background-size: 70% 70% !important;
}
div.gb_Wa.gb_jb.gb_h>div.gb_Xa>a.gb_C>div.gb_Za.gb_Sa.gb_Kc {
background: url("http://i.imgur.com/Q0E34bk.png") no-repeat scroll 50% 50% / 30px 30px transparent !important;
background-size: 90% 90% !important;
}
div.f.nwd {
background: #30BF51 !important;
color: #BFFFCE !important;
border-radius: 10px !important;
}
div.gb_8.gb_Sc.gb_i.gb_Rc.gb_Vc {
background: #303030 !important;
}
div.gb_Vb.gb_Sc {
background: #303030 !important;
}
div.gb_8.gb_Sc.gb_i.gb_Rc.gb_Vc>div>div>a{
color: #D1D1D1 !important;
}
a.gb_g.gb_i {
color: #D1D1D1 !important;
}
div.gb_Fc.gb_i.gb_Uc.gb_Nc div a {
color: #FFF !important;
}
div.sfbgg {
background-color: #2D2D2D !important;
}
div.gb_ea.gb_0c.gb_n.gb_Zc.gb_p.gb_3c>div>div>a {
color: #FFF !important;
}
div.gb_Mc.gb_o.gb_1c.gb_Tc>div>a {
color: #FFF !important;
}
div.gb_Lc.gb_r.gb_0c.gb_Sc>div>a {
color: #FFF !important;
}
span.gb_ma.gb_r {
color: #FFF !important;
}
} | 0.164315 | 0.125601 |
body {
font-family: Verdana, sans-serif;
font-size: 20px;
}
.title {
text-align: center;
font-size: xx-large;
}
.content-wrapper {
width: 80%;
float: right;
}
.requirement {
border-style: solid;
border-color: black;
border-width: 1px;
border-radius: 5px;
margin: 10px;
padding: 5px;
background-color: #F0FFF0;
text-align: right;
}
.close-button {
background-color: transparent;
border: none;
font-size: 18px;
color: lightgray;
outline: none;
}
.close-button:hover {
color: black;
}
.requirement-box {
padding-left: 40px;
padding-right: 40px;
text-align: left;
}
.requirement-name {
width: 100%;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
border-radius: 5px;
border-style: solid;
border-color: black;
border-width: 1px;
}
.requirement-name:focus {
background-color: #FAFAF2;
}
.requirement-desc {
resize: none;
width: 100%;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
border-radius: 5px;
line-height: 1.5;
}
.requirement-desc:focus {
background-color: #FAFAF2;
}
.add-button-parent {
text-align: center;
}
.add-button {
width: 90%;
background-color: #1E90FF;
border-width: 1px;
border-color: transparent;
color: white;
padding: 12px;
font-size: 18px;
margin: 10px;
}
.add-button:hover {
background-color: lightgray;
color: black;
border-style: solid;
border-color: black;
border-width: 1px;
}
.add-button:active {
background-color: dimgray;
color: white;
border-width: 1px;
border-color: transparent;
}
.navbar {
display: block;
width: 20%;
height: 100%;
background-color: lightgray;
position: fixed;
top: 0px;
left: 0px;
z-index: 1;
}
.navbar-title {
padding: 5px;
font-size: 20px;
}
.navbar-requirement-button {
width: 100%;
padding: 5px;
background-color: lightgray;
border-color: transparent;
text-align: left;
font-size: 16px;
}
.navbar-requirement-button:hover {
background-color: gray;
border-color: transparent;
}
.navbar-requirement-button:active {
background-color: lightgoldenrodyellow;
border-color: transparent;
}
.navbar-requirement-button:focus {
outline: none;
} | spec.css | body {
font-family: Verdana, sans-serif;
font-size: 20px;
}
.title {
text-align: center;
font-size: xx-large;
}
.content-wrapper {
width: 80%;
float: right;
}
.requirement {
border-style: solid;
border-color: black;
border-width: 1px;
border-radius: 5px;
margin: 10px;
padding: 5px;
background-color: #F0FFF0;
text-align: right;
}
.close-button {
background-color: transparent;
border: none;
font-size: 18px;
color: lightgray;
outline: none;
}
.close-button:hover {
color: black;
}
.requirement-box {
padding-left: 40px;
padding-right: 40px;
text-align: left;
}
.requirement-name {
width: 100%;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
border-radius: 5px;
border-style: solid;
border-color: black;
border-width: 1px;
}
.requirement-name:focus {
background-color: #FAFAF2;
}
.requirement-desc {
resize: none;
width: 100%;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
border-radius: 5px;
line-height: 1.5;
}
.requirement-desc:focus {
background-color: #FAFAF2;
}
.add-button-parent {
text-align: center;
}
.add-button {
width: 90%;
background-color: #1E90FF;
border-width: 1px;
border-color: transparent;
color: white;
padding: 12px;
font-size: 18px;
margin: 10px;
}
.add-button:hover {
background-color: lightgray;
color: black;
border-style: solid;
border-color: black;
border-width: 1px;
}
.add-button:active {
background-color: dimgray;
color: white;
border-width: 1px;
border-color: transparent;
}
.navbar {
display: block;
width: 20%;
height: 100%;
background-color: lightgray;
position: fixed;
top: 0px;
left: 0px;
z-index: 1;
}
.navbar-title {
padding: 5px;
font-size: 20px;
}
.navbar-requirement-button {
width: 100%;
padding: 5px;
background-color: lightgray;
border-color: transparent;
text-align: left;
font-size: 16px;
}
.navbar-requirement-button:hover {
background-color: gray;
border-color: transparent;
}
.navbar-requirement-button:active {
background-color: lightgoldenrodyellow;
border-color: transparent;
}
.navbar-requirement-button:focus {
outline: none;
} | 0.612426 | 0.112844 |
body {
font-family: 'Open Sans', sans-serif;
}
.navbar-default .navbar-brand:hover {
color: #fff;
}
.loading {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('loading.gif') 50% 50% no-repeat rgb(249,249,249);
opacity: .8;
}
.navbar {
position: relative;
}
.navbar-default {
background-color: #0f4e74;
border: none;
}
.navbar-default .navbar-brand {
color: #fff;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
}
.dropdown {
border: none;
}
.navbar-default .navbar-nav > li > a:hover {
display: block;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
color: #fff;
background-color: #dc3545;
}
.navbar-default .navbar-nav > li > a:focus {
color: #fff;
}
.navbar-default .navbar-nav > li > a:hover {
color: #fff;
background-color: #0f4e88;
}
.wrapper {
width: 100%;
height: 100%;
}
.navbar-collapse {
margin-top: -21px;
}
.sidebar {
width: 100%;
position: relative;
background: #1570a6;
margin: 0px 0px 0px 0px;
z-index: 100;
}
.mobile {
display: block;
}
.dropdown-menu {
padding: 0px;
margin: -2px 0px 0px;
border: none;
}
.dropdown-menu li {
list-style-type: none;
border: none;
}
.dropdown-menu li a {
display: block;
padding: 12px 0px 12px 15px;
}
ul {
padding: 0px;
margin: -2px 0px 0px;
}
ul li {
list-style-type: none;
border-bottom: 1px solid grey;
}
ul .aktiv a {
display: block;
background: #293846;
color: grey;
}
ul .active a{
display: block;
background: #293846;
color: #fff;
}
ul li a {
color: #fff;
text-decoration: none;
display: block;
padding: 12px 0px 12px 25px;
}
ul li a:hover {
display: block;
background: #293846;
text-decoration: none;
color: #fff;
}
ul li a span {
display: inline-block;
}
ul li a .caret {
margin-right: 10px;
margin-top: 6px;
}
ul .submenu li {
border: none;
}
ul .collapsed a:visited {
color: #fff;
text-decoration: none;
}
.inner {
padding: 15px;
}
.username {
display: none;
}
.content {
padding-top: 0px;
}
.content-header {
padding-left: 15px;
}
.bintang {
color: red;
}
.placeholder .curve1 {
display: inline-block;
height: 200px;
width: 200px;
background-color: salmon;
border-radius: 50%;
text-align: center;
line-height: 200px;
font-size: 70px;
color: #fff;
}
.placeholder .curve2 {
display: inline-block;
height: 200px;
width: 200px;
background-color: lightskyblue;
border-radius: 50%;
text-align: center;
line-height: 200px;
font-size: 70px;
color: #fff;
}
.tombol {
margin-top: 50px;
}
.tersedia a {
color: grey;
}
.tersedia a:hover {
color: #333;
}
.kursi_tersedia .row {
margin: 10px;
padding: 5px;
border: 1px solid #c0c0c0;
}
/* tampilan untuk laptop dan pc */
@media (min-width: 768px) {
.loading {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('loading.gif') 50% 50% no-repeat rgb(249,249,249);
opacity: .4;
}
.navbar {
position: fixed;
}
.navbar .navbar-nav {
margin-right: 20px;
}
.nav {
display: block;
}
.navbar-collapse {
margin-top: 0px;
}
.sidebar {
width: 240px;
height: 100%;
position: fixed;
margin-top: 50px;
margin-left: -15px;
}
.mobile {
display: none;
}
.content {
padding-top: 10px;
margin: 40px 10px 0px 250px;
}
.inner {
padding: 1px;
}
.username {
display: inline-block;
}
.add {
margin-bottom: 100px;
}
.placeholder img {
display: inline-block;
border-radius: 50%;
}
.tombol {
margin-top: 30px;
}
} | assets/bootstrap/css/admin_style.css | body {
font-family: 'Open Sans', sans-serif;
}
.navbar-default .navbar-brand:hover {
color: #fff;
}
.loading {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('loading.gif') 50% 50% no-repeat rgb(249,249,249);
opacity: .8;
}
.navbar {
position: relative;
}
.navbar-default {
background-color: #0f4e74;
border: none;
}
.navbar-default .navbar-brand {
color: #fff;
}
.navbar-default .navbar-nav > li > a {
color: #fff;
}
.dropdown {
border: none;
}
.navbar-default .navbar-nav > li > a:hover {
display: block;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
color: #fff;
background-color: #dc3545;
}
.navbar-default .navbar-nav > li > a:focus {
color: #fff;
}
.navbar-default .navbar-nav > li > a:hover {
color: #fff;
background-color: #0f4e88;
}
.wrapper {
width: 100%;
height: 100%;
}
.navbar-collapse {
margin-top: -21px;
}
.sidebar {
width: 100%;
position: relative;
background: #1570a6;
margin: 0px 0px 0px 0px;
z-index: 100;
}
.mobile {
display: block;
}
.dropdown-menu {
padding: 0px;
margin: -2px 0px 0px;
border: none;
}
.dropdown-menu li {
list-style-type: none;
border: none;
}
.dropdown-menu li a {
display: block;
padding: 12px 0px 12px 15px;
}
ul {
padding: 0px;
margin: -2px 0px 0px;
}
ul li {
list-style-type: none;
border-bottom: 1px solid grey;
}
ul .aktiv a {
display: block;
background: #293846;
color: grey;
}
ul .active a{
display: block;
background: #293846;
color: #fff;
}
ul li a {
color: #fff;
text-decoration: none;
display: block;
padding: 12px 0px 12px 25px;
}
ul li a:hover {
display: block;
background: #293846;
text-decoration: none;
color: #fff;
}
ul li a span {
display: inline-block;
}
ul li a .caret {
margin-right: 10px;
margin-top: 6px;
}
ul .submenu li {
border: none;
}
ul .collapsed a:visited {
color: #fff;
text-decoration: none;
}
.inner {
padding: 15px;
}
.username {
display: none;
}
.content {
padding-top: 0px;
}
.content-header {
padding-left: 15px;
}
.bintang {
color: red;
}
.placeholder .curve1 {
display: inline-block;
height: 200px;
width: 200px;
background-color: salmon;
border-radius: 50%;
text-align: center;
line-height: 200px;
font-size: 70px;
color: #fff;
}
.placeholder .curve2 {
display: inline-block;
height: 200px;
width: 200px;
background-color: lightskyblue;
border-radius: 50%;
text-align: center;
line-height: 200px;
font-size: 70px;
color: #fff;
}
.tombol {
margin-top: 50px;
}
.tersedia a {
color: grey;
}
.tersedia a:hover {
color: #333;
}
.kursi_tersedia .row {
margin: 10px;
padding: 5px;
border: 1px solid #c0c0c0;
}
/* tampilan untuk laptop dan pc */
@media (min-width: 768px) {
.loading {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('loading.gif') 50% 50% no-repeat rgb(249,249,249);
opacity: .4;
}
.navbar {
position: fixed;
}
.navbar .navbar-nav {
margin-right: 20px;
}
.nav {
display: block;
}
.navbar-collapse {
margin-top: 0px;
}
.sidebar {
width: 240px;
height: 100%;
position: fixed;
margin-top: 50px;
margin-left: -15px;
}
.mobile {
display: none;
}
.content {
padding-top: 10px;
margin: 40px 10px 0px 250px;
}
.inner {
padding: 1px;
}
.username {
display: inline-block;
}
.add {
margin-bottom: 100px;
}
.placeholder img {
display: inline-block;
border-radius: 50%;
}
.tombol {
margin-top: 30px;
}
} | 0.473901 | 0.064801 |
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;
}
*{
box-sizing:border-box;
/* border: 1px solid grey; */
max-width:100%;
}
/*general styles*/
html{
font-size:62.5%;
}
body{
font-size:1.6rem;
font-family: 'Roboto Mono', monospace;
line-height:1.5;
}
h1{
font-family: 'Chelsea Market', cursive;
font-size:5rem;
}
section{
padding:4% 0;
width:90%;
margin:0 auto;
}
/*header section styles*/
nav{
padding:2% 0;
}
nav a{
display:inline-block;
padding:1% 0;
width:10%;
border-radius:10px;
text-align:center;
color:#fff;
}
.orange{
background-color:#FF764E;
margin-left:10%;
}
.blue{
background-color:#5ED3EB;
margin:0 24%;
}
.yellow{
background-color:#FFCD69;
margin-right:10%;
}
/*title section styles*/
.left, .right{
display:inline-block;
}
.left{
width:30%;
}
.image{
border-radius:50%;
}
.right{
width:55%;
margin-left:5%;
text-align:center;
line-height:3;
}
/*main section styles*/
.main{
background-color:#DDB9A3;
color:#fff;
}
.main p{
width:90%;
margin:0 auto;
}
/*info section styles*/
.info div{
width:30%;
margin:0 auto;
text-align:center;
}
.info div.first{
margin-bottom:5%;
}
/*hero image styles*/
.hero-image{
background-image:url('https://www.yourtownmonthly.com/wp-content/uploads/2019/08/Daycation-Yosemite.png');
background-repeat:no-repeat;
background-size:cover;
background-position:center top;
height:50vh;
width:100%;
}
footer{
background-color:#F9E7DC;
} | WEEKS/wk1/1-projects/d3/web-module-project-intro-css/index.css | html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
/* border: 0; */
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
*{
box-sizing:border-box;
/* border: 1px solid grey; */
max-width:100%;
}
/*general styles*/
html{
font-size:62.5%;
}
body{
font-size:1.6rem;
font-family: 'Roboto Mono', monospace;
line-height:1.5;
}
h1{
font-family: 'Chelsea Market', cursive;
font-size:5rem;
}
section{
padding:4% 0;
width:90%;
margin:0 auto;
}
/*header section styles*/
nav{
padding:2% 0;
}
nav a{
display:inline-block;
padding:1% 0;
width:10%;
border-radius:10px;
text-align:center;
color:#fff;
}
.orange{
background-color:#FF764E;
margin-left:10%;
}
.blue{
background-color:#5ED3EB;
margin:0 24%;
}
.yellow{
background-color:#FFCD69;
margin-right:10%;
}
/*title section styles*/
.left, .right{
display:inline-block;
}
.left{
width:30%;
}
.image{
border-radius:50%;
}
.right{
width:55%;
margin-left:5%;
text-align:center;
line-height:3;
}
/*main section styles*/
.main{
background-color:#DDB9A3;
color:#fff;
}
.main p{
width:90%;
margin:0 auto;
}
/*info section styles*/
.info div{
width:30%;
margin:0 auto;
text-align:center;
}
.info div.first{
margin-bottom:5%;
}
/*hero image styles*/
.hero-image{
background-image:url('https://www.yourtownmonthly.com/wp-content/uploads/2019/08/Daycation-Yosemite.png');
background-repeat:no-repeat;
background-size:cover;
background-position:center top;
height:50vh;
width:100%;
}
footer{
background-color:#F9E7DC;
} | 0.327346 | 0.082033 |
.premium_addons-banner-ib,
.premium_addons-banner-ib img {
display: block;
position: relative;
}
.premium_addons-banner-img-wrap {
display: -ms-flexbox;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
height: 100%;
}
.premium_addons-banner-img-wrap .premium_addons-banner-ib-img {
-webkit-flex-shrink: 0;
flex-shrink: 0;
}
.premium_addons-banner-ib {
z-index: 1;
overflow: hidden;
margin: 0 0 35px;
background: #3085a3;
text-align: center;
cursor: pointer;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.premium_addons-banner-ib-desc .premium-banner-read-more {
z-index: 100;
}
.premium_addons-banner-ib,
.wpb_column>.wpb_wrapper .premium_addons-banner-ib {
margin-bottom: 0px
}
.elementor-widget-premium-addon-banner .premium_addons-banner-ib-title {
background: transparent;
}
.premium_addons-banner-ib *,
.premium_addons-banner-ib .premium_addons-banner-ib-desc {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.premium_addons-banner-ib img {
min-width: 100%;
max-width: 100%;
-webkit-transition: opacity .35s;
transition: opacity .35s;
}
.premium_addons-banner-ib .premium_addons-banner-ib-desc {
padding: 15px;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.premium_addons-banner-ib .premium_addons-banner-ib-desc,
.premium_addons-banner-ib .premium_addons-banner-ib-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.premium_addons-banner-ib .premium_addons-banner-ib-link {
z-index: 1000;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}
.premium_addons-banner-ib a.premium_addons-banner-ib-link {
display: block;
background: 0 0;
}
.premium_banner_animation1 img {
width: -webkit-calc(100% + 50px)!important;
width: calc(100% + 50px)!important;
max-width: -webkit-calc(100% + 50px)!important;
max-width: calc(100% + 50px)!important;
-webkit-transition: opacity .35s,filter 0.35s, -webkit-transform .35s;
transition: opacity .35s, filter 0.35s, -webkit-transform .35s;
transition: opacity .35s, filter 0.35s, transform .35s;
transition: opacity .35s, filter 0.35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(-40px, 0, 0);
transform: translate3d(-40px, 0, 0);
}
.premium_banner_animation2 .premium_addons-banner-ib-title {
padding: 15px;
}
.premium_banner_animation1 .premium_addons-banner-ib-desc {
top: auto;
bottom: 0;
min-height: 25%;
height: auto;
max-height: 100%;
text-align: left;
}
.premium_banner_animation1 .premium_addons-banner-ib-content,
.premium_banner_animation1 .premium_addons-banner-ib-title,
.premium_banner_animation1 .premium-banner-read-more {
-webkit-transform: translate3d(0, 40px, 0);
transform: translate3d(0, 40px, 0);
-webkit-transition-delay: .05s;
transition-delay: .05s;
-webkit-transition-duration: .35s;
transition-duration: .35s;
}
.premium_banner_animation1 .premium_addons-banner-ib-title {
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
}
.premium_banner_animation1 .premium_addons-banner-ib-content,
.premium_banner_animation1 .premium-banner-read-more {
margin-top: 10px;
opacity: 0;
-webkit-transition: opacity .2s, -webkit-transform .35s;
transition: opacity .2s, -webkit-transform .35s;
transition: opacity .2s, transform .35s;
transition: opacity .2s, transform .35s, -webkit-transform .35s;
}
.premium_banner_animation1:hover .premium_addons-banner-ib-content,
.premium_banner_animation1.active .premium_addons-banner-ib-content,
.premium_banner_animation1:hover .premium-banner-read-more,
.premium_banner_animation1.active .premium-banner-read-more {
opacity: 1;
-webkit-transition-delay: .05s;
transition-delay: .05s;
-webkit-transition-duration: .35s;
transition-duration: .35s;
}
.premium_banner_animation1:hover .premium_addons-banner-ib-content,
.premium_banner_animation1.active .premium_addons-banner-ib-content,
.premium_banner_animation1:hover .premium-banner-read-more,
.premium_banner_animation1.active .premium-banner-read-more,
.premium_banner_animation1:hover .premium_addons-banner-ib-title,
.premium_banner_animation1.active .premium_addons-banner-ib-title,
.premium_banner_animation1:hover img,
.premium_banner_animation1.active img {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition-delay: .05s;
transition-delay: .05s;
-webkit-transition-duration: .35s;
transition-duration: .35s;
}
.premium_banner_animation1.zoomout img,
.premium_banner_animation1.scale img {
-webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
transform: translate3d(-40px, 0, 0) scale(1.1);
}
.premium_addons-banner-ib.sepia img {
-webkit-filter: sepia(30%);
filter: sepia(30%);
}
.premium_addons-banner-ib.bright img {
-webkit-filter: brightness(1);
filter: brightness(1);
}
.premium_addons-banner-ib.sepia:hover img {
-webkit-filter: sepia(0%);
filter: sepia(0%);
}
.premium_addons-banner-ib.bright:hover img {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
.premium_banner_animation1.premium-banner-min-height img,
.premium_banner_animation2.premium-banner-min-height img,
.premium_banner_animation4.premium-banner-min-height img,
.premium_banner_animation5.premium-banner-min-height img,
.premium_banner_animation6.premium-banner-min-height img,
.premium_banner_animation13.premium-banner-min-height img {
height: auto;
}
.premium_banner_animation2 img {
width: 100%;
}
.premium_banner_animation2 .premium_addons-banner-ib-desc::before {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transform: translate3d(0, 50%, 0);
transform: translate3d(0, 50%, 0);
}
.premium_banner_animation2 .premium_addons-banner-ib-title {
position: absolute;
top: 50%;
left: 0;
width: 100%;
-webkit-transition: -webkit-transform .35s, color .35s;
-webkit-transition: color .35s, -webkit-transform .35s;
transition: color .35s, -webkit-transform .35s;
transition: transform .35s, color .35s;
transition: transform .35s, color .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, -50%, 0);
transform: translate3d(0, -50%, 0);
}
.premium_banner_animation2 .premium_addons-banner-ib-content,
.premium_banner_animation2 .premium-banner-read-more,
.premium_banner_animation2 .premium_addons-banner-ib-desc::before {
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
}
.premium_banner_animation2 .premium_addons-banner-ib-content,
.premium_banner_animation2 .premium-banner-read-more {
position: absolute;
bottom: 0;
left: 0;
padding: 15px;
width: 100%;
max-height: 50%;
opacity: 0;
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
.premium_banner_animation2:hover .premium_addons-banner-ib-title,
.premium_banner_animation2.active .premium_addons-banner-ib-title {
color: #fff;
-webkit-transform: translate3d(0, -40px, 0);
transform: translate3d(0, -40px, 0);
}
.premium_banner_animation2:hover .premium_addons-banner-ib-content,
.premium_banner_animation2.active .premium_addons-banner-ib-content,
.premium_banner_animation2:hover .premium-banner-read-more,
.premium_banner_animation2.active .premium-banner-read-more,
.premium_banner_animation2:hover .premium_addons-banner-ib-desc::before,
.premium_banner_animation2.active .premium_addons-banner-ib-desc::before {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation2:hover .premium_addons-banner-ib-content,
.premium_banner_animation2.active .premium_addons-banner-ib-content {
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
.premium_banner_animation3 .premium_addons-banner-ib-title {
position: absolute;
bottom: 0;
left: 0;
padding: 15px;
width: 100%;
text-align: left;
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
.premium_banner_animation3 .premium_addons-banner-ib-desc::before,
.premium_banner_animation3 .premium_addons-banner-ib-title {
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
}
.premium_banner_animation3:hover .premium_addons-banner-ib-desc::before,
.premium_banner_animation3.active .premium_addons-banner-ib-desc::before,
.premium_banner_animation3:hover .premium_addons-banner-ib-title,
.premium_banner_animation3.active .premium_addons-banner-ib-title {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation3 .premium_addons-banner-ib-content {
max-height: -webkit-calc(100% - 60px - 1.5em);
max-height: calc(100% - 60px - 1.5em);
overflow: hidden;
}
.premium_banner_animation4 img {
width: -webkit-calc(100% + 40px)!important;
width: calc(100% + 40px)!important;
max-width: -webkit-calc(100% + 40px)!important;
max-width: calc(100% + 40px)!important;
}
.premium_banner_animation4 .premium_addons-banner-ib-desc {
padding: 30px;
}
.premium_banner_animation4 .premium_addons-banner-ib-desc::after,
.premium_banner_animation4 .premium_addons-banner-ib-desc::before {
position: absolute;
content: "";
opacity: 0;
}
.premium_banner_animation4 .premium_addons-banner-ib-desc::before {
top: 50px;
right: 30px;
bottom: 50px;
left: 30px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.premium_banner_animation4 .premium_addons-banner-ib-desc::after {
top: 30px;
right: 50px;
bottom: 30px;
left: 50px;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
-webkit-transform: scale(1, 0);
-ms-transform: scale(1, 0);
transform: scale(1, 0);
-webkit-transform-origin: 100% 0;
-ms-transform-origin: 100% 0;
transform-origin: 100% 0;
}
.premium_banner_animation4 .premium_addons-banner-ib-title {
padding: 50px 30px 0 30px;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
}
.premium_banner_animation4 .premium_addons-banner-ib-content,
.premium_banner_animation4 .premium-banner-read-more {
padding: 10px 30px;
opacity: 0;
overflow: hidden;
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
.premium_banner_animation4 .premium_addons-banner-ib-title,
.premium_banner_animation4 img {
-webkit-transform: translate3d(-30px, 0, 0);
transform: translate3d(-30px, 0, 0);
}
.premium_banner_animation4.zoomout img,
.premium_banner_animation4.scale img {
-webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
transform: translate3d(-30px, 0, 0) scale(1.1);
}
.premium_banner_animation4 .premium_addons-banner-ib-content,
.premium_banner_animation4 .premium-banner-read-more,
.premium_banner_animation4 .premium_addons-banner-ib-desc::after,
.premium_banner_animation4 .premium_addons-banner-ib-desc::before,
.premium_banner_animation4 img {
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
}
/*.premium_banner_animation4:hover img,
.premium_banner_animation4.active img {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}*/
.premium_banner_animation4:hover .premium_addons-banner-ib-desc::after,
.premium_banner_animation4.active .premium_addons-banner-ib-desc::after,
.premium_banner_animation4:hover .premium_addons-banner-ib-desc::before,
.premium_banner_animation4.active .premium_addons-banner-ib-desc::before {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.premium_banner_animation4:hover .premium_addons-banner-ib-content,
.premium_banner_animation4.active .premium_addons-banner-ib-content,
.premium_banner_animation4:hover .premium-banner-read-more,
.premium_banner_animation4.active .premium-banner-read-more,
.premium_banner_animation4:hover .premium_addons-banner-ib-title,
.premium_banner_animation4.active .premium_addons-banner-ib-title {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation4:hover .premium_addons-banner-ib-content,
.premium_banner_animation4:hover .premium_addons-banner-ib-desc::after,
.premium_banner_animation4:hover .premium_addons-banner-ib-title,
.premium_banner_animation4:hover img {
-webkit-transition-delay: .15s;
transition-delay: .15s;
}
.premium_banner_animation5 .premium_addons-banner-ib-desc {
top: auto;
bottom: 0;
padding: 15px;
height: auto;
background: #f2f2f2;
color: #3c4a50;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.premium_banner_animation5 .premium_addons-banner-ib-content {
position: absolute;
top: auto;
bottom: 100%;
left: 0;
width: 100%;
padding: 15px;
opacity: 0;
-webkit-transition: opacity .35s;
transition: opacity .35s;
}
.premium_banner_animation5 .premium_addons-banner-ib-title,
.premium_banner_animation5 .premium-banner-read-more {
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 200%, 0);
transform: translate3d(0, 200%, 0);
text-align: center;
}
.premium_banner_animation5 .premium_addons-banner-ib-title {
margin: 10px 0;
}
.premium_banner_animation5:hover .premium_addons-banner-ib-content,
.premium_banner_animation5.active .premium_addons-banner-ib-content,
.premium_banner_animation5:hover .premium_addons-banner-ib-content *,
.premium_banner_animation5.active .premium_addons-banner-ib-content * {
opacity: 1 !important;
z-index: 99 !important;
-webkit-backface-visibility: hidden !important;
backface-visibility: hidden !important;
}
.premium_banner_animation5:hover .premium_addons-banner-ib-desc,
.premium_banner_animation5.active .premium_addons-banner-ib-desc,
.premium_banner_animation5:hover .premium_addons-banner-ib-title,
.premium_banner_animation5.active .premium_addons-banner-ib-title,
.premium_banner_animation5:hover .premium-banner-read-more,
.premium_banner_animation5.active .premium-banner-read-more {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.premium_banner_animation5:hover .premium_addons-banner-ib-title {
-webkit-transition-delay: .05s;
transition-delay: .05s;
}
.premium_banner_animation5 img,
.premium_banner_animation2 img,
.premium_banner_animation4 img,
.premium_banner_animation6 img{
-webkit-transition: opacity .35s,filter 0.35s, -webkit-transform .35s;
transition: opacity .35s,filter 0.35s ,-webkit-transform .35s;
transition: opacity .35s,filter 0.35s, transform .35s;
transition: opacity .35s,filter 0.35s, transform .35s, -webkit-transform .35s;
}
.premium_banner_animation5.zoomout img,
.premium_banner_animation5.scale img,
.premium_banner_animation2.zoomout img,
.premium_banner_animation2.scale img,
.premium_banner_animation6.zoomout img,
.premium_banner_animation6.scale img {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.premium_banner_animation5.zoomin:hover img,
.premium_banner_animation2.zoomin:hover img,
.premium_banner_animation6.zoomin:hover img{
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.premium_banner_animation5.zoomout:hover img,
.premium_banner_animation2.zoomout:hover img,
.premium_banner_animation6.zoomout:hover img{
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
.premium_banner_animation5.scale:hover img,
.premium_banner_animation2.scale:hover img,
.premium_banner_animation6.scale:hover img {
-webkit-transform: scale(1.2) rotate(5deg);
transform: scale(1.2) rotate(5deg);
}
.premium_banner_animation5.grayscale:hover img,
.premium_banner_animation2.grayscale:hover img,
.premium_banner_animation6.grayscale:hover img{
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.premium_banner_animation5.blur:hover img,
.premium_banner_animation2.blur:hover img,
.premium_banner_animation6.blur:hover img {
-webkit-filter: blur(3px);
filter: blur(3px);
}
.premium_banner_animation6 .premium_addons-banner-ib-desc {
padding: 45px;
}
.premium_banner_animation6 .premium_addons-banner-ib-desc::before {
position: absolute;
content: "";
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
border: 1px solid #fff;
}
.premium_banner_animation6 .premium_addons-banner-ib-title {
margin: 20px 0 10px;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.premium_banner_animation6 .premium_addons-banner-ib-content,
.premium_banner_animation6 .premium-banner-read-more,
.premium_banner_animation6 .premium_addons-banner-ib-desc::before {
opacity: 0;
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.premium_banner_animation6 .premium-banner-read-more {
margin-top: 10px;
}
.premium_banner_animation6:hover .premium_addons-banner-ib-title,
.premium_banner_animation6.active .premium_addons-banner-ib-title {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation6:hover .premium_addons-banner-ib-content,
.premium_banner_animation6.active .premium_addons-banner-ib-content,
.premium_banner_animation6:hover .premium-banner-read-more,
.premium_banner_animation6.active .premium-banner-read-more,
.premium_banner_animation6:hover .premium_addons-banner-ib-desc::before,
.premium_banner_animation6.active .premium_addons-banner-ib-desc::before {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.premium_banner_animation8 img {
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: scale(1.15);
-ms-transform: scale(1.15);
transform: scale(1.15)
}
.premium_banner_animation8:hover img,
.premium_banner_animation8.active img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.premium_banner_animation8 .premium_addons-banner-ib-title {
margin-top: 20%;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
.premium_banner_animation8:hover .premium_addons-banner-ib-title,
.premium_banner_animation8.active .premium_addons-banner-ib-title {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation8 .premium_addons-banner-ib-content {
margin: 1em 0 0;
padding: 35px;
border: 1px solid #fff;
opacity: 0;
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 20px, 0) scale(1.1);
transform: translate3d(0, 20px, 0) scale(1.1);
}
.premium_banner_animation8:hover .premium_addons-banner-ib-content,
.premium_banner_animation8.active .premium_addons-banner-ib-content {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0) scale(1);
transform: translate3d(0, 0, 0) scale(1);
}
.premium_banner_animation12 .premium_addons-banner-ib-desc::after {
position: absolute;
content: "";
right: 30px;
bottom: 30px;
left: 30px;
height: -webkit-calc(50% - 30px);
height: calc(50% - 30px);
border: 7px solid #fff;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
.premium_banner_animation12:hover .premium_addons-banner-ib-desc::after,
.premium_banner_animation12.active .premium_addons-banner-ib-desc::after {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation12 .premium_addons-banner-ib-desc {
padding: 45px;
text-align: left;
}
.premium_banner_animation12 .premium_addons-banner-ib-content {
position: absolute;
right: 60px;
bottom: 60px;
left: 60px;
opacity: 0;
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, -100px, 0);
transform: translate3d(0, -100px, 0);
}
.premium_banner_animation12:hover .premium_addons-banner-ib-content,
.premium_banner_animation12.active .premium_addons-banner-ib-content {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation13 img {
width: -webkit-calc(100% + 20px)!important;
width: calc(100% + 20px)!important;
max-width: -webkit-calc(100% + 20px)!important;
max-width: calc(100% + 20px)!important;
-webkit-transition: opacity .35s,filter 0.35s, -webkit-transform .35s;
transition: opacity .35s,filter 0.35s ,-webkit-transform .35s;
transition: opacity .35s,filter 0.35s, transform .35s;
transition: opacity .35s,filter 0.35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.premium_banner_animation13.zoomout img,
.premium_banner_animation13.scale img {
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
transform: translate3d(-10px, 0, 0) scale(1.1);
}
.premium_banner_animation13.none:hover img,
.premium_banner_animation1.none:hover img,
.premium_banner_animation4.none:hover img {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation13.zoomin:hover img,
.premium_banner_animation1.zoomin:hover img,
.premium_banner_animation4.zoomin:hover img{
-webkit-transform: translate3d(0, 0, 0) scale(1.1);
transform: translate3d(0, 0, 0) scale(1.1);
}
.premium_banner_animation13.zoomout:hover img,
.premium_banner_animation1.zoomout:hover img,
.premium_banner_animation4.zoomout:hover img {
-webkit-transform: translate3d(0, 0, 0) scale(1.0);
transform: translate3d(0, 0, 0) scale(1.0);
}
.premium_banner_animation13.scale:hover img,
.premium_banner_animation1.scale:hover img,
.premium_banner_animation4.scale:hover img {
-webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
}
.premium_banner_animation13.grayscale:hover img,
.premium_banner_animation1.grayscale:hover img,
.premium_banner_animation4.grayscale:hover img{
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.premium_banner_animation13.blur:hover img,
.premium_banner_animation1.blur:hover img,
.premium_banner_animation4.blur:hover img {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-filter: blur(3px);
filter: blur(3px);
}
.premium_banner_animation13 .premium_addons-banner-ib-desc {
text-align: left;
}
.premium_banner_animation13 .premium_addons-banner-ib-title {
position: relative;
overflow: hidden;
padding: 5px 0 10px;
}
.premium_banner_animation13 .premium_addons-banner-ib-title::after {
position: absolute;
content: "";
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: #fff;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(-101%, 0, 0);
transform: translate3d(-101%, 0, 0);
}
.premium_banner_animation13:hover .premium_addons-banner-ib-title::after,
.premium_banner_animation13.active .premium_addons-banner-ib-title::after {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation13 .premium_addons-banner-ib-content,
.premium_banner_animation13 .premium-banner-read-more {
padding: 15px 0;
opacity: 0;
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.premium_banner_animation13:hover .premium_addons-banner-ib-content,
.premium_banner_animation13.active .premium_addons-banner-ib-content,
.premium_banner_animation13:hover .premium-banner-read-more,
.premium_banner_animation13.active .premium-banner-read-more {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_addons-banner-ib.premium_banner_animation5 .premium-banner-toggle-size {
left: 50%;
width: auto!important;
height: 100%;
max-width: none;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.premium_addons-banner-ib img {
border: none;
padding: 0;
margin: 0;
}
/**************** Premium CountDown *************/
/************************************************/
.premium-countdown {
display: -ms-flexbox;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
}
/* jQuery Countdown styles 2.0.0. */
.pre_countdown-row {
display: block;
text-align: center;
}
.countdown .pre_countdown-section {
display: inline-block;
max-width: 100%;
margin-bottom: 15px;
}
.countdown .pre_countdown-section:last-child {
margin-right: 0;
}
.countdown span.pre_countdown-amount {
font-size: 70px;
line-height: 1;
}
.countdown .pre_time-mid {
display: block;
}
/************************************
* Digit and unit styles
*************************************/
.side .pre_countdown-section .pre_countdown-period {
vertical-align: bottom;
}
.countdown .pre_countdown-section .pre_countdown-period {
font-size: 17px;
line-height: 3em;
}
/************************************
* Digit and unit side by side
*************************************/
.side .pre_countdown-section .pre_countdown-amount,
.side .pre_countdown-section .pre_countdown-period {
display: inline-block;
}
.side .pre_countdown-section .pre_countdown-amount {
margin-right: 5px;
}
/************************************
* Digit and unit up and down
*************************************/
.down .pre_countdown-section .pre_countdown-amount,
.down .pre_countdown-section .pre_countdown-period {
display: block;
}
/**************** Premium Carousel **************/
/************************************************/
.premium-carousel-wrapper a.carousel-arrow,
.premium-carousel-wrapper a.ver-carousel-arrow {
display: flex;
align-items: center;
justify-content: center;
width: 2em;
height: 2em;
line-height: 0;
text-align: center;
position: absolute;
z-index: 99;
cursor: pointer;
-webkit-transition: opacity .3s ease;
-o-transition: opacity .3s ease;
-moz-transition: opacity .3s ease;
transition: opacity .3s ease;
-webkit-appearance: inherit;
box-shadow: none;
}
.ver-carousel-arrow.carousel-next i{
margin-bottom: -3px;
}
.premium-carousel-wrapper a.slick-arrow:hover {
box-shadow: none !important;
}
.premium-carousel-wrapper a.carousel-arrow {
top: 50%;
}
.premium-carousel-wrapper a.ver-carousel-arrow {
left: 50%;
}
a.carousel-arrow.carousel-next {
right: -20px;
}
a.carousel-arrow.carousel-prev {
left: -20px;
}
a.ver-carousel-arrow.carousel-next {
bottom: -56px;
}
a.ver-carousel-arrow.carousel-prev {
top: -45px;
}
a.circle-bg {
border-radius: 100%;
}
a.circle-border {
border-radius: 100%;
border: solid black;
}
a.square-border {
border: solid black;
}
ul.slick-dots {
list-style: none;
text-align: center;
margin-left: 0;
}
ul.slick-dots li {
font-size: 10px;
display: inline-block;
margin: 5px;
width: 20px;
height: 20px;
cursor: pointer;
}
/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
100% {
top: -5.5px;
right: -3px;
bottom: -3px;
left: -3px;
opacity: 0;
}
}
@keyframes hvr-ripple-out {
100% {
top: -5.5px;
right: -3px;
bottom: -3px;
left: -3px;
opacity: 0;
}
}
.premium-carousel-wrapper.hvr-ripple-out {
padding-bottom: 1px;
}
.premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active {
display: inline-block;
-webkit-transform: perspective(0px) translateZ(0);
transform: perspective(0px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
position: relative;
}
.premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active:before {
content: '';
position: absolute;
border: 1px solid;
border-radius: 50%;
top: 3px;
right: 4px;
bottom: 6.8px;
left: 4.5px;
-webkit-animation-duration: 1s;
animation-duration: 1s;
animation-iteration-count: infinite;
}
.premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active:hover:before, .premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active:focus:before, .premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active:active:before {
-webkit-animation-name: hvr-ripple-out;
animation-name: hvr-ripple-out;
}
/**************** Premium Counter ***************/
/************************************************/
.premium-counter-area {
padding: 10px 0;
}
.premium-counter-area .premium-counter-icon span.icon {
width: 1em;
height: 1em;
line-height: 1em;
text-align: center;
display: inline-block;
vertical-align: middle;
}
.premium-counter-area .premium-counter-title {
padding: 0;
margin: 0;
}
.premium-counter-icon .icon i.fa:before {
vertical-align: text-top;
}
/*
* Circle Icon style
*/
.premium-counter-area .premium-counter-icon .circle {
border-radius: 100%;
}
.premium-counter-area.center {
text-align: center;
}
.premium-counter-area .right,
.premium-counter-area .left {
display: table-cell;
vertical-align: middle;
}
.premium-counter-icon.right {
padding-left: 20px;
}
.premium-counter-icon.left {
padding-right: 20px;
}
.premium-init-wrapper.right {
text-align: right;
}
/*
* Custom image and simple styles image fix
*/
span.icon.flex-width {
width: auto !important;
height: auto !important;
}
.premium-counter-area .premium-counter-init {
font-size: 35px;
}
/**************** Premium Image Separator ****************/
/*********************************************************/
/*Image Separator Container Style*/
.premium-image-separator-container{
position: absolute;
width: 100%;
z-index: 2;
top: auto;
}
/*Link on Image Style*/
.premium-image-separator-link{
position: absolute;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-decoration: none;
}
/*Important to override Theme options*/
a.premium-image-separator-link:hover,
a.premium-image-separator-link:visited,
a.premium-image-separator-link:focus,
a.premium-image-separator-link:active{
box-shadow: none !important;
outline: none !important;
border: none !important;
text-decoration: none !important;
}
.premium-image-separator-container .img-responsive {
display: inline-block;
}
/**************** Premium Modal Box ****************/
/***************************************************/
.premium-modal-box-button-selector,
.premium-modal-box-modal-lower-close{
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
}
.premium-btn-md {
padding: 8px 14px;
font-size: 16px;
line-height: 1.2;
}
.premium-btn-lg {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.premium-btn-block {
display: block;
width: 100%;
}
.premium-modal-box-modal-close {
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000;
}
.premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
button.premium-modal-box-modal-close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: transparent;
border: 0
}
.premium-modal-box-modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
display: none;
-webkit-overflow-scrolling: touch;
outline: 0;
padding: 0 !important;
}
.premium-modal-box-modal .premium-modal-box-modal-dialog {
position: absolute;
top: 0;
left: 50%;
-webkit-transform: translate(-50%,-50%) !important;
transform: translate(-50%,-50%) !important;
margin: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.premium-modal-box-modal-content {
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}
.premium-modal-backdrop.premium-in {
filter: alpha(opacity=50);
opacity: .5 !important;
}
.premium-modal-fade.premium-in {
opacity: 1;
}
.premium-modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000
}
.premium-modal-backdrop.premium-modal-fade {
filter: alpha(opacity=0);
opacity: 0;
}
.premium-modal-fade {
opacity: 0;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out;
}
.premium-modal-box-modal.premium-in .premium-modal-box-modal-dialog {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
top: 50%;
}
.premium-modal-box-modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5
}
.premium-modal-box-modal-header .premium-modal-box-modal-close {
margin-top: -2px
}
.premium-modal-box-modal-header .premium-modal-box-modal-title {
margin: 0;
padding: 0;
line-height: 1.42857143;
clear: none;
padding: 0;
margin: 0;
}
.premium-modal-box-modal-body {
position: relative;
padding: 15px
}
.premium-modal-box-modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5
}
.premium-modal-box-modal-footer .btn + .btn {
margin-bottom: 0;
margin-left: 5px
}
.premium-modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
.premium-modal-box-text-selector {
background: none !important;
}
@media (min-width:768px) {
.premium-modal-box-modal-dialog {
width: 600px;
}
.premium-modal-box-modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
}
}
.premium-modal-box-container {
width: 100% !important;
}
/*Open Modal Button Style*/
.premium-modal-box-selector-container .btn-info {
border: none;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*Open Modal Img, Span Style */
.premium-modal-box-selector-container img,
.premium-modal-box-selector-container span{
cursor: pointer;
}
/*Image on Modal Header Style*/
.premium-modal-box-modal-header img {
width: 48px;
padding: 5px 0;
vertical-align: top;
}
/*Icon On Modal Header Style*/
.premium-modal-box-modal-header i {
padding-right: 6px;
}
/*Image On Modal Header Style*/
.premium-modal-box-modal-title img {
vertical-align : middle;
}
/*Close Button Container Style*/
.premium-modal-box-close-button-container {
float: right;
}
.premium-modal-box-modal-close {
position: relative;
z-index: 99;
}
.premium-modal-box-img-selector,
.premium-modal-box-text-selector,
.premium-modal-box-close-button-container,
.premium-modal-box-modal-close,
.premium-modal-box-modal-lower-close{
-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;
}
/**************** Premium Progress Bar ****************/
/******************************************************/
.premium-progressbar-container{
position:relative;
}
.premium-progressbar-progress {
overflow: hidden;
height: 20px;
margin-bottom: 50px;
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.premium-progressbar-progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 20px;
background: #6ec1e4;
text-align: center;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}
.progress-striped .progress-bar,
.progress-bar-striped {
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
}
.pa-progress.active .progress-bar,
.progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.premium-progressbar-progress{
position: relative;
text-align:left;
}
.premium-progressbar-progress-bar {
position: absolute;
overflow: hidden;
line-height: 20px;
}
.clearfix {
clear: both;
}
/*Progress Bar Style*/
.premium-progressbar-progress-bar {
-webkit-transition: width 0s ease-in-out !important;
-moz-transition: width 0s ease-in-out !important;
-ms-transition: width 0s ease-in-out !important;
-o-transition: width 0s ease-in-out !important;
transition: width 0s ease-in-out !important;
}
/*Left Label Style*/
.premium-progressbar-container p:first-of-type{
margin:0;
float:left;
}
/*Right Label Style*/
.premium-progressbar-container p:nth-of-type(2){
margin: 0;
float: right;
}
.premium-progressbar-name{
left:50%;
top :0;
right:0;
transform: translateX(-12.5px);
z-index:1;
}
.premium-progressbar-multiple-label{
position:relative;
float:left;
width:0;
left:50%;
}
.premium-progressbar-center-label{
position:relative;
bottom:-100%;
white-space:nowrap;
}
.premium-progressbar-arrow {
left:50%;
display: inline-block;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 11px solid ;
transform: translateX(-50%);
}
.premium-progressbar-pin {
border-left: 1px solid;
height: 12px;
left:50%;
display: inline-block;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
/**************** Premium Testimonials ****************/
/******************************************************/
/*Testimonial Container Style*/
.premium-testimonial-Box {
width: 100%;
background: transparent;
overflow: hidden;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*Testimonial Title Style*/
.premium-testimonial-Box h1, .premium-testimonial-Box h2,
.premium-testimonial-Box h3, .premium-testimonial-Box h4,
.premium-testimonial-Box h5, .premium-testimonial-Box h6{
display: inline;
font-weight: 600;
}
/*Testimonial Text Style*/
.premium-testimonial-container {
position: relative;
}
/*Testimonial Img Container Style*/
.premium-testimonial-img-wrapper {
margin-left: auto;
margin-right: auto;
overflow: hidden;
}
/*Testimonial Person Image Style*/
.premium-testimonial-person-image {
width: 100%;
height: 100% !important;
border-style: solid !important;
}
/*Testimonial Content Wrapper Style*/
.premium-testimonial-content-wrapper {
position: relative;
z-index: 2;
width: 100%;
padding: 20px;
text-align: center;
}
/*Testimonial Quotes Container Div Style*/
.premium-testimonial-quotes-wrapper {
z-index: 1;
}
/*Clear Float*/
.premium-testimonial-clear-float {
clear: both;
}
/*Upper Quote Style*/
.premium-testimonial-upper-quote {
position: absolute;
z-index: 1;
}
/*Lower Quote Style*/
.premium-testimonial-lower-quote{
position:absolute;
z-index: 1;
}
/*Author Info Container Div Style*/
.premium-testimonial-author-info {
display: block;
}
/**************** Premium Title ****************/
/***********************************************/
/*Title Container Div Style*/
.premium-title-container {
position: relative;
width: 100%;
clear: both;
overflow: hidden;
}
/*Header Style*/
.premium-title-container .premium-title-header {
margin: 0;
padding: 10px;
}
/*Style 2,3,6,7,8 Header*/
.premium-title-style1,
.premium-title-style2,
.premium-title-style5,
.premium-title-style6,
.premium-title-style7{
display: inline-block;
float: none;
}
.premium-title-style1 {
border-left: 3px solid #6ec1e4;
}
.premium-title-container.style2,
.premium-title-container.style4,
.premium-title-container.style5,
.premium-title-container.style6{
border-bottom: 3px solid #6ec1e4;
}
/*Style 6 Header*/
.premium-title-style6{
position: relative;
}
/*Style 6 Trinagle*/
.premium-title-style6:before {
position: absolute;
left: 50%;
bottom: 0;
margin-left: -2px;
content: '';
border: 3px solid transparent;
}
/*Style 7 Strip Container*/
.premium-title-style7-strip{
display: block;
margin: 0;
float: none;
clear: both;
}
/*Strip Style*/
.premium-title-style7-strip:before{
display: block;
position: relative;
margin-left: auto;
margin-right: auto;
content: '';
float: none;
}
/**************** Premium Video Box ************/
/***********************************************/
/*Image Container Div Style*/
.premium-video-box-image-container {
position: relative;
cursor: pointer;
}
/*Image Style*/
.premium-video-box-image-container img {
width: 100%;
}
/*Play Icon Container Div Style*/
.premium-video-box-play-icon-container {
position: absolute;
z-index: 1;
cursor: pointer;
transform: translate(-50%,-50%);
background: rgba(252,252,252,0.84);
}
.premium-video-box-description-container {
position: absolute;
z-index: 1;
padding: 5px;
text-align: center;
cursor: pointer;
transform: translate(-50%,-50%);
}
.premium-video-box-text {
margin-bottom: 0 !important;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*Play Icon Style*/
.premium-video-box-play-icon{
padding: 15px;
transform: translateX(4%);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*Video Container Div Style*/
.premium-video-box-video-container{
position: absolute;
top: 0;
left: 0;
z-index: 2;
width: 100%;
height: 100%;
opacity:0;
visibility: hidden;
-webkit-transition: opacity 0.8s ease-in-out;
-moz-transition: opacity 0.8s ease-in-out;
-o-transition: opacity 0.8s ease-in-out;
-ms-transition: opacity 0.8s ease-in-out;
transition: opacity 0.8s ease-in-out;
overflow: hidden;
}
/*Video Iframe Style*/
.premium-video-box-video-container iframe{
width: 100%;
height: 100%;
}
/**************** Premium Blog *****************/
/***********************************************/
.premium-blog-post-container {
padding: 15px;
}
.premium-blog-thumb-effect-wrapper {
position: relative;
overflow: hidden;
}
.premium-blog-thumbnail-container {
overflow: hidden;
}
.premium-blog-post-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99;
}
.premium-blog-post-link:hover {
box-shadow: none !important;
border: none !important;
outline: none !important;
}
/*Thumbnail Img*/
.premium-blog-thumbnail-container img,
.premium-blog-thumbnail-container .below-entry-meta{
width: 100%;
height: 100%;
margin: 0 !important;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
.premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
transform: scale(1.2);
}
.premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
-webkit-filter: sepia(30%);
filter: sepia(30%);
}
.premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
-webkit-filter: brightness(1);
filter: brightness(1);
}
.premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
-webkit-transform: translateX(-15px) scale(1.1);
transform: translateX(-15px) scale(1.1);
}
/*Thumbnail Container Hover*/
.premium-blog-thumb-effect-wrapper:hover .premium-blog-zoomin-effect img {
transform: scale(1.2);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-zoomout-effect img {
transform: scale(1.1);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-scale-effect img {
transform: scale(1.3) rotate(5deg);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-gray-effect img {
filter: grayscale(100%);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-blur-effect img {
filter: blur(3px);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-sepia-effect img {
-webkit-filter: sepia(0%);
filter: sepia(0%);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bright-effect img {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-trans-effect img {
-webkit-transform: translateX(0px) scale(1.1);
transform: translateX(0px) scale(1.1);
}
.premium-blog-thumbnail-container:before, .premium-blog-thumbnail-container:after {
position: absolute;
content: '';
z-index: 1;
top: 50%;
left: 50%;
opacity: 0;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
-webkit-transition: all 0.4s linear 0s;
-moz-transition: all 0.4s linear 0s;
-ms-transition: all 0.4s linear 0s;
-o-transition: all 0.4s linear 0s;
transition: all 0.4s linear 0s;
height: 1px;
width: 100%;
}
.premium-blog-thumbnail-container:before {
width: 1px;
height: 100%;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
width: 20px;
opacity: 1;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before{
height: 20px;
opacity: 1;
}
.premium-blog-diagonal-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.premium-blog-diagonal-effect:before {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
content: " ";
z-index: 1;
background: rgba(255,255,255,0.2);
-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-moz-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-o-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-ms-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-moz-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-o-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-ms-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
}
.premium-blog-framed-effect {
position: absolute;
width: calc(100% - 30px);
height: calc(100% - 30px);
top: 15px;
left: 15px;
opacity: 0;
transform: scale(0.3);
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
opacity: 0.99;
transform: scale(1);
}
.premium-blog-bordered-effect {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
padding: 15px;
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-bordered-border-container {
width: 100%;
height: 100%;
border: 2px solid;
-webkit-transform: scale(0,1);
transform: scale(0,1);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
opacity: 0.99;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-bordered-border-container {
-webkit-transform: scale(1,1);
transform: scale(1,1);
}
.premium-blog-squares-effect,
.premium-blog-squares-square-container{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.premium-blog-squares-effect:before,
.premium-blog-squares-effect:after,
.premium-blog-squares-square-container:before,
.premium-blog-squares-square-container:after{
position: absolute;
content: '';
top: 0;
left: 0;
width: 50%;
height: 50%;
-webkit-transform: translate(-100%,-100%);
transform: translate(-100%,-100%);
opacity: 0.7;
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-squares-square-container:before,
.premium-blog-squares-square-container:after {
opacity: 0.8;
}
.premium-blog-squares-effect:after {
-webkit-transform: translate(200%,200%);
transform: translate(200%,200%);
}
.premium-blog-squares-square-container:before{
-webkit-transform: translate(-100%,200%);
transform: translate(-100%,200%);
}
.premium-blog-squares-square-container:after {
-webkit-transform: translate(200%,-100%);
transform: translate(200%,-100%);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
-webkit-transform: translate(0,0%) scaleY(1.003) scaleX(1.003);
transform: translate(0,0%) scaleY(1.003) scaleX(1.003);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
-webkit-transform: translate(100%,100%) scaleY(1.003) scaleX(1.003);
transform: translate(100%,100%) scaleY(1.003) scaleX(1.003);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before{
-webkit-transform: translate(0,100%);
transform: translate(0,100%);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after{
-webkit-transform: translate(100%,0%);
transform: translate(100%,0%);
}
/*Content Wrapper*/
.premium-blog-content-wrapper {
position: relative;
z-index: 2;
top: -50px;
margin: 0px 30px 20px;
clear: both;
padding: 30px;
background: #ddd;
}
.premium-blog-content-wrapper.empty-thumb {
top: 0;
}
.premium-blog-clear-fix {
clear: both;
}
.premium-blog-content-wrapper .premium-blog-inner-container {
display: flex;
}
/*Post Format Container*/
.premium-blog-format-container {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background: #eee;
width: 55px;
height: 55px;
font-size: 25px;
margin-right: 20px;
text-align: center;
-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;
}
.premium-blog-format-link {
line-height: 0;
}
/*Post Format Icon*/
.premium-blog-format-container i {
-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;
}
.premium-blog-entry-title {
display: inline;
margin-bottom: 0px;
}
.premium-blog-entry-meta {
margin-bottom: 8px;
}
.premium-blog-entry-meta i{
margin-right: 3px;
-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;
}
.premium-blog-post-tags-container a{
-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;
}
/*Post Meta Data Container*/
.premium-blog-meta-data {
margin-right : 8px;
}
/*Post Content Container*/
.premium-blog-post-content {
border-top: 1px solid;
padding-top: 14px;
}
.premium-blog-post-content {
margin-top: 0;
margin-left: 75px;
}
.premium-blog-post-tags-container {
margin-top: 8px;
margin-left: 75px;
}
.premium-blog-entry-title a,
.premium-blog-meta-data a,
.premium-blog-post-tags a,
.premium-blog-post-content .premium-blog-excerpt-link{
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-ms-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
transition: color 0.3s ease-in-out;
}
.premium-blog-pagination-container {
padding: 15px;
margin-top: -30px;
text-align: right;
}
.premium-blog-pagination-container ul {
list-style: none;
margin: 0;
padding: 0;
}
.premium-blog-pagination-container li {
display: inline;
}
.premium-blog-pagination-container li a,
.premium-blog-pagination-container li span{
display: inline;
margin-right: 10px;
margin-bottom: 5px;
padding: 3px 7px;
border: 1px solid #E3E3E3;
font-size: 16px;
line-height: 20px;
-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;
}
.premium-blog-pagination-container li .prev,
.premium-blog-pagination-container li .next {
border: none;
border-radius: 0;
font-size: 17.8px;
}
.premium-blog-wrap.col-3 .premium-blog-entry-meta,
.premium-blog-wrap.col-3 .premium-blog-post-content,
.premium-blog-wrap.col-3 .premium-blog-post-tags-container,
.premium-blog-wrap.col-4 .premium-blog-entry-meta,
.premium-blog-wrap.col-4 .premium-blog-post-content,
.premium-blog-wrap.col-4 .premium-blog-post-tags-container {
margin-left: 0;
}
.premium-blog-wrap.col-3 .premium-blog-format-container,
.premium-blog-wrap.col-4 .premium-blog-format-container {
display: none;
}
.premium-blog-wrap.col-3 .premium-blog-entry-title,
.premium-blog-wrap.col-4 .premium-blog-entry-title {
line-height: 1;
}
.premium-blog-wrap.col-3 .premium-blog-entry-title a,
.premium-blog-wrap.col-4 .premium-blog-entry-title a{
font-size: 20px;
}
@media ( max-width: 768px ) {
.premium-blog-content-wrapper {
top: 0;
margin: 0;
}
.premium-blog-thumb-effect-wrapper {
margin-bottom: 15px;
}
.premium-blog-format-container {
display: none;
}
.premium-blog-entry-meta,
.premium-blog-post-content {
margin-left: 0px;
}
.premium-blog-post-tags-container {
margin-left: 0px;
}
}
/**************** Premium Person ******************/
/**************************************************/
.premium-person-container {
position: relative;
overflow: hidden;
}
.premium-person-image-container {
text-align: center;
}
.premium-person-zoomout-effect .premium-person-image-container img,
.premium-person-scale-effect .premium-person-image-container img {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
}
.premium-person-sepia-effect .premium-person-image-container img {
-webkit-filter: sepia(30%);
filter: sepia(30%);
}
.premium-person-bright-effect .premium-person-image-container img {
-webkit-filter: brightness(1);
filter: brightness(1);
}
.premium-person-trans-effect .premium-person-image-container img {
-webkit-transform: translateX(-15px) scale(1.1);
transform: translateX(-15px) scale(1.1);
}
.premium-person-zoomin-effect:hover .premium-person-image-container img{
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
}
.premium-person-zoomout-effect:hover .premium-person-image-container img{
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.premium-person-scale-effect:hover .premium-person-image-container img {
-webkit-transform: scale(1.3) rotate(5deg);
-moz-transform: scale(1.3) rotate(5deg);
-ms-transform: scale(1.3) rotate(5deg);
-o-transform: scale(1.3) rotate(5deg);
transform: scale(1.3) rotate(5deg);
}
.premium-person-grayscale-effect:hover .premium-person-image-container img {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}
.premium-person-blur-effect:hover .premium-person-image-container img {
-webkit-filter: blur(3px);
-moz-filter: blur(3px);
-ms-filter: blur(3px);
-o-filter: blur(3px);
filter: blur(3px);
}
.premium-person-sepia-effect:hover .premium-person-image-container img {
-webkit-filter: sepia(0%);
filter: sepia(0%);
}
.premium-person-bright-effect:hover .premium-person-image-container img {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
.premium-person-trans-effect:hover .premium-person-image-container img {
-webkit-transform: translateX(0px) scale(1.1);
transform: translateX(0px) scale(1.1);
}
.premium-person-container .premium-person-image-container img {
width: 100%;
height: 100%;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.premium-person-info {
position: absolute;
top: auto;
right: 0;
left: 0;
width: 100%;
-webkit-transition: all 500ms ease 0s;
-moz-transition: all 500ms ease 0s;
-ms-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
-webkit-transform: translate3d(0,100%,0);
-moz-transform: translate3d(0,100%,0);
-ms-transform: translate3d(0,100%,0);
-o-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
.premium-person-container:hover .premium-person-info{
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
bottom: -1px !important;
}
.premium-person-info-container {
padding: 30px 15px;
}
.premium-person-name {
margin: 0 0 5px;
font-weight: 700;
}
.premium-person-title {
margin: 0 0 20px;
padding: 0;
}
.premium-person-content {
margin: 0 0 30px;
}
/*Override Theme List Margin*/
.premium-person-social-list {
margin: 0px !important;
}
.premium-person-social-list .premium-person-list-item {
display: inline;
list-style: none;
}
.premium-person-social-list li,
.premium-person-social-list li i{
position: relative;
bottom: 0px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.premium-person-social-list li:hover {
bottom: 5px;
}
.premium-person-social-list li:hover a{
box-shadow: none;
}
.premium-person-social-list li a:focus{
box-shadow: none;
outline: none;
}
.premium-person-social-list li i {
font-size: 18px;
margin: 0 5px;
}
/**************** Premium Dual Header ******************/
/*******************************************************/
.premium-dual-header-container .premium-dual-header-first-header,
.premium-dual-header-container .premium-dual-header-second-header {
position: relative;
padding: 0;
margin: 0;
display: inline-block;
-webkit-transform: translate(0,0);
transform: translate(0,0);
}
.premium-dual-header-first-clip .premium-dual-header-first-span,
.premium-dual-header-second-clip {
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
@media (max-width: 500px) {
.premium-dual-header-container .premium-dual-header-first-header,
.premium-dual-header-container .premium-dual-header-second-header {
display: block;
word-wrap: break-word;
}
.premium-dual-header-first-container,
.premium-dual-header-second-container {
margin: 0;
}
}
@media (min-width: 501px) {
.premium-dual-header-first-container {
margin-right: 5px;
}
}
.premium-dual-header-first-header.gradient .premium-dual-header-first-span,
.premium-dual-header-second-header.gradient {
background-size: 300% 300% !important;
-webkit-animation: Gradient 10s ease-in-out infinite;
-moz-animation: Gradient 10s ease-in-out infinite;
animation: Gradient 10s ease-in-out infinite;
}
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
/**************** Premium Fancy Text *******************/
/*******************************************************/
.premium-suffix-text,
.premium-fancy-text,
.premium-prefix-text {
font-size: 40px;
}
.premium-fancy-text-wrapper .premium-fancy-list-items {
list-style: none;
}
.premium-fancy-text-wrapper .premium-fancy-text-span-align {
vertical-align: top;
}
/**************** Premium Pricing Table ****************/
/*******************************************************/
/*Pricing Table Container Div Style*/
.premium-pricing-table-container {
text-align: center;
overflow: hidden;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.premium-badge-left,
.premium-badge-right {
position:absolute;
top: 0;
}
.premium-badge-right {
right: 0;
}
.premium-badge-left {
left: 0;
}
.premium-badge-left .corner {
width: 0;
height: 0;
border-top: 150px solid;
border-bottom: 150px solid transparent;
border-right: 150px solid transparent;
}
.premium-badge-right .corner {
width: 0;
height: 0;
border-bottom: 150px solid transparent;
border-right: 150px solid;
border-left: 150px solid transparent;
}
.premium-badge-left span,
.premium-badge-right span{
position:absolute;
top: 35px;
width: 100px;
text-align: center;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
display:block;
text-transform: uppercase;
}
.premium-badge-right span {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
right: 0;
}
.premium-pricing-price-currency {
position: relative;
}
.premium-pricing-icon-container {
line-height: 0;
}
.premium-pricing-button-container {
display: block;
}
.premium-pricing-list {
list-style-type: none;
margin: 0;
}
.premium-pricing-slashed-price-value {
display: inline-block;
font-size: 20px;
font-weight: 400;
margin-right: 5px;
}
.premium-pricing-price-value {
font-size: 70px;
}
.premium-pricing-description-container li{
list-style-position: inside;
text-indent: -40px;
}
@-moz-document url-prefix() {
.premium-pricing-description-container li{
text-indent: 0px;
}
}
.premium-pricing-price-button {
display: block;
padding: 6px 12px;
line-height: 1.42857143;
text-align: center;
color: #fff;
background: #6ec1e4;
margin-bottom: 0;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/**************** Premium Google Maps ******************/
/*******************************************************/
.premium-maps-info-container {
margin-top: 10px;
margin-bottom: 10px;
}
.premium-maps-info-title,
.premium-maps-info-desc {
margin: 0;
padding: 0;
}
.premium-maps-container .gm-style-iw {
text-align: center;
}
/**************** Premium Button ***********************/
/*******************************************************/
.premium-button {
display: inline-block;
position: relative;
overflow: hidden;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out !important;
-moz-transition: all 0.2s ease-in-out !important;
-ms-transition: all 0.2s ease-in-out !important;
-o-transition: all 0.2s ease-in-out !important;
transition: all 0.2s ease-in-out !important;
}
.premium-button-sm {
padding: 12px 24px;
font-size: 14px;
line-height: 1;
}
.premium-button-md {
padding: 14px 26px;
font-size: 16px;
line-height: 1.2;
}
.premium-button-lg {
padding: 16px 28px;
font-size: 18px;
line-height: 1.3333;
}
.premium-button-block {
font-size: 15px;
line-height: 1;
padding: 12px 24px;
width: 100%;
text-align: center;
}
.premium-button-text {
display: inline-block;
width: 100%;
}
.premium-button-style1-bottom,
.premium-button-style1-top,
.premium-button-style1-right,
.premium-button-style1-left,
.premium-button-style2-shutouthor,
.premium-button-style2-shutoutver,
.premium-button-style2-shutinhor,
.premium-button-style2-shutinver,
.premium-button-style2-scshutouthor,
.premium-button-style2-scshutoutver,
.premium-button-style2-dshutinhor,
.premium-button-style2-dshutinver,
.premium-button-style5-radialin,
.premium-button-style5-radialout,
.premium-button-style5-rectin,
.premium-button-style5-rectout {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
position: relative;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
}
.premium-button-style1-bottom:before,
.premium-button-style1-top:before,
.premium-button-style1-right:before,
.premium-button-style1-left:before,
.premium-button-style2-shutinhor:before,
.premium-button-style2-shutinver:before,
.premium-button-style2-shutouthor:before,
.premium-button-style2-shutoutver:before,
.premium-button-style2-scshutouthor:before,
.premium-button-style2-scshutoutver:before,
.premium-button-style2-dshutinhor:before,
.premium-button-style2-dshutinver:before,
.premium-button-style5-radialin:before,
.premium-button-style5-radialout:before,
.premium-button-style5-rectin:before,
.premium-button-style5-rectout:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.premium-button-style5-radialin:before,
.premium-button-style5-radialout:before {
-webkit-transform-origin: 50%;
transform-origin: 50%;
border-radius: 100%;
-webkit-transform: scale(0);
transform: scale(0);
}
.premium-button-style5-radialin:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.premium-button-style5-rectin:before,
.premium-button-style5-rectout:before {
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transform: scale(1);
transform: scale(1);
}
.premium-button-style5-rectout:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.premium-button-style5-rectout:hover:before {
-webkit-transform: scale(1);
transform: scale(1);
}
.premium-button-style5-rectin:hover:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.premium-button-style5-radialout:hover:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.premium-button-style5-radialin:hover:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.premium-button-style1-top:before {
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
}
.premium-button-style1-right:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
}
.premium-button-style1-left:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.premium-button-style2-shutouthor:before,
.premium-button-style2-scshutoutver:before{
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.premium-button-style2-shutoutver:before,
.premium-button-style2-scshutouthor:before{
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.premium-button-style2-shutinhor:before{
-webkit-transform: scaleX(1);
transform: scaleX(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
}
.premium-button-style2-shutinver:before{
-webkit-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
}
.premium-button-style1-bottom:hover:before,
.premium-button-style1-top:hover:before{
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.premium-button-style1-left:hover:before,
.premium-button-style1-right:hover:before,
.premium-button-style2-shutouthor:hover:before,
.premium-button-style2-shutoutver:hover:before{
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.premium-button-style2-shutinhor:hover:before{
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
.premium-button-style2-shutinver:hover:before{
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.premium-button-style2-scshutouthor:hover:before{
-webkit-transform: scaleX(0.9);
transform: scaleX(0.9);
}
.premium-button-style2-scshutoutver:hover:before{
-webkit-transform: scaleY(0.8);
transform: scaleY(0.8);
}
/*Diagonal*/
.premium-button-style2-dshutinhor:before,
.premium-button-style2-dshutinver:before {
top: 50%;
left: 50%;
width: 120%;
height: 0%;
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
transform: translateX(-50%) translateY(-50%) rotate(-45deg);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition-property: all;
transition-property: all;
}
.premium-button-style2-dshutinver:before {
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.premium-button-style2-dshutinhor:hover:before,
.premium-button-style2-dshutinver:hover:before{
height: 220%;
}
.premium-button-style3-before i,
.premium-button-style3-after i{
opacity: 0;
-webkit-transform: translateX(-5px);
transform: translateX(-5px);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.premium-button-style3-after i{
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.premium-button-style3-after:hover i {
opacity: 1;
}
.premium-button-style3-before:hover i {
opacity: 1;
}
.premium-button-text-icon-wrapper span,
.premium-button-text-icon-wrapper,
.premium-button-text-icon-wrapper i{
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.premium-button-style4-icon-wrapper {
position: absolute;
z-index: 2;
width: 100%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
opacity: 0;
-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;
}
.premium-button-style4-icon-wrapper.top {
bottom: -100%;
left: 0;
}
.premium-button-style4-icon-wrapper.bottom {
top: -100%;
left: 0;
}
.premium-button-style4-icon-wrapper.left {
top: 0;
left: -100%;
}
.premium-button-style4-icon-wrapper.right {
top: 0;
right: -100%;
}
.premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
top: 0;
opacity: 1;
}
.premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
bottom: 0;
opacity: 1;
}
.premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
left: 0;
opacity: 1;
}
.premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
right: 0;
opacity: 1;
}
.premium-button-style4-bottom:hover .premium-button-text-icon-wrapper{
-webkit-transform: translateY(100%);
transform: translateY(100%);
opacity: 0;
}
.premium-button-style4-top:hover .premium-button-text-icon-wrapper{
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
opacity: 0;
}
.premium-button-style4-left:hover .premium-button-text-icon-wrapper{
-webkit-transform: translateX(100%);
transform: translateX(100%);
opacity: 0;
}
.premium-button-style4-right:hover .premium-button-text-icon-wrapper{
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
opacity: 0;
}
/**************** Premium Contact Form7 **********/
/*************************************************/
.premium_border_animation1 .wpcf7-span::after {
display: block;
height: 2px;
content: '';
top: -2px;
position: relative;
width: 0px;
-webkit-transition: all ease-in-out .3s;
-moz-transition: all ease-in-out .3s;
-ms-transition: all ease-in-out .3s;
-o-transition: all ease-in-out .3s;
transition: all ease-in-out .3s;
}
.premium_border_animation1 .wpcf7-span.is-focused::after {
width: 100%;
}
/**************** Premium Image Button ***********/
/*************************************************/
.premium-image-button {
display: inline-block;
position: relative;
overflow: hidden;
background: #6ec1e4;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out !important;
-moz-transition: all 0.2s ease-in-out !important;
-ms-transition: all 0.2s ease-in-out !important;
-o-transition: all 0.2s ease-in-out !important;
transition: all 0.2s ease-in-out !important;
}
/*Default background for slide styles*/
.premium-image-button:hover,
.premium-image-button-style4-icon-wrapper,
.premium-image-button-style1-top:before,
.premium-image-button-style1-bottom:before,
.premium-image-button-style1-left:before,
.premium-image-button-style1-right:before
{
background-color: #54595f;
}
.premium-image-button.premium-image-button-sm {
padding: 12px 24px;
font-size: 14px;
line-height: 1;
}
.premium-image-button.premium-image-button-md {
padding: 14px 26px;
font-size: 16px;
line-height: 1.2;
}
.premium-image-button.premium-image-button-lg {
padding: 16px 28px;
font-size: 18px;
line-height: 1.3333;
}
.premium-image-button.premium-image-button-block {
font-size: 15px;
line-height: 1;
padding: 12px 24px;
width: 100%;
text-align: center;
}
.premium-image-button-text-icon-wrapper {
position: relative;
z-index: 3;
}
.premium-image-button-text-icon-wrapper span,
.premium-image-button-text-icon-wrapper,
.premium-image-button-text-icon-wrapper i{
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.premium-image-button-style1-bottom:before,
.premium-image-button-style1-top:before,
.premium-image-button-style1-left:before,
.premium-image-button-style1-right:before {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.premium-image-button-style1-bottom:before {
content: "";
position: absolute;
width: 100%;
height: 0;
top: 0;
left: 0;
}
.premium-image-button-style1-top:before {
content: "";
position: absolute;
width: 100%;
height: 0;
bottom: 0;
left: 0;
}
.premium-image-button-style1-right:before {
content: "";
position: absolute;
width: 0;
height: 100%;
bottom: 0;
left: 0;
}
.premium-image-button-style1-left:before {
content: "";
position: absolute;
width: 0;
height: 100%;
top: 0;
right: 0;
}
.premium-image-button-style1-bottom:hover:before {
height: 100%;
}
.premium-image-button-style1-top:hover:before {
height: 100%;
}
.premium-image-button-style1-right:hover:before {
width: 100%;
}
.premium-image-button-style1-left:hover:before {
width: 100%;
}
.premium-image-button-diagonal-effect-top:before,
.premium-image-button-diagonal-effect-bottom:before,
.premium-image-button-diagonal-effect-left:before,
.premium-image-button-diagonal-effect-right:before {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
content: "";
z-index: 1;
background: rgba(255,255,255,0.2);
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-webkit-transition: all 0.8s ease-out;
-moz-transition: all 0.8s ease-out;
-o-transition: all 0.8s ease-out;
-ms-transition: all 0.8s ease-out;
transition: all 0.8s ease-out;
}
.premium-image-button-diagonal-effect-right:hover:before,
.premium-image-button-diagonal-effect-left:before {
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
}
.premium-image-button-diagonal-effect-left:hover:before,
.premium-image-button-diagonal-effect-right:before {
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
}
.premium-image-button-diagonal-effect-top:hover:before,
.premium-image-button-diagonal-effect-bottom:before {
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
}
.premium-image-button-diagonal-effect-bottom:hover:before,
.premium-image-button-diagonal-effect-top:before {
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
}
.premium-image-button-style4-icon-wrapper {
position: absolute;
z-index: 2;
width: 100%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
opacity: 0;
-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;
}
.premium-image-button-style4-icon-wrapper.top {
bottom: -100%;
left: 0;
}
.premium-image-button-style4-icon-wrapper.bottom {
top: -100%;
left: 0;
}
.premium-image-button-style4-icon-wrapper.left {
top: 0;
left: -100%;
}
.premium-image-button-style4-icon-wrapper.right {
top: 0;
right: -100%;
}
.premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
top: 0;
opacity: 1;
}
.premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
bottom: 0;
opacity: 1;
}
.premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
left: 0;
opacity: 1;
}
.premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
right: 0;
opacity: 1;
}
.premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper{
-webkit-transform: translateY(100%);
transform: translateY(100%);
opacity: 0;
}
.premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper{
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
opacity: 0;
}
.premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper{
-webkit-transform: translateX(100%);
transform: translateX(100%);
opacity: 0;
}
.premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper{
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
opacity: 0;
}
.premium-image-button-overlap-effect-horizontal:before,
.premium-image-button-overlap-effect-vertical:before {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
background: rgba(255,255,255,0.2);
animation-name: premium-overlap-effect-done;
animation-duration: 1s;
}
.premium-image-button-overlap-effect-vertical:before {
animation-name: premium-overlap-ver-effect-done;
animation-duration: 1s;
}
.premium-image-button-overlap-effect-horizontal:hover:before {
animation-name: premium-overlap-effect;
animation-duration: 1s;
}
.premium-image-button-overlap-effect-vertical:hover:before {
animation-name: premium-overlap-ver-effect;
animation-duration: 1s;
}
@keyframes premium-overlap-effect{
0% {
opacity: 0;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
50% {
opacity: 1;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
100% {
opacity: 0;
-webkit-transform: rotateY(360deg);
transform: rotateY(360deg);
}
}
@keyframes premium-overlap-effect-done{
0% {
opacity: 0;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
50% {
opacity: 1;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
100% {
opacity: 0;
-webkit-transform: rotateY(360deg);
transform: rotateY(360deg);
}
}
@keyframes premium-overlap-ver-effect{
0% {
opacity: 0;
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
}
50% {
opacity: 1;
-webkit-transform: rotateX(180deg);
transform: rotateX(180deg);
}
100% {
opacity: 0;
-webkit-transform: rotateX(360deg);
transform: rotateX(360deg);
}
}
@keyframes premium-overlap-ver-effect-done{
0% {
opacity: 0;
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
}
50% {
opacity: 1;
-webkit-transform: rotateX(180deg);
transform: rotateX(180deg);
}
100% {
opacity: 0;
-webkit-transform: rotateX(360deg);
transform: rotateX(360deg);
}
}
/**************** Premium Grid *******************/
/*************************************************/
.premium-img-gallery-filter {
display: flex;
align-items: center;
justify-content: center;
}
.premium-grid-50 .premium-gallery-item:nth-child(2n+1) {
clear: left;
}
.premium-grid-33330 .premium-gallery-item:nth-child(3n+1) {
clear: left;
}
.premium-grid-25 .premium-gallery-item:nth-child(4n+1) {
clear: left;
}
.premium-grid-20 .premium-gallery-item:nth-child(5n+1) {
clear: left;
}
.premium-grid-1666 .premium-gallery-item:nth-child(6n+1) {
clear: left;
}
.premium-img-gallery {
clear: both;
overflow: hidden;
}
.premium-gallery-container .premium-gallery-item {
padding: 10px;
float: left;
}
.premium-img-gallery-filter .premium-gallery-cats-container li a.category {
border-radius: 75px;
margin: 15px 5px 20px;
padding: 7px 20px;
}
.pa-gallery-img {
position: relative;
}
.pa-gallery-img-container {
overflow: hidden;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
}
.pa-gallery-img-container img {
-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;
}
.pa-gallery-img-container.zoomout img,
.pa-gallery-img-container.scale img{
transform: scale(1.2);
}
.pa-gallery-img-container.sepia img{
-webkit-filter: sepia(30%);
filter: sepia(30%);
}
.pa-gallery-img-container.bright img{
-webkit-filter: brightness(1);
filter: brightness(1);
}
.pa-gallery-img-container.trans img{
-webkit-transform: translateX(-15px) scale(1.1);
transform: translateX(-15px) scale(1.1);
}
.pa-gallery-img .pa-gallery-magnific-image span,
.pa-gallery-img .pa-gallery-img-link span {
line-height: 1;
display: inline-block;
opacity: 0;
margin: 0 5px;
padding: 15px;
border-radius: 50%;
}
.pa-gallery-img.style2 .pa-gallery-magnific-image span,
.pa-gallery-img.style2 .pa-gallery-img-link span {
margin: 0 5px 20px;
}
.pa-gallery-img:hover .pa-gallery-magnific-image span {
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
}
.pa-gallery-img:hover .pa-gallery-img-link span {
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
-moz-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
-ms-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
-o-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
}
.pa-gallery-img:hover .pa-gallery-magnific-image span,
.pa-gallery-img:hover .pa-gallery-img-link span {
opacity: 1;
}
.premium-img-gallery-filter .premium-gallery-cats-container {
text-align: center;
margin: 0;
}
.premium-img-gallery-filter .premium-gallery-cats-container li {
list-style: none;
display: inline-flex;
}
.pa-gallery-img:hover .pa-gallery-img-container.zoomin img {
transform: scale(1.1);
}
.pa-gallery-img:hover .pa-gallery-img-container.zoomout img {
transform: scale(1);
}
.pa-gallery-img:hover .pa-gallery-img-container.scale img {
transform: scale(1.3) rotate(5deg);
}
.pa-gallery-img:hover .pa-gallery-img-container.gray img {
filter: grayscale(100%);
}
.pa-gallery-img:hover .pa-gallery-img-container.blur img {
filter: blur(3px);
}
.pa-gallery-img:hover .pa-gallery-img-container.sepia img {
-webkit-filter: sepia(0%);
filter: sepia(0%);
}
.pa-gallery-img:hover .pa-gallery-img-container.trans img {
-webkit-transform: translateX(0px) scale(1.1);
-moz-transform: translateX(0px) scale(1.1);
transform: translateX(0px) scale(1.1);
}
.pa-gallery-img:hover .pa-gallery-img-container.bright img {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
.pa-gallery-img .premium-gallery-caption {
padding: 10px;
}
.pa-gallery-img .premium-gallery-caption .premium-gallery-img-name{
margin-bottom: 0;
}
.pa-gallery-img.style1 {
overflow: hidden;
}
.pa-gallery-img.style1 .pa-gallery-icons-wrapper,
.pa-gallery-img.default .pa-gallery-icons-wrapper{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-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;
}
.pa-gallery-img.style1 .pa-gallery-icons-inner-container,
.pa-gallery-img.default .pa-gallery-icons-inner-container{
position: absolute;
top: 33.33%;
width: 100%;
text-align: center;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.pa-gallery-img.style1 .premium-gallery-caption {
position: absolute;
top: auto;
right: 0;
left: 0;
width: 100%;
-webkit-transition: all 500ms ease 0s;
-moz-transition: all 500ms ease 0s;
-ms-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
-webkit-transform: translate3d(0,100%,0);
-moz-transform: translate3d(0,100%,0);
-ms-transform: translate3d(0,100%,0);
-o-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
.pa-gallery-img.default .premium-gallery-caption {
position: absolute;
top: auto;
right: 0;
left: 0;
width: 100%;
bottom: 0;
}
.pa-gallery-img.style1:hover .premium-gallery-caption {
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
bottom: -1px !important;
}
.pa-gallery-img.style2 .pa-gallery-icons-caption-container{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
-moz-transition: -moz-transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s;
z-index: 1;
background-color: rgba(108,191,226,0.68);
display: flex;
text-align: center;
align-items: center;
}
.pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
width: 100%;
}
.pa-gallery-img.style2:hover .pa-gallery-icons-caption-container{
opacity: 1;
-webkit-transform: translate(15px, 15px);
-moz-transform: translate(15px, 15px);
-ms-transform: translate(15px, 15px);
transform: translate(15px, 15px);
}
.premium-clearfix {
clear: both;
}
.premium-gallery-container .pa-gallery-item {
padding: 10px;
} | assets/premium-addonsd315.css | .premium_addons-banner-ib,
.premium_addons-banner-ib img {
display: block;
position: relative;
}
.premium_addons-banner-img-wrap {
display: -ms-flexbox;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
height: 100%;
}
.premium_addons-banner-img-wrap .premium_addons-banner-ib-img {
-webkit-flex-shrink: 0;
flex-shrink: 0;
}
.premium_addons-banner-ib {
z-index: 1;
overflow: hidden;
margin: 0 0 35px;
background: #3085a3;
text-align: center;
cursor: pointer;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.premium_addons-banner-ib-desc .premium-banner-read-more {
z-index: 100;
}
.premium_addons-banner-ib,
.wpb_column>.wpb_wrapper .premium_addons-banner-ib {
margin-bottom: 0px
}
.elementor-widget-premium-addon-banner .premium_addons-banner-ib-title {
background: transparent;
}
.premium_addons-banner-ib *,
.premium_addons-banner-ib .premium_addons-banner-ib-desc {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.premium_addons-banner-ib img {
min-width: 100%;
max-width: 100%;
-webkit-transition: opacity .35s;
transition: opacity .35s;
}
.premium_addons-banner-ib .premium_addons-banner-ib-desc {
padding: 15px;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.premium_addons-banner-ib .premium_addons-banner-ib-desc,
.premium_addons-banner-ib .premium_addons-banner-ib-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.premium_addons-banner-ib .premium_addons-banner-ib-link {
z-index: 1000;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}
.premium_addons-banner-ib a.premium_addons-banner-ib-link {
display: block;
background: 0 0;
}
.premium_banner_animation1 img {
width: -webkit-calc(100% + 50px)!important;
width: calc(100% + 50px)!important;
max-width: -webkit-calc(100% + 50px)!important;
max-width: calc(100% + 50px)!important;
-webkit-transition: opacity .35s,filter 0.35s, -webkit-transform .35s;
transition: opacity .35s, filter 0.35s, -webkit-transform .35s;
transition: opacity .35s, filter 0.35s, transform .35s;
transition: opacity .35s, filter 0.35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(-40px, 0, 0);
transform: translate3d(-40px, 0, 0);
}
.premium_banner_animation2 .premium_addons-banner-ib-title {
padding: 15px;
}
.premium_banner_animation1 .premium_addons-banner-ib-desc {
top: auto;
bottom: 0;
min-height: 25%;
height: auto;
max-height: 100%;
text-align: left;
}
.premium_banner_animation1 .premium_addons-banner-ib-content,
.premium_banner_animation1 .premium_addons-banner-ib-title,
.premium_banner_animation1 .premium-banner-read-more {
-webkit-transform: translate3d(0, 40px, 0);
transform: translate3d(0, 40px, 0);
-webkit-transition-delay: .05s;
transition-delay: .05s;
-webkit-transition-duration: .35s;
transition-duration: .35s;
}
.premium_banner_animation1 .premium_addons-banner-ib-title {
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
}
.premium_banner_animation1 .premium_addons-banner-ib-content,
.premium_banner_animation1 .premium-banner-read-more {
margin-top: 10px;
opacity: 0;
-webkit-transition: opacity .2s, -webkit-transform .35s;
transition: opacity .2s, -webkit-transform .35s;
transition: opacity .2s, transform .35s;
transition: opacity .2s, transform .35s, -webkit-transform .35s;
}
.premium_banner_animation1:hover .premium_addons-banner-ib-content,
.premium_banner_animation1.active .premium_addons-banner-ib-content,
.premium_banner_animation1:hover .premium-banner-read-more,
.premium_banner_animation1.active .premium-banner-read-more {
opacity: 1;
-webkit-transition-delay: .05s;
transition-delay: .05s;
-webkit-transition-duration: .35s;
transition-duration: .35s;
}
.premium_banner_animation1:hover .premium_addons-banner-ib-content,
.premium_banner_animation1.active .premium_addons-banner-ib-content,
.premium_banner_animation1:hover .premium-banner-read-more,
.premium_banner_animation1.active .premium-banner-read-more,
.premium_banner_animation1:hover .premium_addons-banner-ib-title,
.premium_banner_animation1.active .premium_addons-banner-ib-title,
.premium_banner_animation1:hover img,
.premium_banner_animation1.active img {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition-delay: .05s;
transition-delay: .05s;
-webkit-transition-duration: .35s;
transition-duration: .35s;
}
.premium_banner_animation1.zoomout img,
.premium_banner_animation1.scale img {
-webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
transform: translate3d(-40px, 0, 0) scale(1.1);
}
.premium_addons-banner-ib.sepia img {
-webkit-filter: sepia(30%);
filter: sepia(30%);
}
.premium_addons-banner-ib.bright img {
-webkit-filter: brightness(1);
filter: brightness(1);
}
.premium_addons-banner-ib.sepia:hover img {
-webkit-filter: sepia(0%);
filter: sepia(0%);
}
.premium_addons-banner-ib.bright:hover img {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
.premium_banner_animation1.premium-banner-min-height img,
.premium_banner_animation2.premium-banner-min-height img,
.premium_banner_animation4.premium-banner-min-height img,
.premium_banner_animation5.premium-banner-min-height img,
.premium_banner_animation6.premium-banner-min-height img,
.premium_banner_animation13.premium-banner-min-height img {
height: auto;
}
.premium_banner_animation2 img {
width: 100%;
}
.premium_banner_animation2 .premium_addons-banner-ib-desc::before {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transform: translate3d(0, 50%, 0);
transform: translate3d(0, 50%, 0);
}
.premium_banner_animation2 .premium_addons-banner-ib-title {
position: absolute;
top: 50%;
left: 0;
width: 100%;
-webkit-transition: -webkit-transform .35s, color .35s;
-webkit-transition: color .35s, -webkit-transform .35s;
transition: color .35s, -webkit-transform .35s;
transition: transform .35s, color .35s;
transition: transform .35s, color .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, -50%, 0);
transform: translate3d(0, -50%, 0);
}
.premium_banner_animation2 .premium_addons-banner-ib-content,
.premium_banner_animation2 .premium-banner-read-more,
.premium_banner_animation2 .premium_addons-banner-ib-desc::before {
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
}
.premium_banner_animation2 .premium_addons-banner-ib-content,
.premium_banner_animation2 .premium-banner-read-more {
position: absolute;
bottom: 0;
left: 0;
padding: 15px;
width: 100%;
max-height: 50%;
opacity: 0;
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
.premium_banner_animation2:hover .premium_addons-banner-ib-title,
.premium_banner_animation2.active .premium_addons-banner-ib-title {
color: #fff;
-webkit-transform: translate3d(0, -40px, 0);
transform: translate3d(0, -40px, 0);
}
.premium_banner_animation2:hover .premium_addons-banner-ib-content,
.premium_banner_animation2.active .premium_addons-banner-ib-content,
.premium_banner_animation2:hover .premium-banner-read-more,
.premium_banner_animation2.active .premium-banner-read-more,
.premium_banner_animation2:hover .premium_addons-banner-ib-desc::before,
.premium_banner_animation2.active .premium_addons-banner-ib-desc::before {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation2:hover .premium_addons-banner-ib-content,
.premium_banner_animation2.active .premium_addons-banner-ib-content {
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
.premium_banner_animation3 .premium_addons-banner-ib-title {
position: absolute;
bottom: 0;
left: 0;
padding: 15px;
width: 100%;
text-align: left;
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
.premium_banner_animation3 .premium_addons-banner-ib-desc::before,
.premium_banner_animation3 .premium_addons-banner-ib-title {
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
}
.premium_banner_animation3:hover .premium_addons-banner-ib-desc::before,
.premium_banner_animation3.active .premium_addons-banner-ib-desc::before,
.premium_banner_animation3:hover .premium_addons-banner-ib-title,
.premium_banner_animation3.active .premium_addons-banner-ib-title {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation3 .premium_addons-banner-ib-content {
max-height: -webkit-calc(100% - 60px - 1.5em);
max-height: calc(100% - 60px - 1.5em);
overflow: hidden;
}
.premium_banner_animation4 img {
width: -webkit-calc(100% + 40px)!important;
width: calc(100% + 40px)!important;
max-width: -webkit-calc(100% + 40px)!important;
max-width: calc(100% + 40px)!important;
}
.premium_banner_animation4 .premium_addons-banner-ib-desc {
padding: 30px;
}
.premium_banner_animation4 .premium_addons-banner-ib-desc::after,
.premium_banner_animation4 .premium_addons-banner-ib-desc::before {
position: absolute;
content: "";
opacity: 0;
}
.premium_banner_animation4 .premium_addons-banner-ib-desc::before {
top: 50px;
right: 30px;
bottom: 50px;
left: 30px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.premium_banner_animation4 .premium_addons-banner-ib-desc::after {
top: 30px;
right: 50px;
bottom: 30px;
left: 50px;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
-webkit-transform: scale(1, 0);
-ms-transform: scale(1, 0);
transform: scale(1, 0);
-webkit-transform-origin: 100% 0;
-ms-transform-origin: 100% 0;
transform-origin: 100% 0;
}
.premium_banner_animation4 .premium_addons-banner-ib-title {
padding: 50px 30px 0 30px;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
}
.premium_banner_animation4 .premium_addons-banner-ib-content,
.premium_banner_animation4 .premium-banner-read-more {
padding: 10px 30px;
opacity: 0;
overflow: hidden;
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
.premium_banner_animation4 .premium_addons-banner-ib-title,
.premium_banner_animation4 img {
-webkit-transform: translate3d(-30px, 0, 0);
transform: translate3d(-30px, 0, 0);
}
.premium_banner_animation4.zoomout img,
.premium_banner_animation4.scale img {
-webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
transform: translate3d(-30px, 0, 0) scale(1.1);
}
.premium_banner_animation4 .premium_addons-banner-ib-content,
.premium_banner_animation4 .premium-banner-read-more,
.premium_banner_animation4 .premium_addons-banner-ib-desc::after,
.premium_banner_animation4 .premium_addons-banner-ib-desc::before,
.premium_banner_animation4 img {
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
}
/*.premium_banner_animation4:hover img,
.premium_banner_animation4.active img {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}*/
.premium_banner_animation4:hover .premium_addons-banner-ib-desc::after,
.premium_banner_animation4.active .premium_addons-banner-ib-desc::after,
.premium_banner_animation4:hover .premium_addons-banner-ib-desc::before,
.premium_banner_animation4.active .premium_addons-banner-ib-desc::before {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.premium_banner_animation4:hover .premium_addons-banner-ib-content,
.premium_banner_animation4.active .premium_addons-banner-ib-content,
.premium_banner_animation4:hover .premium-banner-read-more,
.premium_banner_animation4.active .premium-banner-read-more,
.premium_banner_animation4:hover .premium_addons-banner-ib-title,
.premium_banner_animation4.active .premium_addons-banner-ib-title {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation4:hover .premium_addons-banner-ib-content,
.premium_banner_animation4:hover .premium_addons-banner-ib-desc::after,
.premium_banner_animation4:hover .premium_addons-banner-ib-title,
.premium_banner_animation4:hover img {
-webkit-transition-delay: .15s;
transition-delay: .15s;
}
.premium_banner_animation5 .premium_addons-banner-ib-desc {
top: auto;
bottom: 0;
padding: 15px;
height: auto;
background: #f2f2f2;
color: #3c4a50;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.premium_banner_animation5 .premium_addons-banner-ib-content {
position: absolute;
top: auto;
bottom: 100%;
left: 0;
width: 100%;
padding: 15px;
opacity: 0;
-webkit-transition: opacity .35s;
transition: opacity .35s;
}
.premium_banner_animation5 .premium_addons-banner-ib-title,
.premium_banner_animation5 .premium-banner-read-more {
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 200%, 0);
transform: translate3d(0, 200%, 0);
text-align: center;
}
.premium_banner_animation5 .premium_addons-banner-ib-title {
margin: 10px 0;
}
.premium_banner_animation5:hover .premium_addons-banner-ib-content,
.premium_banner_animation5.active .premium_addons-banner-ib-content,
.premium_banner_animation5:hover .premium_addons-banner-ib-content *,
.premium_banner_animation5.active .premium_addons-banner-ib-content * {
opacity: 1 !important;
z-index: 99 !important;
-webkit-backface-visibility: hidden !important;
backface-visibility: hidden !important;
}
.premium_banner_animation5:hover .premium_addons-banner-ib-desc,
.premium_banner_animation5.active .premium_addons-banner-ib-desc,
.premium_banner_animation5:hover .premium_addons-banner-ib-title,
.premium_banner_animation5.active .premium_addons-banner-ib-title,
.premium_banner_animation5:hover .premium-banner-read-more,
.premium_banner_animation5.active .premium-banner-read-more {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.premium_banner_animation5:hover .premium_addons-banner-ib-title {
-webkit-transition-delay: .05s;
transition-delay: .05s;
}
.premium_banner_animation5 img,
.premium_banner_animation2 img,
.premium_banner_animation4 img,
.premium_banner_animation6 img{
-webkit-transition: opacity .35s,filter 0.35s, -webkit-transform .35s;
transition: opacity .35s,filter 0.35s ,-webkit-transform .35s;
transition: opacity .35s,filter 0.35s, transform .35s;
transition: opacity .35s,filter 0.35s, transform .35s, -webkit-transform .35s;
}
.premium_banner_animation5.zoomout img,
.premium_banner_animation5.scale img,
.premium_banner_animation2.zoomout img,
.premium_banner_animation2.scale img,
.premium_banner_animation6.zoomout img,
.premium_banner_animation6.scale img {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.premium_banner_animation5.zoomin:hover img,
.premium_banner_animation2.zoomin:hover img,
.premium_banner_animation6.zoomin:hover img{
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.premium_banner_animation5.zoomout:hover img,
.premium_banner_animation2.zoomout:hover img,
.premium_banner_animation6.zoomout:hover img{
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
.premium_banner_animation5.scale:hover img,
.premium_banner_animation2.scale:hover img,
.premium_banner_animation6.scale:hover img {
-webkit-transform: scale(1.2) rotate(5deg);
transform: scale(1.2) rotate(5deg);
}
.premium_banner_animation5.grayscale:hover img,
.premium_banner_animation2.grayscale:hover img,
.premium_banner_animation6.grayscale:hover img{
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.premium_banner_animation5.blur:hover img,
.premium_banner_animation2.blur:hover img,
.premium_banner_animation6.blur:hover img {
-webkit-filter: blur(3px);
filter: blur(3px);
}
.premium_banner_animation6 .premium_addons-banner-ib-desc {
padding: 45px;
}
.premium_banner_animation6 .premium_addons-banner-ib-desc::before {
position: absolute;
content: "";
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
border: 1px solid #fff;
}
.premium_banner_animation6 .premium_addons-banner-ib-title {
margin: 20px 0 10px;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.premium_banner_animation6 .premium_addons-banner-ib-content,
.premium_banner_animation6 .premium-banner-read-more,
.premium_banner_animation6 .premium_addons-banner-ib-desc::before {
opacity: 0;
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.premium_banner_animation6 .premium-banner-read-more {
margin-top: 10px;
}
.premium_banner_animation6:hover .premium_addons-banner-ib-title,
.premium_banner_animation6.active .premium_addons-banner-ib-title {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation6:hover .premium_addons-banner-ib-content,
.premium_banner_animation6.active .premium_addons-banner-ib-content,
.premium_banner_animation6:hover .premium-banner-read-more,
.premium_banner_animation6.active .premium-banner-read-more,
.premium_banner_animation6:hover .premium_addons-banner-ib-desc::before,
.premium_banner_animation6.active .premium_addons-banner-ib-desc::before {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.premium_banner_animation8 img {
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: scale(1.15);
-ms-transform: scale(1.15);
transform: scale(1.15)
}
.premium_banner_animation8:hover img,
.premium_banner_animation8.active img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.premium_banner_animation8 .premium_addons-banner-ib-title {
margin-top: 20%;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
.premium_banner_animation8:hover .premium_addons-banner-ib-title,
.premium_banner_animation8.active .premium_addons-banner-ib-title {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation8 .premium_addons-banner-ib-content {
margin: 1em 0 0;
padding: 35px;
border: 1px solid #fff;
opacity: 0;
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, 20px, 0) scale(1.1);
transform: translate3d(0, 20px, 0) scale(1.1);
}
.premium_banner_animation8:hover .premium_addons-banner-ib-content,
.premium_banner_animation8.active .premium_addons-banner-ib-content {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0) scale(1);
transform: translate3d(0, 0, 0) scale(1);
}
.premium_banner_animation12 .premium_addons-banner-ib-desc::after {
position: absolute;
content: "";
right: 30px;
bottom: 30px;
left: 30px;
height: -webkit-calc(50% - 30px);
height: calc(50% - 30px);
border: 7px solid #fff;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
.premium_banner_animation12:hover .premium_addons-banner-ib-desc::after,
.premium_banner_animation12.active .premium_addons-banner-ib-desc::after {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation12 .premium_addons-banner-ib-desc {
padding: 45px;
text-align: left;
}
.premium_banner_animation12 .premium_addons-banner-ib-content {
position: absolute;
right: 60px;
bottom: 60px;
left: 60px;
opacity: 0;
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(0, -100px, 0);
transform: translate3d(0, -100px, 0);
}
.premium_banner_animation12:hover .premium_addons-banner-ib-content,
.premium_banner_animation12.active .premium_addons-banner-ib-content {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation13 img {
width: -webkit-calc(100% + 20px)!important;
width: calc(100% + 20px)!important;
max-width: -webkit-calc(100% + 20px)!important;
max-width: calc(100% + 20px)!important;
-webkit-transition: opacity .35s,filter 0.35s, -webkit-transform .35s;
transition: opacity .35s,filter 0.35s ,-webkit-transform .35s;
transition: opacity .35s,filter 0.35s, transform .35s;
transition: opacity .35s,filter 0.35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.premium_banner_animation13.zoomout img,
.premium_banner_animation13.scale img {
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
transform: translate3d(-10px, 0, 0) scale(1.1);
}
.premium_banner_animation13.none:hover img,
.premium_banner_animation1.none:hover img,
.premium_banner_animation4.none:hover img {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation13.zoomin:hover img,
.premium_banner_animation1.zoomin:hover img,
.premium_banner_animation4.zoomin:hover img{
-webkit-transform: translate3d(0, 0, 0) scale(1.1);
transform: translate3d(0, 0, 0) scale(1.1);
}
.premium_banner_animation13.zoomout:hover img,
.premium_banner_animation1.zoomout:hover img,
.premium_banner_animation4.zoomout:hover img {
-webkit-transform: translate3d(0, 0, 0) scale(1.0);
transform: translate3d(0, 0, 0) scale(1.0);
}
.premium_banner_animation13.scale:hover img,
.premium_banner_animation1.scale:hover img,
.premium_banner_animation4.scale:hover img {
-webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
}
.premium_banner_animation13.grayscale:hover img,
.premium_banner_animation1.grayscale:hover img,
.premium_banner_animation4.grayscale:hover img{
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.premium_banner_animation13.blur:hover img,
.premium_banner_animation1.blur:hover img,
.premium_banner_animation4.blur:hover img {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-filter: blur(3px);
filter: blur(3px);
}
.premium_banner_animation13 .premium_addons-banner-ib-desc {
text-align: left;
}
.premium_banner_animation13 .premium_addons-banner-ib-title {
position: relative;
overflow: hidden;
padding: 5px 0 10px;
}
.premium_banner_animation13 .premium_addons-banner-ib-title::after {
position: absolute;
content: "";
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: #fff;
-webkit-transition: -webkit-transform .35s;
transition: -webkit-transform .35s;
transition: transform .35s;
transition: transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(-101%, 0, 0);
transform: translate3d(-101%, 0, 0);
}
.premium_banner_animation13:hover .premium_addons-banner-ib-title::after,
.premium_banner_animation13.active .premium_addons-banner-ib-title::after {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_banner_animation13 .premium_addons-banner-ib-content,
.premium_banner_animation13 .premium-banner-read-more {
padding: 15px 0;
opacity: 0;
-webkit-transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, -webkit-transform .35s;
transition: opacity .35s, transform .35s;
transition: opacity .35s, transform .35s, -webkit-transform .35s;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.premium_banner_animation13:hover .premium_addons-banner-ib-content,
.premium_banner_animation13.active .premium_addons-banner-ib-content,
.premium_banner_animation13:hover .premium-banner-read-more,
.premium_banner_animation13.active .premium-banner-read-more {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.premium_addons-banner-ib.premium_banner_animation5 .premium-banner-toggle-size {
left: 50%;
width: auto!important;
height: 100%;
max-width: none;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.premium_addons-banner-ib img {
border: none;
padding: 0;
margin: 0;
}
/**************** Premium CountDown *************/
/************************************************/
.premium-countdown {
display: -ms-flexbox;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
}
/* jQuery Countdown styles 2.0.0. */
.pre_countdown-row {
display: block;
text-align: center;
}
.countdown .pre_countdown-section {
display: inline-block;
max-width: 100%;
margin-bottom: 15px;
}
.countdown .pre_countdown-section:last-child {
margin-right: 0;
}
.countdown span.pre_countdown-amount {
font-size: 70px;
line-height: 1;
}
.countdown .pre_time-mid {
display: block;
}
/************************************
* Digit and unit styles
*************************************/
.side .pre_countdown-section .pre_countdown-period {
vertical-align: bottom;
}
.countdown .pre_countdown-section .pre_countdown-period {
font-size: 17px;
line-height: 3em;
}
/************************************
* Digit and unit side by side
*************************************/
.side .pre_countdown-section .pre_countdown-amount,
.side .pre_countdown-section .pre_countdown-period {
display: inline-block;
}
.side .pre_countdown-section .pre_countdown-amount {
margin-right: 5px;
}
/************************************
* Digit and unit up and down
*************************************/
.down .pre_countdown-section .pre_countdown-amount,
.down .pre_countdown-section .pre_countdown-period {
display: block;
}
/**************** Premium Carousel **************/
/************************************************/
.premium-carousel-wrapper a.carousel-arrow,
.premium-carousel-wrapper a.ver-carousel-arrow {
display: flex;
align-items: center;
justify-content: center;
width: 2em;
height: 2em;
line-height: 0;
text-align: center;
position: absolute;
z-index: 99;
cursor: pointer;
-webkit-transition: opacity .3s ease;
-o-transition: opacity .3s ease;
-moz-transition: opacity .3s ease;
transition: opacity .3s ease;
-webkit-appearance: inherit;
box-shadow: none;
}
.ver-carousel-arrow.carousel-next i{
margin-bottom: -3px;
}
.premium-carousel-wrapper a.slick-arrow:hover {
box-shadow: none !important;
}
.premium-carousel-wrapper a.carousel-arrow {
top: 50%;
}
.premium-carousel-wrapper a.ver-carousel-arrow {
left: 50%;
}
a.carousel-arrow.carousel-next {
right: -20px;
}
a.carousel-arrow.carousel-prev {
left: -20px;
}
a.ver-carousel-arrow.carousel-next {
bottom: -56px;
}
a.ver-carousel-arrow.carousel-prev {
top: -45px;
}
a.circle-bg {
border-radius: 100%;
}
a.circle-border {
border-radius: 100%;
border: solid black;
}
a.square-border {
border: solid black;
}
ul.slick-dots {
list-style: none;
text-align: center;
margin-left: 0;
}
ul.slick-dots li {
font-size: 10px;
display: inline-block;
margin: 5px;
width: 20px;
height: 20px;
cursor: pointer;
}
/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
100% {
top: -5.5px;
right: -3px;
bottom: -3px;
left: -3px;
opacity: 0;
}
}
@keyframes hvr-ripple-out {
100% {
top: -5.5px;
right: -3px;
bottom: -3px;
left: -3px;
opacity: 0;
}
}
.premium-carousel-wrapper.hvr-ripple-out {
padding-bottom: 1px;
}
.premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active {
display: inline-block;
-webkit-transform: perspective(0px) translateZ(0);
transform: perspective(0px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
position: relative;
}
.premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active:before {
content: '';
position: absolute;
border: 1px solid;
border-radius: 50%;
top: 3px;
right: 4px;
bottom: 6.8px;
left: 4.5px;
-webkit-animation-duration: 1s;
animation-duration: 1s;
animation-iteration-count: infinite;
}
.premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active:hover:before, .premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active:focus:before, .premium-carousel-wrapper.hvr-ripple-out ul.slick-dots li.slick-active:active:before {
-webkit-animation-name: hvr-ripple-out;
animation-name: hvr-ripple-out;
}
/**************** Premium Counter ***************/
/************************************************/
.premium-counter-area {
padding: 10px 0;
}
.premium-counter-area .premium-counter-icon span.icon {
width: 1em;
height: 1em;
line-height: 1em;
text-align: center;
display: inline-block;
vertical-align: middle;
}
.premium-counter-area .premium-counter-title {
padding: 0;
margin: 0;
}
.premium-counter-icon .icon i.fa:before {
vertical-align: text-top;
}
/*
* Circle Icon style
*/
.premium-counter-area .premium-counter-icon .circle {
border-radius: 100%;
}
.premium-counter-area.center {
text-align: center;
}
.premium-counter-area .right,
.premium-counter-area .left {
display: table-cell;
vertical-align: middle;
}
.premium-counter-icon.right {
padding-left: 20px;
}
.premium-counter-icon.left {
padding-right: 20px;
}
.premium-init-wrapper.right {
text-align: right;
}
/*
* Custom image and simple styles image fix
*/
span.icon.flex-width {
width: auto !important;
height: auto !important;
}
.premium-counter-area .premium-counter-init {
font-size: 35px;
}
/**************** Premium Image Separator ****************/
/*********************************************************/
/*Image Separator Container Style*/
.premium-image-separator-container{
position: absolute;
width: 100%;
z-index: 2;
top: auto;
}
/*Link on Image Style*/
.premium-image-separator-link{
position: absolute;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-decoration: none;
}
/*Important to override Theme options*/
a.premium-image-separator-link:hover,
a.premium-image-separator-link:visited,
a.premium-image-separator-link:focus,
a.premium-image-separator-link:active{
box-shadow: none !important;
outline: none !important;
border: none !important;
text-decoration: none !important;
}
.premium-image-separator-container .img-responsive {
display: inline-block;
}
/**************** Premium Modal Box ****************/
/***************************************************/
.premium-modal-box-button-selector,
.premium-modal-box-modal-lower-close{
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
}
.premium-btn-md {
padding: 8px 14px;
font-size: 16px;
line-height: 1.2;
}
.premium-btn-lg {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.premium-btn-block {
display: block;
width: 100%;
}
.premium-modal-box-modal-close {
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000;
}
.premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
button.premium-modal-box-modal-close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: transparent;
border: 0
}
.premium-modal-box-modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
display: none;
-webkit-overflow-scrolling: touch;
outline: 0;
padding: 0 !important;
}
.premium-modal-box-modal .premium-modal-box-modal-dialog {
position: absolute;
top: 0;
left: 50%;
-webkit-transform: translate(-50%,-50%) !important;
transform: translate(-50%,-50%) !important;
margin: 0;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.premium-modal-box-modal-content {
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}
.premium-modal-backdrop.premium-in {
filter: alpha(opacity=50);
opacity: .5 !important;
}
.premium-modal-fade.premium-in {
opacity: 1;
}
.premium-modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000
}
.premium-modal-backdrop.premium-modal-fade {
filter: alpha(opacity=0);
opacity: 0;
}
.premium-modal-fade {
opacity: 0;
-webkit-transition: opacity .3s ease-in-out;
-o-transition: opacity .3s ease-in-out;
transition: opacity .3s ease-in-out;
}
.premium-modal-box-modal.premium-in .premium-modal-box-modal-dialog {
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
top: 50%;
}
.premium-modal-box-modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5
}
.premium-modal-box-modal-header .premium-modal-box-modal-close {
margin-top: -2px
}
.premium-modal-box-modal-header .premium-modal-box-modal-title {
margin: 0;
padding: 0;
line-height: 1.42857143;
clear: none;
padding: 0;
margin: 0;
}
.premium-modal-box-modal-body {
position: relative;
padding: 15px
}
.premium-modal-box-modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5
}
.premium-modal-box-modal-footer .btn + .btn {
margin-bottom: 0;
margin-left: 5px
}
.premium-modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
.premium-modal-box-text-selector {
background: none !important;
}
@media (min-width:768px) {
.premium-modal-box-modal-dialog {
width: 600px;
}
.premium-modal-box-modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
}
}
.premium-modal-box-container {
width: 100% !important;
}
/*Open Modal Button Style*/
.premium-modal-box-selector-container .btn-info {
border: none;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*Open Modal Img, Span Style */
.premium-modal-box-selector-container img,
.premium-modal-box-selector-container span{
cursor: pointer;
}
/*Image on Modal Header Style*/
.premium-modal-box-modal-header img {
width: 48px;
padding: 5px 0;
vertical-align: top;
}
/*Icon On Modal Header Style*/
.premium-modal-box-modal-header i {
padding-right: 6px;
}
/*Image On Modal Header Style*/
.premium-modal-box-modal-title img {
vertical-align : middle;
}
/*Close Button Container Style*/
.premium-modal-box-close-button-container {
float: right;
}
.premium-modal-box-modal-close {
position: relative;
z-index: 99;
}
.premium-modal-box-img-selector,
.premium-modal-box-text-selector,
.premium-modal-box-close-button-container,
.premium-modal-box-modal-close,
.premium-modal-box-modal-lower-close{
-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;
}
/**************** Premium Progress Bar ****************/
/******************************************************/
.premium-progressbar-container{
position:relative;
}
.premium-progressbar-progress {
overflow: hidden;
height: 20px;
margin-bottom: 50px;
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.premium-progressbar-progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 20px;
background: #6ec1e4;
text-align: center;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}
.progress-striped .progress-bar,
.progress-bar-striped {
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
}
.pa-progress.active .progress-bar,
.progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.premium-progressbar-progress{
position: relative;
text-align:left;
}
.premium-progressbar-progress-bar {
position: absolute;
overflow: hidden;
line-height: 20px;
}
.clearfix {
clear: both;
}
/*Progress Bar Style*/
.premium-progressbar-progress-bar {
-webkit-transition: width 0s ease-in-out !important;
-moz-transition: width 0s ease-in-out !important;
-ms-transition: width 0s ease-in-out !important;
-o-transition: width 0s ease-in-out !important;
transition: width 0s ease-in-out !important;
}
/*Left Label Style*/
.premium-progressbar-container p:first-of-type{
margin:0;
float:left;
}
/*Right Label Style*/
.premium-progressbar-container p:nth-of-type(2){
margin: 0;
float: right;
}
.premium-progressbar-name{
left:50%;
top :0;
right:0;
transform: translateX(-12.5px);
z-index:1;
}
.premium-progressbar-multiple-label{
position:relative;
float:left;
width:0;
left:50%;
}
.premium-progressbar-center-label{
position:relative;
bottom:-100%;
white-space:nowrap;
}
.premium-progressbar-arrow {
left:50%;
display: inline-block;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 11px solid ;
transform: translateX(-50%);
}
.premium-progressbar-pin {
border-left: 1px solid;
height: 12px;
left:50%;
display: inline-block;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 0 0;
}
to {
background-position: 40px 0;
}
}
/**************** Premium Testimonials ****************/
/******************************************************/
/*Testimonial Container Style*/
.premium-testimonial-Box {
width: 100%;
background: transparent;
overflow: hidden;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*Testimonial Title Style*/
.premium-testimonial-Box h1, .premium-testimonial-Box h2,
.premium-testimonial-Box h3, .premium-testimonial-Box h4,
.premium-testimonial-Box h5, .premium-testimonial-Box h6{
display: inline;
font-weight: 600;
}
/*Testimonial Text Style*/
.premium-testimonial-container {
position: relative;
}
/*Testimonial Img Container Style*/
.premium-testimonial-img-wrapper {
margin-left: auto;
margin-right: auto;
overflow: hidden;
}
/*Testimonial Person Image Style*/
.premium-testimonial-person-image {
width: 100%;
height: 100% !important;
border-style: solid !important;
}
/*Testimonial Content Wrapper Style*/
.premium-testimonial-content-wrapper {
position: relative;
z-index: 2;
width: 100%;
padding: 20px;
text-align: center;
}
/*Testimonial Quotes Container Div Style*/
.premium-testimonial-quotes-wrapper {
z-index: 1;
}
/*Clear Float*/
.premium-testimonial-clear-float {
clear: both;
}
/*Upper Quote Style*/
.premium-testimonial-upper-quote {
position: absolute;
z-index: 1;
}
/*Lower Quote Style*/
.premium-testimonial-lower-quote{
position:absolute;
z-index: 1;
}
/*Author Info Container Div Style*/
.premium-testimonial-author-info {
display: block;
}
/**************** Premium Title ****************/
/***********************************************/
/*Title Container Div Style*/
.premium-title-container {
position: relative;
width: 100%;
clear: both;
overflow: hidden;
}
/*Header Style*/
.premium-title-container .premium-title-header {
margin: 0;
padding: 10px;
}
/*Style 2,3,6,7,8 Header*/
.premium-title-style1,
.premium-title-style2,
.premium-title-style5,
.premium-title-style6,
.premium-title-style7{
display: inline-block;
float: none;
}
.premium-title-style1 {
border-left: 3px solid #6ec1e4;
}
.premium-title-container.style2,
.premium-title-container.style4,
.premium-title-container.style5,
.premium-title-container.style6{
border-bottom: 3px solid #6ec1e4;
}
/*Style 6 Header*/
.premium-title-style6{
position: relative;
}
/*Style 6 Trinagle*/
.premium-title-style6:before {
position: absolute;
left: 50%;
bottom: 0;
margin-left: -2px;
content: '';
border: 3px solid transparent;
}
/*Style 7 Strip Container*/
.premium-title-style7-strip{
display: block;
margin: 0;
float: none;
clear: both;
}
/*Strip Style*/
.premium-title-style7-strip:before{
display: block;
position: relative;
margin-left: auto;
margin-right: auto;
content: '';
float: none;
}
/**************** Premium Video Box ************/
/***********************************************/
/*Image Container Div Style*/
.premium-video-box-image-container {
position: relative;
cursor: pointer;
}
/*Image Style*/
.premium-video-box-image-container img {
width: 100%;
}
/*Play Icon Container Div Style*/
.premium-video-box-play-icon-container {
position: absolute;
z-index: 1;
cursor: pointer;
transform: translate(-50%,-50%);
background: rgba(252,252,252,0.84);
}
.premium-video-box-description-container {
position: absolute;
z-index: 1;
padding: 5px;
text-align: center;
cursor: pointer;
transform: translate(-50%,-50%);
}
.premium-video-box-text {
margin-bottom: 0 !important;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*Play Icon Style*/
.premium-video-box-play-icon{
padding: 15px;
transform: translateX(4%);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*Video Container Div Style*/
.premium-video-box-video-container{
position: absolute;
top: 0;
left: 0;
z-index: 2;
width: 100%;
height: 100%;
opacity:0;
visibility: hidden;
-webkit-transition: opacity 0.8s ease-in-out;
-moz-transition: opacity 0.8s ease-in-out;
-o-transition: opacity 0.8s ease-in-out;
-ms-transition: opacity 0.8s ease-in-out;
transition: opacity 0.8s ease-in-out;
overflow: hidden;
}
/*Video Iframe Style*/
.premium-video-box-video-container iframe{
width: 100%;
height: 100%;
}
/**************** Premium Blog *****************/
/***********************************************/
.premium-blog-post-container {
padding: 15px;
}
.premium-blog-thumb-effect-wrapper {
position: relative;
overflow: hidden;
}
.premium-blog-thumbnail-container {
overflow: hidden;
}
.premium-blog-post-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99;
}
.premium-blog-post-link:hover {
box-shadow: none !important;
border: none !important;
outline: none !important;
}
/*Thumbnail Img*/
.premium-blog-thumbnail-container img,
.premium-blog-thumbnail-container .below-entry-meta{
width: 100%;
height: 100%;
margin: 0 !important;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
.premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
transform: scale(1.2);
}
.premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
-webkit-filter: sepia(30%);
filter: sepia(30%);
}
.premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
-webkit-filter: brightness(1);
filter: brightness(1);
}
.premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
-webkit-transform: translateX(-15px) scale(1.1);
transform: translateX(-15px) scale(1.1);
}
/*Thumbnail Container Hover*/
.premium-blog-thumb-effect-wrapper:hover .premium-blog-zoomin-effect img {
transform: scale(1.2);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-zoomout-effect img {
transform: scale(1.1);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-scale-effect img {
transform: scale(1.3) rotate(5deg);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-gray-effect img {
filter: grayscale(100%);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-blur-effect img {
filter: blur(3px);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-sepia-effect img {
-webkit-filter: sepia(0%);
filter: sepia(0%);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bright-effect img {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-trans-effect img {
-webkit-transform: translateX(0px) scale(1.1);
transform: translateX(0px) scale(1.1);
}
.premium-blog-thumbnail-container:before, .premium-blog-thumbnail-container:after {
position: absolute;
content: '';
z-index: 1;
top: 50%;
left: 50%;
opacity: 0;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
-webkit-transition: all 0.4s linear 0s;
-moz-transition: all 0.4s linear 0s;
-ms-transition: all 0.4s linear 0s;
-o-transition: all 0.4s linear 0s;
transition: all 0.4s linear 0s;
height: 1px;
width: 100%;
}
.premium-blog-thumbnail-container:before {
width: 1px;
height: 100%;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
width: 20px;
opacity: 1;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before{
height: 20px;
opacity: 1;
}
.premium-blog-diagonal-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.premium-blog-diagonal-effect:before {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
content: " ";
z-index: 1;
background: rgba(255,255,255,0.2);
-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-moz-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-o-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-ms-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-moz-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-o-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-ms-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
}
.premium-blog-framed-effect {
position: absolute;
width: calc(100% - 30px);
height: calc(100% - 30px);
top: 15px;
left: 15px;
opacity: 0;
transform: scale(0.3);
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
opacity: 0.99;
transform: scale(1);
}
.premium-blog-bordered-effect {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
padding: 15px;
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-bordered-border-container {
width: 100%;
height: 100%;
border: 2px solid;
-webkit-transform: scale(0,1);
transform: scale(0,1);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
opacity: 0.99;
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-bordered-border-container {
-webkit-transform: scale(1,1);
transform: scale(1,1);
}
.premium-blog-squares-effect,
.premium-blog-squares-square-container{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.premium-blog-squares-effect:before,
.premium-blog-squares-effect:after,
.premium-blog-squares-square-container:before,
.premium-blog-squares-square-container:after{
position: absolute;
content: '';
top: 0;
left: 0;
width: 50%;
height: 50%;
-webkit-transform: translate(-100%,-100%);
transform: translate(-100%,-100%);
opacity: 0.7;
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.premium-blog-squares-square-container:before,
.premium-blog-squares-square-container:after {
opacity: 0.8;
}
.premium-blog-squares-effect:after {
-webkit-transform: translate(200%,200%);
transform: translate(200%,200%);
}
.premium-blog-squares-square-container:before{
-webkit-transform: translate(-100%,200%);
transform: translate(-100%,200%);
}
.premium-blog-squares-square-container:after {
-webkit-transform: translate(200%,-100%);
transform: translate(200%,-100%);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
-webkit-transform: translate(0,0%) scaleY(1.003) scaleX(1.003);
transform: translate(0,0%) scaleY(1.003) scaleX(1.003);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
-webkit-transform: translate(100%,100%) scaleY(1.003) scaleX(1.003);
transform: translate(100%,100%) scaleY(1.003) scaleX(1.003);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before{
-webkit-transform: translate(0,100%);
transform: translate(0,100%);
}
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after{
-webkit-transform: translate(100%,0%);
transform: translate(100%,0%);
}
/*Content Wrapper*/
.premium-blog-content-wrapper {
position: relative;
z-index: 2;
top: -50px;
margin: 0px 30px 20px;
clear: both;
padding: 30px;
background: #ddd;
}
.premium-blog-content-wrapper.empty-thumb {
top: 0;
}
.premium-blog-clear-fix {
clear: both;
}
.premium-blog-content-wrapper .premium-blog-inner-container {
display: flex;
}
/*Post Format Container*/
.premium-blog-format-container {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background: #eee;
width: 55px;
height: 55px;
font-size: 25px;
margin-right: 20px;
text-align: center;
-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;
}
.premium-blog-format-link {
line-height: 0;
}
/*Post Format Icon*/
.premium-blog-format-container i {
-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;
}
.premium-blog-entry-title {
display: inline;
margin-bottom: 0px;
}
.premium-blog-entry-meta {
margin-bottom: 8px;
}
.premium-blog-entry-meta i{
margin-right: 3px;
-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;
}
.premium-blog-post-tags-container a{
-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;
}
/*Post Meta Data Container*/
.premium-blog-meta-data {
margin-right : 8px;
}
/*Post Content Container*/
.premium-blog-post-content {
border-top: 1px solid;
padding-top: 14px;
}
.premium-blog-post-content {
margin-top: 0;
margin-left: 75px;
}
.premium-blog-post-tags-container {
margin-top: 8px;
margin-left: 75px;
}
.premium-blog-entry-title a,
.premium-blog-meta-data a,
.premium-blog-post-tags a,
.premium-blog-post-content .premium-blog-excerpt-link{
-webkit-transition: color 0.3s ease-in-out;
-moz-transition: color 0.3s ease-in-out;
-ms-transition: color 0.3s ease-in-out;
-o-transition: color 0.3s ease-in-out;
transition: color 0.3s ease-in-out;
}
.premium-blog-pagination-container {
padding: 15px;
margin-top: -30px;
text-align: right;
}
.premium-blog-pagination-container ul {
list-style: none;
margin: 0;
padding: 0;
}
.premium-blog-pagination-container li {
display: inline;
}
.premium-blog-pagination-container li a,
.premium-blog-pagination-container li span{
display: inline;
margin-right: 10px;
margin-bottom: 5px;
padding: 3px 7px;
border: 1px solid #E3E3E3;
font-size: 16px;
line-height: 20px;
-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;
}
.premium-blog-pagination-container li .prev,
.premium-blog-pagination-container li .next {
border: none;
border-radius: 0;
font-size: 17.8px;
}
.premium-blog-wrap.col-3 .premium-blog-entry-meta,
.premium-blog-wrap.col-3 .premium-blog-post-content,
.premium-blog-wrap.col-3 .premium-blog-post-tags-container,
.premium-blog-wrap.col-4 .premium-blog-entry-meta,
.premium-blog-wrap.col-4 .premium-blog-post-content,
.premium-blog-wrap.col-4 .premium-blog-post-tags-container {
margin-left: 0;
}
.premium-blog-wrap.col-3 .premium-blog-format-container,
.premium-blog-wrap.col-4 .premium-blog-format-container {
display: none;
}
.premium-blog-wrap.col-3 .premium-blog-entry-title,
.premium-blog-wrap.col-4 .premium-blog-entry-title {
line-height: 1;
}
.premium-blog-wrap.col-3 .premium-blog-entry-title a,
.premium-blog-wrap.col-4 .premium-blog-entry-title a{
font-size: 20px;
}
@media ( max-width: 768px ) {
.premium-blog-content-wrapper {
top: 0;
margin: 0;
}
.premium-blog-thumb-effect-wrapper {
margin-bottom: 15px;
}
.premium-blog-format-container {
display: none;
}
.premium-blog-entry-meta,
.premium-blog-post-content {
margin-left: 0px;
}
.premium-blog-post-tags-container {
margin-left: 0px;
}
}
/**************** Premium Person ******************/
/**************************************************/
.premium-person-container {
position: relative;
overflow: hidden;
}
.premium-person-image-container {
text-align: center;
}
.premium-person-zoomout-effect .premium-person-image-container img,
.premium-person-scale-effect .premium-person-image-container img {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
}
.premium-person-sepia-effect .premium-person-image-container img {
-webkit-filter: sepia(30%);
filter: sepia(30%);
}
.premium-person-bright-effect .premium-person-image-container img {
-webkit-filter: brightness(1);
filter: brightness(1);
}
.premium-person-trans-effect .premium-person-image-container img {
-webkit-transform: translateX(-15px) scale(1.1);
transform: translateX(-15px) scale(1.1);
}
.premium-person-zoomin-effect:hover .premium-person-image-container img{
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
}
.premium-person-zoomout-effect:hover .premium-person-image-container img{
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.premium-person-scale-effect:hover .premium-person-image-container img {
-webkit-transform: scale(1.3) rotate(5deg);
-moz-transform: scale(1.3) rotate(5deg);
-ms-transform: scale(1.3) rotate(5deg);
-o-transform: scale(1.3) rotate(5deg);
transform: scale(1.3) rotate(5deg);
}
.premium-person-grayscale-effect:hover .premium-person-image-container img {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}
.premium-person-blur-effect:hover .premium-person-image-container img {
-webkit-filter: blur(3px);
-moz-filter: blur(3px);
-ms-filter: blur(3px);
-o-filter: blur(3px);
filter: blur(3px);
}
.premium-person-sepia-effect:hover .premium-person-image-container img {
-webkit-filter: sepia(0%);
filter: sepia(0%);
}
.premium-person-bright-effect:hover .premium-person-image-container img {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
.premium-person-trans-effect:hover .premium-person-image-container img {
-webkit-transform: translateX(0px) scale(1.1);
transform: translateX(0px) scale(1.1);
}
.premium-person-container .premium-person-image-container img {
width: 100%;
height: 100%;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.premium-person-info {
position: absolute;
top: auto;
right: 0;
left: 0;
width: 100%;
-webkit-transition: all 500ms ease 0s;
-moz-transition: all 500ms ease 0s;
-ms-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
-webkit-transform: translate3d(0,100%,0);
-moz-transform: translate3d(0,100%,0);
-ms-transform: translate3d(0,100%,0);
-o-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
.premium-person-container:hover .premium-person-info{
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
bottom: -1px !important;
}
.premium-person-info-container {
padding: 30px 15px;
}
.premium-person-name {
margin: 0 0 5px;
font-weight: 700;
}
.premium-person-title {
margin: 0 0 20px;
padding: 0;
}
.premium-person-content {
margin: 0 0 30px;
}
/*Override Theme List Margin*/
.premium-person-social-list {
margin: 0px !important;
}
.premium-person-social-list .premium-person-list-item {
display: inline;
list-style: none;
}
.premium-person-social-list li,
.premium-person-social-list li i{
position: relative;
bottom: 0px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.premium-person-social-list li:hover {
bottom: 5px;
}
.premium-person-social-list li:hover a{
box-shadow: none;
}
.premium-person-social-list li a:focus{
box-shadow: none;
outline: none;
}
.premium-person-social-list li i {
font-size: 18px;
margin: 0 5px;
}
/**************** Premium Dual Header ******************/
/*******************************************************/
.premium-dual-header-container .premium-dual-header-first-header,
.premium-dual-header-container .premium-dual-header-second-header {
position: relative;
padding: 0;
margin: 0;
display: inline-block;
-webkit-transform: translate(0,0);
transform: translate(0,0);
}
.premium-dual-header-first-clip .premium-dual-header-first-span,
.premium-dual-header-second-clip {
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
@media (max-width: 500px) {
.premium-dual-header-container .premium-dual-header-first-header,
.premium-dual-header-container .premium-dual-header-second-header {
display: block;
word-wrap: break-word;
}
.premium-dual-header-first-container,
.premium-dual-header-second-container {
margin: 0;
}
}
@media (min-width: 501px) {
.premium-dual-header-first-container {
margin-right: 5px;
}
}
.premium-dual-header-first-header.gradient .premium-dual-header-first-span,
.premium-dual-header-second-header.gradient {
background-size: 300% 300% !important;
-webkit-animation: Gradient 10s ease-in-out infinite;
-moz-animation: Gradient 10s ease-in-out infinite;
animation: Gradient 10s ease-in-out infinite;
}
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
/**************** Premium Fancy Text *******************/
/*******************************************************/
.premium-suffix-text,
.premium-fancy-text,
.premium-prefix-text {
font-size: 40px;
}
.premium-fancy-text-wrapper .premium-fancy-list-items {
list-style: none;
}
.premium-fancy-text-wrapper .premium-fancy-text-span-align {
vertical-align: top;
}
/**************** Premium Pricing Table ****************/
/*******************************************************/
/*Pricing Table Container Div Style*/
.premium-pricing-table-container {
text-align: center;
overflow: hidden;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.premium-badge-left,
.premium-badge-right {
position:absolute;
top: 0;
}
.premium-badge-right {
right: 0;
}
.premium-badge-left {
left: 0;
}
.premium-badge-left .corner {
width: 0;
height: 0;
border-top: 150px solid;
border-bottom: 150px solid transparent;
border-right: 150px solid transparent;
}
.premium-badge-right .corner {
width: 0;
height: 0;
border-bottom: 150px solid transparent;
border-right: 150px solid;
border-left: 150px solid transparent;
}
.premium-badge-left span,
.premium-badge-right span{
position:absolute;
top: 35px;
width: 100px;
text-align: center;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
display:block;
text-transform: uppercase;
}
.premium-badge-right span {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
right: 0;
}
.premium-pricing-price-currency {
position: relative;
}
.premium-pricing-icon-container {
line-height: 0;
}
.premium-pricing-button-container {
display: block;
}
.premium-pricing-list {
list-style-type: none;
margin: 0;
}
.premium-pricing-slashed-price-value {
display: inline-block;
font-size: 20px;
font-weight: 400;
margin-right: 5px;
}
.premium-pricing-price-value {
font-size: 70px;
}
.premium-pricing-description-container li{
list-style-position: inside;
text-indent: -40px;
}
@-moz-document url-prefix() {
.premium-pricing-description-container li{
text-indent: 0px;
}
}
.premium-pricing-price-button {
display: block;
padding: 6px 12px;
line-height: 1.42857143;
text-align: center;
color: #fff;
background: #6ec1e4;
margin-bottom: 0;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/**************** Premium Google Maps ******************/
/*******************************************************/
.premium-maps-info-container {
margin-top: 10px;
margin-bottom: 10px;
}
.premium-maps-info-title,
.premium-maps-info-desc {
margin: 0;
padding: 0;
}
.premium-maps-container .gm-style-iw {
text-align: center;
}
/**************** Premium Button ***********************/
/*******************************************************/
.premium-button {
display: inline-block;
position: relative;
overflow: hidden;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out !important;
-moz-transition: all 0.2s ease-in-out !important;
-ms-transition: all 0.2s ease-in-out !important;
-o-transition: all 0.2s ease-in-out !important;
transition: all 0.2s ease-in-out !important;
}
.premium-button-sm {
padding: 12px 24px;
font-size: 14px;
line-height: 1;
}
.premium-button-md {
padding: 14px 26px;
font-size: 16px;
line-height: 1.2;
}
.premium-button-lg {
padding: 16px 28px;
font-size: 18px;
line-height: 1.3333;
}
.premium-button-block {
font-size: 15px;
line-height: 1;
padding: 12px 24px;
width: 100%;
text-align: center;
}
.premium-button-text {
display: inline-block;
width: 100%;
}
.premium-button-style1-bottom,
.premium-button-style1-top,
.premium-button-style1-right,
.premium-button-style1-left,
.premium-button-style2-shutouthor,
.premium-button-style2-shutoutver,
.premium-button-style2-shutinhor,
.premium-button-style2-shutinver,
.premium-button-style2-scshutouthor,
.premium-button-style2-scshutoutver,
.premium-button-style2-dshutinhor,
.premium-button-style2-dshutinver,
.premium-button-style5-radialin,
.premium-button-style5-radialout,
.premium-button-style5-rectin,
.premium-button-style5-rectout {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
position: relative;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
}
.premium-button-style1-bottom:before,
.premium-button-style1-top:before,
.premium-button-style1-right:before,
.premium-button-style1-left:before,
.premium-button-style2-shutinhor:before,
.premium-button-style2-shutinver:before,
.premium-button-style2-shutouthor:before,
.premium-button-style2-shutoutver:before,
.premium-button-style2-scshutouthor:before,
.premium-button-style2-scshutoutver:before,
.premium-button-style2-dshutinhor:before,
.premium-button-style2-dshutinver:before,
.premium-button-style5-radialin:before,
.premium-button-style5-radialout:before,
.premium-button-style5-rectin:before,
.premium-button-style5-rectout:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.premium-button-style5-radialin:before,
.premium-button-style5-radialout:before {
-webkit-transform-origin: 50%;
transform-origin: 50%;
border-radius: 100%;
-webkit-transform: scale(0);
transform: scale(0);
}
.premium-button-style5-radialin:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.premium-button-style5-rectin:before,
.premium-button-style5-rectout:before {
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transform: scale(1);
transform: scale(1);
}
.premium-button-style5-rectout:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.premium-button-style5-rectout:hover:before {
-webkit-transform: scale(1);
transform: scale(1);
}
.premium-button-style5-rectin:hover:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.premium-button-style5-radialout:hover:before {
-webkit-transform: scale(2);
transform: scale(2);
}
.premium-button-style5-radialin:hover:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.premium-button-style1-top:before {
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
}
.premium-button-style1-right:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
}
.premium-button-style1-left:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.premium-button-style2-shutouthor:before,
.premium-button-style2-scshutoutver:before{
-webkit-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
.premium-button-style2-shutoutver:before,
.premium-button-style2-scshutouthor:before{
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.premium-button-style2-shutinhor:before{
-webkit-transform: scaleX(1);
transform: scaleX(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
}
.premium-button-style2-shutinver:before{
-webkit-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
}
.premium-button-style1-bottom:hover:before,
.premium-button-style1-top:hover:before{
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
.premium-button-style1-left:hover:before,
.premium-button-style1-right:hover:before,
.premium-button-style2-shutouthor:hover:before,
.premium-button-style2-shutoutver:hover:before{
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.premium-button-style2-shutinhor:hover:before{
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
.premium-button-style2-shutinver:hover:before{
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
.premium-button-style2-scshutouthor:hover:before{
-webkit-transform: scaleX(0.9);
transform: scaleX(0.9);
}
.premium-button-style2-scshutoutver:hover:before{
-webkit-transform: scaleY(0.8);
transform: scaleY(0.8);
}
/*Diagonal*/
.premium-button-style2-dshutinhor:before,
.premium-button-style2-dshutinver:before {
top: 50%;
left: 50%;
width: 120%;
height: 0%;
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
transform: translateX(-50%) translateY(-50%) rotate(-45deg);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition-property: all;
transition-property: all;
}
.premium-button-style2-dshutinver:before {
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.premium-button-style2-dshutinhor:hover:before,
.premium-button-style2-dshutinver:hover:before{
height: 220%;
}
.premium-button-style3-before i,
.premium-button-style3-after i{
opacity: 0;
-webkit-transform: translateX(-5px);
transform: translateX(-5px);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.premium-button-style3-after i{
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
.premium-button-style3-after:hover i {
opacity: 1;
}
.premium-button-style3-before:hover i {
opacity: 1;
}
.premium-button-text-icon-wrapper span,
.premium-button-text-icon-wrapper,
.premium-button-text-icon-wrapper i{
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.premium-button-style4-icon-wrapper {
position: absolute;
z-index: 2;
width: 100%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
opacity: 0;
-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;
}
.premium-button-style4-icon-wrapper.top {
bottom: -100%;
left: 0;
}
.premium-button-style4-icon-wrapper.bottom {
top: -100%;
left: 0;
}
.premium-button-style4-icon-wrapper.left {
top: 0;
left: -100%;
}
.premium-button-style4-icon-wrapper.right {
top: 0;
right: -100%;
}
.premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
top: 0;
opacity: 1;
}
.premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
bottom: 0;
opacity: 1;
}
.premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
left: 0;
opacity: 1;
}
.premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
right: 0;
opacity: 1;
}
.premium-button-style4-bottom:hover .premium-button-text-icon-wrapper{
-webkit-transform: translateY(100%);
transform: translateY(100%);
opacity: 0;
}
.premium-button-style4-top:hover .premium-button-text-icon-wrapper{
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
opacity: 0;
}
.premium-button-style4-left:hover .premium-button-text-icon-wrapper{
-webkit-transform: translateX(100%);
transform: translateX(100%);
opacity: 0;
}
.premium-button-style4-right:hover .premium-button-text-icon-wrapper{
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
opacity: 0;
}
/**************** Premium Contact Form7 **********/
/*************************************************/
.premium_border_animation1 .wpcf7-span::after {
display: block;
height: 2px;
content: '';
top: -2px;
position: relative;
width: 0px;
-webkit-transition: all ease-in-out .3s;
-moz-transition: all ease-in-out .3s;
-ms-transition: all ease-in-out .3s;
-o-transition: all ease-in-out .3s;
transition: all ease-in-out .3s;
}
.premium_border_animation1 .wpcf7-span.is-focused::after {
width: 100%;
}
/**************** Premium Image Button ***********/
/*************************************************/
.premium-image-button {
display: inline-block;
position: relative;
overflow: hidden;
background: #6ec1e4;
cursor: pointer;
-webkit-transition: all 0.2s ease-in-out !important;
-moz-transition: all 0.2s ease-in-out !important;
-ms-transition: all 0.2s ease-in-out !important;
-o-transition: all 0.2s ease-in-out !important;
transition: all 0.2s ease-in-out !important;
}
/*Default background for slide styles*/
.premium-image-button:hover,
.premium-image-button-style4-icon-wrapper,
.premium-image-button-style1-top:before,
.premium-image-button-style1-bottom:before,
.premium-image-button-style1-left:before,
.premium-image-button-style1-right:before
{
background-color: #54595f;
}
.premium-image-button.premium-image-button-sm {
padding: 12px 24px;
font-size: 14px;
line-height: 1;
}
.premium-image-button.premium-image-button-md {
padding: 14px 26px;
font-size: 16px;
line-height: 1.2;
}
.premium-image-button.premium-image-button-lg {
padding: 16px 28px;
font-size: 18px;
line-height: 1.3333;
}
.premium-image-button.premium-image-button-block {
font-size: 15px;
line-height: 1;
padding: 12px 24px;
width: 100%;
text-align: center;
}
.premium-image-button-text-icon-wrapper {
position: relative;
z-index: 3;
}
.premium-image-button-text-icon-wrapper span,
.premium-image-button-text-icon-wrapper,
.premium-image-button-text-icon-wrapper i{
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.premium-image-button-style1-bottom:before,
.premium-image-button-style1-top:before,
.premium-image-button-style1-left:before,
.premium-image-button-style1-right:before {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.premium-image-button-style1-bottom:before {
content: "";
position: absolute;
width: 100%;
height: 0;
top: 0;
left: 0;
}
.premium-image-button-style1-top:before {
content: "";
position: absolute;
width: 100%;
height: 0;
bottom: 0;
left: 0;
}
.premium-image-button-style1-right:before {
content: "";
position: absolute;
width: 0;
height: 100%;
bottom: 0;
left: 0;
}
.premium-image-button-style1-left:before {
content: "";
position: absolute;
width: 0;
height: 100%;
top: 0;
right: 0;
}
.premium-image-button-style1-bottom:hover:before {
height: 100%;
}
.premium-image-button-style1-top:hover:before {
height: 100%;
}
.premium-image-button-style1-right:hover:before {
width: 100%;
}
.premium-image-button-style1-left:hover:before {
width: 100%;
}
.premium-image-button-diagonal-effect-top:before,
.premium-image-button-diagonal-effect-bottom:before,
.premium-image-button-diagonal-effect-left:before,
.premium-image-button-diagonal-effect-right:before {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
content: "";
z-index: 1;
background: rgba(255,255,255,0.2);
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-webkit-transition: all 0.8s ease-out;
-moz-transition: all 0.8s ease-out;
-o-transition: all 0.8s ease-out;
-ms-transition: all 0.8s ease-out;
transition: all 0.8s ease-out;
}
.premium-image-button-diagonal-effect-right:hover:before,
.premium-image-button-diagonal-effect-left:before {
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
}
.premium-image-button-diagonal-effect-left:hover:before,
.premium-image-button-diagonal-effect-right:before {
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
}
.premium-image-button-diagonal-effect-top:hover:before,
.premium-image-button-diagonal-effect-bottom:before {
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
}
.premium-image-button-diagonal-effect-bottom:hover:before,
.premium-image-button-diagonal-effect-top:before {
-webkit-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-moz-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-o-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
-ms-transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
transform: scale3d(14,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
}
.premium-image-button-style4-icon-wrapper {
position: absolute;
z-index: 2;
width: 100%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
opacity: 0;
-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;
}
.premium-image-button-style4-icon-wrapper.top {
bottom: -100%;
left: 0;
}
.premium-image-button-style4-icon-wrapper.bottom {
top: -100%;
left: 0;
}
.premium-image-button-style4-icon-wrapper.left {
top: 0;
left: -100%;
}
.premium-image-button-style4-icon-wrapper.right {
top: 0;
right: -100%;
}
.premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
top: 0;
opacity: 1;
}
.premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
bottom: 0;
opacity: 1;
}
.premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
left: 0;
opacity: 1;
}
.premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
right: 0;
opacity: 1;
}
.premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper{
-webkit-transform: translateY(100%);
transform: translateY(100%);
opacity: 0;
}
.premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper{
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
opacity: 0;
}
.premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper{
-webkit-transform: translateX(100%);
transform: translateX(100%);
opacity: 0;
}
.premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper{
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
opacity: 0;
}
.premium-image-button-overlap-effect-horizontal:before,
.premium-image-button-overlap-effect-vertical:before {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
background: rgba(255,255,255,0.2);
animation-name: premium-overlap-effect-done;
animation-duration: 1s;
}
.premium-image-button-overlap-effect-vertical:before {
animation-name: premium-overlap-ver-effect-done;
animation-duration: 1s;
}
.premium-image-button-overlap-effect-horizontal:hover:before {
animation-name: premium-overlap-effect;
animation-duration: 1s;
}
.premium-image-button-overlap-effect-vertical:hover:before {
animation-name: premium-overlap-ver-effect;
animation-duration: 1s;
}
@keyframes premium-overlap-effect{
0% {
opacity: 0;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
50% {
opacity: 1;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
100% {
opacity: 0;
-webkit-transform: rotateY(360deg);
transform: rotateY(360deg);
}
}
@keyframes premium-overlap-effect-done{
0% {
opacity: 0;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
50% {
opacity: 1;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
100% {
opacity: 0;
-webkit-transform: rotateY(360deg);
transform: rotateY(360deg);
}
}
@keyframes premium-overlap-ver-effect{
0% {
opacity: 0;
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
}
50% {
opacity: 1;
-webkit-transform: rotateX(180deg);
transform: rotateX(180deg);
}
100% {
opacity: 0;
-webkit-transform: rotateX(360deg);
transform: rotateX(360deg);
}
}
@keyframes premium-overlap-ver-effect-done{
0% {
opacity: 0;
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
}
50% {
opacity: 1;
-webkit-transform: rotateX(180deg);
transform: rotateX(180deg);
}
100% {
opacity: 0;
-webkit-transform: rotateX(360deg);
transform: rotateX(360deg);
}
}
/**************** Premium Grid *******************/
/*************************************************/
.premium-img-gallery-filter {
display: flex;
align-items: center;
justify-content: center;
}
.premium-grid-50 .premium-gallery-item:nth-child(2n+1) {
clear: left;
}
.premium-grid-33330 .premium-gallery-item:nth-child(3n+1) {
clear: left;
}
.premium-grid-25 .premium-gallery-item:nth-child(4n+1) {
clear: left;
}
.premium-grid-20 .premium-gallery-item:nth-child(5n+1) {
clear: left;
}
.premium-grid-1666 .premium-gallery-item:nth-child(6n+1) {
clear: left;
}
.premium-img-gallery {
clear: both;
overflow: hidden;
}
.premium-gallery-container .premium-gallery-item {
padding: 10px;
float: left;
}
.premium-img-gallery-filter .premium-gallery-cats-container li a.category {
border-radius: 75px;
margin: 15px 5px 20px;
padding: 7px 20px;
}
.pa-gallery-img {
position: relative;
}
.pa-gallery-img-container {
overflow: hidden;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
}
.pa-gallery-img-container img {
-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;
}
.pa-gallery-img-container.zoomout img,
.pa-gallery-img-container.scale img{
transform: scale(1.2);
}
.pa-gallery-img-container.sepia img{
-webkit-filter: sepia(30%);
filter: sepia(30%);
}
.pa-gallery-img-container.bright img{
-webkit-filter: brightness(1);
filter: brightness(1);
}
.pa-gallery-img-container.trans img{
-webkit-transform: translateX(-15px) scale(1.1);
transform: translateX(-15px) scale(1.1);
}
.pa-gallery-img .pa-gallery-magnific-image span,
.pa-gallery-img .pa-gallery-img-link span {
line-height: 1;
display: inline-block;
opacity: 0;
margin: 0 5px;
padding: 15px;
border-radius: 50%;
}
.pa-gallery-img.style2 .pa-gallery-magnific-image span,
.pa-gallery-img.style2 .pa-gallery-img-link span {
margin: 0 5px 20px;
}
.pa-gallery-img:hover .pa-gallery-magnific-image span {
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
}
.pa-gallery-img:hover .pa-gallery-img-link span {
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
-moz-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
-ms-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
-o-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
}
.pa-gallery-img:hover .pa-gallery-magnific-image span,
.pa-gallery-img:hover .pa-gallery-img-link span {
opacity: 1;
}
.premium-img-gallery-filter .premium-gallery-cats-container {
text-align: center;
margin: 0;
}
.premium-img-gallery-filter .premium-gallery-cats-container li {
list-style: none;
display: inline-flex;
}
.pa-gallery-img:hover .pa-gallery-img-container.zoomin img {
transform: scale(1.1);
}
.pa-gallery-img:hover .pa-gallery-img-container.zoomout img {
transform: scale(1);
}
.pa-gallery-img:hover .pa-gallery-img-container.scale img {
transform: scale(1.3) rotate(5deg);
}
.pa-gallery-img:hover .pa-gallery-img-container.gray img {
filter: grayscale(100%);
}
.pa-gallery-img:hover .pa-gallery-img-container.blur img {
filter: blur(3px);
}
.pa-gallery-img:hover .pa-gallery-img-container.sepia img {
-webkit-filter: sepia(0%);
filter: sepia(0%);
}
.pa-gallery-img:hover .pa-gallery-img-container.trans img {
-webkit-transform: translateX(0px) scale(1.1);
-moz-transform: translateX(0px) scale(1.1);
transform: translateX(0px) scale(1.1);
}
.pa-gallery-img:hover .pa-gallery-img-container.bright img {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
}
.pa-gallery-img .premium-gallery-caption {
padding: 10px;
}
.pa-gallery-img .premium-gallery-caption .premium-gallery-img-name{
margin-bottom: 0;
}
.pa-gallery-img.style1 {
overflow: hidden;
}
.pa-gallery-img.style1 .pa-gallery-icons-wrapper,
.pa-gallery-img.default .pa-gallery-icons-wrapper{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-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;
}
.pa-gallery-img.style1 .pa-gallery-icons-inner-container,
.pa-gallery-img.default .pa-gallery-icons-inner-container{
position: absolute;
top: 33.33%;
width: 100%;
text-align: center;
-webkit-transform: translateY(-50%);
transform: translateY(-50%)
}
.pa-gallery-img.style1 .premium-gallery-caption {
position: absolute;
top: auto;
right: 0;
left: 0;
width: 100%;
-webkit-transition: all 500ms ease 0s;
-moz-transition: all 500ms ease 0s;
-ms-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
-webkit-transform: translate3d(0,100%,0);
-moz-transform: translate3d(0,100%,0);
-ms-transform: translate3d(0,100%,0);
-o-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
.pa-gallery-img.default .premium-gallery-caption {
position: absolute;
top: auto;
right: 0;
left: 0;
width: 100%;
bottom: 0;
}
.pa-gallery-img.style1:hover .premium-gallery-caption {
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
bottom: -1px !important;
}
.pa-gallery-img.style2 .pa-gallery-icons-caption-container{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
-moz-transition: -moz-transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s;
z-index: 1;
background-color: rgba(108,191,226,0.68);
display: flex;
text-align: center;
align-items: center;
}
.pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
width: 100%;
}
.pa-gallery-img.style2:hover .pa-gallery-icons-caption-container{
opacity: 1;
-webkit-transform: translate(15px, 15px);
-moz-transform: translate(15px, 15px);
-ms-transform: translate(15px, 15px);
transform: translate(15px, 15px);
}
.premium-clearfix {
clear: both;
}
.premium-gallery-container .pa-gallery-item {
padding: 10px;
} | 0.390127 | 0.095349 |
body {
padding: 0;
margin: 0;
background: #ebc4db;
}
.header {
background-image: url("../images/header_bg.png");
background-size: cover;
background-position: center;
position: relative;
padding-right: 0%;
padding-left: 0%;
}
.about {
background-image: url("../images/background.jpg");
background-size: cover;
background-position: center;
position: relative;
padding-right: 0%;
padding-left: 0%;
overflow: hidden;
height: 100% !important;
}
.wholecard h1 {
font-size: 2rem;
color: #0d048d;
text-align: center;
font-family: 'Times New Roman', serif;
}
.wholecard p {
font-size: 2rem;
color: #8d044f;
text-align: right;
margin-top: -1rem;
margin-right: 2rem;
font-family: 'Times New Roman', serif;
}
.row{
text-align: left;
color: #022b3a;
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.leftcolumn
{ text-align: left;
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
width: 100%;
}
.about .card{
text-align: left;
color: #0a3dad;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
margin-top: 80px;
margin-left: 100px;
margin-right: 100px;
margin-bottom: 8px;
background-color: #dd4c77;
padding: 30px;
border-width: 2px;
border-color: #f4f4f4;}
.content h2{
word-wrap: break-word;
text-align: center;
letter-spacing: 1px;
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
color: #0d048d;
letter-spacing: 1px;
font-family: 'Times New Roman', serif;
font-size: 30px;
}
.content p,dd{
word-wrap: break-word;
text-align: left;
letter-spacing: 1px;
color: white;
margin: 0;
padding: 0;
border: 0;
font-size: 20px !important;
font: inherit;
vertical-align: baseline;
font-family: 'Times New Roman', serif;
box-sizing: border-box;
}
.description {
left: 25%;
position: absolute;
top: 45%;
transform: translate(-50%, -55%);
text-align: left;
}
.description h1 {
font-size: 6rem;
color: #cf0542;
}
.description p {
left: 100%;
color: rgb(141, 49, 218);
font-size: 2rem;
margin-top: 1rem;
margin-bottom: 2rem;
line-height: 1.5;
}
.description button {
border:1px solid #b446af;
background:#e79eb0;
border-radius: 0;
color:#fff;
}
.description button:hover {
border:1px solid #fff;
background:rgb(88, 223, 233);
color:#000;
}
.navbar {
background: #dd4c77;
}
.nav-link,
.navbar-brand {
color: #fff;
cursor: pointer;
}
.nav-link {
margin-right: 1em !important;
}
.nav-link:hover {
color: #000;
}
.navbar-collapse {
justify-content: flex-end;
}
.card{
position: relative;
display: flex;
-webkit-animation-direction: normal;
-webkit-box-orient: vertical;
border: 1px solid;
border-radius: .25rem;
background-clip: border-box;
}
.main_content H1{
font-style: italic;
font-size: 2.5rem;
color: rgb(107, 60, 235);
}
.main_content p{
font-size: 1.25rem;
}
.features .form-control,
.features input {
border-radius: 0;
}
.features .btn {
background-color: #589b37;
border: 1px solid #589b37;
color: #fff;
margin-top: 20px;
}
.features .btn:hover {
background-color: #333;
border: 1px solid #333;
}
.page-footer{
padding: 20px;
background: #e6819f;
} | Demo/static/css/main.css | body {
padding: 0;
margin: 0;
background: #ebc4db;
}
.header {
background-image: url("../images/header_bg.png");
background-size: cover;
background-position: center;
position: relative;
padding-right: 0%;
padding-left: 0%;
}
.about {
background-image: url("../images/background.jpg");
background-size: cover;
background-position: center;
position: relative;
padding-right: 0%;
padding-left: 0%;
overflow: hidden;
height: 100% !important;
}
.wholecard h1 {
font-size: 2rem;
color: #0d048d;
text-align: center;
font-family: 'Times New Roman', serif;
}
.wholecard p {
font-size: 2rem;
color: #8d044f;
text-align: right;
margin-top: -1rem;
margin-right: 2rem;
font-family: 'Times New Roman', serif;
}
.row{
text-align: left;
color: #022b3a;
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.leftcolumn
{ text-align: left;
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
width: 100%;
}
.about .card{
text-align: left;
color: #0a3dad;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
margin-top: 80px;
margin-left: 100px;
margin-right: 100px;
margin-bottom: 8px;
background-color: #dd4c77;
padding: 30px;
border-width: 2px;
border-color: #f4f4f4;}
.content h2{
word-wrap: break-word;
text-align: center;
letter-spacing: 1px;
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
color: #0d048d;
letter-spacing: 1px;
font-family: 'Times New Roman', serif;
font-size: 30px;
}
.content p,dd{
word-wrap: break-word;
text-align: left;
letter-spacing: 1px;
color: white;
margin: 0;
padding: 0;
border: 0;
font-size: 20px !important;
font: inherit;
vertical-align: baseline;
font-family: 'Times New Roman', serif;
box-sizing: border-box;
}
.description {
left: 25%;
position: absolute;
top: 45%;
transform: translate(-50%, -55%);
text-align: left;
}
.description h1 {
font-size: 6rem;
color: #cf0542;
}
.description p {
left: 100%;
color: rgb(141, 49, 218);
font-size: 2rem;
margin-top: 1rem;
margin-bottom: 2rem;
line-height: 1.5;
}
.description button {
border:1px solid #b446af;
background:#e79eb0;
border-radius: 0;
color:#fff;
}
.description button:hover {
border:1px solid #fff;
background:rgb(88, 223, 233);
color:#000;
}
.navbar {
background: #dd4c77;
}
.nav-link,
.navbar-brand {
color: #fff;
cursor: pointer;
}
.nav-link {
margin-right: 1em !important;
}
.nav-link:hover {
color: #000;
}
.navbar-collapse {
justify-content: flex-end;
}
.card{
position: relative;
display: flex;
-webkit-animation-direction: normal;
-webkit-box-orient: vertical;
border: 1px solid;
border-radius: .25rem;
background-clip: border-box;
}
.main_content H1{
font-style: italic;
font-size: 2.5rem;
color: rgb(107, 60, 235);
}
.main_content p{
font-size: 1.25rem;
}
.features .form-control,
.features input {
border-radius: 0;
}
.features .btn {
background-color: #589b37;
border: 1px solid #589b37;
color: #fff;
margin-top: 20px;
}
.features .btn:hover {
background-color: #333;
border: 1px solid #333;
}
.page-footer{
padding: 20px;
background: #e6819f;
} | 0.530236 | 0.114616 |
.owl-theme .owl-dots,
.owl-theme .owl-nav {
text-align: center;
-webkit-tap-highlight-color: transparent
}
.owl-theme .owl-nav {
}
.owl-theme .owl-nav [class*=owl-] {
color: #4c4949;
font-size: 40px;
padding: 0px 17px;
background: rgba(255, 255, 255, 0.46);
display: inline-block;
cursor: pointer;
/* border-radius: 3px; */
font-weight: bold;
height: 50px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
background: #fff;
color: #000;
text-decoration: none
}
.owl-theme .owl-nav .disabled {
opacity:0.4;
cursor: default
}
.owl-theme .owl-nav.disabled+.owl-dots {
margin-top: 10px
}
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1;
}
#banner-slider .owl-nav{display:none;}
#banner-slider .owl-dots{position: absolute;bottom: 15px;left: 50%;}
.owl-theme .owl-dots .owl-dot span {
width: 12px;
height: 12px;
margin: 5px 7px;
background: rgba(255, 255, 255, 0.50);
display: block;
-webkit-backface-visibility: visible;
transition: opacity .2s ease;
border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {background: transparent;border: 2px solid #fff;}
.owl-prev{float:left;}
.owl-next{float:right}
.owl-nav {
float: left;
width: 100%;
position: absolute;
top: 45%;
font-size: 22px;
}
#demos .owl-nav { float: left; width: 100%; position: absolute; bottom: 45.6%; font-size: 22px; }
#owl-demo2 .owl-nav { float: left; width: 100%; position: absolute; bottom: 38.4%; font-size: 22px; }
@media (max-width:568px) {
}
@media (max-width:480px) {
#demos .owl-nav { float: left; width: 100%; position: absolute; bottom:30.6%; font-size: 22px; }
}
@media (max-width:414px) {
}
@media (max-width:375px) {
#demos .owl-nav { float: left; width: 100%; position: absolute; bottom: 25.6%; font-size: 22px; }
}
@media (max-width:320px) {
}
#home-page-slider .owl-nav {bottom: 170px;}
#home-page-slider .owl-dots {text-align: right; position: absolute; right: 10px; bottom: 5px;}
#owl-demo1 .owl-dots {text-align: right; position: absolute; right: 10px; bottom: 5px;}
@media (max-width:768px) {
#home-page-slider .owl-dots {text-align: right; position: absolute; right: 10px; bottom: 15px;}
.owl-nav {
width: auto;
position: absolute;
bottom:0px !important;
font-size: 22px;
left:0;
display:none;
}
.owl-theme .owl-nav [class*=owl-] {
color: #4c4949;
font-size: 26px;
padding: 0px 7px;
background: rgba(255, 255, 255, 0.46);
display: inline-block;
cursor: pointer;
/* border-radius: 3px; */
font-weight: bold;
height: 25px;
border-right: 1px solid #605f63;
}
.owl-theme .owl-nav [class*=owl-]:last-child {
border-right:0px;
}
} | frontend_assets/plugin/owlslider/owl.theme.default.min.css | .owl-theme .owl-dots,
.owl-theme .owl-nav {
text-align: center;
-webkit-tap-highlight-color: transparent
}
.owl-theme .owl-nav {
}
.owl-theme .owl-nav [class*=owl-] {
color: #4c4949;
font-size: 40px;
padding: 0px 17px;
background: rgba(255, 255, 255, 0.46);
display: inline-block;
cursor: pointer;
/* border-radius: 3px; */
font-weight: bold;
height: 50px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
background: #fff;
color: #000;
text-decoration: none
}
.owl-theme .owl-nav .disabled {
opacity:0.4;
cursor: default
}
.owl-theme .owl-nav.disabled+.owl-dots {
margin-top: 10px
}
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1;
}
#banner-slider .owl-nav{display:none;}
#banner-slider .owl-dots{position: absolute;bottom: 15px;left: 50%;}
.owl-theme .owl-dots .owl-dot span {
width: 12px;
height: 12px;
margin: 5px 7px;
background: rgba(255, 255, 255, 0.50);
display: block;
-webkit-backface-visibility: visible;
transition: opacity .2s ease;
border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {background: transparent;border: 2px solid #fff;}
.owl-prev{float:left;}
.owl-next{float:right}
.owl-nav {
float: left;
width: 100%;
position: absolute;
top: 45%;
font-size: 22px;
}
#demos .owl-nav { float: left; width: 100%; position: absolute; bottom: 45.6%; font-size: 22px; }
#owl-demo2 .owl-nav { float: left; width: 100%; position: absolute; bottom: 38.4%; font-size: 22px; }
@media (max-width:568px) {
}
@media (max-width:480px) {
#demos .owl-nav { float: left; width: 100%; position: absolute; bottom:30.6%; font-size: 22px; }
}
@media (max-width:414px) {
}
@media (max-width:375px) {
#demos .owl-nav { float: left; width: 100%; position: absolute; bottom: 25.6%; font-size: 22px; }
}
@media (max-width:320px) {
}
#home-page-slider .owl-nav {bottom: 170px;}
#home-page-slider .owl-dots {text-align: right; position: absolute; right: 10px; bottom: 5px;}
#owl-demo1 .owl-dots {text-align: right; position: absolute; right: 10px; bottom: 5px;}
@media (max-width:768px) {
#home-page-slider .owl-dots {text-align: right; position: absolute; right: 10px; bottom: 15px;}
.owl-nav {
width: auto;
position: absolute;
bottom:0px !important;
font-size: 22px;
left:0;
display:none;
}
.owl-theme .owl-nav [class*=owl-] {
color: #4c4949;
font-size: 26px;
padding: 0px 7px;
background: rgba(255, 255, 255, 0.46);
display: inline-block;
cursor: pointer;
/* border-radius: 3px; */
font-weight: bold;
height: 25px;
border-right: 1px solid #605f63;
}
.owl-theme .owl-nav [class*=owl-]:last-child {
border-right:0px;
}
} | 0.309024 | 0.065515 |
body,html{
font-family: 'Noto Serif', serif !important;
font-family: 'Noto Sans', sans-serif !important;
background: #F9F9F9 0% 0% no-repeat padding-box;
}
.over-hidden{
overflow: hidden;
}
.navbar{
background-color: #1B75BC !important;
}
.navbar-floating, .navbar-floating * {
z-index: 99;
}
.nav a.nav-link {
font-family: "Noto Sans";
font-weight: 600;
font-size: 16px;
letter-spacing: 1px;
color: #fff;
padding-left: 0 !important;
padding-right: 0 !important;
padding-top: 4px;
padding-bottom: 4px;
margin-left: 37px;
}
.navbar-padding{
padding-top: 80px;
padding-bottom:200px;
}
.trans-bg{
background-color: transparent !important;
}
.padding-bottom{
margin-top: 20px;
padding-bottom: 20px;
}
.menu-transaksi{
background-color:#1B75BC;
padding: .75rem 1rem;
background-color: #e9ecef;
border-radius: .25rem;
margin-bottom: 1rem;
}
.transaksi-outline{
box-shadow: 0px 3px 6px #00000029;
margin-bottom: 1rem;
border-radius: 7px;
}
.transaksi{
background: #FFFFFF 0% 0% no-repeat padding-box;
border-left:10px solid #1B75BC;
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
padding: 1rem;
}
.box{
background: #FFFFFF 0% 0% no-repeat padding-box;
box-shadow: 0px 3px 6px #00000029;
border-radius: 5px;
padding:20px;
margin-bottom: 10px;
}
.yellow-text{
color:#DF9926;
}
.yellow-button{
background-color:#DF9926;
border-color:#DF9926;
color: white;
}
.yellow-button:hover{
background-color:#DF9926;
border-color:#DF9926;
color: white;
}
.yellow-button:active{
background-color:#DF9926;
border-color:#DF9926;
color: white;
}
.blue-text{
color: #1B75BC ;
}
.red-text{
color:#AE0721;
}
.box-timeline {
position: relative;
width: 50px;
text-align: center;
display: inline-block;
border: 1px solid black;
padding: 10px;
border-radius: 50%;
}
.active-timeline{
border: 1px solid #1B75BC;
background-color: #1B75BC;
}
.box-timeline img {
width: 30px;
height: 30px;
}
.active-timeline img{
filter:
invert(100%);
}
#container-timeline .box-timeline:not(:last-child) {
margin-right: 15px;
}
#container-timeline .box-timeline:not(:last-child):after {
position: absolute;
content: '';
right: -50%;
top: 0%;
width: 50%;
height: 50%;
border-bottom: 1px solid black;
}
.timeline-jadwal ul {
max-width: 400px;
margin: 0 auto;
list-style-type: none;
counter-reset: steps;
margin: 0;
font-family: sans-serif;
}
.timeline-jadwal ul li {
padding: 0 0 20px 50px;
position: relative;
margin: 0;
}
.timeline-jadwal ul li:after{
position: absolute;
top: 0;
left: 0;
content: '';
background: #AE0721;
border: 2px solid #000;
border-radius: 50%;
display: inline-block;
height: 24px;
width: 24px;
text-align: center;
line-height: 24px;
}
.timeline-jadwal ul li:before {
position: absolute;
left: 13px;
top: 0;
content: "";
height: 100%;
width: 0;
border-left: 2px dashed #000;
}
.timeline-jadwal ul li:last-of-type:before {
border: none;
} | public/css/ternakmart/detail-transaksi.css | body,html{
font-family: 'Noto Serif', serif !important;
font-family: 'Noto Sans', sans-serif !important;
background: #F9F9F9 0% 0% no-repeat padding-box;
}
.over-hidden{
overflow: hidden;
}
.navbar{
background-color: #1B75BC !important;
}
.navbar-floating, .navbar-floating * {
z-index: 99;
}
.nav a.nav-link {
font-family: "Noto Sans";
font-weight: 600;
font-size: 16px;
letter-spacing: 1px;
color: #fff;
padding-left: 0 !important;
padding-right: 0 !important;
padding-top: 4px;
padding-bottom: 4px;
margin-left: 37px;
}
.navbar-padding{
padding-top: 80px;
padding-bottom:200px;
}
.trans-bg{
background-color: transparent !important;
}
.padding-bottom{
margin-top: 20px;
padding-bottom: 20px;
}
.menu-transaksi{
background-color:#1B75BC;
padding: .75rem 1rem;
background-color: #e9ecef;
border-radius: .25rem;
margin-bottom: 1rem;
}
.transaksi-outline{
box-shadow: 0px 3px 6px #00000029;
margin-bottom: 1rem;
border-radius: 7px;
}
.transaksi{
background: #FFFFFF 0% 0% no-repeat padding-box;
border-left:10px solid #1B75BC;
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
padding: 1rem;
}
.box{
background: #FFFFFF 0% 0% no-repeat padding-box;
box-shadow: 0px 3px 6px #00000029;
border-radius: 5px;
padding:20px;
margin-bottom: 10px;
}
.yellow-text{
color:#DF9926;
}
.yellow-button{
background-color:#DF9926;
border-color:#DF9926;
color: white;
}
.yellow-button:hover{
background-color:#DF9926;
border-color:#DF9926;
color: white;
}
.yellow-button:active{
background-color:#DF9926;
border-color:#DF9926;
color: white;
}
.blue-text{
color: #1B75BC ;
}
.red-text{
color:#AE0721;
}
.box-timeline {
position: relative;
width: 50px;
text-align: center;
display: inline-block;
border: 1px solid black;
padding: 10px;
border-radius: 50%;
}
.active-timeline{
border: 1px solid #1B75BC;
background-color: #1B75BC;
}
.box-timeline img {
width: 30px;
height: 30px;
}
.active-timeline img{
filter:
invert(100%);
}
#container-timeline .box-timeline:not(:last-child) {
margin-right: 15px;
}
#container-timeline .box-timeline:not(:last-child):after {
position: absolute;
content: '';
right: -50%;
top: 0%;
width: 50%;
height: 50%;
border-bottom: 1px solid black;
}
.timeline-jadwal ul {
max-width: 400px;
margin: 0 auto;
list-style-type: none;
counter-reset: steps;
margin: 0;
font-family: sans-serif;
}
.timeline-jadwal ul li {
padding: 0 0 20px 50px;
position: relative;
margin: 0;
}
.timeline-jadwal ul li:after{
position: absolute;
top: 0;
left: 0;
content: '';
background: #AE0721;
border: 2px solid #000;
border-radius: 50%;
display: inline-block;
height: 24px;
width: 24px;
text-align: center;
line-height: 24px;
}
.timeline-jadwal ul li:before {
position: absolute;
left: 13px;
top: 0;
content: "";
height: 100%;
width: 0;
border-left: 2px dashed #000;
}
.timeline-jadwal ul li:last-of-type:before {
border: none;
} | 0.395951 | 0.083628 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("https://twitter.com/ConanOBrien"),
regexp("https?://([^.]*\\.|)twitter\\.com/(?!widget).*")
{
/*
Singularity Utopia Style
@2045singularity
Last update: 30 May 2015
*/
/* original font Gotham Narrow SSm */
/* .BackgroundImagePrompt, .promptbird.promptbird-wide-above-timeline */
html, body, #doc, #page-outer
{
font-family: Arial;
background: #E3E3E3;
max-width:1190px !important;
margin: 0 auto auto auto;
}
.ProfileCanopy-navBar
{
background: #E3E3E3 !important;
border-color: transparent;
border-radius: 10px 10px 30px 30px;
}
.ProfileHeaderCard-screennameLink:hover
{
background: #E3E3E3 !important;
box-shadow: none !important;
}
.ProfileNav-item--userActions
{
background:transparent;
}
.ProfileCanopy--large .ProfileCanopy-header, .ProfileCanopy.ProfileCanopy--withNav.ProfileCanopy--large
{
height: 280px;
}
.ProfileHeaderCard-screenname, .ProfileClusterFollow-title, .ProfileNameTruncated-link.u-textInheritColor.js-nav.js-action-profile-name
{
line-height:1.4;
}
/* SIDE MODULES and Headers */
.ProfileSidebar.ProfileSidebar--withLeftAlignment
{
margin-left: -12px;
margin-right: 8px !important;
}
.ProfileSidebar--withRightAlignment
{
margin-left: 20px !important;
margin-right: -20px !important;
}
.ProfileHeaderCard-bio.u-dir
{
margin-right: 12px;
}
.follow-bar.js-list-actions
{
border-width: 0px 1px 1px 1px;
border-style: solid;
border-color: #D9D4D2;
}
.WEB-CONTAINER
{
background: white !important;
border-radius: 3px;
}
.DashboardProfileCard.module
{
margin-bottom: 15px;
}
.ProfileWTFAndTrends
{
margin-right:20px;
}
.ProfileTweetbox
{
background: #F5EEE4 !important;
margin-right:18px;
margin-left: 13px;
}
.ProfileMessagingActions-actionsContainer
{
margin: 0px 4px 0px -5px;
}
.NewTweetButton.u-sizeFull.js-tooltip.btn.primary-btn.tweet-action.tweet-btn:hover
{
box-shadow: none !important;
}
.Trends.Trends--wide.module.trends
{
border: none !important;
}
.Trends.module.trends
{
background:#F2EFE6;
border-color: #C7C5D1 !important;
border-width: 1px 1px 2px 1px !important;
border-style: solid !important;
border-radius: 8px 8px 11px 11px;
box-shadow: inset white 0px 0px 0px 1px;
}
.WhoToFollow.is-visible, .ProfileSidebar .SignupCallOut
{
background:#F2EFE6 !important;
border: solid #C7C5D1 1px !important;
border-bottom-width:2px !important;
border-radius: 8px 8px 11px 11px !important;
box-shadow: inset white 0px 0px 0px 1px;
margin-bottom:20px;
margin-top:22px;
}
.SignupCallOut.js-signup-call-out
{
background:#F2EFE6 !important;
border: solid #C7C5D1 1px !important;
border-bottom-width:2px !important;
margin-bottom:20px;
}
.module.signup-call-out.search-signup-call-out.js-signup-call-out
{
border: none;
}
.ProfileSidebar .trends-inner .flex-module
{
background:#F2EFE6 !important;
}
h2, h3, .WhoToFollow-title, .trend-location.js-trend-location, .SignupCallOut-title
{
font-size: 21px;
color: #245F8A;
}
h2
{
text-overflow: ellipsis;
overflow: hidden;
}
h2#content-main-heading
{
font-size: 21px !important;
}
.module .flex-module:first-child
{
border-radius:7px 7px 0px 0px;
}
.module .flex-module:last-child
{
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.module .flex-module
{
background: #F7F4F2;
border-color: #D9D4D2;
}
.CurrentMatches.CurrentMatches--withBackground.module.js-matchesModule
{
border-color: #D9D4D2;
}
.footer
{
border: 1px solid #D9D4D2;
border-radius: 3px;
}
.content-header .header-inner
{
background: #F0EEE9;
}
/* LISTS (see also btn-gr stream items) */
.ProfileListItem.u-cf.js-list
{
background:white;
padding: 10px 5px 15px 20px !important;
border: 1px solid grey;
border-radius: 6px;
}
/* MARGIN and padding timelines */
.AppContent, #page-container.wrapper.wrapper-discover.white
{
margin-top: 7px;
}
.ProfilePage .AppContent
{
margin-top: 0px;
}
#content-main-heading.js-timeline-title, .content-header .header-inner
{
padding-left:20px;
padding-right:20px;
}
.dashboard
{
margin-left: -2px;
}
.content-main
{
margin-right:-2px;
}
.dashboard.dashboard-right
{
margin-left: 0px;
margin-right: -12px;
width:205px;
}
/* CLOSE BUTTON module, conversation collapse button, buttons etc */
.user-actions-follow-button
{
border: 1px solid #A8D0EC;
}
.user-actions-follow-button:hover
{
box-shadow: white 0px 0px 1px !important;
}
.btn.small
{
padding: 3px 8px 5px; margin-right: -9px;
}
.account-summary .dismiss
{
color: #6A8EA8;
padding: 17px;
margin: -17px;
outline: none !important;
}
.account-summary .dismiss:hover
{
color:red;
text-shadow: white 0px 0px 5px;
}
.conversation-collapse-btn
{
color: #128ADE;
outline:none !important;
}
.conversation-collapse-btn:hover
{
color: red;
}
.save-search-btn
{
background: #F5F3F0;
padding: 6px 11px 5px 11px;
border-radius:4px;
border: 1px solid #E3DEDA;
box-shadow: inset white 0px 0px 1px;
}
.save-search-btn:hover
{
background: #fff;
border-color: #D1D1D1;
border-bottom-width: 2px;
margin-bottom: -1px;
}
/* BORDERS stream and stream modules */
.login-responsive .mobile
{
border-radius:6px;
}
.topbar
{
border-bottom-color: transparent!important;
}
.before-module .tweet, .content-main .expansion-container > li:last-child .tweet
{
border-bottom-color: white !important;
}
.stream-item-activity-me
{
border:none !important;
}
.content-main .expansion-container > li:last-child .tweet, .content-main .expansion-container > .original-tweet-container
{
border-bottom-color: transparent;
}
.content-main .stream-items > .stream-item + .stream-item .expansion-container > li:last-child:first-child .tweet:first-child:last-child
{
border-bottom-color: transparent !important;
}
.before-expanded.after-expanded .tweet, .after-expanded .tweet, .before-expanded .tweet
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.stream-media-items + .stream-item .tweet
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
/* POSSIBLE PROBLEM
.js-stream-item.stream-item.stream-item.expanding-stream-item.semi-expanded.after-expanded.before-expanded,
.js-stream-item.stream-item.stream-item.expanding-stream-item.after-expanded.before-expanded
{
border: transparent !important;
}
*/
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet:hover, .js-stream-item.stream-item.stream-item.expanding-stream-item.after-expanded.before-expanded
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.open .opened-tweet,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.opened-tweet,
div.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website.with-social-proof,
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.with-social-proof.opened-tweet,
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards,
.content-main .stream-items > .stream-item + .stream-item .expansion-container > li:last-child:first-child .tweet:first-child:last-child
{
border-bottom: 1px solid #E1E8ED !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website.with-social-proof.opened-tweet:hover,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.my-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward.focus
{
border-bottom: 1px solid #E1E8ED !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward.with-social-proof:hover,
.js-stream-item.stream-item.stream-item.expanding-stream-item.before-expanded:hover,
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.my-tweet.has-cards.has-native-media,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website.with-social-proof:hover,
content-main .expansion-container > li:last-child .tweet, .logged-out .content-main .expansion-container > li:last-child .tweet,
.before-expanded .original-tweet,
.js-stream-item.stream-item.stream-item.expanding-stream-item.before-expanded,
.content-main .expansion-container > li:last-child .inline-reply-tweetbox,
LI.original-tweet-container
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media,
.js-stream-item.stream-item.stream-item.expanding-stream-item.before-module,
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.with-social-proof
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
#stream-items-id .with-social-proof
{
border-radius: 6px 6px 0px 0px !important;
}
.stream-item.before-expanded
{
border-bottom: 1px solid #CCCCD5 !important;
}
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward:hover
{
border-radius: 6px;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media
{
border-radius: 6px 6px 0px 0px;
}
.DashboardProfileCard-userFields
{
padding-top:2px;
}
.DashboardProfileCard-avatarLink
{
padding: 3px 3px 0px 3px;
background: #E1E2E8;
border-radius: 4px;
box-shadow: #8C8C8C 0px 2px 1px;
}
.ProfileAvatar
{
border-radius:11px;
box-shadow: 0px 1px 2px -1px #848787, 0px -1px 1px -1px #848787, #DBDBDB 0px 3px 15px 1px;
margin-left:-10px;
margin-bottom: 16px;
width:215px;
height:215px;
}
.DashboardProfileCard-bg
{
border-width: 0px;
border-color: grey;
border-style: solid;
}
.custom-timeline-follow-card, #auto-close p, .content-inner.no-stream-end, .stream-end, .stream-item, .content-header, .stream-loading, .stream-item.open, .conversation-collapse-btn, .DashboardProfileCard,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.with-social-proof
{
border-color: #CCCCD5 !important;
}
/* web taost former border color: 8FAFFF */
.WebToast.original-tweet, .WebToast.dm-notification
{
border-color: #D5DBE8 !important;
box-shadow: #FFF 0px 0px 0px 10px, #FFF 0px 0px 0px 5px, #8FAFFF 0px 0px 0px 11px, #95969E 0px 1px 19px 9px, #3F4254 0px 4px 43px 10px;
border-radius: 3px;
}
#spoonbill-outer
{
margin:45px 90px 80px 45px;
}
.content-header .header-inner
{
border-color: #D3D3DB !important;
}
.module .list-link
{
border-color: #DCDDE6 #CCCCD5 #DCDDE6 #CCCCD5!important;
}
.module ul:first-child li:first-child .list-link
{
border-top-color: #CCCCD5 !important;
}
.module ul:last-child li:last-child .list-link
{
border-bottom-color: #CCCCD5 !important;
}
.list-link {transition: all 0.17s ease-in-out; padding-left:16px !important; letter-spacing:0.2px !important; word-spacing: 0.5px;}
.list-link:hover {background: white !important; color: #003AC2 !important; font-weight:bold; text-shadow: white 0px 0px 1px; text-decoration:underline !important;padding-left:35px !important; box-shadow: inset white 0px 0px 0px 1px;}
.list-link:active, .list-link:focus {color:black !important; background:#FFF3D6 !important; text-decoration:underline !important; box-shadow:none;}
.active .list-link {background:#E3E7FF !important;box-shadow: inset #EDEFFF 0px 0px 0px 1px;}
.active .list-link:hover {background: #EBEBEB !important; letter-spacing:0.2px !important; padding-left:16px !important; cursor:help;color: #5E6280 !important; text-shadow: white 0px 1px 1px;}
/* COLOR BEHIND HEADER IMAGE - IMAGES - wood https://i.imgur.com/ls2aPtI.jpg parchment https://i.imgur.com/2UD91cD.jpg sky: https://i.imgur.com/k0NMDdM.jpg */
.ProfileCanopy-header.u-bgUserColor
{
background-color: #c6c6c6 !important;
background-image: url('https://i.imgur.com/2UD91cD.jpg');
}
.ProfileCanopy-header:before, .ProfileCanopy-headerBg, .ProfileCanopy-header.u-bgUserColor
{
border-radius:0px 0px 8px 8px !important;
}
.DashboardProfileCard-bg.u-bgUserColor.u-block
{
background-color: #c6c6c6 !important;
}
.ProfileCanopy-headerBg img
{
border-width: 0px !important;
border-radius: 0px 0px 8px 8px !important;
margin:auto auto auto -2px !important;
width:101% !important;
}
#page-container .u-bgUserColorHover:hover
{
background: grey !important;
}
.DashboardProfileCard-bg
{
margin:0px;
width:287px;
}
.ProfileTweet-authorDetails
{
line-height: 16px !important;
margin-bottom: 26px !important;
}
.ProfilePage .AppContent
{
background: none;
}
.ProfileCanopy-navBar
{
background: none;
}
.ProfileNav-item--userActions
{
background: none;
}
.ProfilePopupContainer .profile-header .profile-header-inner
{
border-radius: 0px !important;
}
#card-container
{
background: white;
}
/* PROFILE TWEETS */
.Gallery-content.no-grid
{
box-shadow: #595F63 0px 0px 60px 1px;
}
.Gallery .modal-close
{
padding: 3px 15px 0px 15px !important;
background: black;
box-shadow: #595F63 0px 0px 8px 3px;
border-radius: 3px;
margin-right: -15px;
transition: all 0.1s ease-in-out;
}
.Gallery .modal-close:hover
{
background: #7990A3;
}
.Gallery .modal-close:active
{
background: lightgrey;
}
.ProfileTweet
{
transition: all 0.5s ease-in-out;
border-color: #C5CFD7;
border-style: solid;
border-width: 1px 1px 2px 1px;
border-radius: 3px 3px 5px 5px !important;
margin: 5px 0 5px 0 !important;
width:102% !important;
}
.ProfileTweet:hover
{
border-color:#A8A7B5;
box-shadow:#A5A4B3 0px 1px 7px;
}
.StreamToggler
{
border: none;
padding-bottom:4px;
}
.Container
{
background: white;
}
#widget
{
background:none;
}
.ProfileCard
{
border: 1px solid #B7BDC9;
background-color: #FFF2E3;
border-radius: 5px 5px 10px 10px;
border-bottom-width:2px;
margin-bottom:6px;
margin-right:0px;
box-shadow: inset white 0px 0px 0px 1px;
}
.ProfileCard-bg.js-nav
{
background: #C0C4CF;
border: 1px solid #fff;
}
/* PAGE WIDTH FOR PROFILE PAGE - then top nav header etc */
.ProfilePage, .EventPage
{
min-width:900px !important;
max-width:997px !important;
margin: 0 auto auto auto;
}
.EventPage .AppContent
{
margin-top: -1px;
}
.nav
{
margin-left: -1px;
}
.logged-out .topbar .nav > li > a
{
color: #55ACEE !important;
font-weight: bold;
}
.global-nav-inner, .logged-out .topbar
{
background: none repeat scroll 0% 0% #F0ECE1 !important;
box-shadow: inset white 0px 0px 4px 0px, rgba(34, 34, 34, 0.2) 0px 0px 20px;
}
A.StreamToggler-link.u-textUserColor.js-nav
{
margin-top:5px;
}
/* TWEETS - TWEETS AND REPLIES */
.ProfileHeading-title
{
border-width: 1px 1px 3px 1px;
border-style: solid;
border-color: #C4C4C4;
border-radius: 20px 22px 4px 15px;
background: #EDEDED;
padding: 15px 17px 15px 17px;
margin-right: 15px;
margin-bottom:10px !important;
margin-top:20px !important;
text-shadow: white 1px 1px 1px;
box-shadow: #D6D6D6 0px 2px 10px;
transition: all 0.3s ease-in-out;
width:36% !important;
color: #363435;
}
H2#content-main-heading.ProfileHeading-title
{
font-size: 18px !important;
}
.ProfileCard.js-actionable-user
{
margin-top: 5px;
}
.ProfileHeading-toggleItem
{
margin-right: 18px !important;
margin-top: 10px;
}
.ProfileHeading-toggleItem.is-active
{
border-width: 1px 1px 3px 1px;
border-style: solid;
border-color: #C4C4C4;
border-radius: 20px 22px 4px 15px;
background: #EDEDED;
padding: 15px 18px 15px 18px;
margin-right: 17px;
margin-bottom:10px !important;
text-shadow: white 1px 1px 1px;
box-shadow: inset white 0px 0px 1px, #D6D6D6 0px 2px 10px;
transition: all 0.3s ease-in-out;
}
.ProfileHeading-toggleItem.is-active:hover
{
border-radius: 22px 20px 19px 4px;
color:#514970;
}
.ProfileHeading-title
{
margin: 13px 0px 16px 0px;
}
.ProfileHeading-content
{
background:none !important;
border:none;
}
A.ProfileHeading-toggleLink.js-nav
{
padding:14px 2px 14px 2px;
}
A.ProfileHeading-toggleLink.js-nav:hover
{
color:darkblue;
text-decoration: underline;
}
.ProfileHeading-toggleItem.u-textUserColor.js-nav, .ProfileHeading-toggleItem.u-textUserColor
{
transition: all 0.2s ease-in-out;
padding: 15px 16px 15px 16px;
border-radius: 13px 17px 4px 13px;
margin: 3px 15px 7px 0px;
border-color: transparent;
border-width: 1px 1px 3px 1px;
border-style: solid;
}
.ProfileHeading-toggleItem.u-textUserColor.js-nav:hover, .ProfileHeading-toggleItem.u-textUserColor:hover
{
background: #FFFBE3;
color:darkblue !important;
box-shadow: inset white 0px 0px 1px, lightgrey 0px 2px 8px;
border-color: #B1AEBD;
}
.ProfileHeading-toggleItem.u-textUserColor.js-nav:active, .ProfileHeading-toggleItem.u-textUserColor:active
{
background: #FFE2B3;
border-color: orange;
text-decoration: underline;
border-radius:40px;
}
.ProfileHeading-toggleItem.u-textUserColor.js-nav:focus, .ProfileHeading-toggleItem.u-textUserColor:focus
{
background: #FFE2B3;
border-bottom: 3px solid orange;
border-radius:40px;
}
.ProfileNav-item.is-active .ProfileNav-stat, .ProfileNav-stat:hover, .ProfileNav-stat:focus
{
border-radius: 0px;
background: #fff;
}
#global-actions A.js-nav:hover
{
background: #EBF4FF;
box-shadow: inset #fff 0px 0px 0px 1px;
}
.ProfileNav-stat--link:hover
{
background: #E8F2FF;
}
.ProfileNav-stat--link:active, .ProfileNav-stat--link:focus
{
background: #D4FFEB;
box-shadow: none;
}
.ProfileNav-stat--moreLink:hover, .ProfileNav-stat--moreLink:focus
{
margin-top: 7px;
padding-top:7px;
background:#FFFBE3;
border-radius: 15px !important;
}
A.ProfileHeaderCard-nameLink.u-textInheritColor.js-nav:hover
{
background:none;
color:grey !important;
transition: all 0.5s ease-in-out;
box-shadow:none !important;
}
.ProfileHeaderCard-name
{
margin: -2px 0px 2px 0px;
}
.GridTimeline-footerIcon
{
background-color: #F5F8FA;
padding: 8px 5px 2px 14px;
border-radius: 20px;
}
.GridTimeline-footer:before
{
background:none;
}
.btn:hover
{
box-shadow: white 0px 0px 1px 0px;
}
.btn:focus
{
box-shadow: none;
}
.edit-button.btn
{
border-color: #C2E2FF;
}
#global-new-tweet-button
{
height: 33px;
opacity: 0.8;
padding: 0px 7px 3px 8px;
}
#global-new-tweet-button:hover
{
border: 1px solid transparent !important;
border-radius:2px;
}
.tweet-btn:hover, .tweet-btn:active, .tweet-btn.active
{
border:1px solid transparent !important;
}
.btn:hover, .follow-combo.open .btn-user-actions, .dropdown.open .user-dropdown
{
border-color: #8FD0FF;
}
A.js-nav.js-initial-focus
{
background:none;
}
.btn.primary-btn.retweet-action:focus
{
box-shadow: inset #DEF9FF 0px 0px 0px 2px;
border-radius:3px !important;
}
.btn.primary-btn.retweet-action
{
border: 1px solid #467EE0 !important;
box-shadow: inset white 0px 0px 0px 1px;
border-radius: 2px;
transition: all 0.1s ease-in-out;
letter-spacing: 0.1px;
}
.btn.primary-btn.retweet-action:hover:focus, .btn.primary-btn.retweet-action:hover
{
border:1px solid #3F72D1 !important;
border-radius: 3px;
box-shadow: inset white 0px 0px 1px;
}
A.account-group.js-account-group.js-action-profile.js-user-profile-link.js-nav
{
background:none !important;
}
.u-bgUserColorLightest
{
background: #F5EEE4 !important;
border-color:#CCCCCC !important;
box-shadow: inset #F5EEE4 0px 0px 12px 13px;
}
#page-container .content:hover
{
background: none !important;
}
/* EVENTS */
.CurrentMatches .MatchItem
{
padding-left: 8px;
border-radius: 7px;
}
.EventCanopy-addHeaderCallout
{
font-style:italic;
font-family:courier;
font-size:56px;
text-shadow: 0px 1px 2px #000, 0px 0px 8px grey, 0px 1px 4px grey;
}
.EventPage .new-tweets-bar
{
width:109.1%;
border-right: 1px solid;
border-bottom: 1px solid;
border-top: 1px solid;
background: #F2F0E9;
box-shadow: inset white 0px 0px 0px 1px;
color:#8C0606;
}
.EventPage .stream-item.js-new-items-bar-container
{
margin-bottom:3px;
}
.EventPage .new-tweets-bar:hover
{
background: #E6F7E7;
color: #0014AB;
text-decoration:underline;
}
.EventPage .new-tweets-bar:active
{
background: #FFE8ED;
color: #D6004E;
text-decoration:none;
}
.MatchItem
{
border: 1px solid transparent;
}
.MatchItem:hover
{
border-color: #D9D4D2;
}
#dashboard-matches .MatchItem:hover
{
border-color:transparent;
}
/* NEW TWEET BAR - NUMBER OF NEW TWEETS - 10etc new Tweets - notifications too color:CC0003 bg:F5F2EB border:E0E0E0 / FFF3E3 FFF3DE E3E0DA */
.new-tweets-bar
{
font-size: 13pt;
font-weight: bold;
word-spacing:5.4px;
letter-spacing:1.1px;
background: #E0DDD7;
padding: 14px 0px 13px 0px;
border-color: #d1d1d1 !important;
font-family:arial;
text-shadow: white 0px 0px 1px;
transition: all 0.04s ease-in-out;
color: #B30003;
font-style:italic;
}
.new-tweets-bar:hover
{
background: #BBEDCA;
border-color: #ABD9B9;
color: #001866;
}
.new-tweets-bar:active
{
background: #FFE1A8;
border-color: #EDCA9A;
color: #470024;
}
.stream
{
box-shadow: #BFBFBF 0px 60px 30px -40px;
}
/* COG DROP and Menu drop */
.dropdown-menu
{
border: 1px solid #8B96B3;
border-radius: 8px 8px 6px 6px !important;
padding:14px 10px 17px 10px;
box-shadow: #565963 0px 6px 16px -3px;
}
BUTTON.dropdown-link, .LI.typeahead-item.typeahead-saved-search-item.selected, .typeahead-saved-search-item, .dropdown-menu li > a, .typeahead-items li:hover, .dropdown-menu li:hover, .dropdown-menu li > a:focus, li.typeahead-item.typeahead-saved-search-item:hover, LI.typeahead-item.typeahead-saved-search-item.selected:hover, .typeahead-items li, .typeahead-items:hover
{
border-radius: 4px !important;
}
.small-user-dropdown
{
margin-right:-1px !important;
padding: 0 0px 0 5px !important;
}
.small-user-dropdown:hover
{
background: #C2FFE9 !important;
border-radius:2px !important;
}
.UserActions .user-dropdown
{
color: #2D648F;
transition: all 0.2s ease-in-out;
margin: 1px 1px 0px 0px;
padding: 0 3px 0 8px;
border: 1px solid transparent;
}
.UserActions .user-dropdown:hover
{
color: #CF003B;
background:#FFF9CF;
box-shadow: #A3A3A3 0px 0px 1px 0px, lightgrey 0px 0px 1px 0px;
}
.permalink-header > .follow-bar > .btn-group
{
margin-right: 10px;
}
#stream-items-id .btn-group
{
margin-right: 5px;
}
.account.js-actionable-user.js-profile-popup-actionable > .follow-bar
{
margin-right: 45px;
}
.btn-group
{
margin-right: -45px;
}
.UserActions.UserActions--small.u-textLeft
{
margin-right: 45px;
}
/*
.ProfileNav-item.ProfileNav-item--userActions.u-floatRight.u-textRight.with-rightCaret
{
margin-right: -8%;
}
*/
.ProfileSidebar .Footer-item, .ProfileSidebar .Footer-link
{
color: #3B3F63;
}
.ProfileClusterFollow
{
background:none;
border:none;
outline: none !important;
}
.ProfileClusterFollow-closeButton
{
padding:8px 18px 8px 18px;
margin-top: -11px;
border-radius: 5px;
background: white;
border:1px solid #B0B7D6;
outline: none !important;
text-shadow: white 0px 0px 2px;
}
.ProfileClusterFollow-closeButton:hover
{
background: #B0FFDB;
box-shadow:#BCD1CE 0px 2px 4px;
border-color: #9297AD;
outline: none !important;
}
.ProfileClusterFollow-header
{
padding: 0px 33px 0px 0px;
}
.primary-btn:hover
{
border-color: transparent !important;
}
.primary-btn:active
{
background: #A797BF;
}
.primary-btn.retweet-action:focus
{
box-shadow: inset blue 0px 0px 1px 0px;
}
.related li
{
border: 1px solid #CECECE;
border-radius: 8px;
background: white;
}
/* LOGGED OUT STYLE */
.tweet.permalink-tweet
{
border-radius: 5px;
}
.module.signup-call-out.js-signup-call-out
{
border: 1px solid #CCCCD5;
}
/* SORRY NO EXIST */
h1
{
color: #4069CC;
text-shadow: none;
}
p, label
{
color: #292F33;
text-shadow: none;
}
.footer li, .footer a
{
color: #5E79B1;
text-shadow: white 0px 0px 3px;
}
.footer
{
background: white;
padding:10px 0px 10px 0px;
}
p a
{
color:darkblue;
}
/* SIGN IN PAGE */
.copyright, .front-container .footer, .front-container .footer a
{
color: #64667D !important;
font-size: 10pt;
}
.footer a:hover
{
color: blue !important;
}
.footer.inline-list
{
margin-bottom: -20px;
border: none !important;
}
.footer
{
border-radius:8px !important;
}
.front-welcome
{
margin-left:-10px;
}
.front-signup, .front-signin
{
margin-left: 10px;
box-shadow: #BBBEC9 0px 2px 13px 1px !important;
}
/* COOKIE NOTICE BS Promoted Tweets*/
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website, .promoted-tweet,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.with-media-forward.auto-expanded.media-forward.opened-tweet.animated-gif-playing.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.with-media-forward.auto-expanded.media-forward.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.promoted-account-in-timeline,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards
{
font-size:0px !important;
overflow:hidden !important;
text-overflow: clip !important;
border-width: 1px 0px 1px 0px !important;
line-height:0px;
min-height:0px;
padding:0px;
max-height: 0px;
background:transparent !important;
display:none;
visibility: hidden;
}
li.promoted-trend
{
display: none;
}
div.promoted-account
{
display: none;
}
.eu-cookie-notice
{
visibility: hidden;
display: none;
height: 0px;
}
/* 30 May 2015 updates below */
.Trends .trend-items, .trend-item.js-trend-item, .trend-items.js-trends
{
word-break: break-all !important;
display:inline-block !important;
}
.flex-module.trends-container
{
background: #F2EFE6 !important;
}
#Container, .TwitterCardsGrid
{
background: white !important;
}
.inline-reply-tweetbox
{
background: #EEF4F9 !important;
}
.Trends.Trends--wide.module.trends
{
border-radius: 7px !important;
}
.RelatedUsers
{
border-color: #D4CDC9 !important;
}
.AdaptiveSearchPage .AppContent,
.AdaptiveSearchPage .AppContent-main,
.AdaptiveFiltersBar
{
max-width: 99% !important;
min-width: 99% !important;
}
.content-main.AdaptiveSearchTimeline
{
margin-left: 20px !important;
}
.AdaptiveSearchTitle
{
border-radius: 8px;
}
.AdaptiveFiltersDropdown.dropdown-menu li > .AdaptiveFiltersDropdown-target:hover
{
border-radius: 0px !important;
background-color: #696969;
}
.AdaptiveFiltersBar-item:hover
{
background: #FCFCF0;
}
.AdaptiveFiltersBar-label
{
border-right-color: transparent !important;
border-left-color: transparent !important;
}
.AdaptiveFiltersBar-item.is-selected
{
background: #F8F8F8;
}
/* "not logged-in" overlay removed */
.logged-out .modal-overlay, #signup-dialog
{
display:none !important;
}
.modal-enabled,
.grid-enabled,
.overlay-enabled,
.gallery-enabled
{
overflow: auto !important;
}
.modal-enabled .global-nav-inner
{
margin-right: 0px;
}
.ScrollBump
{
display:none !important;
}
/* promoted stuff removed 2nd June 2015 */
div.promoted-account, .PromptbirdPrompt--aboveTimeline, #above-timeline-prompt, PromptbirdPrompt
{
display: none !important;
}
}
/*
UTOPIA IS COMING - some say the Singularity near.
2045 seems far away but relatively it is near.
Time passes quickly.
SOON!
*/ | data/usercss/101446.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("https://twitter.com/ConanOBrien"),
regexp("https?://([^.]*\\.|)twitter\\.com/(?!widget).*")
{
/*
Singularity Utopia Style
@2045singularity
Last update: 30 May 2015
*/
/* original font Gotham Narrow SSm */
/* .BackgroundImagePrompt, .promptbird.promptbird-wide-above-timeline */
html, body, #doc, #page-outer
{
font-family: Arial;
background: #E3E3E3;
max-width:1190px !important;
margin: 0 auto auto auto;
}
.ProfileCanopy-navBar
{
background: #E3E3E3 !important;
border-color: transparent;
border-radius: 10px 10px 30px 30px;
}
.ProfileHeaderCard-screennameLink:hover
{
background: #E3E3E3 !important;
box-shadow: none !important;
}
.ProfileNav-item--userActions
{
background:transparent;
}
.ProfileCanopy--large .ProfileCanopy-header, .ProfileCanopy.ProfileCanopy--withNav.ProfileCanopy--large
{
height: 280px;
}
.ProfileHeaderCard-screenname, .ProfileClusterFollow-title, .ProfileNameTruncated-link.u-textInheritColor.js-nav.js-action-profile-name
{
line-height:1.4;
}
/* SIDE MODULES and Headers */
.ProfileSidebar.ProfileSidebar--withLeftAlignment
{
margin-left: -12px;
margin-right: 8px !important;
}
.ProfileSidebar--withRightAlignment
{
margin-left: 20px !important;
margin-right: -20px !important;
}
.ProfileHeaderCard-bio.u-dir
{
margin-right: 12px;
}
.follow-bar.js-list-actions
{
border-width: 0px 1px 1px 1px;
border-style: solid;
border-color: #D9D4D2;
}
.WEB-CONTAINER
{
background: white !important;
border-radius: 3px;
}
.DashboardProfileCard.module
{
margin-bottom: 15px;
}
.ProfileWTFAndTrends
{
margin-right:20px;
}
.ProfileTweetbox
{
background: #F5EEE4 !important;
margin-right:18px;
margin-left: 13px;
}
.ProfileMessagingActions-actionsContainer
{
margin: 0px 4px 0px -5px;
}
.NewTweetButton.u-sizeFull.js-tooltip.btn.primary-btn.tweet-action.tweet-btn:hover
{
box-shadow: none !important;
}
.Trends.Trends--wide.module.trends
{
border: none !important;
}
.Trends.module.trends
{
background:#F2EFE6;
border-color: #C7C5D1 !important;
border-width: 1px 1px 2px 1px !important;
border-style: solid !important;
border-radius: 8px 8px 11px 11px;
box-shadow: inset white 0px 0px 0px 1px;
}
.WhoToFollow.is-visible, .ProfileSidebar .SignupCallOut
{
background:#F2EFE6 !important;
border: solid #C7C5D1 1px !important;
border-bottom-width:2px !important;
border-radius: 8px 8px 11px 11px !important;
box-shadow: inset white 0px 0px 0px 1px;
margin-bottom:20px;
margin-top:22px;
}
.SignupCallOut.js-signup-call-out
{
background:#F2EFE6 !important;
border: solid #C7C5D1 1px !important;
border-bottom-width:2px !important;
margin-bottom:20px;
}
.module.signup-call-out.search-signup-call-out.js-signup-call-out
{
border: none;
}
.ProfileSidebar .trends-inner .flex-module
{
background:#F2EFE6 !important;
}
h2, h3, .WhoToFollow-title, .trend-location.js-trend-location, .SignupCallOut-title
{
font-size: 21px;
color: #245F8A;
}
h2
{
text-overflow: ellipsis;
overflow: hidden;
}
h2#content-main-heading
{
font-size: 21px !important;
}
.module .flex-module:first-child
{
border-radius:7px 7px 0px 0px;
}
.module .flex-module:last-child
{
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.module .flex-module
{
background: #F7F4F2;
border-color: #D9D4D2;
}
.CurrentMatches.CurrentMatches--withBackground.module.js-matchesModule
{
border-color: #D9D4D2;
}
.footer
{
border: 1px solid #D9D4D2;
border-radius: 3px;
}
.content-header .header-inner
{
background: #F0EEE9;
}
/* LISTS (see also btn-gr stream items) */
.ProfileListItem.u-cf.js-list
{
background:white;
padding: 10px 5px 15px 20px !important;
border: 1px solid grey;
border-radius: 6px;
}
/* MARGIN and padding timelines */
.AppContent, #page-container.wrapper.wrapper-discover.white
{
margin-top: 7px;
}
.ProfilePage .AppContent
{
margin-top: 0px;
}
#content-main-heading.js-timeline-title, .content-header .header-inner
{
padding-left:20px;
padding-right:20px;
}
.dashboard
{
margin-left: -2px;
}
.content-main
{
margin-right:-2px;
}
.dashboard.dashboard-right
{
margin-left: 0px;
margin-right: -12px;
width:205px;
}
/* CLOSE BUTTON module, conversation collapse button, buttons etc */
.user-actions-follow-button
{
border: 1px solid #A8D0EC;
}
.user-actions-follow-button:hover
{
box-shadow: white 0px 0px 1px !important;
}
.btn.small
{
padding: 3px 8px 5px; margin-right: -9px;
}
.account-summary .dismiss
{
color: #6A8EA8;
padding: 17px;
margin: -17px;
outline: none !important;
}
.account-summary .dismiss:hover
{
color:red;
text-shadow: white 0px 0px 5px;
}
.conversation-collapse-btn
{
color: #128ADE;
outline:none !important;
}
.conversation-collapse-btn:hover
{
color: red;
}
.save-search-btn
{
background: #F5F3F0;
padding: 6px 11px 5px 11px;
border-radius:4px;
border: 1px solid #E3DEDA;
box-shadow: inset white 0px 0px 1px;
}
.save-search-btn:hover
{
background: #fff;
border-color: #D1D1D1;
border-bottom-width: 2px;
margin-bottom: -1px;
}
/* BORDERS stream and stream modules */
.login-responsive .mobile
{
border-radius:6px;
}
.topbar
{
border-bottom-color: transparent!important;
}
.before-module .tweet, .content-main .expansion-container > li:last-child .tweet
{
border-bottom-color: white !important;
}
.stream-item-activity-me
{
border:none !important;
}
.content-main .expansion-container > li:last-child .tweet, .content-main .expansion-container > .original-tweet-container
{
border-bottom-color: transparent;
}
.content-main .stream-items > .stream-item + .stream-item .expansion-container > li:last-child:first-child .tweet:first-child:last-child
{
border-bottom-color: transparent !important;
}
.before-expanded.after-expanded .tweet, .after-expanded .tweet, .before-expanded .tweet
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.stream-media-items + .stream-item .tweet
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
/* POSSIBLE PROBLEM
.js-stream-item.stream-item.stream-item.expanding-stream-item.semi-expanded.after-expanded.before-expanded,
.js-stream-item.stream-item.stream-item.expanding-stream-item.after-expanded.before-expanded
{
border: transparent !important;
}
*/
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet:hover, .js-stream-item.stream-item.stream-item.expanding-stream-item.after-expanded.before-expanded
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.open .opened-tweet,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.opened-tweet,
div.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website.with-social-proof,
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.with-social-proof.opened-tweet,
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards,
.content-main .stream-items > .stream-item + .stream-item .expansion-container > li:last-child:first-child .tweet:first-child:last-child
{
border-bottom: 1px solid #E1E8ED !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website.with-social-proof.opened-tweet:hover,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.my-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward.focus
{
border-bottom: 1px solid #E1E8ED !important;
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward.with-social-proof:hover,
.js-stream-item.stream-item.stream-item.expanding-stream-item.before-expanded:hover,
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.my-tweet.has-cards.has-native-media,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website.with-social-proof:hover,
content-main .expansion-container > li:last-child .tweet, .logged-out .content-main .expansion-container > li:last-child .tweet,
.before-expanded .original-tweet,
.js-stream-item.stream-item.stream-item.expanding-stream-item.before-expanded,
.content-main .expansion-container > li:last-child .inline-reply-tweetbox,
LI.original-tweet-container
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media,
.js-stream-item.stream-item.stream-item.expanding-stream-item.before-module,
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.with-social-proof
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
#stream-items-id .with-social-proof
{
border-radius: 6px 6px 0px 0px !important;
}
.stream-item.before-expanded
{
border-bottom: 1px solid #CCCCD5 !important;
}
DIV.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media
{
border-bottom-left-radius:0px !important;
border-bottom-right-radius:0px !important;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward:hover
{
border-radius: 6px;
}
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.has-cards.has-native-media
{
border-radius: 6px 6px 0px 0px;
}
.DashboardProfileCard-userFields
{
padding-top:2px;
}
.DashboardProfileCard-avatarLink
{
padding: 3px 3px 0px 3px;
background: #E1E2E8;
border-radius: 4px;
box-shadow: #8C8C8C 0px 2px 1px;
}
.ProfileAvatar
{
border-radius:11px;
box-shadow: 0px 1px 2px -1px #848787, 0px -1px 1px -1px #848787, #DBDBDB 0px 3px 15px 1px;
margin-left:-10px;
margin-bottom: 16px;
width:215px;
height:215px;
}
.DashboardProfileCard-bg
{
border-width: 0px;
border-color: grey;
border-style: solid;
}
.custom-timeline-follow-card, #auto-close p, .content-inner.no-stream-end, .stream-end, .stream-item, .content-header, .stream-loading, .stream-item.open, .conversation-collapse-btn, .DashboardProfileCard,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.with-social-proof
{
border-color: #CCCCD5 !important;
}
/* web taost former border color: 8FAFFF */
.WebToast.original-tweet, .WebToast.dm-notification
{
border-color: #D5DBE8 !important;
box-shadow: #FFF 0px 0px 0px 10px, #FFF 0px 0px 0px 5px, #8FAFFF 0px 0px 0px 11px, #95969E 0px 1px 19px 9px, #3F4254 0px 4px 43px 10px;
border-radius: 3px;
}
#spoonbill-outer
{
margin:45px 90px 80px 45px;
}
.content-header .header-inner
{
border-color: #D3D3DB !important;
}
.module .list-link
{
border-color: #DCDDE6 #CCCCD5 #DCDDE6 #CCCCD5!important;
}
.module ul:first-child li:first-child .list-link
{
border-top-color: #CCCCD5 !important;
}
.module ul:last-child li:last-child .list-link
{
border-bottom-color: #CCCCD5 !important;
}
.list-link {transition: all 0.17s ease-in-out; padding-left:16px !important; letter-spacing:0.2px !important; word-spacing: 0.5px;}
.list-link:hover {background: white !important; color: #003AC2 !important; font-weight:bold; text-shadow: white 0px 0px 1px; text-decoration:underline !important;padding-left:35px !important; box-shadow: inset white 0px 0px 0px 1px;}
.list-link:active, .list-link:focus {color:black !important; background:#FFF3D6 !important; text-decoration:underline !important; box-shadow:none;}
.active .list-link {background:#E3E7FF !important;box-shadow: inset #EDEFFF 0px 0px 0px 1px;}
.active .list-link:hover {background: #EBEBEB !important; letter-spacing:0.2px !important; padding-left:16px !important; cursor:help;color: #5E6280 !important; text-shadow: white 0px 1px 1px;}
/* COLOR BEHIND HEADER IMAGE - IMAGES - wood https://i.imgur.com/ls2aPtI.jpg parchment https://i.imgur.com/2UD91cD.jpg sky: https://i.imgur.com/k0NMDdM.jpg */
.ProfileCanopy-header.u-bgUserColor
{
background-color: #c6c6c6 !important;
background-image: url('https://i.imgur.com/2UD91cD.jpg');
}
.ProfileCanopy-header:before, .ProfileCanopy-headerBg, .ProfileCanopy-header.u-bgUserColor
{
border-radius:0px 0px 8px 8px !important;
}
.DashboardProfileCard-bg.u-bgUserColor.u-block
{
background-color: #c6c6c6 !important;
}
.ProfileCanopy-headerBg img
{
border-width: 0px !important;
border-radius: 0px 0px 8px 8px !important;
margin:auto auto auto -2px !important;
width:101% !important;
}
#page-container .u-bgUserColorHover:hover
{
background: grey !important;
}
.DashboardProfileCard-bg
{
margin:0px;
width:287px;
}
.ProfileTweet-authorDetails
{
line-height: 16px !important;
margin-bottom: 26px !important;
}
.ProfilePage .AppContent
{
background: none;
}
.ProfileCanopy-navBar
{
background: none;
}
.ProfileNav-item--userActions
{
background: none;
}
.ProfilePopupContainer .profile-header .profile-header-inner
{
border-radius: 0px !important;
}
#card-container
{
background: white;
}
/* PROFILE TWEETS */
.Gallery-content.no-grid
{
box-shadow: #595F63 0px 0px 60px 1px;
}
.Gallery .modal-close
{
padding: 3px 15px 0px 15px !important;
background: black;
box-shadow: #595F63 0px 0px 8px 3px;
border-radius: 3px;
margin-right: -15px;
transition: all 0.1s ease-in-out;
}
.Gallery .modal-close:hover
{
background: #7990A3;
}
.Gallery .modal-close:active
{
background: lightgrey;
}
.ProfileTweet
{
transition: all 0.5s ease-in-out;
border-color: #C5CFD7;
border-style: solid;
border-width: 1px 1px 2px 1px;
border-radius: 3px 3px 5px 5px !important;
margin: 5px 0 5px 0 !important;
width:102% !important;
}
.ProfileTweet:hover
{
border-color:#A8A7B5;
box-shadow:#A5A4B3 0px 1px 7px;
}
.StreamToggler
{
border: none;
padding-bottom:4px;
}
.Container
{
background: white;
}
#widget
{
background:none;
}
.ProfileCard
{
border: 1px solid #B7BDC9;
background-color: #FFF2E3;
border-radius: 5px 5px 10px 10px;
border-bottom-width:2px;
margin-bottom:6px;
margin-right:0px;
box-shadow: inset white 0px 0px 0px 1px;
}
.ProfileCard-bg.js-nav
{
background: #C0C4CF;
border: 1px solid #fff;
}
/* PAGE WIDTH FOR PROFILE PAGE - then top nav header etc */
.ProfilePage, .EventPage
{
min-width:900px !important;
max-width:997px !important;
margin: 0 auto auto auto;
}
.EventPage .AppContent
{
margin-top: -1px;
}
.nav
{
margin-left: -1px;
}
.logged-out .topbar .nav > li > a
{
color: #55ACEE !important;
font-weight: bold;
}
.global-nav-inner, .logged-out .topbar
{
background: none repeat scroll 0% 0% #F0ECE1 !important;
box-shadow: inset white 0px 0px 4px 0px, rgba(34, 34, 34, 0.2) 0px 0px 20px;
}
A.StreamToggler-link.u-textUserColor.js-nav
{
margin-top:5px;
}
/* TWEETS - TWEETS AND REPLIES */
.ProfileHeading-title
{
border-width: 1px 1px 3px 1px;
border-style: solid;
border-color: #C4C4C4;
border-radius: 20px 22px 4px 15px;
background: #EDEDED;
padding: 15px 17px 15px 17px;
margin-right: 15px;
margin-bottom:10px !important;
margin-top:20px !important;
text-shadow: white 1px 1px 1px;
box-shadow: #D6D6D6 0px 2px 10px;
transition: all 0.3s ease-in-out;
width:36% !important;
color: #363435;
}
H2#content-main-heading.ProfileHeading-title
{
font-size: 18px !important;
}
.ProfileCard.js-actionable-user
{
margin-top: 5px;
}
.ProfileHeading-toggleItem
{
margin-right: 18px !important;
margin-top: 10px;
}
.ProfileHeading-toggleItem.is-active
{
border-width: 1px 1px 3px 1px;
border-style: solid;
border-color: #C4C4C4;
border-radius: 20px 22px 4px 15px;
background: #EDEDED;
padding: 15px 18px 15px 18px;
margin-right: 17px;
margin-bottom:10px !important;
text-shadow: white 1px 1px 1px;
box-shadow: inset white 0px 0px 1px, #D6D6D6 0px 2px 10px;
transition: all 0.3s ease-in-out;
}
.ProfileHeading-toggleItem.is-active:hover
{
border-radius: 22px 20px 19px 4px;
color:#514970;
}
.ProfileHeading-title
{
margin: 13px 0px 16px 0px;
}
.ProfileHeading-content
{
background:none !important;
border:none;
}
A.ProfileHeading-toggleLink.js-nav
{
padding:14px 2px 14px 2px;
}
A.ProfileHeading-toggleLink.js-nav:hover
{
color:darkblue;
text-decoration: underline;
}
.ProfileHeading-toggleItem.u-textUserColor.js-nav, .ProfileHeading-toggleItem.u-textUserColor
{
transition: all 0.2s ease-in-out;
padding: 15px 16px 15px 16px;
border-radius: 13px 17px 4px 13px;
margin: 3px 15px 7px 0px;
border-color: transparent;
border-width: 1px 1px 3px 1px;
border-style: solid;
}
.ProfileHeading-toggleItem.u-textUserColor.js-nav:hover, .ProfileHeading-toggleItem.u-textUserColor:hover
{
background: #FFFBE3;
color:darkblue !important;
box-shadow: inset white 0px 0px 1px, lightgrey 0px 2px 8px;
border-color: #B1AEBD;
}
.ProfileHeading-toggleItem.u-textUserColor.js-nav:active, .ProfileHeading-toggleItem.u-textUserColor:active
{
background: #FFE2B3;
border-color: orange;
text-decoration: underline;
border-radius:40px;
}
.ProfileHeading-toggleItem.u-textUserColor.js-nav:focus, .ProfileHeading-toggleItem.u-textUserColor:focus
{
background: #FFE2B3;
border-bottom: 3px solid orange;
border-radius:40px;
}
.ProfileNav-item.is-active .ProfileNav-stat, .ProfileNav-stat:hover, .ProfileNav-stat:focus
{
border-radius: 0px;
background: #fff;
}
#global-actions A.js-nav:hover
{
background: #EBF4FF;
box-shadow: inset #fff 0px 0px 0px 1px;
}
.ProfileNav-stat--link:hover
{
background: #E8F2FF;
}
.ProfileNav-stat--link:active, .ProfileNav-stat--link:focus
{
background: #D4FFEB;
box-shadow: none;
}
.ProfileNav-stat--moreLink:hover, .ProfileNav-stat--moreLink:focus
{
margin-top: 7px;
padding-top:7px;
background:#FFFBE3;
border-radius: 15px !important;
}
A.ProfileHeaderCard-nameLink.u-textInheritColor.js-nav:hover
{
background:none;
color:grey !important;
transition: all 0.5s ease-in-out;
box-shadow:none !important;
}
.ProfileHeaderCard-name
{
margin: -2px 0px 2px 0px;
}
.GridTimeline-footerIcon
{
background-color: #F5F8FA;
padding: 8px 5px 2px 14px;
border-radius: 20px;
}
.GridTimeline-footer:before
{
background:none;
}
.btn:hover
{
box-shadow: white 0px 0px 1px 0px;
}
.btn:focus
{
box-shadow: none;
}
.edit-button.btn
{
border-color: #C2E2FF;
}
#global-new-tweet-button
{
height: 33px;
opacity: 0.8;
padding: 0px 7px 3px 8px;
}
#global-new-tweet-button:hover
{
border: 1px solid transparent !important;
border-radius:2px;
}
.tweet-btn:hover, .tweet-btn:active, .tweet-btn.active
{
border:1px solid transparent !important;
}
.btn:hover, .follow-combo.open .btn-user-actions, .dropdown.open .user-dropdown
{
border-color: #8FD0FF;
}
A.js-nav.js-initial-focus
{
background:none;
}
.btn.primary-btn.retweet-action:focus
{
box-shadow: inset #DEF9FF 0px 0px 0px 2px;
border-radius:3px !important;
}
.btn.primary-btn.retweet-action
{
border: 1px solid #467EE0 !important;
box-shadow: inset white 0px 0px 0px 1px;
border-radius: 2px;
transition: all 0.1s ease-in-out;
letter-spacing: 0.1px;
}
.btn.primary-btn.retweet-action:hover:focus, .btn.primary-btn.retweet-action:hover
{
border:1px solid #3F72D1 !important;
border-radius: 3px;
box-shadow: inset white 0px 0px 1px;
}
A.account-group.js-account-group.js-action-profile.js-user-profile-link.js-nav
{
background:none !important;
}
.u-bgUserColorLightest
{
background: #F5EEE4 !important;
border-color:#CCCCCC !important;
box-shadow: inset #F5EEE4 0px 0px 12px 13px;
}
#page-container .content:hover
{
background: none !important;
}
/* EVENTS */
.CurrentMatches .MatchItem
{
padding-left: 8px;
border-radius: 7px;
}
.EventCanopy-addHeaderCallout
{
font-style:italic;
font-family:courier;
font-size:56px;
text-shadow: 0px 1px 2px #000, 0px 0px 8px grey, 0px 1px 4px grey;
}
.EventPage .new-tweets-bar
{
width:109.1%;
border-right: 1px solid;
border-bottom: 1px solid;
border-top: 1px solid;
background: #F2F0E9;
box-shadow: inset white 0px 0px 0px 1px;
color:#8C0606;
}
.EventPage .stream-item.js-new-items-bar-container
{
margin-bottom:3px;
}
.EventPage .new-tweets-bar:hover
{
background: #E6F7E7;
color: #0014AB;
text-decoration:underline;
}
.EventPage .new-tweets-bar:active
{
background: #FFE8ED;
color: #D6004E;
text-decoration:none;
}
.MatchItem
{
border: 1px solid transparent;
}
.MatchItem:hover
{
border-color: #D9D4D2;
}
#dashboard-matches .MatchItem:hover
{
border-color:transparent;
}
/* NEW TWEET BAR - NUMBER OF NEW TWEETS - 10etc new Tweets - notifications too color:CC0003 bg:F5F2EB border:E0E0E0 / FFF3E3 FFF3DE E3E0DA */
.new-tweets-bar
{
font-size: 13pt;
font-weight: bold;
word-spacing:5.4px;
letter-spacing:1.1px;
background: #E0DDD7;
padding: 14px 0px 13px 0px;
border-color: #d1d1d1 !important;
font-family:arial;
text-shadow: white 0px 0px 1px;
transition: all 0.04s ease-in-out;
color: #B30003;
font-style:italic;
}
.new-tweets-bar:hover
{
background: #BBEDCA;
border-color: #ABD9B9;
color: #001866;
}
.new-tweets-bar:active
{
background: #FFE1A8;
border-color: #EDCA9A;
color: #470024;
}
.stream
{
box-shadow: #BFBFBF 0px 60px 30px -40px;
}
/* COG DROP and Menu drop */
.dropdown-menu
{
border: 1px solid #8B96B3;
border-radius: 8px 8px 6px 6px !important;
padding:14px 10px 17px 10px;
box-shadow: #565963 0px 6px 16px -3px;
}
BUTTON.dropdown-link, .LI.typeahead-item.typeahead-saved-search-item.selected, .typeahead-saved-search-item, .dropdown-menu li > a, .typeahead-items li:hover, .dropdown-menu li:hover, .dropdown-menu li > a:focus, li.typeahead-item.typeahead-saved-search-item:hover, LI.typeahead-item.typeahead-saved-search-item.selected:hover, .typeahead-items li, .typeahead-items:hover
{
border-radius: 4px !important;
}
.small-user-dropdown
{
margin-right:-1px !important;
padding: 0 0px 0 5px !important;
}
.small-user-dropdown:hover
{
background: #C2FFE9 !important;
border-radius:2px !important;
}
.UserActions .user-dropdown
{
color: #2D648F;
transition: all 0.2s ease-in-out;
margin: 1px 1px 0px 0px;
padding: 0 3px 0 8px;
border: 1px solid transparent;
}
.UserActions .user-dropdown:hover
{
color: #CF003B;
background:#FFF9CF;
box-shadow: #A3A3A3 0px 0px 1px 0px, lightgrey 0px 0px 1px 0px;
}
.permalink-header > .follow-bar > .btn-group
{
margin-right: 10px;
}
#stream-items-id .btn-group
{
margin-right: 5px;
}
.account.js-actionable-user.js-profile-popup-actionable > .follow-bar
{
margin-right: 45px;
}
.btn-group
{
margin-right: -45px;
}
.UserActions.UserActions--small.u-textLeft
{
margin-right: 45px;
}
/*
.ProfileNav-item.ProfileNav-item--userActions.u-floatRight.u-textRight.with-rightCaret
{
margin-right: -8%;
}
*/
.ProfileSidebar .Footer-item, .ProfileSidebar .Footer-link
{
color: #3B3F63;
}
.ProfileClusterFollow
{
background:none;
border:none;
outline: none !important;
}
.ProfileClusterFollow-closeButton
{
padding:8px 18px 8px 18px;
margin-top: -11px;
border-radius: 5px;
background: white;
border:1px solid #B0B7D6;
outline: none !important;
text-shadow: white 0px 0px 2px;
}
.ProfileClusterFollow-closeButton:hover
{
background: #B0FFDB;
box-shadow:#BCD1CE 0px 2px 4px;
border-color: #9297AD;
outline: none !important;
}
.ProfileClusterFollow-header
{
padding: 0px 33px 0px 0px;
}
.primary-btn:hover
{
border-color: transparent !important;
}
.primary-btn:active
{
background: #A797BF;
}
.primary-btn.retweet-action:focus
{
box-shadow: inset blue 0px 0px 1px 0px;
}
.related li
{
border: 1px solid #CECECE;
border-radius: 8px;
background: white;
}
/* LOGGED OUT STYLE */
.tweet.permalink-tweet
{
border-radius: 5px;
}
.module.signup-call-out.js-signup-call-out
{
border: 1px solid #CCCCD5;
}
/* SORRY NO EXIST */
h1
{
color: #4069CC;
text-shadow: none;
}
p, label
{
color: #292F33;
text-shadow: none;
}
.footer li, .footer a
{
color: #5E79B1;
text-shadow: white 0px 0px 3px;
}
.footer
{
background: white;
padding:10px 0px 10px 0px;
}
p a
{
color:darkblue;
}
/* SIGN IN PAGE */
.copyright, .front-container .footer, .front-container .footer a
{
color: #64667D !important;
font-size: 10pt;
}
.footer a:hover
{
color: blue !important;
}
.footer.inline-list
{
margin-bottom: -20px;
border: none !important;
}
.footer
{
border-radius:8px !important;
}
.front-welcome
{
margin-left:-10px;
}
.front-signup, .front-signin
{
margin-left: 10px;
box-shadow: #BBBEC9 0px 2px 13px 1px !important;
}
/* COOKIE NOTICE BS Promoted Tweets*/
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.mf-website, .promoted-tweet,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.with-media-forward.auto-expanded.media-forward.opened-tweet.animated-gif-playing.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.with-media-forward.auto-expanded.media-forward.with-social-proof,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards.has-native-media.with-media-forward.auto-expanded.media-forward,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.promoted-account-in-timeline,
.tweet.original-tweet.js-stream-tweet.js-actionable-tweet.js-profile-popup-actionable.js-original-tweet.promoted-tweet.has-cards
{
font-size:0px !important;
overflow:hidden !important;
text-overflow: clip !important;
border-width: 1px 0px 1px 0px !important;
line-height:0px;
min-height:0px;
padding:0px;
max-height: 0px;
background:transparent !important;
display:none;
visibility: hidden;
}
li.promoted-trend
{
display: none;
}
div.promoted-account
{
display: none;
}
.eu-cookie-notice
{
visibility: hidden;
display: none;
height: 0px;
}
/* 30 May 2015 updates below */
.Trends .trend-items, .trend-item.js-trend-item, .trend-items.js-trends
{
word-break: break-all !important;
display:inline-block !important;
}
.flex-module.trends-container
{
background: #F2EFE6 !important;
}
#Container, .TwitterCardsGrid
{
background: white !important;
}
.inline-reply-tweetbox
{
background: #EEF4F9 !important;
}
.Trends.Trends--wide.module.trends
{
border-radius: 7px !important;
}
.RelatedUsers
{
border-color: #D4CDC9 !important;
}
.AdaptiveSearchPage .AppContent,
.AdaptiveSearchPage .AppContent-main,
.AdaptiveFiltersBar
{
max-width: 99% !important;
min-width: 99% !important;
}
.content-main.AdaptiveSearchTimeline
{
margin-left: 20px !important;
}
.AdaptiveSearchTitle
{
border-radius: 8px;
}
.AdaptiveFiltersDropdown.dropdown-menu li > .AdaptiveFiltersDropdown-target:hover
{
border-radius: 0px !important;
background-color: #696969;
}
.AdaptiveFiltersBar-item:hover
{
background: #FCFCF0;
}
.AdaptiveFiltersBar-label
{
border-right-color: transparent !important;
border-left-color: transparent !important;
}
.AdaptiveFiltersBar-item.is-selected
{
background: #F8F8F8;
}
/* "not logged-in" overlay removed */
.logged-out .modal-overlay, #signup-dialog
{
display:none !important;
}
.modal-enabled,
.grid-enabled,
.overlay-enabled,
.gallery-enabled
{
overflow: auto !important;
}
.modal-enabled .global-nav-inner
{
margin-right: 0px;
}
.ScrollBump
{
display:none !important;
}
/* promoted stuff removed 2nd June 2015 */
div.promoted-account, .PromptbirdPrompt--aboveTimeline, #above-timeline-prompt, PromptbirdPrompt
{
display: none !important;
}
}
/*
UTOPIA IS COMING - some say the Singularity near.
2045 seems far away but relatively it is near.
Time passes quickly.
SOON!
*/ | 0.207054 | 0.097176 |
:root {
/**
* Media Queries
*/
@custom-media --xs (max-width: 767px);
@custom-media --s (min-width: 768px) and (max-width: 1023px);
@custom-media --s-up (min-width: 768px);
@custom-media --s-down (max-width: 1023px);
@custom-media --m (min-width: 1024px) and (max-width: 1279px);
@custom-media --m-up (min-width: 1024px);
@custom-media --m-down (max-width: 1279px);
@custom-media --l (min-width: 1280px) and (max-width: 1679px);
@custom-media --l-up (min-width: 1280px);
@custom-media --l-down (max-width: 1679px);
@custom-media --xl (min-width: 1680px);
/**
* Root
*/
--root-size: 16px;
--root-size-xl: var(--root-size);
--root-size-l: var(--root-size);
--root-size-m: var(--root-size);
--root-size-s: var(--root-size);
--root-size-xs: var(--root-size);
/**
* Focus Outline
*/
--focus-outline: var(--border-width) solid var(--info);
--focus-outline-offset: var(--border-width);
/**
* Gutter
*/
--gutter: var(--space-xs);
/**
* Container
*/
--container-xl: 80rem;
--container-l: 80rem;
--container-m: 70rem;
--container-s: 100%;
--container-xs: 100%;
/**
* Color
*/
--color: var(--dark);
/**
* Background
*/
--background: var(--white);
/**
* Border
*/
--border-width: 1px;
--border-style: solid;
--border-color: var(--light);
--border-radius: 0.125em;
/**
* Box Shadow
*/
--box-shadow: none;
--hover-box-shadow: none;
--focus-box-shadow: none;
--active-box-shadow: none;
/**
* Z-Index
*/
--z-index-high: 999;
--z-index-medium: 99;
--z-index-low: 9;
/**
* Speed
*/
--speed: var(--speed-fast);
--speed-fast: 200ms;
--speed-medium: 300ms;
--speed-slow: 500ms;
/**
* Height
*/
--height-xl: 4rem;
--height-l: 3.5rem;
--height-m: 3rem;
--height-s: 2.5rem;
--height-xs: 2rem;
/**
* Space
*/
--space-xl: 4rem;
--space-l: 3rem;
--space-m: 2rem;
--space-s: 1.5rem;
--space-xs: 1rem;
/**
* Margin
*/
--margin-xl: var(--space-xl);
--margin-l: var(--space-l);
--margin-m: var(--space-m);
--margin-s: var(--space-s);
--margin-xs: var(--space-xs);
/**
* Padding
*/
--padding-xl: var(--space-xl);
--padding-l: var(--space-l);
--padding-m: var(--space-m);
--padding-s: var(--space-s);
--padding-xs: var(--space-xs);
/**
* Max Width
*/
--max-width-xl: 70rem;
--max-width-l: 60rem;
--max-width-m: 50rem;
--max-width-s: 40rem;
--max-width-xs: 30rem;
/**
* Font
*/
--font-family: var(--font-family-system);
--font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
--font-family-sans-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
--font-family-serif: Georgia, 'Times New Roman', Times, serif;
--font-family-monospace: Monaco, Menlo, Consolas, 'Courier New', monospace;
/**
* Font Weights
*/
--font-weight: normal;
--font-weight-thin: 200;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--font-weight-black: 800;
/**
* Font Sizes
*/
--font-size-xl: 1.25rem;
--font-size-l: 1.125rem;
--font-size-m: 1rem;
--font-size-s: 0.875rem;
--font-size-xs: 0.75rem;
/**
* Line height
*/
--line-height: var(--line-height-s);
--line-height-xl: 1.8;
--line-height-l: 1.65;
--line-height-m: 1.5;
--line-height-s: 1.35;
--line-height-xs: 1.2;
/**
* Letter Spacing
*/
--letter-spacing: 0;
--letter-spacing-xl: 0.15em;
--letter-spacing-l: 0.1em;
--letter-spacing-m: 0.05em;
--letter-spacing-s: 0.025em;
--letter-spacing-xs: 0.01em;
} | turret/_globals.css | :root {
/**
* Media Queries
*/
@custom-media --xs (max-width: 767px);
@custom-media --s (min-width: 768px) and (max-width: 1023px);
@custom-media --s-up (min-width: 768px);
@custom-media --s-down (max-width: 1023px);
@custom-media --m (min-width: 1024px) and (max-width: 1279px);
@custom-media --m-up (min-width: 1024px);
@custom-media --m-down (max-width: 1279px);
@custom-media --l (min-width: 1280px) and (max-width: 1679px);
@custom-media --l-up (min-width: 1280px);
@custom-media --l-down (max-width: 1679px);
@custom-media --xl (min-width: 1680px);
/**
* Root
*/
--root-size: 16px;
--root-size-xl: var(--root-size);
--root-size-l: var(--root-size);
--root-size-m: var(--root-size);
--root-size-s: var(--root-size);
--root-size-xs: var(--root-size);
/**
* Focus Outline
*/
--focus-outline: var(--border-width) solid var(--info);
--focus-outline-offset: var(--border-width);
/**
* Gutter
*/
--gutter: var(--space-xs);
/**
* Container
*/
--container-xl: 80rem;
--container-l: 80rem;
--container-m: 70rem;
--container-s: 100%;
--container-xs: 100%;
/**
* Color
*/
--color: var(--dark);
/**
* Background
*/
--background: var(--white);
/**
* Border
*/
--border-width: 1px;
--border-style: solid;
--border-color: var(--light);
--border-radius: 0.125em;
/**
* Box Shadow
*/
--box-shadow: none;
--hover-box-shadow: none;
--focus-box-shadow: none;
--active-box-shadow: none;
/**
* Z-Index
*/
--z-index-high: 999;
--z-index-medium: 99;
--z-index-low: 9;
/**
* Speed
*/
--speed: var(--speed-fast);
--speed-fast: 200ms;
--speed-medium: 300ms;
--speed-slow: 500ms;
/**
* Height
*/
--height-xl: 4rem;
--height-l: 3.5rem;
--height-m: 3rem;
--height-s: 2.5rem;
--height-xs: 2rem;
/**
* Space
*/
--space-xl: 4rem;
--space-l: 3rem;
--space-m: 2rem;
--space-s: 1.5rem;
--space-xs: 1rem;
/**
* Margin
*/
--margin-xl: var(--space-xl);
--margin-l: var(--space-l);
--margin-m: var(--space-m);
--margin-s: var(--space-s);
--margin-xs: var(--space-xs);
/**
* Padding
*/
--padding-xl: var(--space-xl);
--padding-l: var(--space-l);
--padding-m: var(--space-m);
--padding-s: var(--space-s);
--padding-xs: var(--space-xs);
/**
* Max Width
*/
--max-width-xl: 70rem;
--max-width-l: 60rem;
--max-width-m: 50rem;
--max-width-s: 40rem;
--max-width-xs: 30rem;
/**
* Font
*/
--font-family: var(--font-family-system);
--font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
--font-family-sans-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
--font-family-serif: Georgia, 'Times New Roman', Times, serif;
--font-family-monospace: Monaco, Menlo, Consolas, 'Courier New', monospace;
/**
* Font Weights
*/
--font-weight: normal;
--font-weight-thin: 200;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--font-weight-black: 800;
/**
* Font Sizes
*/
--font-size-xl: 1.25rem;
--font-size-l: 1.125rem;
--font-size-m: 1rem;
--font-size-s: 0.875rem;
--font-size-xs: 0.75rem;
/**
* Line height
*/
--line-height: var(--line-height-s);
--line-height-xl: 1.8;
--line-height-l: 1.65;
--line-height-m: 1.5;
--line-height-s: 1.35;
--line-height-xs: 1.2;
/**
* Letter Spacing
*/
--letter-spacing: 0;
--letter-spacing-xl: 0.15em;
--letter-spacing-l: 0.1em;
--letter-spacing-m: 0.05em;
--letter-spacing-s: 0.025em;
--letter-spacing-xs: 0.01em;
} | 0.551332 | 0.10235 |
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
@import url('https://fonts.googleapis.com/css?family=Lato');
* {
margin: 0px;
}
.viewport {
position: relative;
background-image: linear-gradient(to right top, #a8aaab, #babdbe, #ccd0d2, #dfe4e6, #f2f8fa);
height: auto;
width: 100%;
-webkit-animation: AnimationName 10s ease infinite;
-moz-animation: AnimationName 10s ease infinite;
animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes AnimationName {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes AnimationName {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
.card p {
font-family: lato;
margin: 0px;
color: #767676;
font-weight: 400;
font-size: 15px;
line-height: 120%;
padding-left: 8%;
padding-right: 8%;
padding-top: 3%;
padding-bottom: 8%;
border-radius: 20px;
cursor: pointer;
transition: ease 1s;
-webkit-transition: ease 1s;
}
.card h3 {
font-family: lato;
margin: 0px;
color: #484848;
font-weight: 400;
font-size: 20px;
line-height: 90%;
padding-left: 8%;
padding-top: 8%;
padding-bottom: 3%;
border-radius: 20px;
cursor: pointer;
transition: ease 1s;
-webkit-transition: ease 1s;
}
h1 {
font-family: lato;
color: #767676;
font-weight: 400;
font-size: 35px;
line-height: 90%;
padding-bottom: 60px;
padding-top: 30px;
position: relative;
text-align: center;
}
.title {
width: 78%;
margin: auto;
padding-left: 0px;
padding-bottm: 0px;
}
.cards {
width: 80%;
position: relative;
margin-left: auto;
margin-right: auto;
padding-bottom: 200px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.card {
width: 26.7%;
position: relative;
background-color: white;
margin: 1.13%;
border-radius: 5px;
transition: 1s;
-webkit-transition: 0.5s;
cursor: pointer;
flex: 1 1 auto;
}
.card_unique {
width: 60%;
position: relative;
background-color: white;
margin: 1.13%;
border-radius: 5px;
transition: 1s;
-webkit-transition: 0.5s;
cursor: pointer;
flex: 1 1 auto;
}
.card_unique p {
font-family: lato;
margin: 0px;
color: #767676;
font-weight: 400;
font-size: 15px;
line-height: 120%;
padding-left: 8%;
padding-right: 8%;
padding-top: 3%;
padding-bottom: 8%;
border-radius: 20px;
cursor: pointer;
transition: ease 1s;
-webkit-transition: ease 1s;
}
.card_unique h3 {
font-family: lato;
margin: 0px;
color: #484848;
font-weight: 400;
font-size: 20px;
line-height: 90%;
padding-left: 8%;
padding-top: 8%;
padding-bottom: 3%;
border-radius: 20px;
cursor: pointer;
transition: ease 1s;
-webkit-transition: ease 1s;
}
.card:hover {
transform: scale(1.05);
box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1200px) {
.card {
width: 30%;
margin: 1.6%;
}
}
@media screen and (max-width: 800px) {
.card {
width: 45%;
margin: 2.5%;
}
}
@media screen and (max-width: 500px) {
.card {
width: 98%;
margin: 2%;
}
}
.card_img {
width: 100%;
height: 150px;
position: reltive;
border-radius: 5px 5px 0px 0px;
background-size: cover;
background-position: center center;
background-color: #20e6b3;
transition: 1s;
-webkit-transition: 1s;
}
.card1 {
background-image: url(https://source.unsplash.com/KoHjBn6li0Q/1600x900);
}
.card2 {
background-image: url(https://source.unsplash.com/wBiRh5_CQ2U/1600x900);
}
.card3 {
background-image: url(https://source.unsplash.com/ud9u7beav2s/1600x900);
}
.card4 {
background-image: url(https://source.unsplash.com/ZAd3Z9wOgOs/1600x900);
}
.card5 {
background-image: url(https://source.unsplash.com/KYhXU_mlWwU/1600x900);
}
.line {
height: 1px;
width: 84%;
margin: auto;
background-color: #767676;
}
.title input {
background: transparent;
border: 1px solid white;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 20px;
display: inline;
font-family: lato;
color: white;
font-size: 18px;
line-height: 90%;
border-radius: 30px;
width: 150px;
float: right;
margin-top: 30px;
}
.title textarea:focus, input:focus {
outline: none;
}
.plus {
width: 20px;
height: 20px;
background: transparent;
border-radius: 50%;
position: absolute;
border: 2px solid white;
top: 10px;
right: 10px;
transition: 1s;
-webkit-transition: 1s;
}
.plus:hover {
transform: scale(1.1) rotate(90deg);
}
.plus p {
padding: 0px !important;
display: inline;
margin: 0px;
line-height: 50%;
left: 50%;
top: 45.3%;
transform: translate(-50%, -50%);
position: absolute;
color: white;
}
.zoomed {
width: 100%;
}
/*nav bar*/
a {
color: #484848;
text-decoration: none;
padding:20px 5px;
display: inline-block;
width: 100%;
text-align: center;
transition:all 0.5s;
}
a:hover {
background:rgba(0,0,0,0.4);
}
.nav {
max-width: 800px;
margin: 0 auto;
padding:50px;
}
.nav ul {
list-style: none;
margin: 0;
padding: 0;
display:flex;
}
.nav li {
flex:3;
}
.nav .social {
flex:1;
}
@media all and (max-width:1000px) {
.nav ul {
display: flex;
flex-direction: column;
}
#item1{
order: 2;
}
#item2 {
display: block;
order: 3;
}
#item3 {
display: block;
order: 1;
}
#item4 {
display: block;
order: 4;
}
#item5 {
display: block;
order: 5;
}
.nav li {
flex:1 100%;
}
}
@media all and (max-width:500px) {
.nav li {
flex-basis:100%;
} | home.css | html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
@import url('https://fonts.googleapis.com/css?family=Lato');
* {
margin: 0px;
}
.viewport {
position: relative;
background-image: linear-gradient(to right top, #a8aaab, #babdbe, #ccd0d2, #dfe4e6, #f2f8fa);
height: auto;
width: 100%;
-webkit-animation: AnimationName 10s ease infinite;
-moz-animation: AnimationName 10s ease infinite;
animation: AnimationName 10s ease infinite;
}
@-webkit-keyframes AnimationName {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes AnimationName {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes AnimationName {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
.card p {
font-family: lato;
margin: 0px;
color: #767676;
font-weight: 400;
font-size: 15px;
line-height: 120%;
padding-left: 8%;
padding-right: 8%;
padding-top: 3%;
padding-bottom: 8%;
border-radius: 20px;
cursor: pointer;
transition: ease 1s;
-webkit-transition: ease 1s;
}
.card h3 {
font-family: lato;
margin: 0px;
color: #484848;
font-weight: 400;
font-size: 20px;
line-height: 90%;
padding-left: 8%;
padding-top: 8%;
padding-bottom: 3%;
border-radius: 20px;
cursor: pointer;
transition: ease 1s;
-webkit-transition: ease 1s;
}
h1 {
font-family: lato;
color: #767676;
font-weight: 400;
font-size: 35px;
line-height: 90%;
padding-bottom: 60px;
padding-top: 30px;
position: relative;
text-align: center;
}
.title {
width: 78%;
margin: auto;
padding-left: 0px;
padding-bottm: 0px;
}
.cards {
width: 80%;
position: relative;
margin-left: auto;
margin-right: auto;
padding-bottom: 200px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.card {
width: 26.7%;
position: relative;
background-color: white;
margin: 1.13%;
border-radius: 5px;
transition: 1s;
-webkit-transition: 0.5s;
cursor: pointer;
flex: 1 1 auto;
}
.card_unique {
width: 60%;
position: relative;
background-color: white;
margin: 1.13%;
border-radius: 5px;
transition: 1s;
-webkit-transition: 0.5s;
cursor: pointer;
flex: 1 1 auto;
}
.card_unique p {
font-family: lato;
margin: 0px;
color: #767676;
font-weight: 400;
font-size: 15px;
line-height: 120%;
padding-left: 8%;
padding-right: 8%;
padding-top: 3%;
padding-bottom: 8%;
border-radius: 20px;
cursor: pointer;
transition: ease 1s;
-webkit-transition: ease 1s;
}
.card_unique h3 {
font-family: lato;
margin: 0px;
color: #484848;
font-weight: 400;
font-size: 20px;
line-height: 90%;
padding-left: 8%;
padding-top: 8%;
padding-bottom: 3%;
border-radius: 20px;
cursor: pointer;
transition: ease 1s;
-webkit-transition: ease 1s;
}
.card:hover {
transform: scale(1.05);
box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1200px) {
.card {
width: 30%;
margin: 1.6%;
}
}
@media screen and (max-width: 800px) {
.card {
width: 45%;
margin: 2.5%;
}
}
@media screen and (max-width: 500px) {
.card {
width: 98%;
margin: 2%;
}
}
.card_img {
width: 100%;
height: 150px;
position: reltive;
border-radius: 5px 5px 0px 0px;
background-size: cover;
background-position: center center;
background-color: #20e6b3;
transition: 1s;
-webkit-transition: 1s;
}
.card1 {
background-image: url(https://source.unsplash.com/KoHjBn6li0Q/1600x900);
}
.card2 {
background-image: url(https://source.unsplash.com/wBiRh5_CQ2U/1600x900);
}
.card3 {
background-image: url(https://source.unsplash.com/ud9u7beav2s/1600x900);
}
.card4 {
background-image: url(https://source.unsplash.com/ZAd3Z9wOgOs/1600x900);
}
.card5 {
background-image: url(https://source.unsplash.com/KYhXU_mlWwU/1600x900);
}
.line {
height: 1px;
width: 84%;
margin: auto;
background-color: #767676;
}
.title input {
background: transparent;
border: 1px solid white;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 20px;
display: inline;
font-family: lato;
color: white;
font-size: 18px;
line-height: 90%;
border-radius: 30px;
width: 150px;
float: right;
margin-top: 30px;
}
.title textarea:focus, input:focus {
outline: none;
}
.plus {
width: 20px;
height: 20px;
background: transparent;
border-radius: 50%;
position: absolute;
border: 2px solid white;
top: 10px;
right: 10px;
transition: 1s;
-webkit-transition: 1s;
}
.plus:hover {
transform: scale(1.1) rotate(90deg);
}
.plus p {
padding: 0px !important;
display: inline;
margin: 0px;
line-height: 50%;
left: 50%;
top: 45.3%;
transform: translate(-50%, -50%);
position: absolute;
color: white;
}
.zoomed {
width: 100%;
}
/*nav bar*/
a {
color: #484848;
text-decoration: none;
padding:20px 5px;
display: inline-block;
width: 100%;
text-align: center;
transition:all 0.5s;
}
a:hover {
background:rgba(0,0,0,0.4);
}
.nav {
max-width: 800px;
margin: 0 auto;
padding:50px;
}
.nav ul {
list-style: none;
margin: 0;
padding: 0;
display:flex;
}
.nav li {
flex:3;
}
.nav .social {
flex:1;
}
@media all and (max-width:1000px) {
.nav ul {
display: flex;
flex-direction: column;
}
#item1{
order: 2;
}
#item2 {
display: block;
order: 3;
}
#item3 {
display: block;
order: 1;
}
#item4 {
display: block;
order: 4;
}
#item5 {
display: block;
order: 5;
}
.nav li {
flex:1 100%;
}
}
@media all and (max-width:500px) {
.nav li {
flex-basis:100%;
} | 0.483161 | 0.093678 |
body {
font-family: 'Helvetica', sans-serif;
cursor: default;
user-select: text;
}
.App {
text-align: center;
height: calc(100vh - 42px);
width: 100vw;
overflow-x: hidden;
margin-top: 42px;
background-color: rgb(97, 164, 255);
}
button {
position: fixed;
font-size: 20px;
font-weight: bold;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 50px;
color: white;
background-color: black;
border: 0;
z-index: 11;
cursor: pointer;
animation: expand-max .25s;
transform-origin: bottom;
}
button:hover {
color: gold;
background-color: #222;
}
.home {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 100%;
}
.home .top,
.home .bottom {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
.home .bottom {
flex-direction: row;
}
.logo {
height: 200px;
width: 200;
filter: blur(.5px);
perspective: 500px;
animation: in-and-out 5s linear infinite;
}
.black-card-logo,
.white-card-logo {
width: 100px;
height: 140px;
border-radius: 12px;
align-self: center;
position: fixed;
animation-duration: 1.5s, 2.5s;
animation-delay: 0s, 1.5s;
animation-timing-function: ease-in-out, linear;
animation-iteration-count: 1, infinite;
}
.black-card-logo {
background-color: black;
border: 4px solid white;
left: calc(50vw - 54px);
transform-origin: bottom left;
animation-name: fly-in-left-and-tilt, jiggle-left;
}
.white-card-logo {
background-color: white;
border: 4px solid black;
right: calc(50vw - 54px);
z-index: 1;
transform-origin: bottom right;
animation-name: fly-in-right-and-tilt, jiggle-right;
}
.home button {
position: relative;
margin: 10px;
width: 75vw;
animation: none;
}
.home input {
font-size: 3.5em;
margin: 15px;
padding: 10px;
text-align: center;
width: 75vw;
box-sizing: border-box;
border: none;
}
p, h3 {
padding: 0;
margin: 0;
}
header {
background-color: #000;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 13;
cursor: default;
}
header h3 {
padding: 20px;
}
.menu-button {
padding: 10px;
font-size: 18px;
cursor: pointer;
user-select: text;
transition: .25s all;
}
.menu-button.selected {
background: white;
color: black;
}
.menu {
position: absolute;
background: rgb(150, 150, 160);
top: 41px;
right: 0px;
width: 100vw;
height: 290px;
z-index: 12;
padding: 10px;
box-sizing: border-box;
animation: expand .25s;
transition: .25s all;
border-bottom: 2px solid rgb(34, 34, 44);
box-shadow: 0px 5px 20px #333;
}
.expanded {
height: 75vh;
}
.menu-list {
list-style: none;
padding: 0;
transform-origin: top;
animation: expand-max .25s;
}
.menu-list .room-code-menu,
.menu-list .room-code-menu:hover,
.menu-list .room-code-menu:active {
background-color: rgb(211, 211, 221);
color: #555;
cursor: default;
border: 1px solid rgb(128, 128, 138);
border-radius: 5px;
}
.menu-list li {
padding: 10px;
margin: 10px 0;
border: 1px solid black;
font-weight: bold;
background-color: black;
color: white;
}
.menu-list li:hover,
.menu-list li:active {
background-color: #222;
color: gold;
cursor: pointer;
}
.exit-screen {
position: absolute;
right: 15px;
top: 15px;
font-size: 32px;
color: darkorange;
z-index: 15;
cursor: pointer;
}
.exit-screen:hover {
color: gold;
}
.exit-screen:active {
color: orangered;
}
.scores {
flex-direction: column;
margin-top: 50px;
align-items: flex-end;
}
.scores .player {
display: flex;
flex-direction: row;
justify-content: space-between;
margin: 5px;
padding-right: 12px;
background: rgb(211, 211, 221);
border-radius: 20px;
font-size: 20px;
font-weight: bold;
}
.scores .player .name {
padding: 5px 10px;
margin: 0px 5px 0px 0px;
background: black;
color: white;
border-radius: 20px;
text-align: left;
font-weight: normal;
}
.winners {
height: 100%;
width: 100%;
}
.winner-container {
height: 100%;
width: 100%;
display: flex;
overflow: hidden;
padding-top: 20px;
box-sizing: border-box;
}
.winner {
display:flex;
flex-direction: column;
flex: 1;
}
.winner .white-card,
.winner .black-card {
height: 200px;
width: 150px;
border-radius: 10px;
font-size: 14px;
}
.winner .white-card {
transform: rotate(15deg) !important;
align-self: flex-end;
animation: none;
margin-bottom: -155px;
}
.winner .black-card {
transform: rotate(-20deg) !important;
align-self: flex-start;
margin-bottom: -75px;
}
.winner-name {
z-index: 13;
align-self: flex-start;
background: black;
color: white;
padding: 5px;
text-align: left;
position: absolute;
bottom: 10px;
left: 10px;
}
.prev-winner,
.next-winner {
width: 50px;
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
margin-top: -20px;
}
.prev-winner:active,
.next-winner:active {
background: black;
color: white;
}
.about {
height: 100%;
width: 100%;
overflow: auto;
text-align: justify;
}
.about h1 {
margin-top: 5px;
}
.about p {
font-weight: bold;
}
.lobby {
display: flex;
flex-direction: column;
align-items: center;
height: calc(100% - 50px);
}
.lobby h1 {
margin-top: 0;
}
.lobby .player-list-container {
background-color: #333;
width: 90vw;
color: white;
padding: 10px 0;
border-radius: 10px;
overflow: auto;
}
.lobby .player-list {
display: flex;
flex: 1;
justify-content: space-around;
flex-wrap: wrap;
text-align: center;
padding: 10px;
overflow: auto;
width: 100%;
box-sizing: border-box;
}
.lobby .player-list p {
margin: 10px;
font-size: 20px;
padding: 5px 10px;
border-radius: 25px;
color: white;
}
.message {
display: flex;
align-items: center;
font-style: italic;
color: white;
height: 50px;
padding: 5px;
}
.player .message {
padding: 0px;
height: inherit;
color: rgb(150, 150, 160);
/* text-shadow: 1px 0px 2px rgb(128, 128, 138), -1px 0px 2px rgb(128, 128, 138), 0px 1px 2px rgb(128, 128, 138), 0px -1px 2px rgb(128, 128, 138); */
}
.card-czar .message {
text-shadow: 0px 0px 10px black;
animation: fly-in-left .25s ease-out forwards;
/* text-shadow: 1px 0px 2px black, -1px 0px 2px black, 0px 1px 2px black, 0px -1px 2px black; */
}
.game {
height: 100%;
}
.card-czar,
.player {
display: inline-flex;
flex-direction: row;
align-items: center;
height: 100%;
}
.player {
justify-content: flex-start;
}
.player .white-cards {
width: 100%;
overflow-y: auto;
flex: 1;
padding: 10px 0;
}
.player .white-cards .white-card {
margin: 0 auto;
}
.card-czar {
justify-content: space-around;
overflow: hidden;
/* animation: fadein .5s; */
}
.card-czar-container {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
transition: .25s all;
animation: fadein .25s;
}
.white-card,
.black-card {
position: relative;
cursor: default;
user-select: none;
font-weight: bold;
padding: 13px;
}
.white-card {
background-color: white;
height: 225px;
width: 175px;
border-radius: 10px;
border: 1px solid black;
text-align: center;
box-sizing: border-box;
transition: .25s all;
animation: flyin .5s;
}
.white-card p {
text-align: left;
}
.player .white-card:hover button {
display: block;
}
.player .selection {
padding: 10px;
background-color: #222;
box-sizing: border-box;
text-align: left;
width: 100%;
height: auto;
max-height: 400px;
border-bottom: 2px solid black;
box-shadow: 0px 5px 20px #333;
transform-origin: top;
animation: expand-max .35s;
transition: .25s all;
z-index: 11;
}
.card-logo {
position: absolute;
display: flex;
align-items: center;
font-size: 6px;
bottom: 15px;
left: 15px;
}
.card-logo img {
height: 12px;
}
.card-logo span {
padding: 2px;
}
.selection .selected-card {
border: 1px solid black;
padding: 10px;
background-color: white;
}
.white-card button {
display: none;
position: relative;
width: 100px;
height: 35px;
margin: 15px auto;
cursor: pointer;
animation: fadein .25s;
}
.black-card {
background-color: black;
color: white;
text-align: left;
box-sizing: border-box;
}
.card-czar .black-card {
height: 225px;
width: 175px;
border-radius: 15px;
margin-top: 10px;
}
.player .black-card-selection {
background-color: black;
color: white;
font-weight: bold;
text-align: left;
box-sizing: border-box;
position: relative;
cursor: default;
user-select: none;
font-weight: bold;
padding: 10px;
width: 100%;
}
.player-selections {
display: flex;
justify-content: center;
align-items: flex-start;
flex: 1;
width: 100vw;
margin-top: 20px;
transform-origin: bottom;
animation: flyup .5s;
}
.player-selections .white-card {
margin-bottom: -70%;
animation: none;
}
.prev-selection,
.next-selection {
filter: blur(4px);
transform: scale(.8);
cursor: pointer;
}
.prev-selection .white-card,
.next-selection .white-card {
cursor: pointer;
}
.prev-selection {
margin-left: -15%;
}
.next-selection {
margin-right: -15%;
}
.popup {
position: fixed;
top: 41px;
left: 0px;
width: 100%;
padding: 5px;
animation: slide-in-fade-out 2s linear;
background: gold;
font-size: 1em;
z-index: 12;
}
.modal-overlay {
position: fixed;
display: flex;
align-items: center;
justify-content: center;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0,0,0,0.45);
padding: 100px 50px;
z-index: 100;
}
.modal-window {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(190, 190, 200);
border-radius: 5px;
max-width: 300px;
min-height: 200px;
padding: 30px;
z-index: 101;
font-weight: bold;
box-shadow: 5px 5px 10px rgb(24, 24, 34);
animation: fly-in-left .25s;
}
.modal-buttons {
position: absolute;
bottom: 0;
display: flex;
width: 100%;
}
.modal-buttons button {
position: relative;
flex: 1;
cursor: pointer;
animation: none;
}
.ready {
background-color: gold;
color: black !important;
}
.selected {
background-color: black;
color: white;
}
.selection .pending {
color: grey;
background-color: lightgray;
}
.selection .pending .selected-card-number {
border: 1px solid grey;
}
.invisible {
opacity: 0;
}
.remove-selected-card {
width: 20px;
height: 20px;
margin-left: 10px;
color: red;
float: right;
cursor: pointer;
font-size: 20px;
}
.selected-card p {
display: flex;
justify-content: space-between;
align-items: center;
}
.selected-card-text {
flex: 1;
}
.selected-card-number {
margin-right: 10px;
font-weight: bold;
border: 1px solid black;
border-radius: 10px;
padding: 0 5px
}
footer {
position: absolute;
width: calc(100% - 20px);
text-align: center;
bottom: 10px;
}
/* ANIMATION KEYFRAMES HERE */
@keyframes expand {
0% { height: 1px; }
}
@keyframes expand-max {
0% {
max-height: 1px;
transform: scaleY(0);
}
}
@keyframes fadein {
0% { opacity: 0 }
100% { opacity: 1 }
}
@keyframes flyin {
0% { transform: translateY(-1000px) rotate(15deg); }
}
@keyframes flyup {
0% { transform: translateY(100vh) }
}
@keyframes flyout {
100% { transform: translateY(-1000px) rotate(15deg); }
}
@keyframes slide-in-fade-out {
0% { transform: translateY(-100px) }
10% { transform: translateY(0px) }
90% { opacity: 1; }
100% { opacity: 0; }
}
@keyframes fly-in-left {
0% { transform: translateX(-100vw); }
}
@keyframes fly-in-left-and-tilt {
0% { transform: translateX(-100vw) }
20% { transform: translateX(0px) }
40% { transform: translateX(0px) }
60% { transform: rotate(0deg); }
80% { transform: rotate(-22deg); }
100% { transform: rotate(-22deg); }
}
@keyframes jiggle-left {
0% { transform: rotate(-22deg); }
80% { transform: rotate(-22deg); }
85% { transform: rotate(-27deg); }
90% { transform: rotate(-22deg); }
95% { transform: rotate(-27deg); }
100% { transform: rotate(-22deg); }
}
@keyframes fly-in-right-and-tilt {
0% { transform: translateX(100vw); }
20% { transform: translateX(100vw); }
40% { transform: translateX(0px); }
60% { transform: rotate(0deg); }
80% { transform: rotate(22deg); }
100% { transform: rotate(22deg); }
}
@keyframes jiggle-right {
0% { transform: rotate(22deg); }
80% { transform: rotate(22deg); }
85% { transform: rotate(27deg); }
90% { transform: rotate(22deg); }
95% { transform: rotate(27deg); }
100% { transform: rotate(22deg); }
} | client/src/App.css | body {
font-family: 'Helvetica', sans-serif;
cursor: default;
user-select: text;
}
.App {
text-align: center;
height: calc(100vh - 42px);
width: 100vw;
overflow-x: hidden;
margin-top: 42px;
background-color: rgb(97, 164, 255);
}
button {
position: fixed;
font-size: 20px;
font-weight: bold;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 50px;
color: white;
background-color: black;
border: 0;
z-index: 11;
cursor: pointer;
animation: expand-max .25s;
transform-origin: bottom;
}
button:hover {
color: gold;
background-color: #222;
}
.home {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 100%;
}
.home .top,
.home .bottom {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
.home .bottom {
flex-direction: row;
}
.logo {
height: 200px;
width: 200;
filter: blur(.5px);
perspective: 500px;
animation: in-and-out 5s linear infinite;
}
.black-card-logo,
.white-card-logo {
width: 100px;
height: 140px;
border-radius: 12px;
align-self: center;
position: fixed;
animation-duration: 1.5s, 2.5s;
animation-delay: 0s, 1.5s;
animation-timing-function: ease-in-out, linear;
animation-iteration-count: 1, infinite;
}
.black-card-logo {
background-color: black;
border: 4px solid white;
left: calc(50vw - 54px);
transform-origin: bottom left;
animation-name: fly-in-left-and-tilt, jiggle-left;
}
.white-card-logo {
background-color: white;
border: 4px solid black;
right: calc(50vw - 54px);
z-index: 1;
transform-origin: bottom right;
animation-name: fly-in-right-and-tilt, jiggle-right;
}
.home button {
position: relative;
margin: 10px;
width: 75vw;
animation: none;
}
.home input {
font-size: 3.5em;
margin: 15px;
padding: 10px;
text-align: center;
width: 75vw;
box-sizing: border-box;
border: none;
}
p, h3 {
padding: 0;
margin: 0;
}
header {
background-color: #000;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 13;
cursor: default;
}
header h3 {
padding: 20px;
}
.menu-button {
padding: 10px;
font-size: 18px;
cursor: pointer;
user-select: text;
transition: .25s all;
}
.menu-button.selected {
background: white;
color: black;
}
.menu {
position: absolute;
background: rgb(150, 150, 160);
top: 41px;
right: 0px;
width: 100vw;
height: 290px;
z-index: 12;
padding: 10px;
box-sizing: border-box;
animation: expand .25s;
transition: .25s all;
border-bottom: 2px solid rgb(34, 34, 44);
box-shadow: 0px 5px 20px #333;
}
.expanded {
height: 75vh;
}
.menu-list {
list-style: none;
padding: 0;
transform-origin: top;
animation: expand-max .25s;
}
.menu-list .room-code-menu,
.menu-list .room-code-menu:hover,
.menu-list .room-code-menu:active {
background-color: rgb(211, 211, 221);
color: #555;
cursor: default;
border: 1px solid rgb(128, 128, 138);
border-radius: 5px;
}
.menu-list li {
padding: 10px;
margin: 10px 0;
border: 1px solid black;
font-weight: bold;
background-color: black;
color: white;
}
.menu-list li:hover,
.menu-list li:active {
background-color: #222;
color: gold;
cursor: pointer;
}
.exit-screen {
position: absolute;
right: 15px;
top: 15px;
font-size: 32px;
color: darkorange;
z-index: 15;
cursor: pointer;
}
.exit-screen:hover {
color: gold;
}
.exit-screen:active {
color: orangered;
}
.scores {
flex-direction: column;
margin-top: 50px;
align-items: flex-end;
}
.scores .player {
display: flex;
flex-direction: row;
justify-content: space-between;
margin: 5px;
padding-right: 12px;
background: rgb(211, 211, 221);
border-radius: 20px;
font-size: 20px;
font-weight: bold;
}
.scores .player .name {
padding: 5px 10px;
margin: 0px 5px 0px 0px;
background: black;
color: white;
border-radius: 20px;
text-align: left;
font-weight: normal;
}
.winners {
height: 100%;
width: 100%;
}
.winner-container {
height: 100%;
width: 100%;
display: flex;
overflow: hidden;
padding-top: 20px;
box-sizing: border-box;
}
.winner {
display:flex;
flex-direction: column;
flex: 1;
}
.winner .white-card,
.winner .black-card {
height: 200px;
width: 150px;
border-radius: 10px;
font-size: 14px;
}
.winner .white-card {
transform: rotate(15deg) !important;
align-self: flex-end;
animation: none;
margin-bottom: -155px;
}
.winner .black-card {
transform: rotate(-20deg) !important;
align-self: flex-start;
margin-bottom: -75px;
}
.winner-name {
z-index: 13;
align-self: flex-start;
background: black;
color: white;
padding: 5px;
text-align: left;
position: absolute;
bottom: 10px;
left: 10px;
}
.prev-winner,
.next-winner {
width: 50px;
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
margin-top: -20px;
}
.prev-winner:active,
.next-winner:active {
background: black;
color: white;
}
.about {
height: 100%;
width: 100%;
overflow: auto;
text-align: justify;
}
.about h1 {
margin-top: 5px;
}
.about p {
font-weight: bold;
}
.lobby {
display: flex;
flex-direction: column;
align-items: center;
height: calc(100% - 50px);
}
.lobby h1 {
margin-top: 0;
}
.lobby .player-list-container {
background-color: #333;
width: 90vw;
color: white;
padding: 10px 0;
border-radius: 10px;
overflow: auto;
}
.lobby .player-list {
display: flex;
flex: 1;
justify-content: space-around;
flex-wrap: wrap;
text-align: center;
padding: 10px;
overflow: auto;
width: 100%;
box-sizing: border-box;
}
.lobby .player-list p {
margin: 10px;
font-size: 20px;
padding: 5px 10px;
border-radius: 25px;
color: white;
}
.message {
display: flex;
align-items: center;
font-style: italic;
color: white;
height: 50px;
padding: 5px;
}
.player .message {
padding: 0px;
height: inherit;
color: rgb(150, 150, 160);
/* text-shadow: 1px 0px 2px rgb(128, 128, 138), -1px 0px 2px rgb(128, 128, 138), 0px 1px 2px rgb(128, 128, 138), 0px -1px 2px rgb(128, 128, 138); */
}
.card-czar .message {
text-shadow: 0px 0px 10px black;
animation: fly-in-left .25s ease-out forwards;
/* text-shadow: 1px 0px 2px black, -1px 0px 2px black, 0px 1px 2px black, 0px -1px 2px black; */
}
.game {
height: 100%;
}
.card-czar,
.player {
display: inline-flex;
flex-direction: row;
align-items: center;
height: 100%;
}
.player {
justify-content: flex-start;
}
.player .white-cards {
width: 100%;
overflow-y: auto;
flex: 1;
padding: 10px 0;
}
.player .white-cards .white-card {
margin: 0 auto;
}
.card-czar {
justify-content: space-around;
overflow: hidden;
/* animation: fadein .5s; */
}
.card-czar-container {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
transition: .25s all;
animation: fadein .25s;
}
.white-card,
.black-card {
position: relative;
cursor: default;
user-select: none;
font-weight: bold;
padding: 13px;
}
.white-card {
background-color: white;
height: 225px;
width: 175px;
border-radius: 10px;
border: 1px solid black;
text-align: center;
box-sizing: border-box;
transition: .25s all;
animation: flyin .5s;
}
.white-card p {
text-align: left;
}
.player .white-card:hover button {
display: block;
}
.player .selection {
padding: 10px;
background-color: #222;
box-sizing: border-box;
text-align: left;
width: 100%;
height: auto;
max-height: 400px;
border-bottom: 2px solid black;
box-shadow: 0px 5px 20px #333;
transform-origin: top;
animation: expand-max .35s;
transition: .25s all;
z-index: 11;
}
.card-logo {
position: absolute;
display: flex;
align-items: center;
font-size: 6px;
bottom: 15px;
left: 15px;
}
.card-logo img {
height: 12px;
}
.card-logo span {
padding: 2px;
}
.selection .selected-card {
border: 1px solid black;
padding: 10px;
background-color: white;
}
.white-card button {
display: none;
position: relative;
width: 100px;
height: 35px;
margin: 15px auto;
cursor: pointer;
animation: fadein .25s;
}
.black-card {
background-color: black;
color: white;
text-align: left;
box-sizing: border-box;
}
.card-czar .black-card {
height: 225px;
width: 175px;
border-radius: 15px;
margin-top: 10px;
}
.player .black-card-selection {
background-color: black;
color: white;
font-weight: bold;
text-align: left;
box-sizing: border-box;
position: relative;
cursor: default;
user-select: none;
font-weight: bold;
padding: 10px;
width: 100%;
}
.player-selections {
display: flex;
justify-content: center;
align-items: flex-start;
flex: 1;
width: 100vw;
margin-top: 20px;
transform-origin: bottom;
animation: flyup .5s;
}
.player-selections .white-card {
margin-bottom: -70%;
animation: none;
}
.prev-selection,
.next-selection {
filter: blur(4px);
transform: scale(.8);
cursor: pointer;
}
.prev-selection .white-card,
.next-selection .white-card {
cursor: pointer;
}
.prev-selection {
margin-left: -15%;
}
.next-selection {
margin-right: -15%;
}
.popup {
position: fixed;
top: 41px;
left: 0px;
width: 100%;
padding: 5px;
animation: slide-in-fade-out 2s linear;
background: gold;
font-size: 1em;
z-index: 12;
}
.modal-overlay {
position: fixed;
display: flex;
align-items: center;
justify-content: center;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0,0,0,0.45);
padding: 100px 50px;
z-index: 100;
}
.modal-window {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(190, 190, 200);
border-radius: 5px;
max-width: 300px;
min-height: 200px;
padding: 30px;
z-index: 101;
font-weight: bold;
box-shadow: 5px 5px 10px rgb(24, 24, 34);
animation: fly-in-left .25s;
}
.modal-buttons {
position: absolute;
bottom: 0;
display: flex;
width: 100%;
}
.modal-buttons button {
position: relative;
flex: 1;
cursor: pointer;
animation: none;
}
.ready {
background-color: gold;
color: black !important;
}
.selected {
background-color: black;
color: white;
}
.selection .pending {
color: grey;
background-color: lightgray;
}
.selection .pending .selected-card-number {
border: 1px solid grey;
}
.invisible {
opacity: 0;
}
.remove-selected-card {
width: 20px;
height: 20px;
margin-left: 10px;
color: red;
float: right;
cursor: pointer;
font-size: 20px;
}
.selected-card p {
display: flex;
justify-content: space-between;
align-items: center;
}
.selected-card-text {
flex: 1;
}
.selected-card-number {
margin-right: 10px;
font-weight: bold;
border: 1px solid black;
border-radius: 10px;
padding: 0 5px
}
footer {
position: absolute;
width: calc(100% - 20px);
text-align: center;
bottom: 10px;
}
/* ANIMATION KEYFRAMES HERE */
@keyframes expand {
0% { height: 1px; }
}
@keyframes expand-max {
0% {
max-height: 1px;
transform: scaleY(0);
}
}
@keyframes fadein {
0% { opacity: 0 }
100% { opacity: 1 }
}
@keyframes flyin {
0% { transform: translateY(-1000px) rotate(15deg); }
}
@keyframes flyup {
0% { transform: translateY(100vh) }
}
@keyframes flyout {
100% { transform: translateY(-1000px) rotate(15deg); }
}
@keyframes slide-in-fade-out {
0% { transform: translateY(-100px) }
10% { transform: translateY(0px) }
90% { opacity: 1; }
100% { opacity: 0; }
}
@keyframes fly-in-left {
0% { transform: translateX(-100vw); }
}
@keyframes fly-in-left-and-tilt {
0% { transform: translateX(-100vw) }
20% { transform: translateX(0px) }
40% { transform: translateX(0px) }
60% { transform: rotate(0deg); }
80% { transform: rotate(-22deg); }
100% { transform: rotate(-22deg); }
}
@keyframes jiggle-left {
0% { transform: rotate(-22deg); }
80% { transform: rotate(-22deg); }
85% { transform: rotate(-27deg); }
90% { transform: rotate(-22deg); }
95% { transform: rotate(-27deg); }
100% { transform: rotate(-22deg); }
}
@keyframes fly-in-right-and-tilt {
0% { transform: translateX(100vw); }
20% { transform: translateX(100vw); }
40% { transform: translateX(0px); }
60% { transform: rotate(0deg); }
80% { transform: rotate(22deg); }
100% { transform: rotate(22deg); }
}
@keyframes jiggle-right {
0% { transform: rotate(22deg); }
80% { transform: rotate(22deg); }
85% { transform: rotate(27deg); }
90% { transform: rotate(22deg); }
95% { transform: rotate(27deg); }
100% { transform: rotate(22deg); }
} | 0.456652 | 0.082401 |
@charset "UTF-8";
/* Fonts */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i");
@import url("lib/fontawesome-all.min.css");
/* General */
@import url("lib/normalize.css");
@import url("lib/grid.css");
.page-header h1 {
position: absolute;
margin: 35px 535px 0;
text-align: center;
color: #fff;
text-shadow: 1px 1px 50px rgb(182, 255, 63);
}
.body {
font-family: "Open Sans", sans-serif;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
img {
max-width: 100%;
display: block;
}
ul, ol{
margin: 0;
padding: 0;
list-style-type: none;
}
.page-nav{
background-color: rgb(168, 168, 168);
}
.page-nav ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
.page-nav li {
display: inline-block;
padding: 0 70px 0 50px;
}
.page-nav a {
display: block;
background-color: rgb(168, 168, 168);
padding: 10px 20px;
font-family: arial;
font-size: 14;
text-decoration: none;
color: #fff;
}
.page-nav a:hover{
text-shadow: 6px 6px 80px rgb(0, 0, 0);
color: rgb(0, 0, 0);
transition: 0.4s;
}
/* Header */
/* Nav */
/* Main */
.page-main{
padding: 65px 0 65px;
}
.page-main h2 {
color: rgb(0, 0, 0);
}
.page-main h2:first-child {
margin-top: 0;
}
/* Form */
/*.form[class=form]{}*/
.form {
border: 1px solid rgb(0, 0, 0);
padding: 50px;
}
.form__label{
display: block;
margin-bottom: 4px;
}
.form__element{
margin-bottom: 25px;
}
/*
.form input [type=text],
.form input [type=e-mail],
.form input [type=tel],
.form input [type=number],
select,
textarea {
width: 100%;
}
*/
.form__text{
width: 100%;
font-size: 14px;
padding: 10px 20px;
box-sizing: border-box;
outline: none;
border: 1px solid #ccc;
}
.form__text:focus{
border-color: #f10085;
box-shadow: 0 0 5px #f10085;
}
.form__select {
height: 70px;
background-color: #fff;
}
.form__textarea {
resize: none;
}
.form__actions{
text-align: right;
}
.form__button{
border: none;
background-color: #666;
padding: 10px 20px;
border-radius: 5px;
color: #fff;
cursor: pointer;
transition: all 0.7s;
}
.form__button:hover{
background-color: #555;
color: #fff;
}
.form__button--main{
background-color: #f10085;
color: #fff;
}
.form__button--main:hover{
background-color: #f10085;
}
.form__text:disabled{
color: #000;
border-color: rgb(0, 0, 0);
background-color:rgba(112, 112, 112, 0.6)
}
.form label.error{
font-size: 14px;
color: #f10085;
}
.form__text.error{
border-color: #f00;
background-color: rgba(255, 0, 0, .05)
}
/* Footer */
.page-footer{
background-color:#333;
padding: 20px 0;
}
.page-footer p {
margin: 0;
text-align: center;
font-size: 14px;
color: #ccc;
}
/* Helpers */
.clearfix:before,
.clearfix:after{
content: "";
display: block;
}
.clearfix:after{
clear: both;
} | ejercicio5/css/main.css | @charset "UTF-8";
/* Fonts */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i");
@import url("lib/fontawesome-all.min.css");
/* General */
@import url("lib/normalize.css");
@import url("lib/grid.css");
.page-header h1 {
position: absolute;
margin: 35px 535px 0;
text-align: center;
color: #fff;
text-shadow: 1px 1px 50px rgb(182, 255, 63);
}
.body {
font-family: "Open Sans", sans-serif;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
img {
max-width: 100%;
display: block;
}
ul, ol{
margin: 0;
padding: 0;
list-style-type: none;
}
.page-nav{
background-color: rgb(168, 168, 168);
}
.page-nav ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
.page-nav li {
display: inline-block;
padding: 0 70px 0 50px;
}
.page-nav a {
display: block;
background-color: rgb(168, 168, 168);
padding: 10px 20px;
font-family: arial;
font-size: 14;
text-decoration: none;
color: #fff;
}
.page-nav a:hover{
text-shadow: 6px 6px 80px rgb(0, 0, 0);
color: rgb(0, 0, 0);
transition: 0.4s;
}
/* Header */
/* Nav */
/* Main */
.page-main{
padding: 65px 0 65px;
}
.page-main h2 {
color: rgb(0, 0, 0);
}
.page-main h2:first-child {
margin-top: 0;
}
/* Form */
/*.form[class=form]{}*/
.form {
border: 1px solid rgb(0, 0, 0);
padding: 50px;
}
.form__label{
display: block;
margin-bottom: 4px;
}
.form__element{
margin-bottom: 25px;
}
/*
.form input [type=text],
.form input [type=e-mail],
.form input [type=tel],
.form input [type=number],
select,
textarea {
width: 100%;
}
*/
.form__text{
width: 100%;
font-size: 14px;
padding: 10px 20px;
box-sizing: border-box;
outline: none;
border: 1px solid #ccc;
}
.form__text:focus{
border-color: #f10085;
box-shadow: 0 0 5px #f10085;
}
.form__select {
height: 70px;
background-color: #fff;
}
.form__textarea {
resize: none;
}
.form__actions{
text-align: right;
}
.form__button{
border: none;
background-color: #666;
padding: 10px 20px;
border-radius: 5px;
color: #fff;
cursor: pointer;
transition: all 0.7s;
}
.form__button:hover{
background-color: #555;
color: #fff;
}
.form__button--main{
background-color: #f10085;
color: #fff;
}
.form__button--main:hover{
background-color: #f10085;
}
.form__text:disabled{
color: #000;
border-color: rgb(0, 0, 0);
background-color:rgba(112, 112, 112, 0.6)
}
.form label.error{
font-size: 14px;
color: #f10085;
}
.form__text.error{
border-color: #f00;
background-color: rgba(255, 0, 0, .05)
}
/* Footer */
.page-footer{
background-color:#333;
padding: 20px 0;
}
.page-footer p {
margin: 0;
text-align: center;
font-size: 14px;
color: #ccc;
}
/* Helpers */
.clearfix:before,
.clearfix:after{
content: "";
display: block;
}
.clearfix:after{
clear: both;
} | 0.272218 | 0.058912 |
.section-area {
position: relative; }
.section-area .video-section {
height: 100vh;
overflow: hidden; }
.section-area .video-section:before {
content: '';
background-color: rgba(17, 17, 17, 0.84);
position: absolute;
width: 100%;
height: 100%; }
.section-area .video-section iframe {
width: 100%; }
@media screen and (max-width: 800px) {
.section-area .video-section {
height: auto;
overflow: hidden; }
.section-area .video-section:before {
display: none; }
.section-area .video-section iframe {
height: 430px; } }
.section-area .video-caption-section {
position: absolute;
width: 100%;
top: 113px;
margin: auto; }
.section-area .video-caption-section p {
color: #fff;
font-size: 19px; }
@media screen and (max-width: 800px) {
.section-area .video-caption-section {
top: 0px;
position: relative;
background-color: rgba(5, 5, 5, 0.901);
margin-top: -8px;
padding: 3px 0px 11px 0px; } }
.section-area .column-content h2 {
font-size: 27px; }
.section-area .column-content p {
font-size: 15px; }
.section-area .column-content i {
font-size: 60px;
color: #AB6534; }
.section-area .product-image {
display: table; }
.section-area .product-image img {
width: 100%;
display: table-cell;
padding: 70px 100px; }
@media screen and (max-width: 800px) {
.section-area .product-image {
display: block;
max-width: 280px;
margin: auto; }
.section-area .product-image img {
padding: 30px; } }
.mobile-sec {
padding: 80px 0px 40px 0px; }
.mobile-sec .feature-col {
padding: 52px 0px 0px 0px; }
.mobile-sec .feature-col h2 {
font-size: 20px;
font-weight: 800;
color: #111 !important; }
@media screen and (max-width: 800px) {
.mobile-sec {
padding: 30px 0px 40px 0px; }
.mobile-sec .feature-col {
text-align: center; }
.mobile-sec .mobile-img {
text-align: center;
padding: 60px 10px 0px 0px; }
.mobile-sec .mobile-img img {
width: 100%; } }
.services-sec {
background-image: url(../images/service_parallax.jpg);
background-attachment: fixed;
padding: 100px 0px; }
.services-sec .service-block {
border: 1px solid #848484; }
.services-sec .service-image-area {
max-height: 232px;
overflow: hidden; }
.services-sec .service-image-area img {
width: 100%; }
.services-sec .service-content-area {
padding: 30px;
background-color: rgba(17, 17, 17, 0.63); }
.services-sec .service-content-area i {
font-size: 70px;
display: block;
margin: auto;
text-align: center;
color: #fff; }
.services-sec .service-content-area h3 {
font-size: 20px;
text-align: center; }
.services-sec .service-content-area h4 {
font-size: 15px;
text-align: center;
color: #cac6c3 !important; }
.services-sec .service-content-area p {
color: #fff;
text-align: center;
padding: 10px 0px; }
.services-sec .service-content-area a.btn {
display: table;
text-align: center;
margin: auto;
margin-top: 20px;
font-size: 16px;
padding: 10px 20px; }
@media screen and (max-width: 800px) {
.services-sec {
padding: 85px 0px 40px 0px; }
.services-sec .service-block {
margin-bottom: 50px; } }
.pricing-section {
padding: 100px 0px; }
.pricing-section .pricebox-container {
display: table;
border-collapse: separate;
border-spacing: 20px 0px; }
.pricing-section .pricebox-container .pricebox {
display: table-cell;
border: 1px solid rgba(0, 0, 0, 0.2);
padding: 20px 0px;
/* border-radius: 5px; */
/* transform: translateX(20px); */ }
.pricing-section .pricebox-container .pricebox h3 {
font-size: 20px;
text-align: center;
color: #222 !important; }
.pricing-section .pricebox-container .pricebox:first-child {
/* transform: translateX(0px) !important; */ }
@media screen and (max-width: 800px) {
.pricing-section .pricebox-container .pricebox {
background-color: rgba(255, 255, 255, 0.8); } }
.pricing-section .pricebox-container .pricebox-header {
padding: 0px 30px; }
.pricing-section .pricebox-container .pricebox-body {
padding: 30px 0px 10px 0px;
text-align: center; }
.pricing-section .pricebox-container .pricebox-body p {
padding: 12px 20px;
border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
.pricing-section .pricebox-container .pricebox-footer {
padding: 13px 10px;
text-align: center; }
.pricing-section .pricebox-container .pricebox-footer a.btn {
font-size: 19px;
padding: 6px 12px; }
.previous-price {
color: rgba(0, 0, 0, 0.2) !important;
font-size: 63px;
text-align: center;
position: relative;
overflow: hidden;
margin: auto;
display: table !important;
font-weight: 700; }
.previous-price sup {
font-size: 39px;
font-style: normal; }
.previous-price:after {
content: '';
background-color: #e7223d;
width: 100%;
height: 2px;
position: absolute;
left: 0;
top: 50%; }
.current-price {
color: #222 !important;
font-size: 72px;
display: table;
text-align: center;
margin: auto;
font-weight: bolder; }
.current-price sup {
font-size: 39px;
font-style: normal; }
/* cart css start */
.widget-area h2 {
font-size: 18px !important;
color: #111 !important;
padding-bottom: 17px;
font-weight: 700; }
.pre-footer-widgets {
background: rgba(0, 0, 0, 0.07);
padding: 100px 0px; }
@media screen and (max-width: 800px) {
.pre-footer-widgets {
padding: 30px 0px; }
.pre-footer-widgets .widget-area {
margin-bottom: 30px; }
.pre-footer-widgets .widget-area iframe {
width: 100% !important; }
.pre-footer-widgets .widget-area span {
width: 100% !important; }
.pre-footer-widgets .widget-area .fb_iframe_widget_fluid {
overflow-y: scroll;
float: left;
width: 100%; } }
.page-title-area {
padding: 113px 30px 100px 30px;
background-size: 100%;
background-attachment: fixed; }
.page-title-area h1 {
color: #222 !important; }
.page-title-area h1 span {
color: #AB6534; }
@media screen and (max-width: 800px) {
.page-title-area {
background-position: 100%;
background-size: cover;
padding: 90px 30px 35px 30px;
position: relative; }
.page-title-area:before {
content: '';
background-color: rgba(255, 246, 246, 0.7019607843);
position: absolute;
margin: auto;
display: block;
width: 100%;
height: 100%;
left: 0;
top: 0; }
.page-title-area h1 {
font-size: 33px;
text-align: center;
position: relative; } }
.cart-table {
padding: 60px 0px 30px 0px; }
.custom-cart-table thead th {
padding: 20px 10px !important;
color: #AB6534 !important;
font-size: 19px !important;
border-top: 2px solid #AB6534 !important;
border-bottom: 2px solid #AB6534 !important; }
.custom-cart-table td {
padding: 32px 0px 32px 10px !important;
border-top: 0px solid !important;
border-bottom: 1px solid #ccc; }
.custom-cart-table .product-remove {
width: 90px;
padding: 32px 0px; }
.custom-cart-table .product-remove i {
padding: 7px 8px;
border-radius: 51px;
font-size: 9px;
cursor: pointer;
background-color: transparent;
color: #AB6534 !important;
border: 1px solid #AB6534 !important;
transition: 0.3s ease-in-out; }
.custom-cart-table .product-remove i:hover, .custom-cart-table .product-remove i:focus {
background-color: #AB6534 !important;
color: #fff !important; }
.custom-cart-table .product-name {
width: 400px; }
.custom-cart-table .product-price {
width: 120px; }
.custom-cart-table .product-thumbnail {
width: 90px;
padding: 10px 0px 20px 0px !important;
border-bottom: 0px; }
.custom-cart-table .product-thumbnail img {
max-width: 70px; }
.custom-cart-table .product-total {
width: 90px; }
.custom-cart-table td.product-quantity {
width: 90px;
padding: 26px 0px 32px 10px !important;
border-bottom: 0px; }
.custom-cart-table input[type="text"] {
border: 1px solid rgba(0, 0, 0, 0.07);
color: #000;
padding: 9px 0px 9px 12px;
margin: 0px 10px;
max-width: 140px; }
.custom-cart-table input[type="text"]:active, .custom-cart-table input[type="text"]:focus {
-webkit-box-shadow: 0 0 4px 0 #AB6534;
box-shadow: 0 0 4px 0 #AB6534;
outline: 0;
border: 1px solid #000;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
transition: all 500ms ease; }
.custom-cart-table input[type="number"] {
padding: 6px 2px 3px 12px;
width: 60px;
margin-left: 5px;
border: 1px solid #e4dfdf; }
.custom-cart-table input[type="number"]:active, .custom-cart-table input[type="number"]:focus {
-webkit-box-shadow: 0 0 4px 0 #AB6534;
box-shadow: 0 0 4px 0 #AB6534;
outline: 0;
border: 1px solid #000;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
transition: all 500ms ease; }
.custom-cart-table.checkout-cart-table td {
padding: 18px 0px 18px 10px !important; }
@media screen and (max-width: 800px) {
.custom-cart-table {
overflow-y: scroll; } }
.checkout-area {
float: right;
width: 48%;
padding: 1.5em 2em;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 4px;
margin-bottom: 40px; }
.checkout-area h3 {
margin: 0;
margin-bottom: 20px;
font-size: 30px;
font-weight: 700; }
.checkout-area p {
color: #AB6534;
font-weight: 700;
margin-bottom: 0; }
.checkout-area h4 {
font-weight: 700;
font-size: 23px; }
.checkout-area .proceed-to-checkout a {
display: block;
width: 100%; }
@media screen and (max-width: 800px) {
.checkout-area {
float: none;
width: 100%; } }
/* cart css end */
/* checkout css start */
.selectsearch {
width: 100%;
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; }
.margin-bottom-13 {
margin-bottom: 13px; }
.cart-table.checkout {
padding: 0px 0px 30px 0px !important; }
.cart-table.checkout h3 {
margin-bottom: 30px; }
.product-qty {
font-weight: 700; }
.cart-page {
padding: 0px 0px 20px 0px; }
a.link {
color: #AB6534; }
a.link:hover, a.link:focus {
color: #27130A; }
.payment {
border: 2px solid rgba(0, 0, 0, 0.07);
padding: 20px; }
.payment .payment-method {
padding: 0px;
margin-bottom: 0px; }
.payment .order-place a {
display: block; }
.payment .payment-option-method {
position: relative;
list-style: none; }
.payment .payment-option-method input {
display: inline-block;
vertical-align: middle;
height: auto;
width: auto;
margin-top: -4px;
position: relative;
left: 0;
cursor: pointer; }
.payment .payment-option-method input[type="checkbox"] {
position: absolute !important;
top: 7px; }
.payment .payment-option-method label {
padding-left: 6px; }
.payment .payment-option-method label.terms {
padding-left: 17px; }
.payment .payment-option-method .detail-box {
position: relative;
display: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
padding: 10px;
margin: 10px 0;
background-color: #dfdcde; }
.payment .payment-option-method .detail-box:before {
content: "";
display: block;
border: 10px solid #dfdcde;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
position: absolute;
left: 10px;
top: -20px; }
.payment .payment-option-method:last-child .form-group {
margin-bottom: 0px; }
.billing-informarion h3, .checkout-cart-table h3 {
font-size: 31px;
margin-bottom: 50px;
margin-top: 35px;
color: #111 !important;
font-weight: 700; }
@media screen and (max-width: 800px) {
.billing-informarion .billing-informarion h3, .checkout-cart-table .billing-informarion h3 {
margin-bottom: 24px !important;
margin-top: 26px !important; }
.billing-informarion h3, .checkout-cart-table h3 {
margin-bottom: 14px;
margin-top: 16px;
font-size: 22px; } }
.chosen-container {
width: 100% !important; }
.chosen-container a.chosen-single {
padding: 5px 10px;
height: auto;
background-color: transparent !important;
background: none !important;
border: 1px solid #ccc !important; }
/* checkout css end */
.contact-section {
padding: 70px 0px;
background-image: url(../images/contact_bcg.jpg);
background-attachment: fixed; }
.contact-section label {
color: #fff; }
.copyright-area {
padding: 18px 0px; }
.copyright-area p {
margin-bottom: 0px; }
@media screen and (max-width: 800px) {
.copyright-area p {
text-align: center; } }
.footer-nav ul {
list-style: none; }
.footer-nav ul li {
padding: 0px 10px; }
.footer-nav ul li a {
color: #AB6534;
padding: 0px; }
@media screen and (max-width: 800px) {
.footer-nav .navbar-nav {
padding-left: 0px;
margin: auto; }
.footer-nav .navbar-nav li {
display: inline-block; } }
.product-background-image {
background-image: url(../images/product-image.jpg);
background-position: 40% 100%;
background-size: cover; }
@media screen and (max-width: 800px) {
.product-background-image {
background-position: 80% 100%; } }
.menu-toggle {
float: right;
font-size: 27px;
margin-top: 20px;
color: #AB6534; } | public/assets/css/custom.css | .section-area {
position: relative; }
.section-area .video-section {
height: 100vh;
overflow: hidden; }
.section-area .video-section:before {
content: '';
background-color: rgba(17, 17, 17, 0.84);
position: absolute;
width: 100%;
height: 100%; }
.section-area .video-section iframe {
width: 100%; }
@media screen and (max-width: 800px) {
.section-area .video-section {
height: auto;
overflow: hidden; }
.section-area .video-section:before {
display: none; }
.section-area .video-section iframe {
height: 430px; } }
.section-area .video-caption-section {
position: absolute;
width: 100%;
top: 113px;
margin: auto; }
.section-area .video-caption-section p {
color: #fff;
font-size: 19px; }
@media screen and (max-width: 800px) {
.section-area .video-caption-section {
top: 0px;
position: relative;
background-color: rgba(5, 5, 5, 0.901);
margin-top: -8px;
padding: 3px 0px 11px 0px; } }
.section-area .column-content h2 {
font-size: 27px; }
.section-area .column-content p {
font-size: 15px; }
.section-area .column-content i {
font-size: 60px;
color: #AB6534; }
.section-area .product-image {
display: table; }
.section-area .product-image img {
width: 100%;
display: table-cell;
padding: 70px 100px; }
@media screen and (max-width: 800px) {
.section-area .product-image {
display: block;
max-width: 280px;
margin: auto; }
.section-area .product-image img {
padding: 30px; } }
.mobile-sec {
padding: 80px 0px 40px 0px; }
.mobile-sec .feature-col {
padding: 52px 0px 0px 0px; }
.mobile-sec .feature-col h2 {
font-size: 20px;
font-weight: 800;
color: #111 !important; }
@media screen and (max-width: 800px) {
.mobile-sec {
padding: 30px 0px 40px 0px; }
.mobile-sec .feature-col {
text-align: center; }
.mobile-sec .mobile-img {
text-align: center;
padding: 60px 10px 0px 0px; }
.mobile-sec .mobile-img img {
width: 100%; } }
.services-sec {
background-image: url(../images/service_parallax.jpg);
background-attachment: fixed;
padding: 100px 0px; }
.services-sec .service-block {
border: 1px solid #848484; }
.services-sec .service-image-area {
max-height: 232px;
overflow: hidden; }
.services-sec .service-image-area img {
width: 100%; }
.services-sec .service-content-area {
padding: 30px;
background-color: rgba(17, 17, 17, 0.63); }
.services-sec .service-content-area i {
font-size: 70px;
display: block;
margin: auto;
text-align: center;
color: #fff; }
.services-sec .service-content-area h3 {
font-size: 20px;
text-align: center; }
.services-sec .service-content-area h4 {
font-size: 15px;
text-align: center;
color: #cac6c3 !important; }
.services-sec .service-content-area p {
color: #fff;
text-align: center;
padding: 10px 0px; }
.services-sec .service-content-area a.btn {
display: table;
text-align: center;
margin: auto;
margin-top: 20px;
font-size: 16px;
padding: 10px 20px; }
@media screen and (max-width: 800px) {
.services-sec {
padding: 85px 0px 40px 0px; }
.services-sec .service-block {
margin-bottom: 50px; } }
.pricing-section {
padding: 100px 0px; }
.pricing-section .pricebox-container {
display: table;
border-collapse: separate;
border-spacing: 20px 0px; }
.pricing-section .pricebox-container .pricebox {
display: table-cell;
border: 1px solid rgba(0, 0, 0, 0.2);
padding: 20px 0px;
/* border-radius: 5px; */
/* transform: translateX(20px); */ }
.pricing-section .pricebox-container .pricebox h3 {
font-size: 20px;
text-align: center;
color: #222 !important; }
.pricing-section .pricebox-container .pricebox:first-child {
/* transform: translateX(0px) !important; */ }
@media screen and (max-width: 800px) {
.pricing-section .pricebox-container .pricebox {
background-color: rgba(255, 255, 255, 0.8); } }
.pricing-section .pricebox-container .pricebox-header {
padding: 0px 30px; }
.pricing-section .pricebox-container .pricebox-body {
padding: 30px 0px 10px 0px;
text-align: center; }
.pricing-section .pricebox-container .pricebox-body p {
padding: 12px 20px;
border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
.pricing-section .pricebox-container .pricebox-footer {
padding: 13px 10px;
text-align: center; }
.pricing-section .pricebox-container .pricebox-footer a.btn {
font-size: 19px;
padding: 6px 12px; }
.previous-price {
color: rgba(0, 0, 0, 0.2) !important;
font-size: 63px;
text-align: center;
position: relative;
overflow: hidden;
margin: auto;
display: table !important;
font-weight: 700; }
.previous-price sup {
font-size: 39px;
font-style: normal; }
.previous-price:after {
content: '';
background-color: #e7223d;
width: 100%;
height: 2px;
position: absolute;
left: 0;
top: 50%; }
.current-price {
color: #222 !important;
font-size: 72px;
display: table;
text-align: center;
margin: auto;
font-weight: bolder; }
.current-price sup {
font-size: 39px;
font-style: normal; }
/* cart css start */
.widget-area h2 {
font-size: 18px !important;
color: #111 !important;
padding-bottom: 17px;
font-weight: 700; }
.pre-footer-widgets {
background: rgba(0, 0, 0, 0.07);
padding: 100px 0px; }
@media screen and (max-width: 800px) {
.pre-footer-widgets {
padding: 30px 0px; }
.pre-footer-widgets .widget-area {
margin-bottom: 30px; }
.pre-footer-widgets .widget-area iframe {
width: 100% !important; }
.pre-footer-widgets .widget-area span {
width: 100% !important; }
.pre-footer-widgets .widget-area .fb_iframe_widget_fluid {
overflow-y: scroll;
float: left;
width: 100%; } }
.page-title-area {
padding: 113px 30px 100px 30px;
background-size: 100%;
background-attachment: fixed; }
.page-title-area h1 {
color: #222 !important; }
.page-title-area h1 span {
color: #AB6534; }
@media screen and (max-width: 800px) {
.page-title-area {
background-position: 100%;
background-size: cover;
padding: 90px 30px 35px 30px;
position: relative; }
.page-title-area:before {
content: '';
background-color: rgba(255, 246, 246, 0.7019607843);
position: absolute;
margin: auto;
display: block;
width: 100%;
height: 100%;
left: 0;
top: 0; }
.page-title-area h1 {
font-size: 33px;
text-align: center;
position: relative; } }
.cart-table {
padding: 60px 0px 30px 0px; }
.custom-cart-table thead th {
padding: 20px 10px !important;
color: #AB6534 !important;
font-size: 19px !important;
border-top: 2px solid #AB6534 !important;
border-bottom: 2px solid #AB6534 !important; }
.custom-cart-table td {
padding: 32px 0px 32px 10px !important;
border-top: 0px solid !important;
border-bottom: 1px solid #ccc; }
.custom-cart-table .product-remove {
width: 90px;
padding: 32px 0px; }
.custom-cart-table .product-remove i {
padding: 7px 8px;
border-radius: 51px;
font-size: 9px;
cursor: pointer;
background-color: transparent;
color: #AB6534 !important;
border: 1px solid #AB6534 !important;
transition: 0.3s ease-in-out; }
.custom-cart-table .product-remove i:hover, .custom-cart-table .product-remove i:focus {
background-color: #AB6534 !important;
color: #fff !important; }
.custom-cart-table .product-name {
width: 400px; }
.custom-cart-table .product-price {
width: 120px; }
.custom-cart-table .product-thumbnail {
width: 90px;
padding: 10px 0px 20px 0px !important;
border-bottom: 0px; }
.custom-cart-table .product-thumbnail img {
max-width: 70px; }
.custom-cart-table .product-total {
width: 90px; }
.custom-cart-table td.product-quantity {
width: 90px;
padding: 26px 0px 32px 10px !important;
border-bottom: 0px; }
.custom-cart-table input[type="text"] {
border: 1px solid rgba(0, 0, 0, 0.07);
color: #000;
padding: 9px 0px 9px 12px;
margin: 0px 10px;
max-width: 140px; }
.custom-cart-table input[type="text"]:active, .custom-cart-table input[type="text"]:focus {
-webkit-box-shadow: 0 0 4px 0 #AB6534;
box-shadow: 0 0 4px 0 #AB6534;
outline: 0;
border: 1px solid #000;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
transition: all 500ms ease; }
.custom-cart-table input[type="number"] {
padding: 6px 2px 3px 12px;
width: 60px;
margin-left: 5px;
border: 1px solid #e4dfdf; }
.custom-cart-table input[type="number"]:active, .custom-cart-table input[type="number"]:focus {
-webkit-box-shadow: 0 0 4px 0 #AB6534;
box-shadow: 0 0 4px 0 #AB6534;
outline: 0;
border: 1px solid #000;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
transition: all 500ms ease; }
.custom-cart-table.checkout-cart-table td {
padding: 18px 0px 18px 10px !important; }
@media screen and (max-width: 800px) {
.custom-cart-table {
overflow-y: scroll; } }
.checkout-area {
float: right;
width: 48%;
padding: 1.5em 2em;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 4px;
margin-bottom: 40px; }
.checkout-area h3 {
margin: 0;
margin-bottom: 20px;
font-size: 30px;
font-weight: 700; }
.checkout-area p {
color: #AB6534;
font-weight: 700;
margin-bottom: 0; }
.checkout-area h4 {
font-weight: 700;
font-size: 23px; }
.checkout-area .proceed-to-checkout a {
display: block;
width: 100%; }
@media screen and (max-width: 800px) {
.checkout-area {
float: none;
width: 100%; } }
/* cart css end */
/* checkout css start */
.selectsearch {
width: 100%;
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; }
.margin-bottom-13 {
margin-bottom: 13px; }
.cart-table.checkout {
padding: 0px 0px 30px 0px !important; }
.cart-table.checkout h3 {
margin-bottom: 30px; }
.product-qty {
font-weight: 700; }
.cart-page {
padding: 0px 0px 20px 0px; }
a.link {
color: #AB6534; }
a.link:hover, a.link:focus {
color: #27130A; }
.payment {
border: 2px solid rgba(0, 0, 0, 0.07);
padding: 20px; }
.payment .payment-method {
padding: 0px;
margin-bottom: 0px; }
.payment .order-place a {
display: block; }
.payment .payment-option-method {
position: relative;
list-style: none; }
.payment .payment-option-method input {
display: inline-block;
vertical-align: middle;
height: auto;
width: auto;
margin-top: -4px;
position: relative;
left: 0;
cursor: pointer; }
.payment .payment-option-method input[type="checkbox"] {
position: absolute !important;
top: 7px; }
.payment .payment-option-method label {
padding-left: 6px; }
.payment .payment-option-method label.terms {
padding-left: 17px; }
.payment .payment-option-method .detail-box {
position: relative;
display: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
padding: 10px;
margin: 10px 0;
background-color: #dfdcde; }
.payment .payment-option-method .detail-box:before {
content: "";
display: block;
border: 10px solid #dfdcde;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
position: absolute;
left: 10px;
top: -20px; }
.payment .payment-option-method:last-child .form-group {
margin-bottom: 0px; }
.billing-informarion h3, .checkout-cart-table h3 {
font-size: 31px;
margin-bottom: 50px;
margin-top: 35px;
color: #111 !important;
font-weight: 700; }
@media screen and (max-width: 800px) {
.billing-informarion .billing-informarion h3, .checkout-cart-table .billing-informarion h3 {
margin-bottom: 24px !important;
margin-top: 26px !important; }
.billing-informarion h3, .checkout-cart-table h3 {
margin-bottom: 14px;
margin-top: 16px;
font-size: 22px; } }
.chosen-container {
width: 100% !important; }
.chosen-container a.chosen-single {
padding: 5px 10px;
height: auto;
background-color: transparent !important;
background: none !important;
border: 1px solid #ccc !important; }
/* checkout css end */
.contact-section {
padding: 70px 0px;
background-image: url(../images/contact_bcg.jpg);
background-attachment: fixed; }
.contact-section label {
color: #fff; }
.copyright-area {
padding: 18px 0px; }
.copyright-area p {
margin-bottom: 0px; }
@media screen and (max-width: 800px) {
.copyright-area p {
text-align: center; } }
.footer-nav ul {
list-style: none; }
.footer-nav ul li {
padding: 0px 10px; }
.footer-nav ul li a {
color: #AB6534;
padding: 0px; }
@media screen and (max-width: 800px) {
.footer-nav .navbar-nav {
padding-left: 0px;
margin: auto; }
.footer-nav .navbar-nav li {
display: inline-block; } }
.product-background-image {
background-image: url(../images/product-image.jpg);
background-position: 40% 100%;
background-size: cover; }
@media screen and (max-width: 800px) {
.product-background-image {
background-position: 80% 100%; } }
.menu-toggle {
float: right;
font-size: 27px;
margin-top: 20px;
color: #AB6534; } | 0.463444 | 0.084003 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.__navbar{
font-family: 'Poppins', sans-serif;
height: 70px;
width: 100%;
display: flex;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.__navbar_img_div{
display: flex;
align-items: center;
margin-left: 20px;
}
.__logo {
padding: 6px;
}
.__navbar_search_div{
display: flex;
align-items: center;
width: 600px;
}
.__navbar_search{
width: 270px;
height: 36px;
margin-left: 1rem;
color: rgba(0, 0, 0, 0.25);
/*background-image: url("./search.ico") ;*/
/*background-color: white;*/
/*background-repeat: no-repeat;*/
/*background-size: 25px;*/
/*background-position: 15px center;*/
padding-left: 10px;
border: 1px solid #D9D9D9;
box-sizing: border-box;
border-radius: 2px;
font-size: 14px;
line-height: 30px;
}
.__navbar_button_div{
text-align: center;
margin: auto 0;
display: flex;
justify-content: end;
}
.__navbar_link_div{
display: flex;
align-items: center;
width: 80px;
text-align: center;
align-content: center;
}
.__navbar_button{
height: 36px;
margin: 5px;
background: white;
border: 1px solid #D9D9D9;
box-sizing: border-box;
box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.016);
border-radius: 2px;
font-size: 14px;
line-height: 16px;
color: rgba(0, 0, 0, 0.65);
}
.__navbar_link {
font-size: 14px;
line-height: 16px;
margin: auto;
color: rgba(0, 0, 0, 0.65);
}
.__navbar_link_div_register{
text-align: center;
margin: auto 0 auto 10px;
}
.__navbar_button_register{
width: 80px;
height: 36px;
text-align: center;
background: white;
border: 1px solid #D9D9D9;
box-sizing: border-box;
box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.016);
border-radius: 2px;
font-size: 14px;
line-height: 16px;
color: rgba(0, 0, 0, 0.65);
}
.__navbar_link_div_login {
display: flex;
align-items: center;
text-decoration: none;
}
.__navbar_link_login {
font-size: 14px;
line-height: 16px;
margin: auto;
color: rgba(0, 0, 0, 0.65);
}
.__navbar_grouplinks_div{
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
padding-right: 25px;
}
.__avatar {
width: 48px;
height: 48px;
margin-top: 10px;
} | frontend-app/src/components/navbar/nabvar.module.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.__navbar{
font-family: 'Poppins', sans-serif;
height: 70px;
width: 100%;
display: flex;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.__navbar_img_div{
display: flex;
align-items: center;
margin-left: 20px;
}
.__logo {
padding: 6px;
}
.__navbar_search_div{
display: flex;
align-items: center;
width: 600px;
}
.__navbar_search{
width: 270px;
height: 36px;
margin-left: 1rem;
color: rgba(0, 0, 0, 0.25);
/*background-image: url("./search.ico") ;*/
/*background-color: white;*/
/*background-repeat: no-repeat;*/
/*background-size: 25px;*/
/*background-position: 15px center;*/
padding-left: 10px;
border: 1px solid #D9D9D9;
box-sizing: border-box;
border-radius: 2px;
font-size: 14px;
line-height: 30px;
}
.__navbar_button_div{
text-align: center;
margin: auto 0;
display: flex;
justify-content: end;
}
.__navbar_link_div{
display: flex;
align-items: center;
width: 80px;
text-align: center;
align-content: center;
}
.__navbar_button{
height: 36px;
margin: 5px;
background: white;
border: 1px solid #D9D9D9;
box-sizing: border-box;
box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.016);
border-radius: 2px;
font-size: 14px;
line-height: 16px;
color: rgba(0, 0, 0, 0.65);
}
.__navbar_link {
font-size: 14px;
line-height: 16px;
margin: auto;
color: rgba(0, 0, 0, 0.65);
}
.__navbar_link_div_register{
text-align: center;
margin: auto 0 auto 10px;
}
.__navbar_button_register{
width: 80px;
height: 36px;
text-align: center;
background: white;
border: 1px solid #D9D9D9;
box-sizing: border-box;
box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.016);
border-radius: 2px;
font-size: 14px;
line-height: 16px;
color: rgba(0, 0, 0, 0.65);
}
.__navbar_link_div_login {
display: flex;
align-items: center;
text-decoration: none;
}
.__navbar_link_login {
font-size: 14px;
line-height: 16px;
margin: auto;
color: rgba(0, 0, 0, 0.65);
}
.__navbar_grouplinks_div{
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
padding-right: 25px;
}
.__avatar {
width: 48px;
height: 48px;
margin-top: 10px;
} | 0.381796 | 0.066146 |
body {
background-color: black;
padding-top: 80px;
border: 1px solid black;
}
/* GENERAL SETTINGS STARTS HERE */
/*Contains everything less navigation bar */
.main-container {
position: relative;
text-align: center;
margin: 0;
padding: 0;
}
/*Takes off every text-decoration from anchor tags */
a:link {
text-decoration: none;
}
/*Styles sections 'About' and 'Portfolio' boxes */
.sectionBox {
position: relative;
margin: 0 auto;
padding-bottom: 150px;
height: 600px;
color: white;
border: 1px solid rgba(0, 0, 0, 0.1);
}
/*Styles sections 'About' and 'Portfolio' titles */
.sectionTitle {
margin: 60px auto 30px auto;
background-color: #0b2247;
font-family: 'Shadows Into Light', cursive;
text-shadow: .1px .1px 2px lightgray, -.1px -.1px 2px lightblue;
text-align: center;
border-radius: 10%;
box-shadow: -4px 4px 10px black;
width: 60%;
transition: 1s all;
}
/*Section's title hover effect */
.sectionTitle:hover {
background-color: black;
width: 85%;
}
hr {
padding: 0;
border: none;
border-top: medium double #333;
color: #333;
text-align: center;
}
hr:after {
content: "§";
display: inline-block;
position: relative;
top: -0.7em;
font-size: 1.5em;
padding: 0 0.25em;
background: white;
}
/*GENERAL SETTINGS ENDS HERE */
/*-------------------------------------------------*/
/*NAVIGATION BAR STARTS HERE */
.navigation {
background-color: rgba(0,0,0,.8);
font-family: VT323;
font-weight: bold;
text-align: center;
font-size: 1.2em;
border-color: black;
}
ul {
overflow: hidden;
}
/*Collapsable list items */
.list-item {
color: white;
font-size: 1.8em;
transition: all .30s;
}
/*Collapsable list items hover effect */
.list-item:hover {
background-color: #15224f;
transform: rotate(-2deg);
transform-origin: 80% 70%;
}
/*Box containing the social networks items */
.navigation-social {
display: flex;
justify-content: center;
align-items: top;
}
/*Images of social networks */
.social-images {
max-width: 50px;
max-height: 50px;
border-radius: 50%;
transition: all .50s;
}
/*Images of social networks hover effect*/
.social-images:hover {
max-height: 55px;
max-width: 55px;
border-radius: 30%;
transform: rotateY(360deg);
}
/*Centralizes the hamburger button */
.hamburger-button {
margin-left: 45%;
margin-right: 45%;
}
/*Used to toggle the navigation bar when scroll the window down. */
.nav-up {
top: -70px;
}
/*NAVIGATION BAR ENDS HERE */
/*-------------------------------------------------*/
/*ABOUT SECTION STARTS HERE */
div#aboutBox {
background-image: url('https://media.licdn.com/media/AAEAAQAAAAAAAAntAAAAJDY2YmU0MmI4LThhNzYtNDU4Ny1iOTExLWI3YzRjNGQwZTVkNw.jpg');
background-position: center;
background-attachment: fixed;
z-index: 1;
}
p.about-paragraph {
margin: 10px auto;
font-family: Cousine, Arial;
font-weight: 600;
font-size: 1.2em;
font-style: italic;
text-align: left;
text-shadow: -.1px -.1px 3px lightsteelblue, .1px .1px 3px lightsteelblue, -3px -3px 1px black;
line-height: 2em;
width: 90%;
transition: all 1s;
}
p.about-paragraph:hover {
width: 89%;
background-color: #4770b2;
border-radius: 5%;
}
p.about-paragraph-2 {
margin: 8% auto 2% auto;
background-color: #0b2247;
font-family: Monoton, cursive;
font-size: 1.4em;
text-align: center;
text-shadow: -.8px .8px 2px white;
letter-spacing: 0.2em;
border-radius: 20%;
width: 50%;
transition: all 1s;
}
p.about-paragraph-2:hover {
width: 60%;
background-color: black;
border-radius: 5%;
transform: rotateX(20deg);
}
p.about-paragraph-3 {
margin: 0 auto;
font-family: VT323, Monospace;
font-size: 1.2em;
font-weight: bold;
letter-spacing: 0.2em;
text-align: center;
text-shadow: -.1px -.1px 20px lightskyblue, .1px .1px 20px lightskyblue;
width: 90%;
transition: all 1s;
}
p.about-paragraph-3:hover {
width: 88%;
border-radius: 10%;
background-color: #4770b2;
}
#personal-foto {
margin: auto 30px auto;
border-radius: 50%;
width: 135px;
float: right;
transition: all 1.1s;
}
#personal-foto:hover {
border-radius: 40%;
width: 110px;
opacity: 0.95;
}
/*ABOUT SECTION ENDS HERE */
/*-------------------------------------------------*/
/* PORTFOLIO SECTION STARTS HERE */
#portfolioBox {
position: relative;
background-image: url('https://media.licdn.com/media/AAEAAQAAAAAAAAntAAAAJDY2YmU0MmI4LThhNzYtNDU4Ny1iOTExLWI3YzRjNGQwZTVkNw.jpg');
background-position: center;
background-attachment: fixed;
height: 80%;
}
.galery {
position: relative;
display: flex;
flex-direction: row;
align-content: center;
justify-content: center;
flex-wrap: wrap;
transition: 1s all;
}
.portfolio-image {
height: 250px;
width: 350px;
margin: 20px;
box-shadow: -1px -1px 2px white, 1px 1px 2px white, -6px 6px 8px black, 6px -6px 8px black;
border-radius: 3%;
z-index: 2;
transition: 1s all;
}
.portfolio-image:hover {
height: 190px;
width: 300px;
transform: rotateX(20deg) rotateZ(10deg);
}
/*PORTFOLIO SECTION ENDS HERE */
/*-------------------------------------------------*/
/*FOOTER SECTION START HERE */
.footer {
margin: auto;
font-family: Impact;
text-align: center;
background-color: black;
height: 50px;
color: white;
margin-top: 100px;
bottom: 0px;
}
.foot-title {
transition: 1s all;
}
.foot-title:hover {
transform: rotateZ(5deg);
}
/*FOOTER SECTION ENDS HERE */
/*-------------------------------------------------*/
/* QUERIES SECTION */
@media only screen and (max-width: 952px) {
.social-images {
max-width: 40px;
max-height: 40px;
}
.social-images:hover {
max-height: 45px;
max-width: 45px;
}
}
@media only screen and (max-width: 892px) {
p.about-paragraph {
font-size: 1.1em;
}
p.about-paragraph-2 {
font-size: 1.3em;
}
p.about-paragraph-3 {
font-size: 1.1em;
}
}
@media only screen and (max-width: 823px) {
p.about-paragraph {
font-size: 1em;
}
p.about-paragraph-2 {
font-size: 1.2em;
}
p.about-paragraph-3 {
font-size: 1em;
}
}
@media only screen and (max-width: 749px) {
.social-images {
max-width: 30px;
max-height: 30px;
}
.social-images:hover {
max-height: 35px;
max-width: 35px;
}
p.about-paragraph {
font-size: 0.9em;
}
p.about-paragraph-2 {
font-size: 1.2em;
}
p.about-paragraph-3 {
font-size: 0.9em;
}
}
@media only screen and (max-width: 600px) {
.social-images {
max-width: 25px;
max-height: 25px;
}
.social-images:hover {
max-height: 30px;
max-width: 30px;
}
p.about-paragraph {
font-size: 0.8em;
}
p.about-paragraph-2 {
font-size: 1.1em;
}
p.about-paragraph-3 {
font-size: 0.8em;
}
}
@media only screen and (max-width: 480px) {
.portfolio-image {
height: 140px;
width: 250px;
}
.portfolio-image:hover {
height: 130px;
width: 240px;
}
p.about-paragraph {
line-height: 1.4em;
font-size: 0.7em;
}
p.about-paragraph-2 {
font-size: 1em;
}
p.about-paragraph-3 {
font-size: 0.7em;
}
div.list-item {
font-size: 1.2em;
}
.foot-container h3 {
font-size: 1em;
}
.foot-container p {
font-size: 0.7em;
}
}
@media only screen and (max-width: 396px) {
.sectionTitle {
font-size: 1.6em;
width: 60%;
}
#personal-foto {
width: 100px;
float:none;
}
p.about-paragraph {
font-size: 0.6em;
line-height:1em;
}
p.about-paragraph-2 {
margin-top: 20%;
font-size: 0.8em;
}
p.about-paragraph-3 {
font-size: 0.6em;
}
div.list-item {
font-size: 1.2em;
}
.foot-container h3 {
font-size: 1em;
}
.foot-container p {
font-size: 0.7em;
}
}
@media only screen and (max-width: 313px){
.portfolio-image {
height: 80px;
width: 150px;
}
.portfolio-image:hover {
height: 70px;
width: 140px;
}
p.about-paragraph {
font-size: 0.6em;
line-height:1.2em;
}
p.about-paragraph-2 {
font-size: 0.7em;
}
p.about-paragraph-3 {
font-size: 0.5em;
}
}
@media only screen and (max-width: 200px){
.portfolio-image {
height: 60px;
width: 110px;
}
.portfolio-image:hover {
height: 50px;
width: 100px;
}
p.about-paragraph {
font-size: 0.5em;
line-height:1em;
}
p.about-paragraph-2 {
font-size: 0.6em;
}
p.about-paragraph-3 {
font-size: 0.4em;
}
}
} | css/style.css | body {
background-color: black;
padding-top: 80px;
border: 1px solid black;
}
/* GENERAL SETTINGS STARTS HERE */
/*Contains everything less navigation bar */
.main-container {
position: relative;
text-align: center;
margin: 0;
padding: 0;
}
/*Takes off every text-decoration from anchor tags */
a:link {
text-decoration: none;
}
/*Styles sections 'About' and 'Portfolio' boxes */
.sectionBox {
position: relative;
margin: 0 auto;
padding-bottom: 150px;
height: 600px;
color: white;
border: 1px solid rgba(0, 0, 0, 0.1);
}
/*Styles sections 'About' and 'Portfolio' titles */
.sectionTitle {
margin: 60px auto 30px auto;
background-color: #0b2247;
font-family: 'Shadows Into Light', cursive;
text-shadow: .1px .1px 2px lightgray, -.1px -.1px 2px lightblue;
text-align: center;
border-radius: 10%;
box-shadow: -4px 4px 10px black;
width: 60%;
transition: 1s all;
}
/*Section's title hover effect */
.sectionTitle:hover {
background-color: black;
width: 85%;
}
hr {
padding: 0;
border: none;
border-top: medium double #333;
color: #333;
text-align: center;
}
hr:after {
content: "§";
display: inline-block;
position: relative;
top: -0.7em;
font-size: 1.5em;
padding: 0 0.25em;
background: white;
}
/*GENERAL SETTINGS ENDS HERE */
/*-------------------------------------------------*/
/*NAVIGATION BAR STARTS HERE */
.navigation {
background-color: rgba(0,0,0,.8);
font-family: VT323;
font-weight: bold;
text-align: center;
font-size: 1.2em;
border-color: black;
}
ul {
overflow: hidden;
}
/*Collapsable list items */
.list-item {
color: white;
font-size: 1.8em;
transition: all .30s;
}
/*Collapsable list items hover effect */
.list-item:hover {
background-color: #15224f;
transform: rotate(-2deg);
transform-origin: 80% 70%;
}
/*Box containing the social networks items */
.navigation-social {
display: flex;
justify-content: center;
align-items: top;
}
/*Images of social networks */
.social-images {
max-width: 50px;
max-height: 50px;
border-radius: 50%;
transition: all .50s;
}
/*Images of social networks hover effect*/
.social-images:hover {
max-height: 55px;
max-width: 55px;
border-radius: 30%;
transform: rotateY(360deg);
}
/*Centralizes the hamburger button */
.hamburger-button {
margin-left: 45%;
margin-right: 45%;
}
/*Used to toggle the navigation bar when scroll the window down. */
.nav-up {
top: -70px;
}
/*NAVIGATION BAR ENDS HERE */
/*-------------------------------------------------*/
/*ABOUT SECTION STARTS HERE */
div#aboutBox {
background-image: url('https://media.licdn.com/media/AAEAAQAAAAAAAAntAAAAJDY2YmU0MmI4LThhNzYtNDU4Ny1iOTExLWI3YzRjNGQwZTVkNw.jpg');
background-position: center;
background-attachment: fixed;
z-index: 1;
}
p.about-paragraph {
margin: 10px auto;
font-family: Cousine, Arial;
font-weight: 600;
font-size: 1.2em;
font-style: italic;
text-align: left;
text-shadow: -.1px -.1px 3px lightsteelblue, .1px .1px 3px lightsteelblue, -3px -3px 1px black;
line-height: 2em;
width: 90%;
transition: all 1s;
}
p.about-paragraph:hover {
width: 89%;
background-color: #4770b2;
border-radius: 5%;
}
p.about-paragraph-2 {
margin: 8% auto 2% auto;
background-color: #0b2247;
font-family: Monoton, cursive;
font-size: 1.4em;
text-align: center;
text-shadow: -.8px .8px 2px white;
letter-spacing: 0.2em;
border-radius: 20%;
width: 50%;
transition: all 1s;
}
p.about-paragraph-2:hover {
width: 60%;
background-color: black;
border-radius: 5%;
transform: rotateX(20deg);
}
p.about-paragraph-3 {
margin: 0 auto;
font-family: VT323, Monospace;
font-size: 1.2em;
font-weight: bold;
letter-spacing: 0.2em;
text-align: center;
text-shadow: -.1px -.1px 20px lightskyblue, .1px .1px 20px lightskyblue;
width: 90%;
transition: all 1s;
}
p.about-paragraph-3:hover {
width: 88%;
border-radius: 10%;
background-color: #4770b2;
}
#personal-foto {
margin: auto 30px auto;
border-radius: 50%;
width: 135px;
float: right;
transition: all 1.1s;
}
#personal-foto:hover {
border-radius: 40%;
width: 110px;
opacity: 0.95;
}
/*ABOUT SECTION ENDS HERE */
/*-------------------------------------------------*/
/* PORTFOLIO SECTION STARTS HERE */
#portfolioBox {
position: relative;
background-image: url('https://media.licdn.com/media/AAEAAQAAAAAAAAntAAAAJDY2YmU0MmI4LThhNzYtNDU4Ny1iOTExLWI3YzRjNGQwZTVkNw.jpg');
background-position: center;
background-attachment: fixed;
height: 80%;
}
.galery {
position: relative;
display: flex;
flex-direction: row;
align-content: center;
justify-content: center;
flex-wrap: wrap;
transition: 1s all;
}
.portfolio-image {
height: 250px;
width: 350px;
margin: 20px;
box-shadow: -1px -1px 2px white, 1px 1px 2px white, -6px 6px 8px black, 6px -6px 8px black;
border-radius: 3%;
z-index: 2;
transition: 1s all;
}
.portfolio-image:hover {
height: 190px;
width: 300px;
transform: rotateX(20deg) rotateZ(10deg);
}
/*PORTFOLIO SECTION ENDS HERE */
/*-------------------------------------------------*/
/*FOOTER SECTION START HERE */
.footer {
margin: auto;
font-family: Impact;
text-align: center;
background-color: black;
height: 50px;
color: white;
margin-top: 100px;
bottom: 0px;
}
.foot-title {
transition: 1s all;
}
.foot-title:hover {
transform: rotateZ(5deg);
}
/*FOOTER SECTION ENDS HERE */
/*-------------------------------------------------*/
/* QUERIES SECTION */
@media only screen and (max-width: 952px) {
.social-images {
max-width: 40px;
max-height: 40px;
}
.social-images:hover {
max-height: 45px;
max-width: 45px;
}
}
@media only screen and (max-width: 892px) {
p.about-paragraph {
font-size: 1.1em;
}
p.about-paragraph-2 {
font-size: 1.3em;
}
p.about-paragraph-3 {
font-size: 1.1em;
}
}
@media only screen and (max-width: 823px) {
p.about-paragraph {
font-size: 1em;
}
p.about-paragraph-2 {
font-size: 1.2em;
}
p.about-paragraph-3 {
font-size: 1em;
}
}
@media only screen and (max-width: 749px) {
.social-images {
max-width: 30px;
max-height: 30px;
}
.social-images:hover {
max-height: 35px;
max-width: 35px;
}
p.about-paragraph {
font-size: 0.9em;
}
p.about-paragraph-2 {
font-size: 1.2em;
}
p.about-paragraph-3 {
font-size: 0.9em;
}
}
@media only screen and (max-width: 600px) {
.social-images {
max-width: 25px;
max-height: 25px;
}
.social-images:hover {
max-height: 30px;
max-width: 30px;
}
p.about-paragraph {
font-size: 0.8em;
}
p.about-paragraph-2 {
font-size: 1.1em;
}
p.about-paragraph-3 {
font-size: 0.8em;
}
}
@media only screen and (max-width: 480px) {
.portfolio-image {
height: 140px;
width: 250px;
}
.portfolio-image:hover {
height: 130px;
width: 240px;
}
p.about-paragraph {
line-height: 1.4em;
font-size: 0.7em;
}
p.about-paragraph-2 {
font-size: 1em;
}
p.about-paragraph-3 {
font-size: 0.7em;
}
div.list-item {
font-size: 1.2em;
}
.foot-container h3 {
font-size: 1em;
}
.foot-container p {
font-size: 0.7em;
}
}
@media only screen and (max-width: 396px) {
.sectionTitle {
font-size: 1.6em;
width: 60%;
}
#personal-foto {
width: 100px;
float:none;
}
p.about-paragraph {
font-size: 0.6em;
line-height:1em;
}
p.about-paragraph-2 {
margin-top: 20%;
font-size: 0.8em;
}
p.about-paragraph-3 {
font-size: 0.6em;
}
div.list-item {
font-size: 1.2em;
}
.foot-container h3 {
font-size: 1em;
}
.foot-container p {
font-size: 0.7em;
}
}
@media only screen and (max-width: 313px){
.portfolio-image {
height: 80px;
width: 150px;
}
.portfolio-image:hover {
height: 70px;
width: 140px;
}
p.about-paragraph {
font-size: 0.6em;
line-height:1.2em;
}
p.about-paragraph-2 {
font-size: 0.7em;
}
p.about-paragraph-3 {
font-size: 0.5em;
}
}
@media only screen and (max-width: 200px){
.portfolio-image {
height: 60px;
width: 110px;
}
.portfolio-image:hover {
height: 50px;
width: 100px;
}
p.about-paragraph {
font-size: 0.5em;
line-height:1em;
}
p.about-paragraph-2 {
font-size: 0.6em;
}
p.about-paragraph-3 {
font-size: 0.4em;
}
}
} | 0.360827 | 0.058831 |
======================================================================================*/
.head-blue-line img {
/*box model */
width: 960px;
height: 10px;
}
.logo {
/*box model*/
width: 170px;
height: 120px;
margin: 10px 10px 30px 10px;
/*display*/
display: inline-block;
}
.nav > li ,a {
/*other*/
color: black;
font-size: 13px;
list-style: none;
text-decoration: none;
}
.nav a {
/*box model */
width: 100px;
height: 40px;
/*display*/
display: inline-block;
/*other*/
text-align: center;
}
.nav > li {
/*display*/
display: inline-block;
vertical-align: top;
}
.nav {
/*box model */
margin-top: 50px;
/*display*/
float: right;
}
.nav a:hover {
color: #ccc;
}
/* Section of the page
=====================================================================================*/
.list {
/*box model*/
margin-top: 5px;
margin-left: -40px;
/*other*/
list-style-image: url(../images/bullet.png);
}
.para1,
.para2,
.para3 {
/*box model */
width: 500px;
margin-bottom:30px;
}
.para4 {
width:580px;
}
.section-content {
font-size: 15px;
}
.section-sideimages {
float: right;
}
.img-text {
/*position*/
position: relative;
top:-140px;
left: 30px;
/*other*/
color: #4D504D;
font-size: 25px;
}
/* Footer of the page
=====================================================================================*/
.footer {
color: #fff;
background: #000;
}
.footer a {
border-bottom: 1px solid blue;
/*other*/
color: #fff;
list-style-type: none;
text-decoration: none;
}
.footer li {
/*box model*/
padding: 5px;
/*display*/
display: inline;
}
.footer > ul {
/*box model*/
padding-top: 20px;
}
.footer > img {
margin-left: 760px;
}
.foot {
width: 960px;
height: 10px;
}
.footer > span {
/*box model*/
margin-left: 40px;
/*other*/
font-size: 10px;
}
.footer a:hover {
color: #0000FF;
}
/* Wrapper to hold the content of whole page
=====================================================================================*/
.wrapper {
/*box model */
width: 960px;
margin: 0px auto;
} | data/test/css/1face70d8a590d5dada63475555304af72a1acedstyle.css | ======================================================================================*/
.head-blue-line img {
/*box model */
width: 960px;
height: 10px;
}
.logo {
/*box model*/
width: 170px;
height: 120px;
margin: 10px 10px 30px 10px;
/*display*/
display: inline-block;
}
.nav > li ,a {
/*other*/
color: black;
font-size: 13px;
list-style: none;
text-decoration: none;
}
.nav a {
/*box model */
width: 100px;
height: 40px;
/*display*/
display: inline-block;
/*other*/
text-align: center;
}
.nav > li {
/*display*/
display: inline-block;
vertical-align: top;
}
.nav {
/*box model */
margin-top: 50px;
/*display*/
float: right;
}
.nav a:hover {
color: #ccc;
}
/* Section of the page
=====================================================================================*/
.list {
/*box model*/
margin-top: 5px;
margin-left: -40px;
/*other*/
list-style-image: url(../images/bullet.png);
}
.para1,
.para2,
.para3 {
/*box model */
width: 500px;
margin-bottom:30px;
}
.para4 {
width:580px;
}
.section-content {
font-size: 15px;
}
.section-sideimages {
float: right;
}
.img-text {
/*position*/
position: relative;
top:-140px;
left: 30px;
/*other*/
color: #4D504D;
font-size: 25px;
}
/* Footer of the page
=====================================================================================*/
.footer {
color: #fff;
background: #000;
}
.footer a {
border-bottom: 1px solid blue;
/*other*/
color: #fff;
list-style-type: none;
text-decoration: none;
}
.footer li {
/*box model*/
padding: 5px;
/*display*/
display: inline;
}
.footer > ul {
/*box model*/
padding-top: 20px;
}
.footer > img {
margin-left: 760px;
}
.foot {
width: 960px;
height: 10px;
}
.footer > span {
/*box model*/
margin-left: 40px;
/*other*/
font-size: 10px;
}
.footer a:hover {
color: #0000FF;
}
/* Wrapper to hold the content of whole page
=====================================================================================*/
.wrapper {
/*box model */
width: 960px;
margin: 0px auto;
} | 0.190762 | 0.094343 |
*,
*:after,
*:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin: 0;
-webkit-font-smoothing: antialiased;
}
body {
margin: 0;
font-family: Courier;
}
section {
margin: 0;
padding: 0;
}
/*---------------------------------------------------------*/
/* Nav */
/*---------------------------------------------------------*/
#nav a:link,
#nav a:visited,
#nav a:active {
text-decoration: none;
color: #333;
}
.nav {
font-size: .8em;
width: 100%;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
}
.nav ul {
position: absolute;
right: 0;
margin: 20px;
padding-bottom: 5px;
top: 3px;
white-space: nowrap;
padding-right: 20px;
}
.nav li {
display: inline;
padding-left: 25px;
text-transform: uppercase;
letter-spacing: .1em;
}
/*---------------------------------------------------------*/
/* Hamburger Menu Icon */
/*---------------------------------------------------------*/
.yellow_hamburger_bg {
background-color: #FFE95C !important;
border-color: #FFE95C !important;
}
#nav-icon3 {
width: 60px;
height: 45px;
position: absolute;
margin: 50px auto;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
left: 50px;
background-color: #fff;
border: 7px solid #fff;
}
#nav-icon3 span {
display: block;
position: absolute;
height: 2px;
width: 100%;
background: #000;
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
/* Icon 3 */
#nav-icon3 span:nth-child(1) {
top: 0;
}
#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
top: 15px;
}
#nav-icon3 span:nth-child(4) {
top: 30px;
width: 75%;
}
#nav-icon3.open span:nth-child(1) {
top: 15px;
width: 0%;
left: 50%;
}
#nav-icon3.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
top: 15px;
width: 0%;
left: 50%;
}
/*---------------------------------------------------------*/
/* Scroll Indicator */
/*---------------------------------------------------------*/
@keyframes scroll-indicate {
0% {
opacity: 1;
}
20% {
opacity: 0;
}
40% {
opacity: 1;
}
100% {
opacity: 1;
}
}
.scrollIndicator {
position: absolute;
width: 100%;
top: 90%;
}
.scrollIndicator:before {
border-radius: 0 0 0 2px;
position: absolute;
width: 24px;
height: 24px;
transform: rotate(-45deg);
border-bottom: 3px solid #fff;
border-left: 3px solid #fff;
content: '';
top: 0;
left: 50%;
margin-left: -12px;
animation: scroll-indicate 1.5s linear 0s infinite;
}
.scrollIndicator:after {
border-radius: 0 0 0 2px;
position: absolute;
width: 24px;
height: 24px;
transform: rotate(-45deg);
border-bottom: 3px solid #fff;
border-left: 3px solid #fff;
box-sizing: border-box;
content: '';
top: 12px;
left: 50%;
margin-left: -12px;
animation: scroll-indicate 1.5s linear 0.25s infinite;
}
/*---------------------------------------------------------*/
/* Header */
/*---------------------------------------------------------*/
.home_banner {
height: 100vh;
z-index: 20;
width: 100%;
background: #ffe95c no-repeat;
-webkit-background-size: 300px;
background-size: 300px;
position: relative;
}
.home_banner p {
line-height: 1.7em;
font-size: 1.6em;
position: absolute;
top: 45%;
margin-top: -2.5em;
padding-left: 10%;
transform: translate(-50%, auto);
}
/*---------------------------------------------------------*/
/* Projects Section */
/*---------------------------------------------------------*/
.work_wrapper {
padding-right: 0;
padding-left: 0;
}
.section_wrapper {
margin: 0;
}
.section_header {
padding: 0;
}
h1.section_title {
padding-left: 20px;
margin-bottom: 0;
margin-top: 0;
}
.section_title_underline {
width: 50%;
height: 1px;
background-color: #3d4542;
margin-left: 20px;
margin-bottom: 20px;
}
.float_right {
float: right;
}
.float_right .section_title {
padding-left: 0;
padding-right: 20px;
}
.float_right .section_title_underline {
float: right;
margin-left: 0;
margin-right: 20px;
}
.float_right_wrapper {
padding-right: 20px;
}
/* clearfix */
.clear {
clear: both;
height: 0;
overflow: hidden;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
/* some resets */
img {
max-width: 100%;
height: auto;
}
.button-cont {
display: inline-block;
position: relative;
right: 41px;
}
.button-cont .static {
display: block;
line-height: 43px;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.08em;
text-align: center;
color: #000;
background: rgba(255,255,255,1);
padding: 0 15px;
font-weight: 600;
}
.button-cont .hover-overflow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 0;
overflow: hidden;
-webkit-transition: .25s;
transition: .25s;
padding: 0 15px;
}
.button-cont .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(51,51,51,1);
color: #fff;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.08em;
line-height: 43px;
text-align: center;
font-weight: 600;
padding: 0 15px;
}
/* === BASE === */
html, body {
margin: 0;
}
/* === WORK === */
.work_content {
text-align: center;
font-size: 0;
margin: 0 auto;
max-width: 1550px;
}
#work h1 {
margin: 0;
}
#work h1 span {
width: 19rem;
line-height: 10rem;
background: #e5e5e5;
font-size: 2rem;
font-weight: normal;
display: block;
text-align: center;
position: relative;
}
#work h1 span:after {
content: '';
position: absolute;
right: 2.4em;
top: 100%;
width: 0;
height: 0;
border-top: 2.3rem solid #e5e5e5;
border-left: 1.9rem solid transparent;
}
#work img {
width: 100%;
opacity: 0.2;
-webkit-transition: opacity 0.35s, -webkit-transform 1s;
transition: opacity 0.35s, transform 1s;
}
#work .work-top .work-top-bigger {
display: none;
}
#work .item {
display: block;
position: relative;
margin: .8rem 0;
min-height: 182px;
background-color: #f4f7fa;
background-size: cover;
max-height: 422px;
overflow: hidden;
background: -webkit-linear-gradient(-45deg, #FFE95C 0%, #FFE95C 100%);
background: linear-gradient(-45deg, #FFE95C 0%, #FFE95C 100%);
}
#work .item::before {
position: absolute;
content: '';
border: 2px solid #fff;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
z-index: 99;
}
#work .item.hidden {
display: none;
}
#work .item > span {
position: absolute;
right: 2rem;
top: 50%;
margin-top: -2.7rem;
z-index: 99;
}
#work .item > span .static {
min-width: 250px;
line-height: 25px;
padding: 15px;
}
#work .item > span .hover {
line-height: 55px;
}
#work .item:hover .button-cont .hover-overflow {
height: 100%;
}
#work .item:hover img {
-webkit-transform: scale3d(1.01, 1.01, 1);
transform: scale3d(1.01, 1.01, 1);
}
#work .item:hover img,
#work .item:hover::before {
opacity: 1;
border: none;
}
#projects img.mobile {
display: none;
}
/* Responsiveness */
/* ------------------------------------------------------------------- */
/* 1299px */
/* ------------------------------------------------------------------- */
@media(max-width: 1299px) {
#work .col1 .work-bottom {
display: none;
}
#work .col2 .work-top {
display: none;
}
#work .col1 .item.hidden {
display: block;
}
#work .col2 .item {
display: none;
}
}
/*---------------------------------------------------------*/
/* About Section */
/*---------------------------------------------------------*/
.about_header {
background: rgba(51,51,51,1);
color: #fff;
}
.section_title_underline_about {
background-color: #fff;
}
h1.section_title {
padding-top: 15px;
}
.col-md-6.about_image { /* get rid of for mobile */
position: relative;
left: -125px;
padding-right: 0;
padding-left: 0;
padding-top: 50px;
z-index: 9;
}
.col-md-6.about_text { /* get rid of for mobile */
position: relative;
z-index: 99;
right: -125px;
top: 50px;
}
.about_text_image_wrapper {
padding-top: 150px;
}
.about_text_bg {
background: -webkit-linear-gradient(-45deg, #FFE95C 0%, #FFE95C 100%);
background: linear-gradient(-45deg, #FFE95C 0%, #FFE95C 100%);
padding: 10px;
}
section#about {
overflow-x: hidden;
}
/*---------------------------------------------------------*/
/* Contact Section */
/*---------------------------------------------------------*/
.contact_header {
background-color: #FFE95C;
z-index: 99;
}
#contact form input,
#contact form textarea,
#contact form button {
border-radius: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
}
input.form-control.contact_name,
input.form-control.contact_email {
width: 49%;
}
input.form-control.contact_name {
float: left;
margin-right: 2%;
}
input.form-control.contact_phone {
width: 49%;
}
.contact_form_inner_wrapper {
position: relative;
top: -180px;
left: 35px;
}
.contact_cta_text_wrapper {
margin-bottom: 50px;
color: #fff;
}
.skewed_bg {
background: #333333;
padding: 430px 0;
-moz-transform: skew(0deg, -10deg);
-ms-transform: skew(0deg, -10deg);
-webkit-transform: skew(0deg, -10deg);
transform: skew(0deg, -10deg);
margin-top: -200px;
z-index: -1;
}
.skewed_content {
-moz-transform: skew(0deg, 10deg);
-ms-transform: skew(0deg, 10deg);
-webkit-transform: skew(0deg, 10deg);
transform: skew(0deg, 10deg);
}
.contact_info_wrapper {
color: #fff;
}
.contact_info_inner_wrapper {
position: relative;
right: 50px;
text-align: right;
font-size: 150%;
}
.contact_info_inner_wrapper span {
background-color: #FFE95C;
color: #333333;
padding: 5px;
}
.social a {
color: #000;
}
.social a:hover {
color: #000;
text-decoration: none;
}
section#contact {
overflow: hidden;
height: 1000px;
}
.cf_input_focus:focus {
background-color: #FFE95C;
border: none;
}
.cf_btn {
background-color: #fff;
}
.cf_btn:hover {
background-color: #FFE95C !important;
}
#contact_form .cf_btn:focus,
#contact_form .cf_btn:active {
outline: none;
}
#contact_form .cf_btn:active {
background-color: #FFE95C;
}
.btn-default.focus, .btn-default:focus {
background-color: #fff;
}
/*---------------------------------------------------------*/
/* Contact Form Validation Classes */
/*---------------------------------------------------------*/
.cf_name_error {
position: absolute;
top: 141px;
}
.cf_email_error {
/*float: right;*/
}
.cf_error .help-block {
color: #FFE95C;
}
.email_group {
float: left;
width: 49%;
}
input.contact_email {
width: 100% !important;
}
/*---------------------------------------------------------*/
/* Contact Form Flash Message */
/*---------------------------------------------------------*/
.flash_message {
display: block;
position: fixed;
top: 25px;
right: 25px;
width: 350px;
padding: 20px 25px 20px 85px;
font-size: 16px;
font-weight: 400;
color: #000;
background-color: #fff;
border: 2px solid #DCBE00;
border-radius: 2px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
z-index: 99;
opacity: 0;
}
.flash_message .flash__icon {
position: absolute;
top: 50%;
left: 0;
width: 1.8em;
height: 100%;
padding: 0 0.4em;
background-color: #FFE95C;
color: #FFF;
font-size: 36px;
font-weight: 300;
transform: translate(0,-50%);
}
.flash_message .flash__icon .icon {
position: absolute;
top: 50%;
transform: translate(0,-50%);
}
/*---------------------------------------------------------*/
/* Hidden Side Menu */
/*---------------------------------------------------------*/
.primary-navigation-opened .body-wrapper {
-webkit-transform: translateX(-200px);
-ms-transform: translateX(-200px);
transform: translateX(-200px);
position: fixed;
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
}
.primary-navigation-opened .primary-navigation__outer {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
.body-wrapper {
/*
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
*/
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
}
.primary-navigation__outer {
position:fixed;
top: 0;
right: -5px;
bottom: 0;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000;
perspective: 1000;
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
}
.primary-navigation__outer:before {
position:absolute;
z-index: -1;
display: block;
width: 250%;
height: 100%;
content: '';
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
border-left: 6px solid #FFF;
background: #293235;
-webkit-transition: all .5s;
transition: all .5s;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000;
perspective: 1000;
z-index: 9999;
}
.primary-navigation-opened .primary-navigation__outer:before {
-webkit-transform: skew(-8deg);
-ms-transform: skew(-8deg);
transform: skew(-8deg);
height: 100vh;
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
position: relative;
}
.primary-navigation__inner {
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 210px;
height: 100%;
padding: 57px 32px 0 44px;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
-webkit-animation-delay: .5s;
-moz-animation-delay: .5s;
position: relative;
bottom: 600px;
}
.primary-navigation__inner-item {
position: relative;
display: inline-block;
padding: 0 27px 0 23px;
font-size: 18px;
line-height: 24px;
text-decoration: none;
color: rgba(255,233,92,1);
-webkit-transition: all .5s;
transition: all .5s;
display:block;
margin-bottom: 32px;
padding: 0;
font-size: 21px;
}
.primary-navigation__inner a:hover {
color: #FFF;
}
.primary-navigation-opened .primary-navigation__inner {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
position: relative;
bottom: 600px;
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
}
/*---------------------------------------------------------*/
/* Black and White Selfie 1 */
/*---------------------------------------------------------*/
.selfie_1 {
width: 450px;
position: absolute;
bottom: 0;
z-index: -1;
-webkit-clip-path: circle(50% at 50% 73%);
clip-path: circle(50% at 50% 73%);
-webkit-filter: grayscale(100%) brightness(175%);
filter: grayscale(100%) brightness(175%);
}
#firefox_selfie {
position: absolute;
bottom: 0;
margin: -7px;
display: none;
}
#all_browsers_but_ff_selfie {
display: block;
}
/*---------------------------------------------------------*/
/* About Me Selfie */
/*---------------------------------------------------------*/
.about_me_selfie {
-webkit-filter: grayscale(100%) brightness(200%);
filter: grayscale(100%) brightness(200%);
position: relative;
left: 25%;
}
.mobile_about_me_selfie {
display: none;
} | dist/styles/home.css |
*,
*:after,
*:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin: 0;
-webkit-font-smoothing: antialiased;
}
body {
margin: 0;
font-family: Courier;
}
section {
margin: 0;
padding: 0;
}
/*---------------------------------------------------------*/
/* Nav */
/*---------------------------------------------------------*/
#nav a:link,
#nav a:visited,
#nav a:active {
text-decoration: none;
color: #333;
}
.nav {
font-size: .8em;
width: 100%;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
}
.nav ul {
position: absolute;
right: 0;
margin: 20px;
padding-bottom: 5px;
top: 3px;
white-space: nowrap;
padding-right: 20px;
}
.nav li {
display: inline;
padding-left: 25px;
text-transform: uppercase;
letter-spacing: .1em;
}
/*---------------------------------------------------------*/
/* Hamburger Menu Icon */
/*---------------------------------------------------------*/
.yellow_hamburger_bg {
background-color: #FFE95C !important;
border-color: #FFE95C !important;
}
#nav-icon3 {
width: 60px;
height: 45px;
position: absolute;
margin: 50px auto;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
cursor: pointer;
left: 50px;
background-color: #fff;
border: 7px solid #fff;
}
#nav-icon3 span {
display: block;
position: absolute;
height: 2px;
width: 100%;
background: #000;
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
/* Icon 3 */
#nav-icon3 span:nth-child(1) {
top: 0;
}
#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
top: 15px;
}
#nav-icon3 span:nth-child(4) {
top: 30px;
width: 75%;
}
#nav-icon3.open span:nth-child(1) {
top: 15px;
width: 0%;
left: 50%;
}
#nav-icon3.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
top: 15px;
width: 0%;
left: 50%;
}
/*---------------------------------------------------------*/
/* Scroll Indicator */
/*---------------------------------------------------------*/
@keyframes scroll-indicate {
0% {
opacity: 1;
}
20% {
opacity: 0;
}
40% {
opacity: 1;
}
100% {
opacity: 1;
}
}
.scrollIndicator {
position: absolute;
width: 100%;
top: 90%;
}
.scrollIndicator:before {
border-radius: 0 0 0 2px;
position: absolute;
width: 24px;
height: 24px;
transform: rotate(-45deg);
border-bottom: 3px solid #fff;
border-left: 3px solid #fff;
content: '';
top: 0;
left: 50%;
margin-left: -12px;
animation: scroll-indicate 1.5s linear 0s infinite;
}
.scrollIndicator:after {
border-radius: 0 0 0 2px;
position: absolute;
width: 24px;
height: 24px;
transform: rotate(-45deg);
border-bottom: 3px solid #fff;
border-left: 3px solid #fff;
box-sizing: border-box;
content: '';
top: 12px;
left: 50%;
margin-left: -12px;
animation: scroll-indicate 1.5s linear 0.25s infinite;
}
/*---------------------------------------------------------*/
/* Header */
/*---------------------------------------------------------*/
.home_banner {
height: 100vh;
z-index: 20;
width: 100%;
background: #ffe95c no-repeat;
-webkit-background-size: 300px;
background-size: 300px;
position: relative;
}
.home_banner p {
line-height: 1.7em;
font-size: 1.6em;
position: absolute;
top: 45%;
margin-top: -2.5em;
padding-left: 10%;
transform: translate(-50%, auto);
}
/*---------------------------------------------------------*/
/* Projects Section */
/*---------------------------------------------------------*/
.work_wrapper {
padding-right: 0;
padding-left: 0;
}
.section_wrapper {
margin: 0;
}
.section_header {
padding: 0;
}
h1.section_title {
padding-left: 20px;
margin-bottom: 0;
margin-top: 0;
}
.section_title_underline {
width: 50%;
height: 1px;
background-color: #3d4542;
margin-left: 20px;
margin-bottom: 20px;
}
.float_right {
float: right;
}
.float_right .section_title {
padding-left: 0;
padding-right: 20px;
}
.float_right .section_title_underline {
float: right;
margin-left: 0;
margin-right: 20px;
}
.float_right_wrapper {
padding-right: 20px;
}
/* clearfix */
.clear {
clear: both;
height: 0;
overflow: hidden;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
/* some resets */
img {
max-width: 100%;
height: auto;
}
.button-cont {
display: inline-block;
position: relative;
right: 41px;
}
.button-cont .static {
display: block;
line-height: 43px;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.08em;
text-align: center;
color: #000;
background: rgba(255,255,255,1);
padding: 0 15px;
font-weight: 600;
}
.button-cont .hover-overflow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 0;
overflow: hidden;
-webkit-transition: .25s;
transition: .25s;
padding: 0 15px;
}
.button-cont .hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(51,51,51,1);
color: #fff;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.08em;
line-height: 43px;
text-align: center;
font-weight: 600;
padding: 0 15px;
}
/* === BASE === */
html, body {
margin: 0;
}
/* === WORK === */
.work_content {
text-align: center;
font-size: 0;
margin: 0 auto;
max-width: 1550px;
}
#work h1 {
margin: 0;
}
#work h1 span {
width: 19rem;
line-height: 10rem;
background: #e5e5e5;
font-size: 2rem;
font-weight: normal;
display: block;
text-align: center;
position: relative;
}
#work h1 span:after {
content: '';
position: absolute;
right: 2.4em;
top: 100%;
width: 0;
height: 0;
border-top: 2.3rem solid #e5e5e5;
border-left: 1.9rem solid transparent;
}
#work img {
width: 100%;
opacity: 0.2;
-webkit-transition: opacity 0.35s, -webkit-transform 1s;
transition: opacity 0.35s, transform 1s;
}
#work .work-top .work-top-bigger {
display: none;
}
#work .item {
display: block;
position: relative;
margin: .8rem 0;
min-height: 182px;
background-color: #f4f7fa;
background-size: cover;
max-height: 422px;
overflow: hidden;
background: -webkit-linear-gradient(-45deg, #FFE95C 0%, #FFE95C 100%);
background: linear-gradient(-45deg, #FFE95C 0%, #FFE95C 100%);
}
#work .item::before {
position: absolute;
content: '';
border: 2px solid #fff;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
z-index: 99;
}
#work .item.hidden {
display: none;
}
#work .item > span {
position: absolute;
right: 2rem;
top: 50%;
margin-top: -2.7rem;
z-index: 99;
}
#work .item > span .static {
min-width: 250px;
line-height: 25px;
padding: 15px;
}
#work .item > span .hover {
line-height: 55px;
}
#work .item:hover .button-cont .hover-overflow {
height: 100%;
}
#work .item:hover img {
-webkit-transform: scale3d(1.01, 1.01, 1);
transform: scale3d(1.01, 1.01, 1);
}
#work .item:hover img,
#work .item:hover::before {
opacity: 1;
border: none;
}
#projects img.mobile {
display: none;
}
/* Responsiveness */
/* ------------------------------------------------------------------- */
/* 1299px */
/* ------------------------------------------------------------------- */
@media(max-width: 1299px) {
#work .col1 .work-bottom {
display: none;
}
#work .col2 .work-top {
display: none;
}
#work .col1 .item.hidden {
display: block;
}
#work .col2 .item {
display: none;
}
}
/*---------------------------------------------------------*/
/* About Section */
/*---------------------------------------------------------*/
.about_header {
background: rgba(51,51,51,1);
color: #fff;
}
.section_title_underline_about {
background-color: #fff;
}
h1.section_title {
padding-top: 15px;
}
.col-md-6.about_image { /* get rid of for mobile */
position: relative;
left: -125px;
padding-right: 0;
padding-left: 0;
padding-top: 50px;
z-index: 9;
}
.col-md-6.about_text { /* get rid of for mobile */
position: relative;
z-index: 99;
right: -125px;
top: 50px;
}
.about_text_image_wrapper {
padding-top: 150px;
}
.about_text_bg {
background: -webkit-linear-gradient(-45deg, #FFE95C 0%, #FFE95C 100%);
background: linear-gradient(-45deg, #FFE95C 0%, #FFE95C 100%);
padding: 10px;
}
section#about {
overflow-x: hidden;
}
/*---------------------------------------------------------*/
/* Contact Section */
/*---------------------------------------------------------*/
.contact_header {
background-color: #FFE95C;
z-index: 99;
}
#contact form input,
#contact form textarea,
#contact form button {
border-radius: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
}
input.form-control.contact_name,
input.form-control.contact_email {
width: 49%;
}
input.form-control.contact_name {
float: left;
margin-right: 2%;
}
input.form-control.contact_phone {
width: 49%;
}
.contact_form_inner_wrapper {
position: relative;
top: -180px;
left: 35px;
}
.contact_cta_text_wrapper {
margin-bottom: 50px;
color: #fff;
}
.skewed_bg {
background: #333333;
padding: 430px 0;
-moz-transform: skew(0deg, -10deg);
-ms-transform: skew(0deg, -10deg);
-webkit-transform: skew(0deg, -10deg);
transform: skew(0deg, -10deg);
margin-top: -200px;
z-index: -1;
}
.skewed_content {
-moz-transform: skew(0deg, 10deg);
-ms-transform: skew(0deg, 10deg);
-webkit-transform: skew(0deg, 10deg);
transform: skew(0deg, 10deg);
}
.contact_info_wrapper {
color: #fff;
}
.contact_info_inner_wrapper {
position: relative;
right: 50px;
text-align: right;
font-size: 150%;
}
.contact_info_inner_wrapper span {
background-color: #FFE95C;
color: #333333;
padding: 5px;
}
.social a {
color: #000;
}
.social a:hover {
color: #000;
text-decoration: none;
}
section#contact {
overflow: hidden;
height: 1000px;
}
.cf_input_focus:focus {
background-color: #FFE95C;
border: none;
}
.cf_btn {
background-color: #fff;
}
.cf_btn:hover {
background-color: #FFE95C !important;
}
#contact_form .cf_btn:focus,
#contact_form .cf_btn:active {
outline: none;
}
#contact_form .cf_btn:active {
background-color: #FFE95C;
}
.btn-default.focus, .btn-default:focus {
background-color: #fff;
}
/*---------------------------------------------------------*/
/* Contact Form Validation Classes */
/*---------------------------------------------------------*/
.cf_name_error {
position: absolute;
top: 141px;
}
.cf_email_error {
/*float: right;*/
}
.cf_error .help-block {
color: #FFE95C;
}
.email_group {
float: left;
width: 49%;
}
input.contact_email {
width: 100% !important;
}
/*---------------------------------------------------------*/
/* Contact Form Flash Message */
/*---------------------------------------------------------*/
.flash_message {
display: block;
position: fixed;
top: 25px;
right: 25px;
width: 350px;
padding: 20px 25px 20px 85px;
font-size: 16px;
font-weight: 400;
color: #000;
background-color: #fff;
border: 2px solid #DCBE00;
border-radius: 2px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
z-index: 99;
opacity: 0;
}
.flash_message .flash__icon {
position: absolute;
top: 50%;
left: 0;
width: 1.8em;
height: 100%;
padding: 0 0.4em;
background-color: #FFE95C;
color: #FFF;
font-size: 36px;
font-weight: 300;
transform: translate(0,-50%);
}
.flash_message .flash__icon .icon {
position: absolute;
top: 50%;
transform: translate(0,-50%);
}
/*---------------------------------------------------------*/
/* Hidden Side Menu */
/*---------------------------------------------------------*/
.primary-navigation-opened .body-wrapper {
-webkit-transform: translateX(-200px);
-ms-transform: translateX(-200px);
transform: translateX(-200px);
position: fixed;
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
}
.primary-navigation-opened .primary-navigation__outer {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
.body-wrapper {
/*
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
*/
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
}
.primary-navigation__outer {
position:fixed;
top: 0;
right: -5px;
bottom: 0;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000;
perspective: 1000;
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
}
.primary-navigation__outer:before {
position:absolute;
z-index: -1;
display: block;
width: 250%;
height: 100%;
content: '';
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
border-left: 6px solid #FFF;
background: #293235;
-webkit-transition: all .5s;
transition: all .5s;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000;
perspective: 1000;
z-index: 9999;
}
.primary-navigation-opened .primary-navigation__outer:before {
-webkit-transform: skew(-8deg);
-ms-transform: skew(-8deg);
transform: skew(-8deg);
height: 100vh;
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
position: relative;
}
.primary-navigation__inner {
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 210px;
height: 100%;
padding: 57px 32px 0 44px;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
-webkit-animation-delay: .5s;
-moz-animation-delay: .5s;
position: relative;
bottom: 600px;
}
.primary-navigation__inner-item {
position: relative;
display: inline-block;
padding: 0 27px 0 23px;
font-size: 18px;
line-height: 24px;
text-decoration: none;
color: rgba(255,233,92,1);
-webkit-transition: all .5s;
transition: all .5s;
display:block;
margin-bottom: 32px;
padding: 0;
font-size: 21px;
}
.primary-navigation__inner a:hover {
color: #FFF;
}
.primary-navigation-opened .primary-navigation__inner {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
position: relative;
bottom: 600px;
-webkit-transition: all .5s;
transition: all .5s;
z-index: 9999;
}
/*---------------------------------------------------------*/
/* Black and White Selfie 1 */
/*---------------------------------------------------------*/
.selfie_1 {
width: 450px;
position: absolute;
bottom: 0;
z-index: -1;
-webkit-clip-path: circle(50% at 50% 73%);
clip-path: circle(50% at 50% 73%);
-webkit-filter: grayscale(100%) brightness(175%);
filter: grayscale(100%) brightness(175%);
}
#firefox_selfie {
position: absolute;
bottom: 0;
margin: -7px;
display: none;
}
#all_browsers_but_ff_selfie {
display: block;
}
/*---------------------------------------------------------*/
/* About Me Selfie */
/*---------------------------------------------------------*/
.about_me_selfie {
-webkit-filter: grayscale(100%) brightness(200%);
filter: grayscale(100%) brightness(200%);
position: relative;
left: 25%;
}
.mobile_about_me_selfie {
display: none;
} | 0.42919 | 0.04952 |
* {
text-decoration: none;
list-style: none;
}
a {
font-family: 'Fredericka the Great', cursive;
}
p {
font-family: 'Press Start 2P', cursive;
text-shadow: 0px 3px 4px red;
}
:root {
--sun: linear-gradient(45deg, red, yellow, red);
--moon: linear-gradient(45deg, black, grey, black);
--dark: rgb(37, 37, 37);
--light: rgb(241, 241, 241);
--study: rgb(136, 136, 136);
--bar: rgb(46, 46, 46);
}
h1 {
color: rgb(0, 231, 104);
font-size: 30px;
font-family: 'Fredericka the Great', cursive;
}
.day {
background: #73ffff;
height: 70%;
width: 300px;
position: fixed;
top: 10%;
left: 88%;
z-index: 4;
transition: .5s;
}
.text {
position: fixed;
top: 45%;
left: 88%;
}
.o {
position: fixed;
left: 94%;
top: 24%;
transition: 2s;
}
.t {
position: fixed;
left: 94%;
top: 16%;
transition: 2s;
}
.h {
position: fixed;
left: 94%;
top: 32%;
transition: 2s;
}
.eye i {
font-size: 10px;
}
.day i {
font-size: 35px;
z-index: 22;
}
.ic i {
font-size: 30px;
}
.fa-bars {
position: fixed;
top: 10%;
left: 2%;
z-index: 123;
font-size: 30px;
}
.fa-times {
position: fixed;
top: 10%;
left: 2%;
z-index: 123;
font-size: 30px;
color: white;
}
.as i {
font-size: 30px;
color: #d4d;
position: fixed;
top: 10%;
left: 90%;
z-index: 123;
font-size: 30px;
}
.day .fa-sun-o {
color: #ff0;
position: fixed;
top: 23%;
left: 90%;
transition: 2s;
padding: 10px;
border: 1px solid red;
border-radius: 10px;
}
.day .fa-moon-o {
color: rgb(255, 255, 255);
position: fixed;
top: 15%;
left: 90%;
transition: 2s;
padding: 10px 12px;
border: 1px solid red;
border-radius: 10px;
}
.day .fa-eye {
color: rgb(255, 255, 255);
position: fixed;
top: 31%;
left: 90%;
transition: 2s;
padding: 10px;
border: 1px solid red;
border-radius: 10px;
}
body {
background-color: rgb(0, 0, 0);
z-index: 21312;
}
.collapse {
width: 100%;
}
.navbars {
/* background-attachment:fixed ; */
position: relative;
left: 50%;
transform: translateX(-50%);
width: 100%;
height: 80px;
background: linear-gradient(45deg,
rgb(129, 0, 0),
rgb(0, 0, 0),
rgb(156, 4, 4));
display: flex;
/* justify-content: space-evenly; */
align-items: center;
z-index: 3;
}
.nav a:hover {
background-color: #13e8e9;
padding: 4px;
}
.nav {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.navbars .nav .fa {
display: flex;
align-items: center;
color: rgb(0, 255, 255);
font-size: 35px;
}
.navbars .nav .fa:hover {
display: flex;
align-items: center;
color: rgb(208, 0, 245);
font-size: 35px;
transition: 0.9;
}
.navbars .navs a {
margin-left: 100px !important;
margin-right: 100px !important;
color: #d4d;
font-size: 25px;
text-decoration: none;
}
.navbars {
width: 100%;
display: flex;
justify-content: space-between;
}
.navbars .nav a {
margin-left: 100px !important;
/* margin-right: 100px !important; */
color: #f0f;
font-size: 25px;
text-decoration: none;
}
.navbars .nav a:hover {
color: white;
text-decoration: none;
transition: 0.5s;
margin-left: 20px;
margin-right: 20px;
}
.navbars .navs a:hover {
color: white;
text-decoration: none;
transition: 0.5s;
margin-left: 20px;
margin-right: 20px;
}
.navbars a:hover {
color: white !important;
/* background-color: rgb(0, 8, 8); */
border-radius: 15px;
/* padding: 15px 25px !important; */
}
/* ---- reset ---- */
body {
margin: 0;
font: normal 75% Arial, Helvetica, sans-serif;
background-color: lightpink;
}
canvas {
display: block;
z-index: 2;
}
/* ---- particles.js container ---- */
#particles-js {
position: absolute;
width: 100%;
height: 700px;
background-color: #000000;
background-image: url("");
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
display: block;
z-index: 2;
}
#particles-jss{
position: absolute;
width: 100%;
height: 700px;
background-color: #000000;
background-image: url("");
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
display: block;
z-index: 2;
}
/* ---- stats.js ---- */
.count-particles {
background: #000022;
position: absolute;
top: 48px;
left: 0;
width: 80px;
color: #13e8e9;
font-size: 0.8em;
text-align: left;
text-indent: 4px;
line-height: 14px;
padding-bottom: 2px;
font-family: Helvetica, Arial, sans-serif;
font-weight: bold;
z-index: 2;
}
.js-count-particles {
font-size: 1.1em;
}
#stats,
.count-particles {
margin-top: 5px;
margin-left: 5px;
}
#stats {
border-radius: 3px 3px 0 0;
overflow: hidden;
}
.count-particles {
border-radius: 0 0 3px 3px;
}
#particles-js div {
color: blue;
font-size: 40px;
}
#particles-js p {
color: rgb(255, 255, 255);
}
#particles-js p span {
color: rgb(255, 0, 0);
}
.Dev {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
section {
margin-top: 720px;
}
.my_works {
background: linear-gradient(45deg, rgb(109, 0, 0), grey, rgb(87, 0, 0));
border-radius: 10px;
height: 100%;
box-shadow: 0px 0px 8px black;
}
.my_works h3 {
font-family: 'Zen Tokyo Zoo', cursive;
margin-top: 20px;
margin-bottom: 60px;
color: #f0f;
background: linear-gradient(45deg, black, grey, black);
padding: 20px;
border-radius: 15px;
box-shadow: 0px 0px 7px white;
}
.my_works ul {
margin: 0;
padding: 0;
}
/*
.my_works ul li a:hover {
color: #f0f !important; */
.my_works ul li a {
text-decoration: none;
}
.my_works ul li {
line-height: 30px;
text-decoration: none;
/* margin-bottom: 50px; */
}
/* .my_works ul li:hover {
color: #f0f;
} */
.my_works ul li a:first-child {
background-color: black;
}
.my_works ul li a {
/* margin: 10px; */
background-color: grey;
border: 2px solid black;
margin: 1px;
padding: 15px 45px;
text-align: center;
text-transform: uppercase;
transition: 1s;
background-size: 200% auto;
color: white;
/* box-shadow: 0 0 20px #eee; */
border-radius: 10px;
display: block;
font-size: 20px;
text-decoration: none;
}
.my_works ul li a:hover {
background-position: right center;
/* change the direction of the change here */
color: rgb(255, 255, 255);
font-size: 22px;
font-weight: bold;
}
.u {
position: fixed;
top: 3%;
left: 90%;
z-index: 43;
}
.ger{
width: 50px;
height: 25px;
background-color: grey;
border-radius: 15px;
display: flex;
align-items: center;
padding-left: 2px;
transition: 1s;
}
.fer {
width: 50px;
height: 25px;
background-color: grey;
border-radius: 15px;
display: flex;
align-items: center;
padding-left: 2px;
transition: 1s;
}
.der {
width: 20px;
height: 20px;
background-color: rgb(255, 255, 255);
border-radius: 50%;
}
.owl-carousel {
margin-top: 60px;
}
.owl-carousel img {
height: 400px;
width: 150px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.owl-carousel span {
font-size: 90px;
padding: 10px;
/* margin-left: 200px; */
/* position: absolute ; */
/* left: 50%; */
color: #f0f;
transition: 1s;
/* background: black; */
/* transform: rotate(180deg) */
}
.owl-carousel span:hover {
width: 100%;
height: 80px;
font-size: 90px;
/* padding: 10px; */
color: aqua;
background-color: #d4d;
padding: 10px 15px;
border-left: 2px double black;
border-right: 2px double black;
}
.owl-carousel .owl-nav {
display: flex;
justify-content: center;
background: linear-gradient(45deg, rgb(153, 0, 0), grey, crimson);
box-shadow: 0px 0px 10px black;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.slider {
background-image: linear-gradient(135deg,
rgb(129, 0, 0),
rgb(138, 138, 138),
rgb(228, 0, 0));
border-radius: 10px;
border-radius: 10px;
margin-top: 24120px;
box-shadow: 0px 0px 15px black;
}
.s {
margin-top: 120px;
}
.slider h2 {
font-family: 'Zen Tokyo Zoo', cursive;
font-size: 35px;
color: #f0f;
padding: 10px;
background: linear-gradient(75deg, black, grey, black);
margin-top: 20px;
border-radius: 10px;
}
.slider h2 span {
font-family: 'Zen Tokyo Zoo', cursive;
color: aqua;
}
.x {
box-shadow: 0px 0px 20px black;
margin-top: 20px;
border-radius: 65px;
}
.contact {
background-image: linear-gradient(135deg,
rgb(129, 0, 0),
rgb(138, 138, 138),
rgb(228, 0, 0));
border-radius: 15px;
}
.contact h4 {
font-family: 'Zen Tokyo Zoo', cursive;
font-size: 35px;
color: #f0f;
}
.contact h4 span {
font-family: 'Zen Tokyo Zoo', cursive;
font-size: 35px;
color: aqua;
}
.nav .active {
position: absolute;
left: -33%;
transform: translateX(10%);
}
.wiew {
display: flex;
flex-direction: column;
}
.wiew a {
color: rgb(38, 255, 0);
background-color: rgba(38, 0, 255, 0.2);
text-decoration: none;
transition: 1s;
margin: 10px;
padding: 15px;
}
.wiew a span {
color: rgb(4, 0, 255);
/* background-color:rgba(0, 255, 34, 0.2) ; */
text-decoration: none;
transition: 1s;
margin: 10px;
padding: 15px;
}
.wiew a span:hover {
color: rgb(255, 255, 255);
/* background-color:rgba(0, 255, 34, 0.2) ; */
text-decoration: none;
transition: 1s;
margin: 10px;
padding: 15px;
}
.wiew a:hover {
color: rgb(38, 0, 255);
text-decoration: none;
background-color: rgb(38, 255, 0);
padding: 15px;
border-radius: 4px;
}
.fa-home {
color: rgba(87, 11, 11, 0.747);
}
.fa-telegram {
color: blue;
background-color: white;
border-radius: 100%;
}
.fa-phone {
color: snow;
}
.fa-envelope-o {
color: tomato;
}
.tabs {
width: 100%;
height: 100%;
background: rgb(0, 94, 156);
position: fixed;
top: 50%;
left: -100%;
transition: 1.8s;
}
.tabs ul {
display: flex;
}
.tabs .nav a {
display: flex;
justify-content: space-between;
text-decoration: none;
padding: 20px 100px;
z-index: 1242;
color: white;
align-items: center;
font-size: 20px;
border-radius: 10px;
}
.tabs .nav .bar {
display: flex;
}
/* .navs{
position: absolute;
top: 20%;
left: 4%;
color: #f0f;
display: flex;
flex-direction: column;
display: none;
text-decoration: none;
font-size: 25px;
} */
.ikons {
background-color: rgba(214, 0, 214, .8);
border-radius: 10px;
width: 200px;
height: 50px;
display: flex;
align-items: center;
justify-content: space-around;
position: fixed;
top: 50%;
left: 2%;
transform: translateY(-50%);
z-index: 23;
transition: .5s;
}
.body {
background-color: rgb(95, 95, 95);
}
.ikons i {
/* background-color: #13e8e9; */
background-color: rgb(0, 255, 213);
border-radius: 100%;
color: rgb(0, 0, 0);
border: none;
padding: 10px;
opacity: .4;
transition: 1s;
}
.ikons i:hover {
/* background-color: #13e8e9; */
background-color: rgb(0, 4, 255);
border-radius: 100%;
color: rgb(255, 255, 255);
border: none;
padding: 10px;
font-size: 20px;
opacity: 1;
margin-bottom: 5px;
}
@media (max-width: 992px) {
.tabs .nav .bar .active {
padding-left: 200px;
}
.navs a {
width: 97%;
height: 100%;
padding-top: 50px;
margin-left: 30px;
color: #f0f;
display: flex;
flex-direction: column;
/* display: none; */
text-decoration: none;
font-size: 25px;
padding: 10px;
background: rgba(38, 0, 255, 0.1);
}
.navs a:hover {
padding: 10px;
color: rgb(0, 234, 255);
background: rgb(25, 0, 255);
}
.bar {
display: none;
}
body .icon {
display: block;
position: fixed;
top: 2%;
left: 2%;
color: rgb(0, 89, 255);
z-index: 12;
font-size: 35px;
}
body .fa-close {
display: block;
position: fixed;
top: 2%;
left: 1%;
color: rgb(255, 0, 0);
z-index: 12;
font-size: 35px;
}
.owl-carousel img {
height: 150px;
width: 100px;
}
.day {
height: 60%;
}
}
@media (max-width: 768px) {
.tabs .nav .bar .active {
transform: translate(90%, -80%);
}
*/ .navs a {
width: 90%;
margin-top: 50px;
margin-left: 30px;
color: #f0f;
display: flex;
flex-direction: column;
/* display: none; */
text-decoration: none;
font-size: 25px;
}
.bar {
display: none;
}
body .icon {
display: block;
position: fixed;
top: 2%;
left: 2%;
color: rgb(0, 89, 255);
z-index: 12;
font-size: 35px;
}
body .fa-close {
display: block;
position: fixed;
top: 1%;
left: 2%;
color: rgb(255, 0, 0);
z-index: 12;
font-size: 35px;
}
.owl-carousel img {
height: 150px;
width: 100px;
}
}
@media (max-width: 576px) {
.navs a {
width: 90%;
margin-top: 50px;
margin-left: 30px;
color: #f0f;
display: flex;
flex-direction: column;
/* display: none; */
text-decoration: none;
font-size: 25px;
}
.day {
position: fixed;
top: 12%;
left: 79%;
height: 70%;
width: 500px;
/* border: none ; */
z-index: 8;
}
.fa-arrow-left {
display: none !important;
}
.icons .fa {
padding: 3px !important;
}
.icons .fa-moon-o {
padding: 3px 5px !important;
}
.bar {
display: none;
}
.text {
width: 100px;
position: fixed;
top: 50%;
left: 80%;
}
body .icon {
display: block;
position: fixed;
top: 2%;
left: 2%;
color: rgb(0, 89, 255);
z-index: 12;
font-size: 35px;
}
body .fa-close {
display: block;
position: fixed;
top: 2%;
left: 2%;
color: rgb(255, 0, 0);
z-index: 12;
font-size: 35px;
}
.owl-carousel img {
height: 150px;
width: 100px;
}
}
@media (max-width: 320px) {
.navs a {
width: 80%;
height: 100%;
/* display: block; */
padding: 10px;
/* margin-left: 30px; */
color: #f0f;
display: flex;
flex-direction: column;
/* display: none; */
text-decoration: none;
font-size: 25px;
}
.tabs .nav .bar .active {
display: none;
}
.tabs .nav .bar {
display: block !important;
}
.day {
display: none;
position: fixed;
top: 12%;
left: 73%;
height: 70%;
width: 500px;
/* border: none ; */
z-index: 8;
}
.fa-arrow-left {
display: none !important;
}
.text {
width: 80px;
position: fixed;
top: 50%;
left: 73%;
}
/* .icons .fa {
padding: 3px !important;
} */
/* .fa-moon-o{
margin-right: 50px !important;
} */
.fa-moon-o {
padding: 3px 10px !important;
position: fixed !important;
top: 14% !important;
left: 79% !important;
}
.fa-sun-o {
position: fixed !important;
top: 24% !important;
left: 79% !important;
}
.fa-eye {
position: fixed !important;
top: 34% !important;
left: 79% !important;
}
.m {
position: fixed;
top: 2%;
left: 90%;
z-index: 4;
}
.k {
position: fixed;
top: 2%;
left: 80%;
z-index: 7;
opacity: 0;
}
.ta {
position: fixed;
top: 10%;
left: 0;
}
.bar {
display: none;
}
body .icon {
display: block;
position: fixed;
top: 22%;
left: 2%;
color: rgb(0, 89, 255);
z-index: 12;
font-size: 35px;
}
body .fa-close {
display: block;
position: fixed;
top: 1%;
left: 2%;
color: rgb(255, 0, 0);
z-index: 12;
font-size: 35px;
}
.owl-carousel img {
height: 150px;
width: 100px;
}
} | Darket.css | * {
text-decoration: none;
list-style: none;
}
a {
font-family: 'Fredericka the Great', cursive;
}
p {
font-family: 'Press Start 2P', cursive;
text-shadow: 0px 3px 4px red;
}
:root {
--sun: linear-gradient(45deg, red, yellow, red);
--moon: linear-gradient(45deg, black, grey, black);
--dark: rgb(37, 37, 37);
--light: rgb(241, 241, 241);
--study: rgb(136, 136, 136);
--bar: rgb(46, 46, 46);
}
h1 {
color: rgb(0, 231, 104);
font-size: 30px;
font-family: 'Fredericka the Great', cursive;
}
.day {
background: #73ffff;
height: 70%;
width: 300px;
position: fixed;
top: 10%;
left: 88%;
z-index: 4;
transition: .5s;
}
.text {
position: fixed;
top: 45%;
left: 88%;
}
.o {
position: fixed;
left: 94%;
top: 24%;
transition: 2s;
}
.t {
position: fixed;
left: 94%;
top: 16%;
transition: 2s;
}
.h {
position: fixed;
left: 94%;
top: 32%;
transition: 2s;
}
.eye i {
font-size: 10px;
}
.day i {
font-size: 35px;
z-index: 22;
}
.ic i {
font-size: 30px;
}
.fa-bars {
position: fixed;
top: 10%;
left: 2%;
z-index: 123;
font-size: 30px;
}
.fa-times {
position: fixed;
top: 10%;
left: 2%;
z-index: 123;
font-size: 30px;
color: white;
}
.as i {
font-size: 30px;
color: #d4d;
position: fixed;
top: 10%;
left: 90%;
z-index: 123;
font-size: 30px;
}
.day .fa-sun-o {
color: #ff0;
position: fixed;
top: 23%;
left: 90%;
transition: 2s;
padding: 10px;
border: 1px solid red;
border-radius: 10px;
}
.day .fa-moon-o {
color: rgb(255, 255, 255);
position: fixed;
top: 15%;
left: 90%;
transition: 2s;
padding: 10px 12px;
border: 1px solid red;
border-radius: 10px;
}
.day .fa-eye {
color: rgb(255, 255, 255);
position: fixed;
top: 31%;
left: 90%;
transition: 2s;
padding: 10px;
border: 1px solid red;
border-radius: 10px;
}
body {
background-color: rgb(0, 0, 0);
z-index: 21312;
}
.collapse {
width: 100%;
}
.navbars {
/* background-attachment:fixed ; */
position: relative;
left: 50%;
transform: translateX(-50%);
width: 100%;
height: 80px;
background: linear-gradient(45deg,
rgb(129, 0, 0),
rgb(0, 0, 0),
rgb(156, 4, 4));
display: flex;
/* justify-content: space-evenly; */
align-items: center;
z-index: 3;
}
.nav a:hover {
background-color: #13e8e9;
padding: 4px;
}
.nav {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.navbars .nav .fa {
display: flex;
align-items: center;
color: rgb(0, 255, 255);
font-size: 35px;
}
.navbars .nav .fa:hover {
display: flex;
align-items: center;
color: rgb(208, 0, 245);
font-size: 35px;
transition: 0.9;
}
.navbars .navs a {
margin-left: 100px !important;
margin-right: 100px !important;
color: #d4d;
font-size: 25px;
text-decoration: none;
}
.navbars {
width: 100%;
display: flex;
justify-content: space-between;
}
.navbars .nav a {
margin-left: 100px !important;
/* margin-right: 100px !important; */
color: #f0f;
font-size: 25px;
text-decoration: none;
}
.navbars .nav a:hover {
color: white;
text-decoration: none;
transition: 0.5s;
margin-left: 20px;
margin-right: 20px;
}
.navbars .navs a:hover {
color: white;
text-decoration: none;
transition: 0.5s;
margin-left: 20px;
margin-right: 20px;
}
.navbars a:hover {
color: white !important;
/* background-color: rgb(0, 8, 8); */
border-radius: 15px;
/* padding: 15px 25px !important; */
}
/* ---- reset ---- */
body {
margin: 0;
font: normal 75% Arial, Helvetica, sans-serif;
background-color: lightpink;
}
canvas {
display: block;
z-index: 2;
}
/* ---- particles.js container ---- */
#particles-js {
position: absolute;
width: 100%;
height: 700px;
background-color: #000000;
background-image: url("");
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
display: block;
z-index: 2;
}
#particles-jss{
position: absolute;
width: 100%;
height: 700px;
background-color: #000000;
background-image: url("");
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
display: block;
z-index: 2;
}
/* ---- stats.js ---- */
.count-particles {
background: #000022;
position: absolute;
top: 48px;
left: 0;
width: 80px;
color: #13e8e9;
font-size: 0.8em;
text-align: left;
text-indent: 4px;
line-height: 14px;
padding-bottom: 2px;
font-family: Helvetica, Arial, sans-serif;
font-weight: bold;
z-index: 2;
}
.js-count-particles {
font-size: 1.1em;
}
#stats,
.count-particles {
margin-top: 5px;
margin-left: 5px;
}
#stats {
border-radius: 3px 3px 0 0;
overflow: hidden;
}
.count-particles {
border-radius: 0 0 3px 3px;
}
#particles-js div {
color: blue;
font-size: 40px;
}
#particles-js p {
color: rgb(255, 255, 255);
}
#particles-js p span {
color: rgb(255, 0, 0);
}
.Dev {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
section {
margin-top: 720px;
}
.my_works {
background: linear-gradient(45deg, rgb(109, 0, 0), grey, rgb(87, 0, 0));
border-radius: 10px;
height: 100%;
box-shadow: 0px 0px 8px black;
}
.my_works h3 {
font-family: 'Zen Tokyo Zoo', cursive;
margin-top: 20px;
margin-bottom: 60px;
color: #f0f;
background: linear-gradient(45deg, black, grey, black);
padding: 20px;
border-radius: 15px;
box-shadow: 0px 0px 7px white;
}
.my_works ul {
margin: 0;
padding: 0;
}
/*
.my_works ul li a:hover {
color: #f0f !important; */
.my_works ul li a {
text-decoration: none;
}
.my_works ul li {
line-height: 30px;
text-decoration: none;
/* margin-bottom: 50px; */
}
/* .my_works ul li:hover {
color: #f0f;
} */
.my_works ul li a:first-child {
background-color: black;
}
.my_works ul li a {
/* margin: 10px; */
background-color: grey;
border: 2px solid black;
margin: 1px;
padding: 15px 45px;
text-align: center;
text-transform: uppercase;
transition: 1s;
background-size: 200% auto;
color: white;
/* box-shadow: 0 0 20px #eee; */
border-radius: 10px;
display: block;
font-size: 20px;
text-decoration: none;
}
.my_works ul li a:hover {
background-position: right center;
/* change the direction of the change here */
color: rgb(255, 255, 255);
font-size: 22px;
font-weight: bold;
}
.u {
position: fixed;
top: 3%;
left: 90%;
z-index: 43;
}
.ger{
width: 50px;
height: 25px;
background-color: grey;
border-radius: 15px;
display: flex;
align-items: center;
padding-left: 2px;
transition: 1s;
}
.fer {
width: 50px;
height: 25px;
background-color: grey;
border-radius: 15px;
display: flex;
align-items: center;
padding-left: 2px;
transition: 1s;
}
.der {
width: 20px;
height: 20px;
background-color: rgb(255, 255, 255);
border-radius: 50%;
}
.owl-carousel {
margin-top: 60px;
}
.owl-carousel img {
height: 400px;
width: 150px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.owl-carousel span {
font-size: 90px;
padding: 10px;
/* margin-left: 200px; */
/* position: absolute ; */
/* left: 50%; */
color: #f0f;
transition: 1s;
/* background: black; */
/* transform: rotate(180deg) */
}
.owl-carousel span:hover {
width: 100%;
height: 80px;
font-size: 90px;
/* padding: 10px; */
color: aqua;
background-color: #d4d;
padding: 10px 15px;
border-left: 2px double black;
border-right: 2px double black;
}
.owl-carousel .owl-nav {
display: flex;
justify-content: center;
background: linear-gradient(45deg, rgb(153, 0, 0), grey, crimson);
box-shadow: 0px 0px 10px black;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.slider {
background-image: linear-gradient(135deg,
rgb(129, 0, 0),
rgb(138, 138, 138),
rgb(228, 0, 0));
border-radius: 10px;
border-radius: 10px;
margin-top: 24120px;
box-shadow: 0px 0px 15px black;
}
.s {
margin-top: 120px;
}
.slider h2 {
font-family: 'Zen Tokyo Zoo', cursive;
font-size: 35px;
color: #f0f;
padding: 10px;
background: linear-gradient(75deg, black, grey, black);
margin-top: 20px;
border-radius: 10px;
}
.slider h2 span {
font-family: 'Zen Tokyo Zoo', cursive;
color: aqua;
}
.x {
box-shadow: 0px 0px 20px black;
margin-top: 20px;
border-radius: 65px;
}
.contact {
background-image: linear-gradient(135deg,
rgb(129, 0, 0),
rgb(138, 138, 138),
rgb(228, 0, 0));
border-radius: 15px;
}
.contact h4 {
font-family: 'Zen Tokyo Zoo', cursive;
font-size: 35px;
color: #f0f;
}
.contact h4 span {
font-family: 'Zen Tokyo Zoo', cursive;
font-size: 35px;
color: aqua;
}
.nav .active {
position: absolute;
left: -33%;
transform: translateX(10%);
}
.wiew {
display: flex;
flex-direction: column;
}
.wiew a {
color: rgb(38, 255, 0);
background-color: rgba(38, 0, 255, 0.2);
text-decoration: none;
transition: 1s;
margin: 10px;
padding: 15px;
}
.wiew a span {
color: rgb(4, 0, 255);
/* background-color:rgba(0, 255, 34, 0.2) ; */
text-decoration: none;
transition: 1s;
margin: 10px;
padding: 15px;
}
.wiew a span:hover {
color: rgb(255, 255, 255);
/* background-color:rgba(0, 255, 34, 0.2) ; */
text-decoration: none;
transition: 1s;
margin: 10px;
padding: 15px;
}
.wiew a:hover {
color: rgb(38, 0, 255);
text-decoration: none;
background-color: rgb(38, 255, 0);
padding: 15px;
border-radius: 4px;
}
.fa-home {
color: rgba(87, 11, 11, 0.747);
}
.fa-telegram {
color: blue;
background-color: white;
border-radius: 100%;
}
.fa-phone {
color: snow;
}
.fa-envelope-o {
color: tomato;
}
.tabs {
width: 100%;
height: 100%;
background: rgb(0, 94, 156);
position: fixed;
top: 50%;
left: -100%;
transition: 1.8s;
}
.tabs ul {
display: flex;
}
.tabs .nav a {
display: flex;
justify-content: space-between;
text-decoration: none;
padding: 20px 100px;
z-index: 1242;
color: white;
align-items: center;
font-size: 20px;
border-radius: 10px;
}
.tabs .nav .bar {
display: flex;
}
/* .navs{
position: absolute;
top: 20%;
left: 4%;
color: #f0f;
display: flex;
flex-direction: column;
display: none;
text-decoration: none;
font-size: 25px;
} */
.ikons {
background-color: rgba(214, 0, 214, .8);
border-radius: 10px;
width: 200px;
height: 50px;
display: flex;
align-items: center;
justify-content: space-around;
position: fixed;
top: 50%;
left: 2%;
transform: translateY(-50%);
z-index: 23;
transition: .5s;
}
.body {
background-color: rgb(95, 95, 95);
}
.ikons i {
/* background-color: #13e8e9; */
background-color: rgb(0, 255, 213);
border-radius: 100%;
color: rgb(0, 0, 0);
border: none;
padding: 10px;
opacity: .4;
transition: 1s;
}
.ikons i:hover {
/* background-color: #13e8e9; */
background-color: rgb(0, 4, 255);
border-radius: 100%;
color: rgb(255, 255, 255);
border: none;
padding: 10px;
font-size: 20px;
opacity: 1;
margin-bottom: 5px;
}
@media (max-width: 992px) {
.tabs .nav .bar .active {
padding-left: 200px;
}
.navs a {
width: 97%;
height: 100%;
padding-top: 50px;
margin-left: 30px;
color: #f0f;
display: flex;
flex-direction: column;
/* display: none; */
text-decoration: none;
font-size: 25px;
padding: 10px;
background: rgba(38, 0, 255, 0.1);
}
.navs a:hover {
padding: 10px;
color: rgb(0, 234, 255);
background: rgb(25, 0, 255);
}
.bar {
display: none;
}
body .icon {
display: block;
position: fixed;
top: 2%;
left: 2%;
color: rgb(0, 89, 255);
z-index: 12;
font-size: 35px;
}
body .fa-close {
display: block;
position: fixed;
top: 2%;
left: 1%;
color: rgb(255, 0, 0);
z-index: 12;
font-size: 35px;
}
.owl-carousel img {
height: 150px;
width: 100px;
}
.day {
height: 60%;
}
}
@media (max-width: 768px) {
.tabs .nav .bar .active {
transform: translate(90%, -80%);
}
*/ .navs a {
width: 90%;
margin-top: 50px;
margin-left: 30px;
color: #f0f;
display: flex;
flex-direction: column;
/* display: none; */
text-decoration: none;
font-size: 25px;
}
.bar {
display: none;
}
body .icon {
display: block;
position: fixed;
top: 2%;
left: 2%;
color: rgb(0, 89, 255);
z-index: 12;
font-size: 35px;
}
body .fa-close {
display: block;
position: fixed;
top: 1%;
left: 2%;
color: rgb(255, 0, 0);
z-index: 12;
font-size: 35px;
}
.owl-carousel img {
height: 150px;
width: 100px;
}
}
@media (max-width: 576px) {
.navs a {
width: 90%;
margin-top: 50px;
margin-left: 30px;
color: #f0f;
display: flex;
flex-direction: column;
/* display: none; */
text-decoration: none;
font-size: 25px;
}
.day {
position: fixed;
top: 12%;
left: 79%;
height: 70%;
width: 500px;
/* border: none ; */
z-index: 8;
}
.fa-arrow-left {
display: none !important;
}
.icons .fa {
padding: 3px !important;
}
.icons .fa-moon-o {
padding: 3px 5px !important;
}
.bar {
display: none;
}
.text {
width: 100px;
position: fixed;
top: 50%;
left: 80%;
}
body .icon {
display: block;
position: fixed;
top: 2%;
left: 2%;
color: rgb(0, 89, 255);
z-index: 12;
font-size: 35px;
}
body .fa-close {
display: block;
position: fixed;
top: 2%;
left: 2%;
color: rgb(255, 0, 0);
z-index: 12;
font-size: 35px;
}
.owl-carousel img {
height: 150px;
width: 100px;
}
}
@media (max-width: 320px) {
.navs a {
width: 80%;
height: 100%;
/* display: block; */
padding: 10px;
/* margin-left: 30px; */
color: #f0f;
display: flex;
flex-direction: column;
/* display: none; */
text-decoration: none;
font-size: 25px;
}
.tabs .nav .bar .active {
display: none;
}
.tabs .nav .bar {
display: block !important;
}
.day {
display: none;
position: fixed;
top: 12%;
left: 73%;
height: 70%;
width: 500px;
/* border: none ; */
z-index: 8;
}
.fa-arrow-left {
display: none !important;
}
.text {
width: 80px;
position: fixed;
top: 50%;
left: 73%;
}
/* .icons .fa {
padding: 3px !important;
} */
/* .fa-moon-o{
margin-right: 50px !important;
} */
.fa-moon-o {
padding: 3px 10px !important;
position: fixed !important;
top: 14% !important;
left: 79% !important;
}
.fa-sun-o {
position: fixed !important;
top: 24% !important;
left: 79% !important;
}
.fa-eye {
position: fixed !important;
top: 34% !important;
left: 79% !important;
}
.m {
position: fixed;
top: 2%;
left: 90%;
z-index: 4;
}
.k {
position: fixed;
top: 2%;
left: 80%;
z-index: 7;
opacity: 0;
}
.ta {
position: fixed;
top: 10%;
left: 0;
}
.bar {
display: none;
}
body .icon {
display: block;
position: fixed;
top: 22%;
left: 2%;
color: rgb(0, 89, 255);
z-index: 12;
font-size: 35px;
}
body .fa-close {
display: block;
position: fixed;
top: 1%;
left: 2%;
color: rgb(255, 0, 0);
z-index: 12;
font-size: 35px;
}
.owl-carousel img {
height: 150px;
width: 100px;
}
} | 0.438304 | 0.07267 |
* {
color: #FFFFFF;
}
.navbar {
background: #1b1b1e;
}
main {
background: #1b1b1e;
}
.main_content{
background: #1b1b1e;
padding-left: 16px;
padding-right: 16px;
}
.ellipse {
display: flex;
justify-content: space-between;
padding-top: 30px;
}
.main_content_greet {
font-family: 'Poppins', sans-serif;
font-size: 12px;
line-height: 18px;
padding-top: 30px;
}
.ellipse img {
width: 63px;
/* margin-left: 240px; */
}
.main_content_name {
font-family: 'Playfair Display', serif;
font-size: 50px;
line-height: 100%;
padding-top: 2px;
}
.main_content_text {
font-family: 'Poppins', sans-serif;
font-size: 12px;
line-height: 18px;
padding-top: 10px;
padding-left: 5px;
padding-right: 5px;
}
.see_my_works h3 {
padding-top: 18px;
padding-left: 5px;
padding-bottom: 6px;
font-weight: 500;
font-size: 18px;
line-height: 21px;
color: #DB4747;
font-family: 'Roboto', sans-serif;
}
.border {
border: 1px solid #FFFFFF;
width: 20%;
margin: 0 auto;
}
.icon_links {
display: flex;
justify-content: space-around;
padding-top: 8px;
}
.works {
font-size: 30px;
}
.recent_works p {
padding-top: 192px;
padding-left: 5px;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
color: #FFFFFF;
}
.recent_works h4 {
font-family: 'Playfair Display', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 50px;
line-height: 100%;
color: #FFFFFF;
padding-top: 1px;
padding-right: 5px;
padding-left: 5px;
padding-bottom: 20px;
}
.showcase_story {
padding-top: 20px;
}
.story_main {
display: flex;
flex-direction: column;
}
.border2 {
border: 1px solid #FFFFFF;
width: 60%;
margin: 10px auto;
margin-top: 17px;
}
.story_main img {
width: 320px;
height: 188px;
}
.story_right {
padding-left: 10px;
padding-top: 70px;
}
.story_right h5{
font-family: 'Playfair Display', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 30px;
line-height: 100%;
color: #FFFFFF;
}
.story_right p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 27px;
color: #FFFFFF;
max-width: 600px;
}
.story_right .showcase_card_tech {
display: flex;
justify-content: space-around;
margin-bottom: 30px;
}
.showcase_card_list {
list-style: none;
font-family: 'Poppins', sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 21px;
color: #DB4747;
}
.story_right .showcase_button {
font-family: 'Poppins', sans-serif;
background: #DB4747;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
text-align: center;
}
.about_me_header .first{
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
padding-top: 192px;
padding-left: 5px;
}
.about_me_header h2 {
font-family: 'Playfair Display', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 50px;
line-height: 100%;
padding-top: 1px;
padding-right: 5px;
padding-left: 5px;
padding-bottom: 20px;
}
.about_me_header .details {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
padding: 30px 16px 25px 16px;
}
.about_me_header .collaboration button {
background: #DB4747;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
border-radius: 4px;
}
.about_me_header .collaboration .btn {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
.skills {
padding: 58px 41px 24px 41px;
}
.skills_card{
background: #212123;
box-shadow: 0px 1.91837px 23.0204px hsl(240,2%,13%);
border-radius: 3.83673px;
}
.skills_card .icon{
margin-top: 8px;
margin-left: 24px;
margin-bottom: 24px;
}
.skills_card h6 {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: bold;
font-size: 16px;
line-height: 24px;
margin-left: 24px;
margin-bottom: 18px;
margin-top: 8px;
}
.skills_card ul {
padding: 8px 80px 24px 24px;
}
.skills_card li {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 21px;
letter-spacing: -0.0525em;
color: #7D7C84;
list-style: none;
}
.get_started {
background-color: #212123;
padding-left: 16px;
padding-right: 16px;
}
.get_started_interest {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
padding-top: 86px;
}
.get_started_header {
font-family: 'Playfair Display', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 50px;
line-height: 100%;
padding-top: 0px;
}
.get_started_description {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
padding-top: 30px;
}
.get_started_form {
padding-top: 40px;
padding-bottom: 106px;
}
#name2, #email2, #description1{
background: #101010;
border: 1px solid #101010;
box-sizing: border-box;
border-radius: 4px;
}
#name2:hover, #email2:hover, #description1:hover {
border: 1px solid #DB4747;
}
.get_started_btn {
background: #DB4747;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
.get_started_line {
border: 1px solid rgba(255, 255, 255, 0.1);
transform: rotate(180deg);
}
.resume {
display: flex;
padding-top: 20px;
}
.resume p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
}
.resume img {
margin-left: 20px;
width: 25px;
height: 25px;
}
.icon_links2 {
display: flex;
justify-content: space-around;
padding-top: 36px;
padding-bottom: 50px;
}
.project {
margin-top: 40px;
padding-left: 15px;
}
.story_main .pro {
margin-left: 0px;
}
.live {
display: flex;
padding-top: 20px;
}
.live p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
}
.live img {
margin-left: 20px;
width: 25px;
height: 25px;
}
.source_code {
display: flex;
}
.source_code p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
text-decoration: underline;
}
.source_code img {
margin-left: 20px;
width: 25px;
height: 25px;
}
@media (min-width: 768px) {
.main_article {
display: flex;
}
.left .ellipse p {
padding-top: 302px;
padding-left: 547px;
/* padding-right: 307px; */
}
.left .ellipse img {
width: 100px;
height: 100px;
margin-top: 302px;
/* margin-left: 94px; */
}
.left .main_content_name {
padding-left: 547px;
/* font-size: 110px; */
/* line-height: 100%; */
}
.left .main_content_text {
padding-left: 547px;
}
.left .see_my_works {
display: flex;
align-items: baseline;
padding-left: 547px;
}
.see_my_works h3 {
font-weight: 500;
font-size: 18px;
line-height: 21px;
}
.see_my_works .border {
margin-left: 20px;
}
.icon_links .works {
margin-left: 17px;
padding-left: 5px;
}
.left .recent_works {
margin-left: 286px;
}
.desktop_nav {
margin-top: 267px;
}
.desktop_nav ul li {
transform: rotate(90deg);
padding: 20px 58px 30px 247px;
list-style: none;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
}
/* skipped the showcase section */
.order {
display: flex;
}
.about_me {
order: 2;
margin-top: 110px;
max-width: 550px;
}
.skills {
order: 1;
margin-top: 150px;
margin-left: 169px;
margin-bottom: 150px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 24px;
}
.get_started {
padding-left: 359px;
padding-right: 517px;
}
.story_main {
display: flex;
flex-direction: row;
}
.story_main img {
width: 961px;
height: 560px;
}
.story_right h5{
font-size: 40px;
}
.border2 {
visibility: hidden;
}
.live {
display: flex;
padding-top: 20px;
}
.live p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
}
.live img {
margin-left: 20px;
width: 25px;
height: 25px;
}
.source_code {
display: flex;
}
.source_code p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
text-decoration: underline;
}
.source_code img {
margin-left: 20px;
width: 25px;
height: 25px;
}
} | styles.css | * {
color: #FFFFFF;
}
.navbar {
background: #1b1b1e;
}
main {
background: #1b1b1e;
}
.main_content{
background: #1b1b1e;
padding-left: 16px;
padding-right: 16px;
}
.ellipse {
display: flex;
justify-content: space-between;
padding-top: 30px;
}
.main_content_greet {
font-family: 'Poppins', sans-serif;
font-size: 12px;
line-height: 18px;
padding-top: 30px;
}
.ellipse img {
width: 63px;
/* margin-left: 240px; */
}
.main_content_name {
font-family: 'Playfair Display', serif;
font-size: 50px;
line-height: 100%;
padding-top: 2px;
}
.main_content_text {
font-family: 'Poppins', sans-serif;
font-size: 12px;
line-height: 18px;
padding-top: 10px;
padding-left: 5px;
padding-right: 5px;
}
.see_my_works h3 {
padding-top: 18px;
padding-left: 5px;
padding-bottom: 6px;
font-weight: 500;
font-size: 18px;
line-height: 21px;
color: #DB4747;
font-family: 'Roboto', sans-serif;
}
.border {
border: 1px solid #FFFFFF;
width: 20%;
margin: 0 auto;
}
.icon_links {
display: flex;
justify-content: space-around;
padding-top: 8px;
}
.works {
font-size: 30px;
}
.recent_works p {
padding-top: 192px;
padding-left: 5px;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
color: #FFFFFF;
}
.recent_works h4 {
font-family: 'Playfair Display', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 50px;
line-height: 100%;
color: #FFFFFF;
padding-top: 1px;
padding-right: 5px;
padding-left: 5px;
padding-bottom: 20px;
}
.showcase_story {
padding-top: 20px;
}
.story_main {
display: flex;
flex-direction: column;
}
.border2 {
border: 1px solid #FFFFFF;
width: 60%;
margin: 10px auto;
margin-top: 17px;
}
.story_main img {
width: 320px;
height: 188px;
}
.story_right {
padding-left: 10px;
padding-top: 70px;
}
.story_right h5{
font-family: 'Playfair Display', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 30px;
line-height: 100%;
color: #FFFFFF;
}
.story_right p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 27px;
color: #FFFFFF;
max-width: 600px;
}
.story_right .showcase_card_tech {
display: flex;
justify-content: space-around;
margin-bottom: 30px;
}
.showcase_card_list {
list-style: none;
font-family: 'Poppins', sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 21px;
color: #DB4747;
}
.story_right .showcase_button {
font-family: 'Poppins', sans-serif;
background: #DB4747;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
text-align: center;
}
.about_me_header .first{
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
padding-top: 192px;
padding-left: 5px;
}
.about_me_header h2 {
font-family: 'Playfair Display', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 50px;
line-height: 100%;
padding-top: 1px;
padding-right: 5px;
padding-left: 5px;
padding-bottom: 20px;
}
.about_me_header .details {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
padding: 30px 16px 25px 16px;
}
.about_me_header .collaboration button {
background: #DB4747;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
border-radius: 4px;
}
.about_me_header .collaboration .btn {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
.skills {
padding: 58px 41px 24px 41px;
}
.skills_card{
background: #212123;
box-shadow: 0px 1.91837px 23.0204px hsl(240,2%,13%);
border-radius: 3.83673px;
}
.skills_card .icon{
margin-top: 8px;
margin-left: 24px;
margin-bottom: 24px;
}
.skills_card h6 {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: bold;
font-size: 16px;
line-height: 24px;
margin-left: 24px;
margin-bottom: 18px;
margin-top: 8px;
}
.skills_card ul {
padding: 8px 80px 24px 24px;
}
.skills_card li {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 21px;
letter-spacing: -0.0525em;
color: #7D7C84;
list-style: none;
}
.get_started {
background-color: #212123;
padding-left: 16px;
padding-right: 16px;
}
.get_started_interest {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
padding-top: 86px;
}
.get_started_header {
font-family: 'Playfair Display', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 50px;
line-height: 100%;
padding-top: 0px;
}
.get_started_description {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 18px;
padding-top: 30px;
}
.get_started_form {
padding-top: 40px;
padding-bottom: 106px;
}
#name2, #email2, #description1{
background: #101010;
border: 1px solid #101010;
box-sizing: border-box;
border-radius: 4px;
}
#name2:hover, #email2:hover, #description1:hover {
border: 1px solid #DB4747;
}
.get_started_btn {
background: #DB4747;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
.get_started_line {
border: 1px solid rgba(255, 255, 255, 0.1);
transform: rotate(180deg);
}
.resume {
display: flex;
padding-top: 20px;
}
.resume p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
}
.resume img {
margin-left: 20px;
width: 25px;
height: 25px;
}
.icon_links2 {
display: flex;
justify-content: space-around;
padding-top: 36px;
padding-bottom: 50px;
}
.project {
margin-top: 40px;
padding-left: 15px;
}
.story_main .pro {
margin-left: 0px;
}
.live {
display: flex;
padding-top: 20px;
}
.live p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
}
.live img {
margin-left: 20px;
width: 25px;
height: 25px;
}
.source_code {
display: flex;
}
.source_code p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
text-decoration: underline;
}
.source_code img {
margin-left: 20px;
width: 25px;
height: 25px;
}
@media (min-width: 768px) {
.main_article {
display: flex;
}
.left .ellipse p {
padding-top: 302px;
padding-left: 547px;
/* padding-right: 307px; */
}
.left .ellipse img {
width: 100px;
height: 100px;
margin-top: 302px;
/* margin-left: 94px; */
}
.left .main_content_name {
padding-left: 547px;
/* font-size: 110px; */
/* line-height: 100%; */
}
.left .main_content_text {
padding-left: 547px;
}
.left .see_my_works {
display: flex;
align-items: baseline;
padding-left: 547px;
}
.see_my_works h3 {
font-weight: 500;
font-size: 18px;
line-height: 21px;
}
.see_my_works .border {
margin-left: 20px;
}
.icon_links .works {
margin-left: 17px;
padding-left: 5px;
}
.left .recent_works {
margin-left: 286px;
}
.desktop_nav {
margin-top: 267px;
}
.desktop_nav ul li {
transform: rotate(90deg);
padding: 20px 58px 30px 247px;
list-style: none;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
}
/* skipped the showcase section */
.order {
display: flex;
}
.about_me {
order: 2;
margin-top: 110px;
max-width: 550px;
}
.skills {
order: 1;
margin-top: 150px;
margin-left: 169px;
margin-bottom: 150px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 24px;
}
.get_started {
padding-left: 359px;
padding-right: 517px;
}
.story_main {
display: flex;
flex-direction: row;
}
.story_main img {
width: 961px;
height: 560px;
}
.story_right h5{
font-size: 40px;
}
.border2 {
visibility: hidden;
}
.live {
display: flex;
padding-top: 20px;
}
.live p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
}
.live img {
margin-left: 20px;
width: 25px;
height: 25px;
}
.source_code {
display: flex;
}
.source_code p {
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #DB4747;
text-decoration: underline;
}
.source_code img {
margin-left: 20px;
width: 25px;
height: 25px;
}
} | 0.459561 | 0.116111 |
@charset "UTF-8";
/* @import url(//fonts.googleapis.com/css?family=Montserrat:400|Muli:300,400|Inconsolata);
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap"); */
@font-face {
font-family: Roboto-Regular;
src: url('../fonts/Roboto-Regular.ttf');
}
.button-secondary, .button {
display: inline-block;
padding: 7px 12px;
}
.button-secondary:active, .button:active {
margin: 2px 0 -2px 0;
}
body {
background: #fff;
color: #555;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: #1694CA;
}
a:hover {
color: #0e6185;
}
pre {
position: relative;
}
.bg {
background: #fff;
border: 1px solid #eaeaea;
}
b, strong, th, label {
font-weight: 600;
}
.default-animation, #body .nav, #body .padding, #body, #sidebar ul, #sidebar, #header #logo-svg path, #header #logo-svg {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
transition: all 0.5s ease;
}
fieldset {
border: 1px solid #ddd;
}
textarea, input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=time], input[type=week], select[multiple=multiple] {
background-color: white;
border: 1px solid #ddd;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
textarea:hover, input[type=email]:hover, input[type=number]:hover, input[type=password]:hover, input[type=search]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=url]:hover, input[type=color]:hover, input[type=date]:hover, input[type=datetime]:hover, input[type=datetime-local]:hover, input[type=month]:hover, input[type=time]:hover, input[type=week]:hover, select[multiple=multiple]:hover {
border-color: #c4c4c4;
}
textarea:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus, select[multiple=multiple]:focus {
border-color: #1694CA;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(19, 131, 179, 0.7);
}
#header {
background: white;
color: #fff;
text-align: center;
padding: 1rem;
}
#header a {
display: inline-block;
}
#header #logo-svg {
width: 8rem;
height: 2rem;
}
#header #logo-svg path {
fill: #fff;
}
.searchbox {
margin-top: 0.5rem;
position: relative;
border: 1px solid #19a5e1;
background: #1383b3;
border-radius: 4px;
}
.searchbox label {
color: rgba(255, 255, 255, 0.8);
position: absolute;
left: 10px;
top: 3px;
}
.searchbox span {
color: rgba(255, 255, 255, 0.6);
position: absolute;
right: 10px;
top: 3px;
cursor: pointer;
}
.searchbox span:hover {
color: rgba(255, 255, 255, 0.9);
}
.searchbox input {
display: inline-block;
color: #fff;
width: 100%;
height: 30px;
background: transparent;
border: 0;
padding: 0 25px 0 30px;
margin: 0;
font-weight: 400;
}
.searchbox input::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.searchbox input::-moz-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.searchbox input:-moz-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.searchbox input:-ms-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
#sidebar-toggle {
display: none;
}
@media only all and (max-width: 47.938em) {
#sidebar-toggle {
display: inline-block;
}
}
#sidebar {
background-color: white;
position: fixed;
top: 0;
width: 300px;
bottom: 0;
left: 0;
font-weight: 500;
font-size: 15px;
}
#sidebar a {
color: #bbbbbb;
}
#sidebar a:hover {
color: #d5d5d5;
}
#sidebar a.subtitle {
color: rgba(187, 187, 187, 0.6);
}
#sidebar hr {
border-bottom: 1px solid #323a44;
}
#sidebar a.padding {
padding: 0 1rem;
}
#sidebar h5 {
margin: 2rem 0 0;
position: relative;
line-height: 2;
}
#sidebar h5 a {
display: block;
margin-left: 0;
margin-right: 0;
padding-left: 1rem;
padding-right: 1rem;
}
#sidebar h5 i {
color: rgba(187, 187, 187, 0.6);
position: absolute;
right: 0.6rem;
top: 0.7rem;
font-size: 80%;
}
#sidebar h5.parent a {
background: #293038;
color: #c8c8c8 !important;
}
#sidebar h5.active a {
background: #fff;
color: #555 !important;
}
#sidebar h5.active i {
color: #555 !important;
}
#sidebar h5 + ul.topics {
display: none;
margin-top: 0;
}
#sidebar h5.parent + ul.topics, #sidebar h5.active + ul.topics {
display: block;
}
#sidebar ul {
list-style: none;
padding: 0;
margin: 0;
}
#sidebar ul.searched a {
color: #888888;
}
#sidebar ul.searched .search-match a {
color: #d5d5d5;
}
#sidebar ul.searched .search-match a:hover {
color: #eeeeee;
}
#sidebar ul.topics {
margin: 0 1rem;
}
#sidebar ul.topics.searched ul {
display: block;
}
#sidebar ul.topics ul {
display: none;
padding-bottom: 1rem;
}
#sidebar ul.topics ul ul {
padding-bottom: 0;
}
#sidebar ul.topics li.parent ul, #sidebar ul.topics > li.active ul {
display: block;
}
#sidebar ul.topics > li > a {
line-height: 2rem;
font-size: 1.1rem;
}
#sidebar ul.topics > li > a b {
opacity: 0.5;
font-weight: normal;
}
#sidebar ul.topics > li > a .fa {
margin-top: 9px;
}
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
background: #2d353e;
margin-left: -1rem;
margin-right: -1rem;
padding-left: 1rem;
padding-right: 1rem;
}
#sidebar ul li.active > a {
background: #fff;
color: #555 !important;
margin-left: -1rem;
margin-right: -1rem;
padding-left: 1rem;
padding-right: 1rem;
}
#sidebar ul li {
padding: 0;
}
#sidebar ul li.visited + span {
margin-right: 16px;
}
#sidebar ul li a {
display: block;
padding: 2px 0;
}
#sidebar ul li a span {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
display: block;
}
#sidebar ul li > a {
padding: 4px 0;
}
#sidebar ul li .fa {
display: none;
float: right;
font-size: 13px;
min-width: 16px;
margin: 4px 0 0 0;
text-align: right;
}
#sidebar ul li.visited > a .read-icon {
color: #1694CA;
display: inline;
}
#sidebar ul li li {
padding-left: 1rem;
text-indent: 0.2rem;
}
#main {
background: #f7f7f7;
margin: 0 0 1.563rem 0;
}
#body {
position: relative;
margin-left: 300px;
min-height: 100%;
}
#body img, #body .video-container {
margin: 3rem auto;
display: block;
text-align: center;
}
#body img.border, #body .video-container.border {
border: 2px solid #e6e6e6 !important;
padding: 2px;
}
#body img.shadow, #body .video-container.shadow {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#body .bordered {
border: 1px solid #ccc;
}
#body .padding {
padding: 3rem 6rem;
}
@media only all and (max-width: 59.938em) {
#body .padding {
position: static;
padding: 15px 3rem;
}
}
@media only all and (max-width: 47.938em) {
#body .padding {
padding: 5px 1rem;
}
}
#body h1 + hr {
margin-top: -1.7rem;
margin-bottom: 3rem;
}
@media only all and (max-width: 59.938em) {
#body #navigation {
position: static;
margin-right: 0 !important;
width: 100%;
display: table;
}
}
#body .nav {
position: fixed;
top: 0;
bottom: 0;
width: 4rem;
font-size: 50px;
height: 100%;
cursor: pointer;
display: table;
text-align: center;
}
#body .nav > i {
display: table-cell;
vertical-align: middle;
text-align: center;
}
@media only all and (max-width: 59.938em) {
#body .nav {
display: table-cell;
position: static;
top: auto;
width: 50%;
text-align: center;
height: 100px;
line-height: 100px;
padding-top: 0;
}
#body .nav > i {
display: inline-block;
}
}
#body .nav:hover {
background: #F6F6F6;
}
#body .nav.nav-pref {
left: 0;
}
#body .nav.nav-next {
right: 0;
}
#body-inner {
margin-bottom: 5rem;
}
#chapter {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
padding: 2rem 0;
}
#chapter #body-inner {
padding-bottom: 3rem;
max-width: 80%;
}
#chapter h3 {
font-family: "Muli", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 400;
text-align: center;
}
#chapter h1 {
font-size: 5rem;
border-bottom: 4px solid #F0F2F4;
}
#chapter p {
text-align: center;
font-size: 1.2rem;
}
#footer {
padding: 3rem 1rem;
color: #a2a2a2;
font-size: 13px;
}
#footer p {
margin: 0;
}
body {
font-family: "Muli", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
letter-spacing: -0.03rem;
font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Montserrat", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 400;
text-rendering: optimizeLegibility;
line-height: 150%;
letter-spacing: 0px;
}
h1 {
text-align: center;
letter-spacing: -3px;
}
h2 {
letter-spacing: -2px;
}
h3 {
letter-spacing: -1px;
}
blockquote {
border-left: 10px solid #F0F2F4;
}
blockquote p {
font-size: 1.1rem;
color: #999;
}
blockquote cite {
display: block;
text-align: right;
color: #666;
font-size: 1.2rem;
}
blockquote {
position: relative;
}
blockquote blockquote {
position: static;
}
blockquote > blockquote > blockquote {
margin: 0;
}
blockquote > blockquote > blockquote p {
padding: 15px;
display: block;
font-size: 1rem;
margin-top: 0rem;
margin-bottom: 0rem;
color: #666;
}
blockquote > blockquote > blockquote p:first-child:before {
position: absolute;
top: 2px;
color: #fff;
font-family: FontAwesome;
content: "";
left: 10px;
}
blockquote > blockquote > blockquote p:first-child:after {
position: absolute;
top: 2px;
color: #fff;
left: 2rem;
font-weight: bold;
content: "Info";
}
blockquote > blockquote > blockquote > p {
margin-left: -71px;
border-top: 30px solid #F0B37E;
background: #FFF2DB;
}
blockquote > blockquote > blockquote > blockquote > p {
margin-left: -94px;
border-top: 30px solid rgba(217, 83, 79, 0.8);
background: #FAE2E2;
}
blockquote > blockquote > blockquote > blockquote > p:first-child:after {
content: "Warning";
}
blockquote > blockquote > blockquote > blockquote > blockquote > p {
margin-left: -118px;
border-top: 30px solid #6AB0DE;
background: #E7F2FA;
}
blockquote > blockquote > blockquote > blockquote > blockquote > p:first-child:after {
content: "Note";
}
blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p {
margin-left: -142px;
border-top: 30px solid rgba(92, 184, 92, 0.8);
background: #E6F9E6;
}
blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p:first-child:after {
content: "Tip";
}
code,
kbd,
pre,
samp {
font-family: "Inconsolata", monospace;
}
code {
background: #f9f2f4;
color: #9c1d3d;
padding: 0.2rem 0.4rem;
border-radius: 3px;
}
pre {
padding: 1rem;
margin: 2rem 0;
background: #f6f6f6;
border: 1px solid #ddd;
border-radius: 2px;
line-height: 1.15;
font-size: 1rem;
}
pre code {
color: #237794;
background: inherit;
font-size: 1rem;
}
hr {
border-bottom: 4px solid #F0F2F4;
}
.page-title {
margin-top: -25px;
padding: 25px;
float: left;
clear: both;
background: #1694CA;
color: #fff;
}
#body a.anchor-link {
color: #ccc;
}
#body a.anchor-link:hover {
color: #1694CA;
}
.scrollbar-inner > .scroll-element .scroll-element_track {
background-color: rgba(255, 255, 255, 0.3);
}
.scrollbar-inner > .scroll-element .scroll-bar {
background-color: #b5d1eb;
}
.scrollbar-inner > .scroll-element:hover .scroll-bar {
background-color: #ccc;
}
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
background-color: #ccc;
}
table {
border: 1px solid #eaeaea;
table-layout: auto;
}
th {
background: #f7f7f7;
padding: 0.5rem;
}
td {
padding: 0.5rem;
border: 1px solid #eaeaea;
}
.button {
background: #1694CA;
color: #fff;
box-shadow: 0 3px 0 #1380ae;
}
.button:hover {
background: #1380ae;
box-shadow: 0 3px 0 #106c93;
color: #fff;
}
.button:active {
box-shadow: 0 1px 0 #106c93;
}
.button-secondary {
background: #F8B450;
color: #fff;
box-shadow: 0 3px 0 #f7a733;
}
.button-secondary:hover {
background: #f7a733;
box-shadow: 0 3px 0 #f69b15;
color: #fff;
}
.button-secondary:active {
box-shadow: 0 1px 0 #f69b15;
}
.bullets {
margin: 1.7rem 0;
margin-left: -0.85rem;
margin-right: -0.85rem;
overflow: auto;
}
.bullet {
float: left;
padding: 0 0.85rem;
}
.two-column-bullet {
width: 50%;
}
@media only all and (max-width: 47.938em) {
.two-column-bullet {
width: 100%;
}
}
.three-column-bullet {
width: 33.3333333333%;
}
@media only all and (max-width: 47.938em) {
.three-column-bullet {
width: 100%;
}
}
.four-column-bullet {
width: 25%;
}
@media only all and (max-width: 47.938em) {
.four-column-bullet {
width: 100%;
}
}
.bullet-icon {
float: left;
background: #1694CA;
padding: 0.875rem;
width: 3.5rem;
height: 3.5rem;
border-radius: 50%;
color: #fff;
font-size: 1.75rem;
text-align: center;
}
.bullet-icon-1 {
background: #1694CA;
}
.bullet-icon-2 {
background: #16cac4;
}
.bullet-icon-3 {
background: #b2ca16;
}
.bullet-content {
margin-left: 4.55rem;
}
.tooltipped {
position: relative;
}
.tooltipped:after {
position: absolute;
z-index: 1000000;
display: none;
padding: 5px 8px;
font: normal normal 11px/1.5 "Muli", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
color: #fff;
text-align: center;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-wrap: break-word;
white-space: pre;
pointer-events: none;
content: attr(aria-label);
background: rgba(0, 0, 0, 0.8);
border-radius: 3px;
-webkit-font-smoothing: subpixel-antialiased;
}
.tooltipped:before {
position: absolute;
z-index: 1000001;
display: none;
width: 0;
height: 0;
color: rgba(0, 0, 0, 0.8);
pointer-events: none;
content: "";
border: 5px solid transparent;
}
.tooltipped:hover:before, .tooltipped:hover:after,
.tooltipped:active:before,
.tooltipped:active:after,
.tooltipped:focus:before,
.tooltipped:focus:after {
display: inline-block;
text-decoration: none;
}
.tooltipped-s:after,
.tooltipped-se:after,
.tooltipped-sw:after {
top: 100%;
right: 50%;
margin-top: 5px;
}
.tooltipped-s:before,
.tooltipped-se:before,
.tooltipped-sw:before {
top: auto;
right: 50%;
bottom: -5px;
margin-right: -5px;
border-bottom-color: rgba(0, 0, 0, 0.8);
}
.tooltipped-se:after {
right: auto;
left: 50%;
margin-left: -15px;
}
.tooltipped-sw:after {
margin-right: -15px;
}
.tooltipped-n:after,
.tooltipped-ne:after,
.tooltipped-nw:after {
right: 50%;
bottom: 100%;
margin-bottom: 5px;
}
.tooltipped-n:before,
.tooltipped-ne:before,
.tooltipped-nw:before {
top: -5px;
right: 50%;
bottom: auto;
margin-right: -5px;
border-top-color: rgba(0, 0, 0, 0.8);
}
.tooltipped-ne:after {
right: auto;
left: 50%;
margin-left: -15px;
}
.tooltipped-nw:after {
margin-right: -15px;
}
.tooltipped-s:after,
.tooltipped-n:after {
transform: translateX(50%);
}
.tooltipped-w:after {
right: 100%;
bottom: 50%;
margin-right: 5px;
transform: translateY(50%);
}
.tooltipped-w:before {
top: 50%;
bottom: 50%;
left: -5px;
margin-top: -5px;
border-left-color: rgba(0, 0, 0, 0.8);
}
.tooltipped-e:after {
bottom: 50%;
left: 100%;
margin-left: 5px;
transform: translateY(50%);
}
.tooltipped-e:before {
top: 50%;
right: -5px;
bottom: 50%;
margin-top: -5px;
border-right-color: rgba(0, 0, 0, 0.8);
}
/*************** SCROLLBAR BASE CSS ***************/
.highlightable {
padding: 25px 0 15px;
}
.scroll-wrapper {
overflow: hidden !important;
padding: 0 !important;
position: relative;
}
.scroll-wrapper > .scroll-content {
border: none !important;
box-sizing: content-box !important;
height: auto;
left: 0;
margin: 0;
max-height: none;
max-width: none !important;
overflow: scroll !important;
padding: 0;
position: relative !important;
top: 0;
width: auto !important;
}
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
height: 0;
width: 0;
}
.scroll-element {
display: none;
}
.scroll-element, .scroll-element div {
box-sizing: content-box;
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
display: block;
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
cursor: default;
}
.scroll-textarea > .scroll-content {
overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
border: none !important;
box-sizing: border-box;
height: 100% !important;
margin: 0;
max-height: none !important;
max-width: none !important;
overflow: scroll !important;
outline: none;
padding: 2px;
position: relative !important;
top: 0;
width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
height: 0;
width: 0;
}
/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
border: none;
margin: 0;
padding: 0;
position: absolute;
z-index: 10;
}
.scrollbar-inner > .scroll-element div {
display: block;
height: 100%;
left: 0;
top: 0;
width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-x {
bottom: 2px;
height: 8px;
left: 0;
width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-y {
height: 100%;
right: 2px;
top: 0;
width: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_outer {
overflow: hidden;
}
.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter: alpha(opacity=30);
opacity: 0.3;
}
/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
left: -12px;
}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
top: -12px;
}
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
left: -12px;
}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
top: -12px;
}
* {
font-family: Roboto-Regular;
}
*:focus {
outline: none;
}
ul {
list-style: none;
padding-left: 0px;
}
a {
color: #1694CA;
}
a:hover {
transition: all 0.3s ease 0s;
color: #da1b5c;
}
p {
font-size: 16px;
margin-top: 8px;
margin-bottom: 24px;
}
pre {
background: #F0F0F0;
}
h1, h2, h3, h4, h5, h6 {
/* font-family: Roboto-Light; */
color: #1f1a47;
text-align: left;
letter-spacing: 0px;
margin: 25px 0 10px;
}
h1 {
font-size: 32px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 18.72px;
}
h4 {
font-size: 16px;
}
h5 {
font-size: 13.28px;
}
h6 {
font-size: 10.72px;
}
#overlay {
visibility: hidden;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
/* Full width (cover the whole page) */
height: 100%;
/* Full height (cover the whole page) */
background: rgba(255, 255, 255, 0.8);
z-index: 10000;
}
.highlightable {
padding: 16px 0 16px;
}
#body {
margin-left: 251px;
}
#body .padding {
padding-top: 15px;
padding-left: 55px;
padding-right: 55px;
padding-bottom: 33px;
max-width: 1000px;
margin: 0 auto;
}
body {
font-family: Roboto;
letter-spacing: 0px;
}
body #breadcrumbs {
padding-left: 0;
}
body #breadcrumbs span {
padding: 0 0rem;
}
body a {
color: #da1b5c;
}
body a a:hover {
transition: all 0.3s ease 0s;
color: black;
}
#header {
color: #fff;
text-align: left;
padding-bottom: 0;
margin: 0 0.7em;
}
#sidebar {
background-color: white;
width: 10%;
border-right: 1px solid #d6d9db;
min-width: 252px;
position: fixed;
top: 0;
z-index: 15000;
}
#sidebar .title-img {
max-width: 120px;
}
#sidebar a {
line-height: 20px;
font-size: 14px;
min-height: 28px;
color: #555;
}
#sidebar a:hover {
transition: all 0.3s ease 0s;
color: #da1b5c;
}
#sidebar a.subtitle {
color: #555;
}
#sidebar ul.topics {
margin: 0 1.8em;
}
#sidebar ul li.visited > a .read-icon {
display: none;
}
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
background: #ffffff;
margin-left: -1rem;
margin-right: -1rem;
padding-left: 1rem;
padding-right: 1rem;
}
#sidebar ul li.active > a {
background: #fff;
color: #DA1B60 !important;
}
#sidebar ul.topics > li > a {
line-height: 36px;
height: 36px;
font-weight: 500;
font-size: 16px;
color: #1f1a47;
}
#main-header {
border-bottom: 1px solid #d6d9db;
height: 55px;
}
#main-header .search-bar-wrapper {
max-width: 1000px;
margin: 0 auto;
}
#main-header nav {
max-width: 1000px;
margin: 0 auto;
}
#main-header li, #main-header a, #main-header button {
font-size: 16px;
font-weight: 400;
text-decoration: none;
}
#main-header nav ul {
list-style: none;
text-align: right;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
#main-header .nav-links li {
display: inline-block;
padding: 7px 20px;
}
#main-header .nav-links li a {
transition: all 0.3s ease 0s;
color: #1f1a47;
}
#main-header .nav-links li a:hover {
color: #da1b5c;
}
#main-header button {
background-color: #da1b5c;
cursor: pointer;
transition: all 0.3s ease 0s;
padding: 10px;
font-size: 13px;
}
#main-header .cta-button {
color: white;
font-weight: 400;
}
#main-header button:hover {
background-color: #aa1c4b;
}
#main-header #tntsearch-wrapper {
margin-left: 45px;
margin-top: 2px;
}
#main-header .tntsearch-form {
float: left;
font-size: 17px;
padding-top: 2.5px;
border: none;
position: absolute;
top: 0;
width: 60%;
z-index: 10020;
}
#main-header .tntsearch-form textarea, #main-header .tntsearch-form input[type=email], #main-header .tntsearch-form input[type=number], #main-header .tntsearch-form input[type=password], #main-header .tntsearch-form input[type=search], #main-header .tntsearch-form input[type=tel], #main-header .tntsearch-form input[type=text], #main-header .tntsearch-form input[type=url], #main-header .tntsearch-form input[type=color], #main-header .tntsearch-form input[type=date], #main-header .tntsearch-form input[type=datetime], #main-header .tntsearch-form input[type=datetime-local], #main-header .tntsearch-form input[type=month], #main-header .tntsearch-form input[type=time], #main-header .tntsearch-form input[type=week], #main-header .tntsearch-form select[multiple=multiple] {
background-color: transparent;
border: none;
box-shadow: none;
}
#main-header .tntsearch-form .form-input {
padding-left: 10px;
}
#main-header .tntsearch-form input {
color: #3C4265;
background: white;
}
#main-header .tntsearch-form input::-webkit-input-placeholder {
color: #697386;
}
#main-header .tntsearch-form input::-moz-placeholder {
color: #697386;
}
#main-header .tntsearch-form input:-moz-placeholder {
color: #697386;
}
#main-header .tntsearch-form input:-ms-input-placeholder {
color: #697386;
}
#main-header .tntsearch-by {
color: #3c4257;
position: absolute;
padding-top: 6px;
padding-left: 28px;
}
#main-header .tntsearch-by .fa {
font-size: smaller;
}
#main-header .tntsearch-results {
visibility: hidden;
position: relative;
top: -15px;
min-height: 58px;
background: white;
box-shadow: 0 15px 35px 0 rgba(50, 50, 93, 0.1), 0 5px 15px 0 rgba(0, 0, 0, 0.07);
border-radius: 0 0 4px 4px;
}
#main-header .tntsearch-results p {
font-size: 13px;
}
#main-header .tntsearch-results li {
display: block;
padding: 10px 15px 8px 15px;
margin-bottom: 10px;
}
#main-header .tntsearch-results li p {
color: #555;
margin: 0;
}
#main-header .tntsearch-results li .title {
margin: 0;
text-decoration: none;
display: inline-block;
margin-bottom: 5px;
margin-right: 5px;
}
#main-header .tntsearch-results li .title h5 {
color: #da1b5c;
}
#main-header .tntsearch-results li:hover {
background: #edf7ff;
}
#main-header .tntsearch-results .results {
list-style: none;
}
#footer-section {
margin: 0;
bottom: 0;
}
#footer-section .footer-wrapper {
color: #999;
background-color: #EAEAEA;
transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
/* background-image: url(//cdn.shopify.com/s/files/1/0246/4048/7476/files/Footer2-min_1920x1920.png?v=1560925019); */
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}
#footer-section .footer-wrapper a {
color: #999;
}
#footer-section .main-footer {
max-width: 1020px;
padding: 50px 30px;
margin: 0 auto;
font-size: 0.875rem;
}
#footer-section .main-footer .footer-title {
margin-top: 0;
margin-bottom: 30px;
color: #999;
text-align: left;
text-transform: uppercase;
font-size: 14px;
}
#footer-section .main-footer .footer-link-list {
float: left;
padding-right: 30px;
margin-bottom: 50px;
width: 27.5%;
}
#footer-section .main-footer .footer-link-list .footer-link-list.social-icons a {
padding-left: 30px;
position: relative;
}
#footer-section .main-footer .footer-link-list .fab:before {
font-family: "FontAwesome";
margin-top: -7px;
font-style: normal;
font-weight: 400;
line-height: 1;
font-size: 15px;
-webkit-font-smoothing: antialiased;
padding-right: 10px;
}
#footer-section .main-footer .footer-link-list ul {
margin: 0;
padding: 0;
list-style: outside none;
}
#footer-section .main-footer .footer-link-list ul li {
margin: 12px 0;
}
#footer-section .main-footer .spread-the-word {
max-width: 45%;
padding-left: 30px;
float: right;
margin-bottom: 60px;
}
#footer-section .main-footer .spread-the-word p {
margin-bottom: 25px;
}
#footer-section .main-footer .spread-the-word .share-icon {
display: inline-block;
padding: 0 10px;
margin: 0 8px 15px 0;
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 35px;
color: #999;
background-color: rgba(255, 255, 255, 1);
border-radius: 5px;
}
#footer-section .main-footer .spread-the-word .share-icon .share-icon:last-child {
margin-right: 0;
}
#footer-section .main-footer .spread-the-word .share-icon:before {
font-family: "FontAwesome";
font-size: 16px;
font-weight: 400;
line-height: 1;
-webkit-font-smoothing: antialiased;
margin-right: 8px;
}
#footer-section .main-footer .spread-the-word .icon-tweet:before {
content: "";
}
#footer-section .main-footer .spread-the-word .icon-like:before {
content: "";
}
#footer-section .main-footer .spread-the-word .icon-pin:before {
content: "";
}
#footer-section .main-footer .spread-the-word .icon-plus:before {
content: "";
}
#footer-section .main-footer .spread-the-word .icon-fancy:before {
content: "";
}
#footer-section .main-footer .copyright {
clear: both;
color: #999;
}
#footer-section .main-footer .copyright p {
margin: 0;
}
@media (max-width: 800px) {
#sidebar-toggle {
display: inline-block;
}
#top-bar {
display: none;
}
#main-header .tntsearch-form {
width: 80%;
padding-top: 0px;
}
#main-header .cta-button {
display: none;
}
#main-header .nav-links li {
display: none;
}
#main-header #tntsearch-wrapper {
margin-top: 4px;
padding-top: 6px;
}
#main-header .search-bar-wrapper {
padding-left: 50px;
padding-top: 6px;
}
#main-header .tntsearch-by {
padding-top: 12px;
}
#main-header .tntsearch-clear {
padding-top: 8px;
}
#sidebar {
transform: translateX(-100%);
}
#sidebar #footer {
display: block;
}
#body {
margin: 0 auto;
}
.footer-wrapper{
text-align: left;
}
#footer-section .main-footer .footer-title {
text-align: left;
}
#footer-section .main-footer .footer-link-list {
display: block;
width: 100%;
padding: 0;
margin-bottom: 50px;
}
/* .showing-2-lists .footer-link-list li {
display: inline;
padding: 0 0 0 5px;
} */
/* .showing-2-lists .footer-link-list li:before {
content: '\002F';
margin-right: 5px;
} */
#footer-section .main-footer .spread-the-word {
max-width: 100%;
display: block;
padding-left: 0;
float: none;
clear: left;
}
}
#sidebar-toggle {
margin-left: 20px;
margin-top: 12px;
}
#footer {
display: none;
}
#footer ul {
text-align: center;
}
.nav-links-mobile li, a, button {
font-size: 16px;
font-weight: 400;
text-decoration: none;
}
.nav-links-mobile li {
display: block;
padding: 7px 20px;
}
.nav-links-mobile button {
background-color: rgb(218, 27, 92);
cursor: pointer;
padding: 10px;
font-size: 13px;
}
#sidebar #footer .nav-links-mobile a {
color: white;
font-weight: 400;
}
#sidebar #footer .nav-links-mobile li a {
color: #1f1a47;
padding-top: 10px;
}
.sidebar-close-toggle {
float: right;
margin-top: 5px;
}
#hamburger-wrapper a {
color: #da1b5c;
}
#hamburger-wrapper {
display: none;
} | css/custom.css | @charset "UTF-8";
/* @import url(//fonts.googleapis.com/css?family=Montserrat:400|Muli:300,400|Inconsolata);
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap"); */
@font-face {
font-family: Roboto-Regular;
src: url('../fonts/Roboto-Regular.ttf');
}
.button-secondary, .button {
display: inline-block;
padding: 7px 12px;
}
.button-secondary:active, .button:active {
margin: 2px 0 -2px 0;
}
body {
background: #fff;
color: #555;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: #1694CA;
}
a:hover {
color: #0e6185;
}
pre {
position: relative;
}
.bg {
background: #fff;
border: 1px solid #eaeaea;
}
b, strong, th, label {
font-weight: 600;
}
.default-animation, #body .nav, #body .padding, #body, #sidebar ul, #sidebar, #header #logo-svg path, #header #logo-svg {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
transition: all 0.5s ease;
}
fieldset {
border: 1px solid #ddd;
}
textarea, input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=time], input[type=week], select[multiple=multiple] {
background-color: white;
border: 1px solid #ddd;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
textarea:hover, input[type=email]:hover, input[type=number]:hover, input[type=password]:hover, input[type=search]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=url]:hover, input[type=color]:hover, input[type=date]:hover, input[type=datetime]:hover, input[type=datetime-local]:hover, input[type=month]:hover, input[type=time]:hover, input[type=week]:hover, select[multiple=multiple]:hover {
border-color: #c4c4c4;
}
textarea:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus, select[multiple=multiple]:focus {
border-color: #1694CA;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(19, 131, 179, 0.7);
}
#header {
background: white;
color: #fff;
text-align: center;
padding: 1rem;
}
#header a {
display: inline-block;
}
#header #logo-svg {
width: 8rem;
height: 2rem;
}
#header #logo-svg path {
fill: #fff;
}
.searchbox {
margin-top: 0.5rem;
position: relative;
border: 1px solid #19a5e1;
background: #1383b3;
border-radius: 4px;
}
.searchbox label {
color: rgba(255, 255, 255, 0.8);
position: absolute;
left: 10px;
top: 3px;
}
.searchbox span {
color: rgba(255, 255, 255, 0.6);
position: absolute;
right: 10px;
top: 3px;
cursor: pointer;
}
.searchbox span:hover {
color: rgba(255, 255, 255, 0.9);
}
.searchbox input {
display: inline-block;
color: #fff;
width: 100%;
height: 30px;
background: transparent;
border: 0;
padding: 0 25px 0 30px;
margin: 0;
font-weight: 400;
}
.searchbox input::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.searchbox input::-moz-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.searchbox input:-moz-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.searchbox input:-ms-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
#sidebar-toggle {
display: none;
}
@media only all and (max-width: 47.938em) {
#sidebar-toggle {
display: inline-block;
}
}
#sidebar {
background-color: white;
position: fixed;
top: 0;
width: 300px;
bottom: 0;
left: 0;
font-weight: 500;
font-size: 15px;
}
#sidebar a {
color: #bbbbbb;
}
#sidebar a:hover {
color: #d5d5d5;
}
#sidebar a.subtitle {
color: rgba(187, 187, 187, 0.6);
}
#sidebar hr {
border-bottom: 1px solid #323a44;
}
#sidebar a.padding {
padding: 0 1rem;
}
#sidebar h5 {
margin: 2rem 0 0;
position: relative;
line-height: 2;
}
#sidebar h5 a {
display: block;
margin-left: 0;
margin-right: 0;
padding-left: 1rem;
padding-right: 1rem;
}
#sidebar h5 i {
color: rgba(187, 187, 187, 0.6);
position: absolute;
right: 0.6rem;
top: 0.7rem;
font-size: 80%;
}
#sidebar h5.parent a {
background: #293038;
color: #c8c8c8 !important;
}
#sidebar h5.active a {
background: #fff;
color: #555 !important;
}
#sidebar h5.active i {
color: #555 !important;
}
#sidebar h5 + ul.topics {
display: none;
margin-top: 0;
}
#sidebar h5.parent + ul.topics, #sidebar h5.active + ul.topics {
display: block;
}
#sidebar ul {
list-style: none;
padding: 0;
margin: 0;
}
#sidebar ul.searched a {
color: #888888;
}
#sidebar ul.searched .search-match a {
color: #d5d5d5;
}
#sidebar ul.searched .search-match a:hover {
color: #eeeeee;
}
#sidebar ul.topics {
margin: 0 1rem;
}
#sidebar ul.topics.searched ul {
display: block;
}
#sidebar ul.topics ul {
display: none;
padding-bottom: 1rem;
}
#sidebar ul.topics ul ul {
padding-bottom: 0;
}
#sidebar ul.topics li.parent ul, #sidebar ul.topics > li.active ul {
display: block;
}
#sidebar ul.topics > li > a {
line-height: 2rem;
font-size: 1.1rem;
}
#sidebar ul.topics > li > a b {
opacity: 0.5;
font-weight: normal;
}
#sidebar ul.topics > li > a .fa {
margin-top: 9px;
}
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
background: #2d353e;
margin-left: -1rem;
margin-right: -1rem;
padding-left: 1rem;
padding-right: 1rem;
}
#sidebar ul li.active > a {
background: #fff;
color: #555 !important;
margin-left: -1rem;
margin-right: -1rem;
padding-left: 1rem;
padding-right: 1rem;
}
#sidebar ul li {
padding: 0;
}
#sidebar ul li.visited + span {
margin-right: 16px;
}
#sidebar ul li a {
display: block;
padding: 2px 0;
}
#sidebar ul li a span {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
display: block;
}
#sidebar ul li > a {
padding: 4px 0;
}
#sidebar ul li .fa {
display: none;
float: right;
font-size: 13px;
min-width: 16px;
margin: 4px 0 0 0;
text-align: right;
}
#sidebar ul li.visited > a .read-icon {
color: #1694CA;
display: inline;
}
#sidebar ul li li {
padding-left: 1rem;
text-indent: 0.2rem;
}
#main {
background: #f7f7f7;
margin: 0 0 1.563rem 0;
}
#body {
position: relative;
margin-left: 300px;
min-height: 100%;
}
#body img, #body .video-container {
margin: 3rem auto;
display: block;
text-align: center;
}
#body img.border, #body .video-container.border {
border: 2px solid #e6e6e6 !important;
padding: 2px;
}
#body img.shadow, #body .video-container.shadow {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#body .bordered {
border: 1px solid #ccc;
}
#body .padding {
padding: 3rem 6rem;
}
@media only all and (max-width: 59.938em) {
#body .padding {
position: static;
padding: 15px 3rem;
}
}
@media only all and (max-width: 47.938em) {
#body .padding {
padding: 5px 1rem;
}
}
#body h1 + hr {
margin-top: -1.7rem;
margin-bottom: 3rem;
}
@media only all and (max-width: 59.938em) {
#body #navigation {
position: static;
margin-right: 0 !important;
width: 100%;
display: table;
}
}
#body .nav {
position: fixed;
top: 0;
bottom: 0;
width: 4rem;
font-size: 50px;
height: 100%;
cursor: pointer;
display: table;
text-align: center;
}
#body .nav > i {
display: table-cell;
vertical-align: middle;
text-align: center;
}
@media only all and (max-width: 59.938em) {
#body .nav {
display: table-cell;
position: static;
top: auto;
width: 50%;
text-align: center;
height: 100px;
line-height: 100px;
padding-top: 0;
}
#body .nav > i {
display: inline-block;
}
}
#body .nav:hover {
background: #F6F6F6;
}
#body .nav.nav-pref {
left: 0;
}
#body .nav.nav-next {
right: 0;
}
#body-inner {
margin-bottom: 5rem;
}
#chapter {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
padding: 2rem 0;
}
#chapter #body-inner {
padding-bottom: 3rem;
max-width: 80%;
}
#chapter h3 {
font-family: "Muli", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 400;
text-align: center;
}
#chapter h1 {
font-size: 5rem;
border-bottom: 4px solid #F0F2F4;
}
#chapter p {
text-align: center;
font-size: 1.2rem;
}
#footer {
padding: 3rem 1rem;
color: #a2a2a2;
font-size: 13px;
}
#footer p {
margin: 0;
}
body {
font-family: "Muli", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
letter-spacing: -0.03rem;
font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Montserrat", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 400;
text-rendering: optimizeLegibility;
line-height: 150%;
letter-spacing: 0px;
}
h1 {
text-align: center;
letter-spacing: -3px;
}
h2 {
letter-spacing: -2px;
}
h3 {
letter-spacing: -1px;
}
blockquote {
border-left: 10px solid #F0F2F4;
}
blockquote p {
font-size: 1.1rem;
color: #999;
}
blockquote cite {
display: block;
text-align: right;
color: #666;
font-size: 1.2rem;
}
blockquote {
position: relative;
}
blockquote blockquote {
position: static;
}
blockquote > blockquote > blockquote {
margin: 0;
}
blockquote > blockquote > blockquote p {
padding: 15px;
display: block;
font-size: 1rem;
margin-top: 0rem;
margin-bottom: 0rem;
color: #666;
}
blockquote > blockquote > blockquote p:first-child:before {
position: absolute;
top: 2px;
color: #fff;
font-family: FontAwesome;
content: "";
left: 10px;
}
blockquote > blockquote > blockquote p:first-child:after {
position: absolute;
top: 2px;
color: #fff;
left: 2rem;
font-weight: bold;
content: "Info";
}
blockquote > blockquote > blockquote > p {
margin-left: -71px;
border-top: 30px solid #F0B37E;
background: #FFF2DB;
}
blockquote > blockquote > blockquote > blockquote > p {
margin-left: -94px;
border-top: 30px solid rgba(217, 83, 79, 0.8);
background: #FAE2E2;
}
blockquote > blockquote > blockquote > blockquote > p:first-child:after {
content: "Warning";
}
blockquote > blockquote > blockquote > blockquote > blockquote > p {
margin-left: -118px;
border-top: 30px solid #6AB0DE;
background: #E7F2FA;
}
blockquote > blockquote > blockquote > blockquote > blockquote > p:first-child:after {
content: "Note";
}
blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p {
margin-left: -142px;
border-top: 30px solid rgba(92, 184, 92, 0.8);
background: #E6F9E6;
}
blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p:first-child:after {
content: "Tip";
}
code,
kbd,
pre,
samp {
font-family: "Inconsolata", monospace;
}
code {
background: #f9f2f4;
color: #9c1d3d;
padding: 0.2rem 0.4rem;
border-radius: 3px;
}
pre {
padding: 1rem;
margin: 2rem 0;
background: #f6f6f6;
border: 1px solid #ddd;
border-radius: 2px;
line-height: 1.15;
font-size: 1rem;
}
pre code {
color: #237794;
background: inherit;
font-size: 1rem;
}
hr {
border-bottom: 4px solid #F0F2F4;
}
.page-title {
margin-top: -25px;
padding: 25px;
float: left;
clear: both;
background: #1694CA;
color: #fff;
}
#body a.anchor-link {
color: #ccc;
}
#body a.anchor-link:hover {
color: #1694CA;
}
.scrollbar-inner > .scroll-element .scroll-element_track {
background-color: rgba(255, 255, 255, 0.3);
}
.scrollbar-inner > .scroll-element .scroll-bar {
background-color: #b5d1eb;
}
.scrollbar-inner > .scroll-element:hover .scroll-bar {
background-color: #ccc;
}
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
background-color: #ccc;
}
table {
border: 1px solid #eaeaea;
table-layout: auto;
}
th {
background: #f7f7f7;
padding: 0.5rem;
}
td {
padding: 0.5rem;
border: 1px solid #eaeaea;
}
.button {
background: #1694CA;
color: #fff;
box-shadow: 0 3px 0 #1380ae;
}
.button:hover {
background: #1380ae;
box-shadow: 0 3px 0 #106c93;
color: #fff;
}
.button:active {
box-shadow: 0 1px 0 #106c93;
}
.button-secondary {
background: #F8B450;
color: #fff;
box-shadow: 0 3px 0 #f7a733;
}
.button-secondary:hover {
background: #f7a733;
box-shadow: 0 3px 0 #f69b15;
color: #fff;
}
.button-secondary:active {
box-shadow: 0 1px 0 #f69b15;
}
.bullets {
margin: 1.7rem 0;
margin-left: -0.85rem;
margin-right: -0.85rem;
overflow: auto;
}
.bullet {
float: left;
padding: 0 0.85rem;
}
.two-column-bullet {
width: 50%;
}
@media only all and (max-width: 47.938em) {
.two-column-bullet {
width: 100%;
}
}
.three-column-bullet {
width: 33.3333333333%;
}
@media only all and (max-width: 47.938em) {
.three-column-bullet {
width: 100%;
}
}
.four-column-bullet {
width: 25%;
}
@media only all and (max-width: 47.938em) {
.four-column-bullet {
width: 100%;
}
}
.bullet-icon {
float: left;
background: #1694CA;
padding: 0.875rem;
width: 3.5rem;
height: 3.5rem;
border-radius: 50%;
color: #fff;
font-size: 1.75rem;
text-align: center;
}
.bullet-icon-1 {
background: #1694CA;
}
.bullet-icon-2 {
background: #16cac4;
}
.bullet-icon-3 {
background: #b2ca16;
}
.bullet-content {
margin-left: 4.55rem;
}
.tooltipped {
position: relative;
}
.tooltipped:after {
position: absolute;
z-index: 1000000;
display: none;
padding: 5px 8px;
font: normal normal 11px/1.5 "Muli", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
color: #fff;
text-align: center;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-wrap: break-word;
white-space: pre;
pointer-events: none;
content: attr(aria-label);
background: rgba(0, 0, 0, 0.8);
border-radius: 3px;
-webkit-font-smoothing: subpixel-antialiased;
}
.tooltipped:before {
position: absolute;
z-index: 1000001;
display: none;
width: 0;
height: 0;
color: rgba(0, 0, 0, 0.8);
pointer-events: none;
content: "";
border: 5px solid transparent;
}
.tooltipped:hover:before, .tooltipped:hover:after,
.tooltipped:active:before,
.tooltipped:active:after,
.tooltipped:focus:before,
.tooltipped:focus:after {
display: inline-block;
text-decoration: none;
}
.tooltipped-s:after,
.tooltipped-se:after,
.tooltipped-sw:after {
top: 100%;
right: 50%;
margin-top: 5px;
}
.tooltipped-s:before,
.tooltipped-se:before,
.tooltipped-sw:before {
top: auto;
right: 50%;
bottom: -5px;
margin-right: -5px;
border-bottom-color: rgba(0, 0, 0, 0.8);
}
.tooltipped-se:after {
right: auto;
left: 50%;
margin-left: -15px;
}
.tooltipped-sw:after {
margin-right: -15px;
}
.tooltipped-n:after,
.tooltipped-ne:after,
.tooltipped-nw:after {
right: 50%;
bottom: 100%;
margin-bottom: 5px;
}
.tooltipped-n:before,
.tooltipped-ne:before,
.tooltipped-nw:before {
top: -5px;
right: 50%;
bottom: auto;
margin-right: -5px;
border-top-color: rgba(0, 0, 0, 0.8);
}
.tooltipped-ne:after {
right: auto;
left: 50%;
margin-left: -15px;
}
.tooltipped-nw:after {
margin-right: -15px;
}
.tooltipped-s:after,
.tooltipped-n:after {
transform: translateX(50%);
}
.tooltipped-w:after {
right: 100%;
bottom: 50%;
margin-right: 5px;
transform: translateY(50%);
}
.tooltipped-w:before {
top: 50%;
bottom: 50%;
left: -5px;
margin-top: -5px;
border-left-color: rgba(0, 0, 0, 0.8);
}
.tooltipped-e:after {
bottom: 50%;
left: 100%;
margin-left: 5px;
transform: translateY(50%);
}
.tooltipped-e:before {
top: 50%;
right: -5px;
bottom: 50%;
margin-top: -5px;
border-right-color: rgba(0, 0, 0, 0.8);
}
/*************** SCROLLBAR BASE CSS ***************/
.highlightable {
padding: 25px 0 15px;
}
.scroll-wrapper {
overflow: hidden !important;
padding: 0 !important;
position: relative;
}
.scroll-wrapper > .scroll-content {
border: none !important;
box-sizing: content-box !important;
height: auto;
left: 0;
margin: 0;
max-height: none;
max-width: none !important;
overflow: scroll !important;
padding: 0;
position: relative !important;
top: 0;
width: auto !important;
}
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
height: 0;
width: 0;
}
.scroll-element {
display: none;
}
.scroll-element, .scroll-element div {
box-sizing: content-box;
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
display: block;
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
cursor: default;
}
.scroll-textarea > .scroll-content {
overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
border: none !important;
box-sizing: border-box;
height: 100% !important;
margin: 0;
max-height: none !important;
max-width: none !important;
overflow: scroll !important;
outline: none;
padding: 2px;
position: relative !important;
top: 0;
width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
height: 0;
width: 0;
}
/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
border: none;
margin: 0;
padding: 0;
position: absolute;
z-index: 10;
}
.scrollbar-inner > .scroll-element div {
display: block;
height: 100%;
left: 0;
top: 0;
width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-x {
bottom: 2px;
height: 8px;
left: 0;
width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-y {
height: 100%;
right: 2px;
top: 0;
width: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_outer {
overflow: hidden;
}
.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter: alpha(opacity=30);
opacity: 0.3;
}
/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
left: -12px;
}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
top: -12px;
}
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
left: -12px;
}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
top: -12px;
}
* {
font-family: Roboto-Regular;
}
*:focus {
outline: none;
}
ul {
list-style: none;
padding-left: 0px;
}
a {
color: #1694CA;
}
a:hover {
transition: all 0.3s ease 0s;
color: #da1b5c;
}
p {
font-size: 16px;
margin-top: 8px;
margin-bottom: 24px;
}
pre {
background: #F0F0F0;
}
h1, h2, h3, h4, h5, h6 {
/* font-family: Roboto-Light; */
color: #1f1a47;
text-align: left;
letter-spacing: 0px;
margin: 25px 0 10px;
}
h1 {
font-size: 32px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 18.72px;
}
h4 {
font-size: 16px;
}
h5 {
font-size: 13.28px;
}
h6 {
font-size: 10.72px;
}
#overlay {
visibility: hidden;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
/* Full width (cover the whole page) */
height: 100%;
/* Full height (cover the whole page) */
background: rgba(255, 255, 255, 0.8);
z-index: 10000;
}
.highlightable {
padding: 16px 0 16px;
}
#body {
margin-left: 251px;
}
#body .padding {
padding-top: 15px;
padding-left: 55px;
padding-right: 55px;
padding-bottom: 33px;
max-width: 1000px;
margin: 0 auto;
}
body {
font-family: Roboto;
letter-spacing: 0px;
}
body #breadcrumbs {
padding-left: 0;
}
body #breadcrumbs span {
padding: 0 0rem;
}
body a {
color: #da1b5c;
}
body a a:hover {
transition: all 0.3s ease 0s;
color: black;
}
#header {
color: #fff;
text-align: left;
padding-bottom: 0;
margin: 0 0.7em;
}
#sidebar {
background-color: white;
width: 10%;
border-right: 1px solid #d6d9db;
min-width: 252px;
position: fixed;
top: 0;
z-index: 15000;
}
#sidebar .title-img {
max-width: 120px;
}
#sidebar a {
line-height: 20px;
font-size: 14px;
min-height: 28px;
color: #555;
}
#sidebar a:hover {
transition: all 0.3s ease 0s;
color: #da1b5c;
}
#sidebar a.subtitle {
color: #555;
}
#sidebar ul.topics {
margin: 0 1.8em;
}
#sidebar ul li.visited > a .read-icon {
display: none;
}
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
background: #ffffff;
margin-left: -1rem;
margin-right: -1rem;
padding-left: 1rem;
padding-right: 1rem;
}
#sidebar ul li.active > a {
background: #fff;
color: #DA1B60 !important;
}
#sidebar ul.topics > li > a {
line-height: 36px;
height: 36px;
font-weight: 500;
font-size: 16px;
color: #1f1a47;
}
#main-header {
border-bottom: 1px solid #d6d9db;
height: 55px;
}
#main-header .search-bar-wrapper {
max-width: 1000px;
margin: 0 auto;
}
#main-header nav {
max-width: 1000px;
margin: 0 auto;
}
#main-header li, #main-header a, #main-header button {
font-size: 16px;
font-weight: 400;
text-decoration: none;
}
#main-header nav ul {
list-style: none;
text-align: right;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
#main-header .nav-links li {
display: inline-block;
padding: 7px 20px;
}
#main-header .nav-links li a {
transition: all 0.3s ease 0s;
color: #1f1a47;
}
#main-header .nav-links li a:hover {
color: #da1b5c;
}
#main-header button {
background-color: #da1b5c;
cursor: pointer;
transition: all 0.3s ease 0s;
padding: 10px;
font-size: 13px;
}
#main-header .cta-button {
color: white;
font-weight: 400;
}
#main-header button:hover {
background-color: #aa1c4b;
}
#main-header #tntsearch-wrapper {
margin-left: 45px;
margin-top: 2px;
}
#main-header .tntsearch-form {
float: left;
font-size: 17px;
padding-top: 2.5px;
border: none;
position: absolute;
top: 0;
width: 60%;
z-index: 10020;
}
#main-header .tntsearch-form textarea, #main-header .tntsearch-form input[type=email], #main-header .tntsearch-form input[type=number], #main-header .tntsearch-form input[type=password], #main-header .tntsearch-form input[type=search], #main-header .tntsearch-form input[type=tel], #main-header .tntsearch-form input[type=text], #main-header .tntsearch-form input[type=url], #main-header .tntsearch-form input[type=color], #main-header .tntsearch-form input[type=date], #main-header .tntsearch-form input[type=datetime], #main-header .tntsearch-form input[type=datetime-local], #main-header .tntsearch-form input[type=month], #main-header .tntsearch-form input[type=time], #main-header .tntsearch-form input[type=week], #main-header .tntsearch-form select[multiple=multiple] {
background-color: transparent;
border: none;
box-shadow: none;
}
#main-header .tntsearch-form .form-input {
padding-left: 10px;
}
#main-header .tntsearch-form input {
color: #3C4265;
background: white;
}
#main-header .tntsearch-form input::-webkit-input-placeholder {
color: #697386;
}
#main-header .tntsearch-form input::-moz-placeholder {
color: #697386;
}
#main-header .tntsearch-form input:-moz-placeholder {
color: #697386;
}
#main-header .tntsearch-form input:-ms-input-placeholder {
color: #697386;
}
#main-header .tntsearch-by {
color: #3c4257;
position: absolute;
padding-top: 6px;
padding-left: 28px;
}
#main-header .tntsearch-by .fa {
font-size: smaller;
}
#main-header .tntsearch-results {
visibility: hidden;
position: relative;
top: -15px;
min-height: 58px;
background: white;
box-shadow: 0 15px 35px 0 rgba(50, 50, 93, 0.1), 0 5px 15px 0 rgba(0, 0, 0, 0.07);
border-radius: 0 0 4px 4px;
}
#main-header .tntsearch-results p {
font-size: 13px;
}
#main-header .tntsearch-results li {
display: block;
padding: 10px 15px 8px 15px;
margin-bottom: 10px;
}
#main-header .tntsearch-results li p {
color: #555;
margin: 0;
}
#main-header .tntsearch-results li .title {
margin: 0;
text-decoration: none;
display: inline-block;
margin-bottom: 5px;
margin-right: 5px;
}
#main-header .tntsearch-results li .title h5 {
color: #da1b5c;
}
#main-header .tntsearch-results li:hover {
background: #edf7ff;
}
#main-header .tntsearch-results .results {
list-style: none;
}
#footer-section {
margin: 0;
bottom: 0;
}
#footer-section .footer-wrapper {
color: #999;
background-color: #EAEAEA;
transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
/* background-image: url(//cdn.shopify.com/s/files/1/0246/4048/7476/files/Footer2-min_1920x1920.png?v=1560925019); */
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}
#footer-section .footer-wrapper a {
color: #999;
}
#footer-section .main-footer {
max-width: 1020px;
padding: 50px 30px;
margin: 0 auto;
font-size: 0.875rem;
}
#footer-section .main-footer .footer-title {
margin-top: 0;
margin-bottom: 30px;
color: #999;
text-align: left;
text-transform: uppercase;
font-size: 14px;
}
#footer-section .main-footer .footer-link-list {
float: left;
padding-right: 30px;
margin-bottom: 50px;
width: 27.5%;
}
#footer-section .main-footer .footer-link-list .footer-link-list.social-icons a {
padding-left: 30px;
position: relative;
}
#footer-section .main-footer .footer-link-list .fab:before {
font-family: "FontAwesome";
margin-top: -7px;
font-style: normal;
font-weight: 400;
line-height: 1;
font-size: 15px;
-webkit-font-smoothing: antialiased;
padding-right: 10px;
}
#footer-section .main-footer .footer-link-list ul {
margin: 0;
padding: 0;
list-style: outside none;
}
#footer-section .main-footer .footer-link-list ul li {
margin: 12px 0;
}
#footer-section .main-footer .spread-the-word {
max-width: 45%;
padding-left: 30px;
float: right;
margin-bottom: 60px;
}
#footer-section .main-footer .spread-the-word p {
margin-bottom: 25px;
}
#footer-section .main-footer .spread-the-word .share-icon {
display: inline-block;
padding: 0 10px;
margin: 0 8px 15px 0;
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 35px;
color: #999;
background-color: rgba(255, 255, 255, 1);
border-radius: 5px;
}
#footer-section .main-footer .spread-the-word .share-icon .share-icon:last-child {
margin-right: 0;
}
#footer-section .main-footer .spread-the-word .share-icon:before {
font-family: "FontAwesome";
font-size: 16px;
font-weight: 400;
line-height: 1;
-webkit-font-smoothing: antialiased;
margin-right: 8px;
}
#footer-section .main-footer .spread-the-word .icon-tweet:before {
content: "";
}
#footer-section .main-footer .spread-the-word .icon-like:before {
content: "";
}
#footer-section .main-footer .spread-the-word .icon-pin:before {
content: "";
}
#footer-section .main-footer .spread-the-word .icon-plus:before {
content: "";
}
#footer-section .main-footer .spread-the-word .icon-fancy:before {
content: "";
}
#footer-section .main-footer .copyright {
clear: both;
color: #999;
}
#footer-section .main-footer .copyright p {
margin: 0;
}
@media (max-width: 800px) {
#sidebar-toggle {
display: inline-block;
}
#top-bar {
display: none;
}
#main-header .tntsearch-form {
width: 80%;
padding-top: 0px;
}
#main-header .cta-button {
display: none;
}
#main-header .nav-links li {
display: none;
}
#main-header #tntsearch-wrapper {
margin-top: 4px;
padding-top: 6px;
}
#main-header .search-bar-wrapper {
padding-left: 50px;
padding-top: 6px;
}
#main-header .tntsearch-by {
padding-top: 12px;
}
#main-header .tntsearch-clear {
padding-top: 8px;
}
#sidebar {
transform: translateX(-100%);
}
#sidebar #footer {
display: block;
}
#body {
margin: 0 auto;
}
.footer-wrapper{
text-align: left;
}
#footer-section .main-footer .footer-title {
text-align: left;
}
#footer-section .main-footer .footer-link-list {
display: block;
width: 100%;
padding: 0;
margin-bottom: 50px;
}
/* .showing-2-lists .footer-link-list li {
display: inline;
padding: 0 0 0 5px;
} */
/* .showing-2-lists .footer-link-list li:before {
content: '\002F';
margin-right: 5px;
} */
#footer-section .main-footer .spread-the-word {
max-width: 100%;
display: block;
padding-left: 0;
float: none;
clear: left;
}
}
#sidebar-toggle {
margin-left: 20px;
margin-top: 12px;
}
#footer {
display: none;
}
#footer ul {
text-align: center;
}
.nav-links-mobile li, a, button {
font-size: 16px;
font-weight: 400;
text-decoration: none;
}
.nav-links-mobile li {
display: block;
padding: 7px 20px;
}
.nav-links-mobile button {
background-color: rgb(218, 27, 92);
cursor: pointer;
padding: 10px;
font-size: 13px;
}
#sidebar #footer .nav-links-mobile a {
color: white;
font-weight: 400;
}
#sidebar #footer .nav-links-mobile li a {
color: #1f1a47;
padding-top: 10px;
}
.sidebar-close-toggle {
float: right;
margin-top: 5px;
}
#hamburger-wrapper a {
color: #da1b5c;
}
#hamburger-wrapper {
display: none;
} | 0.281011 | 0.082623 |
.ecm-modal-window {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ecm-modal-window .modal-content {
border-radius: 0;
border-width: 0;
}
.ecm-modal-window .modal-dialog {
width: 50%;
}
@media screen and (max-width: 1024px) {
.ecm-modal-window .modal-dialog {
width: 80%;
}
}
@media screen and (max-width: 768px) {
.ecm-modal-window .modal-dialog {
width: 90%;
}
}
#edit-contact-modal {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#edit-contact-modal .bx-loader {
font-size: 30px;
}
#edit-contact-modal .close-modal {
text-align: right;
font-size: 28px;
color: #979797;
padding: 12px;
background: none;
border: none;
position: absolute;
top: 0;
right: 0;
}
#edit-contact-modal .close-modal:focus,
#edit-contact-modal .close-modal:hover,
#edit-contact-modal .close-modal:active {
color: #7e7e7e;
}
#edit-contact-modal input {
width: 100%;
border: solid 2px #b8b8b8;
color: #484848;
display: block;
border-radius: 0;
outline: none;
letter-spacing: 0.2px;
}
#edit-contact-modal input.ng-touched.ng-invalid {
border: 2px solid #a94442;
}
#edit-contact-modal input:focus,
#edit-contact-modal input:active {
border: 2px solid #2f60ce;
}
#edit-contact-modal .ecm__content {
max-width: 575px;
color: #323232;
text-align: center;
padding: 24px;
}
#edit-contact-modal .ecm__content__image {
width: 80px;
margin: 20px;
}
#edit-contact-modal .ecm__content__header {
font-size: 24px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: normal;
letter-spacing: -0.4px;
text-align: center;
}
#edit-contact-modal .ecm__content__subheader {
margin-top: 8px;
margin-bottom: 48px;
font-size: 18px;
line-height: 1.39;
letter-spacing: -0.3px;
text-align: center;
}
#edit-contact-modal .ecm__form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__form {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
#edit-contact-modal .ecm__form__input {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
margin-right: 12px;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__form__input {
margin-right: 0;
margin-bottom: 8px;
}
}
#edit-contact-modal .ecm__form__input input {
line-height: 1.5;
height: 54px;
font-size: 20px;
}
#edit-contact-modal .ecm__form__input .intl-tel-input {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}
#edit-contact-modal .ecm__otp {
color: #2f60ce;
margin-left: 24px;
text-align: left;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__otp {
margin-left: 0;
}
}
#edit-contact-modal .ecm__otp__header {
font-size: 18px;
font-weight: bold;
line-height: 1.67;
}
#edit-contact-modal .ecm__otp__subheader {
font-size: 18px;
line-height: 1.28;
margin-bottom: 16px;
}
#edit-contact-modal .ecm__otp__input {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 8px;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__otp__input {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
#edit-contact-modal .ecm__otp__input--input {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
margin-right: 12px;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__otp__input--input {
margin-right: 0;
margin-bottom: 8px;
}
}
#edit-contact-modal .ecm__otp__input button {
margin-top: 0;
}
#edit-contact-modal .ecm__otp__resend button {
font-size: 18px;
line-height: 1.67;
color: #2f60ce;
background: none;
border: none;
text-decoration: underline;
}
#edit-contact-modal .ecm__otp__resend button:disabled {
opacity: 0.5;
}
#edit-contact-modal .ecm__otp__resend button:hover,
#edit-contact-modal .ecm__otp__resend button:active,
#edit-contact-modal .ecm__otp__resend button:focus {
color: #264da4;
}
#edit-contact-modal .ecm__otp__resend span {
opacity: 0.5;
}
#edit-contact-modal .ecm__vfn-button--success {
background-color: #04aa80;
}
#edit-contact-modal .ecm__vfn-button--success:disabled {
opacity: 1;
}
#edit-contact-modal .ecm__button {
min-width: 140px;
}
#edit-contact-modal .ecm__button--verify {
min-width: 110px;
}
#edit-contact-modal .otp__form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
background-color: #e9ecf5;
padding: 32px;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .otp__form {
padding: 12px;
}
}
@media screen and (max-width: 425px) {
#edit-contact-modal .otp__form img {
display: none;
}
} | src/public/modules/core/css/edit-contact-number-modal.css | .ecm-modal-window {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.ecm-modal-window .modal-content {
border-radius: 0;
border-width: 0;
}
.ecm-modal-window .modal-dialog {
width: 50%;
}
@media screen and (max-width: 1024px) {
.ecm-modal-window .modal-dialog {
width: 80%;
}
}
@media screen and (max-width: 768px) {
.ecm-modal-window .modal-dialog {
width: 90%;
}
}
#edit-contact-modal {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#edit-contact-modal .bx-loader {
font-size: 30px;
}
#edit-contact-modal .close-modal {
text-align: right;
font-size: 28px;
color: #979797;
padding: 12px;
background: none;
border: none;
position: absolute;
top: 0;
right: 0;
}
#edit-contact-modal .close-modal:focus,
#edit-contact-modal .close-modal:hover,
#edit-contact-modal .close-modal:active {
color: #7e7e7e;
}
#edit-contact-modal input {
width: 100%;
border: solid 2px #b8b8b8;
color: #484848;
display: block;
border-radius: 0;
outline: none;
letter-spacing: 0.2px;
}
#edit-contact-modal input.ng-touched.ng-invalid {
border: 2px solid #a94442;
}
#edit-contact-modal input:focus,
#edit-contact-modal input:active {
border: 2px solid #2f60ce;
}
#edit-contact-modal .ecm__content {
max-width: 575px;
color: #323232;
text-align: center;
padding: 24px;
}
#edit-contact-modal .ecm__content__image {
width: 80px;
margin: 20px;
}
#edit-contact-modal .ecm__content__header {
font-size: 24px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: normal;
letter-spacing: -0.4px;
text-align: center;
}
#edit-contact-modal .ecm__content__subheader {
margin-top: 8px;
margin-bottom: 48px;
font-size: 18px;
line-height: 1.39;
letter-spacing: -0.3px;
text-align: center;
}
#edit-contact-modal .ecm__form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__form {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
#edit-contact-modal .ecm__form__input {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
margin-right: 12px;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__form__input {
margin-right: 0;
margin-bottom: 8px;
}
}
#edit-contact-modal .ecm__form__input input {
line-height: 1.5;
height: 54px;
font-size: 20px;
}
#edit-contact-modal .ecm__form__input .intl-tel-input {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}
#edit-contact-modal .ecm__otp {
color: #2f60ce;
margin-left: 24px;
text-align: left;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__otp {
margin-left: 0;
}
}
#edit-contact-modal .ecm__otp__header {
font-size: 18px;
font-weight: bold;
line-height: 1.67;
}
#edit-contact-modal .ecm__otp__subheader {
font-size: 18px;
line-height: 1.28;
margin-bottom: 16px;
}
#edit-contact-modal .ecm__otp__input {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 8px;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__otp__input {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
}
#edit-contact-modal .ecm__otp__input--input {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
margin-right: 12px;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .ecm__otp__input--input {
margin-right: 0;
margin-bottom: 8px;
}
}
#edit-contact-modal .ecm__otp__input button {
margin-top: 0;
}
#edit-contact-modal .ecm__otp__resend button {
font-size: 18px;
line-height: 1.67;
color: #2f60ce;
background: none;
border: none;
text-decoration: underline;
}
#edit-contact-modal .ecm__otp__resend button:disabled {
opacity: 0.5;
}
#edit-contact-modal .ecm__otp__resend button:hover,
#edit-contact-modal .ecm__otp__resend button:active,
#edit-contact-modal .ecm__otp__resend button:focus {
color: #264da4;
}
#edit-contact-modal .ecm__otp__resend span {
opacity: 0.5;
}
#edit-contact-modal .ecm__vfn-button--success {
background-color: #04aa80;
}
#edit-contact-modal .ecm__vfn-button--success:disabled {
opacity: 1;
}
#edit-contact-modal .ecm__button {
min-width: 140px;
}
#edit-contact-modal .ecm__button--verify {
min-width: 110px;
}
#edit-contact-modal .otp__form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
background-color: #e9ecf5;
padding: 32px;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
@media screen and (max-width: 425px) {
#edit-contact-modal .otp__form {
padding: 12px;
}
}
@media screen and (max-width: 425px) {
#edit-contact-modal .otp__form img {
display: none;
}
} | 0.109974 | 0.038178 |
html{
background: #f4f4f4;
}
body {
height: 100vh;
max-width: 100vw;
}
h2 {
font-size: 1.5rem;
}
#loader {
display: block;
position: fixed;
left: 0;
top: 0;
min-height: 100vh;
width: 100%;
height: 100%;
z-index: 9999;
background-color: #f4f4f4;
color: #1a1a1a;
}
.loading:after {
overflow: hidden;
display: inline-block;
vertical-align: bottom;
-webkit-animation: ellipsis steps(4,end) 2s infinite;
animation: ellipsis steps(4,end) 2s infinite;
content: "\2026";
width: 0px;
}
@-webkit-keyframes ellipsis {
to {
width: 1em;
}
}
@keyframes ellipsis {
to {
width: 1em;
}
}
#content {
padding: 0;
overflow-x: hidden;
min-height: 86%;
background: #f4f4f4;
opacity: 0;
}
#header {
height: 100%;
margin-top: 0;
color: #fff;
background-color: #0b70b6 !important;
background: url("../images/worldLow.svg");
background-attachment: fixed;
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
#countryName, #compareCountries {
font-size: 3.5rem;
}
#search {
background-color: #1a1a1a;
border: 2px solid #fff;
}
#data > div {
min-height: 200px;
background: transparent;
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
#data > div:hover {
background: rgba(0, 0, 0, 0.03);
}
#flag {
max-height: 140px;
}
.progress {
background: #fff !important;
}
.progress-bar {
min-width: 1%;
background: #0b70b6 !important;
}
#data,
#map,
#compare {
min-height: 550px;
}
#visualMap {
width: 100% !important;
min-height: 450px;
}
#compare > div {
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
#footer {
background-color: #f8f8f8;
border-top: 2px solid #fff;
opacity: 0;
height: auto;
}
#social {
position: fixed;
left: 0;
top: 40%;
z-index: 8888;
}
#social .btn {
font-size: 20px;
width: auto;
padding: 10px;
min-width: 40px;
background: #0b70b6;
color: #fff;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
#social .btn:hover, #social .btn:focus {
background: #fff;
color: #0b70b6;
box-shadow: none;
}
.hvr-underline-from-center:before {
background: #1a1a1a !important;
}
.desc {
display: none;
}
.expand:hover {
cursor: pointer;
}
#options .btn:focus {
background-color: #1a1a1a;
color: #fff;
box-shadow: none;
}
#dropdownOptions,
#dropdownOptions:focus {
font-size: 18px;
background-color: #1a1a1a;
color: #fff;
border-bottom: 2px solid #fff;
}
.dropdown-item {
border-bottom: 1px solid rgba(244, 244, 244, 0.5);
}
a:hover {
text-decoration: none;
}
a[aria-expanded='false'] > .fa, .dropdown-toggle[aria-expanded='true']::after {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
::-webkit-scrollbar {
display: none;
}
@media(max-width: 992px) {
#search {
margin-top: 40px;
}
#header {
margin-top: 110px;
background-size: 100%;
}
#countryName, #compareCountries {
font-size: 8vw;
}
#social {
margin: auto;
top: auto;
bottom: 0;
display: inline;
width: 100%;
text-align: center;
background: #0b70b6;
border-top: 2px solid #fff;
}
#footer {
margin-bottom: 40px;
height: auto;
}
}
@media(max-width: 768px) {
#searchInput,
#compareInput {
width: 100vw;
margin-bottom: 5px;
}
#header {
margin-top: 148px;
background-position: center;
}
}
@media(max-width: 575px) {
#data, #data > div {
padding: 0 !important;
}
#data .m-auto {
padding: 0 1rem !important;
}
} | assets/css/styles.css | html{
background: #f4f4f4;
}
body {
height: 100vh;
max-width: 100vw;
}
h2 {
font-size: 1.5rem;
}
#loader {
display: block;
position: fixed;
left: 0;
top: 0;
min-height: 100vh;
width: 100%;
height: 100%;
z-index: 9999;
background-color: #f4f4f4;
color: #1a1a1a;
}
.loading:after {
overflow: hidden;
display: inline-block;
vertical-align: bottom;
-webkit-animation: ellipsis steps(4,end) 2s infinite;
animation: ellipsis steps(4,end) 2s infinite;
content: "\2026";
width: 0px;
}
@-webkit-keyframes ellipsis {
to {
width: 1em;
}
}
@keyframes ellipsis {
to {
width: 1em;
}
}
#content {
padding: 0;
overflow-x: hidden;
min-height: 86%;
background: #f4f4f4;
opacity: 0;
}
#header {
height: 100%;
margin-top: 0;
color: #fff;
background-color: #0b70b6 !important;
background: url("../images/worldLow.svg");
background-attachment: fixed;
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
#countryName, #compareCountries {
font-size: 3.5rem;
}
#search {
background-color: #1a1a1a;
border: 2px solid #fff;
}
#data > div {
min-height: 200px;
background: transparent;
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
#data > div:hover {
background: rgba(0, 0, 0, 0.03);
}
#flag {
max-height: 140px;
}
.progress {
background: #fff !important;
}
.progress-bar {
min-width: 1%;
background: #0b70b6 !important;
}
#data,
#map,
#compare {
min-height: 550px;
}
#visualMap {
width: 100% !important;
min-height: 450px;
}
#compare > div {
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
#footer {
background-color: #f8f8f8;
border-top: 2px solid #fff;
opacity: 0;
height: auto;
}
#social {
position: fixed;
left: 0;
top: 40%;
z-index: 8888;
}
#social .btn {
font-size: 20px;
width: auto;
padding: 10px;
min-width: 40px;
background: #0b70b6;
color: #fff;
-webkit-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
#social .btn:hover, #social .btn:focus {
background: #fff;
color: #0b70b6;
box-shadow: none;
}
.hvr-underline-from-center:before {
background: #1a1a1a !important;
}
.desc {
display: none;
}
.expand:hover {
cursor: pointer;
}
#options .btn:focus {
background-color: #1a1a1a;
color: #fff;
box-shadow: none;
}
#dropdownOptions,
#dropdownOptions:focus {
font-size: 18px;
background-color: #1a1a1a;
color: #fff;
border-bottom: 2px solid #fff;
}
.dropdown-item {
border-bottom: 1px solid rgba(244, 244, 244, 0.5);
}
a:hover {
text-decoration: none;
}
a[aria-expanded='false'] > .fa, .dropdown-toggle[aria-expanded='true']::after {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
::-webkit-scrollbar {
display: none;
}
@media(max-width: 992px) {
#search {
margin-top: 40px;
}
#header {
margin-top: 110px;
background-size: 100%;
}
#countryName, #compareCountries {
font-size: 8vw;
}
#social {
margin: auto;
top: auto;
bottom: 0;
display: inline;
width: 100%;
text-align: center;
background: #0b70b6;
border-top: 2px solid #fff;
}
#footer {
margin-bottom: 40px;
height: auto;
}
}
@media(max-width: 768px) {
#searchInput,
#compareInput {
width: 100vw;
margin-bottom: 5px;
}
#header {
margin-top: 148px;
background-position: center;
}
}
@media(max-width: 575px) {
#data, #data > div {
padding: 0 !important;
}
#data .m-auto {
padding: 0 1rem !important;
}
} | 0.395134 | 0.097519 |
.cart-wrapper {
width: 85%;
margin-left: auto;
margin-right: auto;
margin-top: 6rem;
margin-bottom: 8rem;
box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.15);
}
.cart-main {
padding: 3.5rem 5rem;
}
.cart-item {
display: flex;
padding: 2rem 3.5rem;
background-color: #ffc311;
opacity: 0.95;
margin-bottom: 2rem;
}
.col-left {
width: 65%;
}
.col-right {
width: 35%;
justify-content: space-between;
}
.item-info {
display: flex;
flex-direction: column;
justify-content: space-between;
padding-top: 1rem;
padding-bottom: 1rem;
}
.item-info > .name,
.item-info > .status,
.item-info > .remove {
font-size: 1.5rem;
color: white;
font-weight: 600;
letter-spacing: 0.1rem;
}
.item-info > .status {
color: black;
}
.item-info > .status span {
color: #008000;
}
.item-info > .remove {
color: red;
}
.item-price {
font-size: 1.7rem;
font-weight: bold;
margin-top: 2rem;
}
.item-quantity {
display: flex;
margin-top: 2rem;
}
.item-quantity input {
height: min-content;
width: 7rem;
border: none;
border-top: 0.5px solid rgba(81, 81, 81, 0.5);
border-bottom: 0.5px solid rgba(81, 81, 81, 0.5);
line-height: 1.7;
text-align: center;
}
#dec,
#inc {
width: min-content;
height: min-content;
padding: 0 1rem;
border: 0.5px solid rgba(81, 81, 81, 0.5);
line-height: 1.8;
font-weight: bold;
background-color: white;
cursor: pointer;
user-select: none;
margin-top: 0;
}
#dec {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#inc {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.estimated-price {
padding: 1.5rem 3.5rem;
background-color: #ffc311;
}
.estimated-price p {
font-size: 1.7rem;
font-weight: bold;
}
.cart-main p {
margin-top: 1rem;
font-family: 1.2rem;
}
.continue,
.pay {
font-size: 1.7rem;
line-height: 1.8;
padding: 0.7rem 2rem;
background-color: #ffc311;
width: fit-content;
margin-top: 4rem;
font-weight: bold;
cursor: pointer;
}
@media (min-width: 576px) {
.cart-item {
flex-direction: column;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.col-left,
.col-right {
flex-direction: column;
width: 100%;
}
.item-image {
display: flex;
width: 100%;
margin-left: auto;
margin-right: 0;
justify-content: center;
}
.item-quantity {
justify-content: center;
}
}
@media (min-width: 768px) {
.col-left {
flex-direction: row;
}
.col-left {
width: 100%;
justify-content: space-between;
}
.item-image {
width: 60%;
margin-left: 0;
margin-right: 2rem;
}
.item-price {
text-align: center;
}
}
@media (min-width: 992px) {
.cart-item,
.col-right {
flex-direction: row;
}
.col-left {
width: 65%;
justify-content: flex-start;
}
.col-right {
width: 35%;
}
.item-image {
width: 40%;
margin-left: 0;
margin-right: 2rem;
}
} | public/css/cart.css | .cart-wrapper {
width: 85%;
margin-left: auto;
margin-right: auto;
margin-top: 6rem;
margin-bottom: 8rem;
box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.15);
}
.cart-main {
padding: 3.5rem 5rem;
}
.cart-item {
display: flex;
padding: 2rem 3.5rem;
background-color: #ffc311;
opacity: 0.95;
margin-bottom: 2rem;
}
.col-left {
width: 65%;
}
.col-right {
width: 35%;
justify-content: space-between;
}
.item-info {
display: flex;
flex-direction: column;
justify-content: space-between;
padding-top: 1rem;
padding-bottom: 1rem;
}
.item-info > .name,
.item-info > .status,
.item-info > .remove {
font-size: 1.5rem;
color: white;
font-weight: 600;
letter-spacing: 0.1rem;
}
.item-info > .status {
color: black;
}
.item-info > .status span {
color: #008000;
}
.item-info > .remove {
color: red;
}
.item-price {
font-size: 1.7rem;
font-weight: bold;
margin-top: 2rem;
}
.item-quantity {
display: flex;
margin-top: 2rem;
}
.item-quantity input {
height: min-content;
width: 7rem;
border: none;
border-top: 0.5px solid rgba(81, 81, 81, 0.5);
border-bottom: 0.5px solid rgba(81, 81, 81, 0.5);
line-height: 1.7;
text-align: center;
}
#dec,
#inc {
width: min-content;
height: min-content;
padding: 0 1rem;
border: 0.5px solid rgba(81, 81, 81, 0.5);
line-height: 1.8;
font-weight: bold;
background-color: white;
cursor: pointer;
user-select: none;
margin-top: 0;
}
#dec {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#inc {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.estimated-price {
padding: 1.5rem 3.5rem;
background-color: #ffc311;
}
.estimated-price p {
font-size: 1.7rem;
font-weight: bold;
}
.cart-main p {
margin-top: 1rem;
font-family: 1.2rem;
}
.continue,
.pay {
font-size: 1.7rem;
line-height: 1.8;
padding: 0.7rem 2rem;
background-color: #ffc311;
width: fit-content;
margin-top: 4rem;
font-weight: bold;
cursor: pointer;
}
@media (min-width: 576px) {
.cart-item {
flex-direction: column;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.col-left,
.col-right {
flex-direction: column;
width: 100%;
}
.item-image {
display: flex;
width: 100%;
margin-left: auto;
margin-right: 0;
justify-content: center;
}
.item-quantity {
justify-content: center;
}
}
@media (min-width: 768px) {
.col-left {
flex-direction: row;
}
.col-left {
width: 100%;
justify-content: space-between;
}
.item-image {
width: 60%;
margin-left: 0;
margin-right: 2rem;
}
.item-price {
text-align: center;
}
}
@media (min-width: 992px) {
.cart-item,
.col-right {
flex-direction: row;
}
.col-left {
width: 65%;
justify-content: flex-start;
}
.col-right {
width: 35%;
}
.item-image {
width: 40%;
margin-left: 0;
margin-right: 2rem;
}
} | 0.609408 | 0.077553 |
a, pre, tt {
word-wrap: break-word;
}
footer, li a {
text-align: center;
}
.submit, .text {
-webkit-appearance: none;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
background-color: #eee;
}
h1 {
margin: 0 0 .5em;
font-size: 1.8em;
font-weight: 400;
}
a {
color: #03a9f4;
text-decoration: unset;
}
a:hover {
color: #47c0f7;
}
a:active {
color: #2196f3;
}
p {
margin: .3em 0;
}
footer {
color: #777;
margin: 2em 0;
}
form.login {
display: grid;
color: #000;
background-color: #fff;
width: 25%;
margin: 1em auto;
border-radius: .5em;
border: .05em solid #ddd;
padding: 2em;
}
li a, tt {
color: #fff;
}
img, nav {
width: 100%;
}
img, ul {
margin: 0 auto;
}
nav {
position: fixed;
top: 0;
background-color: #333;
}
ul {
list-style-type: none;
padding: 0;
width: 75%;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
padding: 1em 1.2em;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
tt {
background-color: #222;
padding: .3em .5em;
border-radius: .3em;
line-height: 2em;
letter-spacing: .03em;
}
pre {
color: #000;
background-color: #eee;
border: .1em solid #aaa;
padding: .5em;
}
pre, tt {
font-family: "Courier New", Courier, monospace;
font-size: .8em;
}
#torrents {
margin: 5em auto 0;
width: 75%;
border-collapse: collapse;
border-spacing: 0;
text-align: left;
}
.center, .submit {
text-align: center;
}
#torrents th {
color: #fff;
background-color: #444;
border: .1em solid #000;
}
#torrents tr:nth-child(odd) {
background-color: #fff;
}
#torrents tr:nth-child(even) {
background-color: #f7f7f7;
}
#torrents tr:hover {
background-color: #e6e6e6;
}
#torrents td, th {
margin: 0;
padding: .9em;
border: .1em solid #ddd;
color: #000;
}
.table {
overflow-x: auto;
}
.nav li.icon {
display: none;
}
.container, .submit {
display: inline-block;
}
.right {
float: right;
}
.info {
color: #000;
background-color: #fff;
width: 50%;
margin: 5em auto 0;
border-radius: .3em;
border: .05em solid #ddd;
padding: 2em;
}
input.submit {
height: 2.2em;
}
.submit {
color: #fff;
background-color: #28d;
border: .05em solid #169;
border-radius: 0;
width: 7em;
height: 1.5em;
margin-top: .5em;
padding: .3em;
font-size: 18px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-decoration: unset;
vertical-align: middle;
}
.submit:hover {
cursor: pointer;
color: #fff;
background-color: #4af;
border-color: #28c;
}
.submit:active {
cursor: pointer;
background-color: #17c;
border-color: #157;
}
.text {
font-size: 1em;
padding: .5em;
border: .05em solid #222;
border-radius: 0;
}
.text:focus {
outline: #43e;
border-color: #432;
}
.good {
color: #1bab52;
}
.bad {
color: #ab291b;
}
.notification {
margin: 10px 0;
}
.loginbox, .text, textarea {
width: 100%;
margin-bottom: .5em;
box-sizing: border-box;
}
.container {
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
}
.container:hover input~.checkmark {
background-color: #ccc;
}
.container input:checked~.checkmark {
background-color: #28d;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.container input:hecked~.checkmark:after {
display: block;
}
.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid #fff;
border-width: 0 3px 3px 0;
transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
.info, .submit, form.login {
box-sizing: border-box;
}
ul {
width: 100%;
}
#torrents, .info, form.login {
width: 90%;
margin-bottom: 0;
}
.submit {
display: block;
width: 100%;
}
.right {
float: left;
}
.nav li a {
display: none;
}
.nav li.icon, .nav li.icon a {
float: right;
display: block;
}
.nav.responsive li {
position: relative;
}
.nav.responsive li.icon, .nav.responsive li.icon a {
position: absolute;
right: 0;
top: 0;
}
.nav.responsive li, .nav.responsive li a {
float: none;
display: block;
text-align: left;
}
} | serve/css/style.css | a, pre, tt {
word-wrap: break-word;
}
footer, li a {
text-align: center;
}
.submit, .text {
-webkit-appearance: none;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
background-color: #eee;
}
h1 {
margin: 0 0 .5em;
font-size: 1.8em;
font-weight: 400;
}
a {
color: #03a9f4;
text-decoration: unset;
}
a:hover {
color: #47c0f7;
}
a:active {
color: #2196f3;
}
p {
margin: .3em 0;
}
footer {
color: #777;
margin: 2em 0;
}
form.login {
display: grid;
color: #000;
background-color: #fff;
width: 25%;
margin: 1em auto;
border-radius: .5em;
border: .05em solid #ddd;
padding: 2em;
}
li a, tt {
color: #fff;
}
img, nav {
width: 100%;
}
img, ul {
margin: 0 auto;
}
nav {
position: fixed;
top: 0;
background-color: #333;
}
ul {
list-style-type: none;
padding: 0;
width: 75%;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
padding: 1em 1.2em;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
tt {
background-color: #222;
padding: .3em .5em;
border-radius: .3em;
line-height: 2em;
letter-spacing: .03em;
}
pre {
color: #000;
background-color: #eee;
border: .1em solid #aaa;
padding: .5em;
}
pre, tt {
font-family: "Courier New", Courier, monospace;
font-size: .8em;
}
#torrents {
margin: 5em auto 0;
width: 75%;
border-collapse: collapse;
border-spacing: 0;
text-align: left;
}
.center, .submit {
text-align: center;
}
#torrents th {
color: #fff;
background-color: #444;
border: .1em solid #000;
}
#torrents tr:nth-child(odd) {
background-color: #fff;
}
#torrents tr:nth-child(even) {
background-color: #f7f7f7;
}
#torrents tr:hover {
background-color: #e6e6e6;
}
#torrents td, th {
margin: 0;
padding: .9em;
border: .1em solid #ddd;
color: #000;
}
.table {
overflow-x: auto;
}
.nav li.icon {
display: none;
}
.container, .submit {
display: inline-block;
}
.right {
float: right;
}
.info {
color: #000;
background-color: #fff;
width: 50%;
margin: 5em auto 0;
border-radius: .3em;
border: .05em solid #ddd;
padding: 2em;
}
input.submit {
height: 2.2em;
}
.submit {
color: #fff;
background-color: #28d;
border: .05em solid #169;
border-radius: 0;
width: 7em;
height: 1.5em;
margin-top: .5em;
padding: .3em;
font-size: 18px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-decoration: unset;
vertical-align: middle;
}
.submit:hover {
cursor: pointer;
color: #fff;
background-color: #4af;
border-color: #28c;
}
.submit:active {
cursor: pointer;
background-color: #17c;
border-color: #157;
}
.text {
font-size: 1em;
padding: .5em;
border: .05em solid #222;
border-radius: 0;
}
.text:focus {
outline: #43e;
border-color: #432;
}
.good {
color: #1bab52;
}
.bad {
color: #ab291b;
}
.notification {
margin: 10px 0;
}
.loginbox, .text, textarea {
width: 100%;
margin-bottom: .5em;
box-sizing: border-box;
}
.container {
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
}
.container:hover input~.checkmark {
background-color: #ccc;
}
.container input:checked~.checkmark {
background-color: #28d;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.container input:hecked~.checkmark:after {
display: block;
}
.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid #fff;
border-width: 0 3px 3px 0;
transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
.info, .submit, form.login {
box-sizing: border-box;
}
ul {
width: 100%;
}
#torrents, .info, form.login {
width: 90%;
margin-bottom: 0;
}
.submit {
display: block;
width: 100%;
}
.right {
float: left;
}
.nav li a {
display: none;
}
.nav li.icon, .nav li.icon a {
float: right;
display: block;
}
.nav.responsive li {
position: relative;
}
.nav.responsive li.icon, .nav.responsive li.icon a {
position: absolute;
right: 0;
top: 0;
}
.nav.responsive li, .nav.responsive li a {
float: none;
display: block;
text-align: left;
}
} | 0.42322 | 0.123577 |
@import url(https://fonts.googleapis.com/css?family=Crimson+Text:400,600,700|Source+Sans+Pro:400,600,700);
body {
background-color: #fafafa;
color: #444444;
font-family: 'Crimson Text', serif;
font-weight: 400;
font-size: 16px;
line-height: 26px;
text-rendering:optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
}
a:active,
a:focus { outline: none !important; }
a {
text-decoration: none !important;
color: #52897b;
}
a:hover, a:focus {
color: #000;
}
a, a:hover, .btn, .btn:hover, input.form-control:focus, textarea.form-control:focus {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
}
p{
height: 200px;
overflow: hidden;
color: #333333;
}
a img,
iframe { border: none !important; }
h1,
h2,
h3,
h4,
h5,
h6 {
color: #333333;
font-family: 'Open Sans', sans-serif;
margin-bottom: 30px;
}
.media-left{
float: left;
}
/* === Preloader === */
#st-preloader {
background: #FFF;
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 9999;
}
#pre-status,
.preload-placeholder {
background-image: url(../images/preloader.gif);
background-position: center;
background-repeat: no-repeat;
height: 50px;
left: 50%;
margin: -25px 0 0 -25px;
position: absolute;
top: 50%;
width: 50px;
}
.preload-placeholder {
background: none;
left: 0;
margin: 0;
text-align: center;
top: 65%;
}
/* === Forms === */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border: 1px dotted;
border-color: #e2e2e2;
padding: 6px 22px;
text-transform: uppercase;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
background-color: transparent;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
border-color: #e2e2e2;
background-color: #52897b;
color: #fff;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
border-color: #52897b;
outline: none;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
color: #666;
border: 1px solid #ccc;
border-radius: 0;
padding: 5px 10px
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
border: 1px solid #52897b;
outline: none;
}
textarea {
padding-left: 3px;
width: 100%;
}
/* === Header / Menu === */
.main-logo{
margin-bottom: 50px;
margin-top: 50px;
}
#header{
background-color: #fff;
box-shadow: 0px 1px 5px rgba(214, 214, 214, 0.7);
}
#navigation-wrapper ul.top-menu,
#navigation-wrapper .top-menu ul{
padding: 0;
margin: 0;
}
#navigation-wrapper .top-menu li {
display: inline-block;
margin-right: 20px;
margin-left: 20px;
position: relative;
}
#navigation-wrapper .top-menu li a {
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
line-height: 50px;
letter-spacing: 2px;
color: #5d5d5d;
font-family: 'Crimson Text', serif;
display: block;
-o-transition: .3s;
-ms-transition: .3s;
-moz-transition: .3s;
-webkit-transition: .3s;
}
#navigation-wrapper .top-menu li.current-menu-item a, #navigation-wrapper .top-menu li.current_page_item a, #navigation-wrapper .top-menu li a:hover {
color: #52897b;
}
/*** DROPDOWN ***/
#navigation-wrapper .top-menu .sub-menu,
#navigation-wrapper .top-menu .children {
background-color: #fff;
display: none;
padding: 0;
position: absolute;
margin-top:0;
left: -20px;
z-index: 99999;
border: 1px dotted #e8e8e8;
}
#navigation-wrapper ul.top-menu ul a,
#navigation-wrapper .top-menu ul ul li a {
color: #5d5d5d;
margin: 0;
padding: 8px 20px;
min-width: 200px;
line-height: 20px;
-o-transition:.25s;
-ms-transition:.25s;
-moz-transition:.25s;
-webkit-transition:.25s;
transition:.25s;
}
#navigation-wrapper ul.top-menu ul li,
#navigation-wrapper .top-menu ul ul li {
padding-right: 0;
margin-right: 0;
margin-left: 0;
text-align: left;
}
#navigation-wrapper ul.top-menu ul a:hover,
#navigation-wrapper .top-menu ul ul a:hover {
background: #f5f5f5;
color: #52897b;
}
#navigation-wrapper ul.top-menu li:hover > ul,
#navigation-wrapper .top-menu ul li:hover > ul {
display: block;
}
#navigation-wrapper .top-menu .sub-menu ul,
#navigation-wrapper .top-menu .children ul {
left: 100%;
top: 0;
}
#navigation-wrapper .top-menu .sub-menu li{
border-bottom: 1px solid #eee;
}
#navigation-wrapper .top-menu .sub-menu li:last-child{
border-bottom: 0px solid #eee;
}
/* Mobile */
.slicknav_nav ul.top-menu{
margin: 0;
padding: 0;
text-align: left;
}
.slicknav_nav ul.top-menu a:hover, .slicknav_nav ul.top-menu a:active{
background: #f5f5f5;
color: #52897b;
}
.slicknav_nav .top-menu a{
color: #5d5d5d;
}
/* --- Menus ---*/
.main-navigation {
clear: both;
display: block;
float: left;
width: 100%;
}
.main-navigation ul {
display: none;
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation li {
float: left;
position: relative;
}
.main-navigation a {
display: block;
text-decoration: none;
}
.main-navigation ul ul {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
float: left;
position: absolute;
top: 1.5em;
left: -999em;
z-index: 99999;
}
.main-navigation ul ul ul {
left: -999em;
top: 0;
}
.main-navigation ul ul a {
width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a,
.main-navigation li.focus > a {
}
.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}
.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
left: 100%;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}
/* --- Small menu --- */
.menu-toggle,
.main-navigation.toggled ul {
display: block;
}
@media screen and (min-width: 37.5em) {
.menu-toggle {
display: none;
}
.main-navigation ul {
display: block;
}
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
}
/* === Slider === */
#featured-slider{
margin-bottom: 50px;
}
#featured-slider .item{
position: relative;
}
#featured-slider .item img{
width: 100%;
}
#featured-slider .item:hover img{
opacity: .85;
}
.slider-item-cap{
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
padding: 30px 15px 15px 15px;
background-image: -webkit-linear-gradient(top,transparent 0%,rgba(0,0,0,0.9) 100%);
background-image: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,0.9) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e5000000', GradientType=0);
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
}
.slider-item-cap .s-cat{
margin-bottom: 5px;
letter-spacing: 1px;
}
.slider-item-cap .s-cat a{
color: #fff;
font-size: 12px;
text-transform: uppercase;
border-bottom: 1px solid #fff;
}
.slider-item-cap a.s-title{
color: #fff;
font-size: 18px;
line-height: 20px;
}
.slider-item-cap a.s-title:hover{
text-decoration: underline;
}
#featured-slider .owl-controls{
margin: 0;
text-align: right;
position: absolute;
bottom: 24px;
right: 10px;
}
#featured-slider .owl-controls .owl-page span{
background: #fff;
margin: 5px 3px;
width: 10px;
height: 10px;
}
/* === Content === */
/* --- Posts and pages --- */
.sticky {
display: block;
}
.hentry {
margin: 0 0 40px;
background-color: #fff;
border: 1px dotted #e2e2e2;
}
.grid2 .hentry, .list .hentry{
margin: 0 0 30px;
}
.grid2 .hentry{
height: 500px;
}
.entry-content >p{
height: 50px;
overflow: hidden;
}
.byline,
.updated:not(.published) {
display: none;
}
.single .byline,
.group-blog .byline {
display: inline;
}
.page-content,
.entry-content,
.entry-summary {
margin: 15px 0 0;
}
.grid2 .entry-content {
margin: 10px 0 0;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
}
.page .entry-header{
margin-bottom: 15px;
}
.page .entry-header h1.entry-title {
color: #5d5d5d;
font-size: 24px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
text-transform: uppercase;
line-height: 32px;
margin: 0;
}
/* --- 404 Page --- */
.error-404{
padding-top: 100px;
padding-bottom: 150px;
}
.error-404 h1{
font-size: 150px;
margin-bottom: 30px;
}
/* --- Search Page --- */
.search-header{
margin-bottom: 40px;
}
.search-header .search-title{
font-size: 18px;
color: #444;
background-color: #fff;
border: 1px dotted #e2e2e2;
padding: 14px 28px;
letter-spacing: 1px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
text-align: center;
}
/* post */
header.entry-header{
margin-bottom: 2px;
}
.post-content-area{
padding-left: 35px;
padding-right: 35px;
padding-bottom: 35px;
padding-top: 13px;
}
.list .post-content-area {
padding-left: 14px;
padding-right: 14px;
padding-bottom: 14px;
padding-top: 13px;
}
.grid2 .post-content-area {
padding-left: 30px;
padding-right: 30px;
padding-bottom: 25px;
padding-top: 4px;
}
.post-content-area .entry-header .post-cat{
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
text-decoration: underline;
line-height: 23px;
margin-bottom: 10px;
letter-spacing: 1px;
}
.grid2 .post-content-area .entry-header .post-cat {
line-height: 16px;
margin-bottom: 8px;
}
.entry-content address, .comment-content address{
background: none repeat scroll 0 0 #f1f1f1;
border-left: 5px solid #ddd;
padding: 10px 10px 10px 20px;
}
.entry-content table, .comment-content table{
border-right: 1px solid #ddd;
border-top: 1px solid #ddd;
margin-bottom: 20px;
}
.entry-content table tr, .comment-content table tr{
border-bottom: 1px solid #ddd;
}
.entry-content table tr th, .comment-content table tr th{
background: none repeat scroll 0 0 #eee;
}
.entry-content table tbody tr th{
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.entry-content table tr th, table tr td, .comment-content table tr td{
border-left: 1px solid #ddd;
padding: 10px;
}
.entry-content ul li, .comment-content ul li {
margin-bottom: 12px;
list-style: square;
}
.entry-content ol li, .comment-content ol li {
margin-bottom: 12px;
list-style: decimal;
}
.post-content-area .entry-meta{
margin-top: 14px;
}
.grid2 .post-content-area .entry-meta{
margin-top: 4px;
}
.entry-meta{
color: #30373b;
font-weight: 400;
font-size: 13px;
font-family: 'Crimson Text', serif;
letter-spacing: 2px;
}
.entry-meta a{
color: #30373b;
}
.entry-meta a:hover{
color: #52897b;
}
.entry-meta .posted-on,
.entry-meta .post-comment{
color: #888888;
font-size: 10px;
text-transform: uppercase;
}
.entry-meta .posted-on{
margin: 0 -150px;
}
.grid2 .entry-meta .posted-on,
.grid2 .entry-meta .post-comment{
margin: 0 4px;
}
.entry-meta .post-comment a{
color: #888888;
font-size: 10px;
text-transform: uppercase;
}
.list-inline li {
padding-right: 4px;
padding-left: 4px;
}
.entry-tags a{
margin: 0 0 0 3px;
color: #52897b;
}
.entry-tags a:hover{
color: #30373b;
}
a.more-link{
border: 1px dotted #e2e2e2;
background-color: #fff;
padding: 6px 15px;
display: block;
text-transform: uppercase;
text-align: center;
font-size: 12px;
color: #52897b;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
margin: 0 auto;
width: 180px;
letter-spacing: 2px;
margin-top: 30px;
}
a.more-link:hover{
background-color: #52897b;
border-color: #fff;
color: #fff;
}
article header.entry-header a.entry-title, .single article header.entry-header .entry-title{
color: #5d5d5d;
font-size: 20px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
text-transform: uppercase;
line-height: 32px;
}
article header.entry-header a:hover.entry-title {
color: #52897b;
}
article header.entry-header a.entry-single-title{
color: #30373b;
font-size: 24px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
text-transform: uppercase;
line-height: 28px;
}
article header.entry-header a:hover.entry-single-title {
color: #52897b;
}
article .thumbnails{
margin: 14px;
}
.list article .thumbnails{
width: 320px;
height: auto;
}
.list-large:first-child article .thumbnails{
width: auto;
}
.list-large:first-child article .entry-header{
text-align: center;
}
.list-large:first-child .entry-meta{
text-align: center;
margin-top: 10px;
}
.list .post-content-area .entry-meta {
margin-top: 0px;
}
.list-large:first-child .post-content-area {
padding-left: 35px;
padding-right: 35px;
padding-bottom: 30px;
padding-top: 13px;
}
.grid2-large .grid2:first-child{
width: 100%;
}
.single-post article .thumbnails{
margin-top: 16px;
}
.single-content-footer, .next-previous-post, .user-profile, .related-posts, #comments{
margin: 0 0 40px;
background-color: #fff;
border: 1px dotted #e2e2e2;
padding: 35px;
}
.featured-post{
position: absolute;
top: 15px;
right: 45px;
color: #fff;
background-color: #52897b;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
font-size: 20px;
z-index: 1;
}
.list .featured-post{
right: 0;
left: 45px;
}
.featured-post:after{
content: '';
width: 0;
height: 0;
border: 20px solid transparent;
border-bottom: 0;
border-top: 20px solid #52897b;
margin-top: 0px;
display: block;
}
/* Share Button */
.post-social-button{
display: inline-block;
margin-bottom: auto;
}
.post-social-button ul{
margin: 10px;
padding: 0;
list-style: none;
}
.post-social-button ul li{
float: left;
}
.post-social-button ul li a{
border: 1px dotted #bbbbbb;
font-size: 14px;
width: 30px;
height: 30px;
display: inline-block;
text-align: center;
line-height: 28px;
border-radius: 50%;
color: #bbbbbb;
margin: 0 5px;
}
.share-this{
border: 1px dotted #e2e2e2;
background-color: #fff;
padding: 6px 15px;
display: block;
text-transform: uppercase;
text-align: center;
font-size: 12px;
color: #52897b;
margin: 0 auto;
width: 130px;
letter-spacing: 2px;
margin-bottom: 24px;
margin-top: 19px;
}
.post-social-button ul li a:hover.facebook{
background-color: #37589b;
color: #fff;
}
.post-social-button ul li a:hover.twitter{
background-color: #00bff3;
color: #fff;
}
.post-social-button ul li a:hover.g-puls{
background-color: #f4615e;
color: #fff;
}
.post-social-button ul li a:hover.linkedin{
background-color: #075a94;
color: #fff;
}
.post-social-button ul li a:hover.pinterest{
background-color: #C92228;
color: #fff;
}
.post-social-button ul li a:hover.envelope{
background-color: #30373b;
color: #fff;
}
/* Related Posts */
.related-posts{
}
.related-posts h3.common-title{
color: #343434;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
font-family: 'Source Sans Pro', sans-serif;
margin-top: 0;
margin-bottom: 26px;
}
.single-related-posts{
position: relative;
}
.single-related-posts:hover img{
opacity: 0.85;
}
.single-related-posts header{
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
padding: 20px 10px 10px 10px;
background-image: -webkit-linear-gradient(top,transparent 0%,rgba(0,0,0,0.9) 100%);
background-image: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,0.9) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e5000000', GradientType=0);
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
}
.single-related-posts header h3{
margin: 0;
font-family: 'Source Sans Pro', sans-serif;
font-size: 16px;
font-weight: 400;
letter-spacing: .50px;
}
.single-related-posts header h3 a{
color: #fff;
}
.single-related-posts header h3 a:hover{
text-decoration: underline;
}
.single-related-posts header p{
margin-bottom: -187px;
margin-top: 0px;
font-size: 12px;
color: #BABABA;
}
/* Posts Navigation */
.next-previous-posts{
margin-top: 40px;
margin-bottom: 40px;
}
.next-previous-posts .previous-post h2{
margin: 0;
}
.next-previous-posts .previous-post h2 a{
font-size: 12px;
font-weight: 400;
background-color: #fff;
color: #52897b;
border: 1px dotted #e2e2e2;
padding: 12px 14px;
display: inline-block;
text-transform: uppercase;
letter-spacing: 1px;
width: 148px;
text-align: center;
}
.next-previous-posts .previous-post h2 a:hover{
background-color: #52897b;
border-color: #e2e2e2;
color: #fff;
}
.next-previous-posts .previous-post h2 a i{
margin-left: 5px;
}
.next-previous-posts .next-post h2{
margin: 0;
}
.next-previous-posts .next-post h2 a{
font-size: 12px;
font-weight: 400;
color: #52897b;
background-color: #fff;
border: 1px dotted #e2e2e2;
padding: 12px 14px;
display: inline-block;
text-transform: uppercase;
letter-spacing: 1px;
width: 148px;
text-align: center;
}
.next-previous-posts .next-post h2 a:hover{
background-color: #52897b;
border-color: #e2e2e2;
color: #fff;
}
.next-previous-posts .next-post h2 a i{
margin-right: 5px;
}
/* Pagination */
.pagination{
margin-bottom: 20px;
}
.pagination li a,
.pagination li span{
color: #777;
border: 1px dotted #e2e2e2;
padding: 8px 15px;
display: inline-block;
}
.pagination li:last-child a,
.pagination li:last-child span,
.pagination li:first-child a,
.pagination li:first-child span{
border-radius: 0;
}
.pagination li a:focus,
.pagination li a:hover,
.pagination li span:focus,
.pagination li span.current,
.pagination li span:hover {
color: #fff;
background-color: #52897b;
border-color: #e2e2e2;
}
/* Post Navigation */
.next-previous-post{
}
.next-previous-post a{
color: #000;
font-weight: 400;
}
.next-previous-post a:hover{
color: #52897b;
}
.next-previous-post .nav-previous i{
font-size: 25px;
float: left;
margin-right: 8px;
}
.next-previous-post .nav-next i{
font-size: 25px;
float: right;
margin-left: 8px;
}
/* === Asides === */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
display: none;
}
/* === Profile === */
.user-profile{
}
.user-profile .author-avater img{
border-radius: 50%;
margin: 0 auto 10px;
border: 1px dotted #e2e2e2;
padding: 6px;
}
.user-profile .profile-heading{
overflow: hidden;
}
p.story{
margin-bottom: 4px;
font-style: italic;
}
.user-profile .profile-heading a{
color: #000;
font-size: 18px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 600;
letter-spacing: .40px;
margin-bottom: 5px;
}
.user-profile .profile-heading a:hover{
color: #52897b;
}
.user-profile ul.author-social-profile{
margin: 15px 0 0 0;
padding: 0;
list-style: none;
overflow: hidden;
}
.user-profile ul.author-social-profile li{
display: inline-block;
}
.user-profile ul.author-social-profile li a{
border: 1px dotted #bbbbbb;
font-size: 14px;
width: 30px;
height: 30px;
display: inline-block;
text-align: center;
line-height: 28px;
border-radius: 50%;
color: #bbbbbb;
margin: 0 2px;
}
.user-profile ul.author-social-profile li a:hover{
color: #fff;
background-color: #52897b;
}
.user-profile .author-description{
margin-top: 12px;
}
/* === Comments === */
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
display: block;
width: 100%;
height: 43px;
border: 1px solid #f2f2f2;
background: #fff;
margin-bottom: 20px;
padding: 0 15px;
color: #888888;
border-radius: 0;
}
#respond input:focus[type="text"],
#respond input:focus[type="email"],
#respond input:focus[type="url"],
#respond textarea:focus {
outline: none;
border-color: #52897b;
}
#respond textarea {
display: block;
width: 100%;
height: 180px;
border: 1px solid #f2f2f2;
margin-bottom: 30px;
resize: none;
padding: 10px 15px;
background: #fff;
border-radius: 0;
}
#respond .form-submit{
font-size: 12px;
}
#respond .logged-in-as{
margin-left: 15px;
}
#respond #reply-title{
color: #343434;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
font-family: 'Source Sans Pro', sans-serif;
margin-bottom: 20px;
margin-top: 0;
}
#comments .common-title.comments-title{
text-transform: uppercase;
margin-bottom: 26px;
color: #343434;
font-size: 16px;
font-weight: 400;
font-family: 'Source Sans Pro', sans-serif;
}
#comments ul.comment-list{
margin: 0;
padding: 0;
list-style: none;
}
#comments ul.comment-list .media{
border-bottom: 1px dotted #e2e2e2;
padding-bottom: 6px;
}
#comments ul.comment-list ul{
list-style: none;
padding-left: 30px;
}
#comments .comment-reply{
float: right;
}
#comments .comment-reply a{
color: #2d2d2d;
border: 1px dotted #e2e2e2;
padding: 3px 16px;
display: inline-block;
font-size: 12px;
}
#comments .comment-reply a:hover{
color: #fff;
background-color: #52897b;
border-color: #e2e2e2;
}
#comments .comment-author{
margin-top: 0;
margin-bottom: 5px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
font-size: 18px;
letter-spacing: .30px;
}
#comments .comment-author a,
#respond .logged-in-as a{
color: #000;
font-weight: 700;
}
#comments .comment-author a:hover,
#respond .logged-in-as a:hover{
color: #52897b;
}
#comments .comment-date{
color: #9e9e9e;
font-size: 12px;
}
#comments .comment-content{
margin-top: 10px;
}
#comments .comment-content p{
margin-bottom: 10px;
}
#comments .comment-body{
margin-bottom: 15px;
}
#comments .comment-avartar img{
border-radius: 50%;
border: 1px dotted #e2e2e2;
padding: 4px;
}
.media .pull-left {
padding-right: 20px;
}
.list .media .pull-left{
padding-right: 0;
}
.bypostauthor {
display: block;
}
/* --- Captions --- */
.wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin: 0 auto;
}
.wp-caption-text {
text-align: center;
}
.wp-caption .wp-caption-text {
background: none repeat scroll 0 0 #f1f1f1;
font-size: 14px;
margin-bottom: 15px;
padding: 2px 10px;
}
/* --- Galleries --- */
.gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
padding: 2px;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
padding: 2px;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
padding: 2px;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
padding: 1px;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
padding: 1px;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
padding: 1px;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
padding: 1px;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
padding: 1px;
}
.gallery-caption {
display: block;
}
/* --- Gallery Slider --- */
#blog-gallery-slider.carousel{
overflow: hidden;
}
#blog-gallery-slider .carousel-control.left,
#blog-gallery-slider .carousel-control.right{
top: 50%;
left: -30px;
margin-top: -17px;
text-shadow: none;
transition: all .3s linear;
background-color: #52897b;
display: block;
width: 30px;
height: 34px;
text-align: center;
color: #fff;
font-size: 15px;
line-height: 34px;
opacity: 0.7;
background-image: none;
}
#blog-gallery-slider .carousel-control.left:hover,
#blog-gallery-slider .carousel-control.right:hover{
opacity: 1;
}
#blog-gallery-slider .carousel-control.right{
left: auto;
right: -30px;
}
#blog-gallery-slider.carousel:hover .carousel-control.left{
left: 0px;
}
#blog-gallery-slider.carousel:hover .carousel-control.right{
right: 0px;
}
#blog-gallery-slider .carousel-control .glyphicon-chevron-left,
#blog-gallery-slider .carousel-control .glyphicon-chevron-right{
line-height: 80px;
top: 0;
left: 10px;
}
/* --- Link Post --- */
.format-link .entry-link a{
text-align: center;
display: block;
padding: 50px 0;
color: #fff;
position: relative;
}
.post-link-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: .8;
background-color: #000;
}
.post-link-overlay:before{
position: absolute;
top: 15px;
right: 15px;
bottom: 15px;
left: 15px;
content: '';
opacity: 0.5;
border: 1px solid #fff;
transition: all .3s linear;
}
.thumbnails:hover .post-link-overlay:before{
opacity: 1;
}
/* --- Quote --- */
.entry-qoute blockquote{
padding: 50px;
color: #fff;
position: relative;
font-size: 16px;
border-left: 0;
letter-spacing: .20px;
}
/* === Widgets === */
.widget {
margin: 0 0 40px;
background-color: #fff;
border: 1px dotted #e2e2e2;
padding-left: 28px;
padding-right: 28px;
padding-bottom: 28px;
padding-top: 28px;
}
.widget-title{
color: #444444;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
font-family: 'Source Sans Pro', sans-serif;
text-align: center;
border-bottom: 1px dotted #e2e2e2;
margin: -13px -28px 20px;
padding: 0 28px 15px 28px;
}
.widget input[type=text], .widget input[type=email]{
padding: 10px 13px;
}
.widget .mc4wp-form form{
position: relative;
}
.widget .mc4wp-form input[type=email]{
padding: 11px 13px;
border-radius: 0;
border: 1px solid #eee;
text-transform: uppercase;
font-size: 12px;
width: 82%;
}
.widget .mc4wp-form.form input[type=submit]{
font-family: FontAwesome;
position: absolute;
top: 0;
right: 0;
border: 0;
background-color: #52897b;
padding: 12px 13px;
color: #fff;
width: 16%;
}
.widget .mc4wp-form{
margin: 0;
}
.widget ul{
margin: 0;
padding: 0;
list-style: none;
}
.widget ul ul, .widget ul.children{
padding-left: 15px;
border-top: 1px solid #e5e5e5;
margin-top: 12px;
}
.widget li {
border-bottom: 1px solid #e5e5e5;
margin-bottom: 0;
padding: 12px 0;
position: relative;
}
.widget .menu{
float: none;
}
.widget .menu li {
display: inherit;
margin-right: 0;
}
.widget .menu li a{
line-height: 23px;
}
.widget li:last-child {
border-bottom: 0;padding-bottom: 0
}
.widget li a {
font-size: 14px;
color: #666;
}
.widget li a:hover{
color: #52897b;
}
.widget select {
width: 100%;
border: 1px solid #ddd;
padding: 6px 8px;
}
/* Search */
#searchform{
position: relative;
}
#searchform input#s{
padding: 7px 13px;
border-radius: 0;
border: 1px solid #eee;
text-transform: uppercase;
font-size: 12px;
width: 82%;
}
#searchform input#s:focus{
border: 1px solid #e2e2e2;
outline: none;
}
#searchform button.submit{
font-family: FontAwesome;
position: absolute;
top: 0;
right: 0;
border: 0;
background-color: #52897b;
padding: 8px 13px;
color: #fff;
width: 16%;
}
/* Tags */
.tagcloud a {
display: inline-block;
padding: 4px 10px;
margin: 0 5px 8px 0;
border: 1px dotted #e2e2e2;
color: #555;
cursor: pointer;
font-size: 12px !important;
font-weight: 400;
text-transform: uppercase;
}
.tagcloud a:hover{
text-decoration: none;
background-color: #52897b;
color: #fff;
border-color: #e2e2e2;
}
/* Latest Posts*/
.widget .latest-posts .entry-title a{
color: #fff;
}
.widget .latest-posts .entry-title a:hover{
text-decoration: underline;
}
.widget .latest-posts .entry-title {
font-size: 18px;
font-family: 'Source Sans Pro', sans-serif;
line-height: 25px;
margin-top: 4px;
margin-bottom: 0;
font-weight: 400;
text-transform: uppercase;
}
.latest-posts .media,
.latest-posts .media .media{
position: relative;
margin-top: 0;
overflow: hidden;
padding-bottom: 10px;
padding-top: 20px;
}
.latest-posts .media:first-child {
padding-top: 0;
}
.latest-posts .media:last-child {
padding-bottom: 0;
border-bottom: 0px solid;
}
.latest-posts .entry-meta a{
color: #fff;
font-size: 12px;
text-transform: uppercase;
text-decoration: underline;
}
.latest-posts .media-body {
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
padding: 30px 15px 15px 15px;
background-image: -webkit-linear-gradient(top,transparent 0%,rgba(0,0,0,0.9) 100%);
background-image: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,0.9) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e5000000', GradientType=0);
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
}
.latest-post-thumb img{
width: 100%;
}
.latest-post-thumb img:hover{
opacity: 0.85;
}
/* pinterest */
#st-pinterest-widget-container .st-pinterest img{ width: 100%; height: auto; }
#st-pinterest-widget-container .st-pinterest .col-sm-4{ padding-left: 4px; padding-right: 4px; margin-bottom: 8px; max-height: 90px; overflow: hidden;}
#st-pinterest-widget-container .st-pinterest .row{ margin-right: -4px; margin-left: -4px; margin-bottom: -8px; }
/* Abou me */
.about-widget img{
border-radius: 50%;
border: 1px dotted #e2e2e2;
padding: 6px;
margin: 0 auto;
}
.about-me-title{
text-transform: uppercase;
color: #444444;
font-size: 16px;
font-weight: 400;
font-family: 'Source Sans Pro', sans-serif;
letter-spacing: 1px;
margin-top: 23px;
}
.about-me-content{
margin-top: 12px;
color: #444444;
}
.about-me-content a:hover{
color: #2d2d2d;
}
.widget .social-link{
margin-top: 18px;
}
.widget .social-link a{
color: #777777;
font-size: 14px;
margin: 0 8px;
}
.widget .social-link a:hover{
color: #52897b;
}
/* === Contact === */
#contact-form .your-name input, #contact-form .your-email input, #contact-form .your-subject input{
display: block;
width: 100%;
height: 43px;
background: #fff;
margin-bottom: 20px;
padding: 0 15px;
}
#contact-form .your-message textarea{
display: block;
width: 100%;
background: #fff;
margin-bottom: 20px;
padding: 10px 15px;
}
#contact-form .submit-button{
font-size: 12px;
}
/* === Footer === */
/* Instafee Carousel */
.instafeed-carousel{
margin-top: 30px;
}
.instafeed-title{
color: #343434;
font-size: 20px;
font-weight: 400;
text-transform: uppercase;
margin-bottom: 30px;
}
.instafeed-carousel .item a img:hover{
opacity: .85;
}
#instafeed .owl-controls .owl-buttons div {
color: #FFF;
display: inline-block;
zoom: 1;
margin: 0px;
padding: 9px 12px;
font-size: 14px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
background-color: #52897b;
opacity: 0.7;
}
#instafeed .owl-controls .owl-buttons div:hover{
opacity: 1;
}
#instafeed{
position: relative;
overflow: hidden;
}
#instafeed .owl-controls{
margin-top: 0;
}
#instafeed .owl-controls .owl-buttons .owl-next{
position: absolute;
right: -38px;
top: 50%;
margin-top: -21px;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
}
#instafeed .owl-controls .owl-buttons .owl-prev{
position: absolute;
left: -38px;
top: 50%;
margin-top: -21px;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
}
#instafeed:hover .owl-controls .owl-buttons .owl-prev{
left: 0;
}
#instafeed:hover .owl-controls .owl-buttons .owl-next{
right: 0;
}
/* Footer Social */
.footer-social{
background-color: #52897b;
padding: 0;
margin: 0;
overflow: hidden;
text-transform: uppercase;
}
.footer-social a{
color: #fff;
font-size: 12px;
font-weight: 400;
font-family: 'Crimson Text', serif;
background-color: transparent;
display: inline-block;
text-align: center;
width: 16.7%;
margin: 0 -2px;
letter-spacing: 2px;
line-height: 40px;
}
.footer-social a:hover{
color: #fff;
}
.footer-social a.facebook:hover{
background-color: #37589b;
}
.footer-social a.twitter:hover{
background-color: #00bff3;
}
.footer-social a.google-plus:hover{
background-color: #f4615e;
}
.footer-social a.pinterest:hover{
background-color: #C92228;
}
.footer-social a.instagram:hover{
background-color: #3f729b;
}
.footer-social a.bloglovin:hover{
background-color: #30373b;
}
.footer-social a span{
margin-left: 5px;
}
/* Footer copy right */
.footer-copy-right{
background-color: #fff;
padding-top: 20px;
padding-bottom: 20px;
}
.copy-right-text{
color: #444444;
font-family: 'Crimson Text', serif;
font-weight: 400;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
}
.copy-right-text p{
margin: 0;
}
.copy-right-text a{
color: #444444;
}
.copy-right-text a:hover{
color: #52897b;
}
/* Scroll to top */
.scroll-up a{
color: #444444;
font-family: 'Crimson Text', serif;
font-weight: 400;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
}
.scroll-up a:hover,
.scroll-up a:active {
color: #52897b;
} | public/client/css/style.css | @import url(https://fonts.googleapis.com/css?family=Crimson+Text:400,600,700|Source+Sans+Pro:400,600,700);
body {
background-color: #fafafa;
color: #444444;
font-family: 'Crimson Text', serif;
font-weight: 400;
font-size: 16px;
line-height: 26px;
text-rendering:optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
}
a:active,
a:focus { outline: none !important; }
a {
text-decoration: none !important;
color: #52897b;
}
a:hover, a:focus {
color: #000;
}
a, a:hover, .btn, .btn:hover, input.form-control:focus, textarea.form-control:focus {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
}
p{
height: 200px;
overflow: hidden;
color: #333333;
}
a img,
iframe { border: none !important; }
h1,
h2,
h3,
h4,
h5,
h6 {
color: #333333;
font-family: 'Open Sans', sans-serif;
margin-bottom: 30px;
}
.media-left{
float: left;
}
/* === Preloader === */
#st-preloader {
background: #FFF;
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 9999;
}
#pre-status,
.preload-placeholder {
background-image: url(../images/preloader.gif);
background-position: center;
background-repeat: no-repeat;
height: 50px;
left: 50%;
margin: -25px 0 0 -25px;
position: absolute;
top: 50%;
width: 50px;
}
.preload-placeholder {
background: none;
left: 0;
margin: 0;
text-align: center;
top: 65%;
}
/* === Forms === */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
border: 1px dotted;
border-color: #e2e2e2;
padding: 6px 22px;
text-transform: uppercase;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
background-color: transparent;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
border-color: #e2e2e2;
background-color: #52897b;
color: #fff;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
border-color: #52897b;
outline: none;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
color: #666;
border: 1px solid #ccc;
border-radius: 0;
padding: 5px 10px
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
border: 1px solid #52897b;
outline: none;
}
textarea {
padding-left: 3px;
width: 100%;
}
/* === Header / Menu === */
.main-logo{
margin-bottom: 50px;
margin-top: 50px;
}
#header{
background-color: #fff;
box-shadow: 0px 1px 5px rgba(214, 214, 214, 0.7);
}
#navigation-wrapper ul.top-menu,
#navigation-wrapper .top-menu ul{
padding: 0;
margin: 0;
}
#navigation-wrapper .top-menu li {
display: inline-block;
margin-right: 20px;
margin-left: 20px;
position: relative;
}
#navigation-wrapper .top-menu li a {
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
line-height: 50px;
letter-spacing: 2px;
color: #5d5d5d;
font-family: 'Crimson Text', serif;
display: block;
-o-transition: .3s;
-ms-transition: .3s;
-moz-transition: .3s;
-webkit-transition: .3s;
}
#navigation-wrapper .top-menu li.current-menu-item a, #navigation-wrapper .top-menu li.current_page_item a, #navigation-wrapper .top-menu li a:hover {
color: #52897b;
}
/*** DROPDOWN ***/
#navigation-wrapper .top-menu .sub-menu,
#navigation-wrapper .top-menu .children {
background-color: #fff;
display: none;
padding: 0;
position: absolute;
margin-top:0;
left: -20px;
z-index: 99999;
border: 1px dotted #e8e8e8;
}
#navigation-wrapper ul.top-menu ul a,
#navigation-wrapper .top-menu ul ul li a {
color: #5d5d5d;
margin: 0;
padding: 8px 20px;
min-width: 200px;
line-height: 20px;
-o-transition:.25s;
-ms-transition:.25s;
-moz-transition:.25s;
-webkit-transition:.25s;
transition:.25s;
}
#navigation-wrapper ul.top-menu ul li,
#navigation-wrapper .top-menu ul ul li {
padding-right: 0;
margin-right: 0;
margin-left: 0;
text-align: left;
}
#navigation-wrapper ul.top-menu ul a:hover,
#navigation-wrapper .top-menu ul ul a:hover {
background: #f5f5f5;
color: #52897b;
}
#navigation-wrapper ul.top-menu li:hover > ul,
#navigation-wrapper .top-menu ul li:hover > ul {
display: block;
}
#navigation-wrapper .top-menu .sub-menu ul,
#navigation-wrapper .top-menu .children ul {
left: 100%;
top: 0;
}
#navigation-wrapper .top-menu .sub-menu li{
border-bottom: 1px solid #eee;
}
#navigation-wrapper .top-menu .sub-menu li:last-child{
border-bottom: 0px solid #eee;
}
/* Mobile */
.slicknav_nav ul.top-menu{
margin: 0;
padding: 0;
text-align: left;
}
.slicknav_nav ul.top-menu a:hover, .slicknav_nav ul.top-menu a:active{
background: #f5f5f5;
color: #52897b;
}
.slicknav_nav .top-menu a{
color: #5d5d5d;
}
/* --- Menus ---*/
.main-navigation {
clear: both;
display: block;
float: left;
width: 100%;
}
.main-navigation ul {
display: none;
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation li {
float: left;
position: relative;
}
.main-navigation a {
display: block;
text-decoration: none;
}
.main-navigation ul ul {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
float: left;
position: absolute;
top: 1.5em;
left: -999em;
z-index: 99999;
}
.main-navigation ul ul ul {
left: -999em;
top: 0;
}
.main-navigation ul ul a {
width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a,
.main-navigation li.focus > a {
}
.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}
.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
left: 100%;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}
/* --- Small menu --- */
.menu-toggle,
.main-navigation.toggled ul {
display: block;
}
@media screen and (min-width: 37.5em) {
.menu-toggle {
display: none;
}
.main-navigation ul {
display: block;
}
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
float: right;
text-align: right;
width: 50%;
}
/* === Slider === */
#featured-slider{
margin-bottom: 50px;
}
#featured-slider .item{
position: relative;
}
#featured-slider .item img{
width: 100%;
}
#featured-slider .item:hover img{
opacity: .85;
}
.slider-item-cap{
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
padding: 30px 15px 15px 15px;
background-image: -webkit-linear-gradient(top,transparent 0%,rgba(0,0,0,0.9) 100%);
background-image: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,0.9) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e5000000', GradientType=0);
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
}
.slider-item-cap .s-cat{
margin-bottom: 5px;
letter-spacing: 1px;
}
.slider-item-cap .s-cat a{
color: #fff;
font-size: 12px;
text-transform: uppercase;
border-bottom: 1px solid #fff;
}
.slider-item-cap a.s-title{
color: #fff;
font-size: 18px;
line-height: 20px;
}
.slider-item-cap a.s-title:hover{
text-decoration: underline;
}
#featured-slider .owl-controls{
margin: 0;
text-align: right;
position: absolute;
bottom: 24px;
right: 10px;
}
#featured-slider .owl-controls .owl-page span{
background: #fff;
margin: 5px 3px;
width: 10px;
height: 10px;
}
/* === Content === */
/* --- Posts and pages --- */
.sticky {
display: block;
}
.hentry {
margin: 0 0 40px;
background-color: #fff;
border: 1px dotted #e2e2e2;
}
.grid2 .hentry, .list .hentry{
margin: 0 0 30px;
}
.grid2 .hentry{
height: 500px;
}
.entry-content >p{
height: 50px;
overflow: hidden;
}
.byline,
.updated:not(.published) {
display: none;
}
.single .byline,
.group-blog .byline {
display: inline;
}
.page-content,
.entry-content,
.entry-summary {
margin: 15px 0 0;
}
.grid2 .entry-content {
margin: 10px 0 0;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
}
.page .entry-header{
margin-bottom: 15px;
}
.page .entry-header h1.entry-title {
color: #5d5d5d;
font-size: 24px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
text-transform: uppercase;
line-height: 32px;
margin: 0;
}
/* --- 404 Page --- */
.error-404{
padding-top: 100px;
padding-bottom: 150px;
}
.error-404 h1{
font-size: 150px;
margin-bottom: 30px;
}
/* --- Search Page --- */
.search-header{
margin-bottom: 40px;
}
.search-header .search-title{
font-size: 18px;
color: #444;
background-color: #fff;
border: 1px dotted #e2e2e2;
padding: 14px 28px;
letter-spacing: 1px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
text-align: center;
}
/* post */
header.entry-header{
margin-bottom: 2px;
}
.post-content-area{
padding-left: 35px;
padding-right: 35px;
padding-bottom: 35px;
padding-top: 13px;
}
.list .post-content-area {
padding-left: 14px;
padding-right: 14px;
padding-bottom: 14px;
padding-top: 13px;
}
.grid2 .post-content-area {
padding-left: 30px;
padding-right: 30px;
padding-bottom: 25px;
padding-top: 4px;
}
.post-content-area .entry-header .post-cat{
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
text-decoration: underline;
line-height: 23px;
margin-bottom: 10px;
letter-spacing: 1px;
}
.grid2 .post-content-area .entry-header .post-cat {
line-height: 16px;
margin-bottom: 8px;
}
.entry-content address, .comment-content address{
background: none repeat scroll 0 0 #f1f1f1;
border-left: 5px solid #ddd;
padding: 10px 10px 10px 20px;
}
.entry-content table, .comment-content table{
border-right: 1px solid #ddd;
border-top: 1px solid #ddd;
margin-bottom: 20px;
}
.entry-content table tr, .comment-content table tr{
border-bottom: 1px solid #ddd;
}
.entry-content table tr th, .comment-content table tr th{
background: none repeat scroll 0 0 #eee;
}
.entry-content table tbody tr th{
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.entry-content table tr th, table tr td, .comment-content table tr td{
border-left: 1px solid #ddd;
padding: 10px;
}
.entry-content ul li, .comment-content ul li {
margin-bottom: 12px;
list-style: square;
}
.entry-content ol li, .comment-content ol li {
margin-bottom: 12px;
list-style: decimal;
}
.post-content-area .entry-meta{
margin-top: 14px;
}
.grid2 .post-content-area .entry-meta{
margin-top: 4px;
}
.entry-meta{
color: #30373b;
font-weight: 400;
font-size: 13px;
font-family: 'Crimson Text', serif;
letter-spacing: 2px;
}
.entry-meta a{
color: #30373b;
}
.entry-meta a:hover{
color: #52897b;
}
.entry-meta .posted-on,
.entry-meta .post-comment{
color: #888888;
font-size: 10px;
text-transform: uppercase;
}
.entry-meta .posted-on{
margin: 0 -150px;
}
.grid2 .entry-meta .posted-on,
.grid2 .entry-meta .post-comment{
margin: 0 4px;
}
.entry-meta .post-comment a{
color: #888888;
font-size: 10px;
text-transform: uppercase;
}
.list-inline li {
padding-right: 4px;
padding-left: 4px;
}
.entry-tags a{
margin: 0 0 0 3px;
color: #52897b;
}
.entry-tags a:hover{
color: #30373b;
}
a.more-link{
border: 1px dotted #e2e2e2;
background-color: #fff;
padding: 6px 15px;
display: block;
text-transform: uppercase;
text-align: center;
font-size: 12px;
color: #52897b;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
margin: 0 auto;
width: 180px;
letter-spacing: 2px;
margin-top: 30px;
}
a.more-link:hover{
background-color: #52897b;
border-color: #fff;
color: #fff;
}
article header.entry-header a.entry-title, .single article header.entry-header .entry-title{
color: #5d5d5d;
font-size: 20px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
text-transform: uppercase;
line-height: 32px;
}
article header.entry-header a:hover.entry-title {
color: #52897b;
}
article header.entry-header a.entry-single-title{
color: #30373b;
font-size: 24px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
text-transform: uppercase;
line-height: 28px;
}
article header.entry-header a:hover.entry-single-title {
color: #52897b;
}
article .thumbnails{
margin: 14px;
}
.list article .thumbnails{
width: 320px;
height: auto;
}
.list-large:first-child article .thumbnails{
width: auto;
}
.list-large:first-child article .entry-header{
text-align: center;
}
.list-large:first-child .entry-meta{
text-align: center;
margin-top: 10px;
}
.list .post-content-area .entry-meta {
margin-top: 0px;
}
.list-large:first-child .post-content-area {
padding-left: 35px;
padding-right: 35px;
padding-bottom: 30px;
padding-top: 13px;
}
.grid2-large .grid2:first-child{
width: 100%;
}
.single-post article .thumbnails{
margin-top: 16px;
}
.single-content-footer, .next-previous-post, .user-profile, .related-posts, #comments{
margin: 0 0 40px;
background-color: #fff;
border: 1px dotted #e2e2e2;
padding: 35px;
}
.featured-post{
position: absolute;
top: 15px;
right: 45px;
color: #fff;
background-color: #52897b;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
font-size: 20px;
z-index: 1;
}
.list .featured-post{
right: 0;
left: 45px;
}
.featured-post:after{
content: '';
width: 0;
height: 0;
border: 20px solid transparent;
border-bottom: 0;
border-top: 20px solid #52897b;
margin-top: 0px;
display: block;
}
/* Share Button */
.post-social-button{
display: inline-block;
margin-bottom: auto;
}
.post-social-button ul{
margin: 10px;
padding: 0;
list-style: none;
}
.post-social-button ul li{
float: left;
}
.post-social-button ul li a{
border: 1px dotted #bbbbbb;
font-size: 14px;
width: 30px;
height: 30px;
display: inline-block;
text-align: center;
line-height: 28px;
border-radius: 50%;
color: #bbbbbb;
margin: 0 5px;
}
.share-this{
border: 1px dotted #e2e2e2;
background-color: #fff;
padding: 6px 15px;
display: block;
text-transform: uppercase;
text-align: center;
font-size: 12px;
color: #52897b;
margin: 0 auto;
width: 130px;
letter-spacing: 2px;
margin-bottom: 24px;
margin-top: 19px;
}
.post-social-button ul li a:hover.facebook{
background-color: #37589b;
color: #fff;
}
.post-social-button ul li a:hover.twitter{
background-color: #00bff3;
color: #fff;
}
.post-social-button ul li a:hover.g-puls{
background-color: #f4615e;
color: #fff;
}
.post-social-button ul li a:hover.linkedin{
background-color: #075a94;
color: #fff;
}
.post-social-button ul li a:hover.pinterest{
background-color: #C92228;
color: #fff;
}
.post-social-button ul li a:hover.envelope{
background-color: #30373b;
color: #fff;
}
/* Related Posts */
.related-posts{
}
.related-posts h3.common-title{
color: #343434;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
font-family: 'Source Sans Pro', sans-serif;
margin-top: 0;
margin-bottom: 26px;
}
.single-related-posts{
position: relative;
}
.single-related-posts:hover img{
opacity: 0.85;
}
.single-related-posts header{
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
padding: 20px 10px 10px 10px;
background-image: -webkit-linear-gradient(top,transparent 0%,rgba(0,0,0,0.9) 100%);
background-image: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,0.9) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e5000000', GradientType=0);
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
}
.single-related-posts header h3{
margin: 0;
font-family: 'Source Sans Pro', sans-serif;
font-size: 16px;
font-weight: 400;
letter-spacing: .50px;
}
.single-related-posts header h3 a{
color: #fff;
}
.single-related-posts header h3 a:hover{
text-decoration: underline;
}
.single-related-posts header p{
margin-bottom: -187px;
margin-top: 0px;
font-size: 12px;
color: #BABABA;
}
/* Posts Navigation */
.next-previous-posts{
margin-top: 40px;
margin-bottom: 40px;
}
.next-previous-posts .previous-post h2{
margin: 0;
}
.next-previous-posts .previous-post h2 a{
font-size: 12px;
font-weight: 400;
background-color: #fff;
color: #52897b;
border: 1px dotted #e2e2e2;
padding: 12px 14px;
display: inline-block;
text-transform: uppercase;
letter-spacing: 1px;
width: 148px;
text-align: center;
}
.next-previous-posts .previous-post h2 a:hover{
background-color: #52897b;
border-color: #e2e2e2;
color: #fff;
}
.next-previous-posts .previous-post h2 a i{
margin-left: 5px;
}
.next-previous-posts .next-post h2{
margin: 0;
}
.next-previous-posts .next-post h2 a{
font-size: 12px;
font-weight: 400;
color: #52897b;
background-color: #fff;
border: 1px dotted #e2e2e2;
padding: 12px 14px;
display: inline-block;
text-transform: uppercase;
letter-spacing: 1px;
width: 148px;
text-align: center;
}
.next-previous-posts .next-post h2 a:hover{
background-color: #52897b;
border-color: #e2e2e2;
color: #fff;
}
.next-previous-posts .next-post h2 a i{
margin-right: 5px;
}
/* Pagination */
.pagination{
margin-bottom: 20px;
}
.pagination li a,
.pagination li span{
color: #777;
border: 1px dotted #e2e2e2;
padding: 8px 15px;
display: inline-block;
}
.pagination li:last-child a,
.pagination li:last-child span,
.pagination li:first-child a,
.pagination li:first-child span{
border-radius: 0;
}
.pagination li a:focus,
.pagination li a:hover,
.pagination li span:focus,
.pagination li span.current,
.pagination li span:hover {
color: #fff;
background-color: #52897b;
border-color: #e2e2e2;
}
/* Post Navigation */
.next-previous-post{
}
.next-previous-post a{
color: #000;
font-weight: 400;
}
.next-previous-post a:hover{
color: #52897b;
}
.next-previous-post .nav-previous i{
font-size: 25px;
float: left;
margin-right: 8px;
}
.next-previous-post .nav-next i{
font-size: 25px;
float: right;
margin-left: 8px;
}
/* === Asides === */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
display: none;
}
/* === Profile === */
.user-profile{
}
.user-profile .author-avater img{
border-radius: 50%;
margin: 0 auto 10px;
border: 1px dotted #e2e2e2;
padding: 6px;
}
.user-profile .profile-heading{
overflow: hidden;
}
p.story{
margin-bottom: 4px;
font-style: italic;
}
.user-profile .profile-heading a{
color: #000;
font-size: 18px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 600;
letter-spacing: .40px;
margin-bottom: 5px;
}
.user-profile .profile-heading a:hover{
color: #52897b;
}
.user-profile ul.author-social-profile{
margin: 15px 0 0 0;
padding: 0;
list-style: none;
overflow: hidden;
}
.user-profile ul.author-social-profile li{
display: inline-block;
}
.user-profile ul.author-social-profile li a{
border: 1px dotted #bbbbbb;
font-size: 14px;
width: 30px;
height: 30px;
display: inline-block;
text-align: center;
line-height: 28px;
border-radius: 50%;
color: #bbbbbb;
margin: 0 2px;
}
.user-profile ul.author-social-profile li a:hover{
color: #fff;
background-color: #52897b;
}
.user-profile .author-description{
margin-top: 12px;
}
/* === Comments === */
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
display: block;
width: 100%;
height: 43px;
border: 1px solid #f2f2f2;
background: #fff;
margin-bottom: 20px;
padding: 0 15px;
color: #888888;
border-radius: 0;
}
#respond input:focus[type="text"],
#respond input:focus[type="email"],
#respond input:focus[type="url"],
#respond textarea:focus {
outline: none;
border-color: #52897b;
}
#respond textarea {
display: block;
width: 100%;
height: 180px;
border: 1px solid #f2f2f2;
margin-bottom: 30px;
resize: none;
padding: 10px 15px;
background: #fff;
border-radius: 0;
}
#respond .form-submit{
font-size: 12px;
}
#respond .logged-in-as{
margin-left: 15px;
}
#respond #reply-title{
color: #343434;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
font-family: 'Source Sans Pro', sans-serif;
margin-bottom: 20px;
margin-top: 0;
}
#comments .common-title.comments-title{
text-transform: uppercase;
margin-bottom: 26px;
color: #343434;
font-size: 16px;
font-weight: 400;
font-family: 'Source Sans Pro', sans-serif;
}
#comments ul.comment-list{
margin: 0;
padding: 0;
list-style: none;
}
#comments ul.comment-list .media{
border-bottom: 1px dotted #e2e2e2;
padding-bottom: 6px;
}
#comments ul.comment-list ul{
list-style: none;
padding-left: 30px;
}
#comments .comment-reply{
float: right;
}
#comments .comment-reply a{
color: #2d2d2d;
border: 1px dotted #e2e2e2;
padding: 3px 16px;
display: inline-block;
font-size: 12px;
}
#comments .comment-reply a:hover{
color: #fff;
background-color: #52897b;
border-color: #e2e2e2;
}
#comments .comment-author{
margin-top: 0;
margin-bottom: 5px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
font-size: 18px;
letter-spacing: .30px;
}
#comments .comment-author a,
#respond .logged-in-as a{
color: #000;
font-weight: 700;
}
#comments .comment-author a:hover,
#respond .logged-in-as a:hover{
color: #52897b;
}
#comments .comment-date{
color: #9e9e9e;
font-size: 12px;
}
#comments .comment-content{
margin-top: 10px;
}
#comments .comment-content p{
margin-bottom: 10px;
}
#comments .comment-body{
margin-bottom: 15px;
}
#comments .comment-avartar img{
border-radius: 50%;
border: 1px dotted #e2e2e2;
padding: 4px;
}
.media .pull-left {
padding-right: 20px;
}
.list .media .pull-left{
padding-right: 0;
}
.bypostauthor {
display: block;
}
/* --- Captions --- */
.wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin: 0 auto;
}
.wp-caption-text {
text-align: center;
}
.wp-caption .wp-caption-text {
background: none repeat scroll 0 0 #f1f1f1;
font-size: 14px;
margin-bottom: 15px;
padding: 2px 10px;
}
/* --- Galleries --- */
.gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
padding: 2px;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
padding: 2px;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
padding: 2px;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
padding: 1px;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
padding: 1px;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
padding: 1px;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
padding: 1px;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
padding: 1px;
}
.gallery-caption {
display: block;
}
/* --- Gallery Slider --- */
#blog-gallery-slider.carousel{
overflow: hidden;
}
#blog-gallery-slider .carousel-control.left,
#blog-gallery-slider .carousel-control.right{
top: 50%;
left: -30px;
margin-top: -17px;
text-shadow: none;
transition: all .3s linear;
background-color: #52897b;
display: block;
width: 30px;
height: 34px;
text-align: center;
color: #fff;
font-size: 15px;
line-height: 34px;
opacity: 0.7;
background-image: none;
}
#blog-gallery-slider .carousel-control.left:hover,
#blog-gallery-slider .carousel-control.right:hover{
opacity: 1;
}
#blog-gallery-slider .carousel-control.right{
left: auto;
right: -30px;
}
#blog-gallery-slider.carousel:hover .carousel-control.left{
left: 0px;
}
#blog-gallery-slider.carousel:hover .carousel-control.right{
right: 0px;
}
#blog-gallery-slider .carousel-control .glyphicon-chevron-left,
#blog-gallery-slider .carousel-control .glyphicon-chevron-right{
line-height: 80px;
top: 0;
left: 10px;
}
/* --- Link Post --- */
.format-link .entry-link a{
text-align: center;
display: block;
padding: 50px 0;
color: #fff;
position: relative;
}
.post-link-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: .8;
background-color: #000;
}
.post-link-overlay:before{
position: absolute;
top: 15px;
right: 15px;
bottom: 15px;
left: 15px;
content: '';
opacity: 0.5;
border: 1px solid #fff;
transition: all .3s linear;
}
.thumbnails:hover .post-link-overlay:before{
opacity: 1;
}
/* --- Quote --- */
.entry-qoute blockquote{
padding: 50px;
color: #fff;
position: relative;
font-size: 16px;
border-left: 0;
letter-spacing: .20px;
}
/* === Widgets === */
.widget {
margin: 0 0 40px;
background-color: #fff;
border: 1px dotted #e2e2e2;
padding-left: 28px;
padding-right: 28px;
padding-bottom: 28px;
padding-top: 28px;
}
.widget-title{
color: #444444;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
font-family: 'Source Sans Pro', sans-serif;
text-align: center;
border-bottom: 1px dotted #e2e2e2;
margin: -13px -28px 20px;
padding: 0 28px 15px 28px;
}
.widget input[type=text], .widget input[type=email]{
padding: 10px 13px;
}
.widget .mc4wp-form form{
position: relative;
}
.widget .mc4wp-form input[type=email]{
padding: 11px 13px;
border-radius: 0;
border: 1px solid #eee;
text-transform: uppercase;
font-size: 12px;
width: 82%;
}
.widget .mc4wp-form.form input[type=submit]{
font-family: FontAwesome;
position: absolute;
top: 0;
right: 0;
border: 0;
background-color: #52897b;
padding: 12px 13px;
color: #fff;
width: 16%;
}
.widget .mc4wp-form{
margin: 0;
}
.widget ul{
margin: 0;
padding: 0;
list-style: none;
}
.widget ul ul, .widget ul.children{
padding-left: 15px;
border-top: 1px solid #e5e5e5;
margin-top: 12px;
}
.widget li {
border-bottom: 1px solid #e5e5e5;
margin-bottom: 0;
padding: 12px 0;
position: relative;
}
.widget .menu{
float: none;
}
.widget .menu li {
display: inherit;
margin-right: 0;
}
.widget .menu li a{
line-height: 23px;
}
.widget li:last-child {
border-bottom: 0;padding-bottom: 0
}
.widget li a {
font-size: 14px;
color: #666;
}
.widget li a:hover{
color: #52897b;
}
.widget select {
width: 100%;
border: 1px solid #ddd;
padding: 6px 8px;
}
/* Search */
#searchform{
position: relative;
}
#searchform input#s{
padding: 7px 13px;
border-radius: 0;
border: 1px solid #eee;
text-transform: uppercase;
font-size: 12px;
width: 82%;
}
#searchform input#s:focus{
border: 1px solid #e2e2e2;
outline: none;
}
#searchform button.submit{
font-family: FontAwesome;
position: absolute;
top: 0;
right: 0;
border: 0;
background-color: #52897b;
padding: 8px 13px;
color: #fff;
width: 16%;
}
/* Tags */
.tagcloud a {
display: inline-block;
padding: 4px 10px;
margin: 0 5px 8px 0;
border: 1px dotted #e2e2e2;
color: #555;
cursor: pointer;
font-size: 12px !important;
font-weight: 400;
text-transform: uppercase;
}
.tagcloud a:hover{
text-decoration: none;
background-color: #52897b;
color: #fff;
border-color: #e2e2e2;
}
/* Latest Posts*/
.widget .latest-posts .entry-title a{
color: #fff;
}
.widget .latest-posts .entry-title a:hover{
text-decoration: underline;
}
.widget .latest-posts .entry-title {
font-size: 18px;
font-family: 'Source Sans Pro', sans-serif;
line-height: 25px;
margin-top: 4px;
margin-bottom: 0;
font-weight: 400;
text-transform: uppercase;
}
.latest-posts .media,
.latest-posts .media .media{
position: relative;
margin-top: 0;
overflow: hidden;
padding-bottom: 10px;
padding-top: 20px;
}
.latest-posts .media:first-child {
padding-top: 0;
}
.latest-posts .media:last-child {
padding-bottom: 0;
border-bottom: 0px solid;
}
.latest-posts .entry-meta a{
color: #fff;
font-size: 12px;
text-transform: uppercase;
text-decoration: underline;
}
.latest-posts .media-body {
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
padding: 30px 15px 15px 15px;
background-image: -webkit-linear-gradient(top,transparent 0%,rgba(0,0,0,0.9) 100%);
background-image: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,0.9) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#e5000000', GradientType=0);
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
}
.latest-post-thumb img{
width: 100%;
}
.latest-post-thumb img:hover{
opacity: 0.85;
}
/* pinterest */
#st-pinterest-widget-container .st-pinterest img{ width: 100%; height: auto; }
#st-pinterest-widget-container .st-pinterest .col-sm-4{ padding-left: 4px; padding-right: 4px; margin-bottom: 8px; max-height: 90px; overflow: hidden;}
#st-pinterest-widget-container .st-pinterest .row{ margin-right: -4px; margin-left: -4px; margin-bottom: -8px; }
/* Abou me */
.about-widget img{
border-radius: 50%;
border: 1px dotted #e2e2e2;
padding: 6px;
margin: 0 auto;
}
.about-me-title{
text-transform: uppercase;
color: #444444;
font-size: 16px;
font-weight: 400;
font-family: 'Source Sans Pro', sans-serif;
letter-spacing: 1px;
margin-top: 23px;
}
.about-me-content{
margin-top: 12px;
color: #444444;
}
.about-me-content a:hover{
color: #2d2d2d;
}
.widget .social-link{
margin-top: 18px;
}
.widget .social-link a{
color: #777777;
font-size: 14px;
margin: 0 8px;
}
.widget .social-link a:hover{
color: #52897b;
}
/* === Contact === */
#contact-form .your-name input, #contact-form .your-email input, #contact-form .your-subject input{
display: block;
width: 100%;
height: 43px;
background: #fff;
margin-bottom: 20px;
padding: 0 15px;
}
#contact-form .your-message textarea{
display: block;
width: 100%;
background: #fff;
margin-bottom: 20px;
padding: 10px 15px;
}
#contact-form .submit-button{
font-size: 12px;
}
/* === Footer === */
/* Instafee Carousel */
.instafeed-carousel{
margin-top: 30px;
}
.instafeed-title{
color: #343434;
font-size: 20px;
font-weight: 400;
text-transform: uppercase;
margin-bottom: 30px;
}
.instafeed-carousel .item a img:hover{
opacity: .85;
}
#instafeed .owl-controls .owl-buttons div {
color: #FFF;
display: inline-block;
zoom: 1;
margin: 0px;
padding: 9px 12px;
font-size: 14px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
background-color: #52897b;
opacity: 0.7;
}
#instafeed .owl-controls .owl-buttons div:hover{
opacity: 1;
}
#instafeed{
position: relative;
overflow: hidden;
}
#instafeed .owl-controls{
margin-top: 0;
}
#instafeed .owl-controls .owl-buttons .owl-next{
position: absolute;
right: -38px;
top: 50%;
margin-top: -21px;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
}
#instafeed .owl-controls .owl-buttons .owl-prev{
position: absolute;
left: -38px;
top: 50%;
margin-top: -21px;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
}
#instafeed:hover .owl-controls .owl-buttons .owl-prev{
left: 0;
}
#instafeed:hover .owl-controls .owl-buttons .owl-next{
right: 0;
}
/* Footer Social */
.footer-social{
background-color: #52897b;
padding: 0;
margin: 0;
overflow: hidden;
text-transform: uppercase;
}
.footer-social a{
color: #fff;
font-size: 12px;
font-weight: 400;
font-family: 'Crimson Text', serif;
background-color: transparent;
display: inline-block;
text-align: center;
width: 16.7%;
margin: 0 -2px;
letter-spacing: 2px;
line-height: 40px;
}
.footer-social a:hover{
color: #fff;
}
.footer-social a.facebook:hover{
background-color: #37589b;
}
.footer-social a.twitter:hover{
background-color: #00bff3;
}
.footer-social a.google-plus:hover{
background-color: #f4615e;
}
.footer-social a.pinterest:hover{
background-color: #C92228;
}
.footer-social a.instagram:hover{
background-color: #3f729b;
}
.footer-social a.bloglovin:hover{
background-color: #30373b;
}
.footer-social a span{
margin-left: 5px;
}
/* Footer copy right */
.footer-copy-right{
background-color: #fff;
padding-top: 20px;
padding-bottom: 20px;
}
.copy-right-text{
color: #444444;
font-family: 'Crimson Text', serif;
font-weight: 400;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
}
.copy-right-text p{
margin: 0;
}
.copy-right-text a{
color: #444444;
}
.copy-right-text a:hover{
color: #52897b;
}
/* Scroll to top */
.scroll-up a{
color: #444444;
font-family: 'Crimson Text', serif;
font-weight: 400;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
}
.scroll-up a:hover,
.scroll-up a:active {
color: #52897b;
} | 0.404625 | 0.080141 |
.blklzy {
background-color: rgb(29, 30, 31) !important;
max-width: 100%;
}
.brands img {
max-width: 200px;
padding-bottom: 6rem;
}
.float-right {
float: right;
}
.brand-title {
font-size: 1.7rem;
color: #fff;
padding-top: 3rem;
padding-bottom: 3rem;
}
.p-b-0 {
padding-bottom: 0 !important;
}
.parallax-img {
position: relative;
background: url("./assets/parallax.webp") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 400px;
}
.footer-bg {
background-color: #100c08 !important ;
}
.center-text {
color: #fff;
font-size: 1.5rem;
padding-top: 10rem !important;
text-align: right;
}
.center-container {
padding-top: 18rem !important;
}
.center-text a {
padding-top: 2rem;
color: #fff !important;
text-decoration: underline !important;
}
.middle-text {
padding: 2rem !important;
text-align: left;
}
.middle-left-vector {
max-width: 150px !important;
}
.sticker {
transform: rotate(-10deg) !important;
width: 400px !important;
position: absolute !important;
left: -150px !important;
top: -250px !important;
}
.sticker2 {
position: absolute;
transform: rotate(-90deg);
margin-top: -170px !important;
margin-left: 170px !important;
}
.b-letter {
max-width: 220px;
padding-left: 1.9rem !important;
}
.l-letter {
padding-top: 17rem !important;
max-width: 220px;
padding-left: 1rem !important;
}
.k-letter {
padding-top: 8rem !important;
max-width: 220px !important;
}
.l2-letter {
padding-top: 8rem !important;
max-width: 220px !important;
}
.z-letter {
padding-top: 25rem !important;
max-width: 220px !important;
}
.y-letter {
padding-top: 15rem !important;
max-width: 220px !important;
}
.pic {
position: absolute;
right: 0;
}
.clms {
position: relative;
}
#fade-up span {
margin-top: 25px;
font-size: 21px;
text-align: center;
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 2s; /* Firefox < 16 */
-ms-animation: fadein 2s; /* Internet Explorer */
-o-animation: fadein 2s; /* Opera < 12.1 */
animation: fadein 2s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fade-in {
animation: fadeIn ease 1s;
-webkit-animation: fadeIn ease 1s;
-moz-animation: fadeIn ease 1s;
-o-animation: fadeIn ease 1s;
-ms-animation: fadeIn ease 1s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fade-in-l {
animation: fadeIn ease 5s;
-webkit-animation: fadeIn ease 5s;
-moz-animation: fadeIn ease 5s;
-o-animation: fadeIn ease 5s;
-ms-animation: fadeIn ease 5s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fade-in-k {
animation: fadeIn ease 8s;
-webkit-animation: fadeIn ease 8s;
-moz-animation: fadeIn ease 8s;
-o-animation: fadeIn ease 8s;
-ms-animation: fadeIn ease 8s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fade-in-down {
animation: fadeIn ease 8s;
-webkit-animation: fadeIn ease 8s;
-moz-animation: fadeIn ease 8s;
-o-animation: fadeIn ease 8s;
-ms-animation: fadeIn ease 8s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animate-bottom {
position: relative;
animation: animatebottom 3s;
}
@keyframes animatebottom {
from {
bottom: -300px;
opacity: 0;
}
to {
bottom: 0;
opacity: 1;
}
}
@media only screen and (max-width: 768.67px) {
img.float-right {
display: none;
}
.l-letter,
.b-letter,
.l2-letter,
.k-letter,
.y-letter {
display: none;
}
.center-container {
padding: 25px;
}
} | src/templates/blk.css | .blklzy {
background-color: rgb(29, 30, 31) !important;
max-width: 100%;
}
.brands img {
max-width: 200px;
padding-bottom: 6rem;
}
.float-right {
float: right;
}
.brand-title {
font-size: 1.7rem;
color: #fff;
padding-top: 3rem;
padding-bottom: 3rem;
}
.p-b-0 {
padding-bottom: 0 !important;
}
.parallax-img {
position: relative;
background: url("./assets/parallax.webp") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 400px;
}
.footer-bg {
background-color: #100c08 !important ;
}
.center-text {
color: #fff;
font-size: 1.5rem;
padding-top: 10rem !important;
text-align: right;
}
.center-container {
padding-top: 18rem !important;
}
.center-text a {
padding-top: 2rem;
color: #fff !important;
text-decoration: underline !important;
}
.middle-text {
padding: 2rem !important;
text-align: left;
}
.middle-left-vector {
max-width: 150px !important;
}
.sticker {
transform: rotate(-10deg) !important;
width: 400px !important;
position: absolute !important;
left: -150px !important;
top: -250px !important;
}
.sticker2 {
position: absolute;
transform: rotate(-90deg);
margin-top: -170px !important;
margin-left: 170px !important;
}
.b-letter {
max-width: 220px;
padding-left: 1.9rem !important;
}
.l-letter {
padding-top: 17rem !important;
max-width: 220px;
padding-left: 1rem !important;
}
.k-letter {
padding-top: 8rem !important;
max-width: 220px !important;
}
.l2-letter {
padding-top: 8rem !important;
max-width: 220px !important;
}
.z-letter {
padding-top: 25rem !important;
max-width: 220px !important;
}
.y-letter {
padding-top: 15rem !important;
max-width: 220px !important;
}
.pic {
position: absolute;
right: 0;
}
.clms {
position: relative;
}
#fade-up span {
margin-top: 25px;
font-size: 21px;
text-align: center;
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 2s; /* Firefox < 16 */
-ms-animation: fadein 2s; /* Internet Explorer */
-o-animation: fadein 2s; /* Opera < 12.1 */
animation: fadein 2s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fade-in {
animation: fadeIn ease 1s;
-webkit-animation: fadeIn ease 1s;
-moz-animation: fadeIn ease 1s;
-o-animation: fadeIn ease 1s;
-ms-animation: fadeIn ease 1s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fade-in-l {
animation: fadeIn ease 5s;
-webkit-animation: fadeIn ease 5s;
-moz-animation: fadeIn ease 5s;
-o-animation: fadeIn ease 5s;
-ms-animation: fadeIn ease 5s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fade-in-k {
animation: fadeIn ease 8s;
-webkit-animation: fadeIn ease 8s;
-moz-animation: fadeIn ease 8s;
-o-animation: fadeIn ease 8s;
-ms-animation: fadeIn ease 8s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fade-in-down {
animation: fadeIn ease 8s;
-webkit-animation: fadeIn ease 8s;
-moz-animation: fadeIn ease 8s;
-o-animation: fadeIn ease 8s;
-ms-animation: fadeIn ease 8s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animate-bottom {
position: relative;
animation: animatebottom 3s;
}
@keyframes animatebottom {
from {
bottom: -300px;
opacity: 0;
}
to {
bottom: 0;
opacity: 1;
}
}
@media only screen and (max-width: 768.67px) {
img.float-right {
display: none;
}
.l-letter,
.b-letter,
.l2-letter,
.k-letter,
.y-letter {
display: none;
}
.center-container {
padding: 25px;
}
} | 0.429669 | 0.058185 |
@font-face {
font-family: 'CormorantGaramond';
src: url('/font/CormorantGaramond-Light.ttf');
font-display: swap;
}
body, input, textarea {
color:#000;
font-family: 'CormorantGaramond',helvetica, san-serif;
padding: 0;
margin: 0;
background-color: #F0F0F0;
}a {
text-decoration:underline;
}img {
width: 100%;
height:auto;
}#header {
padding-top: 24px;
}#nav {
width: 60%;
float: right;
margin-top:15px;
padding-left:20px;
}.clear {
clear:both;
}#title, a {
text-decoration: none;
color: #000;
}#wrapper {
max-width: 1280px;
margin: auto;
padding-left: 5px;
padding-right: 5px;
}.row {
flex-direction: row;
border-top: solid 1px #DADADA;
display: flex;
flex-wrap: wrap;
padding: 0 4px;
}.column {
flex: 20%;
max-width: 25%;
padding: 0 4px;
}.column img {
width:100%;
margin-top: 8px;
vertical-align: middle;
}#footer {
text-align: right;
margin-top: 45px;
margin-bottom: 75px;
border-top: solid 1px #DADADA;
padding: 10px;
}.fleft {
float: left;
}.fright {
float: right;
}#title {
width: 25%;
float: left;
font-size: 45px;
padding-left: 6px;
}ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
color: #000;
}li {
float: right;
}li a, .dropbtn {
display: inline-block;
color: #000;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 18px;
}li a:hover, .dropdown:hover .dropbtn {
background-color: #DCDCDC;
}li.dropdown {
display: inline-block;
}.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 4;
}.dropdown-content a {
color: black;
padding: 9px 16px;
text-decoration: none;
display: block;
text-align: left;
}.dropdown-content a:hover {
background-color: #f1f1f1;
}.dropdown:hover .dropdown-content {
display: block;
}.home {
border-top: solid 1px #DADADA;
padding-top: 8px;
margin-bottom: -41px;
}.hovclass:hover {
background-color: #fff;
opacity: 0.7;
}#details {
border-top: solid 1px #DADADA;
padding:4px;
padding-bottom: 15px;
padding-top: 15px;
text-align: left;
font-size: 18px;
}#active {
background-color: #E4E4E4;
}
@media only screen and (max-width: 800px) {
#nav {
width: 100%;
}
#title {
width: 100%;
padding-left: 15px;
}
} | style.css | @font-face {
font-family: 'CormorantGaramond';
src: url('/font/CormorantGaramond-Light.ttf');
font-display: swap;
}
body, input, textarea {
color:#000;
font-family: 'CormorantGaramond',helvetica, san-serif;
padding: 0;
margin: 0;
background-color: #F0F0F0;
}a {
text-decoration:underline;
}img {
width: 100%;
height:auto;
}#header {
padding-top: 24px;
}#nav {
width: 60%;
float: right;
margin-top:15px;
padding-left:20px;
}.clear {
clear:both;
}#title, a {
text-decoration: none;
color: #000;
}#wrapper {
max-width: 1280px;
margin: auto;
padding-left: 5px;
padding-right: 5px;
}.row {
flex-direction: row;
border-top: solid 1px #DADADA;
display: flex;
flex-wrap: wrap;
padding: 0 4px;
}.column {
flex: 20%;
max-width: 25%;
padding: 0 4px;
}.column img {
width:100%;
margin-top: 8px;
vertical-align: middle;
}#footer {
text-align: right;
margin-top: 45px;
margin-bottom: 75px;
border-top: solid 1px #DADADA;
padding: 10px;
}.fleft {
float: left;
}.fright {
float: right;
}#title {
width: 25%;
float: left;
font-size: 45px;
padding-left: 6px;
}ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
color: #000;
}li {
float: right;
}li a, .dropbtn {
display: inline-block;
color: #000;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 18px;
}li a:hover, .dropdown:hover .dropbtn {
background-color: #DCDCDC;
}li.dropdown {
display: inline-block;
}.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 4;
}.dropdown-content a {
color: black;
padding: 9px 16px;
text-decoration: none;
display: block;
text-align: left;
}.dropdown-content a:hover {
background-color: #f1f1f1;
}.dropdown:hover .dropdown-content {
display: block;
}.home {
border-top: solid 1px #DADADA;
padding-top: 8px;
margin-bottom: -41px;
}.hovclass:hover {
background-color: #fff;
opacity: 0.7;
}#details {
border-top: solid 1px #DADADA;
padding:4px;
padding-bottom: 15px;
padding-top: 15px;
text-align: left;
font-size: 18px;
}#active {
background-color: #E4E4E4;
}
@media only screen and (max-width: 800px) {
#nav {
width: 100%;
}
#title {
width: 100%;
padding-left: 15px;
}
} | 0.260295 | 0.072538 |
body{
background-color: hsl(0,0%,22.5%);
color: hsl(210,8%,82.5%);
max-width: 1264px;
margin: 0 auto;
}
address {
color: hsl(210,8%,82.5%);
}
a{
color: rgb(187, 197, 255) !important;
text-shadow: none !important;
}
.sm-dox {
background-image: none;
background-color: hsl(0,0%,17.5%);
}
#titlearea {
border-bottom: none;
}
.sm-dox a, .sm-dox a:focus, .sm-dox a:active, .sm-dox a.highlighted{
background-image:none;
background-color: hsl(0,0%,17.5%);
}
.sm-dox a:hover{
background-image:none;
background-color: rgb(68, 68, 68);
}
div.header {
background-image: none ;
background-color: hsl(0,0%,22.5%);
border-bottom:none
}
.sm-dox ul{
background: hsl(0,0%,17.5%);
border: 2px solid rgb(85, 85, 85);
}
.sm-dox ul a, .sm-dox ul a:focus, .sm-dox ul a:active{
background-color: hsl(0,0%,17.5%);
}
.sm-dox ul a:hover{
background-image: none ;
background-color: rgb(68, 68, 68);
}
#MSearchBox{
background: rgb(255, 255, 255);
}
#MSearchSelectWindow{
background: hsl(0,0%,17.5%);
border: 2px solid rgb(85, 85, 85);
}
hr{
border-top: 2px solid rgb(85, 85, 85);
}
.directory tr.even {
background-color: hsl(0,0%,17.5%);
}
div.directory{
border-top: 2px solid rgb(85, 85, 85);
border-bottom: 2px solid rgb(85, 85, 85);
}
h2.groupheader{
color: hsl(210,8%,82.5%);
border-bottom: 2px solid rgb(85, 85, 85);
}
.mdescLeft, .mdescRight, .memItemLeft, .memItemRight, .memTemplItemLeft, .memTemplItemRight, .memTemplParams{
background-color: hsl(0,0%,17.5%);
}
.mdescLeft, .mdescRight{
color: rgb(173, 173, 173);
}
.memTemplParams, .memtemplate{
color: #6998f7;
}
.memSeparator{
border-bottom: 2px solid rgb(85, 85, 85);
}
.memtitle{
border-top: 2px solid rgb(85, 85, 85);
border-left: 2px solid rgb(85, 85, 85);
border-right: 2px solid rgb(85, 85, 85);
background-color: hsl(0,0%,17.5%);
background-image: none;
}
.memproto, dl.reflist dt
{
text-shadow: none;
border: 2px solid rgb(85, 85, 85);
background-color: hsl(0,0%,17.5%);
background-image: none;
color: hsl(210,8%,82.5%);
}
.memdoc, dl.reflist dd{
background-color: rgb(56, 56, 56);
border: 2px solid rgb(85, 85, 85);
border-top: none;
}
.paramname{
color: rgb(87, 196, 190);
}
.navpath ul{
background-image: none;
border: 2px solid rgb(85, 85, 85);
background-color: hsl(0,0%,17.5%);
}
div.fragment{
background-color: hsl(0,2%,11%);
border: 1px solid rgb(48, 48, 48);
padding: 10px;
}
span.comment{
color: rgb(87, 166, 74);
}
span.keyword, span.keywordtype, span.keywordflow{
color: rgb(86, 156, 214);
}
a.code.hl_class{
color: rgb(78, 201, 176) !important;
}
a.code.hl_function{
color: rgb(220, 220, 170) !important;
}
span.stringliteral{
color: rgb(214, 157, 133);
}
span.preprocessor{
color: rgb(155, 155, 155);
}
span.mlabel{
background-color: #3f537a;
}
.classindex dl.odd{
background-color: hsl(0,0%,17.5%);
} | doc/tools/my_style.css | body{
background-color: hsl(0,0%,22.5%);
color: hsl(210,8%,82.5%);
max-width: 1264px;
margin: 0 auto;
}
address {
color: hsl(210,8%,82.5%);
}
a{
color: rgb(187, 197, 255) !important;
text-shadow: none !important;
}
.sm-dox {
background-image: none;
background-color: hsl(0,0%,17.5%);
}
#titlearea {
border-bottom: none;
}
.sm-dox a, .sm-dox a:focus, .sm-dox a:active, .sm-dox a.highlighted{
background-image:none;
background-color: hsl(0,0%,17.5%);
}
.sm-dox a:hover{
background-image:none;
background-color: rgb(68, 68, 68);
}
div.header {
background-image: none ;
background-color: hsl(0,0%,22.5%);
border-bottom:none
}
.sm-dox ul{
background: hsl(0,0%,17.5%);
border: 2px solid rgb(85, 85, 85);
}
.sm-dox ul a, .sm-dox ul a:focus, .sm-dox ul a:active{
background-color: hsl(0,0%,17.5%);
}
.sm-dox ul a:hover{
background-image: none ;
background-color: rgb(68, 68, 68);
}
#MSearchBox{
background: rgb(255, 255, 255);
}
#MSearchSelectWindow{
background: hsl(0,0%,17.5%);
border: 2px solid rgb(85, 85, 85);
}
hr{
border-top: 2px solid rgb(85, 85, 85);
}
.directory tr.even {
background-color: hsl(0,0%,17.5%);
}
div.directory{
border-top: 2px solid rgb(85, 85, 85);
border-bottom: 2px solid rgb(85, 85, 85);
}
h2.groupheader{
color: hsl(210,8%,82.5%);
border-bottom: 2px solid rgb(85, 85, 85);
}
.mdescLeft, .mdescRight, .memItemLeft, .memItemRight, .memTemplItemLeft, .memTemplItemRight, .memTemplParams{
background-color: hsl(0,0%,17.5%);
}
.mdescLeft, .mdescRight{
color: rgb(173, 173, 173);
}
.memTemplParams, .memtemplate{
color: #6998f7;
}
.memSeparator{
border-bottom: 2px solid rgb(85, 85, 85);
}
.memtitle{
border-top: 2px solid rgb(85, 85, 85);
border-left: 2px solid rgb(85, 85, 85);
border-right: 2px solid rgb(85, 85, 85);
background-color: hsl(0,0%,17.5%);
background-image: none;
}
.memproto, dl.reflist dt
{
text-shadow: none;
border: 2px solid rgb(85, 85, 85);
background-color: hsl(0,0%,17.5%);
background-image: none;
color: hsl(210,8%,82.5%);
}
.memdoc, dl.reflist dd{
background-color: rgb(56, 56, 56);
border: 2px solid rgb(85, 85, 85);
border-top: none;
}
.paramname{
color: rgb(87, 196, 190);
}
.navpath ul{
background-image: none;
border: 2px solid rgb(85, 85, 85);
background-color: hsl(0,0%,17.5%);
}
div.fragment{
background-color: hsl(0,2%,11%);
border: 1px solid rgb(48, 48, 48);
padding: 10px;
}
span.comment{
color: rgb(87, 166, 74);
}
span.keyword, span.keywordtype, span.keywordflow{
color: rgb(86, 156, 214);
}
a.code.hl_class{
color: rgb(78, 201, 176) !important;
}
a.code.hl_function{
color: rgb(220, 220, 170) !important;
}
span.stringliteral{
color: rgb(214, 157, 133);
}
span.preprocessor{
color: rgb(155, 155, 155);
}
span.mlabel{
background-color: #3f537a;
}
.classindex dl.odd{
background-color: hsl(0,0%,17.5%);
} | 0.427038 | 0.102934 |
@-moz-document regexp("http(s)?://m(\\d)?.hkgolden\..*"){
::-moz-selection{background:#333!important;color:#ccc!important;font-weight:bold!important;}
br{display:block!important;margin:0px 0!important;line-height:0px!important;content:""!important;}
/*misc*/::-moz-selection{background:#080!important;color:#ccc!important;}
/*misc*/br{display:block!important;margin:0px 0!important;line-height:0px!important;content:""!important;}
/*misc*/*{text-shadow:none!important;text-decoration:none!important;border:none!important;box-shadow:none!important;}
/*misc*/*{font-family:"Open Sans","Microsoft JhengHei UI","Microsoft JhengHei","Microsoft Mhei","Segoe UI",Arial,sans-serif;font-weight:100!important;}
/*resize*/html{width:900px!important;margin:auto!important;}
/*BG*/html,body{background:#020!important;color:#ccc!important;}
/**/label{color:#0a0!important;}
/*link*/a:link{color:#c60!important;}
/*link*//*a:visited{color:#888!important;}*/
/*link*/a:hover{color:#f60!important;}
/*title*/h,h1,h2,h3,h4,h5,h6{background:transparent!important;color:#a11!important;line-height:100%!important;padding:5px!important;font-size:30px!important;}
/*input*/input,textarea,select{background:#333!important;color:#bbb!important;}
@media screen and (max-width:910px){
aaa{width:98%!important;}
}
/**/aaaaa{
position:static!important;}
/**/.ui-content,.ui-footer.ui-bar-inherit,.ui-body-a,html .ui-panel-page-container-a,.ui-body-inherit{
background:transparent!important;}
/**/#editorColor-button,.replyBox,.ui-page-theme-a .ui-bar-inherit{
background:#000!important;}
/**/.postPaging,#toolBtns{
background:#333!important;}
/**/html,body,.ui-page,#editorColor>option:nth-child(2n){
background:#020!important;}
/**/#channels,#editorColor>option:nth-child(2n+1){
background:#030!important;}
/**/[id*="opup"]>div{
background:#040!important;}
/**/aaa{
background:#050!important;}
/**/.pageno{
background:#060!important;}
/**/#channelHeader{
background:#063!important;}
/**/aaa{
background:#c60!important;}
/**/blockquote{
color:#888!important;}
/**/html,body,div,a{
color:#bbb!important;}
/**/a:link{
color:#c60!important;}
/**/a:hover{
color:#f60!important;}
.ui-content{overflow-x:visible!important;}
.ui-mobile-viewport,
.ui-content>.topic{max-width:700px!important;}
.ui-header,
.ui-footer{max-width:900px!important;}
/*channel*/#channels{top:0px!important;}
/*channel*/#channels li:nth-child(6n+5),#channels li:nth-child(6n){background:#020!important;}
/*channel*/#channels li>a{padding:5px 0px!important;font-size:28px!important;line-height:100%!important;}
/*channel*/#channels li>a:focus {color:#f60!important;}
/*channel*/#channels li>a.active {color:#fff!important;}
/*channel*//*#channels li>a:visited{color:#888!important;}*/
/*channel*/#toolBtns .ui-btn{background:#020!important;}
/*channel*/#toolBtns .ui-btn:hover{background:#050!important;}
/*top menu*/#searchPanel{background:#333!important;padding:0px 10px!important;}
/*top menu*/#searchPanel .ui-input-search{margin:0px!important;}
/*thread BG*/.ui-content>[class*="topic"]{background:#040!important;}
/*thread BG*/.ui-content>[class*="topic"]:nth-child(2n){background:#030!important;}
/*thread BG*/.ui-content>[class*="topic"]:hover{background:#000!important;}
/*thread*/ .topic{padding:5px 5px 0px 25px!important;}
/*thread ad*/.topic~div[align="center"]{display:none!important;}
/*thread ad*/.topic~div[style="text-align: center"]{display:none!important;}
/*thread title*/.topic .topic-content .topic-title{color:#b60!important;font-size:26px!important;line-height:100%!important;margin:0px 0px 0px 0px!important;}
/*thread page*/ .topic .topic-content .topic-page{right:-30px!important;}
/*thread info*/ .topic .topic-name-time{margin:0px!important;}
/*thread info*/ .topic .topic-time{color:#0c0!important;}
/*thread info*/ .topic .topic-name{font-size:20px!important;line-height:100%!important;}
/*thread info*/ .topic .topic-count .topic-count-comment{color:#0af!important;}
/*thread info*/ .topic .topic-count .topic-count-like{color:#0c0!important;}
/*thread info*/ .topic .topic-count .topic-count-like.highlight{color:#ff0!important;font-weight:800!important;}
/*thread info*/ .topic .topic-count .topic-count-dislike{color:#a11!important;}
/*thread info*/ .topic .topic-count .topic-count-dislike.highlight{color:#f11!important;font-weight:800!important;}
/*thread info*/ .topic .topic-col{left:4px!important;}
/*thread desktop*/.to-desktop{background:#333!important;padding:5px 0px!important;font-size:30px!important;line-height:100%!important;}
/*bottom page*/#topic_paging>div:not(.ui-block-b):hover{background:#063!important;}
/*bottom page*/#topic_paging a.ui-btn{margin:0px!important;padding:5px 4px!important;font-size:34px!important;line-height:100%!important;}
/*bottom page*/#topic_paging>.ui-block-b>a{background:#050!important;margin-top:5px!important;font-size:30px!important;line-height:100%!important;}
/*bottom page*/#topic_paging>.ui-block-b>a:hover{background:#063!important;}
/*post BG*/#viewpage>.post{background:#040!important;margin-bottom:15px!important;padding:5px 10px 5px 40px!important;}
/*post ad*/#viewpage>div[style="text-align: center; padding: 0;"]{display:none!important;}
/*post ad*/#viewpage>div[style="padding: 0;"]{display:none!important;}
/*post ad*/.post~div[style="text-align: center"]{display:none!important;}
/*post author*/.post-content1 .topic-name-time{font-size:20px!important;line-height:100%!important;margin-bottom:0px!important;}
/*post author*/.post-content1 .topic-name{margin:0px!important;}
/*post author*/.post-content1 .name_male{color:#0af!important;}
/*post author img*/.post-col{top:5px!important;left:-25px!important;}
/*post author img*/.post-col>img{width:60px!important;height:60px!important;}
/*post content*/.post-content2{font-size:28px!important;line-height:120%!important;}
/*post content*/.post-content2 blockquote{font-size:24px!important;line-height:100%!important;margin:0px!important;}
/*post content*/.post-content2>blockquote{padding:5px 0px 0px 20px!important;}
/*post content*/.post-content2>blockquote blockquote{padding:0px 0px 0px 20px!important;margin:0px!important;}
/*pages left*/#pagingPanel{background:#000!important;width:10%!important;}
/*pages left*/#pagingPanel a{font-size:50px!important;line-height:100%!important;margin:0px!important;padding:10px 10px!important;}
/*pages left*/#pagingPanel a:hover{background:#050!important;}
/*pages bottom*/.postPaging>a{margin:0px!important;padding:10px!important;font-size:50px!important;line-height:100%!important;}
/*pages bottom*/.postPaging>a:hover{background:#050!important;}
/*reply*/.replyBox>h3{margin:0px!important;}
/*reply*/.replyBox>textarea{background:#333!important;color:#ccc!important;margin:0px!important;}
/*reply*/textarea.ui-input-text{height:initial!important;}
/*reply*/.replyBox .editorBtn2{background-color:#030!important;}
/*reply*/.replyBox .editorBtn2:hover{background-color:#060!important;}
/*reply*/.ui-input-btn:hover{background:#050!important;opacity:.5!important;}
}
@-moz-document regexp("http(s)?://m\\d\.hkgolden\.com/(topics|search|view|rewind).*"){} | data/usercss/121362.user.css | @-moz-document regexp("http(s)?://m(\\d)?.hkgolden\..*"){
::-moz-selection{background:#333!important;color:#ccc!important;font-weight:bold!important;}
br{display:block!important;margin:0px 0!important;line-height:0px!important;content:""!important;}
/*misc*/::-moz-selection{background:#080!important;color:#ccc!important;}
/*misc*/br{display:block!important;margin:0px 0!important;line-height:0px!important;content:""!important;}
/*misc*/*{text-shadow:none!important;text-decoration:none!important;border:none!important;box-shadow:none!important;}
/*misc*/*{font-family:"Open Sans","Microsoft JhengHei UI","Microsoft JhengHei","Microsoft Mhei","Segoe UI",Arial,sans-serif;font-weight:100!important;}
/*resize*/html{width:900px!important;margin:auto!important;}
/*BG*/html,body{background:#020!important;color:#ccc!important;}
/**/label{color:#0a0!important;}
/*link*/a:link{color:#c60!important;}
/*link*//*a:visited{color:#888!important;}*/
/*link*/a:hover{color:#f60!important;}
/*title*/h,h1,h2,h3,h4,h5,h6{background:transparent!important;color:#a11!important;line-height:100%!important;padding:5px!important;font-size:30px!important;}
/*input*/input,textarea,select{background:#333!important;color:#bbb!important;}
@media screen and (max-width:910px){
aaa{width:98%!important;}
}
/**/aaaaa{
position:static!important;}
/**/.ui-content,.ui-footer.ui-bar-inherit,.ui-body-a,html .ui-panel-page-container-a,.ui-body-inherit{
background:transparent!important;}
/**/#editorColor-button,.replyBox,.ui-page-theme-a .ui-bar-inherit{
background:#000!important;}
/**/.postPaging,#toolBtns{
background:#333!important;}
/**/html,body,.ui-page,#editorColor>option:nth-child(2n){
background:#020!important;}
/**/#channels,#editorColor>option:nth-child(2n+1){
background:#030!important;}
/**/[id*="opup"]>div{
background:#040!important;}
/**/aaa{
background:#050!important;}
/**/.pageno{
background:#060!important;}
/**/#channelHeader{
background:#063!important;}
/**/aaa{
background:#c60!important;}
/**/blockquote{
color:#888!important;}
/**/html,body,div,a{
color:#bbb!important;}
/**/a:link{
color:#c60!important;}
/**/a:hover{
color:#f60!important;}
.ui-content{overflow-x:visible!important;}
.ui-mobile-viewport,
.ui-content>.topic{max-width:700px!important;}
.ui-header,
.ui-footer{max-width:900px!important;}
/*channel*/#channels{top:0px!important;}
/*channel*/#channels li:nth-child(6n+5),#channels li:nth-child(6n){background:#020!important;}
/*channel*/#channels li>a{padding:5px 0px!important;font-size:28px!important;line-height:100%!important;}
/*channel*/#channels li>a:focus {color:#f60!important;}
/*channel*/#channels li>a.active {color:#fff!important;}
/*channel*//*#channels li>a:visited{color:#888!important;}*/
/*channel*/#toolBtns .ui-btn{background:#020!important;}
/*channel*/#toolBtns .ui-btn:hover{background:#050!important;}
/*top menu*/#searchPanel{background:#333!important;padding:0px 10px!important;}
/*top menu*/#searchPanel .ui-input-search{margin:0px!important;}
/*thread BG*/.ui-content>[class*="topic"]{background:#040!important;}
/*thread BG*/.ui-content>[class*="topic"]:nth-child(2n){background:#030!important;}
/*thread BG*/.ui-content>[class*="topic"]:hover{background:#000!important;}
/*thread*/ .topic{padding:5px 5px 0px 25px!important;}
/*thread ad*/.topic~div[align="center"]{display:none!important;}
/*thread ad*/.topic~div[style="text-align: center"]{display:none!important;}
/*thread title*/.topic .topic-content .topic-title{color:#b60!important;font-size:26px!important;line-height:100%!important;margin:0px 0px 0px 0px!important;}
/*thread page*/ .topic .topic-content .topic-page{right:-30px!important;}
/*thread info*/ .topic .topic-name-time{margin:0px!important;}
/*thread info*/ .topic .topic-time{color:#0c0!important;}
/*thread info*/ .topic .topic-name{font-size:20px!important;line-height:100%!important;}
/*thread info*/ .topic .topic-count .topic-count-comment{color:#0af!important;}
/*thread info*/ .topic .topic-count .topic-count-like{color:#0c0!important;}
/*thread info*/ .topic .topic-count .topic-count-like.highlight{color:#ff0!important;font-weight:800!important;}
/*thread info*/ .topic .topic-count .topic-count-dislike{color:#a11!important;}
/*thread info*/ .topic .topic-count .topic-count-dislike.highlight{color:#f11!important;font-weight:800!important;}
/*thread info*/ .topic .topic-col{left:4px!important;}
/*thread desktop*/.to-desktop{background:#333!important;padding:5px 0px!important;font-size:30px!important;line-height:100%!important;}
/*bottom page*/#topic_paging>div:not(.ui-block-b):hover{background:#063!important;}
/*bottom page*/#topic_paging a.ui-btn{margin:0px!important;padding:5px 4px!important;font-size:34px!important;line-height:100%!important;}
/*bottom page*/#topic_paging>.ui-block-b>a{background:#050!important;margin-top:5px!important;font-size:30px!important;line-height:100%!important;}
/*bottom page*/#topic_paging>.ui-block-b>a:hover{background:#063!important;}
/*post BG*/#viewpage>.post{background:#040!important;margin-bottom:15px!important;padding:5px 10px 5px 40px!important;}
/*post ad*/#viewpage>div[style="text-align: center; padding: 0;"]{display:none!important;}
/*post ad*/#viewpage>div[style="padding: 0;"]{display:none!important;}
/*post ad*/.post~div[style="text-align: center"]{display:none!important;}
/*post author*/.post-content1 .topic-name-time{font-size:20px!important;line-height:100%!important;margin-bottom:0px!important;}
/*post author*/.post-content1 .topic-name{margin:0px!important;}
/*post author*/.post-content1 .name_male{color:#0af!important;}
/*post author img*/.post-col{top:5px!important;left:-25px!important;}
/*post author img*/.post-col>img{width:60px!important;height:60px!important;}
/*post content*/.post-content2{font-size:28px!important;line-height:120%!important;}
/*post content*/.post-content2 blockquote{font-size:24px!important;line-height:100%!important;margin:0px!important;}
/*post content*/.post-content2>blockquote{padding:5px 0px 0px 20px!important;}
/*post content*/.post-content2>blockquote blockquote{padding:0px 0px 0px 20px!important;margin:0px!important;}
/*pages left*/#pagingPanel{background:#000!important;width:10%!important;}
/*pages left*/#pagingPanel a{font-size:50px!important;line-height:100%!important;margin:0px!important;padding:10px 10px!important;}
/*pages left*/#pagingPanel a:hover{background:#050!important;}
/*pages bottom*/.postPaging>a{margin:0px!important;padding:10px!important;font-size:50px!important;line-height:100%!important;}
/*pages bottom*/.postPaging>a:hover{background:#050!important;}
/*reply*/.replyBox>h3{margin:0px!important;}
/*reply*/.replyBox>textarea{background:#333!important;color:#ccc!important;margin:0px!important;}
/*reply*/textarea.ui-input-text{height:initial!important;}
/*reply*/.replyBox .editorBtn2{background-color:#030!important;}
/*reply*/.replyBox .editorBtn2:hover{background-color:#060!important;}
/*reply*/.ui-input-btn:hover{background:#050!important;opacity:.5!important;}
}
@-moz-document regexp("http(s)?://m\\d\.hkgolden\.com/(topics|search|view|rewind).*"){} | 0.06777 | 0.028653 |
.main_title {
font-family: 'Quicksand', sans-serif;
font-size: 35px;
color: #59a3c5;
letter-spacing: -2px;
}
body {
margin: 0px;
padding:10px;
background-color: #FFFFFF;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: .7em;
color: #000000;
text-align: center;
}
img {
max-width: 100%;
}
#subnav {
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 11px;
text-align: left;
color: #000000;
line-height: -2;
}
.sub {
margin: 0px;
padding:0px;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 1em;
color: #000000;
}
#header {
position:fixed;
z-index:3;
/*Making sure it sticks to left of window in IE7*/
left:0;
/*Change to reflect height of your header.
Remember to accomadate for padding!*/
height:75px;
background-color: #FFFFFF;
}
#content {
margin-top:100px;;
/*float:left;*/
/*Change to reflect width of your content.
Remember to accomadate for padding!*/
width:50%;
}
.wrap {
float:left;
position:absolute;
bottom:0;
margin:0 auto;
/*replace 900px with your width*/
width:100%;
height: 120px;
background-color: #15587b;
position: fixed;
left: 0;
z-index: 3;
padding: 10px 14px 0px; 14px;
opacity: 0.918;
border-top-style: solid;
border-width:thin;
border-color: #cccccc;
line-height: -.5;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-ms-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}
}
.wrap_header {
position:relative;
/*margin:0 auto;*/
/*replace 900px with your width*/
width:100%;
background-color: #ffffff;
font-size: 1em;
color: #cccccc
}
#header, #footer {
width:50%;
float:left;
}
#footer {
position:fixed;
bottom:0;
z-index:3;
}
hr {
border: 0;
width: 100%;
color: #ccc;
background-color: #ccc;
height: 1px;
}
/*.footer_link A:{font-size: 11px;}
.footer_link A:link {color: #ffffff; font-weight: regular; text-decoration: none;}
.footer_link A:active {color:#ffffff; font-weight: regular; text-decoration: none;}
.footer_link A:visited {color: #ffffff; font-weight: regular; text-decoration: none;}
.footer_link A:hover {color: #ffffff; font-weight: regular; text-decoration: underline; }
A {font-size: 11px;}
A:link {color: #006699; font-weight: regular; text-decoration: none;}
A:active {color:#006699; font-weight: regular; text-decoration: none;}
A:visited {color: #006699; font-weight: regular; text-decoration: none;}
A:hover {color: #006699; font-weight: regular; text-decoration: underline; } */
A.link_class_2. {font-size: 10px;}
A.link_class_2:link {color: #ffffff; font-weight: regular; text-decoration: none;}
A.link_class_2:active {color:#ffffff; font-weight: regular; text-decoration: none;}
A.link_class_2:visited {color: #ffffff; font-weight: regular; text-decoration: none;}
A.link_class_2:hover {color: #ffffff; font-weight: regular; text-decoration: underline; }
#pRole
{
color: #7b9aaa;
font-size: .9em;
}
#pRole {font-size: 10px;}
#pRole a:link {color: #7b9aaa; font-weight: regular; text-decoration: none;}
#pRole a:active {color:#7b9aaa; font-weight: regular; text-decoration: none;}
#pRole a:visited {color: #7b9aaa; font-weight: regular; text-decoration: none;}
#pRole a hover {color: #7b9aaa; font-weight: regular; text-decoration: underline; }
#nav {
width:600;
font: 12px/30px Helvetica, sans-serif;
text-align: center;
float:none;
margin-left: auto;
margin-right: auto;
padding:10px;
text-align:center;
max-width:100%;
}
#nav a {
color: #006699;
text-decoration: none;
-webkit-transition: all 0.5s ease;
}
#nav a:hover {
text-decoration: underline;
}
#navup {
font-size: 1em;
color: #ffffff;
font: 12px Helvetica, sans-serif;
text-align: center;
}
#navup a {
font-size: 1em;
color: #ffffff;
text-align: left;
-webkit-transition: all 0.5s ease;
}
#navup a:hover {
color: #ffffff;
font-size: 1em;
text-align: left;
}
#navtop {
text-align: center;
color: #F1560A;
}
#navtop a {
float: center;
-webkit-transition: all 0.5s ease;
color: #F1560A;
}
#navtop a:hover {
text-decoration: underline;
color: #F1560A;
}
#navfooter {
color: #fff;
text-align: center;
}
#navfooter a {
color: #fff;
float: center;
-webkit-transition: all 0.5s ease;
}
#navfooter a:hover {
text-decoration: underline;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CONTAINER ELEMENTS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#fHeader
{
float:none;
margin-left: auto;
margin-right: auto;
text-align:center;
width:100%;
}
.nav_off
{
margin: 0px;
padding:0px;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 1em;
color: #000000;
}
.nav_off_footer
{
margin: 0px;
padding:0px;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 1em;
color: #4ea7d6;
}
#fFooter
{
float:none;
margin-left: auto;
margin-right: auto;
float:left;
width:100%;
}
#wrapper
{
float:none;
margin-left: auto;
margin-right: auto;
max-width:100%;
width:600px;
}
.pContainer {
margin: 0px 0px 0px 0px;
height:auto;
padding: 1em;
background-color: #ffffff;
float: right;
vertical-align:top;
text-align: left;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: .7.1em;
voice-family: "\"}\"";
voice-family: inherit;
}
.disclaimer {
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 11px;
color: #999;
}
.ptopnavnav {
margin: 0px 0px 0px 0px;
background-color: #ffffff;
vertical-align:top;
text-align: left;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: .9em;
width: 100%;
}
.pfooter {
color: #666666;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: .9em;
voice-family: "\"}\"";
voice-family: inherit;
}
#pback_top {
color: #006699;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 11px;
}
.pBox {
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PROJECT ELEMENTS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.pHeader {
margin: 0px;
padding: 0px;
width: 550px;
}
.pDate {
margin: 0px;
padding: 30px 0px 0px 0px;
float: right;
color: #999999;
text-align: right;
}
.pImage {
margin: 0px;
padding: 10px;
background-color: #d0d0d0;
}
.pContent {
margin: 0px;
padding: 8px;
background-color: #D0D0D0;
color:
/* box model hack */
width: auto;
voice-family: "\"}\"";
voice-family: inherit;
}
.pText {
margin: 0px;
padding: 0px;
text-align: left;
color: #000000;
/* box model hack */
voice-family: "\"}\"";
voice-family: inherit;
width: auto;
}
.pIcon {
margin: 10px 0px 0px 0px;
padding: 0px;
float: left;
width: 0px;
}
/*.pRole {
font-size: 10px;
margin: 10px 0px 0px 0px;
padding: 0px;
color: #7b9aaa;
}*/
.pVideo {
margin: 0px;
padding: 10px;
background-color: #d0d0d0;
}
.description:link {
color: #F1560A;
font-weight: regular;
text-decoration: none;
}
.description:active {
color:#F1560A;
font-weight: regular;
text-decoration: none;
}
.description:visited {
color: #F1560A;
font-weight: regular;
text-decoration: none;
}
.description:hover {
color: #F1560A;
font-weight: regular;
text-decoration: underline;
}
.pLinks {
margin: 10px 0px 0px 0px;
padding: 0px;
float: right;
color: #666666;
/* box model hack */
width: 180px;
voice-family: "\"}\"";
voice-family: inherit;
width: 170px;
}
.dotSpacer {color: #D0D0D0}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
BOLDED NON-LINKED ELEMENTS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.pTitle {
font-size: 10px;
font-weight: bold;
color: #000000;
}
form {font:1em/1 Verdana,Geneva,Kalimati,sans-serif; color:#333;}
fieldset {border:1px solid #999;}
fieldset fieldset {border:none;}
fieldset fieldset legend {font:bold 1em/1 Verdana,Geneva,Kalimati,sans-serif; color:#000;}
legend {font:1.5em/1 "Trebuchet MS",Helvetica,Jamrul,sans-serif; color:#000;}
.textfield input, .file input, .dropdown select, .textarea textarea, div input.innertextfield {font:1em/1 Verdana,Geneva,Kalimati,sans-serif; color:#000; border:1px solid #999; background:#ececec;}
.textfield input:hover, .file input:hover, .dropdown select:hover, .textarea textarea:hover, div input.innertextfield:hover {border-color:orange;}
.textfield input:focus, .file input:focus, .dropdown select:focus, .textarea textarea:focus, div input.innertextfield:hover {border-color:#333;}
.textfield input:active, .file input:active, .dropdown select:active, .textarea textarea:active, div input.innertextfield:active {border-color:#333;}
.textfield input:focus:hover, .file input:focus:hover, .dropdown select:focus:hover, .textarea textarea:focus:hover, div input.innertextfield:focus:hover {border-color:orange;}
.checkbox input, .radio input {border:none; background:transparent;}
button {font:1.2em/1 Verdana,Geneva,Kalimati,sans-serif; border:1px solid #666; background:#666; color:#fff;}
button:hover {border-color:#000; color:orange;}
optgroup {font:bold 1em/1 Verdana,Geneva,Kalimati,sans-serif;}
option {font:1em/1 Verdana,Geneva,Kalimati,sans-serif;}
/* FORM: LAYOUT */
form {}
fieldset {margin-bottom:3em; padding:10px;}
fieldset fieldset {padding:0;}
legend {margin-bottom:1em;}
.textfield, .textarea, .file, .dropdown, .radio, .checkbox, .buttons, fieldset fieldset {margin-bottom:1em;}
.textfield input, .file input, .dropdown select, .textarea textarea, input.innertextfield {padding:2px 5px;}
.textfield input, .file input, .dropdown select, .textarea textarea {width:100px;}
textarea {height:6em;}
.textfield input, .file input, .dropdown select, .textarea textarea {display:block; margin:0.1em 0 0 0;}
.checkbox input, .radio input {margin-right:5px;}
div input.innertextfield {display:inline; margin-right:0;}
.buttons {}
button {padding:4px;}
optgroup {}
option {padding:1px 3px;}
#logo-link
{
width:146px;
height:22px;
text-decoration:none;
display:block;
background-image:url(http://www.nicholasdangelo.com/wp-content/themes/wpfolio/images/connect_146.png);
background-position:0px 0px;
}
#logo-link:hover,#logo-link:active { background-position:0px 46px; };
{
{
.pContainer_2 {
margin: 0px 0px 0px 0px;
max-width: 100%,
padding: 10px;
background-color: #ffffff;
float: right;
vertical-align:top;
text-align: left;
font-size: 11px;
voice-family: "\"}\"";
voice-family: inherit;
}
.pBox_2 {
max-width: 150%
margin: 10px;
padding: 10px;
background-color: #D0D0D0;
}
#navup a:hover {
color: #ffffff;
font-size: .9em;
text-align: left;
} | layout_new_current.css | .main_title {
font-family: 'Quicksand', sans-serif;
font-size: 35px;
color: #59a3c5;
letter-spacing: -2px;
}
body {
margin: 0px;
padding:10px;
background-color: #FFFFFF;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: .7em;
color: #000000;
text-align: center;
}
img {
max-width: 100%;
}
#subnav {
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 11px;
text-align: left;
color: #000000;
line-height: -2;
}
.sub {
margin: 0px;
padding:0px;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 1em;
color: #000000;
}
#header {
position:fixed;
z-index:3;
/*Making sure it sticks to left of window in IE7*/
left:0;
/*Change to reflect height of your header.
Remember to accomadate for padding!*/
height:75px;
background-color: #FFFFFF;
}
#content {
margin-top:100px;;
/*float:left;*/
/*Change to reflect width of your content.
Remember to accomadate for padding!*/
width:50%;
}
.wrap {
float:left;
position:absolute;
bottom:0;
margin:0 auto;
/*replace 900px with your width*/
width:100%;
height: 120px;
background-color: #15587b;
position: fixed;
left: 0;
z-index: 3;
padding: 10px 14px 0px; 14px;
opacity: 0.918;
border-top-style: solid;
border-width:thin;
border-color: #cccccc;
line-height: -.5;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-ms-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}
}
.wrap_header {
position:relative;
/*margin:0 auto;*/
/*replace 900px with your width*/
width:100%;
background-color: #ffffff;
font-size: 1em;
color: #cccccc
}
#header, #footer {
width:50%;
float:left;
}
#footer {
position:fixed;
bottom:0;
z-index:3;
}
hr {
border: 0;
width: 100%;
color: #ccc;
background-color: #ccc;
height: 1px;
}
/*.footer_link A:{font-size: 11px;}
.footer_link A:link {color: #ffffff; font-weight: regular; text-decoration: none;}
.footer_link A:active {color:#ffffff; font-weight: regular; text-decoration: none;}
.footer_link A:visited {color: #ffffff; font-weight: regular; text-decoration: none;}
.footer_link A:hover {color: #ffffff; font-weight: regular; text-decoration: underline; }
A {font-size: 11px;}
A:link {color: #006699; font-weight: regular; text-decoration: none;}
A:active {color:#006699; font-weight: regular; text-decoration: none;}
A:visited {color: #006699; font-weight: regular; text-decoration: none;}
A:hover {color: #006699; font-weight: regular; text-decoration: underline; } */
A.link_class_2. {font-size: 10px;}
A.link_class_2:link {color: #ffffff; font-weight: regular; text-decoration: none;}
A.link_class_2:active {color:#ffffff; font-weight: regular; text-decoration: none;}
A.link_class_2:visited {color: #ffffff; font-weight: regular; text-decoration: none;}
A.link_class_2:hover {color: #ffffff; font-weight: regular; text-decoration: underline; }
#pRole
{
color: #7b9aaa;
font-size: .9em;
}
#pRole {font-size: 10px;}
#pRole a:link {color: #7b9aaa; font-weight: regular; text-decoration: none;}
#pRole a:active {color:#7b9aaa; font-weight: regular; text-decoration: none;}
#pRole a:visited {color: #7b9aaa; font-weight: regular; text-decoration: none;}
#pRole a hover {color: #7b9aaa; font-weight: regular; text-decoration: underline; }
#nav {
width:600;
font: 12px/30px Helvetica, sans-serif;
text-align: center;
float:none;
margin-left: auto;
margin-right: auto;
padding:10px;
text-align:center;
max-width:100%;
}
#nav a {
color: #006699;
text-decoration: none;
-webkit-transition: all 0.5s ease;
}
#nav a:hover {
text-decoration: underline;
}
#navup {
font-size: 1em;
color: #ffffff;
font: 12px Helvetica, sans-serif;
text-align: center;
}
#navup a {
font-size: 1em;
color: #ffffff;
text-align: left;
-webkit-transition: all 0.5s ease;
}
#navup a:hover {
color: #ffffff;
font-size: 1em;
text-align: left;
}
#navtop {
text-align: center;
color: #F1560A;
}
#navtop a {
float: center;
-webkit-transition: all 0.5s ease;
color: #F1560A;
}
#navtop a:hover {
text-decoration: underline;
color: #F1560A;
}
#navfooter {
color: #fff;
text-align: center;
}
#navfooter a {
color: #fff;
float: center;
-webkit-transition: all 0.5s ease;
}
#navfooter a:hover {
text-decoration: underline;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CONTAINER ELEMENTS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#fHeader
{
float:none;
margin-left: auto;
margin-right: auto;
text-align:center;
width:100%;
}
.nav_off
{
margin: 0px;
padding:0px;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 1em;
color: #000000;
}
.nav_off_footer
{
margin: 0px;
padding:0px;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 1em;
color: #4ea7d6;
}
#fFooter
{
float:none;
margin-left: auto;
margin-right: auto;
float:left;
width:100%;
}
#wrapper
{
float:none;
margin-left: auto;
margin-right: auto;
max-width:100%;
width:600px;
}
.pContainer {
margin: 0px 0px 0px 0px;
height:auto;
padding: 1em;
background-color: #ffffff;
float: right;
vertical-align:top;
text-align: left;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: .7.1em;
voice-family: "\"}\"";
voice-family: inherit;
}
.disclaimer {
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 11px;
color: #999;
}
.ptopnavnav {
margin: 0px 0px 0px 0px;
background-color: #ffffff;
vertical-align:top;
text-align: left;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: .9em;
width: 100%;
}
.pfooter {
color: #666666;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: .9em;
voice-family: "\"}\"";
voice-family: inherit;
}
#pback_top {
color: #006699;
font-family: Verdana, Arial, geneva, sans-serif;
font-size: 11px;
}
.pBox {
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PROJECT ELEMENTS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.pHeader {
margin: 0px;
padding: 0px;
width: 550px;
}
.pDate {
margin: 0px;
padding: 30px 0px 0px 0px;
float: right;
color: #999999;
text-align: right;
}
.pImage {
margin: 0px;
padding: 10px;
background-color: #d0d0d0;
}
.pContent {
margin: 0px;
padding: 8px;
background-color: #D0D0D0;
color:
/* box model hack */
width: auto;
voice-family: "\"}\"";
voice-family: inherit;
}
.pText {
margin: 0px;
padding: 0px;
text-align: left;
color: #000000;
/* box model hack */
voice-family: "\"}\"";
voice-family: inherit;
width: auto;
}
.pIcon {
margin: 10px 0px 0px 0px;
padding: 0px;
float: left;
width: 0px;
}
/*.pRole {
font-size: 10px;
margin: 10px 0px 0px 0px;
padding: 0px;
color: #7b9aaa;
}*/
.pVideo {
margin: 0px;
padding: 10px;
background-color: #d0d0d0;
}
.description:link {
color: #F1560A;
font-weight: regular;
text-decoration: none;
}
.description:active {
color:#F1560A;
font-weight: regular;
text-decoration: none;
}
.description:visited {
color: #F1560A;
font-weight: regular;
text-decoration: none;
}
.description:hover {
color: #F1560A;
font-weight: regular;
text-decoration: underline;
}
.pLinks {
margin: 10px 0px 0px 0px;
padding: 0px;
float: right;
color: #666666;
/* box model hack */
width: 180px;
voice-family: "\"}\"";
voice-family: inherit;
width: 170px;
}
.dotSpacer {color: #D0D0D0}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
BOLDED NON-LINKED ELEMENTS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.pTitle {
font-size: 10px;
font-weight: bold;
color: #000000;
}
form {font:1em/1 Verdana,Geneva,Kalimati,sans-serif; color:#333;}
fieldset {border:1px solid #999;}
fieldset fieldset {border:none;}
fieldset fieldset legend {font:bold 1em/1 Verdana,Geneva,Kalimati,sans-serif; color:#000;}
legend {font:1.5em/1 "Trebuchet MS",Helvetica,Jamrul,sans-serif; color:#000;}
.textfield input, .file input, .dropdown select, .textarea textarea, div input.innertextfield {font:1em/1 Verdana,Geneva,Kalimati,sans-serif; color:#000; border:1px solid #999; background:#ececec;}
.textfield input:hover, .file input:hover, .dropdown select:hover, .textarea textarea:hover, div input.innertextfield:hover {border-color:orange;}
.textfield input:focus, .file input:focus, .dropdown select:focus, .textarea textarea:focus, div input.innertextfield:hover {border-color:#333;}
.textfield input:active, .file input:active, .dropdown select:active, .textarea textarea:active, div input.innertextfield:active {border-color:#333;}
.textfield input:focus:hover, .file input:focus:hover, .dropdown select:focus:hover, .textarea textarea:focus:hover, div input.innertextfield:focus:hover {border-color:orange;}
.checkbox input, .radio input {border:none; background:transparent;}
button {font:1.2em/1 Verdana,Geneva,Kalimati,sans-serif; border:1px solid #666; background:#666; color:#fff;}
button:hover {border-color:#000; color:orange;}
optgroup {font:bold 1em/1 Verdana,Geneva,Kalimati,sans-serif;}
option {font:1em/1 Verdana,Geneva,Kalimati,sans-serif;}
/* FORM: LAYOUT */
form {}
fieldset {margin-bottom:3em; padding:10px;}
fieldset fieldset {padding:0;}
legend {margin-bottom:1em;}
.textfield, .textarea, .file, .dropdown, .radio, .checkbox, .buttons, fieldset fieldset {margin-bottom:1em;}
.textfield input, .file input, .dropdown select, .textarea textarea, input.innertextfield {padding:2px 5px;}
.textfield input, .file input, .dropdown select, .textarea textarea {width:100px;}
textarea {height:6em;}
.textfield input, .file input, .dropdown select, .textarea textarea {display:block; margin:0.1em 0 0 0;}
.checkbox input, .radio input {margin-right:5px;}
div input.innertextfield {display:inline; margin-right:0;}
.buttons {}
button {padding:4px;}
optgroup {}
option {padding:1px 3px;}
#logo-link
{
width:146px;
height:22px;
text-decoration:none;
display:block;
background-image:url(http://www.nicholasdangelo.com/wp-content/themes/wpfolio/images/connect_146.png);
background-position:0px 0px;
}
#logo-link:hover,#logo-link:active { background-position:0px 46px; };
{
{
.pContainer_2 {
margin: 0px 0px 0px 0px;
max-width: 100%,
padding: 10px;
background-color: #ffffff;
float: right;
vertical-align:top;
text-align: left;
font-size: 11px;
voice-family: "\"}\"";
voice-family: inherit;
}
.pBox_2 {
max-width: 150%
margin: 10px;
padding: 10px;
background-color: #D0D0D0;
}
#navup a:hover {
color: #ffffff;
font-size: .9em;
text-align: left;
} | 0.19671 | 0.050424 |
display: grid;
grid-template-columns: auto auto;
grid-template-rows: auto auto auto auto;
grid-template-areas: "url unused1" "video help" "controls data" "taps data";
column-gap: 6px;
row-gap: 1px;
text-align: center;
margin: auto;
padding: 4px;
background: var(--panel);
box-shadow: -1px -1px 2px 0 #fdf6e3, 1px 1px 4px 0 #93a1a1;
}
div#file {
display: flex;
grid-area: url;
visibility: hidden;
margin-top: 2px;
margin-bottom: 2px;
margin-left: var(--pad-left);
}
div#video {
display: block;
grid-area: video;
padding-bottom: 0px;
margin-bottom: 0px;
margin-left: var(--pad-left);
overflow: none;
border: none;
}
div#help {
grid-area: help;
outline: none;
display: block;
visibility: visible;
}
div#controls {
grid-area: controls;
visibility: hidden;
outline: none;
margin-left: var(--pad-left);
}
div#data {
grid-area: data;
visibility: hidden;
display: flex;
flex-flow: row nowrap;
}
div#taps {
grid-area: taps;
visibility: hidden;
margin-left: var(--pad-left);
margin-bottom: 0.8em;
}
div.url {
display: flex;
flex-flow: row nowrap;
}
div.url input#url {
background: transparent;
}
div.url input#url::placeholder {
color: var(--hint);
font-style: italic;
font-size: 0.9em;
}
div.url input#url[readonly] {
color: var(--hint);
font-style: italic;
}
div.url button#load {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 8px;
padding-right: 8px;
margin-left: 4px;
border: 1px solid var(--border);
border-radius: 2px;
}
div.url button#load img {
width: 20px;
height: 20px;
}
#player {
display: inline-block;
width: 640px;
height: 390px;
vertical-align:top;
opacity: 1;
transition: opacity 15s ease;
}
.overlay {
background: #222222;
width: 640px;
height: 390px;
position: absolute;
left: 0x;
top: 0px;
z-index: 1;
visibility: visible;
text-align: center;
}
.hidden {
opacity: 0;
}
.overlay img {
position: relative;
top: 50%;
transform: translateY(-50%);
width: 80px;
}
#help .help {
width: 128px;
outline: none;
}
.help p {
color: var(--help);
font-size: 0.8em;
font-style: italic;
text-align: left;
margin-left: 12px;
margin-right: 12px;
margin-top: 24px;
}
.help p.basic {
display: none;
}
.help p.cued {
display: none;
}
.help p.playing {
display: none;
}
#help[data-state="hint"] .help p.basic {
display: block;
}
#help[data-state="cued"] .help p.cued {
display: block;
}
#help[data-state="playing"] .help p.playing {
display: block;
}
div.controls {
display: grid;
clear: both;
grid-template-columns: min-content 1fr min-content min-content min-content min-content;
grid-template-areas: "slider slider slider slider slider slider" "taps taps taps taps taps taps" "looping middle quantize interpolate offset bpm";
grid-column-gap: 2px;
}
div.slider {
grid-area: slider;
clear: none;
}
input.info {
width: 4em;
padding: 2px 4px 2px 4px;
border: 1px solid var(--border);
border-radius: 2px;
font-size: 0.7em;
text-align: center;
}
input.info::placeholder {
color: var(--hint);
font-style: italic;
}
label#quantize {
grid-area: quantize;
}
label#interpolate {
grid-area: interpolate;
}
input#to {
grid-area: to;
}
input#offset {
grid-area: offset;
outline: none;
}
input#bpm {
grid-area: bpm;
outline: none;
}
div#looping {
grid-area: looping;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
label.checktext {
border: 1px solid var(--border);
border-radius: 2px;
visibility: hidden;
}
label.checktext input[type="checkbox"] {
display: none;
}
label.checktext input[type="checkbox"] ~ span {
color: var(--hint);
font-size: 0.65em;
font-family: sans-serif;
font-style: italic;
padding-left: 4px;
padding-right: 4px;
}
label.checktext input[type="checkbox"]:checked ~ span {
color: #444444;
font-style: normal;
}
label#loop {
cursor: pointer;
margin-right: 4px;
}
label#loop input[type="checkbox"] {
display: none;
}
label#loop img {
width: 20px;
height: 20px;
padding: 2px 2px 2px 4px;
margin: auto;
}
label#loop img.yes {
display: none;
}
label#loop img.no {
display: block;
filter: invert(100%) sepia(30%) saturate(7%) hue-rotate(292deg) brightness(81%) contrast(103%);
}
label#loop input[type="checkbox"]:checked ~ img.yes {
display: block;
}
label#loop input[type="checkbox"]:checked ~ img.no {
display: none;
}
input#delay {
width: 4em;
padding: 2px 4px 2px 4px;
border: 1px solid var(--border);
border-radius: 2px;
text-align: center;
margin-left: 4px;
outline: none;
}
input#delay::placeholder {
color: var(--hint);
font-style: italic;
font-size: 0.9em;
}
input#delay::-webkit-inner-spin-button,
input#delay::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
div#taps {
display: none;
grid-area: taps;
}
div#all {
display: flex;
flex-flow: column nowrap;
}
div#zoomed {
display: none;
flex-flow: column nowrap;
margin-top: 1px;
}
div#all canvas {
background: var(--taps-all-background);
}
div#zoomed canvas {
background: var(--taps-zoomed-background);
}
canvas.taps {
width: 640px;
height: 5px;
margin-top: 1px;
margin-bottom: 1px;
border: 0.5px solid #c0c0c080;
border-radius: 2px;
}
div#message {
display: none;
margin-top: 4px;
justify-content: center;
align-items: center;
}
div#message p {
margin: auto;
font-family: sans-serif;
font-size: 0.6em;
text-align: center;
color: var(--hint);
}
div#data {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: flex-end;
}
div#data button {
border: none;
margin-left: 4px;
margin-right: 4px;
margin-top: 4px;
}
div#data button img {
width: 28px;
height: 28px;
padding-top: 2px;
padding-bottom: 0px;
padding-left: 4px;
padding-right: 4px;
} | css/T2B.css | display: grid;
grid-template-columns: auto auto;
grid-template-rows: auto auto auto auto;
grid-template-areas: "url unused1" "video help" "controls data" "taps data";
column-gap: 6px;
row-gap: 1px;
text-align: center;
margin: auto;
padding: 4px;
background: var(--panel);
box-shadow: -1px -1px 2px 0 #fdf6e3, 1px 1px 4px 0 #93a1a1;
}
div#file {
display: flex;
grid-area: url;
visibility: hidden;
margin-top: 2px;
margin-bottom: 2px;
margin-left: var(--pad-left);
}
div#video {
display: block;
grid-area: video;
padding-bottom: 0px;
margin-bottom: 0px;
margin-left: var(--pad-left);
overflow: none;
border: none;
}
div#help {
grid-area: help;
outline: none;
display: block;
visibility: visible;
}
div#controls {
grid-area: controls;
visibility: hidden;
outline: none;
margin-left: var(--pad-left);
}
div#data {
grid-area: data;
visibility: hidden;
display: flex;
flex-flow: row nowrap;
}
div#taps {
grid-area: taps;
visibility: hidden;
margin-left: var(--pad-left);
margin-bottom: 0.8em;
}
div.url {
display: flex;
flex-flow: row nowrap;
}
div.url input#url {
background: transparent;
}
div.url input#url::placeholder {
color: var(--hint);
font-style: italic;
font-size: 0.9em;
}
div.url input#url[readonly] {
color: var(--hint);
font-style: italic;
}
div.url button#load {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 8px;
padding-right: 8px;
margin-left: 4px;
border: 1px solid var(--border);
border-radius: 2px;
}
div.url button#load img {
width: 20px;
height: 20px;
}
#player {
display: inline-block;
width: 640px;
height: 390px;
vertical-align:top;
opacity: 1;
transition: opacity 15s ease;
}
.overlay {
background: #222222;
width: 640px;
height: 390px;
position: absolute;
left: 0x;
top: 0px;
z-index: 1;
visibility: visible;
text-align: center;
}
.hidden {
opacity: 0;
}
.overlay img {
position: relative;
top: 50%;
transform: translateY(-50%);
width: 80px;
}
#help .help {
width: 128px;
outline: none;
}
.help p {
color: var(--help);
font-size: 0.8em;
font-style: italic;
text-align: left;
margin-left: 12px;
margin-right: 12px;
margin-top: 24px;
}
.help p.basic {
display: none;
}
.help p.cued {
display: none;
}
.help p.playing {
display: none;
}
#help[data-state="hint"] .help p.basic {
display: block;
}
#help[data-state="cued"] .help p.cued {
display: block;
}
#help[data-state="playing"] .help p.playing {
display: block;
}
div.controls {
display: grid;
clear: both;
grid-template-columns: min-content 1fr min-content min-content min-content min-content;
grid-template-areas: "slider slider slider slider slider slider" "taps taps taps taps taps taps" "looping middle quantize interpolate offset bpm";
grid-column-gap: 2px;
}
div.slider {
grid-area: slider;
clear: none;
}
input.info {
width: 4em;
padding: 2px 4px 2px 4px;
border: 1px solid var(--border);
border-radius: 2px;
font-size: 0.7em;
text-align: center;
}
input.info::placeholder {
color: var(--hint);
font-style: italic;
}
label#quantize {
grid-area: quantize;
}
label#interpolate {
grid-area: interpolate;
}
input#to {
grid-area: to;
}
input#offset {
grid-area: offset;
outline: none;
}
input#bpm {
grid-area: bpm;
outline: none;
}
div#looping {
grid-area: looping;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
label.checktext {
border: 1px solid var(--border);
border-radius: 2px;
visibility: hidden;
}
label.checktext input[type="checkbox"] {
display: none;
}
label.checktext input[type="checkbox"] ~ span {
color: var(--hint);
font-size: 0.65em;
font-family: sans-serif;
font-style: italic;
padding-left: 4px;
padding-right: 4px;
}
label.checktext input[type="checkbox"]:checked ~ span {
color: #444444;
font-style: normal;
}
label#loop {
cursor: pointer;
margin-right: 4px;
}
label#loop input[type="checkbox"] {
display: none;
}
label#loop img {
width: 20px;
height: 20px;
padding: 2px 2px 2px 4px;
margin: auto;
}
label#loop img.yes {
display: none;
}
label#loop img.no {
display: block;
filter: invert(100%) sepia(30%) saturate(7%) hue-rotate(292deg) brightness(81%) contrast(103%);
}
label#loop input[type="checkbox"]:checked ~ img.yes {
display: block;
}
label#loop input[type="checkbox"]:checked ~ img.no {
display: none;
}
input#delay {
width: 4em;
padding: 2px 4px 2px 4px;
border: 1px solid var(--border);
border-radius: 2px;
text-align: center;
margin-left: 4px;
outline: none;
}
input#delay::placeholder {
color: var(--hint);
font-style: italic;
font-size: 0.9em;
}
input#delay::-webkit-inner-spin-button,
input#delay::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
div#taps {
display: none;
grid-area: taps;
}
div#all {
display: flex;
flex-flow: column nowrap;
}
div#zoomed {
display: none;
flex-flow: column nowrap;
margin-top: 1px;
}
div#all canvas {
background: var(--taps-all-background);
}
div#zoomed canvas {
background: var(--taps-zoomed-background);
}
canvas.taps {
width: 640px;
height: 5px;
margin-top: 1px;
margin-bottom: 1px;
border: 0.5px solid #c0c0c080;
border-radius: 2px;
}
div#message {
display: none;
margin-top: 4px;
justify-content: center;
align-items: center;
}
div#message p {
margin: auto;
font-family: sans-serif;
font-size: 0.6em;
text-align: center;
color: var(--hint);
}
div#data {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: flex-end;
}
div#data button {
border: none;
margin-left: 4px;
margin-right: 4px;
margin-top: 4px;
}
div#data button img {
width: 28px;
height: 28px;
padding-top: 2px;
padding-bottom: 0px;
padding-left: 4px;
padding-right: 4px;
} | 0.353205 | 0.12932 |
.product-preview img {
display: block;
width: 100%;
min-width: 100%;
aspect-ratio: 0.75;
opacity: 0;
text-align: center;
position: relative;
}
@keyframes flash {
0% {
background-color: white;
}
50% {
background-color: rgb(245, 245, 245);
}
100% {
background-color: white;
}
}
.product-preview {
animation: 1s flash ease infinite;
}
.product-info {
padding: 0 24px 17px;
}
.product-title {
font-weight: lighter;
font-size: 1.3em;
margin: 10px 0 10px;
letter-spacing: 0.1em;
}
.product-id {
color: #bababa;
letter-spacing: 0.15em;
}
.product-price {
font-size: 1.3em;
margin-bottom: 0;
}
.product-variants {
padding-top: 28px;
}
.product-variants > div {
margin-bottom: 20px;
}
.variant {
display: flex;
flex-direction: row;
align-items: center;
}
.variant-title {
letter-spacing: 0.3em;
border-right: 1px solid black;
padding-right: 5px;
margin-right: 10px;
}
.variant-options {
display: flex;
flex-direction: row;
justify-content: flex-start;
}
.variant-options > div {
width: 34px;
height: 34px;
margin-left: 15px;
cursor: pointer;
}
.product-color_variants__options::after,
.product-size_variants__options::after {
content: '';
height: 34px;
width: 0;
}
.product-color_variants__options > .variant-option {
cursor: pointer;
padding: 6px;
border: 6px solid white;
box-shadow: 0px 0px 1px #5a5a5a;
}
.product-color_variants__options > .variant-option.selected {
outline: 1px solid black;
}
.product-size_variants__options > .variant-option {
font-size: 1.3em;
line-height: 34px;
text-align: center;
border-radius: 50%;
background-color: #ececec;
}
.product-size_variants__options > .variant-option.selected {
background-color: black;
color: white;
}
.product-size_variants__options > .variant-option.disabled {
color: rgb(197, 192, 192);
pointer-events: none;
}
.product-amount__title {
display: none;
}
.product-amount__controller {
font-size: 1.3em;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
border: 1px solid #979797;
padding: 10px 30px;
}
.plus,
.minus {
background-color: transparent;
font-weight: bold;
font-size: 1.4em;
border: none;
width: 30px;
text-align: center;
cursor: pointer;
text-indent: -5px;
}
.plus.disabled,
.minus.disabled {
color: rgb(141, 141, 141);
font-weight: lighter;
cursor: not-allowed;
}
#add-to-cart {
border: none;
width: 100%;
color: white;
padding: 15px;
cursor: pointer;
position: relative;
z-index: 2;
background-color: black;
}
.product-details {
font-size: 0.9em;
margin-top: 28px;
}
.details-texture {
margin-top: 2em;
}
.details-description {
line-height: 1.7em;
margin-top: 0.5em;
}
.details-location {
margin-top: 1em;
}
.product-other {
padding: 17px 24px;
margin-bottom: 20px;
}
.other-title {
font-size: 1.2em;
letter-spacing: 0.2em;
color: #8b572a;
display: flex;
}
.other-title::after {
content: '';
border-bottom: 1px solid black;
flex-grow: 1;
align-self: center;
margin-left: 36px;
}
.other-story {
padding: 1em 0;
line-height: 1.8em;
}
.other-images img {
width: 100%;
margin-bottom: 10px;
} | shanpig/css/mobile-first/product.css | .product-preview img {
display: block;
width: 100%;
min-width: 100%;
aspect-ratio: 0.75;
opacity: 0;
text-align: center;
position: relative;
}
@keyframes flash {
0% {
background-color: white;
}
50% {
background-color: rgb(245, 245, 245);
}
100% {
background-color: white;
}
}
.product-preview {
animation: 1s flash ease infinite;
}
.product-info {
padding: 0 24px 17px;
}
.product-title {
font-weight: lighter;
font-size: 1.3em;
margin: 10px 0 10px;
letter-spacing: 0.1em;
}
.product-id {
color: #bababa;
letter-spacing: 0.15em;
}
.product-price {
font-size: 1.3em;
margin-bottom: 0;
}
.product-variants {
padding-top: 28px;
}
.product-variants > div {
margin-bottom: 20px;
}
.variant {
display: flex;
flex-direction: row;
align-items: center;
}
.variant-title {
letter-spacing: 0.3em;
border-right: 1px solid black;
padding-right: 5px;
margin-right: 10px;
}
.variant-options {
display: flex;
flex-direction: row;
justify-content: flex-start;
}
.variant-options > div {
width: 34px;
height: 34px;
margin-left: 15px;
cursor: pointer;
}
.product-color_variants__options::after,
.product-size_variants__options::after {
content: '';
height: 34px;
width: 0;
}
.product-color_variants__options > .variant-option {
cursor: pointer;
padding: 6px;
border: 6px solid white;
box-shadow: 0px 0px 1px #5a5a5a;
}
.product-color_variants__options > .variant-option.selected {
outline: 1px solid black;
}
.product-size_variants__options > .variant-option {
font-size: 1.3em;
line-height: 34px;
text-align: center;
border-radius: 50%;
background-color: #ececec;
}
.product-size_variants__options > .variant-option.selected {
background-color: black;
color: white;
}
.product-size_variants__options > .variant-option.disabled {
color: rgb(197, 192, 192);
pointer-events: none;
}
.product-amount__title {
display: none;
}
.product-amount__controller {
font-size: 1.3em;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
border: 1px solid #979797;
padding: 10px 30px;
}
.plus,
.minus {
background-color: transparent;
font-weight: bold;
font-size: 1.4em;
border: none;
width: 30px;
text-align: center;
cursor: pointer;
text-indent: -5px;
}
.plus.disabled,
.minus.disabled {
color: rgb(141, 141, 141);
font-weight: lighter;
cursor: not-allowed;
}
#add-to-cart {
border: none;
width: 100%;
color: white;
padding: 15px;
cursor: pointer;
position: relative;
z-index: 2;
background-color: black;
}
.product-details {
font-size: 0.9em;
margin-top: 28px;
}
.details-texture {
margin-top: 2em;
}
.details-description {
line-height: 1.7em;
margin-top: 0.5em;
}
.details-location {
margin-top: 1em;
}
.product-other {
padding: 17px 24px;
margin-bottom: 20px;
}
.other-title {
font-size: 1.2em;
letter-spacing: 0.2em;
color: #8b572a;
display: flex;
}
.other-title::after {
content: '';
border-bottom: 1px solid black;
flex-grow: 1;
align-self: center;
margin-left: 36px;
}
.other-story {
padding: 1em 0;
line-height: 1.8em;
}
.other-images img {
width: 100%;
margin-bottom: 10px;
} | 0.794106 | 0.105073 |
@import './common.css';
.slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
overflow: hidden;
display: block;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before,
.slick-track:after {
content: "";
display: table;
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none;
}
[dir="rtl"] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}
.intro {
height: 100vh;
min-height: 700px;
position: relative;
background-image: url("../img/intro-bg.jpg");
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
z-index: 0;
display: flex;
flex-direction: column;
}
.intro .man {
position: absolute;
bottom: 90px;
right: 70px;
z-index: 2;
transform: translateY(100%);
}
@media all and (max-width: 1200px) {
.intro .man {
width: 400px;
top: -70px;
right: 20px;
}
}
@media all and (max-width: 1024px) {
.intro .man {
width: 250px;
}
}
@media all and (max-width: 768px) {
.intro .man {
display: none;
}
}
.intro .man-img {
display: block;
}
.intro::after {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0,0,0,0.8);
z-index: 1;
}
.intro-top {
margin-top: 60px;
position: absolute;
top: calc(50% - 95px);
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.intro-top .intro-title {
font-size: 60px;
color: #fff;
}
@media all and (max-width: 768px) {
.intro-top .intro-title {
font-size: 50px;
}
}
.intro-top .intro-description {
display: block;
font-size: 30px;
color: #f9a53b;
}
@media all and (max-width: 768px) {
.intro-top .intro-description {
font-size: 25px;
}
}
.intro-top .intro-title,
.intro-top .intro-description {
text-align: center;
text-transform: uppercase;
}
.intro-bottom {
height: 190px;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
z-index: 2;
background-color: #1799d4;
box-sizing: border-box;
padding: 40px 0 50px 0;
box-shadow: -1px 1px 7px 3px rgba(23,153,212,0.75);
}
@media all and (max-width: 576px) {
.intro-bottom {
padding: 20px 0 30px 0;
}
}
.intro-descr {
max-width: 930px;
margin: 0 auto;
}
.intro-descr .text {
color: #fff;
font-size: 16px;
text-align: center;
}
@media all and (max-width: 576px) {
.intro-descr .text {
font-size: 14px;
}
}
.container {
width: 1060px;
margin: 0 auto;
}
@media all and (max-width: 1200px) {
.container {
width: 980px;
}
}
@media all and (max-width: 1024px) {
.container {
width: 760px;
padding: 0 20px;
box-sizing: border-box;
}
}
@media all and (max-width: 768px) {
.container {
width: 100%;
}
}
.header {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 5;
}
@media all and (max-width: 1024px) {
.header {
position: fixed;
background-color: #0a0a0a;
}
}
.header-wrap {
position: relative;
height: 95px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.header-left {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-left .hamburger {
display: none;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
}
@media all and (max-width: 1024px) {
.header-left .hamburger {
display: inline-block;
z-index: 10;
}
}
.header-left .logo {
position: relative;
display: inline-block;
}
@media all and (max-width: 1024px) {
.header-left .logo {
margin-left: 30px;
}
}
.header-left .logo-img {
width: 200px;
}
@media all and (max-width: 1024px) {
.header-left .logo-img {
display: none;
}
}
.header-left .logo-img-small {
display: none;
}
@media all and (max-width: 1024px) {
.header-left .logo-img-small {
display: block;
}
}
.header-right {
display: flex;
flex-direction: row;
align-items: center;
}
.header-right .phone {
margin-right: 30px;
display: flex;
flex-direction: column;
}
@media all and (max-width: 768px) {
.header-right .phone {
margin-right: 0;
}
}
.header-right .phone-item {
color: #fff;
}
@media all and (max-width: 1024px) {
.header-center {
display: none;
}
}
.footer {
margin: 50px 0;
}
.footer-wrap {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
@media all and (max-width: 768px) {
.footer-wrap {
flex-direction: column;
}
}
@media all and (max-width: 768px) {
.footer-center {
margin: 20px;
}
}
.footer-title {
margin-bottom: 10px;
display: block;
text-align: center;
font-size: 20px;
}
.footer-link {
color: #c48233;
font-size: 24px;
}
.footer .phone-item {
display: flex;
flex-direction: column;
color: #c48233;
font-size: 24px;
}
.mobile-menu {
width: 300px;
height: calc(100% - 95px);
background-color: #0a0a0a;
position: fixed;
top: 95px;
left: -100%;
transition: all 0.35s ease-in-out;
z-index: 5;
}
.mobile-menu__list {
text-align: center;
}
.mobile-menu__el {
height: 50px;
line-height: 50px;
}
.mobile-menu__link {
position: relative;
margin-right: 28px;
color: #fff;
text-transform: uppercase;
border-bottom: 2px solid transparent;
transition: all 0.3s ease-in-out;
}
.mobile-menu__link:last-child {
margin-right: 0;
}
.mobile-menu__link:last-child:after {
display: none;
}
.mobile-menu__link:after {
position: absolute;
content: '';
top: 10px;
right: -20px;
width: 10px;
height: 1px;
background-color: #fff;
transform: rotate(-60deg);
}
.mobile-menu__link:hover {
border-bottom-color: #c48233;
}
.mobile-menu.is-open {
left: 0;
}
.navigation {
display: flex;
flex-direction: row;
align-items: center;
}
.navigation-link {
position: relative;
margin-right: 28px;
font-size: 14px;
color: #fff;
border-bottom: 2px solid transparent;
transition: all 0.3s ease-in-out;
}
.navigation-link:last-child {
margin-right: 0;
}
.navigation-link:last-child:after {
display: none;
}
.navigation-link:after {
position: absolute;
content: '';
top: 10px;
right: -20px;
width: 10px;
height: 1px;
background-color: #fff;
transform: rotate(-60deg);
}
.navigation-link:hover {
border-bottom-color: #c48233;
}
.emotions {
position: relative;
overflow: hidden;
}
.emotions-title,
.emotions-description {
color: #c48233;
text-transform: uppercase;
}
.emotions-title {
font-size: 40px;
}
@media all and (max-width: 768px) {
.emotions-title {
font-size: 30px;
}
}
.emotions-description {
font-size: 25px;
}
@media all and (max-width: 768px) {
.emotions-description {
font-size: 20px;
}
}
.emotions-description hr {
position: absolute;
width: 100vw;
border-top: 2px solid #c48233;
margin: 0;
z-index: -1;
}
.emotions-wrap {
padding-bottom: 65px;
max-width: 700px;
}
.emotions-top {
padding-top: 65px;
}
.emotions-bottom {
margin-top: 40px;
}
.emotions-bottom .text {
font-size: 18px;
color: #000;
}
.gallery {
position: relative;
min-height: 1000px;
background-image: url("../img/gallery-bg.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
z-index: 1;
}
.gallery .heading-title {
text-transform: uppercase;
font-size: 45px;
color: #fff;
}
.gallery::before {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
display: block;
content: '';
background-color: rgba(0,0,0,0.7);
z-index: -1;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
-webkit-appearance: none;
}
::-webkit-input-placeholder {
color: #fff;
}
::-moz-placeholder {
color: #fff;
}
a {
display: inline-block;
text-decoration: none;
}
img {
display: inline-block;
max-width: 100%;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
button {
padding: 0;
border: 0;
cursor: pointer;
}
h1 {
font-size: 60px;
}
h2 {
font-size: 40px;
}
body {
display: flex;
flex-direction: column;
font-size: 14px;
line-height: 1.4;
color: #010101;
}
.i-bold {
font-weight: bold;
}
.copyright {
text-align: center;
font-size: 16px;
color: #dfdfdf;
}
.social-list {
display: flex;
}
.social-el {
margin-right: 8px;
}
.social:last-child {
margin-right: 0;
}
.contacts {
padding-bottom: 65px;
position: relative;
color: #fff;
background-color: #000;
}
@media all and (max-width: 1800px) {
.hamburger {
display: none;
}
}
@media all and (max-width: 1024px) {
.hamburger {
display: block;
}
}
.contact-button {
display: inline-block;
width: 196px;
height: 35px;
color: #fff;
font-size: 16px;
line-height: 35px;
background-color: #1799d4;
trasnsition: all 0.3s ease-in-out;
-webkit-box-shadow: 0px 0px 8px 0px #1799d4;
-moz-box-shadow: 0px 0px 8px 0px #1799d4;
box-shadow: 0px 0px 8px 0px #1799d4;
box-sizing: border-box;
}
@media all and (max-width: 768px) {
.contact-button {
display: none;
}
}
.contact-button:hover {
background: #127aaa;
}
.hamburger {
position: relative;
display: inline-block;
width: 20px;
height: 17px;
transition: 0.5s ease-in-out;
cursor: pointer;
}
.hamburger__el {
display: block;
position: absolute;
left: 0;
height: 3px;
width: 100%;
background-color: #fff;
transition: 0.25s ease-in-out;
transform-origin: left top;
}
.hamburger__el:nth-child(1) {
top: 0;
}
.hamburger__el:nth-child(2) {
top: 50%;
transform: translateY(-50%);
}
.hamburger__el:nth-child(3) {
top: 100%;
transform: translateY(-100%);
}
.hamburger.open .hamburger__el {
left: 4px;
}
.hamburger.open .hamburger__el:nth-child(1) {
transform: rotate(45deg);
}
.hamburger.open .hamburger__el:nth-child(2) {
opacity: 0;
}
.hamburger.open .hamburger__el:nth-child(3) {
transform: rotate(-45deg) translateY(-100%);
}
.facts {
background-color: #fff;
min-height: 1000px;
}
@media all and (max-width: 768px) {
.facts {
min-height: auto;
}
}
.facts .heading-title {
color: #000 !important;
}
.facts .facts-list {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
flex-wrap: wrap;
}
@media all and (max-width: 1024px) {
.facts .facts-list {
justify-content: space-around;
}
}
.fact {
display: flex;
flex-direction: column;
align-items: center;
}
@media all and (max-width: 1024px) {
.fact {
margin-right: 30px;
margin-bottom: 30px;
}
}
.fact-value {
color: #0060ff;
text-transform: uppercase;
font-size: 50px;
}
.fact-text {
text-align: center;
font-size: 16px;
color: #000;
}
.offers {
position: relative;
min-height: 1000px;
background-image: url("../img/offer-bg.png");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
z-index: 1;
}
.offers .heading-title {
text-transform: uppercase;
font-size: 45px;
color: #fff;
}
.offers-list {
display: flex;
flex-direction: row;
justify-content: space-around;
}
@media all and (max-width: 768px) {
.offers-list {
flex-direction: column;
}
}
.offer {
position: relative;
padding: 40px 30px;
width: 330px;
min-height: 590px;
color: #fff;
background-color: #0d0d0d;
border-radius: 10px;
box-shadow: 0 1px 5px 5px rgba(33,61,72,0.75);
box-sizing: border-box;
}
@media all and (max-width: 768px) {
.offer {
width: 100%;
margin-bottom: 20px;
}
}
.offer-title {
display: block;
font-size: 20px;
text-transform: uppercase;
}
.offer-sub-title {
display: block;
margin: 20px 0;
text-transform: uppercase;
text-decoration: underline;
}
.offer-description {
margin-bottom: 45px;
font-size: 16px;
}
.offer-items {
margin-top: 45px;
font-size: 16px;
display: flex;
flex-direction: column;
}
.offer-button-wrap {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
}
.offer-button {
width: 100%;
height: 74px;
line-height: 74px;
color: #fff;
font-size: 16px;
background-color: #2351c8;
border-radius: 0 0 10px 10px;
text-transform: uppercase;
text-decoration: underline;
transition: all 0.3s ease-in-out;
}
.offer-button:hover {
background: #1c41a0;
}
.how {
position: relative;
min-height: 1000px;
background-color: #fff;
}
@media all and (max-width: 768px) {
.how {
min-height: auto;
}
}
.how .heading-title {
color: #000 !important;
}
.how .city {
font-size: 20px;
color: #858585;
}
.icon {
display: inline-block;
vertical-align: middle;
position: relative;
transition: all 0.3s ease-in-out;
}
.icon.is-photo {
width: 64px;
height: 44px;
background-image: url("../img/gallery-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-about {
width: 58px;
height: 82px;
background-image: url("../img/facts-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-format {
width: 74px;
height: 74px;
background-image: url("../img/offer-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-how {
width: 73px;
height: 73px;
background-image: url("../img/how-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-ball {
width: 84px;
height: 75px;
background-image: url("../img/types-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-feedback {
width: 73px;
height: 73px;
background-image: url("../img/how-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-mail {
width: 62px;
height: 49px;
background-image: url("../img/contact-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon-vk,
.icon-tw,
.icon-inst,
.icon-fb {
display: block;
width: 22px;
height: 22px;
border-radius: 50px;
}
.icon-vk {
background: url("../img/vk-icon.png");
}
.icon-tw {
background: url("../img/tw-icon.png");
}
.icon-inst {
background: url("../img/instg-icon.png");
}
.icon-fb {
background: url("../img/fb-icon.png");
}
.screen {
position: relative;
box-sizing: border-box;
}
.screen-title {
padding: 65px 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.screen-icon {
margin-bottom: 10px;
}
.screen-content {
padding-bottom: 65px;
}
.screen .heading-title {
font-size: 35px;
color: #fff;
text-transform: uppercase;
}
@media all and (max-width: 768px) {
.screen .heading-title {
font-size: 28px;
}
}
.select {
display: inline-block;
position: relative;
width: 260px;
}
@media all and (max-width: 768px) {
.select {
width: 100%;
}
}
.select select {
padding: 0 10px;
width: 100%;
height: 40px;
color: #fff;
font-size: 16px;
background: transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid #5b5c5b;
border-radius: 0;
cursor: pointer;
box-shadow: none;
box-sizing: border-box;
-webkit-appearance: none;
-webkit-border-radius: 0;
}
.slider {
width: 100%;
}
.slider__el {
margin: 0 auto;
width: 100%;
height: 100%;
}
.slick-list {
padding: 0;
margin: 0 auto;
max-width: 900px;
}
.btn-prev,
.btn-next {
display: block;
width: 33px;
height: 60px;
position: absolute;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
@media all and (max-width: 1024px) {
.btn-prev,
.btn-next {
top: auto;
bottom: -110px;
}
}
.btn-prev:before,
.btn-next:before,
.btn-prev:after,
.btn-next:after {
content: '';
position: absolute;
left: 0;
width: 30px;
height: 1px;
background-color: #fff;
}
.btn-prev:before,
.btn-next:before {
top: 17px;
}
.btn-prev:after,
.btn-next:after {
top: 38px;
}
.btn-prev {
left: 0;
}
@media all and (max-width: 1024px) {
.btn-prev {
left: 40%;
}
}
.btn-prev:before {
transform: rotate(-45deg);
}
.btn-prev:after {
transform: rotate(45deg);
}
.btn-next {
right: 0;
}
@media all and (max-width: 1024px) {
.btn-next {
right: 40%;
}
}
.btn-next:before {
transform: rotate(45deg);
}
.btn-next:after {
transform: rotate(-45deg);
}
.slick-dots {
position: absolute;
bottom: -30px;
display: block;
width: 100%;
padding: 0;
list-style: none;
text-align: center;
}
@media all and (max-width: 1024px) {
.slick-dots {
display: none !important;
}
}
.slick-dots li {
position: relative;
display: inline-block;
width: 6px;
height: 6px;
margin: 0 5px;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
display: none;
}
.slick-dots li:before {
top: 1px;
transition: all 0.5s;
content: '';
width: 6px;
height: 6px;
border-radius: 50px;
background-color: #c17f31;
position: absolute;
}
.slick-dots li.slick-active:before {
top: 0;
width: 8px;
height: 8px;
margin-left: -2px;
background-color: #008aff;
}
.steps {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
@media all and (max-width: 1200px) {
.steps {
justify-content: space-around;
}
}
.step {
width: 200px;
text-align: center;
}
@media all and (max-width: 1200px) {
.step {
margin-bottom: 30px;
}
}
.step-img {
position: relative;
display: inline-block;
}
@media all and (max-width: 1200px) {
.step-img:after {
display: none;
}
}
.step-img:after {
position: absolute;
content: '';
top: 50%;
right: -186px;
transform: translateX(-50%);
width: 100%;
border: 2px dashed #36a7da;
}
.step:last-child .step-img:after {
display: none;
}
.step-text {
margin-top: 30px;
font-size: 16px;
}
.types {
position: relative;
min-height: 1000px;
background-color: #000;
}
.types-list {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
@media all and (max-width: 768px) {
.types-list {
flex-direction: column;
}
}
.type {
position: relative;
padding: 50px 30px 0 30px;
width: 30%;
height: 315px;
background-color: #fff;
color: #000;
box-shadow: 0 0 10px 5px #fff;
box-sizing: border-box;
}
@media all and (max-width: 1024px) {
.type {
width: 48%;
margin-bottom: 40px;
}
}
@media all and (max-width: 768px) {
.type {
width: 100%;
}
}
.type-title {
display: inline-block;
margin-bottom: 60px;
font-size: 20px;
text-transform: uppercase;
}
.type-text {
font-size: 16px;
}
.type-button-wrap {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
}
.type-button {
width: 100%;
height: 74px;
line-height: 74px;
color: #fff;
font-size: 16px;
text-transform: uppercase;
text-decoration: underline;
background-image: linear-gradient(to right top, #eb413a, #f14c32, #f75728, #fb631b, #fe6f04);
}
.feedback {
position: relative;
min-height: 1000px;
background-color: #fff;
}
.feedback .heading-title {
color: #000;
}
.feedback-list {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
.feedback-item {
width: 23%;
}
@media all and (max-width: 768px) {
.feedback-item {
width: 49%;
margin-bottom: 20px;
}
}
@media all and (max-width: 576px) {
.feedback-item {
width: 100%;
}
}
.feedback-image {
width: 100%;
margin-bottom: 40px;
}
.feedback-info .name {
display: block;
margin-bottom: 10px;
font-size: 22px;
}
.feedback-info .city {
font-size: 20px;
color: #858585;
}
.feedback-text {
display: inline-block;
margin: 10px 0;
font-size: 16px;
}
.request {
padding: 60px 90px;
text-align: center;
border: 1px solid #fff;
}
@media all and (max-width: 1024px) {
.request {
padding: 60px;
}
}
@media all and (max-width: 576px) {
.request {
padding: 30px;
}
}
.request-form {
position: relative;
display: flex;
flex-direction: row;
justify-content: space-around;
flex-wrap: wrap;
}
@media all and (max-width: 768px) {
.request-form {
flex-direction: column;
}
}
.request-icon {
position: absolute;
top: 10px;
right: 10px;
}
.request-title {
display: block;
margin-bottom: 40px;
font-size: 25px;
text-transform: uppercase;
}
@media all and (max-width: 576px) {
.request-title {
font-size: 20px;
}
}
.request-btn {
width: 274px;
height: 50px;
line-height: 50px;
font-size: 16px;
color: #fff;
background-color: #c48233;
transition: all 0.3s ease-in-out;
box-shadow: 0 0 8px 5px rgba(196,130,51,0.75);
}
.request-btn:hover {
background: #9d6829;
}
.request-input {
padding: 0 10px;
margin-bottom: 10px;
width: 260px;
height: 40px;
line-height: 40px;
font-size: 16px;
color: #fff;
background-color: transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid #5b5c5b;
box-sizing: border-box;
}
@media all and (max-width: 768px) {
.request-input {
width: 100%;
}
}
.request-action {
margin-top: 40px;
} | src/css/main.css | @import './common.css';
.slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
overflow: hidden;
display: block;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before,
.slick-track:after {
content: "";
display: table;
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none;
}
[dir="rtl"] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}
.intro {
height: 100vh;
min-height: 700px;
position: relative;
background-image: url("../img/intro-bg.jpg");
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
z-index: 0;
display: flex;
flex-direction: column;
}
.intro .man {
position: absolute;
bottom: 90px;
right: 70px;
z-index: 2;
transform: translateY(100%);
}
@media all and (max-width: 1200px) {
.intro .man {
width: 400px;
top: -70px;
right: 20px;
}
}
@media all and (max-width: 1024px) {
.intro .man {
width: 250px;
}
}
@media all and (max-width: 768px) {
.intro .man {
display: none;
}
}
.intro .man-img {
display: block;
}
.intro::after {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0,0,0,0.8);
z-index: 1;
}
.intro-top {
margin-top: 60px;
position: absolute;
top: calc(50% - 95px);
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.intro-top .intro-title {
font-size: 60px;
color: #fff;
}
@media all and (max-width: 768px) {
.intro-top .intro-title {
font-size: 50px;
}
}
.intro-top .intro-description {
display: block;
font-size: 30px;
color: #f9a53b;
}
@media all and (max-width: 768px) {
.intro-top .intro-description {
font-size: 25px;
}
}
.intro-top .intro-title,
.intro-top .intro-description {
text-align: center;
text-transform: uppercase;
}
.intro-bottom {
height: 190px;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
z-index: 2;
background-color: #1799d4;
box-sizing: border-box;
padding: 40px 0 50px 0;
box-shadow: -1px 1px 7px 3px rgba(23,153,212,0.75);
}
@media all and (max-width: 576px) {
.intro-bottom {
padding: 20px 0 30px 0;
}
}
.intro-descr {
max-width: 930px;
margin: 0 auto;
}
.intro-descr .text {
color: #fff;
font-size: 16px;
text-align: center;
}
@media all and (max-width: 576px) {
.intro-descr .text {
font-size: 14px;
}
}
.container {
width: 1060px;
margin: 0 auto;
}
@media all and (max-width: 1200px) {
.container {
width: 980px;
}
}
@media all and (max-width: 1024px) {
.container {
width: 760px;
padding: 0 20px;
box-sizing: border-box;
}
}
@media all and (max-width: 768px) {
.container {
width: 100%;
}
}
.header {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 5;
}
@media all and (max-width: 1024px) {
.header {
position: fixed;
background-color: #0a0a0a;
}
}
.header-wrap {
position: relative;
height: 95px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.header-left {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-left .hamburger {
display: none;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
}
@media all and (max-width: 1024px) {
.header-left .hamburger {
display: inline-block;
z-index: 10;
}
}
.header-left .logo {
position: relative;
display: inline-block;
}
@media all and (max-width: 1024px) {
.header-left .logo {
margin-left: 30px;
}
}
.header-left .logo-img {
width: 200px;
}
@media all and (max-width: 1024px) {
.header-left .logo-img {
display: none;
}
}
.header-left .logo-img-small {
display: none;
}
@media all and (max-width: 1024px) {
.header-left .logo-img-small {
display: block;
}
}
.header-right {
display: flex;
flex-direction: row;
align-items: center;
}
.header-right .phone {
margin-right: 30px;
display: flex;
flex-direction: column;
}
@media all and (max-width: 768px) {
.header-right .phone {
margin-right: 0;
}
}
.header-right .phone-item {
color: #fff;
}
@media all and (max-width: 1024px) {
.header-center {
display: none;
}
}
.footer {
margin: 50px 0;
}
.footer-wrap {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
@media all and (max-width: 768px) {
.footer-wrap {
flex-direction: column;
}
}
@media all and (max-width: 768px) {
.footer-center {
margin: 20px;
}
}
.footer-title {
margin-bottom: 10px;
display: block;
text-align: center;
font-size: 20px;
}
.footer-link {
color: #c48233;
font-size: 24px;
}
.footer .phone-item {
display: flex;
flex-direction: column;
color: #c48233;
font-size: 24px;
}
.mobile-menu {
width: 300px;
height: calc(100% - 95px);
background-color: #0a0a0a;
position: fixed;
top: 95px;
left: -100%;
transition: all 0.35s ease-in-out;
z-index: 5;
}
.mobile-menu__list {
text-align: center;
}
.mobile-menu__el {
height: 50px;
line-height: 50px;
}
.mobile-menu__link {
position: relative;
margin-right: 28px;
color: #fff;
text-transform: uppercase;
border-bottom: 2px solid transparent;
transition: all 0.3s ease-in-out;
}
.mobile-menu__link:last-child {
margin-right: 0;
}
.mobile-menu__link:last-child:after {
display: none;
}
.mobile-menu__link:after {
position: absolute;
content: '';
top: 10px;
right: -20px;
width: 10px;
height: 1px;
background-color: #fff;
transform: rotate(-60deg);
}
.mobile-menu__link:hover {
border-bottom-color: #c48233;
}
.mobile-menu.is-open {
left: 0;
}
.navigation {
display: flex;
flex-direction: row;
align-items: center;
}
.navigation-link {
position: relative;
margin-right: 28px;
font-size: 14px;
color: #fff;
border-bottom: 2px solid transparent;
transition: all 0.3s ease-in-out;
}
.navigation-link:last-child {
margin-right: 0;
}
.navigation-link:last-child:after {
display: none;
}
.navigation-link:after {
position: absolute;
content: '';
top: 10px;
right: -20px;
width: 10px;
height: 1px;
background-color: #fff;
transform: rotate(-60deg);
}
.navigation-link:hover {
border-bottom-color: #c48233;
}
.emotions {
position: relative;
overflow: hidden;
}
.emotions-title,
.emotions-description {
color: #c48233;
text-transform: uppercase;
}
.emotions-title {
font-size: 40px;
}
@media all and (max-width: 768px) {
.emotions-title {
font-size: 30px;
}
}
.emotions-description {
font-size: 25px;
}
@media all and (max-width: 768px) {
.emotions-description {
font-size: 20px;
}
}
.emotions-description hr {
position: absolute;
width: 100vw;
border-top: 2px solid #c48233;
margin: 0;
z-index: -1;
}
.emotions-wrap {
padding-bottom: 65px;
max-width: 700px;
}
.emotions-top {
padding-top: 65px;
}
.emotions-bottom {
margin-top: 40px;
}
.emotions-bottom .text {
font-size: 18px;
color: #000;
}
.gallery {
position: relative;
min-height: 1000px;
background-image: url("../img/gallery-bg.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
z-index: 1;
}
.gallery .heading-title {
text-transform: uppercase;
font-size: 45px;
color: #fff;
}
.gallery::before {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
display: block;
content: '';
background-color: rgba(0,0,0,0.7);
z-index: -1;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
-webkit-appearance: none;
}
::-webkit-input-placeholder {
color: #fff;
}
::-moz-placeholder {
color: #fff;
}
a {
display: inline-block;
text-decoration: none;
}
img {
display: inline-block;
max-width: 100%;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
button {
padding: 0;
border: 0;
cursor: pointer;
}
h1 {
font-size: 60px;
}
h2 {
font-size: 40px;
}
body {
display: flex;
flex-direction: column;
font-size: 14px;
line-height: 1.4;
color: #010101;
}
.i-bold {
font-weight: bold;
}
.copyright {
text-align: center;
font-size: 16px;
color: #dfdfdf;
}
.social-list {
display: flex;
}
.social-el {
margin-right: 8px;
}
.social:last-child {
margin-right: 0;
}
.contacts {
padding-bottom: 65px;
position: relative;
color: #fff;
background-color: #000;
}
@media all and (max-width: 1800px) {
.hamburger {
display: none;
}
}
@media all and (max-width: 1024px) {
.hamburger {
display: block;
}
}
.contact-button {
display: inline-block;
width: 196px;
height: 35px;
color: #fff;
font-size: 16px;
line-height: 35px;
background-color: #1799d4;
trasnsition: all 0.3s ease-in-out;
-webkit-box-shadow: 0px 0px 8px 0px #1799d4;
-moz-box-shadow: 0px 0px 8px 0px #1799d4;
box-shadow: 0px 0px 8px 0px #1799d4;
box-sizing: border-box;
}
@media all and (max-width: 768px) {
.contact-button {
display: none;
}
}
.contact-button:hover {
background: #127aaa;
}
.hamburger {
position: relative;
display: inline-block;
width: 20px;
height: 17px;
transition: 0.5s ease-in-out;
cursor: pointer;
}
.hamburger__el {
display: block;
position: absolute;
left: 0;
height: 3px;
width: 100%;
background-color: #fff;
transition: 0.25s ease-in-out;
transform-origin: left top;
}
.hamburger__el:nth-child(1) {
top: 0;
}
.hamburger__el:nth-child(2) {
top: 50%;
transform: translateY(-50%);
}
.hamburger__el:nth-child(3) {
top: 100%;
transform: translateY(-100%);
}
.hamburger.open .hamburger__el {
left: 4px;
}
.hamburger.open .hamburger__el:nth-child(1) {
transform: rotate(45deg);
}
.hamburger.open .hamburger__el:nth-child(2) {
opacity: 0;
}
.hamburger.open .hamburger__el:nth-child(3) {
transform: rotate(-45deg) translateY(-100%);
}
.facts {
background-color: #fff;
min-height: 1000px;
}
@media all and (max-width: 768px) {
.facts {
min-height: auto;
}
}
.facts .heading-title {
color: #000 !important;
}
.facts .facts-list {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
flex-wrap: wrap;
}
@media all and (max-width: 1024px) {
.facts .facts-list {
justify-content: space-around;
}
}
.fact {
display: flex;
flex-direction: column;
align-items: center;
}
@media all and (max-width: 1024px) {
.fact {
margin-right: 30px;
margin-bottom: 30px;
}
}
.fact-value {
color: #0060ff;
text-transform: uppercase;
font-size: 50px;
}
.fact-text {
text-align: center;
font-size: 16px;
color: #000;
}
.offers {
position: relative;
min-height: 1000px;
background-image: url("../img/offer-bg.png");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
z-index: 1;
}
.offers .heading-title {
text-transform: uppercase;
font-size: 45px;
color: #fff;
}
.offers-list {
display: flex;
flex-direction: row;
justify-content: space-around;
}
@media all and (max-width: 768px) {
.offers-list {
flex-direction: column;
}
}
.offer {
position: relative;
padding: 40px 30px;
width: 330px;
min-height: 590px;
color: #fff;
background-color: #0d0d0d;
border-radius: 10px;
box-shadow: 0 1px 5px 5px rgba(33,61,72,0.75);
box-sizing: border-box;
}
@media all and (max-width: 768px) {
.offer {
width: 100%;
margin-bottom: 20px;
}
}
.offer-title {
display: block;
font-size: 20px;
text-transform: uppercase;
}
.offer-sub-title {
display: block;
margin: 20px 0;
text-transform: uppercase;
text-decoration: underline;
}
.offer-description {
margin-bottom: 45px;
font-size: 16px;
}
.offer-items {
margin-top: 45px;
font-size: 16px;
display: flex;
flex-direction: column;
}
.offer-button-wrap {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
}
.offer-button {
width: 100%;
height: 74px;
line-height: 74px;
color: #fff;
font-size: 16px;
background-color: #2351c8;
border-radius: 0 0 10px 10px;
text-transform: uppercase;
text-decoration: underline;
transition: all 0.3s ease-in-out;
}
.offer-button:hover {
background: #1c41a0;
}
.how {
position: relative;
min-height: 1000px;
background-color: #fff;
}
@media all and (max-width: 768px) {
.how {
min-height: auto;
}
}
.how .heading-title {
color: #000 !important;
}
.how .city {
font-size: 20px;
color: #858585;
}
.icon {
display: inline-block;
vertical-align: middle;
position: relative;
transition: all 0.3s ease-in-out;
}
.icon.is-photo {
width: 64px;
height: 44px;
background-image: url("../img/gallery-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-about {
width: 58px;
height: 82px;
background-image: url("../img/facts-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-format {
width: 74px;
height: 74px;
background-image: url("../img/offer-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-how {
width: 73px;
height: 73px;
background-image: url("../img/how-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-ball {
width: 84px;
height: 75px;
background-image: url("../img/types-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-feedback {
width: 73px;
height: 73px;
background-image: url("../img/how-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon.is-mail {
width: 62px;
height: 49px;
background-image: url("../img/contact-icon.png");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.icon-vk,
.icon-tw,
.icon-inst,
.icon-fb {
display: block;
width: 22px;
height: 22px;
border-radius: 50px;
}
.icon-vk {
background: url("../img/vk-icon.png");
}
.icon-tw {
background: url("../img/tw-icon.png");
}
.icon-inst {
background: url("../img/instg-icon.png");
}
.icon-fb {
background: url("../img/fb-icon.png");
}
.screen {
position: relative;
box-sizing: border-box;
}
.screen-title {
padding: 65px 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.screen-icon {
margin-bottom: 10px;
}
.screen-content {
padding-bottom: 65px;
}
.screen .heading-title {
font-size: 35px;
color: #fff;
text-transform: uppercase;
}
@media all and (max-width: 768px) {
.screen .heading-title {
font-size: 28px;
}
}
.select {
display: inline-block;
position: relative;
width: 260px;
}
@media all and (max-width: 768px) {
.select {
width: 100%;
}
}
.select select {
padding: 0 10px;
width: 100%;
height: 40px;
color: #fff;
font-size: 16px;
background: transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid #5b5c5b;
border-radius: 0;
cursor: pointer;
box-shadow: none;
box-sizing: border-box;
-webkit-appearance: none;
-webkit-border-radius: 0;
}
.slider {
width: 100%;
}
.slider__el {
margin: 0 auto;
width: 100%;
height: 100%;
}
.slick-list {
padding: 0;
margin: 0 auto;
max-width: 900px;
}
.btn-prev,
.btn-next {
display: block;
width: 33px;
height: 60px;
position: absolute;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
@media all and (max-width: 1024px) {
.btn-prev,
.btn-next {
top: auto;
bottom: -110px;
}
}
.btn-prev:before,
.btn-next:before,
.btn-prev:after,
.btn-next:after {
content: '';
position: absolute;
left: 0;
width: 30px;
height: 1px;
background-color: #fff;
}
.btn-prev:before,
.btn-next:before {
top: 17px;
}
.btn-prev:after,
.btn-next:after {
top: 38px;
}
.btn-prev {
left: 0;
}
@media all and (max-width: 1024px) {
.btn-prev {
left: 40%;
}
}
.btn-prev:before {
transform: rotate(-45deg);
}
.btn-prev:after {
transform: rotate(45deg);
}
.btn-next {
right: 0;
}
@media all and (max-width: 1024px) {
.btn-next {
right: 40%;
}
}
.btn-next:before {
transform: rotate(45deg);
}
.btn-next:after {
transform: rotate(-45deg);
}
.slick-dots {
position: absolute;
bottom: -30px;
display: block;
width: 100%;
padding: 0;
list-style: none;
text-align: center;
}
@media all and (max-width: 1024px) {
.slick-dots {
display: none !important;
}
}
.slick-dots li {
position: relative;
display: inline-block;
width: 6px;
height: 6px;
margin: 0 5px;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
display: none;
}
.slick-dots li:before {
top: 1px;
transition: all 0.5s;
content: '';
width: 6px;
height: 6px;
border-radius: 50px;
background-color: #c17f31;
position: absolute;
}
.slick-dots li.slick-active:before {
top: 0;
width: 8px;
height: 8px;
margin-left: -2px;
background-color: #008aff;
}
.steps {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
@media all and (max-width: 1200px) {
.steps {
justify-content: space-around;
}
}
.step {
width: 200px;
text-align: center;
}
@media all and (max-width: 1200px) {
.step {
margin-bottom: 30px;
}
}
.step-img {
position: relative;
display: inline-block;
}
@media all and (max-width: 1200px) {
.step-img:after {
display: none;
}
}
.step-img:after {
position: absolute;
content: '';
top: 50%;
right: -186px;
transform: translateX(-50%);
width: 100%;
border: 2px dashed #36a7da;
}
.step:last-child .step-img:after {
display: none;
}
.step-text {
margin-top: 30px;
font-size: 16px;
}
.types {
position: relative;
min-height: 1000px;
background-color: #000;
}
.types-list {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
@media all and (max-width: 768px) {
.types-list {
flex-direction: column;
}
}
.type {
position: relative;
padding: 50px 30px 0 30px;
width: 30%;
height: 315px;
background-color: #fff;
color: #000;
box-shadow: 0 0 10px 5px #fff;
box-sizing: border-box;
}
@media all and (max-width: 1024px) {
.type {
width: 48%;
margin-bottom: 40px;
}
}
@media all and (max-width: 768px) {
.type {
width: 100%;
}
}
.type-title {
display: inline-block;
margin-bottom: 60px;
font-size: 20px;
text-transform: uppercase;
}
.type-text {
font-size: 16px;
}
.type-button-wrap {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
}
.type-button {
width: 100%;
height: 74px;
line-height: 74px;
color: #fff;
font-size: 16px;
text-transform: uppercase;
text-decoration: underline;
background-image: linear-gradient(to right top, #eb413a, #f14c32, #f75728, #fb631b, #fe6f04);
}
.feedback {
position: relative;
min-height: 1000px;
background-color: #fff;
}
.feedback .heading-title {
color: #000;
}
.feedback-list {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
.feedback-item {
width: 23%;
}
@media all and (max-width: 768px) {
.feedback-item {
width: 49%;
margin-bottom: 20px;
}
}
@media all and (max-width: 576px) {
.feedback-item {
width: 100%;
}
}
.feedback-image {
width: 100%;
margin-bottom: 40px;
}
.feedback-info .name {
display: block;
margin-bottom: 10px;
font-size: 22px;
}
.feedback-info .city {
font-size: 20px;
color: #858585;
}
.feedback-text {
display: inline-block;
margin: 10px 0;
font-size: 16px;
}
.request {
padding: 60px 90px;
text-align: center;
border: 1px solid #fff;
}
@media all and (max-width: 1024px) {
.request {
padding: 60px;
}
}
@media all and (max-width: 576px) {
.request {
padding: 30px;
}
}
.request-form {
position: relative;
display: flex;
flex-direction: row;
justify-content: space-around;
flex-wrap: wrap;
}
@media all and (max-width: 768px) {
.request-form {
flex-direction: column;
}
}
.request-icon {
position: absolute;
top: 10px;
right: 10px;
}
.request-title {
display: block;
margin-bottom: 40px;
font-size: 25px;
text-transform: uppercase;
}
@media all and (max-width: 576px) {
.request-title {
font-size: 20px;
}
}
.request-btn {
width: 274px;
height: 50px;
line-height: 50px;
font-size: 16px;
color: #fff;
background-color: #c48233;
transition: all 0.3s ease-in-out;
box-shadow: 0 0 8px 5px rgba(196,130,51,0.75);
}
.request-btn:hover {
background: #9d6829;
}
.request-input {
padding: 0 10px;
margin-bottom: 10px;
width: 260px;
height: 40px;
line-height: 40px;
font-size: 16px;
color: #fff;
background-color: transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid #5b5c5b;
box-sizing: border-box;
}
@media all and (max-width: 768px) {
.request-input {
width: 100%;
}
}
.request-action {
margin-top: 40px;
} | 0.353094 | 0.054274 |
header{
width: 100%;
height: 10vw;
position: relative;
background-image: url("https://static.vecteezy.com/system/resources/previews/002/292/582/non_2x/elegant-black-and-gold-banner-background-free-vector.jpg");
background-repeat: no-repeat;
background-size:100% 100%;
text-align: center;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#profile{
top: 0.8vw;
width: 4%;
height: auto;
border-radius: 50%;
position: relative;
border: 0.1vw solid #000;
transition: transform .2s;
}
header #profile:hover h1{
font-size: 10vw;
}
header h1{
color: white;
font-size: 2vw;
font-weight: bold;
position: relative;
top: 1vw;
-webkit-text-stroke-width: 0.05vw;
-webkit-text-stroke-color: black;
}
header h2{
top: 1vw;
text-align: center;
position: relative;
color: white;
font-size: 1vw;
}
body{
background-color: #DCD9D4;
background-image: linear-gradient(to bottom, rgba(255,255,255,0.50) 0%, rgba(0,0,0,0.50) 100%), radial-gradient(at 50% 0%, rgba(255,255,255,0.10) 0%, rgba(0,0,0,0.50) 50%);
background-blend-mode: soft-light,screen;
background-repeat: no-repeat;
background-attachment: fixed;
}
#hero{
background-image: linear-gradient(to top, #1a1b1f, #212528);
width: 45vw;
margin-left: auto;
margin-right: auto;
height: 21vw;
position: relative;
z-index: 1;
box-shadow: inset 0 0.1vh 0.1vh rgb(255 255 255 / 20%);
border: 0.1vh solid #000;
}
main{
position: relative;
padding-top: 1vw;
color: #EEEDE7;
}
section{
border: 0.5vw solid #212528;
margin: 1vw 1vw;
color: black;
margin-top: 1vw;
padding: 1vw 2vw;
}
section p{
font-size: 1.5vw;
text-align: center;
}
section ol li{
font-size: 1vw;
padding-top: 1vw;
}
section ol{
padding-bottom: 1vw;
display: flex;
justify-content: center;
justify-content: space-between;
flex-wrap: wrap;
}
section div{
margin-left: 0vw;
}
section div li{
text-align: center;
}
section ol img{
width: 16vw;
height: 10vw;
transition: .5s ease;
backface-visibility: hidden;
}
section ol img:hover{
opacity: 0.3;
position:relative;
width:500px;
height:300px;
display:block;
}
.text {
background-color: #04AA6D;
color: white;
font-size: 16px;
line-height: 2vw;
text-decoration: none;
}
.middle {
transition: .5s ease;
opacity: 0;
position: relative;
top: -9vw;
text-align: center;
height: 0vw;
}
.container:hover .middle{
opacity: 1;
}
.container:hover img{
opacity: 0.3;
position:relative;
width:500px;
height:300px;
display:block;
}
.container{
margin-top: 1vw;
}
.bioClass{
display:flex;
margin-top: 3vw;
/* margin-left: 1vw; */
font-size: 1.2vw;
/* justify-content: space-evenly; */
}
#hero ul{
}
.bioClass h2{
width: 19%;
text-align: right;
}
.bioClass p {
font-size: 1vw;
padding-left: 1vw;
}
.lineh{
line-height: 2vw;
}
/* .bioClass p{
width: 75%;
} */ | CSS/style.css | header{
width: 100%;
height: 10vw;
position: relative;
background-image: url("https://static.vecteezy.com/system/resources/previews/002/292/582/non_2x/elegant-black-and-gold-banner-background-free-vector.jpg");
background-repeat: no-repeat;
background-size:100% 100%;
text-align: center;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#profile{
top: 0.8vw;
width: 4%;
height: auto;
border-radius: 50%;
position: relative;
border: 0.1vw solid #000;
transition: transform .2s;
}
header #profile:hover h1{
font-size: 10vw;
}
header h1{
color: white;
font-size: 2vw;
font-weight: bold;
position: relative;
top: 1vw;
-webkit-text-stroke-width: 0.05vw;
-webkit-text-stroke-color: black;
}
header h2{
top: 1vw;
text-align: center;
position: relative;
color: white;
font-size: 1vw;
}
body{
background-color: #DCD9D4;
background-image: linear-gradient(to bottom, rgba(255,255,255,0.50) 0%, rgba(0,0,0,0.50) 100%), radial-gradient(at 50% 0%, rgba(255,255,255,0.10) 0%, rgba(0,0,0,0.50) 50%);
background-blend-mode: soft-light,screen;
background-repeat: no-repeat;
background-attachment: fixed;
}
#hero{
background-image: linear-gradient(to top, #1a1b1f, #212528);
width: 45vw;
margin-left: auto;
margin-right: auto;
height: 21vw;
position: relative;
z-index: 1;
box-shadow: inset 0 0.1vh 0.1vh rgb(255 255 255 / 20%);
border: 0.1vh solid #000;
}
main{
position: relative;
padding-top: 1vw;
color: #EEEDE7;
}
section{
border: 0.5vw solid #212528;
margin: 1vw 1vw;
color: black;
margin-top: 1vw;
padding: 1vw 2vw;
}
section p{
font-size: 1.5vw;
text-align: center;
}
section ol li{
font-size: 1vw;
padding-top: 1vw;
}
section ol{
padding-bottom: 1vw;
display: flex;
justify-content: center;
justify-content: space-between;
flex-wrap: wrap;
}
section div{
margin-left: 0vw;
}
section div li{
text-align: center;
}
section ol img{
width: 16vw;
height: 10vw;
transition: .5s ease;
backface-visibility: hidden;
}
section ol img:hover{
opacity: 0.3;
position:relative;
width:500px;
height:300px;
display:block;
}
.text {
background-color: #04AA6D;
color: white;
font-size: 16px;
line-height: 2vw;
text-decoration: none;
}
.middle {
transition: .5s ease;
opacity: 0;
position: relative;
top: -9vw;
text-align: center;
height: 0vw;
}
.container:hover .middle{
opacity: 1;
}
.container:hover img{
opacity: 0.3;
position:relative;
width:500px;
height:300px;
display:block;
}
.container{
margin-top: 1vw;
}
.bioClass{
display:flex;
margin-top: 3vw;
/* margin-left: 1vw; */
font-size: 1.2vw;
/* justify-content: space-evenly; */
}
#hero ul{
}
.bioClass h2{
width: 19%;
text-align: right;
}
.bioClass p {
font-size: 1vw;
padding-left: 1vw;
}
.lineh{
line-height: 2vw;
}
/* .bioClass p{
width: 75%;
} */ | 0.432543 | 0.10235 |
body {
padding-top: 70px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
font-family: 'Josefin Slab', serif;
background-color: black;
color: white;
padding-top: 0px;
}
footer {
margin: 50px 0;
}
#logo{
font-family: 'Tangerine', cursive;
font-size: 42px;
}
.navbar{
background-color: black;
}
#fade-in-1{
display: none;
}
.anim1, .anim2{
opacity: 0;
}
#social{
font-size: 25px;
margin-top: 13px;
}
#navegacao{
position: fixed;
width: 100%;
background-color: orange;
}
a, a:hover, a:focus, a:visited{
color:white;
text-decoration: none;
}
.modal-content{
background-color: #3279b6;
}
#github-button{
background-color: #ca8404;
}
#access-button{
background-color: greenyellow;
}
#code-icon{
font-size: 40px;
}
.modal-body{
text-align: center;
}
.skills{
background-color: #000;
padding-bottom: 50px;
}
.skills-table{
margin: auto;
}
.skill-col{
text-align: center;
}
.last-row{
padding-bottom: 30px;
}
.menu-item{
font-size: 20px;
padding-right: 10px;
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
color: white;
}
.navbar-default .navbar-nav>li>a {
color: white;
cursor: pointer;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:visited{
color: white;
}
.titulo_projeto{
color: white;
font-weight: 700;
}
.view_project{
background-color: #ca8404;
padding: 5px;
padding-left: 10px;
border-radius: 20px 0px 20px 0px;
cursor: pointer;
border: solid 1px white;
}
.img_com_bordas{
border-radius: 15px;
/*-webkit-filter: saturate(0.1) drop-shadow(5px 5px 2px #ca8404);
filter: saturate(0.1) drop-shadow(5px 5px 2px grey); */
}
.transition{
background-image: url(../assets/transition.jpg);
height: 200px;
filter: drop-shadow(0px 10px 5px grey);
margin-top: 30px;
margin-bottom: 20px;
}
/* Rectangle In */
.hvr-rectangle-in {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
position: relative;
background: #ca8404;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: black;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
color: white;
}
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.jscript{
background-image: url('../assets/jscriptbg.jpg');
background-size: cover;
border-top: solid white 2px;
}
.jscript>h1{
color: orange;
}
.opacBox{
background-color: black;
opacity: 0.7;
padding-top: 1px;
padding-bottom: 1px;
}
.jscripttool{
height:100px;
background-color: black;
opacity: 0.7;
margin: 10px;
border-radius: 15%;
}
.jscripttool>p{
font-size: 20px;
}
input{
color: black;
}
/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
50% {
background-color: rgba(32, 152, 209, 0.75);
}
}
@keyframes hvr-back-pulse {
50% {
background-color: rgba(32, 152, 209, 0.75);
}
}
.hvr-back-pulse {
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
overflow: hidden;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
-webkit-transition-property: color, background-color;
transition-property: color, background-color;
}
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
-webkit-animation-name: hvr-back-pulse;
animation-name: hvr-back-pulse;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
background-color: #2098D1;
background-color: #2098d1;
color: white;
}
/*LOADER*/
@import url(http://fonts.googleapis.com/css?family=Julius+Sans+One);
html{width: 100%;height: 100%;}
body{margin: 0px;padding: 0px;background-color: #111;}
.eye{
width: 20px; height: 8px;
background-color: #eee;
border-radius:0px 0px 20px 20px;
position: relative;
top: 40px;
left: 10px;
box-shadow: 40px 0px 0px 0px #eee;
}
.head{
-webkit-backface-visibility: hidden;
position: relative;
margin: -250px auto;
width: 80px; height: 80px;
background-color: #111;
border-radius:50px;
box-shadow: inset -4px 2px 0px 0px #eee;
-webkit-animation:node 1.5s infinite alternate;
-webkit-animation-timing-function:ease-out;
}
.body{
position: relative;
margin: 90px auto;
width: 140px; height: 120px;
background-color: #111;
border-radius: 50px/25px ;
box-shadow: inset -5px 2px 0px 0px #eee;
-webkit-animation:node2 1.5s infinite alternate;
-webkit-animation-timing-function:ease-out;
}
@-webkit-keyframes node
{
0%{ top:0px; }
50%{ top:10px; }
100% { top:0px;}
}
@-webkit-keyframes node2
{
0%{ top:-5px; }
50%{ top:10px; }
100% { top:-5px;}
}
.circ{
-webkit-backface-visibility: hidden;
margin: 60px auto;
width: 180px; height: 180px;
background-color: #111;
border-radius: 0px 0px 50px 50px;
position: relative;
z-index: -1;
left: 0%;
top: 20%;
overflow: hidden;
}
.hands{
-webkit-backface-visibility: hidden;
margin-top: 140px;
width: 120px;height: 120px;
position: absolute;
background-color: #111;
border-radius:20px;
box-shadow:-1px -4px 0px 0px #eee;
-webkit-transform:rotate(45deg);
top:75%;left: 16%;
z-index: 1;
-webkit-animation:node2 1.5s infinite alternate;
-webkit-animation-timing-function:ease-out;
}
.load{ position: absolute;
width: 100px; height: 20px;
margin: -10px auto;
-webkit-font-smoothing: antialiased;
font-family: 'Julius Sans One', sans-serif;
font-size:30px;
font-weight:400;
color:#eee;
left: 10%;
top: 5%;
} | css/1-col-portfolio.css | body {
padding-top: 70px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
font-family: 'Josefin Slab', serif;
background-color: black;
color: white;
padding-top: 0px;
}
footer {
margin: 50px 0;
}
#logo{
font-family: 'Tangerine', cursive;
font-size: 42px;
}
.navbar{
background-color: black;
}
#fade-in-1{
display: none;
}
.anim1, .anim2{
opacity: 0;
}
#social{
font-size: 25px;
margin-top: 13px;
}
#navegacao{
position: fixed;
width: 100%;
background-color: orange;
}
a, a:hover, a:focus, a:visited{
color:white;
text-decoration: none;
}
.modal-content{
background-color: #3279b6;
}
#github-button{
background-color: #ca8404;
}
#access-button{
background-color: greenyellow;
}
#code-icon{
font-size: 40px;
}
.modal-body{
text-align: center;
}
.skills{
background-color: #000;
padding-bottom: 50px;
}
.skills-table{
margin: auto;
}
.skill-col{
text-align: center;
}
.last-row{
padding-bottom: 30px;
}
.menu-item{
font-size: 20px;
padding-right: 10px;
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
color: white;
}
.navbar-default .navbar-nav>li>a {
color: white;
cursor: pointer;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:visited{
color: white;
}
.titulo_projeto{
color: white;
font-weight: 700;
}
.view_project{
background-color: #ca8404;
padding: 5px;
padding-left: 10px;
border-radius: 20px 0px 20px 0px;
cursor: pointer;
border: solid 1px white;
}
.img_com_bordas{
border-radius: 15px;
/*-webkit-filter: saturate(0.1) drop-shadow(5px 5px 2px #ca8404);
filter: saturate(0.1) drop-shadow(5px 5px 2px grey); */
}
.transition{
background-image: url(../assets/transition.jpg);
height: 200px;
filter: drop-shadow(0px 10px 5px grey);
margin-top: 30px;
margin-bottom: 20px;
}
/* Rectangle In */
.hvr-rectangle-in {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
position: relative;
background: #ca8404;
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: black;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
color: white;
}
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.jscript{
background-image: url('../assets/jscriptbg.jpg');
background-size: cover;
border-top: solid white 2px;
}
.jscript>h1{
color: orange;
}
.opacBox{
background-color: black;
opacity: 0.7;
padding-top: 1px;
padding-bottom: 1px;
}
.jscripttool{
height:100px;
background-color: black;
opacity: 0.7;
margin: 10px;
border-radius: 15%;
}
.jscripttool>p{
font-size: 20px;
}
input{
color: black;
}
/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
50% {
background-color: rgba(32, 152, 209, 0.75);
}
}
@keyframes hvr-back-pulse {
50% {
background-color: rgba(32, 152, 209, 0.75);
}
}
.hvr-back-pulse {
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px transparent;
overflow: hidden;
-webkit-transition-duration: 0.5s;
transition-duration: 0.5s;
-webkit-transition-property: color, background-color;
transition-property: color, background-color;
}
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
-webkit-animation-name: hvr-back-pulse;
animation-name: hvr-back-pulse;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
background-color: #2098D1;
background-color: #2098d1;
color: white;
}
/*LOADER*/
@import url(http://fonts.googleapis.com/css?family=Julius+Sans+One);
html{width: 100%;height: 100%;}
body{margin: 0px;padding: 0px;background-color: #111;}
.eye{
width: 20px; height: 8px;
background-color: #eee;
border-radius:0px 0px 20px 20px;
position: relative;
top: 40px;
left: 10px;
box-shadow: 40px 0px 0px 0px #eee;
}
.head{
-webkit-backface-visibility: hidden;
position: relative;
margin: -250px auto;
width: 80px; height: 80px;
background-color: #111;
border-radius:50px;
box-shadow: inset -4px 2px 0px 0px #eee;
-webkit-animation:node 1.5s infinite alternate;
-webkit-animation-timing-function:ease-out;
}
.body{
position: relative;
margin: 90px auto;
width: 140px; height: 120px;
background-color: #111;
border-radius: 50px/25px ;
box-shadow: inset -5px 2px 0px 0px #eee;
-webkit-animation:node2 1.5s infinite alternate;
-webkit-animation-timing-function:ease-out;
}
@-webkit-keyframes node
{
0%{ top:0px; }
50%{ top:10px; }
100% { top:0px;}
}
@-webkit-keyframes node2
{
0%{ top:-5px; }
50%{ top:10px; }
100% { top:-5px;}
}
.circ{
-webkit-backface-visibility: hidden;
margin: 60px auto;
width: 180px; height: 180px;
background-color: #111;
border-radius: 0px 0px 50px 50px;
position: relative;
z-index: -1;
left: 0%;
top: 20%;
overflow: hidden;
}
.hands{
-webkit-backface-visibility: hidden;
margin-top: 140px;
width: 120px;height: 120px;
position: absolute;
background-color: #111;
border-radius:20px;
box-shadow:-1px -4px 0px 0px #eee;
-webkit-transform:rotate(45deg);
top:75%;left: 16%;
z-index: 1;
-webkit-animation:node2 1.5s infinite alternate;
-webkit-animation-timing-function:ease-out;
}
.load{ position: absolute;
width: 100px; height: 20px;
margin: -10px auto;
-webkit-font-smoothing: antialiased;
font-family: 'Julius Sans One', sans-serif;
font-size:30px;
font-weight:400;
color:#eee;
left: 10%;
top: 5%;
} | 0.326808 | 0.063773 |