piskel/css/style.css

156 lines
2.1 KiB
CSS
Raw Normal View History

2012-09-16 06:33:26 +04:00
2013-06-12 16:53:47 +04:00
body {
background: -webkit-radial-gradient(circle, #000, #373737);
}
2012-09-16 06:33:26 +04:00
/**
* Application layout
*/
2013-06-12 16:53:47 +04:00
.column-wrapper {
text-align: center;
font-size: 0;
2012-09-16 06:33:26 +04:00
position: absolute;
left: 104px;
top: 10px;
2013-06-12 16:53:47 +04:00
right: 0;
bottom: 10px;
}
2013-06-12 16:53:47 +04:00
.left-column {
display: inline-block;
vertical-align: top;
height: 100%;
margin-right: 7px;
}
2013-06-12 16:53:47 +04:00
.main-column {
display: inline-block;
height: 100%;
position: relative;
}
2013-06-12 16:53:47 +04:00
.drawing-canvas-container {
font-size: 0;
}
2013-06-12 16:53:47 +04:00
.right-column {
display: inline-block;
vertical-align: top;
margin-left: 10px;
}
.sticky-section {
display: table;
height: 100%;
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: 140px;
}
.sticky-section .wrap {
display: table-cell;
vertical-align: middle;
}
2012-09-16 06:33:26 +04:00
/**
* Canvases layout
*/
.canvas {
position: relative;
z-index: 1;
}
.canvas-container {
position: relative;
display: block;
}
.canvas-container .canvas-background {
2013-06-12 16:53:47 +04:00
background: url(../img/canvas_background.png) repeat;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
2012-09-16 06:33:26 +04:00
.canvas.canvas-overlay {
position: absolute;
top: 0;
left: 0;
z-index: 10;
}
/**
* Animated preview styles.
*/
.preview-container {
border : 0px Solid black;
border-radius:5px 0px 0px 5px;
box-shadow : 0px 0px 2px rgba(0,0,0,0.2);
font-size: 0;
}
.preview-container canvas {
border : 0px Solid transparent;
}
.display-fps {
float: left;
color: #aaa;
font-size: 12px;
min-width: 55px;
vertical-align: bottom;
line-height: 24px;
}
.range-fps {
overflow: hidden;
}
.application-actions {
margin-top: 35px;
}
/**
* User messages
*/
2012-08-30 01:01:04 +04:00
.user-message {
2012-09-05 01:48:02 +04:00
position: absolute;
2012-09-16 06:33:26 +04:00
bottom: 0;
left: 25%;
2012-08-30 01:01:04 +04:00
background-color: #F9EDBE;
2012-09-05 01:48:02 +04:00
padding: 4px 12px;
padding-right: 20px;
2012-08-30 01:01:04 +04:00
border-top-left-radius: 7px;
2012-09-16 06:33:26 +04:00
border-top-right-radius: 7px;
2012-09-05 01:48:02 +04:00
border-right: 0;
2012-08-30 01:01:04 +04:00
color: #222;
border: #F0C36D 1px solid;
font-weight: bold;
2012-09-05 01:48:02 +04:00
font-size: 13px;
z-index: 10000;
2012-08-30 01:01:04 +04:00
}
.user-message .close {
position: absolute;
2012-09-05 01:48:02 +04:00
top: 0px;
right: 5px;
color: gray;
font-weight: bold;
cursor: pointer;
font-size: 18px;
}
.user-message .close:hover {
color: black;
}