source: reactapp/src/Components/Styled/EntityList.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: 1.1 KB
Line 
1import styled from "styled-components";
2
3export const EntityUl = styled.ul`
4 list-style: none;
5 padding-left: 5px;
6`;
7
8export const EntityLi = styled.li`
9 padding: 10px;
10 margin: 15px 0px;
11 font-size: 18px;
12 font-weight: bold;
13 background-color: ${(props) => props.bgcolor};
14 box-shadow: 2px 2px 5px #aaaaaa;
15 position: relative;
16`;
17
18export const EntityParam = styled.p`
19 position: absolute;
20 right: 30px;
21 top: 10px;
22 font-style: italic;
23 font-size: 16px;
24`;
25
26export const EntityTypeSelector = styled.div`
27 box-shadow: ${(props) => props.boxshadow};
28 width: 50%;
29 height: 50px;
30 opacity: 0.6;
31 margin: 15px 10px;
32 margin-bottom: 30px;
33 display: flex;
34 align-items: center;
35 justify-content: center;
36 font-size: 20px;
37 font-weight: bold;
38 background-color: ${(props) => props.backgroundcolor};
39 color: ${(props) => props.color};
40 letter-spacing: 2px;
41 transition: 0.4s;
42 &:hover {
43 box-shadow: ${(props) => props.boxshadowhover};
44 font-weight: bold;
45 cursor: ${(props) => props.cursor};
46 opacity: ${(props) => props.opacityhover};
47 }
48`;
Note: See TracBrowser for help on using the repository browser.