test für centerthumbs

This commit is contained in:
Robo 2016-08-17 20:34:53 +02:00
parent ce7249da35
commit dec093b2b6
2 changed files with 11 additions and 3 deletions

View File

@ -7,7 +7,9 @@
</head> </head>
<body> <body>
<div class="navbar"><a href="/">f0ck.me</a> | <a href="/how">how to</a> | <a href="/contact">Contact</a></div><br /> <div class="navbar"><a href="/">f0ck.me</a> | <a href="/how">how to</a> | <a href="/contact">Contact</a></div><br />
{% for item in items %}<div class="mrhankyisteinneger"><a href="./{{ item }}"><img src="./t/{{ item }}.png" /></a></div> {% for item in items %}<div class="centeredthumbs">
<div class="mrhankyisteinneger"><a href="./{{ item }}"><img src="./t/{{ item }}.png" /></a></div>
</div>
{% endfor %} {% endfor %}
</html> </html>
</body> </body>

View File

@ -51,4 +51,10 @@ a:hover {
} }
code { code {
color: #9df943; color: #9df943;
} }
.centeredthumbs {
display: flex;
align-items: center;
justify-content: center;
}