<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
    /*
  margin: 0;
  font-family: 'Roboto';
  background-color: #f3f2f1;
    */
}

h1 {
  margin: 150px 0 0;
  font-size: 26px;
  font-weight: 400;
  text-align: center;
}

.col {
  position: relative;
  display: block;
  padding: 5px;
  width: 20%;
  float: left;
}

.col .info {
  position: absolute;
  top: 50%; left: 50%; /* Ã&nbsp; 50%/50% du parent rÃ©fÃ©rent */
  transform: translate(-50%, -50%);
  display: block;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
 /* line-height: 184px;*/
 /* background-color: rgba(0,213,213,0.6);*/
 /* border-radius: .5rem;*/
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.col:hover .info {
  opacity: 1;
  visibility: visible;
}

#feed {
      
 /*
    margin: 30px auto 0;
  padding: 10px;
  background-color: #fafafa;
  border-radius: .5rem;
    width: 1050px;
  -webkit-box-shadow: 2px 1px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 2px 1px 10px 0 rgba(0, 0, 0, 0.05);
    */
}

#feed img {
  display: block;
  margin: 0;
  width: 100%;
 /* border-radius: .5rem;*/
}

#feed:after {
  display: block;
  content: '';
  clear: both;
}
</pre></body></html>