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

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

styled professor page

  • Property mode set to 100644
File size: 461 bytes
Line 
1import styled from "styled-components";
2
3export const ProfessorCard = styled.div`
4 background-color: papayawhip;
5 width: auto;
6 padding: 10px;
7 margin-bottom: 30px;
8`;
9
10export const ProfessorCardName = styled.h2`
11 margin-bottom: 10px; ;
12`;
13
14export const ProfessorCardSeparator = styled.hr`
15 color: darkslategray;
16 margin: 0;
17`;
18
19export const ProfessorCardDetails = styled.h3`
20 font-size: ${(props) => props.fontSize};
21 color: black;
22 opacity: 0.6;
23`;
Note: See TracBrowser for help on using the repository browser.