Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import styled from "styled-components";
- import { Link } from "react-router-dom";
- export const AboutContainer = styled.div`
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- margin-left: auto;
- margin-right: auto;
- `;
- export const AboutStory = styled(AboutContainer)`
- margin-bottom: 30px;
- `;
- export const AboutStoryBox = styled(AboutContainer)``;
- export const AboutQuestionAnswers = styled(AboutContainer)`
- width: 90%;
- margin-top: 20px;
- `;
- export const AboutDetails = styled.span`
- font-size: 20px;
- font-weight: bold;
- font-style: italic;
- color: black;
- letter-spacing: 1px;
- text-align: center;
- width: 95%;
- `;
- export const AboutTop = styled.a`
- font-size: 18px;
- font-weight: bold;
- font-style: italic;
- color: black;
- `;
- export const Button = styled.button`
- font-size: 20px;
- font-weight: bold;
- font-style: italic;
- color: #24de45;
- padding: 10px;
- text-align: center;
- border: 2px solid #24de45;
- border-radius: 10px;
- &:hover {
- background-color: black;
- }
- `;
Advertisement
Add Comment
Please, Sign In to add comment