-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcards.css
63 lines (58 loc) · 1.19 KB
/
cards.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
.fontmargin, .blog-card p.blog-content, .blog-card p.blog-author, .blog-card h3.blog-title {
font-size: 20px;
margin: 0 0 10px;
}
.blog-card {
background-color: white;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
width: 300px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.blog-card p.blog-content, .blog-card p.blog-author {
max-height: 100px;
overflow: scroll;
transition: max-height 0.3s ease;
}
.blog-card p.blog-content.highlighted, .blog-card p.blog-author.highlighted {
background-color: yellow;
color: black;
}
.blog-card p.blog-content.expanded {
max-height: 500px;
}
.btn-1 {
background-color: rgb(50, 100, 150);
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
margin: 20px;
}
.btn-1:hover {
background-color: #254b70;
}
.btn-2 {
background-color: rgb(100, 200, 255);
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
margin: 20px;
}
.btn-2:hover {
background-color: #31b6ff;
}
.btn-3 {
background-color: rgb(150, 255, 255);
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
margin: 20px;
}
.btn-3:hover {
background-color: #63ffff;
}
/*# sourceMappingURL=cards.css.map */