Commit e3f3f258 authored by John Punzalan's avatar John Punzalan

Remove responsiveness on 1280px width

parent 4fbb9b24
......@@ -278,6 +278,13 @@ footer {
#logo a {
color: #0e0e0e;
}
.nav li {
-webkit-transition: all 500ms linear;
-moz-transition: all 300ms linear;
-ms-transition: all 300ms linear;
-o-transition: all 300ms linear;
transition: all 300ms linear;
}
.nav li.homepage-link {
width: 30%;
}
......@@ -285,6 +292,11 @@ footer {
padding-right: 0;
}
.nav li a {
-webkit-transition: all 500ms linear;
-moz-transition: all 300ms linear;
-ms-transition: all 300ms linear;
-o-transition: all 300ms linear;
transition: all 300ms linear;
color: #0e0e0e;
font-family: 'Montserrat';
}
......@@ -373,3 +385,15 @@ footer {
.lang-sel .active {
text-decoration: underline;
}
@media all and (max-width: 1280px) {
.container,
#container {
width: 1280px !important;
}
}
@media all and (max-height: 850px) {
.container,
#container {
height: 850px !important;
}
}
......@@ -59,6 +59,12 @@ footer {
.nav {
li {
-webkit-transition: all 500ms linear;
-moz-transition: all 300ms linear;
-ms-transition: all 300ms linear;
-o-transition: all 300ms linear;
transition: all 300ms linear;
&.homepage-link {
width: 30%;
}
......@@ -71,6 +77,12 @@ footer {
a {
-webkit-transition: all 500ms linear;
-moz-transition: all 300ms linear;
-ms-transition: all 300ms linear;
-o-transition: all 300ms linear;
transition: all 300ms linear;
&:first-child {
padding-left: 0;
}
......@@ -185,4 +197,18 @@ footer {
.active {
text-decoration: underline;
}
}
@media all and (max-width: 1280px)
{
.container, #container {
width: 1280px !important;
}
}
@media all and (max-height: 850px)
{
.container, #container {
height: 850px !important;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment