blog/src/components/Button/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

96 lines
1.8 KiB
CSS

.button {
display: inline-flex;
align-items: center;
justify-content: center;
height: 55px;
padding: 0 2rem;
border: none;
border-radius: calc(var(--ifm-global-border-radius) / 2);
font-weight: var(--ifm-font-weight-bold);
font-size: var(--font-size-normal);
transition: background-color 100ms cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
.button:hover {
text-decoration: none;
cursor: pointer;
}
.button--plain {
height: auto;
padding: 0;
font-weight: unset;
font-size: unset;
}
.button--primary {
background-color: var(--theme-button-primary-background-color);
color: var(--theme-button-primary-text-color); }
.button--primary:hover {
background-color: var(--theme-button-primary-hover-background-color);
color: var(--theme-button-primary-text-color);
}
.button--icon img, .button--icon svg {
margin-right: 0.5rem;
}
.button--secondary {
background-color: var(--theme-button-secondary-background-color);
color: var(--theme-button-secondary-text-color);
}
.button--secondary:hover {
background-color: var(--theme-button-secondary-hover-background-color);
color: var(--theme-button-secondary-text-color);
}
.button--tertiary {
background-color: var(--theme-button-tertiary-background-color);
color: var(--theme-button-tertiary-text-color);
}
.button--tertiary:hover {
color: var(--theme-button-tertiary-text-color);
background-color: var(--theme-button-tertiary-hover-background-color);
}
.button--small {
height: 3.5rem;
}
.button--xsmall {
height: 2.6rem;
padding: 0 1rem;
}
.button--xxsmall {
height: 2rem;
font-weight: normal;
font-size: 0.9rem;
}
.button--uppercase {
text-transform: uppercase;
}
@media (max-width: 996px) {
.button {
padding: 0 1.75rem;
}
.button--xsmall {
padding: 0 1rem;
}
.button--xxsmall {
padding: 0 0.9rem;
}
.button--plain {
padding: 0;
}
}