-
Notifications
You must be signed in to change notification settings - Fork 0
/
film.css
97 lines (82 loc) · 1.15 KB
/
film.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
article {
width: 1000px;
height: 1000px;
margin: auto;
background-color: #999;
}
header {
width: 100%;
height: 100px;
text-align: center;
background-color: #333;
color: white;
text-shadow: 2px 2px 2px #999;
font-size: 25px;
}
header h1 {
margin: 0;
padding-top: 18px;
}
footer {
width: 100%;
height: 100px;
text-align: center;
position: relative;
background-color: black;
color: white;
}
footer p {
position: absolute;
bottom: 0;
width: 100%;
}
.film-img {
width: 440px;
height: 600px;
float: left;
margin: 30px;
}
.film-info {
width: 440px;
height: 600px;
float: right;
margin: 30px;
}
.film-info h2 {
font-size: 30px;
}
.film-sinopsis {
font-size: 18px;
}
.film-sinopsis a {
text-decoration: none;
color: blue;
}
.film-sinopsis a:hover {
text-decoration: none;
color: green;
}
.film-sinopsis a:active {
text-decoration: underline;
color: green;
}
aside {
width: 940px;
height: 300px;
clear: both;
margin: 30px;
}
.production {
float: left;
margin-top: 0;
}
.production-list{
margin-left: 75px;
}
.related-movies-list li{
display: inline;
margin-right: 20px;
}
.related-movies-list li:before {
content: "- ";
}