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
RevLine 
[e958037]1import styled from "styled-components";
2
3export const ProfessorCard = styled.div`
[8d83180]4 background-color: cornsilk;
[ad40ec0]5 width: auto;
[e958037]6 padding: 10px;
7 margin-bottom: 30px;
[8d83180]8 margin-top: 40px;
[e958037]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.