-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (72 loc) · 1.32 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
*{
margin:0;
padding:0;
text-decoration: none;
font-family: "Roboto";
}
body {
background: #9A988F;
}
.img-fluid {
height: 100%;
width: 100%;
}
.middle {
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
}
.card {
cursor: pointer;
width: 24rem;
height: 40rem;
}
.front,.back {
width: 100%;
height: 100%;
overflow: hidden;
backface-visibility: hidden;
position: absolute;
transition: transform linear .6s;
}
.front {
background-color: #fff;
transform: perspective(600px) rotateY(0deg);
background-size: cover;
background-position: center;
background-image: url(./photo_2021-06-03_13-57-36.jpg);
}
.back{
background-color: #fff;
transform: perspective(600px) rotateY(180deg);
}
.back-content {
color: #131435;
text-align: center;
width: 100%;
}
.sm {
margin: 1.5em 0;
}
.sm a{
display: inline-flex;
width:2em;
height: 2em;
justify-content: center;
align-items: center;
font-size: 1.5em;
color: #131435;
transition: .4s;
border-radius: 50%;
}
.sm a:hover {
background-color: #131435;
color: #fff;
}
.card:hover > .front {
transform: perspective(600px) rotateY(-180deg);
}
.card:hover > .back {
transform: perspective(600px) rotateY(0deg);
}