-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
157 lines (135 loc) · 2.57 KB
/
style.css
File metadata and controls
157 lines (135 loc) · 2.57 KB
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
* {
margin:0;
padding: 0;
}
ul,ol {
list-style: none ;
}
body {
background: #bfbfbf url('images/background.jpg') repeat-x;
font-family: Arial, sans-serif;
}
header {
padding: 30px 0;
}
header h1 {
font-size: 40px;
text-align: center;
font-family: 'Limelight', sans-serif;
color: #fff;
text-transform: uppercase;
text-shadow: 2px 2px 2px #000;
}
/* MAIN- MENU */
#main-menu ul {
width: 980px;
height: 500px;
margin: 0 auto;
padding-top: 148px;
}
#main-menu ul li {
float: left;
width: 140px;
height: 500px;
overflow: hidden;
position: relative;
}
.bw {
position: absolute;
left: 0px;
width: 140px;
height: 500px;
cursor: pointer;
background: url('images/bw-image.jpg') no-repeat;
opacity: 0.7;
}
.color {
position: absolute;
left: 140px;
width: 140px;
height: 500px;
cursor: pointer;
background: url('images/color-image.jpg') no-repeat;
}
#part2 div {
background-position: -140px 0px;
}
#part3 div {
background-position: -280px 0px;
}
#part4 div {
background-position: -420px 0px;
}
#part5 div {
background-position: -560px 0px;
}
.description {
position: absolute;
left: 140px;
width: 240px;
height: 460px;
padding: 20px;
background: #fff;
}
.description h2 {
padding-top: 20px;
font-size: 30px;
font-family: 'Limelight', sans-serif;
text-align: center;
color: #333;
text-transform: uppercase;
}
.description h3 {
margin-top:30px;
padding: 10px;
font-size: 26px;
font-family: 'Lobster', sans-serif;
background: #d70000;
color:#fff;
text-align: center;
text-shadow: 1px 1px 1px #000;
border-radius: 5px;
}
.description p {
padding-top: 35px;
font-size: 22px;
font-family: 'Lobster', sans-serif;
color:#000;
text-align: center;
}
/* BUTTONS-MENU*/
#buttons-menu {
float:left;
width:100%;
padding: 170px 0 50px 0;
}
#buttons-menu ul {
float:left;
position: relative;
left: 50%;
text-align: center;
}
.button {
float:left;
width: 150px;
margin-left: 30px;
padding: 10px 0;
position: relative;
right: 50%;
text-shadow: 1px 1px 1px #000;
font-family: 'Lobster', sans-serif;
text-align: center;
color:#fff;
border-radius: 5px;
box-shadow: 4px 4px 4px rgba(0,0,0,0.75);
background: #333;
border: 2px solid #b70000;
font-size: 22px;
cursor: pointer;
opacity: 0.9;
}
.hovered {
background: #b70000;
border: 2px solid #333;
font-size: 24px;
}