92 lines
1.4 KiB
SCSS
92 lines
1.4 KiB
SCSS
@import "~bootstrap/scss/bootstrap";
|
|
@import "~highlightjs/scss/github";
|
|
|
|
@import "fonts";
|
|
@import "hamburger";
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
#navBtn {
|
|
position: fixed;
|
|
top: 10px;
|
|
left: 10px;
|
|
z-index: 999;
|
|
}
|
|
|
|
#chat-app {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.form-signin {
|
|
max-width: 330px;
|
|
padding: 1rem;
|
|
|
|
.form-floating:focus-within {
|
|
z-index: 2;
|
|
}
|
|
|
|
input[type="text"] {
|
|
margin-bottom: -1px;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
input[type="password"] {
|
|
margin-bottom: 10px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
}
|
|
|
|
.form-reminder {
|
|
max-width: 330px;
|
|
padding: 1rem;
|
|
|
|
.form-floating:focus-within {
|
|
z-index: 2;
|
|
}
|
|
}
|
|
|
|
code:not(.hljs) {
|
|
color: #4d4d4d;
|
|
padding: 0 5px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.hljs-code-container {
|
|
|
|
border-radius: var(--bs-border-radius-sm);
|
|
|
|
.hljs-code-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
& > span {
|
|
display: inline-block;
|
|
padding-left: 1em;
|
|
font-family: var(--bs-font-sans-serif);
|
|
text-transform: capitalize;
|
|
font-weight: 700;
|
|
}
|
|
|
|
& > button {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
border-bottom: 1px solid var(--bs-gray-200);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|