-
Notifications
You must be signed in to change notification settings - Fork 0
/
Estable.css
40 lines (35 loc) · 1.15 KB
/
Estable.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
#page-wrapper{
}
#page-site-index #topofscroll {
}
#page-site-index * {
}
#page-site-index .dashboard-card-img {
z-index: 3;
box-shadow: 4px 4px 5px rgba(0,0,0,0.2);
}
#page-site-index .card-body {
z-index: 2;
color: #fff !important;
font-size: 16px; /* Standard font size */
font-weight: 700 !important; /* Bold font weight */
text-transform: uppercase; /* Uppercase text */
cursor: pointer; /* Indicates it's clickable */
background-image: linear-gradient(to right, #2c3e50 0%, #3498db 51%, #2c3e50 100%);
background-size: 200% auto;
box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
text-align: center;
transition: all 0.5s ease; /* Smooth transition for hover effects */
display: block;
text-decoration: none;
}
#page-site-index .card-body:hover {
background-position: right center; /* Change the direction of the gradient on hover */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
border-color: #ccc; /* Darker border on hover */
color: #fff !important;
}
#page-site-index .card-body a {
text-decoration: none;
color: #fff !important;
}