-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
68 lines (59 loc) · 1.16 KB
/
index.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
/* import google font */
@import url('http://fonts.googleapis.com/css?family=Open+Sans');
/* set google font and body margin */
body {
font-family: 'Open Sans', sans-serif;
margin-top: 18%;
}
/* style for background image */
#title {
background: url('slike/nav_group_bckg.png');
background-repeat:no-repeat;
top: 0px;
background-size:100% 10%;
position: fixed;
}
/* style for menu button */
#leftButton {
top: 1%;
left: 5%;
width: 15%;
height: 8%;
margin: 0px;
z-index: 1;
position: absolute;
position: fixed;
cursor: pointer;
cursor: hand;
}
/* style for subtitle of page */
#subtitle {
top: 10%;
width: 100%;
height: 8%;
position: absolute;
position: fixed;
background-image: url('slike/epg_subtitle_bckg.png');
background-repeat: no-repeat;
background-size: 100% 100%;
z-index: -1;
}
/* style for subtitle text */
#subtitleText {
width: 100%;
height: 100%;
font-size: 70%;
color: #C8C8C8;
text-align: center;
vertical-align: middle;
position: relative;
z-index: 1;
}
/* style for list of programs */
#tvList {
top: 18%;
width: 100%;
position: absolute;
background-color: black;
z-index: -2;
}