"notes"
Bootstrap 3.3.0 Snippet by MTaqi

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
<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 ---------->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container bootstrap snippet">
<div class="row">
<ul class="notes">
<li>
<div class="rotate-1 lazur-bg">
<small>12:03:28 12-04-2014</small>
<h4>Awesome title</h4>
<p>The years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
<a href="#" class="text-danger pull-right"><i class="fa fa-trash-o "></i></a>
</div>
</li>
<li>
<div class="rotate-2 red-bg">
<small>12:03:28 12-04-2014</small>
<h4>Awesome date</h4>
<p>The years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
<a href="#" class="text-danger pull-right"><i class="fa fa-trash-o "></i></a>
</div>
</li>
<li>
<div class="rotate-1 yellow-bg">
<small>12:03:28 12-04-2014</small>
<h4>Awesome project</h4>
<p>The years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
<a href="#" class="text-danger pull-right"><i class="fa fa-trash-o "></i></a>
</div>
</li>
</ul>
</div>
</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
body{margin-top:20px;}
ul.notes li {
margin: 10px 40px 50px 0px;
float: left;
}
ul.notes li, ul.tag-list li {
list-style: none;
}
ul.notes li div small {
position: absolute;
top: 5px;
right: 5px;
font-size: 10px;
}
div.rotate-1 {
-webkit-transform: rotate(-6deg);
-o-transform: rotate(-6deg);
-moz-transform: rotate(-6deg);
}
div.rotate-2 {
-o-transform: rotate(4deg);
-webkit-transform: rotate(4deg);
-moz-transform: rotate(4deg);
position: relative;
top: 5px;
}
.lazur-bg {
background-color: #23c6c8;
color: #ffffff;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: