initial commit
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 956 B |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,913 @@
|
||||
/* wysibb */
|
||||
@font-face {
|
||||
font-family: 'WysiBBiconFont';
|
||||
src: url('../fonts/WysiBBiconFontAH.eot');
|
||||
src: url('../fonts/WysiBBiconFontAH.eot?#iefix') format('embedded-opentype'), url('../fonts/WysiBBiconFontAH.ttf') format('truetype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
.wysibb-body {
|
||||
overflow-x: hidden
|
||||
}
|
||||
|
||||
.wysibb-body ul, ol {
|
||||
padding: 0 0 0 30px
|
||||
}
|
||||
|
||||
.wysibb {
|
||||
margin: 0 0 15px 0 !important;
|
||||
border: 1px solid #ddd;
|
||||
position: relative;
|
||||
background: #fff;
|
||||
font-family: Arial, Verdana, Tahoma;
|
||||
font-size: 12px;
|
||||
width: 600px;
|
||||
}
|
||||
|
||||
.wysibb-texarea {
|
||||
border: none !important;
|
||||
margin: 0 !important;
|
||||
outline: none !important;
|
||||
padding: 0 !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
/* TOOLBAR */
|
||||
.wysibb .wysibb-toolbar {
|
||||
background: #f4f4f4;
|
||||
|
||||
background-image: linear-gradient(bottom, #eee 50%, #fafafa 100%);
|
||||
background-image: -o-linear-gradient(bottom, #eee 50%, #fafafa 100%);
|
||||
background-image: -moz-linear-gradient(bottom, #eee 50%, #fafafa 100%);
|
||||
background-image: -webkit-linear-gradient(bottom, #eee 50%, #fafafa 100%);
|
||||
background-image: -ms-linear-gradient(bottom, #eee 50%, #fafafa 100%);
|
||||
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar {
|
||||
border-bottom: 1px solid #ddd;
|
||||
position: relative;
|
||||
padding: 0 60px 0 4px;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container {
|
||||
margin: 4px 4px 4px 0;
|
||||
border-right: 1px solid #ddd;
|
||||
padding: 0 8px 0 4px;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
height: 24px;
|
||||
min-width: 24px;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
padding: 0px 1px;
|
||||
cursor: pointer;
|
||||
margin: 0 0 0 1px;
|
||||
font-size: 12px;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .dis, .wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.dis:hover {
|
||||
opacity: 0.3;
|
||||
cursor: default;
|
||||
overflow: hidden;
|
||||
border: 0;
|
||||
padding: 1px 2px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.on, .wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.on:hover {
|
||||
background: #ccc;
|
||||
padding: 0px 1px;
|
||||
box-shadow: inset 0px 0px 3px #aaa;
|
||||
border: 1px solid #999;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn span.btn-inner {
|
||||
display: block;
|
||||
height: 20px;
|
||||
min-width: 20px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn span.btn-tooltip {
|
||||
display: none;
|
||||
background: #333;
|
||||
border: 1px solid #fff;
|
||||
position: absolute;
|
||||
line-height: 20px;
|
||||
font-size: 11px;
|
||||
padding: 3px 10px;
|
||||
bottom: 30px;
|
||||
left: 0;
|
||||
color: #fff;
|
||||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn span.btn-tooltip ins {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 10px solid transparent;
|
||||
border-right: 10px solid transparent;
|
||||
border-top: 10px solid #333;
|
||||
position: absolute;
|
||||
bottom: -5px;
|
||||
left: 3px;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn span.btn-text {
|
||||
text-transform: uppercase;
|
||||
font-family: sans-serif, Verdana, Tahoma;
|
||||
font-weight: bold;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn:hover {
|
||||
padding: 0px 1px;
|
||||
border: 1px solid #bbb;
|
||||
/* box-shadow:-1px 1px 1px #aaa; */
|
||||
border-radius: 3px;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn:hover span.btn-tooltip {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn .fonticon {
|
||||
color: #333;
|
||||
font-family: 'WysiBBiconFont';
|
||||
font-size: 18px;
|
||||
line-height: 20px;
|
||||
text-shadow: 0px 1px 0px #fff;
|
||||
text-align: center;
|
||||
/* -webkit-font-smoothing: antialiased; */
|
||||
speak: none;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn:hover .fonticon {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.on .fonticon {
|
||||
text-shadow: none;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .modeSwitch {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0px;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .modeSwitch .wysibb-toolbar-btn {
|
||||
/* width:46px; */
|
||||
}
|
||||
|
||||
.modesw {
|
||||
font-weight: bold;
|
||||
font-size: 0.9em;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ve-tlb-bold {
|
||||
background: url(./img/icons.png) 0 0 no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-italic {
|
||||
background: url(./img/icons.png) 0 -40px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-underline {
|
||||
background: url(./img/icons.png) 0 -20px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-strike {
|
||||
background: url(./img/icons.png) 0 -120px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-link {
|
||||
background: url(./img/icons.png) 0 -80px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-unlink {
|
||||
background: url(./img/icons.png) 0 -100px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-img {
|
||||
background: url(./img/icons.png) 0 -60px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-quote {
|
||||
background: url(./img/icons.png) 0 -140px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-spoiler {
|
||||
background: url(./img/icons.png) 0 -160px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-list {
|
||||
background: url(./img/icons.png) 0 -180px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-bbcode {
|
||||
background: url(./img/icons.png) 0 -200px no-repeat;
|
||||
width: 40px !important;
|
||||
margin: 1px auto !important;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-numlist {
|
||||
background: url(./img/icons.png) 0 -220px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-textleft {
|
||||
background: url(./img/icons.png) 0 -240px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-textcenter {
|
||||
background: url(./img/icons.png) 0 -260px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-textright {
|
||||
background: url(./img/icons.png) 0 -280px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-offtopic {
|
||||
background: url(./img/icons.png) 0 -300px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-code {
|
||||
background: url(./img/icons.png) 0 -320px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-spoiler {
|
||||
background: url(./img/icons.png) 0 -340px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-sub {
|
||||
background: url(./img/icons.png) 0 -360px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-sup {
|
||||
background: url(./img/icons.png) 0 -380px no-repeat;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-colorpick {
|
||||
/* background: url(./img/icons.png) 5px -436px; */
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.ve-tlb-table {
|
||||
background: url(./img/icons.png) 0 -460px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-smilebox {
|
||||
background: url(./img/icons.png) 0 -480px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-video {
|
||||
background: url(./img/icons.png) 0 -500px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.ve-tlb-removeformat {
|
||||
background: url(./img/icons.png) 0 -540px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.tthotkey {
|
||||
color: #ddd;
|
||||
font-size: 9px;
|
||||
}
|
||||
|
||||
/* END TOOLBAR */
|
||||
|
||||
/* CONTENT */
|
||||
.wysibb-text {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.wysibb-text .wysibb-text-iframe {
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.wysibb-body {
|
||||
text-align: left;
|
||||
min-width: 0 !important;
|
||||
overflow: auto !important;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.wysibb-text-editor {
|
||||
outline: none
|
||||
}
|
||||
|
||||
.bottom-resize-line {
|
||||
height: 5px;
|
||||
cursor: ns-resize;
|
||||
}
|
||||
|
||||
.bottom-resize-line:hover, .bottom-resize-line.drag {
|
||||
background: #eee
|
||||
}
|
||||
|
||||
/* END CONTENT */
|
||||
|
||||
/* DEFAULT STYLES */
|
||||
.codetop {
|
||||
background: #eee;
|
||||
border-left: 1px dashed #78c5ed;
|
||||
border-right: 1px dashed #78c5ed;
|
||||
border-top: 1px dashed #78c5ed;
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
.codemain {
|
||||
padding: 10px;
|
||||
background: #f4fbff;
|
||||
border-left: 1px dashed #78c5ed;
|
||||
border-right: 1px dashed #78c5ed;
|
||||
border-bottom: 1px dashed #78c5ed;
|
||||
}
|
||||
|
||||
.quote {
|
||||
border: 1px solid #0004e4;
|
||||
border-left: 3px solid #0004e4;
|
||||
padding: 15px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.quote blockquote {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.quote-by {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.wbbtab {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
/* END DEFAULT STYLES */
|
||||
|
||||
/* DROPDOWN */
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-dropdown {
|
||||
padding-right: 10px;
|
||||
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-dropdown ins.ar {
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: 3px;
|
||||
top: 0px;
|
||||
width: 9px;
|
||||
height: 24px;
|
||||
/* background: url(./img/icons.png) -8px -400px; */
|
||||
cursor: default;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
padding: 0 2px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-dropdown:hover, .wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-dropdown.on {
|
||||
padding-right: 10px;
|
||||
/* background-position: 14px -399px; */
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-dropdown.dis, .wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-dropdown.dis:hover {
|
||||
/* padding-right:9px; */
|
||||
}
|
||||
|
||||
.wbb-list {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 24px;
|
||||
left: -217px;
|
||||
border: 1px solid #bbb;
|
||||
box-shadow: 0px 0px 3px #aaa;
|
||||
width: 190px;
|
||||
padding: 5px;
|
||||
background: #fff;
|
||||
max-height: 220px;
|
||||
overflow: auto;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
/* END DROPDOWN */
|
||||
|
||||
/* COLORPICKER */
|
||||
.ve-tlb-colorpick .cp-line {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 3px;
|
||||
background: black;
|
||||
bottom: 3px;
|
||||
left: 7px;
|
||||
}
|
||||
|
||||
.wbb-list .sc {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin: 0 0 1px 1px;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
cursor: pointer;
|
||||
border: 1px solid #fff;
|
||||
}
|
||||
|
||||
.wbb-list .sc:hover {
|
||||
border: 1px solid #333;
|
||||
}
|
||||
|
||||
.wbb-list .nc {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
color: #666;
|
||||
margin: 0 1px 5px 1px;
|
||||
}
|
||||
|
||||
.wbb-list .nc:hover {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
.wbb-list .pl {
|
||||
display: block;
|
||||
height: 5px;
|
||||
}
|
||||
|
||||
/* END COLORPICKER */
|
||||
|
||||
/* TABLE PICKER */
|
||||
.tbl-sel {
|
||||
border: 1px solid #ddd;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tbl-sel:hover {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
.wbb-table td {
|
||||
border: 1px dashed #DDD;
|
||||
padding: 3px;
|
||||
margin: 5px;
|
||||
min-width: 5px;
|
||||
min-height: 15px;
|
||||
}
|
||||
|
||||
/* TABLE PICKER */
|
||||
|
||||
/* SELECT */
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-select, .wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-select.dis:hover {
|
||||
width: 100px;
|
||||
padding: 1px 1px 1px 5px;
|
||||
border: 1px solid transparent;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-select:hover {
|
||||
border: 1px solid #bbb;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-select.on {
|
||||
padding: 1px 1px 1px 5px;
|
||||
border: 1px solid #999;
|
||||
background: #ccc;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-select .wbb-list {
|
||||
width: 280px;
|
||||
padding: 0;
|
||||
max-height: 250px;
|
||||
}
|
||||
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-select .sar {
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: 3px;
|
||||
top: 3px;
|
||||
width: 10px;
|
||||
height: 22px;
|
||||
cursor: default;
|
||||
font-size: 14px;
|
||||
text-decoration: none;
|
||||
padding: 0 3px;
|
||||
}
|
||||
|
||||
.wbb-select .val {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
font-weight: bold;
|
||||
font-size: 11px;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.wbb-select .option {
|
||||
display: block;
|
||||
padding: 3px 10px;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.wbb-select .option:hover {
|
||||
background: #dff0ff;
|
||||
}
|
||||
|
||||
.wbb-select .option.selected {
|
||||
background: #cce7fe;
|
||||
border-top: 1px solid #96cdfe;
|
||||
border-bottom: 1px solid #96cdfe;
|
||||
}
|
||||
|
||||
/* END SELECT */
|
||||
|
||||
/* SMILEBOX TOOLBAR */
|
||||
.wysibb .wysibb-toolbar .wysibb-toolbar-container .wysibb-toolbar-btn.wbb-smilebox .wbb-list {
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.smile {
|
||||
/*width: 16px;*/
|
||||
/*height: 16px;*/
|
||||
line-height: 20px;
|
||||
padding: 5px;
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.smile img {
|
||||
/*max-width: 16px;*/
|
||||
/*max-height: 16px;*/
|
||||
border: #e0e0e0 1px solid;
|
||||
}
|
||||
|
||||
/* END SMILEBOX TOOLBAR */
|
||||
|
||||
/* MODAL WINDOW */
|
||||
/* thx http://habrahabr.ru/post/148515/ */
|
||||
#wbbmodal {
|
||||
font: 12px/1.2 Arial, Verdana;
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #7Fffffff, endColorstr = #7Fffffff);
|
||||
zoom: 1;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
min-width: 400px;
|
||||
max-width: 800px;
|
||||
min-height: 200px;
|
||||
max-height: 800px;
|
||||
margin: 50px auto;
|
||||
border: 1px solid #bbb;
|
||||
box-shadow: 0px 0px 10px #999;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-title {
|
||||
color: #333;
|
||||
position: relative;
|
||||
padding: 5px 10px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-title .wbbm-title-text {
|
||||
font-size: 1.6em;
|
||||
line-height: 2em;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-title .wbbclose {
|
||||
display: block;
|
||||
text-transform: uppercase;
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 15px;
|
||||
font-size: 21px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-title .wbbclose:hover {
|
||||
color: red;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-content {
|
||||
/*height:100%*/
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm .wbbm-tablist {
|
||||
width: 160px;
|
||||
float: left;
|
||||
padding: 20px 5px;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm .wbbm-tablist ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm .wbbm-tablist ul li {
|
||||
height: 14px;
|
||||
padding: 10px 10px 10px 20px;
|
||||
cursor: pointer;
|
||||
margin: 5px 0;
|
||||
position: relative;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm .wbbm-tablist ul li.on, #wbbmodal .wbbm .wbbm-tablist ul li.on:hover {
|
||||
background: #666;
|
||||
color: #fff;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm .wbbm-tablist ul li:hover {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-cont {
|
||||
padding: 20px;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-content {
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
#wbbmodal .hastabs .wbbm-bottom, #wbbmodal .hastabs .wbbm-cont {
|
||||
margin-left: 170px;
|
||||
border-left: 1px solid #ccc;
|
||||
}
|
||||
|
||||
#wbbmodal .div-modal-text {
|
||||
min-height: 18px;
|
||||
border: 1px solid #aaa;
|
||||
padding: 3px;
|
||||
line-height: 18px;
|
||||
max-height: 100px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-bottom {
|
||||
|
||||
border-top: 1px solid #ccc;
|
||||
|
||||
padding: 10px;
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
#wbbmodal button {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
font-size: 0.9em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#wbbmodal .wbb-button {
|
||||
background: #0055e4;
|
||||
background-image: linear-gradient(bottom, #0054e4 50%, #005fff 67%);
|
||||
background-image: -o-linear-gradient(bottom, #0054e4 50%, #005fff 67%);
|
||||
background-image: -moz-linear-gradient(bottom, #0054e4 50%, #005fff 67%);
|
||||
background-image: -webkit-linear-gradient(bottom, #0054e4 50%, #005fff 67%);
|
||||
background-image: -ms-linear-gradient(bottom, #0054e4 50%, #005fff 67%);
|
||||
color: #fff;
|
||||
line-height: 26px;
|
||||
border: 1px solid #0055e4;
|
||||
border-radius: 3px;
|
||||
padding: 2px 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#wbbmodal .wbb-button:hover {
|
||||
background: #005fff;
|
||||
border: 1px solid #0049C4;
|
||||
}
|
||||
|
||||
#wbbmodal .wbb-cancel-button {
|
||||
background: #f5f5f5;
|
||||
color: #333;
|
||||
line-height: 26px;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 3px;
|
||||
padding: 2px 10px;
|
||||
cursor: pointer;
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
#wbbmodal .wbb-cancel-button:hover {
|
||||
background: #fff;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
#wbbmodal .wbb-remove-button {
|
||||
background: #db0000;
|
||||
color: #fff;
|
||||
line-height: 26px;
|
||||
border: 1px solid #ca0000;
|
||||
border-radius: 3px;
|
||||
padding: 2px 10px;
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
}
|
||||
|
||||
#wbbmodal .wbb-remove-button:hover {
|
||||
background: #f80000;
|
||||
border: 1px solid #be0000;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-inp-row {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-inp-row label {
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-inp-row input {
|
||||
height: 26px;
|
||||
padding: 0px 3px;
|
||||
line-height: 24px;
|
||||
font-size: 12px;
|
||||
width: 100%;
|
||||
border: 1px solid #aaa;
|
||||
outline: none;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-inperr {
|
||||
color: red;
|
||||
font-size: 10px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#wbbmodal .wbbm-brdred {
|
||||
border-color: red !important;
|
||||
}
|
||||
|
||||
/* IMAGE UPLOAD */
|
||||
#wbbmodal #imguploader {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wbbmodal #imguploader.drag {
|
||||
border: 3px dashed #ccc;
|
||||
}
|
||||
|
||||
#wbbmodal #imguploader.drag.dragover {
|
||||
background: #feffe4;
|
||||
}
|
||||
|
||||
#wbbmodal #imguploader.drag.wbb-loading {
|
||||
padding: 40px 0;
|
||||
}
|
||||
|
||||
#wbbmodal #imguploader.drag .p {
|
||||
font-size: 2em;
|
||||
color: #aaa;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#wbbmodal #imguploader.drag .p2 {
|
||||
color: #AAA;
|
||||
}
|
||||
|
||||
#wbbmodal #imguploader.drag .fileupload {
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
#wbbmodal .fileupload {
|
||||
margin: 40px 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#wbbmodal .dragupload {
|
||||
margin: 10px 0 15px 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#wbbmodal .fileupload input.file {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity = 0);
|
||||
width: 230px;
|
||||
height: 32px !important;
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
left: 50%;
|
||||
margin-left: -115px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.loader {
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.upl-error {
|
||||
color: red;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.powered {
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: -18px;
|
||||
right: 5px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
/* END IMAGE UPLOAD */
|
||||
/* MODAL WINDOW */
|
||||
|
||||
/* PHPBB3 */
|
||||
.content-phpbb3 {
|
||||
font-size: 13px;
|
||||
line-height: normal !important;
|
||||
}
|
||||
|
||||
.content-phpbb3 .codebox dt {
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.content-phpbb3 .codebox dd {
|
||||
margin: 0 !important;
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg>
|
||||
<metadata>
|
||||
Created by FontForge 20090914 at Wed Nov 21 09:26:06 2012
|
||||
By www-data
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="WysiBBiconFont" horiz-adv-x="415" >
|
||||
<font-face
|
||||
font-family="WysiBBiconFont"
|
||||
font-weight="400"
|
||||
font-stretch="normal"
|
||||
units-per-em="415"
|
||||
panose-1="2 0 5 3 0 0 0 0 0 0"
|
||||
ascent="353"
|
||||
descent="-62"
|
||||
bbox="0 -62 415 353"
|
||||
underline-thickness="0"
|
||||
underline-position="0"
|
||||
unicode-range="U+E000-U+F000"
|
||||
/>
|
||||
<missing-glyph
|
||||
/>
|
||||
<glyph glyph-name=".notdef"
|
||||
/>
|
||||
<glyph glyph-name=".notdef"
|
||||
/>
|
||||
<glyph glyph-name="uniE000" unicode=""
|
||||
d="M103 15c-2.66699 0 -3.99902 1.66699 -3.99902 5v8c0 2 1.33301 3 4 3h13c5.33301 0 8.83301 1 10.5 3s3.16699 5.66699 4.5 11c0.666992 9.33301 1 37 1 83v41c0 30 -0.333008 50.333 -1 61c0 9.33301 -1.5 15.166 -4.5 17.499s-7.83301 3.5 -14.5 3.5h-12
|
||||
c-2 0 -3 1 -3 3v8c0 2.66699 1 3.66699 3 3l59 1h60c30.667 0 52 -3.33301 64 -10c19.333 -10 29 -25.667 29 -47c0 -27.333 -18.333 -46.666 -55 -57.999v-1c47.333 -11.333 71 -34.333 71 -69c0 -10 -2.83301 -20.333 -8.5 -31s-12.5 -18 -20.5 -22
|
||||
c-18.667 -8.66699 -48.334 -13 -89.001 -13h-107zM187.001 165c24 -2.66699 40.667 -0.000976562 50 7.99902c12 10 18 21 18 33c0 6.66699 -0.666992 11.334 -2 14.001s-4.66602 6 -9.99902 10c-7.33301 6 -20 9 -38 9c-10.667 0 -16.334 -3 -17.001 -9
|
||||
c-0.666992 -6.66699 -1 -23 -1 -49v-26v10zM187.001 76.999c0 -16 2.16797 -26.5 6.50098 -31.5s11.5 -7.5 21.5 -7.5c8 0 14.667 0.5 20 1.5s10.666 3 15.999 6s9.33301 7.83301 12 14.5s4 15 4 25c0 12.667 -2.5 21.667 -7.5 27s-13.833 10 -26.5 14
|
||||
c-10.667 4 -26 6 -46 6v-58v3z" />
|
||||
<glyph glyph-name="uniE001" unicode=""
|
||||
d="M217 58c-6 -16 -0.333984 -24.001 16.999 -24.001h17c2.66699 0 3.66699 -1 3 -3l-1 -8c-0.666992 -2 -2.66699 -3 -6 -3h-78h-68c-1.33301 0 -2.33301 0.333008 -3 1s-0.666992 1.66699 0 3l2 8c0.666992 1.33301 2 2 4 2h15c12 0 20 1.66699 24 5s7.66699 10.333 11 21
|
||||
l58 163c2 8.66699 2 14.834 0 18.501s-5.33301 5.5 -10 5.5h-21c-3.33301 0 -4.66602 0.666992 -3.99902 2l2 9c0.666992 1.33301 2.66699 2 6 2h71h66c2.66699 0 4.33398 -0.333008 5.00098 -1s0.666992 -1.66699 0 -3l-2 -7c-0.666992 -1.33301 -2.33398 -2 -5.00098 -2
|
||||
h-14c-15.333 0 -26 -8.33301 -32 -25z" />
|
||||
<glyph glyph-name="uniE002" unicode=""
|
||||
d="M268 232c-1.33301 10 -5.99805 15.001 -13.998 15.001h-9c-2 0 -3 1 -3 3v8c0 1.33301 1 2 3 2h65h36c2.66699 0 4 -0.666992 4 -2v-8c0 -2 -0.666992 -3 -2 -3h-12c-9.33301 0 -15 -4.33301 -17 -13v-54c0 -36 -0.666992 -61.333 -2 -76
|
||||
c-2.66699 -30 -12.334 -51.333 -29.001 -64c-16.667 -13.333 -40.334 -20 -71.001 -20c-24 0 -43.333 3 -58 9c-20.667 7.33301 -35.667 21.666 -45 42.999c-5.33301 12 -8 38.667 -8 80v78c0 11.333 -3.33301 17 -10 17h-18c-2 0 -3 1 -3 3v8c0 1.33301 1 2 3 2h63h56
|
||||
c2 0 3 -0.666992 3 -2v-9c0 -1.33301 -1 -2 -3 -2h-13c-12 0 -18.667 -4.33301 -20 -13c-0.666992 -4.66699 -1 -19 -1 -43v-22c0 -11.333 0.666992 -34.666 2 -69.999c0.666992 -12 5 -22.333 13 -31c2 -2.66699 4.5 -4.66699 7.5 -6s6.66699 -2.33301 11 -3
|
||||
s7.83301 -1 10.5 -1h11.5h10.5c6 0 13 3.33301 21 10c12.667 11.333 19 25.666 19 42.999zM75.002 -5.99902h275v-45h-275v45z" />
|
||||
<glyph glyph-name="uniE003" unicode=""
|
||||
d="M185 142h-63.999v-40h64v-43c0 -4 -1.16699 -7.16699 -3.5 -9.5s-5.5 -3.5 -9.5 -3.5h-13c-1.33301 0 -2 -5.33301 -2 -16v-6c0 -2.66699 1 -4 3 -4h54h50c2.66699 0 4 1 4 3v7c0 10.667 -0.666992 16 -2 16h-14c-8 0 -12 4.33301 -12 13v7.5v14.5v21h64v40h-64v74h10
|
||||
c26 0 43 -2 51 -6c5.33301 -2 10.5 -5.66699 15.5 -11s8.5 -9.66602 10.5 -12.999c0.666992 -2 1.66699 -2.66699 3 -2l5 1c2 0 2.66699 1 2 3c-0.666992 5.33301 -2.5 17.833 -5.5 37.5l-4.5 29.5c-0.666992 3.33301 -1.66699 5 -3 5h-216c-2 0 -3 -1.66699 -3 -5
|
||||
c-5.33301 -23.333 -11 -45.333 -17 -66c-0.666992 -1.33301 -0.333984 -2.33301 0.999023 -3l7 -1c1.33301 -0.666992 2.33301 -0.333984 3 0.999023c6.66699 13.333 17.334 22 32.001 26c9.33301 2.66699 25.666 4 48.999 4h5v-74z" />
|
||||
<glyph glyph-name="uniE004" unicode=""
|
||||
d="M413 101v-20v-34v-25h-19h-32v-21h51v-15v-16h-83v55v8.5v10.5h51v25h-51v15v7.5v9.5h83zM332 221l-41 40l-79 -79l-80 79l-40 -40l80 -81l-79 -79l39 -40l80 80l79 -80l41 41l-80 79z" />
|
||||
<glyph glyph-name="uniE005" unicode=""
|
||||
d="M413 324v-20v-34v-25h-19h-32v-21h51v-15v-16h-83v55v8.5v10.5h51v25h-51v3.5v6v5.5v7.5v9.5h83zM332 221l-41 40l-79 -79l-80 79l-40 -40l80 -81l-79 -79l39 -40l80 80l79 -80l41 41l-80 79z" />
|
||||
<glyph glyph-name="uniE006" unicode=""
|
||||
d="M64 47l78 162l69 -99l50 46l88 -109h-285zM271 193c0 11.333 3.83301 20.833 11.5 28.5s17 11.5 28 11.5s20.333 -3.83301 28 -11.5s11.5 -17.167 11.5 -28.5s-3.83301 -20.833 -11.5 -28.5s-17 -11.5 -28 -11.5s-20.333 3.83301 -28 11.5s-11.5 17.167 -11.5 28.5z
|
||||
M22 279v-277h381v277h-381zM371 36h-317l-1 211h318v-211z" />
|
||||
<glyph glyph-name="uniE007" unicode=""
|
||||
d="M351 240c14 0 26.167 -9.66602 36.5 -28.999s15.5 -42.833 15.5 -70.5s-5.16699 -51.334 -15.5 -71.001s-22.5 -29.5 -36.5 -29.5h-68c-10 0 -19.167 5.16699 -27.5 15.5s-14.833 23.833 -19.5 40.5h106c4.66699 0 8.83398 1.83301 12.501 5.5s5.5 8.16699 5.5 13.5v51
|
||||
c0 5.33301 -1.83301 9.83301 -5.5 13.5s-7.83398 5.5 -12.501 5.5h-106c4.66699 16.667 11.167 30 19.5 40s17.5 15 27.5 15h68zM83 96.001c-4.66699 0 -8.83398 1.83398 -12.501 5.50098s-5.5 8.16699 -5.5 13.5v51c0 5.33301 1.83301 9.83301 5.5 13.5
|
||||
s7.83398 5.5 12.501 5.5h106c-4.66699 16.667 -11.167 30 -19.5 40s-17.5 15 -27.5 15h-68c-14 0 -26 -9.66699 -36 -29s-15 -42.833 -15 -70.5s5 -51.334 15 -71.001s22 -29.5 36 -29.5h68c10 0 19.167 5.16699 27.5 15.5s14.833 23.833 19.5 40.5h-106zM109 163.002h207
|
||||
v-45h-207v45z" />
|
||||
<glyph glyph-name="uniE008" unicode=""
|
||||
d="M241 1h-162.002c-13.333 0 -23.333 2.83301 -30 8.5s-12 15.834 -16 30.501c-10 38 -12.667 86 -8 144c1.33301 22 4.66602 42 9.99902 60c3.33301 13.333 8.33301 22.666 15 27.999s16.334 8 29.001 8c102.667 0.666992 190.334 0.666992 263.001 0
|
||||
c15.333 0 26.833 -3.16699 34.5 -9.5s13.167 -17.5 16.5 -33.5c12.667 -64.667 12.667 -129 0 -193c-3.33301 -16 -8.66602 -27.167 -15.999 -33.5s-19 -9.5 -35 -9.5h-101zM173.998 64l110 77l-61 42.5l-49 34.5v-154z" />
|
||||
<glyph glyph-name="uniE009" unicode=""
|
||||
d="M123 278h280v-65h-280v65zM123 163h280v-65h-280v65zM123 48h280v-65h-280v65zM9 278h65v-65h-65v65zM9 163h65v-65h-65v65zM9 48h65v-65h-65v65z" />
|
||||
<glyph glyph-name="uniE00A" unicode=""
|
||||
d="M35 101l40 0.000976562c3.33301 0 5 -3.33301 5 -10s-1.66699 -10 -5 -10h-60v41c0 12 4.33301 18 13 18h32v21h-40c-3.33301 0 -5 3.33301 -5 10s1.66699 10 5 10h43c5.33301 0 9.33301 -1.33301 12 -4c3.33301 -2.66699 5 -6.33398 5 -11.001v-27
|
||||
c0 -6 -1.66699 -10.667 -5 -14s-7.33301 -5 -12 -5h-28v-19zM20 28.001c-3.33301 0 -5 3.33301 -5 10s1.66699 10 5 10h47c3.33301 0 6.33301 -1.16699 9 -3.5s4 -5.5 4 -9.5v-25c0 -4.66699 -1.66699 -8.66699 -5 -12c3.33301 -3.33301 5 -7.33301 5 -12v-25
|
||||
c0 -4 -1.33301 -7.16699 -4 -9.5s-5.66699 -3.5 -9 -3.5h-47c-3.33301 0 -5 3.33301 -5 10s1.66699 10 5 10h40v12c0 6.66699 -1.66699 10 -5 10h-21c-3.33301 0 -5 3.33301 -5 10s1.66699 10 5 10h21c3.33301 0 5 3.33301 5 10v8h-40zM123 278.001h280v-65h-280v65z
|
||||
M123 163.001h280v-65h-280v65zM123 48.001h280v-65h-280v65zM65 233.001v82h-45c-3.33301 0 -5 -3.33301 -5 -10s1.66699 -10 5 -10h20v-62h-20c-3.33301 0 -5 -3.33301 -5 -10s1.66699 -10 5 -10h55c3.33301 0 5 1.66699 5 5v15h-15z" />
|
||||
<glyph glyph-name="uniE00B" unicode=""
|
||||
d="M212.5 316c-48.333 0 -89.5 -17.167 -123.5 -51.5s-51 -75.666 -51 -123.999s17 -89.666 51 -123.999s75.167 -51.5 123.5 -51.5s89.666 17.167 123.999 51.5s51.5 75.666 51.5 123.999s-17.167 89.666 -51.5 123.999s-75.666 51.5 -123.999 51.5zM212.5 -10
|
||||
c-41.667 0 -77 14.667 -106 44s-43.5 64.833 -43.5 106.5s14.5 77 43.5 106s64.333 43.5 106 43.5s77.167 -14.5 106.5 -43.5s44 -64.333 44 -106s-14.667 -77.167 -44 -106.5s-64.833 -44 -106.5 -44zM120 192.5c0 8.33301 3 15.333 9 21s13.167 8.5 21.5 8.5
|
||||
s15.5 -2.83301 21.5 -8.5s9 -12.667 9 -21s-3 -15.5 -9 -21.5s-13.167 -9 -21.5 -9s-15.5 3 -21.5 9s-9 13.167 -9 21.5zM241 192.5c0 8.33301 2.83301 15.333 8.5 21s12.667 8.5 21 8.5s15.5 -2.83301 21.5 -8.5s9 -12.667 9 -21s-3 -15.5 -9 -21.5s-13.167 -9 -21.5 -9
|
||||
s-15.333 3 -21 9s-8.5 13.167 -8.5 21.5zM115 101h195v-1c0 -19.333 -9.5 -35.833 -28.5 -49.5s-42 -20.5 -69 -20.5s-50 6.83301 -69 20.5s-28.5 30.167 -28.5 49.5v1z" />
|
||||
<glyph glyph-name="uniE00C" unicode=""
|
||||
d="M198 132l-0.000976562 87.001c0 2.66699 -1.16699 5.33398 -3.5 8.00098s-5.16602 4 -8.49902 4h-88c-3.33301 0 -6.16602 -1.33301 -8.49902 -4s-3.5 -5.33398 -3.5 -8.00098v-87c0 -2.66699 1.16699 -5.33398 3.5 -8.00098s5.16602 -4 8.49902 -4h39l-54 -93h55l60 102
|
||||
v3zM331.999 132.001l-0.000976562 87.001c0 2.66699 -1.16699 5.33398 -3.5 8.00098s-5.16602 4 -8.49902 4h-88c-3.33301 0 -6.16602 -1.33301 -8.49902 -4s-3.5 -5.33398 -3.5 -8.00098v-87c0 -2.66699 1.16699 -5.33398 3.5 -8.00098s5.16602 -4 8.49902 -4h39l-54 -93
|
||||
h55l60 102v3z" />
|
||||
<glyph glyph-name="uniE00D" unicode=""
|
||||
d="M160 270c2 0 3 -0.333008 3 -1v-22c0 -1.33301 -1.66699 -2 -5 -2h-58c-3.33301 0 -5 -1 -5 -3v-203c0 -2 1.33301 -3 4 -3h65c3.33301 0 5 -1 5 -3v-20c0 -2 -1.66699 -3 -5 -3h-129c-4 0 -6 1.33301 -6 4v254c0 1.33301 2 2 6 2h125zM261 10c-3.33301 0 -5 1 -5 3v20
|
||||
c0 2 1.66699 3 5 3h66c2 0 3 1 3 3v203c0 2 -1.66699 3 -5 3h-58c-3.33301 0 -5 0.666992 -5 2v22c0 0.666992 1 1 3 1h125c4 0 6 -0.666992 6 -2v-254c0 -2.66699 -2 -4 -6 -4h-129zM194 180v-79h74v-38h-74h-36v38v79v38h110v-38h-74z" />
|
||||
<glyph glyph-name="uniE00E" unicode=""
|
||||
d="M73 260v-47v-2v-51v-40v-60v-40h36h85h37h85h37v40v60v40v51v2v47h-280zM105 211h94v-65h-94v65zM105 51v69h94v-69h-94zM320 51h-94v69h94v-69zM320 147h-94v64h94v-64z" />
|
||||
<glyph glyph-name="uniE00F" unicode=""
|
||||
d="M153 291h120v-110h-120v110zM93 165h240v-50h-240v50zM123 101h180v-90h-180v90z" />
|
||||
<glyph glyph-name="uniE010" unicode=""
|
||||
d="M253 60h-84l-11 -40h-76l90 240h81l90 -240h-78zM238 112l-26 86l-27 -86h53z" />
|
||||
<glyph glyph-name="uniE011" unicode=""
|
||||
d="M313 220l-100 -160l-100 160h200z" />
|
||||
<glyph glyph-name="uniE012" unicode=""
|
||||
d="M313 116l-100 -160l-100 160h200zM113 176l100 160l100 -160h-200z" />
|
||||
<glyph glyph-name="uniE013" unicode=""
|
||||
d="M73 253h280v-40h-280v40zM73 183h280v-40h-280v40zM73 113h280v-40h-280v40zM73 43h280v-40h-280v40z" />
|
||||
<glyph glyph-name="uniE014" unicode=""
|
||||
d="M73 253h280v-40h-280v40zM108 183h210v-40h-210v40zM113 113h200v-40h-200v40zM73 43h280v-40h-280v40z" />
|
||||
<glyph glyph-name="uniE015" unicode=""
|
||||
d="M73 253h280v-40h-280v40zM73 183h210v-40h-210v40zM73 113h200v-40h-200v40zM73 43h280v-40h-280v40z" />
|
||||
<glyph glyph-name="uniE016" unicode=""
|
||||
d="M73 253h280v-40h-280v40zM143 183h210v-40h-210v40zM153 113h200v-40h-200v40zM73 43h280v-40h-280v40z" />
|
||||
<glyph glyph-name="uniE017" unicode=""
|
||||
d="M143 235c0 19.333 3.83203 36.5 11.499 51.5s17.667 26.333 30 34s26 13.334 41 17.001s29.833 3.66699 44.5 0s28.167 -9.33398 40.5 -17.001s22.5 -19 30.5 -34s12 -32.167 12 -51.5v-154c0 -25.333 -5.16699 -48.166 -15.5 -68.499s-23.833 -35.666 -40.5 -45.999
|
||||
s-34.834 -17.833 -54.501 -22.5s-39.5 -4.66699 -59.5 0s-38.333 12.167 -55 22.5s-30 25.666 -40 45.999s-15 43.166 -15 68.499h30c0 -20 4 -38 12 -54s18.5 -28 31.5 -36s27.333 -13.833 43 -17.5s31.167 -3.66699 46.5 0s29.5 9.5 42.5 17.5s23.667 20 32 36
|
||||
s12.5 34 12.5 54v154c0 18.667 -5.16699 34.5 -15.5 47.5s-22.833 21 -37.5 24s-29.5 3 -44.5 0s-27.5 -11 -37.5 -24s-15 -28.833 -15 -47.5v-150c0 -16.667 6.66699 -28.5 20 -35.5s26.666 -7 39.999 0s20 18.833 20 35.5v119h30v-119
|
||||
c0 -11.333 -2.16699 -21.5 -6.5 -30.5s-9.66602 -16.333 -15.999 -22s-13.666 -10 -21.999 -13s-17 -4.5 -26 -4.5s-17.667 1.5 -26 4.5s-15.666 7.33301 -21.999 13s-11.5 13 -15.5 22s-6 19.167 -6 30.5v150z" />
|
||||
<glyph glyph-name="uniF000" unicode="" horiz-adv-x="0"
|
||||
d="M0 353l415 -415h-415v415z" />
|
||||
<glyph glyph-name=".null" horiz-adv-x="0"
|
||||
/>
|
||||
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="138"
|
||||
/>
|
||||
</font>
|
||||
</defs></svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |