create-nicsde-next-app
Version:
A CLI tool to create Next.js applications with custom configurations
60 lines (51 loc) • 887 B
CSS
.main {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
padding: 2rem;
min-height: 100vh;
}
.container {
margin: 2rem auto;
max-width: 800px;
text-align: center;
}
.title {
margin-bottom: 1.5rem;
color: #1a1a1a;
font-size: 2.5rem;
}
.description {
margin-bottom: 2.5rem;
color: #666;
font-size: 1.2rem;
line-height: 1.5;
}
.grid {
display: grid;
width: 100%;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.card {
margin: 1rem 0;
padding: 1.5rem;
border-radius: 10px;
background: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-decoration: none;
transition: transform 0.2s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card h2 {
margin-bottom: 0.7rem;
color: #1a1a1a;
font-size: 1.5rem;
}
.card p {
color: #666;
line-height: 1.4;
}