-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVicmarI.css
100 lines (89 loc) · 1.48 KB
/
VicmarI.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
html {
/*overflow-y: scroll;*/
}
body
{
float:none;
overflow:auto;
background:#c0cdcf;
}
h1,h2,p,a,ul
{
/*font-style:italic;*/
font-weight:normal;
text-decoration:none;
margin:0px;
padding:0px;
color:#43525f;
font-family: Georgia;
transition:color 0.2s;
-webkit-transition:color 0.2s; /* Safari */
}
a
{
color:#fff;
}
h1
{
text-align:center;
line-height:80pt;
font-size: 80pt;
}
h2
{
font-size:16pt;
text-align:center;
}
p
{
margin:40px 0px;
font-size:12pt;
}
#slide1_controls span, p {
margin:0;
}
#controls{
z-index:101;
position:fixed;
top:30px;
vertical-align:center;
}
#slide1_controls
{
}
#slide1_controls span, a {
cursor:pointer;
}
#slide1_container
{
/*left:100%;
position:absolute;*/
-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:#c0cdcf;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
#main
{
z-index:100;
position:absolute;
background:#c0cdcf;
overflow-y:auto;
text-align:justify;
-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 p
{
margin:20px 20%;
}