First Commit
This commit is contained in:
commit
ce0758fbbb
496 changed files with 52062 additions and 0 deletions
89
static/themes/generic.css
Normal file
89
static/themes/generic.css
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
span.money {
|
||||
color: orange;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.money::after {
|
||||
content: url('../../img/icons/money_25x25.png');
|
||||
}
|
||||
|
||||
span.bag::before {
|
||||
content: url('../../img/icons/bag_25x25.png');
|
||||
}
|
||||
|
||||
.modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background-color: rgb(0,0,0);
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
}
|
||||
|
||||
.modal .modal-item {
|
||||
background-color: rgba(0,0,0,0.7);
|
||||
margin: 15% auto;
|
||||
padding: 20px;
|
||||
border: 1px solid #888;
|
||||
border-radius: 5px;
|
||||
width: 50%;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-close {
|
||||
color: #c70a0a;
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-close:hover {
|
||||
color: rgb(255, 0, 0);
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-header {
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10px;
|
||||
text-shadow: none;
|
||||
color:#e3e3e3;
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-body {
|
||||
margin-bottom: 10px;
|
||||
text-shadow: none;
|
||||
color:#e3e3e3;
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-footer {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
pre[class*="language-"] {
|
||||
white-space: pre !important;
|
||||
word-wrap: normal !important;
|
||||
overflow-x: auto !important;
|
||||
tab-size: 4;
|
||||
}
|
||||
|
||||
code[class*="language-"] {
|
||||
white-space: pre !important;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||||
gap: 20px;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue