fix application section
This commit is contained in:
200
static/style.css
200
static/style.css
@ -566,165 +566,77 @@ p {
|
||||
|
||||
.feature-showcase {
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.feature-mockup {
|
||||
.feature-image {
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
|
||||
margin-bottom: 2rem;
|
||||
overflow: hidden;
|
||||
border: 1px solid #e5e7eb;
|
||||
}
|
||||
|
||||
.mockup-header {
|
||||
background: #f3f4f6;
|
||||
padding: 12px 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
border-bottom: 1px solid #e5e7eb;
|
||||
}
|
||||
|
||||
.mockup-buttons {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.mockup-buttons span {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
background: #d1d5db;
|
||||
}
|
||||
|
||||
.mockup-title {
|
||||
color: #6b7280;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.mockup-content {
|
||||
padding: 20px;
|
||||
min-height: 200px;
|
||||
position: relative;
|
||||
aspect-ratio: 16/10;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Desktop Mockup */
|
||||
.desktop-wallpaper {
|
||||
.feature-image img {
|
||||
width: 100%;
|
||||
height: 160px;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
border-radius: 8px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.desktop-panel {
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
width: 100%;
|
||||
padding: 8px 16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
.panel-left {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.app-icon {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.panel-right {
|
||||
color: white;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
/* App Mockup */
|
||||
.app-list {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.app-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 12px 16px;
|
||||
margin-bottom: 8px;
|
||||
background: #f9fafb;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #e5e7eb;
|
||||
}
|
||||
|
||||
.install-btn {
|
||||
background: #059669;
|
||||
color: white;
|
||||
padding: 4px 12px;
|
||||
border-radius: 16px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* Performance Mockup */
|
||||
.performance-bars {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.performance-item {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.perf-label {
|
||||
text-align: left;
|
||||
margin-bottom: 8px;
|
||||
font-weight: 500;
|
||||
color: #374151;
|
||||
}
|
||||
|
||||
.perf-bar {
|
||||
background: #e5e7eb;
|
||||
height: 24px;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 6px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.perf-fill {
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 12px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.image-caption {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
padding: 0.4rem 1rem;
|
||||
border-radius: 0 0 12px 12px;
|
||||
}
|
||||
|
||||
.image-caption small {
|
||||
color: white;
|
||||
position: relative;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.perf-fill.windows {
|
||||
background: linear-gradient(90deg, #f59e0b, #d97706);
|
||||
.image-caption a {
|
||||
color: #a7f3d0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.perf-fill.linux {
|
||||
background: linear-gradient(90deg, #10b981, #059669);
|
||||
.image-caption a:hover {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.feature-showcase h3 {
|
||||
color: #047857;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.3rem;
|
||||
min-height: 2.6rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.feature-showcase p {
|
||||
color: #6b7280;
|
||||
line-height: 1.6;
|
||||
flex-grow: 1;
|
||||
margin: 0;
|
||||
min-height: 4rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* CTA Section */
|
||||
@ -1071,19 +983,7 @@ footer {
|
||||
h2 { font-size: 1.8rem; }
|
||||
h3 { font-size: 1.3rem; }
|
||||
|
||||
/* Performance bars responsive */
|
||||
.performance-bars {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.performance-item {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.perf-label {
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
@ -1195,18 +1095,20 @@ footer {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
/* Desktop mockup adjustments */
|
||||
.feature-mockup {
|
||||
min-height: 200px;
|
||||
/* Feature image adjustments for mobile */
|
||||
.feature-image {
|
||||
aspect-ratio: 16/9;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.mockup-content {
|
||||
padding: 1rem;
|
||||
.feature-showcase h3 {
|
||||
font-size: 1.2rem;
|
||||
min-height: 2.4rem;
|
||||
}
|
||||
|
||||
.app-item {
|
||||
padding: 0.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
.feature-showcase p {
|
||||
min-height: 3.5rem;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user