forked from opensearch-project/project-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_footer.scss
80 lines (54 loc) · 1.12 KB
/
_footer.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
$hover-effect-color: #0275d8; // Original color: purple
$primary-color: #006D97; // Original color: blue
.btn:hover .svg-icon {
fill: $hover-effect-color;
}
.svg-icon {
width: 1.5em;
height: 1.5em;
fill: $primary-color;
vertical-align: middle;
}
.btn-icon {
position: relative;
line-height: 1;
}
// light mode
.footer-main-wrapper-light {
padding: 20px;
background-color: #F4F8FB;
}
.footer-column-categories-light{
list-style-type: none;
color: $primary-color;
font-size: 30px;
font-weight: 700;
margin: 0;
padding: 0;
@media screen and (max-width: 768px) {
font-size: 30px;
}
}
.footer-content-light {
color: $black;
font-size: 24px;
font-weight: 400
}
.footer-category-navlinks-light {
font-size: 15px;
font-weight: 600;
line-height: 24px;
&:hover,
&:active,
&:focus {
color: $hover-effect-color;
}
@media screen and (max-width: 991px) {
font-size: 24px;
font-weight: 400;
line-height: 40px;
}
}
.footer-copyright-light {
font-size: 15px;
}