78 lines
No EOL
1 KiB
CSS
78 lines
No EOL
1 KiB
CSS
|
|
.bbcode-bar, .bbcode-bar ul {
|
|
display: flex;
|
|
}
|
|
|
|
.bbcode-bar {
|
|
flex-direction: column;
|
|
margin: 0 -5px -5px 5px;
|
|
width: 99%;
|
|
}
|
|
|
|
.bbcode-bar ul {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.bbcode-bar li {
|
|
margin: 0 3px 3px 3px;
|
|
}
|
|
|
|
.bbcode-bar button {
|
|
margin: 0;
|
|
}
|
|
|
|
.draggable {
|
|
width: 600px;
|
|
height: 300px;
|
|
overflow: auto;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
z-index: 1000;
|
|
display: none;
|
|
}
|
|
|
|
.draggable .header {
|
|
position: fixed;
|
|
width: 596px;
|
|
padding: 5px;
|
|
cursor: move;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.draggable .close-button {
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.draggable .content {
|
|
padding: 15px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
ul.bbcode-list {
|
|
margin-left: 50px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
h1.h1-bbcode {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
h2.h2-bbcode {
|
|
font-size: 1.5rem;
|
|
border: none;
|
|
}
|
|
|
|
h3.h3-bbcode {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
fieldset.quote-bbcode {
|
|
padding: 10px;
|
|
} |