jspaint/classic.css

61 lines
1.2 KiB
CSS
Raw Normal View History

2014-02-24 05:57:52 +00:00
.jspaint {
background: #BBB;
}
2014-02-24 05:57:52 +00:00
.jspaint-tool {
display: block;
margin: 0;
padding: 0;
box-sizing: border-box;
width: 25px;
height: 25px;
2014-02-24 05:57:52 +00:00
border: 0;
border-right: 1px solid black;
border-bottom: 1px solid black;
position: relative;
2014-02-24 05:57:52 +00:00
background: transparent;
outline: 0;
}
2014-02-24 05:57:52 +00:00
.jspaint-tool:before {
content: " ";
position: absolute;
2014-02-23 19:40:40 +00:00
z-index: 1;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
border-top: 1px solid white;
border-left: 1px solid white;
border-right: 1px solid #7b7b7b;
border-bottom: 1px solid #7b7b7b;
}
2014-02-24 05:57:52 +00:00
.jspaint-tool.selected {
2014-02-23 19:40:40 +00:00
border-top: 1px solid black;
border-left: 1px solid black;
border-right: 1px solid white;
border-bottom: 1px solid white;
}
2014-02-24 05:57:52 +00:00
.jspaint-tool.selected:before {
2014-02-23 19:40:40 +00:00
border-top: 1px solid #7b7b7b;
border-left: 1px solid #7b7b7b;
border-right: 1px solid #bdbdbd;
border-bottom: 1px solid #bdbdbd;
}
2014-02-24 05:57:52 +00:00
.jspaint-tool.selected,
2014-02-23 19:40:40 +00:00
.jspaint-current-colors {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACAQMAAABIeJ9nAAAABlBMVEW9vb3///8EwsWUAAAADElEQVQI12NoYHAAAAHEAMFJRSpJAAAAAElFTkSuQmCC) repeat;
}
2014-02-23 18:28:52 +00:00
2014-02-23 18:18:02 +00:00
.jspaint-main {
background: #7b7b7b;
2014-02-23 18:58:22 +00:00
border: 1px inset;
2014-02-23 18:18:02 +00:00
}
2014-02-23 18:21:32 +00:00
.jspaint-colors {
2014-02-23 17:43:17 +00:00
width: 257px;
height: 33px;
}