Skip to content
Permalink
Browse files
Merge pull request #2 from aa9863/Logos
Easy Medium and Hard Task Logos Added
  • Loading branch information
aa9863 committed Dec 2, 2020
2 parents 66dc8ab + 439ed75 commit 17fa2fff0fe6204248f001bf831e3767c9dff1a2
Show file tree
Hide file tree
Showing 5 changed files with 280 additions and 5 deletions.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -63,23 +63,61 @@ pre, code, kbd {


:root {
--md-admonition-icon--task: url('../images/Hacker.svg')
--md-admonition-icon--task: url('../images/HoodieHacker.svg')
}
.md-typeset .admonition.task,
.md-typeset details.task {
border-color: rgb(7, 165, 33);
border-color: rgb(228, 141, 12);
}
.md-typeset .task > .admonition-title,
.md-typeset .task > summary {
background-color: rgba(43, 155, 70, 0.1);
background-color: rgba(228, 141, 12, 0.1);
}
.md-typeset .task > .admonition-title::before,
.md-typeset .task > summary::before {
background-color: rgb(43, 155, 70);
background-color: rgb(228, 141, 12);
-webkit-mask-image: var(--md-admonition-icon--task);
mask-image: var(--md-admonition-icon--task);
}


:root {
--md-admonition-icon--hardtask: url('../images/HoodieHacker_Hard.svg')
}
.md-typeset .admonition.hardtask,
.md-typeset details.hardtask {
border-color: rgb(233, 14, 14);
}
.md-typeset .hardtask > .admonition-title,
.md-typeset .hardtask > summary {
background-color: rgba(223, 14, 14, 0.1);
}
.md-typeset .hardtask > .admonition-title::before,
.md-typeset .hardtask > summary::before {
background-color: rgb(0, 0, 0);
-webkit-mask-image: var(--md-admonition-icon--hardtask);
mask-image: var(--md-admonition-icon--hardtask);
}

:root {
--md-admonition-icon--easytask: url('../images/Hacker_Easy.svg')
}
.md-typeset .admonition.easytask,
.md-typeset details.easytask {
border-color: rgb(7, 165, 33);
}
.md-typeset .easytask > .admonition-title,
.md-typeset .easytask > summary {
background-color: rgba(43, 155, 70, 0.1);
}
.md-typeset .easytask > .admonition-title::before,
.md-typeset .easytask > summary::before {
background-color: rgb(43, 155, 70);
-webkit-mask-image: var(--md-admonition-icon--easytask);
mask-image: var(--md-admonition-icon--easytask);
}


/*.md-typeset .footnote-ref {
color: var(--md-default-fg-color--light);
}*/

0 comments on commit 17fa2ff

Please sign in to comment.