forked from etyrosental/shaked-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cover.css
executable file
·67 lines (57 loc) · 1.35 KB
/
cover.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
/*
* Base structure
*/
html,
body {
height: 100%;
background-color: #333;
}
body {
color: #fff;
text-align: center;
margin: 0;
padding: 0;
direction: rtl;
}
/*!* Extra markup and styles for table-esque vertical and horizontal centering *!
.site-wrapper {
display: table;
width: 100%;
height: 100%; !* For at least Firefox *!
min-height: 100%;
-webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
box-shadow: inset 0 0 100px rgba(0,0,0,.5);
background: url("background.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}*/
#section0 {
background: url("background.jpg") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#section1 {
background: url("ety.JPG") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#section2 {
background: url("table-books.JPG") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.content-background {
background-color: rgba(253, 241, 216, 0.9);
padding: 10px;
}
.content {
color: rgb(152, 148, 44);
}