"CSS Bookmark Ribbon"
Bootstrap 3.3.0 Snippet by srapsware

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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="container">
<div class="row">
<div class="box">
<div class="ribbon">
<div class="border-ribbon"></div>
<a href="#" class="fa fa-user"></a>
</div>
</div>
</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
@font-face {
font-family: 'uiconsBusinessFinance';
src: url('http://www.tabataruiz.com.br/exemplos_html/fonts/Uicons_Business_and_Finance.ttf') format('truetype');
}
.box {
position: relative;
margin-top: 40px;
margin-left: 40%;
height: 220px;
width: 180px;
border: solid 1px #BCBCBC;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
background-color: #f8f8f8;
background-image: -moz-linear-gradient(top, #fefefe, #f0f0f0);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f0f0f0));
background-image: -webkit-linear-gradient(top, #fefefe, #f0f0f0);
background-image: -o-linear-gradient(top, #fefefe, #f0f0f0);
background-image: linear-gradient(to bottom, #fefefe, #f0f0f0);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff0f0f0', GradientType=0);
}
.box:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 180px;
height: 4px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
z-index: -1;
}
.ribbon {
position: absolute;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: