laforceit.com/test-styles.css

57 lines
1.2 KiB
CSS

/* Test CSS file to confirm changes are working */
/* Save this as test-styles.css in your repository root */
/* Logo Styles - Enhanced Version */
.logo {
position: relative;
display: flex;
align-items: center;
}
.logo a {
display: flex;
align-items: center;
text-decoration: none;
position: relative;
}
.logo-text {
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 1.5rem;
background: linear-gradient(90deg, #ff0000 0%, #ff6e00 50%, #ffa500 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
position: relative;
text-shadow: 0 0 15px rgba(255, 150, 100, 0.2);
letter-spacing: 0.5px;
}
.logo-dot {
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 1.5rem;
color: #ff6e00;
position: relative;
}
/* Logo with tech icon detail - using different brackets to be obviously visible */
.logo a::before {
content: "[ ";
font-family: 'JetBrains Mono', monospace;
color: #ff6e00;
font-weight: bold;
opacity: 0.8;
margin-right: 2px;
}
.logo a::after {
content: " ]";
font-family: 'JetBrains Mono', monospace;
color: #ff6e00;
font-weight: bold;
opacity: 0.8;
margin-left: 2px;
}