126 lines
1.8 KiB
CSS
126 lines
1.8 KiB
CSS
body {
|
|
background-color: black;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.title {
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.title-wrapper {
|
|
margin-top: 95px;
|
|
}
|
|
|
|
.discussion-wrapper {
|
|
border: 1px solid white;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-bottom: 10px;
|
|
width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background-color: #313639;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.libcasa-title {
|
|
color: white;
|
|
}
|
|
|
|
.register-wrapper {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 250px;
|
|
background-color: #313639;
|
|
width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-top: 25px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.username {
|
|
position: relative;
|
|
width: 450px;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.password {
|
|
position: relative;
|
|
width: 450px;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.submit {
|
|
position: relative;
|
|
display: flex;
|
|
width: 250px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
justify-content: center;
|
|
padding: 15px;
|
|
background-color: #42b72a;
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.submit:hover {
|
|
cursor: pointer;
|
|
box-shadow: 5px 5px 5px #42b72a;
|
|
}
|
|
|