13bcf2979257c416d9e6d3ae85c235e31737584d
[oweals/minetest.git] / util / master / style.css
1 #server_list table {
2         max-width: 100%;
3         width: 100%;
4         background-color: transparent;
5         border-collapse: collapse;
6         border-spacing: 0;
7         font-size: small;
8 }
9
10 #server_list td, #server_list th {
11         border: 1px solid gray;
12 }
13
14 .mts_hover_list{
15         visibility: hidden;
16         border: gray solid 1px;
17         position: absolute;
18         z-index: 100;
19         background-color: white;
20         padding: 0.5em;
21 }
22
23 td:hover .mts_hover_list {
24         visibility: visible;
25 }
26
27 .mts_hover_list_text, .mts_tooltip {
28         text-decoration: underline;
29         text-decoration-style: dashed;
30 }
31
32 .clickable {
33         text-decoration: underline;
34         cursor: pointer;
35 }