website/styl/lib/_footer.styl

67 lines
985 B
Stylus
Raw Normal View History

2021-01-11 19:24:57 +01:00
footer{
display: flex;
justify-content: center;
flex-direction: column;
a {
text-decoration: none;
}
#footerContent{
2021-04-12 18:43:31 +02:00
width: 70%;
2021-01-11 19:24:57 +01:00
display: flex;
justify-content: center;
2021-04-12 18:43:31 +02:00
margin: 0 auto;
2021-01-11 19:24:57 +01:00
div{
border-right: #3d3d3d 1px solid;
padding: 20px;
2021-04-12 18:43:31 +02:00
flex-basis: 100%;
&:last-child {
border-right: none;
}
2021-01-11 19:24:57 +01:00
}
h3 {
margin-top: 0;
}
2021-04-02 17:53:36 +02:00
a{
2021-01-11 19:24:57 +01:00
color: $text-color;
2021-03-05 22:47:51 +01:00
transition: color $link-hover-animation-time;
2021-04-02 17:53:36 +02:00
&:hover{
color: $accent-color;
}
2021-03-05 22:47:51 +01:00
}
2021-04-02 17:53:36 +02:00
a svg {
fill: $text-color;
max-width: 30px;
transition: fill $link-hover-animation-time;
2021-04-12 18:30:43 +02:00
margin-left: 10px;
display: inline;
2021-04-02 17:53:36 +02:00
&:hover{
fill: $accent-color;
}
2021-01-11 19:24:57 +01:00
}
}
}
#blueBar{
height: 5px;
width: 100%;
background-color: $content-footer-div-color;
2021-04-12 18:57:55 +02:00
}
#newestPost{
ul {
list-style-type: none;
padding-left: 0;
}
li {
margin-bottom: 10px;
}
2021-04-12 18:43:31 +02:00
}