-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectorTemas.php
More file actions
executable file
·34 lines (33 loc) · 1.1 KB
/
SelectorTemas.php
File metadata and controls
executable file
·34 lines (33 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!-- SELECTOR DE TEMAS -->
<div id="switcher">
<div class="switcher box-color dark-white text-color" id="sw-theme">
<a href ui-toggle-class="active" target="#sw-theme" class="box-color dark-white text-color sw-btn">
<i class="fa fa-gear"></i>
</a>
<div class="box-header">
<h2>Temas</h2>
</div>
<div class="box-divider"></div>
<div class="box-body">
<div data-target="bg" class="row no-gutter text-u-c text-center _600 clearfix">
<label class="p-a col-sm-6 light pointer m-0">
<input type="radio" name="theme" value="" hidden>
Light
</label>
<label class="p-a col-sm-6 grey pointer m-0">
<input type="radio" name="theme" value="grey" hidden>
Grey
</label>
<label class="p-a col-sm-6 dark pointer m-0">
<input type="radio" name="theme" value="dark" hidden>
Dark
</label>
<label class="p-a col-sm-6 black pointer m-0">
<input type="radio" name="theme" value="black" hidden>
Black
</label>
</div>
</div>
</div>
</div>
<!-- / -->