This commit is contained in:
Ashley 2022-11-29 17:56:21 +00:00
parent 528e9f4af6
commit b7b1c50257

View file

@ -18,11 +18,19 @@
along with this program. If not, see https://www.gnu.org/licenses/. along with this program. If not, see https://www.gnu.org/licenses/.
*/ */
:root {
--text-link: #0ab7f0;
--text-link-visited: #00c0ff;
--text: #ffffff;
}
a.class:hover { a.class:hover {
text-decoration: underline; text-decoration: underline;
font-weight: bold; font-weight: bold;
} }
summary { summary {
color: gray; color: gray;
} }
@ -30,16 +38,16 @@ summary:hover {
color: white; color: white;
} }
:visited { :visited {
color: #00c0ff; color: var(--text-link-visited);
} }
a { a {
color: #0ab7f0; color: var(--text-link);
} }
.video > .info > .title { .video > .info > .title {
font-family: "PokeTube flex"; font-family: "PokeTube flex";
font-stretch: extra-expanded; width: 10em;
} }
.video-info-panel > .video-title > a { .video-info-panel > .video-title > a {
@ -87,9 +95,11 @@ a {
height: fit-content; height: fit-content;
justify-self: center; justify-self: center;
margin-right: -1.5em; margin-right: -1.5em;
width: min-content; /* width: min-content;*/
border: #7c44a0; border: #7c44a0;
border-style: solid; border-style: solid;
max-width: 371px;
width: 371px;
} }
.video-views { .video-views {
@ -258,24 +268,21 @@ a {
} }
.new-button { .new-button {
background: #0009; background: #0009;
border-radius: 2em; border-radius: 2em;
padding-right: 1em; padding-right: 1em;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
align-content: center; align-content: center;
align-self: center; align-self: center;
} }
.pill-button { .pill-button {
margin-left: 1em; margin-left: 1em;
} }
.vertical { .vertical {
border-left: 1px solid gray; border-left: 1px solid gray;
height: 15px; height: 15px;
} }