-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLiar.css
179 lines (158 loc) · 2.87 KB
/
Liar.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
html {
/*overflow-y: scroll;*/
-webkit-text-size-adjust: none; /* Prevent font scaling in landscape */
}
body
{
float:none;
overflow:auto;
overflow-x:hidden;
background:#a5c5cf;
}
h1,h2,p,a,ul
{
font-style:italic;
font-weight:normal;
text-decoration:none;
margin:0px;
padding:0px;
color:#fff;
font-family: Georgia;
transition:color 0.2s;
-webkit-transition:color 0.2s; /* Safari */
}
h1
{
text-align:center;
line-height:80pt;
font-size: 80pt;
}
h2
{
font-size:16pt;
text-align:center;
}
p
{
margin:40px 0px;
font-size:20pt;
}
#slide1_controls span, p {
margin:0;
}
#controls{
z-index:101;
width:160px;
position:absolute;
vertical-align:center;
height:auto;
}
#slide1_controls
{
}
#slide1_controls span, a {
cursor:pointer;
}
#slide1_container
{
/*left:100%;
position:absolute;*/
display: inline-block;
-webkit-transform:translateX(100%);
transform:translateX(100%);
overflow-y:auto; /* So the sliding bit doesn't stick out. */
overflow-x:hidden;
width:100%;
height:100%;
background:#a5c5cf;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
#slide1_content {
/* This is the bit that moves. It has 4 images, so 4 * 450 = 1800. You could use javascript
to work this out instead by counting images. */
/*min-width:1800px;
width:150%;
*/
-webkit-transition:all 1.0s ease-in-out;
-moz-transition:all 1.0s ease-in-out;
-o-transition:all 1.0s ease-in-out;
transition:all 1.0s ease-in-out;
}
#main
{
z-index:100;
position:absolute;
/*background:rgba(165, 197, 207, 0.62);
overflow-y:auto;*/
text-align:justify;/*
margin:3%;
*/
-webkit-transition:all 1.0s ease-in-out;
-moz-transition:all 1.0s ease-in-out;
-o-transition:all 1.0s ease-in-out;
transition:all 1.0s ease-in-out;
width:50%;
max-width:800px;
}
#float_right
{
position:relative;
float:right;
margin-left:3%;
}
#float_right img
{
}
#video_holder
{
position:absolute;
right:0;
height:100%;
width:44.4%;
z-index:3;
background:transparent;
}
#video_holder img
{
display:block;
z-index:inherit;
height:25%;
display:block;
padding:0% 11%;
padding-top:11%;
}
#text_holder
{
pointer-events: none;
/*z-index:-1;*/
display:none;
position:absolute;
background:#a5c5cf;
/*left:-50%;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
margin-left:-25%;*/
top:50%;
margin:0px 2%;
margin-top:-50px;
width:95%;
height:100px;
}
#text_holder p
{
padding:0px;
margin:0;
color:white;
text-align: center;
vertical-align: middle;
line-height: 100px;
}
@media (min-width: 1400px) {
p
{
font-size = 4vh;
}
}