This commit is contained in:
parent
9de4952c91
commit
01b91a7e9f
58
base.css
58
base.css
@ -130,16 +130,6 @@ main{
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
}
|
||||
.main-box > div, footer > p{
|
||||
margin: 3px 0;
|
||||
padding: 2px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.item-table{
|
||||
display: table;
|
||||
box-sizing: content-box;
|
||||
background-color: transparent;
|
||||
}
|
||||
.flex-col{
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
@ -157,6 +147,35 @@ main{
|
||||
align-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
.flex-row{
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-box-orient: horizontal;
|
||||
-moz-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
-moz-box-direction: normal;
|
||||
-webkit-flex-direction: row;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-ms-flex-wrap: wrap;
|
||||
-webkit-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.main-box > div, footer > p{
|
||||
margin: 3px 0;
|
||||
padding: 2px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.item-table{
|
||||
display: table;
|
||||
box-sizing: content-box;
|
||||
background-color: transparent;
|
||||
}
|
||||
.item-table > div{
|
||||
display: table-row;
|
||||
background-color: transparent;
|
||||
@ -187,25 +206,6 @@ main{
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
}
|
||||
.flex-row{
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-box-orient: horizontal;
|
||||
-moz-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
-moz-box-direction: normal;
|
||||
-webkit-flex-direction: row;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-ms-flex-wrap: wrap;
|
||||
-webkit-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.image-box > a{
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
|
@ -108,7 +108,7 @@
|
||||
</div>
|
||||
{{ range .GetEntries }}
|
||||
<div>
|
||||
<div class="item-table">
|
||||
<div class="item-table flex-col">
|
||||
<div class="flex-row">
|
||||
<div class="item-table-full">
|
||||
<div class="centered"><h1>{{ .Name }}</h1></div>
|
||||
|
Loading…
Reference in New Issue
Block a user