-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* adding aggie styles for icons*/ | ||
|
||
/* custom 1 */ | ||
:is(.admonition):is(.aggiecustom) { | ||
border-color: #4b0000; | ||
box-shadow: 0 0.2rem 1rem 2px rgb(0 0 0 / 10%), 0 0 0.5rem 1px rgb(0 0 0 / 20%); | ||
} | ||
|
||
|
||
:is(.aggiecustom) > :is(.admonition-title, summary.admonition-title) { | ||
background-color: rgb(75 0 0 / 50%); | ||
} | ||
|
||
:is(.aggiecustom) > :is(.admonition-title, summary.admonition-title)::before { | ||
background-color: #4b0000; | ||
} | ||
|
||
/* custom 2 */ | ||
:is(.admonition):is(.aggiecustom2) { | ||
border-color: var(--sidebar-bg); | ||
box-shadow: 0 0.2rem 1rem 2px rgb(0 0 0 / 10%), 0 0 0.5rem 1px rgb(0 0 0 / 20%); | ||
} | ||
|
||
:is(.aggiecustom2) > :is(.admonition-title, summary.admonition-title) { | ||
background-color: var(--sidebar-bg); | ||
color: var(--sidebar-fg); | ||
} | ||
|
||
:is(.aggiecustom2) > :is(.admonition-title, summary.admonition-title)::before { | ||
background-color: var(--sidebar-fg); | ||
} | ||
/* | ||
.aggie :is(.admonition) { | ||
background-color: var(--admo-bg); | ||
} | ||
*/ | ||
/* end of aggie custom styles */ |