chore: save iqon static deploy snapshot
This commit is contained in:
+234
-3
@@ -15,6 +15,7 @@ html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
body {
|
||||
@@ -80,7 +81,8 @@ body {
|
||||
}
|
||||
|
||||
.main-nav a:hover,
|
||||
.main-nav a.active {
|
||||
.main-nav a.active,
|
||||
.main-nav a[aria-current="page"] {
|
||||
border-bottom-color: var(--accent);
|
||||
}
|
||||
|
||||
@@ -118,7 +120,7 @@ body {
|
||||
|
||||
h1 {
|
||||
margin: 0 0 1.3rem;
|
||||
max-width: 16ch;
|
||||
max-width: min(16ch, 100%);
|
||||
font-family: "Sora", sans-serif;
|
||||
font-size: clamp(2rem, 3.2vw, 3.8rem);
|
||||
line-height: 1.03;
|
||||
@@ -218,6 +220,110 @@ h1 {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.service-tile a {
|
||||
display: inline-block;
|
||||
margin-top: 1rem;
|
||||
color: var(--ink);
|
||||
font-size: 0.78rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.page-hero {
|
||||
padding: 5rem 2rem 4rem;
|
||||
background: var(--surface);
|
||||
border-bottom: 2px solid var(--accent);
|
||||
}
|
||||
|
||||
.page-hero h1 {
|
||||
max-width: min(18ch, 100%);
|
||||
}
|
||||
|
||||
.page-hero .lead {
|
||||
max-width: 68ch;
|
||||
}
|
||||
|
||||
.content-grid,
|
||||
.detail-grid {
|
||||
display: grid;
|
||||
gap: 1px;
|
||||
background: var(--line);
|
||||
border-top: 1px solid var(--line);
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.content-grid {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.detail-grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.content-card,
|
||||
.detail-panel {
|
||||
background: var(--surface);
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.content-card h2,
|
||||
.detail-panel h2 {
|
||||
margin: 0 0 0.7rem;
|
||||
font-family: "Sora", sans-serif;
|
||||
font-size: 1.2rem;
|
||||
line-height: 1.15;
|
||||
}
|
||||
|
||||
.content-card p,
|
||||
.detail-panel p,
|
||||
.detail-panel li {
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.content-card a {
|
||||
display: inline-block;
|
||||
margin-top: 0.8rem;
|
||||
color: var(--ink);
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.page-section {
|
||||
padding: 4rem 2rem;
|
||||
}
|
||||
|
||||
.page-section h2 {
|
||||
margin: 0 0 1rem;
|
||||
font-family: "Sora", sans-serif;
|
||||
font-size: clamp(1.5rem, 2.4vw, 2.5rem);
|
||||
}
|
||||
|
||||
.page-section p {
|
||||
max-width: 72ch;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.contact-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.contact-list li {
|
||||
margin-bottom: 0.7rem;
|
||||
}
|
||||
|
||||
a:focus-visible,
|
||||
button:focus-visible,
|
||||
input:focus-visible,
|
||||
textarea:focus-visible,
|
||||
select:focus-visible {
|
||||
outline: 3px solid var(--accent);
|
||||
outline-offset: 3px;
|
||||
}
|
||||
|
||||
.method,
|
||||
.cases {
|
||||
padding: 4.6rem 2rem;
|
||||
@@ -386,6 +492,10 @@ footer p {
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
padding-top: 0.9rem;
|
||||
display: flex;
|
||||
@@ -428,6 +538,11 @@ footer p {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.content-grid,
|
||||
.detail-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.steps {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
@@ -439,7 +554,61 @@ footer p {
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.topbar {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0.7rem;
|
||||
padding: 0.8rem 1rem;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
}
|
||||
|
||||
.main-nav {
|
||||
justify-content: flex-start;
|
||||
width: calc(100vw - 2rem);
|
||||
max-width: calc(100vw - 2rem);
|
||||
overflow: visible;
|
||||
flex-wrap: wrap;
|
||||
gap: 0;
|
||||
padding-bottom: 0.2rem;
|
||||
}
|
||||
|
||||
.main-nav a {
|
||||
flex: 0 0 auto;
|
||||
font-size: 0.65rem;
|
||||
padding: 0.4rem 0.42rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.65rem;
|
||||
line-height: 1.08;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.section-head h3,
|
||||
.cta-band h3 {
|
||||
font-size: 1.55rem;
|
||||
}
|
||||
|
||||
.cta-band h3 {
|
||||
max-width: 11ch;
|
||||
line-height: 1.08;
|
||||
}
|
||||
|
||||
.lead,
|
||||
.page-hero .lead,
|
||||
.content-card p,
|
||||
.detail-panel p,
|
||||
.detail-panel li {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.hero-actions {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero-copy,
|
||||
@@ -448,7 +617,36 @@ footer p {
|
||||
.cta-band,
|
||||
footer {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
padding-right: 1.5rem;
|
||||
}
|
||||
|
||||
.hero,
|
||||
.hero-copy,
|
||||
.hero-cloud,
|
||||
.service-strip,
|
||||
.method,
|
||||
.cases,
|
||||
.cta-band,
|
||||
footer,
|
||||
.page-hero,
|
||||
.page-section,
|
||||
.content-grid,
|
||||
.detail-grid,
|
||||
.content-card,
|
||||
.detail-panel,
|
||||
.case-copy {
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
max-width: 100vw;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
p,
|
||||
li {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.hero-copy {
|
||||
@@ -460,6 +658,39 @@ footer p {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.page-hero,
|
||||
.page-section {
|
||||
padding-left: 1rem;
|
||||
padding-right: 1.5rem;
|
||||
}
|
||||
|
||||
.content-card,
|
||||
.detail-panel,
|
||||
.service-tile {
|
||||
padding-right: 1.8rem;
|
||||
}
|
||||
|
||||
.hero-copy > *,
|
||||
.page-hero > *,
|
||||
.cta-band > *,
|
||||
.content-card > *,
|
||||
.detail-panel > *,
|
||||
.service-tile > *,
|
||||
.case-copy > * {
|
||||
width: calc(100vw - 3.5rem);
|
||||
max-width: 310px;
|
||||
}
|
||||
|
||||
.hero-copy h1,
|
||||
.page-hero h1 {
|
||||
max-width: 330px;
|
||||
}
|
||||
|
||||
.hero-copy .lead,
|
||||
.page-hero .lead {
|
||||
max-width: 270px;
|
||||
}
|
||||
|
||||
.service-tile {
|
||||
border-right: none;
|
||||
border-bottom: 1px solid #d6d6d2;
|
||||
|
||||
Reference in New Issue
Block a user