Files
hoppscotch/assets/css/styles.scss

296 lines
3.7 KiB
SCSS

$responsiveWidth: 720px;
::selection {
background-color: var(--ac-color);
color: var(--act-color);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
background-color: #4a4a4a;
}
* {
box-sizing: border-box;
outline: 0;
border: 0;
font-family: "Poppins", "Roboto", "Noto", sans-serif;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
a {
display: inline-flex;
color: inherit;
text-decoration: none;
font-weight: 700;
}
body {
background-color: var(--bg-color);
color: var(--fg-color);
font-weight: 500;
line-height: 1.5;
animation: fadein 0.2s;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
h1,
h2,
h3 {
margin: 0;
font-weight: 700;
}
header,
footer {
display: flex;
padding: 16px;
width: 100%;
align-items: center;
justify-content: space-between;
}
@media(max-width: $responsiveWidth){
header {
display: block;
text-align: center;
nav {
display: inline-flex;
margin-top: 20px;
}
}
}
nav {
a:not(:last-of-type) {
margin-right: 15px;
}
}
body.sticky-footer footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
.logo {
color: var(--ac-color);
}
button {
margin: 4px;
padding: 8px 16px;
border-radius: 4px;
background-color: var(--ac-color);
color: var(--act-color);
font-weight: 700;
font-size: 16px;
cursor: pointer;
}
fieldset {
margin: 16px 0;
border: 2px solid var(--fg-color);
border-radius: 4px;
}
legend {
color: var(--fg-color);
font-weight: 700;
cursor: pointer;
}
fieldset textarea,
fieldset pre {
resize: vertical;
}
fieldset.blue {
border-color: #57b5f9;
}
fieldset.blue legend {
color: #57b5f9;
}
fieldset.gray {
border-color: #9B9B9B;
}
fieldset.gray legend {
color: #9B9B9B;
}
fieldset.green {
border-color: #B8E986;
}
fieldset.green legend {
color: #B8E986;
}
fieldset.cyan {
border-color: #50E3C2;
}
fieldset.cyan legend {
color: #50E3C2;
}
fieldset.blue-dark {
border-color: #4A90E2;
}
fieldset.blue-dark legend {
color: #4A90E2;
}
fieldset.purple {
border-color: #C198FB;
}
fieldset.purple legend {
color: #C198FB;
}
.collapsible.hidden {
display: none;
}
select,
input,
option,
textarea,
pre {
margin: 4px;
padding: 8px 16px;
width: calc(100% - 8px);
border-radius: 4px;
background-color: var(--bg-dark-color);
color: var(--fg-color);
font-weight: 700;
font-size: 18px;
font-family: monospace;
}
// Force the same height, for dropdowns and regular input boxes.
select,
input,
option {
height: 38px;
}
input[type="checkbox"] {
width: initial;
&, & + label {
vertical-align: middle;
}
}
.error {
background-color: var(--err-color);
}
.disabled {
background-color: var(--err-color);
color: #b2b2b2;
}
label {
padding: 4px;
}
ul,
ol {
display: flex;
margin: 8px 0 0;
padding: 0;
list-style-type: none;
}
ul li,
ol li {
display: inline-flex;
flex-direction: column;
flex-grow: 1;
}
.flex-wrap{
display: flex;
justify-content: space-between;
}
.btn-copy{
padding: 6px 14px;
font-size: 11px;
margin-right: 15px;
}
@media (max-width: $responsiveWidth) {
ul,
ol {
flex-direction: column;
}
ul li,
ol li {
display: flex;
}
}
#installPWA {
display: none;
}
.info-response {
background-color: #FFEB3B;
}
.success-response {
background-color: #4BB543;
}
.redir-response {
background-color: #FF5722;
}
.cl-error-response {
background-color: #A63232;
}
.sv-error-response {
background-color: #B71C1C;
}
fieldset#history {
.method-list-item {
position: relative;
span {
position: absolute;
top: 44px;
right: 20px;
font-family: monospace, monospace;
}
}
}