mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
351 lines
5.6 KiB
CSS
351 lines
5.6 KiB
CSS
/* Fonts */
|
|
@import url("/assets/fa/all.min.css");
|
|
|
|
/* Bulma */
|
|
@import url("bulma.min.css");
|
|
@import url("bulma.tooltip.min.css");
|
|
@import url("bulma.checkradio.min.css");
|
|
|
|
/* DataTables.js */
|
|
@import url("datatables.min.css");
|
|
|
|
/* make numbers grey again*/
|
|
.li1::marker {
|
|
color: #bfbfbf;
|
|
}
|
|
|
|
.li1:target{
|
|
transition:background-color 1s ease-in;
|
|
-webkit-transition:background-color 1s ease-in;
|
|
-moz-transition:background-color 1s ease-in;
|
|
background-color: rgba(50, 152, 220, 0.3);
|
|
scroll-margin-top: 100px;
|
|
color: white !important;
|
|
}
|
|
|
|
.theme-switch-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.theme-switch {
|
|
display: inline-block;
|
|
height: 34px;
|
|
position: relative;
|
|
width: 60px;
|
|
}
|
|
|
|
.theme-switch input {
|
|
display: none;
|
|
}
|
|
|
|
.slider {
|
|
background-color: #ccc;
|
|
bottom: 0;
|
|
cursor: pointer;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
transition: .4s;
|
|
}
|
|
|
|
.slider:before {
|
|
background-color: #fff;
|
|
bottom: 4px;
|
|
content: "";
|
|
height: 26px;
|
|
left: 4px;
|
|
position: absolute;
|
|
transition: .4s;
|
|
width: 26px;
|
|
}
|
|
|
|
input:checked + .slider {
|
|
background-color: #3298dc;
|
|
}
|
|
|
|
input:checked + .slider:before {
|
|
transform: translateX(26px);
|
|
}
|
|
|
|
.slider.round {
|
|
border-radius: 34px;
|
|
}
|
|
|
|
.slider.round:before {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-bottom: 16px;
|
|
}
|
|
|
|
.modal-card-head {
|
|
border-bottom: 0px solid #dbdbdb !important;
|
|
}
|
|
|
|
.bd-duo {
|
|
min-height: calc(100vh - 19vh);
|
|
}
|
|
|
|
.footer {
|
|
padding: 2rem 1.5rem 2rem !important;
|
|
}
|
|
|
|
.panel-fullsize {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100vh;
|
|
overflow: auto;
|
|
overflow-x: hidden;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 9999;
|
|
padding: 20px;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.panel {
|
|
background-color: #ffffff;
|
|
border: none !important;
|
|
border-style: none !important;
|
|
padding: 0px !important;
|
|
border-width: 0px !important;
|
|
box-shadow: none !important;
|
|
word-wrap: break-word;
|
|
}
|
|
}
|
|
|
|
|
|
.panel {
|
|
background-color: #ffffff;
|
|
border: #eeeeee;
|
|
border-style: solid;
|
|
padding: 10px;
|
|
border-width: 2px;
|
|
box-shadow: 5px 10px #eee;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.tool-icon {
|
|
padding: 15px;
|
|
}
|
|
|
|
.tool-icon:hover {
|
|
background-color: #fafafa;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
@media screen and (max-width: 1023px) {
|
|
.bd-lead,
|
|
.bd-side {
|
|
padding: 1rem !important;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.has-text-centered,
|
|
.has-text-right {
|
|
text-align: left !important;
|
|
}
|
|
}
|
|
|
|
.td-center {
|
|
text-align: center !important;
|
|
}
|
|
|
|
.green .hljs-comment {
|
|
color: #789922;
|
|
}
|
|
|
|
button.button--no-style {
|
|
background: none;
|
|
color: inherit;
|
|
border: none;
|
|
padding: 0;
|
|
font: inherit;
|
|
cursor: pointer;
|
|
outline: inherit;
|
|
display: inline;
|
|
}
|
|
|
|
.form--inline {
|
|
display: inline;
|
|
}
|
|
|
|
.paginator {
|
|
float: right;
|
|
}
|
|
|
|
.paginator__button {
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
min-width: 1.5em;
|
|
padding: 0.2em 1em;
|
|
margin-left: 2px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
color: #333;
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
background: #f2f2f2;
|
|
}
|
|
|
|
.paginator__button--selected {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.paginator__button:disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.paginator__button[aria-disabled="true"] {
|
|
display: inline-block;
|
|
pointer-events: none;
|
|
cursor: none;
|
|
color: #33333388;
|
|
}
|
|
|
|
.table_filterer {
|
|
color: #fff;
|
|
background: #3298dc;
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.table_filterer input {
|
|
margin-left: .5em;
|
|
height: 34px;
|
|
border-radius: 3px;
|
|
padding-left: 10px;
|
|
font-size: 14px;
|
|
font-family: arial,sans-serif;
|
|
font-weight: 400;
|
|
background: #fff;
|
|
border: 1px solid #bdc4c9;
|
|
width: 75%;
|
|
box-shadow: inset 0 1px 0 #f1f0f1;
|
|
flex-grow: 4;
|
|
}
|
|
|
|
.rules h2 {
|
|
margin-top: 1rem;
|
|
margin-bottom: 1rem;
|
|
color: black;
|
|
}
|
|
|
|
.flash i {
|
|
margin-right: 0.5rem;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.captcha_container {
|
|
background-color: #f5f5f5;
|
|
border-radius: 4px;
|
|
position: relative;
|
|
padding: 1.25rem 2.5rem 1.25rem 1.5rem;
|
|
}
|
|
|
|
.captcha_container img {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.captcha_container i {
|
|
color: black;
|
|
}
|
|
|
|
code {
|
|
overflow-wrap: anywhere;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.greentext {
|
|
color: #789922;
|
|
}
|
|
|
|
.redtext {
|
|
color: #d12222;
|
|
}
|
|
|
|
.purpletext {
|
|
color: #9f14ae;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.flex--space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.paginator > a {
|
|
margin: 0.25rem;
|
|
}
|
|
|
|
.paginator > a.disabled {
|
|
pointer-events: none;
|
|
color: gray;
|
|
}
|
|
|
|
.paginator__sort > th {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.paginator__sort--down, .paginator__sort--up {
|
|
background-color: lightblue;
|
|
}
|
|
|
|
.paginator__sort--down:after {
|
|
padding-left: 0.25rem;
|
|
content: '▼';
|
|
}
|
|
|
|
.paginator__sort--up:after {
|
|
padding-left: 0.25rem;
|
|
content: '▲';
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
}
|
|
|
|
table.hidden + .loading_container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
z-index: 99999999;
|
|
background-image: url('/assets/img/loader/<?= random_int(1, 3) ?>.gif');
|
|
background-repeat: no-repeat;
|
|
background-color: #FFF;
|
|
background-position: center;
|
|
}
|
|
|
|
.badges {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.badges > * {
|
|
border-radius: 50%;
|
|
width: 70px;
|
|
height: 70px;
|
|
}
|
|
|
|
.badge--bgcolor-dark {
|
|
background-color: #2e2e2eff;
|
|
}
|
|
|
|
.badge--padded > img {
|
|
margin: 10px;
|
|
}
|