18 lines
278 B
SCSS
Raw Normal View History

2011-09-09 11:41:45 +04:00
@import "opacity";
2011-06-14 20:05:12 +04:00
2011-09-09 11:41:45 +04:00
.fullscreen {
position: fixed;
z-index: 999999;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ffffff;
//@include opacity(0.9);
2011-09-09 11:41:45 +04:00
.inner {
position: relative;
top: 50%;
left: 50%;
margin: -32px 0 0 -32px;
}
2011-06-14 20:05:12 +04:00
}