129 lines
1.8 KiB
CSS
129 lines
1.8 KiB
CSS
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;
|
|
}
|
|
|
|
.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 {
|
|
cursor: pointer;
|
|
top: -5px;
|
|
}
|
|
|
|
.updates-wrapper {
|
|
position: relative;
|
|
float: left;
|
|
top: -215px;
|
|
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;
|
|
}
|
|
|
|
.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;
|
|
}
|