better home

This commit is contained in:
lontra
2019-05-30 20:07:18 +03:00
parent 7eb4842141
commit 5bf05b6b7f
13 changed files with 79 additions and 14 deletions

View File

@@ -11,3 +11,11 @@
// about supported directives.
//
//= require_tree .
$(document).ready(function(){
var msnry = new Masonry( '#infos', {
columnWidth: 180,
itemSelector: '.card'
});
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -8,7 +8,35 @@ a {
color:black;
}
a:hover{
background-color: black;
color: white;
p:hover{
background-color: green;
}
.card:hover{
background-color: green;
}
.card{
color: black;
width: 200px;
float: left;
border: 2px solid green;
margin: 10px;
padding: 25px;
font-size: 22px;
text-align: center;
box-shadow: 8px 8px 3px #1a54027a;
}
.date{
font-size: 14px;
color: gray;
padding-top: 15px
}
#nav{
display: inline-block;
width: 100%;
text-align: center;
padding: 10px;
font-size: 19px
}