,

ApkSagar

हमारे ऐप्स | Our Apps :root { –bg-color: #f0f2f5; –primary-color: #007aff; –text-color: #333; –secondary-text-color: #666; –border-radius: 12px; –card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); –hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); } body { font-family: ‘Arial’, sans-serif; background-color: var(–bg-color); margin: 0; padding: 20px; color: var(–text-color); line-height: 1.6; } .container { max-width: 900px; margin:…

हमारे ऐप्स | Our Apps

:root {
–bg-color: #f0f2f5;
–primary-color: #007aff;
–text-color: #333;
–secondary-text-color: #666;
–border-radius: 12px;
–card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
–hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

body {
font-family: ‘Arial’, sans-serif;
background-color: var(–bg-color);
margin: 0;
padding: 20px;
color: var(–text-color);
line-height: 1.6;
}

.container {
max-width: 900px;
margin: auto;
padding: 20px;
}

.header {
text-align: center;
margin-bottom: 40px;
}

.header h1 {
font-size: 2.2rem;
color: var(–primary-color);
margin-bottom: 5px;
}

.header p {
font-size: 1.1rem;
color: var(–secondary-text-color);
}

.app-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 25px;
}

.app-card {
background-color: #fff;
border-radius: var(–border-radius);
padding: 20px;
text-align: center;
box-shadow: var(–card-shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-decoration: none;
color: inherit;
}

.app-card:hover {
transform: translateY(-5px);
box-shadow: var(–hover-shadow);
}

.app-icon {
width: 100px;
height: 100px;
border-radius: 20px;
object-fit: cover;
margin-bottom: 15px;
}

.app-title {
font-size: 1.2rem;
font-weight: bold;
margin: 0 0 5px;
}

.app-developer {
font-size: 0.9rem;
color: var(–secondary-text-color);
margin-bottom: 10px;
}

.download-button {
background-color: var(–primary-color);
color: white;
padding: 10px 20px;
border-radius: 20px;
font-weight: 600;
text-decoration: none;
transition: background-color 0.3s ease;
display: inline-block;
}

.download-button:hover {
background-color: #0056b3;
}

Leave a comment

Design a site like this with WordPress.com
Get started