Update manager.css

This commit is contained in:
Markines16 2021-05-27 20:50:03 +02:00 committed by GitHub
parent 53dbcbe6a6
commit 4addd2c35f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 4 deletions

View File

@ -68,7 +68,28 @@ table.seat td:first-child {
}
/*lists like tables*/
/*
lists like tables
Example col3 tablelist
<ul class="tablelist col3">
<li class="title"> Tittle1 </li>
<li class="title"> Tittle2 </li>
<li class="title"> Tittle3 </li>
<li> cell 1,1 <li>
<li> cell 1,2 <li>
<li> cell 1,3 <li>
<a class="h2long" href="">
<li> cell 2,1 this one and the next one share the same link <li>
<li> cell 2,2 <li>
</a>
<a href="">
<li> cell 2,3 this one is a link alone </li>
</a>
</ul>
General configuration
*/
.tablelist{
display: grid;
list-style-type: none;
@ -85,8 +106,8 @@ table.seat td:first-child {
}
.tablelist a:hover li{
color: rgb(255, 255, 32);
background: rgba(0, 3, 255, 0.25);
color: rgb(211, 235, 255);
background: rgba(31, 44, 61, 1);
}
.tablelist li.title{
@ -166,4 +187,4 @@ table.seat td:first-child {
grid-column-start: 5;
grid-column-end: 6;
grid-template-columns: auto;
}
}