Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
some-ori
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
John
some-ori
Commits
e3f3f258
Commit
e3f3f258
authored
Mar 17, 2017
by
John Punzalan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove responsiveness on 1280px width
parent
4fbb9b24
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
0 deletions
+50
-0
someori.css
wp-content/themes/someori/library/css/someori.css
+24
-0
someori.less
wp-content/themes/someori/library/less/someori.less
+26
-0
No files found.
wp-content/themes/someori/library/css/someori.css
View file @
e3f3f258
...
...
@@ -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
;
}
}
wp-content/themes/someori/library/less/someori.less
View file @
e3f3f258
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment