remove text decoration from children

This commit is contained in:
hornetfighter515 2021-07-23 21:32:09 -04:00
parent 12a38644ee
commit 7ae2050e8d

View File

@ -44,41 +44,15 @@
text-decoration: none;
}
.news-article{
color:var(--text);
font-family: var(--font-family);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
padding:5px;
}
.news-article h2{
font-size: medium;
}
.news-article:hover{
color:var(--bg);
background-color: var(--primary);
}
/* EMBEDDED NEWS PAGE BODY */
#NewsDiv { position: absolute; left: 0; top: 0px; width: 100%; }
/*
body.news-scroll {
/*
background-color: var(--bg);
margin: 0;
padding: 0;
border: 0;
}
*/
/* FONTS & PADDING */
#NewsDiv a{
text-decoration: none;
}
.scroll-text-if {
font-size: 12px;
@ -95,16 +69,22 @@ body.news-scroll {
border-bottom: #666666 0px solid;
}
/* EMBEDDED NEWS PAGE LINK COLORS */
/*
.news-scroll a:link { color: #0033FF; text-decoration: none; }
.news-scroll a:visited { color: #6633FF; text-decoration: none; }
.news-scroll a:active { color: #0033FF; text-decoration: none; }
.news-scroll a:hover { color: #6699FF; text-decoration: underline; }
*/
.news-article{
color:var(--text);
font-family: var(--font-family);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
padding:5px;
}
.news-article h2{
font-size: medium;
}
.news-article:hover{
color:var(--bg);
background-color: var(--primary);
}