main
Last change
on this file since a5aba17 was 8d83180, checked in by unknown <mlviktor23@…>, 2 years ago |
forums/page nav
|
-
Property mode
set to
100644
|
File size:
583 bytes
|
Rev | Line | |
---|
[e958037] | 1 | import styled from "styled-components";
|
---|
| 2 |
|
---|
| 3 | export 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 |
|
---|
| 17 | export 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 |
|
---|
| 25 | export const CurrentPageNav = styled.div`
|
---|
| 26 | font-style: italic;
|
---|
| 27 | font-size: 14px;
|
---|
| 28 | `;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.