-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (59 loc) · 923 Bytes
/
style.css
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
body {
margin: 50px;
font-family: arial;
background-color: #666;
}
.container {
width: 900px;
margin: auto;
}
.card {
display: inline-block;
width: 220px;
padding: 0 80px;
height: 80px;
font-size: 16px;
line-height: 80px;
border-radius: 40px;
background-color: #f1f1f1;
margin: 20px;
position: relative;
text-align: center;
}
.card img {
float: left;
margin: 0 10px 0 -80px;
height: 80px;
width: 80px;
border-radius: 50%;
position: relative;
}
.card .nama,
.card .telp {
display: block;
line-height: 20px;
padding: 0 5px;
}
.card .nama {
margin-left: 20px;
margin-top: 20px;
font-size: 20px;
}
.card .telp {
margin-left: 20px;
margin-top: 5px;
font-size: 16px;
color: #aaa;
}
.card .close {
font-size: 24px;
font-weight: bold;
color: #999;
position: absolute;
top: 0;
right: 30px;
cursor: pointer;
}
.card:hover .close {
color: red;
}