liljudd-website/app/util/wrapping_objects.module.css

122 lines
1.8 KiB
CSS
Raw Normal View History

2023-10-18 15:58:15 +00:00
.navMenu {
display: flex;
flex-direction: column;
position: sticky;
background-color: #5d5d61;
border-radius: 5px;
}
.logo {
width: 32px;
height: 32px;
border-radius: 10%;
max-width: initial;
max-height: initial;
}
.footer {
align-items: center;
2023-10-18 19:20:38 +00:00
margin: 100px 1px 0 0;
background-color: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(5px);
bottom: 0;
width: 100%;
padding: 5px;
}
.footerIcon {
display: block;
text-align: center;
}
.footerImage {
2023-10-18 15:58:15 +00:00
max-width: initial;
max-height: initial;
width: 48px;
margin: 0 auto;
}
.footerNotice {
margin: 0 auto;
text-align: center;
font-size: 0.75rem;
}
.footerTable {
margin: 10px 50px;
display: flex;
justify-content: center;
}
.table {
align-items: center;
width: 100%;
}
.table th {
padding: 4px 7px;
text-decoration: underline;
}
.table td {
padding: 4px 7px;
}
.table a {
position: relative;
color: #ffffff;
text-decoration: none;
}
.table a:hover {
color: #ffffff;
}
.table a::before {
content: "";
position: absolute;
display: block;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #ffffff;
transform: scaleX(0);
transition: transform 0.3s ease;
}
.table a:hover::before {
transform: scaleX(1);
}
@media (min-width: 768px) {
.footer {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
column-gap: 5px;
margin: 0 auto;
}
.footerIcon {
grid-column: span 1;
justify-self: center;
}
.footerTable {
grid-column: span 3;
}
.footerNotice {
grid-column: span 4;
}
2023-10-18 15:58:15 +00:00
}
.contentDiv {
display: flex;
2023-10-18 19:20:38 +00:00
flex-direction: column;
margin-bottom: auto;
2023-10-18 15:58:15 +00:00
}