main
Last change
on this file since 3e98cea was 3e98cea, checked in by unknown <mlviktor23@…>, 2 years ago |
added SearchResults page, hide search dropdown when out of focus
|
-
Property mode
set to
100644
|
File size:
482 bytes
|
Line | |
---|
1 | import styled from "styled-components";
|
---|
2 |
|
---|
3 | export const ProfessorCard = styled.div`
|
---|
4 | background-color: papayawhip;
|
---|
5 | width: auto;
|
---|
6 | padding: 10px;
|
---|
7 | margin-bottom: 30px;
|
---|
8 | margin-top: 140px;
|
---|
9 | `;
|
---|
10 |
|
---|
11 | export const ProfessorCardName = styled.h2`
|
---|
12 | margin-bottom: 10px; ;
|
---|
13 | `;
|
---|
14 |
|
---|
15 | export const ProfessorCardSeparator = styled.hr`
|
---|
16 | color: darkslategray;
|
---|
17 | margin: 0;
|
---|
18 | `;
|
---|
19 |
|
---|
20 | export 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.