blob: c3d0a4d9dd2816cfebe9979afd33993a8e3abfe8 (
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
|
.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_button_container .btn {
width: 49%;
}
.detail_button_container .btn-danger {
float: right;
}
#modal_warning {
transition: max-height 0.5s ease-out;
overflow: hidden;
}
.detail_card {
border-radius: 5px;
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
margin: 5px;
padding-left: 25px;
padding-right: 25px;
padding-bottom: 15px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
|