I was building a very simple Mega menu style nav for my client. It was designed for a fixed-width page but I think it's possible to make it responsive by replacing menu columns with fluid and span#.
A Pen by Mathieu Richard on CodePen.
This file contains hidden or 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
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-12"> | |
| <h1><strong>Bootstrap - Microsoft Metro Tiles</strong></h1> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-4"> | |
| <div class="tile purple"> | |
| <h3 class="title">Purple Tile</h3> |
This file contains hidden or 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
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-12"> | |
| <h1><strong>Bootstrap - Microsoft Metro Tiles</strong></h1> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-4"> | |
| <div class="tile purple"> | |
| <h3 class="title">Purple Tile</h3> |
This file contains hidden or 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
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-12"> | |
| <h1><strong>Bootstrap - Microsoft Metro Tiles</strong></h1> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-4"> | |
| <div class="tile purple"> | |
| <h3 class="title">Purple Tile</h3> |
This file contains hidden or 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
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-12"> | |
| <h1><strong>Bootstrap - Microsoft Metro Tiles</strong></h1> | |
| </div> | |
| </div> | |
| <div class="row"> | |
| <div class="col-sm-4"> | |
| <div class="tile purple"> | |
| <h3 class="title">Purple Tile</h3> |
This file contains hidden or 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
| $color_purple: #5133AB; | |
| $color_red: #AC193D; | |
| $color_orange: #DC572E; | |
| $color_green: #00A600; | |
| $color_blue: #2672EC; | |
| // colors from http://www.creepyed.com/2012/09/windows-8-colors-hex-code/ | |
| $base_font_size: 14px; | |
| $base_line_height: 1.5em; |