mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-28 15:14:22 +01:00
2015 lines
No EOL
36 KiB
CSS
2015 lines
No EOL
36 KiB
CSS
/*=================================================================
|
|
Template Name: Rinkusu - Dark
|
|
Author: Aroy (https://aroy-art.com)
|
|
=================================================================*/
|
|
:root {
|
|
--text-light: #bad8dd;
|
|
--text-darker: #000;
|
|
|
|
--glitched-duration: 0.9s;
|
|
--glitched-long-duration: 3s;
|
|
--yellow-color: #f9f002;
|
|
--yellow-color-opacity: #f9f00242;
|
|
--orange-color: #ff9800;
|
|
--border-color: #8ae66e;
|
|
--red-color: #ff003c;
|
|
--blue-color: #136377;
|
|
--green-color: #446d44;
|
|
--purple-color: purple;
|
|
|
|
--neon-color: #39ff14;
|
|
--neon-pink-color: #ff00d4;
|
|
|
|
--bg-light: #0f1e31;
|
|
--bg-dark: #040b1e;
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: "BlackOpsOne";
|
|
src: url(/fonts/BlackOpsOne-Regular.ttf);
|
|
}
|
|
|
|
html {
|
|
background-color: #040b1e;
|
|
color: var(--text-light, #bad8dd);
|
|
scrollbar-color: #ff00d4 #040b1e;
|
|
scrollbar-width: thin;
|
|
scroll-behavior: smooth;
|
|
scroll-padding-top: 82px;
|
|
}
|
|
|
|
html:not([hide-scrollbar]) ::-webkit-scrollbar-thumb {
|
|
background: var(--main-color, #ff00d4) !important;
|
|
}
|
|
|
|
html:not([hide-scrollbar]) ::-webkit-scrollbar {
|
|
width: 4px !important;
|
|
height: 4px !important;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #040b1e !important;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--main-color, #ff00d4) !important;
|
|
}
|
|
|
|
body {
|
|
background-color: #040b1e;
|
|
font-family: "Roboto Mono", sans-serif;
|
|
color: var(--text-light, #bad8dd);
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-weight: 500;
|
|
font-family: "BlackOpsOne", sans-serif;
|
|
color: #afbac4;
|
|
}
|
|
|
|
p {
|
|
font-family: "Roboto Mono", sans-serif;
|
|
font-weight: normal;
|
|
}
|
|
|
|
strong {
|
|
font-weight: strong;
|
|
font-size: 1.1rem;
|
|
color: darkturquoise;
|
|
}
|
|
|
|
[scroll-behavior=smooth] {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
pre {
|
|
color: #afbac4;
|
|
}
|
|
|
|
|
|
/*=================================================================
|
|
Basic Setup
|
|
=================================================================*/
|
|
::-moz-selection {
|
|
/* Firefox Code */
|
|
color: #57cbcc;
|
|
font-weight: bold;
|
|
background: #750cf2;
|
|
}
|
|
|
|
::selection {
|
|
color: #57cbcc;
|
|
font-weight: bold;
|
|
background: #750cf2;
|
|
}
|
|
|
|
hr {
|
|
border-top: 1px solid rgba(255, 255, 255, .1);
|
|
}
|
|
|
|
figure {
|
|
margin: 0;
|
|
}
|
|
|
|
iframe {
|
|
border: 0;
|
|
}
|
|
|
|
a {
|
|
color: #c910c9;
|
|
background-image: linear-gradient(currentColor, currentColor);
|
|
background-position: 0% 100%;
|
|
background-repeat: no-repeat;
|
|
background-size: 0% 2px;
|
|
transition: all .3s ease-in 0s;
|
|
}
|
|
|
|
a,
|
|
a:focus,
|
|
a:hover {
|
|
text-decoration: none;
|
|
outline: 0;
|
|
}
|
|
|
|
a:focus,
|
|
a:hover {
|
|
color: #57cbcc;
|
|
background-size: 100% 2px;
|
|
}
|
|
|
|
p img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
blockquote {
|
|
display: block;
|
|
padding: 3px 2px 3px 3px;
|
|
margin: 0;
|
|
font-family: amiri,times new roman,georgia,serif;
|
|
font-size: 1.25rem;
|
|
font-style: italic;
|
|
position: relative;
|
|
background-color: #046293;
|
|
border-width: .1rem .1rem .1rem .25rem;
|
|
border-radius: 0 5px 0 5px;
|
|
border-style: solid;
|
|
}
|
|
|
|
code:not(pre.chroma>code) {
|
|
font-size: .875em;
|
|
color: #d63384;
|
|
word-wrap: break-word;
|
|
background-color: #212121;
|
|
padding: 2px;
|
|
border: #14171c 2px solid;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border: 1px solid #750cf2;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table, tr:nth-of-type(odd) {
|
|
background: #020120;
|
|
}
|
|
|
|
table, td {
|
|
border-width: 0 1px 0 1px;
|
|
border-style: dashed;
|
|
font-size: 16px;
|
|
}
|
|
|
|
table, th {
|
|
border: 1px solid #750cf2;
|
|
background: #040b2e;
|
|
}
|
|
|
|
table, td, th {
|
|
padding: 6px;
|
|
}
|
|
|
|
ol li::marker {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.kill-margin-bottom {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.margin-top-20 {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.padding-0 {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.md-50 {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.btn {
|
|
background-color: transparent;
|
|
color: #fff;
|
|
padding: 10px 30px;
|
|
border-radius: 5px;
|
|
transition: all .3s ease-in 0s;
|
|
}
|
|
|
|
.btn:focus {
|
|
color: #ddd;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.btn-transparent {
|
|
border: 1px solid #4e595f;
|
|
}
|
|
|
|
.btn-transparent:hover,
|
|
.btn-transparent:focus {
|
|
background-color: #ff00b31f;
|
|
border: 1px solid transparent;
|
|
color: #fff;
|
|
}
|
|
|
|
.border-Rinkusu {
|
|
border-top: 2px solid rgba(236, 239, 241, 0.07);
|
|
height: 1px;
|
|
margin: 15px auto 0;
|
|
position: relative;
|
|
width: 30%;
|
|
}
|
|
|
|
.border-Rinkusu:before {
|
|
background-color: #fff;
|
|
content: '';
|
|
height: 6px;
|
|
left: 50%;
|
|
margin-left: -20px;
|
|
position: absolute;
|
|
top: -4px;
|
|
width: 50px;
|
|
background-color: #57cbcc;
|
|
}
|
|
|
|
.border-glow {
|
|
box-shadow: 0 4px 8px 0 rgb(4, 0, 255), 0 6px 20px 0 rgb(204, 0, 255);
|
|
}
|
|
.border-glow-2 {
|
|
box-shadow: 8px -8px 10px 0px rgb(4, 0, 255), -8px 8px 10px 0px rgb(204, 0, 255);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.border-gradient {
|
|
position: relative;
|
|
width: 450px;
|
|
padding: 40px 0;
|
|
font-size: 5em;
|
|
color: #fff;
|
|
text-align: center;
|
|
letter-spacing: 5px;
|
|
background-color: #020117;
|
|
}
|
|
|
|
.border-gradient::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: -5px;
|
|
left: -5px;
|
|
right: -5px;
|
|
bottom: -5px;
|
|
background: linear-gradient(45deg, #ffd800, #ff5520, #750cf2, #0cbcf2);
|
|
z-index: -1;
|
|
}
|
|
|
|
.border-gradient::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, #ffd800, #ff5520, #750cf2, #0cbcf2);
|
|
z-index: -2;
|
|
filter: blur(40px);
|
|
}
|
|
|
|
.color {
|
|
color: #6cb670;
|
|
}
|
|
|
|
.sub-title {
|
|
padding: 0 0 50px;
|
|
}
|
|
|
|
.sub-title>h3 {
|
|
border-left: 3px solid #ddd;
|
|
border-right: 3px solid #ddd;
|
|
display: inline-block;
|
|
padding: 5px 25px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.btn.active:focus,
|
|
.btn:active:focus,
|
|
.btn:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.bg-one {
|
|
background-color: #0f1e31;
|
|
padding-top: 16px;
|
|
border-radius: 18px;
|
|
}
|
|
|
|
.bg-two {
|
|
background: #0f1e31;
|
|
}
|
|
|
|
.parallax-section {
|
|
background-attachment: fixed !important;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.no-padding {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.inline-block {
|
|
display: inline-block;
|
|
}
|
|
|
|
.btn {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn.focus,
|
|
.btn:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.btn-main {
|
|
background: #57cbcc;
|
|
color: #fff;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
padding: 10px 35px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.btn-main:hover {
|
|
background: #2c9091;
|
|
color: #fff;
|
|
}
|
|
|
|
.mt-20 {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.mb-20 {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.section {
|
|
padding: 100px 0;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.section {
|
|
padding: 50px 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.section {
|
|
padding: 80px 0;
|
|
}
|
|
}
|
|
|
|
.section-sm {
|
|
padding: 70px 0;
|
|
}
|
|
|
|
.section-xs {
|
|
padding: 50px 0;
|
|
}
|
|
|
|
.btn:focus {
|
|
color: #ddd;
|
|
}
|
|
|
|
#home {
|
|
position: relative;
|
|
}
|
|
|
|
.btn.active:focus,
|
|
.btn:active:focus,
|
|
.btn:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.parallax-section {
|
|
background-attachment: fixed;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.preloader {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #2c2f36;
|
|
z-index: 9999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.title {
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
.title h2 {
|
|
text-transform: capitalize;
|
|
font-weight: 700;
|
|
font-size: 38px;
|
|
color: #fff;
|
|
}
|
|
|
|
.title h2 span {
|
|
color: #57cbcc;
|
|
}
|
|
|
|
.title p {
|
|
color: #afbac4;
|
|
}
|
|
|
|
.title.title-white h2 {
|
|
color: #fff;
|
|
}
|
|
|
|
.bg-gray {
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
.section-bg {
|
|
background: #040b1e;
|
|
}
|
|
|
|
.overly {
|
|
position: relative;
|
|
}
|
|
|
|
.overly:before {
|
|
content: '';
|
|
background: rgba(0, 0, 0, 0.096);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.breadcrumb {
|
|
background-color: var(--bg-dark, #040b1e);
|
|
}
|
|
|
|
nav[aria-label="breadcrumb"] li:last-child a{
|
|
color: #57cbcc;
|
|
cursor: default;
|
|
}
|
|
|
|
.header-bradcrumb {
|
|
background: transparent;
|
|
}
|
|
|
|
.header-bradcrumb a,
|
|
.header-bradcrumb .active {
|
|
color: #cfcfcf;
|
|
font-weight: 200;
|
|
font-family: "Roboto Mono", sans-serif;
|
|
}
|
|
|
|
.header-bradcrumb a:hover {
|
|
color: #57cbcc;
|
|
}
|
|
|
|
.slick-slide {
|
|
outline: none;
|
|
}
|
|
|
|
/* CSS mfp-with-zoom class */
|
|
.mfp-with-zoom .mfp-container,
|
|
.mfp-with-zoom.mfp-bg {
|
|
opacity: 0;
|
|
transition: all 0.3s ease-out;
|
|
}
|
|
|
|
.mfp-with-zoom.mfp-ready .mfp-container {
|
|
opacity: 1;
|
|
}
|
|
|
|
.mfp-with-zoom.mfp-ready.mfp-bg {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.mfp-with-zoom.mfp-removing .mfp-container,
|
|
.mfp-with-zoom.mfp-removing.mfp-bg {
|
|
opacity: 0;
|
|
}
|
|
|
|
.logo {
|
|
margin-top: 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.single-page-header {
|
|
background-image: url("../images/about/about-header.jpg");
|
|
background-size: cover;
|
|
padding: 140px 0 70px;
|
|
text-align: center;
|
|
color: #fff;
|
|
position: relative;
|
|
}
|
|
|
|
.single-page-header:before {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
position: absolute;
|
|
content: '';
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.post-single-content h1:not(h1:first-child),
|
|
.post-single-content h2:not(h2:first-child),
|
|
.post-single-content h3:not(h3:first-child),
|
|
.post-single-content h4:not(h4:first-child),
|
|
.post-single-content h5:not(h5:first-child),
|
|
.post-single-content h6:not(h6:first-child) {
|
|
margin-top: 32px;
|
|
}
|
|
|
|
/*=================================================================
|
|
Shortcodes
|
|
=================================================================*/
|
|
|
|
details {
|
|
margin: 1rem auto;
|
|
padding: 0 1rem;
|
|
/* width: 35em; */
|
|
max-width: calc(100% - 2rem);
|
|
position: relative;
|
|
border: 1px solid #78909C;
|
|
border-radius: 6px;
|
|
background-color: #040b1e;
|
|
color: #c9a5e7;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
details > :last-child {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
details::before {
|
|
width: 100%;
|
|
height: 100%;
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
border-radius: inherit;
|
|
opacity: 0.15;
|
|
box-shadow: 0 0.25em 0.5em #263238;
|
|
pointer-events: none;
|
|
transition: opacity 0.2s;
|
|
z-index: -1;
|
|
}
|
|
|
|
details[open] {
|
|
background-color: #040b1e;
|
|
}
|
|
|
|
details[open]::before {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
summary {
|
|
padding: 1rem 2em 1rem 0;
|
|
display: block;
|
|
position: relative;
|
|
font-size: 1.33em;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
summary::before, summary::after {
|
|
width: 0.75em;
|
|
height: 2px;
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
content: "";
|
|
background-color: currentColor;
|
|
text-align: right;
|
|
transform: translateY(-50%);
|
|
transition: transform 0.2s ease-in-out;
|
|
}
|
|
|
|
summary::after {
|
|
transform: translateY(-50%) rotate(90deg);
|
|
}
|
|
|
|
[open] summary::after {
|
|
transform: translateY(-50%) rotate(180deg);
|
|
}
|
|
|
|
summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
/*=================================================================
|
|
Code Blocks
|
|
=================================================================*/
|
|
|
|
.highlight-wrapper {
|
|
display: block;
|
|
margin: 2.5em 0 1em;;
|
|
}
|
|
|
|
.highlight {
|
|
position: relative;
|
|
z-index: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: 0 4px 4px 4px;
|
|
border: 2px purple solid;
|
|
}
|
|
|
|
.highlight > .chroma {
|
|
color: #d0d0d0;
|
|
background-color: #212121;
|
|
position: static;
|
|
z-index: 1;
|
|
border-top-left-radius: 0;
|
|
border-radius: 0 4px 4px 4px;
|
|
padding: 10px;
|
|
overflow: auto;
|
|
}
|
|
|
|
pre.chroma {
|
|
margin: 0;
|
|
background-color: #212121;
|
|
}
|
|
|
|
.chroma .lntable {
|
|
display: table;
|
|
width: 100%;
|
|
padding: 0 0 5px;
|
|
|
|
}
|
|
|
|
.chroma .lntd:first-child {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.chroma .lntd:last-child {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.chroma [data-lang]:before {
|
|
position:absolute;
|
|
z-index:0;
|
|
top: -26px;
|
|
left: 0;
|
|
content:attr(data-lang);
|
|
font-size:1em;
|
|
font-weight:700;
|
|
color: #00fff9;
|
|
background-color: #575757;
|
|
border-radius: 4px 4px 0 0;
|
|
border:none;
|
|
padding:5px 10px 7px;
|
|
line-height:1;
|
|
}
|
|
|
|
.copy-code-button {
|
|
position: absolute;
|
|
z-index: 2;
|
|
right: 0;
|
|
top: 0;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
line-height: 14px;
|
|
letter-spacing: 0.5px;
|
|
width: 65px;
|
|
color: #232326;
|
|
background-color: #7f7f7f;
|
|
border: 1.25px solid #232326;
|
|
border-radius: 0 4px 0 4px;
|
|
white-space: nowrap;
|
|
padding: 4px 4px 5px 4px;
|
|
margin: 0 0 0 1px;
|
|
cursor: pointer;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.copy-code-button:hover,
|
|
.copy-code-button:focus,
|
|
.copy-code-button:active,
|
|
.copy-code-button:active:hover {
|
|
color: #222225;
|
|
background-color: #b3b3b3;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.copyable-text-area {
|
|
position: absolute;
|
|
height: 0;
|
|
z-index: -1;
|
|
opacity: .01;
|
|
}
|
|
|
|
/*=================================================================
|
|
Tags
|
|
=================================================================*/
|
|
.tagContainer{
|
|
margin: 16px
|
|
}
|
|
|
|
.tags {
|
|
display: inline-block;
|
|
margin: 4px 0 4px 0;
|
|
background-color: #00eeff;
|
|
border-radius: 8px;
|
|
padding: 0.2em;
|
|
}
|
|
|
|
.tags:hover {
|
|
background-color: #046293;
|
|
}
|
|
|
|
.tagcloud {
|
|
text-align: center;
|
|
margin: 20px 0px 80px;
|
|
}
|
|
|
|
|
|
/*=================================================================
|
|
Navigation
|
|
=================================================================*/
|
|
.navigation {
|
|
background-color: #040b1e;
|
|
margin-top: 10px;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
margin-bottom: 8px;
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
font-family: "BlackOpsOne", sans-serif;
|
|
}
|
|
|
|
.navbar-dark .navbar-nav .active>.nav-link,
|
|
.navbar-dark .navbar-nav .nav-link.active,
|
|
.navbar-dark .navbar-nav .nav-link.show,
|
|
.navbar-dark .navbar-nav .show>.nav-link {
|
|
color: rgba(255,255,255,.75);
|
|
}
|
|
|
|
.navbar-toggler:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
color: #fff;
|
|
background-color: #040b1e;
|
|
border: 1px solid #57cbcc;
|
|
}
|
|
|
|
.dropdown-item {
|
|
color: rgba(255,255,255,.75);
|
|
}
|
|
|
|
.dropdown-item:focus, .dropdown-item:hover {
|
|
color: #f8f9fa;
|
|
text-decoration: none;
|
|
background-color: #0f1e31;
|
|
}
|
|
|
|
.bg-1 {
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.bg-2 {
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.hero-area {
|
|
background-size: cover;
|
|
height: 100vh;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-area:before {
|
|
content: '';
|
|
background: rgba(0, 0, 0, 0.63);
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.hero-area .block {
|
|
text-align: center;
|
|
z-index: 99;
|
|
}
|
|
|
|
.hero-area .block .video-button {
|
|
background: #fff;
|
|
color: #57cbcc;
|
|
display: inline-block;
|
|
height: 60px;
|
|
width: 60px;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.hero-area .block .video-button i {
|
|
line-height: 60px;
|
|
font-size: 20px;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.hero-area .block h1 {
|
|
font-size: 90px;
|
|
color: #fff;
|
|
text-transform: capitalize;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.hero-area .block h1 {
|
|
font-size: 60px;
|
|
}
|
|
}
|
|
|
|
.hero-area .block p {
|
|
color: #fff;
|
|
font-size: 20px;
|
|
width: 70%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero-area .block .btn-transparent {
|
|
margin-top: 40px;
|
|
border-color: #fff;
|
|
padding: 14px 50px;
|
|
font-size: 18px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.hero-area-video {
|
|
height: 100vh;
|
|
position: inherit !important;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-area-video .block {
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-area-video .block h1 {
|
|
font-size: 60px;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero-area-video .block p {
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
letter-spacing: 3px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero-area-video .block .btn-main {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.dark-bg {
|
|
background: rgba(0, 0, 0, 0.76);
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
|
|
|
|
/*=================================================================
|
|
To Top Button
|
|
=================================================================*/
|
|
#content {
|
|
position: relative;
|
|
}
|
|
|
|
#topPerent {
|
|
position: absolute;
|
|
height: calc(100% - 120vh);
|
|
top: 150vh;
|
|
right: 0px;
|
|
width: 65px;
|
|
background-color: #0000;
|
|
}
|
|
|
|
#top {
|
|
position: -webkit-sticky; /* Safari */
|
|
position: sticky;
|
|
top: 92vh;
|
|
background-color: #0cbcf2;
|
|
box-shadow: 2px 2px 2px black;
|
|
padding: 5px 5px 16px 5px;
|
|
border: 1px solid #6bffec;
|
|
border-radius: 50%;
|
|
font-size: 28px;
|
|
display: inline-block;
|
|
height: 38px;
|
|
width: 38px;
|
|
text-align: center;
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
/*=================================================================
|
|
Banner
|
|
=================================================================*/
|
|
.hero-area {
|
|
background-size: cover;
|
|
background-position: bottom left;
|
|
height: 100vh;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-area:before {
|
|
content: '';
|
|
background: rgba(0, 0, 0, 0.63);
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.hero-area .block {
|
|
text-align: center;
|
|
z-index: 99;
|
|
}
|
|
|
|
.hero-area .block .video-button {
|
|
background: #fff;
|
|
color: #57cbcc;
|
|
display: inline-block;
|
|
height: 60px;
|
|
width: 60px;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.hero-area .block .video-button i {
|
|
line-height: 60px;
|
|
font-size: 20px;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.hero-area .block h1 {
|
|
font-size: 90px;
|
|
color: #fff;
|
|
text-transform: capitalize;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.hero-area .block h1 {
|
|
font-size: 60px;
|
|
}
|
|
}
|
|
|
|
.hero-area .block p {
|
|
color: #fff;
|
|
font-size: 20px;
|
|
width: 70%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero-area .block .btn-transparent {
|
|
margin-top: 40px;
|
|
border-color: #fff;
|
|
padding: 14px 50px;
|
|
font-size: 18px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.hero-area-video {
|
|
height: 100vh;
|
|
position: inherit !important;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-area-video .block {
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-area-video .block h1 {
|
|
font-size: 60px;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero-area-video .block p {
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
letter-spacing: 3px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero-area-video .block .btn-main {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
|
|
/*=================================================================
|
|
Banner 2
|
|
=================================================================*/
|
|
.backgroundContainer {
|
|
background-color: #040b1e;
|
|
position: fixed;
|
|
top: 0;
|
|
border: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
/*img.loaded video.loaded {
|
|
opacity: 1;
|
|
transition: opacity 0.4s ease;
|
|
-webkit-transition: opacity 0.4s ease;
|
|
}*/
|
|
|
|
.hero-video {
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
z-index: -9;
|
|
width: auto;
|
|
height: auto;
|
|
position: absolute;
|
|
/*top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);*/
|
|
}
|
|
|
|
/*=================================================================
|
|
About Page
|
|
=================================================================*/
|
|
/* .about-header {
|
|
|
|
} */
|
|
|
|
|
|
/*=================================================================
|
|
404 Page
|
|
=================================================================*/
|
|
|
|
.glitch {
|
|
position: relative;
|
|
color: white;
|
|
font-size: 8em;
|
|
letter-spacing: 0.5em;
|
|
animation: glitch-skew 1s infinite linear alternate-reverse;
|
|
}
|
|
|
|
.glitch::before {
|
|
content: attr(data-text);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 2px;
|
|
text-shadow: -2px 0 #ff00c1;
|
|
clip: rect(44px, 450px, 56px, 0);
|
|
animation: glitch-anim 5s infinite linear alternate-reverse;
|
|
}
|
|
|
|
.glitch::after {
|
|
content: attr(data-text);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: -2px;
|
|
text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
|
|
animation: glitch-anim2 1s infinite linear alternate-reverse;
|
|
}
|
|
|
|
@keyframes glitch-anim {
|
|
0% {
|
|
clip: rect(80px, 9999px, 31px, 0);
|
|
transform: skew(1deg);
|
|
}
|
|
5% {
|
|
clip: rect(87px, 9999px, 12px, 0);
|
|
transform: skew(0.31deg);
|
|
}
|
|
10% {
|
|
clip: rect(34px, 9999px, 13px, 0);
|
|
transform: skew(0.56deg);
|
|
}
|
|
15% {
|
|
clip: rect(82px, 9999px, 74px, 0);
|
|
transform: skew(0.69deg);
|
|
}
|
|
20% {
|
|
clip: rect(1px, 9999px, 72px, 0);
|
|
transform: skew(0.52deg);
|
|
}
|
|
25% {
|
|
clip: rect(35px, 9999px, 54px, 0);
|
|
transform: skew(0.5deg);
|
|
}
|
|
30% {
|
|
clip: rect(62px, 9999px, 2px, 0);
|
|
transform: skew(0.17deg);
|
|
}
|
|
35% {
|
|
clip: rect(6px, 9999px, 28px, 0);
|
|
transform: skew(0.12deg);
|
|
}
|
|
40% {
|
|
clip: rect(50px, 9999px, 85px, 0);
|
|
transform: skew(0.88deg);
|
|
}
|
|
45% {
|
|
clip: rect(34px, 9999px, 53px, 0);
|
|
transform: skew(0.98deg);
|
|
}
|
|
50% {
|
|
clip: rect(15px, 9999px, 58px, 0);
|
|
transform: skew(0.15deg);
|
|
}
|
|
55% {
|
|
clip: rect(20px, 9999px, 68px, 0);
|
|
transform: skew(0.06deg);
|
|
}
|
|
60% {
|
|
clip: rect(77px, 9999px, 52px, 0);
|
|
transform: skew(0.02deg);
|
|
}
|
|
65% {
|
|
clip: rect(20px, 9999px, 11px, 0);
|
|
transform: skew(0.2deg);
|
|
}
|
|
70% {
|
|
clip: rect(97px, 9999px, 57px, 0);
|
|
transform: skew(0.17deg);
|
|
}
|
|
75% {
|
|
clip: rect(1px, 9999px, 36px, 0);
|
|
transform: skew(1deg);
|
|
}
|
|
80% {
|
|
clip: rect(31px, 9999px, 63px, 0);
|
|
transform: skew(0.49deg);
|
|
}
|
|
85% {
|
|
clip: rect(80px, 9999px, 39px, 0);
|
|
transform: skew(0.78deg);
|
|
}
|
|
90% {
|
|
clip: rect(74px, 9999px, 60px, 0);
|
|
transform: skew(0.96deg);
|
|
}
|
|
95% {
|
|
clip: rect(97px, 9999px, 59px, 0);
|
|
transform: skew(0.46deg);
|
|
}
|
|
100% {
|
|
clip: rect(56px, 9999px, 84px, 0);
|
|
transform: skew(0.12deg);
|
|
}
|
|
}
|
|
|
|
@keyframes glitch-anim2 {
|
|
0% {
|
|
clip: rect(39px, 9999px, 61px, 0);
|
|
transform: skew(0.08deg);
|
|
}
|
|
5% {
|
|
clip: rect(13px, 9999px, 77px, 0);
|
|
transform: skew(0.62deg);
|
|
}
|
|
10% {
|
|
clip: rect(16px, 9999px, 14px, 0);
|
|
transform: skew(0.35deg);
|
|
}
|
|
15% {
|
|
clip: rect(83px, 9999px, 24px, 0);
|
|
transform: skew(0.81deg);
|
|
}
|
|
20% {
|
|
clip: rect(70px, 9999px, 14px, 0);
|
|
transform: skew(0.93deg);
|
|
}
|
|
25% {
|
|
clip: rect(43px, 9999px, 88px, 0);
|
|
transform: skew(0.05deg);
|
|
}
|
|
30% {
|
|
clip: rect(60px, 9999px, 63px, 0);
|
|
transform: skew(0.89deg);
|
|
}
|
|
35% {
|
|
clip: rect(35px, 9999px, 11px, 0);
|
|
transform: skew(0.87deg);
|
|
}
|
|
40% {
|
|
clip: rect(10px, 9999px, 4px, 0);
|
|
transform: skew(0.63deg);
|
|
}
|
|
45% {
|
|
clip: rect(56px, 9999px, 51px, 0);
|
|
transform: skew(0.12deg);
|
|
}
|
|
50% {
|
|
clip: rect(22px, 9999px, 21px, 0);
|
|
transform: skew(0.26deg);
|
|
}
|
|
55% {
|
|
clip: rect(45px, 9999px, 80px, 0);
|
|
transform: skew(0.56deg);
|
|
}
|
|
60% {
|
|
clip: rect(65px, 9999px, 18px, 0);
|
|
transform: skew(0.08deg);
|
|
}
|
|
65% {
|
|
clip: rect(71px, 9999px, 89px, 0);
|
|
transform: skew(0.38deg);
|
|
}
|
|
70% {
|
|
clip: rect(89px, 9999px, 98px, 0);
|
|
transform: skew(0.71deg);
|
|
}
|
|
75% {
|
|
clip: rect(63px, 9999px, 3px, 0);
|
|
transform: skew(0.75deg);
|
|
}
|
|
80% {
|
|
clip: rect(4px, 9999px, 68px, 0);
|
|
transform: skew(0.98deg);
|
|
}
|
|
85% {
|
|
clip: rect(22px, 9999px, 85px, 0);
|
|
transform: skew(0.8deg);
|
|
}
|
|
90% {
|
|
clip: rect(28px, 9999px, 58px, 0);
|
|
transform: skew(0.06deg);
|
|
}
|
|
95% {
|
|
clip: rect(70px, 9999px, 12px, 0);
|
|
transform: skew(0.99deg);
|
|
}
|
|
100% {
|
|
clip: rect(11px, 9999px, 87px, 0);
|
|
transform: skew(0.15deg);
|
|
}
|
|
}
|
|
|
|
@keyframes glitch-skew {
|
|
0% {
|
|
transform: skew(4deg);
|
|
}
|
|
10% {
|
|
transform: skew(5deg);
|
|
}
|
|
20% {
|
|
transform: skew(1deg);
|
|
}
|
|
30% {
|
|
transform: skew(1deg);
|
|
}
|
|
40% {
|
|
transform: skew(5deg);
|
|
}
|
|
50% {
|
|
transform: skew(1deg);
|
|
}
|
|
60% {
|
|
transform: skew(0deg);
|
|
}
|
|
70% {
|
|
transform: skew(3deg);
|
|
}
|
|
80% {
|
|
transform: skew(4deg);
|
|
}
|
|
90% {
|
|
transform: skew(5deg);
|
|
}
|
|
100% {
|
|
transform: skew(-1deg);
|
|
}
|
|
}
|
|
|
|
|
|
/*=================================================================
|
|
Footer
|
|
=================================================================*/
|
|
.social-icon {
|
|
padding: 60px 0 35px;
|
|
}
|
|
|
|
.social-icon ul {
|
|
text-align: center;
|
|
}
|
|
|
|
.social-icon ul li {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.social-icon ul li a {
|
|
background-color: #26292e;
|
|
border: 2px solid #57cbcc;
|
|
border-radius: 50%;
|
|
display: block;
|
|
height: 70px;
|
|
width: 70px;
|
|
transition: all 400ms ease-out 0s;
|
|
}
|
|
|
|
.social-icon ul li a:hover {
|
|
background: #57cbcc;
|
|
}
|
|
|
|
.social-icon ul li a:hover i {
|
|
color: #4e0055;
|
|
opacity: 1;
|
|
}
|
|
|
|
.social-icon ul li a i {
|
|
color: #57cbcc;
|
|
display: inline-block;
|
|
font-size: 32px;
|
|
line-height: 70px;
|
|
margin: 0;
|
|
opacity: 0.3;
|
|
transition: all 400ms ease-out 0s;
|
|
}
|
|
|
|
.social-icon-img {
|
|
padding: 10px;
|
|
width: 70%;
|
|
height: auto;
|
|
}
|
|
|
|
.social-icon-img:hover {
|
|
opacity: 60%;
|
|
}
|
|
.social-icon-a{
|
|
padding-bottom: 32px;
|
|
}
|
|
|
|
.copyright {
|
|
padding: 20px 0;
|
|
color: #fff;
|
|
}
|
|
|
|
.copyright img {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.copyright p {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.license {
|
|
color: #7a7a7a;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#scrollUp {
|
|
border: 1px solid #4e595f;
|
|
bottom: 15px;
|
|
color: #fff;
|
|
display: none;
|
|
padding: 8px 12px;
|
|
position: fixed;
|
|
right: 20px;
|
|
z-index: 600;
|
|
}
|
|
|
|
#scrollUp:hover {
|
|
background-color: #57cbcc;
|
|
border: 1px solid #57cbcc;
|
|
}
|
|
|
|
|
|
/*==================================================================
|
|
Latest Posts
|
|
==================================================================*/
|
|
.note {
|
|
background-color: #292F36;
|
|
border: 1px solid #4e595f;
|
|
}
|
|
|
|
.post-block {
|
|
background-color: #0f1e31;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.post-block .content {
|
|
padding: 20px;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.post-block .content h3 {
|
|
margin: 0 0 6px;
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.note .media-wrapper {
|
|
border-bottom: 1px solid #4e595f;
|
|
}
|
|
|
|
.note .excerpt h3 {
|
|
font-size: 20px;
|
|
line-height: 1.5;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.all-post {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
|
|
/*==================================================================
|
|
Portfolio
|
|
==================================================================*/
|
|
.portfolio-filter {
|
|
margin-bottom: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.portfolio-filter .btn {
|
|
outline: 0;
|
|
border: 1px solid rgba(236, 236, 241, 0.07);
|
|
background: transparent;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
padding: 6px 20px;
|
|
font-weight: 700;
|
|
color: #bad8dd;
|
|
transition: .3s all;
|
|
}
|
|
|
|
.portfolio-filter .btn.active {
|
|
border-color: #57cbcc;
|
|
}
|
|
|
|
.portfolio-block {
|
|
position: relative;
|
|
}
|
|
|
|
.portfolio-block:before {
|
|
transition: all 0.3s ease-in-out;
|
|
background: rgba(255, 255, 255, 0.226);
|
|
opacity: 0;
|
|
top: 2px;
|
|
right: 2px;
|
|
bottom: 2px;
|
|
left: 2px;
|
|
position: absolute;
|
|
content: '';
|
|
}
|
|
|
|
.portfolio-block img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.portfolio-block:hover:before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.portfolio-block:hover .caption h4{
|
|
top: 45%;
|
|
}
|
|
|
|
.portfolio-block:hover .caption {
|
|
opacity: 1;
|
|
top: 55%;
|
|
}
|
|
|
|
.portfolio-block .caption {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
opacity: 0;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
z-index: 9;
|
|
transition: all 0.2s ease-in-out;
|
|
text-align: center;
|
|
}
|
|
|
|
.portfolio-block .caption h4 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.portfolio-block .caption h4 a {
|
|
color: #555;
|
|
}
|
|
|
|
.portfolio-block .caption p {
|
|
color: #666;
|
|
}
|
|
|
|
.portfolio-block .caption .search-icon {
|
|
background: #57cbcc;
|
|
width: 50px;
|
|
height: 50px;
|
|
color: rgba(255, 255, 255, 0.199);
|
|
display: inline-block;
|
|
font-size: 20px;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.portfolio-block .caption .search-icon i {
|
|
line-height: 50px;
|
|
}
|
|
|
|
.portfolio-category {
|
|
background: #0f1e31;
|
|
size: 80%;
|
|
margin-top: 8px;
|
|
margin-bottom: 8px;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.portfolio-category-title {
|
|
border-radius: 16px;
|
|
margin-top: 8px;
|
|
margin-left: -8px;
|
|
margin-bottom: 8px;
|
|
margin-right: -8px;
|
|
}
|
|
|
|
.wrapper {
|
|
max-width: 1280px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
padding: 1.5em;
|
|
}
|
|
|
|
|
|
.masonry-wrapper {
|
|
padding: 1.5em;
|
|
max-width: auto;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.masonry {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, minmax(100px,1fr));
|
|
grid-gap: 10px;
|
|
grid-auto-rows: 0;
|
|
}
|
|
|
|
@media only screen and (max-width: 1023px) and (min-width: 768px) {
|
|
.masonry {
|
|
grid-template-columns: repeat(2, minmax(100px,1fr));
|
|
}
|
|
}
|
|
@media only screen and (min-width: 1024px) {
|
|
.masonry {
|
|
grid-template-columns: repeat(4, minmax(100px,1fr));
|
|
}
|
|
}
|
|
.masonry-item, .masonry-content {
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.masonry-item {
|
|
filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, .6));
|
|
transition: filter .25s ease-in-out;
|
|
}
|
|
.masonry-item:hover {
|
|
filter: drop-shadow(0px 5px 5px rgba(0, 56, 56, 0.774));
|
|
}
|
|
|
|
.lb-container {
|
|
background-color: #53606c;
|
|
}
|
|
|
|
|
|
/*==================================================================
|
|
Art Carousel
|
|
==================================================================*/
|
|
#ArtCarousel{
|
|
background-color: #0f1e31;
|
|
border-radius: 10px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.item img {
|
|
padding: 0 4px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.item-center {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
/*==================================================================
|
|
Contact Form
|
|
==================================================================*/
|
|
.form-control {
|
|
color: #57cbcc;
|
|
border: solid 5px;
|
|
transition: border-color .5s ease-in-out,box-shadow .15s ease-in-out;
|
|
margin: 4px;
|
|
resize: none
|
|
}
|
|
|
|
.form-control:focus {
|
|
border-color: #FF00BA;
|
|
}
|
|
|
|
.h-captcha {
|
|
margin: 4px 0;
|
|
}
|
|
|
|
/* input[type="text"] {
|
|
background: transparent;
|
|
border: none;
|
|
border-bottom: 1px solid #000000;
|
|
}
|
|
|
|
input.input {
|
|
width: 100%;
|
|
padding: 12px 20px;
|
|
box-sizing: border-box;
|
|
background-color: black;
|
|
color: white;
|
|
border: 0px;
|
|
caret-color: #03d7f2;
|
|
caret-width: 10px;
|
|
} */
|
|
|
|
/*==================================================================
|
|
Social sharing buttons from Sharingbuttons.io
|
|
==================================================================*/
|
|
.resp-sharing-button__link,
|
|
.resp-sharing-button__icon {
|
|
display: inline-block
|
|
}
|
|
|
|
.resp-sharing-button__link {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
margin: 0.5em
|
|
}
|
|
|
|
.resp-sharing-button {
|
|
border-radius: 5px;
|
|
transition: 25ms ease-out;
|
|
padding: 0.5em 0.75em;
|
|
font-family: Helvetica Neue,Helvetica,Arial,sans-serif
|
|
}
|
|
|
|
.resp-sharing-button__icon svg {
|
|
width: 1em;
|
|
height: 1em;
|
|
margin-right: 0.4em;
|
|
vertical-align: top
|
|
}
|
|
|
|
.resp-sharing-button--small svg {
|
|
margin: 0;
|
|
vertical-align: middle
|
|
}
|
|
|
|
/* Non solid icons get a stroke */
|
|
.resp-sharing-button__icon {
|
|
stroke: #fff;
|
|
fill: none
|
|
}
|
|
|
|
/* Solid icons get a fill */
|
|
.resp-sharing-button__icon--solid,
|
|
.resp-sharing-button__icon--solidcircle {
|
|
fill: #fff;
|
|
stroke: none
|
|
}
|
|
|
|
.resp-sharing-button--twitter {
|
|
background-color: #55acee
|
|
}
|
|
|
|
.resp-sharing-button--twitter:hover {
|
|
background-color: #2795e9
|
|
}
|
|
|
|
.resp-sharing-button--pinterest {
|
|
background-color: #bd081c
|
|
}
|
|
|
|
.resp-sharing-button--pinterest:hover {
|
|
background-color: #8c0615
|
|
}
|
|
|
|
.resp-sharing-button--facebook {
|
|
background-color: #3b5998
|
|
}
|
|
|
|
.resp-sharing-button--facebook:hover {
|
|
background-color: #2d4373
|
|
}
|
|
|
|
.resp-sharing-button--tumblr {
|
|
background-color: #35465C
|
|
}
|
|
|
|
.resp-sharing-button--tumblr:hover {
|
|
background-color: #222d3c
|
|
}
|
|
|
|
.resp-sharing-button--reddit {
|
|
background-color: #5f99cf
|
|
}
|
|
|
|
.resp-sharing-button--reddit:hover {
|
|
background-color: #3a80c1
|
|
}
|
|
|
|
.resp-sharing-button--google {
|
|
background-color: #dd4b39
|
|
}
|
|
|
|
.resp-sharing-button--google:hover {
|
|
background-color: #c23321
|
|
}
|
|
|
|
.resp-sharing-button--linkedin {
|
|
background-color: #0077b5
|
|
}
|
|
|
|
.resp-sharing-button--linkedin:hover {
|
|
background-color: #046293
|
|
}
|
|
|
|
.resp-sharing-button--email {
|
|
background-color: #777
|
|
}
|
|
|
|
.resp-sharing-button--email:hover {
|
|
background-color: #5e5e5e
|
|
}
|
|
|
|
.resp-sharing-button--xing {
|
|
background-color: #1a7576
|
|
}
|
|
|
|
.resp-sharing-button--xing:hover {
|
|
background-color: #114c4c
|
|
}
|
|
|
|
.resp-sharing-button--whatsapp {
|
|
background-color: #25D366
|
|
}
|
|
|
|
.resp-sharing-button--whatsapp:hover {
|
|
background-color: #1da851
|
|
}
|
|
|
|
.resp-sharing-button--hackernews {
|
|
background-color: #FF6600
|
|
}
|
|
.resp-sharing-button--hackernews:hover,
|
|
.resp-sharing-button--hackernews:focus {
|
|
background-color: #FB6200
|
|
}
|
|
|
|
.resp-sharing-button--vk {
|
|
background-color: #507299
|
|
}
|
|
|
|
.resp-sharing-button--vk:hover {
|
|
background-color: #43648c
|
|
}
|
|
|
|
.resp-sharing-button--facebook {
|
|
background-color: #3b5998;
|
|
border-color: #3b5998;
|
|
}
|
|
|
|
.resp-sharing-button--facebook:hover,
|
|
.resp-sharing-button--facebook:active {
|
|
background-color: #2d4373;
|
|
border-color: #2d4373;
|
|
}
|
|
|
|
.resp-sharing-button--twitter {
|
|
background-color: #55acee;
|
|
border-color: #55acee;
|
|
}
|
|
|
|
.resp-sharing-button--twitter:hover,
|
|
.resp-sharing-button--twitter:active {
|
|
background-color: #2795e9;
|
|
border-color: #2795e9;
|
|
}
|
|
|
|
.resp-sharing-button--tumblr {
|
|
background-color: #35465C;
|
|
border-color: #35465C;
|
|
}
|
|
|
|
.resp-sharing-button--tumblr:hover,
|
|
.resp-sharing-button--tumblr:active {
|
|
background-color: #222d3c;
|
|
border-color: #222d3c;
|
|
}
|
|
|
|
.resp-sharing-button--email {
|
|
background-color: #777777;
|
|
border-color: #777777;
|
|
}
|
|
|
|
.resp-sharing-button--email:hover,
|
|
.resp-sharing-button--email:active {
|
|
background-color: #5e5e5e;
|
|
border-color: #5e5e5e;
|
|
}
|
|
|
|
.resp-sharing-button--pinterest {
|
|
background-color: #bd081c;
|
|
border-color: #bd081c;
|
|
}
|
|
|
|
.resp-sharing-button--pinterest:hover,
|
|
.resp-sharing-button--pinterest:active {
|
|
background-color: #8c0615;
|
|
border-color: #8c0615;
|
|
}
|
|
|
|
.resp-sharing-button--linkedin {
|
|
background-color: #0077b5;
|
|
border-color: #0077b5;
|
|
}
|
|
|
|
.resp-sharing-button--linkedin:hover,
|
|
.resp-sharing-button--linkedin:active {
|
|
background-color: #046293;
|
|
border-color: #046293;
|
|
}
|
|
|
|
.resp-sharing-button--reddit {
|
|
background-color: #5f99cf;
|
|
border-color: #5f99cf;
|
|
}
|
|
|
|
.resp-sharing-button--reddit:hover,
|
|
.resp-sharing-button--reddit:active {
|
|
background-color: #3a80c1;
|
|
border-color: #3a80c1;
|
|
}
|
|
|
|
.resp-sharing-button--xing {
|
|
background-color: #1a7576;
|
|
border-color: #1a7576;
|
|
}
|
|
|
|
.resp-sharing-button--xing:hover
|
|
.resp-sharing-button--xing:active {
|
|
background-color: #114C4C;
|
|
border-color: #114C4C;
|
|
}
|
|
|
|
.resp-sharing-button--whatsapp {
|
|
background-color: #25D366;
|
|
border-color: #25D366;
|
|
}
|
|
|
|
.resp-sharing-button--whatsapp:hover,
|
|
.resp-sharing-button--whatsapp:active {
|
|
background-color: #1DA851;
|
|
border-color: #1DA851;
|
|
}
|
|
|
|
.resp-sharing-button--hackernews {
|
|
background-color: #FF6600;
|
|
border-color: #FF6600;
|
|
}
|
|
|
|
.resp-sharing-button--hackernews:hover
|
|
.resp-sharing-button--hackernews:active {
|
|
background-color: #FB6200;
|
|
border-color: #FB6200;
|
|
}
|
|
|
|
.resp-sharing-button--vk {
|
|
background-color: #507299;
|
|
border-color: #507299;
|
|
}
|
|
|
|
.resp-sharing-button--vk:hover
|
|
.resp-sharing-button--vk:active {
|
|
background-color: #43648c;
|
|
border-color: #43648c;
|
|
}
|
|
|
|
.resp-sharing-button--telegram {
|
|
background-color: #54A9EB;
|
|
}
|
|
|
|
.resp-sharing-button--telegram:hover {
|
|
background-color: #4B97D1;
|
|
}
|
|
|
|
|
|
|
|
/*==================================================================
|
|
Cookie Box
|
|
==================================================================*/
|
|
.cookie-box {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
text-align: center;
|
|
padding: 1rem 2rem;
|
|
background: #0f1e31;
|
|
transition: all .75s cubic-bezier(.19, 1, .22, 1);
|
|
color: #fdfdfd;
|
|
z-index: 9999;
|
|
border-top: 2px solid #fd21ef;
|
|
}
|
|
|
|
.cookie-box-hide {
|
|
display: none;
|
|
} |