JSFiddle - React, Tailwind, and code Playground

by Artem Pryanishnikov

HTML

<div class="page">
  <div style="overflow: hidden;">
      <div style="width: 1000%;">
        <div class="poster">
            <a href="#openModal">
              <div class="brighten pic">
              <img src="https://www.sberbank.ru/portalserver/content/atom/contentRepository/content?id=40d1bd8f-6032-4b89-8824-c431b2adc2a8" width="400" height="111"  alt="1111">
              </div>
            </a>
          <div id="openModal" class="modalDialog">
            <div>
              <a href="#close" title="Закрыть" class="close">X</a>
              <h2>НАЗВАНИЕ</h2>
              <p>Какая-то информация</p>
           </div>
          </div>
          </div>
            <div class="poster">
            <a href="#openModal">
              <div class="brighten pic">
              <img src="https://www.sberbank.ru/portalserver/content/atom/contentRepository/content?id=40d1bd8f-6032-4b89-8824-c431b2adc2a8" width="400" height="111"  alt="1111">
              </div>
            </a>
          <div id="openModal" class="modalDialog">
            <div>
              <a href="#close" title="Закрыть" class="close">X</a>
              <h2>НАЗВАНИЕ</h2>
              <p>Какая-то информация</p>
           </div>
          </div>
          </div>
            <div class="poster">
            <a href="#openModal">
              <div class="brighten pic">
              <img src="https://www.sberbank.ru/portalserver/content/atom/contentRepository/content?id=40d1bd8f-6032-4b89-8824-c431b2adc2a8" width="400" height="111"  alt="1111">
              </div>
            </a>
          <div id="openModal" class="modalDialog">
            <div>
              <a href="#close" title="Закрыть" class="close">X</a>
              <h2>НАЗВАНИЕ</h2>
              <p>Какая-то информация</p>
           </div>
          </div>
          </div>
            <div class="poster">
            <a href="#openModal">
              <div class="brighten pic">
              <img...

CSS

.page{
  width:1200px;
  border:double red 1px;
}
.poster{
  width:250px;
  border:double blue 1px;
  margin: 10px 10px;
  padding: 10px 10px;
}
.brighten img {
  -webkit-filter: brightness(15%);
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
          width:250px;
          height:100%;

}

.brighten img:hover {
  -webkit-filter: brightness(100%);
}
.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	display: none;
	pointer-events: none;
}
.modalDialog:target {
    display: block;
    pointer-events: auto;


}
 
.modalDialog > div {
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }