-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyles.css
138 lines (108 loc) · 2.67 KB
/
styles.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
:root {
--main-color: #447099 ;
/*--title-color: #870511 ;*/
}
/* 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 */
}
.colorized {
color: var(--main-color) ;
}
a:link {
color: var(--main-color);
/*background-color: transparent;
text-decoration: none;*/
}
a:visited {
color: var(--main-color);
/*background-color: transparent;
text-decoration: none;*/
}
a.nav-link:link, a.navbar-title:link, a.navbar-brand:link {
color: white;
/*background-color: transparent;
text-decoration: none;*/
}
a.nav-link:visited, a.navbar-title:visited, a.navbar-brand:visited {
color: white;
/*background-color: transparent;
text-decoration: none;*/
}
/*
h1, h2 {
color: var(--main-color) ;
}
*/
.no-anchor.card-title.listing-title {
font-weight: bolder !important;
color: var(--main-color) !important;
}
.navbar-title code {
color: var(--main-color) ;
background-color: inherit;
}
p {
text-align: justify;
}
/* 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 */
}
.category {
color: #6c757d;
display: inline-block; /* Add this line */
border: solid 1px #dee2e6;
border-radius: .25rem;
text-transform: uppercase;
font-size: .65em;
padding-left: .5em;
padding-right: .5em;
padding-top: .15em;
padding-bottom: .15em;
cursor: pointer;
margin-right: 4px;
margin-bottom: 4px;
}