We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6cf645 commit dd563d5Copy full SHA for dd563d5
1 file changed
npmjs.com/index.js
@@ -1,3 +1,36 @@
1
+const styles = `
2
+main {
3
+background-color: rebeccapurple;
4
+}
5
+#top {
6
+background-color: wheat;
7
8
+header div:last-child {
9
+background-color: blanchedalmond;
10
11
+header div:nth-child(2) {
12
+display:none;
13
14
+#footer {
15
+background-color: #dfbf3f;
16
17
+footer.mt4 {
18
+margin-top:0;
19
20
+[role="tabpanel"] {
21
+background-color:#ffd381;
22
23
+#main > div > div:first-child {
24
+background-color:#ffdae5;
25
26
+`;
27
+document.head.appendChild(
28
+ Object.assign(document.createElement("style"), {
29
+ type: "text/css",
30
+ innerText: styles,
31
+ }),
32
+);
33
+
34
const repos = document.getElementById("repository");
35
36
const list = document.createElement("ul");
0 commit comments