forked from QAZIMAAZARSHAD/Movie-Streaming-Website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcards.css
89 lines (84 loc) · 1.47 KB
/
cards.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
87
88
89
.flip-card_i{
position: relative;
background-color: transparent;
width: 250px;
height: 360px;
perspective: 1000px;
}
h1{
font-size: 45px;
}
.flip-card-inner_i {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.flip-card_i:hover .flip-card-inner_i {
transform: rotateY(180deg);
}
.btn_i{
width: 50px;
height: 35px;
border:none;
border:solid 2px grey;
border-radius: 5px;
background: rgba(255, 255, 255,0);
font-size: 1em;
}
.b1_i{
margin-left: 5px;
margin-right: 5px;
}
.b2_i{
margin-left: 10px;
margin-right: 10px;
}
.b3_i{
margin-left: 10px;
margin-right: 5px;
}
.trailer_i{
width: 90px;
height: 35px;
margin-top: auto;
border:none;
border:solid 2px white;
border-radius: 5px;
{background-color: #e7e7e7; color: black;}
font-size: 1em;
}
.para_i{
font-size: 0.8em;
}
.flip-card-front_i, .flip-card-back_i {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.form-group1_i {
float:left;
}
.form-group2_i{
float: none;
float:
}
.form-group3_i {
float:right;
}
.flip-card-front_i {
background-color: #bbb;
color: black;
}
.flip-card-back_i {
width: 250px;
height: 360px;
background-image: linear-gradient(black,#8B0000);
color: white;
transform: rotateY(180deg);
}