MediaWiki:Common.css: различия между версиями
Страница интерфейса MediaWiki
Дополнительные действия
Rirma4ch (обсуждение | вклад) Нет описания правки |
Actn2k (обсуждение | вклад) Нет описания правки |
||
| Строка 131: | Строка 131: | ||
from { opacity: 0.5; } | from { opacity: 0.5; } | ||
to { opacity: 1; } | to { opacity: 1; } | ||
} | } | ||
| Строка 269: | Строка 171: | ||
/* | /* Главная страница */ | ||
.main-panel { | .main-panel { | ||
| Строка 389: | Строка 291: | ||
a.back-to-top:hover { | a.back-to-top:hover { | ||
background-color: transparent; | background-color: transparent; | ||
} | |||
/* Панель для гайдов */ | |||
.guide-panel { | |||
border: 1px solid rgba(0, 0, 0, 0.2); | |||
border-radius: 10px; | |||
} | |||
.guide-panel .header { | |||
display: flex; | |||
justify-content: space-between; | |||
flex-direction: row; | |||
align-items: flex-start; | |||
} | |||
.guide-panel .items-row { | |||
display: flex; | |||
justify-content: space-around; | |||
flex-direction: row; | |||
flex-wrap: wrap; | |||
} | |||
.guide-panel .items-row .item { | |||
flex-grow: 1; | |||
margin: 10px; | |||
padding: 10px; | |||
border-radius: 10px; | |||
border: 1px solid rgba(0, 0, 0, 0.5); | |||
display: flex; | |||
justify-content: space-between; | |||
} | |||
.guide-panel .items-row .item:hover { | |||
cursor: pointer; | |||
border-color: rgba(150, 203, 212, 0.5) !important; | |||
} | |||
.guide-panel .header .title { | |||
padding: 5px; | |||
padding-inline: 30px; | |||
border-bottom-left-radius: 10px; | |||
border-bottom-right-radius: 10px; | |||
border: 1px solid rgba(0, 0, 0, 0.5); | |||
border-top: none; | |||
background-color: #6E7167; | |||
} | |||
.guide-panel .header .logo { | |||
margin: 5px; | |||
} | } | ||