source: reactapp/src/Components/Styled/Main.style.js

main
Last change on this file was 9bf1f8d, checked in by viktor <viktor@…>, 18 months ago

prefinal

  • Property mode set to 100644
File size: 604 bytes
Line 
1import styled from "styled-components";
2
3export const MainWrapper = styled.div`
4 font-family: "Roboto Mono", monospace;
5 background-color: ivory;
6 margin: auto;
7 margin-top: 20px;
8 margin-bottom: 20px;
9 padding-left: 50px;
10 padding-right: 50px;
11 padding-top: 30px;
12 padding-bottom: 30px;
13 width: 80%;
14 box-shadow: 2px 2px 10px #aaaaaa;
15`;
16
17export const MainTitle = styled.h1`
18 font-size: 36pt;
19 text-decoration: underline 3px;
20 width: fit-content;
21 float: left;
22 color: black;
23`;
24
25export const CurrentPageNav = styled.div`
26 font-style: italic;
27 font-size: 16px;
28 font-weight: bold;
29`;
Note: See TracBrowser for help on using the repository browser.