-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcard.html
142 lines (138 loc) · 5.09 KB
/
card.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Slack Redesign - Cards</title>
<link rel="stylesheet" href="css/all.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="main-area">
<div class="centered">
<section class="cards">
<article class="card">
<picture class="thumbnail">
<img
src="images/user6.jpg"
alt="A banana that looks like a bird"
/>
</picture>
<div class="card-content">
<div class="user-detail">
<h2 class="user-name">
Jenine Avedon <i class="fas fa-circle"></i>
</h2>
<small class="user-title">Project Manager </small>
</div>
<div class="last-online">
<p class="local-time">Local time <span>1:53pm</span></p>
</div>
<div class="footer-bottons">
<button class="btn btn-bottons">Message</button>
<button class="btn btn-bottons btn-padding-lg">Call</button>
</div>
</div>
<!-- .card-content -->
</article>
<!-- .card -->
<article class="card">
<picture class="thumbnail">
<img src="images/user2.jpg" alt="Norwegian boller" />
</picture>
<div class="card-content">
<div class="user-detail">
<h2 class="user-name">
Jenine Avedon <i class="fas fa-circle"></i>
</h2>
<small class="user-title">Project Manager </small>
</div>
<div class="last-online">
<p class="local-time">Local time <span>1:53pm</span></p>
</div>
<div class="footer-bottons">
<button class="btn btn-bottons">Message</button>
<button class="btn btn-bottons btn-padding-lg">Call</button>
</div>
</div>
<!-- .card-content -->
</article>
<!-- .card -->
<article class="card">
<picture class="thumbnail">
<img
src="images/user3.jpg"
alt="A dinosaur wearing an aluminium jacket"
/>
</picture>
<div class="card-content">
<div class="user-detail">
<h2 class="user-name">
Jenine Avedon <i class="fas fa-circle"></i>
</h2>
<small class="user-title">Project Manager </small>
</div>
<div class="last-online">
<p class="local-time">Local time <span>1:53pm</span></p>
</div>
<div class="footer-bottons">
<button class="btn btn-bottons">Message</button>
<button class="btn btn-bottons btn-padding-lg">Call</button>
</div>
</div>
<!-- .card-content -->
</article>
<!-- .card -->
<article class="card">
<picture class="thumbnail">
<img src="images/user4.jpg" alt="Chocolate filled boller" />
</picture>
<div class="card-content">
<div class="user-detail">
<h2 class="user-name">
Jenine Avedon <i class="fas fa-circle"></i>
</h2>
<small class="user-title">Project Manager </small>
</div>
<div class="last-online">
<p class="local-time">Local time <span>1:53pm</span></p>
</div>
<div class="footer-bottons">
<button class="btn btn-bottons">Message</button>
<button class="btn btn-bottons btn-padding-lg">Call</button>
</div>
</div>
<!-- .card-content -->
</article>
<!-- .card -->
<article class="card">
<picture class="thumbnail">
<img src="images/user1.jpg" alt="Playing Jenga with pool cues" />
</picture>
<div class="card-content">
<div class="user-detail">
<h2 class="user-name">
Jenine Avedon <i class="fas fa-circle"></i>
</h2>
<small class="user-title">Project Manager </small>
</div>
<div class="last-online">
<p class="local-time">Local time <span>1:53pm</span></p>
</div>
<div class="footer-bottons">
<button class="btn btn-bottons">Message</button>
<button class="btn btn-bottons btn-padding-lg">Call</button>
</div>
</div>
<!-- .card-content -->
</article>
<!-- .card -->
</section>
<!-- .cards -->
</div>
<!-- .centered -->
</main>
<!-- partial -->
</body>
</html>