1
0
forked from javalsai/website

first commit

This commit is contained in:
2024-09-30 19:36:00 +02:00
commit ae59cb7ed9
35 changed files with 9562 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
.break-word-all {
word-break: break-all;
}

19
styles/classes/flex.css Normal file
View File

@@ -0,0 +1,19 @@
.flex {
display: flex;
justify-content: space-around;
}
.flex.row {
flex-direction: row;
}
.flex.column {
flex-direction: column;
}
.flex.wrappable {
flex-wrap: wrap;
}
.flex.same-width {
flex: 1;
}

View File

@@ -0,0 +1,11 @@
.row-ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.row-ul > li {
margin: 0 .5em;
display: inline;
margin: 0;
}