App-GitKtti
view release on metacpan or search on metacpan
docs/index.html view on Meta::CPAN
50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.8); }
100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes starfield {
0% { transform: translateY(0) rotate(0deg); }
100% { transform: translateY(-100vh) rotate(360deg); }
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #e0e0e0;
background: #0a0a0a;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(ellipse at 25% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
radial-gradient(ellipse at 75% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
radial-gradient(ellipse at 50% 25%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
z-index: -2;
}
.stars {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}
.star {
position: absolute;
width: 2px;
height: 2px;
background: white;
border-radius: 50%;
animation: starfield 20s linear infinite;
}
.star:nth-child(odd) {
animation-duration: 25s;
opacity: 0.5;
}
.star:nth-child(3n) {
animation-duration: 15s;
opacity: 0.8;
}
.shooting-star {
position: absolute;
width: 12px;
height: 4px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
border-radius: 50%;
opacity: 0;
animation: shootingStar 4s linear infinite;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
.shooting-star::before {
content: '';
position: absolute;
top: 50%;
left: -30px;
width: 30px;
height: 1px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
transform: translateY(-50%);
}
.shooting-star:nth-child(even) {
animation-delay: -2s;
animation-duration: 5s;
}
.shooting-star:nth-child(3n) {
docs/index.html view on Meta::CPAN
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-container {
display: flex;
align-items: center;
gap: 1rem;
}
.git-logo {
width: 50px;
height: 50px;
background: url('assets/gitktti_logo.png') center/contain no-repeat;
filter: drop-shadow(0 0 15px rgba(240, 101, 67, 0.5));
transition: all 0.3s ease;
}
.git-logo:hover {
transform: scale(1.1) rotate(5deg);
filter: drop-shadow(0 0 25px rgba(240, 101, 67, 0.8));
}
.logo {
font-size: 2.5rem;
font-weight: 800;
color: #667eea;
text-decoration: none;
text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
transition: all 0.3s ease;
}
.logo:hover {
transform: scale(1.05);
text-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
}
.hero {
text-align: center;
padding: 8rem 0;
color: white;
position: relative;
animation: fadeInUp 1.5s ease-out;
}
.hero-logo {
width: 150px;
height: 150px;
background: url('assets/gitktti_logo.png') center/contain no-repeat;
margin: 0 auto 2rem;
filter: drop-shadow(0 0 30px rgba(240, 101, 67, 0.6));
animation: float 4s ease-in-out infinite;
}
.hero h1 {
font-size: 5rem;
margin-bottom: 1rem;
text-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
background: linear-gradient(45deg, #667eea, #764ba2, #ff6b6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: float 6s ease-in-out infinite;
font-weight: 900;
letter-spacing: -2px;
}
.hero .subtitle {
font-size: 2rem;
margin-bottom: 2rem;
opacity: 0.9;
color: #667eea;
text-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
animation: slideInLeft 1.5s ease-out 0.5s both;
}
.hero .tagline {
font-size: 1.4rem;
margin-bottom: 4rem;
opacity: 0.8;
max-width: 800px;
margin-left: auto;
margin-right: auto;
animation: slideInRight 1.5s ease-out 1s both;
}
.cta-button {
display: inline-block;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
padding: 20px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.2rem;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
border: 2px solid transparent;
position: relative;
overflow: hidden;
animation: glow 3s ease-in-out infinite;
}
.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.cta-button:hover::before {
left: 100%;
}
.cta-button:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
border-color: rgba(102, 126, 234, 0.5);
}
.main-content {
background: rgba(20, 20, 20, 0.8);
margin: 2rem 0;
border-radius: 30px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(20px);
border: 1px solid rgba(102, 126, 234, 0.2);
}
.features {
padding: 6rem 2rem;
position: relative;
}
.features h2 {
text-align: center;
font-size: 3.5rem;
margin-bottom: 4rem;
color: #e0e0e0;
text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
font-weight: 800;
animation: fadeInUp 1s ease-out;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
margin-bottom: 4rem;
}
.feature-card {
background: rgba(30, 30, 30, 0.8);
padding: 3rem;
border-radius: 25px;
text-align: center;
border: 1px solid rgba(102, 126, 234, 0.3);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
}
.feature-card::before {
content: '';
position: absolute;
( run in 2.296 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )