-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainStyle.css
More file actions
52 lines (48 loc) · 799 Bytes
/
Copy pathmainStyle.css
File metadata and controls
52 lines (48 loc) · 799 Bytes
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
body{
padding: 0px;
margin: 0px;
background-image: url("../images/spiration-light.png");
font-family: Arial;
color: white;
}
.movieSec{
padding-top: 15px;
}
.mrow{
overflow: none;
margin-left: 11.4%;
}
.mbox{
border: 1px red solid;
width: 160px;
height: 250px;
float: left;
padding: 4px;
}
.mimg{
height: 80%;
overflow: hidden;
}
.mimg img{
height: 100%;
width: 100%;
}
.mimg img:hover{
transform: scale(1.1);
transition: 0.7s;
}
.minfo{
height: 20%;
border: 1px blue solid;
}
.mname{
color: black;
font-family: Arial;
text-align: center;
}
.mtype{
color: green;
font-family: Arial;
text-align: center;
padding-top: 4px;
}