-
Notifications
You must be signed in to change notification settings - Fork 922
/
Copy pathmain.scss
114 lines (93 loc) · 1.93 KB
/
main.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
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
@import "../vendor/bootstrap/scss/functions";
@import "_variables_forward";
@import "variables_project";
@import "variables";
@import "support/mixins";
@import "../vendor/bootstrap/scss/bootstrap";
@import "support/bootstrap_vers_test";
@import "../vendor/Font-Awesome/scss/fontawesome.scss";
@import "../vendor/Font-Awesome/scss/solid.scss";
@import "../vendor/Font-Awesome/scss/brands.scss";
@import "support/utilities";
@import "colors";
@import "table";
@import "boxes";
@import "blog";
@import "code";
@import "nav";
@import "sidebar-tree";
@import "sidebar-toc";
@import "breadcrumb";
@import "alerts";
@import "content";
@import "search";
@import "main-container";
@import "blocks/blocks";
@import "section-index";
@import "pageinfo";
@import "taxonomy";
@import "drawio";
@import "shortcodes";
@import "swagger";
@if $td-enable-google-fonts {
@import url($web-font-path);
}
.td-footer {
@extend .td-box--dark;
min-height: 150px;
padding-top: map-get($spacers, 5);
@include media-breakpoint-down(lg) {
min-height: 200px;
}
/* &__left { } */
&__center {
@extend .small;
text-align: center;
}
&__right {
text-align: right;
}
&__about {
font-size: initial;
}
&__links {
&-list {
@extend .list-inline;
margin-bottom: 0;
}
&-item {
@extend .list-inline-item;
@extend .h3;
a {
color: inherit !important;
}
}
}
&__authors,
&__all_rights_reserved {
padding-left: map-get($spacers, 1);
}
&__all_rights_reserved {
display: none;
}
}
// Adjust anchors vs the fixed menu.
@include media-breakpoint-up(md) {
.td-offset-anchor:target {
display: block;
position: relative;
top: -4rem;
visibility: hidden;
}
h2[id]:before,
h3[id]:before,
h4[id]:before,
h5[id]:before {
display: block;
content: " ";
margin-top: -5rem;
height: 5rem;
visibility: hidden;
}
}
@import "styles_project";