Created a basic home page with links, a header with a link to home, some basic reusable CSS classes. ref: N25B-38
24 lines
243 B
CSS
24 lines
243 B
CSS
.read_the_docs {
|
|
color: #888;
|
|
}
|
|
|
|
.card {
|
|
padding: 2em;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1em;
|
|
align-items: center;
|
|
}
|
|
|
|
.gap-xl {
|
|
gap: 2rem;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1em;
|
|
} |