You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
470 B
32 lines
470 B
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
background-image: url('img/wallpaper.jpg');
|
|
background-size: cover;
|
|
}
|
|
[class*="col-"] {
|
|
float: left;
|
|
padding: 5%;
|
|
}
|
|
|
|
img{
|
|
border: 5px black solid;
|
|
}
|
|
.col-6 {width: 50%;}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
/* For mobile phones: */
|
|
[class*="col-"] {
|
|
width: 100%;
|
|
}
|
|
body {
|
|
background-image: url('img/wallpaper.jpg');
|
|
background-size: cover;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|