8,957
edits
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
.image-frame { | /* Для таблицы фото-рамки */ | ||
.image-frame-table { | |||
border: none !important; | |||
background: none; | |||
box-shadow: none; | |||
} | } | ||
/* Ячейка с фото */ | |||
.centered-photo-cell { | |||
text-align: center; | |||
background: none; | |||
padding: 0 !important; | |||
} | } | ||
. | /* Фото */ | ||
.framed-img, .image-frame-table img { | |||
display: block; | |||
margin: 0 auto; | |||
border-radius: 15px 15px 0 0; | |||
border-left: 10px solid #c72a37; | |||
border-right: 10px solid #c72a37; | |||
border-top: 5px solid #c72a37; | |||
border-bottom: none; | |||
box-sizing: border-box; | |||
box-shadow: 0 3px 16px rgba(70,15,25,0.10); | |||
max-width: 200px; | |||
max-height: 200px; | |||
} | } | ||
/* | /* Ячейка с подписью */ | ||
. | .centered-text-cell { | ||
text-align: center; | |||
padding: 0 !important; | |||
} | } | ||
/* | /* Стиль подписи */ | ||
.image-caption { | .image-caption { | ||
background: #181217; | |||
color: #e0a6b4; | |||
border-bottom: 6px solid #c72a37; | |||
border-left: 10px solid #c72a37; | |||
border-right: 10px solid #c72a37; | |||
border-radius: 0 0 15px 15px; | |||
font-size: 1.09em; | |||
padding: 9px 0 7px 0; | |||
margin: 0; | |||
font-family: 'Segoe UI', 'Arial', sans-serif; | |||
letter-spacing: .02em; | |||
} | } | ||