28 lines
558 B
CSS
28 lines
558 B
CSS
a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
#navigation {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.link-container {
|
|
display: grid;
|
|
width: 80%;
|
|
grid-template-columns: 20% 20% 56% 4%;
|
|
background-color: #BAC8D4;
|
|
border-bottom-right-radius: 10px;
|
|
border-bottom-left-radius: 10px;
|
|
}
|
|
.links {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 25px;
|
|
}
|
|
#logo {
|
|
height: 60px;
|
|
width: 170px;
|
|
background-image: url("../../images/bibArts.png");
|
|
background-position: center;
|
|
background-size: contain;
|
|
} |