|
|
| Строка 1014: |
Строка 1014: |
| .main-layout-element { | | .main-layout-element { |
| margin-bottom: 1rem; | | margin-bottom: 1rem; |
| }
| |
|
| |
|
| |
| /* Раскрытие картинок во всплывающем окне по клику на них (для удобства назову — FancyBoxAlternative) */
| |
|
| |
| #wikiImageModal {
| |
| animation: fadeIn 0.3s ease;
| |
| }
| |
|
| |
| @keyframes fadeIn {
| |
| from { opacity: 0; }
| |
| to { opacity: 1; }
| |
| }
| |
|
| |
| #wikiModalClose {
| |
| transition: color 0.2s;
| |
| }
| |
|
| |
| #wikiModalClose:hover {
| |
| color: #ccc;
| |
| }
| |
|
| |
| #content img:not([class*="video"]):not([class*="tmh"]):not(.no-zoom) {
| |
| cursor: zoom-in;
| |
| transition: transform 0.2s, opacity 0.2s;
| |
| }
| |
|
| |
| #content img:hover:not([class*="video"]):not([class*="tmh"]):not(.no-zoom) {
| |
| opacity: 0.9;
| |
| } | | } |