89 lines
1.4 KiB
CSS
89 lines
1.4 KiB
CSS
body {
|
|
background-image: url(/static/img/wallpaper.png);
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
font-size: 15px;
|
|
line-height: 1.5em;
|
|
background-position: center top;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.area {
|
|
background-color: #FFF;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
flex: 1 0 auto;
|
|
/*
|
|
min-height: 100%;
|
|
height: auto !important;
|
|
height: 600px;
|
|
text-align: center;
|
|
*/
|
|
}
|
|
|
|
.text {
|
|
padding: 2em;
|
|
}
|
|
|
|
h1, h2 {
|
|
text-align: left;
|
|
margin-top: 0;
|
|
}
|
|
|
|
p {
|
|
text-align: left;
|
|
}
|
|
|
|
/* Set a style for all buttons */
|
|
button {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 120%;
|
|
}
|
|
|
|
a.button {
|
|
background-color: #1da1f2;
|
|
color: white;
|
|
padding: 14px 20px;
|
|
margin: 8px 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 120%;
|
|
}
|
|
|
|
button:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
input[type=text], input[type=password] {
|
|
width: 100%;
|
|
padding: 12px 20px;
|
|
margin: 8px 0;
|
|
display: inline-block;
|
|
border: 1px solid #ccc;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
padding: 4em;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
float: none;
|
|
}
|
|
|
|
.footer {
|
|
padding: 2em;
|
|
bottom: 0;
|
|
background-color: #fff;
|
|
float: center;
|
|
width: 540px;
|
|
height: 30px;
|
|
flex-shrink: 0;
|
|
} |