IPost/css/global.css
2022-07-09 16:10:53 +02:00

63 lines
804 B
CSS

:root {
--green: #C2F9BB; /* links etc */
--fg-color: #303034; /* post background */
--bg-color: #1B1B1E; /* page background etc */
--text-color: #ECEAF1; /* text */
--blue-ish: #587291; /* buttons etc */
}
.noselect {
user-select: none;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: var(--fg-color);
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.totib {
align-items: baseline;
margin-top: 6.5%;
}
li a:hover {
background-color: #111;
}
a {
text-decoration: none;
}
a:link, a:visited {
color: var(--green);
}
a:hover {
color: red;
}
footer {
color: white;
}
.right {
float: right;
}
.less_padding {
padding: 6px 14px;
}