40 lines
723 B
CSS
40 lines
723 B
CSS
footer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
width: 100%;
|
|
height: 40px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--primary-color);
|
|
align-content: center;
|
|
position: fixed;
|
|
bottom: 0;
|
|
color: white;
|
|
}
|
|
|
|
#madeWith {
|
|
flex-grow: 1;
|
|
text-align: right;
|
|
margin-right: 20px;
|
|
cursor: url("Website/media/blahaj.png"), grab;
|
|
}
|
|
|
|
footer div {
|
|
margin: 0 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-items: center;
|
|
background-color: rgba(255,255,255, 0.3);
|
|
border-radius: 10px;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
footer div > * {
|
|
margin: 0 2px;
|
|
padding: 3px 0;
|
|
}
|
|
|
|
footer .hoverHand {
|
|
cursor: pointer;
|
|
} |