background-color: #000000;color: #C2B2B4; font-family: Times New Roman>
ytoplenica - archive
Hi! I hate social media, but I like taking pictures of myself <3
you can find out more about me on spacehey.com !!!
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
HTML content. To learn how to do something, just try searching Google for questions like
"how to change link color." */
body {
background-color: #000000;
color: #C2B2B4;
font-family: Arial;
}
h1 {
text-align: center;
letter-spacing: -3px;
}
h2 {
text-align: center;
letter-spacing: -2px;
font-size: 3px;
}
.vnkteksts {
text-align: center;
font-weight: 900;
}
a:link {
color: #C2B2B4;
}
/* visited link */
a:visited {
color: #C2B2B4;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: #C2B2B4;
}
#gallery {
line-height:0;
-webkit-column-count:5; /* split it into 5 columns */
-webkit-column-gap:5px; /* give it a 5px gap between columns */
-moz-column-count:5;
-moz-column-gap:5px;
column-count:5;
column-gap:5px;
}
#gallery img {
width: 100% !important;
height: auto !important;
margin-bottom:10px; /* to match column gap */
}
@media (max-width: 1200px) {
#gallery {
-moz-column-count: 4;
-webkit-column-count: 4;
column-count: 4;
}
}
@media (max-width: 1000px) {
#gallery {
-moz-column-count: 3;
-webkit-column-count: 3;
column-count: 3;
}
}
@media (max-width: 800px) {
#gallery {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
}
@media (max-width: 400px) {
#gallery {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
/* Style the header */
.header {
padding: 30px;
text-align: center;
font-size: 17px;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
.column {
width: 100%;
}