:root { --void-bg: #030308;
--void-bg-alt: #0a0a15;
--neon-cyan: #00f3ff;
--neon-purple: #bd00ff;
--neon-pink: #ff0099;
--glass-surface: rgba(255, 255, 255, 0.03);
--glass-surface-hover: rgba(255, 255, 255, 0.06);
--glass-border: rgba(255, 255, 255, 0.08);
--text-main: #e0e0e0;
--text-muted: #a0a0b0; --font-heading: 'Outfit', sans-serif;
--font-body: 'Inter', sans-serif; --container-width: 1200px;
--header-height: 70px;
--border-radius: 16px;
}
body.light-mode {
--void-bg: #f0f2f5;
--void-bg-alt: #ffffff;
--glass-surface: rgba(255, 255, 255, 0.6);
--glass-surface-hover: rgba(255, 255, 255, 0.8);
--glass-border: rgba(0, 0, 0, 0.05);
--text-main: #1a1a2e;
--text-muted: #4a4a5e;
}
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6,
body.light-mode a {
color: #1a1a2e;
}
body.light-mode .site-header.scrolled {
background: rgba(255, 255, 255, 0.9);
border-bottom: 1px solid rgba(0,0,0,0.05);
}
body.light-mode a {
color: #0070f3; }
body.light-mode a:hover {
color: var(--neon-purple);
}
body.light-mode input,
body.light-mode textarea {
background: rgba(0, 0, 0, 0.03);
border-color: rgba(0, 0, 0, 0.1);
color: #1a1a2e;
}
body.light-mode .glass-card {
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
} *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
} :focus-visible {
outline: 2px solid var(--neon-cyan);
outline-offset: 4px;
} a:focus-visible {
outline: 2px solid var(--neon-cyan);
outline-offset: 2px;
border-radius: 4px;
text-decoration: none;
}
button:focus-visible,
.button:focus-visible,
input[type="submit"]:focus-visible,
input#submit:focus-visible,
.theme-toggle:focus-visible {
outline: 2px solid #fff;
outline-offset: 2px;
box-shadow: 0 0 12px var(--neon-cyan);
}
.theme-toggle {
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
padding: 0.5rem;
margin-left: 1rem;
box-shadow: none;
}
body {
background-color: var(--void-bg);
color: var(--text-main);
font-family: var(--font-body);
line-height: 1.7;
overflow-x: hidden;
background-image: 
radial-gradient(circle at 10% 20%, rgba(189, 0, 255, 0.15) 0%, transparent 40%),
radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 40%),
url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
background-attachment: fixed;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
color: #fff;
margin-bottom: 1.5rem;
line-height: 1.2;
letter-spacing: -0.02em;
}
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
a {
color: var(--neon-cyan);
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
color: var(--neon-purple);
text-shadow: 0 0 12px rgba(189, 0, 255, 0.6);
}
pre {
overflow-x: auto;
max-width: 100%;
} .container {
max-width: var(--container-width);
margin: 0 auto;
padding: 0 2rem;
}
.site-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 4rem;
align-items: start;
}
.site-content > * {
min-width: 0;
}
.site {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.site-main {
flex: 1;
padding-top: calc(var(--header-height) + 4rem);
padding-bottom: 4rem;
} .reading-progress {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 3px;
background: var(--neon-cyan);
z-index: 2000;
box-shadow: 0 0 10px var(--neon-cyan);
transition: width 0.1s;
} .site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
transition: background 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
background: rgba(3, 3, 8, 0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--glass-border);
}
.site-header .container {
display: flex;
justify-content: space-between;
align-items: center;
border: none; }
.site-branding {
display: flex;
align-items: center;
gap: 1rem;
}
.site-branding .site-title {
margin-bottom: 0;
}
.site-branding .site-description {
margin-bottom: 0;
margin-left: 0.5rem;
font-size: 0.9rem;
color: var(--text-muted);
}
.site-branding .site-title a {
font-size: 1.8rem;
font-weight: 800;
background: linear-gradient(135deg, #fff 0%, var(--neon-cyan) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-decoration: none;
text-shadow: none;
}
.site-branding img,
.custom-logo-link img {
max-height: 40px;
width: auto;
}
.main-navigation ul {
list-style: none;
display: flex;
gap: 2rem;
margin: 0;
}
.main-navigation a {
color: var(--text-main);
font-weight: 500;
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.main-navigation a:hover {
color: var(--neon-cyan);
text-shadow: 0 0 8px var(--neon-cyan);
} .glass-card {
background: var(--glass-surface);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
border-radius: var(--border-radius);
padding: 2.5rem;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.post-grid {
display: flex;
flex-direction: column;
gap: 2rem;
}
article.glass-card:hover,
article.glass-card:focus-within {
transform: translateY(-5px);
background: var(--glass-surface-hover);
box-shadow: 0 12px 40px 0 rgba(0, 243, 255, 0.1);
border-color: rgba(0, 243, 255, 0.2);
}
.entry-title {
margin-bottom: 1rem;
}
.entry-meta {
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 0.1em;
} .post-thumbnail {
margin-bottom: 2rem;
border-radius: var(--border-radius);
overflow: hidden;
position: relative;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
width: 100%;
max-width: 100%;
}
.post-thumbnail img {
width: 100%;
max-width: 100%;
height: auto;
display: block;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}
.post-thumbnail a {
display: block;
overflow: hidden;
}
.post-thumbnail a:hover img,
.post-thumbnail a:focus img {
transform: scale(1.05);
filter: brightness(1.1);
} .post-thumbnail::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 30%;
background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
pointer-events: none;
} .singular-content {
max-width: 800px;
margin: 0 auto;
}
.entry-content {
font-size: 1.125rem;
}
.entry-content img,
.entry-content iframe,
.entry-content video {
max-width: 100%;
height: auto;
} .entry-content table {
display: block;
overflow-x: auto;
max-width: 100%;
}
.entry-content p {
margin-bottom: 1.5rem;
}
.entry-content ul,
.entry-content ol {
margin-bottom: 1.5rem;
padding-left: 2rem;
}
.entry-content li {
margin-bottom: 0.5rem;
}
.entry-content ul li {
list-style-type: disc;
}
.entry-content ol li {
list-style-type: decimal;
}
.entry-content blockquote {
border-left: 4px solid var(--neon-purple);
padding-left: 1.5rem;
margin: 2rem 0;
font-style: italic;
color: #fff;
background: linear-gradient(90deg, rgba(189,0,255,0.1) 0%, transparent 100%);
padding: 1.5rem;
border-radius: 0 8px 8px 0;
} .site-footer {
padding: 3rem 0;
margin-top: 4rem;
border-top: 1px solid var(--glass-border);
text-align: center;
font-size: 0.9rem;
color: var(--text-muted);
}
.site-footer a {
color: #fff;
font-weight: 600;
}  input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--glass-border);
border-radius: 8px;
padding: 1rem;
color: #fff;
width: 100%;
font-family: var(--font-body);
font-size: 1rem;
transition: all 0.3s ease;
}
input:focus,
textarea:focus {
outline: none;
background: rgba(255, 255, 255, 0.08);
border-color: var(--neon-cyan);
box-shadow: 0 0 16px rgba(0, 243, 255, 0.1);
}
button,
input[type="submit"],
input#submit,
.button {
background-image: linear-gradient(var(--void-bg), var(--void-bg)), linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
background-origin: border-box;
background-clip: padding-box, border-box;
background-size: 100% 100%, 200% 200%;
background-position: center, 0% 0%;
color: #fff;
border: 2px solid transparent;
border-radius: 20px;
padding: 0.5rem 1rem;
font-family: var(--font-heading);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
cursor: pointer;
transition: all 0.4s ease;
box-shadow: 0 4px 16px rgba(189, 0, 255, 0.4);
display: inline-block;
}
button:hover,
input[type="submit"]:hover,
input#submit:hover,
.button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(189, 0, 255, 0.6);
background-position: center, 100% 100%;
filter: brightness(1.2);
} .search-form {
display: flex;
gap: 0.5rem;
align-items: center;
position: relative;
max-width: 100%;
}
@keyframes pulse {
0% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(0.9); }
100% { opacity: 1; transform: scale(1); }
}
.search-submit[aria-busy="true"] {
cursor: progress;
}
.search-submit[aria-busy="true"] svg {
animation: pulse 1.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
.search-submit[aria-busy="true"] svg {
animation: none;
}
}
.search-form label {
flex-grow: 1;
margin-bottom: 0;
width: 100%;
}
.search-form .search-field {
width: 100%;
border-radius: 20px; } .search-form .search-submit {
padding: 0;
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0;
flex-shrink: 0;
margin-bottom: 0;
}
.search-form .search-submit svg {
width: 20px;
height: 20px;
stroke-width: 2.5px;
} .comment-list {
margin-top: 2rem;
}
.comment-body {
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--glass-border);
}
.comment-meta {
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--text-muted);
}
.fn {
font-weight: 700;
color: #fff;
font-family: var(--font-heading);
font-size: 1.1rem;
margin-right: 0.5rem;
}
.reply a {
font-size: 0.8em;
text-transform: uppercase;
font-weight: 600;
} .widget ul {
list-style: none;
padding: 0;
}
.widget li {
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255,255,255,0.03);
}
.widget li:last-child {
border-bottom: none;
} @media (max-width: 768px) {
.site-header {
position: relative; background: var(--void-bg);
}
.site-header .container {
flex-direction: column;
gap: 1rem;
}
.container {
padding: 0 1rem;
}
.site-branding {
flex-wrap: wrap;
}
.site-branding .site-description {
flex-basis: 100%;
margin-left: 0;
margin-top: 0.5rem;
}
.site-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.glass-card {
padding: 1.5rem;
}
h1 { font-size: 2.25rem; }
.site-main {
padding-top: 2rem;
}
.post-thumbnail {
margin-bottom: 1.5rem;
} .main-navigation ul {
flex-wrap: nowrap;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
padding-bottom: 0.5rem;
justify-content: flex-start;
gap: 1.5rem;
width: 100%; } .main-navigation ul::-webkit-scrollbar {
height: 4px;
}
.main-navigation ul::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.02);
border-radius: 4px;
}
.main-navigation ul::-webkit-scrollbar-thumb {
background: var(--neon-cyan);
border-radius: 4px;
}
} .pagination {
margin-top: 4rem;
display: flex;
justify-content: center;
gap: 0.5rem;
}
.pagination .nav-links {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
justify-content: center;
}
.pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
height: 40px;
min-width: 40px;
padding: 0 1rem;
background: var(--glass-surface);
border: 1px solid var(--glass-border);
border-radius: 8px;
color: var(--text-main);
font-weight: 600;
transition: all 0.3s ease;
backdrop-filter: blur(4px);
}
.pagination .page-numbers:hover {
background: var(--glass-surface-hover);
color: var(--neon-cyan);
border-color: rgba(0, 243, 255, 0.3);
box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
transform: translateY(-2px);
}
.pagination .page-numbers.current {
background-image: linear-gradient(var(--void-bg), var(--void-bg)), linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
background-origin: border-box;
background-clip: padding-box, border-box;
background-size: 100% 100%, 200% 200%;
background-position: center, 0% 0%;
border: 2px solid transparent;
color: #fff;
box-shadow: 0 4px 12px rgba(189, 0, 255, 0.4);
}
.pagination .page-numbers.dots {
background: transparent;
border: none;
box-shadow: none;
cursor: default;
}
.pagination .page-numbers.dots:hover {
background: transparent;
transform: none;
box-shadow: none;
color: var(--text-main);
}
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
.screen-reader-text:focus {
background-color: var(--void-bg);
border: 1px solid var(--neon-cyan);
border-radius: 8px;
box-shadow: 0 0 20px var(--neon-cyan);
clip: auto !important;
clip-path: none;
color: var(--neon-cyan);
display: block;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 1rem;
line-height: normal;
padding: 1rem 1.5rem;
text-decoration: none;
top: 1rem;
width: auto;
z-index: 100000;
} .back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
z-index: 900;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 50%;
width: 50px;
height: 50px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
background-image: linear-gradient(var(--void-bg), var(--void-bg)), linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
background-origin: border-box;
background-clip: padding-box, border-box;
background-size: 100% 100%, 200% 200%;
background-position: center, 0% 0%;
border: 2px solid transparent;
color: #fff;
cursor: pointer;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(189, 0, 255, 0.6);
background-position: center, 100% 100%;
}
@media (max-width: 768px) {
.back-to-top {
bottom: 1.5rem;
right: 1.5rem;
width: 44px;
height: 44px;
}
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 40px, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
.fade-in-up {
animation-name: fadeInUp;
animation-duration: 0.8s;
animation-fill-mode: both;
animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
.fade-in-up {
animation: none !important;
opacity: 1 !important;
transform: none !important;
}
} .post-navigation {
margin-top: 4rem;
} .post-navigation { margin-top: 4rem; }
.post-navigation .nav-links { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.post-navigation .nav-previous, .post-navigation .nav-next { flex: 1; min-width: 250px; }
.post-navigation .nav-next { text-align: right; }
.post-navigation a {
display: block; padding: 1rem; border-radius: 8px; transition: all 0.3s ease;
border: 1px solid transparent; color: var(--text-main);
}
.post-navigation a:hover {
background: var(--glass-surface-hover); border-color: var(--glass-border);
transform: translateY(-2px); color: var(--neon-cyan);
}
.nav-subtitle {
display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 600;
}
.nav-title {
display: block; font-family: var(--font-heading); font-size: 1.1rem;
font-weight: 700; color: inherit; line-height: 1.3;
}
.post-navigation a:hover .nav-title { text-shadow: 0 0 8px rgba(0, 243, 255, 0.4); }
@media (max-width: 768px) { .post-navigation .nav-next { text-align: left; } }.crayon-theme-github {
margin-bottom: 25px !important;
border: 1px solid #dedede !important;
background-color: #f8f8ff !important;
font-size: 100% !important;
line-height: 130% !important;
}
.crayon-theme-github .crayon-toolbar {
border-bottom: 1px solid #dedede !important;
background-color: #eee !important;
}
.crayon-theme-github .crayon-toolbar .crayon-language,
.crayon-theme-github .crayon-toolbar .crayon-title {
font-size: 80% !important;
color: #666 !important;
}
.crayon-theme-github .crayon-table .crayon-nums {
background-color: #eee !important;
}
.crayon-theme-github .crayon-table .crayon-nums-content {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-table .crayon-num {
min-width: 1.2em !important;
border-right: 1px solid #dedede !important;
text-align: right !important;
color: #aaa !important;
}
.crayon-theme-github .crayon-pre {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-marked-line {
background: #fffee2 !important;
}
.crayon-theme-github .crayon-marked-num {
color: #1561ac !important;
background: #b3d3f4 !important;
border-width: 1px !important;
border-color: #5999d9 !important;
}
.crayon-theme-github .crayon-pre .crayon-c {
color: #999 !important;
font-style: italic !important;
}
.crayon-theme-github .crayon-pre .crayon-s {
color: #d14 !important;
}
.crayon-theme-github .crayon-pre .crayon-p {
color: #b85c00 !important;
}
.crayon-theme-github .crayon-pre .crayon-ta {
color: #FF0000 !important;
}
.crayon-theme-github .crayon-pre .crayon-k {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-st {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-r {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-t {
color: #800080 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-m {
color: #800080 !important;
}
.crayon-theme-github .crayon-pre .crayon-i {
color: #000 !important;
}
.crayon-theme-github .crayon-pre .crayon-e {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-v {
color: #002D7A !important;
}
.crayon-theme-github .crayon-pre .crayon-cn {
color: #099 !important;
}
.crayon-theme-github .crayon-pre .crayon-o {
color: #006fe0 !important;
}
.crayon-theme-github .crayon-pre .crayon-sy {
color: #333 !important;
}
.crayon-theme-github .crayon-pre .crayon-n {
color: #666 !important;
font-style: italic;
}
.crayon-theme-github .crayon-pre .crayon-f {
color: #999 !important;
}
.crayon-theme-github .crayon-pre .crayon-h {
color: #006fe0 !important;
}@font-face {
font-family: 'MonacoRegular';
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot);
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot?#iefix) format('embedded-opentype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.woff) format('woff'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.ttf) format('truetype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.svg#MonacoRegular) format('svg');
font-weight: normal;
font-style: normal;
}
.urvanov-syntax-highlighter-font-monaco * {
font-family: Monaco, 'MonacoRegular', 'Courier New', monospace !important;
}.crayon-theme-github {
margin-bottom: 25px !important;
border: 1px solid #dedede !important;
background-color: #f8f8ff !important;
font-size: 100% !important;
line-height: 130% !important;
}
.crayon-theme-github .crayon-toolbar {
border-bottom: 1px solid #dedede !important;
background-color: #eee !important;
}
.crayon-theme-github .crayon-toolbar .crayon-language,
.crayon-theme-github .crayon-toolbar .crayon-title {
font-size: 80% !important;
color: #666 !important;
}
.crayon-theme-github .crayon-table .crayon-nums {
background-color: #eee !important;
}
.crayon-theme-github .crayon-table .crayon-nums-content {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-table .crayon-num {
min-width: 1.2em !important;
border-right: 1px solid #dedede !important;
text-align: right !important;
color: #aaa !important;
}
.crayon-theme-github .crayon-pre {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-marked-line {
background: #fffee2 !important;
}
.crayon-theme-github .crayon-marked-num {
color: #1561ac !important;
background: #b3d3f4 !important;
border-width: 1px !important;
border-color: #5999d9 !important;
}
.crayon-theme-github .crayon-pre .crayon-c {
color: #999 !important;
font-style: italic !important;
}
.crayon-theme-github .crayon-pre .crayon-s {
color: #d14 !important;
}
.crayon-theme-github .crayon-pre .crayon-p {
color: #b85c00 !important;
}
.crayon-theme-github .crayon-pre .crayon-ta {
color: #FF0000 !important;
}
.crayon-theme-github .crayon-pre .crayon-k {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-st {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-r {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-t {
color: #800080 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-m {
color: #800080 !important;
}
.crayon-theme-github .crayon-pre .crayon-i {
color: #000 !important;
}
.crayon-theme-github .crayon-pre .crayon-e {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-v {
color: #002D7A !important;
}
.crayon-theme-github .crayon-pre .crayon-cn {
color: #099 !important;
}
.crayon-theme-github .crayon-pre .crayon-o {
color: #006fe0 !important;
}
.crayon-theme-github .crayon-pre .crayon-sy {
color: #333 !important;
}
.crayon-theme-github .crayon-pre .crayon-n {
color: #666 !important;
font-style: italic;
}
.crayon-theme-github .crayon-pre .crayon-f {
color: #999 !important;
}
.crayon-theme-github .crayon-pre .crayon-h {
color: #006fe0 !important;
}@font-face {
font-family: 'MonacoRegular';
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot);
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot?#iefix) format('embedded-opentype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.woff) format('woff'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.ttf) format('truetype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.svg#MonacoRegular) format('svg');
font-weight: normal;
font-style: normal;
}
.urvanov-syntax-highlighter-font-monaco * {
font-family: Monaco, 'MonacoRegular', 'Courier New', monospace !important;
}.crayon-theme-github {
margin-bottom: 25px !important;
border: 1px solid #dedede !important;
background-color: #f8f8ff !important;
font-size: 100% !important;
line-height: 130% !important;
}
.crayon-theme-github .crayon-toolbar {
border-bottom: 1px solid #dedede !important;
background-color: #eee !important;
}
.crayon-theme-github .crayon-toolbar .crayon-language,
.crayon-theme-github .crayon-toolbar .crayon-title {
font-size: 80% !important;
color: #666 !important;
}
.crayon-theme-github .crayon-table .crayon-nums {
background-color: #eee !important;
}
.crayon-theme-github .crayon-table .crayon-nums-content {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-table .crayon-num {
min-width: 1.2em !important;
border-right: 1px solid #dedede !important;
text-align: right !important;
color: #aaa !important;
}
.crayon-theme-github .crayon-pre {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-marked-line {
background: #fffee2 !important;
}
.crayon-theme-github .crayon-marked-num {
color: #1561ac !important;
background: #b3d3f4 !important;
border-width: 1px !important;
border-color: #5999d9 !important;
}
.crayon-theme-github .crayon-pre .crayon-c {
color: #999 !important;
font-style: italic !important;
}
.crayon-theme-github .crayon-pre .crayon-s {
color: #d14 !important;
}
.crayon-theme-github .crayon-pre .crayon-p {
color: #b85c00 !important;
}
.crayon-theme-github .crayon-pre .crayon-ta {
color: #FF0000 !important;
}
.crayon-theme-github .crayon-pre .crayon-k {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-st {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-r {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-t {
color: #800080 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-m {
color: #800080 !important;
}
.crayon-theme-github .crayon-pre .crayon-i {
color: #000 !important;
}
.crayon-theme-github .crayon-pre .crayon-e {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-v {
color: #002D7A !important;
}
.crayon-theme-github .crayon-pre .crayon-cn {
color: #099 !important;
}
.crayon-theme-github .crayon-pre .crayon-o {
color: #006fe0 !important;
}
.crayon-theme-github .crayon-pre .crayon-sy {
color: #333 !important;
}
.crayon-theme-github .crayon-pre .crayon-n {
color: #666 !important;
font-style: italic;
}
.crayon-theme-github .crayon-pre .crayon-f {
color: #999 !important;
}
.crayon-theme-github .crayon-pre .crayon-h {
color: #006fe0 !important;
}@font-face {
font-family: 'MonacoRegular';
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot);
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot?#iefix) format('embedded-opentype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.woff) format('woff'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.ttf) format('truetype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.svg#MonacoRegular) format('svg');
font-weight: normal;
font-style: normal;
}
.urvanov-syntax-highlighter-font-monaco * {
font-family: Monaco, 'MonacoRegular', 'Courier New', monospace !important;
}.crayon-theme-github {
margin-bottom: 25px !important;
border: 1px solid #dedede !important;
background-color: #f8f8ff !important;
font-size: 100% !important;
line-height: 130% !important;
}
.crayon-theme-github .crayon-toolbar {
border-bottom: 1px solid #dedede !important;
background-color: #eee !important;
}
.crayon-theme-github .crayon-toolbar .crayon-language,
.crayon-theme-github .crayon-toolbar .crayon-title {
font-size: 80% !important;
color: #666 !important;
}
.crayon-theme-github .crayon-table .crayon-nums {
background-color: #eee !important;
}
.crayon-theme-github .crayon-table .crayon-nums-content {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-table .crayon-num {
min-width: 1.2em !important;
border-right: 1px solid #dedede !important;
text-align: right !important;
color: #aaa !important;
}
.crayon-theme-github .crayon-pre {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-marked-line {
background: #fffee2 !important;
}
.crayon-theme-github .crayon-marked-num {
color: #1561ac !important;
background: #b3d3f4 !important;
border-width: 1px !important;
border-color: #5999d9 !important;
}
.crayon-theme-github .crayon-pre .crayon-c {
color: #999 !important;
font-style: italic !important;
}
.crayon-theme-github .crayon-pre .crayon-s {
color: #d14 !important;
}
.crayon-theme-github .crayon-pre .crayon-p {
color: #b85c00 !important;
}
.crayon-theme-github .crayon-pre .crayon-ta {
color: #FF0000 !important;
}
.crayon-theme-github .crayon-pre .crayon-k {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-st {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-r {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-t {
color: #800080 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-m {
color: #800080 !important;
}
.crayon-theme-github .crayon-pre .crayon-i {
color: #000 !important;
}
.crayon-theme-github .crayon-pre .crayon-e {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-v {
color: #002D7A !important;
}
.crayon-theme-github .crayon-pre .crayon-cn {
color: #099 !important;
}
.crayon-theme-github .crayon-pre .crayon-o {
color: #006fe0 !important;
}
.crayon-theme-github .crayon-pre .crayon-sy {
color: #333 !important;
}
.crayon-theme-github .crayon-pre .crayon-n {
color: #666 !important;
font-style: italic;
}
.crayon-theme-github .crayon-pre .crayon-f {
color: #999 !important;
}
.crayon-theme-github .crayon-pre .crayon-h {
color: #006fe0 !important;
}@font-face {
font-family: 'MonacoRegular';
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot);
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot?#iefix) format('embedded-opentype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.woff) format('woff'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.ttf) format('truetype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.svg#MonacoRegular) format('svg');
font-weight: normal;
font-style: normal;
}
.urvanov-syntax-highlighter-font-monaco * {
font-family: Monaco, 'MonacoRegular', 'Courier New', monospace !important;
}.crayon-theme-github {
margin-bottom: 25px !important;
border: 1px solid #dedede !important;
background-color: #f8f8ff !important;
font-size: 100% !important;
line-height: 130% !important;
}
.crayon-theme-github .crayon-toolbar {
border-bottom: 1px solid #dedede !important;
background-color: #eee !important;
}
.crayon-theme-github .crayon-toolbar .crayon-language,
.crayon-theme-github .crayon-toolbar .crayon-title {
font-size: 80% !important;
color: #666 !important;
}
.crayon-theme-github .crayon-table .crayon-nums {
background-color: #eee !important;
}
.crayon-theme-github .crayon-table .crayon-nums-content {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-table .crayon-num {
min-width: 1.2em !important;
border-right: 1px solid #dedede !important;
text-align: right !important;
color: #aaa !important;
}
.crayon-theme-github .crayon-pre {
padding-top: 5px !important;
padding-bottom: 3px !important;
}
.crayon-theme-github .crayon-marked-line {
background: #fffee2 !important;
}
.crayon-theme-github .crayon-marked-num {
color: #1561ac !important;
background: #b3d3f4 !important;
border-width: 1px !important;
border-color: #5999d9 !important;
}
.crayon-theme-github .crayon-pre .crayon-c {
color: #999 !important;
font-style: italic !important;
}
.crayon-theme-github .crayon-pre .crayon-s {
color: #d14 !important;
}
.crayon-theme-github .crayon-pre .crayon-p {
color: #b85c00 !important;
}
.crayon-theme-github .crayon-pre .crayon-ta {
color: #FF0000 !important;
}
.crayon-theme-github .crayon-pre .crayon-k {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-st {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-r {
color: #000 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-t {
color: #800080 !important;
font-weight: bold !important;
}
.crayon-theme-github .crayon-pre .crayon-m {
color: #800080 !important;
}
.crayon-theme-github .crayon-pre .crayon-i {
color: #000 !important;
}
.crayon-theme-github .crayon-pre .crayon-e {
color: teal !important;
}
.crayon-theme-github .crayon-pre .crayon-v {
color: #002D7A !important;
}
.crayon-theme-github .crayon-pre .crayon-cn {
color: #099 !important;
}
.crayon-theme-github .crayon-pre .crayon-o {
color: #006fe0 !important;
}
.crayon-theme-github .crayon-pre .crayon-sy {
color: #333 !important;
}
.crayon-theme-github .crayon-pre .crayon-n {
color: #666 !important;
font-style: italic;
}
.crayon-theme-github .crayon-pre .crayon-f {
color: #999 !important;
}
.crayon-theme-github .crayon-pre .crayon-h {
color: #006fe0 !important;
}@font-face {
font-family: 'MonacoRegular';
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot);
src: url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.eot?#iefix) format('embedded-opentype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.woff) format('woff'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.ttf) format('truetype'),
url(//blog.icod.de/wp-content/plugins/urvanov-syntax-highlighter/fonts/monaco/monaco-webfont.svg#MonacoRegular) format('svg');
font-weight: normal;
font-style: normal;
}
.urvanov-syntax-highlighter-font-monaco * {
font-family: Monaco, 'MonacoRegular', 'Courier New', monospace !important;
}