Skip to content

Commit c52c255

Browse files
authored
Create additional-style.css
1 parent 41782e4 commit c52c255

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

additional-style.css

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
/* Tutorial Post CSS */
3+
.toc-content-container .post-content, .toc-widget{
4+
background-color: #1D2222 !important;
5+
border: 1px solid gray !important;
6+
}
7+
8+
/* Post Text and Titles */
9+
.toc-content-container .post-content p,
10+
.toc-content-container .post-content h1,
11+
.toc-content-container .post-content h2,
12+
.toc-content-container .post-content h3,
13+
.toc-content-container .post-content h4,
14+
.toc-content-container .post-content h5{
15+
color: #E0E0E0 !important;
16+
}
17+
18+
/* Table of Contents Link Color */
19+
.toc-widget a {
20+
color: #E0E0E0 !important;
21+
}
22+
23+
/* Author Info Text */
24+
.toc-content-container .post-meta{
25+
color: #E0E0E0 !important;
26+
}
27+
28+
/* Inline Code Style*/
29+
.toc-content-container .post-content code {
30+
background-color: #8E9F9F !important;
31+
padding: 0 6px;
32+
border-radius: 4px;
33+
color: black!important;
34+
}
35+
36+
37+
/* Reset duofilter effect on images if needed */
38+
body img {
39+
filter: none !important;
40+
}
41+
.post-content {
42+
background-color: transparent !important;
43+
border: none !important;
44+
}
45+
46+
47+
48+
/* Tutorial Listing */
49+
/* Tutorial Listing Container */
50+
.knowledge-base-container {
51+
background-color: transparent !important;
52+
}
53+
54+
/* Listing Headline */
55+
.knowledge-base-container h2 {
56+
color: #E0E0E0 !important;
57+
}
58+
59+
/* Tutorial List Item */
60+
.knowledge-base-container .articles-list .article-item,
61+
.assigned-articles-container .article-item{
62+
background-color: #E0E0E0 !important;
63+
}
64+
65+
/* Tutorial Listing Headline and text */
66+
.knowledge-base-container .articles-list .article-item h2, .knowledge-base-container .articles-list .article-item p,
67+
.assigned-articles-container .article-item h2, .assigned-articles-container .article-description p {
68+
color: black !important;
69+
}
70+
71+
/* Tutorial Listing Purchase Link */
72+
.knowledge-base-container .article-locked a {
73+
color: red !important;
74+
}
75+
76+
.knowledge-base-container .lock-icon {
77+
background-color: white !important;
78+
border-radius: 50% !important;
79+
padding: 0 2px !important;
80+
}

0 commit comments

Comments
 (0)