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
RevLine 
[e958037]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;
[702ca77]8 margin-bottom: 20px;
[e958037]9 padding-left: 50px;
10 padding-right: 50px;
11 padding-top: 30px;
12 padding-bottom: 30px;
13 width: 80%;
[cae16b5]14 box-shadow: 2px 2px 10px #aaaaaa;
[e958037]15`;
16
17export const MainTitle = styled.h1`
18 font-size: 36pt;
19 text-decoration: underline 3px;
[0df6b9e]20 width: fit-content;
21 float: left;
[3e98cea]22 color: black;
[e958037]23`;
[8d83180]24
25export const CurrentPageNav = styled.div`
26 font-style: italic;
[9bf1f8d]27 font-size: 16px;
28 font-weight: bold;
[8d83180]29`;
Note: See TracBrowser for help on using the repository browser.