main
Last change
on this file since 3b6962d was 8d83180, checked in by unknown <mlviktor23@…>, 2 years ago |
forums/page nav
|
-
Property mode
set to
100644
|
File size:
583 bytes
|
Line | |
---|
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;
|
---|
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 |
|
---|
17 | export 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 |
|
---|
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.