Tabelle sieht mobil nicht mehr ganz scheiße aus
This commit is contained in:
parent
299cd535da
commit
8b3f4a1b63
2 changed files with 37 additions and 11 deletions
28
css/main.css
28
css/main.css
|
@ -42,7 +42,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.page {
|
.page {
|
||||||
margin: 0 125px;
|
width: 80%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 500px) {
|
||||||
|
.page {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -98,6 +104,7 @@ h1 {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
overflow-x: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
table#t01 {
|
table#t01 {
|
||||||
|
@ -110,6 +117,7 @@ table#t01 tr:nth-child(odd) {
|
||||||
|
|
||||||
table#t01 th {
|
table#t01 th {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
white-space: nowrap; /* kein umbruch bei schmaler ansicht */
|
||||||
}
|
}
|
||||||
/* die sort up sort down icons neben den Spaltennamen */
|
/* die sort up sort down icons neben den Spaltennamen */
|
||||||
table#t01 th i {
|
table#t01 th i {
|
||||||
|
@ -120,6 +128,23 @@ table#t01 th i {
|
||||||
table#t01 th, table#t01 td {
|
table#t01 th, table#t01 td {
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
padding: 11px 0;
|
padding: 11px 0;
|
||||||
|
font-size: 14px; /* same as section */
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1200px) {
|
||||||
|
table#t01 th:nth-child(n+7), table#t01 td:nth-child(n+7) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 900px) {
|
||||||
|
table#t01 th:nth-child(n+5), table#t01 td:nth-child(n+5) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
table#t01 th:nth-child(n+4), table#t01 td:nth-child(n+4) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.boxed {
|
.boxed {
|
||||||
|
@ -148,7 +173,6 @@ th {
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer{
|
.footer{
|
||||||
margin: 0 125px;
|
|
||||||
border-top: 2px solid lightgreen;
|
border-top: 2px solid lightgreen;
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Roboto', sans-serif;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -73,6 +73,7 @@
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="page">
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<div class="foo-left">
|
<div class="foo-left">
|
||||||
<p>Copyright © 2018 world_data</p>
|
<p>Copyright © 2018 world_data</p>
|
||||||
|
@ -82,6 +83,7 @@
|
||||||
<p>This solution has been created by: <br> Team 26</p>
|
<p>This solution has been created by: <br> Team 26</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue