-
Notifications
You must be signed in to change notification settings - Fork 0
/
movie.css
105 lines (97 loc) · 1.93 KB
/
movie.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
body{
background-image:url("background.png");
background-repeat: repeat;
}
h1{
text-align: center;
font-family: Tahoma Verdana sans-serif;
font-size: 24pt;
font-weight: bold;
text-shadow: 3px 3px #999999;
}
div.banner{
background-image: url("bannerbg.png");
background-repeat: repeat-x;
text-align: center;
}
div.grid-container{
display: grid;
grid-template-areas:
'top-header left-comment'
'comment left-comment'
'footer footer';
width: 800px;
border-radius: 20px;
border: 4px gray solid;
margin: 0 auto;
overflow: hidden;
}
div.header{
grid-area:top-header;
display: inline;
width: 550px;
background-image: url("rbg.png");
background-repeat: repeat-x;
border-radius: 20px 0px 0px 0px;
}
div.overview{
grid-area:left-comment;
width: 250px;
background-color: #A2B964;
font-family: Arial sans-serif;
font-size: 8pt;
padding-right: 5px;
padding-top: 0px;
}
div.comment-area{
grid-area: comment;
display: grid;
grid-template-columns:repeat(2,1fr);
grid-column-gap: 11px;
width: 540px;
margin-top:0px;
margin-left: 5px;
padding:0px;
}
div.footer-area{
grid-area: footer;
background-color: #A2B964;
text-align: center;
padding: 0px;
}
dt{
font-weight: bold;
font-family: Arial sans-serif;
font-size: 8pt;
line-height: 10pt;
padding: 5px;
}
p.box{
font-family: Tahoma Verdana sans-serif;
font-size: 10pt;
font-weight: bold;
background-color: #E8DC9B;
border-radius: 10px 10px 10px 10px;
border: gray solid 2px;
padding: 6px;
}
span.percent{
font-size: 48pt;
color: red;
font-weight: bold;
vertical-align: top;
}
.comment-area .box img{
float:left;
margin-right: 2px;
}
img.pictures{
float:left;
margin-right: 2px;
}
div.validator-position{
opacity: 50%;
position:fixed;
bottom: 0px;
right: 0px;
}