54 lines
881 B
CSS
54 lines
881 B
CSS
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;
|
|
} |