webapp/src/components/Feed/CardTopic.module.scss

42 lines
616 B
SCSS
Raw Normal View History

2022-10-19 14:26:49 +00:00
.shoutTopic {
2023-05-25 20:48:36 +00:00
font-size: 1.4rem;
font-weight: bold;
2022-10-19 14:26:49 +00:00
letter-spacing: 0.08em;
margin-bottom: 0.8rem;
text-transform: uppercase;
transition: background-color 0.2s;
2023-05-26 19:22:24 +00:00
a:link,
a:visited {
2022-10-19 14:26:49 +00:00
background: transparent;
border: none;
color: $link-color;
&:hover {
background: $link-color;
color: #fff !important;
}
}
}
.shoutTopicFloorImportant {
a:link,
a:visited {
2023-06-08 21:29:20 +00:00
color: #fff;
&:hover {
background: #fff !important;
color: #000 !important;
}
2022-10-19 14:26:49 +00:00
}
}
2023-06-21 20:32:16 +00:00
.shoutTopicFeedMode {
font-size: 1.2rem;
2023-10-03 23:06:41 +00:00
a {
position: relative;
z-index: 2;
}
2023-06-21 20:32:16 +00:00
}