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
<?php | |
include '../vendor/autoload.php'; | |
?><html> | |
<header> | |
<link href="bootstrap.min.css" /> | |
</header> | |
<body> | |
<div class="container"> |
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
<?php | |
# file: container.php | |
use Rubricate\Element\CreateElement; | |
use Rubricate\Element\StrElement; | |
$div = new CreateElement('div'); | |
$row = new RowGridHelper(); |
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
<?php | |
# file: RowGridHelper.php | |
class RowGridHelper extends Rubricate\Grid\AbstractRowGrid | |
{ | |
private $row = 'row'; | |
private $col = 'col-%s'; | |
protected function getRow() |
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="row"> | |
<div class="gr gr_12">12</div> | |
</div> | |
<div class="row"> | |
<div class="gr gr_1">1</div> | |
<div class="gr gr_1">1</div> | |
<div class="gr gr_1">1</div> | |
<div class="gr gr_1">1</div> | |
<div class="gr gr_1">1</div> |
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
<ul class="mn_y mn_prm"> | |
<li> | |
<input id="group-1-prm" type="checkbox" hidden /> | |
<label for="group-1-prm">Lorem</label> | |
<ul> | |
<li><a href="#">1.lorem</a></li> | |
<li><a href="#">2.lorem</a></li> | |
<li><a href="#">3.lorem</a></li> | |
</ul> | |
</li> |
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="expand bg_prm"> | |
<div class="container"> | |
<input type="checkbox" id="mn_x_bt" /> | |
<label for="mn_x_bt">☰</label> | |
<div class="mn_x mn_prm"> | |
<ul> | |
<li><a href="#">Dobok CSS</a></li> | |
<li> | |
<a href="#">Products</a> |
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
<!-- | |
<table class="... tb_fluid"> | |
... | |
<tr> | |
<td colname="#">1</td> | |
<td colname="Name">John</td> | |
<td colname="Occupation">Engineer</td> | |
<td colname="User">@john</td> | |
</tr> |
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
<button class="bt bd bd_prm bt_hv_prm">Primary</button> | |
<button class="bt bd bd_scn bt_hv_scn">Secondary</button> | |
<button class="bt bd bd_stn bt_hv_stn">Standard</button> | |
<button class="bt bt_hv_prm tx_prm">Primary</button> | |
<button class="bt bt_hv_scn tx_scn">Secondary</button> | |
<button class="bt bt_hv_stn">Standard</button> |
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
<button class="bt bt_prm">Primary</button> | |
<button class="bt bt_scn">Secondary</button> | |
<button class="bt bt_lgh">Light</button> | |
<button class="bt bt_stn">Standard</button> | |
<button class="bt">Raw</button> | |
<a class="bt bt_stn">Anchor</a> | |
<div class="bt bt_stn">Div</div> | |
<span class="bt bt_stn">Span</span> | |
<input type="submit" class="bt bt_stn" value="Type Submit"/> |
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="expand bg_prm"> | |
<div class="container"> | |
<input type="checkbox" id="nv_bar_bt" /> | |
<label for="nv_bar_bt">☰</label> | |
<div class="nv_bar nv_prm"> | |
<ul> | |
<li><a href="#">Dobok CSS</a></li> | |
<li> | |
<a href="#">Products</a> | |
<ul> |