This commit is contained in:
Sharyn 2018-07-19 16:10:52 +02:00
parent fa09d889be
commit c02fa46f00
3 changed files with 15 additions and 19 deletions

View File

@ -34,7 +34,6 @@ const PageHeader = () => (
</div>
</div>
</div>
);
export default PageHeader;

View File

@ -85,7 +85,7 @@
background: -moz-linear-gradient(top, rgba(28, 36, 73, 0.65) 1%, rgba(28, 36, 73, 0) 68%, rgba(28, 36, 73, 0) 100%);
background: -webkit-linear-gradient(top, rgba(28, 36, 73, 0.65) 1%, rgba(28, 36, 73, 0) 68%, rgba(28, 36, 73, 0) 100%);
background: linear-gradient(to bottom, rgba(28, 36, 73, 0.65) 1%, rgba(28, 36, 73, 0) 68%, rgba(28, 36, 73, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a61c2449', endColorstr='#001c2449',GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a61c2449', endColorstr='#001c2449', GradientType=0);
.container {
max-width: calculateRem($big-container-width);

View File

@ -1,23 +1,20 @@
@import './assets/styles/global.scss';
.page-header-nav {
.page-header-nav a {
font-family: $secondary-font;
color: #fff;
text-decoration: none;
margin-right: calculateRem(32);
font-size: calculateRem(18);
text-shadow: 0 0 11px #000;
letter-spacing: .08em;
a {
font-family: $secondary-font;
color: #fff;
text-decoration: none;
margin-right: calculateRem(32);
font-size: calculateRem(18);
text-shadow: 0 0 11px #000;
letter-spacing: .08em;
@media (min-width: $desktop) {
margin-right: 0;
margin-left: calculateRem(48);
}
@media (min-width: $desktop) {
margin-right: 0;
margin-left: calculateRem(48);
}
&:hover {
text-decoration: underline;
}
&:hover {
text-decoration: underline;
}
}