-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCard2
More file actions
66 lines (59 loc) · 1.39 KB
/
Copy pathCard2
File metadata and controls
66 lines (59 loc) · 1.39 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css" media="all">
body {
padding: 50% 0 0 0;
}
.card {
display: flex;
border-radius: 8px;
max-width: 400px;
background: #ddd;
padding: 24px;
font-size: 15px;
text-decoration: none;
box-shadow: 3px 3px 10px #eee;
}
@media (max-width: 400px) {
}
p {
margin: 0;
}
.img div {
width: 80px;
height: 80px;
background: yellow;
border-radius: 50%;
margin-right: 24px;
}
.title{
margin-top: 0;
font-size: 1.4em;
}
.des {
line-height: 1.5;
margin-bottom: 0;
}
.des:last-child{
/* margin-bottom: 0; */
color: yellow;
}
</style>
<title></title>
</head>
<body>
<a href="#" class="card">
<div class="img">
<div>
</div>
</div>
<div class="text">
<p class="title">title</p>
<p class="des">sjjdjdjsj djdjsj djsjjsj djsjsj jj jn kkk bbj jjj jjjj jjj sjjs sjjsnd sjsjjs djdjdjdj dnndndj hhh vggg hhhhh bhh jjj jjj jj jj djej</p>
</div>
</a>
</body>
</html>