source: reactapp/src/Components/Styled/ProfessorCard.style.js@ 8d83180

main
Last change on this file since 8d83180 was 8d83180, checked in by unknown <mlviktor23@…>, 21 months ago

forums/page nav

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