@charset "UTF-8";
/**************************************
 * file: photo.css
 * brief: 写真を配置するための設定
 * author: Y. Kamijima
 * date: 2018/06/18
 * details:
 **************************************/

/* サムネイルを配置する。ここは float などを使っても実現可能。 */
.gallery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0;
}

.gallery > li {
  align-items: center;
  list-style-type: none;
  margin: 15px 0;
}

.gallery img {
  border: solid 1px #999;
}
