User:SomebodyRum/NavigationBar/styles.css: Difference between revisions
From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
SomebodyRum (talk | contribs) mNo edit summary |
SomebodyRum (talk | contribs) mNo edit summary |
||
| Line 3: | Line 3: | ||
background-color: rgb(45, 45, 45); | background-color: rgb(45, 45, 45); | ||
font-family: Arial, Helvetica, sans-serif; | font-family: Arial, Helvetica, sans-serif; | ||
font-size: 13px; | font-size: 13px; /* Small, crisp font for that old internet feel */ | ||
padding: 6px 12px; | padding: 6px 12px; | ||
border-bottom: 1px solid #1a1a1a; | border-bottom: 1px solid #1a1a1a; | ||
| Line 13: | Line 13: | ||
} | } | ||
/* Dimmer color for the brackets and slashes */ | |||
.srum-bracket, | .srum-bracket, | ||
.srum-sep { | .srum-sep { | ||
| Line 19: | Line 20: | ||
} | } | ||
/* White Text Links */ | |||
.srum-item a { | .srum-item a { | ||
color: #ffffff; | color: #ffffff; | ||
| Line 24: | Line 26: | ||
} | } | ||
/* Authentic Imageboard Hover Effect */ | |||
.srum-item a:hover { | .srum-item a:hover { | ||
color: #ffffff; | color: #ffffff; | ||
Latest revision as of 08:22, 24 April 2026
/* Full-width Imageboard Navigation Bar */
.srum-navbar {
background-color: rgb(45, 45, 45);
font-family: Arial, Helvetica, sans-serif;
font-size: 13px; /* Small, crisp font for that old internet feel */
padding: 6px 12px;
border-bottom: 1px solid #1a1a1a;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
width: 100%;
box-sizing: border-box;
text-align: left;
line-height: 1.5;
}
/* Dimmer color for the brackets and slashes */
.srum-bracket,
.srum-sep {
color: #aaaaaa;
margin: 0 2px;
}
/* White Text Links */
.srum-item a {
color: #ffffff;
text-decoration: none;
}
/* Authentic Imageboard Hover Effect */
.srum-item a:hover {
color: #ffffff;
text-decoration: underline;
}
.srum-item a:visited {
color: #ffffff;
}