mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
Fix bug on Pastedown where text broke through it's container. Fix mobile responsive bug where containers where remaining full size. Changes to UI
171 lines
No EOL
2.8 KiB
CSS
171 lines
No EOL
2.8 KiB
CSS
/* Fonts */
|
|
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&subset=cyrillic");
|
|
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css");
|
|
|
|
/* Bulma */
|
|
@import url("bulma.min.css");
|
|
@import url("bulma.modal-fx.min.css");
|
|
@import url("bulma.tooltip.min.css");
|
|
@import url("bulma.checkradio.min.css");
|
|
@import url("bulma.social.all.min.css");
|
|
|
|
/* DataTables.js */
|
|
@import url("datatables.min.css");
|
|
|
|
/* make numbers grey again*/
|
|
.li1::marker {
|
|
color: #bfbfbf;
|
|
}
|
|
|
|
/* For future use
|
|
.li1 {
|
|
padding-left: 0.5em;
|
|
text-indent: -0.5em;
|
|
}
|
|
*/
|
|
|
|
.theme-switch-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
em {
|
|
margin-left: 10px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.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;
|
|
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;
|
|
}
|
|
}
|
|
|
|
img [alt="www.000webhost.com"] {
|
|
display: none;
|
|
}
|
|
|
|
.td-center {
|
|
text-align: center !important;
|
|
}
|
|
|
|
.green .hljs-comment {
|
|
color: #789922;
|
|
} |