2026-05-02 14:36:22 +03:00
|
|
|
/*
|
2026-05-05 13:51:27 +03:00
|
|
|
ASCILINE ENGINE - Minimal Blog Theme
|
2026-05-02 14:36:22 +03:00
|
|
|
=========================================
|
2026-05-05 13:51:27 +03:00
|
|
|
Pure, performant, zero-decoration.
|
2026-05-02 14:36:22 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
:root {
|
2026-05-05 13:51:27 +03:00
|
|
|
--bg-color: #0a0a0c;
|
|
|
|
|
--text-color: #e0e0e0;
|
|
|
|
|
--accent-color: #00f3ff;
|
|
|
|
|
--accent-secondary: #39ff14;
|
|
|
|
|
--post-bg: #121217;
|
|
|
|
|
--font-main: 'Outfit', sans-serif;
|
|
|
|
|
--font-tech: 'Courier New', monospace;
|
|
|
|
|
--player-bg: #050505;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background-color: var(--bg-color);
|
2026-05-05 13:51:27 +03:00
|
|
|
color: var(--text-color);
|
2026-05-02 14:36:22 +03:00
|
|
|
font-family: var(--font-main);
|
2026-05-05 13:51:27 +03:00
|
|
|
line-height: 1.6;
|
|
|
|
|
overflow-x: hidden;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
2026-05-05 13:51:27 +03:00
|
|
|
/* ── HEADER ───────────────────────── */
|
|
|
|
|
.blog-header {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
color: var(--accent-color);
|
|
|
|
|
padding: 80px 20px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
border-bottom: 1px solid #333;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
2026-05-05 13:51:27 +03:00
|
|
|
.blog-header h1 {
|
|
|
|
|
font-size: 42px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
letter-spacing: 4px;
|
2026-05-02 14:36:22 +03:00
|
|
|
text-transform: uppercase;
|
2026-05-05 13:51:27 +03:00
|
|
|
font-family: var(--font-tech);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.blog-header p {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── MAIN CONTENT ─────────────────── */
|
|
|
|
|
.blog-container {
|
|
|
|
|
max-width: 900px;
|
|
|
|
|
margin: 60px auto;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.blog-post {
|
|
|
|
|
background: var(--post-bg);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 40px;
|
|
|
|
|
border: 1px solid #222;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
2026-05-05 13:51:27 +03:00
|
|
|
.post-title {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
color: var(--accent-secondary);
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-family: var(--font-tech);
|
|
|
|
|
border-left: 4px solid var(--accent-secondary);
|
|
|
|
|
padding-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-meta {
|
2026-05-02 14:36:22 +03:00
|
|
|
font-size: 11px;
|
2026-05-05 13:51:27 +03:00
|
|
|
color: #555;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-content {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: #bbb;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
font-weight: 300;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
2026-05-05 13:51:27 +03:00
|
|
|
/* ── VIDEO WRAPPER ────────────────── */
|
|
|
|
|
.video-wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin: 50px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--accent-color);
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
font-family: var(--font-tech);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
}
|
2026-05-02 14:36:22 +03:00
|
|
|
|
2026-05-05 13:51:27 +03:00
|
|
|
/* ── PLAYER CONTAINER ──────────────── */
|
2026-05-02 14:36:22 +03:00
|
|
|
#player-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
background: var(--player-bg);
|
2026-05-05 13:51:27 +03:00
|
|
|
border-radius: 4px;
|
|
|
|
|
width: 860px;
|
|
|
|
|
height: 560px;
|
2026-05-02 14:36:22 +03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
overflow: hidden;
|
2026-05-05 13:51:27 +03:00
|
|
|
border: 1px solid #333;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ascii-player {
|
2026-05-05 13:51:27 +03:00
|
|
|
font-family: 'Courier New', monospace;
|
2026-05-02 14:36:22 +03:00
|
|
|
white-space: pre;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
font-size: 8px;
|
|
|
|
|
line-height: 8px;
|
|
|
|
|
font-weight: bold;
|
2026-05-05 13:51:27 +03:00
|
|
|
color: transparent;
|
|
|
|
|
/* Selection text is transparent */
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 5;
|
|
|
|
|
pointer-events: auto;
|
2026-05-02 14:36:22 +03:00
|
|
|
display: none;
|
2026-05-05 13:51:27 +03:00
|
|
|
user-select: text;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ascii-canvas {
|
2026-05-05 13:51:27 +03:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 1;
|
2026-05-02 14:36:22 +03:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── OVERLAYS ───────────────────────── */
|
|
|
|
|
#play-overlay {
|
|
|
|
|
position: absolute;
|
2026-05-05 13:51:27 +03:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2026-05-02 14:36:22 +03:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-05-05 13:51:27 +03:00
|
|
|
background: rgba(0, 0, 0, 0.7);
|
2026-05-02 14:36:22 +03:00
|
|
|
z-index: 10;
|
|
|
|
|
user-select: none;
|
2026-05-05 13:51:27 +03:00
|
|
|
cursor: pointer;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#play-overlay.hidden {
|
2026-05-05 13:51:27 +03:00
|
|
|
display: none;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.play-btn {
|
2026-05-05 13:51:27 +03:00
|
|
|
width: 60px;
|
|
|
|
|
height: 60px;
|
|
|
|
|
border: 3px solid var(--accent-color);
|
2026-05-02 14:36:22 +03:00
|
|
|
border-radius: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-05-05 13:51:27 +03:00
|
|
|
margin-bottom: 15px;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.play-btn::after {
|
|
|
|
|
content: '';
|
|
|
|
|
display: block;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-style: solid;
|
2026-05-05 13:51:27 +03:00
|
|
|
border-width: 10px 0 10px 18px;
|
2026-05-02 14:36:22 +03:00
|
|
|
border-color: transparent transparent transparent var(--accent-color);
|
2026-05-05 13:51:27 +03:00
|
|
|
margin-left: 5px;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.play-label {
|
2026-05-05 13:51:27 +03:00
|
|
|
color: #fff;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
letter-spacing: 2px;
|
2026-05-02 14:36:22 +03:00
|
|
|
text-transform: uppercase;
|
2026-05-05 13:51:27 +03:00
|
|
|
font-weight: 600;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
|
|
|
|
|
2026-05-05 13:51:27 +03:00
|
|
|
/* ── PLAYER CONTROLS BAR ───────────────── */
|
|
|
|
|
.player-controls {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
background: #1a1a1a;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid #333;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 320px;
|
|
|
|
|
box-sizing: border-box;
|
2026-05-02 14:36:22 +03:00
|
|
|
}
|
2026-05-05 13:51:27 +03:00
|
|
|
|
|
|
|
|
.ctrl-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ctrl-icon {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Styled range slider */
|
|
|
|
|
#volume-slider {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 4px;
|
|
|
|
|
background: #444;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
outline: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#volume-slider::-webkit-slider-thumb {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
background: var(--accent-color);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#volume-slider::-moz-range-thumb {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
background: var(--accent-color);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|