Files
2022_WEBSITE_kosmopolit/styles/global.css
2021-02-27 09:41:11 +01:00

41 lines
587 B
CSS

/*/////////////////////////////////////////////*/
/*GLOBAL VARIABLE*/
:root {
}
/*elements are flex, vertical, and to the left, by default*/
body *:not(script) {
display: flex;
flex-direction: column;
margin: 20px 0px;
}
/*default*/
.vertical {
display: flex;
flex-direction: column;
}
.vertical > * {
margin: 20px 0px;
}
.left > * {
margin-left: 0px;
}
/*special*/
.horizontal {
display: flex;
flex-direction: row;
}
.horizontal > * {
margin: 0px 20px;
}
.right {
margin-right: 0px;
margin-left: auto;
text-align: right;
}
.center {
margin: auto;
text-align: center;
}