mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 12:23:09 +02:00
24 lines
580 B
CSS
24 lines
580 B
CSS
|
a code {
|
||
|
color: var(--md-primary-fg-color) !important;
|
||
|
background-color: rgba(213, 0, 44, 0.1) !important;
|
||
|
transition: color 125ms;
|
||
|
transition: background-color 125ms
|
||
|
}
|
||
|
|
||
|
a code:hover {
|
||
|
/* ONLY WORKS ON SLATE THEME
|
||
|
color: #81E8ED !important;
|
||
|
background-color: rgba(129, 232, 237, 0.1) !important; */
|
||
|
color: var(--md-primary-fg-color--dark) !important;
|
||
|
}
|
||
|
|
||
|
.md-announce {
|
||
|
background-color: var(--md-primary-fg-color--dark) !important;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.md-announce a, .md-announce a:hover {
|
||
|
color: white !important;
|
||
|
/* text-decoration: underline; */
|
||
|
font-weight: bold;
|
||
|
}
|