File size: 1,042 Bytes
b0dd51d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.footnov {
  overflow: hidden;
  background-color: #333; /* Darker gray for better contrast */
  color: #f2f2f2;
  padding: 20px 0; /* Added padding for content */
}

.footnov a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 16px 20px; 
  text-decoration: none;
  font-size: 17px;
  transition: background-color 0.3s ease; /* Adding transition */
}

.footnov a:hover {
  background-color: #555; /* Slightly darker hover effect */
}

.footnov a.active {
  background-color: rgb(80, 61, 226); /* Match header for consistency */
  color: white;
}

@media screen and (max-width: 600px) {
  .footnov a:not(:first-child) {display: none;}
  .footnov a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 100px) {
  .footnov.responsive {position: relative;}
  .footnov.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .footnov.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}