-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard.css
More file actions
99 lines (81 loc) · 1.11 KB
/
card.css
File metadata and controls
99 lines (81 loc) · 1.11 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
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
*
{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body
{
background: #2d2d2f;
}
.card
{
width: 300px;
height: 400px;
box-shadow: 0 0 20px rgba(0,0,0,.9);
background: #fff;
left: 50%;
top: 50%;
position: absolute;
transform: translate(-50%,-50%);
border-radius: 10px;
transition: 1s;
}
.content
{
position: absolute;
width: 100%;
height: 100%;
text-align: center;
}
.content div
{
margin-top: 80%;
}
.content h3
{
letter-spacing: 10px;
color: #000;
}
.content ul
{
list-style: none;
margin-top: 20px;
}
.content ul li
{
display: inline-block;
padding: 10px;
}
.content ul li a
{
font-size: 30px;
color: #000;
transition: 1s;
}
i.fa:hover
{
cursor: pointer;
color: #ADFF2F;
transform: scale(1.3);
transition: 1s;
}
.image
{
position: absolute;
width: 100%;
height: 100%;
transition: 1s;
}
.iamge img
{
position: absolute;
width: 100%;
height: 100%;
border-radius: 10px;
}
.card:hover .image
{
transform: scale(0.6) translateY(-200px);
box-shadow: 0 0 20px rgba(0,0,0,.7);
}