57 lines
923 B
CSS
57 lines
923 B
CSS
.laptop-screen {
|
|
border-radius: 8px 8px 0 0;
|
|
border: 3px solid #374151;
|
|
background: #1f2937;
|
|
}
|
|
|
|
.laptop-base {
|
|
position: relative;
|
|
}
|
|
|
|
.laptop-base::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 60px;
|
|
height: 8px;
|
|
background: #9ca3af;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.website-slide {
|
|
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.carousel-container {
|
|
perspective: 1000px;
|
|
}
|
|
|
|
.website-card {
|
|
transition: all 0.4s ease-in-out;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.website-card:hover {
|
|
transform: translateY(-10px) scale(1.02);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.website-card.active {
|
|
transform: scale(1.05);
|
|
z-index: 10;
|
|
}
|
|
|
|
.laptop-frame {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border-radius: 12px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.screen-content {
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: #000;
|
|
}
|