forked from QAZIMAAZARSHAD/Movie-Streaming-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cards.css
136 lines (123 loc) · 2.2 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
*{
font-family: 'Ubuntu', sans-serif;
}
.poster, .movie_card {
box-shadow: 0 0 10px red !important;
}
.flip-card_i{
position: relative;
background-color: transparent;
width: 250px;
height: 360px;
perspective: 1000px;
cursor: default;
}
@media only screen and (max-width: 298px) {
.flip-card_i{
width: 200px;
height: 400px;
}
.flip-card-back_i{
width: 200px !important;
height: 400px !important;
}
.flip-card_i img {
height: 400px !important;
width: 200px !important;
}
.flip-card-back_i h1 {
font-size: 32px;
}
}
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);
cursor: default;
}
.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;
}
.b4_i{
margin-bottom: 2px;;
width: 90px;
height: 35px;
margin-top: auto;
border:none;
border:solid 2px white;
border-radius: 5px;
background-color: #e7e7e7;
color: black;
font-size: 1em;
}
.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;
margin-bottom: 5px;
}
.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;
}
.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);
cursor: default;
}