-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WDSUS-2 - Add basic styling for header, menum, and footer
- Loading branch information
Showing
6 changed files
with
64 additions
and
26 deletions.
There are no files selected for viewing
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,18 @@ | ||
//-------------------------------------------------------------- | ||
// Global Site Footer | ||
//-------------------------------------------------------------- | ||
.site-footer { | ||
@apply flex p-10 flex-nowrap justify-center items-center bottom-0; | ||
|
||
.site-info { | ||
@apply text-center; | ||
|
||
.custom-logo { | ||
@apply max-h-12 w-auto; | ||
} | ||
|
||
p { | ||
@apply text-xs; | ||
} | ||
} | ||
} |
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,21 @@ | ||
//-------------------------------------------------------------- | ||
// Global Site Header | ||
//-------------------------------------------------------------- | ||
.site-header { | ||
@apply flex px-10 py-4 flex-nowrap justify-between items-center; | ||
|
||
.site-header-content { | ||
@apply m-0; | ||
|
||
.site-branding { | ||
@apply flex-auto; | ||
a { | ||
@apply no-underline; | ||
|
||
.custom-logo { | ||
@apply w-auto max-h-14; | ||
} | ||
} | ||
} | ||
} | ||
} |
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,19 @@ | ||
//-------------------------------------------------------------- | ||
// Menus and Sub-Menus | ||
// Cool. | ||
//-------------------------------------------------------------- | ||
.navigation-menu { | ||
.menu { | ||
@apply flex list-none; | ||
|
||
> li { | ||
a { | ||
@apply hover:underline; | ||
} | ||
|
||
&:not( :last-child ) { | ||
@apply mr-4; | ||
} | ||
} | ||
} | ||
} |
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