libcasa-chan/styles/styles.css

126 lines
1.8 KiB
CSS
Raw Permalink Normal View History

body {
background-color: black;
font-family: sans-serif;
}
.title {
color: white;
text-align: center;
}
2023-01-29 07:07:10 +01:00
.title-wrapper {
2023-01-29 17:42:52 +01:00
margin-top: 95px;
2023-01-29 07:07:10 +01:00
}
.discussion-wrapper {
border: 1px solid white;
2023-01-27 17:38:47 +01:00
padding-left: 10px;
padding-right: 10px;
2023-01-27 18:14:03 +01:00
padding-bottom: 10px;
width: 500px;
margin-left: auto;
margin-right: auto;
2023-01-30 01:27:33 +01:00
background-color: #313639;
}
2023-01-27 17:38:47 +01:00
.irc-topics {
margin-top: -25px;
2023-01-27 17:38:47 +01:00
color: white;
2023-01-27 18:14:03 +01:00
margin-bottom: 5px;
text-decoration: underline;
font-size: 1rem;
}
.irc-libcasa {
text-decoration: none;
color: white;
}
.irc-libcasa:hover {
cursor: pointer;
2023-01-27 17:38:47 +01:00
text-decoration: underline;
}
.boards-title-wrapper {
position: relative;
2023-01-27 20:22:11 +01:00
top: -16px;
2023-01-27 17:38:47 +01:00
margin-left: -10px;
margin-right: -10px;
background-color: white;
}
.boards-title {
font-size: 1.2rem;
padding-left: 2px;
}
2023-01-28 09:36:45 +01:00
.nav-wrapper a {
text-decoration: none;
color: white;
margin-left: 15px;
margin-right: 15px;
}
.nav-wrapper a:hover {
cursor: pointer;
text-decoration: underline;
}
2023-01-28 21:43:57 +01:00
.about-title {
color: white;
}
2023-01-29 19:20:06 +01:00
.libcasa-title {
color: white;
}
2023-01-30 00:04:28 +01:00
.register-wrapper {
position: relative;
display: flex;
justify-content: center;
2023-01-30 01:27:33 +01:00
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;
2023-01-30 00:04:28 +01:00
}