53 lines
864 B
CSS
53 lines
864 B
CSS
.app-card {
|
|
background-color: #1e1e1e;
|
|
color: #fff;
|
|
padding: 1.3rem;
|
|
border-radius: 12px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
width: 170px;
|
|
height: 170px;
|
|
transition: transform 0.2s ease;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.app-card:hover {
|
|
transform: scale(1.05);
|
|
background-color: #2a2a2a;
|
|
}
|
|
|
|
.app-icon-wrapper {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 0.5rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.app-icon {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
display: block;
|
|
}
|
|
|
|
.app-card h3 {
|
|
font-family: 'Rajdhani', sans-serif;
|
|
font-size: 1.1rem;
|
|
margin: 0.4rem 0;
|
|
color: white;
|
|
}
|
|
|
|
.app-card p {
|
|
font-family: 'Rajdhani', sans-serif;
|
|
font-size: 0.9rem;
|
|
color: #ccc;
|
|
}
|
|
|