-
Notifications
You must be signed in to change notification settings - Fork 0
/
batimahq.css
84 lines (72 loc) · 1.42 KB
/
batimahq.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
* {
margin: 0;
padding: 0;
}
body {
margin: 20px;
background-color: black;
}
#batimahq-wrapper {
/* images are 1054x1600 px
* Double width to fit two pages in an open magazine,
* and scale down to 62% of the original size.
*/
height: 992px;
width: 1307px;
position: relative;
margin: auto auto;
}
#batimahq {
height: 100%;
width: 100%;
background-color: #575454;
}
#greeter-wrapper {
background-color: #575454;
}
#greeter {
padding: 15px;
margin: 30px;
height: 870px;
font-family: "Mate SC", serif;
border: 2px solid black;
background-color: white;
position: absolute /* don't collapse margin */
}
#greeter h2 {
margin: 0.8em 0;
}
#greeter p {
text-align: justify;
}
#instructions {
display: none;
}
#bookmark {
height: 130px;
width: 43px;
z-index: 99;
position: absolute;
left: -10px;
top: -7px;
display: none;
}
#bookmark.on-bookmarked-page {
-moz-transition: height 200ms;
-o-transition: height 200ms;
-webkit-transition: height 200ms;
-ms-transition: height 200ms;
height: 160px;
width: 43px;
}
#bookmark.on-regular-page {
-moz-transition: height 200ms;
-o-transition: height 200ms;
-webkit-transition: height 200ms;
-ms-transition: height 200ms;
height: 130px;
width: 43px;
}
#batimahq img {
background: url('bat.png') 50% 50% no-repeat, #6e6767;
}