Commit e3f3f258 authored by John Punzalan's avatar John Punzalan

Remove responsiveness on 1280px width

parent 4fbb9b24
...@@ -278,6 +278,13 @@ footer { ...@@ -278,6 +278,13 @@ footer {
#logo a { #logo a {
color: #0e0e0e; 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 { .nav li.homepage-link {
width: 30%; width: 30%;
} }
...@@ -285,6 +292,11 @@ footer { ...@@ -285,6 +292,11 @@ footer {
padding-right: 0; padding-right: 0;
} }
.nav li a { .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; color: #0e0e0e;
font-family: 'Montserrat'; font-family: 'Montserrat';
} }
...@@ -373,3 +385,15 @@ footer { ...@@ -373,3 +385,15 @@ footer {
.lang-sel .active { .lang-sel .active {
text-decoration: underline; 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 { ...@@ -59,6 +59,12 @@ footer {
.nav { .nav {
li { 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 { &.homepage-link {
width: 30%; width: 30%;
} }
...@@ -71,6 +77,12 @@ footer { ...@@ -71,6 +77,12 @@ footer {
a { 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 { &:first-child {
padding-left: 0; padding-left: 0;
} }
...@@ -185,4 +197,18 @@ footer { ...@@ -185,4 +197,18 @@ footer {
.active { .active {
text-decoration: underline; 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