167 lines
2.4 KiB
CSS
167 lines
2.4 KiB
CSS
html {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
background-color: #3475CB;
|
|
font-family: "Vollkorn";
|
|
color: white;
|
|
margin: 0px;
|
|
background: no-repeat url(/static/image.png);
|
|
background-size: cover;
|
|
background-position: center;
|
|
height: 100%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 96px;
|
|
margin: 0px;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
background-color: white;
|
|
}
|
|
|
|
.navbuttons a {
|
|
display: inline-block;
|
|
}
|
|
|
|
.maintitle {
|
|
color: black;
|
|
}
|
|
|
|
.loginbutton {
|
|
align-self: center;
|
|
display: flex;
|
|
background-color: #3475CB;
|
|
padding-top: 15px;
|
|
padding-right: 20px;
|
|
padding-bottom: 15px;
|
|
padding-left: 20px;
|
|
border-radius: 5px;
|
|
color: black;
|
|
/*box-shadow: 10px 10px 5px lightblue;*/
|
|
}
|
|
|
|
main {
|
|
margin: 8px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
max-width: 900px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.account-wrapper {
|
|
background: transparent;
|
|
border: 2px solid white;
|
|
backdrop-filter: blur(20px);
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
border-radius: 15px;
|
|
padding: 30px 40px;
|
|
font-size: x-large;
|
|
}
|
|
|
|
.wrapper {
|
|
background: transparent;
|
|
border: 2px solid white;
|
|
backdrop-filter: blur(20px);
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
border-radius: 15px;
|
|
padding: 30px 40px;
|
|
|
|
}
|
|
|
|
.wrapper h1 {
|
|
font-size: xx-large;
|
|
text-align: center;
|
|
}
|
|
|
|
.wrapper .input-box {
|
|
width: 100%;
|
|
}
|
|
|
|
.input-box input {
|
|
box-sizing: border-box;
|
|
background: transparent;
|
|
width: 100%;
|
|
height: 100%;
|
|
outline: none;
|
|
border: 2px solid rgba(255, 255, 255, .2);
|
|
border-radius: 25px;
|
|
padding: 10px 45px 10px 20px
|
|
}
|
|
|
|
.input-box input::placeholder {
|
|
color: white;
|
|
}
|
|
|
|
.wrapper .input-error {
|
|
width: 100%;
|
|
}
|
|
|
|
.error {
|
|
color: rgba(240, 0, 0, .8);
|
|
}
|
|
|
|
.input-error input {
|
|
box-sizing: border-box;
|
|
background: transparent;
|
|
width: 100%;
|
|
height: 100%;
|
|
outline: none;
|
|
border: 2px solid rgba(255, 0, 0, .2);
|
|
border-radius: 25px;
|
|
padding: 10px 45px 10px 20px
|
|
}
|
|
|
|
.input-error input::placeholder {
|
|
color: red;
|
|
}
|
|
|
|
.login-btn-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.wrapper .btn {
|
|
width: 100%;
|
|
outline: none;
|
|
border: none;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.wrapper .register-link {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background-color: #132123;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wrapper a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wrapper a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wrapper a:hover {
|
|
text-decoration: underline;
|
|
}
|