26 lines
543 B
SCSS
26 lines
543 B
SCSS
|
footer {
|
||
|
width: 8.25in;
|
||
|
margin: 36px auto;
|
||
|
display: block;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.link-text {
|
||
|
font-weight: 700;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
a {
|
||
|
color: $turk;
|
||
|
padding: 0 4px;
|
||
|
&:hover {
|
||
|
color: white;
|
||
|
background-color: $turk;
|
||
|
transition: all 0.35s ease-out;
|
||
|
transition-property: all 0.35s ease-out;
|
||
|
-webkit-transition-property: all 0.35s ease-out;
|
||
|
-moz-transition-property: all 0.35s ease-out;
|
||
|
-o-transition-property: all 0.35s ease-out;
|
||
|
}
|
||
|
}
|
||
|
}
|