Vulcan/client/sass/partials/_main.scss

64 lines
1 KiB
SCSS
Raw Normal View History

2012-08-25 11:20:17 +09:00
body{
2012-09-29 12:28:51 +09:00
background:#e0f1f7;
min-height:1500px;
2012-08-25 11:20:17 +09:00
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5){
body{
2012-08-31 18:58:12 +09:00
// background:#e9f3f7 url("/img/bg@2x.png") top center;
2012-08-25 11:20:17 +09:00
background-size:10px 10px;
}
}
#spinner{
height:100%;
width:100%;
position:fixed;
z-index:1000;
}
.debug{
display:none;
2012-08-31 18:58:12 +09:00
}
.hidden{
display:none;
}
.overlay{
position:fixed;
top:0;
left:0;
height:100%;
width:100%;
z-index:50;
2012-09-24 08:53:13 +09:00
}
2012-09-24 10:09:53 +09:00
.footer{
text-align:center;
}
2012-09-24 08:53:13 +09:00
#tlkio{
position:fixed;
top:0px;
right:-280px;
@include single-transition(ease-out, right, 300ms, 0ms);
z-index:1000;
background:#333;
&.open{
right:0px;
@include box-shadow(-1px 0px 5px black(0.15));
}
2012-09-30 20:11:51 +09:00
.open-chat, .report-bug{
2012-09-24 08:53:13 +09:00
display:block;
background:$blue;
@include border-radius(3px 3px 0px 0px);
position:absolute;
2012-09-30 20:11:51 +09:00
top:300px;
2012-09-24 08:53:13 +09:00
right:264px;
text-transform:uppercase;
color:white;
padding:3px 10px;
@include rotate(270deg);
@include box-shadow(-1px 0px 1px black(0.15));
z-index:1001;
2012-09-30 20:11:51 +09:00
white-space:nowrap;
}
.report-bug{
top:400px;
right:236px;
2012-09-24 08:53:13 +09:00
}
2012-08-25 11:20:17 +09:00
}