72 lines
966 B
CSS
72 lines
966 B
CSS
body {
|
|
background-color: black;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.title {
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.title-wrapper {
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.discussion-wrapper {
|
|
border: 1px solid white;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-bottom: 10px;
|
|
width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.irc-topics {
|
|
margin-top: -25px;
|
|
color: white;
|
|
margin-bottom: 5px;
|
|
text-decoration: underline;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.irc-libcasa {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
.irc-libcasa:hover {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.boards-title-wrapper {
|
|
position: relative;
|
|
top: -16px;
|
|
margin-left: -10px;
|
|
margin-right: -10px;
|
|
background-color: white;
|
|
}
|
|
|
|
.boards-title {
|
|
font-size: 1.2rem;
|
|
padding-left: 2px;
|
|
}
|
|
|
|
.nav-wrapper a {
|
|
text-decoration: none;
|
|
color: white;
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.nav-wrapper a:hover {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.about-title {
|
|
color: white;
|
|
}
|
|
|