"Manage Invitation vouchers List"
Bootstrap 3.2.0 Snippet by nimesh049

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="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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="manage-invitation-section">
<div class="row">
<p>Du hast <span>4</span>Einladungen geschickt</p>
<div class="col-md-12 vouchers-listing">
<ul class="list-unstyled">
<li class="row">
<div class="col-md-2 customer-name">
<label>
Kristen Glockner
</label>
</div>
<div class="col-md-4 customer-mail-address">
<p>KristenGlocjkner@teleworms.us</p>
<span>Gesendet am 07.06.2017</span>
</div>
<div class="col-md-4 vouchers-details">
<span>voucher redeemed </span>
<a href="javascript:void(0)" title="voucher">
<img src="#" alt="voucher-icon"/>
</a>
<p class="expiry-info">
Expiry on
<span>10 Aug 2017</span>
</p>
</div>
<div class="col-md-2 vouchers-acceptance">
<span class="accepted"> AKZEPTIERT </span>
</div>
</li>
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
.vouchers-listing{
padding:0;
padding-top:25px;
}
ul li{
border-top:1px solid #808080;
padding:25px 0 20px 0;
vertical-align:middle;
}
ul li:last-child{
border-bottom:1px solid #808080;
}
.customer-name label{
font-family: Georgia;
color: #010c12;
font-size: 14px;
font-weight: 700;
line-height: 20px;
text-align: left;
width:66px;
}
.customer-mail-address p{
margin:0;
font-family: Georgia;
color: #333333;
font-size: 14px;
font-weight: 700;
text-align: left;
}
.customer-mail-address span{
font-family: Verdana;
color: #333333;
font-size: 13px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: