376chan/styles/styles.css

129 lines
1.8 KiB
CSS
Raw Normal View History

body {
font-family: monospace;
overflow: hidden;
background-color: #f0f2f5;
}
.nav-wrapper {
background-color: blue;
padding: 15px;
}
.nav-wrapper a {
color: white;
text-decoration: none;
margin-left: 15px;
margin-right: 15px;
font-size: 1rem;
}
2023-02-04 18:54:00 +01:00
.nav-wrapper a:hover {
text-decoration: underline;
}
.home-title {
font-size: 1.7rem;
}
.home-subtitle {
font-size: 0.9rem;
}
.login-wrapper {
position: relative;
top: 15px;
border: 1px solid black;
width: 400px;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 5px;
background-color: #fff;
box-shadow: 8px 8px 8px lightgrey;
}
.username {
position: relative;
display: flex;
margin-left: auto;
margin-right: auto;
padding: 15px;
border: 1px solid black;
border-radius: 5px;
width: 75%;
font-size: 1rem;
}
.password {
position: relative;
display: flex;
margin-left: auto;
margin-right: auto;
padding: 15px;
border: 1px solid black;
width: 75%;
border-radius: 5px;
font-size: 1rem;
}
.login-button {
position: relative;
display: flex;
width: 35%;
margin-left: auto;
margin-right: auto;
padding: 10px;
background-color: blue;
font-size: 1rem;
color: white;
font-weight: bold;
border-radius: 5px;
}
.login-button:hover {
2023-02-01 01:36:33 +01:00
cursor: pointer;
top: -5px;
}
.updates-wrapper {
position: relative;
2023-02-04 22:13:08 +01:00
float: left;
top: -215px;
2023-02-04 22:13:08 +01:00
left: 450px;
border: 1px solid black;
border-radius: 5px;
background-color: #fff;
padding-top: 5px;
padding-bottom: 15px;
width: 500px;
}
.updates-title {
position: relative;
text-align: center;
}
.update-content {
position: relative;
margin-left: 10px;
color: blue;
}
.about-content {
font-size: 1rem;
}
2023-02-04 19:46:57 +01:00
.sweatshirt-title {
display: flex;
justify-content: center;
}
.topics-board-wrapper {
border: 1px solid black;
padding: 25px;
margin-left: 50px;
margin-right: 50px;
border-radius: 5px;
background-color: #fff;
}