source: reactapp/src/Components/Main.style.js@ ad40ec0

main
Last change on this file since ad40ec0 was e958037, checked in by Viktor <mlviktor23@…>, 2 years ago

added styling to /professor/{professorId} page

  • Property mode set to 100644
File size: 407 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 padding-left: 50px;
9 padding-right: 50px;
10 padding-top: 30px;
11 padding-bottom: 30px;
12 width: 80%;
13`;
14
15export const MainTitle = styled.h1`
16 font-size: 36pt;
17 text-decoration: underline 3px;
18 margin-bottom: 30px;
19`;
Note: See TracBrowser for help on using the repository browser.