source: reactapp/src/Components/Styled/SubjectsAccordion.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: 619 bytes
Line 
1import styled from "styled-components";
2
3export const SubjectsAccordionDiv = styled.div`
4 height: ${(props) => props.height};
5 opacity: ${(props) => props.opacity};
6 transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
7 margin-left: 20px;
8`;
9
10export const AccordionTitle = styled.div`
11 padding: 10px;
12 margin: 15px 0px;
13 font-size: 18px;
14 font-weight: bold;
15 background-color: cornsilk;
16 box-shadow: 2px 2px 5px #aaaaaa;
17 position: relative;
18 cursor: pointer;
19`;
20
21export const OpenAccordionSymbol = styled.span`
22 font-size: 24px;
23 position: absolute;
24 right: 15px;
25 bottom: 7px;
26 color: grey;
27`;
Note: See TracBrowser for help on using the repository browser.