-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcardsStyle.css
77 lines (65 loc) · 1.08 KB
/
cardsStyle.css
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#buttons {
display: flex;
justify-content: center;
margin-top: 2em;
margin-bottom: 2em;
align-items: center;
}
#buttons button {
width: 15%;
margin-left: 1em;
margin-right: 1em;
}
.container {
width: 90%;
margin: 20px auto;
}
#filter-form {
margin-bottom: 20px;
}
.card-grid {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.card {
background-color: white;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
width: calc(20% - 10px);
padding: 10px;
box-sizing: border-box;
}
.card h2 {
font-size: 1em;
margin: 0 0 8px;
}
.card p {
margin: 0 0 8px;
color: #555;
font-size: 0.9em;
}
.card button {
background-color: #007bff;
color: white;
border: none;
padding: 8px;
border-radius: 4px;
cursor: pointer;
font-size: 0.9em;
}
.card button:hover {
background-color: #0056b3;
}
#resume-card {
width: 100%;
}
#usr-page-bt button {
width: 80%;
margin-bottom: 3px;
}
#no-results {
text-align: center;
margin-top: 20px;
}