gallery/gallery.css

11 lines
634 B
CSS
Raw Normal View History

2020-05-15 09:26:18 +00:00
* { box-sizing: border-box; }
html { background-color: #2c3e50; color: #eee; }
2020-05-28 10:40:07 +00:00
.wrapper { max-width: 1286px; margin: 0 auto; }
2020-05-15 09:26:18 +00:00
a { color: #00aced; }
2021-02-02 04:35:31 +00:00
ul.gallery { display: flex; flex-flow: row wrap; justify-content: space-evenly; background-color: #eee; padding: 0; }
ul.gallery li { display: inline-block; list-style-type: none; width: 32%; margin-top: 0.8em; outline: 2px solid #00aced; background-color: #000; }
2020-05-15 09:26:18 +00:00
ul.gallery li a { text-decoration: none; }
ul.gallery li a:hover { color: yellow; }
ul.gallery li p { font-size: large; text-align: center; color: #fff; }
2021-02-02 04:35:31 +00:00
ul.gallery li img { max-width: 100%; background-color: white; }