2012-04-21 11:44:51 +00:00
|
|
|
@import url(//fonts.googleapis.com/css?family=Droid+Sans:400,700|Droid+Sans+Mono|Droid+Serif:400,700,400italic,700italic);
|
2012-04-18 09:33:42 +00:00
|
|
|
|
|
|
|
body {
|
|
|
|
/*
|
|
|
|
background:
|
|
|
|
-webkit-radial-gradient(rgb(32, 32, 32) 15%, transparent 16%) 0 0,
|
|
|
|
-webkit-radial-gradient(rgb(96, 96, 96) 15%, transparent 16%) 0 1px,
|
|
|
|
-webkit-radial-gradient(rgb(32, 32, 32) 15%, transparent 16%) 8px 8px,
|
|
|
|
-webkit-radial-gradient(rgb(96, 96, 96) 15%, transparent 16%) 8px 9px;
|
|
|
|
*/
|
|
|
|
//background-color: rgb(64, 64, 64);
|
|
|
|
//background-size: 16px 16px;
|
2012-04-19 18:50:58 +00:00
|
|
|
background-color: rgb(32, 32, 16);
|
2012-04-18 09:33:42 +00:00
|
|
|
font-family: Droid Sans, Calibri, sans-serif;
|
|
|
|
font-size: 12px;
|
|
|
|
color: black;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
}
|
|
|
|
a, a:visited {
|
2010-08-03 18:35:31 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: rgb(0, 0, 192);
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2012-06-12 18:53:51 +00:00
|
|
|
img {
|
|
|
|
border: 0
|
|
|
|
}
|
2010-08-03 18:35:31 +00:00
|
|
|
p {
|
2012-04-18 09:33:42 +00:00
|
|
|
-webkit-margin-before: 0;
|
|
|
|
-webkit-margin-after: 24px;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
p:last-child {
|
|
|
|
-webkit-margin-after: 0;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
#icon {
|
|
|
|
position: absolute;
|
|
|
|
left: 32px;
|
|
|
|
top: 0;
|
|
|
|
width: 256px;
|
|
|
|
height: 256px;
|
|
|
|
cursor: pointer;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-07-02 10:40:40 +00:00
|
|
|
#icon.selected {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
|
|
|
|
#menu {
|
|
|
|
position: absolute;
|
|
|
|
left: 80px;
|
|
|
|
top: 288px;
|
2012-04-19 18:50:58 +00:00
|
|
|
height: 400px;
|
2012-04-18 09:33:42 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#menu > div {
|
|
|
|
width: 148px;
|
|
|
|
height: 20px;
|
|
|
|
padding: 6px;
|
|
|
|
border-left: 1px solid rgb(96, 48, 32);
|
|
|
|
border-right: 1px solid rgb(96, 48, 32);
|
|
|
|
border-bottom: 1px solid rgb(96, 48, 32);
|
|
|
|
background-color: rgb(128, 64, 32);
|
|
|
|
background-image: -webkit-linear-gradient(0, transparent 50%, rgba(64, 32, 16, 0.1) 50%);
|
2012-04-19 18:50:58 +00:00
|
|
|
background-image: -moz-linear-gradient(0, transparent 50%, rgba(64, 32, 16, 0.1) 50%);
|
2012-04-18 09:33:42 +00:00
|
|
|
background-size: 8px 32px;
|
|
|
|
font-size: 16px;
|
2010-08-03 18:35:31 +00:00
|
|
|
font-weight: bold;
|
2012-04-18 09:33:42 +00:00
|
|
|
text-shadow: 0 0 1px black;
|
|
|
|
color: rgb(192, 96, 48);
|
|
|
|
text-shadow:
|
|
|
|
-1px -1px 1px rgb(64, 32, 16),
|
|
|
|
-1px 1px 1px rgb(64, 32, 16),
|
|
|
|
1px -1px 1px rgb(64, 32, 16),
|
|
|
|
1px 1px 1px rgb(64, 32, 16);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#menu > div:first-child {
|
|
|
|
border-top: 1px solid rgb(96, 48, 32);
|
|
|
|
border-top-left-radius: 8px;
|
|
|
|
border-top-right-radius: 8px;
|
|
|
|
}
|
|
|
|
#menu > div:last-child {
|
|
|
|
border-bottom-left-radius: 8px;
|
|
|
|
border-bottom-right-radius: 8px;
|
|
|
|
}
|
|
|
|
#menu > div:hover {
|
|
|
|
background-color: rgb(160, 80, 40);
|
|
|
|
color: rgb(224, 112, 56);
|
|
|
|
text-shadow:
|
|
|
|
-1px -1px 1px rgb(96, 48, 24),
|
|
|
|
-1px 1px 1px rgb(96, 48, 24),
|
|
|
|
1px -1px 1px rgb(96, 48, 24),
|
|
|
|
1px 1px 1px rgb(96, 48, 24);
|
|
|
|
|
|
|
|
}
|
|
|
|
#menu > div.selected {
|
|
|
|
background-color: rgb(192, 96, 48);
|
|
|
|
color: rgb(255, 128, 64);
|
|
|
|
text-shadow:
|
|
|
|
-1px -1px 1px rgb(128, 64, 32),
|
|
|
|
-1px 1px 1px rgb(128, 64, 32),
|
|
|
|
1px -1px 1px rgb(128, 64, 32),
|
|
|
|
1px 1px 1px rgb(128, 64, 32);
|
|
|
|
cursor: default;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
|
|
|
|
#page {
|
|
|
|
position: absolute;
|
|
|
|
left: 352px;
|
|
|
|
top: 32px;
|
|
|
|
width: 640px;
|
2012-06-19 20:56:26 +00:00
|
|
|
padding-right: 32px;
|
2012-06-20 11:21:47 +00:00
|
|
|
padding-bottom: 32px;
|
2012-04-18 09:33:42 +00:00
|
|
|
border-radius: 16px;
|
2012-06-20 11:21:47 +00:00
|
|
|
margin-right: 32px;
|
|
|
|
margin-bottom: 32px;
|
2012-04-18 09:33:42 +00:00
|
|
|
}
|
|
|
|
#page > div:first-child {
|
|
|
|
height: 28px;
|
|
|
|
padding: 10px;
|
|
|
|
border-top-left-radius: 12px;
|
|
|
|
border-top-right-radius: 12px;
|
|
|
|
border-bottom: 1px solid rgb(96, 48, 32);
|
|
|
|
background-color: rgb(192, 96, 48);
|
|
|
|
background-image: -webkit-linear-gradient(0, transparent 50%, rgba(64, 32, 16, 0.1) 50%);
|
2012-04-19 18:50:58 +00:00
|
|
|
background-image: -moz-linear-gradient(0, transparent 50%, rgba(64, 32, 16, 0.1) 50%);
|
2012-04-18 09:33:42 +00:00
|
|
|
background-size: 12px 48px;
|
2010-08-03 18:35:31 +00:00
|
|
|
font-size: 24px;
|
2012-04-18 09:33:42 +00:00
|
|
|
font-weight: bold;
|
|
|
|
color: rgb(255, 128, 64);
|
|
|
|
text-align: center;
|
|
|
|
text-shadow:
|
|
|
|
-1px -1px 1px rgb(128, 64, 32),
|
|
|
|
-1px 1px 1px rgb(128, 64, 32),
|
|
|
|
1px -1px 1px rgb(128, 64, 32),
|
|
|
|
1px 1px 1px rgb(128, 64, 32);
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
#page > div:last-child {
|
|
|
|
padding: 32px;
|
|
|
|
border-bottom-left-radius: 16px;
|
|
|
|
border-bottom-right-radius: 16px;
|
2012-04-19 18:50:58 +00:00
|
|
|
background: rgb(240, 240, 224);
|
2012-04-18 09:33:42 +00:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
-moz-user-select: text;
|
|
|
|
-webkit-user-select: text;
|
|
|
|
}
|
|
|
|
#page img {
|
|
|
|
width: 576px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
#page img.logo {
|
|
|
|
float: left;
|
|
|
|
width: 192px;
|
|
|
|
margin-right: 24px;
|
|
|
|
vertical-align: top;
|
|
|
|
border-radius: 0;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
|
|
|
|
.button {
|
|
|
|
cursor: pointer;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
.button.disabled {
|
2010-08-03 18:35:31 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
#prevButton {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 32px;
|
|
|
|
}
|
|
|
|
#nextButton {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
2012-06-20 13:33:01 +00:00
|
|
|
right: 64px;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
#prevButton.disabled,
|
|
|
|
#nextButton.disabled {
|
|
|
|
display: none;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
|
|
|
|
2012-04-18 09:33:42 +00:00
|
|
|
div.title {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 16px;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
div.date {
|
|
|
|
color: rgb(128, 128, 128);
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
div.text {
|
|
|
|
margin: 8px 0 32px 0;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-06-20 13:16:18 +00:00
|
|
|
div.text:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
|
2012-04-21 11:44:51 +00:00
|
|
|
#page div.tour {
|
2012-04-19 18:50:58 +00:00
|
|
|
width: 576px;
|
|
|
|
height: 360px;
|
|
|
|
border-radius: 8px;
|
2012-06-20 13:33:01 +00:00
|
|
|
margin-bottom: 32px;
|
2012-04-19 18:50:58 +00:00
|
|
|
box-shadow: 0 0 2px rgba(64, 64, 32, 0.5);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2012-04-18 09:33:42 +00:00
|
|
|
.large {
|
|
|
|
font-size: 18px;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
.sans {
|
|
|
|
font-family: Droid Sans, sans-serif;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|
2012-04-18 09:33:42 +00:00
|
|
|
.serif {
|
|
|
|
font-family: Droid Serif, serif;
|
2010-08-03 18:35:31 +00:00
|
|
|
}
|