2012-04-12 08:12:51 +09:00
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
-moz-user-select:none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2011-05-26 23:02:52 +09:00
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
html {
|
|
|
|
height: 100%;
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
background-color: #404040;
|
|
|
|
background-image: url(images/texture.png);
|
|
|
|
font-family: Segoe UI, Verdana, sans-serif;
|
2011-10-19 04:40:59 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#outerContainer {
|
|
|
|
display: -moz-box;
|
|
|
|
-moz-box-orient: horizontal;
|
2011-07-29 02:48:05 +09:00
|
|
|
width: 100%;
|
2012-04-12 08:12:51 +09:00
|
|
|
height: 100%;
|
|
|
|
-moz-user-select:none;
|
|
|
|
cursor: default;
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#sidebarContainer {
|
|
|
|
width: 200px;
|
|
|
|
height: 100%;
|
|
|
|
background-color: hsla(0,0%,0%,.1);
|
|
|
|
box-shadow: inset -1px 0 0 hsla(0,0%,0%,.25);
|
|
|
|
overflow: auto;
|
2012-04-13 07:08:07 +09:00
|
|
|
padding-top: 33px;
|
|
|
|
}
|
|
|
|
#sidebarContainer.hidden {
|
|
|
|
display:none;
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#viewerContainer {
|
|
|
|
-moz-box-flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
box-shadow: inset 1px 0 0 hsla(0,0%,100%,.05);
|
2012-04-13 07:08:07 +09:00
|
|
|
padding-top: 30px;
|
2011-10-15 11:05:57 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbar {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 32px;
|
|
|
|
z-index: 9999;
|
|
|
|
-moz-user-select:none;
|
|
|
|
cursor: default;
|
2011-06-30 12:43:59 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#toolbarContainer {
|
|
|
|
display: -moz-box;
|
|
|
|
width: 100%;
|
2011-08-29 05:10:14 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#toolbarSidebar {
|
|
|
|
display: -moz-box;
|
|
|
|
width: 200px;
|
|
|
|
height: 32px;
|
|
|
|
background-image: url(images/texture.png),
|
|
|
|
-moz-linear-gradient(hsla(0,0%,30%,.99), hsla(0,0%,25%,.95));
|
|
|
|
box-shadow: inset -2px 0 0 hsla(0,0%,100%,.08),
|
|
|
|
inset 0 1px 1px hsla(0,0%,0%,.15),
|
|
|
|
inset 0 -1px 0 hsla(0,0%,100%,.05),
|
|
|
|
0 1px 0 hsla(0,0%,0%,.15),
|
|
|
|
0 1px 1px hsla(0,0%,0%,.1);
|
|
|
|
}
|
2012-04-13 07:08:07 +09:00
|
|
|
#toolbarSidebar.hidden {
|
|
|
|
display:none;
|
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
|
|
|
#toolbarViewer {
|
|
|
|
display: -moz-box;
|
|
|
|
-moz-box-flex: 1;
|
|
|
|
margin-left: -1px;
|
|
|
|
height: 32px;
|
|
|
|
background-image: url(images/texture.png),
|
|
|
|
-moz-linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95));
|
|
|
|
border-left: 1px solid hsla(0,0%,0%,.5);
|
|
|
|
box-shadow: inset 1px 0 0 hsla(0,0%,100%,.08),
|
|
|
|
inset 0 1px 1px hsla(0,0%,0%,.15),
|
|
|
|
inset 0 -1px 0 hsla(0,0%,100%,.05),
|
|
|
|
0 1px 0 hsla(0,0%,0%,.15),
|
|
|
|
0 1px 1px hsla(0,0%,0%,.1);
|
2011-05-26 23:02:52 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.splitToolbarButton {
|
|
|
|
margin: 4px 2px 4px 0;
|
|
|
|
display: -moz-box;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
.splitToolbarButton > .toolbarButton {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 -1px;
|
|
|
|
padding: 3px 6px;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
.splitToolbarButton:hover > .toolbarButton,
|
|
|
|
.splitToolbarButton.toggled > .toolbarButton {
|
|
|
|
background-color: hsla(0,0%,0%,.12);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
border: 1px solid hsla(0,0%,0%,.35);
|
|
|
|
border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42);
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.15) inset,
|
|
|
|
0 1px 0 hsla(0,0%,100%,.05);
|
|
|
|
-moz-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-moz-transition-duration: 150ms;
|
|
|
|
-moz-transition-timing-function: ease;
|
|
|
|
}
|
|
|
|
.splitToolbarButton > .toolbarButton:hover,
|
|
|
|
.dropdownToolbarButton:hover {
|
|
|
|
background-color: hsla(0,0%,0%,.2);
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.15) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.05);
|
|
|
|
z-index: 199;
|
|
|
|
}
|
|
|
|
.splitToolbarButton > .toolbarButton:first-child {
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
margin-right: -1px;
|
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-bottom-left-radius: 2px;
|
|
|
|
border-right-color: transparent;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
.splitToolbarButton > .toolbarButton:last-child {
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
margin-left: -1px;
|
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
|
|
|
border-left-color: transparent;
|
|
|
|
}
|
|
|
|
.splitToolbarButtonSeparator {
|
|
|
|
margin: 4px 0;
|
|
|
|
width: 1px;
|
|
|
|
background-color: hsla(0,0%,00%,.5);
|
|
|
|
z-index: 99;
|
|
|
|
box-shadow: 0 0 0 1px hsla(0,0%,100%,.08);
|
|
|
|
}
|
|
|
|
.splitToolbarButton:hover > .splitToolbarButtonSeparator,
|
|
|
|
.splitToolbarButton.toggled > .splitToolbarButtonSeparator {
|
|
|
|
margin: 1px 0;
|
|
|
|
box-shadow: 0 0 0 1px hsla(0,0%,100%,.03);
|
|
|
|
-moz-transition-property: margin;
|
|
|
|
-moz-transition-duration: 10ms;
|
|
|
|
-moz-transition-timing-function: ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton,
|
|
|
|
.dropdownToolbarButton {
|
|
|
|
-moz-box-flex: 0;
|
|
|
|
min-width: 16px;
|
|
|
|
padding: 3px 7px;
|
|
|
|
margin: 4px 2px 4px 0;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: hsl(0,0%,95%);
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
-moz-user-select:none;
|
|
|
|
cursor: default;
|
|
|
|
-moz-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-moz-transition-duration: 150ms;
|
|
|
|
-moz-transition-timing-function: ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton:hover,
|
|
|
|
.dropdownToolbarButton {
|
|
|
|
background-color: hsla(0,0%,0%,.12);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
border: 1px solid hsla(0,0%,0%,.35);
|
|
|
|
border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42);
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.15) inset,
|
|
|
|
0 1px 0 hsla(0,0%,100%,.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton:hover:active,
|
|
|
|
.dropdownToolbarButton:hover:active {
|
|
|
|
background-color: hsla(0,0%,0%,.2);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
border-color: hsla(0,0%,0%,.35) hsla(0,0%,0%,.4) hsla(0,0%,0%,.45);
|
|
|
|
box-shadow: 0 1px 1px hsla(0,0%,0%,.1) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2) inset,
|
|
|
|
0 1px 0 hsla(0,0%,100%,.05);
|
|
|
|
-moz-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-moz-transition-duration: 10ms;
|
|
|
|
-moz-transition-timing-function: linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton.toggled,
|
|
|
|
.splitToolbarButton.toggled > .toolbarButton.toggled {
|
|
|
|
background-color: hsla(0,0%,0%,.3);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.45) hsla(0,0%,0%,.5);
|
|
|
|
box-shadow: 0 1px 1px hsla(0,0%,0%,.1) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2) inset,
|
|
|
|
0 1px 0 hsla(0,0%,100%,.05);
|
|
|
|
-moz-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-moz-transition-duration: 10ms;
|
|
|
|
-moz-transition-timing-function: linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton.toggled:hover:active,
|
|
|
|
.splitToolbarButton.toggled > .toolbarButton.toggled:hover:active {
|
|
|
|
background-color: hsla(0,0%,0%,.4);
|
|
|
|
border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.5) hsla(0,0%,0%,.55);
|
|
|
|
box-shadow: 0 1px 1px hsla(0,0%,0%,.2) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.3) inset,
|
|
|
|
0 1px 0 hsla(0,0%,100%,.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdownToolbarButton {
|
|
|
|
min-width: 124px;
|
|
|
|
}
|
|
|
|
.dropdownToolbarButton::after {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
content: url(images/toolbarButton-menuArrows.png);
|
2012-02-07 17:23:23 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.splitToolbarButton:first-child,
|
|
|
|
.toolbarButton:first-child {
|
|
|
|
margin-left: 4px;
|
2012-02-05 05:13:12 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
.splitToolbarButton:last-child,
|
|
|
|
.toolbarButton:last-child {
|
|
|
|
margin-right: 4px;
|
2012-02-05 05:13:12 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButtonSpacer {
|
|
|
|
width: 30px;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButtonFlexibleSpacer {
|
|
|
|
-moz-box-flex: 1;
|
|
|
|
min-width: 30px;
|
2011-08-31 21:22:48 +09:00
|
|
|
}
|
|
|
|
|
2012-04-13 07:08:07 +09:00
|
|
|
.toolbarButton#sidebarToggle::before {
|
2012-04-12 08:12:51 +09:00
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-sidebarToggle.png);
|
2011-08-31 21:22:48 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
|
|
|
.toolbarButton.pageUp::before {
|
2011-08-31 21:22:48 +09:00
|
|
|
display: inline-block;
|
2012-04-12 08:12:51 +09:00
|
|
|
content: url(images/toolbarButton-pageUp.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
|
|
|
.toolbarButton.pageDown::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-pageDown.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton.zoomOut::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-zoomOut.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
|
|
|
.toolbarButton.zoomIn::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-zoomIn.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton.print::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-print.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton.download::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-download.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarButton.bookmark::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-bookmark.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
|
|
|
.toolbarButton.viewThumbnail::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-viewThumbnail.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton.viewOutline::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: url(images/toolbarButton-viewOutline.png);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarField {
|
|
|
|
min-width: 16px;
|
2011-08-29 05:10:14 +09:00
|
|
|
width: 32px;
|
2012-04-12 08:12:51 +09:00
|
|
|
padding: 3px 6px;
|
|
|
|
margin: 4px 0 4px 0;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: hsla(0,0%,100%,.09);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
border: 1px solid hsla(0,0%,0%,.35);
|
|
|
|
border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42);
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,0%,.05) inset,
|
|
|
|
0 1px 0 hsla(0,0%,100%,.05);
|
|
|
|
color: hsl(0,0%,95%);
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
text-align: right;
|
|
|
|
outline-style: none;
|
|
|
|
-moz-user-select:none;
|
|
|
|
cursor: default;
|
|
|
|
-moz-transition-property: background-color, border-color, box-shadow;
|
|
|
|
-moz-transition-duration: 150ms;
|
|
|
|
-moz-transition-timing-function: ease;
|
2011-08-29 05:10:14 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarField:hover {
|
|
|
|
background-color: hsla(0,0%,100%,.11);
|
|
|
|
border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.43) hsla(0,0%,0%,.45);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarField:focus {
|
|
|
|
background-color: hsla(0,0%,100%,.15);
|
|
|
|
border-color: hsla(204,100%,65%,.8) hsla(204,100%,65%,.85) hsla(204,100%,65%,.9);
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.toolbarLabel {
|
|
|
|
min-width: 16px;
|
|
|
|
padding: 3px 6px 3px 2px;
|
|
|
|
margin: 4px 2px 4px 0;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: hsl(0,0%,85%);
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
text-align: left;
|
|
|
|
-moz-user-select:none;
|
|
|
|
cursor: default;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#thumbnailView {
|
|
|
|
position: fixed;
|
|
|
|
width: 120px;
|
|
|
|
height: 100%;
|
2012-04-13 07:08:07 +09:00
|
|
|
padding: 10px 40px 0;
|
2012-04-12 08:12:51 +09:00
|
|
|
overflow: auto;
|
2011-10-29 01:16:17 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnail {
|
2012-04-13 07:08:07 +09:00
|
|
|
width: 134px;
|
|
|
|
height: 134px;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
margin-left:auto;
|
|
|
|
margin-right:auto;
|
|
|
|
line-height: 134px;
|
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnailSelectionRing {
|
|
|
|
position: absolute;
|
|
|
|
width: 112px;
|
|
|
|
height: 142px;
|
|
|
|
margin: 4px;
|
|
|
|
border-radius: 2px;
|
|
|
|
-moz-transition-duration: 150ms;
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
2012-04-12 08:12:51 +09:00
|
|
|
|
|
|
|
.thumbnail:hover > .thumbnailImage {
|
|
|
|
opacity: .9;
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnail:hover > .thumbnailSelectionRing {
|
|
|
|
background-color: hsla(0,0%,100%,.15);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.2) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2);
|
|
|
|
color: hsla(0,0%,100%,.9);
|
2011-12-22 07:22:07 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnail.selected > .thumbnailImage {
|
|
|
|
box-shadow: 0 0 0 1px hsla(0,0%,0%,.5);
|
|
|
|
opacity: 1;
|
2011-07-29 02:48:05 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.thumbnail.selected > .thumbnailSelectionRing {
|
|
|
|
background-color: hsla(0,0%,100%,.3);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.1) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2);
|
|
|
|
color: hsla(0,0%,100%,1);
|
2011-08-22 11:05:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
#outlineView {
|
2011-11-29 09:55:09 +09:00
|
|
|
position: fixed;
|
2012-04-12 08:12:51 +09:00
|
|
|
width: 188px;
|
|
|
|
height: 100%;
|
|
|
|
padding: 52px 4px 0;
|
|
|
|
overflow: auto;
|
2011-11-29 09:55:09 +09:00
|
|
|
}
|
2012-04-13 07:08:07 +09:00
|
|
|
#outlineView.hidden {
|
|
|
|
display:none;
|
|
|
|
}
|
2011-11-29 09:55:09 +09:00
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.outlineEntry {
|
|
|
|
width: -moz-calc(100% - 8px);
|
|
|
|
height: 20px;
|
|
|
|
padding: 2px 0 0 10px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: hsla(0,0%,100%,.8);
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 15px;
|
|
|
|
-moz-user-select:none;
|
|
|
|
cursor: default;
|
2011-11-29 09:55:09 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.outlineEntry:hover {
|
|
|
|
background-color: hsla(0,0%,100%,.02);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.2) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2);
|
|
|
|
color: hsla(0,0%,100%,.9);
|
2011-11-29 09:55:09 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.outlineEntry.selected {
|
|
|
|
background-color: hsla(0,0%,100%,.08);
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0));
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset,
|
|
|
|
0 0 1px hsla(0,0%,100%,.1) inset,
|
|
|
|
0 0 1px hsla(0,0%,0%,.2);
|
|
|
|
color: hsla(0,0%,100%,1);
|
2011-08-28 07:10:15 +09:00
|
|
|
}
|
2011-09-21 13:49:09 +09:00
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
canvas {
|
|
|
|
margin: auto;
|
|
|
|
display: block;
|
2012-02-08 00:20:25 +09:00
|
|
|
}
|
2012-02-14 10:35:58 +09:00
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.page {
|
|
|
|
width: 816px;
|
|
|
|
height: 1056px;
|
|
|
|
margin: 10px auto;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: 0px 4px 10px #000;
|
|
|
|
-moz-box-shadow: 0px 4px 10px #000;
|
|
|
|
-webkit-box-shadow: 0px 4px 10px #000;
|
|
|
|
background-color: white;
|
2012-03-22 07:36:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.page > a {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2012-03-22 07:36:10 +09:00
|
|
|
}
|
|
|
|
|
2012-04-12 08:12:51 +09:00
|
|
|
.page > a:hover {
|
|
|
|
opacity: 0.2;
|
|
|
|
background: #ff0;
|
|
|
|
box-shadow: 0px 2px 10px #ff0;
|
|
|
|
-moz-box-shadow: 0px 2px 10px #ff0;
|
|
|
|
-webkit-box-shadow: 0px 2px 10px #ff0;
|
2012-02-22 02:52:09 +09:00
|
|
|
}
|