1080 lines
22 KiB
CSS
1080 lines
22 KiB
CSS
:root {
|
|
--bg-color: #050505;
|
|
--text-color: #00f3ff;
|
|
--card-bg: #0a0a0f;
|
|
--accent-color: #ff00ff;
|
|
--link-color: #ffd700;
|
|
--mono-font: 'SFMono-Regular', Consolas, Menlo, monospace;
|
|
}
|
|
|
|
@keyframes avatar-color-shift {
|
|
|
|
0%,
|
|
100% {
|
|
filter: grayscale(100%) sepia(100%) hue-rotate(230deg) saturate(1.4) brightness(1.0);
|
|
}
|
|
|
|
45% {
|
|
filter: grayscale(100%) sepia(100%) hue-rotate(160deg) saturate(1.1) brightness(1.0);
|
|
}
|
|
}
|
|
|
|
@keyframes grow-reveal {
|
|
from {
|
|
opacity: 0;
|
|
max-height: 0;
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
max-height: 1000px;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
@keyframes shrink-fade-away {
|
|
from {
|
|
opacity: 1;
|
|
max-height: 1000px;
|
|
transform: scale(1);
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
max-height: 0;
|
|
transform: scale(0.95);
|
|
}
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: var(--mono-font);
|
|
background-color: var(--bg-color);
|
|
background-image: radial-gradient(rgba(0, 243, 255, 0.15) 1px, transparent 1px);
|
|
background-size: 24px 24px;
|
|
color: var(--text-color);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
padding: 40px 20px;
|
|
flex-direction: column;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
font-size: clamp(1.5rem, 5vw, 2.2rem);
|
|
color: #fff;
|
|
text-shadow: 1px 1px var(--accent-color), -1px -1px var(--text-color), 0 0 15px rgba(255, 255, 255, 0.3);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 0.75rem;
|
|
text-transform: uppercase;
|
|
color: var(--accent-color);
|
|
text-shadow: 0 0 8px var(--accent-color);
|
|
margin-bottom: 16px;
|
|
margin-top: 0;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
a {
|
|
color: var(--link-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.bento-grid {
|
|
display: grid;
|
|
max-width: 1000px;
|
|
gap: 24px;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.card {
|
|
background: var(--card-bg);
|
|
padding: 24px;
|
|
border: 0.2rem solid transparent;
|
|
overflow: hidden;
|
|
filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3)) drop-shadow(0 0 30px rgba(0, 243, 255, 0.15));
|
|
position: relative;
|
|
transition: all 0.3s ease;
|
|
backface-visibility: hidden;
|
|
clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
|
|
}
|
|
|
|
.avatar {
|
|
width: 120px;
|
|
height: 160px;
|
|
object-fit: cover;
|
|
border: 1px solid var(--text-color);
|
|
animation: avatar-color-shift 20s infinite linear;
|
|
}
|
|
|
|
body.cv-mode .avatar {
|
|
animation: none;
|
|
filter: none;
|
|
}
|
|
|
|
.hero {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-identity {
|
|
flex: 1 1 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.hero-name {
|
|
flex: 1;
|
|
}
|
|
|
|
.hero-name h1 {
|
|
margin: 0 0 4px 0;
|
|
}
|
|
|
|
.hero-name .headline {
|
|
margin: 0 0 4px 0;
|
|
font-size: 1rem;
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.hero-name .location {
|
|
margin: 0;
|
|
font-size: 0.85rem;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.hero-description {
|
|
margin: 0;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.hero-description p {
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.print-button {
|
|
position: absolute;
|
|
top: 1.25rem;
|
|
right: 1.25rem;
|
|
padding: 6px 14px;
|
|
background: rgba(0, 243, 255, 0.05);
|
|
border: 1px solid var(--text-color);
|
|
color: var(--text-color);
|
|
font-family: var(--mono-font);
|
|
font-size: 0.7rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
z-index: 100;
|
|
display: none;
|
|
border-radius: 4px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 12px 6px 10px;
|
|
text-decoration: none;
|
|
font-size: 0.82rem;
|
|
line-height: 1.3;
|
|
border-radius: 6px;
|
|
border: 1px solid transparent;
|
|
transition: all 0.2s ease;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.pill-icon {
|
|
font-size: 1.1em;
|
|
line-height: 1;
|
|
flex-shrink: 0;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 1.2em;
|
|
text-align: center;
|
|
filter: grayscale(90%) brightness(0.8);
|
|
}
|
|
|
|
.pill-label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.pill-url {
|
|
display: none;
|
|
}
|
|
|
|
.hero-contacts {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.contact-pill {
|
|
color: var(--link-color);
|
|
background: rgba(255, 215, 0, 0.06);
|
|
border-color: rgba(255, 215, 0, 0.2);
|
|
}
|
|
|
|
.contact-pill:hover {
|
|
background: rgba(255, 215, 0, 0.12);
|
|
border-color: rgba(255, 215, 0, 0.5);
|
|
box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
|
|
}
|
|
|
|
.contact-pill .pill-url {
|
|
color: var(--link-color);
|
|
}
|
|
|
|
.hero-nav {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
padding-top: 0;
|
|
border-top: none;
|
|
border-left: 1px solid rgba(0, 243, 255, 0.15);
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.nav-pill {
|
|
color: var(--text-color);
|
|
background: rgba(0, 243, 255, 0.04);
|
|
border-color: rgba(0, 243, 255, 0.15);
|
|
}
|
|
|
|
.nav-pill:hover {
|
|
background: rgba(0, 243, 255, 0.1);
|
|
border-color: rgba(0, 243, 255, 0.4);
|
|
box-shadow: 0 0 12px rgba(0, 243, 255, 0.15);
|
|
}
|
|
|
|
.nav-pill .pill-url {
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.selected-work {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 20px 28px;
|
|
}
|
|
|
|
.cv-mode .selected-work h2 {
|
|
grid-column: 1 / -1;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.selected-work .philosophy {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.highlight-item {
|
|
border-bottom: 1px solid rgba(0, 243, 255, 0.08);
|
|
border-left: 2px solid rgba(0, 243, 255, 0.15);
|
|
padding: 0 0 16px 16px;
|
|
}
|
|
|
|
.highlight-item h3 {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
color: #fff;
|
|
font-size: 1.05rem;
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
.highlight-date {
|
|
font-size: 0.85em;
|
|
color: rgba(0, 243, 255, 0.5);
|
|
font-weight: normal;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.highlight-descriptions {
|
|
column-count: 1;
|
|
}
|
|
|
|
.highlight-description {
|
|
margin: 0 0 8px 0;
|
|
font-size: 0.85rem;
|
|
line-height: 1.5;
|
|
opacity: 0.85;
|
|
break-inside: avoid;
|
|
}
|
|
|
|
.highlight-description:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.card blockquote.philosophy {
|
|
margin: 0.25em 0 0 0;
|
|
padding: 0.5rem 1.25rem;
|
|
border-left: 3px solid var(--accent-color);
|
|
background: rgba(0, 243, 255, 0.03);
|
|
font-style: italic;
|
|
opacity: 0.85;
|
|
font-size: 0.9rem;
|
|
line-height: 1.5;
|
|
border-radius: 0 6px 6px 0;
|
|
}
|
|
|
|
.cv-section {
|
|
background: rgba(0, 243, 255, 0.03);
|
|
border: 1px solid rgba(0, 243, 255, 0.15);
|
|
padding: 20px;
|
|
margin-top: 15px;
|
|
clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.cv-section:hover {
|
|
border-color: rgba(0, 243, 255, 0.3);
|
|
}
|
|
|
|
.cv-item {
|
|
margin-bottom: 20px;
|
|
border-left: 2px solid rgba(0, 243, 255, 0.2);
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.cv-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.cv-item-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.cv-title {
|
|
margin: 0;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.cv-date {
|
|
font-size: 0.7rem;
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.cv-org {
|
|
margin: 0 0 8px 0;
|
|
font-size: 0.8rem;
|
|
color: var(--link-color);
|
|
}
|
|
|
|
.cv-desc {
|
|
margin: 0;
|
|
font-size: 0.85rem;
|
|
line-height: 1.4;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.skill-categories {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1.5rem;
|
|
padding: 0;
|
|
}
|
|
|
|
.skill-group h3 {
|
|
font-size: 0.6rem;
|
|
text-transform: uppercase;
|
|
opacity: 0.4;
|
|
letter-spacing: 3px;
|
|
margin-top: 0;
|
|
margin-bottom: 0.5rem;
|
|
text-align: left;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.skill-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.4rem 0.8rem;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.tag {
|
|
display: inline-block;
|
|
opacity: 0;
|
|
transform: translateX(-5px);
|
|
transition: opacity 0.4s ease, transform 0.4s ease;
|
|
}
|
|
|
|
.reveal .tag {
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.personal-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.personal-tag {
|
|
font-size: 0.9rem;
|
|
color: var(--text-color);
|
|
padding: 6px 14px;
|
|
border-radius: 20px;
|
|
background: rgba(0, 243, 255, 0.05);
|
|
border: 1px solid rgba(0, 243, 255, 0.15);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.personal-tag:hover {
|
|
border-color: rgba(0, 243, 255, 0.4);
|
|
}
|
|
|
|
.personal-tag:nth-child(3n+1) {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.personal-tag:nth-child(3n+2) {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.personal-tag:nth-child(3n) {
|
|
opacity: 1.0;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.reveal {
|
|
display: block !important;
|
|
pointer-events: auto;
|
|
animation: grow-reveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
|
|
transition: none !important;
|
|
will-change: opacity, max-height, transform;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
.fade-out {
|
|
display: block !important;
|
|
animation: shrink-fade-away 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
|
|
transition: none !important;
|
|
will-change: opacity, max-height, transform;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
@media (min-width: 769px) {
|
|
.card {
|
|
background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
|
|
linear-gradient(135deg, rgba(0, 243, 255, 0.4), rgba(255, 0, 255, 0.4)) border-box;
|
|
}
|
|
|
|
.card:hover {
|
|
filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.5)) drop-shadow(0 0 50px rgba(0, 243, 255, 0.3));
|
|
background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
|
|
linear-gradient(135deg, rgba(0, 243, 255, 0.8), rgba(255, 0, 255, 0.8)) border-box;
|
|
}
|
|
|
|
.avatar {
|
|
display: block !important;
|
|
max-width: 80px !important;
|
|
max-height: 100px !important;
|
|
object-fit: cover !important;
|
|
border: 2px solid #ccc !important;
|
|
border-radius: 4px !important;
|
|
margin-right: 16px !important;
|
|
}
|
|
|
|
.hero {
|
|
grid-column: span 3;
|
|
}
|
|
|
|
.interests-showcase {
|
|
grid-column: span 3;
|
|
}
|
|
|
|
.hiring-toggle {
|
|
grid-column: span 3;
|
|
}
|
|
|
|
.selected-work {
|
|
grid-column: span 3;
|
|
}
|
|
|
|
body:not(.cv-mode) .personal {
|
|
grid-column: span 3;
|
|
}
|
|
|
|
.cv-mode .personal {
|
|
grid-column: span 1;
|
|
}
|
|
|
|
.first-experience {
|
|
grid-column: span 3;
|
|
}
|
|
|
|
.experience {
|
|
grid-column: span 3;
|
|
}
|
|
|
|
.skills {
|
|
grid-column: span 3;
|
|
}
|
|
|
|
.education {
|
|
grid-column: span 2;
|
|
}
|
|
|
|
.hero {
|
|
transform: none;
|
|
}
|
|
|
|
.selected-work {
|
|
transform: translate(2px, -2px);
|
|
}
|
|
|
|
.personal {
|
|
transform: translate(1px, -1px);
|
|
}
|
|
|
|
.hiring-toggle {
|
|
transform: translate(-2px, 3px);
|
|
}
|
|
|
|
.first-experience {
|
|
transform: translate(3px, -2px);
|
|
}
|
|
|
|
.experience {
|
|
transform: translate(3px, -2px);
|
|
}
|
|
|
|
.skills {
|
|
transform: translate(-3px, 4px);
|
|
}
|
|
|
|
.education {
|
|
transform: translate(2px, 3px);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.bento-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.card {
|
|
border-color: rgba(0, 243, 255, 0.3);
|
|
}
|
|
|
|
.card:hover {
|
|
border-color: rgba(0, 243, 255, 0.6);
|
|
}
|
|
|
|
.card blockquote.philosophy {
|
|
display: none;
|
|
}
|
|
|
|
.hero {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-identity {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-contacts,
|
|
.hero-nav {
|
|
justify-content: center;
|
|
gap: 4px;
|
|
padding: 2px;
|
|
margin: 2px;
|
|
}
|
|
|
|
.hero-nav {
|
|
border-left: none;
|
|
border-top: 1px solid rgba(0, 243, 255, 0.12);
|
|
}
|
|
|
|
.pill {
|
|
white-space: normal;
|
|
gap: 4px 6px;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.pill-url {
|
|
display: inline;
|
|
}
|
|
|
|
.avatar {
|
|
display: block !important;
|
|
max-width: 80px !important;
|
|
max-height: 100px !important;
|
|
object-fit: cover !important;
|
|
border: 2px solid #ccc !important;
|
|
border-radius: 4px !important;
|
|
margin-right: 16px !important;
|
|
}
|
|
}
|
|
|
|
body.cv-mode {
|
|
--bg-color: #0d0e12;
|
|
--text-color: #cbd5e1;
|
|
--accent-color: #00d2ff;
|
|
--secondary-accent: #f472b6;
|
|
--card-bg: #15171e;
|
|
background-image:
|
|
linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
|
|
background-size: 60px 60px !important;
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
.cv-mode .pill-cv {
|
|
display: none;
|
|
}
|
|
|
|
.cv-mode .print-button {
|
|
display: block;
|
|
border-color: var(--accent-color);
|
|
color: var(--accent-color);
|
|
font-family: inherit;
|
|
}
|
|
|
|
.cv-mode .print-button:hover {
|
|
background: var(--accent-color);
|
|
color: var(--card-bg);
|
|
box-shadow: 0 0 15px var(--accent-color);
|
|
}
|
|
|
|
.cv-mode .card {
|
|
transform: none !important;
|
|
border: 1px solid rgba(255, 255, 255, 0.05) !important;
|
|
box-shadow: none !important;
|
|
background: var(--card-bg) !important;
|
|
border-top: 2px solid #1e293b !important;
|
|
filter: none !important;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.cv-mode .card:hover {
|
|
background: var(--card-bg) !important;
|
|
}
|
|
|
|
.cv-mode h1,
|
|
.cv-mode h2,
|
|
.cv-mode h3 {
|
|
font-family: inherit;
|
|
text-transform: uppercase;
|
|
letter-spacing: normal;
|
|
text-shadow: none !important;
|
|
}
|
|
|
|
.cv-mode h1 {
|
|
color: #fff;
|
|
text-transform: none;
|
|
font-weight: 800;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.cv-mode h2 {
|
|
color: var(--accent-color);
|
|
font-size: 0.7rem;
|
|
font-family: var(--mono-font);
|
|
letter-spacing: 0.15em;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
padding-bottom: 12px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.cv-mode h3 {
|
|
color: #f8fafc;
|
|
text-transform: none;
|
|
font-weight: 600;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.cv-mode .tag {
|
|
font-size: 0.65rem !important;
|
|
font-family: var(--mono-font);
|
|
font-weight: 500;
|
|
opacity: 1 !important;
|
|
border: 1px solid rgba(0, 210, 255, 0.15);
|
|
background: rgba(0, 210, 255, 0.04);
|
|
color: var(--accent-color);
|
|
padding: 2px 8px;
|
|
transform: none !important;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.cv-mode .cv-date {
|
|
color: var(--secondary-accent);
|
|
font-family: var(--mono-font);
|
|
font-weight: 600;
|
|
font-size: 0.75rem;
|
|
background: rgba(244, 114, 182, 0.05);
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.cv-mode .cv-org {
|
|
font-size: 0.85rem;
|
|
color: var(--accent-color);
|
|
opacity: 0.9;
|
|
font-weight: 600;
|
|
margin: 4px 0 10px 0;
|
|
}
|
|
|
|
.cv-mode .cv-desc {
|
|
font-size: 0.9rem;
|
|
line-height: 1.6;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.page-footer {
|
|
text-align: center;
|
|
font-size: 0.75rem;
|
|
color: #666;
|
|
margin: 24px 0 0;
|
|
padding: 0;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
@media print {
|
|
.print-button {
|
|
display: none !important;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.cv-mode .hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.pill-cv {
|
|
display: inline-flex !important;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
background: transparent !important;
|
|
box-shadow: none !important;
|
|
filter: none !important;
|
|
transition: none !important;
|
|
color: #000 !important;
|
|
}
|
|
|
|
body {
|
|
background: #fff !important;
|
|
color: #000 !important;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
min-height: 0 !important;
|
|
overflow: visible !important;
|
|
display: block !important;
|
|
}
|
|
|
|
.bento-grid {
|
|
display: block !important;
|
|
max-width: 100% !important;
|
|
gap: 4px !important;
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.card {
|
|
background: #fff !important;
|
|
border: 1px solid #ccc !important;
|
|
border-radius: 3px !important;
|
|
padding: 8px !important;
|
|
margin: 4px 0 !important;
|
|
clip-path: none !important;
|
|
overflow: visible !important;
|
|
filter: none !important;
|
|
}
|
|
|
|
.hero {
|
|
display: flex !important;
|
|
flex-direction: row !important;
|
|
flex-wrap: wrap !important;
|
|
gap: 2px 4px !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
.hero-identity {
|
|
flex: 1 1 100% !important;
|
|
display: flex !important;
|
|
flex-direction: row !important;
|
|
align-items: center !important;
|
|
gap: 8px !important;
|
|
}
|
|
|
|
.hero-description {
|
|
flex: 1 1 100% !important;
|
|
}
|
|
|
|
.hero-contacts,
|
|
.hero-nav {
|
|
display: inline-flex !important;
|
|
flex-wrap: nowrap !important;
|
|
gap: 2px !important;
|
|
}
|
|
|
|
.pill {
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
gap: 2px !important;
|
|
padding: 1px 4px !important;
|
|
border: none !important;
|
|
background: none !important;
|
|
color: #000 !important;
|
|
text-decoration: none !important;
|
|
font-size: 0.65rem !important;
|
|
}
|
|
|
|
.pill .pill-icon {
|
|
display: none !important;
|
|
}
|
|
|
|
.pill .pill-url {
|
|
display: inline !important;
|
|
opacity: 1 !important;
|
|
color: #333 !important;
|
|
font-size: 0.6rem !important;
|
|
margin-left: 2px !important;
|
|
}
|
|
|
|
.selected-work {
|
|
gap: 8px 16px !important;
|
|
}
|
|
|
|
.highlight-item {
|
|
margin: 6px 0 !important;
|
|
padding: 4px 0 4px 10px !important;
|
|
border-bottom: 1px solid #eee !important;
|
|
border-left: 1px solid #ccc !important;
|
|
}
|
|
|
|
.highlight-item:last-child {
|
|
border-bottom: none !important;
|
|
}
|
|
|
|
.highlight-item h3 {
|
|
font-size: 10px !important;
|
|
margin: 0 0 2px 0 !important;
|
|
}
|
|
|
|
.highlight-subtitle {
|
|
font-size: 0.8em !important;
|
|
margin: 0 0 3px 0 !important;
|
|
font-style: italic !important;
|
|
}
|
|
|
|
.highlight-descriptions {
|
|
column-count: 1 !important;
|
|
}
|
|
|
|
.highlight-description {
|
|
font-size: 0.8em !important;
|
|
margin: 0 !important;
|
|
line-height: 1.3 !important;
|
|
}
|
|
|
|
.cv-section {
|
|
padding: 10px !important;
|
|
margin-top: 6px !important;
|
|
clip-path: none !important;
|
|
}
|
|
|
|
.cv-item {
|
|
margin-bottom: 8px !important;
|
|
padding-left: 8px !important;
|
|
border-left: 1px solid #727272 !important;
|
|
}
|
|
|
|
.cv-title {
|
|
font-size: 0.8rem !important;
|
|
}
|
|
|
|
.cv-org {
|
|
font-size: 0.7rem !important;
|
|
margin: 0 0 3px 0 !important;
|
|
}
|
|
|
|
.cv-desc {
|
|
font-size: 0.75rem !important;
|
|
line-height: 1.25 !important;
|
|
}
|
|
|
|
.cv-item-header {
|
|
margin-bottom: 2px !important;
|
|
}
|
|
|
|
.avatar {
|
|
display: block !important;
|
|
max-width: 60px !important;
|
|
max-height: 75px !important;
|
|
object-fit: cover !important;
|
|
border: 1px solid #ccc !important;
|
|
border-radius: 3px !important;
|
|
filter: none !important;
|
|
margin-right: 12px !important;
|
|
}
|
|
|
|
.experience,
|
|
.skills,
|
|
.education {
|
|
display: block !important;
|
|
opacity: 1 !important;
|
|
max-height: none !important;
|
|
overflow: visible !important;
|
|
pointer-events: auto !important;
|
|
margin: 4px 0 !important;
|
|
}
|
|
|
|
.skill-categories {
|
|
gap: 0.75rem !important;
|
|
}
|
|
|
|
.skill-group h3 {
|
|
font-size: 0.55rem !important;
|
|
margin-bottom: 0.2rem !important;
|
|
letter-spacing: 1px !important;
|
|
opacity: 0.6 !important;
|
|
}
|
|
|
|
.skill-tags {
|
|
gap: 0.15rem 0.4rem !important;
|
|
}
|
|
|
|
.tag {
|
|
opacity: 1 !important;
|
|
background: none !important;
|
|
border: none !important;
|
|
padding: 0 4px !important;
|
|
font-size: 0.75em !important;
|
|
transform: none !important;
|
|
}
|
|
|
|
.personal-tags {
|
|
flex-direction: row !important;
|
|
flex-wrap: wrap !important;
|
|
gap: 4px !important;
|
|
}
|
|
|
|
.personal-tag {
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
padding: 1px 6px !important;
|
|
border: none !important;
|
|
background: none !important;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 16px !important;
|
|
margin: 2px 0 4px 0 !important;
|
|
padding-bottom: 2px !important;
|
|
border-bottom: 1px solid #000 !important;
|
|
color: #000 !important;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 9px !important;
|
|
text-transform: uppercase !important;
|
|
color: #000 !important;
|
|
margin: 4px 0 3px 0 !important;
|
|
padding: 2px !important;
|
|
border-bottom: 1px solid #ddd !important;
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-size: 9px !important;
|
|
margin: 2px 0 !important;
|
|
color: #000 !important;
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
a {
|
|
color: #000 !important;
|
|
text-decoration: underline !important;
|
|
}
|
|
|
|
.card h1 {
|
|
margin: 0 0 2px 0 !important;
|
|
}
|
|
|
|
.card h2 {
|
|
margin: 2px 0 4px 0 !important;
|
|
}
|
|
|
|
.card p {
|
|
margin: 2px 0 !important;
|
|
font-size: 0.8em !important;
|
|
}
|
|
|
|
.card li {
|
|
margin: 1px 0 !important;
|
|
font-size: 0.8em !important;
|
|
}
|
|
|
|
img {
|
|
max-width: 60px !important;
|
|
max-height: 80px !important;
|
|
object-fit: contain !important;
|
|
filter: grayscale(100%) !important;
|
|
}
|
|
|
|
@page {
|
|
margin: 1cm;
|
|
}
|
|
|
|
.card {
|
|
page-break-inside: avoid !important;
|
|
}
|
|
|
|
.page-footer {
|
|
font-size: 0.6rem !important;
|
|
color: #888 !important;
|
|
margin: 16px 0 0 !important;
|
|
opacity: 0.5 !important;
|
|
}
|
|
|
|
.reveal,
|
|
.fade-out,
|
|
img {
|
|
animation: none !important;
|
|
transition: none !important;
|
|
filter: grayscale(100%) !important;
|
|
opacity: 1 !important;
|
|
}
|
|
} |