-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
137 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
@media only screen and (max-width: 800px) { | ||
.menu{ | ||
width: 100px; | ||
height: auto; | ||
top: 27px; | ||
border: none; | ||
|
||
.hamburger{ | ||
display: block; | ||
background-image: url("../_img/hamburger.svg"); | ||
width: 32px; | ||
height: 27px; | ||
background-size: 24px 24px; | ||
background-repeat: no-repeat; | ||
background-position: center center; | ||
position: absolute; | ||
top: -27px; | ||
} | ||
|
||
a.main{ | ||
display: none; | ||
font-size: 13px; | ||
border: 1px solid black; | ||
border-bottom: none; | ||
padding: 2px 10px; | ||
|
||
&:last-child{ | ||
border-bottom: 1px solid black; | ||
} | ||
|
||
.sub{ | ||
left: 100px; | ||
top: 0; | ||
|
||
a{ | ||
font-size: 13px; | ||
border-bottom: 1px solid rgba(0, 0, 0, 0.4); | ||
padding: 2px 20px 2px 10px; | ||
|
||
&:last-child{ | ||
border-bottom: none; | ||
} | ||
|
||
&.wide{ | ||
padding: 2px 80px 2px 10px; | ||
} | ||
|
||
&.ultrawide{ | ||
padding: 2px 100px 2px 10px | ||
} | ||
} | ||
} | ||
} | ||
|
||
|
||
&.active{ | ||
a.main{ | ||
display: block; | ||
} | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters