Old browsers
This commit is contained in:
+154
-395
@@ -1,67 +1,37 @@
|
||||
:root {
|
||||
--bg: #120d22;
|
||||
--bg-top: #1a1130;
|
||||
--panel: rgba(28, 20, 53, 0.94);
|
||||
--panel-soft: rgba(255, 255, 255, 0.025);
|
||||
--panel-strong: rgba(255, 255, 255, 0.05);
|
||||
--container-bg: var(--panel);
|
||||
--container-border: rgba(105, 80, 164, 0.55);
|
||||
--container-highlight: rgba(255, 255, 255, 0.05);
|
||||
--text-color: #f7ecd6;
|
||||
--text-muted: #c9bc9b;
|
||||
--accent-color: #e0a05b;
|
||||
--accent-glow: rgba(224, 160, 91, 0.2);
|
||||
--link-bg: var(--panel-soft);
|
||||
--link-hover-bg: rgba(224, 160, 91, 0.09);
|
||||
--link-border: rgba(105, 80, 164, 0.45);
|
||||
--link-hover-border: rgba(224, 160, 91, 0.48);
|
||||
--success: #8fc17d;
|
||||
--danger: #ea7a7a;
|
||||
--shadow: rgba(0, 0, 0, 0.35);
|
||||
}
|
||||
/* CSS 2 styles for Krzak.org */
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
html, body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background:
|
||||
radial-gradient(
|
||||
circle at top left,
|
||||
rgba(224, 160, 91, 0.08),
|
||||
transparent 28%
|
||||
),
|
||||
radial-gradient(
|
||||
circle at top right,
|
||||
rgba(139, 71, 137, 0.18),
|
||||
transparent 30%
|
||||
),
|
||||
linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
|
||||
color: var(--text-color);
|
||||
background-color: #120d22;
|
||||
background-image: url('bg_gradient.png');
|
||||
background-repeat: repeat-x;
|
||||
background-attachment: fixed;
|
||||
color: #f7ecd6;
|
||||
font-family: Georgia, "Times New Roman", serif;
|
||||
overflow-x: hidden;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
body::before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
background-image:
|
||||
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
|
||||
background-size: 24px 24px;
|
||||
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
|
||||
.bg-glow {
|
||||
min-height: 100%;
|
||||
background-image: url('bg_glows.png');
|
||||
background-repeat: no-repeat;
|
||||
background-position: top center;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
.bg-grid {
|
||||
min-height: 100%;
|
||||
padding: 20px 0;
|
||||
background-image: url('grid.png');
|
||||
background-repeat: repeat;
|
||||
}
|
||||
|
||||
a {
|
||||
@@ -69,222 +39,146 @@ a {
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 664px; /* Total 720 with padding */
|
||||
margin: 0 auto;
|
||||
padding: 28px;
|
||||
background-color: #1a1130;
|
||||
border: 1px solid #4a3875;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
max-width: 720px;
|
||||
margin: auto;
|
||||
padding: 28px;
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
rgba(29, 21, 55, 0.96),
|
||||
rgba(18, 13, 35, 0.98)
|
||||
);
|
||||
border: 1px solid var(--container-border);
|
||||
box-shadow:
|
||||
0 18px 45px var(--shadow),
|
||||
inset 0 1px 0 var(--container-highlight);
|
||||
}
|
||||
|
||||
.homepage {
|
||||
max-width: 760px;
|
||||
background:
|
||||
radial-gradient(
|
||||
circle at top left,
|
||||
rgba(224, 160, 91, 0.1),
|
||||
transparent 34%
|
||||
),
|
||||
linear-gradient(180deg, rgba(29, 21, 55, 0.96), rgba(18, 13, 35, 0.98));
|
||||
/* Header layout using tables */
|
||||
table.header-table {
|
||||
width: 100%;
|
||||
margin-bottom: 24px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.header-table td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
td.mark-cell {
|
||||
width: 76px;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: block;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.icon img {
|
||||
height: 56px;
|
||||
width: auto;
|
||||
border: 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
td.copy {
|
||||
text-align: left;
|
||||
padding-left: 18px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0 0 18px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 16px;
|
||||
color: var(--text-color);
|
||||
font-size: clamp(2rem, 5vw, 2.8rem);
|
||||
margin: 0 0 10px;
|
||||
color: #f7ecd6;
|
||||
font-size: 2.8em;
|
||||
font-weight: 700;
|
||||
line-height: 1.05;
|
||||
text-align: center;
|
||||
text-align: left;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 0 0 14px;
|
||||
color: var(--accent-color);
|
||||
font-size: 1rem;
|
||||
color: #e0a05b;
|
||||
font-size: 1em;
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h3,
|
||||
h4 {
|
||||
margin: 0 0 10px;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 20px;
|
||||
color: var(--text-muted);
|
||||
font-size: 1rem;
|
||||
color: #c9bc9b;
|
||||
font-size: 1em;
|
||||
line-height: 1.65;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
margin: 0;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
li {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
li a {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
padding: 15px 18px;
|
||||
color: var(--text-color);
|
||||
text-decoration: none;
|
||||
background: var(--link-bg);
|
||||
border: 1px solid var(--link-border);
|
||||
transition:
|
||||
transform 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
background 0.2s ease,
|
||||
box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
li a:hover {
|
||||
transform: translateY(-2px);
|
||||
background: var(--link-hover-bg);
|
||||
border-color: var(--link-hover-border);
|
||||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
|
||||
li a strong {
|
||||
display: block;
|
||||
font-size: 1.05rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
li a span {
|
||||
display: block;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.92rem;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
padding: 8px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: rgba(0, 0, 0, 0.22);
|
||||
border: 1px solid rgba(224, 160, 91, 0.45);
|
||||
box-shadow: 0 0 28px rgba(224, 160, 91, 0.14);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.icon img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fade-in,
|
||||
.slide-down,
|
||||
.slide-up {
|
||||
animation: none;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.homepage .icon {
|
||||
box-shadow: 0 0 28px rgba(224, 160, 91, 0.15);
|
||||
}
|
||||
|
||||
.hero {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.band {
|
||||
display: grid;
|
||||
grid-template-columns: 76px minmax(0, 1fr);
|
||||
gap: 18px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.mark {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.copy {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.homepage h1 {
|
||||
margin-bottom: 10px;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
font-size: clamp(2.3rem, 5vw, 3.9rem);
|
||||
}
|
||||
|
||||
.lead {
|
||||
margin: 0;
|
||||
text-align: left;
|
||||
max-width: 42rem;
|
||||
}
|
||||
|
||||
.box {
|
||||
margin-top: 18px;
|
||||
padding: 14px;
|
||||
border: 1px solid var(--container-border);
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
border: 1px solid #4a3875;
|
||||
background-color: #1c1435;
|
||||
}
|
||||
|
||||
.links {
|
||||
ul.links {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.links li {
|
||||
margin: 0;
|
||||
ul.links li {
|
||||
margin: 0 0 10px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.link {
|
||||
border-color: var(--link-border);
|
||||
background: var(--link-bg);
|
||||
a.link {
|
||||
display: block;
|
||||
padding: 15px 18px;
|
||||
color: #f7ecd6;
|
||||
text-decoration: none;
|
||||
background-color: #20173d;
|
||||
border: 1px solid #4a3875;
|
||||
}
|
||||
|
||||
.link.main {
|
||||
background:
|
||||
linear-gradient(135deg, rgba(224, 160, 91, 0.12), transparent 68%),
|
||||
var(--link-bg);
|
||||
border-color: rgba(224, 160, 91, 0.32);
|
||||
a.link:hover {
|
||||
background-color: #271a3d;
|
||||
border-color: #70502e;
|
||||
}
|
||||
|
||||
a.link.main {
|
||||
background-color: #2e1d32;
|
||||
border-color: #70502e;
|
||||
}
|
||||
|
||||
a.link strong {
|
||||
font-size: 1.05em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a.link span {
|
||||
float: right;
|
||||
color: #c9bc9b;
|
||||
font-size: 0.92em;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/* * html hack for IE6 clearfix */
|
||||
* html .clearfix { height: 1%; }
|
||||
|
||||
.foot {
|
||||
margin-top: 20px;
|
||||
padding-top: 18px;
|
||||
border-top: 1px solid rgba(224, 160, 91, 0.22);
|
||||
border-top: 1px solid #4a3875;
|
||||
}
|
||||
|
||||
.foot p {
|
||||
@@ -292,130 +186,43 @@ li a span {
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.support,
|
||||
.support-row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.support-row {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-width: 220px;
|
||||
padding: 14px 22px;
|
||||
color: #221433;
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, #e0a05b, #f1ba77);
|
||||
border: 1px solid rgba(255, 245, 228, 0.4);
|
||||
box-shadow:
|
||||
0 10px 24px rgba(0, 0, 0, 0.25),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.35);
|
||||
transition:
|
||||
transform 0.2s ease,
|
||||
box-shadow 0.2s ease,
|
||||
filter 0.2s ease;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
transform: translateY(-2px);
|
||||
filter: brightness(1.04);
|
||||
box-shadow:
|
||||
0 14px 28px rgba(0, 0, 0, 0.3),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.35);
|
||||
}
|
||||
|
||||
li.support-row a.button,
|
||||
.support a.button {
|
||||
justify-content: center;
|
||||
background: linear-gradient(135deg, #e0a05b, #f1ba77) !important;
|
||||
border: 1px solid rgba(255, 245, 228, 0.4) !important;
|
||||
color: #221433 !important;
|
||||
}
|
||||
|
||||
.matrix-link {
|
||||
background:
|
||||
linear-gradient(135deg, rgba(143, 193, 125, 0.12), transparent 70%),
|
||||
var(--link-bg) !important;
|
||||
border-color: rgba(143, 193, 125, 0.35) !important;
|
||||
}
|
||||
|
||||
.discord-link {
|
||||
background:
|
||||
linear-gradient(135deg, rgba(114, 137, 218, 0.14), transparent 70%),
|
||||
var(--link-bg) !important;
|
||||
border-color: rgba(114, 137, 218, 0.35) !important;
|
||||
}
|
||||
|
||||
.app-gallery {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||
gap: 14px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.app-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 20px;
|
||||
.support {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a.button {
|
||||
display: inline-block;
|
||||
padding: 14px 22px;
|
||||
color: #221433 !important;
|
||||
text-decoration: none;
|
||||
color: var(--text-color);
|
||||
background: var(--link-bg);
|
||||
border: 1px solid var(--link-border);
|
||||
transition:
|
||||
transform 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
background 0.2s ease,
|
||||
box-shadow 0.2s ease;
|
||||
font-weight: bold;
|
||||
background-image: url('btn_bg.png');
|
||||
background-repeat: repeat-x;
|
||||
background-color: #e0a05b;
|
||||
border: 1px solid #fff5e4;
|
||||
}
|
||||
|
||||
.app-card:hover {
|
||||
transform: translateY(-2px);
|
||||
background: var(--link-hover-bg);
|
||||
border-color: var(--link-hover-border);
|
||||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
|
||||
.app-card.highlighted {
|
||||
border-color: rgba(224, 160, 91, 0.35);
|
||||
}
|
||||
|
||||
.app-icon {
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
object-fit: contain;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.app-card p {
|
||||
margin: 0;
|
||||
font-size: 0.92rem;
|
||||
a.button:hover {
|
||||
background-color: #f1ba77;
|
||||
background-position: 0 -10px;
|
||||
}
|
||||
|
||||
.librecounter {
|
||||
margin-top: 18px;
|
||||
padding-top: 12px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
border-top: 1px solid #33264d;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.counter {
|
||||
color: var(--text-muted);
|
||||
font-size: 0.86rem;
|
||||
color: #c9bc9b;
|
||||
font-size: 0.86em;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.counter a {
|
||||
color: var(--accent-color);
|
||||
color: #e0a05b;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -423,75 +230,27 @@ li.support-row a.button,
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.experimental {
|
||||
display: inline-block;
|
||||
a.link span.experimental {
|
||||
font-size: 0.7em;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.05em;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
color: var(--accent-color);
|
||||
vertical-align: middle;
|
||||
color: #e0a05b;
|
||||
margin-left: 4px;
|
||||
float: none;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.matrix-link {
|
||||
background-color: #19271c !important;
|
||||
border-color: #3b5032 !important;
|
||||
}
|
||||
|
||||
.discord-link {
|
||||
background-color: #191c30 !important;
|
||||
border-color: #2d3655 !important;
|
||||
}
|
||||
|
||||
.librecounter img {
|
||||
height: 44px;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.librecounter img[width="0"] {
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.back-to-top,
|
||||
.ai-chat {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
body {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 20px 16px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.9rem;
|
||||
}
|
||||
|
||||
li a,
|
||||
.link {
|
||||
display: grid;
|
||||
justify-content: stretch;
|
||||
}
|
||||
|
||||
li a span,
|
||||
.link span {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.band {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mark {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.homepage h1,
|
||||
.lead,
|
||||
.foot p {
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.app-gallery {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
border: 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user