summaryrefslogtreecommitdiffstats
path: root/dashboard/src/static/css/detail_view.css
blob: 69a2643794e954a6899434af2528b35ef2566585 (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
.card_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 25px 25px;
    justify-items: stretch;
}

.card_container ul > li {
    padding: 7px !important;
    font-size: 16px;
}

.detail_card {
    border: 2px;
    border-color: black;
    border-radius: 5px;
    margin: 5px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 15px;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}