-
Notifications
You must be signed in to change notification settings - Fork 7
/
styles.scss
52 lines (40 loc) · 1.12 KB
/
styles.scss
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
/*-- scss:defaults --*/
/*-- scss:rules --*/
/* css styles */
.grid-item-link {
color: inherit;
text-decoration: none; /* Remove underline */
transition: transform 0.2s ease-in-out; /* Add transition for smooth effect */
}
.grid-item-link:hover {
transform: scale(1.05); /* Increase the scale for a zoom effect */
}
.card-title.listing-title {
font-weight: bold; /* Set the card title to bold */
margin-bottom: 1em; /* Add a little more space after the title */
}
.card-body.post-contents {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.listing-categories {
margin-top: auto;
}
.listing-category:hover {
transform: scale(1.05); /* Apply a slight zoom effect */
transition: transform 0.3s ease-in-out; /* Add a smooth transition */
}
.description code {
/*color: "" ;*/
background-color: transparent !important;
font-weight: bolder;
}
.title-ssp a {
text-decoration: none;
color: grey;
/* Add your custom styles for the underline here */
}
li {
margin-bottom: 5px; /* Adjust the value to increase or decrease the space */
}