webapp/src/components/Discours/Footer.module.scss

103 lines
1.4 KiB
SCSS
Raw Normal View History

2022-10-19 22:16:17 +00:00
.discoursFooter {
2022-09-09 11:53:35 +00:00
@include font-size(1.7rem);
2023-05-01 18:32:32 +00:00
background: #000;
color: rgb(255 255 255 / 64%);
2022-09-09 11:53:35 +00:00
padding: 2.4rem 0 4.2rem;
a {
border: none;
color: #fff;
}
h5 {
color: #fff;
margin-bottom: 1.2rem;
}
ul {
list-style: none;
margin: 0 0 6.4rem;
padding: 0;
a {
color: rgb(255 255 255 / 64%);
transition: color 0.3s, background-color 0.3s;
2022-09-09 11:53:35 +00:00
&:hover {
background: #fff;
color: #000;
2022-09-09 11:53:35 +00:00
}
}
}
li {
margin-top: 0.8rem;
}
2022-11-09 21:47:52 +00:00
::selection {
background: #fff;
color: #000;
}
2022-09-09 11:53:35 +00:00
}
2022-10-19 22:16:17 +00:00
.discoursFooterContent {
2022-09-09 11:53:35 +00:00
display: flex;
flex-direction: column;
justify-content: center;
padding-left: $grid-gutter-width;
}
2022-10-19 22:16:17 +00:00
.footerCopyright {
2022-09-09 11:53:35 +00:00
@include font-size(1.5rem);
2023-05-01 18:32:32 +00:00
border-top: 5px solid #404040;
color: #696969;
2022-09-09 11:53:35 +00:00
padding-top: 1.6rem;
2022-11-02 21:43:38 +00:00
a {
2022-11-10 12:50:47 +00:00
color: rgb(255 255 255 / 70%);
2022-11-02 21:43:38 +00:00
&:hover {
background: #fff;
color: #000;
2022-11-02 21:43:38 +00:00
}
}
2022-09-09 11:53:35 +00:00
}
2022-10-19 22:16:17 +00:00
.footerCopyrightSocial {
2022-09-09 11:53:35 +00:00
display: flex;
.icon {
opacity: 0.5;
transition: 0.3s;
&:hover {
opacity: 1;
}
}
img {
max-height: 20px;
max-width: 20px;
vertical-align: middle;
}
}
2022-10-19 22:16:17 +00:00
.socialItem {
margin-top: 1em;
text-align: center;
2022-09-09 11:53:35 +00:00
width: 25%;
2022-10-19 22:16:17 +00:00
@include media-breakpoint-up(md) {
margin-top: 0;
margin-left: 0.3em;
text-align: right;
}
2022-09-09 11:53:35 +00:00
}
2022-10-19 22:16:17 +00:00
.socialItemvk {
2022-09-09 11:53:35 +00:00
img {
max-width: 25px;
}
}