css improvements
This commit is contained in:
@@ -92,6 +92,8 @@
|
|||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
transition: color var(--transition-base);
|
transition: color var(--transition-base);
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-wrapper textarea + i {
|
.input-wrapper textarea + i {
|
||||||
@@ -110,6 +112,7 @@
|
|||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
font-family: var(--font-primary);
|
font-family: var(--font-primary);
|
||||||
transition: all var(--transition-base);
|
transition: all var(--transition-base);
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-wrapper textarea {
|
.input-wrapper textarea {
|
||||||
@@ -131,6 +134,7 @@
|
|||||||
.input-wrapper input:focus + i,
|
.input-wrapper input:focus + i,
|
||||||
.input-wrapper textarea:focus + i {
|
.input-wrapper textarea:focus + i {
|
||||||
color: var(--accent-color);
|
color: var(--accent-color);
|
||||||
|
top: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Character Counter */
|
/* Character Counter */
|
||||||
@@ -160,6 +164,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--space-xs);
|
gap: var(--space-xs);
|
||||||
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Submit Button */
|
/* Submit Button */
|
||||||
@@ -243,9 +248,6 @@
|
|||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
|
||||||
|
|
||||||
.contact-info h3::after {
|
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: -8px;
|
bottom: -8px;
|
||||||
|
|||||||
@@ -27,11 +27,18 @@ header {
|
|||||||
.logo {
|
.logo {
|
||||||
font-size: var(--font-size-2xl);
|
font-size: var(--font-size-2xl);
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: var(--text-color);
|
}
|
||||||
|
|
||||||
|
.logo a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: flex;
|
font-size: 0; /* Remove space between inline elements */
|
||||||
align-items: center;
|
}
|
||||||
gap: var(--space-xs);
|
|
||||||
|
.logo-text, .logo-sys {
|
||||||
|
font-size: var(--font-size-2xl); /* Restore font size */
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: baseline;
|
||||||
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo-text {
|
.logo-text {
|
||||||
@@ -84,19 +91,6 @@ header {
|
|||||||
transform: rotate(15deg);
|
transform: rotate(15deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Scroll Progress */
|
|
||||||
.scroll-progress {
|
|
||||||
position: absolute;
|
|
||||||
bottom: -2px;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
background: var(--accent-color);
|
|
||||||
transform-origin: left;
|
|
||||||
transform: scaleX(0);
|
|
||||||
transition: transform var(--transition-base);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Header Scroll State */
|
/* Header Scroll State */
|
||||||
header.scrolled {
|
header.scrolled {
|
||||||
box-shadow: var(--shadow-md);
|
box-shadow: var(--shadow-md);
|
||||||
|
|||||||
Reference in New Issue
Block a user