Home, sowie Login und Register Website haben nun CSS implementiert #5
+77
-3
@@ -1,4 +1,4 @@
|
||||
/** Standard Layout */
|
||||
|
||||
main {
|
||||
max-width:1200px;
|
||||
margin: 0 auto;
|
||||
@@ -38,13 +38,87 @@ main {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/** Anpassung fuer grosse Monitore */
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.container {
|
||||
padding 25px
|
||||
padding: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.login-page {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 80vh;
|
||||
}
|
||||
|
||||
|
||||
.login-container {
|
||||
width: 90%;
|
||||
max-width: 450px;
|
||||
padding: 30px;
|
||||
border: 1px solid white;
|
||||
border-radius: 10px;
|
||||
background-color: white;
|
||||
/** box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
|
||||
}
|
||||
|
||||
.logo-wrapper {
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.login-logo {
|
||||
width: 120px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.login-container h1 {
|
||||
text-align: center;
|
||||
margin-bottom: 25px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.input-label {
|
||||
margin-bottom: 5px;
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.login-input {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
margin-bottom: 20px;
|
||||
border: 1px solid white;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.checkbox-wrapper {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.login-button {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
background-color: blue;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.login-button:hover {
|
||||
background-color: blue;
|
||||
}
|
||||
|
||||
.register-link {
|
||||
margin-top: 20px;
|
||||
text-align: center;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: coral;
|
||||
}
|
||||
Reference in New Issue
Block a user