Files
easystream-main/f_scripts/fe/css/homepage.css
SamiAhmed7777 0b7e2d0a5b feat: Add comprehensive documentation suite and reorganize project structure
- Created complete documentation in docs/ directory
- Added PROJECT_OVERVIEW.md with feature highlights and getting started guide
- Added ARCHITECTURE.md with system design and technical details
- Added SECURITY.md with comprehensive security implementation guide
- Added DEVELOPMENT.md with development workflows and best practices
- Added DEPLOYMENT.md with production deployment instructions
- Added API.md with complete REST API documentation
- Added CONTRIBUTING.md with contribution guidelines
- Added CHANGELOG.md with version history and migration notes
- Reorganized all documentation files into docs/ directory for better organization
- Updated README.md with proper documentation links and quick navigation
- Enhanced project structure with professional documentation standards
2025-10-21 00:39:45 -07:00

313 lines
5.1 KiB
CSS

/* Homepage Styles */
.homepage {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
.hero-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 60px 40px;
border-radius: 12px;
margin: 20px 0 40px 0;
text-align: center;
}
.hero-content h1 {
font-size: 3rem;
margin-bottom: 16px;
font-weight: 700;
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.9;
}
.hero-actions {
margin-bottom: 40px;
}
.hero-actions .btn {
margin: 0 10px;
padding: 12px 30px;
font-size: 1.1rem;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 40px;
}
.stat-item {
text-align: center;
}
.stat-number {
display: block;
font-size: 2rem;
font-weight: bold;
margin-bottom: 5px;
}
.stat-label {
font-size: 0.9rem;
opacity: 0.8;
}
/* Section Headers */
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 2px solid #f0f0f0;
}
.section-header h2 {
font-size: 1.8rem;
margin: 0;
color: #333;
}
.view-all {
color: #007bff;
text-decoration: none;
font-weight: 500;
}
.view-all:hover {
text-decoration: underline;
}
/* Video Grid */
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 24px;
margin-bottom: 50px;
}
.featured-grid {
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
/* Video Cards */
.video-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.video-thumbnail {
position: relative;
width: 100%;
height: 160px;
overflow: hidden;
}
.video-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}
.video-card:hover .video-thumbnail img {
transform: scale(1.05);
}
.duration {
position: absolute;
bottom: 8px;
right: 8px;
background: rgba(0,0,0,0.8);
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
font-weight: 500;
}
.play-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
background: rgba(255,255,255,0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.2s;
}
.video-card:hover .play-overlay {
opacity: 1;
}
.play-overlay i {
font-size: 24px;
color: #007bff;
margin-left: 3px;
}
.video-details {
padding: 16px;
}
.video-title {
margin: 0 0 8px 0;
font-size: 1rem;
line-height: 1.4;
}
.video-title a {
color: #333;
text-decoration: none;
}
.video-title a:hover {
color: #007bff;
}
.video-meta {
font-size: 0.85rem;
color: #666;
line-height: 1.4;
}
.video-meta a {
color: #007bff;
text-decoration: none;
}
.video-meta a:hover {
text-decoration: underline;
}
.video-meta span {
margin-right: 8px;
}
/* Categories Grid */
.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 50px;
}
.category-card {
background: white;
padding: 24px;
border-radius: 12px;
text-align: center;
text-decoration: none;
color: #333;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.category-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
color: #333;
text-decoration: none;
}
.category-icon {
width: 60px;
height: 60px;
background: #f8f9fa;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px auto;
}
.category-icon i {
font-size: 24px;
color: #007bff;
}
.category-card h3 {
margin: 0 0 8px 0;
font-size: 1.1rem;
}
.video-count {
color: #666;
font-size: 0.9rem;
}
/* Call to Action */
.cta-section {
background: #f8f9fa;
padding: 60px 40px;
border-radius: 12px;
text-align: center;
margin: 40px 0;
}
.cta-content h2 {
font-size: 2rem;
margin-bottom: 16px;
color: #333;
}
.cta-content p {
font-size: 1.1rem;
color: #666;
margin-bottom: 30px;
}
.btn-large {
padding: 16px 40px;
font-size: 1.2rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.hero-section {
padding: 40px 20px;
}
.hero-content h1 {
font-size: 2rem;
}
.hero-stats {
gap: 20px;
}
.stat-number {
font-size: 1.5rem;
}
.video-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 16px;
}
.categories-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
}