Add Maroon style
This commit is contained in:
74
res/template/widgets.html
Normal file
74
res/template/widgets.html
Normal file
@@ -0,0 +1,74 @@
|
||||
{{define "widgets"}}
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{{template "meta_tags" "Widget showcase"}}
|
||||
{{template "user_style" .}}
|
||||
<script type="text/javascript">var apiEndpoint = '{{.APIEndpoint}}';</script>
|
||||
</head>
|
||||
<body>
|
||||
<img id="header_image" class="header_image" src="/res/img/header_neuropol.png" alt="Header image"/>
|
||||
<br/>
|
||||
<div id="body" class="body">
|
||||
{{template "menu" .}}
|
||||
|
||||
<h1>Widget showcase</h1>
|
||||
<h2>Size 2 header</h2>
|
||||
<h3>Size 3 header</h3>
|
||||
<h4>Size 4 header</h4>
|
||||
<h5>Size 5 header</h5>
|
||||
<h6>Size 6 header</h6>
|
||||
|
||||
<div class="highlight_light border_top">Light highlight</div>
|
||||
<div class="highlight_middle">Middle highlight</div>
|
||||
<div class="highlight_dark border_bottom">Dark highlight</div>
|
||||
<br/>
|
||||
<div class="highlight_light border_bottom border_top">Light highlight with borders</div>
|
||||
<div class="highlight_middle border_bottom border_top">Middle highlight with borders</div>
|
||||
<div class="highlight_dark border_bottom border_top">Dark highlight with borders</div>
|
||||
<br/>
|
||||
Link <a href="#">A link to someplace</a>.
|
||||
<hr/>
|
||||
Buttons <button>Regular ol' button!</button>
|
||||
Width indicator
|
||||
<button class="button_highlight">Important button!</button>
|
||||
Width indicator
|
||||
<button class="button_red">Dangerous button!</button>
|
||||
<hr/>
|
||||
Textarea <textarea>Hello!</textarea>
|
||||
<hr/>
|
||||
Checkbox <input type="checkbox"/>
|
||||
<hr/>
|
||||
Radio
|
||||
<input name="radioform" type="radio"/>
|
||||
<input name="radioform" type="radio"/>
|
||||
<hr/>
|
||||
Text field <input type="text"/>
|
||||
<hr/>
|
||||
Password <input type="password"/>
|
||||
<hr/>
|
||||
Number <input type="number"/>
|
||||
<hr/>
|
||||
Select
|
||||
<select name="select">
|
||||
<option>cherry</option>
|
||||
<option>orange</option>
|
||||
<option>apple</option>
|
||||
</select>
|
||||
<hr/>
|
||||
Select2 <select name="select2" size="3">
|
||||
<option>cherry</option>
|
||||
<option>orange</option>
|
||||
<option>apple</option>
|
||||
</select>
|
||||
<hr/>
|
||||
File <input type="file" name="file">
|
||||
<hr/>
|
||||
Color <input type="color" name="favcolor" value="#ff0000">
|
||||
|
||||
<br/>
|
||||
{{template "footer"}}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
{{end}}
|
Reference in New Issue
Block a user