blog/src/components/Section/styles.module.css
HesterG c3d361092e Add subscribe and community components, adjust blog width, update readme (#272)
- Updated readme
- Used double quotes instead of single quotes
- Increase blog content width

  Before

  ![Screen Shot 2023-07-14 at 13.45.45](/attachments/9c669c42-2efd-4ae5-bbf5-24f252c26fa0)

  After

  ![Screen Shot 2023-07-14 at 13.45.31](/attachments/6f72912c-2fd9-4a63-8839-583864faa474)

- Added subscribe and community components to buttom of the blog post page.

 ![Screen Shot 2023-07-14 at 15.55.12](/attachments/3808fa5a-e951-487b-8ed2-dc693cfec9e2)

  ![Screen Shot 2023-07-14 at 15.55.30](/attachments/864ff357-a116-47ce-abf0-8278e24ede7d)

  Loading:

  ![Screen Shot 2023-07-14 at 15.57.00](/attachments/2f0ace67-d83e-4415-a778-8e7913fb6505)

   Post sent:

  ![Screen Shot 2023-07-14 at 13.48.44](/attachments/ceac4970-a914-49d5-ad42-febb3d259d89)

   Mobile:

  ![Screen Shot 2023-07-14 at 15.58.19](/attachments/7e01f575-7e4d-4d99-9888-7fb246ceb313)

  ![Screen Shot 2023-07-14 at 15.58.27](/attachments/879128d1-f115-41a7-8e8e-574f0b3de208)

Reviewed-on: https://gitea.com/gitea/blog/pulls/272
Co-authored-by: HesterG <hestergong@gmail.com>
Co-committed-by: HesterG <hestergong@gmail.com>
2023-07-14 09:35:26 +00:00

42 lines
574 B
CSS

.root {
display: flex;
flex-direction: column;
max-width: var(--ifm-container-width);
width: 100%;
padding: 2rem 1rem;
margin: 0 auto;
}
@media screen and (min-width: 900px) {
.root {
padding: 4.5rem 2rem;
}
}
.row {
flex-direction: row;
}
.odd {
background-color: var(--theme-section-odd-bg-color);
}
.accent {
--ifm-link-hover-color: var(--palette-pink);
--ifm-link-color: var(--palette-pink);
padding-top: 7rem;
padding-bottom: 7.5rem;
}
.fullWidth {
max-width: 100%;
}
.noGap {
padding: 0;
}
.center {
align-items: center;
}