Newer
Older
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
:host > .categoryForm {
padding: 5%;
display:flex;
justify-content: center;
flex-direction: column;
align-items: center;
margin-bottom: 50px;
h3 {
font-family: 'Josefin Sans', sans-serif;
font-size: 1.5rem;
font-weight: 500;
padding: 10px;
}
& > div.cardWrapper {
color: #fff;
display: flex;
flex-direction: column;
background: linear-gradient(90deg, #14A35A 0%, #24e072 100%);
padding: 10px;
width: 40%;
min-width: 300px;
max-width: 400px;
margin: 10px;
}
}
div.cardWrapper > div {
color: #000;
display: flex;
flex-direction: column;
gap: 10px;
background-color: #fff;
box-shadow: inset 0px 4px 4px rgb(0 0 0 / 50%);
padding: 20px 10px;
}
p.status {
margin: 10px 0 5px 5px;
font-style: italic;
}
div.other {
font-family: 'Josefin Sans', sans-serif;
display: flex;
justify-content: space-between;
padding: 10px 0 5px 0;
& > a {
color: #000;
&:visited {
color: #000;
}
}
}