-
Notifications
You must be signed in to change notification settings - Fork 0
/
vlc.css
86 lines (70 loc) · 1.08 KB
/
vlc.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
@import 'vlc-menu.css';
body {
margin: 0;
padding: 0;
height: 100%;
}
h1 {
text-align: center;
}
#main_body {
width: 100%;
postion: absolute;
top: 1.5em;
height: calc(100vh - 1.5em - 21px);
background: linear-gradient(to right, #999 0%, white 25%);
overflow: hidden;
}
#main_frame {
width: 100%;
height: 100%;
border: 0;
margin: 10px;
overflow: auto;
}
#main_title {
text-align: center;
font-weight: bold;
}
#attribution {
text-align: center;
font-style: italic;
}
.vlc_footer {
position: absolute;
bottom: 0;
height: 21px;
width: 100%;
overflow: hidden;
background-color: #EEE;
}
.vlc_footer div {
vertical-align: middle;
text-align: center;
color: #999;
font-size: 10pt;
}
.table_wrapper {
border: 0;
display: table;
}
.table_wrapper div {
display: table-row;
}
.table_wrapper div div {
display: table-cell;
}
.table_row_title {
text-align: right;
padding-right: 5px;
font-style: italic;
}
.table_row_title::after {
content: ':';
}
.table_row_content {
text-align: left;
}
.prod_description {
padding-top: 0.5em;
}