summaryrefslogtreecommitdiff
path: root/server/web/src/design/components/Card.design.tsx
blob: 2eb67a37dc02e103cfa40154035fc94f73b66236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import styled from 'styled-components';

export const CardContainer = styled('div')`
    border: solid thin rgb(31, 113, 145);
    background-color: rgb(5, 32, 58);
    // CONSTANT : left & right borders + left & right margin
    width: calc(100% - 1.125rem);
    color: rgb(255, 255, 255);
    border-radius: 0.5rem;
    display: inline-block;
    margin: 0.5rem;
    
    @media (min-width: 992px) {
        width: 46.5%;
    }
`;

export const CardHeader = styled('div')`
    border-bottom: solid thin rgb(31, 113, 145);
    padding: 0.5rem 0.5rem 0.625rem 0.5rem;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
    text-align: left;
    overflow: hidden;
`;

export const CardFooter = styled('div')`
    border-top: solid thin rgb(31, 113, 145);
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    grid-template-columns: 1fr 1fr;
    display: grid;
`;

export const CardFooterItem = styled('div')`
    border-right: solid thin rgb(31, 113, 145);
    justify-content: center;
    align-items: center;
    font-size: 0.65rem;
    padding: 0.5rem 0;
    cursor: pointer;
    display: grid;

    :hover {
        background-color: rgb(0, 55, 117);
        transition: 250ms;
    }

    :first-child {
        border-bottom-left-radius: 0.5rem;
    }

    :last-child {
        border-bottom-right-radius: 0.5rem;
        border-right: none;
    }
`;