mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-07-16 01:53:37 +00:00
updating page
This commit is contained in:
740
docs/static/css/defense-theme.css
vendored
Normal file
740
docs/static/css/defense-theme.css
vendored
Normal file
@@ -0,0 +1,740 @@
|
||||
:root {
|
||||
--phantom-bg: #eef3f7;
|
||||
--phantom-paper: rgba(255, 255, 255, 0.78);
|
||||
--phantom-paper-solid: #ffffff;
|
||||
--phantom-ink: #1f2a38;
|
||||
--phantom-muted: #59636e;
|
||||
--phantom-faint: #dce5eb;
|
||||
--phantom-line: rgba(31, 42, 56, 0.13);
|
||||
--phantom-teal: #28aaa5;
|
||||
--phantom-teal-dark: #16837f;
|
||||
--phantom-blue: #527dad;
|
||||
--phantom-blue-soft: rgba(82, 125, 173, 0.18);
|
||||
--phantom-shadow: 0 28px 80px rgba(31, 42, 56, 0.12);
|
||||
--phantom-soft-shadow: 0 14px 45px rgba(31, 42, 56, 0.08);
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
background: var(--phantom-bg);
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--phantom-ink);
|
||||
background:
|
||||
radial-gradient(70rem 22rem at 72% 8%, rgba(31, 42, 56, 0.15), transparent 58%),
|
||||
radial-gradient(54rem 24rem at 20% 62%, rgba(31, 42, 56, 0.12), transparent 62%),
|
||||
linear-gradient(180deg, #f7fafc 0%, var(--phantom-bg) 48%, #f8fafb 100%);
|
||||
font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
body::before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
inset: -20vh -10vw auto -10vw;
|
||||
height: 72vh;
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
opacity: 0.88;
|
||||
filter: blur(30px);
|
||||
background:
|
||||
radial-gradient(45rem 16rem at 9% 34%, rgba(18, 23, 31, 0.11), transparent 62%),
|
||||
radial-gradient(35rem 11rem at 65% 24%, rgba(18, 23, 31, 0.13), transparent 65%),
|
||||
radial-gradient(42rem 17rem at 45% 88%, rgba(82, 125, 173, 0.13), transparent 68%);
|
||||
}
|
||||
|
||||
strong, b {
|
||||
font-weight: 700;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--phantom-blue);
|
||||
text-decoration-thickness: 0.08em;
|
||||
text-underline-offset: 0.18em;
|
||||
}
|
||||
|
||||
main {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.container.is-max-desktop {
|
||||
max-width: 1180px !important;
|
||||
}
|
||||
|
||||
.section,
|
||||
.hero-body {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.section {
|
||||
padding: 5rem 1.5rem;
|
||||
}
|
||||
|
||||
.title,
|
||||
.subtitle,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
button,
|
||||
.button {
|
||||
/* important needed to beat index.css serif heading rule */
|
||||
font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
|
||||
letter-spacing: -0.04em;
|
||||
}
|
||||
|
||||
/* Defense cover */
|
||||
.defense-cover {
|
||||
min-height: 92vh;
|
||||
padding: 2rem 0 3.5rem;
|
||||
background:
|
||||
linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(238, 243, 247, 0.92));
|
||||
}
|
||||
|
||||
.defense-cover::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: -10vw;
|
||||
bottom: -13rem;
|
||||
width: 64vw;
|
||||
height: 26rem;
|
||||
background: rgba(31, 42, 56, 0.12);
|
||||
filter: blur(38px);
|
||||
border-radius: 65% 35% 47% 53%;
|
||||
transform: rotate(-8deg);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.defense-cover .hero-body {
|
||||
padding: 5.5rem 1.5rem 4rem;
|
||||
}
|
||||
|
||||
.defense-hero-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
|
||||
gap: clamp(2rem, 6vw, 7rem);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.defense-kicker,
|
||||
.defense-meta-row,
|
||||
.defense-chip-row,
|
||||
.defense-mini-label,
|
||||
.tpu-credit {
|
||||
color: rgba(31, 42, 56, 0.66);
|
||||
font-size: 0.88rem;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.defense-kicker {
|
||||
margin-bottom: 1.2rem;
|
||||
}
|
||||
|
||||
.publication-title.defense-title {
|
||||
margin: 0;
|
||||
color: var(--phantom-ink);
|
||||
font-size: clamp(4.25rem, 12vw, 10rem);
|
||||
line-height: 0.82;
|
||||
font-weight: 800;
|
||||
letter-spacing: -0.09em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.defense-subtitle {
|
||||
max-width: 950px;
|
||||
margin: clamp(1.5rem, 3vw, 2.3rem) 0 0;
|
||||
color: var(--phantom-ink);
|
||||
font-size: clamp(1.55rem, 3.2vw, 3.35rem);
|
||||
line-height: 1.35;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.mark,
|
||||
mark,
|
||||
.defense-highlight {
|
||||
background: linear-gradient(0deg, var(--phantom-blue) 0%, var(--phantom-blue) 100%);
|
||||
color: #ffffff;
|
||||
padding: 0 0.1em;
|
||||
line-height: inherit;
|
||||
box-decoration-break: clone;
|
||||
-webkit-box-decoration-break: clone;
|
||||
}
|
||||
|
||||
.defense-chip-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.7rem 0.9rem;
|
||||
margin-top: 2.15rem;
|
||||
text-transform: none;
|
||||
letter-spacing: -0.02em;
|
||||
font-size: clamp(0.92rem, 1.4vw, 1.2rem);
|
||||
}
|
||||
|
||||
.defense-chip {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.65rem;
|
||||
color: rgba(31, 42, 56, 0.70);
|
||||
}
|
||||
|
||||
.defense-chip::before {
|
||||
content: "";
|
||||
width: 0.42rem;
|
||||
height: 0.42rem;
|
||||
border-radius: 999px;
|
||||
background: var(--phantom-blue);
|
||||
box-shadow: 0 0 0 0.35rem var(--phantom-blue-soft);
|
||||
}
|
||||
|
||||
.defense-meta-card {
|
||||
margin-top: 2.4rem;
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.6rem 1rem;
|
||||
align-items: center;
|
||||
padding: 0.85rem 1rem;
|
||||
border: 1px solid var(--phantom-line);
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.58);
|
||||
backdrop-filter: blur(18px);
|
||||
box-shadow: var(--phantom-soft-shadow);
|
||||
color: rgba(31, 42, 56, 0.74);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.defense-meta-card .dot {
|
||||
width: 0.26rem;
|
||||
height: 0.26rem;
|
||||
border-radius: 50%;
|
||||
background: var(--phantom-teal);
|
||||
}
|
||||
|
||||
.defense-links {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.75rem;
|
||||
margin-top: 1.8rem;
|
||||
}
|
||||
|
||||
.defense-links .button,
|
||||
.publication-links .button {
|
||||
border: 1px solid rgba(31, 42, 56, 0.18) !important;
|
||||
background: rgba(31, 42, 56, 0.92) !important;
|
||||
color: #ffffff !important;
|
||||
box-shadow: 0 12px 30px rgba(31, 42, 56, 0.16);
|
||||
transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
|
||||
}
|
||||
|
||||
.defense-links .button:hover,
|
||||
.publication-links .button:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 16px 40px rgba(31, 42, 56, 0.20);
|
||||
background: var(--phantom-ink) !important;
|
||||
}
|
||||
|
||||
.defense-links .button.is-light-outline {
|
||||
background: rgba(255, 255, 255, 0.72) !important;
|
||||
color: var(--phantom-ink) !important;
|
||||
}
|
||||
|
||||
.tpu-credit {
|
||||
margin-top: 1.35rem;
|
||||
text-transform: none;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.tpu-credit .accent {
|
||||
color: var(--phantom-blue);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.defense-visual {
|
||||
justify-self: end;
|
||||
width: min(100%, 430px);
|
||||
}
|
||||
|
||||
.defense-orbit-card {
|
||||
position: relative;
|
||||
min-height: 435px;
|
||||
border: 1px solid var(--phantom-line);
|
||||
border-radius: 2rem;
|
||||
background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 243, 247, 0.68));
|
||||
box-shadow: var(--phantom-shadow);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.defense-orbit-card::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 2rem;
|
||||
border: 1px dashed rgba(31, 42, 56, 0.22);
|
||||
border-radius: 44% 56% 58% 42%;
|
||||
transform: rotate(-14deg);
|
||||
}
|
||||
|
||||
.defense-orbit-card::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: -4rem;
|
||||
bottom: -5rem;
|
||||
width: 18rem;
|
||||
height: 12rem;
|
||||
background: rgba(40, 170, 165, 0.14);
|
||||
border-radius: 50%;
|
||||
filter: blur(18px);
|
||||
}
|
||||
|
||||
.defense-art-stack {
|
||||
position: relative;
|
||||
display: grid;
|
||||
min-height: 435px;
|
||||
place-items: center;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.defense-art-stack .agent-art {
|
||||
width: min(70%, 250px);
|
||||
transform: translateY(-12px);
|
||||
filter: drop-shadow(0 28px 28px rgba(31, 42, 56, 0.12));
|
||||
}
|
||||
|
||||
.defense-art-stack .mini-token {
|
||||
position: absolute;
|
||||
width: 4.8rem;
|
||||
height: 4.8rem;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
border-radius: 1.3rem;
|
||||
border: 1px solid rgba(82, 125, 173, 0.28);
|
||||
background: rgba(255, 255, 255, 0.72);
|
||||
color: var(--phantom-blue);
|
||||
box-shadow: var(--phantom-soft-shadow);
|
||||
font-size: 1.35rem;
|
||||
}
|
||||
|
||||
.defense-art-stack .mini-token:nth-child(2) { top: 3.1rem; right: 3.2rem; }
|
||||
.defense-art-stack .mini-token:nth-child(3) { left: 2.8rem; bottom: 6.1rem; color: var(--phantom-teal-dark); }
|
||||
.defense-art-stack .mini-token:nth-child(4) { right: 5.6rem; bottom: 3.2rem; color: var(--phantom-ink); }
|
||||
|
||||
/* Defense overview strip */
|
||||
.defense-overview-strip {
|
||||
margin-top: -3.8rem;
|
||||
padding: 0 1.5rem 4.6rem;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.defense-overview-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.defense-overview-card,
|
||||
.actor-card,
|
||||
.defense-step,
|
||||
.hf-callout,
|
||||
.coi-equation,
|
||||
pre,
|
||||
.publication-banner {
|
||||
border: 1px solid var(--phantom-line);
|
||||
background: var(--phantom-paper);
|
||||
box-shadow: var(--phantom-soft-shadow);
|
||||
backdrop-filter: blur(18px);
|
||||
}
|
||||
|
||||
.defense-overview-card {
|
||||
min-height: 9rem;
|
||||
padding: 1.3rem;
|
||||
border-radius: 1.4rem;
|
||||
}
|
||||
|
||||
.defense-overview-card .num {
|
||||
color: var(--phantom-blue);
|
||||
font-weight: 700;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.defense-overview-card h3 {
|
||||
margin: 1rem 0 0.45rem;
|
||||
color: var(--phantom-ink);
|
||||
font-size: clamp(1.15rem, 2vw, 1.65rem);
|
||||
line-height: 1.05;
|
||||
}
|
||||
|
||||
.defense-overview-card p {
|
||||
color: var(--phantom-muted);
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
/* Main sections */
|
||||
.hero.teaser,
|
||||
.hero.is-small,
|
||||
.hero.is-small.is-light,
|
||||
.hero.is-light,
|
||||
.section.hero.is-light,
|
||||
.defense-block {
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
.publication-banner {
|
||||
padding: 1rem;
|
||||
border-radius: 1.5rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.publication-banner img,
|
||||
.actor-art img {
|
||||
filter: drop-shadow(0 18px 22px rgba(31, 42, 56, 0.10));
|
||||
}
|
||||
|
||||
.defense-heading,
|
||||
.title.is-3,
|
||||
.content h2.title {
|
||||
color: var(--phantom-ink) !important;
|
||||
font-size: clamp(2rem, 4.5vw, 4.8rem) !important;
|
||||
/* enough leading that .mark backgrounds on wrapped lines don't overlap adjacent text */
|
||||
line-height: 1.2 !important;
|
||||
font-weight: 700 !important;
|
||||
letter-spacing: -0.06em !important;
|
||||
text-align: left !important;
|
||||
margin-bottom: 2rem !important;
|
||||
}
|
||||
|
||||
.title.is-4,
|
||||
.content h3.title {
|
||||
color: var(--phantom-ink) !important;
|
||||
font-size: clamp(1.35rem, 2.2vw, 2rem) !important;
|
||||
font-weight: 700 !important;
|
||||
letter-spacing: -0.05em !important;
|
||||
margin-top: 2rem !important;
|
||||
}
|
||||
|
||||
.content {
|
||||
color: var(--phantom-muted);
|
||||
font-size: 1.02rem;
|
||||
line-height: 1.68;
|
||||
}
|
||||
|
||||
.content.has-text-justified,
|
||||
.content.has-text-justified p {
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.content p + p {
|
||||
margin-top: 1.05rem;
|
||||
}
|
||||
|
||||
.defense-block,
|
||||
.section.hero.is-light {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.defense-block::before,
|
||||
.section.hero.is-light::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 1rem 0 auto 0;
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, rgba(31, 42, 56, 0.13), transparent);
|
||||
}
|
||||
|
||||
.defense-block .defense-heading {
|
||||
margin-bottom: 3.5rem !important;
|
||||
}
|
||||
|
||||
.actor-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1.1rem;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.actor-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 25rem;
|
||||
padding: 1.4rem;
|
||||
border-radius: 1.5rem;
|
||||
}
|
||||
|
||||
.actor-card h3 {
|
||||
margin-top: 1.1rem;
|
||||
color: var(--phantom-ink);
|
||||
font-size: clamp(1.6rem, 3vw, 2.55rem);
|
||||
line-height: 1;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.actor-card p {
|
||||
margin-top: 1rem;
|
||||
color: var(--phantom-muted);
|
||||
font-size: 1rem;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.actor-art {
|
||||
min-height: 12rem;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
.actor-art img {
|
||||
max-height: 10.5rem;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.actor-icon {
|
||||
display: grid;
|
||||
width: 8.75rem;
|
||||
height: 8.75rem;
|
||||
place-items: center;
|
||||
border: 2px solid rgba(82, 125, 173, 0.55);
|
||||
border-radius: 1.7rem;
|
||||
background: linear-gradient(145deg, rgba(40, 170, 165, 0.20), rgba(255, 255, 255, 0.94));
|
||||
color: var(--phantom-teal-dark);
|
||||
font-size: 3.6rem;
|
||||
transform: rotate(-6deg);
|
||||
}
|
||||
|
||||
.underline {
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 0.09em;
|
||||
text-underline-offset: 0.13em;
|
||||
}
|
||||
|
||||
.coi-equation {
|
||||
border-radius: 1.7rem;
|
||||
padding: clamp(1.6rem, 4vw, 3rem);
|
||||
}
|
||||
|
||||
.coi-equation .formula {
|
||||
color: #111111;
|
||||
font-family: Georgia, "Times New Roman", serif;
|
||||
font-size: clamp(3rem, 9vw, 7.6rem);
|
||||
line-height: 1;
|
||||
letter-spacing: -0.07em;
|
||||
}
|
||||
|
||||
.coi-equation .caption {
|
||||
max-width: 780px;
|
||||
margin-top: 1.3rem;
|
||||
color: var(--phantom-muted);
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.defense-method-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.defense-step {
|
||||
border-radius: 1.4rem;
|
||||
padding: 1.35rem;
|
||||
}
|
||||
|
||||
.defense-step .step-num {
|
||||
display: inline-grid;
|
||||
place-items: center;
|
||||
width: 2.6rem;
|
||||
height: 2.6rem;
|
||||
margin-bottom: 1rem;
|
||||
border: 1px solid rgba(40, 170, 165, 0.38);
|
||||
border-radius: 50%;
|
||||
color: var(--phantom-teal-dark);
|
||||
background: rgba(40, 170, 165, 0.10);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.defense-step h3 {
|
||||
margin: 0 0 0.55rem !important;
|
||||
font-size: 1.45rem !important;
|
||||
}
|
||||
|
||||
.defense-step p {
|
||||
color: var(--phantom-muted);
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.takeaways {
|
||||
list-style: none;
|
||||
margin: 2rem 0 0 !important;
|
||||
padding: 0;
|
||||
display: grid;
|
||||
gap: 0.9rem;
|
||||
}
|
||||
|
||||
.takeaways li {
|
||||
display: grid;
|
||||
grid-template-columns: 5rem minmax(0, 1fr);
|
||||
gap: 1rem;
|
||||
align-items: start;
|
||||
padding: 1.2rem 1.3rem;
|
||||
border: 1px solid var(--phantom-line);
|
||||
border-radius: 1.2rem;
|
||||
background: rgba(255, 255, 255, 0.68);
|
||||
}
|
||||
|
||||
.takeaways .num {
|
||||
color: var(--phantom-blue);
|
||||
font-size: 1.4rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.takeaways .stat {
|
||||
display: block;
|
||||
margin-top: 0.45rem;
|
||||
color: var(--phantom-muted);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.deploy-line {
|
||||
margin: 2rem 0 0;
|
||||
color: var(--phantom-ink);
|
||||
font-size: clamp(1.45rem, 3vw, 2.5rem);
|
||||
line-height: 1.25;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.deploy-line strong {
|
||||
background: var(--phantom-blue);
|
||||
color: #ffffff;
|
||||
padding: 0 0.1em;
|
||||
box-decoration-break: clone;
|
||||
-webkit-box-decoration-break: clone;
|
||||
}
|
||||
|
||||
.hf-callout {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
gap: 1rem;
|
||||
margin-top: 1.6rem;
|
||||
padding: 1.2rem;
|
||||
border-radius: 1.3rem;
|
||||
}
|
||||
|
||||
.hf-emoji {
|
||||
width: 3.6rem;
|
||||
height: 3.6rem;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
border-radius: 1rem;
|
||||
background: rgba(255, 215, 0, 0.20);
|
||||
font-size: 1.9rem;
|
||||
}
|
||||
|
||||
.hf-callout h4 {
|
||||
margin: 0 0 0.3rem;
|
||||
color: var(--phantom-ink);
|
||||
font-size: 1.12rem;
|
||||
}
|
||||
|
||||
.hf-callout p {
|
||||
margin: 0 0 0.35rem;
|
||||
color: var(--phantom-muted);
|
||||
}
|
||||
|
||||
pre#bibtex-code,
|
||||
pre {
|
||||
border-radius: 1.2rem;
|
||||
color: var(--phantom-ink);
|
||||
}
|
||||
|
||||
.footer {
|
||||
background: rgba(255, 255, 255, 0.54);
|
||||
border-top: 1px solid var(--phantom-line);
|
||||
color: var(--phantom-muted);
|
||||
}
|
||||
|
||||
.more-works-container,
|
||||
.scroll-to-top {
|
||||
font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
||||
}
|
||||
|
||||
.more-works-btn,
|
||||
.scroll-to-top {
|
||||
background: rgba(255, 255, 255, 0.78) !important;
|
||||
color: var(--phantom-ink) !important;
|
||||
border: 1px solid var(--phantom-line) !important;
|
||||
box-shadow: var(--phantom-soft-shadow) !important;
|
||||
backdrop-filter: blur(16px);
|
||||
}
|
||||
|
||||
.more-works-dropdown {
|
||||
border: 1px solid var(--phantom-line) !important;
|
||||
border-radius: 1.2rem !important;
|
||||
box-shadow: var(--phantom-shadow) !important;
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.defense-hero-grid,
|
||||
.defense-overview-grid,
|
||||
.actor-grid,
|
||||
.defense-method-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.defense-cover .hero-body {
|
||||
padding-top: 4rem;
|
||||
}
|
||||
|
||||
.defense-visual {
|
||||
justify-self: stretch;
|
||||
}
|
||||
|
||||
.defense-orbit-card,
|
||||
.defense-art-stack {
|
||||
min-height: 330px;
|
||||
}
|
||||
|
||||
.defense-art-stack .agent-art {
|
||||
width: min(56%, 205px);
|
||||
}
|
||||
|
||||
.defense-meta-card {
|
||||
border-radius: 1.2rem;
|
||||
}
|
||||
|
||||
.publication-title.defense-title {
|
||||
font-size: clamp(4rem, 18vw, 6.2rem);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 560px) {
|
||||
.section {
|
||||
padding: 3.6rem 1.1rem;
|
||||
}
|
||||
|
||||
.defense-cover .hero-body {
|
||||
padding-left: 1.1rem;
|
||||
padding-right: 1.1rem;
|
||||
}
|
||||
|
||||
.defense-subtitle {
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.takeaways li,
|
||||
.hf-callout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.defense-chip-row,
|
||||
.defense-links {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.defense-links .button {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
275
docs/static/css/index.css
vendored
275
docs/static/css/index.css
vendored
@@ -686,281 +686,6 @@ a:focus-visible,
|
||||
}
|
||||
}
|
||||
|
||||
/* ------- Defense-styled sections (style ported from defense slides) ------- */
|
||||
|
||||
.defense-tagline {
|
||||
font-family: var(--mono-stack);
|
||||
font-size: clamp(1.05rem, 2vw, 1.45rem);
|
||||
font-weight: 500;
|
||||
color: var(--defense-ink-soft);
|
||||
letter-spacing: 0.02em;
|
||||
margin-top: -0.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: center;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.defense-tagline .mark {
|
||||
background: var(--defense-teal-bg);
|
||||
padding: 0.05em 0.35em;
|
||||
border-radius: 4px;
|
||||
color: var(--defense-ink);
|
||||
}
|
||||
|
||||
.tpu-credit {
|
||||
font-family: var(--mono-stack);
|
||||
font-size: 0.85rem;
|
||||
color: var(--paper-ink-soft);
|
||||
letter-spacing: 0.03em;
|
||||
text-align: center;
|
||||
margin-top: 1.25rem;
|
||||
}
|
||||
|
||||
.tpu-credit .accent {
|
||||
color: #4285f4;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.section.defense-block {
|
||||
background: var(--defense-bg);
|
||||
border-top: 1px solid var(--paper-border);
|
||||
border-bottom: 1px solid var(--paper-border);
|
||||
}
|
||||
|
||||
.defense-heading {
|
||||
font-family: var(--mono-stack) !important;
|
||||
font-size: clamp(1.35rem, 2.6vw, 2rem) !important;
|
||||
font-weight: 700;
|
||||
color: var(--defense-ink) !important;
|
||||
line-height: 1.4;
|
||||
letter-spacing: -0.005em;
|
||||
max-width: 56ch;
|
||||
margin: 0 auto 2.25rem !important;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.defense-heading .mark {
|
||||
background: var(--defense-teal-bg);
|
||||
padding: 0.05em 0.35em;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.defense-heading .underline {
|
||||
text-decoration: underline;
|
||||
text-decoration-color: var(--defense-teal);
|
||||
text-decoration-thickness: 2px;
|
||||
text-underline-offset: 4px;
|
||||
}
|
||||
|
||||
.actor-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1.4rem;
|
||||
align-items: start;
|
||||
margin: 2rem 0 1rem;
|
||||
}
|
||||
|
||||
.actor-card {
|
||||
background: var(--defense-surface);
|
||||
border: 1px solid var(--paper-border);
|
||||
border-radius: var(--radius-lg);
|
||||
padding: 1.4rem 1.2rem 1.6rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.actor-card .actor-art {
|
||||
height: 160px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
margin-bottom: 1rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.actor-card .actor-art img,
|
||||
.actor-card .actor-art svg {
|
||||
height: 160px !important;
|
||||
width: 160px !important;
|
||||
max-height: 160px;
|
||||
max-width: 160px;
|
||||
display: block;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.actor-card .actor-icon {
|
||||
height: 160px;
|
||||
width: 160px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
color: var(--defense-teal);
|
||||
font-size: 5rem;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.actor-card h3 {
|
||||
font-family: var(--mono-stack) !important;
|
||||
font-size: 1.4rem !important;
|
||||
font-weight: 700;
|
||||
color: var(--defense-ink) !important;
|
||||
margin: 0 0 0.55rem !important;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
.actor-card p {
|
||||
font-family: var(--mono-stack);
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.55;
|
||||
color: var(--defense-ink-soft);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.actor-card p strong {
|
||||
color: var(--defense-ink);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.coi-equation {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0.6rem;
|
||||
text-align: center;
|
||||
background: var(--defense-surface);
|
||||
border: 1px solid var(--paper-border);
|
||||
border-radius: var(--radius-lg);
|
||||
padding: 2.25rem 1.5rem;
|
||||
margin: 1.8rem auto 0;
|
||||
}
|
||||
|
||||
.coi-equation .formula {
|
||||
font-family: "CMU Serif", Georgia, serif;
|
||||
font-size: clamp(1.8rem, 4vw, 2.6rem);
|
||||
color: var(--defense-ink);
|
||||
}
|
||||
|
||||
.coi-equation .formula em {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.coi-equation .caption {
|
||||
font-family: var(--mono-stack);
|
||||
font-size: 0.92rem;
|
||||
color: var(--defense-ink-soft);
|
||||
max-width: 46ch;
|
||||
margin: 0 auto;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.takeaways {
|
||||
list-style: none;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
max-width: 720px;
|
||||
display: grid;
|
||||
gap: 0.85rem;
|
||||
}
|
||||
|
||||
.takeaways li {
|
||||
display: grid;
|
||||
grid-template-columns: 2.6rem 1fr;
|
||||
align-items: start;
|
||||
gap: 1rem;
|
||||
padding: 1rem 1.2rem;
|
||||
background: var(--defense-surface);
|
||||
border: 1px solid var(--paper-border);
|
||||
border-left: 3px solid var(--defense-teal);
|
||||
border-radius: var(--radius);
|
||||
font-family: var(--mono-stack);
|
||||
font-size: 1rem;
|
||||
color: var(--defense-ink);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.takeaways li .num {
|
||||
font-weight: 700;
|
||||
color: var(--defense-teal);
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.takeaways li .stat {
|
||||
display: block;
|
||||
font-size: 0.82rem;
|
||||
color: var(--defense-ink-soft);
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
.deploy-line {
|
||||
font-family: var(--mono-stack);
|
||||
font-size: clamp(1.05rem, 2vw, 1.3rem);
|
||||
text-align: center;
|
||||
margin: 2rem auto 0;
|
||||
max-width: 48ch;
|
||||
color: var(--defense-ink);
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.deploy-line strong {
|
||||
background: var(--defense-teal-bg);
|
||||
padding: 0.05em 0.35em;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.hf-callout {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
gap: 1rem;
|
||||
align-items: center;
|
||||
background: #fff8e7;
|
||||
border: 1px solid #f3dba0;
|
||||
border-radius: var(--radius-lg);
|
||||
padding: 1.1rem 1.3rem;
|
||||
margin: 1.6rem auto 0;
|
||||
max-width: 720px;
|
||||
font-family: var(--mono-stack);
|
||||
}
|
||||
|
||||
.hf-callout .hf-emoji {
|
||||
font-size: 2rem;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.hf-callout h4 {
|
||||
margin: 0 0 0.3rem 0 !important;
|
||||
font-family: var(--mono-stack) !important;
|
||||
font-size: 1.05rem !important;
|
||||
color: var(--defense-ink) !important;
|
||||
}
|
||||
|
||||
.hf-callout p {
|
||||
margin: 0;
|
||||
font-size: 0.92rem;
|
||||
color: var(--defense-ink-soft);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.hf-callout a {
|
||||
color: var(--defense-blue);
|
||||
border-bottom-color: var(--defense-teal-soft);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.actor-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.takeaways li {
|
||||
grid-template-columns: 2rem 1fr;
|
||||
gap: 0.7rem;
|
||||
}
|
||||
|
||||
.hf-callout {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
.more-works-container,
|
||||
.scroll-to-top,
|
||||
|
||||
123
docs/static/images/agent.svg
vendored
Normal file
123
docs/static/images/agent.svg
vendored
Normal file
@@ -0,0 +1,123 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" width="100%" height="100%">
|
||||
<defs>
|
||||
<radialGradient id="bgShadow" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0%" stop-color="#143547" stop-opacity="0.15" />
|
||||
<stop offset="100%" stop-color="#ffffff" stop-opacity="0" />
|
||||
</radialGradient>
|
||||
|
||||
<radialGradient id="innerShadow" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0%" stop-color="#15334c" stop-opacity="0.35" />
|
||||
<stop offset="100%" stop-color="#ffffff" stop-opacity="0" />
|
||||
</radialGradient>
|
||||
|
||||
<linearGradient id="cubeTop" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="100%" stop-color="#e2f1f7" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="cubeLeft" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" stop-color="#5caec4" />
|
||||
<stop offset="100%" stop-color="#337899" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="cubeRight" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" stop-color="#9ce6d7" />
|
||||
<stop offset="100%" stop-color="#5fbfa9" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="headTop" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="100%" stop-color="#eef6fa" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="headLeft" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="100%" stop-color="#d9eaf0" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="headRight" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="100%" stop-color="#e3eff5" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="screenGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#0c2340" />
|
||||
<stop offset="100%" stop-color="#16355c" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="recessGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#bcdde8" />
|
||||
<stop offset="100%" stop-color="#edf6f9" />
|
||||
</linearGradient>
|
||||
|
||||
<style>
|
||||
.stroke-main { stroke: #1a446c; stroke-width: 7px; stroke-linecap: round; stroke-linejoin: round; }
|
||||
.stroke-medium { stroke: #1a446c; stroke-width: 5.5px; stroke-linecap: round; stroke-linejoin: round; }
|
||||
.stroke-thin { stroke: #1a446c; stroke-width: 4px; stroke-linecap: round; stroke-linejoin: round; }
|
||||
.circuit-line { fill: none; stroke: #ffffff; stroke-width: 4px; stroke-linecap: round; stroke-linejoin: round; stroke-opacity: 0.9; }
|
||||
.circuit-node { fill: #ffffff; stroke: #1a446c; stroke-width: 3.5px; }
|
||||
.glow-eye { fill: #6bf2ff; filter: drop-shadow(0px 0px 3px rgba(107,242,255,0.8)); }
|
||||
</style>
|
||||
</defs>
|
||||
|
||||
<ellipse cx="400" cy="700" rx="220" ry="75" fill="url(#bgShadow)" />
|
||||
|
||||
<polygon points="220,415 400,519 400,710 220,606" fill="url(#cubeLeft)" />
|
||||
<polygon points="400,519 580,415 580,606 400,710" fill="url(#cubeRight)" />
|
||||
|
||||
<polygon points="220,415 400,519 400,450 220,346" fill="#ffffff" fill-opacity="0.35" />
|
||||
<polygon points="400,519 580,415 580,346 400,450" fill="#ffffff" fill-opacity="0.15" />
|
||||
|
||||
<polygon points="220,346 400,242 580,346 400,450" fill="url(#cubeTop)" />
|
||||
|
||||
<polygon points="220,346 400,242 580,346 580,606 400,710 220,606" fill="none" class="stroke-main" />
|
||||
<line x1="400" y1="450" x2="400" y2="710" class="stroke-main" />
|
||||
<line x1="220" y1="415" x2="400" y2="519" class="stroke-main" />
|
||||
<line x1="400" y1="519" x2="580" y2="415" class="stroke-main" />
|
||||
|
||||
<path d="M 260,510 L 315,542 L 315,615" class="circuit-line" />
|
||||
<circle cx="260" cy="510" r="6" class="circuit-node" />
|
||||
|
||||
<path d="M 285,575 L 340,607 L 340,670" class="circuit-line" />
|
||||
<circle cx="285" cy="575" r="6" class="circuit-node" />
|
||||
|
||||
<path d="M 365,550 L 365,685" class="circuit-line" />
|
||||
<circle cx="365" cy="550" r="6" class="circuit-node" />
|
||||
|
||||
<path d="M 540,510 L 460,556 L 460,640" class="circuit-line" />
|
||||
<circle cx="540" cy="510" r="6" class="circuit-node" />
|
||||
|
||||
<path d="M 520,570 L 485,590 L 485,665" class="circuit-line" />
|
||||
<circle cx="520" cy="570" r="6" class="circuit-node" />
|
||||
|
||||
|
||||
<polygon points="275,346 400,274 525,346 400,418" fill="url(#recessGrad)" class="stroke-thin" />
|
||||
<ellipse cx="400" cy="346" rx="65" ry="28" fill="url(#innerShadow)" />
|
||||
|
||||
|
||||
<polygon points="340,335 400,300 460,335 400,370" fill="#142d42" fill-opacity="0.25" />
|
||||
|
||||
<polygon points="310,250 400,302 400,397 310,345" fill="url(#headLeft)" />
|
||||
<polygon points="400,302 490,250 490,345 400,397" fill="url(#headRight)" />
|
||||
<polygon points="310,250 400,198 490,250 400,302" fill="url(#headTop)" />
|
||||
|
||||
<polygon points="310,250 400,198 490,250 490,345 400,397 310,345" fill="none" class="stroke-medium" />
|
||||
<line x1="400" y1="302" x2="400" y2="397" class="stroke-medium" />
|
||||
|
||||
<polygon points="325,268 385,303 385,370 325,335" fill="url(#screenGrad)" class="stroke-thin" />
|
||||
|
||||
<line x1="343" y1="306" x2="343" y2="322" stroke="#6bf2ff" stroke-width="7.5" stroke-linecap="round" class="glow-eye" />
|
||||
<line x1="367" y1="320" x2="367" y2="336" stroke="#6bf2ff" stroke-width="7.5" stroke-linecap="round" class="glow-eye" />
|
||||
|
||||
|
||||
<ellipse cx="400" cy="230" rx="12" ry="6" fill="#325b7f" />
|
||||
|
||||
<path d="M 320,165 C 320,142 480,142 480,165" fill="none" stroke="#63cbd1" stroke-width="6" stroke-linecap="round" stroke-opacity="0.8" />
|
||||
|
||||
<line x1="400" y1="230" x2="400" y2="135" class="stroke-medium" />
|
||||
|
||||
<path d="M 480,165 C 480,188 320,188 320,165" fill="none" stroke="#63cbd1" stroke-width="6" stroke-linecap="round" />
|
||||
|
||||
<circle cx="400" cy="135" r="10" fill="#5cbfa9" class="stroke-medium" />
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
BIN
docs/static/images/apple-touch-icon.png
vendored
Normal file
BIN
docs/static/images/apple-touch-icon.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
BIN
docs/static/images/favicon.ico
vendored
BIN
docs/static/images/favicon.ico
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 15 KiB |
87
docs/static/images/human.svg
vendored
Normal file
87
docs/static/images/human.svg
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="100%" height="100%">
|
||||
<defs>
|
||||
<radialGradient id="dropShadow" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0%" stop-color="#143547" stop-opacity="0.15" />
|
||||
<stop offset="100%" stop-color="#ffffff" stop-opacity="0" />
|
||||
</radialGradient>
|
||||
|
||||
<radialGradient id="sphereShadow" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0%" stop-color="#1c4561" stop-opacity="0.4" />
|
||||
<stop offset="60%" stop-color="#2a5c7c" stop-opacity="0.15" />
|
||||
<stop offset="100%" stop-color="#ffffff" stop-opacity="0" />
|
||||
</radialGradient>
|
||||
|
||||
<linearGradient id="cubeTop" x1="25%" y1="0%" x2="75%" y2="100%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="100%" stop-color="#e1eff7" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="cubeLeft" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#5faec4" />
|
||||
<stop offset="100%" stop-color="#367fa3" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="cubeRight" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#9ce6d7" />
|
||||
<stop offset="100%" stop-color="#67c7b3" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="rimLeft" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="100%" stop-color="#cbdfe8" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="rimRight" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="100%" stop-color="#d5e6ed" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient id="sphereGrad" x1="30%" y1="10%" x2="70%" y2="90%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="15%" stop-color="#fffdf3" />
|
||||
<stop offset="65%" stop-color="#fbf2d5" />
|
||||
<stop offset="100%" stop-color="#eadebe" />
|
||||
</linearGradient>
|
||||
|
||||
<style>
|
||||
.outline {
|
||||
stroke: #1e517b;
|
||||
stroke-width: 8px;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.inner-line {
|
||||
stroke: #1e517b;
|
||||
stroke-width: 6px;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
|
||||
<ellipse cx="430" cy="710" rx="180" ry="60" transform="rotate(-15, 430, 710)" fill="url(#dropShadow)" />
|
||||
|
||||
<polygon points="310,470 500,570 500,750 310,650" fill="url(#cubeLeft)" />
|
||||
|
||||
<polygon points="500,570 690,470 690,650 500,750" fill="url(#cubeRight)" />
|
||||
|
||||
<polygon points="310,400 500,500 500,570 310,470" fill="url(#rimLeft)" />
|
||||
|
||||
<polygon points="500,500 690,400 690,470 500,570" fill="url(#rimRight)" />
|
||||
|
||||
<polygon points="310,400 500,300 690,400 500,500" fill="url(#cubeTop)" />
|
||||
|
||||
<ellipse cx="500" cy="370" rx="75" ry="35" fill="url(#sphereShadow)" />
|
||||
|
||||
<polygon points="310,400 500,300 690,400 690,650 500,750 310,650" fill="none" class="outline" />
|
||||
|
||||
<line x1="310" y1="470" x2="500" y2="570" class="inner-line" />
|
||||
<line x1="500" y1="570" x2="690" y2="470" class="inner-line" />
|
||||
<line x1="500" y1="500" x2="500" y2="750" class="inner-line" />
|
||||
<line x1="310" y1="400" x2="500" y2="500" class="inner-line" />
|
||||
<line x1="500" y1="500" x2="690" y2="400" class="inner-line" />
|
||||
|
||||
<g id="sphere">
|
||||
<circle cx="500" cy="266" r="90" fill="url(#sphereGrad)" class="outline" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
Reference in New Issue
Block a user