-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcategoryBlogs.css
More file actions
74 lines (64 loc) · 1.19 KB
/
categoryBlogs.css
File metadata and controls
74 lines (64 loc) · 1.19 KB
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
.landing-category-blogs {
width: 100%;
height: auto;
flex-direction: column;
margin-top: 3rem;
padding: 1rem;
}
.landing-category-blogs .labels {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin: 1rem 0;
margin-bottom: 3rem;
}
.labels h4 {
font-weight: 600;
}
.labels a {
text-decoration: none;
color: rgb(0 0 0 / 78%);
font-size: 0.75rem;
font-weight: bold;
transition: all 0.3s ease;
}
.labels a:hover {
color: #5b5858d8;
}
.load-btn {
padding: 0.7rem 0.8rem;
font-size: 0.9rem;
margin: 1rem auto;
width: 200px;
margin-top: 3rem;
text-decoration: none;
display: flex;
text-align: center;
align-items: center;
justify-content: center;
text-transform: uppercase;
background: transparent;
border: 1.5px solid #196712;
color: #196712;
cursor: pointer;
transition: all 0.5s ease;
}
.load-btn:hover {
background-color: #196712;
color: white;
}
.category-cards {
width: 100%;
align-items: center;
justify-content: space-around;
display: flex;
}
/**372A47 **/
/* FROM THE BLOG - END */
@media only screen and (max-width: 780px) {
.category-cards {
width: 90%;
margin: 0 auto;
}
}