"Clean UI Components"
Bootstrap 3.3.0 Snippet by gbg933

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="margin">
<h2>Created with <i class="ion-ios-heart-outline"></i> by <a href="http://twitter.com/AlexMahrt" target="_blank">@AlexMahrt</a> </h2>
<br>
<a class="btn-clean" href="#">
Awesome Button <i class="ion-ios-unlocked-outline"></i>
</a>
</div>
<div class="margin">
<div class="button-group clean">
<a class="btn-clean button-dropdown" href="#" data-toggle="dropdown">
Awesome Dropdown <i class="ion-ios-arrow-down"></i>
</a>
<ul class="dropdown-menu clean">
<li><a href="#">Dropdown Item</a></li>
<li><a href="#">Dropdown Item</a></li>
<li class="divider"></li>
<li><a href="#">Dropdown Item</a></li>
<li><a href="#">Dropdown Item</a></li>
</ul>
</div>
</div>
<div class="margin">
<input type="text" class="form-input" placeholder="Some cool text input..">
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
@import url('http://fonts.googleapis.com/css?family=Raleway:400,200');
@import url('http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css');
html {
background: #ffffff;
width: 100%;
width: 100vw;
height: 100%;
height: 100vh;
font-family: 'Raleway', sans-serif;
}
body {
padding: 5%;
text-align: center;
}
div.margin {
margin-bottom: 1.5em;
}
/* Text Input */
.form-input {
background: #fafafa;
border: 1px solid #bfbfbf;
border-radius: 2px;
padding: 12px 16px;
min-width: 25%;
}
/*
.btn-clean {
display: inline-block;
padding: 12px 16px;
background: #fafafa;
border: 1px solid #bfbfbf;
border-radius: 2px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: