1
0

1st commit

This commit is contained in:
Michael Gordeev
2019-04-26 23:16:16 +03:00
parent 18779668cd
commit 70c9f4ee0e
22 changed files with 289 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
body {
margin: 0px;
}
.navbar {
background-color: rgb(34, 34, 33);
padding: 10px;
font-family: 'Courier New', Courier, monospace;
position: fixed;
right: 0%;
left: 0%;
}
.navbar a {
color: white;
font-size: 26px;
text-decoration: none;
}
.navbar a:hover {
color: gray;
}
.navbar ul {
display: inline;
list-style: none;
}
.navbar li {
display: inline;
margin-right: 20px;
}
.navbar li a {
font-size: 20px !important;
}
.content {
padding-top: 50px;
}
.gallery {
margin: 10px 50px;
font-family: 'Courier New', Courier, monospace;
}
.gallery img {
transition: .25s;
object-fit: cover;
max-width: 300px;
height: 200px;
margin: 2px;
}
.gallery img:hover {
filter: brightness(125%);
transform: scale(1.25);
}
.header {
color: black;
font-size: 36px;
font-weight: bold;
}