-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.css
More file actions
51 lines (48 loc) · 801 Bytes
/
cards.css
File metadata and controls
51 lines (48 loc) · 801 Bytes
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
#cardContainer {
display: flex;
margin: 10px;
padding: 0;
}
.fullCard {
display: flex;
width: 25%;
height: 300px;
border: 1px solid black;
border-radius: 15px;
margin: 20px;
padding: 0;
text-decoration: none;
list-style: none;
overflow: hidden;
background-color: #6dcff6;
flex-direction: column;
}
.headingH2 {
height: 25%;
color: white;
background-color: #be1623;
font-size: 2em;
text-align: center;
margin: 0;
border-top-radius: 20px;
}
.paraLi {
height: 65%;
color: white;
background-color: #6dcff6;
margin: 0;
padding-top: 20px;
padding-left: 10px;
}
.btn-delete {
font-weight: 900;
font-size: 1em;
color: black;
background-color: #acacac;
width: 100%;
height: 15%;
text-align: center;
text-decoration: none;
border: none;
align-self: flex-end;
}