jspaint/layout.css

83 lines
1.1 KiB
CSS
Raw Normal View History

2014-02-23 20:17:11 +00:00
html, body, .jspaint {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border: 0;
2014-02-24 20:39:36 +00:00
overflow: hidden;
2014-02-23 20:17:11 +00:00
}
.jspaint * {
display: flex;
}
.jspaint {
display: flex;
flex-flow: column;
flex: 1;
}
2014-02-24 05:57:52 +00:00
.jspaint-horizontal {
2014-02-23 20:17:11 +00:00
flex-flow: row;
2014-02-24 05:57:52 +00:00
flex: 1;
}
.jspaint-vertical {
flex-flow: column;
flex: 1;
2014-02-23 20:17:11 +00:00
}
2014-02-24 05:57:52 +00:00
2014-02-25 06:09:55 +00:00
.jspaint-Tools-component {
2014-02-25 07:29:22 +00:00
height: 273px;
align-items: center;
2014-02-24 05:57:52 +00:00
padding-left: 4px;
padding-right: 2px;
flex-flow: column;
}
.jspaint-tool-options {
margin-top: 3px;
width: 41px;
height: 66px;
box-sizing: border-box;
2014-02-24 05:57:52 +00:00
}
.jspaint-tools {
2014-02-23 20:17:11 +00:00
display: flex;
flex-flow: row wrap;
height: 200px;
width: 50px;
}
2014-02-25 06:09:55 +00:00
.jspaint-Colors-component {
height: 47px;
align-items: center;
}
.jspaint-palette {
display: flex;
flex-flow: row wrap;
height: 40px;
2014-02-25 03:41:08 +00:00
width: 225px;
}
.jspaint-color-box,
.jspaint-palette {
height: 32px;
}
.jspaint-current-colors {
2014-02-25 07:10:57 +00:00
width: 30px;
2014-02-25 06:30:28 +00:00
height: 31px;
}
.jspaint-color-button,
.jspaint-color-selection {
2014-02-25 07:10:57 +00:00
margin-left: 1px;
2014-02-25 06:30:28 +00:00
padding: 0;
box-sizing: border-box;
2014-02-25 07:10:57 +00:00
width: 15px;
height: 15px;
2014-02-25 06:30:28 +00:00
border: 0;
}
2014-02-25 20:42:00 +00:00
2014-02-23 20:17:11 +00:00
.jspaint-main {
flex: 1;
2014-02-25 20:42:00 +00:00
display: block;
overflow: auto;
2014-02-26 04:24:41 +00:00
padding: 3px;
2014-02-25 20:42:00 +00:00
}