Revert ">" for style.css
All checks were successful
ci/woodpecker/push/publish Pipeline was successful

This reverts commit 23f1135e37.
This commit is contained in:
Mylloon 2023-04-27 00:38:41 +02:00
parent e4bb8fcc92
commit 44e38c3db9
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -80,17 +80,17 @@ h1#title {
} }
h2.subtitle, h2.subtitle,
h2.subtitle > a { h2.subtitle a {
color: rgb(28, 118, 236) !important; color: rgb(28, 118, 236) !important;
} }
h3.subsubtitle, h3.subsubtitle,
#content > h3.subsubtitle > a { #content h3.subsubtitle a {
text-align: left; text-align: left;
color: rgb(149, 87, 201); color: rgb(149, 87, 201);
} }
#content > h3.subsubtitle > a:hover { #content h3.subsubtitle a:hover {
color: rgb(0, 181, 236); color: rgb(0, 181, 236);
transition: color 0.1s; transition: color 0.1s;
} }
@ -114,34 +114,34 @@ div#content {
} }
#content a, #content a,
#content > a:visited, #content a:visited,
#content ul { #content ul {
text-decoration: none; text-decoration: none;
color: rgb(201, 201, 201); color: rgb(201, 201, 201);
text-align: center; text-align: center;
} }
#content > p { #content p {
text-decoration: none; text-decoration: none;
color: rgb(201, 201, 201); color: rgb(201, 201, 201);
text-align: center; text-align: center;
padding: 0.7em; padding: 0.7em;
} }
#content > a:hover { #content a:hover {
color: rgb(0, 181, 236); color: rgb(0, 181, 236);
transition: color 0.1s; transition: color 0.1s;
} }
/* https://stackoverflow.com/a/40244401/15436737 */ /* https://stackoverflow.com/a/40244401/15436737 */
#content > a { #content a {
position: relative; position: relative;
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;
} }
#content > a:after { #content a:after {
display: block; display: block;
content: ""; content: "";
border-bottom: solid 3px; border-bottom: solid 3px;
@ -150,7 +150,7 @@ div#content {
transform-origin: 100% 50%; transform-origin: 100% 50%;
} }
#content > a:hover:after { #content a:hover:after {
transform: scaleX(1); transform: scaleX(1);
transform-origin: 0 50%; transform-origin: 0 50%;
} }
@ -168,7 +168,7 @@ div.subcontent {
text-align: center; text-align: center;
} }
#listecontent > li { #listecontent li {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
@ -230,12 +230,12 @@ footer.backToIndexPage {
text-align: center; text-align: center;
} }
footer.backToIndexPage > a { footer.backToIndexPage a {
color: rgb(114, 180, 76); color: rgb(114, 180, 76);
text-decoration: none; text-decoration: none;
} }
footer.backToIndexPage > a:hover { footer.backToIndexPage a:hover {
color: rgb(152, 187, 132); color: rgb(152, 187, 132);
} }