1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-old-website/Website.old/css/style.css
T
2019-11-08 13:05:43 +03:00

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;
}