-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample-ui-elements.html
167 lines (148 loc) · 5.98 KB
/
sample-ui-elements.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A site for the Dutch public sector" />
<title>Rijks-bootstrap</title>
<link rel="stylesheet" href="dist/css/rijks-bootstrap.min.css" />
<link rel="stylesheet" href="dist/fonts/RijksoverheidWebfontsV2_ictu/ro-webfont.css" type="text/css" />
<link rel="stylesheet" href="dist/fonts/font-awesome-4.2.0/css/font-awesome.css" />
<script src="dist/js/rijks-bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="page-wrapper">
<header>
<div class="rijksoverheid-branding">
<a href="./" title="Home">
<img src="dist/images/logo-rijksoverheid.svg" alt="logo Rijksoverheid" />
</a>
</div>
<div class="app-name">
<strong>Rijks-bootstrap</strong> Bootstrap, using the styleguide for the Dutch public sector
</div>
<nav class="main-navigation">
<ul class="sf-menu sf-navbar">
<li id="login"><a href="sample-login.html">Login</a></li>
<li id="horiz" class="current"><a href="ui-elements.html">Ui Elements</a></li>
<li>
<a href="#">Sample menu with Superfish</a>
<ul>
<li> <a href="#">submenu item</a> </li>
<li> <a href="#">long submenu item sets sub width</a> </li>
<li> <a href="#">submenu item</a> </li>
<li> <a href="#">submenu item</a> </li>
</ul>
</li>
</ul>
</nav>
</header>
<main>
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h1>UI Elements</h1>
<h2>Forms</h2>
<div class="into-text">
A sample form
</div>
<form>
<div class="row">
<div class="form-group col-md-6">
<label for="number" class="control-label">Number</label>
<input type="text" class="form-control" id="number" placeholder="12 34 56">
</div>
<div class="form-group col-md-6">
<label for="company" class="control-label">Name</label>
<input type="text" class="form-control" id="company" placeholder="My Company">
</div>
</div>
<div class="row">
<div class="form-group col-md-12">
<label for="sbcode" class="control-label">Sb-code</label>
<input type="text" class="form-control" id="sbcode" placeholder="345 678">
</div>
</div>
<div class="row">
<div class="form-group col-md-4">
<label for="city" class="control-label">City</label>
<input type="text" class="form-control" id="city" placeholder="Amsterdam">
</div>
<div class="form-group col-md-4">
<label for="postalcode" class="control-label">Postal code</label>
<input type="text" class="form-control" id="postalcode" placeholder="1103AA">
</div>
<div class="form-group col-md-4">
<label for="province" class="control-label">Provincie</label>
<input type="text" class="form-control" id="province" placeholder="Noord Holland">
</div>
</div>
<div class="form-group">
<button id="search-button" class="btn btn-primary">Search</button>
</div>
</form>
<h2>Alerts</h2>
<div class="alert alert-warning" role="alert">
<h2>A warning alert</h2>
<p>Everything is okay, just be sure to check something first.</p>
</div>
<div class="alert alert-success" role="alert">
<h2>Succes!</h2>
<p>Everything works.</p>
</div>
<div class="alert alert-info" role="alert">
<h2>Info alert</h2>
<p>Check this information out, but it's not super important.</p>
</div>
<div class="alert alert-danger" role="alert">
<h2>Lorem ipsum alert.</h2>
<p>Use the full red color for the exclamation icon. The body of the warning should be in the lighter shade of
red. <a href="https://www.rijkshuisstijl.nl/huisstijldragers/online-formulieren" target="_blank">Source</a></p>
</div>
<h2>Tables</h2>
<table id="inspectie-tabel" class="table table-hover table-with-background">
<thead>
<tr>
<th>Name</th>
<th>City</th>
<th>Date</th>
<th>Location</th>
<th>Comments</th>
</tr>
</thead>
<tbody>
<tr role="row" tabindex="0">
<td>Cleaning company Ozlem</td>
<td>Amsterdam</td>
<td>03-01-2015</td>
<td>Amsterdam</td>
<td>It just works. </td>
</tr>
<tr role="row" tabindex="0">
<td>Jansen ruimt op</td>
<td>Rotterdam</td>
<td>09-03-2015</td>
<td>Rotterdam</td>
<td>Add .table-condensed to <table> for a cosy padding</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<div class="logo-bottom"></div>
</div>
</div>
</div>
<footer class="container">
<nav role="navigation" class="row">
<ul class="nav-footer">
<li><a href="#" class="alpha">Contact</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Sitemap</a></li>
<li><a href="#" class="omega">Terms and conditions</a></li>
</ul>
</nav>
</footer>
</body>
</html>