source: reactapp/src/Components/ProfessorCard.style.js@ 0df6b9e

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

styled searchbar

  • Property mode set to 100644
File size: 482 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 margin-top: 140px;
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.