80 lines
1.1 KiB
CSS
80 lines
1.1 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;
|
|
}
|
|
|
|
.home-title {
|
|
font-size: 1.7rem;
|
|
}
|
|
|
|
.home-subtitle {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.login-wrapper {
|
|
position: relative;
|
|
border: 1px solid black;
|
|
width: 400px;
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
border-radius: 5px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.about-content {
|
|
font-size: 1rem;
|
|
}
|
|
|