"mobile"
Bootstrap 3.3.0 Snippet by evarevirus

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 ---------->
<div class="container">
<div class="card">
<div class="header">
<i class="material-icons md-48">menu</i>
<div class="details">
<h3>alexandra smith</h3>
<span>designer, nyc</span>
</div>
<div class="notification"><span>3</span></div>
</div>
<div class="card-container">
<div class="profile-card">
<div class="profile-card__image">
<img src="http://unsplash.it/200/200" alt="" />
</div>
<div class="profile-details">
<div class="numbers">
<div class="follower">
<div>763</div>
<div>Followers</div>
</div>
<div class="travels">
<div>26</div>
<div>Travels</div>
</div>
</div>
<button>+ Follow</button>
</div>
</div>
<label class="pinned-trip__label">Pinned trip</label>
<div class="pinned-trip">
<div class="pinned-trip__photographs">
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
* {
box-sizing: border-box;
}
::-webkit-scrollbar {
display: none;
}
body {
margin: 0;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
height: 100vh;
font-family: Roboto;
}
.container {
display: flex;
align-items: center;
justify-content: space-around;
width: 100vw;
height: 100vh;
background-color: #fecfc1;
}
.card {
background: linear-gradient(to bottom, #fb6b55 31%, #F8F8FA 0%);
width: 425px;
height: 780px;
border-radius: 8px;
display: flex;
flex-direction: column;
align-items: center;
}
.card .header {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: