2021-11-28 12:22:14 +01:00

162 lines
2.5 KiB
CSS

/*main {
display: flex;
flex-grow: 1;
flex-shrink: 0;
flex-direction: column;
min-height: 100vh;
align-content: center;
align-items: center;
justify-content: center;
}
body * {
box-sizing: border-box;
max-width: 100%;
overflow-wrap: break-word;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
main {
padding: 1rem;
}
div.container {
width: 400px;
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
div.container.wide {
width: 1024px;
}
.row {
flex-direction: row;
flex-wrap: wrap;
align-items: center;
}
p.row {
max-width: 100%!important;
}
*/
/*Login button*/
/*.button {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
border: 1px solid rgba( 0, 0, 0, .3 );
color: rgba( 0, 0, 0, .8 );
text-decoration: none;
font-size: 1.5rem;
padding: .5rem 1.1rem .5rem 1rem;
margin-top: 1rem;
}
a img {
height: 50px;
width: 50px;
padding-right: 20px;
}
input#address {
padding: .2rem .5rem;
margin-top: 1rem;
text-align: center;
width: 100%;
}
.stretchBackground {
position: absolute;
width: 120%;
min-width: 1920px;
opacity: .5;
z-index: -1;
}
.container {
padding: 2rem;
background: rgba( 255, 255, 255, 1 );
box-shadow: 0px 0 5px 5px rgb(0 0 0 / 10%);
text-align: center;
}
h1, p, label {
padding: .2rem .5rem;
}*/
/*Loading spinner*/
/*.loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.loading * {
margin: 2rem 0;
}
.lds-dual-ring {
display: inline-block;
width: 80px;
height: 80px;
}
.lds-dual-ring:after {
content: " ";
display: block;
width: 64px;
height: 64px;
margin: 8px;
border-radius: 50%;
border: 6px solid black;
border-color: black transparent black transparent;
animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}*/
/* ///////////////////////////////
/// Avatar page
// /////////////////////////////*/
/*#avatar .rocketeer {
margin: 1rem 0;
border-radius: 50%;
padding: 1rem;
width: 200px;
height: 200px;
}
#avatar input:not([type=radio]) {
padding: 1rem;
width: 350px;
}
#avatar p {
margin: 3rem 0;
max-width: 300px;
text-align: center;
}
.radios {
display: flex;
align-items: center;
justify-content: center;
}
.radios .row {
width: 200px;
}*/