mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-11-22 09:39:17 +01:00
40c4881b1f
The name is there if you hover over it, just... not as visible as previously.
86 lines
1.5 KiB
CSS
86 lines
1.5 KiB
CSS
---
|
|
layout: null
|
|
---
|
|
|
|
body {
|
|
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.notification.jumbotron > p {
|
|
font-size: 16px;
|
|
margin: 0;
|
|
}
|
|
|
|
.notification.jumbotron p .btn-primary {
|
|
margin-top: 14px;
|
|
}
|
|
|
|
#game-list.version3-only [hidden] {
|
|
display: none;
|
|
}
|
|
|
|
#game-list.version3-only :not([hidden]) .version-label {
|
|
display: none;
|
|
}
|
|
|
|
#game-list.version3-only .panel-footer #see-less-footer {
|
|
display: none;
|
|
}
|
|
|
|
#game-list:not(.version3-only) .panel-footer #see-more-footer {
|
|
display: none;
|
|
}
|
|
|
|
#game-list .panel-footer a {
|
|
text-align: center;
|
|
display: block;
|
|
}
|
|
|
|
#game-list .panel-footer {
|
|
background-color: {{ site.navbar-col }};
|
|
}
|
|
|
|
#download-gfx-panel {
|
|
background-color: #dfe7e8;
|
|
}
|
|
|
|
#contributor-list {
|
|
left: -1000px;
|
|
}
|
|
|
|
#contributor-list table tbody tr {
|
|
border: transparent 0px !important;
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
#contributor-list table tbody tr td {
|
|
padding: 2px !important;
|
|
border: transparent 0px !important;
|
|
}
|
|
|
|
.contributor-tooltip {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.contributor-tooltip .contributor-tooltip-text {
|
|
opacity: 0.0;
|
|
width: 120px;
|
|
top: 100%;
|
|
left: 50%;
|
|
margin-left: -60px;
|
|
background-color: black;
|
|
color: beige;
|
|
text-align: center;
|
|
padding: 5px 0;
|
|
border-radius: 2px;
|
|
position: absolute;
|
|
z-index: 1;
|
|
border-radius: 4px;
|
|
transition: opacity 500ms;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.contributor-tooltip:hover .contributor-tooltip-text {
|
|
opacity: 1.0;
|
|
} |