-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
150 lines (149 loc) · 2.67 KB
/
stylesheet.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
/*reset */
* {
margin:0px;
padding:0px;
font:Arial, Helvetica, sans-serif;
}
body {
overflow-x: hidden;
max-height:800px;
background-color:#D8BA97;
}
#wrapper {
position: relative;
width:100%;
margin: 0 auto;
border:solid 2px #ffffff;
}
ul{
list-style-type: none;
}
li:hover {
cursor: pointer;
}
/*map elements*/
#map {
/* map setup*/
width:100%;
height:800px; /* 758 for tablet */
border:solid 2px #ffffff;
position:relative;
margin:0 auto;
border:none;
}
#storybox {
/* the story window */
background: #C5715A;
position:absolute;
top:0px;
right:0px;
width:30%;
height:790px; /*748 for tablet*/
overflow-y:scroll;
padding:5px;
}
#storybox h2 {
/* story headline */
padding:0px 10px 0px 10px;
font-family: 'Montserrat', sans-serif;
color: #6D412A;
text-shadow: 2px 2px 0px #FF9979;
font-size: 45px;
font-weight: bold;
text-align:center;
}
#storybox h2::first-letter {
text-transform: uppercase;
}
#storybox h3{
/* second headline for the story */
font-family: 'Montserrat', sans-serif;
color: #6D412A;
text-shadow: 2px 2px 0px #FF9979;
font-size: 20px;
font-weight: bold;
text-align:center;
}
#storybox h4{
/* character headline for the story */
padding: 0px 80px;
text-align: center;
/*font-family: arial;*/
font-family: 'Montserrat', sans-serif;
font-size: 25px;
color: #6D412A;
text-shadow: 2px 2px 0px #FF9979;
}
.charText{
/* character paragraph for the story */
padding: 0px 80px;
font: 1em Verdana, Geneva, sans-serif;
font-weight: 300;
color: #2F2213;
line-height: 1.3em;
margin-bottom: 2em;
word-spacing: 0.2em;
}
#storybox img {
/*story image*/
display: block;
margin: 35px auto;
}
.paraText {
/* story paragraph */
text-align:left;
padding: 0px 40px;
margin-top:20px;
margin-bottom:20px;
font: 1em Verdana, Geneva, sans-serif;
font-weight: 150;
color: #2F2213;
line-height: 1.8em;
margin-bottom: 2em;
word-spacing: 0.2em;
}
#storybox button {
/*story close button */
display:block;
position:fixed;
top:10px;
right:28.5%;
width:24px;
height:24px;
background-image:url(../the_begining/img/close.png);
background-repeat: no-repeat;
border-color:#C5715A;
}
#times {
/* timeline window */
height:130px;
position:fixed;
bottom:5%;
width: 66.9%;
left: 50%;
margin: 0 0 0 -33.45%;
z-index:2;
}
#uptimes {
position:relative;
height:30px;
}
#slider{
position:relative;
}
#slider span{
background-size:40px;
background-image:url(../the_begining/img/finger.png);
}
#uptimes img {
position:absolute;
top:0px;
left:0px;
width:30px;
height:30px;
}
#downtimes {
height:100px;
background-size: 100% 100px;
background-image: url(../the_begining/img/timeback.png);
}